From df624ede66e2cd734bf5fc1aee48b4d6ddf81ea3 Mon Sep 17 00:00:00 2001 From: phamminh0811 <1phamminh0811@gmail.com> Date: Fri, 10 Feb 2023 18:27:01 +0700 Subject: [PATCH 1/6] add gov module --- custom/gov/keeper/keeper.go | 57 +++++++++++++++++++++++++++ custom/gov/module.go | 23 +++++++++++ custom/gov/types/keeper_interfaces.go | 7 ++++ 3 files changed, 87 insertions(+) create mode 100644 custom/gov/keeper/keeper.go create mode 100644 custom/gov/module.go create mode 100644 custom/gov/types/keeper_interfaces.go diff --git a/custom/gov/keeper/keeper.go b/custom/gov/keeper/keeper.go new file mode 100644 index 00000000..e497adbd --- /dev/null +++ b/custom/gov/keeper/keeper.go @@ -0,0 +1,57 @@ +package keeper + +import ( + "github.com/cosmos/cosmos-sdk/baseapp" + "github.com/cosmos/cosmos-sdk/codec" + storetypes "github.com/cosmos/cosmos-sdk/store/types" + accountkeeper "github.com/cosmos/cosmos-sdk/x/auth/keeper" + bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper" + govkeeper "github.com/cosmos/cosmos-sdk/x/gov/keeper" + "github.com/cosmos/cosmos-sdk/x/gov/types" + "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" + stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" + + custombankkeeper "github.com/terra-money/alliance/custom/bank/keeper" + govtypes "github.com/terra-money/alliance/custom/gov/types" + alliancekeeper "github.com/terra-money/alliance/x/alliance/keeper" +) + +type Keeper struct { + govkeeper.Keeper + + ak alliancekeeper.Keeper + custombk custombankkeeper.Keeper + customsk govtypes.StakingKeeper + bk bankkeeper.Keeper + sk govtypes.StakingKeeper + acck accountkeeper.AccountKeeper +} + +var _ govkeeper.Keeper = Keeper{} + +func NewKeeper( + cdc codec.BinaryCodec, + key storetypes.StoreKey, + paramSpace types.ParamSubspace, + ak accountkeeper.AccountKeeper, + bk bankkeeper.BaseKeeper, + sk stakingkeeper.Keeper, + legacyRouter v1beta1.Router, + router *baseapp.MsgServiceRouter, + config types.Config, +) Keeper { + keeper := Keeper{ + Keeper: govkeeper.NewKeeper(cdc, key, paramSpace, ak, bk, sk, legacyRouter, router, config), + ak: alliancekeeper.Keeper{}, + bk: custombankkeeper.Keeper{}, + sk: stakingkeeper.Keeper{}, + acck: ak, + } + return keeper +} + +// func (k *Keeper) RegisterKeepers(ak alliancekeeper.Keeper, bk custombankkeeper.Keeper, sk govtypes.StakingKeeper) { +// k.ak = ak +// k.bk = bk +// k.sk = sk +// } diff --git a/custom/gov/module.go b/custom/gov/module.go new file mode 100644 index 00000000..7bfec273 --- /dev/null +++ b/custom/gov/module.go @@ -0,0 +1,23 @@ +package gov + +import ( + "github.com/cosmos/cosmos-sdk/codec" + govmodule "github.com/cosmos/cosmos-sdk/x/gov" + "github.com/cosmos/cosmos-sdk/x/gov/types" + + customgovkeeper "github.com/terra-money/alliance/custom/gov/keeper" +) + +type AppModule struct { + govmodule.AppModule + keeper customgovkeeper.Keeper +} + +// NewAppModule creates a new AppModule object +func NewAppModule(cdc codec.Codec, keeper customgovkeeper.Keeper, accountKeeper types.AccountKeeper, bankKeeper types.BankKeeper) AppModule { + govmodule := govmodule.NewAppModule(cdc, keeper, accountKeeper, bankKeeper) + return AppModule{ + AppModule: govmodule, + keeper: keeper, + } +} diff --git a/custom/gov/types/keeper_interfaces.go b/custom/gov/types/keeper_interfaces.go new file mode 100644 index 00000000..4fc75155 --- /dev/null +++ b/custom/gov/types/keeper_interfaces.go @@ -0,0 +1,7 @@ +package types + +import sdk "github.com/cosmos/cosmos-sdk/types" + +type StakingKeeper interface { + BondDenom(ctx sdk.Context) (res string) +} From 3676780f436e8236cd0100dab8930b1f8b82fd50 Mon Sep 17 00:00:00 2001 From: ThanhNhann Date: Mon, 13 Feb 2023 17:49:09 +0700 Subject: [PATCH 2/6] add custom gov module --- custom/gov/keeper/keeper.go | 28 +++++++++++++--------------- custom/gov/module.go | 2 +- 2 files changed, 14 insertions(+), 16 deletions(-) diff --git a/custom/gov/keeper/keeper.go b/custom/gov/keeper/keeper.go index e497adbd..433fbadf 100644 --- a/custom/gov/keeper/keeper.go +++ b/custom/gov/keeper/keeper.go @@ -5,36 +5,34 @@ import ( "github.com/cosmos/cosmos-sdk/codec" storetypes "github.com/cosmos/cosmos-sdk/store/types" accountkeeper "github.com/cosmos/cosmos-sdk/x/auth/keeper" - bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper" govkeeper "github.com/cosmos/cosmos-sdk/x/gov/keeper" "github.com/cosmos/cosmos-sdk/x/gov/types" "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" custombankkeeper "github.com/terra-money/alliance/custom/bank/keeper" - govtypes "github.com/terra-money/alliance/custom/gov/types" alliancekeeper "github.com/terra-money/alliance/x/alliance/keeper" + ) type Keeper struct { govkeeper.Keeper - ak alliancekeeper.Keeper - custombk custombankkeeper.Keeper - customsk govtypes.StakingKeeper - bk bankkeeper.Keeper - sk govtypes.StakingKeeper - acck accountkeeper.AccountKeeper + ak alliancekeeper.Keeper + sk stakingkeeper.Keeper + acck accountkeeper.AccountKeeper + bk custombankkeeper.Keeper + } -var _ govkeeper.Keeper = Keeper{} +var _ govkeeper.Keeper = govkeeper.Keeper{} func NewKeeper( cdc codec.BinaryCodec, key storetypes.StoreKey, paramSpace types.ParamSubspace, ak accountkeeper.AccountKeeper, - bk bankkeeper.BaseKeeper, + bk custombankkeeper.Keeper, sk stakingkeeper.Keeper, legacyRouter v1beta1.Router, router *baseapp.MsgServiceRouter, @@ -50,8 +48,8 @@ func NewKeeper( return keeper } -// func (k *Keeper) RegisterKeepers(ak alliancekeeper.Keeper, bk custombankkeeper.Keeper, sk govtypes.StakingKeeper) { -// k.ak = ak -// k.bk = bk -// k.sk = sk -// } +func (k *Keeper) RegisterKeepers(ak alliancekeeper.Keeper, bk custombankkeeper.Keeper, sk stakingkeeper.Keeper) { + k.ak = ak + k.bk = bk + k.sk = sk +} diff --git a/custom/gov/module.go b/custom/gov/module.go index 7bfec273..5e57dadf 100644 --- a/custom/gov/module.go +++ b/custom/gov/module.go @@ -15,7 +15,7 @@ type AppModule struct { // NewAppModule creates a new AppModule object func NewAppModule(cdc codec.Codec, keeper customgovkeeper.Keeper, accountKeeper types.AccountKeeper, bankKeeper types.BankKeeper) AppModule { - govmodule := govmodule.NewAppModule(cdc, keeper, accountKeeper, bankKeeper) + govmodule := govmodule.NewAppModule(cdc, keeper.Keeper, accountKeeper, bankKeeper) return AppModule{ AppModule: govmodule, keeper: keeper, From f17114d2d1445b0dc1108036143c386cb45dac4e Mon Sep 17 00:00:00 2001 From: phamminh0811 <1phamminh0811@gmail.com> Date: Tue, 21 Feb 2023 14:49:12 +0700 Subject: [PATCH 3/6] Custom tally function on gov keeper --- app/app.go | 11 +-- custom/gov/keeper/keeper.go | 151 +++++++++++++++++++++++++++++++++++- custom/gov/module.go | 18 +++++ 3 files changed, 171 insertions(+), 9 deletions(-) diff --git a/app/app.go b/app/app.go index 9fa90743..7def0144 100644 --- a/app/app.go +++ b/app/app.go @@ -53,7 +53,6 @@ import ( genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types" "github.com/cosmos/cosmos-sdk/x/gov" govclient "github.com/cosmos/cosmos-sdk/x/gov/client" - govkeeper "github.com/cosmos/cosmos-sdk/x/gov/keeper" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" govv1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1" govv1beta1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" @@ -103,6 +102,8 @@ import ( appparams "github.com/terra-money/alliance/app/params" custombankmodule "github.com/terra-money/alliance/custom/bank" custombankkeeper "github.com/terra-money/alliance/custom/bank/keeper" + customgovmodule "github.com/terra-money/alliance/custom/gov" + customgovkeeper "github.com/terra-money/alliance/custom/gov/keeper" "github.com/terra-money/alliance/app/openapiconsole" @@ -230,7 +231,7 @@ type App struct { SlashingKeeper slashingkeeper.Keeper MintKeeper mintkeeper.Keeper DistrKeeper distrkeeper.Keeper - GovKeeper govkeeper.Keeper + GovKeeper customgovkeeper.Keeper CrisisKeeper crisiskeeper.Keeper UpgradeKeeper upgradekeeper.Keeper ParamsKeeper paramskeeper.Keeper @@ -495,7 +496,7 @@ func New( AddRoute(ibcclienttypes.RouterKey, ibcclient.NewClientProposalHandler(app.IBCKeeper.ClientKeeper)). AddRoute(alliancemoduletypes.RouterKey, alliancemodule.NewAllianceProposalHandler(app.AllianceKeeper)) govConfig := govtypes.DefaultConfig() - app.GovKeeper = govkeeper.NewKeeper( + app.GovKeeper = customgovkeeper.NewKeeper( appCodec, keys[govtypes.StoreKey], app.GetSubspace(govtypes.ModuleName), @@ -538,7 +539,7 @@ func New( feegrantmodule.NewAppModule(appCodec, app.AccountKeeper, app.BankKeeper, app.FeeGrantKeeper, app.interfaceRegistry), groupmodule.NewAppModule(appCodec, app.GroupKeeper, app.AccountKeeper, app.BankKeeper, app.interfaceRegistry), crisis.NewAppModule(&app.CrisisKeeper, skipGenesisInvariants), - gov.NewAppModule(appCodec, app.GovKeeper, app.AccountKeeper, app.BankKeeper), + customgovmodule.NewAppModule(appCodec, app.GovKeeper, app.AccountKeeper, app.BankKeeper), mint.NewAppModule(appCodec, app.MintKeeper, app.AccountKeeper, minttypes.DefaultInflationCalculationFn), slashing.NewAppModule(appCodec, app.SlashingKeeper, app.AccountKeeper, app.BankKeeper, app.StakingKeeper), distr.NewAppModule(appCodec, app.DistrKeeper, app.AccountKeeper, app.BankKeeper, app.StakingKeeper), @@ -654,7 +655,7 @@ func New( bank.NewAppModule(appCodec, app.BankKeeper, app.AccountKeeper), capability.NewAppModule(appCodec, *app.CapabilityKeeper), feegrantmodule.NewAppModule(appCodec, app.AccountKeeper, app.BankKeeper, app.FeeGrantKeeper, app.interfaceRegistry), - gov.NewAppModule(appCodec, app.GovKeeper, app.AccountKeeper, app.BankKeeper), + customgovmodule.NewAppModule(appCodec, app.GovKeeper, app.AccountKeeper, app.BankKeeper), mint.NewAppModule(appCodec, app.MintKeeper, app.AccountKeeper, minttypes.DefaultInflationCalculationFn), staking.NewAppModule(appCodec, app.StakingKeeper, app.AccountKeeper, app.BankKeeper), distr.NewAppModule(appCodec, app.DistrKeeper, app.AccountKeeper, app.BankKeeper, app.StakingKeeper), diff --git a/custom/gov/keeper/keeper.go b/custom/gov/keeper/keeper.go index 433fbadf..503f97c1 100644 --- a/custom/gov/keeper/keeper.go +++ b/custom/gov/keeper/keeper.go @@ -4,28 +4,31 @@ import ( "github.com/cosmos/cosmos-sdk/baseapp" "github.com/cosmos/cosmos-sdk/codec" storetypes "github.com/cosmos/cosmos-sdk/store/types" + sdk "github.com/cosmos/cosmos-sdk/types" accountkeeper "github.com/cosmos/cosmos-sdk/x/auth/keeper" govkeeper "github.com/cosmos/cosmos-sdk/x/gov/keeper" "github.com/cosmos/cosmos-sdk/x/gov/types" + v1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1" "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" + stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" custombankkeeper "github.com/terra-money/alliance/custom/bank/keeper" alliancekeeper "github.com/terra-money/alliance/x/alliance/keeper" - + alliancetypes "github.com/terra-money/alliance/x/alliance/types" ) type Keeper struct { govkeeper.Keeper + key storetypes.StoreKey ak alliancekeeper.Keeper sk stakingkeeper.Keeper acck accountkeeper.AccountKeeper bk custombankkeeper.Keeper - } -var _ govkeeper.Keeper = govkeeper.Keeper{} +var _ = govkeeper.Keeper{} func NewKeeper( cdc codec.BinaryCodec, @@ -33,7 +36,7 @@ func NewKeeper( paramSpace types.ParamSubspace, ak accountkeeper.AccountKeeper, bk custombankkeeper.Keeper, - sk stakingkeeper.Keeper, + sk *stakingkeeper.Keeper, legacyRouter v1beta1.Router, router *baseapp.MsgServiceRouter, config types.Config, @@ -44,6 +47,7 @@ func NewKeeper( bk: custombankkeeper.Keeper{}, sk: stakingkeeper.Keeper{}, acck: ak, + key: key, } return keeper } @@ -53,3 +57,142 @@ func (k *Keeper) RegisterKeepers(ak alliancekeeper.Keeper, bk custombankkeeper.K k.bk = bk k.sk = sk } + +// deleteVote deletes a vote from a given proposalID and voter from the store +func (k Keeper) deleteVote(ctx sdk.Context, proposalID uint64, voterAddr sdk.AccAddress) { + store := ctx.KVStore(k.key) + store.Delete(types.VoteKey(proposalID, voterAddr)) +} + +func (k *Keeper) Tally(ctx sdk.Context, proposal v1.Proposal) (passes bool, burnDeposits bool, tallyResults v1.TallyResult) { + results := make(map[v1.VoteOption]sdk.Dec) + results[v1.OptionYes] = sdk.ZeroDec() + results[v1.OptionAbstain] = sdk.ZeroDec() + results[v1.OptionNo] = sdk.ZeroDec() + results[v1.OptionNoWithVeto] = sdk.ZeroDec() + + totalVotingPower := sdk.ZeroDec() + currValidators := make(map[string]v1.ValidatorGovInfo) + + // fetch all the bonded validators, insert them into currValidators + k.sk.IterateBondedValidatorsByPower(ctx, func(index int64, validator stakingtypes.ValidatorI) (stop bool) { + currValidators[validator.GetOperator().String()] = v1.NewValidatorGovInfo( + validator.GetOperator(), + validator.GetBondedTokens(), + validator.GetDelegatorShares(), + sdk.ZeroDec(), + v1.WeightedVoteOptions{}, + ) + + return false + }) + + k.IterateVotes(ctx, proposal.Id, func(vote v1.Vote) bool { + // if validator, just record it in the map + voter := sdk.MustAccAddressFromBech32(vote.Voter) + + valAddrStr := sdk.ValAddress(voter.Bytes()).String() + if val, ok := currValidators[valAddrStr]; ok { + val.Vote = vote.Options + currValidators[valAddrStr] = val + } + + // iterate over all delegations from voter, deduct from any delegated-to validators + k.sk.IterateDelegations(ctx, voter, func(index int64, delegation stakingtypes.DelegationI) (stop bool) { + valAddrStr := delegation.GetValidatorAddr().String() + + if val, ok := currValidators[valAddrStr]; ok { + // There is no need to handle the special case that validator address equal to voter address. + // Because voter's voting power will tally again even if there will be deduction of voter's voting power from validator. + val.DelegatorDeductions = val.DelegatorDeductions.Add(delegation.GetShares()) + currValidators[valAddrStr] = val + + // delegation shares * bonded / total shares + votingPower := delegation.GetShares().MulInt(val.BondedTokens).Quo(val.DelegatorShares) + + for _, option := range vote.Options { + weight, _ := sdk.NewDecFromStr(option.Weight) + subPower := votingPower.Mul(weight) + results[option.Option] = results[option.Option].Add(subPower) + } + totalVotingPower = totalVotingPower.Add(votingPower) + } + + return false + }) + + // iterate over all alliance asset delegations from voter, change option to abstain + k.ak.IterateDelegations(ctx, func(delegation alliancetypes.Delegation) (stop bool) { + valAddr := delegation.DelegatorAddress + + if val, ok := currValidators[valAddr]; ok { + // delegation shares * bonded / total shares + votingPower := delegation.Shares.MulInt(val.BondedTokens).Quo(val.DelegatorShares) + + for _, option := range vote.Options { + weight, _ := sdk.NewDecFromStr(option.Weight) + subPower := votingPower.Mul(weight) + results[option.Option] = results[option.Option].Sub(subPower) + results[v1.OptionAbstain] = results[v1.OptionAbstain].Add(subPower) + } + } + + return false + }) + k.deleteVote(ctx, vote.ProposalId, voter) + return false + }) + + // iterate over the validators again to tally their voting power + for _, val := range currValidators { + if len(val.Vote) == 0 { + continue + } + + sharesAfterDeductions := val.DelegatorShares.Sub(val.DelegatorDeductions) + votingPower := sharesAfterDeductions.MulInt(val.BondedTokens).Quo(val.DelegatorShares) + + for _, option := range val.Vote { + weight, _ := sdk.NewDecFromStr(option.Weight) + subPower := votingPower.Mul(weight) + results[option.Option] = results[option.Option].Add(subPower) + } + totalVotingPower = totalVotingPower.Add(votingPower) + } + + tallyParams := k.GetTallyParams(ctx) + tallyResults = v1.NewTallyResultFromMap(results) + + // TODO: Upgrade the spec to cover all of these cases & remove pseudocode. + // If there is no staked coins, the proposal fails + if k.sk.TotalBondedTokens(ctx).IsZero() { + return false, false, tallyResults + } + + // If there is not enough quorum of votes, the proposal fails + percentVoting := totalVotingPower.Quo(sdk.NewDecFromInt(k.sk.TotalBondedTokens(ctx))) + quorum, _ := sdk.NewDecFromStr(tallyParams.Quorum) + if percentVoting.LT(quorum) { + return false, false, tallyResults + } + + // If no one votes (everyone abstains), proposal fails + if totalVotingPower.Sub(results[v1.OptionAbstain]).Equal(sdk.ZeroDec()) { + return false, false, tallyResults + } + + // If more than 1/3 of voters veto, proposal fails + vetoThreshold, _ := sdk.NewDecFromStr(tallyParams.VetoThreshold) + if results[v1.OptionNoWithVeto].Quo(totalVotingPower).GT(vetoThreshold) { + return false, true, tallyResults + } + + // If more than 1/2 of non-abstaining voters vote Yes, proposal passes + threshold, _ := sdk.NewDecFromStr(tallyParams.Threshold) + if results[v1.OptionYes].Quo(totalVotingPower.Sub(results[v1.OptionAbstain])).GT(threshold) { + return true, false, tallyResults + } + + // If more than 1/2 of non-abstaining voters vote No, proposal fails + return false, false, tallyResults +} diff --git a/custom/gov/module.go b/custom/gov/module.go index 5e57dadf..3f3b8010 100644 --- a/custom/gov/module.go +++ b/custom/gov/module.go @@ -1,8 +1,12 @@ package gov import ( + "fmt" + "github.com/cosmos/cosmos-sdk/codec" + "github.com/cosmos/cosmos-sdk/types/module" govmodule "github.com/cosmos/cosmos-sdk/x/gov" + govkeeper "github.com/cosmos/cosmos-sdk/x/gov/keeper" "github.com/cosmos/cosmos-sdk/x/gov/types" customgovkeeper "github.com/terra-money/alliance/custom/gov/keeper" @@ -21,3 +25,17 @@ func NewAppModule(cdc codec.Codec, keeper customgovkeeper.Keeper, accountKeeper keeper: keeper, } } + +// RegisterServices registers module services. +// NOTE: Overriding this method as not doing so will cause a panic +// when trying to force this custom keeper into a govkeeper +func (am AppModule) RegisterServices(cfg module.Configurator) { + m := govkeeper.NewMigrator(am.keeper.Keeper) + if err := cfg.RegisterMigration(types.ModuleName, 1, m.Migrate1to2); err != nil { + panic(fmt.Sprintf("failed to migrate x/gov from version 1 to 2: %v", err)) + } + + if err := cfg.RegisterMigration(types.ModuleName, 2, m.Migrate2to3); err != nil { + panic(fmt.Sprintf("failed to migrate x/gov from version 2 to 3: %v", err)) + } +} From c5a06be0486716763f1e2bbb9062660dfaefea62 Mon Sep 17 00:00:00 2001 From: emidev98 Date: Fri, 9 Jun 2023 12:08:58 +0300 Subject: [PATCH 4/6] Merge main into "feat/gov/participation" --- .github/dependabot.yml | 15 + .github/workflows/lint.yml | 6 +- .github/workflows/testnets.yml | 2 +- .github/workflows/tests.yml | 4 +- LICENSE | 13 + Makefile | 28 +- README.md | 126 +- SECURITY.md | 46 + app/app.go | 249 +-- app/app_test.go | 37 + app/export.go | 10 +- app/simulation_test.go | 119 +- app/test_helpers.go | 145 +- cmd/allianced/cmd/cmd_test.go | 10 +- cmd/allianced/cmd/genaccounts_test.go | 15 +- cmd/allianced/cmd/root.go | 25 +- cmd/allianced/cmd/testnet.go | 21 +- custom/bank/keeper/keeper.go | 5 +- custom/bank/module.go | 15 +- docs/proto/proto-docs.md | 394 +++-- go.mod | 166 +- go.sum | 758 ++++++--- proto/alliance/alliance.proto | 19 +- proto/alliance/delegations.proto | 2 +- proto/alliance/events.proto | 56 + proto/alliance/genesis.proto | 2 +- proto/alliance/gov.proto | 10 +- proto/alliance/params.proto | 2 +- proto/alliance/query.proto | 26 +- proto/alliance/tx.proto | 2 +- proto/buf.yaml | 1 + scripts/containers/Dockerfile | 2 +- scripts/local/README.md | 17 +- scripts/local/claim-rewards.sh | 10 + scripts/local/create-alliance.sh | 11 + scripts/local/delegate.sh | 13 +- scripts/local/genesis.json | 451 ----- scripts/local/gov-del.sh | 24 - scripts/local/gov.sh | 24 - scripts/local/init.sh | 88 - scripts/local/redelegate.sh | 11 + scripts/local/rewards.sh | 31 - scripts/local/start.sh | 11 - scripts/local/undelegate.sh | 18 +- scripts/protocgen.sh | 2 - scripts/testnet/README.md | 9 - scripts/testnet/delegate.sh | 20 - scripts/testnet/gov.sh | 27 - scripts/testnet/rewards.sh | 14 - testutil/network/network.go | 18 +- x/alliance/abci.go | 10 +- x/alliance/bindings/query_plugin.go | 140 ++ .../bindings/tests/query_plugin_test.go | 205 +++ x/alliance/bindings/types/request.go | 23 + x/alliance/bindings/types/response.go | 35 + x/alliance/client/cli/gov.go | 50 +- x/alliance/client/cli/tx.go | 12 +- x/alliance/genesis.go | 8 +- x/alliance/keeper/asset.go | 90 +- x/alliance/keeper/delegation.go | 111 +- x/alliance/keeper/genesis.go | 5 +- x/alliance/keeper/grpc_query.go | 34 +- x/alliance/keeper/hooks.go | 25 +- x/alliance/keeper/keeper.go | 2 +- x/alliance/keeper/proposal.go | 11 +- x/alliance/keeper/reward.go | 42 +- x/alliance/keeper/slash.go | 17 +- x/alliance/keeper/tests/asset_test.go | 263 ++- x/alliance/keeper/tests/delegation_test.go | 76 +- x/alliance/keeper/tests/genesis_test.go | 23 +- x/alliance/keeper/tests/grpc_query_test.go | 50 +- x/alliance/keeper/tests/keeper_test.go | 4 +- x/alliance/keeper/tests/proposal_test.go | 16 +- x/alliance/keeper/tests/reward_test.go | 383 ++++- x/alliance/keeper/tests/slash_test.go | 70 +- x/alliance/migrations/v4/migrations.go | 35 + x/alliance/module.go | 35 +- x/alliance/proposal_handler.go | 3 +- .../tests/benchmark/benchmark_genesis.json | 1 + x/alliance/tests/benchmark/benchmark_test.go | 49 +- x/alliance/tests/benchmark/test_helper.go | 8 +- .../tests/e2e/delegate_undelegate_test.go | 207 ++- x/alliance/tests/e2e/test_helper.go | 6 +- x/alliance/tests/simulation/genesis.go | 6 +- x/alliance/tests/simulation/operations.go | 26 +- x/alliance/tests/simulation/params.go | 26 - x/alliance/types/alliance.pb.go | 424 ++++- x/alliance/types/asset.go | 20 +- x/alliance/types/codec.go | 17 + x/alliance/types/delegations.pb.go | 96 +- x/alliance/types/errors.go | 3 + x/alliance/types/events.go | 14 - x/alliance/types/events.pb.go | 1451 +++++++++++++++++ x/alliance/types/genesis.pb.go | 107 +- x/alliance/types/gov.go | 28 +- x/alliance/types/gov.pb.go | 145 +- x/alliance/types/keys.go | 6 +- x/alliance/types/msg.go | 86 +- x/alliance/types/params.go | 2 +- x/alliance/types/params.pb.go | 80 +- x/alliance/types/query.pb.go | 283 ++-- x/alliance/types/tests/types_test.go | 73 +- x/alliance/types/tx.pb.go | 110 +- x/alliance/types/validator.go | 9 - 104 files changed, 5803 insertions(+), 2388 deletions(-) create mode 100644 .github/dependabot.yml create mode 100644 LICENSE create mode 100644 SECURITY.md create mode 100644 app/app_test.go create mode 100644 proto/alliance/events.proto create mode 100644 scripts/local/claim-rewards.sh create mode 100644 scripts/local/create-alliance.sh delete mode 100644 scripts/local/genesis.json delete mode 100644 scripts/local/gov-del.sh delete mode 100644 scripts/local/gov.sh delete mode 100644 scripts/local/init.sh create mode 100644 scripts/local/redelegate.sh delete mode 100644 scripts/local/rewards.sh delete mode 100644 scripts/local/start.sh delete mode 100644 scripts/testnet/README.md delete mode 100644 scripts/testnet/delegate.sh delete mode 100644 scripts/testnet/gov.sh delete mode 100644 scripts/testnet/rewards.sh create mode 100644 x/alliance/bindings/query_plugin.go create mode 100644 x/alliance/bindings/tests/query_plugin_test.go create mode 100644 x/alliance/bindings/types/request.go create mode 100644 x/alliance/bindings/types/response.go create mode 100644 x/alliance/migrations/v4/migrations.go create mode 100644 x/alliance/tests/benchmark/benchmark_genesis.json delete mode 100644 x/alliance/tests/simulation/params.go delete mode 100644 x/alliance/types/events.go create mode 100644 x/alliance/types/events.pb.go diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..1dff6a2a --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,15 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + - package-ecosystem: "gomod" # See documentation for possible values + directory: "/" # Location of package manifests + schedule: + interval: "daily" + - package-ecosystem: "github-actions" # See documentation for possible values + directory: "/" # Location of package manifests + schedule: + interval: "daily" \ No newline at end of file diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 0589fcfb..d6828488 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -15,12 +15,12 @@ jobs: name: lint runs-on: ubuntu-latest steps: - - uses: actions/setup-go@v3 + - uses: actions/setup-go@v4 with: - go-version: 1.19 + go-version: 1.20.0 - uses: actions/checkout@v3 - name: golangci-lint uses: golangci/golangci-lint-action@v3 with: # Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version - version: latest + version: v1.52.2 diff --git a/.github/workflows/testnets.yml b/.github/workflows/testnets.yml index 8c505b71..2b044f1c 100644 --- a/.github/workflows/testnets.yml +++ b/.github/workflows/testnets.yml @@ -46,7 +46,7 @@ jobs: type=raw,value=${{ matrix.name }} - name: Build docker image - uses: docker/build-push-action@v3 + uses: docker/build-push-action@v4 with: push: true file: scripts/containers/Dockerfile.alpine diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 873494cd..05837b98 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,9 +12,9 @@ jobs: name: test steps: - name: Install Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v4 with: - go-version: 1.19 + go-version: 1.20.0 - name: Checkout code uses: actions/checkout@v3 - name: Test diff --git a/LICENSE b/LICENSE new file mode 100644 index 00000000..369b7d5d --- /dev/null +++ b/LICENSE @@ -0,0 +1,13 @@ +Copyright 2023 Terraform Labs Pte + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. \ No newline at end of file diff --git a/Makefile b/Makefile index 2892854a..2b24b374 100644 --- a/Makefile +++ b/Makefile @@ -4,6 +4,7 @@ VERSION := $(shell echo $(shell git describe --tags) | sed 's/^v//') COMMIT := $(shell git log -1 --format='%H') LEDGER_ENABLED ?= true SDK_PACK := $(shell go list -m github.com/cosmos/cosmos-sdk | sed 's/ /\@/g') +PWD := $(shell pwd) BINDIR ?= $(GOPATH)/bin SIMAPP = ./app @@ -98,6 +99,10 @@ test-e2e: test-benchmark: @VERSION=$(VERSION) go test -v -mod=readonly -tags='ledger test_ledger_mock' github.com/terra-money/alliance/x/alliance/tests/benchmark +test-simulate: + @VERSION=$(VERSION) go test -v -run=TestFullAppSimulation ./app -NumBlocks 200 -BlockSize 10 -Commit -Enabled -Period 1 + +.PHONY: test test-unit test-e2e test-benchmark test-simulate ############################################################################### ### Linting ### ############################################################################### @@ -106,42 +111,29 @@ format-tools: go install mvdan.cc/gofumpt@v0.4.0 go install github.com/client9/misspell/cmd/misspell@v0.3.4 go install golang.org/x/tools/cmd/goimports@latest - go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.50.1 + go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.52.2 lint: format-tools golangci-lint run find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" -not -path "*.pb.go" -not -path "*pb.gw.go" | xargs gofumpt -d +lint-docker: + docker run --rm -v $(PWD):/app -w /app golangci/golangci-lint:v1.52.2-alpine golangci-lint run + format: format-tools find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" -not -path "*.pb.go" -not -path "*pb.gw.go" | xargs gofumpt -w find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" -not -path "*.pb.go" -not -path "*pb.gw.go" | xargs misspell -w find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" -not -path "*.pb.go" -not -path "*pb.gw.go" | xargs goimports -w -local github.com/terra-money/alliance - ############################################################################### ### Protobuf ### ############################################################################### -PROTO_BUILDER_IMAGE=tendermintdev/sdk-proto-gen:v0.7 - -proto-all: proto-swagger-gen proto-gen +PROTO_BUILDER_IMAGE=ghcr.io/cosmos/proto-builder proto-gen: @echo "Generating Protobuf files" $(DOCKER) run --rm -v $(CURDIR):/workspace --workdir /workspace $(PROTO_BUILDER_IMAGE) sh ./scripts/protocgen.sh - -############################################################################### -### Local Testnet (Single Node) ### -############################################################################### - -serve: install init start - -init: - cd scripts/local && bash init.sh - -start: - cd scripts/local && bash start.sh - ############################################################################### ### Local Testnet (docker) ### ############################################################################### diff --git a/README.md b/README.md index a7fbb121..a22055ab 100644 --- a/README.md +++ b/README.md @@ -2,88 +2,110 @@

🤝 Alliance

- Litepaper - · Technical Documentation · Integration Guide + · + Code Audit +


-# x/alliance interchain security +## Overview -The Alliance module is part of the Interchain Security (Cosmos Shared Security that benefits from the IBC standard). Alliance is a friction free Interchain Security solution because there is no necessity to share hardware resources, have the blockchains synchronized nor modify the core of the origin chain that provide Interchain Security. Alliance module introduces the concept of alliance coins that can be seen as foreign coins bridged thru an IBC channel (ICS-004), whitelisted with the help of on-chain governance in the Alliance module and delegated by users or smart contracts to the active set of network validators. +Alliance is an open-source Cosmos SDK module that leverages interchain staking to form ***economic alliances*** among blockchains. By boosting the economic activity across Cosmos chains through creating bilateral, mutually beneficial alliances, Alliance aims to give rise to a new wave of innovation, user adoption, and cross-chain collaboration. -Delegators of the alliance coins will be subjected to similar rules as the delegators of native coins but these delegators will provide Interchain Security to the network. The previously mentioned foreign coins can be in the form of Liquid Staked Derivative that benefits from the inflation of its native chain or any type of coin that can be bridged through the previously mentioned channels respecting the ICS-020 standard. +**Alliance allows blockchains to trade yield with each other- think of it like yield farming for L1s.** -When users delegate coins through the Alliance module the voting power of the validators will be diluted, as a consequence, bad actors will have to increase their capital spendings to try and corrupt the consensus of the blockchain. +### Here’s how it works: -By design, x/alliance use the following CosmosSDK modules to implement interchain security to a new or existing blockchain : +- Two chains [integrate the Alliance module](https://alliance.terra.money/guides/get-started) and decide through governance which assets can be staked on their chain. These are known as [Alliance assets](https://alliance.terra.money/alliance#what-are-alliance-assets). +- Each Alliance asset is assigned a [Take Rate](https://alliance.terra.money/alliance#the-take-rate) (the percentage of staked Alliance assets the chain redistributes to native chain stakers) and a [Reward Weight](https://alliance.terra.money/alliance#rewards) (the percentage of native staking rewards the chain distributes to Alliance asset stakers). +- Users of each chain can then [bridge their assets via IBC](https://alliance.terra.money/alliance#what-are-alliance-assets) to the other chain and stake them to earn the Reward Weight. -- [x/auth](https://github.com/cosmos/cosmos-sdk/blob/main/x/auth/README.md), -- [x/bank](https://github.com/cosmos/cosmos-sdk/blob/main/x/bank/README.md), -- [x/ibc](https://github.com/cosmos/ibc-go#ibc-go), -- [x/staking](https://github.com/cosmos/cosmos-sdk/blob/main/x/staking/README.md), -- [x/distribution](https://github.com/cosmos/cosmos-sdk/blob/main/x/distribution/README.md), -- [x/gov](https://github.com/cosmos/cosmos-sdk/blob/main/x/gov/README.md). +## Tech Specs +[The Alliance Docs](https://alliance.terra.money/) contain detailed information about Alliance. Familiarize yourself with the following concepts before integrating the Alliance module. -# Development environment -This project uses [Go v1.19](https://go.dev/dl/) and was bootstrapped with [Ignite CLI v0.25.1](https://docs.ignite.com/). However, for ease of upgrade, ignite has been removed in favor of manual workflows. +- About Alliance + - [Overview](https://alliance.terra.money/overview) + - [How Alliance works](https://alliance.terra.money/alliance) + - [Alliance staking](https://alliance.terra.money/concepts/staking) + - [Reward distribution](https://alliance.terra.money/concepts/rewards) + - [Validator shares](https://alliance.terra.money/concepts/delegation) +- Guides + - [Integrate the Alliance module](https://alliance.terra.money/guides/get-started) + - [Create, update, or delete an Alliance](https://alliance.terra.money/guides/create) + - [Interact with an Alliance](https://alliance.terra.money/guides/how-to) +- Technical specifications: + - [Module parameters](https://alliance.terra.money/tech/parameters) and [Alliance asset properties](https://alliance.terra.money/tech/asset) + - [Txs and queries](https://alliance.terra.money/tech/tx-queries) + - [Data structures](https://alliance.terra.money/tech/data) + - [State transitions](https://alliance.terra.money/tech/transitions) + - [Invariants](https://alliance.terra.money/tech/invariants) + - [Benchmarks](https://alliance.terra.money/tech/benchmarks) -To run the local development environment use: -``` -$ make serve -``` +## Integrate the `x/alliance` module -If you want to build a binary ready to use: -``` -$ make install -``` +The Alliance module can be [added to any compatible Cosmos chain](https://alliance.terra.money/guides/get-started) and does not require any changes to consensus or major changes to common core modules. This module wraps around a chain’s native staking module, allowing whitelisted assets to be staked and earn rewards. Alliance assets can be staked with the Alliance module, and the chain's native staking module is used for native stakers. -To build the proto files: -``` -$ make proto-gen -``` +Chains that want to add `x/alliance` must enable the following modules: + +- [x/auth](https://github.com/cosmos/cosmos-sdk/blob/main/x/auth/README.md) +- [x/bank](https://github.com/cosmos/cosmos-sdk/blob/main/x/bank/README.md) +- [x/ibc](https://github.com/cosmos/ibc-go#ibc-go) +- [x/staking](https://github.com/cosmos/cosmos-sdk/blob/main/x/staking/README.md) +- [x/distribution](https://github.com/cosmos/cosmos-sdk/blob/main/x/distribution/README.md) +- [x/gov](https://github.com/cosmos/cosmos-sdk/blob/main/x/gov/README.md) + +Compatibility matrix: -## Localnet -Docker orchestration to create a local network with 3 docker containers: +| Release | Branch | CosmosSDK | +|---------|----------------|-----------| +| v0.2.0 | release/v0.2.x | 0.47 | +| v0.1.0 | release/v0.1.x | 0.46 | -- **localnet-start**: stop the testnet if running, build the terra-money/localnet-alliance image and start the nodes. -- **localnet-alliance-rmi**: removes the previously created terra-money/localnet-alliance image. -- **localnet-build-env**: delete and rebuild the terra-money/localnet-alliance -- **localnet-build-nodes**: using the terra-money/localnet-alliance starts a 3 docker containers testnet. -- **localnet-stop**: stop the testnet if running. +For an in-depth guide on integrating `x/alliance`, visit the [Alliance Module Integration Guide](https://alliance.terra.money/guides/get-started). -## Install -To install the latest version of your blockchain node's binary, execute the following command on your machine: +## Development environment -## Join Testnet -Joining the testnet is a very standardized process cosmos chain. In this case you will have to use **allianced** and follow [Terra documentation](https://docs.terra.money/full-node/manage-a-terra-validator/) since it's the same process but replacing it's genesis with the one that you can find in this repo under the path [docs/testnet/genesis.json](docs/testnet/genesis.json) and the following [seeds](http://3.75.187.158:26657/net_info), +The following sections are for developers working on the `x/alliance` module. + +This project uses [Go v1.19](https://go.dev/dl/). + +To build a ready-to-use binary, run the following: + +```sh +make install +``` + +### Localnet + +The Localnet is a development environment that uses a Docker orchestration to create a local network with 3 Docker containers: + +- `make localnet-start` : stop the testnet if running, build the `terra-money/localnet-alliance` image and start the nodes. +- `make localnet-alliance-rmi`: remove the previously created `terra-money/localnet-alliance` image. +- `make localnet-build-env`: delete and rebuild the `terra-money/localnet-alliance` +- `make localnet-build-nodes`: using the `terra-money/localnet-alliance` starts a 3 docker containers testnet. +- `make localnet-stop`: stop the testnet if running. ### Running the simulation -The simulation app does not run out of the box since the alliance module owns all native stake. The `x/staking` module's operation.go file panics when a delegator does not have a private key. -In order to run the simulation, you can update the `x/staking` module directly before compiling the simulation app using the following command -```shell +The simulation app does not run out of the box because the Alliance module owns all the native stake. The `x/staking` module's `operation.go` file panics when a delegator does not have a private key. + +Use the following command to update the `x/staking` module directly before compiling the simulation app. + +```sh go mod vendor sed -i '' 's/fmt.Errorf("delegation addr: %s does not exist in simulation accounts", delAddr)/nil/g' vendor/github.com/cosmos/cosmos-sdk/x/staking/simulation/operations.go -ignite chain simulate +go test -benchmem -run=^$ -bench ^BenchmarkSimulation ./app -NumBlocks=200 -BlockSize 50 -Commit=true -Verbose=true -Enabled=true ``` -## Learn more - -- [Ignite CLI](https://ignite.com/cli) -- [Tutorials](https://docs.ignite.com/guide) -- [Ignite CLI docs](https://docs.ignite.com) -- [Cosmos SDK docs](https://docs.cosmos.network) -- [Developer Chat](https://discord.gg/ignite) - ## Warning -Please note that this is a beta version of the which still undergoing final testing before its official release. TFL does not give any warranties, whether express or implied, as to the suitability or usability of the software or any of its content. +Please note that Alliance is still undergoing final testing before its official release. TFL does not give any warranties, whether express or implied, as to the suitability or usability of the software or any of its content. TFL will not be liable for any loss, whether such loss is direct, indirect, special or consequential, suffered by any party as a result of their use of the software or content. -Should you encounter any bugs, glitches, lack of functionality or other problems on the website, please submit bugs and feature requests through Github Issues. +Should you encounter any bugs, glitches, lack of functionality or other problems on the website, please submit bugs and feature requests through Github Issues. diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 00000000..70815178 --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,46 @@ +# Terra bug reporting and feature requests + +The Terra core development team uses GitHub to manage feature requests and bugs. This is done via GitHub Issues. + +## Triage and progress 🔜 + +Issues added to GitHub will be triaged as they come in. + +Tracking of in-flight issues will be done through the Terra Core project board; however, the Terra core development team reserves the right to not make a public issue if there is a security implication in doing so. + +## Feature request 🚀 + +For a feature request, e.g. module inclusion, please make a GitHub issue. Clearly state your use case and what value it will bring to other users or developers. + +For chain-specific requests, governance, or parameter changes, please discuss any issues or features on the relevant chain. + +## Standard priority bug 🐛 + +For a bug that is non-sensitive and/or operational in nature rather than a critical vulnerability, please add it as a GitHub issue. + +## Critical bug or security issue 💥 + +If you're here because you're trying to figure out how to notify us of a security issue, use [this link](https://www.terra.money/bugcrowd) to submit your report + +Please avoid opening public issues on GitHub that contain information about a potential security vulnerability as this makes it difficult to reduce the impact and harm of valid security issues. + +### Coordinated Vulnerability Disclosure Policy + + The Terra core development team asks security researchers to keep vulnerabilities and communications around vulnerability submissions private and confidential until a patch is developed. In addition to this, the team asks that you: + +- Allow them a reasonable amount of time to correct or address security vulnerabilities. +- Avoid exploiting any vulnerabilities that you discover. +- Demonstrate good faith by not disrupting or degrading Terra’s network, data, or services. + +### Vulnerability Disclosure Process + +The Terra core development team uses the following disclosure process: + +- Once a security report is received, the Terra core development team works to verify the issue. +- Patches are prepared for eligible releases in private repositories. +- The Terra core development team notifies the community that a security release is coming to give users time to prepare their systems for the update. Notifications can include Discord messages, tweets, and emails to partners and validators. +- 24 hours following this notification, the fixes are applied publicly and new releases are issued. +- Once releases are available, the community is notified again through the same channels as above. The Terra core development team also publishes a Security Advisory on Github and publishes the CVE, as long as neither the Security Advisory nor the CVE include any information on how to exploit these vulnerabilities beyond what information is already available in the patch itself. +- Once the community is notified, any relevant and eligible bug bounties will be paid to submitters. +- One week after the releases go out, a post will be published with further details on the vulnerability as well as the response to it. +- This process can take some time. Every effort will be made to handle the bug in as timely a manner as possible. However, it's important that the process described above is followed to ensure that disclosures are handled consistently and to keep Terra and the projects running on it secure. \ No newline at end of file diff --git a/app/app.go b/app/app.go index 7def0144..e7e9f306 100644 --- a/app/app.go +++ b/app/app.go @@ -1,21 +1,28 @@ package app import ( + "encoding/json" "fmt" "io" "net/http" "os" "path/filepath" + dbm "github.com/cometbft/cometbft-db" + abci "github.com/cometbft/cometbft/abci/types" + tmjson "github.com/cometbft/cometbft/libs/json" + "github.com/cometbft/cometbft/libs/log" + tmos "github.com/cometbft/cometbft/libs/os" "github.com/cosmos/cosmos-sdk/baseapp" "github.com/cosmos/cosmos-sdk/client" + nodeservice "github.com/cosmos/cosmos-sdk/client/grpc/node" "github.com/cosmos/cosmos-sdk/client/grpc/tmservice" "github.com/cosmos/cosmos-sdk/codec" "github.com/cosmos/cosmos-sdk/codec/types" + "github.com/cosmos/cosmos-sdk/runtime" "github.com/cosmos/cosmos-sdk/server/api" "github.com/cosmos/cosmos-sdk/server/config" servertypes "github.com/cosmos/cosmos-sdk/server/types" - "github.com/cosmos/cosmos-sdk/simapp" storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" @@ -36,11 +43,13 @@ import ( "github.com/cosmos/cosmos-sdk/x/capability" capabilitykeeper "github.com/cosmos/cosmos-sdk/x/capability/keeper" capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types" + consensus "github.com/cosmos/cosmos-sdk/x/consensus" + consensusparamkeeper "github.com/cosmos/cosmos-sdk/x/consensus/keeper" + consensusparamtypes "github.com/cosmos/cosmos-sdk/x/consensus/types" "github.com/cosmos/cosmos-sdk/x/crisis" crisiskeeper "github.com/cosmos/cosmos-sdk/x/crisis/keeper" crisistypes "github.com/cosmos/cosmos-sdk/x/crisis/types" distr "github.com/cosmos/cosmos-sdk/x/distribution" - distrclient "github.com/cosmos/cosmos-sdk/x/distribution/client" distrkeeper "github.com/cosmos/cosmos-sdk/x/distribution/keeper" distrtypes "github.com/cosmos/cosmos-sdk/x/distribution/types" "github.com/cosmos/cosmos-sdk/x/evidence" @@ -53,6 +62,7 @@ import ( genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types" "github.com/cosmos/cosmos-sdk/x/gov" govclient "github.com/cosmos/cosmos-sdk/x/gov/client" + govkeeper "github.com/cosmos/cosmos-sdk/x/gov/keeper" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" govv1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1" govv1beta1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" @@ -77,33 +87,28 @@ import ( upgradeclient "github.com/cosmos/cosmos-sdk/x/upgrade/client" upgradekeeper "github.com/cosmos/cosmos-sdk/x/upgrade/keeper" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - ica "github.com/cosmos/ibc-go/v6/modules/apps/27-interchain-accounts" - icahost "github.com/cosmos/ibc-go/v6/modules/apps/27-interchain-accounts/host" - icahostkeeper "github.com/cosmos/ibc-go/v6/modules/apps/27-interchain-accounts/host/keeper" - icahosttypes "github.com/cosmos/ibc-go/v6/modules/apps/27-interchain-accounts/host/types" - icatypes "github.com/cosmos/ibc-go/v6/modules/apps/27-interchain-accounts/types" - "github.com/cosmos/ibc-go/v6/modules/apps/transfer" - ibctransferkeeper "github.com/cosmos/ibc-go/v6/modules/apps/transfer/keeper" - ibctransfertypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" - ibc "github.com/cosmos/ibc-go/v6/modules/core" - ibcclient "github.com/cosmos/ibc-go/v6/modules/core/02-client" - ibcclientclient "github.com/cosmos/ibc-go/v6/modules/core/02-client/client" - ibcclienttypes "github.com/cosmos/ibc-go/v6/modules/core/02-client/types" - ibcporttypes "github.com/cosmos/ibc-go/v6/modules/core/05-port/types" - ibchost "github.com/cosmos/ibc-go/v6/modules/core/24-host" - ibckeeper "github.com/cosmos/ibc-go/v6/modules/core/keeper" + ica "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts" + icahost "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host" + icahostkeeper "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/keeper" + icahosttypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" + "github.com/cosmos/ibc-go/v7/modules/apps/transfer" + ibctransferkeeper "github.com/cosmos/ibc-go/v7/modules/apps/transfer/keeper" + ibctransfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" + ibc "github.com/cosmos/ibc-go/v7/modules/core" + ibcclient "github.com/cosmos/ibc-go/v7/modules/core/02-client" + ibcclientclient "github.com/cosmos/ibc-go/v7/modules/core/02-client/client" + ibcclienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" + ibcporttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" + ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" + ibckeeper "github.com/cosmos/ibc-go/v7/modules/core/keeper" + solomachine "github.com/cosmos/ibc-go/v7/modules/light-clients/06-solomachine" + ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" "github.com/spf13/cast" - abci "github.com/tendermint/tendermint/abci/types" - tmjson "github.com/tendermint/tendermint/libs/json" - "github.com/tendermint/tendermint/libs/log" - tmos "github.com/tendermint/tendermint/libs/os" - dbm "github.com/tendermint/tm-db" appparams "github.com/terra-money/alliance/app/params" custombankmodule "github.com/terra-money/alliance/custom/bank" custombankkeeper "github.com/terra-money/alliance/custom/bank/keeper" - customgovmodule "github.com/terra-money/alliance/custom/gov" - customgovkeeper "github.com/terra-money/alliance/custom/gov/keeper" "github.com/terra-money/alliance/app/openapiconsole" @@ -129,7 +134,6 @@ func getGovProposalHandlers() []govclient.ProposalHandler { govProposalHandlers = append(govProposalHandlers, paramsclient.ProposalHandler, - distrclient.ProposalHandler, upgradeclient.LegacyProposalHandler, upgradeclient.LegacyCancelProposalHandler, ibcclientclient.UpdateClientProposalHandler, @@ -166,13 +170,15 @@ var ( feegrantmodule.AppModuleBasic{}, groupmodule.AppModuleBasic{}, ibc.AppModuleBasic{}, + ibctm.AppModuleBasic{}, + solomachine.AppModuleBasic{}, upgrade.AppModuleBasic{}, evidence.AppModuleBasic{}, transfer.AppModuleBasic{}, ica.AppModuleBasic{}, vesting.AppModuleBasic{}, + consensus.AppModuleBasic{}, alliancemodule.AppModuleBasic{}, - // this line is used by starport scaffolding # stargate/app/moduleBasic ) // module account permissions @@ -192,8 +198,8 @@ var ( ) var ( + _ runtime.AppI = (*App)(nil) _ servertypes.Application = (*App)(nil) - _ simapp.App = (*App)(nil) ) func init() { @@ -213,6 +219,7 @@ type App struct { cdc *codec.LegacyAmino appCodec codec.Codec + txConfig client.TxConfig interfaceRegistry types.InterfaceRegistry invCheckPeriod uint @@ -223,24 +230,25 @@ type App struct { memKeys map[string]*storetypes.MemoryStoreKey // keepers - AccountKeeper authkeeper.AccountKeeper - AuthzKeeper authzkeeper.Keeper - BankKeeper custombankkeeper.Keeper - CapabilityKeeper *capabilitykeeper.Keeper - StakingKeeper stakingkeeper.Keeper - SlashingKeeper slashingkeeper.Keeper - MintKeeper mintkeeper.Keeper - DistrKeeper distrkeeper.Keeper - GovKeeper customgovkeeper.Keeper - CrisisKeeper crisiskeeper.Keeper - UpgradeKeeper upgradekeeper.Keeper - ParamsKeeper paramskeeper.Keeper - IBCKeeper *ibckeeper.Keeper // IBC Keeper must be a pointer in the app, so we can SetRouter on it correctly - EvidenceKeeper evidencekeeper.Keeper - TransferKeeper ibctransferkeeper.Keeper - ICAHostKeeper icahostkeeper.Keeper - FeeGrantKeeper feegrantkeeper.Keeper - GroupKeeper groupkeeper.Keeper + AccountKeeper authkeeper.AccountKeeper + AuthzKeeper authzkeeper.Keeper + BankKeeper custombankkeeper.Keeper + CapabilityKeeper *capabilitykeeper.Keeper + StakingKeeper *stakingkeeper.Keeper + SlashingKeeper slashingkeeper.Keeper + MintKeeper mintkeeper.Keeper + DistrKeeper distrkeeper.Keeper + GovKeeper govkeeper.Keeper + CrisisKeeper crisiskeeper.Keeper + UpgradeKeeper upgradekeeper.Keeper + ParamsKeeper paramskeeper.Keeper + IBCKeeper *ibckeeper.Keeper // IBC Keeper must be a pointer in the app, so we can SetRouter on it correctly + EvidenceKeeper evidencekeeper.Keeper + TransferKeeper ibctransferkeeper.Keeper + ICAHostKeeper icahostkeeper.Keeper + FeeGrantKeeper feegrantkeeper.Keeper + GroupKeeper groupkeeper.Keeper + ConsensusParamsKeeper consensusparamkeeper.Keeper // make scoped keepers public for test purposes ScopedIBCKeeper capabilitykeeper.ScopedKeeper @@ -273,18 +281,20 @@ func New( ) *App { appCodec := encodingConfig.Marshaler cdc := encodingConfig.Amino + txConfig := encodingConfig.TxConfig interfaceRegistry := encodingConfig.InterfaceRegistry bApp := baseapp.NewBaseApp(Name, logger, db, encodingConfig.TxConfig.TxDecoder(), baseAppOptions...) bApp.SetCommitMultiStoreTracer(traceStore) bApp.SetVersion(version.Version) bApp.SetInterfaceRegistry(interfaceRegistry) + bApp.SetTxEncoder(txConfig.TxEncoder()) keys := sdk.NewKVStoreKeys( authtypes.StoreKey, authz.ModuleName, banktypes.StoreKey, stakingtypes.StoreKey, minttypes.StoreKey, distrtypes.StoreKey, slashingtypes.StoreKey, govtypes.StoreKey, - paramstypes.StoreKey, ibchost.StoreKey, upgradetypes.StoreKey, feegrant.StoreKey, evidencetypes.StoreKey, + paramstypes.StoreKey, ibcexported.StoreKey, upgradetypes.StoreKey, feegrant.StoreKey, evidencetypes.StoreKey, ibctransfertypes.StoreKey, icahosttypes.StoreKey, capabilitytypes.StoreKey, group.StoreKey, - alliancemoduletypes.StoreKey, + alliancemoduletypes.StoreKey, consensusparamtypes.StoreKey, crisistypes.StoreKey, // this line is used by starport scaffolding # stargate/app/storeKey ) tkeys := sdk.NewTransientStoreKeys(paramstypes.TStoreKey) @@ -294,6 +304,7 @@ func New( BaseApp: bApp, cdc: cdc, appCodec: appCodec, + txConfig: txConfig, interfaceRegistry: interfaceRegistry, invCheckPeriod: invCheckPeriod, keys: keys, @@ -309,7 +320,8 @@ func New( ) // set the BaseApp's parameter store - bApp.SetParamStore(app.ParamsKeeper.Subspace(baseapp.Paramspace).WithKeyTable(paramstypes.ConsensusParamsKeyTable())) + app.ConsensusParamsKeeper = consensusparamkeeper.NewKeeper(appCodec, keys[consensusparamtypes.StoreKey], authtypes.NewModuleAddress(govtypes.ModuleName).String()) + bApp.SetParamStore(&app.ConsensusParamsKeeper) // add capability keeper and ScopeToModule for ibc module app.CapabilityKeeper = capabilitykeeper.NewKeeper( @@ -319,7 +331,7 @@ func New( ) // grant capabilities for the ibc and ibc-transfer modules - scopedIBCKeeper := app.CapabilityKeeper.ScopeToModule(ibchost.ModuleName) + scopedIBCKeeper := app.CapabilityKeeper.ScopeToModule(ibcexported.ModuleName) scopedTransferKeeper := app.CapabilityKeeper.ScopeToModule(ibctransfertypes.ModuleName) scopedICAHostKeeper := app.CapabilityKeeper.ScopeToModule(icahosttypes.SubModuleName) // this line is used by starport scaffolding # stargate/app/scopedKeeper @@ -328,10 +340,10 @@ func New( app.AccountKeeper = authkeeper.NewAccountKeeper( appCodec, keys[authtypes.StoreKey], - app.GetSubspace(authtypes.ModuleName), authtypes.ProtoBaseAccount, maccPerms, sdk.Bech32PrefixAccAddr, + authtypes.NewModuleAddress(govtypes.ModuleName).String(), ) app.AuthzKeeper = authzkeeper.NewKeeper( @@ -345,50 +357,53 @@ func New( appCodec, keys[banktypes.StoreKey], app.AccountKeeper, - app.GetSubspace(banktypes.ModuleName), app.BlockedModuleAccountAddrs(), + authtypes.NewModuleAddress(govtypes.ModuleName).String(), ) - stakingKeeper := stakingkeeper.NewKeeper( + app.StakingKeeper = stakingkeeper.NewKeeper( appCodec, keys[stakingtypes.StoreKey], app.AccountKeeper, app.BankKeeper, - app.GetSubspace(stakingtypes.ModuleName), + authtypes.NewModuleAddress(govtypes.ModuleName).String(), ) app.MintKeeper = mintkeeper.NewKeeper( appCodec, keys[minttypes.StoreKey], - app.GetSubspace(minttypes.ModuleName), - &stakingKeeper, + app.StakingKeeper, app.AccountKeeper, app.BankKeeper, authtypes.FeeCollectorName, + authtypes.NewModuleAddress(govtypes.ModuleName).String(), ) app.DistrKeeper = distrkeeper.NewKeeper( appCodec, keys[distrtypes.StoreKey], - app.GetSubspace(distrtypes.ModuleName), app.AccountKeeper, app.BankKeeper, - &stakingKeeper, + app.StakingKeeper, authtypes.FeeCollectorName, + authtypes.NewModuleAddress(govtypes.ModuleName).String(), ) app.SlashingKeeper = slashingkeeper.NewKeeper( appCodec, + cdc, keys[slashingtypes.StoreKey], - &stakingKeeper, - app.GetSubspace(slashingtypes.ModuleName), + app.StakingKeeper, + authtypes.NewModuleAddress(govtypes.ModuleName).String(), ) - app.CrisisKeeper = crisiskeeper.NewKeeper( - app.GetSubspace(crisistypes.ModuleName), + app.CrisisKeeper = *crisiskeeper.NewKeeper( + appCodec, + keys[crisistypes.StoreKey], invCheckPeriod, app.BankKeeper, authtypes.FeeCollectorName, + authtypes.NewModuleAddress(govtypes.ModuleName).String(), ) groupConfig := group.DefaultConfig() @@ -410,8 +425,7 @@ func New( app.AccountKeeper, ) - app.UpgradeKeeper = upgradekeeper.NewKeeper( - skipUpgradeHeights, + app.UpgradeKeeper = *upgradekeeper.NewKeeper(skipUpgradeHeights, keys[upgradetypes.StoreKey], appCodec, homePath, @@ -425,15 +439,15 @@ func New( app.GetSubspace(alliancemoduletypes.ModuleName), app.AccountKeeper, app.BankKeeper, - &stakingKeeper, + app.StakingKeeper, app.DistrKeeper, ) - app.BankKeeper.RegisterKeepers(app.AllianceKeeper, &stakingKeeper) + app.BankKeeper.RegisterKeepers(app.AllianceKeeper, app.StakingKeeper) // register the staking hooks // NOTE: stakingKeeper above is passed by reference, so that it will contain these hooks - app.StakingKeeper = *stakingKeeper.SetHooks( + app.StakingKeeper.SetHooks( stakingtypes.NewMultiStakingHooks(app.DistrKeeper.Hooks(), app.SlashingKeeper.Hooks(), app.AllianceKeeper.StakingHooks()), ) @@ -441,8 +455,8 @@ func New( // Create IBC Keeper app.IBCKeeper = ibckeeper.NewKeeper( - appCodec, keys[ibchost.StoreKey], - app.GetSubspace(ibchost.ModuleName), + appCodec, keys[ibcexported.StoreKey], + app.GetSubspace(ibcexported.ModuleName), app.StakingKeeper, app.UpgradeKeeper, scopedIBCKeeper, @@ -481,7 +495,7 @@ func New( evidenceKeeper := evidencekeeper.NewKeeper( appCodec, keys[evidencetypes.StoreKey], - &app.StakingKeeper, + app.StakingKeeper, app.SlashingKeeper, ) // If evidence needs to be handled for the app, set routes in router here and seal @@ -491,21 +505,30 @@ func New( govRouter. AddRoute(govtypes.RouterKey, govv1beta1.ProposalHandler). AddRoute(paramproposal.RouterKey, params.NewParamChangeProposalHandler(app.ParamsKeeper)). - AddRoute(distrtypes.RouterKey, distr.NewCommunityPoolSpendProposalHandler(app.DistrKeeper)). - AddRoute(upgradetypes.RouterKey, upgrade.NewSoftwareUpgradeProposalHandler(app.UpgradeKeeper)). + AddRoute(upgradetypes.RouterKey, upgrade.NewSoftwareUpgradeProposalHandler(&app.UpgradeKeeper)). AddRoute(ibcclienttypes.RouterKey, ibcclient.NewClientProposalHandler(app.IBCKeeper.ClientKeeper)). AddRoute(alliancemoduletypes.RouterKey, alliancemodule.NewAllianceProposalHandler(app.AllianceKeeper)) govConfig := govtypes.DefaultConfig() - app.GovKeeper = customgovkeeper.NewKeeper( + /* + Example of setting gov params: + govConfig.MaxMetadataLen = 10000 + */ + govKeeper := govkeeper.NewKeeper( appCodec, keys[govtypes.StoreKey], - app.GetSubspace(govtypes.ModuleName), app.AccountKeeper, app.BankKeeper, - &stakingKeeper, - govRouter, + app.StakingKeeper, app.MsgServiceRouter(), govConfig, + authtypes.NewModuleAddress(govtypes.ModuleName).String(), + ) + govKeeper.SetLegacyRouter(govRouter) + + app.GovKeeper = *govKeeper.SetHooks( + govtypes.NewMultiGovHooks( + // register the governance hooks + ), ) // this line is used by starport scaffolding # stargate/app/keeperDefinition @@ -531,20 +554,20 @@ func New( app.AccountKeeper, app.StakingKeeper, app.BaseApp.DeliverTx, encodingConfig.TxConfig, ), - auth.NewAppModule(appCodec, app.AccountKeeper, nil), + auth.NewAppModule(appCodec, app.AccountKeeper, authsims.RandomGenesisAccounts, app.GetSubspace(authtypes.ModuleName)), authzmodule.NewAppModule(appCodec, app.AuthzKeeper, app.AccountKeeper, app.BankKeeper, app.interfaceRegistry), vesting.NewAppModule(app.AccountKeeper, app.BankKeeper), - custombankmodule.NewAppModule(appCodec, app.BankKeeper, app.AccountKeeper), - capability.NewAppModule(appCodec, *app.CapabilityKeeper), + custombankmodule.NewAppModule(appCodec, app.BankKeeper, app.AccountKeeper, app.GetSubspace(banktypes.ModuleName)), + capability.NewAppModule(appCodec, *app.CapabilityKeeper, false), feegrantmodule.NewAppModule(appCodec, app.AccountKeeper, app.BankKeeper, app.FeeGrantKeeper, app.interfaceRegistry), groupmodule.NewAppModule(appCodec, app.GroupKeeper, app.AccountKeeper, app.BankKeeper, app.interfaceRegistry), - crisis.NewAppModule(&app.CrisisKeeper, skipGenesisInvariants), - customgovmodule.NewAppModule(appCodec, app.GovKeeper, app.AccountKeeper, app.BankKeeper), - mint.NewAppModule(appCodec, app.MintKeeper, app.AccountKeeper, minttypes.DefaultInflationCalculationFn), - slashing.NewAppModule(appCodec, app.SlashingKeeper, app.AccountKeeper, app.BankKeeper, app.StakingKeeper), - distr.NewAppModule(appCodec, app.DistrKeeper, app.AccountKeeper, app.BankKeeper, app.StakingKeeper), - staking.NewAppModule(appCodec, app.StakingKeeper, app.AccountKeeper, app.BankKeeper), - upgrade.NewAppModule(app.UpgradeKeeper), + crisis.NewAppModule(&app.CrisisKeeper, skipGenesisInvariants, app.GetSubspace(crisistypes.ModuleName)), + gov.NewAppModule(appCodec, &app.GovKeeper, app.AccountKeeper, app.BankKeeper, app.GetSubspace(govtypes.ModuleName)), + mint.NewAppModule(appCodec, app.MintKeeper, app.AccountKeeper, nil, app.GetSubspace(minttypes.ModuleName)), + slashing.NewAppModule(appCodec, app.SlashingKeeper, app.AccountKeeper, app.BankKeeper, app.StakingKeeper, app.GetSubspace(slashingtypes.ModuleName)), + distr.NewAppModule(appCodec, app.DistrKeeper, app.AccountKeeper, app.BankKeeper, app.StakingKeeper, app.GetSubspace(distrtypes.ModuleName)), + staking.NewAppModule(appCodec, app.StakingKeeper, app.AccountKeeper, app.BankKeeper, app.GetSubspace(stakingtypes.ModuleName)), + upgrade.NewAppModule(&app.UpgradeKeeper), evidence.NewAppModule(app.EvidenceKeeper), ibc.NewAppModule(app.IBCKeeper), params.NewAppModule(app.ParamsKeeper), @@ -572,8 +595,8 @@ func New( govtypes.ModuleName, crisistypes.ModuleName, ibctransfertypes.ModuleName, - ibchost.ModuleName, icatypes.ModuleName, + ibcexported.ModuleName, genutiltypes.ModuleName, authz.ModuleName, feegrant.ModuleName, @@ -589,7 +612,7 @@ func New( govtypes.ModuleName, stakingtypes.ModuleName, ibctransfertypes.ModuleName, - ibchost.ModuleName, + ibcexported.ModuleName, icatypes.ModuleName, capabilitytypes.ModuleName, authtypes.ModuleName, @@ -626,7 +649,7 @@ func New( crisistypes.ModuleName, genutiltypes.ModuleName, ibctransfertypes.ModuleName, - ibchost.ModuleName, + ibcexported.ModuleName, icatypes.ModuleName, evidencetypes.ModuleName, authz.ModuleName, @@ -643,31 +666,21 @@ func New( // app.mm.SetOrderMigrations(custom order) app.mm.RegisterInvariants(&app.CrisisKeeper) - app.mm.RegisterRoutes(app.Router(), app.QueryRouter(), encodingConfig.Amino) app.configurator = module.NewConfigurator(app.appCodec, app.MsgServiceRouter(), app.GRPCQueryRouter()) app.mm.RegisterServices(app.configurator) // create the simulation manager and define the order of the modules for deterministic simulations - app.sm = module.NewSimulationManager( - auth.NewAppModule(appCodec, app.AccountKeeper, authsims.RandomGenesisAccounts), - authzmodule.NewAppModule(appCodec, app.AuthzKeeper, app.AccountKeeper, app.BankKeeper, app.interfaceRegistry), - bank.NewAppModule(appCodec, app.BankKeeper, app.AccountKeeper), - capability.NewAppModule(appCodec, *app.CapabilityKeeper), - feegrantmodule.NewAppModule(appCodec, app.AccountKeeper, app.BankKeeper, app.FeeGrantKeeper, app.interfaceRegistry), - customgovmodule.NewAppModule(appCodec, app.GovKeeper, app.AccountKeeper, app.BankKeeper), - mint.NewAppModule(appCodec, app.MintKeeper, app.AccountKeeper, minttypes.DefaultInflationCalculationFn), - staking.NewAppModule(appCodec, app.StakingKeeper, app.AccountKeeper, app.BankKeeper), - distr.NewAppModule(appCodec, app.DistrKeeper, app.AccountKeeper, app.BankKeeper, app.StakingKeeper), - slashing.NewAppModule(appCodec, app.SlashingKeeper, app.AccountKeeper, app.BankKeeper, app.StakingKeeper), - params.NewAppModule(app.ParamsKeeper), - groupmodule.NewAppModule(appCodec, app.GroupKeeper, app.AccountKeeper, app.BankKeeper, app.interfaceRegistry), - evidence.NewAppModule(app.EvidenceKeeper), - ibc.NewAppModule(app.IBCKeeper), - transferModule, - alliancemodule.NewAppModule(appCodec, app.AllianceKeeper, app.StakingKeeper, app.AccountKeeper, app.BankKeeper, app.interfaceRegistry), - // this line is used by starport scaffolding # stargate/app/appModule - ) + // + // NOTE: this is not required apps that don't use the simulator for fuzz testing + // transactions + overrideModules := map[string]module.AppModuleSimulation{ + authtypes.ModuleName: auth.NewAppModule(app.appCodec, app.AccountKeeper, authsims.RandomGenesisAccounts, app.GetSubspace(authtypes.ModuleName)), + } + + // create the simulation manager and define the order of the modules for deterministic simulations app.sm = module.NewSimulationManagerFromAppModules(app.ModuleManager.Modules, overrideModules) + app.sm = module.NewSimulationManagerFromAppModules(app.mm.Modules, overrideModules) + app.sm.RegisterStoreDecoders() // initialize stores @@ -789,6 +802,16 @@ func (app *App) GetKey(storeKey string) *storetypes.KVStoreKey { return app.keys[storeKey] } +// TxConfig returns WasmApp's TxConfig +func (app *App) TxConfig() client.TxConfig { + return app.txConfig +} + +// DefaultGenesis returns a default genesis from the registered AppModuleBasic's. +func (app *App) DefaultGenesis() map[string]json.RawMessage { + return ModuleBasics.DefaultGenesis(app.appCodec) +} + // GetTKey returns the TransientStoreKey for the provided store key. // // NOTE: This is solely to be used for testing purposes. @@ -813,7 +836,7 @@ func (app *App) GetSubspace(moduleName string) paramstypes.Subspace { // RegisterAPIRoutes registers all application module routes with the provided // API server. -func (app *App) RegisterAPIRoutes(apiSvr *api.Server, apiConfig config.APIConfig) { +func (app *App) RegisterAPIRoutes(apiSvr *api.Server, _ config.APIConfig) { clientCtx := apiSvr.ClientCtx // Register new tx routes from grpc-gateway. authtx.RegisterGRPCGatewayRoutes(clientCtx, apiSvr.GRPCGatewayRouter) @@ -843,6 +866,10 @@ func (app *App) RegisterTendermintService(clientCtx client.Context) { ) } +func (app *App) RegisterNodeService(clientCtx client.Context) { + nodeservice.RegisterNodeService(clientCtx, app.GRPCQueryRouter()) +} + // GetMaccPerms returns a copy of the module account permissions func GetMaccPerms() map[string][]string { dupMaccPerms := make(map[string][]string) @@ -862,10 +889,10 @@ func initParamsKeeper(appCodec codec.BinaryCodec, legacyAmino *codec.LegacyAmino paramsKeeper.Subspace(minttypes.ModuleName) paramsKeeper.Subspace(distrtypes.ModuleName) paramsKeeper.Subspace(slashingtypes.ModuleName) - paramsKeeper.Subspace(govtypes.ModuleName).WithKeyTable(govv1.ParamKeyTable()) + paramsKeeper.Subspace(govtypes.ModuleName).WithKeyTable(govv1.ParamKeyTable()) //nolint:staticcheck paramsKeeper.Subspace(crisistypes.ModuleName) paramsKeeper.Subspace(ibctransfertypes.ModuleName) - paramsKeeper.Subspace(ibchost.ModuleName) + paramsKeeper.Subspace(ibcexported.ModuleName) paramsKeeper.Subspace(icahosttypes.SubModuleName) paramsKeeper.Subspace(alliancemoduletypes.ModuleName) // this line is used by starport scaffolding # stargate/app/paramSubspace diff --git a/app/app_test.go b/app/app_test.go new file mode 100644 index 00000000..39edf15e --- /dev/null +++ b/app/app_test.go @@ -0,0 +1,37 @@ +package app + +import ( + "testing" + + db "github.com/cometbft/cometbft-db" + "github.com/cometbft/cometbft/libs/log" + authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" + govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" + "github.com/stretchr/testify/require" +) + +func TestAppExportAndBlockedAddrs(t *testing.T) { + app := Setup(t) + _, err := app.ExportAppStateAndValidators(true, []string{}, nil) + require.NoError(t, err, "ExportAppStateAndValidators should not have an error") + + app = New( + log.NewNopLogger(), + db.NewMemDB(), + nil, + true, + map[int64]bool{}, + DefaultNodeHome, + 0, + MakeTestEncodingConfig(), + EmptyAppOptions{}, + ) + blockedAddrs := app.BlockedModuleAccountAddrs() + + require.NotContains(t, blockedAddrs, authtypes.NewModuleAddress(govtypes.ModuleName).String()) +} + +func TestGetMaccPerms(t *testing.T) { + dup := GetMaccPerms() + require.Equal(t, maccPerms, dup, "duplicated module account permissions differed from actual module account permissions") +} diff --git a/app/export.go b/app/export.go index d9033d58..f9b4981c 100644 --- a/app/export.go +++ b/app/export.go @@ -4,7 +4,7 @@ import ( "encoding/json" "log" - tmproto "github.com/tendermint/tendermint/proto/tendermint/types" + tmproto "github.com/cometbft/cometbft/proto/tendermint/types" servertypes "github.com/cosmos/cosmos-sdk/server/types" sdk "github.com/cosmos/cosmos-sdk/types" @@ -16,7 +16,7 @@ import ( // ExportAppStateAndValidators exports the state of the application for a genesis // file. func (app *App) ExportAppStateAndValidators( - forZeroHeight bool, jailAllowedAddrs []string, + forZeroHeight bool, jailAllowedAddrs []string, modulesToExport []string, ) (servertypes.ExportedApp, error) { // as if they could withdraw from the start of the next block ctx := app.NewContext(true, tmproto.Header{Height: app.LastBlockHeight()}) @@ -29,7 +29,7 @@ func (app *App) ExportAppStateAndValidators( app.prepForZeroHeightGenesis(ctx, jailAllowedAddrs) } - genState := app.mm.ExportGenesis(ctx, app.appCodec) + genState := app.mm.ExportGenesisForModules(ctx, app.appCodec, modulesToExport) appState, err := json.MarshalIndent(genState, "", " ") if err != nil { return servertypes.ExportedApp{}, err @@ -78,7 +78,7 @@ func (app *App) prepForZeroHeightGenesis(ctx sdk.Context, jailAllowedAddrs []str app.StakingKeeper.IterateValidators(ctx, func(_ int64, val stakingtypes.ValidatorI) (stop bool) { _, err := app.DistrKeeper.WithdrawValidatorCommission(ctx, val.GetOperator()) if err != nil { - panic(err) + app.Logger().Error(err.Error(), "ValOperatorAddress", val.GetOperator()) } return false }) @@ -159,7 +159,7 @@ func (app *App) prepForZeroHeightGenesis(ctx sdk.Context, jailAllowedAddrs []str counter := int16(0) for ; iter.Valid(); iter.Next() { - addr := sdk.ValAddress(iter.Key()[1:]) + addr := sdk.ValAddress(stakingtypes.AddressFromValidatorsKey(iter.Key())) validator, found := app.StakingKeeper.GetValidator(ctx, addr) if !found { panic("expected validator, not found") diff --git a/app/simulation_test.go b/app/simulation_test.go index 4bd13192..50531840 100644 --- a/app/simulation_test.go +++ b/app/simulation_test.go @@ -5,33 +5,84 @@ import ( "testing" "github.com/cosmos/cosmos-sdk/baseapp" - "github.com/cosmos/cosmos-sdk/codec" - "github.com/cosmos/cosmos-sdk/simapp" - sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/cosmos-sdk/types/module" - simulationtypes "github.com/cosmos/cosmos-sdk/types/simulation" + simtestutil "github.com/cosmos/cosmos-sdk/testutil/sims" + simtypes "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/cosmos/cosmos-sdk/x/simulation" - "github.com/stretchr/testify/require" - abci "github.com/tendermint/tendermint/abci/types" + simcli "github.com/cosmos/cosmos-sdk/x/simulation/client/cli" + "github.com/stretchr/testify/require" "github.com/terra-money/alliance/app" ) +// Hardcoded chainID for simulation. +const ( + simulationAppChainID = "simulation-app" + simulationDirPrefix = "leveldb-app-sim" + simulationDBName = "Simulation" +) + func init() { - simapp.GetSimulatorFlags() + simcli.GetSimulatorFlags() } -type SimApp interface { - app.App - GetBaseApp() *baseapp.BaseApp - AppCodec() codec.Codec - SimulationManager() *module.SimulationManager - ModuleAccountAddrs() map[string]bool - Name() string - LegacyAmino() *codec.LegacyAmino - BeginBlocker(ctx sdk.Context, req abci.RequestBeginBlock) abci.ResponseBeginBlock - EndBlocker(ctx sdk.Context, req abci.RequestEndBlock) abci.ResponseEndBlock - InitChainer(ctx sdk.Context, req abci.RequestInitChain) abci.ResponseInitChain +// Running as a go test: +// +// go test -v -run=TestFullAppSimulation ./app -NumBlocks 200 -BlockSize 10 -Commit -Enabled -Period 1 +func TestFullAppSimulation(t *testing.T) { + config := simcli.NewConfigFromFlags() + config.ChainID = simulationAppChainID + + if !simcli.FlagEnabledValue { + t.Skip("skipping application simulation") + } + + db, dir, logger, _, err := simtestutil.SetupSimulation( + config, + simulationDirPrefix, + simulationDBName, + simcli.FlagVerboseValue, + true, // Don't use this as it is confusing + ) + require.NoError(t, err, "simulation setup failed") + + defer func() { + require.NoError(t, db.Close()) + require.NoError(t, os.RemoveAll(dir)) + }() + + app := app.New(logger, + db, + nil, + true, + map[int64]bool{}, + app.DefaultNodeHome, + simcli.FlagPeriodValue, + app.MakeTestEncodingConfig(), + simtestutil.EmptyAppOptions{}, + baseapp.SetChainID(simulationAppChainID), + ) + + // run randomized simulation + _, simParams, simErr := simulation.SimulateFromSeed( + t, + os.Stdout, + app.BaseApp, + simtestutil.AppStateFn(app.AppCodec(), app.SimulationManager(), app.DefaultGenesis()), + simtypes.RandomAccounts, + simtestutil.SimulationOperations(app, app.AppCodec(), config), + app.BankKeeper.GetBlockedAddresses(), + config, + app.AppCodec(), + ) + + // export state and simParams before the simulatino error is checked + err = simtestutil.CheckExportSimulation(app, config, simParams) + require.NoError(t, err) + require.NoError(t, simErr) + + if config.Commit { + simtestutil.PrintStats(db) + } } // BenchmarkSimulation run the chain simulation @@ -40,12 +91,15 @@ type SimApp interface { // Running as go benchmark test: // `go test -benchmem -run=^$ -bench ^BenchmarkSimulation ./app -NumBlocks=200 -BlockSize 50 -Commit=true -Verbose=true -Enabled=true` func BenchmarkSimulation(b *testing.B) { - simapp.FlagEnabledValue = true - simapp.FlagCommitValue = true + config := simcli.NewConfigFromFlags() - config, db, dir, logger, _, err := simapp.SetupSimulation("goleveldb-app-sim", "Simulation") + db, dir, logger, skip, err := simtestutil.SetupSimulation(config, "leveldb-app-sim", "Simulation", true, true) require.NoError(b, err, "simulation setup failed") + if skip { + b.Skip("skipping application simulation") + } + b.Cleanup(func() { db.Close() err = os.RemoveAll(dir) @@ -54,8 +108,7 @@ func BenchmarkSimulation(b *testing.B) { encoding := app.MakeTestEncodingConfig() - simApp := app.New( - logger, + app := app.New(logger, db, nil, true, @@ -63,28 +116,28 @@ func BenchmarkSimulation(b *testing.B) { app.DefaultNodeHome, 0, encoding, - simapp.EmptyAppOptions{}, + simtestutil.EmptyAppOptions{}, ) // Run randomized simulations _, simParams, simErr := simulation.SimulateFromSeed( b, os.Stdout, - simApp.GetBaseApp(), - simapp.AppStateFn(simApp.AppCodec(), simApp.SimulationManager()), - simulationtypes.RandomAccounts, - simapp.SimulationOperations(simApp, simApp.AppCodec(), config), - simApp.ModuleAccountAddrs(), + app.GetBaseApp(), + simtestutil.AppStateFn(app.AppCodec(), app.SimulationManager(), app.DefaultGenesis()), + simtypes.RandomAccounts, + simtestutil.SimulationOperations(app, app.AppCodec(), config), + app.ModuleAccountAddrs(), config, - simApp.AppCodec(), + app.AppCodec(), ) // export state and simParams before the simulation error is checked - err = simapp.CheckExportSimulation(simApp, config, simParams) + err = simtestutil.CheckExportSimulation(app, config, simParams) require.NoError(b, err) require.NoError(b, simErr) if config.Commit { - simapp.PrintStats(db) + simtestutil.PrintStats(db) } } diff --git a/app/test_helpers.go b/app/test_helpers.go index 317648c0..c35cd53c 100644 --- a/app/test_helpers.go +++ b/app/test_helpers.go @@ -5,20 +5,27 @@ import ( "encoding/hex" "encoding/json" "fmt" + "os" "strconv" "testing" "time" + cosmoserrors "cosmossdk.io/errors" + bam "github.com/cosmos/cosmos-sdk/baseapp" "github.com/cosmos/cosmos-sdk/codec" codectypes "github.com/cosmos/cosmos-sdk/codec/types" - cryptocodec "github.com/cosmos/cosmos-sdk/crypto/codec" "github.com/cosmos/cosmos-sdk/crypto/keys/ed25519" "github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1" cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" + servertypes "github.com/cosmos/cosmos-sdk/server/types" "github.com/cosmos/cosmos-sdk/std" + pruningtypes "github.com/cosmos/cosmos-sdk/store/pruning/types" "github.com/cosmos/cosmos-sdk/testutil/mock" + "github.com/cosmos/cosmos-sdk/testutil/network" + simtestutil "github.com/cosmos/cosmos-sdk/testutil/sims" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/errors" + "github.com/cosmos/cosmos-sdk/types/module/testutil" "github.com/cosmos/cosmos-sdk/x/auth/tx" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" @@ -27,16 +34,16 @@ import ( "github.com/terra-money/alliance/app/params" + dbm "github.com/cometbft/cometbft-db" + abci "github.com/cometbft/cometbft/abci/types" + "github.com/cometbft/cometbft/libs/log" + tmproto "github.com/cometbft/cometbft/proto/tendermint/types" + tmtypes "github.com/cometbft/cometbft/types" "github.com/stretchr/testify/require" - abci "github.com/tendermint/tendermint/abci/types" - "github.com/tendermint/tendermint/libs/log" - tmproto "github.com/tendermint/tendermint/proto/tendermint/types" - tmtypes "github.com/tendermint/tendermint/types" - dbm "github.com/tendermint/tm-db" ) // Setup initializes a new SimApp. A Nop logger is set in SimApp. -func Setup(t *testing.T, isCheckTx bool) *App { +func Setup(t *testing.T) *App { t.Helper() privVal := mock.NewPV() @@ -68,7 +75,8 @@ func SetupWithGenesisValSet(t *testing.T, valSet *tmtypes.ValidatorSet, genAccs t.Helper() app, genesisState := setup(true, 5) - genesisState = genesisStateWithValSet(t, app, genesisState, valSet, genAccs, balances...) + genesisState, err := simtestutil.GenesisStateWithValSet(app.AppCodec(), genesisState, valSet, genAccs, balances...) + require.NoError(t, err) stateBytes, err := json.MarshalIndent(genesisState, "", " ") require.NoError(t, err) @@ -77,7 +85,7 @@ func SetupWithGenesisValSet(t *testing.T, valSet *tmtypes.ValidatorSet, genAccs app.InitChain( abci.RequestInitChain{ Validators: []abci.ValidatorUpdate{}, - ConsensusParams: DefaultConsensusParams, + ConsensusParams: simtestutil.DefaultConsensusParams, AppStateBytes: stateBytes, }, ) @@ -94,70 +102,6 @@ func SetupWithGenesisValSet(t *testing.T, valSet *tmtypes.ValidatorSet, genAccs return app } -func genesisStateWithValSet(t *testing.T, - app *App, genesisState GenesisState, - valSet *tmtypes.ValidatorSet, genAccs []authtypes.GenesisAccount, - balances ...banktypes.Balance, -) GenesisState { - // set genesis accounts - authGenesis := authtypes.NewGenesisState(authtypes.DefaultParams(), genAccs) - genesisState[authtypes.ModuleName] = app.AppCodec().MustMarshalJSON(authGenesis) - - validators := make([]stakingtypes.Validator, 0, len(valSet.Validators)) - delegations := make([]stakingtypes.Delegation, 0, len(valSet.Validators)) - - bondAmt := sdk.DefaultPowerReduction - - for _, val := range valSet.Validators { - pk, err := cryptocodec.FromTmPubKeyInterface(val.PubKey) - require.NoError(t, err) - pkAny, err := codectypes.NewAnyWithValue(pk) - require.NoError(t, err) - validator := stakingtypes.Validator{ - OperatorAddress: sdk.ValAddress(val.Address).String(), - ConsensusPubkey: pkAny, - Jailed: false, - Status: stakingtypes.Bonded, - Tokens: bondAmt, - DelegatorShares: sdk.OneDec(), - Description: stakingtypes.Description{}, - UnbondingHeight: int64(0), - UnbondingTime: time.Unix(0, 0).UTC(), - Commission: stakingtypes.NewCommission(sdk.ZeroDec(), sdk.ZeroDec(), sdk.ZeroDec()), - MinSelfDelegation: sdk.ZeroInt(), - } - validators = append(validators, validator) - delegations = append(delegations, stakingtypes.NewDelegation(genAccs[0].GetAddress(), val.Address.Bytes(), sdk.OneDec())) - - } - // set validators and delegations - stakingGenesis := stakingtypes.NewGenesisState(stakingtypes.DefaultParams(), validators, delegations) - genesisState[stakingtypes.ModuleName] = app.AppCodec().MustMarshalJSON(stakingGenesis) - - totalSupply := sdk.NewCoins() - for _, b := range balances { - // add genesis acc tokens to total supply - totalSupply = totalSupply.Add(b.Coins...) - } - - for range delegations { - // add delegated tokens to total supply - totalSupply = totalSupply.Add(sdk.NewCoin(sdk.DefaultBondDenom, bondAmt)) - } - - // add bonded amount to bonded pool module account - balances = append(balances, banktypes.Balance{ - Address: authtypes.NewModuleAddress(stakingtypes.BondedPoolName).String(), - Coins: sdk.Coins{sdk.NewCoin(sdk.DefaultBondDenom, bondAmt)}, - }) - - // update total supply - bankGenesis := banktypes.NewGenesisState(banktypes.DefaultGenesisState().Params, balances, totalSupply, []banktypes.Metadata{}) - genesisState[banktypes.ModuleName] = app.AppCodec().MustMarshalJSON(bankGenesis) - - return genesisState -} - func setup(withGenesis bool, invCheckPeriod uint) (*App, GenesisState) { db := dbm.NewMemDB() encCdc := MakeTestEncodingConfig() @@ -193,21 +137,21 @@ func MakeTestEncodingConfig() params.EncodingConfig { type EmptyAppOptions struct{} // Get implements AppOptions -func (ao EmptyAppOptions) Get(o string) interface{} { +func (ao EmptyAppOptions) Get(_ string) interface{} { return nil } -var DefaultConsensusParams = &abci.ConsensusParams{ - Block: &abci.BlockParams{ +var DefaultConsensusParams = tmtypes.ConsensusParams{ + Block: tmtypes.BlockParams{ MaxBytes: 200000, MaxGas: 2000000, }, - Evidence: &tmproto.EvidenceParams{ + Evidence: tmtypes.EvidenceParams{ MaxAgeNumBlocks: 302400, MaxAgeDuration: 504 * time.Hour, // 3 weeks is the max duration MaxBytes: 10000, }, - Validator: &tmproto.ValidatorParams{ + Validator: tmtypes.ValidatorParams{ PubKeyTypes: []string{ tmtypes.ABCIPubKeyTypeEd25519, }, @@ -311,7 +255,7 @@ func NewPubKeyFromHex(pk string) (res cryptotypes.PubKey) { panic(err) } if len(pkBytes) != ed25519.PubKeySize { - panic(errors.Wrap(errors.ErrInvalidPubKey, "invalid pubkey size")) + panic(cosmoserrors.Wrap(errors.ErrInvalidPubKey, "invalid pubkey size")) } return &ed25519.PubKey{Key: pkBytes} } @@ -322,6 +266,47 @@ func RegisterNewValidator(t *testing.T, app *App, ctx sdk.Context, val stakingty app.StakingKeeper.SetValidator(ctx, val) app.StakingKeeper.SetValidatorByConsAddr(ctx, val) //nolint:errcheck app.StakingKeeper.SetNewValidatorByPowerIndex(ctx, val) - err := app.StakingKeeper.AfterValidatorCreated(ctx, val.GetOperator()) + err := app.StakingKeeper.Hooks().AfterValidatorCreated(ctx, val.GetOperator()) require.NoError(t, err) } + +// NewTestNetworkFixture returns a new simapp AppConstructor for network simulation tests +func NewTestNetworkFixture() network.TestFixture { + dir, err := os.MkdirTemp("", "simapp") + if err != nil { + panic(fmt.Sprintf("failed creating temporary directory: %v", err)) + } + defer os.RemoveAll(dir) + + app := New( + log.NewNopLogger(), + dbm.NewMemDB(), + nil, + true, + map[int64]bool{}, + dir, + 0, + MakeTestEncodingConfig(), + EmptyAppOptions{}, + ) + appCtr := func(val network.ValidatorI) servertypes.Application { + return New( + val.GetCtx().Logger, dbm.NewMemDB(), nil, true, map[int64]bool{}, + val.GetCtx().Config.RootDir, 0, MakeTestEncodingConfig(), + EmptyAppOptions{}, + bam.SetPruning(pruningtypes.NewPruningOptionsFromString(val.GetAppConfig().Pruning)), + bam.SetMinGasPrices(val.GetAppConfig().MinGasPrices), + ) + } + + return network.TestFixture{ + AppConstructor: appCtr, + GenesisState: NewDefaultGenesisState(app.AppCodec()), + EncodingConfig: testutil.TestEncodingConfig{ + InterfaceRegistry: app.InterfaceRegistry(), + Codec: app.AppCodec(), + TxConfig: app.TxConfig(), + Amino: app.LegacyAmino(), + }, + } +} diff --git a/cmd/allianced/cmd/cmd_test.go b/cmd/allianced/cmd/cmd_test.go index ab9d8de7..38eaaa8a 100644 --- a/cmd/allianced/cmd/cmd_test.go +++ b/cmd/allianced/cmd/cmd_test.go @@ -8,9 +8,10 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" svrcmd "github.com/cosmos/cosmos-sdk/server/cmd" - "github.com/cosmos/cosmos-sdk/simapp" - "github.com/cosmos/cosmos-sdk/simapp/simd/cmd" "github.com/cosmos/cosmos-sdk/x/genutil/client/cli" + + "github.com/terra-money/alliance/app" + "github.com/terra-money/alliance/cmd/allianced/cmd" ) func TestInitCmd(t *testing.T) { @@ -20,8 +21,7 @@ func TestInitCmd(t *testing.T) { "simapp-test", // Moniker fmt.Sprintf("--%s=%s", cli.FlagOverwrite, "true"), // Overwrite genesis.json, in case it already exists }) - - require.NoError(t, svrcmd.Execute(rootCmd, "", simapp.DefaultNodeHome)) + require.NoError(t, svrcmd.Execute(rootCmd, "", app.DefaultNodeHome)) } func TestHomeFlagRegistration(t *testing.T) { @@ -35,7 +35,7 @@ func TestHomeFlagRegistration(t *testing.T) { homeDir, }) - require.NoError(t, svrcmd.Execute(rootCmd, "", simapp.DefaultNodeHome)) + require.NoError(t, svrcmd.Execute(rootCmd, "", app.DefaultNodeHome)) result, err := rootCmd.Flags().GetString(flags.FlagHome) require.NoError(t, err) diff --git a/cmd/allianced/cmd/genaccounts_test.go b/cmd/allianced/cmd/genaccounts_test.go index ca751fc3..ab5a81ce 100644 --- a/cmd/allianced/cmd/genaccounts_test.go +++ b/cmd/allianced/cmd/genaccounts_test.go @@ -9,19 +9,20 @@ import ( "github.com/cosmos/cosmos-sdk/crypto/keyring" sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cometbft/cometbft/libs/log" "github.com/spf13/viper" "github.com/stretchr/testify/require" - "github.com/tendermint/tendermint/libs/log" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/server" - "github.com/cosmos/cosmos-sdk/simapp" - simcmd "github.com/cosmos/cosmos-sdk/simapp/simd/cmd" "github.com/cosmos/cosmos-sdk/testutil/testdata" "github.com/cosmos/cosmos-sdk/types/module" "github.com/cosmos/cosmos-sdk/x/genutil" genutiltest "github.com/cosmos/cosmos-sdk/x/genutil/client/testutil" + + "github.com/terra-money/alliance/app" + alliancecmd "github.com/terra-money/alliance/cmd/allianced/cmd" ) var testMbm = module.NewBasicManager(genutil.AppModuleBasic{}) @@ -52,7 +53,7 @@ func TestAddGenesisAccountCmd(t *testing.T) { { name: "multiple denoms", addr: addr1.String(), - denom: "1000atom, 2000stake", + denom: "1000atom, 2000bbn", withKeyring: false, expectErr: false, }, @@ -73,7 +74,7 @@ func TestAddGenesisAccountCmd(t *testing.T) { cfg, err := genutiltest.CreateDefaultTendermintConfig(home) require.NoError(t, err) - appCodec := simapp.MakeTestEncodingConfig().Codec + appCodec := app.MakeTestEncodingConfig().Marshaler err = genutiltest.ExecInitCmd(testMbm, home, appCodec) require.NoError(t, err) @@ -82,7 +83,7 @@ func TestAddGenesisAccountCmd(t *testing.T) { if tc.withKeyring { path := hd.CreateHDPath(118, 0, 0).String() - kr, err := keyring.New(sdk.KeyringServiceName(), keyring.BackendMemory, home, nil, appCodec) + kr, err := keyring.New(sdk.KeyringServiceName(), keyring.BackendMemory, home, nil, clientCtx.Codec) require.NoError(t, err) _, _, err = kr.NewMnemonic(tc.addr, keyring.English, path, keyring.DefaultBIP39Passphrase, hd.Secp256k1) require.NoError(t, err) @@ -93,7 +94,7 @@ func TestAddGenesisAccountCmd(t *testing.T) { ctx = context.WithValue(ctx, client.ClientContextKey, &clientCtx) ctx = context.WithValue(ctx, server.ServerContextKey, serverCtx) - cmd := simcmd.AddGenesisAccountCmd(home) + cmd := alliancecmd.AddGenesisAccountCmd(home) cmd.SetArgs([]string{ tc.addr, tc.denom, diff --git a/cmd/allianced/cmd/root.go b/cmd/allianced/cmd/root.go index b34be799..cf59390e 100644 --- a/cmd/allianced/cmd/root.go +++ b/cmd/allianced/cmd/root.go @@ -7,12 +7,13 @@ import ( "github.com/spf13/cast" + dbm "github.com/cometbft/cometbft-db" + tmcfg "github.com/cometbft/cometbft/config" + tmcli "github.com/cometbft/cometbft/libs/cli" + "github.com/cometbft/cometbft/libs/log" "github.com/spf13/cobra" - tmcfg "github.com/tendermint/tendermint/config" - tmcli "github.com/tendermint/tendermint/libs/cli" - "github.com/tendermint/tendermint/libs/log" - dbm "github.com/tendermint/tm-db" + rosettaCmd "cosmossdk.io/tools/rosetta/cmd" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/config" "github.com/cosmos/cosmos-sdk/client/debug" @@ -26,14 +27,16 @@ import ( "github.com/terra-money/alliance/app" - "github.com/terra-money/alliance/app/params" - sdk "github.com/cosmos/cosmos-sdk/types" authcmd "github.com/cosmos/cosmos-sdk/x/auth/client/cli" "github.com/cosmos/cosmos-sdk/x/auth/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" "github.com/cosmos/cosmos-sdk/x/crisis" + "github.com/cosmos/cosmos-sdk/x/genutil" genutilcli "github.com/cosmos/cosmos-sdk/x/genutil/client/cli" + genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types" + + "github.com/terra-money/alliance/app/params" ) // NewRootCmd creates a new root command for simd. It is called once in the @@ -156,11 +159,11 @@ lru_size = 0` func initRootCmd(rootCmd *cobra.Command, encodingConfig params.EncodingConfig) { cfg := sdk.GetConfig() cfg.Seal() - + gentxModule := app.ModuleBasics[genutiltypes.ModuleName].(genutil.AppModuleBasic) a := appCreator{encodingConfig} rootCmd.AddCommand( genutilcli.InitCmd(app.ModuleBasics, app.DefaultNodeHome), - genutilcli.CollectGenTxsCmd(banktypes.GenesisBalancesIterator{}, app.DefaultNodeHome), + genutilcli.CollectGenTxsCmd(banktypes.GenesisBalancesIterator{}, app.DefaultNodeHome, gentxModule.GenTxValidator), genutilcli.MigrateGenesisCmd(), genutilcli.GenTxCmd(app.ModuleBasics, encodingConfig.TxConfig, banktypes.GenesisBalancesIterator{}, app.DefaultNodeHome), genutilcli.ValidateGenesisCmd(app.ModuleBasics), @@ -183,7 +186,7 @@ func initRootCmd(rootCmd *cobra.Command, encodingConfig params.EncodingConfig) { ) // add rosetta - rootCmd.AddCommand(server.RosettaCommand(encodingConfig.InterfaceRegistry, encodingConfig.Marshaler)) + rootCmd.AddCommand(rosettaCmd.RosettaCommand(encodingConfig.InterfaceRegistry, encodingConfig.Marshaler)) } func addModuleInitFlags(startCmd *cobra.Command) { @@ -267,7 +270,7 @@ func (a appCreator) newApp(logger log.Logger, db dbm.DB, traceStore io.Writer, a // appExport creates a new app (optionally at a given height) // and exports state. func (a appCreator) appExport( - logger log.Logger, db dbm.DB, traceStore io.Writer, height int64, forZeroHeight bool, jailAllowedAddrs []string, appOpts servertypes.AppOptions, + logger log.Logger, db dbm.DB, traceStore io.Writer, height int64, forZeroHeight bool, jailAllowedAddrs []string, appOpts servertypes.AppOptions, modulesToExport []string, ) (servertypes.ExportedApp, error) { var simApp *app.App homePath, ok := appOpts.Get(flags.FlagHome).(string) @@ -285,5 +288,5 @@ func (a appCreator) appExport( simApp = app.New(logger, db, traceStore, true, map[int64]bool{}, homePath, uint(1), a.encCfg, appOpts) } - return simApp.ExportAppStateAndValidators(forZeroHeight, jailAllowedAddrs) + return simApp.ExportAppStateAndValidators(forZeroHeight, jailAllowedAddrs, modulesToExport) } diff --git a/cmd/allianced/cmd/testnet.go b/cmd/allianced/cmd/testnet.go index d816fece..33fbb27f 100644 --- a/cmd/allianced/cmd/testnet.go +++ b/cmd/allianced/cmd/testnet.go @@ -9,11 +9,11 @@ import ( "path/filepath" "time" + tmconfig "github.com/cometbft/cometbft/config" + tmrand "github.com/cometbft/cometbft/libs/rand" + "github.com/cometbft/cometbft/types" + tmtime "github.com/cometbft/cometbft/types/time" "github.com/spf13/cobra" - tmconfig "github.com/tendermint/tendermint/config" - tmrand "github.com/tendermint/tendermint/libs/rand" - "github.com/tendermint/tendermint/types" - tmtime "github.com/tendermint/tendermint/types/time" "cosmossdk.io/math" @@ -36,9 +36,11 @@ import ( "github.com/cosmos/cosmos-sdk/x/genutil" genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - govtypesv1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1" + govtypesv1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" minttypes "github.com/cosmos/cosmos-sdk/x/mint/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" + + "github.com/terra-money/alliance/app" ) var ( @@ -84,7 +86,7 @@ func addTestnetFlagsToCmd(cmd *cobra.Command) { cmd.Flags().StringP(flagOutputDir, "o", "./.testnets", "Directory to store initialization data for the testnet") cmd.Flags().String(flags.FlagChainID, "", "genesis file chain-id, if left blank will be randomly created") cmd.Flags().String(server.FlagMinGasPrices, fmt.Sprintf("0.000006%s", sdk.DefaultBondDenom), "Minimum gas prices to accept for transactions; All fees in a tx must meet this minimum (e.g. 0.01photino,0.001stake)") - cmd.Flags().String(flags.FlagKeyAlgorithm, string(hd.Secp256k1Type), "Key signing algorithm to generate keys for") + cmd.Flags().String(flags.FlagKeyType, string(hd.Secp256k1Type), "Key signing algorithm to generate keys for") } // NewTestnetCmd creates a root testnet command with subcommands to run an in-process testnet or initialize @@ -138,7 +140,7 @@ Example: args.nodeDaemonHome, _ = cmd.Flags().GetString(flagNodeDaemonHome) args.startingIPAddress, _ = cmd.Flags().GetString(flagStartingIPAddress) args.numValidators, _ = cmd.Flags().GetInt(flagNumValidators) - args.algo, _ = cmd.Flags().GetString(flags.FlagKeyAlgorithm) + args.algo, _ = cmd.Flags().GetString(flags.FlagKeyType) return initTestnetFiles(clientCtx, cmd, config, mbm, genBalIterator, args) }, @@ -171,7 +173,7 @@ Example: args.chainID, _ = cmd.Flags().GetString(flags.FlagChainID) args.minGasPrices, _ = cmd.Flags().GetString(server.FlagMinGasPrices) args.numValidators, _ = cmd.Flags().GetInt(flagNumValidators) - args.algo, _ = cmd.Flags().GetString(flags.FlagKeyAlgorithm) + args.algo, _ = cmd.Flags().GetString(flags.FlagKeyType) args.enableLogging, _ = cmd.Flags().GetBool(flagEnableLogging) args.rpcAddress, _ = cmd.Flags().GetString(flagRPCAddress) args.apiAddress, _ = cmd.Flags().GetString(flagAPIAddress) @@ -473,6 +475,7 @@ func collectGenFiles( initCfg, *genDoc, genBalIterator, + genutiltypes.DefaultMessageValidator, ) if err != nil { return err @@ -534,7 +537,7 @@ func writeFile(name string, dir string, contents []byte) error { // startTestnet starts an in-process testnet func startTestnet(cmd *cobra.Command, args startArgs) error { - networkConfig := network.DefaultConfig() + networkConfig := network.DefaultConfig(app.NewTestNetworkFixture) // Default networkConfig.ChainID is random, and we should only override it if chainID provided // is non-empty diff --git a/custom/bank/keeper/keeper.go b/custom/bank/keeper/keeper.go index 1968ac48..58c48e68 100644 --- a/custom/bank/keeper/keeper.go +++ b/custom/bank/keeper/keeper.go @@ -9,7 +9,6 @@ import ( accountkeeper "github.com/cosmos/cosmos-sdk/x/auth/keeper" bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper" "github.com/cosmos/cosmos-sdk/x/bank/types" - paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" @@ -33,11 +32,11 @@ func NewBaseKeeper( cdc codec.BinaryCodec, storeKey storetypes.StoreKey, ak accountkeeper.AccountKeeper, - paramSpace paramtypes.Subspace, blockedAddrs map[string]bool, + authority string, ) Keeper { keeper := Keeper{ - BaseKeeper: bankkeeper.NewBaseKeeper(cdc, storeKey, ak, paramSpace, blockedAddrs), + BaseKeeper: bankkeeper.NewBaseKeeper(cdc, storeKey, ak, blockedAddrs, authority), // TODO: how to set authority? ak: alliancekeeper.Keeper{}, sk: stakingkeeper.Keeper{}, acck: ak, diff --git a/custom/bank/module.go b/custom/bank/module.go index 5b47e268..5cfcdeed 100644 --- a/custom/bank/module.go +++ b/custom/bank/module.go @@ -6,6 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/codec" "github.com/cosmos/cosmos-sdk/types/module" bankmodule "github.com/cosmos/cosmos-sdk/x/bank" + "github.com/cosmos/cosmos-sdk/x/bank/exported" bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper" "github.com/cosmos/cosmos-sdk/x/bank/types" @@ -17,15 +18,17 @@ import ( // It modifies the TotalSupply and SupplyOf GRPC queries type AppModule struct { bankmodule.AppModule - keeper custombankkeeper.Keeper + keeper custombankkeeper.Keeper + subspace exported.Subspace } // NewAppModule creates a new AppModule object -func NewAppModule(cdc codec.Codec, keeper custombankkeeper.Keeper, accountKeeper types.AccountKeeper) AppModule { - bankModule := bankmodule.NewAppModule(cdc, keeper, accountKeeper) +func NewAppModule(cdc codec.Codec, keeper custombankkeeper.Keeper, accountKeeper types.AccountKeeper, ss exported.Subspace) AppModule { + bankModule := bankmodule.NewAppModule(cdc, keeper, accountKeeper, ss) return AppModule{ AppModule: bankModule, keeper: keeper, + subspace: ss, } } @@ -36,7 +39,7 @@ func (am AppModule) RegisterServices(cfg module.Configurator) { types.RegisterMsgServer(cfg.MsgServer(), bankkeeper.NewMsgServerImpl(am.keeper)) types.RegisterQueryServer(cfg.QueryServer(), am.keeper) - m := bankkeeper.NewMigrator(am.keeper.BaseKeeper) + m := bankkeeper.NewMigrator(am.keeper.BaseKeeper, am.subspace) if err := cfg.RegisterMigration(types.ModuleName, 1, m.Migrate1to2); err != nil { panic(fmt.Sprintf("failed to migrate x/bank from version 1 to 2: %v", err)) } @@ -44,4 +47,8 @@ func (am AppModule) RegisterServices(cfg module.Configurator) { if err := cfg.RegisterMigration(types.ModuleName, 2, m.Migrate2to3); err != nil { panic(fmt.Sprintf("failed to migrate x/bank from version 2 to 3: %v", err)) } + + if err := cfg.RegisterMigration(types.ModuleName, 3, m.Migrate3to4); err != nil { + panic(fmt.Sprintf("failed to migrate x/bank from version 3 to 4: %v", err)) + } } diff --git a/docs/proto/proto-docs.md b/docs/proto/proto-docs.md index bbea1509..da650f0e 100644 --- a/docs/proto/proto-docs.md +++ b/docs/proto/proto-docs.md @@ -5,70 +5,77 @@ ## Table of Contents - [alliance/params.proto](#alliance/params.proto) - - [Params](#alliance.alliance.Params) - - [RewardHistory](#alliance.alliance.RewardHistory) + - [Params](#alliance.Params) + - [RewardHistory](#alliance.RewardHistory) - [alliance/alliance.proto](#alliance/alliance.proto) - - [AllianceAsset](#alliance.alliance.AllianceAsset) - - [RewardWeightChangeSnapshot](#alliance.alliance.RewardWeightChangeSnapshot) + - [AllianceAsset](#alliance.AllianceAsset) + - [RewardWeightChangeSnapshot](#alliance.RewardWeightChangeSnapshot) + - [RewardWeightRange](#alliance.RewardWeightRange) - [alliance/delegations.proto](#alliance/delegations.proto) - - [AllianceValidatorInfo](#alliance.alliance.AllianceValidatorInfo) - - [Delegation](#alliance.alliance.Delegation) - - [QueuedRedelegation](#alliance.alliance.QueuedRedelegation) - - [QueuedUndelegation](#alliance.alliance.QueuedUndelegation) - - [Redelegation](#alliance.alliance.Redelegation) - - [Undelegation](#alliance.alliance.Undelegation) + - [AllianceValidatorInfo](#alliance.AllianceValidatorInfo) + - [Delegation](#alliance.Delegation) + - [QueuedRedelegation](#alliance.QueuedRedelegation) + - [QueuedUndelegation](#alliance.QueuedUndelegation) + - [Redelegation](#alliance.Redelegation) + - [Undelegation](#alliance.Undelegation) + +- [alliance/events.proto](#alliance/events.proto) + - [ClaimAllianceRewardsEvent](#alliance.ClaimAllianceRewardsEvent) + - [DelegateAllianceEvent](#alliance.DelegateAllianceEvent) + - [RedelegateAllianceEvent](#alliance.RedelegateAllianceEvent) + - [UndelegateAllianceEvent](#alliance.UndelegateAllianceEvent) - [alliance/genesis.proto](#alliance/genesis.proto) - - [GenesisState](#alliance.alliance.GenesisState) - - [RedelegationState](#alliance.alliance.RedelegationState) - - [RewardWeightChangeSnapshotState](#alliance.alliance.RewardWeightChangeSnapshotState) - - [UndelegationState](#alliance.alliance.UndelegationState) - - [ValidatorInfoState](#alliance.alliance.ValidatorInfoState) + - [GenesisState](#alliance.GenesisState) + - [RedelegationState](#alliance.RedelegationState) + - [RewardWeightChangeSnapshotState](#alliance.RewardWeightChangeSnapshotState) + - [UndelegationState](#alliance.UndelegationState) + - [ValidatorInfoState](#alliance.ValidatorInfoState) - [alliance/gov.proto](#alliance/gov.proto) - - [MsgCreateAllianceProposal](#alliance.alliance.MsgCreateAllianceProposal) - - [MsgDeleteAllianceProposal](#alliance.alliance.MsgDeleteAllianceProposal) - - [MsgUpdateAllianceProposal](#alliance.alliance.MsgUpdateAllianceProposal) + - [MsgCreateAllianceProposal](#alliance.MsgCreateAllianceProposal) + - [MsgDeleteAllianceProposal](#alliance.MsgDeleteAllianceProposal) + - [MsgUpdateAllianceProposal](#alliance.MsgUpdateAllianceProposal) - [alliance/query.proto](#alliance/query.proto) - - [DelegationResponse](#alliance.alliance.DelegationResponse) - - [QueryAllAllianceValidatorsRequest](#alliance.alliance.QueryAllAllianceValidatorsRequest) - - [QueryAllAlliancesDelegationsRequest](#alliance.alliance.QueryAllAlliancesDelegationsRequest) - - [QueryAllianceDelegationRequest](#alliance.alliance.QueryAllianceDelegationRequest) - - [QueryAllianceDelegationResponse](#alliance.alliance.QueryAllianceDelegationResponse) - - [QueryAllianceDelegationRewardsRequest](#alliance.alliance.QueryAllianceDelegationRewardsRequest) - - [QueryAllianceDelegationRewardsResponse](#alliance.alliance.QueryAllianceDelegationRewardsResponse) - - [QueryAllianceRequest](#alliance.alliance.QueryAllianceRequest) - - [QueryAllianceResponse](#alliance.alliance.QueryAllianceResponse) - - [QueryAllianceValidatorRequest](#alliance.alliance.QueryAllianceValidatorRequest) - - [QueryAllianceValidatorResponse](#alliance.alliance.QueryAllianceValidatorResponse) - - [QueryAllianceValidatorsResponse](#alliance.alliance.QueryAllianceValidatorsResponse) - - [QueryAlliancesDelegationByValidatorRequest](#alliance.alliance.QueryAlliancesDelegationByValidatorRequest) - - [QueryAlliancesDelegationsRequest](#alliance.alliance.QueryAlliancesDelegationsRequest) - - [QueryAlliancesDelegationsResponse](#alliance.alliance.QueryAlliancesDelegationsResponse) - - [QueryAlliancesRequest](#alliance.alliance.QueryAlliancesRequest) - - [QueryAlliancesResponse](#alliance.alliance.QueryAlliancesResponse) - - [QueryIBCAllianceDelegationRequest](#alliance.alliance.QueryIBCAllianceDelegationRequest) - - [QueryIBCAllianceDelegationRewardsRequest](#alliance.alliance.QueryIBCAllianceDelegationRewardsRequest) - - [QueryIBCAllianceRequest](#alliance.alliance.QueryIBCAllianceRequest) - - [QueryParamsRequest](#alliance.alliance.QueryParamsRequest) - - [QueryParamsResponse](#alliance.alliance.QueryParamsResponse) + - [DelegationResponse](#alliance.DelegationResponse) + - [QueryAllAllianceValidatorsRequest](#alliance.QueryAllAllianceValidatorsRequest) + - [QueryAllAlliancesDelegationsRequest](#alliance.QueryAllAlliancesDelegationsRequest) + - [QueryAllianceDelegationRequest](#alliance.QueryAllianceDelegationRequest) + - [QueryAllianceDelegationResponse](#alliance.QueryAllianceDelegationResponse) + - [QueryAllianceDelegationRewardsRequest](#alliance.QueryAllianceDelegationRewardsRequest) + - [QueryAllianceDelegationRewardsResponse](#alliance.QueryAllianceDelegationRewardsResponse) + - [QueryAllianceRequest](#alliance.QueryAllianceRequest) + - [QueryAllianceResponse](#alliance.QueryAllianceResponse) + - [QueryAllianceValidatorRequest](#alliance.QueryAllianceValidatorRequest) + - [QueryAllianceValidatorResponse](#alliance.QueryAllianceValidatorResponse) + - [QueryAllianceValidatorsResponse](#alliance.QueryAllianceValidatorsResponse) + - [QueryAlliancesDelegationByValidatorRequest](#alliance.QueryAlliancesDelegationByValidatorRequest) + - [QueryAlliancesDelegationsRequest](#alliance.QueryAlliancesDelegationsRequest) + - [QueryAlliancesDelegationsResponse](#alliance.QueryAlliancesDelegationsResponse) + - [QueryAlliancesRequest](#alliance.QueryAlliancesRequest) + - [QueryAlliancesResponse](#alliance.QueryAlliancesResponse) + - [QueryIBCAllianceDelegationRequest](#alliance.QueryIBCAllianceDelegationRequest) + - [QueryIBCAllianceDelegationRewardsRequest](#alliance.QueryIBCAllianceDelegationRewardsRequest) + - [QueryIBCAllianceRequest](#alliance.QueryIBCAllianceRequest) + - [QueryParamsRequest](#alliance.QueryParamsRequest) + - [QueryParamsResponse](#alliance.QueryParamsResponse) - - [Query](#alliance.alliance.Query) + - [Query](#alliance.Query) - [alliance/tx.proto](#alliance/tx.proto) - - [MsgClaimDelegationRewards](#alliance.alliance.MsgClaimDelegationRewards) - - [MsgClaimDelegationRewardsResponse](#alliance.alliance.MsgClaimDelegationRewardsResponse) - - [MsgDelegate](#alliance.alliance.MsgDelegate) - - [MsgDelegateResponse](#alliance.alliance.MsgDelegateResponse) - - [MsgRedelegate](#alliance.alliance.MsgRedelegate) - - [MsgRedelegateResponse](#alliance.alliance.MsgRedelegateResponse) - - [MsgUndelegate](#alliance.alliance.MsgUndelegate) - - [MsgUndelegateResponse](#alliance.alliance.MsgUndelegateResponse) + - [MsgClaimDelegationRewards](#alliance.MsgClaimDelegationRewards) + - [MsgClaimDelegationRewardsResponse](#alliance.MsgClaimDelegationRewardsResponse) + - [MsgDelegate](#alliance.MsgDelegate) + - [MsgDelegateResponse](#alliance.MsgDelegateResponse) + - [MsgRedelegate](#alliance.MsgRedelegate) + - [MsgRedelegateResponse](#alliance.MsgRedelegateResponse) + - [MsgUndelegate](#alliance.MsgUndelegate) + - [MsgUndelegateResponse](#alliance.MsgUndelegateResponse) - - [Msg](#alliance.alliance.Msg) + - [Msg](#alliance.Msg) - [Scalar Value Types](#scalar-value-types) @@ -81,7 +88,7 @@ - + ### Params @@ -98,7 +105,7 @@ - + ### RewardHistory @@ -130,7 +137,7 @@ - + ### AllianceAsset key: denom value: AllianceAsset @@ -147,13 +154,15 @@ key: denom value: AllianceAsset | `reward_change_rate` | [string](#string) | | | | `reward_change_interval` | [google.protobuf.Duration](#google.protobuf.Duration) | | | | `last_reward_change_time` | [google.protobuf.Timestamp](#google.protobuf.Timestamp) | | | +| `reward_weight_range` | [RewardWeightRange](#alliance.RewardWeightRange) | | set a bound of weight range to limit how much reward weights can scale. | +| `is_initialized` | [bool](#bool) | | flag to check if an asset has completed the initialization process after the reward delay | - + ### RewardWeightChangeSnapshot @@ -162,7 +171,23 @@ key: denom value: AllianceAsset | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | `prev_reward_weight` | [string](#string) | | | -| `reward_histories` | [RewardHistory](#alliance.alliance.RewardHistory) | repeated | | +| `reward_histories` | [RewardHistory](#alliance.RewardHistory) | repeated | | + + + + + + + + +### RewardWeightRange + + + +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `min` | [string](#string) | | | +| `max` | [string](#string) | | | @@ -185,7 +210,7 @@ key: denom value: AllianceAsset - + ### AllianceValidatorInfo @@ -193,7 +218,7 @@ key: denom value: AllianceAsset | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `global_reward_history` | [RewardHistory](#alliance.alliance.RewardHistory) | repeated | | +| `global_reward_history` | [RewardHistory](#alliance.RewardHistory) | repeated | | | `total_delegator_shares` | [cosmos.base.v1beta1.DecCoin](#cosmos.base.v1beta1.DecCoin) | repeated | | | `validator_shares` | [cosmos.base.v1beta1.DecCoin](#cosmos.base.v1beta1.DecCoin) | repeated | | @@ -202,7 +227,7 @@ key: denom value: AllianceAsset - + ### Delegation @@ -214,7 +239,7 @@ key: denom value: AllianceAsset | `validator_address` | [string](#string) | | validator_address is the bech32-encoded address of the validator. | | `denom` | [string](#string) | | denom of token staked | | `shares` | [string](#string) | | shares define the delegation shares received. | -| `reward_history` | [RewardHistory](#alliance.alliance.RewardHistory) | repeated | | +| `reward_history` | [RewardHistory](#alliance.RewardHistory) | repeated | | | `last_reward_claim_height` | [uint64](#uint64) | | | @@ -222,7 +247,7 @@ key: denom value: AllianceAsset - + ### QueuedRedelegation @@ -230,14 +255,14 @@ key: denom value: AllianceAsset | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `entries` | [Redelegation](#alliance.alliance.Redelegation) | repeated | | +| `entries` | [Redelegation](#alliance.Redelegation) | repeated | | - + ### QueuedUndelegation @@ -245,14 +270,14 @@ key: denom value: AllianceAsset | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `entries` | [Undelegation](#alliance.alliance.Undelegation) | repeated | | +| `entries` | [Undelegation](#alliance.Undelegation) | repeated | | - + ### Redelegation @@ -270,7 +295,7 @@ key: denom value: AllianceAsset - + ### Undelegation @@ -286,6 +311,94 @@ key: denom value: AllianceAsset + + + + + + + + + + + +

Top

+ +## alliance/events.proto + + + + + +### ClaimAllianceRewardsEvent + + + +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `allianceSender` | [string](#string) | | | +| `validator` | [string](#string) | | | +| `coins` | [cosmos.base.v1beta1.Coin](#cosmos.base.v1beta1.Coin) | repeated | | + + + + + + + + +### DelegateAllianceEvent + + + +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `allianceSender` | [string](#string) | | | +| `validator` | [string](#string) | | | +| `coin` | [cosmos.base.v1beta1.Coin](#cosmos.base.v1beta1.Coin) | | | +| `newShares` | [string](#string) | | | + + + + + + + + +### RedelegateAllianceEvent + + + +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `allianceSender` | [string](#string) | | | +| `sourceValidator` | [string](#string) | | | +| `destinationValidator` | [string](#string) | | | +| `coin` | [cosmos.base.v1beta1.Coin](#cosmos.base.v1beta1.Coin) | | | +| `completionTime` | [google.protobuf.Timestamp](#google.protobuf.Timestamp) | | | + + + + + + + + +### UndelegateAllianceEvent + + + +| Field | Type | Label | Description | +| ----- | ---- | ----- | ----------- | +| `allianceSender` | [string](#string) | | | +| `validator` | [string](#string) | | | +| `coin` | [cosmos.base.v1beta1.Coin](#cosmos.base.v1beta1.Coin) | | | +| `completionTime` | [google.protobuf.Timestamp](#google.protobuf.Timestamp) | | | + + + + + @@ -303,7 +416,7 @@ key: denom value: AllianceAsset - + ### GenesisState GenesisState defines the module's genesis state. @@ -311,20 +424,20 @@ GenesisState defines the module's genesis state. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `params` | [Params](#alliance.alliance.Params) | | | -| `assets` | [AllianceAsset](#alliance.alliance.AllianceAsset) | repeated | | -| `validator_infos` | [ValidatorInfoState](#alliance.alliance.ValidatorInfoState) | repeated | | -| `reward_weight_change_snaphots` | [RewardWeightChangeSnapshotState](#alliance.alliance.RewardWeightChangeSnapshotState) | repeated | | -| `delegations` | [Delegation](#alliance.alliance.Delegation) | repeated | | -| `redelegations` | [RedelegationState](#alliance.alliance.RedelegationState) | repeated | | -| `undelegations` | [UndelegationState](#alliance.alliance.UndelegationState) | repeated | | +| `params` | [Params](#alliance.Params) | | | +| `assets` | [AllianceAsset](#alliance.AllianceAsset) | repeated | | +| `validator_infos` | [ValidatorInfoState](#alliance.ValidatorInfoState) | repeated | | +| `reward_weight_change_snaphots` | [RewardWeightChangeSnapshotState](#alliance.RewardWeightChangeSnapshotState) | repeated | | +| `delegations` | [Delegation](#alliance.Delegation) | repeated | | +| `redelegations` | [RedelegationState](#alliance.RedelegationState) | repeated | | +| `undelegations` | [UndelegationState](#alliance.UndelegationState) | repeated | | - + ### RedelegationState @@ -333,14 +446,14 @@ GenesisState defines the module's genesis state. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | `completion_time` | [google.protobuf.Timestamp](#google.protobuf.Timestamp) | | | -| `redelegation` | [Redelegation](#alliance.alliance.Redelegation) | | | +| `redelegation` | [Redelegation](#alliance.Redelegation) | | | - + ### RewardWeightChangeSnapshotState @@ -351,14 +464,14 @@ GenesisState defines the module's genesis state. | `height` | [uint64](#uint64) | | | | `validator` | [string](#string) | | | | `denom` | [string](#string) | | | -| `snapshot` | [RewardWeightChangeSnapshot](#alliance.alliance.RewardWeightChangeSnapshot) | | | +| `snapshot` | [RewardWeightChangeSnapshot](#alliance.RewardWeightChangeSnapshot) | | | - + ### UndelegationState @@ -367,14 +480,14 @@ GenesisState defines the module's genesis state. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | `completion_time` | [google.protobuf.Timestamp](#google.protobuf.Timestamp) | | | -| `undelegation` | [QueuedUndelegation](#alliance.alliance.QueuedUndelegation) | | | +| `undelegation` | [QueuedUndelegation](#alliance.QueuedUndelegation) | | | - + ### ValidatorInfoState @@ -383,7 +496,7 @@ GenesisState defines the module's genesis state. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | `validator_address` | [string](#string) | | | -| `validator` | [AllianceValidatorInfo](#alliance.alliance.AllianceValidatorInfo) | | | +| `validator` | [AllianceValidatorInfo](#alliance.AllianceValidatorInfo) | | | @@ -406,7 +519,7 @@ GenesisState defines the module's genesis state. - + ### MsgCreateAllianceProposal @@ -421,13 +534,14 @@ GenesisState defines the module's genesis state. | `take_rate` | [string](#string) | | A positive take rate is used for liquid staking derivatives. It defines an annualized reward rate that will be redirected to the distribution rewards pool | | `reward_change_rate` | [string](#string) | | | | `reward_change_interval` | [google.protobuf.Duration](#google.protobuf.Duration) | | | +| `reward_weight_range` | [RewardWeightRange](#alliance.RewardWeightRange) | | set a bound of weight range to limit how much reward weights can scale. | - + ### MsgDeleteAllianceProposal @@ -444,7 +558,7 @@ GenesisState defines the module's genesis state. - + ### MsgUpdateAllianceProposal @@ -481,7 +595,7 @@ GenesisState defines the module's genesis state. - + ### DelegationResponse DelegationResponse is equivalent to Delegation except that it contains a @@ -490,7 +604,7 @@ balance in addition to shares which is more suitable for client responses. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `delegation` | [Delegation](#alliance.alliance.Delegation) | | | +| `delegation` | [Delegation](#alliance.Delegation) | | | | `balance` | [cosmos.base.v1beta1.Coin](#cosmos.base.v1beta1.Coin) | | | @@ -498,7 +612,7 @@ balance in addition to shares which is more suitable for client responses. - + ### QueryAllAllianceValidatorsRequest @@ -513,7 +627,7 @@ balance in addition to shares which is more suitable for client responses. - + ### QueryAllAlliancesDelegationsRequest @@ -528,7 +642,7 @@ balance in addition to shares which is more suitable for client responses. - + ### QueryAllianceDelegationRequest AllianceDelegation @@ -546,7 +660,7 @@ AllianceDelegation - + ### QueryAllianceDelegationResponse @@ -554,14 +668,14 @@ AllianceDelegation | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `delegation` | [DelegationResponse](#alliance.alliance.DelegationResponse) | | | +| `delegation` | [DelegationResponse](#alliance.DelegationResponse) | | | - + ### QueryAllianceDelegationRewardsRequest AllianceDelegation @@ -579,7 +693,7 @@ AllianceDelegation - + ### QueryAllianceDelegationRewardsResponse @@ -594,7 +708,7 @@ AllianceDelegation - + ### QueryAllianceRequest Alliance @@ -609,7 +723,7 @@ Alliance - + ### QueryAllianceResponse @@ -617,14 +731,14 @@ Alliance | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `alliance` | [AllianceAsset](#alliance.alliance.AllianceAsset) | | | +| `alliance` | [AllianceAsset](#alliance.AllianceAsset) | | | - + ### QueryAllianceValidatorRequest @@ -639,7 +753,7 @@ Alliance - + ### QueryAllianceValidatorResponse @@ -657,7 +771,7 @@ Alliance - + ### QueryAllianceValidatorsResponse @@ -665,7 +779,7 @@ Alliance | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `validators` | [QueryAllianceValidatorResponse](#alliance.alliance.QueryAllianceValidatorResponse) | repeated | | +| `validators` | [QueryAllianceValidatorResponse](#alliance.QueryAllianceValidatorResponse) | repeated | | | `pagination` | [cosmos.base.query.v1beta1.PageResponse](#cosmos.base.query.v1beta1.PageResponse) | | | @@ -673,7 +787,7 @@ Alliance - + ### QueryAlliancesDelegationByValidatorRequest AlliancesDelegationByValidator @@ -690,7 +804,7 @@ AlliancesDelegationByValidator - + ### QueryAlliancesDelegationsRequest AlliancesDelegation @@ -706,7 +820,7 @@ AlliancesDelegation - + ### QueryAlliancesDelegationsResponse @@ -714,7 +828,7 @@ AlliancesDelegation | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `delegations` | [DelegationResponse](#alliance.alliance.DelegationResponse) | repeated | | +| `delegations` | [DelegationResponse](#alliance.DelegationResponse) | repeated | | | `pagination` | [cosmos.base.query.v1beta1.PageResponse](#cosmos.base.query.v1beta1.PageResponse) | | | @@ -722,7 +836,7 @@ AlliancesDelegation - + ### QueryAlliancesRequest Alliances @@ -737,7 +851,7 @@ Alliances - + ### QueryAlliancesResponse @@ -745,7 +859,7 @@ Alliances | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `alliances` | [AllianceAsset](#alliance.alliance.AllianceAsset) | repeated | | +| `alliances` | [AllianceAsset](#alliance.AllianceAsset) | repeated | | | `pagination` | [cosmos.base.query.v1beta1.PageResponse](#cosmos.base.query.v1beta1.PageResponse) | | | @@ -753,7 +867,7 @@ Alliances - + ### QueryIBCAllianceDelegationRequest @@ -771,7 +885,7 @@ Alliances - + ### QueryIBCAllianceDelegationRewardsRequest @@ -789,7 +903,7 @@ Alliances - + ### QueryIBCAllianceRequest @@ -804,7 +918,7 @@ Alliances - + ### QueryParamsRequest Params @@ -814,7 +928,7 @@ Params - + ### QueryParamsResponse @@ -822,7 +936,7 @@ Params | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `params` | [Params](#alliance.alliance.Params) | | | +| `params` | [Params](#alliance.Params) | | | @@ -835,26 +949,26 @@ Params - + ### Query | Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | | ----------- | ------------ | ------------- | ------------| ------- | -------- | -| `Params` | [QueryParamsRequest](#alliance.alliance.QueryParamsRequest) | [QueryParamsResponse](#alliance.alliance.QueryParamsResponse) | | GET|/terra/alliances/params| -| `Alliances` | [QueryAlliancesRequest](#alliance.alliance.QueryAlliancesRequest) | [QueryAlliancesResponse](#alliance.alliance.QueryAlliancesResponse) | Query paginated alliances | GET|/terra/alliances| -| `IBCAlliance` | [QueryIBCAllianceRequest](#alliance.alliance.QueryIBCAllianceRequest) | [QueryAllianceResponse](#alliance.alliance.QueryAllianceResponse) | Query a specific alliance by ibc hash | GET|/terra/alliances/ibc/{hash}| -| `AllAlliancesDelegations` | [QueryAllAlliancesDelegationsRequest](#alliance.alliance.QueryAllAlliancesDelegationsRequest) | [QueryAlliancesDelegationsResponse](#alliance.alliance.QueryAlliancesDelegationsResponse) | Query all paginated alliance delegations | GET|/terra/alliances/delegations| -| `AllianceValidator` | [QueryAllianceValidatorRequest](#alliance.alliance.QueryAllianceValidatorRequest) | [QueryAllianceValidatorResponse](#alliance.alliance.QueryAllianceValidatorResponse) | Query alliance validator | GET|/terra/alliances/validators/{validator_addr}| -| `AllAllianceValidators` | [QueryAllAllianceValidatorsRequest](#alliance.alliance.QueryAllAllianceValidatorsRequest) | [QueryAllianceValidatorsResponse](#alliance.alliance.QueryAllianceValidatorsResponse) | Query all paginated alliance validators | GET|/terra/alliances/validators| -| `AlliancesDelegation` | [QueryAlliancesDelegationsRequest](#alliance.alliance.QueryAlliancesDelegationsRequest) | [QueryAlliancesDelegationsResponse](#alliance.alliance.QueryAlliancesDelegationsResponse) | Query all paginated alliance delegations for a delegator addr | GET|/terra/alliances/delegations/{delegator_addr}| -| `AlliancesDelegationByValidator` | [QueryAlliancesDelegationByValidatorRequest](#alliance.alliance.QueryAlliancesDelegationByValidatorRequest) | [QueryAlliancesDelegationsResponse](#alliance.alliance.QueryAlliancesDelegationsResponse) | Query all paginated alliance delegations for a delegator addr and validator_addr | GET|/terra/alliances/delegations/{delegator_addr}/{validator_addr}| -| `AllianceDelegation` | [QueryAllianceDelegationRequest](#alliance.alliance.QueryAllianceDelegationRequest) | [QueryAllianceDelegationResponse](#alliance.alliance.QueryAllianceDelegationResponse) | Query a delegation to an alliance by delegator addr, validator_addr and denom | GET|/terra/alliances/delegations/{delegator_addr}/{validator_addr}/{denom}| -| `IBCAllianceDelegation` | [QueryIBCAllianceDelegationRequest](#alliance.alliance.QueryIBCAllianceDelegationRequest) | [QueryAllianceDelegationResponse](#alliance.alliance.QueryAllianceDelegationResponse) | Query a delegation to an alliance by delegator addr, validator_addr and denom | GET|/terra/alliances/delegations/{delegator_addr}/{validator_addr}/ibc/{hash}| -| `AllianceDelegationRewards` | [QueryAllianceDelegationRewardsRequest](#alliance.alliance.QueryAllianceDelegationRewardsRequest) | [QueryAllianceDelegationRewardsResponse](#alliance.alliance.QueryAllianceDelegationRewardsResponse) | Query for rewards by delegator addr, validator_addr and denom | GET|/terra/alliances/rewards/{delegator_addr}/{validator_addr}/{denom}| -| `IBCAllianceDelegationRewards` | [QueryIBCAllianceDelegationRewardsRequest](#alliance.alliance.QueryIBCAllianceDelegationRewardsRequest) | [QueryAllianceDelegationRewardsResponse](#alliance.alliance.QueryAllianceDelegationRewardsResponse) | Query for rewards by delegator addr, validator_addr and denom | GET|/terra/alliances/rewards/{delegator_addr}/{validator_addr}/ibc/{hash}| -| `Alliance` | [QueryAllianceRequest](#alliance.alliance.QueryAllianceRequest) | [QueryAllianceResponse](#alliance.alliance.QueryAllianceResponse) | Query a specific alliance by denom | GET|/terra/alliances/{denom}| +| `Params` | [QueryParamsRequest](#alliance.QueryParamsRequest) | [QueryParamsResponse](#alliance.QueryParamsResponse) | | GET|/terra/alliances/params| +| `Alliances` | [QueryAlliancesRequest](#alliance.QueryAlliancesRequest) | [QueryAlliancesResponse](#alliance.QueryAlliancesResponse) | Query paginated alliances | GET|/terra/alliances| +| `IBCAlliance` | [QueryIBCAllianceRequest](#alliance.QueryIBCAllianceRequest) | [QueryAllianceResponse](#alliance.QueryAllianceResponse) | Query a specific alliance by ibc hash @deprecated: this endpoint will be replaced for by the encoded version of the denom e.g.: GET:/terra/alliances/ibc%2Falliance | GET|/terra/alliances/ibc/{hash}| +| `AllAlliancesDelegations` | [QueryAllAlliancesDelegationsRequest](#alliance.QueryAllAlliancesDelegationsRequest) | [QueryAlliancesDelegationsResponse](#alliance.QueryAlliancesDelegationsResponse) | Query all paginated alliance delegations | GET|/terra/alliances/delegations| +| `AllianceValidator` | [QueryAllianceValidatorRequest](#alliance.QueryAllianceValidatorRequest) | [QueryAllianceValidatorResponse](#alliance.QueryAllianceValidatorResponse) | Query alliance validator | GET|/terra/alliances/validators/{validator_addr}| +| `AllAllianceValidators` | [QueryAllAllianceValidatorsRequest](#alliance.QueryAllAllianceValidatorsRequest) | [QueryAllianceValidatorsResponse](#alliance.QueryAllianceValidatorsResponse) | Query all paginated alliance validators | GET|/terra/alliances/validators| +| `AlliancesDelegation` | [QueryAlliancesDelegationsRequest](#alliance.QueryAlliancesDelegationsRequest) | [QueryAlliancesDelegationsResponse](#alliance.QueryAlliancesDelegationsResponse) | Query all paginated alliance delegations for a delegator addr | GET|/terra/alliances/delegations/{delegator_addr}| +| `AlliancesDelegationByValidator` | [QueryAlliancesDelegationByValidatorRequest](#alliance.QueryAlliancesDelegationByValidatorRequest) | [QueryAlliancesDelegationsResponse](#alliance.QueryAlliancesDelegationsResponse) | Query all paginated alliance delegations for a delegator addr and validator_addr | GET|/terra/alliances/delegations/{delegator_addr}/{validator_addr}| +| `AllianceDelegation` | [QueryAllianceDelegationRequest](#alliance.QueryAllianceDelegationRequest) | [QueryAllianceDelegationResponse](#alliance.QueryAllianceDelegationResponse) | Query a delegation to an alliance by delegator addr, validator_addr and denom | GET|/terra/alliances/delegations/{delegator_addr}/{validator_addr}/{denom}| +| `IBCAllianceDelegation` | [QueryIBCAllianceDelegationRequest](#alliance.QueryIBCAllianceDelegationRequest) | [QueryAllianceDelegationResponse](#alliance.QueryAllianceDelegationResponse) | Query a delegation to an alliance by delegator addr, validator_addr and denom @deprecated: this endpoint will be replaced for by the encoded version of the denom e.g.: GET:/terra/alliances/terradr1231/terravaloper41234/ibc%2Falliance | GET|/terra/alliances/delegations/{delegator_addr}/{validator_addr}/ibc/{hash}| +| `AllianceDelegationRewards` | [QueryAllianceDelegationRewardsRequest](#alliance.QueryAllianceDelegationRewardsRequest) | [QueryAllianceDelegationRewardsResponse](#alliance.QueryAllianceDelegationRewardsResponse) | Query for rewards by delegator addr, validator_addr and denom | GET|/terra/alliances/rewards/{delegator_addr}/{validator_addr}/{denom}| +| `IBCAllianceDelegationRewards` | [QueryIBCAllianceDelegationRewardsRequest](#alliance.QueryIBCAllianceDelegationRewardsRequest) | [QueryAllianceDelegationRewardsResponse](#alliance.QueryAllianceDelegationRewardsResponse) | Query for rewards by delegator addr, validator_addr and denom @deprecated: this endpoint will be replaced for by the encoded version of the denom e.g.: GET:/terra/alliances/terradr1231/terravaloper41234/ibc%2Falliance | GET|/terra/alliances/rewards/{delegator_addr}/{validator_addr}/ibc/{hash}| +| `Alliance` | [QueryAllianceRequest](#alliance.QueryAllianceRequest) | [QueryAllianceResponse](#alliance.QueryAllianceResponse) | Query a specific alliance by denom | GET|/terra/alliances/{denom}| @@ -867,7 +981,7 @@ Params - + ### MsgClaimDelegationRewards @@ -884,7 +998,7 @@ Params - + ### MsgClaimDelegationRewardsResponse @@ -894,7 +1008,7 @@ Params - + ### MsgDelegate @@ -911,7 +1025,7 @@ Params - + ### MsgDelegateResponse @@ -921,7 +1035,7 @@ Params - + ### MsgRedelegate @@ -939,7 +1053,7 @@ Params - + ### MsgRedelegateResponse @@ -949,7 +1063,7 @@ Params - + ### MsgUndelegate @@ -966,7 +1080,7 @@ Params - + ### MsgUndelegateResponse @@ -982,17 +1096,17 @@ Params - + ### Msg | Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | | ----------- | ------------ | ------------- | ------------| ------- | -------- | -| `Delegate` | [MsgDelegate](#alliance.alliance.MsgDelegate) | [MsgDelegateResponse](#alliance.alliance.MsgDelegateResponse) | | | -| `Redelegate` | [MsgRedelegate](#alliance.alliance.MsgRedelegate) | [MsgRedelegateResponse](#alliance.alliance.MsgRedelegateResponse) | | | -| `Undelegate` | [MsgUndelegate](#alliance.alliance.MsgUndelegate) | [MsgUndelegateResponse](#alliance.alliance.MsgUndelegateResponse) | | | -| `ClaimDelegationRewards` | [MsgClaimDelegationRewards](#alliance.alliance.MsgClaimDelegationRewards) | [MsgClaimDelegationRewardsResponse](#alliance.alliance.MsgClaimDelegationRewardsResponse) | | | +| `Delegate` | [MsgDelegate](#alliance.MsgDelegate) | [MsgDelegateResponse](#alliance.MsgDelegateResponse) | | | +| `Redelegate` | [MsgRedelegate](#alliance.MsgRedelegate) | [MsgRedelegateResponse](#alliance.MsgRedelegateResponse) | | | +| `Undelegate` | [MsgUndelegate](#alliance.MsgUndelegate) | [MsgUndelegateResponse](#alliance.MsgUndelegateResponse) | | | +| `ClaimDelegationRewards` | [MsgClaimDelegationRewards](#alliance.MsgClaimDelegationRewards) | [MsgClaimDelegationRewardsResponse](#alliance.MsgClaimDelegationRewardsResponse) | | | diff --git a/go.mod b/go.mod index 5b32c8d7..f48aadc1 100644 --- a/go.mod +++ b/go.mod @@ -1,88 +1,94 @@ module github.com/terra-money/alliance -go 1.19 +go 1.20 require ( cosmossdk.io/errors v1.0.0-beta.7 - cosmossdk.io/math v1.0.0-beta.4 - github.com/cosmos/cosmos-proto v1.0.0-alpha8 - github.com/cosmos/cosmos-sdk v0.46.8 - github.com/cosmos/gogoproto v1.4.2 - github.com/cosmos/ibc-go/v6 v6.1.0 - github.com/gogo/protobuf v1.3.3 + cosmossdk.io/math v1.0.1 + cosmossdk.io/tools/rosetta v0.2.1 + github.com/cometbft/cometbft v0.37.1 + github.com/cometbft/cometbft-db v0.8.0 + github.com/cosmos/cosmos-proto v1.0.0-beta.2 + github.com/cosmos/cosmos-sdk v0.47.2 + github.com/cosmos/ibc-go/v7 v7.0.1 github.com/golang/mock v1.6.0 - github.com/golang/protobuf v1.5.2 + github.com/golang/protobuf v1.5.3 github.com/grpc-ecosystem/grpc-gateway v1.16.0 - github.com/spf13/cast v1.5.0 - github.com/spf13/cobra v1.6.1 - github.com/spf13/viper v1.14.0 - github.com/stretchr/testify v1.8.1 - github.com/tendermint/tendermint v0.34.24 - github.com/tendermint/tm-db v0.6.7 - golang.org/x/exp v0.0.0-20221212164502-fae10dda9338 - google.golang.org/genproto v0.0.0-20221207170731-23e4bf6bdc37 - google.golang.org/grpc v1.51.0 - google.golang.org/protobuf v1.28.2-0.20220831092852-f930b1dc76e8 + github.com/spf13/cast v1.5.1 + github.com/spf13/cobra v1.7.0 + github.com/spf13/viper v1.16.0 + github.com/stretchr/testify v1.8.4 + golang.org/x/exp v0.0.0-20230321023759-10a507213a29 + google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 + google.golang.org/grpc v1.55.0 + google.golang.org/protobuf v1.30.0 ) +require github.com/cosmos/gogoproto v1.4.10 + require ( - cloud.google.com/go v0.105.0 // indirect - cloud.google.com/go/compute v1.13.0 // indirect - cloud.google.com/go/compute/metadata v0.2.1 // indirect - cloud.google.com/go/iam v0.8.0 // indirect - cloud.google.com/go/storage v1.28.0 // indirect - filippo.io/edwards25519 v1.0.0-rc.1 // indirect + cloud.google.com/go v0.110.0 // indirect + cloud.google.com/go/compute v1.19.0 // indirect + cloud.google.com/go/compute/metadata v0.2.3 // indirect + cloud.google.com/go/iam v0.13.0 // indirect + cloud.google.com/go/storage v1.29.0 // indirect + cosmossdk.io/api v0.3.1 // indirect + cosmossdk.io/core v0.5.1 // indirect + cosmossdk.io/depinject v1.0.0-alpha.3 // indirect + cosmossdk.io/log v1.1.0 // indirect + filippo.io/edwards25519 v1.0.0 // indirect github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 // indirect github.com/99designs/keyring v1.2.1 // indirect github.com/ChainSafe/go-schnorrkel v0.0.0-20200405005733-88cbf1b4c40d // indirect - github.com/Workiva/go-datastructures v1.0.53 // indirect github.com/armon/go-metrics v0.4.1 // indirect - github.com/aws/aws-sdk-go v1.40.45 // indirect + github.com/aws/aws-sdk-go v1.44.203 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect github.com/bgentry/speakeasy v0.1.1-0.20220910012023-760eaf8b6816 // indirect - github.com/btcsuite/btcd v0.22.2 // indirect github.com/btcsuite/btcd/btcec/v2 v2.3.2 // indirect github.com/cenkalti/backoff/v4 v4.1.3 // indirect github.com/cespare/xxhash v1.1.0 // indirect - github.com/cespare/xxhash/v2 v2.1.2 // indirect - github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // indirect + github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/chzyer/readline v1.5.1 // indirect github.com/cockroachdb/apd/v2 v2.0.2 // indirect github.com/coinbase/rosetta-sdk-go v0.7.9 // indirect github.com/confio/ics23/go v0.9.0 // indirect github.com/cosmos/btcutil v1.0.5 // indirect github.com/cosmos/go-bip39 v1.0.0 // indirect - github.com/cosmos/gorocksdb v1.2.0 // indirect - github.com/cosmos/iavl v0.19.4 // indirect + github.com/cosmos/gogogateway v1.2.0 // indirect + github.com/cosmos/iavl v0.20.0 // indirect + github.com/cosmos/ics23/go v0.9.1-0.20221207100636-b1abd8678aab // indirect github.com/cosmos/ledger-cosmos-go v0.12.2 // indirect - github.com/creachadair/taskgroup v0.3.2 // indirect + github.com/cosmos/rosetta-sdk-go v0.10.0 // indirect + github.com/creachadair/taskgroup v0.4.2 // indirect github.com/danieljoos/wincred v1.1.2 // indirect github.com/davecgh/go-spew v1.1.1 // indirect - github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect + github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0 // indirect github.com/desertbit/timer v0.0.0-20180107155436-c41aec40b27f // indirect github.com/dgraph-io/badger/v2 v2.2007.4 // indirect - github.com/dgraph-io/ristretto v0.1.0 // indirect + github.com/dgraph-io/ristretto v0.1.1 // indirect github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 // indirect - github.com/dustin/go-humanize v1.0.1-0.20200219035652-afde56e7acac // indirect + github.com/dustin/go-humanize v1.0.1 // indirect github.com/dvsekhvalnov/jose2go v1.5.0 // indirect - github.com/felixge/httpsnoop v1.0.1 // indirect + github.com/felixge/httpsnoop v1.0.2 // indirect github.com/fsnotify/fsnotify v1.6.0 // indirect github.com/go-kit/kit v0.12.0 // indirect github.com/go-kit/log v0.2.1 // indirect - github.com/go-logfmt/logfmt v0.5.1 // indirect - github.com/go-playground/validator/v10 v10.4.1 // indirect + github.com/go-logfmt/logfmt v0.6.0 // indirect + github.com/go-playground/universal-translator v0.18.0 // indirect github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 // indirect - github.com/gogo/gateway v1.1.0 // indirect - github.com/golang/glog v1.0.0 // indirect + github.com/gogo/googleapis v1.4.1 // indirect + github.com/gogo/protobuf v1.3.2 // indirect + github.com/golang/glog v1.1.0 // indirect github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect github.com/golang/snappy v0.0.4 // indirect - github.com/google/btree v1.0.1 // indirect + github.com/google/btree v1.1.2 // indirect github.com/google/go-cmp v0.5.9 // indirect - github.com/google/gofuzz v1.2.0 // indirect github.com/google/orderedcode v0.0.1 // indirect + github.com/google/s2a-go v0.1.3 // indirect github.com/google/uuid v1.3.0 // indirect - github.com/googleapis/enterprise-certificate-proxy v0.2.0 // indirect - github.com/googleapis/gax-go/v2 v2.7.0 // indirect + github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect + github.com/googleapis/gax-go/v2 v2.8.0 // indirect github.com/gorilla/handlers v1.5.1 // indirect github.com/gorilla/mux v1.8.0 // indirect github.com/gorilla/websocket v1.5.0 // indirect @@ -91,78 +97,80 @@ require ( github.com/gtank/merlin v0.1.1 // indirect github.com/gtank/ristretto255 v0.1.2 // indirect github.com/hashicorp/go-cleanhttp v0.5.2 // indirect - github.com/hashicorp/go-getter v1.6.1 // indirect + github.com/hashicorp/go-getter v1.7.1 // indirect github.com/hashicorp/go-immutable-radix v1.3.1 // indirect github.com/hashicorp/go-safetemp v1.0.0 // indirect github.com/hashicorp/go-version v1.6.0 // indirect github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d // indirect github.com/hashicorp/hcl v1.0.0 // indirect - github.com/hdevalence/ed25519consensus v0.0.0-20220222234857-c00d1f31bab3 // indirect + github.com/hdevalence/ed25519consensus v0.1.0 // indirect + github.com/huandu/skiplist v1.2.0 // indirect github.com/improbable-eng/grpc-web v0.15.0 // indirect - github.com/inconshreveable/mousetrap v1.0.1 // indirect + github.com/inconshreveable/mousetrap v1.1.0 // indirect github.com/jmespath/go-jmespath v0.4.0 // indirect github.com/jmhodges/levigo v1.0.0 // indirect - github.com/klauspost/compress v1.15.11 // indirect + github.com/klauspost/compress v1.16.3 // indirect + github.com/leodido/go-urn v1.2.1 // indirect github.com/lib/pq v1.10.7 // indirect github.com/libp2p/go-buffer-pool v0.1.0 // indirect - github.com/magiconair/properties v1.8.6 // indirect + github.com/linxGnu/grocksdb v1.7.16 // indirect + github.com/magiconair/properties v1.8.7 // indirect github.com/manifoldco/promptui v0.9.0 // indirect github.com/mattn/go-colorable v0.1.13 // indirect - github.com/mattn/go-isatty v0.0.16 // indirect + github.com/mattn/go-isatty v0.0.18 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/mimoo/StrobeGo v0.0.0-20210601165009-122bf33a46e0 // indirect github.com/minio/highwayhash v1.0.2 // indirect github.com/mitchellh/go-homedir v1.1.0 // indirect - github.com/mitchellh/go-testing-interface v1.0.0 // indirect + github.com/mitchellh/go-testing-interface v1.14.1 // indirect github.com/mitchellh/mapstructure v1.5.0 // indirect github.com/mtibben/percent v0.2.1 // indirect - github.com/onsi/gomega v1.10.3 // indirect - github.com/pelletier/go-toml v1.9.5 // indirect - github.com/pelletier/go-toml/v2 v2.0.5 // indirect - github.com/petermattis/goid v0.0.0-20180202154549-b0b1615b78e5 // indirect + github.com/pelletier/go-toml/v2 v2.0.8 // indirect + github.com/petermattis/goid v0.0.0-20230317030725-371a4b8eda08 // indirect github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect - github.com/prometheus/client_golang v1.12.2 // indirect - github.com/prometheus/client_model v0.2.0 // indirect - github.com/prometheus/common v0.34.0 // indirect - github.com/prometheus/procfs v0.8.0 // indirect + github.com/prometheus/client_golang v1.14.0 // indirect + github.com/prometheus/client_model v0.3.0 // indirect + github.com/prometheus/common v0.42.0 // indirect + github.com/prometheus/procfs v0.9.0 // indirect github.com/rakyll/statik v0.1.7 // indirect github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect - github.com/regen-network/cosmos-proto v0.3.1 // indirect - github.com/rs/cors v1.8.2 // indirect - github.com/rs/zerolog v1.27.0 // indirect + github.com/rs/cors v1.8.3 // indirect + github.com/rs/zerolog v1.29.1 // indirect github.com/sasha-s/go-deadlock v0.3.1 // indirect - github.com/spf13/afero v1.9.2 // indirect + github.com/spf13/afero v1.9.5 // indirect github.com/spf13/jwalterweatherman v1.1.0 // indirect github.com/spf13/pflag v1.0.5 // indirect - github.com/subosito/gotenv v1.4.1 // indirect - github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 // indirect + github.com/subosito/gotenv v1.4.2 // indirect + github.com/syndtr/goleveldb v1.0.1-0.20220721030215-126854af5e6d // indirect github.com/tendermint/go-amino v0.16.0 // indirect - github.com/tidwall/btree v1.5.0 // indirect - github.com/ulikunitz/xz v0.5.8 // indirect + github.com/tidwall/btree v1.6.0 // indirect + github.com/ulikunitz/xz v0.5.11 // indirect github.com/zondax/hid v0.9.1 // indirect github.com/zondax/ledger-go v0.14.1 // indirect - go.etcd.io/bbolt v1.3.6 // indirect + go.etcd.io/bbolt v1.3.7 // indirect go.opencensus.io v0.24.0 // indirect - golang.org/x/crypto v0.4.0 // indirect - golang.org/x/net v0.4.0 // indirect - golang.org/x/oauth2 v0.3.0 // indirect - golang.org/x/sys v0.3.0 // indirect - golang.org/x/term v0.3.0 // indirect - golang.org/x/text v0.5.0 // indirect + golang.org/x/crypto v0.9.0 // indirect + golang.org/x/net v0.10.0 // indirect + golang.org/x/oauth2 v0.7.0 // indirect + golang.org/x/sys v0.8.0 // indirect + golang.org/x/term v0.8.0 // indirect + golang.org/x/text v0.9.0 // indirect golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect - google.golang.org/api v0.103.0 // indirect + google.golang.org/api v0.122.0 // indirect google.golang.org/appengine v1.6.7 // indirect gopkg.in/ini.v1 v1.67.0 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect nhooyr.io/websocket v1.8.6 // indirect + pgregory.net/rapid v0.5.5 // indirect sigs.k8s.io/yaml v1.3.0 // indirect ) replace ( - github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1 - - github.com/tendermint/tendermint => github.com/informalsystems/tendermint v0.34.25 - + // Using the latest branch for cosmos-sdk 47 for a fix regarding simulations not allowing non EOA accounts to stake + // To remove after a new release of cosmos-sdk 47 + github.com/cosmos/cosmos-sdk => github.com/cosmos/cosmos-sdk v0.47.3-0.20230513170018-83d600596f5d + // Golevel DB fix + github.com/syndtr/goleveldb => github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 ) diff --git a/go.sum b/go.sum index f5c6f3b1..ce49cda5 100644 --- a/go.sum +++ b/go.sum @@ -19,44 +19,197 @@ cloud.google.com/go v0.65.0/go.mod h1:O5N8zS7uWy9vkA9vayVHs65eM1ubvY4h553ofrNHOb cloud.google.com/go v0.72.0/go.mod h1:M+5Vjvlc2wnp6tjzE102Dw08nGShTscUx2nZMufOKPI= cloud.google.com/go v0.74.0/go.mod h1:VV1xSbzvo+9QJOxLDaJfTjx5e+MePCpCWwvftOeQmWk= cloud.google.com/go v0.75.0/go.mod h1:VGuuCn7PG0dwsd5XPVm2Mm3wlh3EL55/79EKB6hlPTY= -cloud.google.com/go v0.105.0 h1:DNtEKRBAAzeS4KyIory52wWHuClNaXJ5x1F7xa4q+5Y= -cloud.google.com/go v0.105.0/go.mod h1:PrLgOJNe5nfE9UMxKxgXj4mD3voiP+YQ6gdt6KMFOKM= +cloud.google.com/go v0.78.0/go.mod h1:QjdrLG0uq+YwhjoVOLsS1t7TW8fs36kLs4XO5R5ECHg= +cloud.google.com/go v0.79.0/go.mod h1:3bzgcEeQlzbuEAYu4mrWhKqWjmpprinYgKJLgKHnbb8= +cloud.google.com/go v0.81.0/go.mod h1:mk/AM35KwGk/Nm2YSeZbxXdrNK3KZOYHmLkOqC2V6E0= +cloud.google.com/go v0.83.0/go.mod h1:Z7MJUsANfY0pYPdw0lbnivPx4/vhy/e2FEkSkF7vAVY= +cloud.google.com/go v0.84.0/go.mod h1:RazrYuxIK6Kb7YrzzhPoLmCVzl7Sup4NrbKPg8KHSUM= +cloud.google.com/go v0.87.0/go.mod h1:TpDYlFy7vuLzZMMZ+B6iRiELaY7z/gJPaqbMx6mlWcY= +cloud.google.com/go v0.90.0/go.mod h1:kRX0mNRHe0e2rC6oNakvwQqzyDmg57xJ+SZU1eT2aDQ= +cloud.google.com/go v0.93.3/go.mod h1:8utlLll2EF5XMAV15woO4lSbWQlk8rer9aLOfLh7+YI= +cloud.google.com/go v0.94.1/go.mod h1:qAlAugsXlC+JWO+Bke5vCtc9ONxjQT3drlTTnAplMW4= +cloud.google.com/go v0.97.0/go.mod h1:GF7l59pYBVlXQIBLx3a761cZ41F9bBH3JUlihCt2Udc= +cloud.google.com/go v0.99.0/go.mod h1:w0Xx2nLzqWJPuozYQX+hFfCSI8WioryfRDzkoI/Y2ZA= +cloud.google.com/go v0.100.2/go.mod h1:4Xra9TjzAeYHrl5+oeLlzbM2k3mjVhZh4UqTZ//w99A= +cloud.google.com/go v0.102.0/go.mod h1:oWcCzKlqJ5zgHQt9YsaeTY9KzIvjyy0ArmiBUgpQ+nc= +cloud.google.com/go v0.102.1/go.mod h1:XZ77E9qnTEnrgEOvr4xzfdX5TRo7fB4T2F4O6+34hIU= +cloud.google.com/go v0.104.0/go.mod h1:OO6xxXdJyvuJPcEPBLN9BJPD+jep5G1+2U5B5gkRYtA= +cloud.google.com/go v0.110.0 h1:Zc8gqp3+a9/Eyph2KDmcGaPtbKRIoqq4YTlL4NMD0Ys= +cloud.google.com/go v0.110.0/go.mod h1:SJnCLqQ0FCFGSZMUNUf84MV3Aia54kn7pi8st7tMzaY= +cloud.google.com/go/aiplatform v1.22.0/go.mod h1:ig5Nct50bZlzV6NvKaTwmplLLddFx0YReh9WfTO5jKw= +cloud.google.com/go/aiplatform v1.24.0/go.mod h1:67UUvRBKG6GTayHKV8DBv2RtR1t93YRu5B1P3x99mYY= +cloud.google.com/go/analytics v0.11.0/go.mod h1:DjEWCu41bVbYcKyvlws9Er60YE4a//bK6mnhWvQeFNI= +cloud.google.com/go/analytics v0.12.0/go.mod h1:gkfj9h6XRf9+TS4bmuhPEShsh3hH8PAZzm/41OOhQd4= +cloud.google.com/go/area120 v0.5.0/go.mod h1:DE/n4mp+iqVyvxHN41Vf1CR602GiHQjFPusMFW6bGR4= +cloud.google.com/go/area120 v0.6.0/go.mod h1:39yFJqWVgm0UZqWTOdqkLhjoC7uFfgXRC8g/ZegeAh0= +cloud.google.com/go/artifactregistry v1.6.0/go.mod h1:IYt0oBPSAGYj/kprzsBjZ/4LnG/zOcHyFHjWPCi6SAQ= +cloud.google.com/go/artifactregistry v1.7.0/go.mod h1:mqTOFOnGZx8EtSqK/ZWcsm/4U8B77rbcLP6ruDU2Ixk= +cloud.google.com/go/asset v1.5.0/go.mod h1:5mfs8UvcM5wHhqtSv8J1CtxxaQq3AdBxxQi2jGW/K4o= +cloud.google.com/go/asset v1.7.0/go.mod h1:YbENsRK4+xTiL+Ofoj5Ckf+O17kJtgp3Y3nn4uzZz5s= +cloud.google.com/go/asset v1.8.0/go.mod h1:mUNGKhiqIdbr8X7KNayoYvyc4HbbFO9URsjbytpUaW0= +cloud.google.com/go/assuredworkloads v1.5.0/go.mod h1:n8HOZ6pff6re5KYfBXcFvSViQjDwxFkAkmUFffJRbbY= +cloud.google.com/go/assuredworkloads v1.6.0/go.mod h1:yo2YOk37Yc89Rsd5QMVECvjaMKymF9OP+QXWlKXUkXw= +cloud.google.com/go/assuredworkloads v1.7.0/go.mod h1:z/736/oNmtGAyU47reJgGN+KVoYoxeLBoj4XkKYscNI= +cloud.google.com/go/automl v1.5.0/go.mod h1:34EjfoFGMZ5sgJ9EoLsRtdPSNZLcfflJR39VbVNS2M0= +cloud.google.com/go/automl v1.6.0/go.mod h1:ugf8a6Fx+zP0D59WLhqgTDsQI9w07o64uf/Is3Nh5p8= cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o= cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE= cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc= cloud.google.com/go/bigquery v1.5.0/go.mod h1:snEHRnqQbz117VIFhE8bmtwIDY80NLUZUMb4Nv6dBIg= cloud.google.com/go/bigquery v1.7.0/go.mod h1://okPTzCYNXSlb24MZs83e2Do+h+VXtc4gLoIoXIAPc= cloud.google.com/go/bigquery v1.8.0/go.mod h1:J5hqkt3O0uAFnINi6JXValWIb1v0goeZM77hZzJN/fQ= +cloud.google.com/go/bigquery v1.42.0/go.mod h1:8dRTJxhtG+vwBKzE5OseQn/hiydoQN3EedCaOdYmxRA= cloud.google.com/go/bigtable v1.2.0/go.mod h1:JcVAOl45lrTmQfLj7T6TxyMzIN/3FGGcFm+2xVAli2o= -cloud.google.com/go/compute v1.13.0 h1:AYrLkB8NPdDRslNp4Jxmzrhdr03fUAIDbiGFjLWowoU= -cloud.google.com/go/compute v1.13.0/go.mod h1:5aPTS0cUNMIc1CE546K+Th6weJUNQErARyZtRXDJ8GE= -cloud.google.com/go/compute/metadata v0.2.1 h1:efOwf5ymceDhK6PKMnnrTHP4pppY5L22mle96M1yP48= -cloud.google.com/go/compute/metadata v0.2.1/go.mod h1:jgHgmJd2RKBGzXqF5LR2EZMGxBkeanZ9wwa75XHJgOM= +cloud.google.com/go/billing v1.4.0/go.mod h1:g9IdKBEFlItS8bTtlrZdVLWSSdSyFUZKXNS02zKMOZY= +cloud.google.com/go/billing v1.5.0/go.mod h1:mztb1tBc3QekhjSgmpf/CV4LzWXLzCArwpLmP2Gm88s= +cloud.google.com/go/binaryauthorization v1.1.0/go.mod h1:xwnoWu3Y84jbuHa0zd526MJYmtnVXn0syOjaJgy4+dM= +cloud.google.com/go/binaryauthorization v1.2.0/go.mod h1:86WKkJHtRcv5ViNABtYMhhNWRrD1Vpi//uKEy7aYEfI= +cloud.google.com/go/cloudtasks v1.5.0/go.mod h1:fD92REy1x5woxkKEkLdvavGnPJGEn8Uic9nWuLzqCpY= +cloud.google.com/go/cloudtasks v1.6.0/go.mod h1:C6Io+sxuke9/KNRkbQpihnW93SWDU3uXt92nu85HkYI= +cloud.google.com/go/compute v0.1.0/go.mod h1:GAesmwr110a34z04OlxYkATPBEfVhkymfTBXtfbBFow= +cloud.google.com/go/compute v1.3.0/go.mod h1:cCZiE1NHEtai4wiufUhW8I8S1JKkAnhnQJWM7YD99wM= +cloud.google.com/go/compute v1.5.0/go.mod h1:9SMHyhJlzhlkJqrPAc839t2BZFTSk6Jdj6mkzQJeu0M= +cloud.google.com/go/compute v1.6.0/go.mod h1:T29tfhtVbq1wvAPo0E3+7vhgmkOYeXjhFvz/FMzPu0s= +cloud.google.com/go/compute v1.6.1/go.mod h1:g85FgpzFvNULZ+S8AYq87axRKuf2Kh7deLqV/jJ3thU= +cloud.google.com/go/compute v1.7.0/go.mod h1:435lt8av5oL9P3fv1OEzSbSUe+ybHXGMPQHHZWZxy9U= +cloud.google.com/go/compute v1.10.0/go.mod h1:ER5CLbMxl90o2jtNbGSbtfOpQKR0t15FOtRsugnLrlU= +cloud.google.com/go/compute v1.19.0 h1:+9zda3WGgW1ZSTlVppLCYFIr48Pa35q1uG2N1itbCEQ= +cloud.google.com/go/compute v1.19.0/go.mod h1:rikpw2y+UMidAe9tISo04EHNOIf42RLYF/q8Bs93scU= +cloud.google.com/go/compute/metadata v0.2.3 h1:mg4jlk7mCAj6xXp9UJ4fjI9VUI5rubuGBW5aJ7UnBMY= +cloud.google.com/go/compute/metadata v0.2.3/go.mod h1:VAV5nSsACxMJvgaAuX6Pk2AawlZn8kiOGuCv6gTkwuA= +cloud.google.com/go/containeranalysis v0.5.1/go.mod h1:1D92jd8gRR/c0fGMlymRgxWD3Qw9C1ff6/T7mLgVL8I= +cloud.google.com/go/containeranalysis v0.6.0/go.mod h1:HEJoiEIu+lEXM+k7+qLCci0h33lX3ZqoYFdmPcoO7s4= +cloud.google.com/go/datacatalog v1.3.0/go.mod h1:g9svFY6tuR+j+hrTw3J2dNcmI0dzmSiyOzm8kpLq0a0= +cloud.google.com/go/datacatalog v1.5.0/go.mod h1:M7GPLNQeLfWqeIm3iuiruhPzkt65+Bx8dAKvScX8jvs= +cloud.google.com/go/datacatalog v1.6.0/go.mod h1:+aEyF8JKg+uXcIdAmmaMUmZ3q1b/lKLtXCmXdnc0lbc= +cloud.google.com/go/dataflow v0.6.0/go.mod h1:9QwV89cGoxjjSR9/r7eFDqqjtvbKxAK2BaYU6PVk9UM= +cloud.google.com/go/dataflow v0.7.0/go.mod h1:PX526vb4ijFMesO1o202EaUmouZKBpjHsTlCtB4parQ= +cloud.google.com/go/dataform v0.3.0/go.mod h1:cj8uNliRlHpa6L3yVhDOBrUXH+BPAO1+KFMQQNSThKo= +cloud.google.com/go/dataform v0.4.0/go.mod h1:fwV6Y4Ty2yIFL89huYlEkwUPtS7YZinZbzzj5S9FzCE= +cloud.google.com/go/datalabeling v0.5.0/go.mod h1:TGcJ0G2NzcsXSE/97yWjIZO0bXj0KbVlINXMG9ud42I= +cloud.google.com/go/datalabeling v0.6.0/go.mod h1:WqdISuk/+WIGeMkpw/1q7bK/tFEZxsrFJOJdY2bXvTQ= +cloud.google.com/go/dataqna v0.5.0/go.mod h1:90Hyk596ft3zUQ8NkFfvICSIfHFh1Bc7C4cK3vbhkeo= +cloud.google.com/go/dataqna v0.6.0/go.mod h1:1lqNpM7rqNLVgWBJyk5NF6Uen2PHym0jtVJonplVsDA= cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE= cloud.google.com/go/datastore v1.1.0/go.mod h1:umbIZjpQpHh4hmRpGhH4tLFup+FVzqBi1b3c64qFpCk= -cloud.google.com/go/iam v0.8.0 h1:E2osAkZzxI/+8pZcxVLcDtAQx/u+hZXVryUaYQ5O0Kk= -cloud.google.com/go/iam v0.8.0/go.mod h1:lga0/y3iH6CX7sYqypWJ33hf7kkfXJag67naqGESjkE= -cloud.google.com/go/longrunning v0.3.0 h1:NjljC+FYPV3uh5/OwWT6pVU+doBqMg2x/rZlE+CamDs= +cloud.google.com/go/datastream v1.2.0/go.mod h1:i/uTP8/fZwgATHS/XFu0TcNUhuA0twZxxQ3EyCUQMwo= +cloud.google.com/go/datastream v1.3.0/go.mod h1:cqlOX8xlyYF/uxhiKn6Hbv6WjwPPuI9W2M9SAXwaLLQ= +cloud.google.com/go/dialogflow v1.15.0/go.mod h1:HbHDWs33WOGJgn6rfzBW1Kv807BE3O1+xGbn59zZWI4= +cloud.google.com/go/dialogflow v1.16.1/go.mod h1:po6LlzGfK+smoSmTBnbkIZY2w8ffjz/RcGSS+sh1el0= +cloud.google.com/go/dialogflow v1.17.0/go.mod h1:YNP09C/kXA1aZdBgC/VtXX74G/TKn7XVCcVumTflA+8= +cloud.google.com/go/documentai v1.7.0/go.mod h1:lJvftZB5NRiFSX4moiye1SMxHx0Bc3x1+p9e/RfXYiU= +cloud.google.com/go/documentai v1.8.0/go.mod h1:xGHNEB7CtsnySCNrCFdCyyMz44RhFEEX2Q7UD0c5IhU= +cloud.google.com/go/domains v0.6.0/go.mod h1:T9Rz3GasrpYk6mEGHh4rymIhjlnIuB4ofT1wTxDeT4Y= +cloud.google.com/go/domains v0.7.0/go.mod h1:PtZeqS1xjnXuRPKE/88Iru/LdfoRyEHYA9nFQf4UKpg= +cloud.google.com/go/edgecontainer v0.1.0/go.mod h1:WgkZ9tp10bFxqO8BLPqv2LlfmQF1X8lZqwW4r1BTajk= +cloud.google.com/go/edgecontainer v0.2.0/go.mod h1:RTmLijy+lGpQ7BXuTDa4C4ssxyXT34NIuHIgKuP4s5w= +cloud.google.com/go/functions v1.6.0/go.mod h1:3H1UA3qiIPRWD7PeZKLvHZ9SaQhR26XIJcC0A5GbvAk= +cloud.google.com/go/functions v1.7.0/go.mod h1:+d+QBcWM+RsrgZfV9xo6KfA1GlzJfxcfZcRPEhDDfzg= +cloud.google.com/go/gaming v1.5.0/go.mod h1:ol7rGcxP/qHTRQE/RO4bxkXq+Fix0j6D4LFPzYTIrDM= +cloud.google.com/go/gaming v1.6.0/go.mod h1:YMU1GEvA39Qt3zWGyAVA9bpYz/yAhTvaQ1t2sK4KPUA= +cloud.google.com/go/gkeconnect v0.5.0/go.mod h1:c5lsNAg5EwAy7fkqX/+goqFsU1Da/jQFqArp+wGNr/o= +cloud.google.com/go/gkeconnect v0.6.0/go.mod h1:Mln67KyU/sHJEBY8kFZ0xTeyPtzbq9StAVvEULYK16A= +cloud.google.com/go/gkehub v0.9.0/go.mod h1:WYHN6WG8w9bXU0hqNxt8rm5uxnk8IH+lPY9J2TV7BK0= +cloud.google.com/go/gkehub v0.10.0/go.mod h1:UIPwxI0DsrpsVoWpLB0stwKCP+WFVG9+y977wO+hBH0= +cloud.google.com/go/grafeas v0.2.0/go.mod h1:KhxgtF2hb0P191HlY5besjYm6MqTSTj3LSI+M+ByZHc= +cloud.google.com/go/iam v0.3.0/go.mod h1:XzJPvDayI+9zsASAFO68Hk07u3z+f+JrT2xXNdp4bnY= +cloud.google.com/go/iam v0.5.0/go.mod h1:wPU9Vt0P4UmCux7mqtRu6jcpPAb74cP1fh50J3QpkUc= +cloud.google.com/go/iam v0.13.0 h1:+CmB+K0J/33d0zSQ9SlFWUeCCEn5XJA0ZMZ3pHE9u8k= +cloud.google.com/go/iam v0.13.0/go.mod h1:ljOg+rcNfzZ5d6f1nAUJ8ZIxOaZUVoS14bKCtaLZ/D0= +cloud.google.com/go/language v1.4.0/go.mod h1:F9dRpNFQmJbkaop6g0JhSBXCNlO90e1KWx5iDdxbWic= +cloud.google.com/go/language v1.6.0/go.mod h1:6dJ8t3B+lUYfStgls25GusK04NLh3eDLQnWM3mdEbhI= +cloud.google.com/go/lifesciences v0.5.0/go.mod h1:3oIKy8ycWGPUyZDR/8RNnTOYevhaMLqh5vLUXs9zvT8= +cloud.google.com/go/lifesciences v0.6.0/go.mod h1:ddj6tSX/7BOnhxCSd3ZcETvtNr8NZ6t/iPhY2Tyfu08= +cloud.google.com/go/longrunning v0.4.1 h1:v+yFJOfKC3yZdY6ZUI933pIYdhyhV8S3NpWrXWmg7jM= +cloud.google.com/go/mediatranslation v0.5.0/go.mod h1:jGPUhGTybqsPQn91pNXw0xVHfuJ3leR1wj37oU3y1f4= +cloud.google.com/go/mediatranslation v0.6.0/go.mod h1:hHdBCTYNigsBxshbznuIMFNe5QXEowAuNmmC7h8pu5w= +cloud.google.com/go/memcache v1.4.0/go.mod h1:rTOfiGZtJX1AaFUrOgsMHX5kAzaTQ8azHiuDoTPzNsE= +cloud.google.com/go/memcache v1.5.0/go.mod h1:dk3fCK7dVo0cUU2c36jKb4VqKPS22BTkf81Xq617aWM= +cloud.google.com/go/metastore v1.5.0/go.mod h1:2ZNrDcQwghfdtCwJ33nM0+GrBGlVuh8rakL3vdPY3XY= +cloud.google.com/go/metastore v1.6.0/go.mod h1:6cyQTls8CWXzk45G55x57DVQ9gWg7RiH65+YgPsNh9s= +cloud.google.com/go/networkconnectivity v1.4.0/go.mod h1:nOl7YL8odKyAOtzNX73/M5/mGZgqqMeryi6UPZTk/rA= +cloud.google.com/go/networkconnectivity v1.5.0/go.mod h1:3GzqJx7uhtlM3kln0+x5wyFvuVH1pIBJjhCpjzSt75o= +cloud.google.com/go/networksecurity v0.5.0/go.mod h1:xS6fOCoqpVC5zx15Z/MqkfDwH4+m/61A3ODiDV1xmiQ= +cloud.google.com/go/networksecurity v0.6.0/go.mod h1:Q5fjhTr9WMI5mbpRYEbiexTzROf7ZbDzvzCrNl14nyU= +cloud.google.com/go/notebooks v1.2.0/go.mod h1:9+wtppMfVPUeJ8fIWPOq1UnATHISkGXGqTkxeieQ6UY= +cloud.google.com/go/notebooks v1.3.0/go.mod h1:bFR5lj07DtCPC7YAAJ//vHskFBxA5JzYlH68kXVdk34= +cloud.google.com/go/osconfig v1.7.0/go.mod h1:oVHeCeZELfJP7XLxcBGTMBvRO+1nQ5tFG9VQTmYS2Fs= +cloud.google.com/go/osconfig v1.8.0/go.mod h1:EQqZLu5w5XA7eKizepumcvWx+m8mJUhEwiPqWiZeEdg= +cloud.google.com/go/oslogin v1.4.0/go.mod h1:YdgMXWRaElXz/lDk1Na6Fh5orF7gvmJ0FGLIs9LId4E= +cloud.google.com/go/oslogin v1.5.0/go.mod h1:D260Qj11W2qx/HVF29zBg+0fd6YCSjSqLUkY/qEenQU= +cloud.google.com/go/phishingprotection v0.5.0/go.mod h1:Y3HZknsK9bc9dMi+oE8Bim0lczMU6hrX0UpADuMefr0= +cloud.google.com/go/phishingprotection v0.6.0/go.mod h1:9Y3LBLgy0kDTcYET8ZH3bq/7qni15yVUoAxiFxnlSUA= +cloud.google.com/go/privatecatalog v0.5.0/go.mod h1:XgosMUvvPyxDjAVNDYxJ7wBW8//hLDDYmnsNcMGq1K0= +cloud.google.com/go/privatecatalog v0.6.0/go.mod h1:i/fbkZR0hLN29eEWiiwue8Pb+GforiEIBnV9yrRUOKI= cloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I= cloud.google.com/go/pubsub v1.1.0/go.mod h1:EwwdRX2sKPjnvnqCa270oGRyludottCI76h+R3AArQw= cloud.google.com/go/pubsub v1.2.0/go.mod h1:jhfEVHT8odbXTkndysNHCcx0awwzvfOlguIAii9o8iA= cloud.google.com/go/pubsub v1.3.1/go.mod h1:i+ucay31+CNRpDW4Lu78I4xXG+O1r/MAHgjpRVR+TSU= +cloud.google.com/go/recaptchaenterprise v1.3.1/go.mod h1:OdD+q+y4XGeAlxRaMn1Y7/GveP6zmq76byL6tjPE7d4= +cloud.google.com/go/recaptchaenterprise/v2 v2.1.0/go.mod h1:w9yVqajwroDNTfGuhmOjPDN//rZGySaf6PtFVcSCa7o= +cloud.google.com/go/recaptchaenterprise/v2 v2.2.0/go.mod h1:/Zu5jisWGeERrd5HnlS3EUGb/D335f9k51B/FVil0jk= +cloud.google.com/go/recaptchaenterprise/v2 v2.3.0/go.mod h1:O9LwGCjrhGHBQET5CA7dd5NwwNQUErSgEDit1DLNTdo= +cloud.google.com/go/recommendationengine v0.5.0/go.mod h1:E5756pJcVFeVgaQv3WNpImkFP8a+RptV6dDLGPILjvg= +cloud.google.com/go/recommendationengine v0.6.0/go.mod h1:08mq2umu9oIqc7tDy8sx+MNJdLG0fUi3vaSVbztHgJ4= +cloud.google.com/go/recommender v1.5.0/go.mod h1:jdoeiBIVrJe9gQjwd759ecLJbxCDED4A6p+mqoqDvTg= +cloud.google.com/go/recommender v1.6.0/go.mod h1:+yETpm25mcoiECKh9DEScGzIRyDKpZ0cEhWGo+8bo+c= +cloud.google.com/go/redis v1.7.0/go.mod h1:V3x5Jq1jzUcg+UNsRvdmsfuFnit1cfe3Z/PGyq/lm4Y= +cloud.google.com/go/redis v1.8.0/go.mod h1:Fm2szCDavWzBk2cDKxrkmWBqoCiL1+Ctwq7EyqBCA/A= +cloud.google.com/go/retail v1.8.0/go.mod h1:QblKS8waDmNUhghY2TI9O3JLlFk8jybHeV4BF19FrE4= +cloud.google.com/go/retail v1.9.0/go.mod h1:g6jb6mKuCS1QKnH/dpu7isX253absFl6iE92nHwlBUY= +cloud.google.com/go/scheduler v1.4.0/go.mod h1:drcJBmxF3aqZJRhmkHQ9b3uSSpQoltBPGPxGAWROx6s= +cloud.google.com/go/scheduler v1.5.0/go.mod h1:ri073ym49NW3AfT6DZi21vLZrG07GXr5p3H1KxN5QlI= +cloud.google.com/go/secretmanager v1.6.0/go.mod h1:awVa/OXF6IiyaU1wQ34inzQNc4ISIDIrId8qE5QGgKA= +cloud.google.com/go/security v1.5.0/go.mod h1:lgxGdyOKKjHL4YG3/YwIL2zLqMFCKs0UbQwgyZmfJl4= +cloud.google.com/go/security v1.7.0/go.mod h1:mZklORHl6Bg7CNnnjLH//0UlAlaXqiG7Lb9PsPXLfD0= +cloud.google.com/go/security v1.8.0/go.mod h1:hAQOwgmaHhztFhiQ41CjDODdWP0+AE1B3sX4OFlq+GU= +cloud.google.com/go/securitycenter v1.13.0/go.mod h1:cv5qNAqjY84FCN6Y9z28WlkKXyWsgLO832YiWwkCWcU= +cloud.google.com/go/securitycenter v1.14.0/go.mod h1:gZLAhtyKv85n52XYWt6RmeBdydyxfPeTrpToDPw4Auc= +cloud.google.com/go/servicedirectory v1.4.0/go.mod h1:gH1MUaZCgtP7qQiI+F+A+OpeKF/HQWgtAddhTbhL2bs= +cloud.google.com/go/servicedirectory v1.5.0/go.mod h1:QMKFL0NUySbpZJ1UZs3oFAmdvVxhhxB6eJ/Vlp73dfg= +cloud.google.com/go/speech v1.6.0/go.mod h1:79tcr4FHCimOp56lwC01xnt/WPJZc4v3gzyT7FoBkCM= +cloud.google.com/go/speech v1.7.0/go.mod h1:KptqL+BAQIhMsj1kOP2la5DSEEerPDuOP/2mmkhHhZQ= cloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw= cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0ZeosJ0Rtdos= cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk= cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs= cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0= cloud.google.com/go/storage v1.14.0/go.mod h1:GrKmX003DSIwi9o29oFT7YDnHYwZoctc3fOKtUw0Xmo= -cloud.google.com/go/storage v1.28.0 h1:DLrIZ6xkeZX6K70fU/boWx5INJumt6f+nwwWSHXzzGY= -cloud.google.com/go/storage v1.28.0/go.mod h1:qlgZML35PXA3zoEnIkiPLY4/TOkUleufRlu6qmcf7sI= +cloud.google.com/go/storage v1.22.1/go.mod h1:S8N1cAStu7BOeFfE8KAQzmyyLkK8p/vmRq6kuBTW58Y= +cloud.google.com/go/storage v1.23.0/go.mod h1:vOEEDNFnciUMhBeT6hsJIn3ieU5cFRmzeLgDvXzfIXc= +cloud.google.com/go/storage v1.27.0/go.mod h1:x9DOL8TK/ygDUMieqwfhdpQryTeEkhGKMi80i/iqR2s= +cloud.google.com/go/storage v1.29.0 h1:6weCgzRvMg7lzuUurI4697AqIRPU1SvzHhynwpW31jI= +cloud.google.com/go/storage v1.29.0/go.mod h1:4puEjyTKnku6gfKoTfNOU/W+a9JyuVNxjpS5GBrB8h4= +cloud.google.com/go/talent v1.1.0/go.mod h1:Vl4pt9jiHKvOgF9KoZo6Kob9oV4lwd/ZD5Cto54zDRw= +cloud.google.com/go/talent v1.2.0/go.mod h1:MoNF9bhFQbiJ6eFD3uSsg0uBALw4n4gaCaEjBw9zo8g= +cloud.google.com/go/videointelligence v1.6.0/go.mod h1:w0DIDlVRKtwPCn/C4iwZIJdvC69yInhW0cfi+p546uU= +cloud.google.com/go/videointelligence v1.7.0/go.mod h1:k8pI/1wAhjznARtVT9U1llUaFNPh7muw8QyOUpavru4= +cloud.google.com/go/vision v1.2.0/go.mod h1:SmNwgObm5DpFBme2xpyOyasvBc1aPdjvMk2bBk0tKD0= +cloud.google.com/go/vision/v2 v2.2.0/go.mod h1:uCdV4PpN1S0jyCyq8sIM42v2Y6zOLkZs+4R9LrGYwFo= +cloud.google.com/go/vision/v2 v2.3.0/go.mod h1:UO61abBx9QRMFkNBbf1D8B1LXdS2cGiiCRx0vSpZoUo= +cloud.google.com/go/webrisk v1.4.0/go.mod h1:Hn8X6Zr+ziE2aNd8SliSDWpEnSS1u4R9+xXZmFiHmGE= +cloud.google.com/go/webrisk v1.5.0/go.mod h1:iPG6fr52Tv7sGk0H6qUFzmL3HHZev1htXuWDEEsqMTg= +cloud.google.com/go/workflows v1.6.0/go.mod h1:6t9F5h/unJz41YqfBmqSASJSXccBLtD1Vwf+KmJENM0= +cloud.google.com/go/workflows v1.7.0/go.mod h1:JhSrZuVZWuiDfKEFxU0/F1PQjmpnpcoISEXH2bcHC3M= collectd.org v0.3.0/go.mod h1:A/8DzQBkF6abtvrT2j/AU/4tiBgJWYyh0y/oB/4MlWE= +cosmossdk.io/api v0.3.1 h1:NNiOclKRR0AOlO4KIqeaG6PS6kswOMhHD0ir0SscNXE= +cosmossdk.io/api v0.3.1/go.mod h1:DfHfMkiNA2Uhy8fj0JJlOCYOBp4eWUUJ1te5zBGNyIw= +cosmossdk.io/core v0.5.1 h1:vQVtFrIYOQJDV3f7rw4pjjVqc1id4+mE0L9hHP66pyI= +cosmossdk.io/core v0.5.1/go.mod h1:KZtwHCLjcFuo0nmDc24Xy6CRNEL9Vl/MeimQ2aC7NLE= +cosmossdk.io/depinject v1.0.0-alpha.3 h1:6evFIgj//Y3w09bqOUOzEpFj5tsxBqdc5CfkO7z+zfw= +cosmossdk.io/depinject v1.0.0-alpha.3/go.mod h1:eRbcdQ7MRpIPEM5YUJh8k97nxHpYbc3sMUnEtt8HPWU= cosmossdk.io/errors v1.0.0-beta.7 h1:gypHW76pTQGVnHKo6QBkb4yFOJjC+sUGRc5Al3Odj1w= cosmossdk.io/errors v1.0.0-beta.7/go.mod h1:mz6FQMJRku4bY7aqS/Gwfcmr/ue91roMEKAmDUDpBfE= -cosmossdk.io/math v1.0.0-beta.4 h1:JtKedVLGzA0vv84xjYmZ75RKG35Kf2WwcFu8IjRkIIw= -cosmossdk.io/math v1.0.0-beta.4/go.mod h1:An0MllWJY6PxibUpnwGk8jOm+a/qIxlKmL5Zyp9NnaM= +cosmossdk.io/log v1.1.0 h1:v0ogPHYeTzPcBTcPR1A3j1hkei4pZama8kz8LKlCMv0= +cosmossdk.io/log v1.1.0/go.mod h1:6zjroETlcDs+mm62gd8Ig7mZ+N+fVOZS91V17H+M4N4= +cosmossdk.io/math v1.0.1 h1:Qx3ifyOPaMLNH/89WeZFH268yCvU4xEcnPLu3sJqPPg= +cosmossdk.io/math v1.0.1/go.mod h1:Ygz4wBHrgc7g0N+8+MrnTfS9LLn9aaTGa9hKopuym5k= +cosmossdk.io/tools/rosetta v0.2.1 h1:ddOMatOH+pbxWbrGJKRAawdBkPYLfKXutK9IETnjYxw= +cosmossdk.io/tools/rosetta v0.2.1/go.mod h1:Pqdc1FdvkNV3LcNIkYWt2RQY6IP1ge6YWZk8MhhO9Hw= dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= -filippo.io/edwards25519 v1.0.0-rc.1 h1:m0VOOB23frXZvAOK44usCgLWvtsxIoMCTBGJZlpmGfU= filippo.io/edwards25519 v1.0.0-rc.1/go.mod h1:N1IkdkCkiLB6tki+MYJoSx2JTY9NUlxZE7eHn5EwJns= +filippo.io/edwards25519 v1.0.0 h1:0wAIcmJUqRdI8IJ/3eGi5/HwXZWPujYXXlkrQogz0Ek= +filippo.io/edwards25519 v1.0.0/go.mod h1:N1IkdkCkiLB6tki+MYJoSx2JTY9NUlxZE7eHn5EwJns= git.sr.ht/~sircmpwn/getopt v0.0.0-20191230200459-23622cc906b3/go.mod h1:wMEGFFFNuPos7vHmWXfszqImLppbc0wEhh6JBfJIUgw= git.sr.ht/~sircmpwn/go-bare v0.0.0-20210406120253-ab86bc2846d9/go.mod h1:BVJwbDfVjCjoFiKrhkei6NdGcZYpkDkdyCdg1ukytRA= github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 h1:/vQbFIOMbk2FiG/kXiLl8BRyzTWDw7gX/Hz7Dd5eDMs= @@ -85,13 +238,12 @@ github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6/go.mod h1:3eOhrU github.com/VictoriaMetrics/fastcache v1.6.0/go.mod h1:0qHz5QP0GMX4pfmMA/zt5RgfNuXJrTP0zS7DqpHGGTw= github.com/VividCortex/gohistogram v1.0.0 h1:6+hBz+qvs0JOrrNhhmR7lFxo5sINxBCGXrdtl/UvroE= github.com/VividCortex/gohistogram v1.0.0/go.mod h1:Pf5mBqqDxYaXu3hDrrU+w6nw50o/4+TcAqDqk/vUH7g= -github.com/Workiva/go-datastructures v1.0.53 h1:J6Y/52yX10Xc5JjXmGtWoSSxs3mZnGSaq37xZZh7Yig= -github.com/Workiva/go-datastructures v1.0.53/go.mod h1:1yZL+zfsztete+ePzZz/Zb1/t5BnDuE2Ya2MMGhzP6A= github.com/Zilliqa/gozilliqa-sdk v1.2.1-0.20201201074141-dd0ecada1be6/go.mod h1:eSYp2T6f0apnuW8TzhV3f6Aff2SE8Dwio++U4ha4yEM= github.com/adlio/schema v1.3.3 h1:oBJn8I02PyTB466pZO1UZEn1TV5XLlifBSyMrmHl/1I= github.com/aead/siphash v1.0.1/go.mod h1:Nywa3cDsYNNK3gaciGTWPwHt0wlpNV15vwmswBAUSII= github.com/afex/hystrix-go v0.0.0-20180502004556-fa1af6a1f4f5/go.mod h1:SkGFH1ia65gfNATL8TAiHDNxPzPdmEL5uirI2Uyuz6c= github.com/ajstarks/svgo v0.0.0-20180226025133-644b8db467af/go.mod h1:K08gAheRH3/J6wwsYMMT4xOr94bZjxIelGM0+d/wbFw= +github.com/alecthomas/participle/v2 v2.0.0-alpha7 h1:cK4vjj0VSgb3lN1nuKA5F7dw+1s1pWBe5bx7nNCnN+c= github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= @@ -111,10 +263,10 @@ github.com/armon/go-metrics v0.4.1/go.mod h1:E6amYzXo6aW1tqzoZGT755KkbgrJsSdpwZ+ github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= github.com/aryann/difflib v0.0.0-20170710044230-e206f873d14a/go.mod h1:DAHtR1m6lCRdSC2Tm3DSWRPvIPr6xNKyeHdqDQSQT+A= github.com/aws/aws-lambda-go v1.13.3/go.mod h1:4UKl9IzQMoD+QF79YdCuzCwp8VbmG4VAQwij/eHl5CU= -github.com/aws/aws-sdk-go v1.15.78/go.mod h1:E3/ieXAlvM0XWO57iftYVDLLvQ824smPP3ATZkfNZeM= github.com/aws/aws-sdk-go v1.27.0/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= -github.com/aws/aws-sdk-go v1.40.45 h1:QN1nsY27ssD/JmW4s83qmSb+uL6DG4GmCDzjmJB4xUI= -github.com/aws/aws-sdk-go v1.40.45/go.mod h1:585smgzpB/KqRA+K3y/NL/oYRqQvpNJYvLm+LY1U59Q= +github.com/aws/aws-sdk-go v1.44.122/go.mod h1:y4AeaBuwd2Lk+GepC1E9v0qOiTws0MIWAX4oIKwKHZo= +github.com/aws/aws-sdk-go v1.44.203 h1:pcsP805b9acL3wUqa4JR2vg1k2wnItkDYNvfmcy6F+U= +github.com/aws/aws-sdk-go v1.44.203/go.mod h1:aVsgQcEevwlmQ7qHE9I3h+dtQgpqhFB+i8Phjh7fkwI= github.com/aws/aws-sdk-go-v2 v0.18.0/go.mod h1:JWVYvqSMppoMJC0x5wdwiImzgXTI9FuZwxzkQq9wy+g= github.com/aws/aws-sdk-go-v2 v1.2.0/go.mod h1:zEQs02YRBw1DjK0PoJv3ygDYOFTre1ejlJWl8FwAuQo= github.com/aws/aws-sdk-go-v2/config v1.1.1/go.mod h1:0XsVy9lBI/BCXm+2Tuvt39YmdHwS5unDQmxZOYe8F5Y= @@ -139,9 +291,8 @@ github.com/boltdb/bolt v1.3.1/go.mod h1:clJnj/oiGkjum5o1McbSZDSLxVThjynRyGBgiAx2 github.com/btcsuite/btcd v0.0.0-20190315201642-aa6e0f35703c/go.mod h1:DrZx5ec/dmnfpw9KyYoQyYo7d0KEvTkk/5M/vbZjAr8= github.com/btcsuite/btcd v0.20.1-beta/go.mod h1:wVuoA8VJLEcwgqHBwHmzLRazpKxTv13Px/pDuV7OomQ= github.com/btcsuite/btcd v0.21.0-beta.0.20201114000516-e9c7a5ac6401/go.mod h1:Sv4JPQ3/M+teHz9Bo5jBpkNcP0x6r7rdihlNL/7tTAs= +github.com/btcsuite/btcd v0.22.1 h1:CnwP9LM/M9xuRrGSCGeMVs9iv09uMqwsVX7EeIpgV2c= github.com/btcsuite/btcd v0.22.1/go.mod h1:wqgTSL29+50LRkmOVknEdmt8ZojIzhuWvgu/iptuN7Y= -github.com/btcsuite/btcd v0.22.2 h1:vBZ+lGGd1XubpOWO67ITJpAEsICWhA0YzqkcpkgNBfo= -github.com/btcsuite/btcd v0.22.2/go.mod h1:wqgTSL29+50LRkmOVknEdmt8ZojIzhuWvgu/iptuN7Y= github.com/btcsuite/btcd/btcec/v2 v2.1.2/go.mod h1:ctjw4H1kknNJmRN4iP1R7bTQ+v3GJkZBd6mui8ZsAZE= github.com/btcsuite/btcd/btcec/v2 v2.3.2 h1:5n0X6hX0Zk+6omWcihdYvdAlGf2DfasC0GMf7DClJ3U= github.com/btcsuite/btcd/btcec/v2 v2.3.2/go.mod h1:zYzJ8etWJQIv1Ogk7OzpWjowwOdXY1W/17j2MW85J04= @@ -161,6 +312,7 @@ github.com/btcsuite/snappy-go v0.0.0-20151229074030-0bdef8d06723/go.mod h1:8woku github.com/btcsuite/snappy-go v1.0.0/go.mod h1:8woku9dyThutzjeg+3xrA5iCpBRH8XEEg3lh6TiUghc= github.com/btcsuite/websocket v0.0.0-20150119174127-31079b680792/go.mod h1:ghJtEyQwv5/p4Mg4C0fgbePVuGr935/5ddU9Z3TmDRY= github.com/btcsuite/winsvc v1.0.0/go.mod h1:jsenWakMcC0zFBFurPLEAyrnc/teJEM1O46fmI40EZs= +github.com/bufbuild/protocompile v0.4.0 h1:LbFKd2XowZvQ/kajzguUp2DC9UEIQhIq77fZZlaQsNA= github.com/bwesterb/go-ristretto v1.2.0/go.mod h1:fUIoIZaG73pV5biE2Blr2xEzDoMj7NFEuV9ekS419A0= github.com/c-bata/go-prompt v0.2.2/go.mod h1:VzqtzE2ksDBcdln8G7mk2RX9QyGjH+OVqOCSiVIqS34= github.com/casbin/casbin/v2 v2.1.2/go.mod h1:YcPU1XXisHhLzuxH9coDNf2FbKpjGlbCg3n9yuLkIJQ= @@ -174,15 +326,18 @@ github.com/cespare/cp v0.1.0/go.mod h1:SOGHArjBr4JWaSDEVpWpo/hNg6RoKrls6Oh40hiwW github.com/cespare/xxhash v1.1.0 h1:a6HrQnmkObjyL+Gs60czilIUGqrzKutQD6XZog3p+ko= github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/cespare/xxhash/v2 v2.1.2 h1:YRXhKfTDauu4ajMg1TPgFO5jnlC2HCbmLXMcTG5cbYE= -github.com/cespare/xxhash/v2 v2.1.2/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= +github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/cheggaaa/pb v1.0.27/go.mod h1:pQciLPpbU0oxA0h+VJYYLxO+XeDQb5pZijXscXHm81s= -github.com/chzyer/logex v1.1.10 h1:Swpa1K6QvQznwJRcfTfQJmTE72DqScAa40E+fbHEXEE= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= -github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e h1:fY5BOSpyZCqRo5OhCuC+XN+r/bBCmeuuJtjz+bCNIf8= +github.com/chzyer/logex v1.2.1 h1:XHDu3E6q+gdHgsdTPH6ImJMIp436vR6MPtH8gP05QzM= +github.com/chzyer/logex v1.2.1/go.mod h1:JLbx6lG2kDbNRFnfkgvh4eRJRPX1QCoOIWomwysCBrQ= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= -github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1 h1:q763qf9huN11kDQavWsoZXJNW3xEE4JJyHa5Q25/sd8= +github.com/chzyer/readline v1.5.1 h1:upd/6fQk4src78LMRzh5vItIt361/o4uq553V8B5sGI= +github.com/chzyer/readline v1.5.1/go.mod h1:Eh+b79XXUwfKfcPLepksvw2tcLE/Ct21YObkaSkeBlk= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= +github.com/chzyer/test v1.0.0 h1:p3BQDXSxOhOG0P9z6/hGnII4LGiEPOYBhs8asl/fC04= +github.com/chzyer/test v1.0.0/go.mod h1:2JlltgoNkt4TW/z9V/IzDdFaMTM2JPIi26O1pF38GC8= github.com/circonus-labs/circonus-gometrics v2.3.1+incompatible/go.mod h1:nmEj6Dob7S7YxXgwXpfOuvO54S+tGdZdw9fuRZt25Ag= github.com/circonus-labs/circonusllhist v0.1.3/go.mod h1:kMXHVDlOchFAehlya5ePtbp5jckzBHf4XRpQvBOLI+I= github.com/clbanning/x2j v0.0.0-20191024224557-825249438eec/go.mod h1:jMjuTZXRI4dUb/I5gc9Hdhagfvm9+RyrPryS/auMzxE= @@ -191,13 +346,24 @@ github.com/cloudflare/cloudflare-go v0.14.0/go.mod h1:EnwdgGMaFOruiPZRFSgn+TsQ3h github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= github.com/cncf/udpa/go v0.0.0-20200629203442-efcf912fb354/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= +github.com/cncf/udpa/go v0.0.0-20210930031921-04548b0d99d4/go.mod h1:6pvJx4me5XPnfI9Z40ddWsdw2W/uZgQLFXToKeRcDiI= +github.com/cncf/xds/go v0.0.0-20210312221358-fbca930ec8ed/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20210805033703-aa0b78936158/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20210922020428-25de7278fc84/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20211001041855-01bcc9b48dfe/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20211011173535-cb28da3451f1/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= github.com/cockroachdb/apd/v2 v2.0.2 h1:weh8u7Cneje73dDh+2tEVLUvyBc89iwepWCD8b8034E= github.com/cockroachdb/apd/v2 v2.0.2/go.mod h1:DDxRlzC2lo3/vSlmSoS7JkqbbrARPuFOGr0B9pvN3Gw= +github.com/cockroachdb/apd/v3 v3.1.0 h1:MK3Ow7LH0W8zkd5GMKA1PvS9qG3bWFI95WaVNfyZJ/w= github.com/cockroachdb/datadriven v0.0.0-20190809214429-80d97fb3cbaa/go.mod h1:zn76sxSg3SzpJ0PPJaLDCu+Bu0Lg3sKTORVIj19EIF8= github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd/go.mod h1:sE/e/2PUdi/liOCUjSTXgM1o87ZssimdTWN964YiIeI= github.com/coinbase/kryptology v1.8.0/go.mod h1:RYXOAPdzOGUe3qlSFkMGn58i3xUA8hmxYHksuq+8ciI= github.com/coinbase/rosetta-sdk-go v0.7.9 h1:lqllBjMnazTjIqYrOGv8h8jxjg9+hJazIGZr9ZvoCcA= github.com/coinbase/rosetta-sdk-go v0.7.9/go.mod h1:0/knutI7XGVqXmmH4OQD8OckFrbQ8yMsUZTG7FXCR2M= +github.com/cometbft/cometbft v0.37.1 h1:KLxkQTK2hICXYq21U2hn1W5hOVYUdQgDQ1uB+90xPIg= +github.com/cometbft/cometbft v0.37.1/go.mod h1:Y2MMMN//O5K4YKd8ze4r9jmk4Y7h0ajqILXbH5JQFVs= +github.com/cometbft/cometbft-db v0.8.0 h1:vUMDaH3ApkX8m0KZvOFFy9b5DZHBAjsnEuo9AKVZpjo= +github.com/cometbft/cometbft-db v0.8.0/go.mod h1:6ASCP4pfhmrCBpfk01/9E1SI29nD3HfVHrY4PG8x5c0= github.com/confio/ics23/go v0.9.0 h1:cWs+wdbS2KRPZezoaaj+qBleXgUk5WOQFMP3CQFGTr4= github.com/confio/ics23/go v0.9.0/go.mod h1:4LPZ2NYqnYIVRklaozjNR1FScgDJ2s5Xrp+e/mYVRak= github.com/consensys/bavard v0.1.8-0.20210406032232-f3452dc9b572/go.mod h1:Bpd0/3mZuaj6Sj+PqrmIquiOKy397AKGThQPaGzNXAQ= @@ -209,34 +375,41 @@ github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc github.com/coreos/go-etcd v2.0.0+incompatible/go.mod h1:Jez6KQU2B/sWsbdaef3ED8NzMklzPG4d5KIOhIy30Tk= github.com/coreos/go-semver v0.2.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= github.com/coreos/go-systemd v0.0.0-20180511133405-39ca1b05acc7/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= -github.com/coreos/go-systemd/v22 v22.3.3-0.20220203105225-a9a7ef127534/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc= +github.com/coreos/go-systemd/v22 v22.5.0/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc= github.com/coreos/pkg v0.0.0-20160727233714-3ac0863d7acf/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= github.com/cosmos/btcutil v1.0.5 h1:t+ZFcX77LpKtDBhjucvnOH8C2l2ioGsBNEQ3jef8xFk= github.com/cosmos/btcutil v1.0.5/go.mod h1:IyB7iuqZMJlthe2tkIFL33xPyzbFYP0XVdS8P5lUPis= -github.com/cosmos/cosmos-proto v1.0.0-alpha8 h1:d3pCRuMYYvGA5bM0ZbbjKn+AoQD4A7dyNG2wzwWalUw= -github.com/cosmos/cosmos-proto v1.0.0-alpha8/go.mod h1:6/p+Bc4O8JKeZqe0VqUGTX31eoYqemTT4C1hLCWsO7I= -github.com/cosmos/cosmos-sdk v0.46.8 h1:n3brrFOwTwR9cKpr+k6vf6ryU+4iyzNdKOnQzEP9DwM= -github.com/cosmos/cosmos-sdk v0.46.8/go.mod h1:lg+FqwndbbCYQk1YTUWRDpOsNbQG0nINQqxY7ZnsAP8= +github.com/cosmos/cosmos-proto v1.0.0-beta.2 h1:X3OKvWgK9Gsejo0F1qs5l8Qn6xJV/AzgIWR2wZ8Nua8= +github.com/cosmos/cosmos-proto v1.0.0-beta.2/go.mod h1:+XRCLJ14pr5HFEHIUcn51IKXD1Fy3rkEQqt4WqmN4V0= +github.com/cosmos/cosmos-sdk v0.47.3-0.20230513170018-83d600596f5d h1:vB1ztAC3TzcVHdqdchvwi18y1s0zj7INAiqjS6yStQs= +github.com/cosmos/cosmos-sdk v0.47.3-0.20230513170018-83d600596f5d/go.mod h1:f3jiGiA4OauW0xaDL5KB09x4FtPP5ilvPGvi+S2dHCY= github.com/cosmos/go-bip39 v0.0.0-20180819234021-555e2067c45d/go.mod h1:tSxLoYXyBmiFeKpvmq4dzayMdCjCnu8uqmCysIGBT2Y= github.com/cosmos/go-bip39 v1.0.0 h1:pcomnQdrdH22njcAatO0yWojsUnCO3y2tNoV1cb6hHY= github.com/cosmos/go-bip39 v1.0.0/go.mod h1:RNJv0H/pOIVgxw6KS7QeX2a0Uo0aKUlfhZ4xuwvCdJw= -github.com/cosmos/gogoproto v1.4.2 h1:UeGRcmFW41l0G0MiefWhkPEVEwvu78SZsHBvI78dAYw= +github.com/cosmos/gogogateway v1.2.0 h1:Ae/OivNhp8DqBi/sh2A8a1D0y638GpL3tkmLQAiKxTE= +github.com/cosmos/gogogateway v1.2.0/go.mod h1:iQpLkGWxYcnCdz5iAdLcRBSw3h7NXeOkZ4GUkT+tbFI= github.com/cosmos/gogoproto v1.4.2/go.mod h1:cLxOsn1ljAHSV527CHOtaIP91kK6cCrZETRBrkzItWU= -github.com/cosmos/gorocksdb v1.2.0 h1:d0l3jJG8M4hBouIZq0mDUHZ+zjOx044J3nGRskwTb4Y= -github.com/cosmos/gorocksdb v1.2.0/go.mod h1:aaKvKItm514hKfNJpUJXnnOWeBnk2GL4+Qw9NHizILw= -github.com/cosmos/iavl v0.19.4 h1:t82sN+Y0WeqxDLJRSpNd8YFX5URIrT+p8n6oJbJ2Dok= -github.com/cosmos/iavl v0.19.4/go.mod h1:X9PKD3J0iFxdmgNLa7b2LYWdsGd90ToV5cAONApkEPw= -github.com/cosmos/ibc-go/v6 v6.1.0 h1:o7oXws2vKkKfOFzJI+oNylRn44PCNt5wzHd/zKQKbvQ= -github.com/cosmos/ibc-go/v6 v6.1.0/go.mod h1:CY3zh2HLfetRiW8LY6kVHMATe90Wj/UOoY8T6cuB0is= +github.com/cosmos/gogoproto v1.4.10 h1:QH/yT8X+c0F4ZDacDv3z+xE3WU1P1Z3wQoLMBRJoKuI= +github.com/cosmos/gogoproto v1.4.10/go.mod h1:3aAZzeRWpAwr+SS/LLkICX2/kDFyaYVzckBDzygIxek= +github.com/cosmos/iavl v0.20.0 h1:fTVznVlepH0KK8NyKq8w+U7c2L6jofa27aFX6YGlm38= +github.com/cosmos/iavl v0.20.0/go.mod h1:WO7FyvaZJoH65+HFOsDir7xU9FWk2w9cHXNW1XHcl7A= +github.com/cosmos/ibc-go/v7 v7.0.1 h1:NIBNRWjlOoFvFQu1ZlgwkaSeHO5avf4C1YQiWegt8jw= +github.com/cosmos/ibc-go/v7 v7.0.1/go.mod h1:vEaapV6nuLPQlS+g8IKmxMo6auPi0i7HMv1PhViht/E= +github.com/cosmos/ics23/go v0.9.1-0.20221207100636-b1abd8678aab h1:I9ialKTQo7248V827Bba4OuKPmk+FPzmTVHsLXaIJWw= +github.com/cosmos/ics23/go v0.9.1-0.20221207100636-b1abd8678aab/go.mod h1:2CwqasX5dSD7Hbp/9b6lhK6BwoBDCBldx7gPKRukR60= github.com/cosmos/ledger-cosmos-go v0.12.2 h1:/XYaBlE2BJxtvpkHiBm97gFGSGmYGKunKyF3nNqAXZA= github.com/cosmos/ledger-cosmos-go v0.12.2/go.mod h1:ZcqYgnfNJ6lAXe4HPtWgarNEY+B74i+2/8MhZw4ziiI= +github.com/cosmos/rosetta-sdk-go v0.10.0 h1:E5RhTruuoA7KTIXUcMicL76cffyeoyvNybzUGSKFTcM= +github.com/cosmos/rosetta-sdk-go v0.10.0/go.mod h1:SImAZkb96YbwvoRkzSMQB6noNJXFgWl/ENIznEoYQI4= github.com/cpuguy83/go-md2man v1.0.10/go.mod h1:SmD6nW6nTyfqj6ABTjUi3V3JVMnlJmwcJI5acqYI6dE= github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= -github.com/creachadair/taskgroup v0.3.2 h1:zlfutDS+5XG40AOxcHDSThxKzns8Tnr9jnr6VqkYlkM= -github.com/creachadair/taskgroup v0.3.2/go.mod h1:wieWwecHVzsidg2CsUnFinW1faVN4+kq+TDlRJQ0Wbk= +github.com/creachadair/taskgroup v0.4.2 h1:jsBLdAJE42asreGss2xZGZ8fJra7WtwnHWeJFxv2Li8= +github.com/creachadair/taskgroup v0.4.2/go.mod h1:qiXUOSrbwAY3u0JPGTzObbE3yf9hcXHDKBZ2ZjpCbgM= github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= +github.com/cucumber/common/gherkin/go/v22 v22.0.0 h1:4K8NqptbvdOrjL9DEea6HFjSpbdT9+Q5kgLpmmsHYl0= +github.com/cucumber/common/messages/go/v17 v17.1.1 h1:RNqopvIFyLWnKv0LfATh34SWBhXeoFTJnSrgm9cT/Ts= github.com/cyberdelia/templates v0.0.0-20141128023046-ca7fffd4298c/go.mod h1:GyV+0YP4qX0UQ7r2MoYZ+AvYDp12OF5yg4q8rGnyNh4= github.com/danieljoos/wincred v1.1.2 h1:QLdCxFs1/Yl4zduvBdcHB8goaYk9RARS2SgLLRuAyr0= github.com/danieljoos/wincred v1.1.2/go.mod h1:GijpziifJoIBfYh+S7BbkdUTU4LfM+QnGqR5Vl2tAx0= @@ -248,8 +421,9 @@ github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSs github.com/deckarep/golang-set v1.8.0/go.mod h1:5nI87KwE7wgsBU1F4GKAw2Qod7p5kyS383rP6+o6qqo= github.com/decred/dcrd/crypto/blake256 v1.0.0 h1:/8DMNYp9SGi5f0w7uCm6d6M4OU2rGFK09Y2A4Xv7EE0= github.com/decred/dcrd/crypto/blake256 v1.0.0/go.mod h1:sQl2p6Y26YV+ZOcSTP6thNdn47hh8kt6rqSlvmrXFAc= -github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 h1:YLtO71vCjJRCBcrPMtQ9nqBsqpA1m5sE92cU+pd5Mcc= github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1/go.mod h1:hyedUtir6IdtD/7lIxGeCxkaw7y45JueMRL4DIyJDKs= +github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0 h1:HbphB4TFFXpv7MNrT52FGrrgVXF1owhMVTHFZIlnvd4= +github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0/go.mod h1:DZGJHZMqrU4JJqFAWUS2UO1+lbSKsdiOoYi9Zzey7Fc= github.com/decred/dcrd/lru v1.0.0/go.mod h1:mxKOwFd7lFjN2GZYsiz/ecgqR6kkYAl+0pz0tEMk218= github.com/deepmap/oapi-codegen v1.6.0/go.mod h1:ryDa9AgbELGeB+YEXE1dR53yAjHwFvE9iAUlWl9Al3M= github.com/deepmap/oapi-codegen v1.8.2/go.mod h1:YLgSKSDv/bZQB7N4ws6luhozi3cEdRktEqrX88CvjIw= @@ -259,8 +433,8 @@ github.com/dgraph-io/badger/v2 v2.2007.4 h1:TRWBQg8UrlUhaFdco01nO2uXwzKS7zd+HVdw github.com/dgraph-io/badger/v2 v2.2007.4/go.mod h1:vSw/ax2qojzbN6eXHIx6KPKtCSHJN/Uz0X0VPruTIhk= github.com/dgraph-io/ristretto v0.0.3-0.20200630154024-f66de99634de/go.mod h1:KPxhHT9ZxKefz+PCeOGsrHpl1qZ7i70dGTu2u+Ahh6E= github.com/dgraph-io/ristretto v0.0.3/go.mod h1:KPxhHT9ZxKefz+PCeOGsrHpl1qZ7i70dGTu2u+Ahh6E= -github.com/dgraph-io/ristretto v0.1.0 h1:Jv3CGQHp9OjuMBSne1485aDpUkTKEcUqF+jm/LuerPI= -github.com/dgraph-io/ristretto v0.1.0/go.mod h1:fux0lOrBhrVCJd3lcTHsIJhq1T2rokOu6v9Vcb3Q9ug= +github.com/dgraph-io/ristretto v0.1.1 h1:6CWw5tJNgpegArSHpNHJKldNeq03FQCwYvfMVWajOK8= +github.com/dgraph-io/ristretto v0.1.1/go.mod h1:S1GPSBCYCIhmVNfcth17y2zZtQT6wzkzgwUve0VDWWA= github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ= github.com/dgryski/go-bitstream v0.0.0-20180413035011-3522498ce2c8/go.mod h1:VMaSuZ+SZcx/wljOQKvp5srsbCiKDEb6K2wC4+PiBmQ= github.com/dgryski/go-farm v0.0.0-20190423205320-6a90982ecee2/go.mod h1:SqUrOPUnsFjfmXRMNPybcSiG0BgUW2AuFH8PAnS2iTw= @@ -277,8 +451,8 @@ github.com/dop251/goja v0.0.0-20211011172007-d99e4b8cbf48/go.mod h1:R9ET47fwRVRP github.com/dop251/goja_nodejs v0.0.0-20210225215109-d91c329300e7/go.mod h1:hn7BA7c8pLvoGndExHudxTDKZ84Pyvv+90pbBjbTz0Y= github.com/dustin/go-humanize v0.0.0-20171111073723-bb3d318650d4/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= -github.com/dustin/go-humanize v1.0.1-0.20200219035652-afde56e7acac h1:opbrjaN/L8gg6Xh5D04Tem+8xVcz6ajZlGCs49mQgyg= -github.com/dustin/go-humanize v1.0.1-0.20200219035652-afde56e7acac/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= +github.com/dustin/go-humanize v1.0.1 h1:GzkhY7T5VNhEkwH0PVJgjz+fX1rhBrR7pRT3mDkpeCY= +github.com/dustin/go-humanize v1.0.1/go.mod h1:Mu1zIs6XwVuF/gI1OepvI0qD18qycQx+mFykh5fBlto= github.com/dvsekhvalnov/jose2go v1.5.0 h1:3j8ya4Z4kMCwT5nXIKFSV84YS+HdqSSO0VsTQxaLAeM= github.com/dvsekhvalnov/jose2go v1.5.0/go.mod h1:QsHjhyTlD/lAVqn/NSbVZmSCGeDehTB/mPZadG+mhXU= github.com/eapache/go-resiliency v1.1.0/go.mod h1:kFI+JgMyC7bLPUVY133qvEBtVayf5mFgVsvEsIPBvNs= @@ -292,21 +466,23 @@ github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.m github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= github.com/envoyproxy/go-control-plane v0.9.7/go.mod h1:cwu0lG7PUMfa9snN8LXBig5ynNVH9qI8YYLbd1fK2po= github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= +github.com/envoyproxy/go-control-plane v0.9.9-0.20210217033140-668b12f5399d/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= +github.com/envoyproxy/go-control-plane v0.9.9-0.20210512163311-63b5d3c536b0/go.mod h1:hliV/p42l8fGbc6Y9bQ70uLwIvmJyVE5k4iMKlh8wCQ= +github.com/envoyproxy/go-control-plane v0.9.10-0.20210907150352-cf90f659a021/go.mod h1:AFq3mo9L8Lqqiid3OhADV3RfLJnjiw63cSpi+fDTRC0= +github.com/envoyproxy/go-control-plane v0.10.2-0.20220325020618-49ff273808a1/go.mod h1:KJwIaB5Mv44NWtYuAOFCVOjcI94vtpEz2JU/D2v6IjE= github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= github.com/ethereum/go-ethereum v1.10.17/go.mod h1:Lt5WzjM07XlXc95YzrhosmR4J9Ahd6X2wyEV2SvGhk0= -github.com/facebookgo/ensure v0.0.0-20200202191622-63f1cf65ac4c h1:8ISkoahWXwZR41ois5lSJBSVw4D0OV19Ht/JSTzvSv0= -github.com/facebookgo/stack v0.0.0-20160209184415-751773369052 h1:JWuenKqqX8nojtoVVWjGfOF9635RETekkoH6Cc9SX0A= -github.com/facebookgo/subset v0.0.0-20200203212716-c811ad88dec4 h1:7HZCaLC5+BZpmbhCOZJ293Lz68O7PYrF2EzeiFMwCLk= github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= github.com/fatih/color v1.13.0/go.mod h1:kLAiJbzzSOZDVNGyDpeOxJ47H46qBXwg5ILebYFFOfk= -github.com/felixge/httpsnoop v1.0.1 h1:lvB5Jl89CsZtGIWuTcDM1E/vkVs49/Ml7JJe07l8SPQ= github.com/felixge/httpsnoop v1.0.1/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U= +github.com/felixge/httpsnoop v1.0.2 h1:+nS9g82KMXccJ/wp0zyRW9ZBHFETmMGtkk+2CTTrW4o= +github.com/felixge/httpsnoop v1.0.2/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U= github.com/fjl/memsize v0.0.0-20190710130421-bcb5799ab5e5/go.mod h1:VvhXpOYNQvB+uIk2RvXzuaQtkQJzzIx6lSBe1xv7hi0= github.com/fogleman/gg v1.2.1-0.20190220221249-0403632d5b90/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k= github.com/fortytw2/leaktest v1.3.0 h1:u8491cBMTQ8ft8aeV+adlcytMZylmA5nnwwkRZjI8vw= github.com/franela/goblin v0.0.0-20200105215937-c9ffbefa60db/go.mod h1:7dvUGVsVBjqR7JHJk0brhHOZYGmfBYOrK0ZhYMEtBr4= github.com/franela/goreq v0.0.0-20171204163338-bcd34c9993f8/go.mod h1:ZhphrRTfi2rbfLwlschooIH4+wKKDR4Pdxhh+TRoA20= -github.com/frankban/quicktest v1.14.3 h1:FJKSZTDHjyhriyC81FLQ0LY93eSai0ZyR/ZIkd3ZUKE= +github.com/frankban/quicktest v1.14.4 h1:g2rn0vABPOOXmZUj+vbmUp0lPoXEMuhTpIluN0XL9UY= github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ= github.com/fsnotify/fsnotify v1.6.0 h1:n+5WquG0fcWoWp6xPWfHdbskMCQaFnG6PfBrh1Ky4HY= @@ -318,7 +494,7 @@ github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeME github.com/gin-contrib/sse v0.1.0 h1:Y/yl/+YNO8GZSjAhjMsSuLt29uWRFHdHYUb5lYOV9qE= github.com/gin-contrib/sse v0.1.0/go.mod h1:RHrZQHXnP2xjPF+u1gW/2HnVO7nvIa9PG3Gm+fLHvGI= github.com/gin-gonic/gin v1.6.3/go.mod h1:75u5sXoLsGZoRN5Sgbi1eraJ4GU3++wFwWzhwvtwp4M= -github.com/gin-gonic/gin v1.7.0 h1:jGB9xAJQ12AIGNB4HguylppmDK1Am9ppF7XnGXXJuoU= +github.com/gin-gonic/gin v1.8.1 h1:4+fr/el88TOO3ewCmQr8cx/CtZ/umlIRIs5M4NTNjf8= github.com/glycerine/go-unsnap-stream v0.0.0-20180323001048-9f0cb55181dd/go.mod h1:/20jfyN9Y5QPEAprSgKAUr+glWDY39ZiUEAYOEv5dsE= github.com/glycerine/goconvey v0.0.0-20190410193231-58a59202ab31/go.mod h1:Ogl1Tioa0aV7gstGFO7KhffUsb9M4ydbEbbxpcEDc24= github.com/go-chi/chi/v5 v5.0.0/go.mod h1:BBug9lr0cqtdAhsu6R4AAdvufI0/XBzAQSsUqJpoZOs= @@ -330,26 +506,25 @@ github.com/go-kit/kit v0.9.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2 github.com/go-kit/kit v0.10.0/go.mod h1:xUsJbQ/Fp4kEt7AFgCuvyX4a71u8h9jB8tj/ORgOZ7o= github.com/go-kit/kit v0.12.0 h1:e4o3o3IsBfAKQh5Qbbiqyfu97Ku7jrO/JbohvztANh4= github.com/go-kit/kit v0.12.0/go.mod h1:lHd+EkCZPIwYItmGDDRdhinkzX2A1sj+M9biaEaizzs= -github.com/go-kit/log v0.1.0/go.mod h1:zbhenjAZHb184qTLMA9ZjW7ThYL0H2mk7Q6pNt4vbaY= -github.com/go-kit/log v0.2.0/go.mod h1:NwTd00d/i8cPZ3xOwwiv2PO5MOcx78fFErGNcVmBjv0= github.com/go-kit/log v0.2.1 h1:MRVx0/zhvdseW+Gza6N9rVzU/IVzaeE1SFI4raAhmBU= github.com/go-kit/log v0.2.1/go.mod h1:NwTd00d/i8cPZ3xOwwiv2PO5MOcx78fFErGNcVmBjv0= github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= github.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A= -github.com/go-logfmt/logfmt v0.5.1 h1:otpy5pqBCBZ1ng9RQ0dPu4PN7ba75Y/aA+UpowDyNVA= -github.com/go-logfmt/logfmt v0.5.1/go.mod h1:WYhtIu8zTZfxdn5+rREduYbwxfcBr/Vr6KEVveWlfTs= +github.com/go-logfmt/logfmt v0.6.0 h1:wGYYu3uicYdqXVgoYbvnkrPVXkuLM1p1ifugDMEdRi4= +github.com/go-logfmt/logfmt v0.6.0/go.mod h1:WYhtIu8zTZfxdn5+rREduYbwxfcBr/Vr6KEVveWlfTs= github.com/go-ole/go-ole v1.2.1/go.mod h1:7FAglXiTm7HKlQRDeOQ6ZNUHidzCWXuZWq/1dTyBNF8= github.com/go-openapi/jsonpointer v0.19.5/go.mod h1:Pl9vOtqEWErmShwVjC8pYs9cog34VGT37dQOVbmoatg= github.com/go-openapi/swag v0.19.5/go.mod h1:POnQmlKehdgb5mhVOsnJFsivZCEZ/vjK9gh66Z9tfKk= github.com/go-playground/assert/v2 v2.0.1/go.mod h1:VDjEfimB/XKnb+ZQfWdccd7VUvScMdVu0Titje2rxJ4= -github.com/go-playground/locales v0.13.0 h1:HyWk6mgj5qFqCT5fjGBuRArbVDfE4hi8+e8ceBS/t7Q= github.com/go-playground/locales v0.13.0/go.mod h1:taPMhCMXrRLJO55olJkUXHZBHCxTMfnGwq/HNwmWNS8= -github.com/go-playground/universal-translator v0.17.0 h1:icxd5fm+REJzpZx7ZfpaD876Lmtgy7VtROAbHHXk8no= +github.com/go-playground/locales v0.14.0 h1:u50s323jtVGugKlcYeyzC0etD1HifMjqmJqb8WugfUU= +github.com/go-playground/locales v0.14.0/go.mod h1:sawfccIbzZTqEDETgFXqTho0QybSa7l++s0DH+LDiLs= github.com/go-playground/universal-translator v0.17.0/go.mod h1:UkSxE5sNxxRwHyU+Scu5vgOQjsIJAF8j9muTVoKLVtA= +github.com/go-playground/universal-translator v0.18.0 h1:82dyy6p4OuJq4/CByFNOn/jYrnRPArHwAcmLoJZxyho= +github.com/go-playground/universal-translator v0.18.0/go.mod h1:UvRDBj+xPUEGrFYl+lu/H90nyDXpg0fqeB/AQUGNTVA= github.com/go-playground/validator/v10 v10.2.0/go.mod h1:uOYAAleCW8F/7oMFd6aG0GOhaH6EGOAJShg8Id5JGkI= -github.com/go-playground/validator/v10 v10.4.1 h1:pH2c5ADXtd66mxoE0Zm9SUhxE20r7aM3F26W0hOn+GE= -github.com/go-playground/validator/v10 v10.4.1/go.mod h1:nlOn6nFhuKACm19sB/8EGNn9GlaMV7XkbRSipzJ0Ii4= +github.com/go-playground/validator/v10 v10.11.1 h1:prmOlTVv+YjZjmRmNSF3VmspqJIxJWXmqUsHwfTRRkQ= github.com/go-sourcemap/sourcemap v2.1.3+incompatible/go.mod h1:F8jJfvm2KbVjc5NqelyYJmf/v5J0dwNLS2mL4sNA1Jg= github.com/go-sql-driver/mysql v1.4.0/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w= github.com/go-sql-driver/mysql v1.4.1/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w= @@ -360,19 +535,28 @@ github.com/gobwas/pool v0.2.0 h1:QEmUOlnSjWtnpRGHF3SauEiOsy82Cup83Vf2LcMlnc8= github.com/gobwas/pool v0.2.0/go.mod h1:q8bcK0KcYlCgd9e7WYLm9LpyS+YeLd8JVDW6WezmKEw= github.com/gobwas/ws v1.0.2 h1:CoAavW/wd/kulfZmSIBt6p24n4j7tHgNVCjsfHVNUbo= github.com/gobwas/ws v1.0.2/go.mod h1:szmBTxLgaFppYjEmNtny/v3w89xOydFnnZMcgRRu/EM= +github.com/goccy/go-json v0.9.11 h1:/pAaQDLHEoCq/5FFmSKBswWmK6H0e8g4159Kc/X/nqk= github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 h1:ZpnhV/YsD2/4cESfV5+Hoeu/iUR3ruzNvZ+yQfO03a0= github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2/go.mod h1:bBOAhwG1umN6/6ZUMtDFBMQR8jRg9O75tm9K00oMsK4= github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA= github.com/gofrs/uuid v3.3.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM= -github.com/gogo/gateway v1.1.0 h1:u0SuhL9+Il+UbjM9VIE3ntfRujKbvVpFvNB4HbjeVQ0= -github.com/gogo/gateway v1.1.0/go.mod h1:S7rR8FRQyG3QFESeSv4l2WnsyzlCLG0CzBbUUo/mbic= +github.com/gofrs/uuid v4.3.0+incompatible h1:CaSVZxm5B+7o45rtab4jC2G37WGYX1zQfuU2i6DSvnc= github.com/gogo/googleapis v1.1.0/go.mod h1:gf4bu3Q80BeJ6H1S1vYPm8/ELATdvryBaNFGgqEef3s= +github.com/gogo/googleapis v1.4.1-0.20201022092350-68b0159b7869/go.mod h1:5YRNX2z1oM5gXdAkurHa942MDgEJyk02w4OecKY87+c= +github.com/gogo/googleapis v1.4.1 h1:1Yx4Myt7BxzvUr5ldGSbwYiZG6t9wGBZ+8/fX3Wvtq0= +github.com/gogo/googleapis v1.4.1/go.mod h1:2lpHqI5OcWCtVElxXnPt+s8oJvMpySlOyM6xDCrzib4= +github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= +github.com/gogo/protobuf v1.2.0/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= +github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= +github.com/gogo/protobuf v1.3.1/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= +github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q= +github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= github.com/golang-jwt/jwt/v4 v4.3.0/go.mod h1:/xlHOz8bRuivTWchD4jCa+NbatV+wEUSzwAxVc6locg= github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0/go.mod h1:E/TSTwGwJL78qG/PmXZO1EjYhfJinVAhrmmHX6Z8B9k= github.com/golang/geo v0.0.0-20190916061304-5b978397cfec/go.mod h1:QZ0nwyI2jOfgRAoBvP+ab5aRr7c9x7lhGEJrKvBwjWI= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= -github.com/golang/glog v1.0.0 h1:nfP3RFugxnNRyKgeWd4oI1nYvXpxrx8ck8ZrcizshdQ= -github.com/golang/glog v1.0.0/go.mod h1:EWib/APOK0SL3dFbYqvxE3UYd8E6s1ouQ7iEp/0LWV4= +github.com/golang/glog v1.1.0 h1:/d3pCKDPWNnvIWe0vVUpNP32qc8U3PDVxySP/y360qE= +github.com/golang/glog v1.1.0/go.mod h1:pfYeQZ3JWZoXTV5sFc986z3HTpwQs9At6P4ImfuP3NQ= github.com/golang/groupcache v0.0.0-20160516000752-02826c3e7903/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= @@ -386,6 +570,7 @@ github.com/golang/mock v1.4.0/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt github.com/golang/mock v1.4.1/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= github.com/golang/mock v1.4.3/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= github.com/golang/mock v1.4.4/go.mod h1:l3mdAwkq5BuhzHwde/uurv3sEJeZMXNpwsxVWU71h+4= +github.com/golang/mock v1.5.0/go.mod h1:CWnOUgYIOo4TcNZ0wHX3YZCqsaM1I1Jvs6v3mP3KVu8= github.com/golang/mock v1.6.0 h1:ErTB+efbowRARo13NNdxyJji2egdxLGQhRaY+DUumQc= github.com/golang/mock v1.6.0/go.mod h1:p6yTPP+5HYm5mzsMV8JkE6ZKdX+/wYM6Hr+LicevLPs= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= @@ -404,8 +589,10 @@ github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QD github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= -github.com/golang/protobuf v1.5.2 h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw= +github.com/golang/protobuf v1.5.1/go.mod h1:DopwsBzvsk0Fs44TXzsVbJyPhcCPeIwnvohx4u74HPM= github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= +github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg= +github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/golang/snappy v0.0.3/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/golang/snappy v0.0.4 h1:yAGX7huGHXlcLOEtBnF4w7FQwA26wojNCwOYAEhLjQM= @@ -413,8 +600,8 @@ github.com/golang/snappy v0.0.4/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEW github.com/golangci/lint-1 v0.0.0-20181222135242-d2cdd8c08219/go.mod h1:/X8TswGSh1pIozq4ZwCfxS0WA5JGXguxk94ar/4c87Y= github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= -github.com/google/btree v1.0.1 h1:gK4Kx5IaGY9CD5sPJ36FHiBJ6ZXl0kilRiiCj+jdYp4= -github.com/google/btree v1.0.1/go.mod h1:xXMiIv4Fb/0kKde4SpL7qlzvu5cMJDRkFDxJfI9uaxA= +github.com/google/btree v1.1.2 h1:xf4v41cLI2Z6FxbKm+8Bu+m8ifhj15JuZ9sa0jZCMUU= +github.com/google/btree v1.1.2/go.mod h1:qOPhT0dTNdNzV6Z/lhRX0YXUafgPLFUh+gZMl761Gm4= github.com/google/flatbuffers v1.11.0/go.mod h1:1AeVuKshWv4vARoZatz6mlQ0JxURH0Kv5+zNeJKJCa8= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= @@ -427,18 +614,21 @@ github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/ github.com/google/go-cmp v0.5.3/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.7/go.mod h1:n+brtR0CgQNWTVd5ZUFpTBC8YFBDLK/h/bpaJ8/DtOE= +github.com/google/go-cmp v0.5.8/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38= github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/gofuzz v0.0.0-20170612174753-24818f796faf/go.mod h1:HP5RmnzzSNb993RKQDq4+1A4ia9nllfqcQFTQJedwGI= github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= github.com/google/gofuzz v1.1.1-0.20200604201612-c04b05f3adfa/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= github.com/google/gofuzz v1.2.0 h1:xRy4A+RhZaiKjJ1bPfwQ8sedCA+YS2YcCHW6ec7JMi0= -github.com/google/gofuzz v1.2.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= github.com/google/martian v2.1.0+incompatible h1:/CP5g8u/VJHijgedC/Legn3BAbAaWPgecwXBIDzw5no= github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= github.com/google/martian/v3 v3.1.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= -github.com/google/martian/v3 v3.2.1 h1:d8MncMlErDFTwQGBK1xhv026j9kqhvw1Qv9IbWT1VLQ= +github.com/google/martian/v3 v3.2.1/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= +github.com/google/martian/v3 v3.3.2 h1:IqNFLAmvJOgVlpdEBiQbDc2EwKW77amAycfTuWKdfvw= github.com/google/orderedcode v0.0.1 h1:UzfcAexk9Vhv8+9pNOgRu41f16lHq725vPwnSeiG/Us= github.com/google/orderedcode v0.0.1/go.mod h1:iVyU4/qPKHY5h/wSd6rZZCDcLJNxiWO6dvsYES2Sb20= github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= @@ -451,19 +641,37 @@ github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod h1:ZgVRPoUq/hf github.com/google/pprof v0.0.0-20201023163331-3e6fc7fc9c4c/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20201203190320-1bf35d6f28c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20201218002935-b9804c9f04c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210122040257-d980be63207e/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210226084205-cbba55b83ad5/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210601050228-01bbb1931b22/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210609004039-a478d1d731e9/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= +github.com/google/s2a-go v0.1.3 h1:FAgZmpLl/SXurPEZyCMPBIiiYeTbqfjlbdnCNTAkbGE= +github.com/google/s2a-go v0.1.3/go.mod h1:Ej+mSEMGRnqRzjc7VtF+jdBwYG5fuJfiZ8ELkjEwM0A= github.com/google/uuid v1.0.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.2.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I= github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/googleapis/enterprise-certificate-proxy v0.2.0 h1:y8Yozv7SZtlU//QXbezB6QkpuE6jMD2/gfzk4AftXjs= +github.com/googleapis/enterprise-certificate-proxy v0.0.0-20220520183353-fd19c99a87aa/go.mod h1:17drOmN3MwGY7t0e+Ei9b45FFGA3fBs3x36SsCg1hq8= +github.com/googleapis/enterprise-certificate-proxy v0.1.0/go.mod h1:17drOmN3MwGY7t0e+Ei9b45FFGA3fBs3x36SsCg1hq8= github.com/googleapis/enterprise-certificate-proxy v0.2.0/go.mod h1:8C0jb7/mgJe/9KK8Lm7X9ctZC2t60YyIpYEI16jx0Qg= +github.com/googleapis/enterprise-certificate-proxy v0.2.3 h1:yk9/cqRKtT9wXZSsRH9aurXEpJX+U6FLtpYTdC3R06k= +github.com/googleapis/enterprise-certificate-proxy v0.2.3/go.mod h1:AwSRAtLfXpU5Nm3pW+v7rGDHp09LsPtGY9MduiEsR9k= github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= -github.com/googleapis/gax-go/v2 v2.7.0 h1:IcsPKeInNvYi7eqSaDjiZqDDKu5rsmunY0Y1YupQSSQ= -github.com/googleapis/gax-go/v2 v2.7.0/go.mod h1:TEop28CZZQ2y+c0VxMUmu1lV+fQx57QpBWsYpwqHJx8= +github.com/googleapis/gax-go/v2 v2.1.0/go.mod h1:Q3nei7sK6ybPYH7twZdmQpAd1MKb7pfu6SK+H1/DsU0= +github.com/googleapis/gax-go/v2 v2.1.1/go.mod h1:hddJymUZASv3XPyGkUpKj8pPO47Rmb0eJc8R6ouapiM= +github.com/googleapis/gax-go/v2 v2.2.0/go.mod h1:as02EH8zWkzwUoLbBaFeQ+arQaj/OthfcblKl4IGNaM= +github.com/googleapis/gax-go/v2 v2.3.0/go.mod h1:b8LNqSzNabLiUpXKkY7HAR5jr6bIT99EXz9pXxye9YM= +github.com/googleapis/gax-go/v2 v2.4.0/go.mod h1:XOTVJ59hdnfJLIP/dh8n5CGryZR2LxK9wbMD5+iXC6c= +github.com/googleapis/gax-go/v2 v2.5.1/go.mod h1:h6B0KMMFNtI2ddbGJn3T3ZbwkeT6yqEF02fYlzkUCyo= +github.com/googleapis/gax-go/v2 v2.6.0/go.mod h1:1mjbznJAPHFpesgE5ucqfYEscaz5kMdcIDwU/6+DDoY= +github.com/googleapis/gax-go/v2 v2.8.0 h1:UBtEZqx1bjXtOQ5BVTkuYghXrr3N4V123VKJK67vJZc= +github.com/googleapis/gax-go/v2 v2.8.0/go.mod h1:4orTrqY6hXxxaUL4LHIPl6lGo8vAE38/qKbhSAKP6QI= +github.com/googleapis/go-type-adapters v1.0.0/go.mod h1:zHW75FOG2aur7gAO2B+MLby+cLsWGBF62rFAi7WjWO4= github.com/googleapis/google-cloud-go-testing v0.0.0-20200911160855-bcd43fbb19e8/go.mod h1:dvDLG8qkwmyD9a/MJJN3XJcT3xFxOKAvTZGvuZmac9g= github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= github.com/gorilla/context v1.1.1/go.mod h1:kBGZzfjB9CEq2AlWe17Uuf7NDRt0dE0s8S51q0aT7Yg= @@ -484,7 +692,6 @@ github.com/grpc-ecosystem/go-grpc-middleware v1.2.2/go.mod h1:EaizFBKfUKtMIF5iaD github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 h1:+9834+KizmvFV7pXQGSXQTsaWhq2GjuNUt0aUU0YBYw= github.com/grpc-ecosystem/go-grpc-middleware v1.3.0/go.mod h1:z0ButlSOZa5vEBq9m2m2hlwIgKw+rp3sdCBRoJY+30Y= github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk= -github.com/grpc-ecosystem/grpc-gateway v1.8.5/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= github.com/grpc-ecosystem/grpc-gateway v1.9.5/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= github.com/grpc-ecosystem/grpc-gateway v1.16.0 h1:gmcG1KaJ57LophUzW0Hy8NmPhnMZb4M0+kPpLofRdBo= github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw= @@ -503,8 +710,8 @@ github.com/hashicorp/go-cleanhttp v0.5.0/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtng github.com/hashicorp/go-cleanhttp v0.5.1/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80= github.com/hashicorp/go-cleanhttp v0.5.2 h1:035FKYIWjmULyFRBKPs8TBQoi0x6d9G4xc9neXJWAZQ= github.com/hashicorp/go-cleanhttp v0.5.2/go.mod h1:kO/YDlP8L1346E6Sodw+PrpBSV4/SoxCXGY6BqNFT48= -github.com/hashicorp/go-getter v1.6.1 h1:NASsgP4q6tL94WH6nJxKWj8As2H/2kop/bB1d8JMyRY= -github.com/hashicorp/go-getter v1.6.1/go.mod h1:IZCrswsZPeWv9IkVnLElzRU/gz/QPi6pZHn4tv6vbwA= +github.com/hashicorp/go-getter v1.7.1 h1:SWiSWN/42qdpR0MdhaOc/bLR48PLuP1ZQtYLRlM69uY= +github.com/hashicorp/go-getter v1.7.1/go.mod h1:W7TalhMmbPmsSMdNjD0ZskARur/9GJ17cfHTRtXV744= github.com/hashicorp/go-immutable-radix v1.0.0/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60= github.com/hashicorp/go-immutable-radix v1.3.1 h1:DKHmCUm2hRBK510BaiZlwvpD40f8bJFeZnpfm2KLowc= github.com/hashicorp/go-immutable-radix v1.3.1/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60= @@ -519,7 +726,6 @@ github.com/hashicorp/go-syslog v1.0.0/go.mod h1:qPfqrKkXGihmCqbJM2mZgkZGvKG1dFdv github.com/hashicorp/go-uuid v1.0.0/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= github.com/hashicorp/go-uuid v1.0.1 h1:fv1ep09latC32wFoVwnqcnKJGnMSdBanPczbHAYm1BE= github.com/hashicorp/go-uuid v1.0.1/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= -github.com/hashicorp/go-version v1.1.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA= github.com/hashicorp/go-version v1.2.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA= github.com/hashicorp/go-version v1.6.0 h1:feTTfFNnjP967rlCxM/I9g701jU+RN74YKx2mOkIeek= github.com/hashicorp/go-version v1.6.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA= @@ -534,11 +740,15 @@ github.com/hashicorp/logutils v1.0.0/go.mod h1:QIAnNjmIWmVIIkWDTG1z5v++HQmx9WQRO github.com/hashicorp/mdns v1.0.0/go.mod h1:tL+uN++7HEJ6SQLQ2/p+z2pH24WQKWjBPkE0mNTz8vQ= github.com/hashicorp/memberlist v0.1.3/go.mod h1:ajVTdAv/9Im8oMAAj5G31PhhMCZJV2pPBoIllUwCN7I= github.com/hashicorp/serf v0.8.2/go.mod h1:6hOLApaqBFA1NXqRQAsxw9QxuDEvNxSQRwA/JwenrHc= -github.com/hdevalence/ed25519consensus v0.0.0-20220222234857-c00d1f31bab3 h1:aSVUgRRRtOrZOC1fYmY9gV0e9z/Iu+xNVSASWjsuyGU= -github.com/hdevalence/ed25519consensus v0.0.0-20220222234857-c00d1f31bab3/go.mod h1:5PC6ZNPde8bBqU/ewGZig35+UIZtw9Ytxez8/q5ZyFE= +github.com/hdevalence/ed25519consensus v0.1.0 h1:jtBwzzcHuTmFrQN6xQZn6CQEO/V9f7HsjsjeEZ6auqU= +github.com/hdevalence/ed25519consensus v0.1.0/go.mod h1:w3BHWjwJbFU29IRHL1Iqkw3sus+7FctEyM4RqDxYNzo= github.com/holiman/bloomfilter/v2 v2.0.3/go.mod h1:zpoh+gs7qcpqrHr3dB55AMiJwo0iURXE7ZOP9L9hSkA= github.com/holiman/uint256 v1.2.0/go.mod h1:y4ga/t+u+Xwd7CpDgZESaRcWy0I7XMlTMA25ApIH5Jw= github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= +github.com/huandu/go-assert v1.1.5 h1:fjemmA7sSfYHJD7CUqs9qTwwfdNAx7/j2/ZlHXzNB3c= +github.com/huandu/go-assert v1.1.5/go.mod h1:yOLvuqZwmcHIC5rIzrBhT7D3Q9c3GFnd0JrPVhn/06U= +github.com/huandu/skiplist v1.2.0 h1:gox56QD77HzSC0w+Ws3MH3iie755GBJU1OER3h5VsYw= +github.com/huandu/skiplist v1.2.0/go.mod h1:7v3iFjLcSAzO4fN5B8dvebvo/qsfumiLiDXMrPiHF9w= github.com/hudl/fargo v1.3.0/go.mod h1:y3CKSmjA+wD2gak7sUSXTAoopbhU08POFhmITJgmKTg= github.com/huin/goupnp v1.0.3-0.20220313090229-ca81a64b4204/go.mod h1:ZxNlw5WqJj6wSsRK5+YfflQGXYfccj5VgQsMNixHM7Y= github.com/huin/goutil v0.0.0-20170803182201-1ca381bf3150/go.mod h1:PpLOETDnJ0o3iZrZfqZzyLl6l7F3c6L1oWn7OICBi6o= @@ -547,8 +757,8 @@ github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1: github.com/improbable-eng/grpc-web v0.15.0 h1:BN+7z6uNXZ1tQGcNAuaU1YjsLTApzkjt2tzCixLaUPQ= github.com/improbable-eng/grpc-web v0.15.0/go.mod h1:1sy9HKV4Jt9aEs9JSnkWlRJPuPtwNr0l57L4f878wP8= github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8= -github.com/inconshreveable/mousetrap v1.0.1 h1:U3uMjPSQEBMNp1lFxmllqCPM6P5u/Xq7Pgzkat/bFNc= -github.com/inconshreveable/mousetrap v1.0.1/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw= +github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8= +github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw= github.com/influxdata/flux v0.65.1/go.mod h1:J754/zds0vvpfwuq7Gc2wRdVwEodfpCFM7mYlOw2LqY= github.com/influxdata/influxdb v1.8.3/go.mod h1:JugdFhsvvI8gadxOI6noqNeeBHvWNTbfYGtiAn+2jhI= github.com/influxdata/influxdb-client-go/v2 v2.4.0/go.mod h1:vLNHdxTJkIf2mSLvGrpj8TCcISApPoXkaxP8g9uRlW8= @@ -561,14 +771,11 @@ github.com/influxdata/promql/v2 v2.12.0/go.mod h1:fxOPu+DY0bqCTCECchSRtWfc+0X19y github.com/influxdata/roaring v0.4.13-0.20180809181101-fc520f41fab6/go.mod h1:bSgUQ7q5ZLSO+bKBGqJiCBGAl+9DxyW63zLTujjUlOE= github.com/influxdata/tdigest v0.0.0-20181121200506-bf2b5ad3c0a9/go.mod h1:Js0mqiSBE6Ffsg94weZZ2c+v/ciT8QRHFOap7EKDrR0= github.com/influxdata/usage-client v0.0.0-20160829180054-6d3895376368/go.mod h1:Wbbw6tYNvwa5dlB6304Sd+82Z3f7PmVZHVKU637d4po= -github.com/informalsystems/tendermint v0.34.25 h1:KlTF1ECfJI2KmM1w1YGai5hoLJ0ZOKjVwGAaElEBPtE= -github.com/informalsystems/tendermint v0.34.25/go.mod h1:TCGT4eRe5OW979YKVTpFOM57B4YkN+7FSDWpsgzAGwY= github.com/jackpal/go-nat-pmp v1.0.2/go.mod h1:QPH045xvCAeXUZOxsnwmrtiCoxIr9eob+4orBN1SBKc= github.com/jedisct1/go-minisign v0.0.0-20190909160543-45766022959e/go.mod h1:G1CVv03EnqU1wYL2dFwXxW2An0az9JTl/ZsqXQeBlkU= github.com/jessevdk/go-flags v0.0.0-20141203071132-1679536dcc89/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI= github.com/jessevdk/go-flags v1.4.0/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI= -github.com/jhump/protoreflect v1.12.1-0.20220721211354-060cc04fc18b h1:izTof8BKh/nE1wrKOrloNA5q4odOarjf+Xpe+4qow98= -github.com/jmespath/go-jmespath v0.0.0-20160202185014-0b12d6b521d8/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= +github.com/jhump/protoreflect v1.15.1 h1:HUMERORf3I3ZdX05WaQ6MIpd/NJ434hTp5YiKgfCL6c= github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= github.com/jmespath/go-jmespath v0.4.0 h1:BEgLn5cpjn8UN1mAw4NjwDrS35OdebyEtFe+9YPoQUg= github.com/jmespath/go-jmespath v0.4.0/go.mod h1:T8mJZnbsbmF+m6zOOFylbeCJqk5+pHWvzYPziyZiYoo= @@ -584,9 +791,7 @@ github.com/json-iterator/go v1.1.7/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/u github.com/json-iterator/go v1.1.8/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= github.com/json-iterator/go v1.1.9/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= github.com/json-iterator/go v1.1.10/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= -github.com/json-iterator/go v1.1.11/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM= -github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk= github.com/jsternberg/zap-logfmt v1.0.0/go.mod h1:uvPs/4X51zdkcm5jXl5SYoN+4RK21K8mysFmDaM/h+o= @@ -596,16 +801,18 @@ github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8 github.com/jung-kurt/gofpdf v1.0.3-0.20190309125859-24315acbbda5/go.mod h1:7Id9E/uU8ce6rXgefFLlgrJj/GYY22cpxn+r32jIOes= github.com/jwilder/encoding v0.0.0-20170811194829-b4e1701a28ef/go.mod h1:Ct9fl0F6iIOGgxJ5npU/IUOhOhqlVrGjyIZc8/MagT0= github.com/karalabe/usb v0.0.2/go.mod h1:Od972xHfMJowv7NGVDiWVxk2zxnWgjLlJzE+F4F7AGU= +github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= +github.com/kisielk/errcheck v1.2.0/go.mod h1:/BMXB+zMLi60iA8Vv6Ksmxu/1UDYcXs4uQLJ+jE2L00= github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= github.com/kkdai/bstream v0.0.0-20161212061736-f391b8402d23/go.mod h1:J+Gs4SYgM6CZQHDETBtE9HaSEkGmuNXF86RwHhHUvq4= github.com/klauspost/compress v1.4.0/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A= github.com/klauspost/compress v1.10.3/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs= -github.com/klauspost/compress v1.11.2/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs= github.com/klauspost/compress v1.11.7/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs= github.com/klauspost/compress v1.12.3/go.mod h1:8dP1Hq4DHOhN9w426knH3Rhby4rFm6D8eO+e+Dq5Gzg= -github.com/klauspost/compress v1.15.11 h1:Lcadnb3RKGin4FYM/orgq0qde+nc15E5Cbqg4B9Sx9c= github.com/klauspost/compress v1.15.11/go.mod h1:QPwzmACJjUTFsnSHH934V6woptycfrDDJnH7hvFVbGM= +github.com/klauspost/compress v1.16.3 h1:XuJt9zzcnaz6a16/OU53ZjWp/v7/42WcR5t2a0PcNQY= +github.com/klauspost/compress v1.16.3/go.mod h1:ntbaceVETuRiXiv4DpjP66DpAtAGkEQskQzEyD//IeE= github.com/klauspost/cpuid v0.0.0-20170728055534-ae7887de9fa5/go.mod h1:Pj4uuM528wm8OyEC2QMXAi2YiTZ96dNQPGgoMS4s3ek= github.com/klauspost/crc32 v0.0.0-20161016154125-cb6bfca970f6/go.mod h1:+ZoRqAPRLkC4NPOvfYeR5KNOrY6TD+/sAC3HXPZgDYg= github.com/klauspost/pgzip v1.0.2-0.20170402124221-0bf5dcad4ada/go.mod h1:Ch1tH69qFZu15pkjo5kYi6mth2Zzwzt50oCQKQE9RUs= @@ -615,7 +822,7 @@ github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= -github.com/kr/pretty v0.3.0 h1:WgNl7dwNpEZ6jJ9k1snq4pZsg7DOEN8hP9Xw0Tsjwk0= +github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= @@ -624,8 +831,9 @@ github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+ github.com/labstack/echo/v4 v4.2.1/go.mod h1:AA49e0DZ8kk5jTOOCKNuPR6oTnBS0dYiM4FW1e6jwpg= github.com/labstack/gommon v0.3.0/go.mod h1:MULnywXg0yavhxWKc+lOruYdAhDwPK9wf0OL7NoOu+k= github.com/leanovate/gopter v0.2.9/go.mod h1:U2L/78B+KVFIx2VmW6onHJQzXtFb+p5y3y2Sh+Jxxv8= -github.com/leodido/go-urn v1.2.0 h1:hpXL4XnriNwQ/ABnpepYM/1vCLWNDfUNts8dX3xTG6Y= github.com/leodido/go-urn v1.2.0/go.mod h1:+8+nEpDfqqsY+g338gtMEUOtuK+4dEMhiQEgxpxOKII= +github.com/leodido/go-urn v1.2.1 h1:BqpAaACuzVSgi/VLzGZIobT2z4v53pjosyNd9Yv6n/w= +github.com/leodido/go-urn v1.2.1/go.mod h1:zt4jvISO2HfUBqxjfIshjdMTYS56ZS/qv49ictyFfxY= github.com/lib/pq v1.0.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= github.com/lib/pq v1.10.7 h1:p7ZhMD+KsSRozJr34udlUrhboJwWAgCg34+/ZZNvZZw= github.com/lib/pq v1.10.7/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o= @@ -633,11 +841,13 @@ github.com/libp2p/go-buffer-pool v0.1.0 h1:oK4mSFcQz7cTQIfqbe4MIj9gLW+mnanjyFtc6 github.com/libp2p/go-buffer-pool v0.1.0/go.mod h1:N+vh8gMqimBzdKkSMVuydVDq+UV5QTWy5HSiZacSbPg= github.com/lightstep/lightstep-tracer-common/golang/gogo v0.0.0-20190605223551-bc2310a04743/go.mod h1:qklhhLq1aX+mtWk9cPHPzaBjWImj5ULL6C7HFJtXQMM= github.com/lightstep/lightstep-tracer-go v0.18.1/go.mod h1:jlF1pusYV4pidLvZ+XD0UBX0ZE6WURAspgAczcDHrL4= +github.com/linxGnu/grocksdb v1.7.16 h1:Q2co1xrpdkr5Hx3Fp+f+f7fRGhQFQhvi/+226dtLmA8= +github.com/linxGnu/grocksdb v1.7.16/go.mod h1:JkS7pl5qWpGpuVb3bPqTz8nC12X3YtPZT+Xq7+QfQo4= github.com/lucasjones/reggen v0.0.0-20180717132126-cdb49ff09d77/go.mod h1:5ELEyG+X8f+meRWHuqUOewBOhvHkl7M76pdGEansxW4= github.com/lyft/protoc-gen-validate v0.0.13/go.mod h1:XbGvPuh87YZc5TdIa2/I4pLk0QoUACkjt2znoq26NVQ= github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= -github.com/magiconair/properties v1.8.6 h1:5ibWZ6iY0NctNGWo87LalDlEZ6R41TqbbDamhfG/Qzo= -github.com/magiconair/properties v1.8.6/go.mod h1:y3VJvCyxH9uVvJTWEGAELF3aiYNyPKd5NZ3oSwXrF60= +github.com/magiconair/properties v1.8.7 h1:IeQXZAiQcpL9mgcAe1Nu6cX9LLw6ExEHKjN0VQdvPDY= +github.com/magiconair/properties v1.8.7/go.mod h1:Dhd985XPs7jluiymwWYZ0G4Z61jb3vdS329zhj2hYo0= github.com/mailru/easyjson v0.0.0-20190614124828-94de47d64c63/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= github.com/mailru/easyjson v0.0.0-20190626092158-b2ccc519800e/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= github.com/manifoldco/promptui v0.9.0 h1:3V4HzJk1TtXW1MTZMP7mdlwbBpIinw3HztaIlYthEiA= @@ -657,8 +867,9 @@ github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hd github.com/mattn/go-isatty v0.0.9/go.mod h1:YNRxwqDuOph6SZLI9vUUz6OYw3QyUt7WiY2yME+cCiQ= github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU= github.com/mattn/go-isatty v0.0.14/go.mod h1:7GGIvUiUoEMVVmxf/4nioHXj79iQHKdU27kJ6hsGG94= -github.com/mattn/go-isatty v0.0.16 h1:bq3VjFmv/sOjHtdEhmkEV4x1AJtvUvOJ2PFAZ5+peKQ= github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= +github.com/mattn/go-isatty v0.0.18 h1:DOKFKCQ7FNG2L1rbrmstDN4QVRdS89Nkh85u68Uwp98= +github.com/mattn/go-isatty v0.0.18/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= github.com/mattn/go-runewidth v0.0.2/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/mattn/go-runewidth v0.0.3/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/mattn/go-runewidth v0.0.4/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= @@ -678,8 +889,9 @@ github.com/mitchellh/cli v1.0.0/go.mod h1:hNIlj7HEI86fIcpObd7a0FcrxTWetlwJDGcceT github.com/mitchellh/go-homedir v1.0.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= github.com/mitchellh/go-homedir v1.1.0 h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y= github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= -github.com/mitchellh/go-testing-interface v1.0.0 h1:fzU/JVNcaqHQEcVFAKeR41fkiLdIPrefOvVG1VZ96U0= github.com/mitchellh/go-testing-interface v1.0.0/go.mod h1:kRemZodwjscx+RGhAo8eIhFbs2+BFgRtFPeD/KE+zxI= +github.com/mitchellh/go-testing-interface v1.14.1 h1:jrgshOhYAUVNMAJiKbEu7EqAwgJJ2JqpQmpLJOu07cU= +github.com/mitchellh/go-testing-interface v1.14.1/go.mod h1:gfgS7OtZj6MA4U1UrDRp04twqAjfvlZyCfX3sDjEym8= github.com/mitchellh/gox v0.4.0/go.mod h1:Sd9lOJ0+aimLBi73mGofS1ycjY8lL3uZM3JPS42BGNg= github.com/mitchellh/iochan v1.0.0/go.mod h1:JwYml1nuB7xOzsp52dPpHFffvOCDupsG0QubkSMEySY= github.com/mitchellh/mapstructure v0.0.0-20160808181253-ca63d7c062ee/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= @@ -695,7 +907,6 @@ github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJ github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M= -github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= github.com/modocache/gover v0.0.0-20171022184752-b58185e213c5/go.mod h1:caMODM3PzxT8aQXRPkAt8xlV/e7d7w8GM5g0fa5F0D8= github.com/mschoch/smat v0.0.0-20160514031455-90eadee771ae/go.mod h1:qAyveg+e4CE+eKJXWVjKXM4ck2QobLqTDytGJbLLhJg= github.com/mtibben/percent v0.2.1 h1:5gssi8Nqo8QU/r2pynCm+hBQHpkB/uNK7BJCFogWdzs= @@ -715,8 +926,8 @@ github.com/nats-io/nkeys v0.1.3/go.mod h1:xpnFELMwJABBLVhffcfd1MZx6VsNRFpEugbxzi github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c= github.com/neilotoole/errgroup v0.1.6/go.mod h1:Q2nLGf+594h0CLBs/Mbg6qOr7GtqDK7C2S41udRnToE= github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno= -github.com/nxadm/tail v1.4.4 h1:DQuhQpB1tVlglWS2hLQ5OV6B5r8aGxSrPc5Qo6uTN78= github.com/nxadm/tail v1.4.4/go.mod h1:kenIhsEOeOJmVchQTgglprH7qJGnHDVpk1VPCcaMI8A= +github.com/nxadm/tail v1.4.8 h1:nPr65rt6Y5JFSKQO7qToXr7pePgD6Gwiw05lkbyAQTE= github.com/oklog/oklog v0.3.2/go.mod h1:FCV+B7mhrz4o+ueLpx+KqkyXRGMWOYEvfiXtdGtbWGs= github.com/oklog/run v1.0.0/go.mod h1:dlhp/R75TPv97u0XWUtDeV/lRKWPKSdTuV0TZvrmrQA= github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= @@ -725,14 +936,13 @@ github.com/olekukonko/tablewriter v0.0.5/go.mod h1:hPp6KlRPjbx+hW8ykQs1w3UBbZlj6 github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/ginkgo v1.12.1/go.mod h1:zj2OWP4+oCPe1qIXoGWkgMRwljMUYCdkwsT2108oapk= -github.com/onsi/ginkgo v1.14.0 h1:2mOpI4JVVPBN+WQRa0WKH2eXR+Ey+uK4n7Zj0aYpIQA= github.com/onsi/ginkgo v1.14.0/go.mod h1:iSB4RoI2tjJc9BBv4NKIKWKya62Rps+oPG/Lv9klQyY= +github.com/onsi/ginkgo v1.16.4 h1:29JGrr5oVBm5ulCWet69zQkzWipVXIol6ygQUe/EzNc= github.com/onsi/gomega v1.4.1/go.mod h1:C1qb7wdrVGGVU+Z6iS04AVkA3Q65CEZX59MT0QO5uiA= github.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= github.com/onsi/gomega v1.7.1/go.mod h1:XdKZgCCFLUoM/7CFJVPcG8C1xQ1AJ0vpAezJrB7JYyY= github.com/onsi/gomega v1.10.1/go.mod h1:iN09h71vgCQne3DLsj+A5owkum+a2tYe+TOCB1ybHNo= -github.com/onsi/gomega v1.10.3 h1:gph6h/qe9GSUw1NhH1gp+qb+h8rXD8Cy60Z32Qw3ELA= -github.com/onsi/gomega v1.10.3/go.mod h1:V9xEwhxec5O8UDM77eCW8vLymOMltsqPVYWrpDsH8xc= +github.com/onsi/gomega v1.20.0 h1:8W0cWlwFkflGPLltQvLRB7ZVD5HuP6ng320w2IS245Q= github.com/op/go-logging v0.0.0-20160315200505-970db520ece7/go.mod h1:HzydrMdWErDVzsI23lYNej1Htcns9BCg93Dk0bBINWk= github.com/opencontainers/go-digest v1.0.0 h1:apOUWs51W5PlhuyGyz9FCeeBIOUDA/6nW8Oi/yOhh5U= github.com/opencontainers/image-spec v1.1.0-rc2 h1:2zx/Stx4Wc5pIPDvIxHXvXtQFW/7XWJGmnM7r3wg034= @@ -754,17 +964,15 @@ github.com/pascaldekloe/goe v0.1.0/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144T github.com/paulbellamy/ratecounter v0.2.0/go.mod h1:Hfx1hDpSGoqxkVVpBi/IlYD7kChlfo5C6hzIHwPqfFE= github.com/pborman/uuid v1.2.0/go.mod h1:X/NO0urCmaxf9VXbdlT7C2Yzkj2IKimNn4k+gtPdI/k= github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic= -github.com/pelletier/go-toml v1.9.5 h1:4yBQzkHv+7BHq2PQUZF3Mx0IYxG7LsP222s7Agd3ve8= -github.com/pelletier/go-toml v1.9.5/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c= -github.com/pelletier/go-toml/v2 v2.0.5 h1:ipoSadvV8oGUjnUbMub59IDPPwfxF694nG/jwbMiyQg= -github.com/pelletier/go-toml/v2 v2.0.5/go.mod h1:OMHamSCAODeSsVrwwvcJOaoN0LIUIaFVNZzmWyNfXas= +github.com/pelletier/go-toml/v2 v2.0.8 h1:0ctb6s9mE31h0/lhu+J6OPmVeDxJn+kYnJc2jZR9tGQ= +github.com/pelletier/go-toml/v2 v2.0.8/go.mod h1:vuYfssBdrU2XDZ9bYydBu6t+6a6PYNcZljzZR9VXg+4= github.com/performancecopilot/speed v3.0.0+incompatible/go.mod h1:/CLtqpZ5gBg1M9iaPbIdPPGyKcA8hKdoy6hAWba7Yac= github.com/peterh/liner v1.0.1-0.20180619022028-8c1271fcf47f/go.mod h1:xIteQHvHuaLYG9IFj6mSxM0fCKrs34IrEQUhOYuGPHc= github.com/peterh/liner v1.1.1-0.20190123174540-a2c9a5303de7/go.mod h1:CRroGNssyjTd/qIG2FyxByd2S8JEAZXBl4qUrZf8GS0= -github.com/petermattis/goid v0.0.0-20180202154549-b0b1615b78e5 h1:q2e307iGHPdTGp0hoxKjt1H5pDo6utceo3dQVK3I5XQ= github.com/petermattis/goid v0.0.0-20180202154549-b0b1615b78e5/go.mod h1:jvVRKCrJTQWu0XVbaOlby/2lO20uSCHEMzzplHXte1o= +github.com/petermattis/goid v0.0.0-20230317030725-371a4b8eda08 h1:hDSdbBuw3Lefr6R18ax0tZ2BJeNB3NehB3trOwYBsdU= +github.com/petermattis/goid v0.0.0-20230317030725-371a4b8eda08/go.mod h1:pxMtw7cyUw6B2bRH0ZBANSPg+AoSud1I1iyJHI69jH4= github.com/philhofer/fwd v1.0.0/go.mod h1:gk3iGcWd9+svBvR0sR+KPcfE+RNWozjowpeBVG3ZVNU= -github.com/philhofer/fwd v1.1.1/go.mod h1:gk3iGcWd9+svBvR0sR+KPcfE+RNWozjowpeBVG3ZVNU= github.com/pierrec/lz4 v1.0.2-0.20190131084431-473cd7ce01a1/go.mod h1:3/3N9NVKO0jef7pBehbT1qWhCMrIgbYNnFAZCqQ5LRc= github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= @@ -783,17 +991,16 @@ github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5Fsn github.com/prometheus/client_golang v1.3.0/go.mod h1:hJaj2vgQTGQmVCsAACORcieXFeDPbaTKGT+JTgUa3og= github.com/prometheus/client_golang v1.4.0/go.mod h1:e9GMxYsXl05ICDXkRhurwBS4Q3OK1iX/F2sw+iXX5zU= github.com/prometheus/client_golang v1.7.1/go.mod h1:PY5Wy2awLA44sXw4AOSfFBetzPP4j5+D6mVACh+pe2M= -github.com/prometheus/client_golang v1.11.0/go.mod h1:Z6t4BnS23TR94PD6BsDNk8yVqroYurpAkEiz0P2BEV0= -github.com/prometheus/client_golang v1.12.1/go.mod h1:3Z9XVyYiZYEO+YQWt3RD2R3jrbd179Rt297l4aS6nDY= -github.com/prometheus/client_golang v1.12.2 h1:51L9cDoUHVrXx4zWYlcLQIZ+d+VXHgqnYKkIuq4g/34= -github.com/prometheus/client_golang v1.12.2/go.mod h1:3Z9XVyYiZYEO+YQWt3RD2R3jrbd179Rt297l4aS6nDY= +github.com/prometheus/client_golang v1.14.0 h1:nJdhIvne2eSX/XRAFV9PcvFFRbrjbcTUj0VP62TMhnw= +github.com/prometheus/client_golang v1.14.0/go.mod h1:8vpkKitgIVNcqrRBWh1C4TIUQgYNtG/XQE4E/Zae36Y= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20190115171406-56726106282f/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.1.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.2.0 h1:uq5h0d+GuxiXLJLNABMgp2qUWDPiLvgCzz2dUR+/W/M= github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/client_model v0.3.0 h1:UBgGFHqYdG/TPFD1B1ogZywDqEkwp3fBMvqdiQ7Xew4= +github.com/prometheus/client_model v0.3.0/go.mod h1:LDGWKZIo7rky3hgvBe+caln+Dr3dPggB5dvjtD7w9+w= github.com/prometheus/common v0.0.0-20181113130724-41aa239b4cce/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= github.com/prometheus/common v0.2.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= @@ -802,42 +1009,35 @@ github.com/prometheus/common v0.7.0/go.mod h1:DjGbpBbp5NYNiECxcL/VnbXCCaQpKd3tt2 github.com/prometheus/common v0.9.1/go.mod h1:yhUN8i9wzaXS3w1O07YhxHEBxD+W35wd8bs7vj7HSQ4= github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= github.com/prometheus/common v0.15.0/go.mod h1:U+gB1OBLb1lF3O42bTCL+FK18tX9Oar16Clt/msog/s= -github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc= -github.com/prometheus/common v0.32.1/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls= -github.com/prometheus/common v0.34.0 h1:RBmGO9d/FVjqHT0yUGQwBJhkwKV+wPCn7KGpvfab0uE= -github.com/prometheus/common v0.34.0/go.mod h1:gB3sOl7P0TvJabZpLY5uQMpUqRCPPCyRLCZYc7JZTNE= +github.com/prometheus/common v0.42.0 h1:EKsfXEYo4JpWMHH5cg+KOUWeuJSov1Id8zGR8eeI1YM= +github.com/prometheus/common v0.42.0/go.mod h1:xBwqVerjNdUDjgODMpudtOMwlOwf2SaTr1yjz4b7Zbc= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= github.com/prometheus/procfs v0.0.0-20190117184657-bf6a532e95b1/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= github.com/prometheus/procfs v0.0.8/go.mod h1:7Qr8sr6344vo1JqZ6HhLceV9o3AJ1Ff+GxbHq6oeK9A= github.com/prometheus/procfs v0.1.3/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU= github.com/prometheus/procfs v0.3.0/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU= -github.com/prometheus/procfs v0.6.0/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= -github.com/prometheus/procfs v0.7.3/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= -github.com/prometheus/procfs v0.8.0 h1:ODq8ZFEaYeCaZOJlZZdJA2AbQR98dSHSM1KW/You5mo= -github.com/prometheus/procfs v0.8.0/go.mod h1:z7EfXMXOkbkqb9IINtpCn86r/to3BnA0uaxHdg830/4= +github.com/prometheus/procfs v0.9.0 h1:wzCHvIvM5SxWqYvwgVL7yJY8Lz3PKn49KQtpgMYJfhI= +github.com/prometheus/procfs v0.9.0/go.mod h1:+pB4zwohETzFnmlpe6yd2lSc+0/46IYZRB/chUwxUZY= github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= github.com/rakyll/statik v0.1.7 h1:OF3QCZUuyPxuGEP7B4ypUa7sB/iHtqOTDYZXGM8KOdQ= github.com/rakyll/statik v0.1.7/go.mod h1:AlZONWzMtEnMs7W4e/1LURLiI49pIMmp6V9Unghqrcc= github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 h1:N/ElC8H3+5XpJzTSTfLsJV/mx9Q9g7kxmchpfZyxgzM= github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= -github.com/regen-network/cosmos-proto v0.3.1 h1:rV7iM4SSFAagvy8RiyhiACbWEGotmqzywPxOvwMdxcg= -github.com/regen-network/cosmos-proto v0.3.1/go.mod h1:jO0sVX6a1B36nmE8C9xBFXpNwWejXC7QqCOnH3O0+YM= -github.com/regen-network/protobuf v1.3.3-alpha.regen.1 h1:OHEc+q5iIAXpqiqFKeLpu5NwTIkVXUs48vFMwzqpqY4= -github.com/regen-network/protobuf v1.3.3-alpha.regen.1/go.mod h1:2DjTFR1HhMQhiWC5sZ4OhQ3+NtdbZ6oBDKQwq5Ou+FI= +github.com/regen-network/gocuke v0.6.2 h1:pHviZ0kKAq2U2hN2q3smKNxct6hS0mGByFMHGnWA97M= github.com/retailnext/hllpp v1.0.1-0.20180308014038-101a6d2f8b52/go.mod h1:RDpi1RftBQPUCDRw6SmxeaREsAaRKnOclghuzp/WRzc= github.com/rjeczalik/notify v0.9.1/go.mod h1:rKwnCoCGeuQnwBtTSPL9Dad03Vh2n40ePRrjvIXnJho= github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg= github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= -github.com/rogpeppe/go-internal v1.8.1 h1:geMPLpDpQOgVyCg5z5GoRwLHepNdb71NXb67XFkP+Eg= +github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZVejAe8= github.com/rs/cors v1.7.0/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU= -github.com/rs/cors v1.8.2 h1:KCooALfAYGs415Cwu5ABvv9n9509fSiG5SQJn/AQo4U= -github.com/rs/cors v1.8.2/go.mod h1:XyqrcTp5zjWr1wsJ8PIRZssZ8b/WMcMf71DJnit4EMU= -github.com/rs/xid v1.3.0/go.mod h1:trrq9SKmegXys3aeAKXMUTdJsYXVwGY3RLcfgqegfbg= -github.com/rs/zerolog v1.27.0 h1:1T7qCieN22GVc8S4Q2yuexzBb1EqjbgjSH9RohbMjKs= -github.com/rs/zerolog v1.27.0/go.mod h1:7frBqO0oezxmnO7GF86FY++uy8I0Tk/If5ni1G9Qc0U= +github.com/rs/cors v1.8.3 h1:O+qNyWn7Z+F9M0ILBHgMVPuB1xTOucVd5gtaYyXBpRo= +github.com/rs/cors v1.8.3/go.mod h1:XyqrcTp5zjWr1wsJ8PIRZssZ8b/WMcMf71DJnit4EMU= +github.com/rs/xid v1.4.0/go.mod h1:trrq9SKmegXys3aeAKXMUTdJsYXVwGY3RLcfgqegfbg= +github.com/rs/zerolog v1.29.1 h1:cO+d60CHkknCbvzEWxP0S9K6KqyTjrCNUy1LdQLCGPc= +github.com/rs/zerolog v1.29.1/go.mod h1:Le6ESbR7hc+DP6Lt1THiV8CQSdkkNrd3R0XbEgp3ZBU= github.com/russross/blackfriday v1.5.2/go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR/rfWxYHBV53g= github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= @@ -865,15 +1065,15 @@ github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasO github.com/spaolacci/murmur3 v1.1.0 h1:7c1g84S4BPRrfL5Xrdp6fOJ206sU9y293DDHaoy0bLI= github.com/spaolacci/murmur3 v1.1.0/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= github.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ= -github.com/spf13/afero v1.9.2 h1:j49Hj62F0n+DaZ1dDCvhABaPNSGNkt32oRFxI33IEMw= -github.com/spf13/afero v1.9.2/go.mod h1:iUV7ddyEEZPO5gA3zD4fJt6iStLlL+Lg4m2cihcDf8Y= +github.com/spf13/afero v1.9.5 h1:stMpOSZFs//0Lv29HduCmli3GUfpFoF3Y1Q/aXj/wVM= +github.com/spf13/afero v1.9.5/go.mod h1:UBogFpq8E9Hx+xc5CNTTEpTnuHVmXDwZcZcE1eb/UhQ= github.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= -github.com/spf13/cast v1.5.0 h1:rj3WzYc11XZaIZMPKmwP96zkFEnnAmV8s6XbB2aY32w= -github.com/spf13/cast v1.5.0/go.mod h1:SpXXQ5YoyJw6s3/6cMTQuxvgRl3PCJiyaX9p6b155UU= +github.com/spf13/cast v1.5.1 h1:R+kOtfhWQE6TVQzY+4D7wJLBgkdVasCEFxSUBYBYIlA= +github.com/spf13/cast v1.5.1/go.mod h1:b9PdjNptOpzXr7Rq1q9gJML/2cdGQAo69NKzQ10KN48= github.com/spf13/cobra v0.0.3/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ= github.com/spf13/cobra v0.0.5/go.mod h1:3K3wKZymM7VvHMDS9+Akkh4K60UwM26emMESw8tLCHU= -github.com/spf13/cobra v1.6.1 h1:o94oiPyS4KD1mPy2fmcYYHHfCxLqYjJOhGsCHFZtEzA= -github.com/spf13/cobra v1.6.1/go.mod h1:IOw/AERYS7UzyrGinqmz6HLUo219MORXGxhbaJUqzrY= +github.com/spf13/cobra v1.7.0 h1:hyqWnYt1ZQShIddO5kBpj3vu05/++x6tJ6dg8EC572I= +github.com/spf13/cobra v1.7.0/go.mod h1:uLxZILRyS/50WlhOIKD7W6V5bgeIt+4sICxh6uRMrb0= github.com/spf13/jwalterweatherman v1.0.0/go.mod h1:cQK4TGJAtQXfYWX+Ddv3mKDzgVb68N+wFjFa4jdeBTo= github.com/spf13/jwalterweatherman v1.1.0 h1:ue6voC5bR5F8YxI5S67j9i582FU4Qvo2bmqnqMYADFk= github.com/spf13/jwalterweatherman v1.1.0/go.mod h1:aNWZUN0dPAAO/Ljvb5BEdw96iTZ0EXowPYD95IqWIGo= @@ -882,8 +1082,8 @@ github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnIn github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= github.com/spf13/viper v1.3.2/go.mod h1:ZiWeW+zYFKm7srdB9IoDzzZXaJaI5eL9QjNiN/DMA2s= -github.com/spf13/viper v1.14.0 h1:Rg7d3Lo706X9tHsJMUjdiwMpHB7W8WnSVOssIY+JElU= -github.com/spf13/viper v1.14.0/go.mod h1:WT//axPky3FdvXHzGw33dNdXXXfFQqmEalje+egj8As= +github.com/spf13/viper v1.16.0 h1:rGGH0XDZhdUOryiDWjmIvUSWpbNqisK8Wk0Vyefw8hc= +github.com/spf13/viper v1.16.0/go.mod h1:yg78JgCJcbrQOvV9YLXgkLaZqUidkY9K+Dd1FofRzQg= github.com/status-im/keycard-go v0.0.0-20190316090335-8537d3370df4/go.mod h1:RZLeN1LMWmRsyYjvAu+I6Dm9QmlDaIIt+Y+4Kd7Tp+Q= github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= github.com/streadway/amqp v0.0.0-20190827072141-edfb9018d271/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= @@ -902,29 +1102,27 @@ github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/ github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= -github.com/stretchr/testify v1.8.1 h1:w7B6lhMri9wdJUVmEZPGGhZzrYTPvgJArz7wNPgYKsk= github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= -github.com/subosito/gotenv v1.4.1 h1:jyEFiXpy21Wm81FBN71l9VoMMV8H8jG+qIK3GCpY6Qs= -github.com/subosito/gotenv v1.4.1/go.mod h1:ayKnFf/c6rvx/2iiLrJUk1e6plDbT3edrFNGqEflhK0= +github.com/stretchr/testify v1.8.3/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= +github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk= +github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= +github.com/subosito/gotenv v1.4.2 h1:X1TuBLAMDFbaTAChgCBLu3DU3UPyELpnF2jjJ2cz/S8= +github.com/subosito/gotenv v1.4.2/go.mod h1:ayKnFf/c6rvx/2iiLrJUk1e6plDbT3edrFNGqEflhK0= github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 h1:epCh84lMvA70Z7CTTCmYQn2CKbY8j86K7/FAIr141uY= github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7/go.mod h1:q4W45IWZaF22tdD+VEXcAWRA037jwmWEB5VWYORlTpc= github.com/tendermint/go-amino v0.16.0 h1:GyhmgQKvqF82e2oZeuMSp9JTN0N09emoSZlb2lyGa2E= github.com/tendermint/go-amino v0.16.0/go.mod h1:TQU0M1i/ImAo+tYpZi73AU3V/dKeCoMC9Sphe2ZwGME= -github.com/tendermint/tm-db v0.6.7 h1:fE00Cbl0jayAoqlExN6oyQJ7fR/ZtoVOmvPJ//+shu8= -github.com/tendermint/tm-db v0.6.7/go.mod h1:byQDzFkZV1syXr/ReXS808NxA2xvyuuVgXOJ/088L6I= -github.com/tidwall/btree v1.5.0 h1:iV0yVY/frd7r6qGBXfEYs7DH0gTDgrKTrDjS7xt/IyQ= -github.com/tidwall/btree v1.5.0/go.mod h1:LGm8L/DZjPLmeWGjv5kFrY8dL4uVhMmzmmLYmsObdKE= +github.com/tidwall/btree v1.6.0 h1:LDZfKfQIBHGHWSwckhXI0RPSXzlo+KYdjK7FWSqOzzg= +github.com/tidwall/btree v1.6.0/go.mod h1:twD9XRA5jj9VUQGELzDO4HPQTNJsoWWfYEL+EUQ2cKY= github.com/tidwall/gjson v1.12.1/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk= github.com/tidwall/gjson v1.14.0/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk= github.com/tidwall/match v1.1.1/go.mod h1:eRSPERbgtNPcGhD8UCthc6PmLEQXEWd3PRB5JTxsfmM= github.com/tidwall/pretty v1.2.0/go.mod h1:ITEVvHYasfjBbM0u2Pg8T2nJnzm8xPwvNhhsoaGGjNU= github.com/tidwall/sjson v1.2.4/go.mod h1:098SZ494YoMWPmMO6ct4dcFnqxwj9r/gF0Etp19pSNM= github.com/tinylib/msgp v1.0.2/go.mod h1:+d+yLhGm8mzTaHzB+wgMYrodPfmZrzkirds8fDWklFE= -github.com/tinylib/msgp v1.1.5/go.mod h1:eQsjooMTnV42mHu917E26IogZ2930nFyBQdofk10Udg= github.com/tklauser/go-sysconf v0.3.5/go.mod h1:MkWzOF4RMCshBAMXuhXJs64Rte09mITnppBXY/rYEFI= github.com/tklauser/numcpus v0.2.2/go.mod h1:x3qojaO3uyYt0i56EW/VUYs7uBvdl2fkfZFu0T9wgjM= github.com/tmc/grpc-websocket-proxy v0.0.0-20170815181823-89b8d40f7ca8/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= -github.com/ttacon/chalk v0.0.0-20160626202418-22c06c80ed31/go.mod h1:onvgF043R+lC5RZ8IT9rBXDaEDnpnw/Cl+HFiw+v/7Q= github.com/tv42/httpunix v0.0.0-20150427012821-b75d8614f926/go.mod h1:9ESjWnEqriFuLhtthL60Sar/7RFoluCcXsuvEwTV5KM= github.com/tyler-smith/go-bip39 v1.0.1-0.20181017060643-dbb3b84ba2ef/go.mod h1:sJ5fKU0s6JVwZjjcUEX2zFOnvq0ASQ2K9Zr6cf67kNs= github.com/tyler-smith/go-bip39 v1.0.2/go.mod h1:sJ5fKU0s6JVwZjjcUEX2zFOnvq0ASQ2K9Zr6cf67kNs= @@ -933,8 +1131,9 @@ github.com/ugorji/go v1.1.7/go.mod h1:kZn38zHttfInRq0xu/PH0az30d+z6vm202qpg1oXVM github.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8/go.mod h1:VFNgLljTbGfSG7qAOspJ7OScBnGdDN/yBr0sguwnwf0= github.com/ugorji/go/codec v1.1.7 h1:2SvQaVZ1ouYrrKKwoSk2pzd4A9evlKJb9oTL+OaLUSs= github.com/ugorji/go/codec v1.1.7/go.mod h1:Ax+UKWsSmolVDwsd+7N3ZtXu+yMGCf907BLYF3GoBXY= -github.com/ulikunitz/xz v0.5.8 h1:ERv8V6GKqVi23rgu5cj9pVfVzJbOqAY2Ntl88O6c2nQ= -github.com/ulikunitz/xz v0.5.8/go.mod h1:nbz6k7qbPmH4IRqmfOplQw/tblSgqTqBwxkY0oWt/14= +github.com/ulikunitz/xz v0.5.10/go.mod h1:nbz6k7qbPmH4IRqmfOplQw/tblSgqTqBwxkY0oWt/14= +github.com/ulikunitz/xz v0.5.11 h1:kpFauv27b6ynzBNT/Xy+1k+fK4WswhN/6PN5WhFAGw8= +github.com/ulikunitz/xz v0.5.11/go.mod h1:nbz6k7qbPmH4IRqmfOplQw/tblSgqTqBwxkY0oWt/14= github.com/urfave/cli v1.20.0/go.mod h1:70zkFmudgCuE/ngEzBv17Jvp/497gISqfk5gWijbERA= github.com/urfave/cli v1.22.1/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= github.com/urfave/cli/v2 v2.3.0/go.mod h1:LJmUH05zAU44vOAcrfzZQKsZbVcdbOG8rtL3/XcUArI= @@ -953,13 +1152,14 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= +github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= github.com/zondax/hid v0.9.1 h1:gQe66rtmyZ8VeGFcOpbuH3r7erYtNEAezCAYu8LdkJo= github.com/zondax/hid v0.9.1/go.mod h1:l5wttcP0jwtdLjqjMMWFVEE7d1zO0jvSPA9OPZxWpEM= github.com/zondax/ledger-go v0.14.1 h1:Pip65OOl4iJ84WTpA4BKChvOufMhhbxED3BaihoZN4c= github.com/zondax/ledger-go v0.14.1/go.mod h1:fZ3Dqg6qcdXWSOJFKMG8GCTnD7slO/RL2feOQv8K320= go.etcd.io/bbolt v1.3.3/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= -go.etcd.io/bbolt v1.3.6 h1:/ecaJf0sk1l4l6V4awd65v2C3ILy7MSj+s/x1ADCIMU= -go.etcd.io/bbolt v1.3.6/go.mod h1:qXsaaIqmgQH0T+OPdb99Bf+PKfBBQVAdyD6TY9G8XM4= +go.etcd.io/bbolt v1.3.7 h1:j+zJOnnEjF/kyHlDDgGnVL/AIqIJPq8UoB2GSNfkUfQ= +go.etcd.io/bbolt v1.3.7/go.mod h1:N9Mkw9X8x5fupy0IKsmuqVtoGDyxsaDlbk4Rd05IAQw= go.etcd.io/etcd v0.0.0-20191023171146-3cf2f69b5738/go.mod h1:dnLIgRNXwCJa5e+c6mIZCrds/GIG4ncV9HhK5PX7jPg= go.opencensus.io v0.20.1/go.mod h1:6WKK9ahsWS3RSO+PY9ZHZUfv2irvY6gN279GOPZjmmk= go.opencensus.io v0.20.2/go.mod h1:6WKK9ahsWS3RSO+PY9ZHZUfv2irvY6gN279GOPZjmmk= @@ -969,8 +1169,10 @@ go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk= +go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= +go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI= go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= go.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ= @@ -1001,9 +1203,11 @@ golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad/go.mod h1:jdWPYTVW3xRLrWP golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.4.0 h1:UVQgzMY87xqpKNgb+kDsll2Igd33HszWHFLmpaRMq/8= -golang.org/x/crypto v0.4.0/go.mod h1:3quD/ATkf6oY+rnes5c3ExXTbLc8mueNue5/DoinL80= +golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= +golang.org/x/crypto v0.0.0-20220314234659-1baeb1ce4c0b/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= +golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= +golang.org/x/crypto v0.9.0 h1:LF6fAI+IutBocDJ2OT0Q1g8plpYljMZ4+lty+dsqw3g= +golang.org/x/crypto v0.9.0/go.mod h1:yrmDGqONDYtNj3tH8X9dzUun2m2lzPa9ngI6/RUPGR0= golang.org/x/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20180807140117-3d87b88a115f/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= @@ -1018,8 +1222,8 @@ golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u0 golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= golang.org/x/exp v0.0.0-20200331195152-e8c3332aa8e5/go.mod h1:4M0jN8W1tt0AVLNr8HDosyJCDCDuyL9N9+3m7wDWgKw= -golang.org/x/exp v0.0.0-20221212164502-fae10dda9338 h1:OvjRkcNHnf6/W5FZXSxODbxwD+X7fspczG7Jn/xQVD4= -golang.org/x/exp v0.0.0-20221212164502-fae10dda9338/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc= +golang.org/x/exp v0.0.0-20230321023759-10a507213a29 h1:ooxPy7fPvB4kwsA2h+iBNHkAbp/4JxTSwCmvdjEYmug= +golang.org/x/exp v0.0.0-20230321023759-10a507213a29/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc= golang.org/x/image v0.0.0-20180708004352-c73c2afc3b81/go.mod h1:ux5Hcp/YLpHSI86hEcLt0YII63i6oz57MZXIpbrjZUs= golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= @@ -1034,6 +1238,7 @@ golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod h1:5qLYkcX4OjUUV8bRu golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= +golang.org/x/lint v0.0.0-20210508222113-6edffad5e616/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE= golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o= golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc= @@ -1045,7 +1250,8 @@ golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.7.0 h1:LapD9S96VoQRhi/GrNTqeBJFrUjs5UHCAtTlgwA5oZA= +golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= +golang.org/x/mod v0.8.0 h1:LUYupSeNrTNCGzR/hVBk2NHZO4hXcVaW1k4Qx7rjPx8= golang.org/x/net v0.0.0-20180719180050-a680a1efc54d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= @@ -1084,7 +1290,6 @@ golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod h1:/O7V0waA8r7cgGh81R golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20200813134508-3edf25e44fcc/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= -golang.org/x/net v0.0.0-20201006153459-a7d1128ccaa0/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201010224723-4f7140c49acb/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201031054903-ff519b6c9102/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= @@ -1094,16 +1299,27 @@ golang.org/x/net v0.0.0-20201224014010-6772e930b67b/go.mod h1:m0MpNAwzfU5UDzcl9v golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210220033124-5f55cee0dc0d/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= +golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4/go.mod h1:RBQZq4jEuRlivfhVLdyRGr576XBO4/greRjx4P4O3yc= golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= -golang.org/x/net v0.0.0-20210525063256-abc453219eb5/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20210610132358-84b48f89b13b/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20210614182718-04defd469f4e/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= golang.org/x/net v0.0.0-20220225172249-27dd8689420f/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.4.0 h1:Q5QPcMlvfxFTAPV0+07Xz/MpK9NTXu2VDUuy0FeMfaU= -golang.org/x/net v0.4.0/go.mod h1:MBQ8lrhLObU/6UmLb4fmbmk5OcyYmqtbGd/9yIeKjEE= +golang.org/x/net v0.0.0-20220325170049-de3da57026de/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= +golang.org/x/net v0.0.0-20220412020605-290c469a71a5/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= +golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= +golang.org/x/net v0.0.0-20220607020251-c690dde0001d/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/net v0.0.0-20220617184016-355a448f1bc9/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/net v0.0.0-20220624214902-1bab6f366d9e/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/net v0.0.0-20220909164309-bea034e7d591/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= +golang.org/x/net v0.0.0-20221014081412-f15817d10f9b/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= +golang.org/x/net v0.1.0/go.mod h1:Cx3nUiGt4eDBEyega/BKRp+/AlGL8hYe7U9odMt2Cco= +golang.org/x/net v0.10.0 h1:X2//UzNDwYmtCLn7To6G58Wr6f5ahEAQgKNzv9Y951M= +golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -1113,10 +1329,24 @@ golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43/go.mod h1:KelEdhl1UZF7XfJ golang.org/x/oauth2 v0.0.0-20201109201403-9fd604954f58/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20210218202405-ba52d332ba99/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210220000619-9bb904979d93/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210313182246-cd4f82c27b84/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210628180205-a41e5a781914/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210805134026-6f1e6394065a/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= -golang.org/x/oauth2 v0.3.0 h1:6l90koy8/LaBLmLu8jpHeHexzMwEita0zFfYlggy2F8= -golang.org/x/oauth2 v0.3.0/go.mod h1:rQrIauxkUhJ6CuwEXwymO2/eh4xz2ZWF1nBkcxS+tGk= +golang.org/x/oauth2 v0.0.0-20220309155454-6242fa91716a/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= +golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= +golang.org/x/oauth2 v0.0.0-20220608161450-d0670ef3b1eb/go.mod h1:jaDAt6Dkxork7LmZnYtzbRWj0W47D86a3TGe0YHBvmE= +golang.org/x/oauth2 v0.0.0-20220622183110-fd043fe589d2/go.mod h1:jaDAt6Dkxork7LmZnYtzbRWj0W47D86a3TGe0YHBvmE= +golang.org/x/oauth2 v0.0.0-20220822191816-0ebed06d0094/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= +golang.org/x/oauth2 v0.0.0-20220909003341-f21342109be1/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= +golang.org/x/oauth2 v0.0.0-20221014153046-6fdb5e3db783/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= +golang.org/x/oauth2 v0.1.0/go.mod h1:G9FE4dLTsbXUu90h/Pf85g4w1D+SSAgR+q46nJZ8M4A= +golang.org/x/oauth2 v0.7.0 h1:qe6s0zUXlPX80/dITx3440hWZ7GwMwgDDyrSGTPJG/g= +golang.org/x/oauth2 v0.7.0/go.mod h1:hPLQkd9LyjfXTiRohC/41GhcFqxisoUQ99sCUOHO9x4= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -1128,6 +1358,10 @@ golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20220929204114-8fcdb60fdcc0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.1.0 h1:wsuoTGHzEhffawBOhz5CYhcrV4IdKZbEyZjBMuTp12o= golang.org/x/sys v0.0.0-20180823144017-11551d06cbcc/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= @@ -1182,41 +1416,68 @@ golang.org/x/sys v0.0.0-20200803210538-64077c9b5642/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20200814200057-3d37ad5750ed/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200826173525-f9321e4c35a6/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200905004654-be1d3432aa8f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200923182605-d9f96fdee20d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210220050731-9a76102bfb43/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210225134936-a50acf3fe073/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210305230114-8fe3ee5dd75b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210315160823-c6e025ad8005/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210316164454-77fc1eacc6aa/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210324051608-47abb6519492/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210420205809-ac73e9fd8988/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210423185535-09eb48e85fd7/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210514084401-e8d321eab015/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210603125802-9665404d3644/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210616094352-59db8d763f22/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210809222454-d867a43fc93e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210816183151-1e6c022a8912/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210819135213-f52c844e1c1c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210908233432-aa78b53d3365/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20211019181941-9d821ace8654/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20211124211545-fe61309f8881/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20211210111614-af8b64212486/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220114195835-da31bd327af9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220517195934-5e4e11fc645e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220128215802-99c3d69c2c27/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220209214540-3681064d5158/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220227234510-4e6760a101f9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220310020820-b874c991c1a5/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220315194320-039c03cc5b86/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220328115105-d36c6a25d886/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220412211240-33da011f77ad/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220502124256-b6088ccd6cba/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220610221304-9f5ed59c137d/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220615213510-4f61da869c0c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220624220833-87e55d714810/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220908164124-27713097b956/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.3.0 h1:w8ZOecv6NaNa/zC8944JTU3vz4u6Lagfk4RPQxv92NQ= -golang.org/x/sys v0.3.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20221010170243-090e33056c14/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.8.0 h1:EBmGv8NaZBZTWvrbjNoL6HVt+IVy3QDQpJs7VRIw3tU= +golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= -golang.org/x/term v0.3.0 h1:qoo4akIqOcDME5bhc/NgxUdovd6BSS2uMsVjB56q1xI= -golang.org/x/term v0.3.0/go.mod h1:q750SLmJuPmVoN1blW3UFBPREJfb1KmY3vwxfr+nFDA= +golang.org/x/term v0.1.0/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= +golang.org/x/term v0.8.0 h1:n5xxQn2i3PC0yLAbjTpNT85q/Kgzcr2gIoX9OrJUols= +golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= @@ -1226,17 +1487,21 @@ golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= -golang.org/x/text v0.5.0 h1:OLmvp0KP+FVG99Ct/qFiL/Fhk4zp4QQnZ7b2U+5piUM= -golang.org/x/text v0.5.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= +golang.org/x/text v0.3.8/go.mod h1:E6s5w1FMmriuDzIBO73fBruAKo1PCIq6d2Q6DHfQ8WQ= +golang.org/x/text v0.4.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= +golang.org/x/text v0.9.0 h1:2sjJmO8cDvYveuX97RDLsxlyUxLl+GHoLxBiRdHllBE= +golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20201208040808-7e3f01d25324/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20180525024113-a5b4c53f6e8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20180828015842-6cd1fcedba52/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20181030221726-6c7e314b6563/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190206041539-40960b6deb8e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= @@ -1284,7 +1549,6 @@ golang.org/x/tools v0.0.0-20200729194436-6467de6f59a7/go.mod h1:njjCfa9FT2d7l9Bc golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200904185747-39188db58858/go.mod h1:Cj7w3i3Rnn0Xh82ur9kSqwfTHTeVxaDqrfMjpcNT6bE= -golang.org/x/tools v0.0.0-20201022035929-9cf592e881e9/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20201110124207-079ba7bd75cd/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20201201161351-ac6f37ff4c2a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20201208233053-a543418bbed2/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= @@ -1293,12 +1557,19 @@ golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4f golang.org/x/tools v0.0.0-20210108195828-e2f9c7f1fc8e/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0= golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.2/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.3/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.4/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.4.0 h1:7mTAgkunk3fr4GAloyyCasadO6h9zSsQZbwvcaIciV4= +golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= +golang.org/x/tools v0.6.0 h1:BOw41kyTf3PuCW1pVQf8+Cyg8pMlkYB1oo9iJ6D/lKM= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20220517211312-f3a8303e98df/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= +golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 h1:H2TDz8ibqkAF6YGhCdN3jS9O0/s90v0rJh3X/OLHEUk= golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= gonum.org/v1/gonum v0.0.0-20180816165407-929014505bf4/go.mod h1:Y+Yx5eoAFn32cQvJDxZx5Dpnq+c3wtXuadVZAcxbbBo= @@ -1327,8 +1598,37 @@ google.golang.org/api v0.30.0/go.mod h1:QGmEvQ87FHZNiUVJkT14jQNYJ4ZJjdRF23ZXz513 google.golang.org/api v0.35.0/go.mod h1:/XrVsuzM0rZmrsbjJutiuftIzeuTQcEeaYcSk/mQ1dg= google.golang.org/api v0.36.0/go.mod h1:+z5ficQTmoYpPn8LCUNVpK5I7hwkpjbcgqA7I34qYtE= google.golang.org/api v0.40.0/go.mod h1:fYKFpnQN0DsDSKRVRcQSDQNtqWPfM9i+zNPxepjRCQ8= -google.golang.org/api v0.103.0 h1:9yuVqlu2JCvcLg9p8S3fcFLZij8EPSyvODIY1rkMizQ= -google.golang.org/api v0.103.0/go.mod h1:hGtW6nK1AC+d9si/UBhw8Xli+QMOf6xyNAyJw4qU9w0= +google.golang.org/api v0.41.0/go.mod h1:RkxM5lITDfTzmyKFPt+wGrCJbVfniCr2ool8kTBzRTU= +google.golang.org/api v0.43.0/go.mod h1:nQsDGjRXMo4lvh5hP0TKqF244gqhGcr/YSIykhUk/94= +google.golang.org/api v0.47.0/go.mod h1:Wbvgpq1HddcWVtzsVLyfLp8lDg6AA241LmgIL59tHXo= +google.golang.org/api v0.48.0/go.mod h1:71Pr1vy+TAZRPkPs/xlCf5SsU8WjuAWv1Pfjbtukyy4= +google.golang.org/api v0.50.0/go.mod h1:4bNT5pAuq5ji4SRZm+5QIkjny9JAyVD/3gaSihNefaw= +google.golang.org/api v0.51.0/go.mod h1:t4HdrdoNgyN5cbEfm7Lum0lcLDLiise1F8qDKX00sOU= +google.golang.org/api v0.54.0/go.mod h1:7C4bFFOvVDGXjfDTAsgGwDgAxRDeQ4X8NvUedIt6z3k= +google.golang.org/api v0.55.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= +google.golang.org/api v0.56.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= +google.golang.org/api v0.57.0/go.mod h1:dVPlbZyBo2/OjBpmvNdpn2GRm6rPy75jyU7bmhdrMgI= +google.golang.org/api v0.61.0/go.mod h1:xQRti5UdCmoCEqFxcz93fTl338AVqDgyaDRuOZ3hg9I= +google.golang.org/api v0.63.0/go.mod h1:gs4ij2ffTRXwuzzgJl/56BdwJaA194ijkfn++9tDuPo= +google.golang.org/api v0.67.0/go.mod h1:ShHKP8E60yPsKNw/w8w+VYaj9H6buA5UqDp8dhbQZ6g= +google.golang.org/api v0.70.0/go.mod h1:Bs4ZM2HGifEvXwd50TtW70ovgJffJYw2oRCOFU/SkfA= +google.golang.org/api v0.71.0/go.mod h1:4PyU6e6JogV1f9eA4voyrTY2batOLdgZ5qZ5HOCc4j8= +google.golang.org/api v0.74.0/go.mod h1:ZpfMZOVRMywNyvJFeqL9HRWBgAuRfSjJFpe9QtRRyDs= +google.golang.org/api v0.75.0/go.mod h1:pU9QmyHLnzlpar1Mjt4IbapUCy8J+6HD6GeELN69ljA= +google.golang.org/api v0.77.0/go.mod h1:pU9QmyHLnzlpar1Mjt4IbapUCy8J+6HD6GeELN69ljA= +google.golang.org/api v0.78.0/go.mod h1:1Sg78yoMLOhlQTeF+ARBoytAcH1NNyyl390YMy6rKmw= +google.golang.org/api v0.80.0/go.mod h1:xY3nI94gbvBrE0J6NHXhxOmW97HG7Khjkku6AFB3Hyg= +google.golang.org/api v0.84.0/go.mod h1:NTsGnUFJMYROtiquksZHBWtHfeMC7iYthki7Eq3pa8o= +google.golang.org/api v0.85.0/go.mod h1:AqZf8Ep9uZ2pyTvgL+x0D3Zt0eoT9b5E8fmzfu6FO2g= +google.golang.org/api v0.90.0/go.mod h1:+Sem1dnrKlrXMR/X0bPnMWyluQe4RsNoYfmNLhOIkzw= +google.golang.org/api v0.93.0/go.mod h1:+Sem1dnrKlrXMR/X0bPnMWyluQe4RsNoYfmNLhOIkzw= +google.golang.org/api v0.95.0/go.mod h1:eADj+UBuxkh5zlrSntJghuNeg8HwQ1w5lTKkuqaETEI= +google.golang.org/api v0.96.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= +google.golang.org/api v0.97.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= +google.golang.org/api v0.98.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= +google.golang.org/api v0.100.0/go.mod h1:ZE3Z2+ZOr87Rx7dqFsdRQkRBk36kDtp/h+QpHbB7a70= +google.golang.org/api v0.122.0 h1:zDobeejm3E7pEG1mNHvdxvjs5XJoCMzyNH+CmwL94Es= +google.golang.org/api v0.122.0/go.mod h1:gcitW0lvnyWjSp9nKxAbdHKIZ6vF4aajGueeslZOyms= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.2.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= @@ -1362,7 +1662,6 @@ google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63/go.mod h1:55QSHmfG google.golang.org/genproto v0.0.0-20200228133532-8c2c7df3a383/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200305110556-506484158171/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200312145019-da6875a35672/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200324203455-a04cca1dde73/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200331122359-1ee6d9798940/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200423170343-7949de9c1215/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200430143042-b979b6f78d84/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= @@ -1381,12 +1680,78 @@ google.golang.org/genproto v0.0.0-20201210142538-e3217bee35cc/go.mod h1:FWY/as6D google.golang.org/genproto v0.0.0-20201214200347-8c77b98c765d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20210108203827-ffc7fda8c3d7/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20210126160654-44e461bb6506/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210222152913-aa3ee6e6a81c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20210226172003-ab064af71705/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20221207170731-23e4bf6bdc37 h1:jmIfw8+gSvXcZSgaFAGyInDXeWzUhvYH57G/5GKMn70= -google.golang.org/genproto v0.0.0-20221207170731-23e4bf6bdc37/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= +google.golang.org/genproto v0.0.0-20210303154014-9728d6b83eeb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210310155132-4ce2db91004e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210319143718-93e7006c17a6/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210329143202-679c6ae281ee/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A= +google.golang.org/genproto v0.0.0-20210402141018-6c239bbf2bb1/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A= +google.golang.org/genproto v0.0.0-20210513213006-bf773b8c8384/go.mod h1:P3QM42oQyzQSnHPnZ/vqoCdDmzH28fzWByN9asMeM8A= +google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= +google.golang.org/genproto v0.0.0-20210604141403-392c879c8b08/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= +google.golang.org/genproto v0.0.0-20210608205507-b6d2f5bf0d7d/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= +google.golang.org/genproto v0.0.0-20210624195500-8bfb893ecb84/go.mod h1:SzzZ/N+nwJDaO1kznhnlzqS8ocJICar6hYhVyhi++24= +google.golang.org/genproto v0.0.0-20210713002101-d411969a0d9a/go.mod h1:AxrInvYm1dci+enl5hChSFPOmmUF1+uAa/UsgNRWd7k= +google.golang.org/genproto v0.0.0-20210716133855-ce7ef5c701ea/go.mod h1:AxrInvYm1dci+enl5hChSFPOmmUF1+uAa/UsgNRWd7k= +google.golang.org/genproto v0.0.0-20210728212813-7823e685a01f/go.mod h1:ob2IJxKrgPT52GcgX759i1sleT07tiKowYBGbczaW48= +google.golang.org/genproto v0.0.0-20210805201207-89edb61ffb67/go.mod h1:ob2IJxKrgPT52GcgX759i1sleT07tiKowYBGbczaW48= +google.golang.org/genproto v0.0.0-20210813162853-db860fec028c/go.mod h1:cFeNkxwySK631ADgubI+/XFU/xp8FD5KIVV4rj8UC5w= +google.golang.org/genproto v0.0.0-20210821163610-241b8fcbd6c8/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= +google.golang.org/genproto v0.0.0-20210828152312-66f60bf46e71/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= +google.golang.org/genproto v0.0.0-20210831024726-fe130286e0e2/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= +google.golang.org/genproto v0.0.0-20210903162649-d08c68adba83/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= +google.golang.org/genproto v0.0.0-20210909211513-a8c4777a87af/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= +google.golang.org/genproto v0.0.0-20210924002016-3dee208752a0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20211118181313-81c1377c94b1/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20211206160659-862468c7d6e0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20211221195035-429b39de9b1c/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20220126215142-9970aeb2e350/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20220207164111-0872dc986b00/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20220218161850-94dd64e39d7c/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= +google.golang.org/genproto v0.0.0-20220222213610-43724f9ea8cf/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= +google.golang.org/genproto v0.0.0-20220304144024-325a89244dc8/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= +google.golang.org/genproto v0.0.0-20220310185008-1973136f34c6/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= +google.golang.org/genproto v0.0.0-20220314164441-57ef72a4c106/go.mod h1:hAL49I2IFola2sVEjAn7MEwsja0xp51I0tlGAf9hz4E= +google.golang.org/genproto v0.0.0-20220324131243-acbaeb5b85eb/go.mod h1:hAL49I2IFola2sVEjAn7MEwsja0xp51I0tlGAf9hz4E= +google.golang.org/genproto v0.0.0-20220407144326-9054f6ed7bac/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= +google.golang.org/genproto v0.0.0-20220413183235-5e96e2839df9/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= +google.golang.org/genproto v0.0.0-20220414192740-2d67ff6cf2b4/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= +google.golang.org/genproto v0.0.0-20220421151946-72621c1f0bd3/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= +google.golang.org/genproto v0.0.0-20220429170224-98d788798c3e/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= +google.golang.org/genproto v0.0.0-20220502173005-c8bf987b8c21/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= +google.golang.org/genproto v0.0.0-20220505152158-f39f71e6c8f3/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= +google.golang.org/genproto v0.0.0-20220518221133-4f43b3371335/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= +google.golang.org/genproto v0.0.0-20220523171625-347a074981d8/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= +google.golang.org/genproto v0.0.0-20220608133413-ed9918b62aac/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= +google.golang.org/genproto v0.0.0-20220616135557-88e70c0c3a90/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= +google.golang.org/genproto v0.0.0-20220617124728-180714bec0ad/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= +google.golang.org/genproto v0.0.0-20220624142145-8cd45d7dbd1f/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= +google.golang.org/genproto v0.0.0-20220628213854-d9e0b6570c03/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= +google.golang.org/genproto v0.0.0-20220722212130-b98a9ff5e252/go.mod h1:GkXuJDJ6aQ7lnJcRF+SJVgFdQhypqgl3LB1C9vabdRE= +google.golang.org/genproto v0.0.0-20220801145646-83ce21fca29f/go.mod h1:iHe1svFLAZg9VWz891+QbRMwUv9O/1Ww+/mngYeThbc= +google.golang.org/genproto v0.0.0-20220815135757-37a418bb8959/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= +google.golang.org/genproto v0.0.0-20220817144833-d7fd3f11b9b1/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= +google.golang.org/genproto v0.0.0-20220822174746-9e6da59bd2fc/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= +google.golang.org/genproto v0.0.0-20220829144015-23454907ede3/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= +google.golang.org/genproto v0.0.0-20220829175752-36a9c930ecbf/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= +google.golang.org/genproto v0.0.0-20220913154956-18f8339a66a5/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= +google.golang.org/genproto v0.0.0-20220914142337-ca0e39ece12f/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= +google.golang.org/genproto v0.0.0-20220915135415-7fd63a7952de/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= +google.golang.org/genproto v0.0.0-20220916172020-2692e8806bfa/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= +google.golang.org/genproto v0.0.0-20220919141832-68c03719ef51/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= +google.golang.org/genproto v0.0.0-20220920201722-2b89144ce006/go.mod h1:ht8XFiar2npT/g4vkk7O0WYS1sHOHbdujxbEp7CJWbw= +google.golang.org/genproto v0.0.0-20220926165614-551eb538f295/go.mod h1:woMGP53BroOrRY3xTxlbr8Y3eB/nzAvvFM83q7kG2OI= +google.golang.org/genproto v0.0.0-20220926220553-6981cbe3cfce/go.mod h1:woMGP53BroOrRY3xTxlbr8Y3eB/nzAvvFM83q7kG2OI= +google.golang.org/genproto v0.0.0-20221010155953-15ba04fc1c0e/go.mod h1:3526vdqwhZAwq4wsRUaVG555sVgsNmIjRtO7t/JH29U= +google.golang.org/genproto v0.0.0-20221014173430-6e2ab493f96b/go.mod h1:1vXfmgAz9N9Jx0QA82PqRVauvCz1SGSz739p0f183jM= +google.golang.org/genproto v0.0.0-20221014213838-99cd37c6964a/go.mod h1:1vXfmgAz9N9Jx0QA82PqRVauvCz1SGSz739p0f183jM= +google.golang.org/genproto v0.0.0-20221025140454-527a21cfbd71/go.mod h1:9qHF0xnpdSfF6knlcsnpzUu5y+rpwgbvsyGAZPBMg4s= +google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 h1:KpwkzHKEF7B9Zxg18WzOa7djJ+Ha5DzthMyZYQfEn2A= +google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1/go.mod h1:nKE/iIaLqn2bQwXBg8f1g2Ylh6r5MN5CmZvuzZCgsCU= google.golang.org/grpc v1.17.0/go.mod h1:6QZJwpn2B+Zp71q/5VxRsJ6NXXVCE5NRUHRo+f3cWCs= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= -google.golang.org/grpc v1.19.1/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.0/go.mod h1:chYK+tFQF0nDUGJgXMSgLCQk3phJEuONr2DCgLDdAQM= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= google.golang.org/grpc v1.21.0/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= @@ -1408,8 +1773,27 @@ google.golang.org/grpc v1.33.1/go.mod h1:fr5YgcSWrqhRRxogOsw7RzIpsmvOZ6IcH4kBYTp google.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv2fbc= google.golang.org/grpc v1.34.0/go.mod h1:WotjhfgOW/POjDeRt8vscBtXq+2VjORFy659qA51WJ8= google.golang.org/grpc v1.35.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= -google.golang.org/grpc v1.51.0 h1:E1eGv1FTqoLIdnBCZufiSHgKjlqG6fKFf6pPWtMTh8U= -google.golang.org/grpc v1.51.0/go.mod h1:wgNDFcnuBGmxLKI/qn4T+m5BtEBYXJPvibbUPsAIPww= +google.golang.org/grpc v1.36.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= +google.golang.org/grpc v1.36.1/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= +google.golang.org/grpc v1.37.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= +google.golang.org/grpc v1.37.1/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= +google.golang.org/grpc v1.38.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= +google.golang.org/grpc v1.39.0/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= +google.golang.org/grpc v1.39.1/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= +google.golang.org/grpc v1.40.0/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= +google.golang.org/grpc v1.40.1/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= +google.golang.org/grpc v1.44.0/go.mod h1:k+4IHHFw41K8+bbowsex27ge2rCb65oeWqe4jJ590SU= +google.golang.org/grpc v1.45.0/go.mod h1:lN7owxKUQEqMfSyQikvvk5tf/6zMPsrK+ONuO11+0rQ= +google.golang.org/grpc v1.46.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= +google.golang.org/grpc v1.46.2/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= +google.golang.org/grpc v1.47.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= +google.golang.org/grpc v1.48.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= +google.golang.org/grpc v1.49.0/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= +google.golang.org/grpc v1.50.0/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= +google.golang.org/grpc v1.50.1/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= +google.golang.org/grpc v1.55.0 h1:3Oj82/tFSCeUrRTg/5E/7d/W5A1tj6Ky1ABAuZuv5ag= +google.golang.org/grpc v1.55.0/go.mod h1:iYEXKGkEBhg1PjZQvoYEVPTDkHo1/bjTnfwTeGONTY8= +google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw= google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= @@ -1422,8 +1806,11 @@ google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGj google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= -google.golang.org/protobuf v1.28.2-0.20220831092852-f930b1dc76e8 h1:KR8+MyP7/qOlV+8Af01LtjL04bu7on42eVsxT4EyBQk= -google.golang.org/protobuf v1.28.2-0.20220831092852-f930b1dc76e8/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= +google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= +google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= +google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= +google.golang.org/protobuf v1.30.0 h1:kPPoIgf3TsEvrm0PFe15JQ+570QVxYzEvvHqChK+cng= +google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= @@ -1459,7 +1846,9 @@ gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gotest.tools v2.2.0+incompatible h1:VsBPFP1AI068pPrMxtb/S8Zkgf9xEmTLJjfM+P5UIEo= gotest.tools v2.2.0+incompatible/go.mod h1:DsYFclhRJ6vuDpmuTbkuFWG+y2sxOXAzmJt81HFBacw= +gotest.tools/v3 v3.4.0 h1:ZazjZUfuVeZGLAmlKKuyv3IKP5orXcwtOwDQH6YVr6o= honnef.co/go/tools v0.0.0-20180728063816-88497007e858/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= @@ -1471,7 +1860,8 @@ honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9 honnef.co/go/tools v0.1.3/go.mod h1:NgwopIslSNH47DimFoV78dnkksY2EFtX0ajyb3K/las= nhooyr.io/websocket v1.8.6 h1:s+C3xAMLwGmlI31Nyn/eAehUlZPwfYZu2JXM621Q5/k= nhooyr.io/websocket v1.8.6/go.mod h1:B70DZP8IakI65RVQ51MsWP/8jndNma26DVA/nFSCgW0= -pgregory.net/rapid v0.5.3 h1:163N50IHFqr1phZens4FQOdPgfJscR7a562mjQqeo4M= +pgregory.net/rapid v0.5.5 h1:jkgx1TjbQPD/feRoK+S/mXw9e1uj6WilpHrXJowi6oA= +pgregory.net/rapid v0.5.5/go.mod h1:PY5XlDGj0+V1FCq0o192FdRhpKHGTRIWBgqjDBTrq04= rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= rsc.io/pdf v0.1.1/go.mod h1:n8OzWcQ6Sp37PL01nO98y4iUCRdTGarVfzxY20ICaU4= rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= diff --git a/proto/alliance/alliance.proto b/proto/alliance/alliance.proto index da1b97cc..bbdfea07 100644 --- a/proto/alliance/alliance.proto +++ b/proto/alliance/alliance.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package alliance.alliance; +package alliance; import "gogoproto/gogo.proto"; import "cosmos_proto/cosmos.proto"; @@ -9,6 +9,19 @@ import "google/protobuf/timestamp.proto"; option go_package = "github.com/terra-money/alliance/x/alliance/types"; +message RewardWeightRange { + option (gogoproto.equal) = false; + option (gogoproto.goproto_getters) = false; + + string min = 1 [ + (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", + (gogoproto.nullable) = false + ]; + string max = 2 [ + (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", + (gogoproto.nullable) = false + ]; +} // key: denom value: AllianceAsset message AllianceAsset { option (gogoproto.equal) = false; @@ -54,6 +67,10 @@ message AllianceAsset { (gogoproto.stdtime) = true, (gogoproto.nullable) = false ]; + // set a bound of weight range to limit how much reward weights can scale. + RewardWeightRange reward_weight_range = 10 [(gogoproto.nullable) = false]; + // flag to check if an asset has completed the initialization process after the reward delay + bool is_initialized = 11; } message RewardWeightChangeSnapshot { diff --git a/proto/alliance/delegations.proto b/proto/alliance/delegations.proto index a79a7cf4..051bec24 100644 --- a/proto/alliance/delegations.proto +++ b/proto/alliance/delegations.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package alliance.alliance; +package alliance; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; diff --git a/proto/alliance/events.proto b/proto/alliance/events.proto new file mode 100644 index 00000000..5d52acae --- /dev/null +++ b/proto/alliance/events.proto @@ -0,0 +1,56 @@ +syntax = "proto3"; +package alliance; + +import "gogoproto/gogo.proto"; +import "cosmos/base/v1beta1/coin.proto"; +import "cosmos_proto/cosmos.proto"; +import "google/protobuf/timestamp.proto"; + +option go_package = "github.com/terra-money/alliance/x/alliance/types"; + +message DelegateAllianceEvent { + string allianceSender = 1 [ (cosmos_proto.scalar) = "cosmos.AddressString" ]; + string validator = 2 [ (cosmos_proto.scalar) = "cosmos.AddressString" ]; + cosmos.base.v1beta1.Coin coin = 3 [ + (gogoproto.nullable) = false, + (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Coin" + ]; + string newShares = 4 [ + (cosmos_proto.scalar) = "cosmos.Dec", + (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", + (gogoproto.nullable) = false + ]; +} + +message UndelegateAllianceEvent { + string allianceSender = 1 [ (cosmos_proto.scalar) = "cosmos.AddressString" ]; + string validator = 2 [ (cosmos_proto.scalar) = "cosmos.AddressString" ]; + cosmos.base.v1beta1.Coin coin = 3 [ + (gogoproto.nullable) = false, + (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Coin" + ]; + google.protobuf.Timestamp completionTime = 4 + [ (gogoproto.nullable) = false, (gogoproto.stdtime) = true ]; +} + +message RedelegateAllianceEvent { + string allianceSender = 1 [ (cosmos_proto.scalar) = "cosmos.AddressString" ]; + string sourceValidator = 2 [ (cosmos_proto.scalar) = "cosmos.AddressString" ]; + string destinationValidator = 3 + [ (cosmos_proto.scalar) = "cosmos.AddressString" ]; + cosmos.base.v1beta1.Coin coin = 4 [ + (gogoproto.nullable) = false, + (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Coin" + ]; + google.protobuf.Timestamp completionTime = 5 + [ (gogoproto.nullable) = false, (gogoproto.stdtime) = true ]; +} + +message ClaimAllianceRewardsEvent { + string allianceSender = 1 [ (cosmos_proto.scalar) = "cosmos.AddressString" ]; + string validator = 2 [ (cosmos_proto.scalar) = "cosmos.AddressString" ]; + repeated cosmos.base.v1beta1.Coin coins = 3 [ + (gogoproto.nullable) = false, + (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Coin" + ]; +} \ No newline at end of file diff --git a/proto/alliance/genesis.proto b/proto/alliance/genesis.proto index 71eeaebc..205dcea7 100644 --- a/proto/alliance/genesis.proto +++ b/proto/alliance/genesis.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package alliance.alliance; +package alliance; import "gogoproto/gogo.proto"; import "alliance/alliance.proto"; diff --git a/proto/alliance/gov.proto b/proto/alliance/gov.proto index 5f2b4c2d..3e756ebf 100644 --- a/proto/alliance/gov.proto +++ b/proto/alliance/gov.proto @@ -1,6 +1,7 @@ syntax = "proto3"; -package alliance.alliance; +package alliance; +import "alliance/alliance.proto"; import "gogoproto/gogo.proto"; import "google/protobuf/duration.proto"; @@ -19,7 +20,7 @@ message MsgCreateAllianceProposal { // The reward weight specifies the ratio of rewards that will be given to each alliance asset // It does not need to sum to 1. rate = weight / total_weight // Native asset is always assumed to have a weight of 1. - string reward_weight =4 [ + string reward_weight = 4 [ (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false ]; @@ -39,6 +40,11 @@ message MsgCreateAllianceProposal { (gogoproto.nullable) = false, (gogoproto.stdduration) = true ]; + + // set a bound of weight range to limit how much reward weights can scale. + RewardWeightRange reward_weight_range = 8 [ + (gogoproto.nullable) = false + ]; } message MsgUpdateAllianceProposal { diff --git a/proto/alliance/params.proto b/proto/alliance/params.proto index d3a1d145..aab1ab09 100644 --- a/proto/alliance/params.proto +++ b/proto/alliance/params.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package alliance.alliance; +package alliance; import "gogoproto/gogo.proto"; import "cosmos_proto/cosmos.proto"; diff --git a/proto/alliance/query.proto b/proto/alliance/query.proto index 82e6a885..8fe113e9 100644 --- a/proto/alliance/query.proto +++ b/proto/alliance/query.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package alliance.alliance; +package alliance; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; @@ -22,7 +22,12 @@ service Query { } // Query a specific alliance by ibc hash + // @deprecated: this endpoint will be replaced for by the encoded version + // of the denom e.g.: GET:/terra/alliances/ibc%2Falliance rpc IBCAlliance(QueryIBCAllianceRequest) returns (QueryAllianceResponse) { + // Deprecated. Please use the default endpoint + // with the encoded denom e.g from ibc/alliance to ibc%2Falliance + option deprecated = true; option (google.api.http).get = "/terra/alliances/ibc/{hash}"; } @@ -57,7 +62,12 @@ service Query { } // Query a delegation to an alliance by delegator addr, validator_addr and denom + // @deprecated: this endpoint will be replaced for by the encoded version + // of the denom e.g.: GET:/terra/alliances/terradr1231/terravaloper41234/ibc%2Falliance rpc IBCAllianceDelegation(QueryIBCAllianceDelegationRequest) returns (QueryAllianceDelegationResponse) { + // Deprecated. Please use the default endpoint + // with the encoded denom e.g from ibc/alliance to ibc%2Falliance + option deprecated = true; option (google.api.http).get = "/terra/alliances/delegations/{delegator_addr}/{validator_addr}/ibc/{hash}"; } @@ -66,7 +76,12 @@ service Query { option (google.api.http).get = "/terra/alliances/rewards/{delegator_addr}/{validator_addr}/{denom}"; } // Query for rewards by delegator addr, validator_addr and denom + // @deprecated: this endpoint will be replaced for by the encoded version + // of the denom e.g.: GET:/terra/alliances/terradr1231/terravaloper41234/ibc%2Falliance rpc IBCAllianceDelegationRewards(QueryIBCAllianceDelegationRewardsRequest) returns (QueryAllianceDelegationRewardsResponse) { + // Deprecated. Please use the default endpoint + // with the encoded denom e.g from ibc/alliance to ibc%2Falliance + option deprecated = true; option (google.api.http).get = "/terra/alliances/rewards/{delegator_addr}/{validator_addr}/ibc/{hash}"; } @@ -103,6 +118,9 @@ message QueryAllianceResponse { } message QueryIBCAllianceRequest { + // Deprecated. Please use the default endpoint + // with the encoded denom e.g from + option deprecated = true; string hash = 1; } @@ -173,6 +191,9 @@ message QueryAllianceDelegationRequest { } message QueryIBCAllianceDelegationRequest { + // Deprecated. Please use the default endpoint + // with the encoded denom e.g from + option deprecated = true; option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; @@ -198,6 +219,9 @@ message QueryAllianceDelegationRewardsRequest { } message QueryIBCAllianceDelegationRewardsRequest { + // Deprecated. Please use the default endpoint + // with the encoded denom e.g from + option deprecated = true; option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; diff --git a/proto/alliance/tx.proto b/proto/alliance/tx.proto index 1d520ddb..d72c7606 100644 --- a/proto/alliance/tx.proto +++ b/proto/alliance/tx.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package alliance.alliance; +package alliance; import "gogoproto/gogo.proto"; import "cosmos_proto/cosmos.proto"; diff --git a/proto/buf.yaml b/proto/buf.yaml index 26ef43cc..32422c82 100644 --- a/proto/buf.yaml +++ b/proto/buf.yaml @@ -1,4 +1,5 @@ version: v1 +name: buf.build/terra-money/alliance deps: - buf.build/cosmos/cosmos-sdk - buf.build/cosmos/cosmos-proto diff --git a/scripts/containers/Dockerfile b/scripts/containers/Dockerfile index 43bef3f8..c7d1d967 100644 --- a/scripts/containers/Dockerfile +++ b/scripts/containers/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.19-bullseye AS build +FROM golang:1.20-bullseye AS build RUN apt update && apt install jq build-essential -y diff --git a/scripts/local/README.md b/scripts/local/README.md index b6f647f9..04b35a83 100644 --- a/scripts/local/README.md +++ b/scripts/local/README.md @@ -1,13 +1,10 @@ -# Scripts +# Example Scripts -Folder containing some scripts to test or/and demo the functionality. Before executing any script you must have the `allianced` installed. +The following scripts are prepared to interact with the alliance localnet. To start the localnet run `make localnet-start` inside the alliance root folder. -1. **init.sh** create the chain with the initial values -2. **start.sh** start the chain -3. **gov.sh** submit the gov.json governance proposal, votes on favor and query the created alliance -4. **delegate.sh** delegate to the previously create alliance and query the modified alliance -5. **rewards.sh** claim rewards and query information about the evidences of the process -6. **undelegate.sh** undelegante the tokens from the alliance and query the evidences -7. **gov-del.sh** with the file gov-delete.json deletes the alliance created in third step. +> If you are using linux take in consideration to change the `.testnets` folder owner to your host machine user by using `sudo chown [HOST_USER_NAME]:[HOST_USER_NAME] -R .testnets/` because the folder may be owned by the root user. -> This scripts must be executed in the specified order since they have dependencies on each other. +1. Create Alliance: create an alliance with the default token `stake` and vote for the proposal to pass +2. Delegate: delegate to the first validator +3. Undelegate: undelegate from the first validator +4. Redelegate: redelegate from the first validator to the second validator \ No newline at end of file diff --git a/scripts/local/claim-rewards.sh b/scripts/local/claim-rewards.sh new file mode 100644 index 00000000..6facd1cb --- /dev/null +++ b/scripts/local/claim-rewards.sh @@ -0,0 +1,10 @@ +#!/bin/bash +COIN_DENOM=stake +VAL_WALLET_ADDRESS=$(allianced --home ../../.testnets/node0/allianced keys show node0 --keyring-backend test -a) +VAL_ADDR=$(allianced query staking validators --output json | jq .validators[0].operator_address --raw-output) + +printf "#1) ClaimRewards 10000000000$COIN_DENOM thru x/alliance $COIN_DENOM...\n\n" +allianced tx alliance claim-rewards $VAL_ADDR $COIN_DENOM --from=node0 --home ../../.testnets/node0/allianced --keyring-backend=test --broadcast-mode=block --gas 1000000 --chain-id=alliance-testnet-1 -y + +printf "\n#2) Query delegation on x/alliance by delegator, validator and $COIN_DENOM...\n\n" +allianced query alliance delegation $VAL_WALLET_ADDRESS $VAL_ADDR $COIN_DENOM diff --git a/scripts/local/create-alliance.sh b/scripts/local/create-alliance.sh new file mode 100644 index 00000000..caaf5ab7 --- /dev/null +++ b/scripts/local/create-alliance.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +printf "#1) Submit proposal to create stake Alliance...\n\n" +allianced tx gov submit-legacy-proposal create-alliance stake 0.5 0 1 0 0.1 1s --from=node0 --home ../../.testnets/node0/allianced --keyring-backend=test --broadcast-mode=block --gas 1000000 --deposit=1000000000stake --chain-id=alliance-testnet-1 -y + +PROPOSAL_ID=$(allianced query gov proposals --count-total --output json --home ../../.testnets/node0/allianced --chain-id=alliance-testnet-1 | jq .proposals[-1].id -r) + +printf "\n#2) Vote to pass the proposal...\n\n" +allianced tx gov vote $PROPOSAL_ID yes --from=node0 --home ../../.testnets/node0/allianced --keyring-backend=test --broadcast-mode=block --gas 1000000 --chain-id=alliance-testnet-1 -y +allianced tx gov vote $PROPOSAL_ID yes --from=node1 --home ../../.testnets/node1/allianced --keyring-backend=test --broadcast-mode=block --gas 1000000 --chain-id=alliance-testnet-1 -y +allianced tx gov vote $PROPOSAL_ID yes --from=node2 --home ../../.testnets/node2/allianced --keyring-backend=test --broadcast-mode=block --gas 1000000 --chain-id=alliance-testnet-1 -y diff --git a/scripts/local/delegate.sh b/scripts/local/delegate.sh index 1a2ca7e8..80077090 100644 --- a/scripts/local/delegate.sh +++ b/scripts/local/delegate.sh @@ -1,16 +1,11 @@ #!/bin/bash -CHAIN_DIR=./data -CHAINID=${CHAINID:-alliance} -COIN_DENOM=ulunax -VAL_WALLET_ADDRESS=$(allianced --home $CHAIN_DIR/$CHAINID keys show demowallet1 --keyring-backend test -a) +COIN_DENOM=stake +VAL_WALLET_ADDRESS=$(allianced --home ../../.testnets/node0/allianced keys show node0 --keyring-backend test -a) VAL_ADDR=$(allianced query staking validators --output json | jq .validators[0].operator_address --raw-output) printf "#1) Delegate 10000000000$COIN_DENOM thru x/alliance $COIN_DENOM...\n\n" -allianced tx alliance delegate $VAL_ADDR 10000000000$COIN_DENOM --from=demowallet1 --home $CHAIN_DIR/$CHAINID --keyring-backend=test --broadcast-mode=block --gas 1000000 -y > /dev/null 2>&1 +allianced tx alliance delegate $VAL_ADDR 10000000000$COIN_DENOM --from=node0 --home ../../.testnets/node0/allianced --keyring-backend=test --broadcast-mode=block --gas 1000000 --chain-id=alliance-testnet-1 -y -printf "\n#2) Query delegations from x/alliance $COIN_DENOM...\n\n" -allianced query alliance alliance $COIN_DENOM - -printf "\n#3) Query delegation on x/alliance by delegator, validator and $COIN_DENOM...\n\n" +printf "\n#2) Query delegation on x/alliance by delegator, validator and $COIN_DENOM...\n\n" allianced query alliance delegation $VAL_WALLET_ADDRESS $VAL_ADDR $COIN_DENOM diff --git a/scripts/local/genesis.json b/scripts/local/genesis.json deleted file mode 100644 index 06c9783f..00000000 --- a/scripts/local/genesis.json +++ /dev/null @@ -1,451 +0,0 @@ -{ - "genesis_time": "2022-11-10T08:35:38.23607Z", - "chain_id": "alliance", - "initial_height": "1", - "consensus_params": { - "block": { - "max_bytes": "22020096", - "max_gas": "-1", - "time_iota_ms": "1000" - }, - "evidence": { - "max_age_num_blocks": "100000", - "max_age_duration": "172800000000000", - "max_bytes": "1048576" - }, - "validator": { - "pub_key_types": [ - "ed25519" - ] - }, - "version": {} - }, - "app_hash": "", - "app_state": { - "alliance": { - "assets": [ - { - "denom": "ulunax", - "reward_decay_interval": "600s", - "reward_decay_rate": "0.010000000000000000", - "reward_start_time": "2022-11-10T08:15:48.760645Z", - "reward_weight": "0.500000000000000000", - "take_rate": "0.500000000000000000", - "total_tokens": "10000000000", - "total_validator_shares": "10000000000.000000000000000000" - } - ], - "delegations": [ - { - "delegator_address": "alliance1qwexv7c6sm95lwhzn9027vyu2ccneaqacm84wq", - "denom": "ulunax", - "last_reward_claim_height": "30", - "reward_history": [], - "shares": "10000000000.000000000000000000", - "validator_address": "alliancevaloper1phaxpevm5wecex2jyaqty2a4v02qj7qmut9cku" - } - ], - "params": { - "last_reward_claim_time": "2022-11-10T08:15:59.634192Z", - "reward_claim_interval": "5s", - "reward_delay_time": "5s" - }, - "redelegations": [], - "reward_decay_queue": [], - "reward_weight_change_snaphots": [], - "undelegations": [], - "validator_infos": [ - { - "validator": { - "global_reward_history": [], - "total_delegator_shares": [ - { - "amount": "10000000000.000000000000000000", - "denom": "ulunax" - } - ], - "validator_shares": [ - { - "amount": "10000000000.000000000000000000", - "denom": "ulunax" - } - ] - }, - "validator_address": "alliancevaloper1phaxpevm5wecex2jyaqty2a4v02qj7qmut9cku" - } - ] - }, - "auth": { - "params": { - "max_memo_characters": "256", - "tx_sig_limit": "7", - "tx_size_cost_per_byte": "10", - "sig_verify_cost_ed25519": "590", - "sig_verify_cost_secp256k1": "1000" - }, - "accounts": [ - { - "@type": "/cosmos.auth.v1beta1.BaseAccount", - "address": "alliance1phaxpevm5wecex2jyaqty2a4v02qj7qm24tyvq", - "pub_key": null, - "account_number": "0", - "sequence": "0" - }, - { - "@type": "/cosmos.auth.v1beta1.BaseAccount", - "address": "alliance1cyyzpxplxdzkeea7kwsydadg87357qnaznl0wd", - "pub_key": null, - "account_number": "0", - "sequence": "0" - }, - { - "@type": "/cosmos.auth.v1beta1.BaseAccount", - "address": "alliance18s5lynnmx37hq4wlrw9gdn68sg2uxp5racrg53", - "pub_key": null, - "account_number": "0", - "sequence": "0" - }, - { - "@type": "/cosmos.auth.v1beta1.BaseAccount", - "address": "alliance1qwexv7c6sm95lwhzn9027vyu2ccneaqacm84wq", - "pub_key": null, - "account_number": "0", - "sequence": "0" - }, - { - "@type": "/cosmos.auth.v1beta1.BaseAccount", - "address": "alliance14hcxlnwlqtq75ttaxf674vk6mafspg8xmx6pvv", - "pub_key": null, - "account_number": "0", - "sequence": "0" - } - ] - }, - "authz": { - "authorization": [] - }, - "bank": { - "params": { - "send_enabled": [], - "default_send_enabled": true - }, - "balances": [ - { - "address": "alliance1qwexv7c6sm95lwhzn9027vyu2ccneaqacm84wq", - "coins": [ - { - "denom": "stake", - "amount": "10000000000000" - }, - { - "denom": "ulunax", - "amount": "10000000000000" - } - ] - }, - { - "address": "alliance1phaxpevm5wecex2jyaqty2a4v02qj7qm24tyvq", - "coins": [ - { - "denom": "stake", - "amount": "10000000000000" - }, - { - "denom": "ulunax", - "amount": "10000000000000" - } - ] - }, - { - "address": "alliance18s5lynnmx37hq4wlrw9gdn68sg2uxp5racrg53", - "coins": [ - { - "denom": "stake", - "amount": "10000000000000" - }, - { - "denom": "ulunax", - "amount": "10000000000000" - } - ] - }, - { - "address": "alliance14hcxlnwlqtq75ttaxf674vk6mafspg8xmx6pvv", - "coins": [ - { - "denom": "stake", - "amount": "10000000000000" - }, - { - "denom": "ulunax", - "amount": "10000000000000" - } - ] - }, - { - "address": "alliance1cyyzpxplxdzkeea7kwsydadg87357qnaznl0wd", - "coins": [ - { - "denom": "stake", - "amount": "10000000000000" - }, - { - "denom": "ulunax", - "amount": "10000000000000" - } - ] - }, - { - "address": "alliance1srd5yxrg346qd7mne893gy3g43elh2swr2cd77", - "coins": [ - { - "amount": "10000000000", - "denom": "ulunax" - } - ] - } - ], - "supply": [], - "denom_metadata": [] - }, - "capability": { - "index": "1", - "owners": [] - }, - "crisis": { - "constant_fee": { - "denom": "stake", - "amount": "1000" - } - }, - "distribution": { - "params": { - "community_tax": "0.020000000000000000", - "base_proposer_reward": "0.010000000000000000", - "bonus_proposer_reward": "0.040000000000000000", - "withdraw_addr_enabled": true - }, - "fee_pool": { - "community_pool": [] - }, - "delegator_withdraw_infos": [], - "previous_proposer": "", - "outstanding_rewards": [], - "validator_accumulated_commissions": [], - "validator_historical_rewards": [], - "validator_current_rewards": [], - "delegator_starting_infos": [], - "validator_slash_events": [] - }, - "evidence": { - "evidence": [] - }, - "feegrant": { - "allowances": [] - }, - "genutil": { - "gen_txs": [ - { - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "test", - "identity": "", - "website": "", - "security_contact": "", - "details": "" - }, - "commission": { - "rate": "0.100000000000000000", - "max_rate": "0.200000000000000000", - "max_change_rate": "0.010000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "alliance1phaxpevm5wecex2jyaqty2a4v02qj7qm24tyvq", - "validator_address": "alliancevaloper1phaxpevm5wecex2jyaqty2a4v02qj7qmut9cku", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "bU470Ur2TwZar16/x552D8xASvuJaiO41yhRG47XAgs=" - }, - "value": { - "denom": "stake", - "amount": "7000000000" - } - } - ], - "memo": "5ca6367db8b096d0214eab63b9a4d29faa17bf9f@192.168.1.170:26656", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "AkNVLtIlk2c3zweQXS6jyVshzVhAy0M59crUeksc2pak" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "200000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "N5Xyc7dWM4WWOlRbboD3lMGE1tS66o37QYdnTKHs191A04cGjvy0tTL2ImSrCehUYy3Hl5U+bd3xmVNbD1e0fw==" - ] - } - ] - }, - "gov": { - "starting_proposal_id": "1", - "deposits": [], - "votes": [], - "proposals": [], - "deposit_params": { - "min_deposit": [ - { - "denom": "stake", - "amount": "10000000" - } - ], - "max_deposit_period": "8s" - }, - "voting_params": { - "voting_period": "8s" - }, - "tally_params": { - "quorum": "0.334000000000000000", - "threshold": "0.500000000000000000", - "veto_threshold": "0.334000000000000000" - } - }, - "group": { - "group_seq": "0", - "groups": [], - "group_members": [], - "group_policy_seq": "0", - "group_policies": [], - "proposal_seq": "0", - "proposals": [], - "votes": [] - }, - "ibc": { - "client_genesis": { - "clients": [], - "clients_consensus": [], - "clients_metadata": [], - "params": { - "allowed_clients": [ - "06-solomachine", - "07-tendermint" - ] - }, - "create_localhost": false, - "next_client_sequence": "0" - }, - "connection_genesis": { - "connections": [], - "client_connection_paths": [], - "next_connection_sequence": "0", - "params": { - "max_expected_time_per_block": "30000000000" - } - }, - "channel_genesis": { - "channels": [], - "acknowledgements": [], - "commitments": [], - "receipts": [], - "send_sequences": [], - "recv_sequences": [], - "ack_sequences": [], - "next_channel_sequence": "0" - } - }, - "interchainaccounts": { - "controller_genesis_state": { - "active_channels": [], - "interchain_accounts": [], - "ports": [], - "params": { - "controller_enabled": true - } - }, - "host_genesis_state": { - "active_channels": [], - "interchain_accounts": [], - "port": "icahost", - "params": { - "host_enabled": true, - "allow_messages": [] - } - } - }, - "mint": { - "minter": { - "inflation": "0.999999999999999999", - "annual_provisions": "0.000000000000000000" - }, - "params": { - "mint_denom": "stake", - "inflation_rate_change": "0.999999999999999999", - "inflation_max": "0.999999999999999999", - "inflation_min": "0.070000000000000000", - "goal_bonded": "0.670000000000000000", - "blocks_per_year": "6311520" - } - }, - "params": null, - "slashing": { - "params": { - "signed_blocks_window": "100", - "min_signed_per_window": "0.500000000000000000", - "downtime_jail_duration": "600s", - "slash_fraction_double_sign": "0.050000000000000000", - "slash_fraction_downtime": "0.010000000000000000" - }, - "signing_infos": [], - "missed_blocks": [] - }, - "staking": { - "params": { - "unbonding_time": "5s", - "max_validators": 100, - "max_entries": 7, - "historical_entries": 10000, - "bond_denom": "stake", - "min_commission_rate": "0.000000000000000000" - }, - "last_total_power": "0", - "last_validator_powers": [], - "validators": [], - "delegations": [], - "unbonding_delegations": [], - "redelegations": [], - "exported": false - }, - "transfer": { - "port_id": "transfer", - "denom_traces": [], - "params": { - "send_enabled": true, - "receive_enabled": true - } - }, - "upgrade": {}, - "vesting": {} - } -} \ No newline at end of file diff --git a/scripts/local/gov-del.sh b/scripts/local/gov-del.sh deleted file mode 100644 index b61cad08..00000000 --- a/scripts/local/gov-del.sh +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/bash - -printf "#1) Submit proposal to delete the ulunax Alliance...\n\n" -allianced tx gov submit-legacy-proposal delete-alliance ulunax --from=demowallet1 --home ./data/alliance --keyring-backend=test --broadcast-mode=block --gas 1000000 -y > /dev/null 2>&1 - -PROPOSAL_ID=$(allianced query gov proposals --count-total --output json --home ./data/alliance | jq .pagination.total -r) - -printf "\n#2) Deposit funds to proposal $PROPOSAL_ID...\n\n" -allianced tx gov deposit $PROPOSAL_ID 10000000stake --from=demowallet1 --home ./data/alliance --keyring-backend=test --broadcast-mode=block --gas 1000000 -y > /dev/null 2>&1 - -printf "\n#3) Vote to pass the proposal...\n\n" -allianced tx gov vote $PROPOSAL_ID yes --from=val1 --home ./data/alliance --keyring-backend=test --broadcast-mode=block --gas 1000000 -y > /dev/null 2>&1 - -printf "\n#4) Query proposals...\n\n" -allianced query gov proposal $PROPOSAL_ID --home ./data/alliance - -printf "\n#5) Query alliances...\n\n" -allianced query alliance alliances --home ./data/alliance - -printf "\n#6) Waiting for gov proposal to pass...\n\n" -sleep 8 - -printf "\n#7) Query alliances after proposal passed...\n\n" -allianced query alliance alliances --home ./data/alliance \ No newline at end of file diff --git a/scripts/local/gov.sh b/scripts/local/gov.sh deleted file mode 100644 index 7c374a4a..00000000 --- a/scripts/local/gov.sh +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/bash - -printf "#1) Submit proposal to create ulunax Alliance...\n\n" -allianced tx gov submit-legacy-proposal create-alliance ulunax 0.5 0.00005 1 0 --from=demowallet1 --home ./data/alliance --keyring-backend=test --broadcast-mode=block --gas 1000000 -y > /dev/null 2>&1 - -PROPOSAL_ID=$(allianced query gov proposals --count-total --output json --home ./data/alliance | jq .pagination.total -r) - -printf "\n#2) Deposit funds to proposal $PROPOSAL_ID...\n\n" -allianced tx gov deposit $PROPOSAL_ID 10000000stake --from=demowallet1 --home ./data/alliance --keyring-backend=test --broadcast-mode=block --gas 1000000 -y > /dev/null 2>&1 - -printf "\n#3) Vote to pass the proposal...\n\n" -allianced tx gov vote $PROPOSAL_ID yes --from=val1 --home ./data/alliance --keyring-backend=test --broadcast-mode=block --gas 1000000 -y > /dev/null 2>&1 - -printf "\n#4) Query proposals...\n\n" -allianced query gov proposal $PROPOSAL_ID --home ./data/alliance - -printf "\n#5) Query alliances...\n\n" -allianced query alliance alliances --home ./data/alliance - -printf "\n#6) Waiting for gov proposal to pass...\n\n" -sleep 8 - -printf "\n#7) Query alliances after proposal passed...\n\n" -allianced query alliance alliances --home ./data/alliance \ No newline at end of file diff --git a/scripts/local/init.sh b/scripts/local/init.sh deleted file mode 100644 index 2ca17488..00000000 --- a/scripts/local/init.sh +++ /dev/null @@ -1,88 +0,0 @@ -#!/bin/bash -CHAIN_DIR=./data -CHAINID=${CHAINID:-alliance} - -# alliance1phaxpevm5wecex2jyaqty2a4v02qj7qm24tyvq / alliancevaloper1phaxpevm5wecex2jyaqty2a4v02qj7qmut9cku -VAL_MNEMONIC_1="satisfy adjust timber high purchase tuition stool faith fine install that you unaware feed domain license impose boss human eager hat rent enjoy dawn" - -# alliance1cyyzpxplxdzkeea7kwsydadg87357qnaznl0wd -DEMO_MNEMONIC_1="notice oak worry limit wrap speak medal online prefer cluster roof addict wrist behave treat actual wasp year salad speed social layer crew genius" -DEMO_MNEMONIC_2="quality vacuum heart guard buzz spike sight swarm shove special gym robust assume sudden deposit grid alcohol choice devote leader tilt noodle tide penalty" -DEMO_MNEMONIC_3="symbol force gallery make bulk round subway violin worry mixture penalty kingdom boring survey tool fringe patrol sausage hard admit remember broken alien absorb" -DEMO_MNEMONIC_4="bounce success option birth apple portion aunt rural episode solution hockey pencil lend session cause hedgehog slender journey system canvas decorate razor catch empty" - -STAKEDENOM=${STAKEDENOM:-stake} -UNBONDING_TIME="5s" -GOV_PERIOD="8s" -INFLATION="0.999999999999999999" -ALLIANCE_CLAIM_REWARDS="5s" - - -# Stop if it is already running -if pgrep -x "allianced" >/dev/null; then - echo "Terminating allianced..." - killall allianced -fi - -echo "Removing previous data..." -rm -rf $CHAIN_DIR/$CHAINID &> /dev/null - -# Add directories for both chains, exit if an error occurs -if ! mkdir -p $CHAIN_DIR/$CHAINID 2>/dev/null; then - echo "Failed to create chain folder. Aborting..." - exit 1 -fi - -echo "Initializing $CHAINID..." -allianced init test --home $CHAIN_DIR/$CHAINID --chain-id=$CHAINID - -echo "Adding genesis accounts..." -echo $VAL_MNEMONIC_1 | allianced keys add val1 --home $CHAIN_DIR/$CHAINID --recover --keyring-backend=test -echo $DEMO_MNEMONIC_1 | allianced keys add demowallet1 --home $CHAIN_DIR/$CHAINID --recover --keyring-backend=test -echo $DEMO_MNEMONIC_2 | allianced keys add demowallet2 --home $CHAIN_DIR/$CHAINID --recover --keyring-backend=test -echo $DEMO_MNEMONIC_3 | allianced keys add demowallet3 --home $CHAIN_DIR/$CHAINID --recover --keyring-backend=test -echo $DEMO_MNEMONIC_4 | allianced keys add demowallet4 --home $CHAIN_DIR/$CHAINID --recover --keyring-backend=test - -allianced add-genesis-account $(allianced --home $CHAIN_DIR/$CHAINID keys show val1 --keyring-backend test -a) 10000000000000${STAKEDENOM},10000000000000ulunax --home $CHAIN_DIR/$CHAINID -allianced add-genesis-account $(allianced --home $CHAIN_DIR/$CHAINID keys show demowallet1 --keyring-backend test -a) 10000000000000${STAKEDENOM},10000000000000ulunax --home $CHAIN_DIR/$CHAINID -allianced add-genesis-account $(allianced --home $CHAIN_DIR/$CHAINID keys show demowallet2 --keyring-backend test -a) 10000000000000${STAKEDENOM},10000000000000ulunax --home $CHAIN_DIR/$CHAINID -allianced add-genesis-account $(allianced --home $CHAIN_DIR/$CHAINID keys show demowallet3 --keyring-backend test -a) 10000000000000${STAKEDENOM},10000000000000ulunax --home $CHAIN_DIR/$CHAINID -allianced add-genesis-account $(allianced --home $CHAIN_DIR/$CHAINID keys show demowallet4 --keyring-backend test -a) 10000000000000${STAKEDENOM},10000000000000ulunax --home $CHAIN_DIR/$CHAINID - -echo "Creating and collecting gentx..." -allianced gentx val1 7000000000${STAKEDENOM} --home $CHAIN_DIR/$CHAINID --chain-id $CHAINID --keyring-backend test -allianced collect-gentxs --home $CHAIN_DIR/$CHAINID - -sed -i -e 's#"tcp://127.0.0.1:26657"#"tcp://0.0.0.0:26657"#g' $CHAIN_DIR/$CHAINID/config/config.toml -sed -i -e 's/timeout_commit = "5s"/timeout_commit = "1s"/g' $CHAIN_DIR/$CHAINID/config/config.toml -sed -i -e 's/timeout_propose = "3s"/timeout_propose = "1s"/g' $CHAIN_DIR/$CHAINID/config/config.toml -sed -i -e 's/index_all_keys = false/index_all_keys = true/g' $CHAIN_DIR/$CHAINID/config/config.toml -sed -i -e 's/enable = false/enable = true/g' $CHAIN_DIR/$CHAINID/config/app.toml -sed -i -e 's/swagger = false/swagger = true/g' $CHAIN_DIR/$CHAINID/config/app.toml -sed -i -e "s/minimum-gas-prices = \"\"/minimum-gas-prices = \"0.25$STAKEDENOM\"/g" $CHAIN_DIR/$CHAINID/config/app.toml -sed -i -e 's/enabled = false/enabled = true/g' $CHAIN_DIR/$CHAINID/config/app.toml -sed -i -e 's/prometheus-retention-time = 0/prometheus-retention-time = 1000/g' $CHAIN_DIR/$CHAINID/config/app.toml - -## DENOMS -sed -i -e "s/\"denom\": \"stake\",/\"denom\": \"$STAKEDENOM\",/g" $CHAIN_DIR/$CHAINID/config/genesis.json -sed -i -e "s/\"mint_denom\": \"stake\",/\"mint_denom\": \"$STAKEDENOM\",/g" $CHAIN_DIR/$CHAINID/config/genesis.json -sed -i -e "s/\"bond_denom\": \"stake\"/\"bond_denom\": \"$STAKEDENOM\"/g" $CHAIN_DIR/$CHAINID/config/genesis.json - -## MINT -sed -i -e "s/\"inflation\": \"0.130000000000000000\"/\"inflation\": \"$INFLATION\"/g" $CHAIN_DIR/$CHAINID/config/genesis.json -sed -i -e "s/\"inflation_rate_change\": \"0.130000000000000000\"/\"inflation_rate_change\": \"$INFLATION\"/g" $CHAIN_DIR/$CHAINID/config/genesis.json -sed -i -e "s/\"inflation_max\": \"0.200000000000000000\"/\"inflation_max\": \"$INFLATION\"/g" $CHAIN_DIR/$CHAINID/config/genesis.json - -## STAKING -sed -i -e "s/\"unbonding_time\": \"1814400s\"/\"unbonding_time\": \"$UNBONDING_TIME\"/g" $CHAIN_DIR/$CHAINID/config/genesis.json - -## GOV -sed -i -e "s/\"max_deposit_period\": \"172800s\"/\"max_deposit_period\": \"$GOV_PERIOD\"/g" $CHAIN_DIR/$CHAINID/config/genesis.json -sed -i -e "s/\"voting_period\": \"172800s\"/\"voting_period\": \"$GOV_PERIOD\"/g" $CHAIN_DIR/$CHAINID/config/genesis.json - -## ALLIANCE -sed -i -e "s/\"reward_claim_interval\": \"300s\"/\"reward_claim_interval\": \"$ALLIANCE_CLAIM_REWARDS\"/g" $CHAIN_DIR/$CHAINID/config/genesis.json -sed -i -e "s/\"reward_delay_time\": \"86400s\"/\"reward_delay_time\": \"$ALLIANCE_CLAIM_REWARDS\"/g" $CHAIN_DIR/$CHAINID/config/genesis.json - - -echo "Genesis event created with $STAKEDENOM and ulunax" \ No newline at end of file diff --git a/scripts/local/redelegate.sh b/scripts/local/redelegate.sh new file mode 100644 index 00000000..9ed574f2 --- /dev/null +++ b/scripts/local/redelegate.sh @@ -0,0 +1,11 @@ +#!/bin/bash +COIN_DENOM=stake +VAL_WALLET_ADDRESS=$(allianced --home ../../.testnets/node0/allianced keys show node0 --keyring-backend test -a) +ORIGIN_VAL=$(allianced query staking validators --output json | jq .validators[0].operator_address --raw-output) +DEST_VAL=$(allianced query staking validators --output json | jq .validators[1].operator_address --raw-output) + +printf "#1) ClaimRewards 10000000000$COIN_DENOM thru x/alliance $COIN_DENOM...\n\n" +allianced tx alliance redelegate $ORIGIN_VAL $DEST_VAL 1000000$COIN_DENOM --from=node0 --home ../../.testnets/node0/allianced --keyring-backend=test --broadcast-mode=block --gas 1000000 --chain-id=alliance-testnet-1 -y + +printf "\n#2) Query delegation on x/alliance by delegator, validator and $COIN_DENOM...\n\n" +allianced query alliance delegation $VAL_WALLET_ADDRESS $DEST_VAL $COIN_DENOM diff --git a/scripts/local/rewards.sh b/scripts/local/rewards.sh deleted file mode 100644 index 899aa244..00000000 --- a/scripts/local/rewards.sh +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/bash - -VAL_WALLET_ADDRESS=$(allianced --home ./data/alliance keys show val1 --keyring-backend test -a) -DEMO_WALLET_ADDRESS=$(allianced --home ./data/alliance keys show demowallet1 --keyring-backend test -a) - -VAL_ADDR=$(allianced query staking validators --output json | jq .validators[0].operator_address --raw-output) -TOKEN_DENOM=ulunax - -printf "\n\n#1) Query wallet balances...\n\n" -allianced query bank balances $DEMO_WALLET_ADDRESS --home ./data/alliance - -#printf "\n\n#2) Query rewards x/alliance...\n\n" -#allianced query alliance rewards $DEMO_WALLET_ADDRESS $VAL_ADDR $TOKEN_DENOM --home ./data/alliance - -#printf "\n\n#3) Query native staked rewards...\n\n" -#allianced query distribution rewards $DEMO_WALLET_ADDRESS $VAL_ADDR --home ./data/alliance - -#printf "\n\n#4) Claim rewards from validator...\n\n" -#allianced tx distribution withdraw-rewards $VAL_ADDR --from=demowallet1 --home ./data/alliance --keyring-backend=test --broadcast-mode=block --gas 1000000 -y #> /dev/null 2>&1 - -printf "\n\n#2) Claim rewards from x/alliance $TOKEN_DENOM...\n\n" -allianced tx alliance claim-rewards $VAL_ADDR $TOKEN_DENOM --from=demowallet1 --home ./data/alliance --keyring-backend=test --broadcast-mode=block --gas 1000000 -y > /dev/null 2>&1 - -#printf "\n\n#6) Query rewards x/alliance...\n\n" -#allianced query alliance rewards $DEMO_WALLET_ADDRESS $VAL_ADDR $TOKEN_DENOM --home ./data/alliance - -#printf "\n\n#7) Query native staked rewards...\n\n" -#allianced query distribution rewards $DEMO_WALLET_ADDRESS $VAL_ADDR --home ./data/alliance - -printf "\n\n#3) Query wallet balances after claim...\n\n" -allianced query bank balances $DEMO_WALLET_ADDRESS --home ./data/alliance diff --git a/scripts/local/start.sh b/scripts/local/start.sh deleted file mode 100644 index baf236db..00000000 --- a/scripts/local/start.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash - -BINARY=${BINARY:-allianced} -CHAIN_DIR=./data -CHAINID=${CHAINID:-alliance} -GRPCPORT=9090 -GRPCWEB=9091 - -echo "Starting $CHAINID in $CHAIN_DIR..." -echo "Creating log file at $CHAIN_DIR/$CHAINID.log" -$BINARY start --log_level debug --home $CHAIN_DIR/$CHAINID --pruning=nothing --grpc.address="0.0.0.0:$GRPCPORT" --grpc-web.address="0.0.0.0:$GRPCWEB" \ No newline at end of file diff --git a/scripts/local/undelegate.sh b/scripts/local/undelegate.sh index b526bc46..cd9d21e5 100644 --- a/scripts/local/undelegate.sh +++ b/scripts/local/undelegate.sh @@ -1,17 +1,11 @@ #!/bin/bash -DEMO_WALLET_ADDRESS=$(allianced --home ./data/alliance keys show demowallet1 --keyring-backend test -a) +COIN_DENOM=stake +VAL_WALLET_ADDRESS=$(allianced --home ../../.testnets/node0/allianced keys show node0 --keyring-backend test -a) VAL_ADDR=$(allianced query staking validators --output json | jq .validators[0].operator_address --raw-output) -COIN_DENOM=ulunax -COIN_AMOUNT=$(allianced query alliance delegation $DEMO_WALLET_ADDRESS $VAL_ADDR $COIN_DENOM --home ./data/alliance --output json | jq .delegation.balance.amount --raw-output | sed 's/\.[0-9]*//') -COINS=$COIN_AMOUNT$COIN_DENOM -# FIX: failed to execute message; message index: 0: invalid shares amount: invalid -printf "#1) Undelegate 5000000000$COIN_DENOM from x/alliance $COIN_DENOM...\n\n" -allianced tx alliance undelegate $VAL_ADDR $COINS --from=demowallet1 --home ./data/alliance --keyring-backend=test --broadcast-mode=block --gas 1000000 -y > /dev/null 2>&1 +printf "#1) Undelegate 10000000000$COIN_DENOM thru x/alliance $COIN_DENOM...\n\n" +allianced tx alliance undelegate $VAL_ADDR 10000000000$COIN_DENOM --from=node0 --home ../../.testnets/node0/allianced --keyring-backend=test --broadcast-mode=block --gas 1000000 --chain-id=alliance-testnet-1 -y -printf "\n#2) Query delegations from x/alliance $COIN_DENOM...\n\n" -allianced query alliance alliance $COIN_DENOM - -printf "\n#3) Query delegation on x/alliance by delegator, validator and $COIN_DENOM...\n\n" -allianced query alliance delegation $DEMO_WALLET_ADDRESS $VAL_ADDR $COIN_DENOM --home ./data/alliance +printf "\n#2) Query delegation on x/alliance by delegator, validator and $COIN_DENOM...\n\n" +allianced query alliance delegation $VAL_WALLET_ADDRESS $VAL_ADDR $COIN_DENOM diff --git a/scripts/protocgen.sh b/scripts/protocgen.sh index 05411adf..b87689f2 100644 --- a/scripts/protocgen.sh +++ b/scripts/protocgen.sh @@ -30,5 +30,3 @@ cd .. # move proto files to the right places cp -r github.com/terra-money/alliance/* ./ rm -rf github.com - -go mod tidy \ No newline at end of file diff --git a/scripts/testnet/README.md b/scripts/testnet/README.md deleted file mode 100644 index edb0cd3e..00000000 --- a/scripts/testnet/README.md +++ /dev/null @@ -1,9 +0,0 @@ -# Scripts - -This folder contains a sequence of helper scripts for creating an alliance on testnet and automatic delegation. - -1. **gov.sh** submits a gov.json governance proposal, votes in favor of it and then queries the created alliance. -2. **delegate.sh** delegates to the previously create alliance and queries the modified alliance. -3. **rewards.sh** claims available rewards and retrieves information about the process - -> Note that these scripts must be executed in the specified order since they have dependencies on each other. diff --git a/scripts/testnet/delegate.sh b/scripts/testnet/delegate.sh deleted file mode 100644 index c2217a35..00000000 --- a/scripts/testnet/delegate.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/bash - -COIN_DENOM=ibc/4627AD2524E3E0523047E35BB76CC90E37D9D57ACF14F0FCBCEB2480705F3CB8 -WALLET_ADDRESS=$(allianced keys show aztestval -a) -VAL_ADDR=$(allianced query staking validators --output json --node=tcp://3.75.187.158:26657 --chain-id=alliance-testnet-1 | jq .validators[0].operator_address --raw-output) - -printf "#1) Delegating 100000000000$COIN_DENOM thru x/alliance...\n\n" -allianced tx alliance delegate $VAL_ADDR 100000000000$COIN_DENOM --from=aztestval --node=tcp://3.75.187.158:26657 --chain-id=alliance-testnet-1 --broadcast-mode=block -y - -printf "\n#2) Delegations groupped by alliance $COIN_DENOM...\n\n" -allianced query alliance alliance $COIN_DENOM --node=tcp://3.75.187.158:26657 --chain-id=alliance-testnet-1 - -printf "\n#3) Delegation by wallet: $WALLET_ADDRESS...\n\n" -allianced query alliance delegations-by-delegator $WALLET_ADDRESS --node=tcp://3.75.187.158:26657 --chain-id=alliance-testnet-1 - -printf "\n#4) Delegations by wallet: $WALLET_ADDRESS and validator: $VAL_ADDR...\n\n" -allianced query alliance delegations-by-delegator-and-validator $WALLET_ADDRESS $VAL_ADDR --node=tcp://3.75.187.158:26657 --chain-id=alliance-testnet-1 - -printf "\n#5) Delegation by wallet: $WALLET_ADDRESS, validator: $VAL_ADDR and denom: $COIN_DENOM...\n\n" -allianced query alliance delegation $WALLET_ADDRESS $VAL_ADDR $COIN_DENOM --node=tcp://3.75.187.158:26657 --chain-id=alliance-testnet-1 diff --git a/scripts/testnet/gov.sh b/scripts/testnet/gov.sh deleted file mode 100644 index 3868506a..00000000 --- a/scripts/testnet/gov.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/bash - -COIN_DENOM=ibc/4627AD2524E3E0523047E35BB76CC90E37D9D57ACF14F0FCBCEB2480705F3CB8 - -printf "#1) Submit proposal to create $COIN_DENOM Alliance...\n\n" -allianced tx gov submit-legacy-proposal create-alliance $COIN_DENOM 0.5 0.5 --from=aztestval --node=tcp://3.75.187.158:26657 --chain-id=alliance-testnet-1 --broadcast-mode=block -y -PROPOSAL_ID=$(allianced query gov proposals --count-total --output json --node=tcp://3.75.187.158:26657 --chain-id=alliance-testnet-1 | jq .proposals[0].id -r) - -printf "\n#2) Deposit funds to proposal $PROPOSAL_ID...\n\n" -allianced tx gov deposit $PROPOSAL_ID 10000000stake --from=aztestval --node=tcp://3.75.187.158:26657 --chain-id=alliance-testnet-1 --broadcast-mode=block -y - -printf "\n#3) Vote to pass the proposal...\n\n" -allianced tx gov vote $PROPOSAL_ID yes --from=aztestval --node=tcp://3.75.187.158:26657 --chain-id=alliance-testnet-1 --broadcast-mode=block -y -allianced tx gov vote $PROPOSAL_ID yes --from=aztestval2 --node=tcp://3.75.187.158:26657 --chain-id=alliance-testnet-1 --broadcast-mode=block -y -allianced tx gov vote $PROPOSAL_ID yes --from=aztestval3 --node=tcp://3.75.187.158:26657 --chain-id=alliance-testnet-1 --broadcast-mode=block -y - -printf "\n#4) Query proposals...\n\n" -allianced query gov proposal $PROPOSAL_ID --node=tcp://3.75.187.158:26657 --chain-id=alliance-testnet-1 - -printf "\n#5) Query alliances...\n\n" -allianced query alliance alliances --node=tcp://3.75.187.158:26657 --chain-id=alliance-testnet-1 - -printf "\n#6) Waiting for gov proposal to pass...\n\n" -sleep 8 - -printf "\n#7) Query alliances after proposal passed...\n\n" -allianced query alliance alliances --node=tcp://3.75.187.158:26657 --chain-id=alliance-testnet-1 \ No newline at end of file diff --git a/scripts/testnet/rewards.sh b/scripts/testnet/rewards.sh deleted file mode 100644 index 79922633..00000000 --- a/scripts/testnet/rewards.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/bash - -COIN_DENOM=ibc/4627AD2524E3E0523047E35BB76CC90E37D9D57ACF14F0FCBCEB2480705F3CB8 -WALLET_ADDRESS=$(allianced keys show aztestval -a) -VAL_ADDR=$(allianced query staking validators --output json --node=tcp://3.75.187.158:26657 --chain-id=alliance-testnet-1 | jq .validators[0].operator_address --raw-output) - -printf "\n\n#1) Query $COIN_DENOM alliance rewards...\n\n" -allianced query alliance rewards $WALLET_ADDRESS $VAL_ADDR $COIN_DENOM --node=tcp://3.75.187.158:26657 --chain-id=alliance-testnet-1 - -printf "\n\n#2) Claim rewards from x/alliance $COIN_DENOM...\n\n" -allianced tx alliance claim-rewards $VAL_ADDR $COIN_DENOM --from=aztestval --node=tcp://3.75.187.158:26657 --chain-id=alliance-testnet-1 --gas=auto --broadcast-mode=block -y - -printf "\n\n#3) Query $COIN_DENOM alliance rewards after claim...\n\n" -allianced query alliance rewards $WALLET_ADDRESS $VAL_ADDR $COIN_DENOM --node=tcp://3.75.187.158:26657 --chain-id=alliance-testnet-1 diff --git a/testutil/network/network.go b/testutil/network/network.go index ff5050d4..1ee6af36 100644 --- a/testutil/network/network.go +++ b/testutil/network/network.go @@ -5,18 +5,18 @@ import ( "testing" "time" + tmdb "github.com/cometbft/cometbft-db" + tmrand "github.com/cometbft/cometbft/libs/rand" "github.com/cosmos/cosmos-sdk/baseapp" "github.com/cosmos/cosmos-sdk/crypto/hd" "github.com/cosmos/cosmos-sdk/crypto/keyring" - pruningtypes "github.com/cosmos/cosmos-sdk/pruning/types" servertypes "github.com/cosmos/cosmos-sdk/server/types" - "github.com/cosmos/cosmos-sdk/simapp" + pruningtypes "github.com/cosmos/cosmos-sdk/store/pruning/types" "github.com/cosmos/cosmos-sdk/testutil/network" + simtestutil "github.com/cosmos/cosmos-sdk/testutil/sims" sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" "github.com/stretchr/testify/require" - tmrand "github.com/tendermint/tendermint/libs/rand" - tmdb "github.com/tendermint/tm-db" "github.com/terra-money/alliance/app/params" @@ -56,13 +56,13 @@ func DefaultConfig() network.Config { LegacyAmino: encoding.Amino, InterfaceRegistry: encoding.InterfaceRegistry, AccountRetriever: authtypes.AccountRetriever{}, - AppConstructor: func(val network.Validator) servertypes.Application { + AppConstructor: func(val network.ValidatorI) servertypes.Application { return app.New( - val.Ctx.Logger, tmdb.NewMemDB(), nil, true, map[int64]bool{}, val.Ctx.Config.RootDir, 0, + val.GetCtx().Logger, tmdb.NewMemDB(), nil, true, map[int64]bool{}, val.GetCtx().Config.RootDir, 0, encoding, - simapp.EmptyAppOptions{}, - baseapp.SetPruning(pruningtypes.NewPruningOptionsFromString(val.AppConfig.Pruning)), - baseapp.SetMinGasPrices(val.AppConfig.MinGasPrices), + simtestutil.EmptyAppOptions{}, + baseapp.SetPruning(pruningtypes.NewPruningOptionsFromString(val.GetAppConfig().Pruning)), + baseapp.SetMinGasPrices(val.GetAppConfig().MinGasPrices), ) }, GenesisState: app.ModuleBasics.DefaultGenesis(encoding.Marshaler), diff --git a/x/alliance/abci.go b/x/alliance/abci.go index 39f2c299..08549726 100644 --- a/x/alliance/abci.go +++ b/x/alliance/abci.go @@ -2,29 +2,31 @@ package alliance import ( "fmt" - "time" "github.com/terra-money/alliance/x/alliance/keeper" "github.com/terra-money/alliance/x/alliance/types" + abci "github.com/cometbft/cometbft/abci/types" "github.com/cosmos/cosmos-sdk/telemetry" sdk "github.com/cosmos/cosmos-sdk/types" - abci "github.com/tendermint/tendermint/abci/types" ) // EndBlocker func EndBlocker(ctx sdk.Context, k keeper.Keeper) []abci.ValidatorUpdate { - defer telemetry.ModuleMeasureSince(types.ModuleName, time.Now(), telemetry.MetricKeyEndBlocker) + defer telemetry.ModuleMeasureSince(types.ModuleName, ctx.BlockTime(), telemetry.MetricKeyEndBlocker) k.CompleteRedelegations(ctx) if err := k.CompleteUndelegations(ctx); err != nil { panic(fmt.Errorf("failed to complete undelegations from x/alliance module: %s", err)) } assets := k.GetAllAssets(ctx) + k.InitializeAllianceAssets(ctx, assets) if _, err := k.DeductAssetsHook(ctx, assets); err != nil { panic(fmt.Errorf("failed to deduct take rate from alliance in x/alliance module: %s", err)) } - k.RewardWeightChangeHook(ctx, assets) + if err := k.RewardWeightChangeHook(ctx, assets); err != nil { + panic(fmt.Errorf("failed to update assets reward weights in x/alliance module: %s", err)) + } if err := k.RebalanceHook(ctx, assets); err != nil { panic(fmt.Errorf("failed to rebalance assets in x/alliance module: %s", err)) } diff --git a/x/alliance/bindings/query_plugin.go b/x/alliance/bindings/query_plugin.go new file mode 100644 index 00000000..b878391d --- /dev/null +++ b/x/alliance/bindings/query_plugin.go @@ -0,0 +1,140 @@ +package bindings + +import ( + "encoding/json" + + sdk "github.com/cosmos/cosmos-sdk/types" + + "github.com/terra-money/alliance/x/alliance/bindings/types" + "github.com/terra-money/alliance/x/alliance/keeper" + alliancetypes "github.com/terra-money/alliance/x/alliance/types" +) + +type QueryPlugin struct { + allianceKeeper keeper.Keeper +} + +func NewAllianceQueryPlugin(keeper keeper.Keeper) *QueryPlugin { + return &QueryPlugin{ + allianceKeeper: keeper, + } +} + +func CustomQuerier(q *QueryPlugin) func(ctx sdk.Context, request json.RawMessage) (result []byte, err error) { + return func(ctx sdk.Context, request json.RawMessage) (result []byte, err error) { + var AllianceRequest types.AllianceQuery + err = json.Unmarshal(request, &AllianceRequest) + if err != nil { + return + } + if AllianceRequest.Alliance != nil { + return q.GetAlliance(ctx, AllianceRequest.Alliance.Denom) + } + if AllianceRequest.Delegation != nil { + return q.GetDelegation(ctx, AllianceRequest.Delegation.Denom, AllianceRequest.Delegation.Delegator, AllianceRequest.Delegation.Validator) + } + if AllianceRequest.DelegationRewards != nil { + return q.GetDelegationRewards(ctx, AllianceRequest.DelegationRewards.Denom, AllianceRequest.DelegationRewards.Delegator, AllianceRequest.DelegationRewards.Validator) + } + return nil, nil + } +} + +func (q *QueryPlugin) GetAlliance(ctx sdk.Context, denom string) (res []byte, err error) { + asset, found := q.allianceKeeper.GetAssetByDenom(ctx, denom) + if !found { + return nil, alliancetypes.ErrUnknownAsset + } + res, err = json.Marshal(types.AllianceResponse{ + Denom: asset.Denom, + RewardWeight: asset.RewardWeight.String(), + TakeRate: asset.TakeRate.String(), + TotalTokens: asset.TotalTokens.String(), + TotalValidatorShares: asset.TotalValidatorShares.String(), + RewardStartTime: uint64(asset.RewardStartTime.Nanosecond()), + RewardChangeRate: asset.RewardChangeRate.String(), + LastRewardChangeTime: uint64(asset.LastRewardChangeTime.Nanosecond()), + RewardWeightRange: types.RewardWeightRange{ + Min: asset.RewardWeightRange.Min.String(), + Max: asset.RewardWeightRange.Max.String(), + }, + IsInitialized: asset.IsInitialized, + }) + return +} + +func (q *QueryPlugin) GetDelegation(ctx sdk.Context, denom string, delegator string, validator string) (res []byte, err error) { + delegatorAddr, err := sdk.AccAddressFromBech32(delegator) + if err != nil { + return + } + validatorAddr, err := sdk.ValAddressFromBech32(validator) + if err != nil { + return + } + delegation, found := q.allianceKeeper.GetDelegation(ctx, delegatorAddr, validatorAddr, denom) + if !found { + return nil, alliancetypes.ErrDelegationNotFound + } + asset, found := q.allianceKeeper.GetAssetByDenom(ctx, denom) + if !found { + return nil, alliancetypes.ErrUnknownAsset + } + + allianceValidator, err := q.allianceKeeper.GetAllianceValidator(ctx, validatorAddr) + if err != nil { + return nil, err + } + balance := alliancetypes.GetDelegationTokens(delegation, allianceValidator, asset) + res, err = json.Marshal(types.DelegationResponse{ + Delegator: delegation.DelegatorAddress, + Validator: delegation.ValidatorAddress, + Denom: delegation.Denom, + Amount: types.Coin{ + Denom: balance.Denom, + Amount: balance.Amount.String(), + }, + }) + return res, err +} + +func (q *QueryPlugin) GetDelegationRewards(ctx sdk.Context, denom string, delegator string, validator string) (res []byte, err error) { + delegatorAddr, err := sdk.AccAddressFromBech32(delegator) + if err != nil { + return + } + validatorAddr, err := sdk.ValAddressFromBech32(validator) + if err != nil { + return + } + delegation, found := q.allianceKeeper.GetDelegation(ctx, delegatorAddr, validatorAddr, denom) + if !found { + return nil, alliancetypes.ErrDelegationNotFound + } + allianceValidator, err := q.allianceKeeper.GetAllianceValidator(ctx, validatorAddr) + if err != nil { + return nil, err + } + asset, found := q.allianceKeeper.GetAssetByDenom(ctx, denom) + if !found { + return nil, alliancetypes.ErrUnknownAsset + } + + rewards, _, err := q.allianceKeeper.CalculateDelegationRewards(ctx, delegation, allianceValidator, asset) + if err != nil { + return + } + + var coins []types.Coin + for _, coin := range rewards { + coins = append(coins, types.Coin{ + Denom: coin.Denom, + Amount: coin.Amount.String(), + }) + } + + res, err = json.Marshal(types.DelegationRewardsResponse{ + Rewards: coins, + }) + return res, err +} diff --git a/x/alliance/bindings/tests/query_plugin_test.go b/x/alliance/bindings/tests/query_plugin_test.go new file mode 100644 index 00000000..8a6c9f09 --- /dev/null +++ b/x/alliance/bindings/tests/query_plugin_test.go @@ -0,0 +1,205 @@ +package bindings_test + +import ( + "encoding/json" + "testing" + + minttypes "github.com/cosmos/cosmos-sdk/x/mint/types" + + tmproto "github.com/cometbft/cometbft/proto/tendermint/types" + sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/stretchr/testify/require" + + "github.com/terra-money/alliance/app" + "github.com/terra-money/alliance/x/alliance/bindings" + bindingtypes "github.com/terra-money/alliance/x/alliance/bindings/types" + "github.com/terra-money/alliance/x/alliance/types" +) + +func createTestContext(t *testing.T) (*app.App, sdk.Context) { + app := app.Setup(t) + ctx := app.BaseApp.NewContext(false, tmproto.Header{}) + return app, ctx +} + +var AllianceDenom = "alliance" + +func TestAssetQuery(t *testing.T) { + app, ctx := createTestContext(t) + genesisTime := ctx.BlockTime() + app.AllianceKeeper.InitGenesis(ctx, &types.GenesisState{ + Params: types.DefaultParams(), + Assets: []types.AllianceAsset{ + types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.ZeroDec(), sdk.NewDec(5), sdk.NewDec(0), genesisTime), + }, + }) + + querierPlugin := bindings.NewAllianceQueryPlugin(app.AllianceKeeper) + querier := bindings.CustomQuerier(querierPlugin) + + assetQuery := bindingtypes.AllianceQuery{ + Alliance: &bindingtypes.Alliance{ + Denom: AllianceDenom, + }, + } + qBz, err := json.Marshal(assetQuery) + require.NoError(t, err) + rBz, err := querier(ctx, qBz) + require.NoError(t, err) + + var assetResponse bindingtypes.AllianceResponse + err = json.Unmarshal(rBz, &assetResponse) + require.NoError(t, err) + + require.Equal(t, bindingtypes.AllianceResponse{ + Denom: AllianceDenom, + RewardWeight: sdk.MustNewDecFromStr("2").String(), + TakeRate: sdk.MustNewDecFromStr("0").String(), + TotalTokens: "0", + TotalValidatorShares: sdk.MustNewDecFromStr("0").String(), + RewardStartTime: uint64(genesisTime.Nanosecond()), + RewardChangeRate: sdk.MustNewDecFromStr("1").String(), + LastRewardChangeTime: 0, + RewardWeightRange: bindingtypes.RewardWeightRange{ + Min: sdk.MustNewDecFromStr("0").String(), + Max: sdk.MustNewDecFromStr("5").String(), + }, + IsInitialized: false, + }, assetResponse) +} + +func TestDelegationQuery(t *testing.T) { + app, ctx := createTestContext(t) + genesisTime := ctx.BlockTime() + app.AllianceKeeper.InitGenesis(ctx, &types.GenesisState{ + Params: types.DefaultParams(), + Assets: []types.AllianceAsset{ + types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.ZeroDec(), sdk.NewDec(5), sdk.NewDec(0), genesisTime), + }, + }) + delegations := app.StakingKeeper.GetAllDelegations(ctx) + require.Len(t, delegations, 1) + // All the addresses needed + delAddr, err := sdk.AccAddressFromBech32(delegations[0].DelegatorAddress) + require.NoError(t, err) + valAddr, err := sdk.ValAddressFromBech32(delegations[0].ValidatorAddress) + require.NoError(t, err) + val, err := app.AllianceKeeper.GetAllianceValidator(ctx, valAddr) + require.NoError(t, err) + + // Mint alliance tokens + err = app.BankKeeper.MintCoins(ctx, minttypes.ModuleName, sdk.NewCoins(sdk.NewCoin(AllianceDenom, sdk.NewInt(2000_000)))) + require.NoError(t, err) + err = app.BankKeeper.SendCoinsFromModuleToAccount(ctx, minttypes.ModuleName, delAddr, sdk.NewCoins(sdk.NewCoin(AllianceDenom, sdk.NewInt(2000_000)))) + require.NoError(t, err) + + // Check current total staked tokens + totalBonded := app.StakingKeeper.TotalBondedTokens(ctx) + require.Equal(t, sdk.NewInt(1000_000), totalBonded) + + // Delegate + _, err = app.AllianceKeeper.Delegate(ctx, delAddr, val, sdk.NewCoin(AllianceDenom, sdk.NewInt(1000_000))) + require.NoError(t, err) + + querierPlugin := bindings.NewAllianceQueryPlugin(app.AllianceKeeper) + querier := bindings.CustomQuerier(querierPlugin) + + delegationQuery := bindingtypes.AllianceQuery{ + Delegation: &bindingtypes.Delegation{ + Delegator: delAddr.String(), + Validator: val.GetOperator().String(), + Denom: AllianceDenom, + }, + } + qBz, err := json.Marshal(delegationQuery) + require.NoError(t, err) + rBz, err := querier(ctx, qBz) + require.NoError(t, err) + + var delegationResponse bindingtypes.DelegationResponse + err = json.Unmarshal(rBz, &delegationResponse) + require.NoError(t, err) + + require.Equal(t, bindingtypes.DelegationResponse{ + Delegator: delAddr.String(), + Validator: val.GetOperator().String(), + Denom: AllianceDenom, + Amount: bindingtypes.Coin{ + Denom: AllianceDenom, + Amount: "1000000", + }, + }, delegationResponse) +} + +func TestDelegationRewardsQuery(t *testing.T) { + app, ctx := createTestContext(t) + genesisTime := ctx.BlockTime() + app.AllianceKeeper.InitGenesis(ctx, &types.GenesisState{ + Params: types.DefaultParams(), + Assets: []types.AllianceAsset{ + types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.ZeroDec(), sdk.NewDec(5), sdk.NewDec(0), genesisTime), + }, + }) + delegations := app.StakingKeeper.GetAllDelegations(ctx) + require.Len(t, delegations, 1) + // All the addresses needed + delAddr, err := sdk.AccAddressFromBech32(delegations[0].DelegatorAddress) + require.NoError(t, err) + valAddr, err := sdk.ValAddressFromBech32(delegations[0].ValidatorAddress) + require.NoError(t, err) + val, err := app.AllianceKeeper.GetAllianceValidator(ctx, valAddr) + require.NoError(t, err) + + // Mint alliance tokens + err = app.BankKeeper.MintCoins(ctx, minttypes.ModuleName, sdk.NewCoins(sdk.NewCoin(AllianceDenom, sdk.NewInt(2000_000)))) + require.NoError(t, err) + err = app.BankKeeper.SendCoinsFromModuleToAccount(ctx, minttypes.ModuleName, delAddr, sdk.NewCoins(sdk.NewCoin(AllianceDenom, sdk.NewInt(2000_000)))) + require.NoError(t, err) + + // Check current total staked tokens + totalBonded := app.StakingKeeper.TotalBondedTokens(ctx) + require.Equal(t, sdk.NewInt(1000_000), totalBonded) + + // Delegate + _, err = app.AllianceKeeper.Delegate(ctx, delAddr, val, sdk.NewCoin(AllianceDenom, sdk.NewInt(1000_000))) + require.NoError(t, err) + + assets := app.AllianceKeeper.GetAllAssets(ctx) + err = app.AllianceKeeper.RebalanceBondTokenWeights(ctx, assets) + require.NoError(t, err) + + // Transfer to reward pool + mintPoolAddr := app.AccountKeeper.GetModuleAddress(minttypes.ModuleName) + err = app.BankKeeper.MintCoins(ctx, minttypes.ModuleName, sdk.NewCoins(sdk.NewCoin("stake", sdk.NewInt(4000_000)))) + require.NoError(t, err) + err = app.AllianceKeeper.AddAssetsToRewardPool(ctx, mintPoolAddr, val, sdk.NewCoins(sdk.NewCoin("stake", sdk.NewInt(2000_000)))) + require.NoError(t, err) + + querierPlugin := bindings.NewAllianceQueryPlugin(app.AllianceKeeper) + querier := bindings.CustomQuerier(querierPlugin) + + delegationQuery := bindingtypes.AllianceQuery{ + DelegationRewards: &bindingtypes.DelegationRewards{ + Delegator: delAddr.String(), + Validator: val.GetOperator().String(), + Denom: AllianceDenom, + }, + } + qBz, err := json.Marshal(delegationQuery) + require.NoError(t, err) + rBz, err := querier(ctx, qBz) + require.NoError(t, err) + + var response bindingtypes.DelegationRewardsResponse + err = json.Unmarshal(rBz, &response) + require.NoError(t, err) + + require.Equal(t, bindingtypes.DelegationRewardsResponse{ + Rewards: []bindingtypes.Coin{ + { + Denom: "stake", + Amount: "2000000", + }, + }, + }, response) +} diff --git a/x/alliance/bindings/types/request.go b/x/alliance/bindings/types/request.go new file mode 100644 index 00000000..935500a3 --- /dev/null +++ b/x/alliance/bindings/types/request.go @@ -0,0 +1,23 @@ +package types + +type AllianceQuery struct { + Alliance *Alliance `json:"alliance"` + Delegation *Delegation `json:"delegation"` + DelegationRewards *DelegationRewards `json:"delegation_rewards"` +} + +type Alliance struct { + Denom string `json:"denom"` +} + +type Delegation struct { + Denom string `json:"denom"` + Delegator string `json:"delegator"` + Validator string `json:"validator"` +} + +type DelegationRewards struct { + Denom string `json:"denom"` + Delegator string `json:"delegator"` + Validator string `json:"validator"` +} diff --git a/x/alliance/bindings/types/response.go b/x/alliance/bindings/types/response.go new file mode 100644 index 00000000..50a32b69 --- /dev/null +++ b/x/alliance/bindings/types/response.go @@ -0,0 +1,35 @@ +package types + +type AllianceResponse struct { + Denom string `json:"denom"` + RewardWeight string `json:"reward_weight"` + TakeRate string `json:"take_rate"` + TotalTokens string `json:"total_tokens"` + TotalValidatorShares string `json:"total_validator_shares"` + RewardStartTime uint64 `json:"reward_start_time"` + RewardChangeRate string `json:"reward_change_rate"` + LastRewardChangeTime uint64 `json:"last_reward_change_time"` + RewardWeightRange RewardWeightRange `json:"reward_weight_range"` + IsInitialized bool `json:"is_initialized"` +} + +type RewardWeightRange struct { + Min string `json:"min"` + Max string `json:"max"` +} + +type Coin struct { + Denom string `json:"denom"` + Amount string `json:"amount"` +} + +type DelegationResponse struct { + Delegator string `json:"delegator"` + Validator string `json:"validator"` + Denom string `json:"denom"` + Amount Coin `json:"amount"` +} + +type DelegationRewardsResponse struct { + Rewards []Coin `json:"rewards"` +} diff --git a/x/alliance/client/cli/gov.go b/x/alliance/client/cli/gov.go index 0d7cc7c9..af7917dc 100644 --- a/x/alliance/client/cli/gov.go +++ b/x/alliance/client/cli/gov.go @@ -15,15 +15,15 @@ import ( func CreateAlliance() *cobra.Command { cmd := &cobra.Command{ - Use: "create-alliance denom rewards-weight take-rate reward-change-rate reward-change-interval", - Args: cobra.ExactArgs(5), + Use: "create-alliance denom reward-weight reward-weight-min reward-weight-max take-rate reward-change-rate reward-change-interval", + Args: cobra.ExactArgs(7), Short: "Create an alliance with the specified parameters", RunE: func(cmd *cobra.Command, args []string) error { clientCtx, err := client.GetClientTxContext(cmd) if err != nil { return err } - title, err := cmd.Flags().GetString(govcli.FlagTitle) //nolint:staticcheck // SA1019: govcli.FlagTitle is deprecated + title, err := cmd.Flags().GetString(govcli.FlagTitle) if err != nil { return err } @@ -33,22 +33,34 @@ func CreateAlliance() *cobra.Command { return err } + denom := args[0] + rewardWeight, err := sdk.NewDecFromStr(args[1]) if err != nil { return err } - takeRate, err := sdk.NewDecFromStr(args[2]) + rewardWeightMin, err := sdk.NewDecFromStr(args[2]) if err != nil { return err } - rewardChangeRate, err := sdk.NewDecFromStr(args[3]) + rewardWeightMax, err := sdk.NewDecFromStr(args[3]) if err != nil { return err } - rewardChangeInterval, err := time.ParseDuration(args[4]) + takeRate, err := sdk.NewDecFromStr(args[4]) + if err != nil { + return err + } + + rewardChangeRate, err := sdk.NewDecFromStr(args[5]) + if err != nil { + return err + } + + rewardChangeInterval, err := time.ParseDuration(args[6]) if err != nil { return err } @@ -68,8 +80,12 @@ func CreateAlliance() *cobra.Command { content := types.NewMsgCreateAllianceProposal( title, description, - args[0], + denom, rewardWeight, + types.RewardWeightRange{ + Min: rewardWeightMin, + Max: rewardWeightMax, + }, takeRate, rewardChangeRate, rewardChangeInterval, @@ -94,7 +110,7 @@ func CreateAlliance() *cobra.Command { }, } - cmd.Flags().String(govcli.FlagTitle, "", "title of proposal") //nolint:staticcheck + cmd.Flags().String(govcli.FlagTitle, "", "title of proposal") cmd.Flags().String(govcli.FlagDescription, "", "description of proposal") //nolint:staticcheck cmd.Flags().String(govcli.FlagDeposit, "", "deposit of proposal") return cmd @@ -102,7 +118,7 @@ func CreateAlliance() *cobra.Command { func UpdateAlliance() *cobra.Command { cmd := &cobra.Command{ - Use: "update-alliance denom rewards-weight take-rate reward-change-rate reward-change-interval", + Use: "update-alliance denom reward-weight take-rate reward-change-rate reward-change-interval", Args: cobra.ExactArgs(5), Short: "Update an alliance with the specified parameters", RunE: func(cmd *cobra.Command, args []string) error { @@ -110,7 +126,7 @@ func UpdateAlliance() *cobra.Command { if err != nil { return err } - title, err := cmd.Flags().GetString(govcli.FlagTitle) //nolint:staticcheck + title, err := cmd.Flags().GetString(govcli.FlagTitle) if err != nil { return err } @@ -120,6 +136,8 @@ func UpdateAlliance() *cobra.Command { return err } + denom := args[0] + rewardWeight, err := sdk.NewDecFromStr(args[1]) if err != nil { return err @@ -155,7 +173,7 @@ func UpdateAlliance() *cobra.Command { content := types.NewMsgUpdateAllianceProposal( title, description, - args[0], + denom, rewardWeight, takeRate, rewardChangeRate, @@ -181,7 +199,7 @@ func UpdateAlliance() *cobra.Command { }, } - cmd.Flags().String(govcli.FlagTitle, "", "title of proposal") //nolint:staticcheck // SA1019: govcli.FlagTitle is deprecated + cmd.Flags().String(govcli.FlagTitle, "", "title of proposal") cmd.Flags().String(govcli.FlagDescription, "", "description of proposal") //nolint:staticcheck // SA1019: govcli.FlagDescription is deprecated cmd.Flags().String(govcli.FlagDeposit, "", "deposit of proposal") return cmd @@ -197,7 +215,7 @@ func DeleteAlliance() *cobra.Command { if err != nil { return err } - title, err := cmd.Flags().GetString(govcli.FlagTitle) //nolint:staticcheck // SA1019: govcli.FlagTitle is deprecated + title, err := cmd.Flags().GetString(govcli.FlagTitle) if err != nil { return err } @@ -209,6 +227,8 @@ func DeleteAlliance() *cobra.Command { from := clientCtx.GetFromAddress() + denom := args[0] + depositStr, err := cmd.Flags().GetString(govcli.FlagDeposit) if err != nil { return err @@ -222,7 +242,7 @@ func DeleteAlliance() *cobra.Command { content := types.NewMsgDeleteAllianceProposal( title, description, - args[0], + denom, ) err = content.ValidateBasic() @@ -244,7 +264,7 @@ func DeleteAlliance() *cobra.Command { }, } - cmd.Flags().String(govcli.FlagTitle, "", "title of proposal") //nolint:staticcheck // SA1019: govcli.FlagTitle is deprecated: use FlagTitle instead + cmd.Flags().String(govcli.FlagTitle, "", "title of proposal") cmd.Flags().String(govcli.FlagDescription, "", "description of proposal") //nolint:staticcheck // SA1019: govcli.FlagDescription is deprecated: use FlagDescription instead cmd.Flags().String(govcli.FlagDeposit, "", "deposit of proposal") return cmd diff --git a/x/alliance/client/cli/tx.go b/x/alliance/client/cli/tx.go index e58ef0d9..2ad6ceb5 100644 --- a/x/alliance/client/cli/tx.go +++ b/x/alliance/client/cli/tx.go @@ -32,9 +32,9 @@ func NewDelegateCmd() *cobra.Command { cmd := &cobra.Command{ Use: "delegate [validator-addr] [amount]", Args: cobra.ExactArgs(2), - Short: "Delegate alliance enabled tokens to a validator", + Short: "Delegate alliance-enabled tokens to a validator", Long: strings.TrimSpace( - fmt.Sprintf(`Delegate an amount of liquid alliance enabled coins to a validator from your wallet. + fmt.Sprintf(`Delegate an amount of liquid alliance-enabled coins to a validator from your wallet. Example: $ %s tx alliance delegate %s1l2rsakp388kuv9k8qzq6lrm9taddae7fpx59wm 1000stake --from mykey @@ -79,9 +79,9 @@ func NewRedelegateCmd() *cobra.Command { cmd := &cobra.Command{ Use: "redelegate [src-validator-addr] [dst-validator-addr] [amount]", Args: cobra.ExactArgs(3), - Short: "Re-delegate alliance enabled tokens from a validator to another", + Short: "Re-delegate alliance-enabled tokens from a validator to another", Long: strings.TrimSpace( - fmt.Sprintf(`Re-delegate an amount of liquid alliance enabled coins from a validator to another from your wallet. + fmt.Sprintf(`Re-delegate an amount of liquid alliance-enabled coins from a validator to another from your wallet. Example: $ %s tx alliance redelegate %s1l2rsakp388kuv9k8qzq6lrm9taddae7fpx59wm %ss1l2rsakp388kuv9k8qzq6lrm9taddae7fpx59wm 1000stake --from mykey @@ -133,9 +133,9 @@ func NewUndelegateCmd() *cobra.Command { cmd := &cobra.Command{ Use: "undelegate validator-addr amount", Args: cobra.ExactArgs(2), - Short: "Undelegate alliance enabled tokens to a validator", + Short: "Undelegate alliance-enabled tokens to a validator", Long: strings.TrimSpace( - fmt.Sprintf(`Undelegate an amount of liquid alliance enabled coins from a validator to your wallet (after the unbonding period has passed). + fmt.Sprintf(`Undelegate an amount of liquid alliance-enabled coins from a validator to your wallet (after the unbonding period has passed). Example: $ %s tx alliance undelegate %s1l2rsakp388kuv9k8qzq6lrm9taddae7fpx59wm 1000stake --from mykey diff --git a/x/alliance/genesis.go b/x/alliance/genesis.go index 3583690b..2457c4bb 100644 --- a/x/alliance/genesis.go +++ b/x/alliance/genesis.go @@ -1,8 +1,6 @@ package alliance import ( - "time" - "github.com/terra-money/alliance/x/alliance/types" ) @@ -26,11 +24,7 @@ func ValidateGenesis(data *types.GenesisState) error { func DefaultGenesisState() *types.GenesisState { return &types.GenesisState{ - Params: types.Params{ - RewardDelayTime: time.Hour * 24 * 7, - TakeRateClaimInterval: time.Minute * 5, - LastTakeRateClaimTime: time.Now(), - }, + Params: types.DefaultParams(), Assets: []types.AllianceAsset{}, ValidatorInfos: []types.ValidatorInfoState{}, RewardWeightChangeSnaphots: []types.RewardWeightChangeSnapshotState{}, diff --git a/x/alliance/keeper/asset.go b/x/alliance/keeper/asset.go index 155747f9..04bf8cfb 100644 --- a/x/alliance/keeper/asset.go +++ b/x/alliance/keeper/asset.go @@ -1,6 +1,7 @@ package keeper import ( + "fmt" "math" "time" @@ -12,6 +13,23 @@ import ( "github.com/terra-money/alliance/x/alliance/types" ) +// InitializeAllianceAssets this hooks adds a reward change snapshot when time > asset.RewardStartTime +// A reward change snapshot of 0 weight is added to signify that the asset did not accrue any rewards during the +// warm up period so we can calculate the correct rewards when claiming +func (k Keeper) InitializeAllianceAssets(ctx sdk.Context, assets []*types.AllianceAsset) { + for _, asset := range assets { + if asset.IsInitialized || !asset.RewardsStarted(ctx.BlockTime()) { + continue + } + asset.IsInitialized = true + k.IterateAllianceValidatorInfo(ctx, func(valAddr sdk.ValAddress, info types.AllianceValidatorInfo) bool { + k.CreateInitialRewardWeightChangeSnapshot(ctx, asset.Denom, valAddr, info) + return false + }) + k.SetAsset(ctx, *asset) + } +} + // UpdateAllianceAsset updates the alliance asset with new params // Also saves a snapshot whenever rewards weight changes to make sure delegation reward calculation has reference to // historical reward rates @@ -22,10 +40,15 @@ func (k Keeper) UpdateAllianceAsset(ctx sdk.Context, newAsset types.AllianceAsse } var err error + if newAsset.RewardWeightRange.Min.GT(newAsset.RewardWeight) || newAsset.RewardWeightRange.Max.LT(newAsset.RewardWeight) { + err = types.ErrRewardWeightOutOfBound + return err + } // Only add a snapshot if reward weight changes if !newAsset.RewardWeight.Equal(asset.RewardWeight) { k.IterateAllianceValidatorInfo(ctx, func(valAddr sdk.ValAddress, info types.AllianceValidatorInfo) bool { - validator, err := k.GetAllianceValidator(ctx, valAddr) + var validator types.AllianceValidator + validator, err = k.GetAllianceValidator(ctx, valAddr) if err != nil { return true } @@ -47,7 +70,7 @@ func (k Keeper) UpdateAllianceAsset(ctx sdk.Context, newAsset types.AllianceAsse if !newAsset.RewardChangeRate.Equal(asset.RewardChangeRate) || newAsset.RewardChangeInterval != asset.RewardChangeInterval { // And if there were no reward changes scheduled previously, start the counter from now if asset.RewardChangeRate.Equal(sdk.OneDec()) || asset.RewardChangeInterval == 0 { - asset.LastRewardChangeTime = ctx.BlockTime() + newAsset.LastRewardChangeTime = ctx.BlockTime() } // Else do nothing since there is already a change that was scheduled. // The next trigger will use the new reward change and reward interval @@ -116,7 +139,7 @@ func (k Keeper) RebalanceBondTokenWeights(ctx sdk.Context, assets []*types.Allia for _, asset := range assets { // Ignores assets that were recently added to prevent a small set of stakers from owning too much of the // voting power at the start. Uses the asset.RewardStartTime to determine when an asset is activated - if ctx.BlockTime().Before(asset.RewardStartTime) { + if !asset.RewardsStarted(ctx.BlockTime()) { // Queue a rebalancing event so that we keep checking if the asset rewards has started in the next block k.QueueAssetRebalanceEvent(ctx) continue @@ -142,6 +165,10 @@ func (k Keeper) RebalanceBondTokenWeights(ctx sdk.Context, assets []*types.Allia if err != nil { return err } + _, err = k.ClaimValidatorRewards(ctx, validator) + if err != nil { + return err + } _, err = k.stakingKeeper.Delegate(ctx, moduleAddr, bondAmount, stakingtypes.Unbonded, *validator.Validator, true) if err != nil { return err @@ -157,6 +184,10 @@ func (k Keeper) RebalanceBondTokenWeights(ctx sdk.Context, assets []*types.Allia if err != nil { return err } + _, err = k.ClaimValidatorRewards(ctx, validator) + if err != nil { + return err + } tokensToBurn, err := k.stakingKeeper.Unbond(ctx, moduleAddr, validator.GetOperator(), sharesToUnbond) if err != nil { return err @@ -205,7 +236,15 @@ func (k Keeper) GetAssetByDenom(ctx sdk.Context, denom string) (asset types.Alli return asset, true } -func (k Keeper) DeleteAsset(ctx sdk.Context, denom string) { +func (k Keeper) DeleteAsset(ctx sdk.Context, asset types.AllianceAsset) error { + if asset.TotalTokens.GT(sdk.ZeroInt()) { + return fmt.Errorf("cannot delete alliance assets that still have tokens") + } + k.deleteAsset(ctx, asset.Denom) + return nil +} + +func (k Keeper) deleteAsset(ctx sdk.Context, denom string) { store := ctx.KVStore(k.storeKey) assetKey := types.GetAssetKey(denom) store.Delete(assetKey) @@ -243,12 +282,23 @@ func (k Keeper) DeductAssetsHook(ctx sdk.Context, assets []*types.AllianceAsset) // DeductAssetsWithTakeRate Deducts an alliance asset using the take_rate // The deducted asset is distributed to the fee_collector module account to be redistributed to stakers func (k Keeper) DeductAssetsWithTakeRate(ctx sdk.Context, lastClaim time.Time, assets []*types.AllianceAsset) (sdk.Coins, error) { + var coins sdk.Coins + + // If start time has not been set, set the start time and do nothing for this block + if lastClaim.Equal(time.Time{}) { + k.SetLastRewardClaimTime(ctx, ctx.BlockTime()) + return coins, nil + } + rewardClaimInterval := k.RewardClaimInterval(ctx) durationSinceLastClaim := ctx.BlockTime().Sub(lastClaim) intervalsSinceLastClaim := uint64(durationSinceLastClaim / rewardClaimInterval) - var coins sdk.Coins + + assetsWithPositiveTakeRate := 0 + for _, asset := range assets { - if asset.TotalTokens.IsPositive() && asset.TakeRate.IsPositive() { + if asset.TotalTokens.IsPositive() && asset.TakeRate.IsPositive() && asset.RewardsStarted(ctx.BlockTime()) { + assetsWithPositiveTakeRate++ // take rate must be < 1 so multiple is also < 1 multiplier := sdk.OneDec().Sub(asset.TakeRate).Power(intervalsSinceLastClaim) oldAmount := asset.TotalTokens @@ -264,6 +314,12 @@ func (k Keeper) DeductAssetsWithTakeRate(ctx sdk.Context, lastClaim time.Time, a } } + // If there are no assets with positive take rate, continue to update last reward claim time and return + if assetsWithPositiveTakeRate == 0 { + k.SetLastRewardClaimTime(ctx, ctx.BlockTime()) + return coins, nil + } + if !coins.Empty() && !coins.IsZero() { err := k.bankKeeper.SendCoinsFromModuleToModule(ctx, types.ModuleName, authtypes.FeeCollectorName, coins) if err != nil { @@ -280,6 +336,14 @@ func (k Keeper) SetRewardWeightChangeSnapshot(ctx sdk.Context, asset types.Allia k.setRewardWeightChangeSnapshot(ctx, asset.Denom, val.GetOperator(), uint64(ctx.BlockHeight()), snapshot) } +func (k Keeper) CreateInitialRewardWeightChangeSnapshot(ctx sdk.Context, denom string, valAddr sdk.ValAddress, info types.AllianceValidatorInfo) { + snapshot := types.RewardWeightChangeSnapshot{ + PrevRewardWeight: sdk.ZeroDec(), + RewardHistories: info.GlobalRewardHistory, + } + k.setRewardWeightChangeSnapshot(ctx, denom, valAddr, uint64(ctx.BlockHeight()), snapshot) +} + func (k Keeper) setRewardWeightChangeSnapshot(ctx sdk.Context, denom string, valAddr sdk.ValAddress, height uint64, snapshot types.RewardWeightChangeSnapshot) { key := types.GetRewardWeightChangeSnapshotKey(denom, valAddr, height) store := ctx.KVStore(k.storeKey) @@ -308,7 +372,7 @@ func (k Keeper) IterateAllWeightChangeSnapshot(ctx sdk.Context, cb func(denom st } } -func (k Keeper) RewardWeightChangeHook(ctx sdk.Context, assets []*types.AllianceAsset) { +func (k Keeper) RewardWeightChangeHook(ctx sdk.Context, assets []*types.AllianceAsset) error { for _, asset := range assets { // If no reward changes are required, skip if asset.RewardChangeInterval == 0 || asset.RewardChangeRate.Equal(sdk.OneDec()) { @@ -324,8 +388,18 @@ func (k Keeper) RewardWeightChangeHook(ctx sdk.Context, assets []*types.Alliance // Compound the weight changes multiplier := asset.RewardChangeRate.Power(intervalsSinceLastClaim) asset.RewardWeight = asset.RewardWeight.Mul(multiplier) + if asset.RewardWeight.LT(asset.RewardWeightRange.Min) { + asset.RewardWeight = asset.RewardWeightRange.Min + } + if asset.RewardWeight.GT(asset.RewardWeightRange.Max) { + asset.RewardWeight = asset.RewardWeightRange.Max + } asset.LastRewardChangeTime = asset.LastRewardChangeTime.Add(asset.RewardChangeInterval * time.Duration(intervalsSinceLastClaim)) k.QueueAssetRebalanceEvent(ctx) - k.UpdateAllianceAsset(ctx, *asset) //nolint:errcheck + err := k.UpdateAllianceAsset(ctx, *asset) + if err != nil { + return err + } } + return nil } diff --git a/x/alliance/keeper/delegation.go b/x/alliance/keeper/delegation.go index 5a778816..2984c442 100644 --- a/x/alliance/keeper/delegation.go +++ b/x/alliance/keeper/delegation.go @@ -24,6 +24,7 @@ func (k Keeper) Delegate(ctx sdk.Context, delAddr sdk.AccAddress, validator type return nil, status.Errorf(codes.NotFound, "asset with denom: %s does not exist in alliance whitelist", coin.Denom) } + // for the AllianceDenomTwo. // Check and send delegated tokens into the alliance module address err := k.bankKeeper.SendCoinsFromAccountToModule(ctx, delAddr, types.ModuleName, sdk.NewCoins(coin)) if err != nil { @@ -31,7 +32,7 @@ func (k Keeper) Delegate(ctx sdk.Context, delAddr sdk.AccAddress, validator type } // Claim rewards before adding more to a previous delegation - _, found = k.GetDelegation(ctx, delAddr, validator, coin.Denom) + _, found = k.GetDelegation(ctx, delAddr, validator.GetOperator(), coin.Denom) if found { _, err = k.ClaimDelegationRewards(ctx, delAddr, validator, coin.Denom) if err != nil { @@ -54,14 +55,15 @@ func (k Keeper) Delegate(ctx sdk.Context, delAddr sdk.AccAddress, validator type ) k.QueueAssetRebalanceEvent(ctx) - ctx.EventManager().EmitEvents(sdk.Events{ - sdk.NewEvent( - types.EventTypeDelegate, - sdk.NewAttribute(types.AttributeKeyValidator, validator.OperatorAddress), - sdk.NewAttribute(sdk.AttributeKeyAmount, coin.Amount.String()), - sdk.NewAttribute(types.AttributeKeyNewShares, newValidatorShares.String()), - ), - }) + _ = ctx.EventManager().EmitTypedEvent( + &types.DelegateAllianceEvent{ + AllianceSender: delAddr.String(), + Validator: validator.OperatorAddress, + Coin: coin, + NewShares: newValidatorShares, + }, + ) + return &newValidatorShares, nil } @@ -76,7 +78,7 @@ func (k Keeper) Redelegate(ctx sdk.Context, delAddr sdk.AccAddress, srcVal types return nil, status.Errorf(codes.NotFound, "Asset with denom: %s does not exist", coin.Denom) } - _, found = k.GetDelegation(ctx, delAddr, srcVal, coin.Denom) + _, found = k.GetDelegation(ctx, delAddr, srcVal.GetOperator(), coin.Denom) if !found { return nil, stakingtypes.ErrNoDelegatorForAddress } @@ -85,9 +87,9 @@ func (k Keeper) Redelegate(ctx sdk.Context, delAddr sdk.AccAddress, srcVal types return nil, err } // re-query delegation since it was updated in `ClaimDelegationRewards` - srcDelegation, _ := k.GetDelegation(ctx, delAddr, srcVal, coin.Denom) + srcDelegation, _ := k.GetDelegation(ctx, delAddr, srcVal.GetOperator(), coin.Denom) - _, found = k.GetDelegation(ctx, delAddr, dstVal, coin.Denom) + _, found = k.GetDelegation(ctx, delAddr, dstVal.GetOperator(), coin.Denom) if found { _, err = k.ClaimDelegationRewards(ctx, delAddr, dstVal, coin.Denom) if err != nil { @@ -143,15 +145,15 @@ func (k Keeper) Redelegate(ctx sdk.Context, delAddr sdk.AccAddress, srcVal types k.QueueAssetRebalanceEvent(ctx) - ctx.EventManager().EmitEvents(sdk.Events{ - sdk.NewEvent( - types.EventTypeRedelegate, - sdk.NewAttribute(types.AttributeKeySrcValidator, srcVal.OperatorAddress), - sdk.NewAttribute(types.AttributeKeyDstValidator, dstVal.OperatorAddress), - sdk.NewAttribute(sdk.AttributeKeyAmount, coin.Amount.String()), - sdk.NewAttribute(types.AttributeKeyCompletionTime, completionTime.Format(time.RFC3339)), - ), - }) + _ = ctx.EventManager().EmitTypedEvent( + &types.RedelegateAllianceEvent{ + AllianceSender: delAddr.String(), + SourceValidator: srcVal.OperatorAddress, + DestinationValidator: dstVal.OperatorAddress, + Coin: coin, + CompletionTime: completionTime, + }, + ) return &completionTime, nil } @@ -164,7 +166,7 @@ func (k Keeper) Undelegate(ctx sdk.Context, delAddr sdk.AccAddress, validator ty return nil, status.Errorf(codes.NotFound, "Asset with denom: %s does not exist", coin.Denom) } - _, ok := k.GetDelegation(ctx, delAddr, validator, coin.Denom) + _, ok := k.GetDelegation(ctx, delAddr, validator.GetOperator(), coin.Denom) if !ok { return nil, stakingtypes.ErrNoDelegatorForAddress } @@ -175,7 +177,7 @@ func (k Keeper) Undelegate(ctx sdk.Context, delAddr sdk.AccAddress, validator ty } // Delegation is queried again since it might have been modified when claiming delegation rewards - delegation, _ := k.GetDelegation(ctx, delAddr, validator, coin.Denom) + delegation, _ := k.GetDelegation(ctx, delAddr, validator.GetOperator(), coin.Denom) // Calculate how much delegation shares to be undelegated taking into account rounding issues delegationSharesToUndelegate, err := k.ValidateDelegatedAmount(delegation, coin, validator, asset) @@ -214,14 +216,15 @@ func (k Keeper) Undelegate(ctx sdk.Context, delAddr sdk.AccAddress, validator ty completionTime := k.queueUndelegation(ctx, delAddr, validator.GetOperator(), coin) k.QueueAssetRebalanceEvent(ctx) - ctx.EventManager().EmitEvents(sdk.Events{ - sdk.NewEvent( - types.EventTypeUndelegate, - sdk.NewAttribute(types.AttributeKeyValidator, validator.OperatorAddress), - sdk.NewAttribute(sdk.AttributeKeyAmount, coin.Amount.String()), - sdk.NewAttribute(types.AttributeKeyCompletionTime, completionTime.Format(time.RFC3339)), - ), - }) + _ = ctx.EventManager().EmitTypedEvent( + &types.UndelegateAllianceEvent{ + AllianceSender: delAddr.String(), + Validator: validator.OperatorAddress, + Coin: coin, + CompletionTime: completionTime, + }, + ) + return &completionTime, nil } @@ -287,8 +290,8 @@ func (k Keeper) CompleteUndelegations(ctx sdk.Context) error { return nil } -func (k Keeper) GetDelegation(ctx sdk.Context, delAddr sdk.AccAddress, validator types.AllianceValidator, denom string) (d types.Delegation, found bool) { - key := types.GetDelegationKey(delAddr, validator.GetOperator(), denom) +func (k Keeper) GetDelegation(ctx sdk.Context, delAddr sdk.AccAddress, valAddr sdk.ValAddress, denom string) (d types.Delegation, found bool) { + key := types.GetDelegationKey(delAddr, valAddr, denom) b := ctx.KVStore(k.storeKey).Get(key) if b == nil { return d, false @@ -495,7 +498,7 @@ func (k Keeper) queueRedelegation(ctx sdk.Context, delAddr sdk.AccAddress, srcVa store.Set(queueKey, b) } -// queueUndelegation adds a undelegation queue object that is indexed by completion time +// queueUndelegation adds an undelegation queue object that is indexed by completion time // This is used to track and clean-up undelegation events once they are mature func (k Keeper) queueUndelegation(ctx sdk.Context, delAddr sdk.AccAddress, val sdk.ValAddress, coin sdk.Coin) time.Time { store := ctx.KVStore(k.storeKey) @@ -541,7 +544,7 @@ func (k Keeper) setUnbondingIndexByVal(ctx sdk.Context, valAddr sdk.ValAddress, func (k Keeper) upsertDelegationWithNewTokens(ctx sdk.Context, delAddr sdk.AccAddress, validator types.AllianceValidator, coin sdk.Coin, asset types.AllianceAsset) (types.Delegation, sdk.Dec) { //nolint:unparam // may wish to investigate newShares := types.GetDelegationSharesFromTokens(validator, asset, coin.Amount) - delegation, found := k.GetDelegation(ctx, delAddr, validator, coin.Denom) + delegation, found := k.GetDelegation(ctx, delAddr, validator.GetOperator(), coin.Denom) if !found { delegation = types.NewDelegation(ctx, delAddr, validator.GetOperator(), coin.Denom, newShares, validator.GlobalRewardHistory) } else { @@ -597,6 +600,11 @@ func (k Keeper) GetAllianceBondedAmount(ctx sdk.Context, delegator sdk.AccAddres // When an asset has no more tokens being delegated, go through all validators and set // validator shares to zero func (k Keeper) ResetAssetAndValidators(ctx sdk.Context, asset types.AllianceAsset) { + // When there are no more tokens recorded in the asset, clear all share records that might remain + // from rounding errors to prevent dust amounts from staying in the stores + if !asset.TotalTokens.IsZero() { + return + } k.IterateAllianceValidatorInfo(ctx, func(valAddr sdk.ValAddress, info types.AllianceValidatorInfo) (stop bool) { updatedShares := sdk.NewDecCoins() for _, share := range info.ValidatorShares { @@ -613,23 +621,22 @@ func (k Keeper) ResetAssetAndValidators(ctx sdk.Context, asset types.AllianceAss } func (k Keeper) ClearDustDelegation(ctx sdk.Context, delAddr sdk.AccAddress, validator types.AllianceValidator, asset types.AllianceAsset) { - delegation, found := k.GetDelegation(ctx, delAddr, validator, asset.Denom) - // If not found then the delegation has already been deleted, do nothing else - if !found { - return - } delegatorSharesToRemove := sdk.NewDecCoinFromDec(asset.Denom, sdk.ZeroDec()) validatorSharesToRemove := sdk.NewDecCoinFromDec(asset.Denom, sdk.ZeroDec()) - tokensLeft := types.GetDelegationTokensWithShares(delegation.Shares, validator, asset) - // If there are no tokens that can be claimed by the delegation, delete the delegation - if tokensLeft.IsZero() { - store := ctx.KVStore(k.storeKey) - delAddr := sdk.MustAccAddressFromBech32(delegation.DelegatorAddress) // acc address should always be valid here - key := types.GetDelegationKey(delAddr, validator.GetOperator(), asset.Denom) - store.Delete(key) - - delegatorSharesToRemove = sdk.NewDecCoinFromDec(asset.Denom, delegation.Shares) + delegation, found := k.GetDelegation(ctx, delAddr, validator.GetOperator(), asset.Denom) + // If not found then the delegation has already been deleted, do nothing else + if found { + tokensLeft := types.GetDelegationTokensWithShares(delegation.Shares, validator, asset) + // If there are no tokens that can be claimed by the delegation, delete the delegation + if tokensLeft.IsZero() { + store := ctx.KVStore(k.storeKey) + delAddr := sdk.MustAccAddressFromBech32(delegation.DelegatorAddress) // acc address should always be valid here + key := types.GetDelegationKey(delAddr, validator.GetOperator(), asset.Denom) + store.Delete(key) + + delegatorSharesToRemove = sdk.NewDecCoinFromDec(asset.Denom, delegation.Shares) + } } validatorTokensLeft := validator.TotalTokensWithAsset(asset) @@ -641,9 +648,5 @@ func (k Keeper) ClearDustDelegation(ctx sdk.Context, delAddr sdk.AccAddress, val validator.ReduceShares(sdk.NewDecCoins(delegatorSharesToRemove), sdk.NewDecCoins(validatorSharesToRemove)) k.SetValidator(ctx, validator) - // When there are no more tokens recorded in the asset, clear all share records that might remain - // from rounding errors to prevent dust amounts from staying in the stores - if asset.TotalTokens.IsZero() { - k.ResetAssetAndValidators(ctx, asset) - } + k.ResetAssetAndValidators(ctx, asset) } diff --git a/x/alliance/keeper/genesis.go b/x/alliance/keeper/genesis.go index 54bbdd74..47bbd7a2 100644 --- a/x/alliance/keeper/genesis.go +++ b/x/alliance/keeper/genesis.go @@ -3,8 +3,8 @@ package keeper import ( "time" + abci "github.com/cometbft/cometbft/abci/types" sdk "github.com/cosmos/cosmos-sdk/types" - abci "github.com/tendermint/tendermint/abci/types" "github.com/terra-money/alliance/x/alliance/types" ) @@ -12,6 +12,9 @@ import ( func (k Keeper) InitGenesis(ctx sdk.Context, g *types.GenesisState) []abci.ValidatorUpdate { k.SetParams(ctx, g.Params) for _, asset := range g.Assets { + if err := sdk.ValidateDenom(asset.Denom); err != nil { + panic(err) + } k.SetAsset(ctx, asset) } diff --git a/x/alliance/keeper/grpc_query.go b/x/alliance/keeper/grpc_query.go index 66641eb6..be35e5f2 100644 --- a/x/alliance/keeper/grpc_query.go +++ b/x/alliance/keeper/grpc_query.go @@ -3,6 +3,7 @@ package keeper import ( "context" "fmt" + "net/url" "github.com/terra-money/alliance/x/alliance/types" @@ -196,6 +197,11 @@ func (k QueryServer) Alliances(c context.Context, req *types.QueryAlliancesReque } func (k QueryServer) Alliance(c context.Context, req *types.QueryAllianceRequest) (*types.QueryAllianceResponse, error) { + decodedDenom, err := url.QueryUnescape(req.Denom) + if err == nil { + req.Denom = decodedDenom + } + var asset types.AllianceAsset // Get context with the information about the environment @@ -214,24 +220,28 @@ func (k QueryServer) Alliance(c context.Context, req *types.QueryAllianceRequest }, nil } -func (k QueryServer) IBCAlliance(c context.Context, request *types.QueryIBCAllianceRequest) (*types.QueryAllianceResponse, error) { +func (k QueryServer) IBCAlliance(c context.Context, request *types.QueryIBCAllianceRequest) (*types.QueryAllianceResponse, error) { //nolint:staticcheck // SA1019: types.QueryIBCAllianceRequest is deprecated req := types.QueryAllianceRequest{ Denom: "ibc/" + request.Hash, } return k.Alliance(c, &req) } -func (k QueryServer) AllianceDelegationRewards(context context.Context, request *types.QueryAllianceDelegationRewardsRequest) (*types.QueryAllianceDelegationRewardsResponse, error) { +func (k QueryServer) AllianceDelegationRewards(context context.Context, req *types.QueryAllianceDelegationRewardsRequest) (*types.QueryAllianceDelegationRewardsResponse, error) { ctx := sdk.UnwrapSDKContext(context) - delAddr, err := sdk.AccAddressFromBech32(request.DelegatorAddr) + decodedDenom, err := url.QueryUnescape(req.Denom) + if err == nil { + req.Denom = decodedDenom + } + delAddr, err := sdk.AccAddressFromBech32(req.DelegatorAddr) if err != nil { return nil, err } - valAddr, err := sdk.ValAddressFromBech32(request.ValidatorAddr) + valAddr, err := sdk.ValAddressFromBech32(req.ValidatorAddr) if err != nil { return nil, err } - _, found := k.GetAssetByDenom(ctx, request.Denom) + _, found := k.GetAssetByDenom(ctx, req.Denom) if !found { return nil, types.ErrUnknownAsset } @@ -241,12 +251,12 @@ func (k QueryServer) AllianceDelegationRewards(context context.Context, request return nil, err } - _, found = k.GetDelegation(ctx, delAddr, val, request.Denom) + _, found = k.GetDelegation(ctx, delAddr, val.GetOperator(), req.Denom) if !found { return nil, stakingtypes.ErrNoDelegation } - rewards, err := k.ClaimDelegationRewards(ctx, delAddr, val, request.Denom) + rewards, err := k.ClaimDelegationRewards(ctx, delAddr, val, req.Denom) if err != nil { return nil, err } @@ -255,7 +265,7 @@ func (k QueryServer) AllianceDelegationRewards(context context.Context, request }, nil } -func (k QueryServer) IBCAllianceDelegationRewards(context context.Context, request *types.QueryIBCAllianceDelegationRewardsRequest) (*types.QueryAllianceDelegationRewardsResponse, error) { +func (k QueryServer) IBCAllianceDelegationRewards(context context.Context, request *types.QueryIBCAllianceDelegationRewardsRequest) (*types.QueryAllianceDelegationRewardsResponse, error) { //nolint:staticcheck // SA1019: types.QueryIBCAllianceDelegationRewardsRequest is deprecated req := types.QueryAllianceDelegationRewardsRequest{ DelegatorAddr: request.DelegatorAddr, ValidatorAddr: request.ValidatorAddr, @@ -392,6 +402,10 @@ func (k QueryServer) AlliancesDelegationByValidator(c context.Context, req *type func (k QueryServer) AllianceDelegation(c context.Context, req *types.QueryAllianceDelegationRequest) (*types.QueryAllianceDelegationResponse, error) { ctx := sdk.UnwrapSDKContext(c) + decodedDenom, err := url.QueryUnescape(req.Denom) + if err == nil { + req.Denom = decodedDenom + } delAddr, err := sdk.AccAddressFromBech32(req.DelegatorAddr) if err != nil { @@ -414,7 +428,7 @@ func (k QueryServer) AllianceDelegation(c context.Context, req *types.QueryAllia return nil, status.Errorf(codes.NotFound, "AllianceAsset not found by denom %s", req.Denom) } - delegation, found := k.GetDelegation(ctx, delAddr, validator, req.Denom) + delegation, found := k.GetDelegation(ctx, delAddr, validator.GetOperator(), req.Denom) if !found { return &types.QueryAllianceDelegationResponse{ Delegation: types.DelegationResponse{ @@ -433,7 +447,7 @@ func (k QueryServer) AllianceDelegation(c context.Context, req *types.QueryAllia }, nil } -func (k QueryServer) IBCAllianceDelegation(c context.Context, request *types.QueryIBCAllianceDelegationRequest) (*types.QueryAllianceDelegationResponse, error) { +func (k QueryServer) IBCAllianceDelegation(c context.Context, request *types.QueryIBCAllianceDelegationRequest) (*types.QueryAllianceDelegationResponse, error) { //nolint:staticcheck // SA1019: types.QueryIBCAllianceDelegationRequest is deprecated req := types.QueryAllianceDelegationRequest{ DelegatorAddr: request.DelegatorAddr, ValidatorAddr: request.ValidatorAddr, diff --git a/x/alliance/keeper/hooks.go b/x/alliance/keeper/hooks.go index 6fbdeab9..872f8476 100644 --- a/x/alliance/keeper/hooks.go +++ b/x/alliance/keeper/hooks.go @@ -11,42 +11,42 @@ type Hooks struct { var _ stakingtypes.StakingHooks = Hooks{} -func (h Hooks) AfterValidatorCreated(ctx sdk.Context, valAddr sdk.ValAddress) error { +func (h Hooks) AfterValidatorCreated(_ sdk.Context, _ sdk.ValAddress) error { return nil } -func (h Hooks) BeforeValidatorModified(ctx sdk.Context, valAddr sdk.ValAddress) error { +func (h Hooks) BeforeValidatorModified(_ sdk.Context, _ sdk.ValAddress) error { return nil } -func (h Hooks) AfterValidatorRemoved(ctx sdk.Context, consAddr sdk.ConsAddress, valAddr sdk.ValAddress) error { +func (h Hooks) AfterValidatorRemoved(ctx sdk.Context, _ sdk.ConsAddress, _ sdk.ValAddress) error { h.k.QueueAssetRebalanceEvent(ctx) return nil } -func (h Hooks) AfterValidatorBonded(ctx sdk.Context, consAddr sdk.ConsAddress, valAddr sdk.ValAddress) error { +func (h Hooks) AfterValidatorBonded(ctx sdk.Context, _ sdk.ConsAddress, _ sdk.ValAddress) error { h.k.QueueAssetRebalanceEvent(ctx) return nil } -func (h Hooks) AfterValidatorBeginUnbonding(ctx sdk.Context, consAddr sdk.ConsAddress, valAddr sdk.ValAddress) error { +func (h Hooks) AfterValidatorBeginUnbonding(ctx sdk.Context, _ sdk.ConsAddress, _ sdk.ValAddress) error { h.k.QueueAssetRebalanceEvent(ctx) return nil } -func (h Hooks) BeforeDelegationCreated(ctx sdk.Context, delAddr sdk.AccAddress, valAddr sdk.ValAddress) error { +func (h Hooks) BeforeDelegationCreated(_ sdk.Context, _ sdk.AccAddress, _ sdk.ValAddress) error { return nil } -func (h Hooks) BeforeDelegationSharesModified(ctx sdk.Context, delAddr sdk.AccAddress, valAddr sdk.ValAddress) error { +func (h Hooks) BeforeDelegationSharesModified(_ sdk.Context, _ sdk.AccAddress, _ sdk.ValAddress) error { return nil } -func (h Hooks) BeforeDelegationRemoved(ctx sdk.Context, delAddr sdk.AccAddress, valAddr sdk.ValAddress) error { +func (h Hooks) BeforeDelegationRemoved(_ sdk.Context, _ sdk.AccAddress, _ sdk.ValAddress) error { return nil } -func (h Hooks) AfterDelegationModified(ctx sdk.Context, delAddr sdk.AccAddress, valAddr sdk.ValAddress) error { +func (h Hooks) AfterDelegationModified(ctx sdk.Context, _ sdk.AccAddress, _ sdk.ValAddress) error { h.k.QueueAssetRebalanceEvent(ctx) return nil } @@ -59,3 +59,10 @@ func (h Hooks) BeforeValidatorSlashed(ctx sdk.Context, valAddr sdk.ValAddress, f h.k.QueueAssetRebalanceEvent(ctx) return nil } + +func (h Hooks) AfterValidatorSlashed(_ sdk.Context, _ sdk.ConsAddress, _ sdk.ValAddress, _ sdk.Dec) { +} + +func (h Hooks) AfterUnbondingInitiated(_ sdk.Context, _ uint64) error { + return nil +} diff --git a/x/alliance/keeper/keeper.go b/x/alliance/keeper/keeper.go index 7b67bc6b..b35f6113 100644 --- a/x/alliance/keeper/keeper.go +++ b/x/alliance/keeper/keeper.go @@ -5,7 +5,7 @@ import ( "github.com/terra-money/alliance/x/alliance/types" - "github.com/tendermint/tendermint/libs/log" + "github.com/cometbft/cometbft/libs/log" "github.com/cosmos/cosmos-sdk/codec" storetypes "github.com/cosmos/cosmos-sdk/store/types" diff --git a/x/alliance/keeper/proposal.go b/x/alliance/keeper/proposal.go index 62fb0ec1..9c35bf7c 100644 --- a/x/alliance/keeper/proposal.go +++ b/x/alliance/keeper/proposal.go @@ -18,11 +18,11 @@ func (k Keeper) CreateAlliance(ctx context.Context, req *types.MsgCreateAlliance if found { return status.Errorf(codes.AlreadyExists, "Asset with denom: %s already exists", req.Denom) } - rewardStartTime := sdkCtx.BlockTime().Add(k.RewardDelayTime(sdkCtx)) asset := types.AllianceAsset{ Denom: req.Denom, RewardWeight: req.RewardWeight, + RewardWeightRange: req.RewardWeightRange, TakeRate: req.TakeRate, TotalTokens: sdk.ZeroInt(), TotalValidatorShares: sdk.ZeroDec(), @@ -42,7 +42,9 @@ func (k Keeper) UpdateAlliance(ctx context.Context, req *types.MsgUpdateAlliance if !found { return status.Errorf(codes.NotFound, "Asset with denom: %s does not exist", req.Denom) } - + if asset.RewardWeightRange.Min.GT(req.RewardWeight) || asset.RewardWeightRange.Max.LT(req.RewardWeight) { + return types.ErrRewardWeightOutOfBound + } asset.RewardWeight = req.RewardWeight asset.TakeRate = req.TakeRate asset.RewardChangeRate = req.RewardChangeRate @@ -68,7 +70,10 @@ func (k Keeper) DeleteAlliance(ctx context.Context, req *types.MsgDeleteAlliance return status.Errorf(codes.Internal, "Asset cannot be deleted because there are still %s delegations associated with it", asset.TotalTokens) } - k.DeleteAsset(sdkCtx, req.Denom) + err := k.DeleteAsset(sdkCtx, asset) + if err != nil { + return err + } return nil } diff --git a/x/alliance/keeper/reward.go b/x/alliance/keeper/reward.go index c2ed38d6..41cf7bd9 100644 --- a/x/alliance/keeper/reward.go +++ b/x/alliance/keeper/reward.go @@ -39,7 +39,12 @@ func (k Keeper) ClaimDelegationRewards(ctx sdk.Context, delAddr sdk.AccAddress, if !found { return nil, types.ErrUnknownAsset } - delegation, found := k.GetDelegation(ctx, delAddr, val, denom) + + if !asset.RewardsStarted(ctx.BlockTime()) { + return sdk.NewCoins(), nil + } + + delegation, found := k.GetDelegation(ctx, delAddr, val.GetOperator(), denom) if !found { return sdk.Coins{}, stakingtypes.ErrNoDelegatorForAddress } @@ -63,20 +68,21 @@ func (k Keeper) ClaimDelegationRewards(ctx sdk.Context, delAddr sdk.AccAddress, return nil, err } - ctx.EventManager().EmitEvents(sdk.Events{ - sdk.NewEvent( - types.EventTypeClaimDelegationRewards, - sdk.NewAttribute(types.AttributeKeyValidator, val.OperatorAddress), - sdk.NewAttribute(sdk.AttributeKeyAmount, coins.String()), - ), - }) + _ = ctx.EventManager().EmitTypedEvent( + &types.ClaimAllianceRewardsEvent{ + AllianceSender: delAddr.String(), + Validator: val.OperatorAddress, + Coins: coins, + }, + ) + return coins, nil } // CalculateDelegationRewards calculates the rewards that can be claimed for a delegation // It takes past reward_rate changes into account by using the RewardRateChangeSnapshot entry func (k Keeper) CalculateDelegationRewards(ctx sdk.Context, delegation types.Delegation, val types.AllianceValidator, asset types.AllianceAsset) (sdk.Coins, types.RewardHistories, error) { - var totalRewards sdk.Coins + totalRewards := sdk.NewCoins() currentRewardHistory := types.NewRewardHistories(val.GlobalRewardHistory) delegationRewardHistories := types.NewRewardHistories(delegation.RewardHistory) // If there are reward rate changes between last and current claim, sequentially claim with the help of the snapshots @@ -99,6 +105,8 @@ func (k Keeper) CalculateDelegationRewards(ctx sdk.Context, delegation types.Del func accumulateRewards(latestRewardHistories types.RewardHistories, rewardHistories types.RewardHistories, asset types.AllianceAsset, rewardWeight sdk.Dec, delegation types.Delegation, validator types.AllianceValidator) (sdk.Coins, types.RewardHistories) { // Go through each reward denom and accumulate rewards var rewards sdk.Coins + + delegationTokens := sdk.NewDecFromInt(types.GetDelegationTokens(delegation, validator, asset).Amount) for _, history := range latestRewardHistories { rewardHistory, found := rewardHistories.GetIndexByDenom(history.Denom) if !found { @@ -108,8 +116,6 @@ func accumulateRewards(latestRewardHistories types.RewardHistories, rewardHistor if rewardHistory.Index.GTE(history.Index) { continue } - delegationTokens := sdk.NewDecFromInt(types.GetDelegationTokens(delegation, validator, asset).Amount) - claimWeight := delegationTokens.Mul(rewardWeight) totalClaimable := (history.Index.Sub(rewardHistory.Index)).Mul(claimWeight) rewardHistory.Index = history.Index @@ -125,10 +131,15 @@ func accumulateRewards(latestRewardHistories types.RewardHistories, rewardHistor // To calculate the number of rewards claimable, take reward_history * alliance_token_amount * reward_weight func (k Keeper) AddAssetsToRewardPool(ctx sdk.Context, from sdk.AccAddress, val types.AllianceValidator, coins sdk.Coins) error { rewardHistories := types.NewRewardHistories(val.GlobalRewardHistory) + // We need some delegations before we can split rewards. Else rewards belong to no one and do nothing + if len(val.TotalDelegatorShares) == 0 { + return nil + } + totalAssetWeight := k.totalAssetWeight(ctx, val) - // We need some delegations before we can split rewards. Else rewards belong to no one if totalAssetWeight.IsZero() { - return types.ErrZeroDelegations + // Do nothing since there are no assets to distribute rewards to + return nil } for _, c := range coins { @@ -160,7 +171,10 @@ func (k Keeper) totalAssetWeight(ctx sdk.Context, val types.AllianceValidator) s if !found { continue } - totalValTokens := val.TotalDecTokensWithAsset(asset) + if !asset.RewardsStarted(ctx.BlockTime()) { + continue + } + totalValTokens := val.TotalTokensWithAsset(asset) total = total.Add(asset.RewardWeight.Mul(totalValTokens)) } return total diff --git a/x/alliance/keeper/slash.go b/x/alliance/keeper/slash.go index 892d5978..ab0a224e 100644 --- a/x/alliance/keeper/slash.go +++ b/x/alliance/keeper/slash.go @@ -1,6 +1,8 @@ package keeper import ( + "fmt" + sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" @@ -12,6 +14,11 @@ import ( // On top of slashing currently bonded delegations, we also slash re-delegations and un-delegations // that are still in the progress of unbonding func (k Keeper) SlashValidator(ctx sdk.Context, valAddr sdk.ValAddress, fraction sdk.Dec) error { + // Slashing must be checked otherwise we can end up slashing incorrect amounts + if fraction.LTE(sdk.ZeroDec()) || fraction.GT(sdk.OneDec()) { + return fmt.Errorf("slashed fraction must be greater than 0 and less than or equal to 1: %d", fraction) + } + val, err := k.GetAllianceValidator(ctx, valAddr) if err != nil { return err @@ -32,19 +39,19 @@ func (k Keeper) SlashValidator(ctx sdk.Context, valAddr sdk.ValAddress, fraction val.ValidatorShares = slashedValidatorShares k.SetValidator(ctx, val) - err = k.SlashRedelegations(ctx, valAddr, fraction) + err = k.slashRedelegations(ctx, valAddr, fraction) if err != nil { return err } - err = k.SlashUndelegations(ctx, valAddr, fraction) + err = k.slashUndelegations(ctx, valAddr, fraction) if err != nil { return err } return nil } -func (k Keeper) SlashRedelegations(ctx sdk.Context, valAddr sdk.ValAddress, fraction sdk.Dec) error { +func (k Keeper) slashRedelegations(ctx sdk.Context, valAddr sdk.ValAddress, fraction sdk.Dec) error { store := ctx.KVStore(k.storeKey) // Slash all immature re-delegations redelegationIterator := k.IterateRedelegationsBySrcValidator(ctx, valAddr) @@ -79,7 +86,7 @@ func (k Keeper) SlashRedelegations(ctx sdk.Context, valAddr sdk.ValAddress, frac return err } - delegation, found := k.GetDelegation(ctx, delAddr, dstVal, redelegation.Balance.Denom) + delegation, found := k.GetDelegation(ctx, delAddr, dstVal.GetOperator(), redelegation.Balance.Denom) if !found { continue } @@ -104,7 +111,7 @@ func (k Keeper) SlashRedelegations(ctx sdk.Context, valAddr sdk.ValAddress, frac return nil } -func (k Keeper) SlashUndelegations(ctx sdk.Context, valAddr sdk.ValAddress, fraction sdk.Dec) error { +func (k Keeper) slashUndelegations(ctx sdk.Context, valAddr sdk.ValAddress, fraction sdk.Dec) error { store := ctx.KVStore(k.storeKey) // Slash all immature re-delegations undelegationIterator := k.IterateUndelegationsBySrcValidator(ctx, valAddr) diff --git a/x/alliance/keeper/tests/asset_test.go b/x/alliance/keeper/tests/asset_test.go index 9db61d2c..1d8130e8 100644 --- a/x/alliance/keeper/tests/asset_test.go +++ b/x/alliance/keeper/tests/asset_test.go @@ -4,15 +4,15 @@ import ( "testing" "time" + abcitypes "github.com/cometbft/cometbft/abci/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - abcitypes "github.com/tendermint/tendermint/abci/types" test_helpers "github.com/terra-money/alliance/app" "github.com/terra-money/alliance/x/alliance" "github.com/terra-money/alliance/x/alliance/types" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/cosmos-sdk/x/staking/teststaking" + teststaking "github.com/cosmos/cosmos-sdk/x/staking/testutil" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" "github.com/stretchr/testify/require" ) @@ -24,17 +24,16 @@ func TestRebalancingAfterRewardsRateChange(t *testing.T) { app.AllianceKeeper.InitGenesis(ctx, &types.GenesisState{ Params: types.DefaultParams(), Assets: []types.AllianceAsset{ - types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.ZeroDec(), startTime), - types.NewAllianceAsset(AllianceDenomTwo, sdk.NewDec(10), sdk.ZeroDec(), startTime), + types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.ZeroDec(), sdk.NewDec(4), sdk.ZeroDec(), startTime), + types.NewAllianceAsset(AllianceDenomTwo, sdk.NewDec(10), sdk.NewDec(2), sdk.NewDec(12), sdk.ZeroDec(), startTime), }, }) // Set tax and rewards to be zero for easier calculation distParams := app.DistrKeeper.GetParams(ctx) distParams.CommunityTax = sdk.ZeroDec() - distParams.BaseProposerReward = sdk.ZeroDec() - distParams.BonusProposerReward = sdk.ZeroDec() - app.DistrKeeper.SetParams(ctx, distParams) + err := app.DistrKeeper.SetParams(ctx, distParams) + require.NoError(t, err) // Accounts addrs := test_helpers.AddTestAddrsIncremental(app, ctx, 4, sdk.NewCoins( @@ -79,6 +78,7 @@ func TestRebalancingAfterRewardsRateChange(t *testing.T) { err = app.AllianceKeeper.UpdateAllianceAsset(ctx, types.AllianceAsset{ Denom: AllianceDenom, RewardWeight: sdk.NewDec(2), + RewardWeightRange: types.RewardWeightRange{Min: sdk.NewDec(0), Max: sdk.NewDec(5)}, TakeRate: sdk.NewDec(10), RewardChangeRate: sdk.NewDec(0), RewardChangeInterval: 0, @@ -92,6 +92,7 @@ func TestRebalancingAfterRewardsRateChange(t *testing.T) { err = app.AllianceKeeper.UpdateAllianceAsset(ctx, types.AllianceAsset{ Denom: AllianceDenom, RewardWeight: sdk.NewDec(20), + RewardWeightRange: types.RewardWeightRange{Min: sdk.NewDec(5), Max: sdk.NewDec(25)}, TakeRate: sdk.NewDec(0), RewardChangeRate: sdk.NewDec(0), RewardChangeInterval: 0, @@ -115,6 +116,7 @@ func TestRebalancingAfterRewardsRateChange(t *testing.T) { err = app.AllianceKeeper.UpdateAllianceAsset(ctx, types.AllianceAsset{ Denom: AllianceDenom, RewardWeight: sdk.NewDec(1), + RewardWeightRange: types.RewardWeightRange{Min: sdk.NewDec(0), Max: sdk.NewDec(5)}, TakeRate: sdk.NewDec(0), RewardChangeRate: sdk.NewDec(0), RewardChangeInterval: 0, @@ -162,9 +164,9 @@ func TestRebalancingWithUnbondedValidator(t *testing.T) { // Set tax and rewards to be zero for easier calculation distParams := app.DistrKeeper.GetParams(ctx) distParams.CommunityTax = sdk.ZeroDec() - distParams.BaseProposerReward = sdk.ZeroDec() - distParams.BonusProposerReward = sdk.ZeroDec() - app.DistrKeeper.SetParams(ctx, distParams) + + err = app.DistrKeeper.SetParams(ctx, distParams) + require.NoError(t, err) // Accounts addrs := test_helpers.AddTestAddrsIncremental(app, ctx, 5, sdk.NewCoins( @@ -251,7 +253,8 @@ func TestRebalancingWithUnbondedValidator(t *testing.T) { // Set max validators to be 2 to trigger unbonding params := app.StakingKeeper.GetParams(ctx) params.MaxValidators = 2 - app.StakingKeeper.SetParams(ctx, params) + err = app.StakingKeeper.SetParams(ctx, params) + require.NoError(t, err) _, err = app.StakingKeeper.ApplyAndReturnValidatorSetUpdates(ctx) require.NoError(t, err) require.Equal(t, sdk.NewInt(13_100_000), app.StakingKeeper.TotalBondedTokens(ctx)) @@ -271,7 +274,8 @@ func TestRebalancingWithUnbondedValidator(t *testing.T) { // Set max validators to be 3 to trigger rebonding params = app.StakingKeeper.GetParams(ctx) params.MaxValidators = 3 - app.StakingKeeper.SetParams(ctx, params) + err = app.StakingKeeper.SetParams(ctx, params) + require.NoError(t, err) _, err = app.StakingKeeper.ApplyAndReturnValidatorSetUpdates(ctx) require.NoError(t, err) require.Equal(t, sdk.NewInt(18_900_000), app.StakingKeeper.TotalBondedTokens(ctx)) @@ -312,9 +316,9 @@ func TestRebalancingWithJailedValidator(t *testing.T) { // Set tax and rewards to be zero for easier calculation distParams := app.DistrKeeper.GetParams(ctx) distParams.CommunityTax = sdk.ZeroDec() - distParams.BaseProposerReward = sdk.ZeroDec() - distParams.BonusProposerReward = sdk.ZeroDec() - app.DistrKeeper.SetParams(ctx, distParams) + + err = app.DistrKeeper.SetParams(ctx, distParams) + require.NoError(t, err) // Accounts addrs := test_helpers.AddTestAddrsIncremental(app, ctx, 5, sdk.NewCoins( @@ -449,17 +453,17 @@ func TestRebalancingWithDelayedRewardsStartTime(t *testing.T) { app.AllianceKeeper.InitGenesis(ctx, &types.GenesisState{ Params: types.DefaultParams(), Assets: []types.AllianceAsset{ - types.NewAllianceAsset(AllianceDenom, sdk.MustNewDecFromStr("0.5"), sdk.MustNewDecFromStr("0.1"), startTime.Add(time.Hour*24)), - types.NewAllianceAsset(AllianceDenomTwo, sdk.MustNewDecFromStr("0.2"), sdk.MustNewDecFromStr("0.1"), startTime.Add(time.Hour*24*2)), + types.NewAllianceAsset(AllianceDenom, sdk.MustNewDecFromStr("0.5"), sdk.ZeroDec(), sdk.OneDec(), sdk.MustNewDecFromStr("0.1"), startTime.Add(time.Hour*24)), + types.NewAllianceAsset(AllianceDenomTwo, sdk.MustNewDecFromStr("0.2"), sdk.ZeroDec(), sdk.OneDec(), sdk.MustNewDecFromStr("0.1"), startTime.Add(time.Hour*24*2)), }, }) // Set tax and rewards to be zero for easier calculation distParams := app.DistrKeeper.GetParams(ctx) distParams.CommunityTax = sdk.ZeroDec() - distParams.BaseProposerReward = sdk.ZeroDec() - distParams.BonusProposerReward = sdk.ZeroDec() - app.DistrKeeper.SetParams(ctx, distParams) + + err = app.DistrKeeper.SetParams(ctx, distParams) + require.NoError(t, err) // Accounts addrs := test_helpers.AddTestAddrsIncremental(app, ctx, 5, sdk.NewCoins( @@ -572,8 +576,8 @@ func TestConsumingRebalancingEvent(t *testing.T) { app.AllianceKeeper.InitGenesis(ctx, &types.GenesisState{ Params: types.DefaultParams(), Assets: []types.AllianceAsset{ - types.NewAllianceAsset(AllianceDenom, sdk.MustNewDecFromStr("0.5"), sdk.MustNewDecFromStr("0.1"), startTime.Add(time.Hour*24)), - types.NewAllianceAsset(AllianceDenomTwo, sdk.MustNewDecFromStr("0.2"), sdk.MustNewDecFromStr("0.1"), startTime.Add(time.Hour*24*2)), + types.NewAllianceAsset(AllianceDenom, sdk.MustNewDecFromStr("0.5"), sdk.ZeroDec(), sdk.OneDec(), sdk.MustNewDecFromStr("0.1"), startTime.Add(time.Hour*24)), + types.NewAllianceAsset(AllianceDenomTwo, sdk.MustNewDecFromStr("0.2"), sdk.ZeroDec(), sdk.OneDec(), sdk.MustNewDecFromStr("0.1"), startTime.Add(time.Hour*24*2)), }, }) @@ -590,6 +594,75 @@ func TestConsumingRebalancingEvent(t *testing.T) { require.False(t, app.AllianceKeeper.ConsumeAssetRebalanceEvent(ctx)) } +func TestRewardRangeWithChangeRateOverTime(t *testing.T) { + app, ctx := createTestContext(t) + decayInterval := time.Hour * 24 * 30 + app.AllianceKeeper.InitGenesis(ctx, &types.GenesisState{ + Params: types.DefaultParams(), + Assets: []types.AllianceAsset{ + { + Denom: AllianceDenom, + RewardWeight: sdk.MustNewDecFromStr("0.075"), + RewardWeightRange: types.RewardWeightRange{Min: sdk.MustNewDecFromStr("0.05"), Max: sdk.MustNewDecFromStr("0.10")}, + TakeRate: sdk.NewDec(0), + TotalTokens: sdk.ZeroInt(), + RewardChangeRate: sdk.MustNewDecFromStr("1.5"), + RewardChangeInterval: decayInterval, + }, + { + Denom: AllianceDenomTwo, + RewardWeight: sdk.MustNewDecFromStr("0.075"), + RewardWeightRange: types.RewardWeightRange{Min: sdk.MustNewDecFromStr("0.05"), Max: sdk.MustNewDecFromStr("0.10")}, + TakeRate: sdk.NewDec(0), + TotalTokens: sdk.ZeroInt(), + RewardChangeRate: sdk.MustNewDecFromStr("0.5"), + RewardChangeInterval: decayInterval, + }, + }, + }) + asset, _ := app.AllianceKeeper.GetAssetByDenom(ctx, AllianceDenom) + assets := app.AllianceKeeper.GetAllAssets(ctx) + // Running the decay hook now should do nothing + err := app.AllianceKeeper.RewardWeightChangeHook(ctx, assets) + require.NoError(t, err) + + // Move block time to after change interval + one year + ctx = ctx.WithBlockTime(asset.RewardStartTime.Add(decayInterval * 2)) + + // Running the decay hook should update reward weight + err = app.AllianceKeeper.RewardWeightChangeHook(ctx, assets) + require.NoError(t, err) + + updatedAsset, _ := app.AllianceKeeper.GetAssetByDenom(ctx, AllianceDenom) + require.Equal(t, types.AllianceAsset{ + Denom: AllianceDenom, + RewardWeight: sdk.MustNewDecFromStr("0.10"), + RewardWeightRange: types.RewardWeightRange{Min: sdk.MustNewDecFromStr("0.05"), Max: sdk.MustNewDecFromStr("0.10")}, + TakeRate: asset.TakeRate, + TotalTokens: asset.TotalTokens, + TotalValidatorShares: asset.TotalValidatorShares, + RewardStartTime: asset.RewardStartTime, + RewardChangeRate: asset.RewardChangeRate, + RewardChangeInterval: asset.RewardChangeInterval, + LastRewardChangeTime: ctx.BlockTime(), + }, updatedAsset) + + updatedAsset, _ = app.AllianceKeeper.GetAssetByDenom(ctx, AllianceDenomTwo) + asset, _ = app.AllianceKeeper.GetAssetByDenom(ctx, AllianceDenomTwo) + require.Equal(t, types.AllianceAsset{ + Denom: AllianceDenomTwo, + RewardWeight: sdk.MustNewDecFromStr("0.05"), + RewardWeightRange: types.RewardWeightRange{Min: sdk.MustNewDecFromStr("0.05"), Max: sdk.MustNewDecFromStr("0.10")}, + TakeRate: asset.TakeRate, + TotalTokens: asset.TotalTokens, + TotalValidatorShares: asset.TotalValidatorShares, + RewardStartTime: asset.RewardStartTime, + RewardChangeRate: asset.RewardChangeRate, + RewardChangeInterval: asset.RewardChangeInterval, + LastRewardChangeTime: ctx.BlockTime(), + }, updatedAsset) +} + func TestRewardWeightDecay(t *testing.T) { var err error app, ctx := createTestContext(t) @@ -624,6 +697,7 @@ func TestRewardWeightDecay(t *testing.T) { Description: "", Denom: AllianceDenom, RewardWeight: sdk.NewDec(1), + RewardWeightRange: types.RewardWeightRange{Min: sdk.NewDec(0), Max: sdk.NewDec(5)}, TakeRate: sdk.ZeroDec(), RewardChangeRate: sdk.MustNewDecFromStr("0.5"), RewardChangeInterval: decayInterval, @@ -634,17 +708,20 @@ func TestRewardWeightDecay(t *testing.T) { assets := app.AllianceKeeper.GetAllAssets(ctx) // Running the decay hook now should do nothing - app.AllianceKeeper.RewardWeightChangeHook(ctx, assets) + err = app.AllianceKeeper.RewardWeightChangeHook(ctx, assets) + require.NoError(t, err) // Move block time to after change interval + one year ctx = ctx.WithBlockTime(asset.RewardStartTime.Add(decayInterval)) // Running the decay hook should update reward weight - app.AllianceKeeper.RewardWeightChangeHook(ctx, assets) + err = app.AllianceKeeper.RewardWeightChangeHook(ctx, assets) + require.NoError(t, err) updatedAsset, _ := app.AllianceKeeper.GetAssetByDenom(ctx, AllianceDenom) require.Equal(t, types.AllianceAsset{ Denom: AllianceDenom, RewardWeight: sdk.MustNewDecFromStr("0.5"), + RewardWeightRange: types.RewardWeightRange{Min: sdk.NewDec(0), Max: sdk.NewDec(5)}, TakeRate: asset.TakeRate, TotalTokens: asset.TotalTokens, TotalValidatorShares: asset.TotalValidatorShares, @@ -688,6 +765,7 @@ func TestRewardWeightDecay(t *testing.T) { Description: "", Denom: AllianceDenomTwo, RewardWeight: sdk.NewDec(1), + RewardWeightRange: types.RewardWeightRange{Min: sdk.NewDec(0), Max: sdk.NewDec(5)}, TakeRate: sdk.ZeroDec(), RewardChangeRate: sdk.ZeroDec(), RewardChangeInterval: decayInterval, @@ -746,6 +824,7 @@ func TestRewardWeightDecayOverTime(t *testing.T) { Description: "", Denom: AllianceDenom, RewardWeight: sdk.NewDec(1), + RewardWeightRange: types.RewardWeightRange{Min: sdk.NewDec(0), Max: sdk.NewDec(5)}, TakeRate: sdk.ZeroDec(), RewardChangeRate: decayRate, RewardChangeInterval: decayInterval, @@ -768,7 +847,8 @@ func TestRewardWeightDecayOverTime(t *testing.T) { ctx = ctx.WithBlockTime(ctx.BlockTime().Add(blockTime)).WithBlockHeight(ctx.BlockHeight() + 1) assets = app.AllianceKeeper.GetAllAssets(ctx) // Running the decay hook should update reward weight - app.AllianceKeeper.RewardWeightChangeHook(ctx, assets) + err = app.AllianceKeeper.RewardWeightChangeHook(ctx, assets) + require.NoError(t, err) } // time passed minus reward delay time (rewards and decay only start after the delay) @@ -792,8 +872,8 @@ func TestClaimTakeRate(t *testing.T) { LastTakeRateClaimTime: startTime, }, Assets: []types.AllianceAsset{ - types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.MustNewDecFromStr("0.5"), startTime), - types.NewAllianceAsset(AllianceDenomTwo, sdk.NewDec(10), sdk.NewDec(0), startTime), + types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.ZeroDec(), sdk.NewDec(5), sdk.MustNewDecFromStr("0.5"), startTime), + types.NewAllianceAsset(AllianceDenomTwo, sdk.NewDec(10), sdk.NewDec(2), sdk.NewDec(12), sdk.NewDec(0), startTime), }, }) @@ -847,7 +927,7 @@ func TestClaimTakeRate(t *testing.T) { // At the next begin block, tokens will be distributed from the fee pool cons, _ := val1.GetConsAddr() - app.DistrKeeper.AllocateTokens(ctx, 1, 1, cons, []abcitypes.VoteInfo{ + app.DistrKeeper.AllocateTokens(ctx, 1, []abcitypes.VoteInfo{ { Validator: abcitypes.Validator{ Address: cons, @@ -875,7 +955,7 @@ func TestClaimTakeRateToZero(t *testing.T) { ctx = ctx.WithBlockTime(startTime) ctx = ctx.WithBlockHeight(1) takeRateInterval := time.Minute * 5 - asset := types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.MustNewDecFromStr("0.8"), startTime) + asset := types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.ZeroDec(), sdk.NewDec(5), sdk.MustNewDecFromStr("0.8"), startTime) app.AllianceKeeper.InitGenesis(ctx, &types.GenesisState{ Params: types.Params{ RewardDelayTime: time.Minute * 60, @@ -917,3 +997,128 @@ func TestClaimTakeRateToZero(t *testing.T) { asset, _ = app.AllianceKeeper.GetAssetByDenom(ctx, AllianceDenom) require.True(t, asset.TotalTokens.GTE(sdk.OneInt())) } + +func TestClaimTakeRateForNewlyAddedAssets(t *testing.T) { + app, ctx := createTestContext(t) + startTime := time.Now().UTC() + ctx = ctx.WithBlockTime(startTime) + ctx = ctx.WithBlockHeight(1) + takeRateInterval := time.Minute * 5 + app.AllianceKeeper.InitGenesis(ctx, &types.GenesisState{ + Params: types.Params{ + RewardDelayTime: time.Minute * 60, + TakeRateClaimInterval: takeRateInterval, + LastTakeRateClaimTime: startTime, + }, + Assets: []types.AllianceAsset{ + types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.ZeroDec(), sdk.ZeroDec(), sdk.ZeroDec(), startTime), + }, + }) + + // Accounts + // feeCollectorAddr := app.AccountKeeper.GetModuleAddress(authtypes.FeeCollectorName) + delegations := app.StakingKeeper.GetAllDelegations(ctx) + valAddr1, err := sdk.ValAddressFromBech32(delegations[0].ValidatorAddress) + require.NoError(t, err) + val1, err := app.AllianceKeeper.GetAllianceValidator(ctx, valAddr1) + require.NoError(t, err) + addrs := test_helpers.AddTestAddrsIncremental(app, ctx, 1, sdk.NewCoins( + sdk.NewCoin(AllianceDenom, sdk.NewInt(1000_000_000)), + sdk.NewCoin(AllianceDenomTwo, sdk.NewInt(1000_000_000)), + )) + user1 := addrs[0] + + _, err = app.AllianceKeeper.Delegate(ctx, user1, val1, sdk.NewCoin(AllianceDenom, sdk.NewInt(1000_000_000))) + require.NoError(t, err) + + assets := app.AllianceKeeper.GetAllAssets(ctx) + err = app.AllianceKeeper.RebalanceBondTokenWeights(ctx, assets) + require.NoError(t, err) + + // Calling it immediately will not update anything + coins, err := app.AllianceKeeper.DeductAssetsHook(ctx, assets) + require.Nil(t, coins) + require.Nil(t, err) + + // Advance block time + blockTime := ctx.BlockTime().Add(time.Minute*5 + time.Second) + ctx = ctx.WithBlockTime(blockTime) + ctx = ctx.WithBlockHeight(2) + _, err = app.AllianceKeeper.DeductAssetsHook(ctx, assets) + require.NoError(t, err) + + // Last take rate claim time should be updated even though nothing has been taxed + lastClaimTime := app.AllianceKeeper.LastRewardClaimTime(ctx) + require.Equal(t, blockTime, lastClaimTime) + + err = app.AllianceKeeper.CreateAlliance(ctx, &types.MsgCreateAllianceProposal{ + Title: "New alliance", + Description: "", + Denom: AllianceDenomTwo, + RewardWeight: sdk.NewDec(1), + TakeRate: sdk.MustNewDecFromStr("0.1"), + RewardChangeRate: sdk.ZeroDec(), + RewardChangeInterval: 0, + RewardWeightRange: types.RewardWeightRange{}, + }) + require.NoError(t, err) + tax, err := app.AllianceKeeper.DeductAssetsHook(ctx, assets) + require.NoError(t, err) + + _, err = app.AllianceKeeper.Delegate(ctx, user1, val1, sdk.NewCoin(AllianceDenomTwo, sdk.NewInt(1000_000_000))) + require.NoError(t, err) + require.Len(t, tax, 0) + + assets = app.AllianceKeeper.GetAllAssets(ctx) + + // Advance block time but not yet reward delay time + blockTime = ctx.BlockTime().Add(time.Minute*5 + time.Second) + ctx = ctx.WithBlockTime(blockTime) + ctx = ctx.WithBlockHeight(3) + tax, err = app.AllianceKeeper.DeductAssetsHook(ctx, assets) + require.NoError(t, err) + require.Len(t, tax, 0) + + // Advance block time after reward delay time + blockTime = ctx.BlockTime().Add(time.Minute * 60) + ctx = ctx.WithBlockTime(blockTime) + ctx = ctx.WithBlockHeight(4) + tax, err = app.AllianceKeeper.DeductAssetsHook(ctx, assets) + require.NoError(t, err) + require.Len(t, tax, 1) +} + +func TestRewardWeightRateChange(t *testing.T) { + app, ctx := createTestContext(t) + startTime := time.Now().UTC() + ctx = ctx.WithBlockTime(startTime) + ctx = ctx.WithBlockHeight(1) + takeRateInterval := time.Minute * 5 + alliance := types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.ZeroDec(), sdk.NewDec(5), sdk.ZeroDec(), startTime) + app.AllianceKeeper.InitGenesis(ctx, &types.GenesisState{ + Params: types.Params{ + RewardDelayTime: time.Minute * 60, + TakeRateClaimInterval: takeRateInterval, + LastTakeRateClaimTime: startTime, + }, + Assets: []types.AllianceAsset{ + alliance, + }, + }) + + ctx = ctx.WithBlockTime(ctx.BlockTime().Add(time.Hour * 10)) + + err := app.AllianceKeeper.UpdateAlliance(ctx, &types.MsgUpdateAllianceProposal{ + Title: "Update", + Description: "", + Denom: alliance.Denom, + RewardWeight: alliance.RewardWeight, + TakeRate: alliance.TakeRate, + RewardChangeRate: sdk.MustNewDecFromStr("1.001"), + RewardChangeInterval: time.Minute * 5, + }) + require.NoError(t, err) + + alliance, _ = app.AllianceKeeper.GetAssetByDenom(ctx, alliance.Denom) + require.Equal(t, alliance.LastRewardChangeTime, ctx.BlockTime()) +} diff --git a/x/alliance/keeper/tests/delegation_test.go b/x/alliance/keeper/tests/delegation_test.go index 78449b20..dee3d409 100644 --- a/x/alliance/keeper/tests/delegation_test.go +++ b/x/alliance/keeper/tests/delegation_test.go @@ -11,7 +11,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" minttypes "github.com/cosmos/cosmos-sdk/x/mint/types" - "github.com/cosmos/cosmos-sdk/x/staking/teststaking" + teststaking "github.com/cosmos/cosmos-sdk/x/staking/testutil" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" "github.com/stretchr/testify/require" "golang.org/x/exp/slices" @@ -28,8 +28,8 @@ func TestDelegationWithASingleAsset(t *testing.T) { app.AllianceKeeper.InitGenesis(ctx, &types.GenesisState{ Params: types.DefaultParams(), Assets: []types.AllianceAsset{ - types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.NewDec(0), genesisTime), - types.NewAllianceAsset(AllianceDenomTwo, sdk.NewDec(10), sdk.NewDec(0), genesisTime), + types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.ZeroDec(), sdk.NewDec(5), sdk.NewDec(0), genesisTime), + types.NewAllianceAsset(AllianceDenomTwo, sdk.NewDec(10), sdk.NewDec(2), sdk.NewDec(12), sdk.NewDec(0), genesisTime), }, }) delegations := app.StakingKeeper.GetAllDelegations(ctx) @@ -86,7 +86,7 @@ func TestDelegationWithASingleAsset(t *testing.T) { }, newDelegation) // Check delegation in alliance module - allianceDelegation, found := app.AllianceKeeper.GetDelegation(ctx, delAddr, val, AllianceDenom) + allianceDelegation, found := app.AllianceKeeper.GetDelegation(ctx, delAddr, valAddr, AllianceDenom) require.True(t, found) require.Equal(t, types.Delegation{ DelegatorAddress: delAddr.String(), @@ -101,6 +101,7 @@ func TestDelegationWithASingleAsset(t *testing.T) { require.Equal(t, types.AllianceAsset{ Denom: AllianceDenom, RewardWeight: sdk.NewDec(2), + RewardWeightRange: types.RewardWeightRange{Min: sdk.NewDec(0), Max: sdk.NewDec(5)}, TakeRate: sdk.NewDec(0), TotalTokens: sdk.NewInt(1000_000), TotalValidatorShares: sdk.NewDec(1000_000), @@ -119,7 +120,7 @@ func TestDelegationWithASingleAsset(t *testing.T) { require.NoError(t, err) // Check delegation in alliance module - allianceDelegation, found = app.AllianceKeeper.GetDelegation(ctx, delAddr, val, AllianceDenom) + allianceDelegation, found = app.AllianceKeeper.GetDelegation(ctx, delAddr, valAddr, AllianceDenom) require.True(t, found) require.Equal(t, types.Delegation{ DelegatorAddress: delAddr.String(), @@ -134,6 +135,7 @@ func TestDelegationWithASingleAsset(t *testing.T) { require.Equal(t, types.AllianceAsset{ Denom: AllianceDenom, RewardWeight: sdk.NewDec(2), + RewardWeightRange: types.RewardWeightRange{Min: sdk.NewDec(0), Max: sdk.NewDec(5)}, TakeRate: sdk.NewDec(0), TotalTokens: sdk.NewInt(2000_000), TotalValidatorShares: sdk.NewDec(2000_000), @@ -161,8 +163,8 @@ func TestDelegationWithMultipleAssets(t *testing.T) { app.AllianceKeeper.InitGenesis(ctx, &types.GenesisState{ Params: types.DefaultParams(), Assets: []types.AllianceAsset{ - types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.NewDec(0), ctx.BlockTime()), - types.NewAllianceAsset(AllianceDenomTwo, sdk.NewDec(10), sdk.NewDec(0), ctx.BlockTime()), + types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.ZeroDec(), sdk.NewDec(5), sdk.NewDec(0), ctx.BlockTime()), + types.NewAllianceAsset(AllianceDenomTwo, sdk.NewDec(10), sdk.NewDec(2), sdk.NewDec(12), sdk.NewDec(0), ctx.BlockTime()), }, }) delegations := app.StakingKeeper.GetAllDelegations(ctx) @@ -225,8 +227,8 @@ func TestDelegationWithUnknownAssets(t *testing.T) { app.AllianceKeeper.InitGenesis(ctx, &types.GenesisState{ Params: types.DefaultParams(), Assets: []types.AllianceAsset{ - types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.NewDec(0), ctx.BlockTime()), - types.NewAllianceAsset(AllianceDenomTwo, sdk.NewDec(10), sdk.NewDec(0), ctx.BlockTime()), + types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.ZeroDec(), sdk.NewDec(5), sdk.NewDec(0), ctx.BlockTime()), + types.NewAllianceAsset(AllianceDenomTwo, sdk.NewDec(10), sdk.NewDec(2), sdk.NewDec(12), sdk.NewDec(0), ctx.BlockTime()), }, }) delegations := app.StakingKeeper.GetAllDelegations(ctx) @@ -253,8 +255,8 @@ func TestSuccessfulRedelegation(t *testing.T) { app.AllianceKeeper.InitGenesis(ctx, &types.GenesisState{ Params: types.DefaultParams(), Assets: []types.AllianceAsset{ - types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.NewDec(0), ctx.BlockTime()), - types.NewAllianceAsset(AllianceDenomTwo, sdk.NewDec(10), sdk.NewDec(0), ctx.BlockTime()), + types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.ZeroDec(), sdk.NewDec(5), sdk.NewDec(0), ctx.BlockTime()), + types.NewAllianceAsset(AllianceDenomTwo, sdk.NewDec(10), sdk.NewDec(2), sdk.NewDec(12), sdk.NewDec(0), ctx.BlockTime()), }, }) @@ -331,9 +333,9 @@ func TestSuccessfulRedelegation(t *testing.T) { } // Check if the delegation objects are correct - _, found := app.AllianceKeeper.GetDelegation(ctx, delAddr1, val1, AllianceDenom) + _, found := app.AllianceKeeper.GetDelegation(ctx, delAddr1, valAddr1, AllianceDenom) require.False(t, found) - dstDelegation, found := app.AllianceKeeper.GetDelegation(ctx, delAddr1, val2, AllianceDenom) + dstDelegation, found := app.AllianceKeeper.GetDelegation(ctx, delAddr1, valAddr2, AllianceDenom) require.Equal(t, types.Delegation{ DelegatorAddress: delAddr1.String(), ValidatorAddress: val2.GetOperator().String(), @@ -389,8 +391,8 @@ func TestRedelegationFailsWithNoDelegations(t *testing.T) { app.AllianceKeeper.InitGenesis(ctx, &types.GenesisState{ Params: types.DefaultParams(), Assets: []types.AllianceAsset{ - types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.NewDec(0), ctx.BlockTime()), - types.NewAllianceAsset(AllianceDenomTwo, sdk.NewDec(10), sdk.NewDec(0), ctx.BlockTime()), + types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.ZeroDec(), sdk.NewDec(5), sdk.NewDec(0), ctx.BlockTime()), + types.NewAllianceAsset(AllianceDenomTwo, sdk.NewDec(10), sdk.NewDec(2), sdk.NewDec(12), sdk.NewDec(0), ctx.BlockTime()), }, }) @@ -430,8 +432,8 @@ func TestRedelegationFailsWithTransitiveDelegation(t *testing.T) { app.AllianceKeeper.InitGenesis(ctx, &types.GenesisState{ Params: types.DefaultParams(), Assets: []types.AllianceAsset{ - types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.NewDec(0), ctx.BlockTime()), - types.NewAllianceAsset(AllianceDenomTwo, sdk.NewDec(10), sdk.NewDec(0), ctx.BlockTime()), + types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.ZeroDec(), sdk.NewDec(5), sdk.NewDec(0), ctx.BlockTime()), + types.NewAllianceAsset(AllianceDenomTwo, sdk.NewDec(10), sdk.NewDec(2), sdk.NewDec(12), sdk.NewDec(0), ctx.BlockTime()), }, }) @@ -484,8 +486,8 @@ func TestRedelegationFailsWithGreaterAmount(t *testing.T) { app.AllianceKeeper.InitGenesis(ctx, &types.GenesisState{ Params: types.DefaultParams(), Assets: []types.AllianceAsset{ - types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.NewDec(0), ctx.BlockTime()), - types.NewAllianceAsset(AllianceDenomTwo, sdk.NewDec(10), sdk.NewDec(0), ctx.BlockTime()), + types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.ZeroDec(), sdk.NewDec(5), sdk.NewDec(0), ctx.BlockTime()), + types.NewAllianceAsset(AllianceDenomTwo, sdk.NewDec(10), sdk.NewDec(2), sdk.NewDec(12), sdk.NewDec(0), ctx.BlockTime()), }, }) @@ -538,8 +540,8 @@ func TestSuccessfulUndelegation(t *testing.T) { app.AllianceKeeper.InitGenesis(ctx, &types.GenesisState{ Params: types.DefaultParams(), Assets: []types.AllianceAsset{ - types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.NewDec(0), ctx.BlockTime()), - types.NewAllianceAsset(AllianceDenomTwo, sdk.NewDec(10), sdk.NewDec(0), ctx.BlockTime()), + types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.ZeroDec(), sdk.NewDec(5), sdk.NewDec(0), ctx.BlockTime()), + types.NewAllianceAsset(AllianceDenomTwo, sdk.NewDec(10), sdk.NewDec(2), sdk.NewDec(12), sdk.NewDec(0), ctx.BlockTime()), }, }) delegations := app.StakingKeeper.GetAllDelegations(ctx) @@ -653,8 +655,8 @@ func TestUndelegationWithoutDelegation(t *testing.T) { app.AllianceKeeper.InitGenesis(ctx, &types.GenesisState{ Params: types.DefaultParams(), Assets: []types.AllianceAsset{ - types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.NewDec(0), ctx.BlockTime()), - types.NewAllianceAsset(AllianceDenomTwo, sdk.NewDec(10), sdk.NewDec(0), ctx.BlockTime()), + types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.ZeroDec(), sdk.NewDec(5), sdk.NewDec(0), ctx.BlockTime()), + types.NewAllianceAsset(AllianceDenomTwo, sdk.NewDec(10), sdk.NewDec(2), sdk.NewDec(12), sdk.NewDec(0), ctx.BlockTime()), }, }) delegations := app.StakingKeeper.GetAllDelegations(ctx) @@ -682,11 +684,13 @@ func TestUndelegateAfterClaimingTakeRate(t *testing.T) { app, ctx := createTestContext(t) startTime := time.Now() ctx = ctx.WithBlockTime(startTime).WithBlockHeight(1) + params := types.DefaultParams() + params.LastTakeRateClaimTime = startTime app.AllianceKeeper.InitGenesis(ctx, &types.GenesisState{ - Params: types.DefaultParams(), + Params: params, Assets: []types.AllianceAsset{ - types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.NewDec(0), ctx.BlockTime()), - types.NewAllianceAsset(AllianceDenomTwo, sdk.NewDec(10), sdk.MustNewDecFromStr("0.5"), ctx.BlockTime()), + types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.ZeroDec(), sdk.NewDec(5), sdk.NewDec(0), ctx.BlockTime()), + types.NewAllianceAsset(AllianceDenomTwo, sdk.NewDec(10), sdk.NewDec(2), sdk.NewDec(12), sdk.MustNewDecFromStr("0.5"), ctx.BlockTime()), }, }) queryServer := keeper.NewQueryServerImpl(app.AllianceKeeper) @@ -694,9 +698,9 @@ func TestUndelegateAfterClaimingTakeRate(t *testing.T) { // Set tax and rewards to be zero for easier calculation distParams := app.DistrKeeper.GetParams(ctx) distParams.CommunityTax = sdk.ZeroDec() - distParams.BaseProposerReward = sdk.ZeroDec() - distParams.BonusProposerReward = sdk.ZeroDec() - app.DistrKeeper.SetParams(ctx, distParams) + + err := app.DistrKeeper.SetParams(ctx, distParams) + require.NoError(t, err) // Accounts @@ -774,7 +778,7 @@ func TestUndelegateAfterClaimingTakeRate(t *testing.T) { require.NoError(t, err) // User should have everything withdrawn - _, found := app.AllianceKeeper.GetDelegation(ctx, user1, val1, AllianceDenomTwo) + _, found := app.AllianceKeeper.GetDelegation(ctx, user1, valAddr1, AllianceDenomTwo) require.False(t, found) // Delegate again @@ -806,7 +810,7 @@ func TestUndelegateAfterClaimingTakeRate(t *testing.T) { require.NoError(t, err) // User should have everything withdrawn - _, found = app.AllianceKeeper.GetDelegation(ctx, user1, val1, AllianceDenomTwo) + _, found = app.AllianceKeeper.GetDelegation(ctx, user1, valAddr1, AllianceDenomTwo) require.False(t, found) res, err = queryServer.AllianceDelegation(ctx, &types.QueryAllianceDelegationRequest{ @@ -827,17 +831,17 @@ func TestDelegationWithNativeStakingChanges(t *testing.T) { app.AllianceKeeper.InitGenesis(ctx, &types.GenesisState{ Params: types.DefaultParams(), Assets: []types.AllianceAsset{ - types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.NewDec(0), ctx.BlockTime()), - types.NewAllianceAsset(AllianceDenomTwo, sdk.NewDec(10), sdk.MustNewDecFromStr("0.5"), ctx.BlockTime()), + types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.ZeroDec(), sdk.NewDec(5), sdk.NewDec(0), ctx.BlockTime()), + types.NewAllianceAsset(AllianceDenomTwo, sdk.NewDec(10), sdk.NewDec(2), sdk.NewDec(12), sdk.MustNewDecFromStr("0.5"), ctx.BlockTime()), }, }) // Set tax and rewards to be zero for easier calculation distParams := app.DistrKeeper.GetParams(ctx) distParams.CommunityTax = sdk.ZeroDec() - distParams.BaseProposerReward = sdk.ZeroDec() - distParams.BonusProposerReward = sdk.ZeroDec() - app.DistrKeeper.SetParams(ctx, distParams) + + err := app.DistrKeeper.SetParams(ctx, distParams) + require.NoError(t, err) // Accounts diff --git a/x/alliance/keeper/tests/genesis_test.go b/x/alliance/keeper/tests/genesis_test.go index 7b24eaeb..6f660c7c 100644 --- a/x/alliance/keeper/tests/genesis_test.go +++ b/x/alliance/keeper/tests/genesis_test.go @@ -5,7 +5,7 @@ import ( "time" minttypes "github.com/cosmos/cosmos-sdk/x/mint/types" - "github.com/cosmos/cosmos-sdk/x/staking/teststaking" + teststaking "github.com/cosmos/cosmos-sdk/x/staking/testutil" test_helpers "github.com/terra-money/alliance/app" "github.com/terra-money/alliance/x/alliance/types" @@ -23,7 +23,7 @@ func TestGenesis(t *testing.T) { LastTakeRateClaimTime: time.Unix(0, 0).UTC(), }, Assets: []types.AllianceAsset{ - types.NewAllianceAsset("stake", sdk.NewDec(1), sdk.ZeroDec(), ctx.BlockTime()), + types.NewAllianceAsset("stake", sdk.NewDec(1), sdk.ZeroDec(), sdk.NewDec(2), sdk.ZeroDec(), ctx.BlockTime()), }, }) @@ -41,6 +41,7 @@ func TestGenesis(t *testing.T) { require.Equal(t, &types.AllianceAsset{ Denom: "stake", RewardWeight: sdk.NewDec(1.0), + RewardWeightRange: types.RewardWeightRange{Min: sdk.ZeroDec(), Max: sdk.NewDec(2.0)}, TakeRate: sdk.NewDec(0.0), TotalTokens: sdk.ZeroInt(), TotalValidatorShares: sdk.ZeroDec(), @@ -87,6 +88,7 @@ func TestExportAndImportGenesis(t *testing.T) { Description: "", Denom: AllianceDenom, RewardWeight: sdk.NewDec(1), + RewardWeightRange: types.RewardWeightRange{Min: sdk.NewDec(0), Max: sdk.NewDec(5)}, TakeRate: sdk.NewDec(0), RewardChangeRate: sdk.MustNewDecFromStr("0.5"), RewardChangeInterval: time.Hour * 24, @@ -112,7 +114,7 @@ func TestExportAndImportGenesis(t *testing.T) { // Trigger update asset ctx = ctx.WithBlockTime(ctx.BlockTime().Add(time.Hour * 25)).WithBlockHeight(ctx.BlockHeight() + 1) - err = app.AllianceKeeper.UpdateAllianceAsset(ctx, types.NewAllianceAsset(AllianceDenom, sdk.MustNewDecFromStr("0.5"), sdk.ZeroDec(), ctx.BlockTime())) + err = app.AllianceKeeper.UpdateAllianceAsset(ctx, types.NewAllianceAsset(AllianceDenom, sdk.MustNewDecFromStr("0.5"), sdk.ZeroDec(), sdk.OneDec(), sdk.ZeroDec(), ctx.BlockTime())) require.NoError(t, err) genesisState := app.AllianceKeeper.ExportGenesis(ctx) @@ -141,3 +143,18 @@ func TestExportAndImportGenesis(t *testing.T) { iter2.Next() } } + +func TestGenesisLastRewardClaimTime(t *testing.T) { + app, ctx := createTestContext(t) + ctx = ctx.WithBlockTime(time.Now()).WithBlockHeight(1) + params := types.DefaultParams() + app.AllianceKeeper.InitGenesis(ctx, &types.GenesisState{ + Params: params, + Assets: []types.AllianceAsset{}, + }) + + assets := app.AllianceKeeper.GetAllAssets(ctx) + _, err := app.AllianceKeeper.DeductAssetsHook(ctx, assets) + require.NoError(t, err) + require.Equal(t, app.AllianceKeeper.LastRewardClaimTime(ctx), ctx.BlockTime()) +} diff --git a/x/alliance/keeper/tests/grpc_query_test.go b/x/alliance/keeper/tests/grpc_query_test.go index 90697829..23e36f51 100644 --- a/x/alliance/keeper/tests/grpc_query_test.go +++ b/x/alliance/keeper/tests/grpc_query_test.go @@ -4,15 +4,15 @@ import ( "testing" "time" - "github.com/cosmos/cosmos-sdk/x/staking/teststaking" + teststaking "github.com/cosmos/cosmos-sdk/x/staking/testutil" "cosmossdk.io/math" + abcitypes "github.com/cometbft/cometbft/abci/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" minttypes "github.com/cosmos/cosmos-sdk/x/mint/types" "github.com/stretchr/testify/require" - abcitypes "github.com/tendermint/tendermint/abci/types" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" @@ -32,16 +32,18 @@ func TestQueryAlliances(t *testing.T) { Params: types.DefaultParams(), Assets: []types.AllianceAsset{ { - Denom: AllianceDenom, - RewardWeight: sdk.NewDec(2), - TakeRate: sdk.NewDec(0), - TotalTokens: sdk.ZeroInt(), + Denom: AllianceDenom, + RewardWeight: sdk.NewDec(2), + RewardWeightRange: types.RewardWeightRange{Min: sdk.NewDec(0), Max: sdk.NewDec(5)}, + TakeRate: sdk.NewDec(0), + TotalTokens: sdk.ZeroInt(), }, { - Denom: AllianceDenomTwo, - RewardWeight: sdk.NewDec(10), - TakeRate: sdk.MustNewDecFromStr("0.14159265359"), - TotalTokens: sdk.ZeroInt(), + Denom: AllianceDenomTwo, + RewardWeight: sdk.NewDec(10), + RewardWeightRange: types.RewardWeightRange{Min: sdk.NewDec(2), Max: sdk.NewDec(12)}, + TakeRate: sdk.MustNewDecFromStr("0.14159265359"), + TotalTokens: sdk.ZeroInt(), }, }, }) @@ -57,6 +59,7 @@ func TestQueryAlliances(t *testing.T) { { Denom: "alliance", RewardWeight: sdk.NewDec(2), + RewardWeightRange: types.RewardWeightRange{Min: sdk.NewDec(0), Max: sdk.NewDec(5)}, TakeRate: sdk.NewDec(0), TotalTokens: sdk.ZeroInt(), TotalValidatorShares: sdk.NewDec(0), @@ -66,6 +69,7 @@ func TestQueryAlliances(t *testing.T) { { Denom: "alliance2", RewardWeight: sdk.NewDec(10), + RewardWeightRange: types.RewardWeightRange{Min: sdk.NewDec(2), Max: sdk.NewDec(12)}, TakeRate: sdk.MustNewDecFromStr("0.14159265359"), TotalTokens: sdk.ZeroInt(), TotalValidatorShares: sdk.NewDec(0), @@ -91,6 +95,7 @@ func TestQueryAnUniqueAlliance(t *testing.T) { { Denom: AllianceDenom, RewardWeight: sdk.NewDec(2), + RewardWeightRange: types.RewardWeightRange{Min: sdk.NewDec(0), Max: sdk.NewDec(5)}, TakeRate: sdk.NewDec(0), TotalTokens: sdk.ZeroInt(), RewardChangeRate: sdk.NewDec(0), @@ -99,6 +104,7 @@ func TestQueryAnUniqueAlliance(t *testing.T) { { Denom: AllianceDenomTwo, RewardWeight: sdk.NewDec(10), + RewardWeightRange: types.RewardWeightRange{Min: sdk.NewDec(2), Max: sdk.NewDec(12)}, TakeRate: sdk.MustNewDecFromStr("0.14159265359"), TotalTokens: sdk.ZeroInt(), RewardChangeRate: sdk.NewDec(0), @@ -119,6 +125,7 @@ func TestQueryAnUniqueAlliance(t *testing.T) { Alliance: &types.AllianceAsset{ Denom: "alliance2", RewardWeight: sdk.NewDec(10), + RewardWeightRange: types.RewardWeightRange{Min: sdk.NewDec(2), Max: sdk.NewDec(12)}, TakeRate: sdk.MustNewDecFromStr("0.14159265359"), TotalTokens: sdk.ZeroInt(), TotalValidatorShares: sdk.NewDec(0), @@ -139,6 +146,7 @@ func TestQueryAnUniqueIBCAlliance(t *testing.T) { { Denom: "ibc/" + AllianceDenomTwo, RewardWeight: sdk.NewDec(10), + RewardWeightRange: types.RewardWeightRange{Min: sdk.NewDec(2), Max: sdk.NewDec(12)}, TakeRate: sdk.MustNewDecFromStr("0.14159265359"), TotalTokens: sdk.ZeroInt(), RewardChangeRate: sdk.NewDec(0), @@ -149,7 +157,10 @@ func TestQueryAnUniqueIBCAlliance(t *testing.T) { queryServer := keeper.NewQueryServerImpl(app.AllianceKeeper) // WHEN: QUERYING THE ALLIANCES LIST - alliances, err := queryServer.IBCAlliance(ctx, &types.QueryIBCAllianceRequest{ + alliances, err := queryServer.Alliance(ctx, &types.QueryAllianceRequest{ + Denom: "ibc%2Falliance2", + }) + alliancesIbcEndpoint, err2 := queryServer.IBCAlliance(ctx, &types.QueryIBCAllianceRequest{ //nolint:staticcheck // SA1019: types.types.QueryIBCAllianceRequest is deprecated Hash: "alliance2", }) @@ -159,6 +170,7 @@ func TestQueryAnUniqueIBCAlliance(t *testing.T) { Alliance: &types.AllianceAsset{ Denom: "ibc/alliance2", RewardWeight: sdk.NewDec(10), + RewardWeightRange: types.RewardWeightRange{Min: sdk.NewDec(2), Max: sdk.NewDec(12)}, TakeRate: sdk.MustNewDecFromStr("0.14159265359"), TotalTokens: sdk.ZeroInt(), TotalValidatorShares: sdk.NewDec(0), @@ -166,6 +178,20 @@ func TestQueryAnUniqueIBCAlliance(t *testing.T) { RewardChangeInterval: 0, }, }, alliances) + + require.Nil(t, err2) + require.Equal(t, &types.QueryAllianceResponse{ + Alliance: &types.AllianceAsset{ + Denom: "ibc/alliance2", + RewardWeight: sdk.NewDec(10), + RewardWeightRange: types.RewardWeightRange{Min: sdk.NewDec(2), Max: sdk.NewDec(12)}, + TakeRate: sdk.MustNewDecFromStr("0.14159265359"), + TotalTokens: sdk.ZeroInt(), + TotalValidatorShares: sdk.NewDec(0), + RewardChangeRate: sdk.NewDec(0), + RewardChangeInterval: 0, + }, + }, alliancesIbcEndpoint) } func TestQueryAllianceNotFound(t *testing.T) { @@ -291,7 +317,7 @@ func TestClaimQueryReward(t *testing.T) { // ... at the next begin block, tokens will be distributed from the fee pool... cons, _ := val1.GetConsAddr() - app.DistrKeeper.AllocateTokens(ctx, 1, 1, cons, []abcitypes.VoteInfo{ + app.DistrKeeper.AllocateTokens(ctx, 1, []abcitypes.VoteInfo{ { Validator: abcitypes.Validator{ Address: cons, diff --git a/x/alliance/keeper/tests/keeper_test.go b/x/alliance/keeper/tests/keeper_test.go index 380ee041..ea34bc44 100644 --- a/x/alliance/keeper/tests/keeper_test.go +++ b/x/alliance/keeper/tests/keeper_test.go @@ -5,12 +5,12 @@ import ( "github.com/terra-money/alliance/app" + tmproto "github.com/cometbft/cometbft/proto/tendermint/types" sdk "github.com/cosmos/cosmos-sdk/types" - tmproto "github.com/tendermint/tendermint/proto/tendermint/types" ) func createTestContext(t *testing.T) (*app.App, sdk.Context) { - app := app.Setup(t, false) + app := app.Setup(t) ctx := app.BaseApp.NewContext(false, tmproto.Header{}) return app, ctx } diff --git a/x/alliance/keeper/tests/proposal_test.go b/x/alliance/keeper/tests/proposal_test.go index 96a0db05..8cfddc38 100644 --- a/x/alliance/keeper/tests/proposal_test.go +++ b/x/alliance/keeper/tests/proposal_test.go @@ -22,11 +22,12 @@ func TestCreateAlliance(t *testing.T) { // WHEN createErr := app.AllianceKeeper.CreateAlliance(ctx, &types.MsgCreateAllianceProposal{ - Title: "", - Description: "", - Denom: "uluna", - RewardWeight: sdk.OneDec(), - TakeRate: sdk.OneDec(), + Title: "", + Description: "", + Denom: "uluna", + RewardWeight: sdk.OneDec(), + RewardWeightRange: types.RewardWeightRange{Min: sdk.NewDec(0), Max: sdk.NewDec(5)}, + TakeRate: sdk.OneDec(), }) alliancesRes, alliancesErr := queryServer.Alliances(ctx, &types.QueryAlliancesRequest{}) @@ -38,6 +39,7 @@ func TestCreateAlliance(t *testing.T) { { Denom: "uluna", RewardWeight: sdk.NewDec(1), + RewardWeightRange: types.RewardWeightRange{Min: sdk.NewDec(0), Max: sdk.NewDec(5)}, TakeRate: sdk.NewDec(1), TotalTokens: sdk.ZeroInt(), TotalValidatorShares: sdk.NewDec(0), @@ -62,7 +64,7 @@ func TestCreateAllianceFailWithDuplicatedDenom(t *testing.T) { app.AllianceKeeper.InitGenesis(ctx, &types.GenesisState{ Params: types.DefaultParams(), Assets: []types.AllianceAsset{ - types.NewAllianceAsset("uluna", sdk.NewDec(1), sdk.NewDec(0), startTime), + types.NewAllianceAsset("uluna", sdk.NewDec(1), sdk.ZeroDec(), sdk.NewDec(2), sdk.NewDec(0), startTime), }, }) @@ -90,6 +92,7 @@ func TestUpdateAlliance(t *testing.T) { { Denom: "uluna", RewardWeight: sdk.NewDec(2), + RewardWeightRange: types.RewardWeightRange{Min: sdk.NewDec(0), Max: sdk.NewDec(10)}, TakeRate: sdk.OneDec(), TotalTokens: sdk.ZeroInt(), TotalValidatorShares: sdk.NewDec(0), @@ -118,6 +121,7 @@ func TestUpdateAlliance(t *testing.T) { { Denom: "uluna", RewardWeight: sdk.NewDec(6), + RewardWeightRange: types.RewardWeightRange{Min: sdk.NewDec(0), Max: sdk.NewDec(10)}, TakeRate: sdk.NewDec(7), TotalTokens: sdk.ZeroInt(), TotalValidatorShares: sdk.NewDec(0), diff --git a/x/alliance/keeper/tests/reward_test.go b/x/alliance/keeper/tests/reward_test.go index 701bfb14..cdc8f6ae 100644 --- a/x/alliance/keeper/tests/reward_test.go +++ b/x/alliance/keeper/tests/reward_test.go @@ -5,15 +5,16 @@ import ( "time" test_helpers "github.com/terra-money/alliance/app" + "github.com/terra-money/alliance/x/alliance/keeper" "github.com/terra-money/alliance/x/alliance/types" + abcitypes "github.com/cometbft/cometbft/abci/types" sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" minttypes "github.com/cosmos/cosmos-sdk/x/mint/types" - "github.com/cosmos/cosmos-sdk/x/staking/teststaking" + teststaking "github.com/cosmos/cosmos-sdk/x/staking/testutil" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" "github.com/stretchr/testify/require" - abcitypes "github.com/tendermint/tendermint/abci/types" ) func TestRewardPoolAndGlobalIndex(t *testing.T) { @@ -22,16 +23,18 @@ func TestRewardPoolAndGlobalIndex(t *testing.T) { Params: types.DefaultParams(), Assets: []types.AllianceAsset{ { - Denom: AllianceDenom, - RewardWeight: sdk.NewDec(2), - TakeRate: sdk.NewDec(0), - TotalTokens: sdk.ZeroInt(), + Denom: AllianceDenom, + RewardWeight: sdk.NewDec(2), + RewardWeightRange: types.RewardWeightRange{Min: sdk.ZeroDec(), Max: sdk.NewDec(5)}, + TakeRate: sdk.NewDec(0), + TotalTokens: sdk.ZeroInt(), }, { - Denom: AllianceDenomTwo, - RewardWeight: sdk.NewDec(10), - TakeRate: sdk.NewDec(0), - TotalTokens: sdk.ZeroInt(), + Denom: AllianceDenomTwo, + RewardWeight: sdk.NewDec(10), + RewardWeightRange: types.RewardWeightRange{Min: sdk.NewDec(5), Max: sdk.NewDec(15)}, + TakeRate: sdk.NewDec(0), + TotalTokens: sdk.ZeroInt(), }, }, }) @@ -59,10 +62,6 @@ func TestRewardPoolAndGlobalIndex(t *testing.T) { coin := app.BankKeeper.GetBalance(ctx, mintPoolAddr, "stake") require.Equal(t, sdk.NewCoin("stake", sdk.NewInt(4000_000)), coin) - // Transfer to reward pool without delegations will fail - err = app.AllianceKeeper.AddAssetsToRewardPool(ctx, mintPoolAddr, val1, sdk.NewCoins(sdk.NewCoin("stake", sdk.NewInt(2000_000)))) - require.Error(t, err) - _, err = app.AllianceKeeper.Delegate(ctx, user1, val1, sdk.NewCoin(AllianceDenom, sdk.NewInt(1000_000))) require.NoError(t, err) assets := app.AllianceKeeper.GetAllAssets(ctx) @@ -130,8 +129,8 @@ func TestClaimRewards(t *testing.T) { app.AllianceKeeper.InitGenesis(ctx, &types.GenesisState{ Params: types.DefaultParams(), Assets: []types.AllianceAsset{ - types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.NewDec(0), ctx.BlockTime()), - types.NewAllianceAsset(AllianceDenomTwo, sdk.NewDec(10), sdk.NewDec(0), ctx.BlockTime()), + types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.NewDec(0), sdk.NewDec(5), sdk.NewDec(0), ctx.BlockTime()), + types.NewAllianceAsset(AllianceDenomTwo, sdk.NewDec(10), sdk.NewDec(2), sdk.NewDec(12), sdk.NewDec(0), ctx.BlockTime()), }, }) @@ -244,15 +243,123 @@ func TestClaimRewards(t *testing.T) { indices := types.NewRewardHistories(val1.GlobalRewardHistory) // Check that all delegations have updated local indices - delegation, found := app.AllianceKeeper.GetDelegation(ctx, user1, val1, AllianceDenom) + delegation, found := app.AllianceKeeper.GetDelegation(ctx, user1, valAddr1, AllianceDenom) require.True(t, found) require.Equal(t, indices, types.NewRewardHistories(delegation.RewardHistory)) - delegation, found = app.AllianceKeeper.GetDelegation(ctx, user2, val1, AllianceDenomTwo) + delegation, found = app.AllianceKeeper.GetDelegation(ctx, user2, valAddr1, AllianceDenomTwo) require.True(t, found) require.Equal(t, indices, types.NewRewardHistories(delegation.RewardHistory)) } +func TestClaimRewardsBeforeRewardsIssuance(t *testing.T) { + app, ctx := createTestContext(t) + ctx = ctx.WithBlockTime(time.Now()) + app.AllianceKeeper.InitGenesis(ctx, &types.GenesisState{ + Params: types.DefaultParams(), + Assets: []types.AllianceAsset{ + types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.NewDec(0), sdk.NewDec(5), sdk.NewDec(0), ctx.BlockTime().Add(-time.Hour)), + types.NewAllianceAsset(AllianceDenomTwo, sdk.NewDec(10), sdk.NewDec(2), sdk.NewDec(12), sdk.NewDec(0), ctx.BlockTime().Add(time.Hour)), + }, + }) + queryServer := keeper.NewQueryServerImpl(app.AllianceKeeper) + + // Set tax and rewards to be zero for easier calculation + distParams := app.DistrKeeper.GetParams(ctx) + distParams.CommunityTax = sdk.ZeroDec() + + err := app.DistrKeeper.SetParams(ctx, distParams) + require.NoError(t, err) + + // Accounts + mintPoolAddr := app.AccountKeeper.GetModuleAddress(minttypes.ModuleName) + delegations := app.StakingKeeper.GetAllDelegations(ctx) + valAddr1, err := sdk.ValAddressFromBech32(delegations[0].ValidatorAddress) + require.NoError(t, err) + val1, err := app.AllianceKeeper.GetAllianceValidator(ctx, valAddr1) + require.NoError(t, err) + addrs := test_helpers.AddTestAddrsIncremental(app, ctx, 2, sdk.NewCoins( + sdk.NewCoin(AllianceDenom, sdk.NewInt(1000_000)), + sdk.NewCoin(AllianceDenomTwo, sdk.NewInt(1000_000)), + )) + user1 := addrs[0] + user2 := addrs[1] + + // Mint tokens + err = app.BankKeeper.MintCoins(ctx, minttypes.ModuleName, sdk.NewCoins(sdk.NewCoin("stake", sdk.NewInt(6000_000)))) + require.NoError(t, err) + err = app.BankKeeper.MintCoins(ctx, minttypes.ModuleName, sdk.NewCoins(sdk.NewCoin("stake2", sdk.NewInt(6000_000)))) + require.NoError(t, err) + + // New delegation from user 1 + _, err = app.AllianceKeeper.Delegate(ctx, user1, val1, sdk.NewCoin(AllianceDenom, sdk.NewInt(1000_000))) + require.NoError(t, err) + assets := app.AllianceKeeper.GetAllAssets(ctx) + app.AllianceKeeper.InitializeAllianceAssets(ctx, assets) + err = app.AllianceKeeper.RebalanceBondTokenWeights(ctx, assets) + require.NoError(t, err) + + // Transfer to reward pool + err = app.AllianceKeeper.AddAssetsToRewardPool(ctx, mintPoolAddr, val1, sdk.NewCoins(sdk.NewCoin("stake", sdk.NewInt(2000_000)))) + require.NoError(t, err) + + // New delegation from user 2 + _, err = app.AllianceKeeper.Delegate(ctx, user2, val1, sdk.NewCoin(AllianceDenomTwo, sdk.NewInt(1000_000))) + require.NoError(t, err) + assets = app.AllianceKeeper.GetAllAssets(ctx) + app.AllianceKeeper.InitializeAllianceAssets(ctx, assets) + err = app.AllianceKeeper.RebalanceBondTokenWeights(ctx, assets) + require.NoError(t, err) + + // Transfer to reward pool + err = app.AllianceKeeper.AddAssetsToRewardPool(ctx, mintPoolAddr, val1, sdk.NewCoins(sdk.NewCoin("stake", sdk.NewInt(2000_000)))) + require.NoError(t, err) + + // User 1 claims rewards + // Should get all the rewards in the pool + coins, err := app.AllianceKeeper.ClaimDelegationRewards(ctx, user1, val1, AllianceDenom) + require.NoError(t, err) + require.Equal(t, sdk.NewCoins(sdk.NewCoin("stake", sdk.NewInt(4_000_000))), coins) + + // SInce user 1 claimed rewards, there should be no tokens in rewards pool + res, err := queryServer.AllianceDelegationRewards(ctx, &types.QueryAllianceDelegationRewardsRequest{ + DelegatorAddr: user1.String(), + ValidatorAddr: val1.OperatorAddress, + Denom: AllianceDenom, + }) + require.NoError(t, err) + require.Equal(t, []sdk.Coin{}, res.Rewards) + + // User 2 shouldn't have staking rewards + // because RewardStartTime is in the future + // for the AllianceDenomTwo. + coins, err = app.AllianceKeeper.ClaimDelegationRewards(ctx, user2, val1, AllianceDenomTwo) + require.NoError(t, err) + require.Equal(t, sdk.NewCoins(), coins) + + // Move time forward so alliance 2 is enabled + ctx = ctx.WithBlockHeight(ctx.BlockHeight() + 1).WithBlockTime(ctx.BlockTime().Add(2 * time.Hour)) + assets = app.AllianceKeeper.GetAllAssets(ctx) + app.AllianceKeeper.InitializeAllianceAssets(ctx, assets) + err = app.AllianceKeeper.RebalanceBondTokenWeights(ctx, assets) + require.NoError(t, err) + + // User 2 should still not have staking rewards + // because all reward distributions happened before activation + coins, err = app.AllianceKeeper.ClaimDelegationRewards(ctx, user2, val1, AllianceDenomTwo) + require.NoError(t, err) + require.Len(t, coins, 0) + + // Transfer to reward pool + err = app.AllianceKeeper.AddAssetsToRewardPool(ctx, mintPoolAddr, val1, sdk.NewCoins(sdk.NewCoin("stake", sdk.NewInt(2000_000)))) + require.NoError(t, err) + + // User 2 should now have rewards + coins, err = app.AllianceKeeper.ClaimDelegationRewards(ctx, user2, val1, AllianceDenomTwo) + require.NoError(t, err) + require.Len(t, coins, 1) +} + func TestClaimRewardsWithMultipleValidators(t *testing.T) { var err error app, ctx := createTestContext(t) @@ -261,17 +368,17 @@ func TestClaimRewardsWithMultipleValidators(t *testing.T) { app.AllianceKeeper.InitGenesis(ctx, &types.GenesisState{ Params: types.DefaultParams(), Assets: []types.AllianceAsset{ - types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.NewDec(0), startTime), - types.NewAllianceAsset(AllianceDenomTwo, sdk.NewDec(10), sdk.NewDec(0), startTime), + types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.NewDec(0), sdk.NewDec(5), sdk.NewDec(0), ctx.BlockTime()), + types.NewAllianceAsset(AllianceDenomTwo, sdk.NewDec(10), sdk.NewDec(2), sdk.NewDec(12), sdk.NewDec(0), ctx.BlockTime()), }, }) // Set tax and rewards to be zero for easier calculation distParams := app.DistrKeeper.GetParams(ctx) distParams.CommunityTax = sdk.ZeroDec() - distParams.BaseProposerReward = sdk.ZeroDec() - distParams.BonusProposerReward = sdk.ZeroDec() - app.DistrKeeper.SetParams(ctx, distParams) + + err = app.DistrKeeper.SetParams(ctx, distParams) + require.NoError(t, err) // Accounts addrs := test_helpers.AddTestAddrsIncremental(app, ctx, 4, sdk.NewCoins( @@ -340,7 +447,7 @@ func TestClaimRewardsWithMultipleValidators(t *testing.T) { cons1, _ := val1.GetConsAddr() cons2, _ := val2.GetConsAddr() var votingPower int64 = 12 - app.DistrKeeper.AllocateTokens(ctx, votingPower, votingPower, cons1, []abcitypes.VoteInfo{ + app.DistrKeeper.AllocateTokens(ctx, votingPower, []abcitypes.VoteInfo{ { Validator: abcitypes.Validator{ Address: cons1, @@ -385,17 +492,17 @@ func TestClaimRewardsAfterRewardsRatesChange(t *testing.T) { app.AllianceKeeper.InitGenesis(ctx, &types.GenesisState{ Params: types.DefaultParams(), Assets: []types.AllianceAsset{ - types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.NewDec(0), ctx.BlockTime()), - types.NewAllianceAsset(AllianceDenomTwo, sdk.NewDec(10), sdk.NewDec(0), ctx.BlockTime()), + types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.NewDec(0), sdk.NewDec(5), sdk.NewDec(0), ctx.BlockTime()), + types.NewAllianceAsset(AllianceDenomTwo, sdk.NewDec(10), sdk.NewDec(2), sdk.NewDec(12), sdk.NewDec(0), ctx.BlockTime()), }, }) // Set tax and rewards to be zero for easier calculation distParams := app.DistrKeeper.GetParams(ctx) distParams.CommunityTax = sdk.ZeroDec() - distParams.BaseProposerReward = sdk.ZeroDec() - distParams.BonusProposerReward = sdk.ZeroDec() - app.DistrKeeper.SetParams(ctx, distParams) + + err = app.DistrKeeper.SetParams(ctx, distParams) + require.NoError(t, err) // Accounts bondDenom := app.StakingKeeper.BondDenom(ctx) @@ -464,7 +571,7 @@ func TestClaimRewardsAfterRewardsRatesChange(t *testing.T) { cons2, _ := val2.GetConsAddr() power2 := val2.ConsensusPower(app.StakingKeeper.PowerReduction(ctx)) - app.DistrKeeper.AllocateTokens(ctx, power1+power2, power1+power2, cons1, []abcitypes.VoteInfo{ + app.DistrKeeper.AllocateTokens(ctx, power1+power2, []abcitypes.VoteInfo{ { Validator: abcitypes.Validator{ Address: cons1, @@ -481,7 +588,7 @@ func TestClaimRewardsAfterRewardsRatesChange(t *testing.T) { }, }) - err = app.AllianceKeeper.UpdateAllianceAsset(ctx, types.NewAllianceAsset(AllianceDenom, sdk.NewDec(10), sdk.NewDec(0), ctx.BlockTime())) + err = app.AllianceKeeper.UpdateAllianceAsset(ctx, types.NewAllianceAsset(AllianceDenom, sdk.NewDec(10), sdk.NewDec(2), sdk.NewDec(12), sdk.NewDec(0), ctx.BlockTime())) require.NoError(t, err) assets = app.AllianceKeeper.GetAllAssets(ctx) err = app.AllianceKeeper.RebalanceBondTokenWeights(ctx, assets) @@ -511,7 +618,7 @@ func TestClaimRewardsAfterRewardsRatesChange(t *testing.T) { val2, _ = app.AllianceKeeper.GetAllianceValidator(ctx, valAddr2) power2 = val2.ConsensusPower(app.StakingKeeper.PowerReduction(ctx)) - app.DistrKeeper.AllocateTokens(ctx, power1+power2, power1+power2, cons1, []abcitypes.VoteInfo{ + app.DistrKeeper.AllocateTokens(ctx, power1+power2, []abcitypes.VoteInfo{ { Validator: abcitypes.Validator{ Address: cons1, @@ -548,7 +655,7 @@ func TestClaimRewardsAfterRewardsRatesChange(t *testing.T) { val2, _ = app.AllianceKeeper.GetAllianceValidator(ctx, valAddr2) power2 = val2.ConsensusPower(app.StakingKeeper.PowerReduction(ctx)) - app.DistrKeeper.AllocateTokens(ctx, power1+power2, power1+power2, cons1, []abcitypes.VoteInfo{ + app.DistrKeeper.AllocateTokens(ctx, power1+power2, []abcitypes.VoteInfo{ { Validator: abcitypes.Validator{ Address: cons1, @@ -589,9 +696,9 @@ func TestRewardClaimingAfterRatesDecay(t *testing.T) { // Set tax and rewards to be zero for easier calculation distParams := app.DistrKeeper.GetParams(ctx) distParams.CommunityTax = sdk.ZeroDec() - distParams.BaseProposerReward = sdk.ZeroDec() - distParams.BonusProposerReward = sdk.ZeroDec() - app.DistrKeeper.SetParams(ctx, distParams) + + err = app.DistrKeeper.SetParams(ctx, distParams) + require.NoError(t, err) // Accounts addrs := test_helpers.AddTestAddrsIncremental(app, ctx, 5, sdk.NewCoins( @@ -620,6 +727,7 @@ func TestRewardClaimingAfterRatesDecay(t *testing.T) { Description: "", Denom: AllianceDenom, RewardWeight: sdk.NewDec(1), + RewardWeightRange: types.RewardWeightRange{Min: sdk.NewDec(0), Max: sdk.NewDec(5)}, TakeRate: sdk.ZeroDec(), RewardChangeRate: decayRate, RewardChangeInterval: decayInterval, @@ -632,6 +740,7 @@ func TestRewardClaimingAfterRatesDecay(t *testing.T) { Description: "", Denom: AllianceDenomTwo, RewardWeight: sdk.NewDec(1), + RewardWeightRange: types.RewardWeightRange{Min: sdk.NewDec(0), Max: sdk.NewDec(5)}, TakeRate: sdk.ZeroDec(), RewardChangeRate: sdk.OneDec(), RewardChangeInterval: time.Duration(0), @@ -656,7 +765,8 @@ func TestRewardClaimingAfterRatesDecay(t *testing.T) { assets = app.AllianceKeeper.GetAllAssets(ctx) // Running the decay hook should update reward weight - app.AllianceKeeper.RewardWeightChangeHook(ctx, assets) + err = app.AllianceKeeper.RewardWeightChangeHook(ctx, assets) + require.NoError(t, err) asset, _ := app.AllianceKeeper.GetAssetByDenom(ctx, AllianceDenom) require.Equal(t, sdk.MustNewDecFromStr("0.25"), asset.RewardWeight) err = app.AllianceKeeper.AddAssetsToRewardPool(ctx, addrs[0], val0, sdk.NewCoins(sdk.NewCoin(bondDenom, sdk.NewInt(1000_000)))) @@ -670,3 +780,202 @@ func TestRewardClaimingAfterRatesDecay(t *testing.T) { // Expect total claimed rewards to be whatever that was added require.Equal(t, sdk.NewInt(2000_000), coins.Add(coins2...).AmountOf(bondDenom)) } + +func TestClaimRewardsAfterRebalancing(t *testing.T) { + var err error + app, ctx := createTestContext(t) + mintPoolAddr := app.AccountKeeper.GetModuleAddress(minttypes.ModuleName) + startTime := time.Now() + ctx = ctx.WithBlockTime(startTime) + app.AllianceKeeper.InitGenesis(ctx, &types.GenesisState{ + Params: types.DefaultParams(), + Assets: []types.AllianceAsset{ + types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.NewDec(0), sdk.NewDec(5), sdk.NewDec(0), ctx.BlockTime()), + types.NewAllianceAsset(AllianceDenomTwo, sdk.NewDec(10), sdk.NewDec(2), sdk.NewDec(12), sdk.NewDec(0), ctx.BlockTime()), + }, + }) + + // Set tax and rewards to be zero for easier calculation + distParams := app.DistrKeeper.GetParams(ctx) + distParams.CommunityTax = sdk.ZeroDec() + + err = app.DistrKeeper.SetParams(ctx, distParams) + require.NoError(t, err) + + // Accounts + addrs := test_helpers.AddTestAddrsIncremental(app, ctx, 4, sdk.NewCoins( + sdk.NewCoin(AllianceDenom, sdk.NewInt(20_000_000)), + sdk.NewCoin(AllianceDenomTwo, sdk.NewInt(2000_000)), + )) + pks := test_helpers.CreateTestPubKeys(2) + + // Creating two validators: 1 with 0% commission, 1 with 100% commission + valAddr1 := sdk.ValAddress(addrs[0]) + _val1 := teststaking.NewValidator(t, valAddr1, pks[0]) + _val1.Commission = stakingtypes.Commission{ + CommissionRates: stakingtypes.CommissionRates{ + Rate: sdk.NewDec(0), + MaxRate: sdk.NewDec(0), + MaxChangeRate: sdk.NewDec(0), + }, + UpdateTime: time.Now(), + } + test_helpers.RegisterNewValidator(t, app, ctx, _val1) + + valAddr2 := sdk.ValAddress(addrs[1]) + _val2 := teststaking.NewValidator(t, valAddr2, pks[1]) + _val2.Commission = stakingtypes.Commission{ + CommissionRates: stakingtypes.CommissionRates{ + Rate: sdk.NewDec(1), + MaxRate: sdk.NewDec(1), + MaxChangeRate: sdk.NewDec(0), + }, + UpdateTime: time.Now(), + } + test_helpers.RegisterNewValidator(t, app, ctx, _val2) + + user1 := addrs[2] + val1, _ := app.AllianceKeeper.GetAllianceValidator(ctx, valAddr1) + val2, _ := app.AllianceKeeper.GetAllianceValidator(ctx, valAddr2) + + // Mint tokens + err = app.BankKeeper.MintCoins(ctx, minttypes.ModuleName, sdk.NewCoins(sdk.NewCoin("stake", sdk.NewInt(4000_000)))) + require.NoError(t, err) + err = app.BankKeeper.MintCoins(ctx, minttypes.ModuleName, sdk.NewCoins(sdk.NewCoin("stake2", sdk.NewInt(4000_000)))) + require.NoError(t, err) + + // New delegation from user 1 + _, err = app.AllianceKeeper.Delegate(ctx, user1, val1, sdk.NewCoin(AllianceDenom, sdk.NewInt(1000_000))) + require.NoError(t, err) + // New delegation from user 2 + _, err = app.AllianceKeeper.Delegate(ctx, user1, val2, sdk.NewCoin(AllianceDenom, sdk.NewInt(1000_000))) + require.NoError(t, err) + + assets := app.AllianceKeeper.GetAllAssets(ctx) + err = app.AllianceKeeper.RebalanceBondTokenWeights(ctx, assets) + require.NoError(t, err) + + // Transfer to reward pool + err = app.AllianceKeeper.AddAssetsToRewardPool(ctx, mintPoolAddr, val1, sdk.NewCoins(sdk.NewCoin("stake", sdk.NewInt(2000_000)))) + require.NoError(t, err) + + // Transfer another token to fee collector pool + err = app.BankKeeper.SendCoinsFromModuleToModule(ctx, minttypes.ModuleName, authtypes.FeeCollectorName, sdk.NewCoins(sdk.NewCoin("stake2", sdk.NewInt(4000_000)))) + require.NoError(t, err) + + // User 1 delegates more tokens + _, err = app.AllianceKeeper.Delegate(ctx, user1, val1, sdk.NewCoin(AllianceDenom, sdk.NewInt(1000_000))) + require.NoError(t, err) + + ctx = ctx.WithBlockHeight(ctx.BlockHeight() + 1) + // Distribute in the next begin block + // At the next begin block, tokens will be distributed from the fee pool + cons1, _ := val1.GetConsAddr() + cons2, _ := val2.GetConsAddr() + var votingPower int64 = 3 + app.DistrKeeper.AllocateTokens(ctx, votingPower, []abcitypes.VoteInfo{ + { + Validator: abcitypes.Validator{ + Address: cons1, + Power: 2, + }, + SignedLastBlock: true, + }, + { + Validator: abcitypes.Validator{ + Address: cons2, + Power: 1, + }, + SignedLastBlock: true, + }, + }) + + assets = app.AllianceKeeper.GetAllAssets(ctx) + err = app.AllianceKeeper.RebalanceBondTokenWeights(ctx, assets) + require.NoError(t, err) + + val1, _ = app.AllianceKeeper.GetAllianceValidator(ctx, valAddr1) + rewards, err := app.AllianceKeeper.ClaimDelegationRewards(ctx, user1, val1, AllianceDenom) + require.NoError(t, err) + require.Len(t, rewards, 1) +} + +func TestRewardWeightWithZeroTokens(t *testing.T) { + var err error + app, ctx := createTestContext(t) + mintPoolAddr := app.AccountKeeper.GetModuleAddress(minttypes.ModuleName) + startTime := time.Now() + ctx = ctx.WithBlockTime(startTime) + app.AllianceKeeper.InitGenesis(ctx, &types.GenesisState{ + Params: types.DefaultParams(), + Assets: []types.AllianceAsset{ + types.NewAllianceAsset(AllianceDenom, sdk.NewDec(2), sdk.NewDec(0), sdk.NewDec(5), sdk.NewDec(0), ctx.BlockTime()), + types.NewAllianceAsset(AllianceDenomTwo, sdk.NewDec(10), sdk.NewDec(2), sdk.NewDec(12), sdk.NewDec(0), ctx.BlockTime()), + }, + }) + + // Set tax and rewards to be zero for easier calculation + distParams := app.DistrKeeper.GetParams(ctx) + distParams.CommunityTax = sdk.ZeroDec() + + err = app.DistrKeeper.SetParams(ctx, distParams) + require.NoError(t, err) + + // Accounts + addrs := test_helpers.AddTestAddrsIncremental(app, ctx, 4, sdk.NewCoins( + sdk.NewCoin(AllianceDenom, sdk.NewInt(20_000_000)), + )) + pks := test_helpers.CreateTestPubKeys(2) + + // Creating two validators: 1 with 0% commission, 1 with 100% commission + valAddr1 := sdk.ValAddress(addrs[0]) + _val1 := teststaking.NewValidator(t, valAddr1, pks[0]) + _val1.Commission = stakingtypes.Commission{ + CommissionRates: stakingtypes.CommissionRates{ + Rate: sdk.NewDec(0), + MaxRate: sdk.NewDec(0), + MaxChangeRate: sdk.NewDec(0), + }, + UpdateTime: time.Now(), + } + test_helpers.RegisterNewValidator(t, app, ctx, _val1) + user1 := addrs[2] + val1, _ := app.AllianceKeeper.GetAllianceValidator(ctx, valAddr1) + + // Mint tokens + err = app.BankKeeper.MintCoins(ctx, minttypes.ModuleName, sdk.NewCoins(sdk.NewCoin("stake", sdk.NewInt(4000_000)))) + require.NoError(t, err) + + // New delegation from user 1 + _, err = app.AllianceKeeper.Delegate(ctx, user1, val1, sdk.NewCoin(AllianceDenom, sdk.NewInt(1000_000))) + require.NoError(t, err) + + // Apply take weight to reduce tokens in asset + asset, found := app.AllianceKeeper.GetAssetByDenom(ctx, AllianceDenom) + require.True(t, found) + asset.TotalTokens = sdk.NewInt(1) + app.AllianceKeeper.SetAsset(ctx, asset) + + // New delegation from user 1 + _, err = app.AllianceKeeper.Delegate(ctx, user1, val1, sdk.NewCoin(AllianceDenom, sdk.NewInt(1000_000))) + require.NoError(t, err) + + // Apply take weight to reduce tokens in asset + asset, found = app.AllianceKeeper.GetAssetByDenom(ctx, AllianceDenom) + require.True(t, found) + asset.TotalTokens = sdk.NewInt(0) + app.AllianceKeeper.SetAsset(ctx, asset) + + // Before transfer to reward pool + beforeMintPoolAmount := app.BankKeeper.GetBalance(ctx, mintPoolAddr, AllianceDenom) + require.NoError(t, err) + + // Transfer to reward pool + err = app.AllianceKeeper.AddAssetsToRewardPool(ctx, mintPoolAddr, val1, sdk.NewCoins(sdk.NewCoin("stake", sdk.NewInt(2000_000)))) + require.NoError(t, err) + + afterMintPoolAmount := app.BankKeeper.GetBalance(ctx, mintPoolAddr, AllianceDenom) + require.NoError(t, err) + + require.Equal(t, beforeMintPoolAmount, afterMintPoolAmount) +} diff --git a/x/alliance/keeper/tests/slash_test.go b/x/alliance/keeper/tests/slash_test.go index bec8cd7b..df67d2be 100644 --- a/x/alliance/keeper/tests/slash_test.go +++ b/x/alliance/keeper/tests/slash_test.go @@ -9,7 +9,7 @@ import ( "github.com/terra-money/alliance/x/alliance/types" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/cosmos-sdk/x/staking/teststaking" + teststaking "github.com/cosmos/cosmos-sdk/x/staking/testutil" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" "github.com/stretchr/testify/require" ) @@ -40,9 +40,9 @@ func TestSlashingEvent(t *testing.T) { // Set tax and rewards to be zero for easier calculation distParams := app.DistrKeeper.GetParams(ctx) distParams.CommunityTax = sdk.ZeroDec() - distParams.BaseProposerReward = sdk.ZeroDec() - distParams.BonusProposerReward = sdk.ZeroDec() - app.DistrKeeper.SetParams(ctx, distParams) + + err = app.DistrKeeper.SetParams(ctx, distParams) + require.NoError(t, err) // Accounts addrs := test_helpers.AddTestAddrsIncremental(app, ctx, 4, sdk.NewCoins( @@ -181,9 +181,9 @@ func TestSlashingAfterRedelegation(t *testing.T) { // Set tax and rewards to be zero for easier calculation distParams := app.DistrKeeper.GetParams(ctx) distParams.CommunityTax = sdk.ZeroDec() - distParams.BaseProposerReward = sdk.ZeroDec() - distParams.BonusProposerReward = sdk.ZeroDec() - app.DistrKeeper.SetParams(ctx, distParams) + + err = app.DistrKeeper.SetParams(ctx, distParams) + require.NoError(t, err) // Accounts addrs := test_helpers.AddTestAddrsIncremental(app, ctx, 4, sdk.NewCoins( @@ -255,7 +255,7 @@ func TestSlashingAfterRedelegation(t *testing.T) { require.Equal(t, sdk.NewInt(13_000_000), app.StakingKeeper.TotalBondedTokens(ctx)) // Expect that delegation has increased - delegation, _ := app.AllianceKeeper.GetDelegation(ctx, user1, val2, AllianceDenom) + delegation, _ := app.AllianceKeeper.GetDelegation(ctx, user1, valAddr2, AllianceDenom) asset, _ := app.AllianceKeeper.GetAssetByDenom(ctx, AllianceDenom) tokens := types.GetDelegationTokens(delegation, val2, asset) require.Equal(t, sdk.NewInt(20_000_000), tokens.Amount) @@ -268,7 +268,7 @@ func TestSlashingAfterRedelegation(t *testing.T) { app.SlashingKeeper.Slash(ctx, valConAddr1, slashFraction, valPower1, 1) // Expect that delegation decreased - delegation, _ = app.AllianceKeeper.GetDelegation(ctx, user1, val2, AllianceDenom) + delegation, _ = app.AllianceKeeper.GetDelegation(ctx, user1, valAddr2, AllianceDenom) asset, _ = app.AllianceKeeper.GetAssetByDenom(ctx, AllianceDenom) tokens = types.GetDelegationTokens(delegation, val2, asset) require.Greater(t, sdk.NewInt(20_000_000).Int64(), tokens.Amount.Int64()) @@ -282,7 +282,7 @@ func TestSlashingAfterRedelegation(t *testing.T) { app.SlashingKeeper.Slash(ctx, valConAddr1, slashFraction, valPower1, 1) // Expect that delegation stayed the same - delegation, _ = app.AllianceKeeper.GetDelegation(ctx, user1, val2, AllianceDenom) + delegation, _ = app.AllianceKeeper.GetDelegation(ctx, user1, valAddr2, AllianceDenom) asset, _ = app.AllianceKeeper.GetAssetByDenom(ctx, AllianceDenom) require.Equal(t, tokens.Amount.Int64(), types.GetDelegationTokens(delegation, val2, asset).Amount.Int64()) @@ -291,7 +291,6 @@ func TestSlashingAfterRedelegation(t *testing.T) { } func TestSlashingAfterUndelegation(t *testing.T) { - var err error app, ctx := createTestContext(t) startTime := time.Now() ctx = ctx.WithBlockTime(startTime).WithBlockHeight(1) @@ -316,9 +315,9 @@ func TestSlashingAfterUndelegation(t *testing.T) { // Set tax and rewards to be zero for easier calculation distParams := app.DistrKeeper.GetParams(ctx) distParams.CommunityTax = sdk.ZeroDec() - distParams.BaseProposerReward = sdk.ZeroDec() - distParams.BonusProposerReward = sdk.ZeroDec() - app.DistrKeeper.SetParams(ctx, distParams) + + err := app.DistrKeeper.SetParams(ctx, distParams) + require.NoError(t, err) // Accounts addrs := test_helpers.AddTestAddrsIncremental(app, ctx, 4, sdk.NewCoins( @@ -429,3 +428,46 @@ func TestSlashingAfterUndelegation(t *testing.T) { _, stop := alliance.RunAllInvariants(ctx, app.AllianceKeeper) require.False(t, stop) } + +func TestSlashingIncorrectAmount(t *testing.T) { + // SETUP + app, ctx := createTestContext(t) + startTime := time.Now() + ctx = ctx.WithBlockTime(startTime).WithBlockHeight(1) + app.AllianceKeeper.InitGenesis(ctx, &types.GenesisState{ + Params: types.DefaultParams(), + Assets: []types.AllianceAsset{ + { + Denom: AllianceDenom, + RewardWeight: sdk.NewDec(2), + TakeRate: sdk.NewDec(0), + TotalTokens: sdk.ZeroInt(), + }, + }, + }) + + // Create and register the validator + addrs := test_helpers.AddTestAddrsIncremental(app, ctx, 4, sdk.NewCoins( + sdk.NewCoin(AllianceDenom, sdk.NewInt(20_000_000)), + )) + pks := test_helpers.CreateTestPubKeys(2) + valAddr1 := sdk.ValAddress(addrs[0]) + + _val1 := teststaking.NewValidator(t, valAddr1, pks[0]) + _val1.Commission = stakingtypes.Commission{ + CommissionRates: stakingtypes.CommissionRates{ + Rate: sdk.NewDec(0), + MaxRate: sdk.NewDec(0), + MaxChangeRate: sdk.NewDec(0), + }, + UpdateTime: time.Now(), + } + test_helpers.RegisterNewValidator(t, app, ctx, _val1) + + // Slash validator with incorrect amounts + err := app.AllianceKeeper.SlashValidator(ctx, sdk.ValAddress(addrs[0]), sdk.NewDec(2)) + require.EqualErrorf(t, err, "slashed fraction must be greater than 0 and less than or equal to 1: 2.000000000000000000", "") + + err = app.AllianceKeeper.SlashValidator(ctx, sdk.ValAddress(addrs[0]), sdk.NewDec(-1)) + require.EqualErrorf(t, err, "slashed fraction must be greater than 0 and less than or equal to 1: -1.000000000000000000", "") +} diff --git a/x/alliance/migrations/v4/migrations.go b/x/alliance/migrations/v4/migrations.go new file mode 100644 index 00000000..bc11755d --- /dev/null +++ b/x/alliance/migrations/v4/migrations.go @@ -0,0 +1,35 @@ +package v4 + +import ( + "math" + + sdk "github.com/cosmos/cosmos-sdk/types" + + alliancekeeper "github.com/terra-money/alliance/x/alliance/keeper" + "github.com/terra-money/alliance/x/alliance/types" +) + +func Migrate(k alliancekeeper.Keeper) func(ctx sdk.Context) error { + return func(ctx sdk.Context) error { + err := migrateAssetsWithDefaultRewardWeightRange(ctx, k) + if err != nil { + return err + } + return nil + } +} + +func migrateAssetsWithDefaultRewardWeightRange(ctx sdk.Context, k alliancekeeper.Keeper) error { + assets := k.GetAllAssets(ctx) + for _, asset := range assets { + asset.RewardWeightRange = types.RewardWeightRange{ + Min: sdk.ZeroDec(), + Max: sdk.NewDec(math.MaxInt), + } + if asset.RewardsStarted(ctx.BlockTime()) { + asset.IsInitialized = true + } + k.SetAsset(ctx, *asset) + } + return nil +} diff --git a/x/alliance/module.go b/x/alliance/module.go index 98c1188b..31dddf48 100644 --- a/x/alliance/module.go +++ b/x/alliance/module.go @@ -4,7 +4,6 @@ import ( "context" "encoding/json" "fmt" - "math/rand" simulation2 "github.com/terra-money/alliance/x/alliance/tests/simulation" @@ -13,10 +12,11 @@ import ( "github.com/grpc-ecosystem/grpc-gateway/runtime" "github.com/spf13/cobra" - abci "github.com/tendermint/tendermint/abci/types" + abci "github.com/cometbft/cometbft/abci/types" "github.com/terra-money/alliance/x/alliance/client/cli" "github.com/terra-money/alliance/x/alliance/keeper" + migrationsv4 "github.com/terra-money/alliance/x/alliance/migrations/v4" "github.com/terra-money/alliance/x/alliance/types" "github.com/cosmos/cosmos-sdk/client" @@ -68,7 +68,7 @@ func (a AppModuleBasic) DefaultGenesis(jsonCodec codec.JSONCodec) json.RawMessag return jsonCodec.MustMarshalJSON(DefaultGenesisState()) } -func (a AppModuleBasic) ValidateGenesis(jsonCodec codec.JSONCodec, config client.TxEncodingConfig, message json.RawMessage) error { +func (a AppModuleBasic) ValidateGenesis(jsonCodec codec.JSONCodec, _ client.TxEncodingConfig, message json.RawMessage) error { var genesis types.GenesisState if err := jsonCodec.UnmarshalJSON(message, &genesis); err != nil { return fmt.Errorf("failed to unmarshal %s genesis state: %w", types.ModuleName, err) @@ -108,7 +108,7 @@ func (a AppModule) InitGenesis(ctx sdk.Context, jsonCodec codec.JSONCodec, messa return a.keeper.InitGenesis(ctx, &genesis) } -func (a AppModule) ExportGenesis(ctx sdk.Context, jsonCodec codec.JSONCodec) json.RawMessage { +func (a AppModule) ExportGenesis(ctx sdk.Context, _ codec.JSONCodec) json.RawMessage { genesis := a.keeper.ExportGenesis(ctx) return a.cdc.MustMarshalJSON(genesis) } @@ -117,43 +117,32 @@ func (a AppModule) RegisterInvariants(registry sdk.InvariantRegistry) { RegisterInvariants(registry, a.keeper) } -// Deprecated: use RegisterServices -func (a AppModule) Route() sdk.Route { return sdk.Route{} } - -// Deprecated: use RegisterServices -func (AppModule) QuerierRoute() string { return types.RouterKey } - -// Deprecated: use RegisterServices -func (a AppModule) LegacyQuerierHandler(_ *codec.LegacyAmino) sdk.Querier { - return nil -} - // RegisterServices registers a gRPC query service to respond to the module-specific gRPC queries func (a AppModule) RegisterServices(cfg module.Configurator) { types.RegisterMsgServer(cfg.MsgServer(), keeper.NewMsgServerImpl(a.keeper)) types.RegisterQueryServer(cfg.QueryServer(), keeper.NewQueryServerImpl(a.keeper)) + err := cfg.RegisterMigration(types.ModuleName, 3, migrationsv4.Migrate(a.keeper)) + if err != nil { + panic(fmt.Sprintf("failed to migrate x/alliance from version 3 to 4: %v", err)) + } } func (a AppModule) ConsensusVersion() uint64 { - return 3 + return 4 } func (a AppModule) GenerateGenesisState(simState *module.SimulationState) { simulation2.RandomizedGenesisState(simState) } -func (a AppModule) ProposalContents(simState module.SimulationState) []simtypes.WeightedProposalContent { +func (a AppModule) ProposalContents(_ module.SimulationState) []simtypes.WeightedProposalMsg { return nil } -func (a AppModule) RandomizedParams(r *rand.Rand) []simtypes.ParamChange { - return simulation2.ParamChanges(r) -} - func (a AppModule) RegisterStoreDecoder(registry sdk.StoreDecoderRegistry) { registry[types.StoreKey] = simulation2.NewDecodeStore(a.cdc) } -func (a AppModule) WeightedOperations(simState module.SimulationState) []simtypes.WeightedOperation { - return simulation2.WeightedOperations(simState.AppParams, a.pcdc, a.accountKeeper, a.bankKeeper, a.stakingKeeper, a.keeper) +func (a AppModule) WeightedOperations(_ module.SimulationState) []simtypes.WeightedOperation { + return simulation2.WeightedOperations(a.pcdc, a.accountKeeper, a.bankKeeper, a.stakingKeeper, a.keeper) } diff --git a/x/alliance/proposal_handler.go b/x/alliance/proposal_handler.go index 463c96dc..e7b17c79 100644 --- a/x/alliance/proposal_handler.go +++ b/x/alliance/proposal_handler.go @@ -4,6 +4,7 @@ import ( "github.com/terra-money/alliance/x/alliance/keeper" "github.com/terra-money/alliance/x/alliance/types" + cosmoserrors "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" @@ -20,7 +21,7 @@ func NewAllianceProposalHandler(k keeper.Keeper) govtypes.Handler { return k.DeleteAlliance(ctx, c) default: - return sdkerrors.Wrapf(sdkerrors.ErrUnknownRequest, "unrecognized alliance proposal content type: %T", c) + return cosmoserrors.Wrapf(sdkerrors.ErrUnknownRequest, "unrecognized alliance proposal content type: %T", c) } } } diff --git a/x/alliance/tests/benchmark/benchmark_genesis.json b/x/alliance/tests/benchmark/benchmark_genesis.json new file mode 100644 index 00000000..00c28a6b --- /dev/null +++ b/x/alliance/tests/benchmark/benchmark_genesis.json @@ -0,0 +1 @@ +{"params":{"reward_delay_time":"604800s","take_rate_claim_interval":"300s","last_take_rate_claim_time":"2023-05-22T13:48:14.601333989Z"},"assets":[{"denom":"ASSET0","reward_weight":"0.999970000299999000","take_rate":"0.000010405265054606","total_tokens":"100864757944","total_validator_shares":"100867906586.141546991286561587","reward_start_time":"2023-05-22T13:33:09.601333989Z","reward_change_rate":"0.999990000000000000","reward_change_interval":"300s","last_reward_change_time":"2023-05-22T13:48:09.601333989Z","reward_weight_range":{"min":"0.000000000000000000","max":"5.000000000000000000"},"is_initialized":false},{"denom":"ASSET1","reward_weight":"0.581412718737264035","take_rate":"0.000073325316587491","total_tokens":"109167362121","total_validator_shares":"109191379840.239471113611051756","reward_start_time":"2023-05-22T13:33:09.601333989Z","reward_change_rate":"0.999991454393401782","reward_change_interval":"300s","last_reward_change_time":"2023-05-22T13:48:09.601333989Z","reward_weight_range":{"min":"0.000000000000000000","max":"5.000000000000000000"},"is_initialized":false},{"denom":"ASSET2","reward_weight":"0.150766142905756471","take_rate":"0.000028957928425726","total_tokens":"84022797632","total_validator_shares":"84030097437.133120019006370910","reward_start_time":"2023-05-22T13:33:09.601333989Z","reward_change_rate":"0.999990739163244048","reward_change_interval":"300s","last_reward_change_time":"2023-05-22T13:48:09.601333989Z","reward_weight_range":{"min":"0.000000000000000000","max":"5.000000000000000000"},"is_initialized":false},{"denom":"ASSET3","reward_weight":"0.522090874896864711","take_rate":"0.000006571553884143","total_tokens":"111949208811","total_validator_shares":"111951415883.383223517040728716","reward_start_time":"2023-05-22T13:33:09.601333989Z","reward_change_rate":"0.999994342783898342","reward_change_interval":"300s","last_reward_change_time":"2023-05-22T13:48:09.601333989Z","reward_weight_range":{"min":"0.000000000000000000","max":"5.000000000000000000"},"is_initialized":false},{"denom":"ASSET4","reward_weight":"0.888239864689826148","take_rate":"0.000079932728410879","total_tokens":"88423285152","total_validator_shares":"88444492288.164633490759179832","reward_start_time":"2023-05-22T13:33:09.601333989Z","reward_change_rate":"0.999995695166681966","reward_change_interval":"300s","last_reward_change_time":"2023-05-22T13:48:09.601333989Z","reward_weight_range":{"min":"0.000000000000000000","max":"5.000000000000000000"},"is_initialized":false},{"denom":"ASSET5","reward_weight":"0.217505540431362385","take_rate":"0.000006624177549142","total_tokens":"85903443297","total_validator_shares":"85905150439.872422084718217445","reward_start_time":"2023-05-22T13:33:09.601333989Z","reward_change_rate":"1.000000000000000000","reward_change_interval":"300s","last_reward_change_time":"2023-05-22T13:33:09.601333989Z","reward_weight_range":{"min":"0.000000000000000000","max":"5.000000000000000000"},"is_initialized":false},{"denom":"ASSET6","reward_weight":"0.405677558397233341","take_rate":"0.000028883564567871","total_tokens":"88171467163","total_validator_shares":"88179107727.050417256596741237","reward_start_time":"2023-05-22T13:33:09.601333989Z","reward_change_rate":"0.999997983542309424","reward_change_interval":"300s","last_reward_change_time":"2023-05-22T13:48:09.601333989Z","reward_weight_range":{"min":"0.000000000000000000","max":"5.000000000000000000"},"is_initialized":false},{"denom":"ASSET7","reward_weight":"0.061588876246309945","take_rate":"0.000042050099640680","total_tokens":"87878465629","total_validator_shares":"87889552459.569672415036651665","reward_start_time":"2023-05-22T13:33:09.601333989Z","reward_change_rate":"0.999990826395064558","reward_change_interval":"300s","last_reward_change_time":"2023-05-22T13:48:09.601333989Z","reward_weight_range":{"min":"0.000000000000000000","max":"5.000000000000000000"},"is_initialized":false},{"denom":"ASSET8","reward_weight":"0.424649063098039281","take_rate":"0.000053535146975101","total_tokens":"106796043330","total_validator_shares":"106813197195.946873849121501040","reward_start_time":"2023-05-22T13:33:09.601333989Z","reward_change_rate":"0.999996584956599994","reward_change_interval":"300s","last_reward_change_time":"2023-05-22T13:48:09.601333989Z","reward_weight_range":{"min":"0.000000000000000000","max":"5.000000000000000000"},"is_initialized":false},{"denom":"ASSET9","reward_weight":"0.001752962705026179","take_rate":"0.000024801819546619","total_tokens":"86960976960","total_validator_shares":"86967447656.878957675041328239","reward_start_time":"2023-05-22T13:33:09.601333989Z","reward_change_rate":"1.000000000000000000","reward_change_interval":"300s","last_reward_change_time":"2023-05-22T13:33:09.601333989Z","reward_weight_range":{"min":"0.000000000000000000","max":"5.000000000000000000"},"is_initialized":false},{"denom":"ASSET10","reward_weight":"0.000000000000000000","take_rate":"0.000080128627791356","total_tokens":"98342923454","total_validator_shares":"98366567497.919423157336954918","reward_start_time":"2023-05-22T13:33:09.601333989Z","reward_change_rate":"0.999997457371183604","reward_change_interval":"300s","last_reward_change_time":"2023-05-22T13:48:09.601333989Z","reward_weight_range":{"min":"0.000000000000000000","max":"5.000000000000000000"},"is_initialized":false},{"denom":"ASSET11","reward_weight":"0.055556111797872351","take_rate":"0.000088075177063380","total_tokens":"102486257030","total_validator_shares":"102513341289.051335987841192018","reward_start_time":"2023-05-22T13:33:09.601333989Z","reward_change_rate":"0.999993827069134661","reward_change_interval":"300s","last_reward_change_time":"2023-05-22T13:48:09.601333989Z","reward_weight_range":{"min":"0.000000000000000000","max":"5.000000000000000000"},"is_initialized":false},{"denom":"ASSET12","reward_weight":"0.116917887333212771","take_rate":"0.000091386335046762","total_tokens":"91368841528","total_validator_shares":"91393895701.791842660501078041","reward_start_time":"2023-05-22T13:33:09.601333989Z","reward_change_rate":"0.999999720178740124","reward_change_interval":"300s","last_reward_change_time":"2023-05-22T13:48:09.601333989Z","reward_weight_range":{"min":"0.000000000000000000","max":"5.000000000000000000"},"is_initialized":false},{"denom":"ASSET13","reward_weight":"0.052287987897940562","take_rate":"0.000031340762201977","total_tokens":"100065076735","total_validator_shares":"100074485676.957621854737577843","reward_start_time":"2023-05-22T13:33:09.601333989Z","reward_change_rate":"0.999992077548925096","reward_change_interval":"300s","last_reward_change_time":"2023-05-22T13:48:09.601333989Z","reward_weight_range":{"min":"0.000000000000000000","max":"5.000000000000000000"},"is_initialized":false},{"denom":"ASSET14","reward_weight":"0.999970000299999000","take_rate":"0.000092495544703971","total_tokens":"89456695059","total_validator_shares":"89481522691.466523210344788840","reward_start_time":"2023-05-22T13:33:09.601333989Z","reward_change_rate":"0.999990000000000000","reward_change_interval":"300s","last_reward_change_time":"2023-05-22T13:48:09.601333989Z","reward_weight_range":{"min":"0.000000000000000000","max":"5.000000000000000000"},"is_initialized":false},{"denom":"ASSET15","reward_weight":"0.000000000000000000","take_rate":"0.000062595669556420","total_tokens":"114521846477","total_validator_shares":"114543354886.592543592918233662","reward_start_time":"2023-05-22T13:33:09.601333989Z","reward_change_rate":"0.999990000000000000","reward_change_interval":"300s","last_reward_change_time":"2023-05-22T13:48:09.601333989Z","reward_weight_range":{"min":"0.000000000000000000","max":"5.000000000000000000"},"is_initialized":false},{"denom":"ASSET16","reward_weight":"0.686754625118582331","take_rate":"0.000035739108565502","total_tokens":"97263761835","total_validator_shares":"97274190942.447021005226477502","reward_start_time":"2023-05-22T13:33:09.601333989Z","reward_change_rate":"0.999994439997011556","reward_change_interval":"300s","last_reward_change_time":"2023-05-22T13:48:09.601333989Z","reward_weight_range":{"min":"0.000000000000000000","max":"5.000000000000000000"},"is_initialized":false},{"denom":"ASSET17","reward_weight":"0.000000000000000000","take_rate":"0.000032721865647252","total_tokens":"87601552660","total_validator_shares":"87610152685.342972044370309846","reward_start_time":"2023-05-22T13:33:09.601333989Z","reward_change_rate":"0.999990446513911956","reward_change_interval":"300s","last_reward_change_time":"2023-05-22T13:48:09.601333989Z","reward_weight_range":{"min":"0.000000000000000000","max":"5.000000000000000000"},"is_initialized":false},{"denom":"ASSET18","reward_weight":"0.499366699952645040","take_rate":"0.000014156936681274","total_tokens":"90237443579","total_validator_shares":"90241276147.754021530877613337","reward_start_time":"2023-05-22T13:33:09.601333989Z","reward_change_rate":"0.999998493753732888","reward_change_interval":"300s","last_reward_change_time":"2023-05-22T13:48:09.601333989Z","reward_weight_range":{"min":"0.000000000000000000","max":"5.000000000000000000"},"is_initialized":false},{"denom":"ASSET19","reward_weight":"0.907106500227201406","take_rate":"0.000091113831859528","total_tokens":"0","total_validator_shares":"0.000000000000000000","reward_start_time":"2023-05-22T13:33:09.601333989Z","reward_change_rate":"0.999998001763191588","reward_change_interval":"300s","last_reward_change_time":"2023-05-22T13:48:09.601333989Z","reward_weight_range":{"min":"0.000000000000000000","max":"5.000000000000000000"},"is_initialized":false}],"validator_infos":[{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004763692357559"},{"denom":"ASSET1","index":"0.000038985196139957"},{"denom":"ASSET10","index":"0.000033786370949736"},{"denom":"ASSET11","index":"0.000040523085535455"},{"denom":"ASSET12","index":"0.000038578894968365"},{"denom":"ASSET13","index":"0.000013073708676159"},{"denom":"ASSET14","index":"0.000037387259299285"},{"denom":"ASSET15","index":"0.000030327911322433"},{"denom":"ASSET16","index":"0.000017298508927947"},{"denom":"ASSET17","index":"0.000014013133553645"},{"denom":"ASSET18","index":"0.000005820513867124"},{"denom":"ASSET2","index":"0.000011768229105595"},{"denom":"ASSET3","index":"0.000003383450313901"},{"denom":"ASSET4","index":"0.000031958810300676"},{"denom":"ASSET5","index":"0.000002656343866056"},{"denom":"ASSET6","index":"0.000010845308183802"},{"denom":"ASSET7","index":"0.000016751821011415"},{"denom":"ASSET8","index":"0.000024124848636355"},{"denom":"ASSET9","index":"0.000009673748305472"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"550714780.622366373585368416"},{"denom":"ASSET10","amount":"872324580.065186389259449837"},{"denom":"ASSET11","amount":"4251735.719794311385560835"},{"denom":"ASSET12","amount":"60671534.000000000000000000"},{"denom":"ASSET13","amount":"1416968742.735512150407551273"},{"denom":"ASSET14","amount":"1000000000.000000000000000000"},{"denom":"ASSET15","amount":"533588018.000000000000000000"},{"denom":"ASSET16","amount":"1133814801.000000045584213452"},{"denom":"ASSET17","amount":"2109061314.432589210140896264"},{"denom":"ASSET18","amount":"598645381.000000000000000000"},{"denom":"ASSET2","amount":"401621564.000000000000000000"},{"denom":"ASSET4","amount":"1094069230.555814278454858710"},{"denom":"ASSET7","amount":"1920559375.999999977068387168"},{"denom":"ASSET8","amount":"879894820.000000000000000000"},{"denom":"ASSET9","amount":"207032771.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"550714781.359063815951875438"},{"denom":"ASSET10","amount":"872394483.863885243063715641"},{"denom":"ASSET11","amount":"4251735.719794324762980090"},{"denom":"ASSET12","amount":"60671534.000000000000000000"},{"denom":"ASSET13","amount":"1416968742.735512115462913956"},{"denom":"ASSET14","amount":"1000092504.112865568000000000"},{"denom":"ASSET15","amount":"533621420.394230643769201392"},{"denom":"ASSET16","amount":"1133855323.983834738393041823"},{"denom":"ASSET17","amount":"2109061314.432589090154759844"},{"denom":"ASSET18","amount":"598662331.345687553422990111"},{"denom":"ASSET2","amount":"401621564.000000000000000000"},{"denom":"ASSET4","amount":"1094069230.555814210000000000"},{"denom":"ASSET7","amount":"1920720905.670531115946563712"},{"denom":"ASSET8","amount":"879941927.839121579634218660"},{"denom":"ASSET9","amount":"207043040.969516619289871768"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004387090645510"},{"denom":"ASSET1","index":"0.000035824337138935"},{"denom":"ASSET10","index":"0.000031129793332261"},{"denom":"ASSET11","index":"0.000037310407849542"},{"denom":"ASSET12","index":"0.000035495334402665"},{"denom":"ASSET13","index":"0.000012051527509311"},{"denom":"ASSET14","index":"0.000034438634688697"},{"denom":"ASSET15","index":"0.000027946085219630"},{"denom":"ASSET16","index":"0.000015899110153752"},{"denom":"ASSET17","index":"0.000012885303398018"},{"denom":"ASSET18","index":"0.000005362477003170"},{"denom":"ASSET2","index":"0.000010809059380480"},{"denom":"ASSET3","index":"0.000003114704995997"},{"denom":"ASSET4","index":"0.000029385647923127"},{"denom":"ASSET5","index":"0.000002446933340448"},{"denom":"ASSET6","index":"0.000009994963917522"},{"denom":"ASSET7","index":"0.000015420709530258"},{"denom":"ASSET8","index":"0.000022254183441150"},{"denom":"ASSET9","index":"0.000008900518279094"}],"total_delegator_shares":[{"denom":"ASSET1","amount":"77412693.030532108224537776"},{"denom":"ASSET10","amount":"383510781.000000000000000000"},{"denom":"ASSET11","amount":"19617350.999999998045817356"},{"denom":"ASSET13","amount":"197819497.999999991814018980"},{"denom":"ASSET14","amount":"917235587.113784010701953464"},{"denom":"ASSET15","amount":"2386402248.641664774362721554"},{"denom":"ASSET16","amount":"1015260535.443245915640616520"},{"denom":"ASSET17","amount":"128326088.000000000000000000"},{"denom":"ASSET18","amount":"1051294343.999999999569745148"},{"denom":"ASSET3","amount":"1475064114.069712846172527156"},{"denom":"ASSET7","amount":"446794583.754768553351993988"},{"denom":"ASSET8","amount":"949226702.000000000000000000"},{"denom":"ASSET9","amount":"1043180206.856981739301847524"}],"validator_shares":[{"denom":"ASSET1","amount":"77412693.030532091948068571"},{"denom":"ASSET10","amount":"383541513.666540085187403273"},{"denom":"ASSET11","amount":"19617351.000000000000000000"},{"denom":"ASSET13","amount":"197825698.014869540761915242"},{"denom":"ASSET14","amount":"917235587.113783732966512984"},{"denom":"ASSET15","amount":"2386551636.457757061378726088"},{"denom":"ASSET16","amount":"1015260535.443245992727209118"},{"denom":"ASSET17","amount":"128330287.209870384148984144"},{"denom":"ASSET18","amount":"1051324110.875542249786083864"},{"denom":"ASSET3","amount":"1475064114.069712849413935905"},{"denom":"ASSET7","amount":"446794583.754768409122463478"},{"denom":"ASSET8","amount":"949226702.000000000000000000"},{"denom":"ASSET9","amount":"1043180206.856981806719478596"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004782315839318"},{"denom":"ASSET1","index":"0.000039124109697701"},{"denom":"ASSET10","index":"0.000033908667533337"},{"denom":"ASSET11","index":"0.000040671415761037"},{"denom":"ASSET12","index":"0.000038716119372205"},{"denom":"ASSET13","index":"0.000013122943792699"},{"denom":"ASSET14","index":"0.000037525859494012"},{"denom":"ASSET15","index":"0.000030438556464533"},{"denom":"ASSET16","index":"0.000017360072879568"},{"denom":"ASSET17","index":"0.000014062364408016"},{"denom":"ASSET18","index":"0.000005843043910982"},{"denom":"ASSET2","index":"0.000011809556044271"},{"denom":"ASSET3","index":"0.000003396000062217"},{"denom":"ASSET4","index":"0.000032074301049286"},{"denom":"ASSET5","index":"0.000002666908218711"},{"denom":"ASSET6","index":"0.000010886478947902"},{"denom":"ASSET7","index":"0.000016812859737299"},{"denom":"ASSET8","index":"0.000024216326909603"},{"denom":"ASSET9","index":"0.000009708917418598"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"1000000000.000000000000000000"},{"denom":"ASSET1","amount":"712938351.000000000000000000"},{"denom":"ASSET13","amount":"1056148822.341844667742721375"},{"denom":"ASSET15","amount":"197871957.768488818319313522"},{"denom":"ASSET16","amount":"658460433.000000000000000000"},{"denom":"ASSET17","amount":"775454843.545661559511795381"},{"denom":"ASSET18","amount":"1268404860.028673651693389400"},{"denom":"ASSET3","amount":"1828059486.734364759861589614"},{"denom":"ASSET4","amount":"1554371806.169728831059794212"},{"denom":"ASSET5","amount":"984454470.193284724806451210"},{"denom":"ASSET6","amount":"1080911891.033077381288029534"},{"denom":"ASSET8","amount":"41996399.000000000000000000"},{"denom":"ASSET9","amount":"259142850.387413083850511913"}],"validator_shares":[{"denom":"ASSET0","amount":"1000020810.883011182000000000"},{"denom":"ASSET1","amount":"712938351.000000000000000000"},{"denom":"ASSET13","amount":"1056181923.924191912595864849"},{"denom":"ASSET15","amount":"197871957.768488810766084344"},{"denom":"ASSET16","amount":"658483966.633057832910336159"},{"denom":"ASSET17","amount":"775454843.545661441657222181"},{"denom":"ASSET18","amount":"1268404860.028673512104320798"},{"denom":"ASSET3","amount":"1828059486.734364792887473564"},{"denom":"ASSET4","amount":"1554371806.169728839776394984"},{"denom":"ASSET5","amount":"984454470.193284717052939666"},{"denom":"ASSET6","amount":"1080943112.552571412943139257"},{"denom":"ASSET8","amount":"42003144.573864299346284227"},{"denom":"ASSET9","amount":"259142850.387413074313773504"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004708438426996"},{"denom":"ASSET1","index":"0.000038520493193901"},{"denom":"ASSET10","index":"0.000033447889442869"},{"denom":"ASSET11","index":"0.000040066635538605"},{"denom":"ASSET12","index":"0.000038162559600338"},{"denom":"ASSET13","index":"0.000012931064308163"},{"denom":"ASSET14","index":"0.000036961534886120"},{"denom":"ASSET15","index":"0.000030015502632007"},{"denom":"ASSET16","index":"0.000017089105961021"},{"denom":"ASSET17","index":"0.000013860849696398"},{"denom":"ASSET18","index":"0.000005749976668797"},{"denom":"ASSET2","index":"0.000011630369724417"},{"denom":"ASSET3","index":"0.000003343204166159"},{"denom":"ASSET4","index":"0.000031580339975976"},{"denom":"ASSET5","index":"0.000002625639366966"},{"denom":"ASSET6","index":"0.000010718023658977"},{"denom":"ASSET7","index":"0.000016555639039194"},{"denom":"ASSET8","index":"0.000023864339856305"},{"denom":"ASSET9","index":"0.000009563147004842"}],"total_delegator_shares":[{"denom":"ASSET1","amount":"1033322566.745967739480043338"},{"denom":"ASSET11","amount":"628028010.829802483300635585"},{"denom":"ASSET12","amount":"1000000000.000000000000000000"},{"denom":"ASSET13","amount":"72705426.634145509985853499"},{"denom":"ASSET14","amount":"1421080678.111359176000000000"},{"denom":"ASSET15","amount":"704745775.829323304026277164"},{"denom":"ASSET17","amount":"560095835.000000016026706276"},{"denom":"ASSET2","amount":"2150576630.177946206597069824"},{"denom":"ASSET3","amount":"939705226.000000000000000000"},{"denom":"ASSET4","amount":"272536335.000000000000000000"},{"denom":"ASSET5","amount":"889158989.154240347082077071"},{"denom":"ASSET6","amount":"828895263.839103270916641512"},{"denom":"ASSET8","amount":"1441188419.681736992637449873"}],"validator_shares":[{"denom":"ASSET1","amount":"1033322566.745967731688555958"},{"denom":"ASSET11","amount":"628083329.390710350397834958"},{"denom":"ASSET12","amount":"1000000000.000000000000000000"},{"denom":"ASSET13","amount":"72705426.634145496103600628"},{"denom":"ASSET14","amount":"1421212133.918798313379792832"},{"denom":"ASSET15","amount":"704789892.630005705020318348"},{"denom":"ASSET17","amount":"560132491.582705533136784815"},{"denom":"ASSET18","amount":"0.207625192470564706"},{"denom":"ASSET2","amount":"2150638908.284505164895796422"},{"denom":"ASSET3","amount":"939705226.000000000000000000"},{"denom":"ASSET4","amount":"272579909.377178906307284670"},{"denom":"ASSET5","amount":"889158989.154240341443399732"},{"denom":"ASSET6","amount":"828895263.839103264864608800"},{"denom":"ASSET8","amount":"1441188419.681737071804754331"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004932922606577"},{"denom":"ASSET1","index":"0.000040396906160074"},{"denom":"ASSET10","index":"0.000034838303486914"},{"denom":"ASSET11","index":"0.000041914424288227"},{"denom":"ASSET12","index":"0.000039857170373527"},{"denom":"ASSET13","index":"0.000013510260278305"},{"denom":"ASSET14","index":"0.000038681126023432"},{"denom":"ASSET15","index":"0.000031291398674533"},{"denom":"ASSET16","index":"0.000017930058046877"},{"denom":"ASSET17","index":"0.000014479422944962"},{"denom":"ASSET18","index":"0.000006034014737166"},{"denom":"ASSET2","index":"0.000012186534642262"},{"denom":"ASSET3","index":"0.000003503888301858"},{"denom":"ASSET4","index":"0.000033108545408351"},{"denom":"ASSET5","index":"0.000002750102339201"},{"denom":"ASSET6","index":"0.000011230081338040"},{"denom":"ASSET7","index":"0.000017343857331989"},{"denom":"ASSET8","index":"0.000024921315009190"},{"denom":"ASSET9","index":"0.000010011497921619"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"457446107.999999994177827160"},{"denom":"ASSET1","amount":"60269979.000000000424003091"},{"denom":"ASSET10","amount":"708688590.000000000000000000"},{"denom":"ASSET11","amount":"242052202.882821930920515929"},{"denom":"ASSET12","amount":"793790109.000000000000000000"},{"denom":"ASSET14","amount":"1661568498.510957925558342114"},{"denom":"ASSET15","amount":"369752033.999999999821608226"},{"denom":"ASSET16","amount":"2820425641.060628793000000000"},{"denom":"ASSET17","amount":"1968155286.291235258695961927"},{"denom":"ASSET18","amount":"114454583.000000000000000000"},{"denom":"ASSET2","amount":"1240820769.999999998294563344"},{"denom":"ASSET3","amount":"999993428.000000000000000000"},{"denom":"ASSET4","amount":"411644279.317005844576673391"},{"denom":"ASSET5","amount":"1000000000.000000000000000000"},{"denom":"ASSET6","amount":"861226400.000000000000000000"},{"denom":"ASSET7","amount":"1064782265.281193295827781575"},{"denom":"ASSET8","amount":"48605191.401833842558427730"},{"denom":"ASSET9","amount":"337053974.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"457455627.857437508526379656"},{"denom":"ASSET1","amount":"60269979.000000000000000000"},{"denom":"ASSET10","amount":"708802176.165856998386932440"},{"denom":"ASSET11","amount":"242073523.555302367959691116"},{"denom":"ASSET12","amount":"793790109.000000000000000000"},{"denom":"ASSET14","amount":"1661722200.430878032521510968"},{"denom":"ASSET15","amount":"369752034.000000000000000000"},{"denom":"ASSET16","amount":"2820526444.174646174786188257"},{"denom":"ASSET17","amount":"1968219690.164472959798153119"},{"denom":"ASSET18","amount":"114459444.120186503722056985"},{"denom":"ASSET2","amount":"1240820770.000000000000000000"},{"denom":"ASSET3","amount":"1000006571.173736055533677108"},{"denom":"ASSET4","amount":"411677185.805332737193937838"},{"denom":"ASSET5","amount":"1000006624.222214094000000000"},{"denom":"ASSET6","amount":"861301030.214091204424681600"},{"denom":"ASSET7","amount":"1064782265.281192825323097653"},{"denom":"ASSET8","amount":"48605191.401833815803617849"},{"denom":"ASSET9","amount":"337070693.739690077329334192"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004913983609001"},{"denom":"ASSET1","index":"0.000040244987929815"},{"denom":"ASSET10","index":"0.000034772305497303"},{"denom":"ASSET11","index":"0.000041772863997093"},{"denom":"ASSET12","index":"0.000039756115018181"},{"denom":"ASSET13","index":"0.000013466459952772"},{"denom":"ASSET14","index":"0.000038538449259774"},{"denom":"ASSET15","index":"0.000031220537321082"},{"denom":"ASSET16","index":"0.000017858853026625"},{"denom":"ASSET17","index":"0.000014445033007114"},{"denom":"ASSET18","index":"0.000006004781433606"},{"denom":"ASSET2","index":"0.000012147347472117"},{"denom":"ASSET3","index":"0.000003490240978647"},{"denom":"ASSET4","index":"0.000032981200632459"},{"denom":"ASSET5","index":"0.000002740029237178"},{"denom":"ASSET6","index":"0.000011181697773076"},{"denom":"ASSET7","index":"0.000017276427658373"},{"denom":"ASSET8","index":"0.000024839237256922"},{"denom":"ASSET9","index":"0.000009975875730805"}],"total_delegator_shares":[{"denom":"ASSET1","amount":"894423425.000000000000000000"},{"denom":"ASSET10","amount":"91778964.000000000000000000"},{"denom":"ASSET11","amount":"1066472015.534843614140340855"},{"denom":"ASSET12","amount":"954557497.000000000000000000"},{"denom":"ASSET13","amount":"512679123.000000000000000000"},{"denom":"ASSET14","amount":"852112418.538847143776968810"},{"denom":"ASSET15","amount":"1683147718.999999949473563244"},{"denom":"ASSET16","amount":"98257454.773136447530328029"},{"denom":"ASSET17","amount":"267396693.000000000000000000"},{"denom":"ASSET18","amount":"958614778.523495218483366282"},{"denom":"ASSET3","amount":"636190620.000000000000000000"},{"denom":"ASSET4","amount":"813532307.000000000000000000"},{"denom":"ASSET5","amount":"1500935332.501661265517137676"},{"denom":"ASSET6","amount":"872295401.741606113197163854"},{"denom":"ASSET7","amount":"662079590.000000000000000000"},{"denom":"ASSET8","amount":"758774421.633326416528227888"},{"denom":"ASSET9","amount":"1673859525.421889736106769178"}],"validator_shares":[{"denom":"ASSET0","amount":"0.295093781687094342"},{"denom":"ASSET1","amount":"894489013.972964601840473710"},{"denom":"ASSET10","amount":"91786318.714484562255295812"},{"denom":"ASSET11","amount":"1066565953.537811712978889156"},{"denom":"ASSET12","amount":"954731987.972878577331629389"},{"denom":"ASSET13","amount":"512727329.310019290032877234"},{"denom":"ASSET14","amount":"852112418.538847172914058844"},{"denom":"ASSET15","amount":"1683358454.327150536150312328"},{"denom":"ASSET16","amount":"98260966.532947585674387349"},{"denom":"ASSET17","amount":"267396693.000000000000000000"},{"denom":"ASSET18","amount":"958614778.523495235754563662"},{"denom":"ASSET3","amount":"636190620.000000000000000000"},{"denom":"ASSET4","amount":"813727421.786554468524682470"},{"denom":"ASSET5","amount":"1500935332.501661256832857739"},{"denom":"ASSET6","amount":"872295401.741606126597135636"},{"denom":"ASSET7","amount":"662163118.589005607754117780"},{"denom":"ASSET8","amount":"758855670.376714217608269903"},{"denom":"ASSET9","amount":"1673859525.421889713437669557"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004772719302966"},{"denom":"ASSET1","index":"0.000039045168205059"},{"denom":"ASSET10","index":"0.000033888596510929"},{"denom":"ASSET11","index":"0.000040609336111210"},{"denom":"ASSET12","index":"0.000038670766700041"},{"denom":"ASSET13","index":"0.000013105357219810"},{"denom":"ASSET14","index":"0.000037465363585392"},{"denom":"ASSET15","index":"0.000030413687247718"},{"denom":"ASSET16","index":"0.000017323394502263"},{"denom":"ASSET17","index":"0.000014044328076069"},{"denom":"ASSET18","index":"0.000005829857736340"},{"denom":"ASSET2","index":"0.000011786897564708"},{"denom":"ASSET3","index":"0.000003388925924010"},{"denom":"ASSET4","index":"0.000032010424606564"},{"denom":"ASSET5","index":"0.000002661438394800"},{"denom":"ASSET6","index":"0.000010865554956372"},{"denom":"ASSET7","index":"0.000016781785111511"},{"denom":"ASSET8","index":"0.000024188491097742"},{"denom":"ASSET9","index":"0.000009692741668944"}],"total_delegator_shares":[{"denom":"ASSET1","amount":"1217721246.288977838280223840"},{"denom":"ASSET10","amount":"761658299.643254950637846076"},{"denom":"ASSET11","amount":"1041453844.999999999834184620"},{"denom":"ASSET12","amount":"745108195.387172839504558624"},{"denom":"ASSET14","amount":"298187550.000000000000000000"},{"denom":"ASSET15","amount":"926202885.661610548609270406"},{"denom":"ASSET16","amount":"6095473.000000000000000000"},{"denom":"ASSET17","amount":"403175531.000000000000000000"},{"denom":"ASSET18","amount":"902756059.381488985404169462"},{"denom":"ASSET2","amount":"255415406.999999996826056085"},{"denom":"ASSET3","amount":"1285072283.127558622321771047"},{"denom":"ASSET4","amount":"628580322.999999988114570336"},{"denom":"ASSET5","amount":"821119135.540250182119328202"},{"denom":"ASSET6","amount":"766240791.000000000000000000"},{"denom":"ASSET7","amount":"1000000000.000000000000000000"},{"denom":"ASSET9","amount":"563018477.000000000000000000"}],"validator_shares":[{"denom":"ASSET1","amount":"1217721246.288977864428180418"},{"denom":"ASSET10","amount":"761719335.190885165391693123"},{"denom":"ASSET11","amount":"1041545579.328662796139078730"},{"denom":"ASSET12","amount":"745108195.387172828405613565"},{"denom":"ASSET14","amount":"298215133.574780307201278400"},{"denom":"ASSET15","amount":"926202885.661610257621278890"},{"denom":"ASSET16","amount":"6095473.000000000000000000"},{"denom":"ASSET17","amount":"403215111.574533006402327157"},{"denom":"ASSET18","amount":"902756059.381488988878744038"},{"denom":"ASSET2","amount":"255415407.000000000000000000"},{"denom":"ASSET3","amount":"1285080728.129616533406880626"},{"denom":"ASSET4","amount":"628680823.346427718547766246"},{"denom":"ASSET5","amount":"821119135.540249716987043560"},{"denom":"ASSET6","amount":"766285056.475815536586404088"},{"denom":"ASSET7","amount":"1000000000.000000000000000000"},{"denom":"ASSET9","amount":"563060370.755443837082082045"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004965898966132"},{"denom":"ASSET1","index":"0.000040613455803206"},{"denom":"ASSET10","index":"0.000034919045834610"},{"denom":"ASSET11","index":"0.000042129063502029"},{"denom":"ASSET12","index":"0.000039985223871269"},{"denom":"ASSET13","index":"0.000013578020545019"},{"denom":"ASSET14","index":"0.000038903579191140"},{"denom":"ASSET15","index":"0.000031390065716755"},{"denom":"ASSET16","index":"0.000018036539002913"},{"denom":"ASSET17","index":"0.000014523057957390"},{"denom":"ASSET18","index":"0.000006079870654957"},{"denom":"ASSET2","index":"0.000012240336609508"},{"denom":"ASSET3","index":"0.000003526439465238"},{"denom":"ASSET4","index":"0.000033294173679207"},{"denom":"ASSET5","index":"0.000002769256472723"},{"denom":"ASSET6","index":"0.000011310513591166"},{"denom":"ASSET7","index":"0.000017448555115108"},{"denom":"ASSET8","index":"0.000025052901856322"},{"denom":"ASSET9","index":"0.000010061465224668"}],"total_delegator_shares":[{"denom":"ASSET1","amount":"821403842.000000000000000000"},{"denom":"ASSET12","amount":"1962516581.719108253462222688"},{"denom":"ASSET13","amount":"943988937.000000000000000000"},{"denom":"ASSET14","amount":"1758940450.999999931239546358"},{"denom":"ASSET15","amount":"266624801.000000000000000000"},{"denom":"ASSET2","amount":"1542681710.126568490228736954"},{"denom":"ASSET3","amount":"515122578.999999961030122688"},{"denom":"ASSET4","amount":"314519667.142381288972927049"},{"denom":"ASSET6","amount":"382154973.000000000000000000"},{"denom":"ASSET7","amount":"2022993436.533288604835990836"}],"validator_shares":[{"denom":"ASSET1","amount":"821464076.118382834375495292"},{"denom":"ASSET12","amount":"1962516581.719108258171492716"},{"denom":"ASSET13","amount":"944048110.485143770603733916"},{"denom":"ASSET14","amount":"1759265884.500629023136352148"},{"denom":"ASSET15","amount":"266658183.253994060516633912"},{"denom":"ASSET2","amount":"1542726384.329097004623690077"},{"denom":"ASSET3","amount":"515129349.390046165375193819"},{"denom":"ASSET4","amount":"314519667.142381308812743866"},{"denom":"ASSET6","amount":"382154973.000000000000000000"},{"denom":"ASSET7","amount":"2022993436.533288712000000000"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004627557058124"},{"denom":"ASSET1","index":"0.000037837825372287"},{"denom":"ASSET10","index":"0.000032815057157167"},{"denom":"ASSET11","index":"0.000039353017894949"},{"denom":"ASSET12","index":"0.000037453386570472"},{"denom":"ASSET13","index":"0.000012700909348715"},{"denom":"ASSET14","index":"0.000036314118089889"},{"denom":"ASSET15","index":"0.000029456614298440"},{"denom":"ASSET16","index":"0.000016789422401669"},{"denom":"ASSET17","index":"0.000013600876897734"},{"denom":"ASSET18","index":"0.000005653931466374"},{"denom":"ASSET2","index":"0.000011419405679440"},{"denom":"ASSET3","index":"0.000003285045732610"},{"denom":"ASSET4","index":"0.000031022911612237"},{"denom":"ASSET5","index":"0.000002580636681166"},{"denom":"ASSET6","index":"0.000010536288519120"},{"denom":"ASSET7","index":"0.000016267441018645"},{"denom":"ASSET8","index":"0.000023441585233333"},{"denom":"ASSET9","index":"0.000009392113630570"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"1383099168.461464373815924248"},{"denom":"ASSET1","amount":"862986062.380048004526798960"},{"denom":"ASSET11","amount":"925445356.000000000000000000"},{"denom":"ASSET14","amount":"307120738.000000000000000000"},{"denom":"ASSET15","amount":"802149654.389868213091738357"},{"denom":"ASSET16","amount":"1294637612.012769917324076587"},{"denom":"ASSET17","amount":"32774718.591942017787835888"},{"denom":"ASSET18","amount":"2035496155.088552821818379209"},{"denom":"ASSET2","amount":"1000000000.000000000000000000"},{"denom":"ASSET3","amount":"630931582.000000000000000000"},{"denom":"ASSET4","amount":"1527047067.999999936000000000"},{"denom":"ASSET6","amount":"1168634320.667623346000000000"},{"denom":"ASSET8","amount":"294922247.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"1383113560.156713923070366630"},{"denom":"ASSET1","amount":"863049345.751741951858339863"},{"denom":"ASSET11","amount":"925608395.086080853117203376"},{"denom":"ASSET14","amount":"307149147.931411308538949184"},{"denom":"ASSET15","amount":"802149654.389868424718865928"},{"denom":"ASSET16","amount":"1294637612.012769901653345712"},{"denom":"ASSET17","amount":"32774718.591942009022808974"},{"denom":"ASSET18","amount":"2035496156.582640808520662168"},{"denom":"ASSET2","amount":"1000086878.863104409000000000"},{"denom":"ASSET3","amount":"630939874.497896086541383502"},{"denom":"ASSET4","amount":"1527413309.709355307733236280"},{"denom":"ASSET6","amount":"1168634320.667623368000000000"},{"denom":"ASSET8","amount":"294922247.000000000000000000"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004841511007125"},{"denom":"ASSET1","index":"0.000039654695710024"},{"denom":"ASSET10","index":"0.000034279651777090"},{"denom":"ASSET11","index":"0.000041171672608249"},{"denom":"ASSET12","index":"0.000039183541914158"},{"denom":"ASSET13","index":"0.000013274955796632"},{"denom":"ASSET14","index":"0.000037985373355630"},{"denom":"ASSET15","index":"0.000030775759285055"},{"denom":"ASSET16","index":"0.000017597324721367"},{"denom":"ASSET17","index":"0.000014236601216661"},{"denom":"ASSET18","index":"0.000005918259223509"},{"denom":"ASSET2","index":"0.000011968012650386"},{"denom":"ASSET3","index":"0.000003438825394708"},{"denom":"ASSET4","index":"0.000032500952221997"},{"denom":"ASSET5","index":"0.000002700102585074"},{"denom":"ASSET6","index":"0.000011021977584383"},{"denom":"ASSET7","index":"0.000017027349911322"},{"denom":"ASSET8","index":"0.000024486253413768"},{"denom":"ASSET9","index":"0.000009831246256959"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"729453263.000000015639981770"},{"denom":"ASSET10","amount":"833946546.000000000000000000"},{"denom":"ASSET13","amount":"576800743.570314645379622262"},{"denom":"ASSET15","amount":"372002087.000000000000000000"},{"denom":"ASSET18","amount":"1384075989.901099424894009140"},{"denom":"ASSET3","amount":"2853302706.213629513656176519"},{"denom":"ASSET4","amount":"1695820268.633615549011898600"},{"denom":"ASSET8","amount":"595499515.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"729468443.566518417975386866"},{"denom":"ASSET10","amount":"834080208.079545865038845736"},{"denom":"ASSET13","amount":"576800743.570314647465293112"},{"denom":"ASSET15","amount":"372025374.180269097124846728"},{"denom":"ASSET18","amount":"1384075989.901099339960221320"},{"denom":"ASSET3","amount":"2853321457.024414370425004287"},{"denom":"ASSET4","amount":"1695955831.490339561638566766"},{"denom":"ASSET8","amount":"595531396.873505743218503195"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004815927975477"},{"denom":"ASSET1","index":"0.000039382289900864"},{"denom":"ASSET10","index":"0.000034222073494624"},{"denom":"ASSET11","index":"0.000040984100009475"},{"denom":"ASSET12","index":"0.000039031763191412"},{"denom":"ASSET13","index":"0.000013231620117309"},{"denom":"ASSET14","index":"0.000037811725176315"},{"denom":"ASSET15","index":"0.000030710570220454"},{"denom":"ASSET16","index":"0.000017472166858286"},{"denom":"ASSET17","index":"0.000014174439086147"},{"denom":"ASSET18","index":"0.000005881073115984"},{"denom":"ASSET2","index":"0.000011889081587014"},{"denom":"ASSET3","index":"0.000003418652643359"},{"denom":"ASSET4","index":"0.000032291841736538"},{"denom":"ASSET5","index":"0.000002685159513042"},{"denom":"ASSET6","index":"0.000010964422890400"},{"denom":"ASSET7","index":"0.000016933318079269"},{"denom":"ASSET8","index":"0.000024422128019811"},{"denom":"ASSET9","index":"0.000009780347716391"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"598750615.900168876070232540"},{"denom":"ASSET1","amount":"2346579551.656205450234240296"},{"denom":"ASSET12","amount":"627789556.087046745857272563"},{"denom":"ASSET13","amount":"255408700.066902530320914704"},{"denom":"ASSET14","amount":"812718636.924358250364517592"},{"denom":"ASSET15","amount":"112145259.000000000000000000"},{"denom":"ASSET16","amount":"197686576.342065639714760308"},{"denom":"ASSET18","amount":"1000000000.000000000000000000"},{"denom":"ASSET4","amount":"1886576300.286077983955895063"},{"denom":"ASSET6","amount":"353117508.918293504494031030"}],"validator_shares":[{"denom":"ASSET0","amount":"598750615.900168952438656740"},{"denom":"ASSET1","amount":"2346751627.976380556074582586"},{"denom":"ASSET12","amount":"627789556.087046746005851193"},{"denom":"ASSET13","amount":"255408700.066908033673870716"},{"denom":"ASSET14","amount":"812793816.740874314157307980"},{"denom":"ASSET15","amount":"112159299.935074782113384808"},{"denom":"ASSET16","amount":"197686576.342065643695307668"},{"denom":"ASSET18","amount":"1000042472.044885295000000000"},{"denom":"ASSET4","amount":"1886727111.566890770911142556"},{"denom":"ASSET6","amount":"353117508.918300185038636368"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004805221581489"},{"denom":"ASSET1","index":"0.000039345873089839"},{"denom":"ASSET10","index":"0.000033976974059511"},{"denom":"ASSET11","index":"0.000040840579959096"},{"denom":"ASSET12","index":"0.000038851970817686"},{"denom":"ASSET13","index":"0.000013166643058567"},{"denom":"ASSET14","index":"0.000037684443357597"},{"denom":"ASSET15","index":"0.000030511924225991"},{"denom":"ASSET16","index":"0.000017462133370161"},{"denom":"ASSET17","index":"0.000014115418385039"},{"denom":"ASSET18","index":"0.000005874187405486"},{"denom":"ASSET2","index":"0.000011873108566706"},{"denom":"ASSET3","index":"0.000003413246263568"},{"denom":"ASSET4","index":"0.000032247735445721"},{"denom":"ASSET5","index":"0.000002679755737782"},{"denom":"ASSET6","index":"0.000010937559885283"},{"denom":"ASSET7","index":"0.000016893898084444"},{"denom":"ASSET8","index":"0.000024287380141606"},{"denom":"ASSET9","index":"0.000009753761132589"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"2863430380.003106282156880336"},{"denom":"ASSET1","amount":"326252560.669824932046014851"},{"denom":"ASSET10","amount":"874911447.561428095412263069"},{"denom":"ASSET11","amount":"1021775113.847370282318800632"},{"denom":"ASSET14","amount":"680886317.921829924669187180"},{"denom":"ASSET15","amount":"237329131.000000000000000000"},{"denom":"ASSET16","amount":"270429645.000000000000000000"},{"denom":"ASSET2","amount":"395923524.906029045738500720"},{"denom":"ASSET3","amount":"859643181.000000000000000000"},{"denom":"ASSET4","amount":"531782189.000000000000000000"},{"denom":"ASSET5","amount":"198121659.978163058963346112"},{"denom":"ASSET6","amount":"597508936.177890735427250811"},{"denom":"ASSET7","amount":"866021693.000000000000000000"},{"denom":"ASSET8","amount":"158628805.349709260096544726"},{"denom":"ASSET9","amount":"935197273.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"2863489970.517755309722852598"},{"denom":"ASSET1","amount":"326252560.669824935431093326"},{"denom":"ASSET10","amount":"874911447.561428086321505764"},{"denom":"ASSET11","amount":"1021775113.847370282144615064"},{"denom":"ASSET14","amount":"680886317.921829960462575336"},{"denom":"ASSET15","amount":"237373703.911761561579555614"},{"denom":"ASSET16","amount":"270458641.820309595066226065"},{"denom":"ASSET2","amount":"395934990.374000374809499060"},{"denom":"ASSET3","amount":"859648830.245204282272207422"},{"denom":"ASSET4","amount":"531782189.000000000000000000"},{"denom":"ASSET5","amount":"198122972.380064193671476583"},{"denom":"ASSET6","amount":"597508936.177890728604432472"},{"denom":"ASSET7","amount":"866094530.216329358224029416"},{"denom":"ASSET8","amount":"158628805.349709275890172156"},{"denom":"ASSET9","amount":"935266860.282562318720881705"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004788885513607"},{"denom":"ASSET1","index":"0.000039232870282412"},{"denom":"ASSET10","index":"0.000033912995515459"},{"denom":"ASSET11","index":"0.000040719914214811"},{"denom":"ASSET12","index":"0.000038770134946777"},{"denom":"ASSET13","index":"0.000013126121125109"},{"denom":"ASSET14","index":"0.000037561764223245"},{"denom":"ASSET15","index":"0.000030444002874941"},{"denom":"ASSET16","index":"0.000017407955001052"},{"denom":"ASSET17","index":"0.000014087998382720"},{"denom":"ASSET18","index":"0.000005850179359689"},{"denom":"ASSET2","index":"0.000011844653881051"},{"denom":"ASSET3","index":"0.000003401217010571"},{"denom":"ASSET4","index":"0.000032149827882727"},{"denom":"ASSET5","index":"0.000002670075091219"},{"denom":"ASSET6","index":"0.000010895613400007"},{"denom":"ASSET7","index":"0.000016838687674877"},{"denom":"ASSET8","index":"0.000024209646470334"},{"denom":"ASSET9","index":"0.000009725837042465"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"43038889.000000000000000000"},{"denom":"ASSET1","amount":"1015954526.715014190758513734"},{"denom":"ASSET10","amount":"665057460.511882666704148558"},{"denom":"ASSET13","amount":"897186669.545459100522342056"},{"denom":"ASSET14","amount":"459180690.000000000000000000"},{"denom":"ASSET15","amount":"1000000000.000000000000000000"},{"denom":"ASSET16","amount":"83652675.504361286961783047"},{"denom":"ASSET17","amount":"534141690.000000000000000000"},{"denom":"ASSET18","amount":"394228274.939834896445013906"},{"denom":"ASSET2","amount":"231613912.869064794322814581"},{"denom":"ASSET3","amount":"831575700.999999999494727103"},{"denom":"ASSET4","amount":"342726288.607592221083223590"},{"denom":"ASSET6","amount":"1000000000.000000000000000000"},{"denom":"ASSET8","amount":"1818276824.587446348840215904"},{"denom":"ASSET9","amount":"891674024.358196994505989465"}],"validator_shares":[{"denom":"ASSET0","amount":"43039336.836705053708116897"},{"denom":"ASSET1","amount":"1015954526.715014187378777511"},{"denom":"ASSET10","amount":"665110754.943686150075780284"},{"denom":"ASSET13","amount":"897214788.971239535625757233"},{"denom":"ASSET14","amount":"459265646.133269317983168120"},{"denom":"ASSET15","amount":"1000000000.000000000000000000"},{"denom":"ASSET16","amount":"83652675.504361301933570399"},{"denom":"ASSET17","amount":"534176647.962213659814187410"},{"denom":"ASSET18","amount":"394228274.939834884258604734"},{"denom":"ASSET2","amount":"231613912.869064858972220013"},{"denom":"ASSET3","amount":"831575701.000000000000000000"},{"denom":"ASSET4","amount":"342726288.607592230201155382"},{"denom":"ASSET6","amount":"1000000000.000000000000000000"},{"denom":"ASSET8","amount":"1818276824.587446336566720634"},{"denom":"ASSET9","amount":"891696140.073111759010814308"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004792917406928"},{"denom":"ASSET1","index":"0.000039212809339041"},{"denom":"ASSET10","index":"0.000033821158916912"},{"denom":"ASSET11","index":"0.000040703969988334"},{"denom":"ASSET12","index":"0.000038685540464857"},{"denom":"ASSET13","index":"0.000013123383671606"},{"denom":"ASSET14","index":"0.000037572259869060"},{"denom":"ASSET15","index":"0.000030383430108095"},{"denom":"ASSET16","index":"0.000017408409650349"},{"denom":"ASSET17","index":"0.000014052799802155"},{"denom":"ASSET18","index":"0.000005862593440880"},{"denom":"ASSET2","index":"0.000011827616400842"},{"denom":"ASSET3","index":"0.000003404853686933"},{"denom":"ASSET4","index":"0.000032143838562994"},{"denom":"ASSET5","index":"0.000002672916016720"},{"denom":"ASSET6","index":"0.000010912793942254"},{"denom":"ASSET7","index":"0.000016845380556915"},{"denom":"ASSET8","index":"0.000024212241881850"},{"denom":"ASSET9","index":"0.000009719793127333"}],"total_delegator_shares":[{"denom":"ASSET1","amount":"1000000000.000000000000000000"},{"denom":"ASSET10","amount":"1464102725.898485571925894913"},{"denom":"ASSET11","amount":"514231551.967180352969879084"},{"denom":"ASSET13","amount":"354225841.302309507586769205"},{"denom":"ASSET16","amount":"851699297.999999997710371850"},{"denom":"ASSET17","amount":"1234029717.000000012369200058"},{"denom":"ASSET18","amount":"1605280162.736386257942848485"},{"denom":"ASSET2","amount":"635390506.424098956904815118"},{"denom":"ASSET5","amount":"731413843.301990470088051644"},{"denom":"ASSET6","amount":"11564864.198043636493745538"},{"denom":"ASSET9","amount":"543496303.236691738827630704"}],"validator_shares":[{"denom":"ASSET1","amount":"1000073330.699593726000000000"},{"denom":"ASSET10","amount":"1464102725.898486369794573382"},{"denom":"ASSET11","amount":"514322146.016545995907016632"},{"denom":"ASSET13","amount":"354225841.302309521012494182"},{"denom":"ASSET14","amount":"0.443394855613577728"},{"denom":"ASSET16","amount":"851699298.000000000000000000"},{"denom":"ASSET17","amount":"1234029717.000000000000000000"},{"denom":"ASSET18","amount":"1605280162.736386075484627072"},{"denom":"ASSET2","amount":"635390506.424098386054888305"},{"denom":"ASSET3","amount":"0.545095211622947312"},{"denom":"ASSET4","amount":"0.750725765996831624"},{"denom":"ASSET5","amount":"731413843.301990485878873584"},{"denom":"ASSET6","amount":"11564864.198043646900661920"},{"denom":"ASSET9","amount":"543496303.236691734405110976"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004951225827876"},{"denom":"ASSET1","index":"0.000040557012021762"},{"denom":"ASSET10","index":"0.000035069734082727"},{"denom":"ASSET11","index":"0.000042109601056799"},{"denom":"ASSET12","index":"0.000040082844222173"},{"denom":"ASSET13","index":"0.000013575862112906"},{"denom":"ASSET14","index":"0.000038848175625417"},{"denom":"ASSET15","index":"0.000031483078632720"},{"denom":"ASSET16","index":"0.000017997250597624"},{"denom":"ASSET17","index":"0.000014562167775874"},{"denom":"ASSET18","index":"0.000006049901758455"},{"denom":"ASSET2","index":"0.000012241586096760"},{"denom":"ASSET3","index":"0.000003517958255282"},{"denom":"ASSET4","index":"0.000033240288777033"},{"denom":"ASSET5","index":"0.000002760863297447"},{"denom":"ASSET6","index":"0.000011269756321964"},{"denom":"ASSET7","index":"0.000017413488112470"},{"denom":"ASSET8","index":"0.000025045239526050"},{"denom":"ASSET9","index":"0.000010055521615846"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"51005447.816516490733174320"},{"denom":"ASSET1","amount":"1150919058.260937101785038988"},{"denom":"ASSET10","amount":"1181151338.238096388462722952"},{"denom":"ASSET11","amount":"45446108.000000000000000000"},{"denom":"ASSET12","amount":"405368692.711077682539076468"},{"denom":"ASSET13","amount":"333849269.260952864355466413"},{"denom":"ASSET14","amount":"866296067.000000000000000000"},{"denom":"ASSET18","amount":"800627067.000000000000000000"},{"denom":"ASSET2","amount":"1622513454.143178542966680834"},{"denom":"ASSET4","amount":"398375013.683746813446405685"},{"denom":"ASSET5","amount":"1152809392.999999997707859105"},{"denom":"ASSET6","amount":"279846777.000000000000000000"},{"denom":"ASSET7","amount":"884660235.000000000699802928"},{"denom":"ASSET8","amount":"1171643629.448478494118883168"},{"denom":"ASSET9","amount":"135810240.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"51005447.816516493845021016"},{"denom":"ASSET1","amount":"1151003455.960654769356335042"},{"denom":"ASSET10","amount":"1181151338.238096370782913668"},{"denom":"ASSET11","amount":"45446108.000000000000000000"},{"denom":"ASSET12","amount":"405368692.711077016269802187"},{"denom":"ASSET13","amount":"333849269.260952859208240459"},{"denom":"ASSET14","amount":"866376202.949156765658121056"},{"denom":"ASSET16","amount":"0.880206708616504268"},{"denom":"ASSET17","amount":"0.337229187584366279"},{"denom":"ASSET18","amount":"800649736.356489133247742177"},{"denom":"ASSET2","amount":"1622513454.143178539607027824"},{"denom":"ASSET4","amount":"398406859.438433932285771370"},{"denom":"ASSET5","amount":"1152817029.465589726820184942"},{"denom":"ASSET6","amount":"279846777.000000000000000000"},{"denom":"ASSET7","amount":"884697436.626691004537477265"},{"denom":"ASSET8","amount":"1171706356.945389839116180545"},{"denom":"ASSET9","amount":"135816976.938399209996305920"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004554906597940"},{"denom":"ASSET1","index":"0.000037302168826374"},{"denom":"ASSET10","index":"0.000032297727075344"},{"denom":"ASSET11","index":"0.000038743254896762"},{"denom":"ASSET12","index":"0.000036898215140701"},{"denom":"ASSET13","index":"0.000012494026883502"},{"denom":"ASSET14","index":"0.000035737267820700"},{"denom":"ASSET15","index":"0.000028988621299322"},{"denom":"ASSET16","index":"0.000016549854639519"},{"denom":"ASSET17","index":"0.000013405669141672"},{"denom":"ASSET18","index":"0.000005562884057726"},{"denom":"ASSET2","index":"0.000011263270159473"},{"denom":"ASSET3","index":"0.000003234612773623"},{"denom":"ASSET4","index":"0.000030571483907801"},{"denom":"ASSET5","index":"0.000002539733895685"},{"denom":"ASSET6","index":"0.000010363874796083"},{"denom":"ASSET7","index":"0.000016016088508621"},{"denom":"ASSET8","index":"0.000023047152355900"},{"denom":"ASSET9","index":"0.000009251920345515"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"346493666.753579096499179784"},{"denom":"ASSET1","amount":"1518696917.907021497928585224"},{"denom":"ASSET12","amount":"161904132.000000000000000000"},{"denom":"ASSET13","amount":"3251300.093760000510019199"},{"denom":"ASSET14","amount":"1317971409.098423267547670531"},{"denom":"ASSET16","amount":"1347503792.163180262834510421"},{"denom":"ASSET17","amount":"1153780429.999999988872183076"},{"denom":"ASSET18","amount":"1122745443.304097015319560347"},{"denom":"ASSET3","amount":"1567393528.616374226000000000"},{"denom":"ASSET4","amount":"697369690.999999998462372918"},{"denom":"ASSET5","amount":"25864223.000000000000000000"},{"denom":"ASSET6","amount":"1299982924.375925192939748736"},{"denom":"ASSET9","amount":"57042932.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"346500877.592742040185767377"},{"denom":"ASSET1","amount":"1518696917.907021500082694181"},{"denom":"ASSET12","amount":"161904132.000000000000000000"},{"denom":"ASSET13","amount":"3251300.093759964056158376"},{"denom":"ASSET14","amount":"1318093326.874404073023740788"},{"denom":"ASSET16","amount":"1347503792.163180264298887057"},{"denom":"ASSET17","amount":"1153818185.114688075488439340"},{"denom":"ASSET18","amount":"1122745443.304097011097869909"},{"denom":"ASSET3","amount":"1567393528.616374262000000000"},{"denom":"ASSET4","amount":"697369691.000000000000000000"},{"denom":"ASSET5","amount":"25864394.330360546880958962"},{"denom":"ASSET6","amount":"1299982924.375925240924022528"},{"denom":"ASSET9","amount":"57045761.644649728361226656"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000005034266255964"},{"denom":"ASSET1","index":"0.000041206698521448"},{"denom":"ASSET10","index":"0.000035536058655568"},{"denom":"ASSET11","index":"0.000042764328047000"},{"denom":"ASSET12","index":"0.000040651662632960"},{"denom":"ASSET13","index":"0.000013785310751564"},{"denom":"ASSET14","index":"0.000039470118876468"},{"denom":"ASSET15","index":"0.000031921809258150"},{"denom":"ASSET16","index":"0.000018292013548299"},{"denom":"ASSET17","index":"0.000014768687085671"},{"denom":"ASSET18","index":"0.000006158178664479"},{"denom":"ASSET2","index":"0.000012430513136542"},{"denom":"ASSET3","index":"0.000003577015621144"},{"denom":"ASSET4","index":"0.000033775531054020"},{"denom":"ASSET5","index":"0.000002807896874833"},{"denom":"ASSET6","index":"0.000011462152738626"},{"denom":"ASSET7","index":"0.000017696755285661"},{"denom":"ASSET8","index":"0.000025431871107123"},{"denom":"ASSET9","index":"0.000010212641681858"}],"total_delegator_shares":[{"denom":"ASSET1","amount":"1047879550.999999900332309068"},{"denom":"ASSET10","amount":"202023980.000000000000000000"},{"denom":"ASSET12","amount":"1370839081.589976440730978594"},{"denom":"ASSET15","amount":"1061893883.561010980636747358"},{"denom":"ASSET17","amount":"1132296047.258503848552333672"},{"denom":"ASSET2","amount":"299916064.000000000000000000"},{"denom":"ASSET3","amount":"671949388.000000000000000000"},{"denom":"ASSET4","amount":"1488144535.733660234537581972"},{"denom":"ASSET5","amount":"725059604.775644872296748350"},{"denom":"ASSET6","amount":"75124322.656449781251683152"},{"denom":"ASSET7","amount":"54314662.000000000000000000"},{"denom":"ASSET9","amount":"39231912.427285129471889016"}],"validator_shares":[{"denom":"ASSET1","amount":"1047956392.740564789483297026"},{"denom":"ASSET10","amount":"202072551.505586072627710020"},{"denom":"ASSET12","amount":"1371089667.904324621459954809"},{"denom":"ASSET15","amount":"1061893883.561010982635686840"},{"denom":"ASSET17","amount":"1132296047.258503880867197584"},{"denom":"ASSET2","amount":"299933434.662253995809545696"},{"denom":"ASSET3","amount":"671958219.605589632124450668"},{"denom":"ASSET4","amount":"1488144535.733660228680315768"},{"denom":"ASSET5","amount":"725064407.731585378108802170"},{"denom":"ASSET6","amount":"75124322.681402314062735736"},{"denom":"ASSET7","amount":"54319230.163612906140695344"},{"denom":"ASSET9","amount":"39231912.481385543855298952"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000005040570168850"},{"denom":"ASSET1","index":"0.000041355750359430"},{"denom":"ASSET10","index":"0.000035469281704739"},{"denom":"ASSET11","index":"0.000042803752649888"},{"denom":"ASSET12","index":"0.000040675443122671"},{"denom":"ASSET13","index":"0.000013775999252168"},{"denom":"ASSET14","index":"0.000039495576924183"},{"denom":"ASSET15","index":"0.000031873960565154"},{"denom":"ASSET16","index":"0.000018356948849581"},{"denom":"ASSET17","index":"0.000014782651582035"},{"denom":"ASSET18","index":"0.000006164254954174"},{"denom":"ASSET2","index":"0.000012468880818976"},{"denom":"ASSET3","index":"0.000003582052674901"},{"denom":"ASSET4","index":"0.000033871373778794"},{"denom":"ASSET5","index":"0.000002805429255147"},{"denom":"ASSET6","index":"0.000011472525623683"},{"denom":"ASSET7","index":"0.000017727043140390"},{"denom":"ASSET8","index":"0.000025392666272201"},{"denom":"ASSET9","index":"0.000010226777370208"}],"total_delegator_shares":[{"denom":"ASSET1","amount":"93190541.000000000000000000"},{"denom":"ASSET10","amount":"1520767917.848884579838154895"},{"denom":"ASSET11","amount":"507942234.000000000000000000"},{"denom":"ASSET12","amount":"880813132.000000000000000000"},{"denom":"ASSET13","amount":"955423439.150164156441083325"},{"denom":"ASSET14","amount":"45476302.000000001193924540"},{"denom":"ASSET15","amount":"779596106.115241213316416229"},{"denom":"ASSET16","amount":"505795941.000000006184076612"},{"denom":"ASSET18","amount":"312131695.000000000000000000"},{"denom":"ASSET2","amount":"795536130.584677174841237138"},{"denom":"ASSET3","amount":"544972591.091271447848203110"},{"denom":"ASSET4","amount":"1058257062.225817180206139200"},{"denom":"ASSET6","amount":"77848664.050761655647759543"},{"denom":"ASSET8","amount":"1629886.000000000000000000"},{"denom":"ASSET9","amount":"1457945413.279146981308076345"}],"validator_shares":[{"denom":"ASSET1","amount":"93211043.686938900219248959"},{"denom":"ASSET10","amount":"1520767917.848884570103412677"},{"denom":"ASSET11","amount":"507986975.051232540126221556"},{"denom":"ASSET12","amount":"880813132.000000000000000000"},{"denom":"ASSET13","amount":"955453383.819872254732000824"},{"denom":"ASSET14","amount":"45476302.000000000000000000"},{"denom":"ASSET15","amount":"779596106.115241214197209436"},{"denom":"ASSET16","amount":"505832096.333786530950045243"},{"denom":"ASSET18","amount":"312144951.871360163208925025"},{"denom":"ASSET2","amount":"795559168.351951590108820129"},{"denom":"ASSET3","amount":"544976172.442074581964371358"},{"denom":"ASSET4","amount":"1058341658.381806093905071344"},{"denom":"ASSET6","amount":"77850912.664735135949602122"},{"denom":"ASSET8","amount":"1629886.000000000000000000"},{"denom":"ASSET9","amount":"1457945413.279146933060250364"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004775784724633"},{"denom":"ASSET1","index":"0.000039059123105112"},{"denom":"ASSET10","index":"0.000033892192800766"},{"denom":"ASSET11","index":"0.000040628226633110"},{"denom":"ASSET12","index":"0.000038676385578367"},{"denom":"ASSET13","index":"0.000013112828286164"},{"denom":"ASSET14","index":"0.000037487053349535"},{"denom":"ASSET15","index":"0.000030420891257507"},{"denom":"ASSET16","index":"0.000017330808544550"},{"denom":"ASSET17","index":"0.000014046275733066"},{"denom":"ASSET18","index":"0.000005834999280055"},{"denom":"ASSET2","index":"0.000011789318500851"},{"denom":"ASSET3","index":"0.000003391221987296"},{"denom":"ASSET4","index":"0.000032025115280665"},{"denom":"ASSET5","index":"0.000002663502250729"},{"denom":"ASSET6","index":"0.000010874298593075"},{"denom":"ASSET7","index":"0.000016791225269967"},{"denom":"ASSET8","index":"0.000024201838249296"},{"denom":"ASSET9","index":"0.000009696240456876"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"249400677.726114092336645132"},{"denom":"ASSET1","amount":"1017735801.792221413758722616"},{"denom":"ASSET11","amount":"935392389.000000000000000000"},{"denom":"ASSET12","amount":"1000000000.000000000000000000"},{"denom":"ASSET13","amount":"2659658615.907705136899543093"},{"denom":"ASSET14","amount":"453395358.031149928208937824"},{"denom":"ASSET15","amount":"1212362980.362141750582980126"},{"denom":"ASSET16","amount":"746135982.000000000000000000"},{"denom":"ASSET17","amount":"126774879.000000000000000000"},{"denom":"ASSET2","amount":"1375051212.351145716088470501"},{"denom":"ASSET5","amount":"1461290474.167887553891553269"},{"denom":"ASSET6","amount":"490138032.435917483217950594"},{"denom":"ASSET7","amount":"716253625.000000000000000000"},{"denom":"ASSET9","amount":"953131588.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"249400677.726112861143169518"},{"denom":"ASSET1","amount":"1017735801.792221412238506692"},{"denom":"ASSET11","amount":"935474781.122563246243478826"},{"denom":"ASSET12","amount":"1000091394.715422465000000000"},{"denom":"ASSET13","amount":"2659658615.907705162892455635"},{"denom":"ASSET14","amount":"453395358.031149920653265056"},{"denom":"ASSET15","amount":"1212362980.362141792982414504"},{"denom":"ASSET16","amount":"746215986.435151986605466054"},{"denom":"ASSET17","amount":"126783176.033376524672864931"},{"denom":"ASSET2","amount":"1375051212.351145714387006634"},{"denom":"ASSET5","amount":"1461300154.080707788826894338"},{"denom":"ASSET6","amount":"490166347.547141486114148208"},{"denom":"ASSET7","amount":"716283744.812012720064058875"},{"denom":"ASSET9","amount":"953131588.000000000000000000"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004068642377663"},{"denom":"ASSET1","index":"0.000033238444511498"},{"denom":"ASSET10","index":"0.000029412640141304"},{"denom":"ASSET11","index":"0.000034798715577226"},{"denom":"ASSET12","index":"0.000033316871490560"},{"denom":"ASSET13","index":"0.000011269568778181"},{"denom":"ASSET14","index":"0.000032061779098356"},{"denom":"ASSET15","index":"0.000026325023840151"},{"denom":"ASSET16","index":"0.000014722742660245"},{"denom":"ASSET17","index":"0.000012090364136859"},{"denom":"ASSET18","index":"0.000004948786772751"},{"denom":"ASSET2","index":"0.000010058951612285"},{"denom":"ASSET3","index":"0.000002885176745684"},{"denom":"ASSET4","index":"0.000027270323749471"},{"denom":"ASSET5","index":"0.000002268262209760"},{"denom":"ASSET6","index":"0.000009260606251413"},{"denom":"ASSET7","index":"0.000014320166209664"},{"denom":"ASSET8","index":"0.000020821468009834"},{"denom":"ASSET9","index":"0.000008292124658288"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"2106604012.729886733074816004"},{"denom":"ASSET1","amount":"1651759385.952921193841411366"},{"denom":"ASSET12","amount":"704109562.000000000000000000"},{"denom":"ASSET13","amount":"310715655.000000000000000000"},{"denom":"ASSET14","amount":"76223022.277127367318093552"},{"denom":"ASSET15","amount":"1512528143.000000016359775408"},{"denom":"ASSET16","amount":"608135025.312305587176428827"},{"denom":"ASSET18","amount":"1097038942.559902489269956383"},{"denom":"ASSET3","amount":"230314104.000000000000000000"},{"denom":"ASSET5","amount":"893623325.000000000000000000"},{"denom":"ASSET8","amount":"3674653093.293896546007019558"},{"denom":"ASSET9","amount":"590810512.828860196553368223"}],"validator_shares":[{"denom":"ASSET0","amount":"2106625932.779912051263868804"},{"denom":"ASSET1","amount":"1651759385.952921092041384344"},{"denom":"ASSET12","amount":"704238271.651197144140345794"},{"denom":"ASSET13","amount":"310735132.058972227608117540"},{"denom":"ASSET14","amount":"76223022.277127379380793408"},{"denom":"ASSET15","amount":"1512717516.225796765568908616"},{"denom":"ASSET16","amount":"608135025.312305577599400540"},{"denom":"ASSET18","amount":"1097054473.514355454540549384"},{"denom":"ASSET3","amount":"230315617.571138225603832442"},{"denom":"ASSET5","amount":"893635164.159599860691764225"},{"denom":"ASSET8","amount":"3674653093.293896531332540915"},{"denom":"ASSET9","amount":"590825166.386677950648616949"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004922134568655"},{"denom":"ASSET1","index":"0.000040310768470971"},{"denom":"ASSET10","index":"0.000034862317636591"},{"denom":"ASSET11","index":"0.000041853360655044"},{"denom":"ASSET12","index":"0.000039844322972483"},{"denom":"ASSET13","index":"0.000013494158512482"},{"denom":"ASSET14","index":"0.000038610410052146"},{"denom":"ASSET15","index":"0.000031296305042201"},{"denom":"ASSET16","index":"0.000017886287338776"},{"denom":"ASSET17","index":"0.000014476771157218"},{"denom":"ASSET18","index":"0.000006013326761486"},{"denom":"ASSET2","index":"0.000012169008325863"},{"denom":"ASSET3","index":"0.000003495870129458"},{"denom":"ASSET4","index":"0.000033036302956604"},{"denom":"ASSET5","index":"0.000002744576306327"},{"denom":"ASSET6","index":"0.000011200596779979"},{"denom":"ASSET7","index":"0.000017306609815312"},{"denom":"ASSET8","index":"0.000024891822473233"},{"denom":"ASSET9","index":"0.000009995213155793"}],"total_delegator_shares":[{"denom":"ASSET1","amount":"339592226.999999993937901104"},{"denom":"ASSET10","amount":"514827808.871618569422135925"},{"denom":"ASSET11","amount":"1187243816.845151755872541270"},{"denom":"ASSET12","amount":"802502401.000000000000000000"},{"denom":"ASSET13","amount":"187417122.000000000000000000"},{"denom":"ASSET14","amount":"1798656502.508689050397544882"},{"denom":"ASSET15","amount":"1055570369.730793180841940138"},{"denom":"ASSET16","amount":"568234336.000000002506687617"},{"denom":"ASSET18","amount":"830521826.160959577402464974"},{"denom":"ASSET3","amount":"721965142.000000000000000000"},{"denom":"ASSET6","amount":"420510851.009119450781577657"},{"denom":"ASSET7","amount":"1560476521.165365872256921086"},{"denom":"ASSET8","amount":"43401339.130473242716805322"},{"denom":"ASSET9","amount":"882789791.533055831104578699"}],"validator_shares":[{"denom":"ASSET1","amount":"339592227.000000000000000000"},{"denom":"ASSET10","amount":"514827808.871618578517938225"},{"denom":"ASSET11","amount":"1187243816.845151737938738936"},{"denom":"ASSET12","amount":"802502401.000000000000000000"},{"denom":"ASSET13","amount":"187422995.985906113941608738"},{"denom":"ASSET14","amount":"1798656502.508689084713063704"},{"denom":"ASSET15","amount":"1055570369.730793193325857912"},{"denom":"ASSET16","amount":"568234336.000000000000000000"},{"denom":"ASSET18","amount":"830533583.990289004355640221"},{"denom":"ASSET3","amount":"721969886.477948813589975204"},{"denom":"ASSET6","amount":"420522997.223664010416643402"},{"denom":"ASSET7","amount":"1560542142.137919765658965958"},{"denom":"ASSET8","amount":"43401339.130473226105078560"},{"denom":"ASSET9","amount":"882789791.533055832771969528"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004793394028488"},{"denom":"ASSET1","index":"0.000039220404580202"},{"denom":"ASSET10","index":"0.000034077494992257"},{"denom":"ASSET11","index":"0.000040800608166180"},{"denom":"ASSET12","index":"0.000038873410892672"},{"denom":"ASSET13","index":"0.000013168980031980"},{"denom":"ASSET14","index":"0.000037635915450234"},{"denom":"ASSET15","index":"0.000030577360428195"},{"denom":"ASSET16","index":"0.000017398839639336"},{"denom":"ASSET17","index":"0.000014118783753094"},{"denom":"ASSET18","index":"0.000005852832798439"},{"denom":"ASSET2","index":"0.000011842962776555"},{"denom":"ASSET3","index":"0.000003403276486052"},{"denom":"ASSET4","index":"0.000032153615485739"},{"denom":"ASSET5","index":"0.000002672876628231"},{"denom":"ASSET6","index":"0.000010911335074632"},{"denom":"ASSET7","index":"0.000016856474536988"},{"denom":"ASSET8","index":"0.000024303379662825"},{"denom":"ASSET9","index":"0.000009738097740305"}],"total_delegator_shares":[{"denom":"ASSET1","amount":"25024997.999999998702733840"},{"denom":"ASSET10","amount":"245918632.000000000000000000"},{"denom":"ASSET11","amount":"626191.000000000000000000"},{"denom":"ASSET13","amount":"972462315.000000001135108769"},{"denom":"ASSET15","amount":"329698619.000000000000000000"},{"denom":"ASSET16","amount":"829914802.000000000000000000"},{"denom":"ASSET17","amount":"642770473.527692577336157935"},{"denom":"ASSET18","amount":"93822386.000000019146311000"},{"denom":"ASSET2","amount":"1943613110.251006290738713042"},{"denom":"ASSET3","amount":"555400942.000000000000000000"},{"denom":"ASSET5","amount":"705716486.844129184461868662"},{"denom":"ASSET6","amount":"2282475304.942834896034990955"},{"denom":"ASSET7","amount":"642159100.427784123855523300"},{"denom":"ASSET8","amount":"994128634.397520558054372889"},{"denom":"ASSET9","amount":"114867508.000000000000000000"}],"validator_shares":[{"denom":"ASSET1","amount":"25024998.000000000000000000"},{"denom":"ASSET10","amount":"245977756.853435257234606968"},{"denom":"ASSET11","amount":"626301.318353958065023036"},{"denom":"ASSET13","amount":"972523273.324927413073206420"},{"denom":"ASSET15","amount":"329739898.292097620680593128"},{"denom":"ASSET16","amount":"829914802.000000000000000000"},{"denom":"ASSET17","amount":"642770473.527692556552169695"},{"denom":"ASSET18","amount":"93825042.534112523408323766"},{"denom":"ASSET2","amount":"1943613110.251006318519447394"},{"denom":"ASSET3","amount":"555400942.000000000000000000"},{"denom":"ASSET5","amount":"705716488.497132141018520346"},{"denom":"ASSET6","amount":"2282475304.942834876427965720"},{"denom":"ASSET7","amount":"642213109.561381798347548868"},{"denom":"ASSET8","amount":"994128634.397520643769756318"},{"denom":"ASSET9","amount":"114873206.063161266495400864"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004771369973109"},{"denom":"ASSET1","index":"0.000039075310152038"},{"denom":"ASSET10","index":"0.000033862554414871"},{"denom":"ASSET11","index":"0.000040596859097080"},{"denom":"ASSET12","index":"0.000038671598570907"},{"denom":"ASSET13","index":"0.000013093360645348"},{"denom":"ASSET14","index":"0.000037444745013630"},{"denom":"ASSET15","index":"0.000030388777717539"},{"denom":"ASSET16","index":"0.000017335253118551"},{"denom":"ASSET17","index":"0.000014050047421762"},{"denom":"ASSET18","index":"0.000005826669662430"},{"denom":"ASSET2","index":"0.000011799629246551"},{"denom":"ASSET3","index":"0.000003387458203475"},{"denom":"ASSET4","index":"0.000032025073817120"},{"denom":"ASSET5","index":"0.000002660417616354"},{"denom":"ASSET6","index":"0.000010857215890221"},{"denom":"ASSET7","index":"0.000016779501987829"},{"denom":"ASSET8","index":"0.000024155503710162"},{"denom":"ASSET9","index":"0.000009692703418713"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"343528535.000000000000000000"},{"denom":"ASSET1","amount":"574841487.000000000000000000"},{"denom":"ASSET10","amount":"578825206.000000000000000000"},{"denom":"ASSET12","amount":"285156670.000000297220563136"},{"denom":"ASSET13","amount":"614413786.513474332754212005"},{"denom":"ASSET14","amount":"401843455.000000000000000000"},{"denom":"ASSET15","amount":"191860080.000000000000000000"},{"denom":"ASSET16","amount":"907765764.225106074439288258"},{"denom":"ASSET17","amount":"211128287.635804484853187501"},{"denom":"ASSET18","amount":"677060215.000000000349780330"},{"denom":"ASSET2","amount":"78233951.999999997743144798"},{"denom":"ASSET3","amount":"140032657.762279929983156028"},{"denom":"ASSET5","amount":"960659098.000000000000000000"},{"denom":"ASSET6","amount":"1329827229.217722487320107458"},{"denom":"ASSET8","amount":"1700275500.214462673537319914"}],"validator_shares":[{"denom":"ASSET0","amount":"343535684.132152887741078370"},{"denom":"ASSET1","amount":"574883640.528397207749710562"},{"denom":"ASSET10","amount":"578871590.203319160709216798"},{"denom":"ASSET12","amount":"285182731.812705467762591550"},{"denom":"ASSET13","amount":"614452300.741388495053549814"},{"denom":"ASSET14","amount":"401917802.782604671777138340"},{"denom":"ASSET15","amount":"191884101.478489095132024960"},{"denom":"ASSET16","amount":"907765764.225106078428929902"},{"denom":"ASSET17","amount":"211135196.379016222704448289"},{"denom":"ASSET18","amount":"677060215.000000000000000000"},{"denom":"ASSET2","amount":"78233952.000000000000000000"},{"denom":"ASSET3","amount":"140032657.762279935904373316"},{"denom":"ASSET5","amount":"960659098.000000000000000000"},{"denom":"ASSET6","amount":"1329865640.513874570563389758"},{"denom":"ASSET8","amount":"1700366529.622644043820685785"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000005002676183029"},{"denom":"ASSET1","index":"0.000040970324905648"},{"denom":"ASSET10","index":"0.000035351419874368"},{"denom":"ASSET11","index":"0.000042515341359955"},{"denom":"ASSET12","index":"0.000040437095263911"},{"denom":"ASSET13","index":"0.000013704097837157"},{"denom":"ASSET14","index":"0.000039232715985481"},{"denom":"ASSET15","index":"0.000031748860528974"},{"denom":"ASSET16","index":"0.000018183406112225"},{"denom":"ASSET17","index":"0.000014691260749644"},{"denom":"ASSET18","index":"0.000006116450843117"},{"denom":"ASSET2","index":"0.000012362846917674"},{"denom":"ASSET3","index":"0.000003554507989012"},{"denom":"ASSET4","index":"0.000033577944179880"},{"denom":"ASSET5","index":"0.000002789612099891"},{"denom":"ASSET6","index":"0.000011388824893905"},{"denom":"ASSET7","index":"0.000017589578899471"},{"denom":"ASSET8","index":"0.000025277922472838"},{"denom":"ASSET9","index":"0.000010152860868192"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"2904501301.831601954564938752"},{"denom":"ASSET10","amount":"711908001.354294920947173121"},{"denom":"ASSET11","amount":"1371484355.552099511938960192"},{"denom":"ASSET12","amount":"767862111.000000000000000000"},{"denom":"ASSET13","amount":"362049175.000000000000000000"},{"denom":"ASSET14","amount":"60225277.000000000000000000"},{"denom":"ASSET15","amount":"664321630.990424743158737037"},{"denom":"ASSET2","amount":"496889369.000000000000000000"},{"denom":"ASSET3","amount":"867674258.000000207527523084"},{"denom":"ASSET4","amount":"1421238483.790973604663129830"},{"denom":"ASSET5","amount":"933501443.357480779567385271"},{"denom":"ASSET6","amount":"1454514567.912533660250224415"},{"denom":"ASSET7","amount":"124536735.000000000000000000"},{"denom":"ASSET9","amount":"1624081998.000000044000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"2904531524.319288820670836904"},{"denom":"ASSET10","amount":"711908001.354294922072202086"},{"denom":"ASSET11","amount":"1371605159.942262490689028052"},{"denom":"ASSET12","amount":"768002474.474391095936824107"},{"denom":"ASSET13","amount":"362083217.842763227147224650"},{"denom":"ASSET14","amount":"60241991.803085050039766006"},{"denom":"ASSET15","amount":"664363217.255981283514079416"},{"denom":"ASSET2","amount":"496918148.043347608401308591"},{"denom":"ASSET3","amount":"867679960.022361398431147596"},{"denom":"ASSET4","amount":"1421238483.790981522353736004"},{"denom":"ASSET5","amount":"933501443.357480779599766074"},{"denom":"ASSET6","amount":"1454556580.730889367292327865"},{"denom":"ASSET7","amount":"124547209.228511210004835320"},{"denom":"ASSET9","amount":"1624162561.441871481063740784"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004537599353463"},{"denom":"ASSET1","index":"0.000037117847669619"},{"denom":"ASSET10","index":"0.000032340600561623"},{"denom":"ASSET11","index":"0.000038655579958761"},{"denom":"ASSET12","index":"0.000036850325657168"},{"denom":"ASSET13","index":"0.000012483428644838"},{"denom":"ASSET14","index":"0.000035652849297182"},{"denom":"ASSET15","index":"0.000029008629406748"},{"denom":"ASSET16","index":"0.000016463312322248"},{"denom":"ASSET17","index":"0.000013380997793781"},{"denom":"ASSET18","index":"0.000005538215667455"},{"denom":"ASSET2","index":"0.000011210947306863"},{"denom":"ASSET3","index":"0.000003221611418209"},{"denom":"ASSET4","index":"0.000030435785673766"},{"denom":"ASSET5","index":"0.000002530194284617"},{"denom":"ASSET6","index":"0.000010331304570982"},{"denom":"ASSET7","index":"0.000015960878418764"},{"denom":"ASSET8","index":"0.000023043980031623"},{"denom":"ASSET9","index":"0.000009223345438838"}],"total_delegator_shares":[{"denom":"ASSET1","amount":"687365894.999999999942509076"},{"denom":"ASSET10","amount":"230920659.000000000000000000"},{"denom":"ASSET11","amount":"2132797222.727649992933594550"},{"denom":"ASSET12","amount":"528594371.578248660880244804"},{"denom":"ASSET13","amount":"832602648.000000000000000000"},{"denom":"ASSET15","amount":"1644226760.993537814666519916"},{"denom":"ASSET16","amount":"788382773.497834279251245163"},{"denom":"ASSET2","amount":"1104288886.925192388995534151"},{"denom":"ASSET4","amount":"36018461.863331913376808014"},{"denom":"ASSET5","amount":"198693632.000000000000000000"},{"denom":"ASSET6","amount":"747857596.835313889976447104"},{"denom":"ASSET8","amount":"163472170.000000000000000000"},{"denom":"ASSET9","amount":"471763593.301533064296908622"}],"validator_shares":[{"denom":"ASSET1","amount":"687365895.000000000000000000"},{"denom":"ASSET10","amount":"230957670.167730217537822044"},{"denom":"ASSET11","amount":"2132797222.727649984325877464"},{"denom":"ASSET12","amount":"528594371.578248659693640149"},{"denom":"ASSET13","amount":"832654839.290057557173864864"},{"denom":"ASSET15","amount":"1644329688.924118317617724688"},{"denom":"ASSET16","amount":"788382774.715284868154646070"},{"denom":"ASSET2","amount":"1104288886.925191921211332183"},{"denom":"ASSET4","amount":"36021341.148079492923344382"},{"denom":"ASSET5","amount":"198696264.390577678786014976"},{"denom":"ASSET6","amount":"747857596.835313917112235738"},{"denom":"ASSET8","amount":"163498427.336908631134461410"},{"denom":"ASSET9","amount":"471763593.301533064750113676"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004710092433654"},{"denom":"ASSET1","index":"0.000038556135792355"},{"denom":"ASSET10","index":"0.000033353659193614"},{"denom":"ASSET11","index":"0.000040049318205974"},{"denom":"ASSET12","index":"0.000038111075465724"},{"denom":"ASSET13","index":"0.000012916441638659"},{"denom":"ASSET14","index":"0.000036953570332487"},{"denom":"ASSET15","index":"0.000029944608970039"},{"denom":"ASSET16","index":"0.000017108808043772"},{"denom":"ASSET17","index":"0.000013844822035492"},{"denom":"ASSET18","index":"0.000005755990843634"},{"denom":"ASSET2","index":"0.000011636891149639"},{"denom":"ASSET3","index":"0.000003344846225532"},{"denom":"ASSET4","index":"0.000031603139079821"},{"denom":"ASSET5","index":"0.000002626855566694"},{"denom":"ASSET6","index":"0.000010722052285409"},{"denom":"ASSET7","index":"0.000016561307322387"},{"denom":"ASSET8","index":"0.000023829558015918"},{"denom":"ASSET9","index":"0.000009562504361461"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"827682157.312301510835692076"},{"denom":"ASSET10","amount":"47828685.263338084204751794"},{"denom":"ASSET11","amount":"2279518671.613571137285890251"},{"denom":"ASSET12","amount":"1539772639.000000000754996965"},{"denom":"ASSET13","amount":"385219739.000000000000000000"},{"denom":"ASSET14","amount":"1000000000.000000000000000000"},{"denom":"ASSET17","amount":"774550256.897173827261419868"},{"denom":"ASSET3","amount":"1000000000.000000000000000000"},{"denom":"ASSET4","amount":"748747595.000000000000000000"},{"denom":"ASSET5","amount":"55709005.000000000000000000"},{"denom":"ASSET6","amount":"607467033.892318115840890432"},{"denom":"ASSET8","amount":"475176192.111883567801966776"},{"denom":"ASSET9","amount":"119640826.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"827682157.312301511173372857"},{"denom":"ASSET10","amount":"47828685.263338118121885687"},{"denom":"ASSET11","amount":"2279719458.346513462666529922"},{"denom":"ASSET12","amount":"1539913366.082156702932935135"},{"denom":"ASSET13","amount":"385231812.471695093530946331"},{"denom":"ASSET14","amount":"1000185016.781235548000000000"},{"denom":"ASSET17","amount":"774575602.476818324539465417"},{"denom":"ASSET3","amount":"1000013143.260113561000000000"},{"denom":"ASSET4","amount":"748927172.044358973004324950"},{"denom":"ASSET5","amount":"55710112.094514089158960640"},{"denom":"ASSET6","amount":"607467033.892318164701785408"},{"denom":"ASSET8","amount":"475176192.111883594408526772"},{"denom":"ASSET9","amount":"119646760.846111696744704208"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004860013838161"},{"denom":"ASSET1","index":"0.000039829440775367"},{"denom":"ASSET10","index":"0.000034332188571649"},{"denom":"ASSET11","index":"0.000041295956899181"},{"denom":"ASSET12","index":"0.000039293307297353"},{"denom":"ASSET13","index":"0.000013304573466834"},{"denom":"ASSET14","index":"0.000038098524560949"},{"denom":"ASSET15","index":"0.000030831414335702"},{"denom":"ASSET16","index":"0.000017675343678269"},{"denom":"ASSET17","index":"0.000014280507444290"},{"denom":"ASSET18","index":"0.000005939808720502"},{"denom":"ASSET2","index":"0.000012021426052396"},{"denom":"ASSET3","index":"0.000003452613307807"},{"denom":"ASSET4","index":"0.000032633729651502"},{"denom":"ASSET5","index":"0.000002709632799469"},{"denom":"ASSET6","index":"0.000011056293160572"},{"denom":"ASSET7","index":"0.000017086435014568"},{"denom":"ASSET8","index":"0.000024533267776117"},{"denom":"ASSET9","index":"0.000009866489479987"}],"total_delegator_shares":[{"denom":"ASSET1","amount":"293709379.477198850478835604"},{"denom":"ASSET11","amount":"566801381.000000001660236964"},{"denom":"ASSET12","amount":"365568210.000000000000000000"},{"denom":"ASSET13","amount":"652675201.110479448698863020"},{"denom":"ASSET14","amount":"1232490939.609280902060771404"},{"denom":"ASSET15","amount":"946436275.000000000000000000"},{"denom":"ASSET16","amount":"579448792.000000000000000000"},{"denom":"ASSET17","amount":"470022680.232067591786147044"},{"denom":"ASSET3","amount":"946795838.000000000000000000"},{"denom":"ASSET5","amount":"868805738.350758147393348390"},{"denom":"ASSET8","amount":"1039155108.873767299863246824"},{"denom":"ASSET9","amount":"900598715.000000000000000000"}],"validator_shares":[{"denom":"ASSET1","amount":"293730917.391473159046258006"},{"denom":"ASSET11","amount":"566901236.468017071582224276"},{"denom":"ASSET12","amount":"365601621.002520449923837650"},{"denom":"ASSET13","amount":"652675201.110479448142213320"},{"denom":"ASSET14","amount":"1232490939.609280902948636992"},{"denom":"ASSET15","amount":"946495521.528230197215138600"},{"denom":"ASSET16","amount":"579448792.000000000000000000"},{"denom":"ASSET17","amount":"470022680.232067610192355738"},{"denom":"ASSET3","amount":"946808281.983973270962159118"},{"denom":"ASSET5","amount":"868805738.350758146778772480"},{"denom":"ASSET8","amount":"1039155108.873767306055853081"},{"denom":"ASSET9","amount":"900621052.069253383233295420"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004540879401916"},{"denom":"ASSET1","index":"0.000037109326653163"},{"denom":"ASSET10","index":"0.000032398334841051"},{"denom":"ASSET11","index":"0.000038686678002821"},{"denom":"ASSET12","index":"0.000036882989555273"},{"denom":"ASSET13","index":"0.000012500925415203"},{"denom":"ASSET14","index":"0.000035685105836088"},{"denom":"ASSET15","index":"0.000029057375432061"},{"denom":"ASSET16","index":"0.000016458584215111"},{"denom":"ASSET17","index":"0.000013389816949018"},{"denom":"ASSET18","index":"0.000005541081577771"},{"denom":"ASSET2","index":"0.000011207807033486"},{"denom":"ASSET3","index":"0.000003223044473751"},{"denom":"ASSET4","index":"0.000030436134132870"},{"denom":"ASSET5","index":"0.000002531537550049"},{"denom":"ASSET6","index":"0.000010340264160631"},{"denom":"ASSET7","index":"0.000015969406108044"},{"denom":"ASSET8","index":"0.000023083480922251"},{"denom":"ASSET9","index":"0.000009226972489727"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"226819567.000000000000000000"},{"denom":"ASSET11","amount":"854682078.890462882980255016"},{"denom":"ASSET13","amount":"2021514334.952771812103036255"},{"denom":"ASSET15","amount":"1099655588.446575094315683377"},{"denom":"ASSET16","amount":"81370881.000000000000000000"},{"denom":"ASSET17","amount":"621558204.000000000000000000"},{"denom":"ASSET18","amount":"328845934.639338183228321732"},{"denom":"ASSET2","amount":"581555487.000000000000000000"},{"denom":"ASSET3","amount":"1808237197.050995817305430765"},{"denom":"ASSET4","amount":"584871434.739158734787986576"},{"denom":"ASSET5","amount":"1540534690.604068253671066720"},{"denom":"ASSET6","amount":"1148308425.856251514412951393"},{"denom":"ASSET8","amount":"147902509.275004500636978533"},{"denom":"ASSET9","amount":"608802144.503264511312718799"}],"validator_shares":[{"denom":"ASSET0","amount":"226821927.147529063512462391"},{"denom":"ASSET1","amount":"0.881617165624504708"},{"denom":"ASSET11","amount":"854682095.229584630550477564"},{"denom":"ASSET13","amount":"2021514334.952771745812440059"},{"denom":"ASSET15","amount":"1099655588.446575092758390104"},{"denom":"ASSET16","amount":"81376697.557873601222392863"},{"denom":"ASSET17","amount":"621598883.109337116633553356"},{"denom":"ASSET18","amount":"328845934.639337400720104462"},{"denom":"ASSET2","amount":"581606011.879542690907842183"},{"denom":"ASSET3","amount":"1808237197.050995822641067231"},{"denom":"ASSET4","amount":"584871434.739158601773515412"},{"denom":"ASSET5","amount":"1540555100.362364549781358080"},{"denom":"ASSET6","amount":"1148341594.085966185174241548"},{"denom":"ASSET8","amount":"147902509.275004491191195929"},{"denom":"ASSET9","amount":"608802144.503264495956166888"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004784386695781"},{"denom":"ASSET1","index":"0.000039307809389062"},{"denom":"ASSET10","index":"0.000033714677769104"},{"denom":"ASSET11","index":"0.000040662904949736"},{"denom":"ASSET12","index":"0.000038668132213558"},{"denom":"ASSET13","index":"0.000013081502579564"},{"denom":"ASSET14","index":"0.000037513720823089"},{"denom":"ASSET15","index":"0.000030286727607082"},{"denom":"ASSET16","index":"0.000017448568439152"},{"denom":"ASSET17","index":"0.000014058195543657"},{"denom":"ASSET18","index":"0.000005856447250177"},{"denom":"ASSET2","index":"0.000011861367222190"},{"denom":"ASSET3","index":"0.000003399778022787"},{"denom":"ASSET4","index":"0.000032191928298935"},{"denom":"ASSET5","index":"0.000002669361202485"},{"denom":"ASSET6","index":"0.000010891174480776"},{"denom":"ASSET7","index":"0.000016839228720899"},{"denom":"ASSET8","index":"0.000024111299158773"},{"denom":"ASSET9","index":"0.000009717625311093"}],"total_delegator_shares":[{"denom":"ASSET1","amount":"1000000000.000000000000000000"},{"denom":"ASSET10","amount":"1604113086.000000211256472636"},{"denom":"ASSET11","amount":"351841489.000000000000000000"},{"denom":"ASSET15","amount":"773410183.000000000000000000"},{"denom":"ASSET17","amount":"328510927.000000000000000000"},{"denom":"ASSET2","amount":"227138032.878966054174219911"},{"denom":"ASSET4","amount":"56724453.000000000000000000"},{"denom":"ASSET5","amount":"324968400.000000000000000000"},{"denom":"ASSET8","amount":"1000000000.000000000000000000"},{"denom":"ASSET9","amount":"641308523.000000000000000000"}],"validator_shares":[{"denom":"ASSET1","amount":"1000146666.781745073000000000"},{"denom":"ASSET10","amount":"1604370187.719444611796500376"},{"denom":"ASSET11","amount":"351903474.199277272655250244"},{"denom":"ASSET15","amount":"773507016.359363665591945096"},{"denom":"ASSET17","amount":"328510927.000000000000000000"},{"denom":"ASSET2","amount":"227138032.878966042764824202"},{"denom":"ASSET4","amount":"56724453.000000000000000000"},{"denom":"ASSET5","amount":"324970552.662894158584629600"},{"denom":"ASSET8","amount":"1000053538.034377313000000000"},{"denom":"ASSET9","amount":"641324429.033011645940553724"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004953155424517"},{"denom":"ASSET1","index":"0.000040606888247052"},{"denom":"ASSET10","index":"0.000035170982695117"},{"denom":"ASSET11","index":"0.000042156301910947"},{"denom":"ASSET12","index":"0.000040183030492130"},{"denom":"ASSET13","index":"0.000013590071791821"},{"denom":"ASSET14","index":"0.000038871453551416"},{"denom":"ASSET15","index":"0.000031558024433710"},{"denom":"ASSET16","index":"0.000018011385345721"},{"denom":"ASSET17","index":"0.000014602864003856"},{"denom":"ASSET18","index":"0.000006046015291900"},{"denom":"ASSET2","index":"0.000012266366015467"},{"denom":"ASSET3","index":"0.000003517202576052"},{"denom":"ASSET4","index":"0.000033271184035282"},{"denom":"ASSET5","index":"0.000002760943248123"},{"denom":"ASSET6","index":"0.000011265372607182"},{"denom":"ASSET7","index":"0.000017421644422297"},{"denom":"ASSET8","index":"0.000025062942780506"},{"denom":"ASSET9","index":"0.000010068919846849"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"512721582.315601153012661019"},{"denom":"ASSET1","amount":"1137339349.000000000000000000"},{"denom":"ASSET10","amount":"27080610.000000008879687124"},{"denom":"ASSET11","amount":"608363280.499298992511229952"},{"denom":"ASSET14","amount":"634173306.000000000000000000"},{"denom":"ASSET15","amount":"59991.000000000000000000"},{"denom":"ASSET17","amount":"227970979.378101320529039174"},{"denom":"ASSET3","amount":"265246461.562841087600474112"},{"denom":"ASSET5","amount":"1683726138.345100979380335780"},{"denom":"ASSET6","amount":"925459647.598579084198714623"},{"denom":"ASSET7","amount":"109230726.000000000000000000"},{"denom":"ASSET8","amount":"1064198635.358768713637290828"}],"validator_shares":[{"denom":"ASSET0","amount":"512721582.315601166831315884"},{"denom":"ASSET1","amount":"1137506158.902069866409777477"},{"denom":"ASSET10","amount":"27084950.386881308035574760"},{"denom":"ASSET11","amount":"608363280.499298990334797824"},{"denom":"ASSET14","amount":"634231969.639074554392127808"},{"denom":"ASSET15","amount":"59998.511059705798653192"},{"denom":"ASSET17","amount":"227978439.264096996947275842"},{"denom":"ASSET3","amount":"265246461.562835738648334336"},{"denom":"ASSET5","amount":"1683726138.345100969392108008"},{"denom":"ASSET6","amount":"925459647.857238146402229309"},{"denom":"ASSET7","amount":"109230726.000000000000000000"},{"denom":"ASSET8","amount":"1064198635.358768721990110081"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004436789952669"},{"denom":"ASSET1","index":"0.000036213190978412"},{"denom":"ASSET10","index":"0.000031611013476262"},{"denom":"ASSET11","index":"0.000037779078414589"},{"denom":"ASSET12","index":"0.000035979116489801"},{"denom":"ASSET13","index":"0.000012213749195021"},{"denom":"ASSET14","index":"0.000034864158317319"},{"denom":"ASSET15","index":"0.000028362297628331"},{"denom":"ASSET16","index":"0.000016066338617004"},{"denom":"ASSET17","index":"0.000013057645986304"},{"denom":"ASSET18","index":"0.000005418485487430"},{"denom":"ASSET2","index":"0.000010930260523546"},{"denom":"ASSET3","index":"0.000003149326648701"},{"denom":"ASSET4","index":"0.000029711570819555"},{"denom":"ASSET5","index":"0.000002474110775888"},{"denom":"ASSET6","index":"0.000010109622747326"},{"denom":"ASSET7","index":"0.000015599467381101"},{"denom":"ASSET8","index":"0.000022561292254755"},{"denom":"ASSET9","index":"0.000009007830399076"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"558227211.113149556335877846"},{"denom":"ASSET1","amount":"791784260.796824046570057935"},{"denom":"ASSET10","amount":"184467452.833248669409796827"},{"denom":"ASSET12","amount":"1339084071.673713087167745944"},{"denom":"ASSET13","amount":"104334210.520897312995442315"},{"denom":"ASSET15","amount":"1879032723.977384622396807688"},{"denom":"ASSET16","amount":"249313506.176696859626202269"},{"denom":"ASSET17","amount":"809293400.766306681112102114"},{"denom":"ASSET18","amount":"118346793.000000000000000000"},{"denom":"ASSET2","amount":"109174363.000000000000000000"},{"denom":"ASSET3","amount":"400066607.512139322612813384"},{"denom":"ASSET4","amount":"553509636.562437849858399951"},{"denom":"ASSET5","amount":"277899449.000000000000000000"},{"denom":"ASSET6","amount":"884611507.000000000000000000"},{"denom":"ASSET7","amount":"13092624.999999982823521618"},{"denom":"ASSET9","amount":"793336102.837800226553700302"}],"validator_shares":[{"denom":"ASSET0","amount":"558227211.113153641956469366"},{"denom":"ASSET1","amount":"791784260.796824024341388429"},{"denom":"ASSET10","amount":"184467452.833248676894690753"},{"denom":"ASSET12","amount":"1339084071.673713090032012767"},{"denom":"ASSET13","amount":"104334210.520897316248730355"},{"denom":"ASSET15","amount":"1879267984.716144523423697152"},{"denom":"ASSET16","amount":"249313506.176696885827601579"},{"denom":"ASSET17","amount":"809319883.244573568248307947"},{"denom":"ASSET18","amount":"118346793.000000000000000000"},{"denom":"ASSET2","amount":"109180686.205770225554546557"},{"denom":"ASSET3","amount":"400066607.512139324133432756"},{"denom":"ASSET4","amount":"553553883.644954251102493746"},{"denom":"ASSET5","amount":"277901289.867703350282634206"},{"denom":"ASSET6","amount":"884662610.712735196674895576"},{"denom":"ASSET7","amount":"13093175.569504975334719875"},{"denom":"ASSET9","amount":"793336102.837800216328739904"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004647286505128"},{"denom":"ASSET1","index":"0.000038009132036325"},{"denom":"ASSET10","index":"0.000033142388915443"},{"denom":"ASSET11","index":"0.000039594668374363"},{"denom":"ASSET12","index":"0.000037753435240155"},{"denom":"ASSET13","index":"0.000012789620691403"},{"denom":"ASSET14","index":"0.000036518112593773"},{"denom":"ASSET15","index":"0.000029725103813089"},{"denom":"ASSET16","index":"0.000016857301755173"},{"denom":"ASSET17","index":"0.000013707892451703"},{"denom":"ASSET18","index":"0.000005671073895044"},{"denom":"ASSET2","index":"0.000011481468896457"},{"denom":"ASSET3","index":"0.000003298652517557"},{"denom":"ASSET4","index":"0.000031167698742833"},{"denom":"ASSET5","index":"0.000002592256930151"},{"denom":"ASSET6","index":"0.000010580735913944"},{"denom":"ASSET7","index":"0.000016345764259168"},{"denom":"ASSET8","index":"0.000023608907458604"},{"denom":"ASSET9","index":"0.000009446179077200"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"336282296.000000000000000000"},{"denom":"ASSET1","amount":"620751412.000000000000000000"},{"denom":"ASSET13","amount":"2223415565.590749391063999167"},{"denom":"ASSET14","amount":"824494102.000000000000000000"},{"denom":"ASSET15","amount":"249238554.000000000000000000"},{"denom":"ASSET16","amount":"365130536.000000000000000000"},{"denom":"ASSET17","amount":"1180890652.701701966858590679"},{"denom":"ASSET2","amount":"1577675659.582682779889043528"},{"denom":"ASSET3","amount":"2230392257.738080944842407689"},{"denom":"ASSET4","amount":"759980872.593301275282021482"},{"denom":"ASSET5","amount":"1981626250.058416951499233009"},{"denom":"ASSET6","amount":"1042453455.652738983126501220"},{"denom":"ASSET9","amount":"1131308374.445194196368404620"}],"validator_shares":[{"denom":"ASSET0","amount":"336285795.150626507477199608"},{"denom":"ASSET1","amount":"620796932.135315753240841112"},{"denom":"ASSET10","amount":"0.277517526419369756"},{"denom":"ASSET13","amount":"2223415565.590749389866417041"},{"denom":"ASSET14","amount":"824570371.095468403134879936"},{"denom":"ASSET15","amount":"249254156.232728890841632176"},{"denom":"ASSET16","amount":"365156636.281427001319827928"},{"denom":"ASSET17","amount":"1180890652.701701974054801616"},{"denom":"ASSET2","amount":"1577767036.052030462951072783"},{"denom":"ASSET3","amount":"2230392257.738080963386249843"},{"denom":"ASSET4","amount":"760041624.808184734940891756"},{"denom":"ASSET5","amount":"1981626250.058417014001989278"},{"denom":"ASSET6","amount":"1042513677.842384870463442384"},{"denom":"ASSET9","amount":"1131308374.445194183247285225"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004619384085878"},{"denom":"ASSET1","index":"0.000037832417098439"},{"denom":"ASSET10","index":"0.000032750145056484"},{"denom":"ASSET11","index":"0.000039294730751429"},{"denom":"ASSET12","index":"0.000037416427541567"},{"denom":"ASSET13","index":"0.000012671813979164"},{"denom":"ASSET14","index":"0.000036248560185433"},{"denom":"ASSET15","index":"0.000029396437010656"},{"denom":"ASSET16","index":"0.000016785976843486"},{"denom":"ASSET17","index":"0.000013593650767018"},{"denom":"ASSET18","index":"0.000005642705122830"},{"denom":"ASSET2","index":"0.000011421935308679"},{"denom":"ASSET3","index":"0.000003281292888266"},{"denom":"ASSET4","index":"0.000031006969518146"},{"denom":"ASSET5","index":"0.000002575890941784"},{"denom":"ASSET6","index":"0.000010513605988541"},{"denom":"ASSET7","index":"0.000016244985826285"},{"denom":"ASSET8","index":"0.000023375927636049"},{"denom":"ASSET9","index":"0.000009382767835280"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"1000000000.000000000000000000"},{"denom":"ASSET10","amount":"475425207.104264187408988310"},{"denom":"ASSET11","amount":"556270294.000000000000000000"},{"denom":"ASSET12","amount":"138330324.031294111343689116"},{"denom":"ASSET13","amount":"1520256491.765607144881850487"},{"denom":"ASSET14","amount":"495679072.817945134461461908"},{"denom":"ASSET15","amount":"833416069.000000000000000000"},{"denom":"ASSET16","amount":"348083506.000000000000000000"},{"denom":"ASSET18","amount":"33633845.249974894197084584"},{"denom":"ASSET2","amount":"1918875554.444116799554698804"},{"denom":"ASSET3","amount":"905770888.000000000000000000"},{"denom":"ASSET5","amount":"620006268.503396783342952777"},{"denom":"ASSET6","amount":"59500271.000000000000000000"},{"denom":"ASSET7","amount":"337842070.736469261025468432"},{"denom":"ASSET8","amount":"1189120376.830359557508652835"},{"denom":"ASSET9","amount":"281186484.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"1000010405.396502073000000000"},{"denom":"ASSET10","amount":"475463305.340555196360339149"},{"denom":"ASSET11","amount":"556368294.167983648589704024"},{"denom":"ASSET12","amount":"138330324.031294121396332815"},{"denom":"ASSET13","amount":"1520256491.765607314468809814"},{"denom":"ASSET14","amount":"495724925.170841933020458338"},{"denom":"ASSET15","amount":"833520415.282842943275637528"},{"denom":"ASSET16","amount":"348120829.256021786576291482"},{"denom":"ASSET18","amount":"33633845.249974894134386102"},{"denom":"ASSET2","amount":"1918875554.444116800957400258"},{"denom":"ASSET3","amount":"905770888.000000000000000000"},{"denom":"ASSET5","amount":"620010375.562693462399423860"},{"denom":"ASSET6","amount":"59501989.631172753838729627"},{"denom":"ASSET7","amount":"337842070.736469260778624216"},{"denom":"ASSET8","amount":"1189120376.830359532407059061"},{"denom":"ASSET9","amount":"281193458.118285548893410192"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004616721479176"},{"denom":"ASSET1","index":"0.000037776223870921"},{"denom":"ASSET10","index":"0.000032792106235622"},{"denom":"ASSET11","index":"0.000039284178188011"},{"denom":"ASSET12","index":"0.000037420627315813"},{"denom":"ASSET13","index":"0.000012677210240132"},{"denom":"ASSET14","index":"0.000036238343992734"},{"denom":"ASSET15","index":"0.000029426834520377"},{"denom":"ASSET16","index":"0.000016759074479265"},{"denom":"ASSET17","index":"0.000013592257069110"},{"denom":"ASSET18","index":"0.000005637809940416"},{"denom":"ASSET2","index":"0.000011406628355974"},{"denom":"ASSET3","index":"0.000003278241119549"},{"denom":"ASSET4","index":"0.000030968445081876"},{"denom":"ASSET5","index":"0.000002574590057360"},{"denom":"ASSET6","index":"0.000010507503575560"},{"denom":"ASSET7","index":"0.000016233218198884"},{"denom":"ASSET8","index":"0.000023393630662833"},{"denom":"ASSET9","index":"0.000009377336949943"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"2140709741.999999994230599629"},{"denom":"ASSET1","amount":"1919900531.065205122661043328"},{"denom":"ASSET10","amount":"245014651.956425458873485709"},{"denom":"ASSET12","amount":"147746854.000000000000000000"},{"denom":"ASSET14","amount":"682691151.000000000000000000"},{"denom":"ASSET17","amount":"1159428746.000000023195617761"},{"denom":"ASSET3","amount":"1050279504.246178053488955680"},{"denom":"ASSET4","amount":"1318332969.652367155000000000"},{"denom":"ASSET5","amount":"836245410.000000006572185309"},{"denom":"ASSET6","amount":"967863126.000000000000000000"},{"denom":"ASSET7","amount":"953927626.651520032619939536"},{"denom":"ASSET8","amount":"1448674854.437574751973443314"},{"denom":"ASSET9","amount":"356778022.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"2140709742.000000000000000000"},{"denom":"ASSET1","amount":"1919900531.065205163130731136"},{"denom":"ASSET10","amount":"245034286.224793043836803061"},{"denom":"ASSET12","amount":"147773861.794056651911397598"},{"denom":"ASSET14","amount":"682754302.739284428526188768"},{"denom":"ASSET17","amount":"1159428746.000000000000000000"},{"denom":"ASSET3","amount":"1050279504.246178033615191906"},{"denom":"ASSET4","amount":"1318332969.652367202000000000"},{"denom":"ASSET5","amount":"836245410.000000000000000000"},{"denom":"ASSET6","amount":"967946996.898876720875692344"},{"denom":"ASSET7","amount":"953927626.651520033771700436"},{"denom":"ASSET8","amount":"1448674854.437574776473897632"},{"denom":"ASSET9","amount":"356786870.974857241592647736"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004555194098436"},{"denom":"ASSET1","index":"0.000037194020995645"},{"denom":"ASSET10","index":"0.000032267252901811"},{"denom":"ASSET11","index":"0.000038719949684547"},{"denom":"ASSET12","index":"0.000036813725422538"},{"denom":"ASSET13","index":"0.000012504453081971"},{"denom":"ASSET14","index":"0.000035746405125898"},{"denom":"ASSET15","index":"0.000028975554868050"},{"denom":"ASSET16","index":"0.000016509698953174"},{"denom":"ASSET17","index":"0.000013364006755943"},{"denom":"ASSET18","index":"0.000005570240358371"},{"denom":"ASSET2","index":"0.000011218734016892"},{"denom":"ASSET3","index":"0.000003234690053143"},{"denom":"ASSET4","index":"0.000030508812947759"},{"denom":"ASSET5","index":"0.000002540722507986"},{"denom":"ASSET6","index":"0.000010378847790634"},{"denom":"ASSET7","index":"0.000016009295815118"},{"denom":"ASSET8","index":"0.000023089143199744"},{"denom":"ASSET9","index":"0.000009237844210338"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"1079263556.905213524896816305"},{"denom":"ASSET1","amount":"1385196356.219749620209851878"},{"denom":"ASSET10","amount":"376832448.222377726802882810"},{"denom":"ASSET12","amount":"958250883.000000000000000000"},{"denom":"ASSET13","amount":"420919176.000000000000000000"},{"denom":"ASSET14","amount":"1099407574.163662094435792430"},{"denom":"ASSET15","amount":"738778730.346537528785110770"},{"denom":"ASSET18","amount":"180454.999999997881132304"},{"denom":"ASSET2","amount":"1054178003.883112660782414560"},{"denom":"ASSET3","amount":"901219846.999999985176748315"},{"denom":"ASSET4","amount":"2595636304.072070475396463403"},{"denom":"ASSET5","amount":"818703885.000000000000000000"},{"denom":"ASSET7","amount":"663117188.000000000000000000"},{"denom":"ASSET8","amount":"1571754209.956823591032780012"},{"denom":"ASSET9","amount":"1300041840.500062823742387330"}],"validator_shares":[{"denom":"ASSET0","amount":"1079274787.070453307248552045"},{"denom":"ASSET1","amount":"1385196356.219749632428531624"},{"denom":"ASSET10","amount":"376862645.720196087532711195"},{"denom":"ASSET12","amount":"958426049.115568652623360671"},{"denom":"ASSET13","amount":"420919176.000000000000000000"},{"denom":"ASSET14","amount":"1099407574.163662721671645952"},{"denom":"ASSET15","amount":"738778730.346537534792576056"},{"denom":"ASSET18","amount":"180455.000000000000000000"},{"denom":"ASSET2","amount":"1054239060.199392688912401915"},{"denom":"ASSET3","amount":"901231691.966868624647045167"},{"denom":"ASSET4","amount":"2595636304.072070436224986522"},{"denom":"ASSET5","amount":"818714731.590155355438832305"},{"denom":"ASSET7","amount":"663200847.493353369086851896"},{"denom":"ASSET8","amount":"1571838358.587748942414371044"},{"denom":"ASSET9","amount":"1300074084.743963950987203912"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004539324942663"},{"denom":"ASSET1","index":"0.000037091548671989"},{"denom":"ASSET10","index":"0.000032311230391425"},{"denom":"ASSET11","index":"0.000038643893366512"},{"denom":"ASSET12","index":"0.000036813252640406"},{"denom":"ASSET13","index":"0.000012483953886423"},{"denom":"ASSET14","index":"0.000035653509224266"},{"denom":"ASSET15","index":"0.000028989751677480"},{"denom":"ASSET16","index":"0.000016454445289157"},{"denom":"ASSET17","index":"0.000013365498203035"},{"denom":"ASSET18","index":"0.000005542699554242"},{"denom":"ASSET2","index":"0.000011199084561643"},{"denom":"ASSET3","index":"0.000003222392320706"},{"denom":"ASSET4","index":"0.000030420225788286"},{"denom":"ASSET5","index":"0.000002531691031550"},{"denom":"ASSET6","index":"0.000010336955514568"},{"denom":"ASSET7","index":"0.000015960099155288"},{"denom":"ASSET8","index":"0.000023050101078858"},{"denom":"ASSET9","index":"0.000009218591371994"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"6908763.704909289024048241"},{"denom":"ASSET1","amount":"2408602532.645895702216167797"},{"denom":"ASSET10","amount":"1315527074.323367818722302034"},{"denom":"ASSET11","amount":"146699234.888663571084905440"},{"denom":"ASSET12","amount":"72801906.443243337415572147"},{"denom":"ASSET13","amount":"861662706.000000190291414800"},{"denom":"ASSET2","amount":"1236886708.558843246033583066"},{"denom":"ASSET3","amount":"1215525262.238602277979426072"},{"denom":"ASSET4","amount":"1783560932.999999992603831869"},{"denom":"ASSET5","amount":"694697127.000000000000000000"},{"denom":"ASSET6","amount":"422085921.000000000000000000"},{"denom":"ASSET7","amount":"680546780.999999984879139456"},{"denom":"ASSET8","amount":"1312075618.773706697001350042"}],"validator_shares":[{"denom":"ASSET0","amount":"6908835.593334977560773430"},{"denom":"ASSET1","amount":"2408602532.645895698807880574"},{"denom":"ASSET10","amount":"1315527074.323367800230465624"},{"denom":"ASSET11","amount":"146699234.888663514734861320"},{"denom":"ASSET12","amount":"72801906.443243345724428505"},{"denom":"ASSET13","amount":"861662706.000000000000000000"},{"denom":"ASSET2","amount":"1236886708.558843232919613862"},{"denom":"ASSET3","amount":"1215525262.238602168188811860"},{"denom":"ASSET4","amount":"1783703509.321282424615695032"},{"denom":"ASSET5","amount":"694706330.687873878730917011"},{"denom":"ASSET6","amount":"422110304.763364673163401928"},{"denom":"ASSET7","amount":"680604018.749943921295236072"},{"denom":"ASSET8","amount":"1312075618.773706704518911866"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004895773732889"},{"denom":"ASSET1","index":"0.000040125045885881"},{"denom":"ASSET10","index":"0.000034530347890850"},{"denom":"ASSET11","index":"0.000041582468230322"},{"denom":"ASSET12","index":"0.000039543482481393"},{"denom":"ASSET13","index":"0.000013393572744357"},{"denom":"ASSET14","index":"0.000038368912078780"},{"denom":"ASSET15","index":"0.000031017071231408"},{"denom":"ASSET16","index":"0.000017810358083148"},{"denom":"ASSET17","index":"0.000014371406014683"},{"denom":"ASSET18","index":"0.000005986976049338"},{"denom":"ASSET2","index":"0.000012106973634558"},{"denom":"ASSET3","index":"0.000003478447053581"},{"denom":"ASSET4","index":"0.000032874817927521"},{"denom":"ASSET5","index":"0.000002729651069839"},{"denom":"ASSET6","index":"0.000011139377325220"},{"denom":"ASSET7","index":"0.000017211836402270"},{"denom":"ASSET8","index":"0.000024696325414819"},{"denom":"ASSET9","index":"0.000009935598296499"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"1218406268.087992409163552526"},{"denom":"ASSET1","amount":"383334756.000000000000000000"},{"denom":"ASSET10","amount":"1141773015.577450618579693512"},{"denom":"ASSET11","amount":"519246210.000000000000000000"},{"denom":"ASSET13","amount":"270790635.840101183300994154"},{"denom":"ASSET14","amount":"925127152.000000000000000000"},{"denom":"ASSET15","amount":"1096684493.445848698148904965"},{"denom":"ASSET17","amount":"322577549.000000000000000000"},{"denom":"ASSET18","amount":"174654760.000000000000000000"},{"denom":"ASSET3","amount":"645400430.000000000000000000"},{"denom":"ASSET5","amount":"528329969.000000000000000000"},{"denom":"ASSET6","amount":"903203754.906071806756667079"},{"denom":"ASSET7","amount":"174754847.000000000000000000"},{"denom":"ASSET8","amount":"65833068.862060137904741845"},{"denom":"ASSET9","amount":"302060526.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"1218406268.087992384022130598"},{"denom":"ASSET1","amount":"383390978.474993552812657188"},{"denom":"ASSET10","amount":"1141864511.647680231490862721"},{"denom":"ASSET11","amount":"519246210.000000000000000000"},{"denom":"ASSET13","amount":"270790635.840101174020981437"},{"denom":"ASSET14","amount":"925127152.000000000000000000"},{"denom":"ASSET15","amount":"1096753145.451817643937902632"},{"denom":"ASSET17","amount":"322588104.693303181863283762"},{"denom":"ASSET18","amount":"174659705.262507548985965560"},{"denom":"ASSET3","amount":"645404671.324033743735732660"},{"denom":"ASSET5","amount":"528333468.775117021394383086"},{"denom":"ASSET6","amount":"903229843.428067640471777164"},{"denom":"ASSET7","amount":"174769544.849601722272387064"},{"denom":"ASSET8","amount":"65833068.862060142450044965"},{"denom":"ASSET9","amount":"302083002.082619719765381710"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004931397933984"},{"denom":"ASSET1","index":"0.000040352271951275"},{"denom":"ASSET10","index":"0.000034957777134329"},{"denom":"ASSET11","index":"0.000041936330660967"},{"denom":"ASSET12","index":"0.000039921322949190"},{"denom":"ASSET13","index":"0.000013529253328858"},{"denom":"ASSET14","index":"0.000038691809136583"},{"denom":"ASSET15","index":"0.000031380047826250"},{"denom":"ASSET16","index":"0.000017904400359919"},{"denom":"ASSET17","index":"0.000014501150519904"},{"denom":"ASSET18","index":"0.000006024985847518"},{"denom":"ASSET2","index":"0.000012179668126361"},{"denom":"ASSET3","index":"0.000003502182720384"},{"denom":"ASSET4","index":"0.000033078078225160"},{"denom":"ASSET5","index":"0.000002749829149896"},{"denom":"ASSET6","index":"0.000011224248960260"},{"denom":"ASSET7","index":"0.000017336975491688"},{"denom":"ASSET8","index":"0.000024963318026039"},{"denom":"ASSET9","index":"0.000010011343908228"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"542290595.000000000000000000"},{"denom":"ASSET10","amount":"474694446.522819085805990970"},{"denom":"ASSET12","amount":"358206311.000000000000000000"},{"denom":"ASSET15","amount":"863669224.780419372268771102"},{"denom":"ASSET17","amount":"15371168.435834278772412244"},{"denom":"ASSET18","amount":"640355319.000000000000000000"},{"denom":"ASSET2","amount":"1222544212.425478455247137376"},{"denom":"ASSET3","amount":"341910705.000000000000000000"},{"denom":"ASSET4","amount":"857036209.324132265171628475"},{"denom":"ASSET5","amount":"229808708.758629168728301408"},{"denom":"ASSET6","amount":"188364891.000000000000000000"},{"denom":"ASSET7","amount":"2133785562.682083566257520917"},{"denom":"ASSET8","amount":"830373951.000000000000000000"},{"denom":"ASSET9","amount":"2000024802.444623810000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"542290595.000000000000000000"},{"denom":"ASSET10","amount":"474694447.427560280945157477"},{"denom":"ASSET12","amount":"358271790.311507242016759507"},{"denom":"ASSET15","amount":"863723290.124763414676771056"},{"denom":"ASSET17","amount":"15372174.432436745259842792"},{"denom":"ASSET18","amount":"640355319.000000000000000000"},{"denom":"ASSET2","amount":"1222544212.425478453911910768"},{"denom":"ASSET3","amount":"341912951.905987513464274710"},{"denom":"ASSET4","amount":"857036209.324132422000580784"},{"denom":"ASSET5","amount":"229808708.758629180899744646"},{"denom":"ASSET6","amount":"188370331.811748991513032567"},{"denom":"ASSET7","amount":"2133875292.378074206544451476"},{"denom":"ASSET8","amount":"830462866.543456826294659869"},{"denom":"ASSET9","amount":"2000074407.992329596000000000"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004641387744542"},{"denom":"ASSET1","index":"0.000037932378567067"},{"denom":"ASSET10","index":"0.000032601101001776"},{"denom":"ASSET11","index":"0.000039356878014615"},{"denom":"ASSET12","index":"0.000037330950055556"},{"denom":"ASSET13","index":"0.000012687204599197"},{"denom":"ASSET14","index":"0.000036353644377842"},{"denom":"ASSET15","index":"0.000029312681138685"},{"denom":"ASSET16","index":"0.000016849600599124"},{"denom":"ASSET17","index":"0.000013558668912488"},{"denom":"ASSET18","index":"0.000005686042555505"},{"denom":"ASSET2","index":"0.000011430316757601"},{"denom":"ASSET3","index":"0.000003297706070248"},{"denom":"ASSET4","index":"0.000031100933164073"},{"denom":"ASSET5","index":"0.000002588917532750"},{"denom":"ASSET6","index":"0.000010574549471715"},{"denom":"ASSET7","index":"0.000016305136913609"},{"denom":"ASSET8","index":"0.000023412720889981"},{"denom":"ASSET9","index":"0.000009397944355794"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"82216810.835625508472129384"},{"denom":"ASSET1","amount":"1884485530.944134846242391138"},{"denom":"ASSET10","amount":"308904235.000000000000000000"},{"denom":"ASSET11","amount":"827783788.138444611929089510"},{"denom":"ASSET12","amount":"99922981.000000000000000000"},{"denom":"ASSET13","amount":"2383270608.642938824150945438"},{"denom":"ASSET14","amount":"1512853543.013884266232091987"},{"denom":"ASSET15","amount":"321200352.999999999321200353"},{"denom":"ASSET17","amount":"75686135.000000000000000000"},{"denom":"ASSET3","amount":"1366546723.000000023385386693"},{"denom":"ASSET5","amount":"65303856.999999997620593674"},{"denom":"ASSET6","amount":"1000000000.000000000000000000"},{"denom":"ASSET7","amount":"980595126.999999392883792340"},{"denom":"ASSET9","amount":"230240826.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"82216810.835625531478264962"},{"denom":"ASSET1","amount":"1884485530.944134653448888877"},{"denom":"ASSET10","amount":"308904235.000000000000000000"},{"denom":"ASSET11","amount":"827783788.138444319774666892"},{"denom":"ASSET12","amount":"99941246.697165874962496297"},{"denom":"ASSET13","amount":"2383345304.582222401619897913"},{"denom":"ASSET14","amount":"1512853543.013884268453032096"},{"denom":"ASSET15","amount":"321200353.000000000000000000"},{"denom":"ASSET17","amount":"75688611.674619296640616630"},{"denom":"ASSET3","amount":"1366564683.879037723392410603"},{"denom":"ASSET5","amount":"65303857.000000000000000000"},{"denom":"ASSET6","amount":"1000057769.667623368000000000"},{"denom":"ASSET7","amount":"980677600.476096647271306424"},{"denom":"ASSET9","amount":"230252247.217293668189504208"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000005166723047275"},{"denom":"ASSET1","index":"0.000042322847048766"},{"denom":"ASSET10","index":"0.000036533262543159"},{"denom":"ASSET11","index":"0.000043914144587354"},{"denom":"ASSET12","index":"0.000041785782999849"},{"denom":"ASSET13","index":"0.000014153266257788"},{"denom":"ASSET14","index":"0.000040516003905052"},{"denom":"ASSET15","index":"0.000032804900644736"},{"denom":"ASSET16","index":"0.000018781400926959"},{"denom":"ASSET17","index":"0.000015182438814265"},{"denom":"ASSET18","index":"0.000006314804040122"},{"denom":"ASSET2","index":"0.000012772828382927"},{"denom":"ASSET3","index":"0.000003669982792512"},{"denom":"ASSET4","index":"0.000034682890695078"},{"denom":"ASSET5","index":"0.000002880570137079"},{"denom":"ASSET6","index":"0.000011757393373176"},{"denom":"ASSET7","index":"0.000018165388254823"},{"denom":"ASSET8","index":"0.000026105026563655"},{"denom":"ASSET9","index":"0.000010488779573430"}],"total_delegator_shares":[{"denom":"ASSET1","amount":"393631931.000000000000000000"},{"denom":"ASSET10","amount":"895324357.205573210712530850"},{"denom":"ASSET11","amount":"465949561.000000000000000000"},{"denom":"ASSET13","amount":"663015212.000000000000000000"},{"denom":"ASSET14","amount":"948093570.000000000000000000"},{"denom":"ASSET15","amount":"1345380.000000000000000000"},{"denom":"ASSET16","amount":"863396764.569695163700745112"},{"denom":"ASSET17","amount":"337728645.000000000000000000"},{"denom":"ASSET2","amount":"729731639.108998045847353820"},{"denom":"ASSET4","amount":"31581184.444918178794722196"},{"denom":"ASSET5","amount":"1404961733.355947337918533764"},{"denom":"ASSET6","amount":"1181429967.598405422254927408"},{"denom":"ASSET7","amount":"1133498375.636434442430220087"},{"denom":"ASSET9","amount":"297619265.508715057836654844"}],"validator_shares":[{"denom":"ASSET1","amount":"393718533.268468940129012569"},{"denom":"ASSET10","amount":"895324357.205573165126355608"},{"denom":"ASSET11","amount":"466031649.034796097372675556"},{"denom":"ASSET13","amount":"663056772.784517304059585616"},{"denom":"ASSET14","amount":"948093570.000000000000000000"},{"denom":"ASSET15","amount":"1345548.445758646920238560"},{"denom":"ASSET16","amount":"863396764.569695219995103063"},{"denom":"ASSET17","amount":"337750748.320956618326377905"},{"denom":"ASSET2","amount":"729731639.108997814235672740"},{"denom":"ASSET4","amount":"31581184.444918331325969656"},{"denom":"ASSET5","amount":"1404961733.355947502482223610"},{"denom":"ASSET6","amount":"1181498218.414953889189615208"},{"denom":"ASSET7","amount":"1133546041.374937189617992734"},{"denom":"ASSET9","amount":"297619266.416374182452859576"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004969895200592"},{"denom":"ASSET1","index":"0.000040677229202184"},{"denom":"ASSET10","index":"0.000035058930288083"},{"denom":"ASSET11","index":"0.000042205040269932"},{"denom":"ASSET12","index":"0.000040115789411902"},{"denom":"ASSET13","index":"0.000013604140441016"},{"denom":"ASSET14","index":"0.000038956175529265"},{"denom":"ASSET15","index":"0.000031495411813590"},{"denom":"ASSET16","index":"0.000018058173463617"},{"denom":"ASSET17","index":"0.000014573820128939"},{"denom":"ASSET18","index":"0.000006078287757186"},{"denom":"ASSET2","index":"0.000012269650352482"},{"denom":"ASSET3","index":"0.000003530333075818"},{"denom":"ASSET4","index":"0.000033339356746661"},{"denom":"ASSET5","index":"0.000002771746740103"},{"denom":"ASSET6","index":"0.000011313791411467"},{"denom":"ASSET7","index":"0.000017468648188179"},{"denom":"ASSET8","index":"0.000025095367669757"},{"denom":"ASSET9","index":"0.000010079570522096"}],"total_delegator_shares":[{"denom":"ASSET10","amount":"1012718284.124326476396604780"},{"denom":"ASSET11","amount":"1000000000.000000000000000000"},{"denom":"ASSET12","amount":"808257152.000000000000000000"},{"denom":"ASSET13","amount":"1079029205.644401535267771377"},{"denom":"ASSET14","amount":"1165785943.989979892526129794"},{"denom":"ASSET15","amount":"1000000000.000000000000000000"},{"denom":"ASSET16","amount":"2116586532.606865706540424324"},{"denom":"ASSET17","amount":"729549041.862889902318471776"},{"denom":"ASSET18","amount":"13072422.000000000000000000"},{"denom":"ASSET2","amount":"1193189667.305974785143037180"},{"denom":"ASSET3","amount":"655903297.000000000000000000"},{"denom":"ASSET4","amount":"623405375.129193743058773440"},{"denom":"ASSET6","amount":"165077362.313006546733103616"},{"denom":"ASSET7","amount":"750128680.000000000000000000"},{"denom":"ASSET9","amount":"584994006.091803964010173689"}],"validator_shares":[{"denom":"ASSET10","amount":"1012718284.124326495615550622"},{"denom":"ASSET11","amount":"1000000000.000000000000000000"},{"denom":"ASSET12","amount":"808404899.597427908688746624"},{"denom":"ASSET13","amount":"1079029205.644401533198537077"},{"denom":"ASSET14","amount":"1165893783.984519823007366228"},{"denom":"ASSET15","amount":"1000125203.108896312000000000"},{"denom":"ASSET16","amount":"2116662180.236240393327467440"},{"denom":"ASSET17","amount":"729572914.869425546852702938"},{"denom":"ASSET18","amount":"13072422.000000000000000000"},{"denom":"ASSET2","amount":"1193224220.640277186761054395"},{"denom":"ASSET3","amount":"655911917.707641813254310617"},{"denom":"ASSET4","amount":"623405375.129193740479460368"},{"denom":"ASSET6","amount":"165077362.313006539493167088"},{"denom":"ASSET7","amount":"750128680.000000000000000000"},{"denom":"ASSET9","amount":"585023025.027216688546465915"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004589138107131"},{"denom":"ASSET1","index":"0.000037446098475403"},{"denom":"ASSET10","index":"0.000032732808056967"},{"denom":"ASSET11","index":"0.000039094478322284"},{"denom":"ASSET12","index":"0.000037233161430730"},{"denom":"ASSET13","index":"0.000012643946661020"},{"denom":"ASSET14","index":"0.000036080970262311"},{"denom":"ASSET15","index":"0.000029367139968273"},{"denom":"ASSET16","index":"0.000016612678055137"},{"denom":"ASSET17","index":"0.000013507979841133"},{"denom":"ASSET18","index":"0.000005606465800233"},{"denom":"ASSET2","index":"0.000011302755940208"},{"denom":"ASSET3","index":"0.000003257528612514"},{"denom":"ASSET4","index":"0.000030728704055425"},{"denom":"ASSET5","index":"0.000002561029239288"},{"denom":"ASSET6","index":"0.000010461272108585"},{"denom":"ASSET7","index":"0.000016139641498045"},{"denom":"ASSET8","index":"0.000023361940912705"},{"denom":"ASSET9","index":"0.000009319386307275"}],"total_delegator_shares":[{"denom":"ASSET1","amount":"657423799.000000000000000000"},{"denom":"ASSET10","amount":"274468709.000000000000000000"},{"denom":"ASSET12","amount":"1939671227.715422507044836019"},{"denom":"ASSET13","amount":"14629865.000000000000000000"},{"denom":"ASSET14","amount":"1207620105.999999997269604216"},{"denom":"ASSET16","amount":"965779821.723923311561083904"},{"denom":"ASSET17","amount":"2130399221.634219905508536057"},{"denom":"ASSET18","amount":"37016842.000000000000000000"},{"denom":"ASSET2","amount":"1000000000.000000000000000000"},{"denom":"ASSET3","amount":"16674121.000000000000000000"},{"denom":"ASSET4","amount":"555485553.946144907168896956"},{"denom":"ASSET5","amount":"474611942.000000000000000000"},{"denom":"ASSET6","amount":"963830536.115649595156980425"},{"denom":"ASSET7","amount":"459293335.634235546320675676"},{"denom":"ASSET9","amount":"1135285318.832055761078658945"}],"validator_shares":[{"denom":"ASSET1","amount":"657423799.000000000000000000"},{"denom":"ASSET10","amount":"274468709.000000000000000000"},{"denom":"ASSET12","amount":"1939671227.715422465000000000"},{"denom":"ASSET13","amount":"14630323.525986853803252585"},{"denom":"ASSET14","amount":"1207843535.984967451286728088"},{"denom":"ASSET16","amount":"965814339.071967341677812680"},{"denom":"ASSET17","amount":"2130399221.634219910175090811"},{"denom":"ASSET18","amount":"37017366.053308220032583236"},{"denom":"ASSET2","amount":"1000028958.794439126000000000"},{"denom":"ASSET3","amount":"16674230.575926590025873702"},{"denom":"ASSET4","amount":"555529958.981791191889573792"},{"denom":"ASSET5","amount":"474621373.873308622225355776"},{"denom":"ASSET6","amount":"963830536.115648558108144472"},{"denom":"ASSET7","amount":"459293335.634235573247638816"},{"denom":"ASSET9","amount":"1135285318.832055635050699457"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004762556631338"},{"denom":"ASSET1","index":"0.000038949320108286"},{"denom":"ASSET10","index":"0.000034138450737108"},{"denom":"ASSET11","index":"0.000040639199132158"},{"denom":"ASSET12","index":"0.000038813425029718"},{"denom":"ASSET13","index":"0.000013137308862946"},{"denom":"ASSET14","index":"0.000037465155985785"},{"denom":"ASSET15","index":"0.000030595379312221"},{"denom":"ASSET16","index":"0.000017265258533009"},{"denom":"ASSET17","index":"0.000014089743696985"},{"denom":"ASSET18","index":"0.000005804518200138"},{"denom":"ASSET2","index":"0.000011770813319377"},{"denom":"ASSET3","index":"0.000003379916457468"},{"denom":"ASSET4","index":"0.000031940491468417"},{"denom":"ASSET5","index":"0.000002653113230110"},{"denom":"ASSET6","index":"0.000010842049745718"},{"denom":"ASSET7","index":"0.000016757880864112"},{"denom":"ASSET8","index":"0.000024258069269217"},{"denom":"ASSET9","index":"0.000009689835219165"}],"total_delegator_shares":[{"denom":"ASSET10","amount":"1349739261.000000022182240145"},{"denom":"ASSET11","amount":"229155267.000000000000000000"},{"denom":"ASSET12","amount":"1533825329.808446964042801734"},{"denom":"ASSET13","amount":"1101412735.073927760842644230"},{"denom":"ASSET14","amount":"975656019.448502730492697394"},{"denom":"ASSET16","amount":"483248390.000000000000000000"},{"denom":"ASSET17","amount":"615516398.905881064749116076"},{"denom":"ASSET2","amount":"214621227.185365190122468000"},{"denom":"ASSET4","amount":"411575619.028301044036587800"},{"denom":"ASSET5","amount":"238350542.000000000000000000"},{"denom":"ASSET7","amount":"149095472.000000000000000000"}],"validator_shares":[{"denom":"ASSET1","amount":"0.168808990291580576"},{"denom":"ASSET10","amount":"1349847422.461631437181743113"},{"denom":"ASSET11","amount":"229155267.000000000000000000"},{"denom":"ASSET12","amount":"1533825329.808446884536095367"},{"denom":"ASSET13","amount":"1101412735.073927745828805513"},{"denom":"ASSET14","amount":"975746271.643043780637696132"},{"denom":"ASSET16","amount":"483282933.588482956381206970"},{"denom":"ASSET17","amount":"615536540.426424172007401890"},{"denom":"ASSET2","amount":"214621227.185365139778133610"},{"denom":"ASSET4","amount":"411608520.027984003493457624"},{"denom":"ASSET5","amount":"238352120.886955057744938948"},{"denom":"ASSET7","amount":"149095472.000000000000000000"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004589389937850"},{"denom":"ASSET1","index":"0.000037550106082330"},{"denom":"ASSET10","index":"0.000032538310030740"},{"denom":"ASSET11","index":"0.000039032519693303"},{"denom":"ASSET12","index":"0.000037153997389696"},{"denom":"ASSET13","index":"0.000012593470633029"},{"denom":"ASSET14","index":"0.000036013899939325"},{"denom":"ASSET15","index":"0.000029209053150892"},{"denom":"ASSET16","index":"0.000016662243380710"},{"denom":"ASSET17","index":"0.000013495053128478"},{"denom":"ASSET18","index":"0.000005608023733291"},{"denom":"ASSET2","index":"0.000011334057113138"},{"denom":"ASSET3","index":"0.000003259625782806"},{"denom":"ASSET4","index":"0.000030783234351437"},{"denom":"ASSET5","index":"0.000002559554316495"},{"denom":"ASSET6","index":"0.000010447989114738"},{"denom":"ASSET7","index":"0.000016136028769980"},{"denom":"ASSET8","index":"0.000023238637344957"},{"denom":"ASSET9","index":"0.000009318057455982"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"1557924386.315229261812696311"},{"denom":"ASSET1","amount":"1661844061.999999990596884685"},{"denom":"ASSET10","amount":"1108194280.664446722372981161"},{"denom":"ASSET11","amount":"14775743.000000000000000000"},{"denom":"ASSET12","amount":"710008583.000000000000000000"},{"denom":"ASSET13","amount":"161515871.000000038601968982"},{"denom":"ASSET14","amount":"423988953.000000000000000000"},{"denom":"ASSET17","amount":"983789831.902658916872134508"},{"denom":"ASSET18","amount":"1765235994.764675394260112670"},{"denom":"ASSET3","amount":"1140375385.999999944598788041"},{"denom":"ASSET4","amount":"193786957.785018112166326837"},{"denom":"ASSET5","amount":"460764581.000000000000000000"},{"denom":"ASSET6","amount":"944778095.764636522192479912"},{"denom":"ASSET8","amount":"32627934.637759816831839619"}],"validator_shares":[{"denom":"ASSET0","amount":"1557924386.315229336690905673"},{"denom":"ASSET1","amount":"1661965926.187682139365555012"},{"denom":"ASSET10","amount":"1108194280.664446682701483187"},{"denom":"ASSET11","amount":"14777044.491056090929706462"},{"denom":"ASSET12","amount":"710073474.839526943344935855"},{"denom":"ASSET13","amount":"161525995.543433183973093828"},{"denom":"ASSET14","amount":"424028173.721962066006070304"},{"denom":"ASSET17","amount":"983789831.902658924073157004"},{"denom":"ASSET18","amount":"1765235994.764675383076348666"},{"denom":"ASSET3","amount":"1140375386.000000000000000000"},{"denom":"ASSET4","amount":"193786957.785018056119162946"},{"denom":"ASSET5","amount":"460767633.206972927914204614"},{"denom":"ASSET6","amount":"944805385.137599698973006001"},{"denom":"ASSET8","amount":"32627934.637759831665424614"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004821253659137"},{"denom":"ASSET1","index":"0.000039465245308483"},{"denom":"ASSET10","index":"0.000034111324062195"},{"denom":"ASSET11","index":"0.000040998472045794"},{"denom":"ASSET12","index":"0.000038982930565630"},{"denom":"ASSET13","index":"0.000013222547274006"},{"denom":"ASSET14","index":"0.000037843785812280"},{"denom":"ASSET15","index":"0.000030636082555583"},{"denom":"ASSET16","index":"0.000017514751416713"},{"denom":"ASSET17","index":"0.000014158801787082"},{"denom":"ASSET18","index":"0.000005900797517651"},{"denom":"ASSET2","index":"0.000011904810892779"},{"denom":"ASSET3","index":"0.000003424400341174"},{"denom":"ASSET4","index":"0.000032355527586641"},{"denom":"ASSET5","index":"0.000002690071214205"},{"denom":"ASSET6","index":"0.000010986782185203"},{"denom":"ASSET7","index":"0.000016956775142402"},{"denom":"ASSET8","index":"0.000024404677863493"},{"denom":"ASSET9","index":"0.000009788399575506"}],"total_delegator_shares":[{"denom":"ASSET10","amount":"440820797.227635008803796135"},{"denom":"ASSET11","amount":"2989305.000000000000000000"},{"denom":"ASSET13","amount":"357147298.999999990926907010"},{"denom":"ASSET14","amount":"650336821.000000000000000000"},{"denom":"ASSET15","amount":"490848280.958386687767786249"},{"denom":"ASSET16","amount":"1596161905.798823210661347594"},{"denom":"ASSET18","amount":"820378077.402454861860782480"},{"denom":"ASSET2","amount":"335508401.000000000000000000"},{"denom":"ASSET3","amount":"976726257.000000000000000000"},{"denom":"ASSET4","amount":"1007882469.088653193166779538"},{"denom":"ASSET8","amount":"353137367.812649858865442924"}],"validator_shares":[{"denom":"ASSET10","amount":"440856122.436824262286667084"},{"denom":"ASSET11","amount":"2990094.989929866931229370"},{"denom":"ASSET13","amount":"357158492.631501462613601571"},{"denom":"ASSET14","amount":"650457144.225340378738512908"},{"denom":"ASSET15","amount":"490848280.958386487637856214"},{"denom":"ASSET16","amount":"1596161905.798822653850297821"},{"denom":"ASSET18","amount":"820401305.998962595635391961"},{"denom":"ASSET2","amount":"335537549.588440858159640009"},{"denom":"ASSET3","amount":"976732675.670263672834397334"},{"denom":"ASSET4","amount":"1007963038.343153524069567170"},{"denom":"ASSET8","amount":"353137367.812649860003728219"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004513465766133"},{"denom":"ASSET1","index":"0.000036937552558315"},{"denom":"ASSET10","index":"0.000032106432780890"},{"denom":"ASSET11","index":"0.000038424720695020"},{"denom":"ASSET12","index":"0.000036621512017629"},{"denom":"ASSET13","index":"0.000012401619641373"},{"denom":"ASSET14","index":"0.000035439394097449"},{"denom":"ASSET15","index":"0.000028804492998185"},{"denom":"ASSET16","index":"0.000016384451100174"},{"denom":"ASSET17","index":"0.000013301782940640"},{"denom":"ASSET18","index":"0.000005509309193090"},{"denom":"ASSET2","index":"0.000011156198886146"},{"denom":"ASSET3","index":"0.000003204659219312"},{"denom":"ASSET4","index":"0.000030280929160251"},{"denom":"ASSET5","index":"0.000002516487072040"},{"denom":"ASSET6","index":"0.000010271891246559"},{"denom":"ASSET7","index":"0.000015872400599943"},{"denom":"ASSET8","index":"0.000022885365116050"},{"denom":"ASSET9","index":"0.000009171283955153"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"1498216792.089323183336049112"},{"denom":"ASSET10","amount":"1303263509.000000010778828960"},{"denom":"ASSET11","amount":"613344047.912821153506449844"},{"denom":"ASSET12","amount":"2468901394.607751475261477524"},{"denom":"ASSET13","amount":"1865143576.587157900579768759"},{"denom":"ASSET14","amount":"368272343.000000000000000000"},{"denom":"ASSET15","amount":"874903604.000000004281815640"},{"denom":"ASSET16","amount":"1290661930.000000012025105332"},{"denom":"ASSET18","amount":"1524361337.365447091549636858"},{"denom":"ASSET2","amount":"608344971.999999961341758738"},{"denom":"ASSET3","amount":"2233635859.664839480773410560"},{"denom":"ASSET5","amount":"118217332.000000000000000000"},{"denom":"ASSET6","amount":"78135117.000000000000000000"},{"denom":"ASSET7","amount":"83440948.000000008509322820"},{"denom":"ASSET8","amount":"796236873.833791259706237253"},{"denom":"ASSET9","amount":"108994312.387635660857178487"}],"validator_shares":[{"denom":"ASSET0","amount":"1498216792.089323175364663384"},{"denom":"ASSET10","amount":"1303263509.000000000000000000"},{"denom":"ASSET11","amount":"613344047.912821152439684868"},{"denom":"ASSET12","amount":"2468901394.607751455633134670"},{"denom":"ASSET13","amount":"1865143576.587157927681335667"},{"denom":"ASSET14","amount":"368374552.570491722377912354"},{"denom":"ASSET15","amount":"874903604.000000000000000000"},{"denom":"ASSET16","amount":"1290754189.168376201429402390"},{"denom":"ASSET18","amount":"1524382917.990876142328463923"},{"denom":"ASSET2","amount":"608380206.374916738496695508"},{"denom":"ASSET3","amount":"2233635859.664839483365654347"},{"denom":"ASSET5","amount":"118218115.097876725325477208"},{"denom":"ASSET6","amount":"78135117.000000000000000000"},{"denom":"ASSET7","amount":"83444456.848793502650969052"},{"denom":"ASSET8","amount":"796279502.790915059348225192"},{"denom":"ASSET9","amount":"108994312.387635620341324492"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000005110258502433"},{"denom":"ASSET1","index":"0.000041848139529843"},{"denom":"ASSET10","index":"0.000036095442313773"},{"denom":"ASSET11","index":"0.000043419926176109"},{"denom":"ASSET12","index":"0.000041293844776763"},{"denom":"ASSET13","index":"0.000013994054097310"},{"denom":"ASSET14","index":"0.000040066625857946"},{"denom":"ASSET15","index":"0.000032419831695563"},{"denom":"ASSET16","index":"0.000018571815188636"},{"denom":"ASSET17","index":"0.000015000716043498"},{"denom":"ASSET18","index":"0.000006247416520609"},{"denom":"ASSET2","index":"0.000012623910696266"},{"denom":"ASSET3","index":"0.000003630542968489"},{"denom":"ASSET4","index":"0.000034294837675452"},{"denom":"ASSET5","index":"0.000002848875945133"},{"denom":"ASSET6","index":"0.000011630847535820"},{"denom":"ASSET7","index":"0.000017964747196149"},{"denom":"ASSET8","index":"0.000025811711320315"},{"denom":"ASSET9","index":"0.000010370289784603"}],"total_delegator_shares":[{"denom":"ASSET11","amount":"1575535256.000000086418109559"},{"denom":"ASSET12","amount":"902248232.816108312827396150"},{"denom":"ASSET13","amount":"93527081.771364060853148275"},{"denom":"ASSET14","amount":"1152500620.141891702966904165"},{"denom":"ASSET15","amount":"1417517477.380100442894501577"},{"denom":"ASSET16","amount":"117323206.000000000000000000"},{"denom":"ASSET17","amount":"1145441041.113646016588798366"},{"denom":"ASSET2","amount":"1000000000.000000000000000000"},{"denom":"ASSET4","amount":"242421188.000069784948786756"},{"denom":"ASSET5","amount":"1411078089.419551383940470566"},{"denom":"ASSET6","amount":"190015520.596812335710996850"},{"denom":"ASSET8","amount":"522404203.000000000000000000"},{"denom":"ASSET9","amount":"320294752.999999999944484497"}],"validator_shares":[{"denom":"ASSET11","amount":"1575951626.021255883069944304"},{"denom":"ASSET12","amount":"902330693.536586924588161620"},{"denom":"ASSET13","amount":"93530013.076435337067137173"},{"denom":"ASSET14","amount":"1152500620.141891794385029024"},{"denom":"ASSET15","amount":"1417606213.401171105635495816"},{"denom":"ASSET16","amount":"117331592.503983107153241338"},{"denom":"ASSET17","amount":"1145441041.113646006943485845"},{"denom":"ASSET2","amount":"1000028958.794439126000000000"},{"denom":"ASSET4","amount":"242479329.462786309095481480"},{"denom":"ASSET5","amount":"1411078089.419551397632538978"},{"denom":"ASSET6","amount":"190015520.596812038539547816"},{"denom":"ASSET8","amount":"522460141.476343021995124257"},{"denom":"ASSET9","amount":"320302697.099808377227278964"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004711127852933"},{"denom":"ASSET1","index":"0.000038541984650791"},{"denom":"ASSET10","index":"0.000033360389515629"},{"denom":"ASSET11","index":"0.000040051832871078"},{"denom":"ASSET12","index":"0.000038107934739741"},{"denom":"ASSET13","index":"0.000012920381400678"},{"denom":"ASSET14","index":"0.000036958872887572"},{"denom":"ASSET15","index":"0.000029952980327999"},{"denom":"ASSET16","index":"0.000017104098801491"},{"denom":"ASSET17","index":"0.000013841787045943"},{"denom":"ASSET18","index":"0.000005757887134437"},{"denom":"ASSET2","index":"0.000011630980235877"},{"denom":"ASSET3","index":"0.000003345975640178"},{"denom":"ASSET4","index":"0.000031596472598431"},{"denom":"ASSET5","index":"0.000002627111980169"},{"denom":"ASSET6","index":"0.000010725526366283"},{"denom":"ASSET7","index":"0.000016561788873990"},{"denom":"ASSET8","index":"0.000023841368375665"},{"denom":"ASSET9","index":"0.000009561543464832"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"2003958527.470847477951532882"},{"denom":"ASSET1","amount":"171722104.000000000000000000"},{"denom":"ASSET11","amount":"1737397895.982217875098830160"},{"denom":"ASSET14","amount":"478133033.573465405454383017"},{"denom":"ASSET15","amount":"3117164.510521168322109259"},{"denom":"ASSET16","amount":"1340497348.010746758288235646"},{"denom":"ASSET17","amount":"475506983.000000000000000000"},{"denom":"ASSET18","amount":"552659453.000000000000000000"},{"denom":"ASSET4","amount":"1148968254.439656311612758094"},{"denom":"ASSET8","amount":"1179504185.000000035397758319"}],"validator_shares":[{"denom":"ASSET0","amount":"2003958527.470847512525384894"},{"denom":"ASSET1","amount":"171747289.928348172727193592"},{"denom":"ASSET11","amount":"1737397895.982217882416044922"},{"denom":"ASSET14","amount":"478133033.573465406485635232"},{"denom":"ASSET15","amount":"3117359.643759475853852104"},{"denom":"ASSET16","amount":"1340545268.233866630935973113"},{"denom":"ASSET17","amount":"475506983.000000000000000000"},{"denom":"ASSET18","amount":"552682925.577094098582443635"},{"denom":"ASSET4","amount":"1149151956.829598348332290870"},{"denom":"ASSET8","amount":"1179630485.030838607052317515"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004714671796454"},{"denom":"ASSET1","index":"0.000038568145744730"},{"denom":"ASSET10","index":"0.000033500773571076"},{"denom":"ASSET11","index":"0.000040121424280653"},{"denom":"ASSET12","index":"0.000038218267623062"},{"denom":"ASSET13","index":"0.000012949849225638"},{"denom":"ASSET14","index":"0.000037011089008137"},{"denom":"ASSET15","index":"0.000030061724223790"},{"denom":"ASSET16","index":"0.000017110510604031"},{"denom":"ASSET17","index":"0.000013880569662043"},{"denom":"ASSET18","index":"0.000005756826392189"},{"denom":"ASSET2","index":"0.000011645339118027"},{"denom":"ASSET3","index":"0.000003347417714105"},{"denom":"ASSET4","index":"0.000031620361618036"},{"denom":"ASSET5","index":"0.000002628856606191"},{"denom":"ASSET6","index":"0.000010731547733214"},{"denom":"ASSET7","index":"0.000016577030461508"},{"denom":"ASSET8","index":"0.000023899020763797"},{"denom":"ASSET9","index":"0.000009576047863311"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"1523767994.847630307395394725"},{"denom":"ASSET1","amount":"61118689.558550291351716992"},{"denom":"ASSET11","amount":"155956187.000000000000000000"},{"denom":"ASSET12","amount":"151621922.000000000000000000"},{"denom":"ASSET13","amount":"259712350.404836854431175992"},{"denom":"ASSET16","amount":"58507186.000000000000000000"},{"denom":"ASSET17","amount":"124244129.950603614968997650"},{"denom":"ASSET2","amount":"114389592.000000000000000000"},{"denom":"ASSET3","amount":"1163129310.565838913492563865"},{"denom":"ASSET4","amount":"1229629742.136726021758913317"},{"denom":"ASSET6","amount":"736402954.296208306839827180"},{"denom":"ASSET7","amount":"1318651174.109561908413304828"}],"validator_shares":[{"denom":"ASSET0","amount":"1523767994.847630321536836290"},{"denom":"ASSET1","amount":"61118689.558550280613332552"},{"denom":"ASSET11","amount":"155969924.081277235569291158"},{"denom":"ASSET12","amount":"151635779.442412997185277730"},{"denom":"ASSET13","amount":"259720490.251771041673597890"},{"denom":"ASSET15","amount":"0.565030484511506656"},{"denom":"ASSET16","amount":"58509277.069679459963605678"},{"denom":"ASSET17","amount":"124248195.586709634928965298"},{"denom":"ASSET2","amount":"114392904.584680703491976592"},{"denom":"ASSET3","amount":"1163129310.565838926138069110"},{"denom":"ASSET4","amount":"1229629742.136726104000000000"},{"denom":"ASSET6","amount":"736402954.296208316452841931"},{"denom":"ASSET7","amount":"1318651174.109561785603101719"},{"denom":"ASSET8","amount":"0.280406986746016709"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004194934031479"},{"denom":"ASSET1","index":"0.000034265361391889"},{"denom":"ASSET10","index":"0.000030216676473654"},{"denom":"ASSET11","index":"0.000035840546628375"},{"denom":"ASSET12","index":"0.000034269107900306"},{"denom":"ASSET13","index":"0.000011601652868627"},{"denom":"ASSET14","index":"0.000033034765140163"},{"denom":"ASSET15","index":"0.000027060778820269"},{"denom":"ASSET16","index":"0.000015183830684126"},{"denom":"ASSET17","index":"0.000012436629946888"},{"denom":"ASSET18","index":"0.000005107818069777"},{"denom":"ASSET2","index":"0.000010363122476632"},{"denom":"ASSET3","index":"0.000002975623043707"},{"denom":"ASSET4","index":"0.000028112498760672"},{"denom":"ASSET5","index":"0.000002338800128637"},{"denom":"ASSET6","index":"0.000009551170601572"},{"denom":"ASSET7","index":"0.000014761519782911"},{"denom":"ASSET8","index":"0.000021433874921429"},{"denom":"ASSET9","index":"0.000008541556868860"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"674926159.000000372412218386"},{"denom":"ASSET1","amount":"2256644080.179865404387681722"},{"denom":"ASSET10","amount":"678743699.618369839507911984"},{"denom":"ASSET12","amount":"273084341.776211265827245392"},{"denom":"ASSET13","amount":"109885156.000000000000000000"},{"denom":"ASSET14","amount":"898876305.000000000000000000"},{"denom":"ASSET15","amount":"1725626866.680359411565443407"},{"denom":"ASSET16","amount":"377233615.000000000000000000"},{"denom":"ASSET17","amount":"353312789.000000000000000000"},{"denom":"ASSET18","amount":"1000000000.000000000000000000"},{"denom":"ASSET2","amount":"343746794.000000000000000000"},{"denom":"ASSET3","amount":"1764853937.542126819241892830"},{"denom":"ASSET5","amount":"1299823942.939235750480737864"},{"denom":"ASSET7","amount":"722549549.825265963281384872"},{"denom":"ASSET8","amount":"555894022.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"674940204.809336135421309938"},{"denom":"ASSET1","amount":"2256644080.179865368950097726"},{"denom":"ASSET10","amount":"678798090.798018585046070864"},{"denom":"ASSET12","amount":"273109300.241914222984730404"},{"denom":"ASSET13","amount":"109895488.306620283518492248"},{"denom":"ASSET14","amount":"899042612.200680002720890140"},{"denom":"ASSET15","amount":"1725626866.680359442890787760"},{"denom":"ASSET16","amount":"377260580.434398028727152145"},{"denom":"ASSET17","amount":"353312789.000000000000000000"},{"denom":"ASSET18","amount":"1000014157.158739258000000000"},{"denom":"ASSET2","amount":"343766703.268546108531288166"},{"denom":"ASSET3","amount":"1764853937.542126821536424485"},{"denom":"ASSET5","amount":"1299823942.939235753985963324"},{"denom":"ASSET7","amount":"722549549.825265964263090744"},{"denom":"ASSET8","amount":"555894022.000000000000000000"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004684522326330"},{"denom":"ASSET1","index":"0.000038343592790786"},{"denom":"ASSET10","index":"0.000033073465123627"},{"denom":"ASSET11","index":"0.000039792938806307"},{"denom":"ASSET12","index":"0.000037831993151719"},{"denom":"ASSET13","index":"0.000012827422858554"},{"denom":"ASSET14","index":"0.000036725774896582"},{"denom":"ASSET15","index":"0.000029707175527113"},{"denom":"ASSET16","index":"0.000017020370407689"},{"denom":"ASSET17","index":"0.000013744455687075"},{"denom":"ASSET18","index":"0.000005729220057041"},{"denom":"ASSET2","index":"0.000011567669506012"},{"denom":"ASSET3","index":"0.000003327180281983"},{"denom":"ASSET4","index":"0.000031427847982959"},{"denom":"ASSET5","index":"0.000002612385721179"},{"denom":"ASSET6","index":"0.000010663850280154"},{"denom":"ASSET7","index":"0.000016466138905281"},{"denom":"ASSET8","index":"0.000023663630054111"},{"denom":"ASSET9","index":"0.000009503718423149"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"58860985.000000000000000000"},{"denom":"ASSET1","amount":"2243903350.878171579485241859"},{"denom":"ASSET10","amount":"895368783.548254424884124251"},{"denom":"ASSET11","amount":"1124585317.649825774382681128"},{"denom":"ASSET14","amount":"395540375.603749014527775692"},{"denom":"ASSET15","amount":"1279672087.263349477697243049"},{"denom":"ASSET16","amount":"1064185935.361494977367171712"},{"denom":"ASSET17","amount":"38837150.999999989527588216"},{"denom":"ASSET18","amount":"1290468758.999999998148898895"},{"denom":"ASSET2","amount":"592271646.397417598339222572"},{"denom":"ASSET3","amount":"1252734561.974612889987681038"},{"denom":"ASSET4","amount":"944245770.926122894697283967"},{"denom":"ASSET5","amount":"90253532.000000000000000000"},{"denom":"ASSET6","amount":"349730842.000000000000000000"},{"denom":"ASSET8","amount":"736792024.000000000000000000"},{"denom":"ASSET9","amount":"343894205.111872690965702910"}],"validator_shares":[{"denom":"ASSET0","amount":"58861597.471887427571321905"},{"denom":"ASSET1","amount":"2244067897.880712234334489807"},{"denom":"ASSET10","amount":"895368783.548254447508186316"},{"denom":"ASSET11","amount":"1124585318.556531056213910922"},{"denom":"ASSET14","amount":"395540375.603749026140912256"},{"denom":"ASSET15","amount":"1279752194.218721039504805272"},{"denom":"ASSET16","amount":"1064223969.782475828155998843"},{"denom":"ASSET17","amount":"38840963.723321756161167297"},{"denom":"ASSET18","amount":"1290505297.979934162504650229"},{"denom":"ASSET2","amount":"592271646.397417586199580993"},{"denom":"ASSET3","amount":"1252734561.974612894942292418"},{"denom":"ASSET4","amount":"944245770.926122526850878812"},{"denom":"ASSET5","amount":"90254727.723007564886625676"},{"denom":"ASSET6","amount":"349730842.000000000000000000"},{"denom":"ASSET8","amount":"736910369.504349518554927352"},{"denom":"ASSET9","amount":"343894205.111872599181163280"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004687708407020"},{"denom":"ASSET1","index":"0.000038356107024454"},{"denom":"ASSET10","index":"0.000033253699108391"},{"denom":"ASSET11","index":"0.000039872890754659"},{"denom":"ASSET12","index":"0.000037965028185569"},{"denom":"ASSET13","index":"0.000012864766881590"},{"denom":"ASSET14","index":"0.000036785925065316"},{"denom":"ASSET15","index":"0.000029847106359114"},{"denom":"ASSET16","index":"0.000017018472996850"},{"denom":"ASSET17","index":"0.000013790061792900"},{"denom":"ASSET18","index":"0.000005725965510486"},{"denom":"ASSET2","index":"0.000011579213738671"},{"denom":"ASSET3","index":"0.000003328620042074"},{"denom":"ASSET4","index":"0.000031443460403048"},{"denom":"ASSET5","index":"0.000002614040030680"},{"denom":"ASSET6","index":"0.000010669696421906"},{"denom":"ASSET7","index":"0.000016481443555686"},{"denom":"ASSET8","index":"0.000023738953575713"},{"denom":"ASSET9","index":"0.000009518618852059"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"955324727.542327924289313646"},{"denom":"ASSET1","amount":"1103658971.288859736618668100"},{"denom":"ASSET12","amount":"956457652.181141571685667042"},{"denom":"ASSET13","amount":"589528315.000000000000000000"},{"denom":"ASSET17","amount":"650176883.000000000000000000"},{"denom":"ASSET18","amount":"710244970.115191177905533878"},{"denom":"ASSET4","amount":"426343757.000000000000000000"},{"denom":"ASSET5","amount":"1607213523.729422833242637373"},{"denom":"ASSET6","amount":"538459919.000000000000000000"},{"denom":"ASSET7","amount":"1071895581.969885804249412678"},{"denom":"ASSET8","amount":"1438707525.917094819000000000"},{"denom":"ASSET9","amount":"447381987.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"955324727.542327902791060424"},{"denom":"ASSET1","amount":"1103658971.288859736189964220"},{"denom":"ASSET12","amount":"956545067.356076304559424239"},{"denom":"ASSET13","amount":"589546791.865809331445152635"},{"denom":"ASSET17","amount":"650198158.714292710302203854"},{"denom":"ASSET18","amount":"710244970.115191176080884723"},{"denom":"ASSET4","amount":"426411922.823376871844257914"},{"denom":"ASSET5","amount":"1607213523.729422821493929614"},{"denom":"ASSET6","amount":"538459919.000000000000000000"},{"denom":"ASSET7","amount":"1071895581.969885801041978061"},{"denom":"ASSET8","amount":"1438707525.917094819000000000"},{"denom":"ASSET9","amount":"447381987.000000000000000000"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004740403563813"},{"denom":"ASSET1","index":"0.000038787543075749"},{"denom":"ASSET10","index":"0.000033573140721733"},{"denom":"ASSET11","index":"0.000040302495274603"},{"denom":"ASSET12","index":"0.000038352330073381"},{"denom":"ASSET13","index":"0.000013000611245324"},{"denom":"ASSET14","index":"0.000037188066303586"},{"denom":"ASSET15","index":"0.000030142616165685"},{"denom":"ASSET16","index":"0.000017212937490843"},{"denom":"ASSET17","index":"0.000013931077457526"},{"denom":"ASSET18","index":"0.000005793021452149"},{"denom":"ASSET2","index":"0.000011706190679885"},{"denom":"ASSET3","index":"0.000003366692331764"},{"denom":"ASSET4","index":"0.000031796327407459"},{"denom":"ASSET5","index":"0.000002643541838962"},{"denom":"ASSET6","index":"0.000010790963815934"},{"denom":"ASSET7","index":"0.000016665147437831"},{"denom":"ASSET8","index":"0.000023987873929249"},{"denom":"ASSET9","index":"0.000009622228618809"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"1618150013.979913522877257100"},{"denom":"ASSET1","amount":"604617372.000000010903615825"},{"denom":"ASSET11","amount":"937997181.263008722284728237"},{"denom":"ASSET13","amount":"398853226.000000000000000000"},{"denom":"ASSET14","amount":"1963281394.254801715652670160"},{"denom":"ASSET15","amount":"995466110.040279883385094740"},{"denom":"ASSET16","amount":"359035400.289886026800648075"},{"denom":"ASSET17","amount":"926311656.820911843600183245"},{"denom":"ASSET3","amount":"472983864.000000000000000000"},{"denom":"ASSET4","amount":"230479902.317839282719043713"},{"denom":"ASSET5","amount":"900395029.000000000000000000"},{"denom":"ASSET7","amount":"2298550006.263501578114192308"},{"denom":"ASSET8","amount":"383278701.000000000000000000"},{"denom":"ASSET9","amount":"317274420.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"1618150013.979913515459611300"},{"denom":"ASSET1","amount":"604617372.000000000000000000"},{"denom":"ASSET11","amount":"937997181.263008763709625420"},{"denom":"ASSET13","amount":"398865726.769423468570466154"},{"denom":"ASSET14","amount":"1963281394.254801723357495792"},{"denom":"ASSET15","amount":"995466110.040288471065564384"},{"denom":"ASSET16","amount":"359035400.289886035995019673"},{"denom":"ASSET17","amount":"926311656.820904065440465045"},{"denom":"ASSET3","amount":"472983864.000000000000000000"},{"denom":"ASSET4","amount":"230479902.317839268864335934"},{"denom":"ASSET5","amount":"900406957.874451942260971097"},{"denom":"ASSET7","amount":"2298743327.037569199953400322"},{"denom":"ASSET8","amount":"383299220.988270229870510413"},{"denom":"ASSET9","amount":"317282289.188101014554946960"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004653412453716"},{"denom":"ASSET1","index":"0.000038080083637587"},{"denom":"ASSET10","index":"0.000032837607615689"},{"denom":"ASSET11","index":"0.000039518768800052"},{"denom":"ASSET12","index":"0.000037566035114091"},{"denom":"ASSET13","index":"0.000012739325126443"},{"denom":"ASSET14","index":"0.000036476031581181"},{"denom":"ASSET15","index":"0.000029498212713119"},{"denom":"ASSET16","index":"0.000016904055584348"},{"denom":"ASSET17","index":"0.000013645962089755"},{"denom":"ASSET18","index":"0.000005690442722400"},{"denom":"ASSET2","index":"0.000011485754888892"},{"denom":"ASSET3","index":"0.000003304888092178"},{"denom":"ASSET4","index":"0.000031211688725726"},{"denom":"ASSET5","index":"0.000002594766576713"},{"denom":"ASSET6","index":"0.000010593367608393"},{"denom":"ASSET7","index":"0.000016355252045203"},{"denom":"ASSET8","index":"0.000023502103224880"},{"denom":"ASSET9","index":"0.000009437706237723"}],"total_delegator_shares":[{"denom":"ASSET1","amount":"980694376.260369589180667667"},{"denom":"ASSET11","amount":"319881015.000001280801210810"},{"denom":"ASSET13","amount":"1002642748.999999966627463818"},{"denom":"ASSET15","amount":"1000000000.000000000000000000"},{"denom":"ASSET16","amount":"1000000000.000000000000000000"},{"denom":"ASSET17","amount":"108724643.000000000000000000"},{"denom":"ASSET3","amount":"36200716.500900886183836256"},{"denom":"ASSET5","amount":"398260639.000000000000000000"},{"denom":"ASSET6","amount":"984577029.000000000000000000"},{"denom":"ASSET7","amount":"826888189.000000000000000000"},{"denom":"ASSET8","amount":"812877630.259039502154880450"},{"denom":"ASSET9","amount":"1488670580.286488877723313879"}],"validator_shares":[{"denom":"ASSET1","amount":"980694376.260369653287981576"},{"denom":"ASSET11","amount":"319909191.063974298180930510"},{"denom":"ASSET13","amount":"1002705599.170682096477104332"},{"denom":"ASSET15","amount":"1000062599.595762744000000000"},{"denom":"ASSET16","amount":"1000071482.056014623000000000"},{"denom":"ASSET17","amount":"108731758.699884215465415127"},{"denom":"ASSET3","amount":"36200954.398122175554777544"},{"denom":"ASSET5","amount":"398263277.166971863071246066"},{"denom":"ASSET6","amount":"984605467.942303586487610473"},{"denom":"ASSET7","amount":"826922961.203502940091554311"},{"denom":"ASSET8","amount":"812877630.259035785437566686"},{"denom":"ASSET9","amount":"1488744426.573750435763923784"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004565111961250"},{"denom":"ASSET1","index":"0.000037295669635619"},{"denom":"ASSET10","index":"0.000032690518840863"},{"denom":"ASSET11","index":"0.000038932997595939"},{"denom":"ASSET12","index":"0.000037159410541605"},{"denom":"ASSET13","index":"0.000012589920858900"},{"denom":"ASSET14","index":"0.000035901713477675"},{"denom":"ASSET15","index":"0.000029302331825558"},{"denom":"ASSET16","index":"0.000016536068871761"},{"denom":"ASSET17","index":"0.000013488122629744"},{"denom":"ASSET18","index":"0.000005565746532740"},{"denom":"ASSET2","index":"0.000011270479703615"},{"denom":"ASSET3","index":"0.000003239462728319"},{"denom":"ASSET4","index":"0.000030593146169983"},{"denom":"ASSET5","index":"0.000002545828835201"},{"denom":"ASSET6","index":"0.000010394121101812"},{"denom":"ASSET7","index":"0.000016057027670772"},{"denom":"ASSET8","index":"0.000023252230779774"},{"denom":"ASSET9","index":"0.000009283591156065"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"1985448302.753577461747059504"},{"denom":"ASSET1","amount":"1000000000.000000000000000000"},{"denom":"ASSET11","amount":"409619853.455056589256128644"},{"denom":"ASSET14","amount":"1377821665.263224462763748040"},{"denom":"ASSET17","amount":"1571059096.013432652400542150"},{"denom":"ASSET18","amount":"173989155.000000000000000000"},{"denom":"ASSET3","amount":"926603041.623167333532016887"},{"denom":"ASSET4","amount":"2560008665.363700865516338100"},{"denom":"ASSET5","amount":"16200256.329172415103653382"},{"denom":"ASSET7","amount":"736174563.000000000000000000"},{"denom":"ASSET8","amount":"862480957.510241253849030160"}],"validator_shares":[{"denom":"ASSET0","amount":"1985448302.753577426771376982"},{"denom":"ASSET1","amount":"1000073330.699593726000000000"},{"denom":"ASSET11","amount":"409619853.455056596108665364"},{"denom":"ASSET14","amount":"1377949119.434056604631405576"},{"denom":"ASSET15","amount":"0.891233388470684904"},{"denom":"ASSET17","amount":"1571059096.013432712962324876"},{"denom":"ASSET18","amount":"173989155.000000000000000000"},{"denom":"ASSET3","amount":"926603041.623167324757434496"},{"denom":"ASSET4","amount":"2560008665.363700877497206358"},{"denom":"ASSET5","amount":"16200256.329172490010583340"},{"denom":"ASSET7","amount":"736267439.481072630396199146"},{"denom":"ASSET8","amount":"862480957.510241214413662367"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004809583699829"},{"denom":"ASSET1","index":"0.000039380819492754"},{"denom":"ASSET10","index":"0.000033866242105377"},{"denom":"ASSET11","index":"0.000040823461925820"},{"denom":"ASSET12","index":"0.000038783778597697"},{"denom":"ASSET13","index":"0.000013151510420296"},{"denom":"ASSET14","index":"0.000037685701944579"},{"denom":"ASSET15","index":"0.000030429413884750"},{"denom":"ASSET16","index":"0.000017483827688478"},{"denom":"ASSET17","index":"0.000014091469353498"},{"denom":"ASSET18","index":"0.000005885106118443"},{"denom":"ASSET2","index":"0.000011874740214070"},{"denom":"ASSET3","index":"0.000003415084385987"},{"denom":"ASSET4","index":"0.000032273750528479"},{"denom":"ASSET5","index":"0.000002681741366339"},{"denom":"ASSET6","index":"0.000010947870537491"},{"denom":"ASSET7","index":"0.000016903092094799"},{"denom":"ASSET8","index":"0.000024257874056182"},{"denom":"ASSET9","index":"0.000009750694164807"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"485585474.000000000000000000"},{"denom":"ASSET1","amount":"13207062.000000000000000000"},{"denom":"ASSET10","amount":"672870563.229778582161398716"},{"denom":"ASSET11","amount":"1215266824.802246589664654294"},{"denom":"ASSET12","amount":"1701842401.418839073960246780"},{"denom":"ASSET13","amount":"982793650.000000000000000000"},{"denom":"ASSET15","amount":"24239439.739610465267719216"},{"denom":"ASSET16","amount":"839764729.203217855250321986"},{"denom":"ASSET17","amount":"713455055.475285895036953752"},{"denom":"ASSET2","amount":"171270946.000000000000000000"},{"denom":"ASSET3","amount":"533818000.999999991780636792"},{"denom":"ASSET4","amount":"157573187.489323495368794758"},{"denom":"ASSET5","amount":"701742298.000000000000000000"},{"denom":"ASSET7","amount":"1693843750.224227047421645196"},{"denom":"ASSET8","amount":"381063718.000000000000000000"},{"denom":"ASSET9","amount":"138766988.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"485590526.709392617059687602"},{"denom":"ASSET1","amount":"13208999.037279847647305526"},{"denom":"ASSET10","amount":"672924483.765181673392350814"},{"denom":"ASSET11","amount":"1215266824.802246582617769438"},{"denom":"ASSET12","amount":"1701997940.820810626721511219"},{"denom":"ASSET13","amount":"982824452.500791353940380850"},{"denom":"ASSET15","amount":"24240957.118739690970034608"},{"denom":"ASSET16","amount":"839794742.722636079281282459"},{"denom":"ASSET17","amount":"713455055.475285802025364372"},{"denom":"ASSET2","amount":"171270946.000000000000000000"},{"denom":"ASSET3","amount":"533825017.108840444166011561"},{"denom":"ASSET4","amount":"157573187.489323489273660246"},{"denom":"ASSET5","amount":"701751595.025750749066804514"},{"denom":"ASSET7","amount":"1693843750.224227007052206892"},{"denom":"ASSET8","amount":"381063718.000000000000000000"},{"denom":"ASSET9","amount":"138766988.000000000000000000"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004596842351159"},{"denom":"ASSET1","index":"0.000037621247133778"},{"denom":"ASSET10","index":"0.000032406384323250"},{"denom":"ASSET11","index":"0.000039028902085371"},{"denom":"ASSET12","index":"0.000037087492375849"},{"denom":"ASSET13","index":"0.000012579191861147"},{"denom":"ASSET14","index":"0.000036026040179075"},{"denom":"ASSET15","index":"0.000029115781615792"},{"denom":"ASSET16","index":"0.000016702394260040"},{"denom":"ASSET17","index":"0.000013474193368563"},{"denom":"ASSET18","index":"0.000005623650335033"},{"denom":"ASSET2","index":"0.000011347250373690"},{"denom":"ASSET3","index":"0.000003265680996349"},{"denom":"ASSET4","index":"0.000030835001736023"},{"denom":"ASSET5","index":"0.000002563241391537"},{"denom":"ASSET6","index":"0.000010464530798872"},{"denom":"ASSET7","index":"0.000016155716479824"},{"denom":"ASSET8","index":"0.000023204906360357"},{"denom":"ASSET9","index":"0.000009321567168813"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"779734732.441593646216828696"},{"denom":"ASSET1","amount":"1000000000.000000000000000000"},{"denom":"ASSET10","amount":"1644282053.724870778331405172"},{"denom":"ASSET11","amount":"993498288.000000002073457856"},{"denom":"ASSET13","amount":"2025357664.011533143255872472"},{"denom":"ASSET15","amount":"230807522.000000000000000000"},{"denom":"ASSET17","amount":"57393556.000000000000000000"},{"denom":"ASSET18","amount":"1000000000.000000000000000000"},{"denom":"ASSET2","amount":"1193353778.190371730712764425"},{"denom":"ASSET3","amount":"1886879848.632118518553599335"},{"denom":"ASSET6","amount":"265886085.000000000000000000"},{"denom":"ASSET7","amount":"636848024.000000000000000000"},{"denom":"ASSET8","amount":"1159897709.929322494375463042"},{"denom":"ASSET9","amount":"11872792.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"779734732.441593648201669268"},{"denom":"ASSET1","amount":"1000073330.699593726000000000"},{"denom":"ASSET10","amount":"1644282053.724870793736788488"},{"denom":"ASSET11","amount":"993585798.261654770974000992"},{"denom":"ASSET13","amount":"2025357664.011533163028506876"},{"denom":"ASSET14","amount":"0.999958532239067136"},{"denom":"ASSET15","amount":"230850870.084867047707799668"},{"denom":"ASSET17","amount":"57397312.235095514765961284"},{"denom":"ASSET18","amount":"1000028314.501749331000000000"},{"denom":"ASSET2","amount":"1193353778.190371724301184835"},{"denom":"ASSET3","amount":"1886892248.482628031830143499"},{"denom":"ASSET6","amount":"265901445.150756128572034280"},{"denom":"ASSET7","amount":"636848024.000000000000000000"},{"denom":"ASSET8","amount":"1159897709.929322481661215302"},{"denom":"ASSET9","amount":"11873381.286639960021513292"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004647136802313"},{"denom":"ASSET1","index":"0.000038017659661295"},{"denom":"ASSET10","index":"0.000033007938061672"},{"denom":"ASSET11","index":"0.000039542203518497"},{"denom":"ASSET12","index":"0.000037663033677183"},{"denom":"ASSET13","index":"0.000012761955703194"},{"denom":"ASSET14","index":"0.000036477735596469"},{"denom":"ASSET15","index":"0.000029621430734014"},{"denom":"ASSET16","index":"0.000016866492348924"},{"denom":"ASSET17","index":"0.000013679201469281"},{"denom":"ASSET18","index":"0.000005674980055413"},{"denom":"ASSET2","index":"0.000011479019978141"},{"denom":"ASSET3","index":"0.000003299993945721"},{"denom":"ASSET4","index":"0.000031168005602839"},{"denom":"ASSET5","index":"0.000002591256629781"},{"denom":"ASSET6","index":"0.000010577778432935"},{"denom":"ASSET7","index":"0.000016339516062244"},{"denom":"ASSET8","index":"0.000023551119471754"},{"denom":"ASSET9","index":"0.000009438533878947"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"1975880539.503500960526323864"},{"denom":"ASSET1","amount":"1404242318.583723634922420711"},{"denom":"ASSET10","amount":"679537670.435044822592724348"},{"denom":"ASSET12","amount":"153483066.000000000000000000"},{"denom":"ASSET13","amount":"1007033355.253099013421167014"},{"denom":"ASSET14","amount":"854670869.321141758059084204"},{"denom":"ASSET15","amount":"847447338.999999900007363200"},{"denom":"ASSET16","amount":"488063516.000000000000000000"},{"denom":"ASSET17","amount":"1027490380.924384507872037815"},{"denom":"ASSET18","amount":"635971810.967565804592712020"},{"denom":"ASSET3","amount":"1286636844.103036122469711554"},{"denom":"ASSET4","amount":"1201470391.837926023527901714"},{"denom":"ASSET5","amount":"514159279.000000000000000000"},{"denom":"ASSET7","amount":"1068640759.126380627453832144"},{"denom":"ASSET8","amount":"1484420312.036412523799684136"},{"denom":"ASSET9","amount":"353764945.195837890639889604"}],"validator_shares":[{"denom":"ASSET0","amount":"1975880539.503500976826874426"},{"denom":"ASSET1","amount":"1404242318.583723663524039386"},{"denom":"ASSET10","amount":"679537670.435045055096264932"},{"denom":"ASSET12","amount":"153511122.360764957560829442"},{"denom":"ASSET13","amount":"1007096480.646788186294833210"},{"denom":"ASSET14","amount":"854670869.321142171402197472"},{"denom":"ASSET15","amount":"847553442.041468706831313768"},{"denom":"ASSET16","amount":"488063516.000000000000000000"},{"denom":"ASSET17","amount":"1027490380.924384508503782748"},{"denom":"ASSET18","amount":"635971810.967565866273920472"},{"denom":"ASSET3","amount":"1286645299.386788574686539606"},{"denom":"ASSET4","amount":"1201470391.837926034462668512"},{"denom":"ASSET5","amount":"514166090.834017235731596347"},{"denom":"ASSET7","amount":"1068640759.126380626925055610"},{"denom":"ASSET8","amount":"1484579262.155938934906033271"},{"denom":"ASSET9","amount":"353773719.438959320908485840"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004516845811362"},{"denom":"ASSET1","index":"0.000037025353808540"},{"denom":"ASSET10","index":"0.000032012148214198"},{"denom":"ASSET11","index":"0.000038422522164271"},{"denom":"ASSET12","index":"0.000036596428665624"},{"denom":"ASSET13","index":"0.000012383682813544"},{"denom":"ASSET14","index":"0.000035437222127650"},{"denom":"ASSET15","index":"0.000028732771734380"},{"denom":"ASSET16","index":"0.000016425461252955"},{"denom":"ASSET17","index":"0.000013299194272465"},{"denom":"ASSET18","index":"0.000005516977688606"},{"denom":"ASSET2","index":"0.000011180223188506"},{"denom":"ASSET3","index":"0.000003208331571332"},{"denom":"ASSET4","index":"0.000030338218844450"},{"denom":"ASSET5","index":"0.000002517968540848"},{"denom":"ASSET6","index":"0.000010275940001092"},{"denom":"ASSET7","index":"0.000015886561233229"},{"denom":"ASSET8","index":"0.000022838329393529"},{"denom":"ASSET9","index":"0.000009178105145475"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"865744068.000000000000000000"},{"denom":"ASSET1","amount":"150826203.000000069376127163"},{"denom":"ASSET10","amount":"2000080135.054992046000000000"},{"denom":"ASSET11","amount":"330503471.360986006133618372"},{"denom":"ASSET12","amount":"56015869.000000000000000000"},{"denom":"ASSET13","amount":"1064500910.339492741003347063"},{"denom":"ASSET14","amount":"1685131406.440028367363726963"},{"denom":"ASSET15","amount":"3843259.000000000000000000"},{"denom":"ASSET17","amount":"488408152.737528627996580360"},{"denom":"ASSET18","amount":"107541969.214935823201430195"},{"denom":"ASSET2","amount":"1920565183.900076108446095235"},{"denom":"ASSET3","amount":"292912662.860080201044204068"},{"denom":"ASSET5","amount":"16968322.000000000000000000"},{"denom":"ASSET6","amount":"679662458.670657138683509766"},{"denom":"ASSET8","amount":"695025013.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"865744068.000000000000000000"},{"denom":"ASSET1","amount":"150848324.193796839074547819"},{"denom":"ASSET10","amount":"2000240411.633616049000000000"},{"denom":"ASSET11","amount":"330503471.360986024660052636"},{"denom":"ASSET12","amount":"56015869.000000000000000000"},{"denom":"ASSET13","amount":"1064500910.339492780347759708"},{"denom":"ASSET14","amount":"1685443184.028806860994001822"},{"denom":"ASSET15","amount":"3843259.000000000000000000"},{"denom":"ASSET17","amount":"488424134.899594938602028554"},{"denom":"ASSET18","amount":"107543491.703665128255644253"},{"denom":"ASSET2","amount":"1920620801.152443606224695836"},{"denom":"ASSET3","amount":"292912662.860080211670716956"},{"denom":"ASSET5","amount":"16968546.804642716580135146"},{"denom":"ASSET6","amount":"679701722.544990619816651724"},{"denom":"ASSET8","amount":"695136649.775398936308493649"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004334424087699"},{"denom":"ASSET1","index":"0.000035449514986345"},{"denom":"ASSET10","index":"0.000030840939894549"},{"denom":"ASSET11","index":"0.000036901879937154"},{"denom":"ASSET12","index":"0.000035161495405309"},{"denom":"ASSET13","index":"0.000011915420663187"},{"denom":"ASSET14","index":"0.000034041055395553"},{"denom":"ASSET15","index":"0.000027671425756021"},{"denom":"ASSET16","index":"0.000015724762226282"},{"denom":"ASSET17","index":"0.000012767594988461"},{"denom":"ASSET18","index":"0.000005291852188377"},{"denom":"ASSET2","index":"0.000010704019540621"},{"denom":"ASSET3","index":"0.000003077805518553"},{"denom":"ASSET4","index":"0.000029066924423371"},{"denom":"ASSET5","index":"0.000002416595232373"},{"denom":"ASSET6","index":"0.000009868112756670"},{"denom":"ASSET7","index":"0.000015242288495709"},{"denom":"ASSET8","index":"0.000021994384219842"},{"denom":"ASSET9","index":"0.000008805623401411"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"1710209171.685995298767967304"},{"denom":"ASSET1","amount":"1014850851.999998873747933333"},{"denom":"ASSET10","amount":"1505764271.810489907470720161"},{"denom":"ASSET11","amount":"38111800.000000000000000000"},{"denom":"ASSET13","amount":"949779521.526341712241914577"},{"denom":"ASSET16","amount":"1628064019.151510217857917029"},{"denom":"ASSET17","amount":"742607587.999999356149401290"},{"denom":"ASSET2","amount":"631122691.301453632343935229"},{"denom":"ASSET3","amount":"1872030448.366315573244328970"},{"denom":"ASSET5","amount":"333819961.000000000000000000"},{"denom":"ASSET6","amount":"460120482.999999990373278768"},{"denom":"ASSET9","amount":"363167324.598464140484918255"}],"validator_shares":[{"denom":"ASSET0","amount":"1710226967.090528204203337566"},{"denom":"ASSET1","amount":"1014999696.908414085380852196"},{"denom":"ASSET10","amount":"1505764271.810489924536932271"},{"denom":"ASSET11","amount":"38111800.000000000000000000"},{"denom":"ASSET13","amount":"949779521.526341749391043050"},{"denom":"ASSET16","amount":"1628064019.151510242332884971"},{"denom":"ASSET17","amount":"742631888.320861894936831144"},{"denom":"ASSET2","amount":"631140967.853736894958107677"},{"denom":"ASSET3","amount":"1872030448.366315511668882841"},{"denom":"ASSET5","amount":"333824383.610383293510976973"},{"denom":"ASSET6","amount":"460160355.082595283175174652"},{"denom":"ASSET9","amount":"363167324.598464140776181780"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004337315119138"},{"denom":"ASSET1","index":"0.000035468571019224"},{"denom":"ASSET10","index":"0.000030552751056515"},{"denom":"ASSET11","index":"0.000036815077060637"},{"denom":"ASSET12","index":"0.000034956975830368"},{"denom":"ASSET13","index":"0.000011870162962221"},{"denom":"ASSET14","index":"0.000033994549085763"},{"denom":"ASSET15","index":"0.000027455878855398"},{"denom":"ASSET16","index":"0.000015748959216247"},{"denom":"ASSET17","index":"0.000012695542149256"},{"denom":"ASSET18","index":"0.000005308581181597"},{"denom":"ASSET2","index":"0.000010691602612406"},{"denom":"ASSET3","index":"0.000003079715845784"},{"denom":"ASSET4","index":"0.000029077180580809"},{"denom":"ASSET5","index":"0.000002418471887744"},{"denom":"ASSET6","index":"0.000009880076714645"},{"denom":"ASSET7","index":"0.000015241504886080"},{"denom":"ASSET8","index":"0.000021904372501613"},{"denom":"ASSET9","index":"0.000008789613782008"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"201718180.000000000000000000"},{"denom":"ASSET1","amount":"1817641962.864918630074047194"},{"denom":"ASSET11","amount":"784370057.000000000000000000"},{"denom":"ASSET12","amount":"689115827.428914472277973600"},{"denom":"ASSET13","amount":"10280460.432393058599713514"},{"denom":"ASSET14","amount":"252187546.158424863822419816"},{"denom":"ASSET15","amount":"1000000000.000000000000000000"},{"denom":"ASSET17","amount":"40275281.000000000000000000"},{"denom":"ASSET18","amount":"284105098.000000000000000000"},{"denom":"ASSET2","amount":"11241387.275410588017939657"},{"denom":"ASSET3","amount":"1381635951.182588421254441358"},{"denom":"ASSET5","amount":"922134917.000000352382041703"},{"denom":"ASSET8","amount":"988434567.000000000000000000"},{"denom":"ASSET9","amount":"768527525.036722717168479796"}],"validator_shares":[{"denom":"ASSET0","amount":"201722377.933445208552688760"},{"denom":"ASSET1","amount":"1817775251.821666427309191657"},{"denom":"ASSET11","amount":"784508242.335755757648590372"},{"denom":"ASSET12","amount":"689178808.973855437814783909"},{"denom":"ASSET13","amount":"10280460.432393062985751769"},{"denom":"ASSET14","amount":"252187546.158425161285399088"},{"denom":"ASSET15","amount":"1000000000.000000000000000000"},{"denom":"ASSET17","amount":"40276599.692298393345117601"},{"denom":"ASSET18","amount":"284113142.294294314855189438"},{"denom":"ASSET2","amount":"11241387.275410599729212107"},{"denom":"ASSET3","amount":"1381635951.182588394949064553"},{"denom":"ASSET5","amount":"922147133.895138639417465481"},{"denom":"ASSET8","amount":"988540407.503053446316208373"},{"denom":"ASSET9","amount":"768527525.036722738211850152"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004542168220425"},{"denom":"ASSET1","index":"0.000037175229845512"},{"denom":"ASSET10","index":"0.000032304674241554"},{"denom":"ASSET11","index":"0.000038672632069936"},{"denom":"ASSET12","index":"0.000036851023395808"},{"denom":"ASSET13","index":"0.000012481885513000"},{"denom":"ASSET14","index":"0.000035670802057849"},{"denom":"ASSET15","index":"0.000028984900879802"},{"denom":"ASSET16","index":"0.000016490847360466"},{"denom":"ASSET17","index":"0.000013382977851414"},{"denom":"ASSET18","index":"0.000005546749439604"},{"denom":"ASSET2","index":"0.000011227253751433"},{"denom":"ASSET3","index":"0.000003225304980636"},{"denom":"ASSET4","index":"0.000030476161145262"},{"denom":"ASSET5","index":"0.000002532159498537"},{"denom":"ASSET6","index":"0.000010340381443978"},{"denom":"ASSET7","index":"0.000015976599284168"},{"denom":"ASSET8","index":"0.000023032940664540"},{"denom":"ASSET9","index":"0.000009228940537517"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"230392148.000000000000000000"},{"denom":"ASSET1","amount":"549706021.000000000000000000"},{"denom":"ASSET11","amount":"215411435.000000000000000000"},{"denom":"ASSET12","amount":"969317237.935514912462863385"},{"denom":"ASSET13","amount":"798413252.000000000000000000"},{"denom":"ASSET14","amount":"25391663.980722805856932762"},{"denom":"ASSET15","amount":"2615059660.683576412400698594"},{"denom":"ASSET16","amount":"195117004.000000000000000000"},{"denom":"ASSET17","amount":"755736489.999999999332998108"},{"denom":"ASSET18","amount":"947778904.317365887233715369"},{"denom":"ASSET2","amount":"1171571520.000000007250125126"},{"denom":"ASSET3","amount":"1400420048.367920184294178129"},{"denom":"ASSET4","amount":"739722509.000000000000000000"},{"denom":"ASSET5","amount":"26725712.000000000000000000"},{"denom":"ASSET6","amount":"431388487.509769574298919734"},{"denom":"ASSET7","amount":"467383380.000000000000000000"},{"denom":"ASSET8","amount":"970779850.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"230396942.664038722928998936"},{"denom":"ASSET1","amount":"549826960.854367746503793479"},{"denom":"ASSET11","amount":"215468362.233730979279519790"},{"denom":"ASSET12","amount":"969405828.408630025951565417"},{"denom":"ASSET13","amount":"798438275.691215910352109508"},{"denom":"ASSET14","amount":"25391663.980722795810296512"},{"denom":"ASSET15","amount":"2615223362.361230625056452124"},{"denom":"ASSET16","amount":"195123977.557932037073816692"},{"denom":"ASSET17","amount":"755736490.000000000000000000"},{"denom":"ASSET18","amount":"947778904.317366156736044703"},{"denom":"ASSET2","amount":"1171605447.298818414395291520"},{"denom":"ASSET3","amount":"1400420048.367920206343837144"},{"denom":"ASSET4","amount":"739899921.498816805959052890"},{"denom":"ASSET5","amount":"26725889.037055117878584928"},{"denom":"ASSET6","amount":"431388487.509769539513717050"},{"denom":"ASSET7","amount":"467403034.350152112258466620"},{"denom":"ASSET8","amount":"970831823.644982102757543050"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004570705498703"},{"denom":"ASSET1","index":"0.000037351903122491"},{"denom":"ASSET10","index":"0.000032488228633026"},{"denom":"ASSET11","index":"0.000038896486241790"},{"denom":"ASSET12","index":"0.000037036137764840"},{"denom":"ASSET13","index":"0.000012562287865708"},{"denom":"ASSET14","index":"0.000035891200514879"},{"denom":"ASSET15","index":"0.000029155090889424"},{"denom":"ASSET16","index":"0.000016572309636415"},{"denom":"ASSET17","index":"0.000013446355223163"},{"denom":"ASSET18","index":"0.000005582989725245"},{"denom":"ASSET2","index":"0.000011274764559437"},{"denom":"ASSET3","index":"0.000003245112752165"},{"denom":"ASSET4","index":"0.000030633347607545"},{"denom":"ASSET5","index":"0.000002548747163555"},{"denom":"ASSET6","index":"0.000010409192694939"},{"denom":"ASSET7","index":"0.000016070108051960"},{"denom":"ASSET8","index":"0.000023193138138929"},{"denom":"ASSET9","index":"0.000009280332869123"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"1019739704.274286995027499560"},{"denom":"ASSET10","amount":"703301298.000000000000000000"},{"denom":"ASSET11","amount":"1064635965.848355942513406608"},{"denom":"ASSET12","amount":"1804056491.066055199487148698"},{"denom":"ASSET14","amount":"1538809966.666475584821767808"},{"denom":"ASSET15","amount":"847212784.000000000331884045"},{"denom":"ASSET16","amount":"1486559125.663383154286221814"},{"denom":"ASSET17","amount":"669825531.431515806425037909"},{"denom":"ASSET18","amount":"1085245438.999999975341942272"},{"denom":"ASSET2","amount":"84116375.885633718484205372"},{"denom":"ASSET3","amount":"645175974.000000000000000000"},{"denom":"ASSET4","amount":"245731504.000000000000000000"},{"denom":"ASSET5","amount":"2788698.999999991969589593"},{"denom":"ASSET6","amount":"422812508.715311905567352644"},{"denom":"ASSET8","amount":"178411902.000000000000000000"},{"denom":"ASSET9","amount":"896670517.000000000929965347"}],"validator_shares":[{"denom":"ASSET0","amount":"1019739704.274287330161618280"},{"denom":"ASSET10","amount":"703414020.709253820846633768"},{"denom":"ASSET11","amount":"1064635965.848355922114184376"},{"denom":"ASSET12","amount":"1804221372.295662239987672494"},{"denom":"ASSET14","amount":"1538809966.666476107675495032"},{"denom":"ASSET15","amount":"847265819.177803428947719296"},{"denom":"ASSET16","amount":"1486559125.663383203569365763"},{"denom":"ASSET17","amount":"669847450.107810408898846113"},{"denom":"ASSET18","amount":"1085276167.183881018989051309"},{"denom":"ASSET2","amount":"84116375.885633711749188988"},{"denom":"ASSET3","amount":"645175974.000000000000000000"},{"denom":"ASSET4","amount":"245770792.696092709707731808"},{"denom":"ASSET5","amount":"2788717.472961864221723706"},{"denom":"ASSET6","amount":"422812508.715311905978913552"},{"denom":"ASSET8","amount":"178431006.153262986972135738"},{"denom":"ASSET9","amount":"896670517.000000000000000000"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004536084454421"},{"denom":"ASSET1","index":"0.000037083372659795"},{"denom":"ASSET10","index":"0.000032174135024714"},{"denom":"ASSET11","index":"0.000038580962006149"},{"denom":"ASSET12","index":"0.000036714497862249"},{"denom":"ASSET13","index":"0.000012453422061734"},{"denom":"ASSET14","index":"0.000035602966059204"},{"denom":"ASSET15","index":"0.000028882132110798"},{"denom":"ASSET16","index":"0.000016455404563254"},{"denom":"ASSET17","index":"0.000013332246409211"},{"denom":"ASSET18","index":"0.000005541989697304"},{"denom":"ASSET2","index":"0.000011191400044680"},{"denom":"ASSET3","index":"0.000003219800167701"},{"denom":"ASSET4","index":"0.000030407820413803"},{"denom":"ASSET5","index":"0.000002528915913414"},{"denom":"ASSET6","index":"0.000010328774056173"},{"denom":"ASSET7","index":"0.000015947694956299"},{"denom":"ASSET8","index":"0.000022986536848538"},{"denom":"ASSET9","index":"0.000009206840657546"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"472830651.000000000741159641"},{"denom":"ASSET1","amount":"1211013233.542756460672825088"},{"denom":"ASSET11","amount":"1324668649.760356613690872640"},{"denom":"ASSET13","amount":"14863191.520797849938764627"},{"denom":"ASSET14","amount":"403271852.565655077654001133"},{"denom":"ASSET15","amount":"1325586244.668888820031053126"},{"denom":"ASSET17","amount":"580832801.623230268372410644"},{"denom":"ASSET18","amount":"17218743.115328497780624910"},{"denom":"ASSET2","amount":"931504105.000000000000000000"},{"denom":"ASSET6","amount":"439205113.005022003834834790"},{"denom":"ASSET7","amount":"559583194.470180636824575436"},{"denom":"ASSET8","amount":"282639590.000000000000000000"},{"denom":"ASSET9","amount":"1636047766.156731832748664930"}],"validator_shares":[{"denom":"ASSET0","amount":"472840491.023362062025339482"},{"denom":"ASSET1","amount":"1211013233.542756470306547424"},{"denom":"ASSET11","amount":"1324785330.484970382471828892"},{"denom":"ASSET13","amount":"14863191.520797862598148019"},{"denom":"ASSET14","amount":"403271852.565655114876164512"},{"denom":"ASSET15","amount":"1325669225.831953411135368662"},{"denom":"ASSET17","amount":"580832801.623230227775282472"},{"denom":"ASSET18","amount":"17218743.115328503802629158"},{"denom":"ASSET2","amount":"931531080.235895897041612230"},{"denom":"ASSET6","amount":"439217799.192593190349749454"},{"denom":"ASSET7","amount":"559606725.995933803716365875"},{"denom":"ASSET8","amount":"282669854.741225323633284210"},{"denom":"ASSET9","amount":"1636088344.176271329630354388"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004921799450004"},{"denom":"ASSET1","index":"0.000040286444097571"},{"denom":"ASSET10","index":"0.000034976326949879"},{"denom":"ASSET11","index":"0.000041890474764792"},{"denom":"ASSET12","index":"0.000039912958015891"},{"denom":"ASSET13","index":"0.000013516409393032"},{"denom":"ASSET14","index":"0.000038638357291533"},{"denom":"ASSET15","index":"0.000031383044425745"},{"denom":"ASSET16","index":"0.000017870791471715"},{"denom":"ASSET17","index":"0.000014498079275177"},{"denom":"ASSET18","index":"0.000006008887487434"},{"denom":"ASSET2","index":"0.000012165821630038"},{"denom":"ASSET3","index":"0.000003494168041655"},{"denom":"ASSET4","index":"0.000033023573461647"},{"denom":"ASSET5","index":"0.000002744826762762"},{"denom":"ASSET6","index":"0.000011201384190550"},{"denom":"ASSET7","index":"0.000017308132332081"},{"denom":"ASSET8","index":"0.000024941381126425"},{"denom":"ASSET9","index":"0.000009999598252943"}],"total_delegator_shares":[{"denom":"ASSET1","amount":"90852472.000000000000000000"},{"denom":"ASSET11","amount":"1012498905.190573718658363840"},{"denom":"ASSET12","amount":"360910074.000000000000000000"},{"denom":"ASSET14","amount":"938893797.000000000000000000"},{"denom":"ASSET15","amount":"453315921.000000000000000000"},{"denom":"ASSET16","amount":"170818705.999999998131059485"},{"denom":"ASSET3","amount":"1273545139.260113657000000000"},{"denom":"ASSET4","amount":"1163448228.191168652131483383"},{"denom":"ASSET5","amount":"1213155097.000000001911930300"},{"denom":"ASSET6","amount":"501088181.000000000000000000"},{"denom":"ASSET7","amount":"503362268.721008921608974142"},{"denom":"ASSET8","amount":"381703843.171909969268134274"},{"denom":"ASSET9","amount":"570214823.000000000000000000"}],"validator_shares":[{"denom":"ASSET1","amount":"90852472.000000000000000000"},{"denom":"ASSET11","amount":"1012498905.190573718940054120"},{"denom":"ASSET12","amount":"360910074.000000000000000000"},{"denom":"ASSET14","amount":"938980648.537766469690081696"},{"denom":"ASSET15","amount":"453344298.393407415993847224"},{"denom":"ASSET16","amount":"170818706.000000000000000000"},{"denom":"ASSET2","amount":"0.369445504900704338"},{"denom":"ASSET3","amount":"1273545139.260113561000000000"},{"denom":"ASSET4","amount":"1163448228.191168536974341574"},{"denom":"ASSET5","amount":"1213155097.000000000000000000"},{"denom":"ASSET6","amount":"501117128.697666368064213608"},{"denom":"ASSET7","amount":"503362268.721008921333671644"},{"denom":"ASSET8","amount":"381703843.171906443138826436"},{"denom":"ASSET9","amount":"570214823.000000000000000000"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004957951068368"},{"denom":"ASSET1","index":"0.000040595109338701"},{"denom":"ASSET10","index":"0.000035126657560304"},{"denom":"ASSET11","index":"0.000042160091199159"},{"denom":"ASSET12","index":"0.000040137526814401"},{"denom":"ASSET13","index":"0.000013595617987355"},{"denom":"ASSET14","index":"0.000038893564212609"},{"denom":"ASSET15","index":"0.000031532808724594"},{"denom":"ASSET16","index":"0.000018012834416697"},{"denom":"ASSET17","index":"0.000014582632247249"},{"denom":"ASSET18","index":"0.000006056854468943"},{"denom":"ASSET2","index":"0.000012255281913400"},{"denom":"ASSET3","index":"0.000003521316365957"},{"denom":"ASSET4","index":"0.000033271654612923"},{"denom":"ASSET5","index":"0.000002764577024642"},{"denom":"ASSET6","index":"0.000011282334844705"},{"denom":"ASSET7","index":"0.000017431884448199"},{"denom":"ASSET8","index":"0.000025080164686627"},{"denom":"ASSET9","index":"0.000010067506697452"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"321863375.000000000000000000"},{"denom":"ASSET1","amount":"611383950.000000000000000000"},{"denom":"ASSET10","amount":"945933254.000000000000000000"},{"denom":"ASSET11","amount":"335038125.297747362084542850"},{"denom":"ASSET12","amount":"147123363.000000000000000000"},{"denom":"ASSET13","amount":"1886437539.394777939065359874"},{"denom":"ASSET14","amount":"1330858563.947043427743579082"},{"denom":"ASSET15","amount":"135093842.000000000000000000"},{"denom":"ASSET16","amount":"2040115802.556765666022885805"},{"denom":"ASSET2","amount":"458515149.459841325625272222"},{"denom":"ASSET4","amount":"697445098.000000000000000000"},{"denom":"ASSET5","amount":"1733323064.103242959021132181"},{"denom":"ASSET6","amount":"1279964814.636837960674363744"},{"denom":"ASSET8","amount":"617793667.000000000078208032"},{"denom":"ASSET9","amount":"532778132.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"321870073.261042709201259250"},{"denom":"ASSET1","amount":"611473619.716357090623778350"},{"denom":"ASSET10","amount":"946084864.923323168195531064"},{"denom":"ASSET11","amount":"335038125.297747274442478612"},{"denom":"ASSET12","amount":"147136809.297893381016549795"},{"denom":"ASSET13","amount":"1886437539.394778043635742589"},{"denom":"ASSET14","amount":"1330858563.947043429728546848"},{"denom":"ASSET15","amount":"135110756.169011147167710704"},{"denom":"ASSET16","amount":"2040115802.556765677662991351"},{"denom":"ASSET2","amount":"458528427.505801775229335490"},{"denom":"ASSET4","amount":"697445098.000000000000000000"},{"denom":"ASSET5","amount":"1733323064.103242942846318303"},{"denom":"ASSET6","amount":"1280001785.685767565581998826"},{"denom":"ASSET8","amount":"617826742.458581932259876771"},{"denom":"ASSET9","amount":"532817775.973032295578287596"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004555136197767"},{"denom":"ASSET1","index":"0.000037240722570861"},{"denom":"ASSET10","index":"0.000032656570809308"},{"denom":"ASSET11","index":"0.000038864800037776"},{"denom":"ASSET12","index":"0.000037120446581994"},{"denom":"ASSET13","index":"0.000012565270457927"},{"denom":"ASSET14","index":"0.000035828939643615"},{"denom":"ASSET15","index":"0.000029264594603660"},{"denom":"ASSET16","index":"0.000016507901080348"},{"denom":"ASSET17","index":"0.000013476518239563"},{"denom":"ASSET18","index":"0.000005550894327170"},{"denom":"ASSET2","index":"0.000011257866577172"},{"denom":"ASSET3","index":"0.000003231771970438"},{"denom":"ASSET4","index":"0.000030542305908795"},{"denom":"ASSET5","index":"0.000002539865989892"},{"denom":"ASSET6","index":"0.000010367834016251"},{"denom":"ASSET7","index":"0.000016024625816937"},{"denom":"ASSET8","index":"0.000023202454203695"},{"denom":"ASSET9","index":"0.000009268576140116"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"1500712223.894682961306143767"},{"denom":"ASSET10","amount":"972203481.000000011257432860"},{"denom":"ASSET11","amount":"1268491938.999999970453410440"},{"denom":"ASSET12","amount":"526987339.000000000000000000"},{"denom":"ASSET13","amount":"1603962070.447442182601271775"},{"denom":"ASSET14","amount":"303635363.000000000000000000"},{"denom":"ASSET16","amount":"647686871.158024009607069098"},{"denom":"ASSET18","amount":"69489627.761763683996452084"},{"denom":"ASSET2","amount":"875115484.000000000000000000"},{"denom":"ASSET3","amount":"802560960.000000000000000000"},{"denom":"ASSET4","amount":"883002299.000000000000000000"},{"denom":"ASSET5","amount":"1138286865.999999993931977149"},{"denom":"ASSET6","amount":"849782438.764132680780644561"},{"denom":"ASSET7","amount":"40259681.000000000000000000"},{"denom":"ASSET8","amount":"694770685.564139306135623658"},{"denom":"ASSET9","amount":"1073541928.975973901758261710"}],"validator_shares":[{"denom":"ASSET0","amount":"1500712223.894684150654511618"},{"denom":"ASSET10","amount":"972281388.602265509832512373"},{"denom":"ASSET11","amount":"1268603671.514116680371583526"},{"denom":"ASSET12","amount":"527035502.857879147091170635"},{"denom":"ASSET13","amount":"1603962070.447442129542122246"},{"denom":"ASSET14","amount":"303663450.519888929709881184"},{"denom":"ASSET16","amount":"647686871.158023854066727489"},{"denom":"ASSET18","amount":"69489627.803447322059661658"},{"denom":"ASSET2","amount":"875140826.289411652258026984"},{"denom":"ASSET3","amount":"802571508.267454269225178560"},{"denom":"ASSET4","amount":"883072885.441509225165313096"},{"denom":"ASSET5","amount":"1138286866.000000000000000000"},{"denom":"ASSET6","amount":"849806984.242073780945051128"},{"denom":"ASSET7","amount":"40259681.000000000000000000"},{"denom":"ASSET8","amount":"694807882.220987421421479052"},{"denom":"ASSET9","amount":"1073541928.975973900956078740"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004823716104736"},{"denom":"ASSET1","index":"0.000039480365070270"},{"denom":"ASSET10","index":"0.000034116928375488"},{"denom":"ASSET11","index":"0.000040997532955099"},{"denom":"ASSET12","index":"0.000038999162148649"},{"denom":"ASSET13","index":"0.000013220337329072"},{"denom":"ASSET14","index":"0.000037831952094564"},{"denom":"ASSET15","index":"0.000030637104167684"},{"denom":"ASSET16","index":"0.000017521720108905"},{"denom":"ASSET17","index":"0.000014166831814341"},{"denom":"ASSET18","index":"0.000005896825051000"},{"denom":"ASSET2","index":"0.000011913795848039"},{"denom":"ASSET3","index":"0.000003425665491719"},{"denom":"ASSET4","index":"0.000032361073374938"},{"denom":"ASSET5","index":"0.000002690020746157"},{"denom":"ASSET6","index":"0.000010980480809306"},{"denom":"ASSET7","index":"0.000016957489547178"},{"denom":"ASSET8","index":"0.000024390016426130"},{"denom":"ASSET9","index":"0.000009789394935097"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"874570133.000000000000000000"},{"denom":"ASSET1","amount":"1000000000.000000000000000000"},{"denom":"ASSET10","amount":"1145355415.254915475437856905"},{"denom":"ASSET12","amount":"795806073.638188512791347314"},{"denom":"ASSET13","amount":"204543993.000000000000000000"},{"denom":"ASSET14","amount":"30248090.000000000000000000"},{"denom":"ASSET16","amount":"996777431.000000000000000000"},{"denom":"ASSET17","amount":"455455075.000000000000000000"},{"denom":"ASSET18","amount":"776033393.179595015439028778"},{"denom":"ASSET2","amount":"978278650.000000000000000000"},{"denom":"ASSET3","amount":"598220345.000000000000000000"},{"denom":"ASSET4","amount":"340585963.000000000000000000"},{"denom":"ASSET6","amount":"2558000792.504163690590364970"},{"denom":"ASSET7","amount":"678876291.000000000000000000"},{"denom":"ASSET8","amount":"667404813.558827008688499851"},{"denom":"ASSET9","amount":"76679803.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"874588333.576722936882227206"},{"denom":"ASSET1","amount":"1000073331.145112300176686004"},{"denom":"ASSET10","amount":"1145447198.401024414535648728"},{"denom":"ASSET12","amount":"795806073.638188302641191900"},{"denom":"ASSET13","amount":"204543993.000000000000000000"},{"denom":"ASSET14","amount":"30253686.404250323167103320"},{"denom":"ASSET16","amount":"996884310.466026614037684707"},{"denom":"ASSET17","amount":"455469978.839712284791650350"},{"denom":"ASSET18","amount":"776033393.179595073709294264"},{"denom":"ASSET2","amount":"978306979.770329535690459900"},{"denom":"ASSET3","amount":"598224276.274614618662760390"},{"denom":"ASSET4","amount":"340640417.468295403722785526"},{"denom":"ASSET6","amount":"2558000792.504163692850134072"},{"denom":"ASSET7","amount":"678904839.024821253284281209"},{"denom":"ASSET8","amount":"667404813.558826955235036254"},{"denom":"ASSET9","amount":"76683606.741965808748091224"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004745793526719"},{"denom":"ASSET1","index":"0.000038837120907884"},{"denom":"ASSET10","index":"0.000033561109505682"},{"denom":"ASSET11","index":"0.000040331758239538"},{"denom":"ASSET12","index":"0.000038362096616639"},{"denom":"ASSET13","index":"0.000013006193269554"},{"denom":"ASSET14","index":"0.000037219618636050"},{"denom":"ASSET15","index":"0.000030138700648405"},{"denom":"ASSET16","index":"0.000017237339667545"},{"denom":"ASSET17","index":"0.000013935435412403"},{"denom":"ASSET18","index":"0.000005802064373263"},{"denom":"ASSET2","index":"0.000011718369963314"},{"denom":"ASSET3","index":"0.000003370927946053"},{"denom":"ASSET4","index":"0.000031834884145314"},{"denom":"ASSET5","index":"0.000002646352292773"},{"denom":"ASSET6","index":"0.000010803831971165"},{"denom":"ASSET7","index":"0.000016683192889003"},{"denom":"ASSET8","index":"0.000023996426686690"},{"denom":"ASSET9","index":"0.000009630511936919"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"803492777.000000000000000000"},{"denom":"ASSET1","amount":"858264637.556222099664719278"},{"denom":"ASSET10","amount":"928543667.647236423473048990"},{"denom":"ASSET11","amount":"536328315.000000000000000000"},{"denom":"ASSET13","amount":"1443787340.489210442808000278"},{"denom":"ASSET14","amount":"462686591.392110057167222430"},{"denom":"ASSET15","amount":"1534286479.154269628936441696"},{"denom":"ASSET17","amount":"1437944168.712774945925975254"},{"denom":"ASSET18","amount":"444965271.000000000000000000"},{"denom":"ASSET2","amount":"250491820.000000000000000000"},{"denom":"ASSET6","amount":"426263158.000000000000000000"},{"denom":"ASSET7","amount":"835146958.369014997756625151"},{"denom":"ASSET8","amount":"1000000000.000000000000000000"},{"denom":"ASSET9","amount":"113727252.000000009382602460"}],"validator_shares":[{"denom":"ASSET0","amount":"803492777.000000000000000000"},{"denom":"ASSET1","amount":"858264637.556222106602176181"},{"denom":"ASSET10","amount":"928543667.647236441028971854"},{"denom":"ASSET11","amount":"536328315.848670781078416608"},{"denom":"ASSET13","amount":"1443787340.489210548961847154"},{"denom":"ASSET14","amount":"462686591.392110074598194780"},{"denom":"ASSET15","amount":"1534286479.154269638223488988"},{"denom":"ASSET17","amount":"1437944168.712776511980256843"},{"denom":"ASSET18","amount":"444977869.969944121042483701"},{"denom":"ASSET2","amount":"250499073.941124062550949320"},{"denom":"ASSET6","amount":"426287783.080957747198276144"},{"denom":"ASSET7","amount":"835146958.369893076264927753"},{"denom":"ASSET8","amount":"1000160622.673012973000000000"},{"denom":"ASSET9","amount":"113727252.000000000000000000"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004925875885411"},{"denom":"ASSET1","index":"0.000040292562025913"},{"denom":"ASSET10","index":"0.000034914390996922"},{"denom":"ASSET11","index":"0.000041886139125963"},{"denom":"ASSET12","index":"0.000039866325773975"},{"denom":"ASSET13","index":"0.000013514800906768"},{"denom":"ASSET14","index":"0.000038648914786353"},{"denom":"ASSET15","index":"0.000031343172569099"},{"denom":"ASSET16","index":"0.000017879880474022"},{"denom":"ASSET17","index":"0.000014479587580243"},{"denom":"ASSET18","index":"0.000006018974701591"},{"denom":"ASSET2","index":"0.000012161689256763"},{"denom":"ASSET3","index":"0.000003497875219260"},{"denom":"ASSET4","index":"0.000033033007174623"},{"denom":"ASSET5","index":"0.000002746709808505"},{"denom":"ASSET6","index":"0.000011213225573004"},{"denom":"ASSET7","index":"0.000017316551809961"},{"denom":"ASSET8","index":"0.000024939868124773"},{"denom":"ASSET9","index":"0.000009998447386442"}],"total_delegator_shares":[{"denom":"ASSET1","amount":"692866568.343898780779648363"},{"denom":"ASSET11","amount":"1024444863.782306639350320864"},{"denom":"ASSET12","amount":"992961435.000000012598962528"},{"denom":"ASSET13","amount":"97185753.000000000000000000"},{"denom":"ASSET15","amount":"2512747876.763522673000548115"},{"denom":"ASSET17","amount":"626217915.094118942485577748"},{"denom":"ASSET18","amount":"729760950.000000000000000000"},{"denom":"ASSET2","amount":"1070195966.226701404402807158"},{"denom":"ASSET3","amount":"236892788.000000000000000000"},{"denom":"ASSET4","amount":"1016258341.677385276927059612"},{"denom":"ASSET5","amount":"583918716.000000000000000000"},{"denom":"ASSET6","amount":"1400829226.727687650369246690"},{"denom":"ASSET7","amount":"781491734.000000000000000000"},{"denom":"ASSET8","amount":"1446243934.057515830434901120"},{"denom":"ASSET9","amount":"115570189.000000000000000000"}],"validator_shares":[{"denom":"ASSET1","amount":"692866568.343898749855962427"},{"denom":"ASSET11","amount":"1024444863.782306639057034168"},{"denom":"ASSET12","amount":"993142946.126745734655283095"},{"denom":"ASSET13","amount":"97188798.974334175672162137"},{"denom":"ASSET15","amount":"2512905173.764861765740863736"},{"denom":"ASSET17","amount":"626238406.799983723245785442"},{"denom":"ASSET18","amount":"729760950.000000000000000000"},{"denom":"ASSET2","amount":"1070257950.277928813559711759"},{"denom":"ASSET3","amount":"236897458.958320709422533743"},{"denom":"ASSET4","amount":"1016258342.572251818293737386"},{"denom":"ASSET5","amount":"583918716.000000000000000000"},{"denom":"ASSET6","amount":"1400829226.727687663468348880"},{"denom":"ASSET7","amount":"781557461.779048790263506608"},{"denom":"ASSET8","amount":"1446243934.057515823894554401"},{"denom":"ASSET9","amount":"115575921.920021922181447912"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000005103265091642"},{"denom":"ASSET1","index":"0.000041786439536935"},{"denom":"ASSET10","index":"0.000036197265493130"},{"denom":"ASSET11","index":"0.000043412428791565"},{"denom":"ASSET12","index":"0.000041343531000594"},{"denom":"ASSET13","index":"0.000014002193574026"},{"denom":"ASSET14","index":"0.000040046434504736"},{"denom":"ASSET15","index":"0.000032488195777718"},{"denom":"ASSET16","index":"0.000018539048370230"},{"denom":"ASSET17","index":"0.000015019703341469"},{"denom":"ASSET18","index":"0.000006233739153526"},{"denom":"ASSET2","index":"0.000012616239659622"},{"denom":"ASSET3","index":"0.000003624393703951"},{"denom":"ASSET4","index":"0.000034249425723540"},{"denom":"ASSET5","index":"0.000002845180080004"},{"denom":"ASSET6","index":"0.000011614027747767"},{"denom":"ASSET7","index":"0.000017945293871291"},{"denom":"ASSET8","index":"0.000025831476524037"},{"denom":"ASSET9","index":"0.000010365841709202"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"867375195.867812015650535224"},{"denom":"ASSET10","amount":"6111596.016831238367005294"},{"denom":"ASSET12","amount":"306507728.996506950868620252"},{"denom":"ASSET13","amount":"441499951.000000000000000000"},{"denom":"ASSET14","amount":"137401164.000000000000000000"},{"denom":"ASSET16","amount":"32792721.534712843676020839"},{"denom":"ASSET18","amount":"1452164799.818772607337173613"},{"denom":"ASSET2","amount":"1377095412.140559995093476463"},{"denom":"ASSET3","amount":"565214392.000000000000000000"},{"denom":"ASSET4","amount":"1000000000.000000000000000000"},{"denom":"ASSET6","amount":"743649564.000000000000000000"},{"denom":"ASSET7","amount":"1289532898.999999916000000000"},{"denom":"ASSET8","amount":"414511422.000000000000000000"},{"denom":"ASSET9","amount":"5028798.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"867375195.867811817961518336"},{"denom":"ASSET10","amount":"6111596.016831248080124145"},{"denom":"ASSET12","amount":"306535742.183173354642060806"},{"denom":"ASSET13","amount":"441541464.458529122432336858"},{"denom":"ASSET14","amount":"137413874.172782516418721152"},{"denom":"ASSET16","amount":"32792721.534712837364830409"},{"denom":"ASSET18","amount":"1452185358.346359189155707845"},{"denom":"ASSET2","amount":"1377095412.140559983037960327"},{"denom":"ASSET3","amount":"565225535.170089658551779296"},{"denom":"ASSET4","amount":"1000000000.000000000000000000"},{"denom":"ASSET6","amount":"743671043.890777223533160268"},{"denom":"ASSET7","amount":"1289641355.852163733789336088"},{"denom":"ASSET8","amount":"414555807.434191193532522618"},{"denom":"ASSET9","amount":"5028798.000000000000000000"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004603569948956"},{"denom":"ASSET1","index":"0.000037657747163858"},{"denom":"ASSET10","index":"0.000032685028331762"},{"denom":"ASSET11","index":"0.000039168650778486"},{"denom":"ASSET12","index":"0.000037297135276037"},{"denom":"ASSET13","index":"0.000012641649341100"},{"denom":"ASSET14","index":"0.000036137365706128"},{"denom":"ASSET15","index":"0.000029334958625221"},{"denom":"ASSET16","index":"0.000016707823856618"},{"denom":"ASSET17","index":"0.000013546076882550"},{"denom":"ASSET18","index":"0.000005623085845845"},{"denom":"ASSET2","index":"0.000011368447004498"},{"denom":"ASSET3","index":"0.000003269493918411"},{"denom":"ASSET4","index":"0.000030874677880264"},{"denom":"ASSET5","index":"0.000002566798539209"},{"denom":"ASSET6","index":"0.000010480589665140"},{"denom":"ASSET7","index":"0.000016187212147994"},{"denom":"ASSET8","index":"0.000023330452982259"},{"denom":"ASSET9","index":"0.000009348542318023"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"173806069.000000000000000000"},{"denom":"ASSET1","amount":"379275480.784067903223458900"},{"denom":"ASSET11","amount":"1386702117.401864547228294669"},{"denom":"ASSET12","amount":"1462087628.152427876149278351"},{"denom":"ASSET13","amount":"957091809.980261996124169333"},{"denom":"ASSET15","amount":"30536232.000000000000000000"},{"denom":"ASSET16","amount":"1000000000.000000000000000000"},{"denom":"ASSET17","amount":"784410616.210300785855941039"},{"denom":"ASSET18","amount":"516097844.499177507170636516"},{"denom":"ASSET3","amount":"407775087.000000000000000000"},{"denom":"ASSET4","amount":"1632828117.735288477255929080"},{"denom":"ASSET5","amount":"393926710.000000010681213790"},{"denom":"ASSET7","amount":"1937463172.549217703697659760"},{"denom":"ASSET8","amount":"1986259018.229668652997160300"},{"denom":"ASSET9","amount":"98315290.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"173807877.521062411658481037"},{"denom":"ASSET1","amount":"379303293.320412516792069314"},{"denom":"ASSET11","amount":"1386824262.217408638442050754"},{"denom":"ASSET12","amount":"1462221255.235125585824280256"},{"denom":"ASSET13","amount":"957091809.980261931475870904"},{"denom":"ASSET15","amount":"30536232.000000000000000000"},{"denom":"ASSET16","amount":"1000000000.000000000000000000"},{"denom":"ASSET17","amount":"784410616.210300918208096891"},{"denom":"ASSET18","amount":"516097844.499177507170636516"},{"denom":"ASSET3","amount":"407780446.494036270966654807"},{"denom":"ASSET4","amount":"1632958644.605442348533159856"},{"denom":"ASSET5","amount":"393926710.000000000000000000"},{"denom":"ASSET7","amount":"1937463172.549217744457890760"},{"denom":"ASSET8","amount":"1986365358.633268900894516358"},{"denom":"ASSET9","amount":"98317728.461664245719096520"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004757972776933"},{"denom":"ASSET1","index":"0.000038970400118654"},{"denom":"ASSET10","index":"0.000033617836990995"},{"denom":"ASSET11","index":"0.000040428437524388"},{"denom":"ASSET12","index":"0.000038459846371488"},{"denom":"ASSET13","index":"0.000013029623770405"},{"denom":"ASSET14","index":"0.000037302820528116"},{"denom":"ASSET15","index":"0.000030190977215601"},{"denom":"ASSET16","index":"0.000017295602426422"},{"denom":"ASSET17","index":"0.000013975163103663"},{"denom":"ASSET18","index":"0.000005816089409694"},{"denom":"ASSET2","index":"0.000011760899716132"},{"denom":"ASSET3","index":"0.000003380086343079"},{"denom":"ASSET4","index":"0.000031935316700571"},{"denom":"ASSET5","index":"0.000002652933340978"},{"denom":"ASSET6","index":"0.000010827301916558"},{"denom":"ASSET7","index":"0.000016726845186415"},{"denom":"ASSET8","index":"0.000024031227508335"},{"denom":"ASSET9","index":"0.000009656515298543"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"858017333.000000000000000000"},{"denom":"ASSET1","amount":"976783970.601799212023574622"},{"denom":"ASSET10","amount":"1195347927.902024382405898662"},{"denom":"ASSET11","amount":"161290573.000000000000000000"},{"denom":"ASSET13","amount":"684526444.487895864409247455"},{"denom":"ASSET14","amount":"1460204882.790225960509181526"},{"denom":"ASSET15","amount":"575626490.000000000000000000"},{"denom":"ASSET17","amount":"1437254458.963318177000000000"},{"denom":"ASSET18","amount":"479080009.822954568363606956"},{"denom":"ASSET2","amount":"507649427.000000000000000000"},{"denom":"ASSET5","amount":"921197569.000000000000000000"},{"denom":"ASSET7","amount":"48430498.000000000000000000"},{"denom":"ASSET8","amount":"2613540757.706473207256815216"},{"denom":"ASSET9","amount":"585591935.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"858026261.994682849292001981"},{"denom":"ASSET1","amount":"976783970.601799207587991893"},{"denom":"ASSET10","amount":"1195347927.902024379753350353"},{"denom":"ASSET11","amount":"161318988.148927903987021108"},{"denom":"ASSET12","amount":"0.968705878603667185"},{"denom":"ASSET13","amount":"684526444.487895933968281298"},{"denom":"ASSET14","amount":"1460204882.790225952884598342"},{"denom":"ASSET15","amount":"575734598.720738489574457060"},{"denom":"ASSET17","amount":"1437254458.963318138000000000"},{"denom":"ASSET18","amount":"479080009.822954659294238945"},{"denom":"ASSET2","amount":"507678829.248823362463093253"},{"denom":"ASSET5","amount":"921215875.784962900871839232"},{"denom":"ASSET7","amount":"48430498.000000000000000000"},{"denom":"ASSET8","amount":"2613680681.541405674827596846"},{"denom":"ASSET9","amount":"585591935.000000000000000000"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004797932273463"},{"denom":"ASSET1","index":"0.000039207124912078"},{"denom":"ASSET10","index":"0.000034353978435423"},{"denom":"ASSET11","index":"0.000040920134682013"},{"denom":"ASSET12","index":"0.000039056395494217"},{"denom":"ASSET13","index":"0.000013231227958855"},{"denom":"ASSET14","index":"0.000037733679436848"},{"denom":"ASSET15","index":"0.000030793877081294"},{"denom":"ASSET16","index":"0.000017383221205873"},{"denom":"ASSET17","index":"0.000014177361978135"},{"denom":"ASSET18","index":"0.000005850206856034"},{"denom":"ASSET2","index":"0.000011848399796786"},{"denom":"ASSET3","index":"0.000003404782714627"},{"denom":"ASSET4","index":"0.000032159529107613"},{"denom":"ASSET5","index":"0.000002675260702048"},{"denom":"ASSET6","index":"0.000010924211970889"},{"denom":"ASSET7","index":"0.000016877439175785"},{"denom":"ASSET8","index":"0.000024434811349288"},{"denom":"ASSET9","index":"0.000009758176572436"}],"total_delegator_shares":[{"denom":"ASSET1","amount":"912959609.999999680707378585"},{"denom":"ASSET10","amount":"419920373.000000000000000000"},{"denom":"ASSET11","amount":"479590774.000000000000000000"},{"denom":"ASSET12","amount":"1000000000.000000000000000000"},{"denom":"ASSET14","amount":"975111288.379639132139950364"},{"denom":"ASSET16","amount":"227029919.000000000000000000"},{"denom":"ASSET17","amount":"974184703.000000000000000000"},{"denom":"ASSET18","amount":"1105508075.337554911523020850"},{"denom":"ASSET2","amount":"456657553.999999986959781296"},{"denom":"ASSET3","amount":"393736312.496523052172300618"},{"denom":"ASSET4","amount":"848262087.000000000000000000"},{"denom":"ASSET5","amount":"350041857.000000003032746005"},{"denom":"ASSET6","amount":"1513465434.764055941636786062"},{"denom":"ASSET7","amount":"373225285.778090269629384545"},{"denom":"ASSET9","amount":"857824618.999999724218222685"}],"validator_shares":[{"denom":"ASSET1","amount":"913160468.637269746486335390"},{"denom":"ASSET10","amount":"420021332.127440589980620527"},{"denom":"ASSET11","amount":"479633017.770952481130207916"},{"denom":"ASSET12","amount":"1000091394.715422465000000000"},{"denom":"ASSET14","amount":"975111288.379639122111318616"},{"denom":"ASSET16","amount":"227029919.000000000000000000"},{"denom":"ASSET17","amount":"974216581.210301360162043014"},{"denom":"ASSET18","amount":"1105508075.337554902693782780"},{"denom":"ASSET2","amount":"456670778.252235360081057804"},{"denom":"ASSET3","amount":"393736312.496523036161501506"},{"denom":"ASSET4","amount":"848397711.088896272258870574"},{"denom":"ASSET5","amount":"350041857.000000000000000000"},{"denom":"ASSET6","amount":"1513465434.764055953754309267"},{"denom":"ASSET7","amount":"373240980.603294176671035839"},{"denom":"ASSET9","amount":"857867171.841490662154651352"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004795768020357"},{"denom":"ASSET1","index":"0.000039235640540163"},{"denom":"ASSET10","index":"0.000034090813500731"},{"denom":"ASSET11","index":"0.000040819172716073"},{"denom":"ASSET12","index":"0.000038887343100883"},{"denom":"ASSET13","index":"0.000013175362444583"},{"denom":"ASSET14","index":"0.000037654186330986"},{"denom":"ASSET15","index":"0.000030589194135662"},{"denom":"ASSET16","index":"0.000017405797263851"},{"denom":"ASSET17","index":"0.000014123771157348"},{"denom":"ASSET18","index":"0.000005856171184647"},{"denom":"ASSET2","index":"0.000011847674447736"},{"denom":"ASSET3","index":"0.000003405135950666"},{"denom":"ASSET4","index":"0.000032167283890779"},{"denom":"ASSET5","index":"0.000002674112194983"},{"denom":"ASSET6","index":"0.000010916704748385"},{"denom":"ASSET7","index":"0.000016864134756441"},{"denom":"ASSET8","index":"0.000024315764197247"},{"denom":"ASSET9","index":"0.000009742334443531"}],"total_delegator_shares":[{"denom":"ASSET1","amount":"49301336.040837629692747422"},{"denom":"ASSET10","amount":"1000000000.000000000000000000"},{"denom":"ASSET12","amount":"269795334.999999997811467353"},{"denom":"ASSET13","amount":"649019181.000000798008922293"},{"denom":"ASSET15","amount":"1060748249.577745727293462054"},{"denom":"ASSET16","amount":"526316447.000000000000000000"},{"denom":"ASSET17","amount":"1093522268.748316252438538295"},{"denom":"ASSET18","amount":"1379927438.628117267250105028"},{"denom":"ASSET2","amount":"461386656.404484658565849521"},{"denom":"ASSET3","amount":"1054414011.600553332230006440"},{"denom":"ASSET4","amount":"513663234.322699880916906673"},{"denom":"ASSET5","amount":"1269715094.592580894921764344"},{"denom":"ASSET6","amount":"1815023335.760347799831824381"},{"denom":"ASSET8","amount":"1114520271.327754197853913260"},{"denom":"ASSET9","amount":"1000000000.000000000000000000"}],"validator_shares":[{"denom":"ASSET1","amount":"49301336.040837598497152909"},{"denom":"ASSET10","amount":"1000160276.555118516000000000"},{"denom":"ASSET12","amount":"269819992.867864633611200775"},{"denom":"ASSET13","amount":"649039522.415348335213874349"},{"denom":"ASSET15","amount":"1060814651.989375331252779464"},{"denom":"ASSET16","amount":"526316447.000000000000000000"},{"denom":"ASSET17","amount":"1093558052.037404081510148635"},{"denom":"ASSET18","amount":"1379946974.479914578597089505"},{"denom":"ASSET2","amount":"461386656.616944513932496204"},{"denom":"ASSET3","amount":"1054420940.804937146677309280"},{"denom":"ASSET4","amount":"513663234.322699664393608216"},{"denom":"ASSET5","amount":"1269715094.592580943385217921"},{"denom":"ASSET6","amount":"1815023335.760347791721938812"},{"denom":"ASSET8","amount":"1114579940.552354811409512424"},{"denom":"ASSET9","amount":"1000024802.466271988000000000"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004941758780646"},{"denom":"ASSET1","index":"0.000040473870434523"},{"denom":"ASSET10","index":"0.000035083402440859"},{"denom":"ASSET11","index":"0.000042051564730155"},{"denom":"ASSET12","index":"0.000040063832495883"},{"denom":"ASSET13","index":"0.000013563015527428"},{"denom":"ASSET14","index":"0.000038785366713261"},{"denom":"ASSET15","index":"0.000031483779525299"},{"denom":"ASSET16","index":"0.000017955292333607"},{"denom":"ASSET17","index":"0.000014555394021301"},{"denom":"ASSET18","index":"0.000006034476545538"},{"denom":"ASSET2","index":"0.000012222945573354"},{"denom":"ASSET3","index":"0.000003508847610589"},{"denom":"ASSET4","index":"0.000033172373205264"},{"denom":"ASSET5","index":"0.000002755599690062"},{"denom":"ASSET6","index":"0.000011244023937701"},{"denom":"ASSET7","index":"0.000017379505184359"},{"denom":"ASSET8","index":"0.000025019733274858"},{"denom":"ASSET9","index":"0.000010040653742801"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"549712534.000000000000000000"},{"denom":"ASSET10","amount":"684383187.166173090914693264"},{"denom":"ASSET11","amount":"535807298.056157491077199696"},{"denom":"ASSET14","amount":"390178411.830374418356058119"},{"denom":"ASSET15","amount":"786895699.000000000000000000"},{"denom":"ASSET16","amount":"1601060740.948359261094601970"},{"denom":"ASSET18","amount":"903890064.000000078302768745"},{"denom":"ASSET2","amount":"361490354.302204161494894182"},{"denom":"ASSET3","amount":"798818570.854189875018330848"},{"denom":"ASSET4","amount":"217055965.744351639457981264"},{"denom":"ASSET5","amount":"847480606.000000000000000000"},{"denom":"ASSET6","amount":"1367223451.785588800048495620"},{"denom":"ASSET9","amount":"809982783.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"549723974.003234854407555188"},{"denom":"ASSET10","amount":"684383187.166173091870531952"},{"denom":"ASSET11","amount":"535854493.544479676694012756"},{"denom":"ASSET14","amount":"390214504.938220072928680900"},{"denom":"ASSET15","amount":"786994220.787891936549762088"},{"denom":"ASSET16","amount":"1601060740.948359274205779736"},{"denom":"ASSET18","amount":"903915657.196798330909547184"},{"denom":"ASSET2","amount":"361500822.627066143390997919"},{"denom":"ASSET3","amount":"798829069.934448592599637127"},{"denom":"ASSET4","amount":"217090669.661978763691212162"},{"denom":"ASSET5","amount":"847486219.899856279044860964"},{"denom":"ASSET6","amount":"1367223451.785588812561973995"},{"denom":"ASSET9","amount":"809982783.000000000000000000"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004783616016936"},{"denom":"ASSET1","index":"0.000039187135332259"},{"denom":"ASSET10","index":"0.000033918997184481"},{"denom":"ASSET11","index":"0.000040694253837014"},{"denom":"ASSET12","index":"0.000038755434645956"},{"denom":"ASSET13","index":"0.000013121054586591"},{"denom":"ASSET14","index":"0.000037536780731261"},{"denom":"ASSET15","index":"0.000030444661619132"},{"denom":"ASSET16","index":"0.000017385983268999"},{"denom":"ASSET17","index":"0.000014080472937556"},{"denom":"ASSET18","index":"0.000005842564966359"},{"denom":"ASSET2","index":"0.000011831521274442"},{"denom":"ASSET3","index":"0.000003397302785587"},{"denom":"ASSET4","index":"0.000032115463259507"},{"denom":"ASSET5","index":"0.000002667183280114"},{"denom":"ASSET6","index":"0.000010885918067386"},{"denom":"ASSET7","index":"0.000016823558426018"},{"denom":"ASSET8","index":"0.000024204162780132"},{"denom":"ASSET9","index":"0.000009717424664222"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"1000000000.000000000000000000"},{"denom":"ASSET10","amount":"1496987203.873438243104303778"},{"denom":"ASSET11","amount":"213387633.000000000000000000"},{"denom":"ASSET12","amount":"414820648.046186620540805194"},{"denom":"ASSET13","amount":"68825729.000000000000000000"},{"denom":"ASSET14","amount":"380090417.054773396845407976"},{"denom":"ASSET15","amount":"2000000000.000000024000000000"},{"denom":"ASSET16","amount":"399656573.999999999770809859"},{"denom":"ASSET17","amount":"1000000000.000000000000000000"},{"denom":"ASSET18","amount":"397731428.000000000000000000"},{"denom":"ASSET3","amount":"599453619.000000000000000000"},{"denom":"ASSET4","amount":"13440660.999999989558044812"},{"denom":"ASSET5","amount":"613203351.601719584776183199"},{"denom":"ASSET6","amount":"485560416.000000000000000000"},{"denom":"ASSET7","amount":"815749034.732116697631399865"},{"denom":"ASSET8","amount":"472884450.253801865106753183"},{"denom":"ASSET9","amount":"1000000000.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"1000010405.396502073000000000"},{"denom":"ASSET10","amount":"1496987203.873438344644326857"},{"denom":"ASSET11","amount":"213425226.278133297470780868"},{"denom":"ASSET12","amount":"414820648.046186611084660303"},{"denom":"ASSET13","amount":"68827886.120746545332119041"},{"denom":"ASSET14","amount":"380090417.054772375538047872"},{"denom":"ASSET15","amount":"2000250406.217792624000000000"},{"denom":"ASSET16","amount":"399656574.000000000000000000"},{"denom":"ASSET17","amount":"1000065446.983203389000000000"},{"denom":"ASSET18","amount":"397731428.673486785559345043"},{"denom":"ASSET3","amount":"599461497.774840532492427259"},{"denom":"ASSET4","amount":"13440661.000000000000000000"},{"denom":"ASSET5","amount":"613203351.601728241276832936"},{"denom":"ASSET6","amount":"485588466.663843384297401088"},{"denom":"ASSET7","amount":"815749034.732116697008325135"},{"denom":"ASSET8","amount":"472884450.253801801420035807"},{"denom":"ASSET9","amount":"1000024802.466271988000000000"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000005011502465784"},{"denom":"ASSET1","index":"0.000041062504292010"},{"denom":"ASSET10","index":"0.000035499667721994"},{"denom":"ASSET11","index":"0.000042618778374096"},{"denom":"ASSET12","index":"0.000040581702631690"},{"denom":"ASSET13","index":"0.000013738625153388"},{"denom":"ASSET14","index":"0.000039311910991656"},{"denom":"ASSET15","index":"0.000031866190350994"},{"denom":"ASSET16","index":"0.000018219089143418"},{"denom":"ASSET17","index":"0.000014746275469735"},{"denom":"ASSET18","index":"0.000006121555088654"},{"denom":"ASSET2","index":"0.000012397631677469"},{"denom":"ASSET3","index":"0.000003559564063326"},{"denom":"ASSET4","index":"0.000033648681772773"},{"denom":"ASSET5","index":"0.000002794335013820"},{"denom":"ASSET6","index":"0.000011402472728772"},{"denom":"ASSET7","index":"0.000017622476297013"},{"denom":"ASSET8","index":"0.000025338774425022"},{"denom":"ASSET9","index":"0.000010179577235599"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"168166429.941127098301267080"},{"denom":"ASSET1","amount":"310616649.000000000000000000"},{"denom":"ASSET10","amount":"1928527877.672763175480974364"},{"denom":"ASSET11","amount":"1749342805.000000026884111188"},{"denom":"ASSET12","amount":"1000000000.000000000000000000"},{"denom":"ASSET13","amount":"980973832.691515825443758980"},{"denom":"ASSET14","amount":"791083392.084221529422254150"},{"denom":"ASSET15","amount":"1000000000.000000000000000000"},{"denom":"ASSET16","amount":"355944923.000000000000000000"},{"denom":"ASSET17","amount":"1151119774.782316672473911192"},{"denom":"ASSET18","amount":"595627243.000000000000000000"},{"denom":"ASSET4","amount":"504974623.000000000000000000"},{"denom":"ASSET5","amount":"1236318735.824907158010744140"},{"denom":"ASSET7","amount":"2208530102.558115368558999969"},{"denom":"ASSET8","amount":"1155125300.897089659561374676"},{"denom":"ASSET9","amount":"1877850693.262292556624623899"}],"validator_shares":[{"denom":"ASSET0","amount":"168166429.941127093422180855"},{"denom":"ASSET1","amount":"310662206.144265268947520377"},{"denom":"ASSET10","amount":"1928836975.477446561157737324"},{"denom":"ASSET11","amount":"1749650993.106753345735997780"},{"denom":"ASSET12","amount":"1000182797.760666037000000000"},{"denom":"ASSET13","amount":"980973832.691515837459098910"},{"denom":"ASSET14","amount":"791083392.084221525035616440"},{"denom":"ASSET15","amount":"1000062599.595762744000000000"},{"denom":"ASSET16","amount":"355970366.674924006670609029"},{"denom":"ASSET17","amount":"1151119774.782316650825395320"},{"denom":"ASSET18","amount":"595627243.000000000000000000"},{"denom":"ASSET4","amount":"504974623.000000000000000000"},{"denom":"ASSET5","amount":"1236318735.824907163918634265"},{"denom":"ASSET7","amount":"2208530102.558115260342513180"},{"denom":"ASSET8","amount":"1155187144.035158953799089383"},{"denom":"ASSET9","amount":"1877850693.262292582328212684"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004646072432784"},{"denom":"ASSET1","index":"0.000038080040286229"},{"denom":"ASSET10","index":"0.000032847486902383"},{"denom":"ASSET11","index":"0.000039497924523924"},{"denom":"ASSET12","index":"0.000037580996460881"},{"denom":"ASSET13","index":"0.000012727008214209"},{"denom":"ASSET14","index":"0.000036441395391337"},{"denom":"ASSET15","index":"0.000029495995455198"},{"denom":"ASSET16","index":"0.000016898944682339"},{"denom":"ASSET17","index":"0.000013656744319509"},{"denom":"ASSET18","index":"0.000005680448810265"},{"denom":"ASSET2","index":"0.000011491675895035"},{"denom":"ASSET3","index":"0.000003300791246888"},{"denom":"ASSET4","index":"0.000031203283155516"},{"denom":"ASSET5","index":"0.000002590315755126"},{"denom":"ASSET6","index":"0.000010575594364390"},{"denom":"ASSET7","index":"0.000016340844103827"},{"denom":"ASSET8","index":"0.000023471391786119"},{"denom":"ASSET9","index":"0.000009435755908534"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"189781528.000000007028482334"},{"denom":"ASSET1","amount":"851490999.650541265442695947"},{"denom":"ASSET11","amount":"147676910.000000000000000000"},{"denom":"ASSET12","amount":"1917697172.992679523529540257"},{"denom":"ASSET13","amount":"1020077628.545076205456559552"},{"denom":"ASSET14","amount":"195810796.000000000000000000"},{"denom":"ASSET15","amount":"812333758.593077830430181948"},{"denom":"ASSET16","amount":"163828293.000000000000000000"},{"denom":"ASSET17","amount":"237096089.232758465159062741"},{"denom":"ASSET3","amount":"71628576.000000000000000000"},{"denom":"ASSET5","amount":"793845981.000000000000000000"},{"denom":"ASSET7","amount":"1894153055.501836206983534672"},{"denom":"ASSET8","amount":"2145777383.931844004492317008"},{"denom":"ASSET9","amount":"824045532.000000025316474016"}],"validator_shares":[{"denom":"ASSET0","amount":"189783502.752047609269107544"},{"denom":"ASSET1","amount":"851490999.650541300583274366"},{"denom":"ASSET11","amount":"147676910.000000000000000000"},{"denom":"ASSET12","amount":"1917697172.992679490501498621"},{"denom":"ASSET13","amount":"1020109599.592061033564894187"},{"denom":"ASSET14","amount":"195810796.000000000000000000"},{"denom":"ASSET15","amount":"812333758.593077841530306992"},{"denom":"ASSET16","amount":"163840003.783217006069128539"},{"denom":"ASSET17","amount":"237096089.908151282361894698"},{"denom":"ASSET3","amount":"71629517.433005931972719136"},{"denom":"ASSET5","amount":"793856498.260465159611088833"},{"denom":"ASSET7","amount":"1894232708.200215294991433823"},{"denom":"ASSET8","amount":"2145892264.635191028734430888"},{"denom":"ASSET9","amount":"824086409.212110281447007456"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004741115250856"},{"denom":"ASSET1","index":"0.000038790779474096"},{"denom":"ASSET10","index":"0.000033526543709442"},{"denom":"ASSET11","index":"0.000040298328047202"},{"denom":"ASSET12","index":"0.000038314311285370"},{"denom":"ASSET13","index":"0.000012998828678335"},{"denom":"ASSET14","index":"0.000037197405875143"},{"denom":"ASSET15","index":"0.000030112000039690"},{"denom":"ASSET16","index":"0.000017216651427905"},{"denom":"ASSET17","index":"0.000013916075752291"},{"denom":"ASSET18","index":"0.000005799216997102"},{"denom":"ASSET2","index":"0.000011701668315626"},{"denom":"ASSET3","index":"0.000003368965515041"},{"denom":"ASSET4","index":"0.000031802384839558"},{"denom":"ASSET5","index":"0.000002644802785755"},{"denom":"ASSET6","index":"0.000010800204716581"},{"denom":"ASSET7","index":"0.000016669242053645"},{"denom":"ASSET8","index":"0.000023984974554640"},{"denom":"ASSET9","index":"0.000009620376305923"}],"total_delegator_shares":[{"denom":"ASSET1","amount":"1263456218.572855871781607108"},{"denom":"ASSET11","amount":"470402942.159531108999714391"},{"denom":"ASSET14","amount":"1604881489.030798207811481130"},{"denom":"ASSET15","amount":"302136540.000000000000000000"},{"denom":"ASSET16","amount":"501511195.308764676732035851"},{"denom":"ASSET17","amount":"1743305989.774301470603589018"},{"denom":"ASSET18","amount":"1134353556.849134405363037355"},{"denom":"ASSET2","amount":"406068332.000000000000000000"},{"denom":"ASSET3","amount":"176070332.000000000000000000"},{"denom":"ASSET5","amount":"87705564.921648981610293260"},{"denom":"ASSET6","amount":"818242973.566134806148124208"},{"denom":"ASSET7","amount":"16261789.962515380449248547"},{"denom":"ASSET8","amount":"685064709.768368054642302529"},{"denom":"ASSET9","amount":"1454243964.761991903140325355"}],"validator_shares":[{"denom":"ASSET1","amount":"1263548868.701269715825345958"},{"denom":"ASSET11","amount":"470402942.159531121363999468"},{"denom":"ASSET14","amount":"1605178419.038163202379400544"},{"denom":"ASSET15","amount":"302174368.434119174926440480"},{"denom":"ASSET16","amount":"501529119.514765972796283046"},{"denom":"ASSET17","amount":"1743305989.774301511304693733"},{"denom":"ASSET18","amount":"1134353556.849134607130354998"},{"denom":"ASSET2","amount":"406091850.833079962794914548"},{"denom":"ASSET3","amount":"176070332.000000000000000000"},{"denom":"ASSET5","amount":"87706145.902800431924134029"},{"denom":"ASSET6","amount":"818242973.566134829588245952"},{"denom":"ASSET7","amount":"16261789.962515385786619259"},{"denom":"ASSET8","amount":"685138065.755629932874720422"},{"denom":"ASSET9","amount":"1454243964.761991901704618889"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004889429454812"},{"denom":"ASSET1","index":"0.000039989731936733"},{"denom":"ASSET10","index":"0.000034568578318127"},{"denom":"ASSET11","index":"0.000041543640892993"},{"denom":"ASSET12","index":"0.000039505045921282"},{"denom":"ASSET13","index":"0.000013400367987193"},{"denom":"ASSET14","index":"0.000038343482662039"},{"denom":"ASSET15","index":"0.000031045520521246"},{"denom":"ASSET16","index":"0.000017750078362345"},{"denom":"ASSET17","index":"0.000014348913165267"},{"denom":"ASSET18","index":"0.000005978243263456"},{"denom":"ASSET2","index":"0.000012064952584567"},{"denom":"ASSET3","index":"0.000003472718319064"},{"denom":"ASSET4","index":"0.000032783876502129"},{"denom":"ASSET5","index":"0.000002726555594867"},{"denom":"ASSET6","index":"0.000011131690090434"},{"denom":"ASSET7","index":"0.000017184696487705"},{"denom":"ASSET8","index":"0.000024726779414247"},{"denom":"ASSET9","index":"0.000009918489437787"}],"total_delegator_shares":[{"denom":"ASSET1","amount":"1562826944.657328617693837135"},{"denom":"ASSET10","amount":"1273116949.000000007563713375"},{"denom":"ASSET12","amount":"1151949681.999999998907453798"},{"denom":"ASSET13","amount":"444097079.120820756935139460"},{"denom":"ASSET14","amount":"1236904880.352977000654343020"},{"denom":"ASSET15","amount":"1771292721.590303477714313246"},{"denom":"ASSET16","amount":"1123925090.439561393622929080"},{"denom":"ASSET17","amount":"463975984.537498404414257590"},{"denom":"ASSET18","amount":"487004687.000000000000000000"},{"denom":"ASSET2","amount":"1530620878.596082664969212584"},{"denom":"ASSET4","amount":"1186832266.168374933130833445"},{"denom":"ASSET5","amount":"179027168.224355134250341900"},{"denom":"ASSET6","amount":"426100562.000000000000000000"},{"denom":"ASSET7","amount":"649116905.000000000000000000"},{"denom":"ASSET8","amount":"851643703.000000000000000000"}],"validator_shares":[{"denom":"ASSET1","amount":"1562941547.850524548860698031"},{"denom":"ASSET10","amount":"1273320999.798848715423327684"},{"denom":"ASSET12","amount":"1151949682.000000000000000000"},{"denom":"ASSET13","amount":"444110997.913063716501863937"},{"denom":"ASSET14","amount":"1236904880.352977006918675606"},{"denom":"ASSET15","amount":"1771292721.590303463060668848"},{"denom":"ASSET16","amount":"1123925090.439561400460961490"},{"denom":"ASSET17","amount":"463975984.537502510655969487"},{"denom":"ASSET18","amount":"487018476.295061993896114397"},{"denom":"ASSET2","amount":"1530665203.531470181494261084"},{"denom":"ASSET3","amount":"0.442638206466322892"},{"denom":"ASSET4","amount":"1186927140.515171113759655746"},{"denom":"ASSET5","amount":"179028354.140099797050776492"},{"denom":"ASSET6","amount":"426125177.687840870309132816"},{"denom":"ASSET7","amount":"649171499.323461743204876360"},{"denom":"ASSET8","amount":"851734896.085467861655274757"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004735743633450"},{"denom":"ASSET1","index":"0.000038764276524740"},{"denom":"ASSET10","index":"0.000033586519367190"},{"denom":"ASSET11","index":"0.000040280391200319"},{"denom":"ASSET12","index":"0.000038356885819899"},{"denom":"ASSET13","index":"0.000012993030276872"},{"denom":"ASSET14","index":"0.000037158659277679"},{"denom":"ASSET15","index":"0.000030145729145842"},{"denom":"ASSET16","index":"0.000017199047950885"},{"denom":"ASSET17","index":"0.000013933740432395"},{"denom":"ASSET18","index":"0.000005784180771857"},{"denom":"ASSET2","index":"0.000011703467064493"},{"denom":"ASSET3","index":"0.000003362304742497"},{"denom":"ASSET4","index":"0.000031774057594646"},{"denom":"ASSET5","index":"0.000002639913039554"},{"denom":"ASSET6","index":"0.000010776379546376"},{"denom":"ASSET7","index":"0.000016650635816499"},{"denom":"ASSET8","index":"0.000023971845307145"},{"denom":"ASSET9","index":"0.000009616763721083"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"1000000000.000000000000000000"},{"denom":"ASSET10","amount":"765837281.610344375617609883"},{"denom":"ASSET12","amount":"894769872.999999994255677647"},{"denom":"ASSET13","amount":"938213100.163329752550796801"},{"denom":"ASSET14","amount":"395158050.000000000000000000"},{"denom":"ASSET15","amount":"1425379840.726321362398269871"},{"denom":"ASSET3","amount":"931555149.414275226856070347"},{"denom":"ASSET4","amount":"656575379.000000000000000000"},{"denom":"ASSET5","amount":"507566083.000000000000000000"},{"denom":"ASSET7","amount":"63308578.029999366713507630"},{"denom":"ASSET8","amount":"832528054.999999927059590504"},{"denom":"ASSET9","amount":"2066858292.444623960760609610"}],"validator_shares":[{"denom":"ASSET0","amount":"1000000000.000000000000000000"},{"denom":"ASSET10","amount":"765837281.610344404396427028"},{"denom":"ASSET12","amount":"894769873.036396539767767079"},{"denom":"ASSET13","amount":"938213100.163329762878743645"},{"denom":"ASSET14","amount":"395194603.744856937763022400"},{"denom":"ASSET15","amount":"1425379840.726321225706883584"},{"denom":"ASSET3","amount":"931555149.414276443906004818"},{"denom":"ASSET4","amount":"656627865.068992874552993416"},{"denom":"ASSET5","amount":"507572807.484126590069327519"},{"denom":"ASSET7","amount":"63311240.274772019573849076"},{"denom":"ASSET8","amount":"832617201.202580455912647045"},{"denom":"ASSET9","amount":"2066909555.627711160247278120"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004888700900011"},{"denom":"ASSET1","index":"0.000040037627149470"},{"denom":"ASSET10","index":"0.000034464755587246"},{"denom":"ASSET11","index":"0.000041511937107496"},{"denom":"ASSET12","index":"0.000039458475289926"},{"denom":"ASSET13","index":"0.000013374782972304"},{"denom":"ASSET14","index":"0.000038311177936897"},{"denom":"ASSET15","index":"0.000030963055044200"},{"denom":"ASSET16","index":"0.000017773913841661"},{"denom":"ASSET17","index":"0.000014337937998925"},{"denom":"ASSET18","index":"0.000005979482656036"},{"denom":"ASSET2","index":"0.000012077606357069"},{"denom":"ASSET3","index":"0.000003473452668855"},{"denom":"ASSET4","index":"0.000032809761939294"},{"denom":"ASSET5","index":"0.000002726114739137"},{"denom":"ASSET6","index":"0.000011126485408714"},{"denom":"ASSET7","index":"0.000017183485914772"},{"denom":"ASSET8","index":"0.000024666544388941"},{"denom":"ASSET9","index":"0.000009916680206380"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"1734505371.861425323000000000"},{"denom":"ASSET1","amount":"113645747.000000000000000000"},{"denom":"ASSET10","amount":"1088794665.138916260830327979"},{"denom":"ASSET12","amount":"1013419988.000000020557575024"},{"denom":"ASSET13","amount":"949339268.557162193370631644"},{"denom":"ASSET14","amount":"791288103.811331852039561727"},{"denom":"ASSET15","amount":"969336442.882212793724275351"},{"denom":"ASSET16","amount":"165161549.000000000000000000"},{"denom":"ASSET17","amount":"456503576.321125456843925584"},{"denom":"ASSET18","amount":"887503615.552832458510232790"},{"denom":"ASSET2","amount":"59847945.000000000000000000"},{"denom":"ASSET3","amount":"1445504777.441147368657696064"},{"denom":"ASSET5","amount":"626160127.000000000000000000"},{"denom":"ASSET6","amount":"1693821013.956275436604670516"},{"denom":"ASSET7","amount":"832758639.000000000000000000"},{"denom":"ASSET8","amount":"437271957.836703401203427525"}],"validator_shares":[{"denom":"ASSET0","amount":"1734523420.077554487022994953"},{"denom":"ASSET1","amount":"113670750.000816128525050753"},{"denom":"ASSET10","amount":"1088794665.138916272802966445"},{"denom":"ASSET12","amount":"1013605238.904420602088547556"},{"denom":"ASSET13","amount":"949339268.557162193900477846"},{"denom":"ASSET14","amount":"791288103.811331842303120108"},{"denom":"ASSET15","amount":"969336442.882212796255341864"},{"denom":"ASSET16","amount":"165167451.938270292833304227"},{"denom":"ASSET17","amount":"456503576.321125463044384486"},{"denom":"ASSET18","amount":"887503615.552832307366216792"},{"denom":"ASSET2","amount":"59847945.000000000000000000"},{"denom":"ASSET3","amount":"1445514276.744011871101978824"},{"denom":"ASSET5","amount":"626168422.676121280786776011"},{"denom":"ASSET6","amount":"1693918865.433265174309915752"},{"denom":"ASSET7","amount":"832828678.609433876999182968"},{"denom":"ASSET8","amount":"437271957.836703395047883340"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000005041218570922"},{"denom":"ASSET1","index":"0.000041283005448016"},{"denom":"ASSET10","index":"0.000035661761804363"},{"denom":"ASSET11","index":"0.000042849750447417"},{"denom":"ASSET12","index":"0.000040775814264996"},{"denom":"ASSET13","index":"0.000013813729419195"},{"denom":"ASSET14","index":"0.000039534246723674"},{"denom":"ASSET15","index":"0.000032020821593153"},{"denom":"ASSET16","index":"0.000018320563328873"},{"denom":"ASSET17","index":"0.000014815150431129"},{"denom":"ASSET18","index":"0.000006160605028957"},{"denom":"ASSET2","index":"0.000012460101059942"},{"denom":"ASSET3","index":"0.000003580638711559"},{"denom":"ASSET4","index":"0.000033833347890073"},{"denom":"ASSET5","index":"0.000002810853001211"},{"denom":"ASSET6","index":"0.000011471981118239"},{"denom":"ASSET7","index":"0.000017723228710680"},{"denom":"ASSET8","index":"0.000025479899423051"},{"denom":"ASSET9","index":"0.000010234106890808"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"440809245.000000000000000000"},{"denom":"ASSET1","amount":"542834959.106118213670039805"},{"denom":"ASSET10","amount":"1000000000.000000000000000000"},{"denom":"ASSET12","amount":"1156212716.715422421000000000"},{"denom":"ASSET13","amount":"128250814.166996427859369730"},{"denom":"ASSET14","amount":"91552538.000000000000000000"},{"denom":"ASSET15","amount":"989814994.000000004471524072"},{"denom":"ASSET16","amount":"186742729.000000000000000000"},{"denom":"ASSET17","amount":"322380407.444347052501165010"},{"denom":"ASSET18","amount":"1648040230.279697872952047957"},{"denom":"ASSET2","amount":"519119344.000000000000000000"},{"denom":"ASSET3","amount":"1253449705.241259401000000000"},{"denom":"ASSET4","amount":"264154163.183374786313759088"},{"denom":"ASSET5","amount":"535839279.000000000000000000"},{"denom":"ASSET6","amount":"507522153.000000000000000000"},{"denom":"ASSET7","amount":"468446635.974932055627194092"},{"denom":"ASSET8","amount":"115696919.685847082572606432"}],"validator_shares":[{"denom":"ASSET0","amount":"440823005.510543842244273595"},{"denom":"ASSET1","amount":"542834959.106118224697293074"},{"denom":"ASSET10","amount":"1000160276.555118516000000000"},{"denom":"ASSET12","amount":"1156212716.715422465000000000"},{"denom":"ASSET13","amount":"128250814.166996429016776840"},{"denom":"ASSET14","amount":"91577947.646655249674730860"},{"denom":"ASSET15","amount":"989876956.018504302877783536"},{"denom":"ASSET16","amount":"186742729.000000000000000000"},{"denom":"ASSET17","amount":"322380407.631746321498846908"},{"denom":"ASSET18","amount":"1648040230.279697879278782391"},{"denom":"ASSET2","amount":"519119344.000000000000000000"},{"denom":"ASSET3","amount":"1253457942.431866663866567244"},{"denom":"ASSET4","amount":"264154163.183374778960624532"},{"denom":"ASSET5","amount":"535842828.518455135912598226"},{"denom":"ASSET6","amount":"507536812.486055264238562461"},{"denom":"ASSET7","amount":"468466335.036997615279679509"},{"denom":"ASSET8","amount":"115696919.685847081688350693"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004616748816299"},{"denom":"ASSET1","index":"0.000037755207818878"},{"denom":"ASSET10","index":"0.000032938660396482"},{"denom":"ASSET11","index":"0.000039335391556387"},{"denom":"ASSET12","index":"0.000037512612148171"},{"denom":"ASSET13","index":"0.000012705893060308"},{"denom":"ASSET14","index":"0.000036276532453011"},{"denom":"ASSET15","index":"0.000029538855596635"},{"denom":"ASSET16","index":"0.000016743506271421"},{"denom":"ASSET17","index":"0.000013621299864319"},{"denom":"ASSET18","index":"0.000005632683728718"},{"denom":"ASSET2","index":"0.000011406087221492"},{"denom":"ASSET3","index":"0.000003276282345046"},{"denom":"ASSET4","index":"0.000030959298045710"},{"denom":"ASSET5","index":"0.000002573921522052"},{"denom":"ASSET6","index":"0.000010509111697413"},{"denom":"ASSET7","index":"0.000016237462090306"},{"denom":"ASSET8","index":"0.000023455836171312"},{"denom":"ASSET9","index":"0.000009384135429607"}],"total_delegator_shares":[{"denom":"ASSET1","amount":"1421640429.118683329497916980"},{"denom":"ASSET10","amount":"1425855881.054991977000000000"},{"denom":"ASSET11","amount":"1021191493.238207680664504448"},{"denom":"ASSET12","amount":"417506204.000000000000000000"},{"denom":"ASSET13","amount":"298169883.200225502703447770"},{"denom":"ASSET14","amount":"1044518860.285093838544599832"},{"denom":"ASSET16","amount":"1571658099.849568662178469857"},{"denom":"ASSET18","amount":"1095261204.403716130429483304"},{"denom":"ASSET2","amount":"566295287.000000000000000000"},{"denom":"ASSET3","amount":"277083709.550391753205728349"},{"denom":"ASSET4","amount":"1149073111.999999992540105273"},{"denom":"ASSET5","amount":"188767050.568793283177805812"},{"denom":"ASSET7","amount":"1083656016.817942160486638470"},{"denom":"ASSET8","amount":"1964737185.016397342373195194"}],"validator_shares":[{"denom":"ASSET1","amount":"1421848936.545220827848699706"},{"denom":"ASSET10","amount":"1425970142.127946571672234618"},{"denom":"ASSET11","amount":"1021281442.799120630526146560"},{"denom":"ASSET12","amount":"417544361.860701693618472860"},{"denom":"ASSET13","amount":"298188573.833624173848907990"},{"denom":"ASSET14","amount":"1044615482.575636003448666328"},{"denom":"ASSET16","amount":"1571658099.849568682592148975"},{"denom":"ASSET18","amount":"1095261204.403717088792707456"},{"denom":"ASSET2","amount":"566295287.000000000000000000"},{"denom":"ASSET3","amount":"277083709.550391990208527920"},{"denom":"ASSET4","amount":"1149164967.912608457814915648"},{"denom":"ASSET5","amount":"188768301.003682967252712790"},{"denom":"ASSET7","amount":"1083747158.285138147653679460"},{"denom":"ASSET8","amount":"1964842373.183351136678900511"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004128673807148"},{"denom":"ASSET1","index":"0.000033632560650143"},{"denom":"ASSET10","index":"0.000029081535724795"},{"denom":"ASSET11","index":"0.000035028568986164"},{"denom":"ASSET12","index":"0.000033201559527363"},{"denom":"ASSET13","index":"0.000011316100845703"},{"denom":"ASSET14","index":"0.000032375709917063"},{"denom":"ASSET15","index":"0.000026147141240153"},{"denom":"ASSET16","index":"0.000014941858705588"},{"denom":"ASSET17","index":"0.000012045897017741"},{"denom":"ASSET18","index":"0.000005061341273485"},{"denom":"ASSET2","index":"0.000010128476734526"},{"denom":"ASSET3","index":"0.000002932325287224"},{"denom":"ASSET4","index":"0.000027604756201839"},{"denom":"ASSET5","index":"0.000002304474576996"},{"denom":"ASSET6","index":"0.000009420924093825"},{"denom":"ASSET7","index":"0.000014501846151758"},{"denom":"ASSET8","index":"0.000020910001307184"},{"denom":"ASSET9","index":"0.000008353073446808"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"443571384.000000000000000000"},{"denom":"ASSET1","amount":"1002717100.715382482065617269"},{"denom":"ASSET11","amount":"951974701.000000000000000000"},{"denom":"ASSET12","amount":"1442642691.333630856949867812"},{"denom":"ASSET13","amount":"373467049.000000000000000000"},{"denom":"ASSET14","amount":"1402255830.557840604810449649"},{"denom":"ASSET15","amount":"252675043.236925484717991864"},{"denom":"ASSET16","amount":"117175322.000000000000000000"},{"denom":"ASSET17","amount":"842658369.000000000000000000"},{"denom":"ASSET18","amount":"812224181.000000000000000000"},{"denom":"ASSET2","amount":"19131537.000000000000000000"},{"denom":"ASSET4","amount":"885297284.000000000000000000"},{"denom":"ASSET8","amount":"646313014.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"443571384.000000000000000000"},{"denom":"ASSET1","amount":"1002717100.715382498665171162"},{"denom":"ASSET11","amount":"952226281.359741840604042434"},{"denom":"ASSET12","amount":"1442642691.333630851312307852"},{"denom":"ASSET13","amount":"373490459.599435541211336732"},{"denom":"ASSET14","amount":"1402385544.989456941522463982"},{"denom":"ASSET15","amount":"252675043.236925529479967824"},{"denom":"ASSET16","amount":"117179509.891774784007243206"},{"denom":"ASSET17","amount":"842741094.512377550788546143"},{"denom":"ASSET18","amount":"812258677.821872353970318395"},{"denom":"ASSET2","amount":"19132091.026247287533316662"},{"denom":"ASSET4","amount":"885438829.448493968101279368"},{"denom":"ASSET8","amount":"646382220.497643408591674466"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000003939201132718"},{"denom":"ASSET1","index":"0.000032105787247280"},{"denom":"ASSET10","index":"0.000028804547526948"},{"denom":"ASSET11","index":"0.000033799593882103"},{"denom":"ASSET12","index":"0.000032449700596289"},{"denom":"ASSET13","index":"0.000010978331571892"},{"denom":"ASSET14","index":"0.000031126082637172"},{"denom":"ASSET15","index":"0.000025740142538588"},{"denom":"ASSET16","index":"0.000014208856557445"},{"denom":"ASSET17","index":"0.000011764407155003"},{"denom":"ASSET18","index":"0.000004780051086265"},{"denom":"ASSET2","index":"0.000009727516832171"},{"denom":"ASSET3","index":"0.000002790647417131"},{"denom":"ASSET4","index":"0.000026364763247740"},{"denom":"ASSET5","index":"0.000002196158070158"},{"denom":"ASSET6","index":"0.000008970946330284"},{"denom":"ASSET7","index":"0.000013870661008242"},{"denom":"ASSET8","index":"0.000020307763806499"},{"denom":"ASSET9","index":"0.000008041754758616"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"813367623.000000000000000000"},{"denom":"ASSET1","amount":"811603397.000000000000000000"},{"denom":"ASSET11","amount":"121071906.000000000000000000"},{"denom":"ASSET12","amount":"1055606434.486617570588666064"},{"denom":"ASSET13","amount":"1256620256.676674055359675618"},{"denom":"ASSET15","amount":"666428804.000000000000000000"},{"denom":"ASSET16","amount":"2000035740.388057776000000000"},{"denom":"ASSET17","amount":"657856698.425946169347541672"},{"denom":"ASSET18","amount":"450762011.000000002330493125"},{"denom":"ASSET2","amount":"129953514.862553971530680820"},{"denom":"ASSET3","amount":"775161339.000000000000000000"},{"denom":"ASSET4","amount":"826920607.000000000000000000"},{"denom":"ASSET5","amount":"511422780.145080545474083998"},{"denom":"ASSET8","amount":"748894626.843226830028918583"},{"denom":"ASSET9","amount":"738642073.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"813376086.412619263630582479"},{"denom":"ASSET1","amount":"811603397.000000000000000000"},{"denom":"ASSET11","amount":"121071906.000000000000000000"},{"denom":"ASSET12","amount":"1055606434.486617479488629952"},{"denom":"ASSET13","amount":"1256699027.303294040821894212"},{"denom":"ASSET15","amount":"666470522.173735048951678176"},{"denom":"ASSET16","amount":"2000107222.446596046000000000"},{"denom":"ASSET17","amount":"657878225.446557293152581439"},{"denom":"ASSET18","amount":"450762011.000000000000000000"},{"denom":"ASSET2","amount":"129953514.862553962425445592"},{"denom":"ASSET3","amount":"775161339.000000000000000000"},{"denom":"ASSET4","amount":"826986710.319464605912425128"},{"denom":"ASSET5","amount":"511422780.145080432546021102"},{"denom":"ASSET8","amount":"748934721.189503747901494394"},{"denom":"ASSET9","amount":"738660393.145102653798151124"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004408639086951"},{"denom":"ASSET1","index":"0.000036028768930796"},{"denom":"ASSET10","index":"0.000031790158219615"},{"denom":"ASSET11","index":"0.000037682589230029"},{"denom":"ASSET12","index":"0.000036048426643578"},{"denom":"ASSET13","index":"0.000012197269347349"},{"denom":"ASSET14","index":"0.000034726305858976"},{"denom":"ASSET15","index":"0.000028463702439045"},{"denom":"ASSET16","index":"0.000015962383027793"},{"denom":"ASSET17","index":"0.000013083625448781"},{"denom":"ASSET18","index":"0.000005366451960217"},{"denom":"ASSET2","index":"0.000010899158965125"},{"denom":"ASSET3","index":"0.000003126684527234"},{"denom":"ASSET4","index":"0.000029555870827765"},{"denom":"ASSET5","index":"0.000002458236264620"},{"denom":"ASSET6","index":"0.000010036434145152"},{"denom":"ASSET7","index":"0.000015516634437691"},{"denom":"ASSET8","index":"0.000022532118254512"},{"denom":"ASSET9","index":"0.000008980939918496"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"273065675.120594180168694680"},{"denom":"ASSET1","amount":"2029008732.540040095166263003"},{"denom":"ASSET11","amount":"685087822.000000000000000000"},{"denom":"ASSET12","amount":"128664828.203899725122129866"},{"denom":"ASSET13","amount":"746438187.000000000000000000"},{"denom":"ASSET14","amount":"1853516754.702426007638486176"},{"denom":"ASSET15","amount":"1224658107.396489389450755544"},{"denom":"ASSET17","amount":"1273675291.033141007805508656"},{"denom":"ASSET18","amount":"908488130.000000000000000000"},{"denom":"ASSET2","amount":"256857671.603491313996984314"},{"denom":"ASSET3","amount":"995362690.999999995350763408"},{"denom":"ASSET4","amount":"750109376.000000000000000000"},{"denom":"ASSET6","amount":"708265055.104733506011610634"},{"denom":"ASSET7","amount":"716533712.000000000000000000"},{"denom":"ASSET8","amount":"32522437.000000000000000000"},{"denom":"ASSET9","amount":"424764643.741394706361436071"}],"validator_shares":[{"denom":"ASSET0","amount":"273065675.120594186574523188"},{"denom":"ASSET1","amount":"2029306322.884895862725799593"},{"denom":"ASSET11","amount":"685148166.557493306080550748"},{"denom":"ASSET12","amount":"128676587.489258310802836433"},{"denom":"ASSET13","amount":"746438187.000000000000000000"},{"denom":"ASSET14","amount":"1853688212.625501212839583040"},{"denom":"ASSET15","amount":"1224658107.396489396790795080"},{"denom":"ASSET17","amount":"1273716969.462968656523242626"},{"denom":"ASSET18","amount":"908526715.348635117719048350"},{"denom":"ASSET2","amount":"256865109.892003414244143043"},{"denom":"ASSET3","amount":"995362691.000000000000000000"},{"denom":"ASSET4","amount":"750229306.976819138815085952"},{"denom":"ASSET6","amount":"708285512.934283149973214335"},{"denom":"ASSET7","amount":"716533712.000000000000000000"},{"denom":"ASSET8","amount":"32524178.187350139996271781"},{"denom":"ASSET9","amount":"424764643.741394710127029804"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004819510775519"},{"denom":"ASSET1","index":"0.000039403767247033"},{"denom":"ASSET10","index":"0.000034368618249032"},{"denom":"ASSET11","index":"0.000041056673813813"},{"denom":"ASSET12","index":"0.000039143604600199"},{"denom":"ASSET13","index":"0.000013264025816369"},{"denom":"ASSET14","index":"0.000037867402744776"},{"denom":"ASSET15","index":"0.000030827798147301"},{"denom":"ASSET16","index":"0.000017473948495290"},{"denom":"ASSET17","index":"0.000014210305839082"},{"denom":"ASSET18","index":"0.000005878424124691"},{"denom":"ASSET2","index":"0.000011900504471474"},{"denom":"ASSET3","index":"0.000003421471968689"},{"denom":"ASSET4","index":"0.000032315799104663"},{"denom":"ASSET5","index":"0.000002685067080734"},{"denom":"ASSET6","index":"0.000010972584355185"},{"denom":"ASSET7","index":"0.000016949352231472"},{"denom":"ASSET8","index":"0.000024486444648256"},{"denom":"ASSET9","index":"0.000009794702493328"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"1919844432.374931559739774932"},{"denom":"ASSET1","amount":"16431250.000000000000000000"},{"denom":"ASSET10","amount":"932079148.000000000000000000"},{"denom":"ASSET11","amount":"1251845350.492451330146910957"},{"denom":"ASSET12","amount":"132102909.000000000000000000"},{"denom":"ASSET13","amount":"1448325403.126610002340774315"},{"denom":"ASSET14","amount":"785730323.000000010480776565"},{"denom":"ASSET15","amount":"1529799363.999927439814875253"},{"denom":"ASSET16","amount":"799503220.356852319235039534"},{"denom":"ASSET17","amount":"422166416.000000000000000000"},{"denom":"ASSET18","amount":"460205656.000000000000000000"},{"denom":"ASSET2","amount":"828277575.767950792595457140"},{"denom":"ASSET4","amount":"1804897279.701588077293942099"},{"denom":"ASSET7","amount":"168968757.667047650079209383"},{"denom":"ASSET8","amount":"798039087.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"1919864409.117472682961247130"},{"denom":"ASSET1","amount":"16432454.915057699410337500"},{"denom":"ASSET10","amount":"932228538.434939241432304368"},{"denom":"ASSET11","amount":"1251955616.725917530344364746"},{"denom":"ASSET12","amount":"132127057.115942669265201633"},{"denom":"ASSET13","amount":"1448325403.126610021193966940"},{"denom":"ASSET14","amount":"785803006.286480691200218464"},{"denom":"ASSET15","amount":"1529799363.999927420629034136"},{"denom":"ASSET16","amount":"799503220.356852281055592860"},{"denom":"ASSET17","amount":"422180230.536144917787253408"},{"denom":"ASSET18","amount":"460212171.204524696360843248"},{"denom":"ASSET2","amount":"828277575.767950778261187010"},{"denom":"ASSET4","amount":"1805041561.632006734539597714"},{"denom":"ASSET7","amount":"168975863.121092580959887592"},{"denom":"ASSET8","amount":"798081812.444074245480033231"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004650537309371"},{"denom":"ASSET1","index":"0.000038046039733821"},{"denom":"ASSET10","index":"0.000033000487516520"},{"denom":"ASSET11","index":"0.000039559590813606"},{"denom":"ASSET12","index":"0.000037667771336994"},{"denom":"ASSET13","index":"0.000012765549405852"},{"denom":"ASSET14","index":"0.000036497515986485"},{"denom":"ASSET15","index":"0.000029618849913905"},{"denom":"ASSET16","index":"0.000016880835340591"},{"denom":"ASSET17","index":"0.000013681253335277"},{"denom":"ASSET18","index":"0.000005680518785577"},{"denom":"ASSET2","index":"0.000011485907586480"},{"denom":"ASSET3","index":"0.000003302456772860"},{"denom":"ASSET4","index":"0.000031190694477338"},{"denom":"ASSET5","index":"0.000002593303317039"},{"denom":"ASSET6","index":"0.000010585760994000"},{"denom":"ASSET7","index":"0.000016350598525650"},{"denom":"ASSET8","index":"0.000023557479628432"},{"denom":"ASSET9","index":"0.000009443226065271"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"1000000000.000000000000000000"},{"denom":"ASSET1","amount":"2141940098.962189434177642802"},{"denom":"ASSET10","amount":"3035733477.999999982998139080"},{"denom":"ASSET12","amount":"1448905543.173105405272420073"},{"denom":"ASSET13","amount":"1000000000.000000000000000000"},{"denom":"ASSET14","amount":"876825052.091523642698690249"},{"denom":"ASSET15","amount":"880973940.080005811216582264"},{"denom":"ASSET16","amount":"211251251.000000000000000000"},{"denom":"ASSET17","amount":"1505640954.999999993000000000"},{"denom":"ASSET18","amount":"151969385.000000000000000000"},{"denom":"ASSET2","amount":"522693784.224550641592199345"},{"denom":"ASSET3","amount":"212687982.000000000000000000"},{"denom":"ASSET6","amount":"1213633066.774841608398784820"},{"denom":"ASSET7","amount":"1000000000.000000000000000000"},{"denom":"ASSET8","amount":"1145125812.108104289528588002"},{"denom":"ASSET9","amount":"1234412910.594048385155411118"}],"validator_shares":[{"denom":"ASSET0","amount":"1000010406.141367967962962307"},{"denom":"ASSET1","amount":"2141940098.962189444351780996"},{"denom":"ASSET10","amount":"3035976746.740557118868509774"},{"denom":"ASSET12","amount":"1448905543.173105398618092149"},{"denom":"ASSET13","amount":"1000062684.511252668000000000"},{"denom":"ASSET14","amount":"876825052.091523658378244000"},{"denom":"ASSET15","amount":"880973940.080005817541386048"},{"denom":"ASSET16","amount":"211273902.416657460631003247"},{"denom":"ASSET17","amount":"1505690224.033740751267141790"},{"denom":"ASSET18","amount":"151973687.937417427256231435"},{"denom":"ASSET2","amount":"522693784.224550651544197170"},{"denom":"ASSET3","amount":"212690777.413470454379923902"},{"denom":"ASSET4","amount":"0.244078432362859170"},{"denom":"ASSET6","amount":"1213668121.869310740310831348"},{"denom":"ASSET7","amount":"1000042051.880732499000000000"},{"denom":"ASSET8","amount":"1145125812.108104301863435962"},{"denom":"ASSET9","amount":"1234443527.078629096568717555"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004891719865072"},{"denom":"ASSET1","index":"0.000040072863779743"},{"denom":"ASSET10","index":"0.000034599304409835"},{"denom":"ASSET11","index":"0.000041579421937236"},{"denom":"ASSET12","index":"0.000039570241536796"},{"denom":"ASSET13","index":"0.000013401388142896"},{"denom":"ASSET14","index":"0.000038360085576662"},{"denom":"ASSET15","index":"0.000031066535588374"},{"denom":"ASSET16","index":"0.000017782615538969"},{"denom":"ASSET17","index":"0.000014378613126430"},{"denom":"ASSET18","index":"0.000005978292997826"},{"denom":"ASSET2","index":"0.000012095614431682"},{"denom":"ASSET3","index":"0.000003474461371717"},{"denom":"ASSET4","index":"0.000032837900054333"},{"denom":"ASSET5","index":"0.000002727819260398"},{"denom":"ASSET6","index":"0.000011131008136035"},{"denom":"ASSET7","index":"0.000017198777658106"},{"denom":"ASSET8","index":"0.000024717029214278"},{"denom":"ASSET9","index":"0.000009931445754815"}],"total_delegator_shares":[{"denom":"ASSET1","amount":"336718924.548167390033555057"},{"denom":"ASSET10","amount":"329009106.000000000000000000"},{"denom":"ASSET11","amount":"573927128.019127393301188729"},{"denom":"ASSET12","amount":"955220505.246861401522341988"},{"denom":"ASSET13","amount":"16271167.244089896434823904"},{"denom":"ASSET15","amount":"2639933343.380335946568750766"},{"denom":"ASSET17","amount":"765940653.000000000000000000"},{"denom":"ASSET18","amount":"1963289856.300063100242782314"},{"denom":"ASSET2","amount":"660743046.361864886312222465"},{"denom":"ASSET3","amount":"12800858.000000000000000000"},{"denom":"ASSET4","amount":"735434569.765332650464207683"},{"denom":"ASSET6","amount":"643065326.661307208796677280"},{"denom":"ASSET7","amount":"1396107968.857454094201216540"},{"denom":"ASSET8","amount":"2819131294.372340352229430789"},{"denom":"ASSET9","amount":"473418440.000000000000000000"}],"validator_shares":[{"denom":"ASSET1","amount":"336718924.548167390548632449"},{"denom":"ASSET10","amount":"329035471.170535713155535498"},{"denom":"ASSET11","amount":"573927128.019127397557951760"},{"denom":"ASSET12","amount":"955220505.246861408974711759"},{"denom":"ASSET13","amount":"16271167.244089913154710791"},{"denom":"ASSET15","amount":"2639933343.380335972300635302"},{"denom":"ASSET17","amount":"765990781.505051683802473017"},{"denom":"ASSET18","amount":"1963289856.300063104095832642"},{"denom":"ASSET2","amount":"660743046.361864887522948698"},{"denom":"ASSET3","amount":"12800858.000000000000000000"},{"denom":"ASSET4","amount":"735434569.765332769426419090"},{"denom":"ASSET6","amount":"643065326.661307230415215072"},{"denom":"ASSET7","amount":"1396107968.857454094765137392"},{"denom":"ASSET8","amount":"2819131294.372340347567395266"},{"denom":"ASSET9","amount":"473453666.688213933801347400"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004805025087286"},{"denom":"ASSET1","index":"0.000039311495219424"},{"denom":"ASSET10","index":"0.000034296630877274"},{"denom":"ASSET11","index":"0.000040948942659670"},{"denom":"ASSET12","index":"0.000039062814980419"},{"denom":"ASSET13","index":"0.000013225928399705"},{"denom":"ASSET14","index":"0.000037759998178713"},{"denom":"ASSET15","index":"0.000030754756135989"},{"denom":"ASSET16","index":"0.000017432904086886"},{"denom":"ASSET17","index":"0.000014185641332252"},{"denom":"ASSET18","index":"0.000005861258453968"},{"denom":"ASSET2","index":"0.000011877932069586"},{"denom":"ASSET3","index":"0.000003410642838006"},{"denom":"ASSET4","index":"0.000032232767944681"},{"denom":"ASSET5","index":"0.000002679202763892"},{"denom":"ASSET6","index":"0.000010936223638283"},{"denom":"ASSET7","index":"0.000016902039894300"},{"denom":"ASSET8","index":"0.000024412756017582"},{"denom":"ASSET9","index":"0.000009770069208362"}],"total_delegator_shares":[{"denom":"ASSET1","amount":"363786501.000000000000000000"},{"denom":"ASSET10","amount":"177434187.000000010784174648"},{"denom":"ASSET11","amount":"624030460.271014752587192286"},{"denom":"ASSET12","amount":"153656706.000000000000000000"},{"denom":"ASSET13","amount":"782615450.052360319606626035"},{"denom":"ASSET14","amount":"2038332315.674317634513718981"},{"denom":"ASSET15","amount":"593852153.000000000000000000"},{"denom":"ASSET16","amount":"404311124.622809236108337894"},{"denom":"ASSET17","amount":"924666330.000000000000000000"},{"denom":"ASSET18","amount":"1321868293.230134852652551398"},{"denom":"ASSET2","amount":"123322922.000000000000000000"},{"denom":"ASSET4","amount":"155248876.841809352291157956"},{"denom":"ASSET7","amount":"1004379843.423525090774975605"},{"denom":"ASSET8","amount":"870090165.000000000000000000"}],"validator_shares":[{"denom":"ASSET1","amount":"363839856.395343970780659573"},{"denom":"ASSET10","amount":"177476846.517969256695272913"},{"denom":"ASSET11","amount":"624085426.715867763804971008"},{"denom":"ASSET12","amount":"153684794.101768119611494122"},{"denom":"ASSET13","amount":"782639978.612368375325530611"},{"denom":"ASSET14","amount":"2038520869.796904319564978928"},{"denom":"ASSET15","amount":"593889327.904720635201587832"},{"denom":"ASSET16","amount":"404311124.992134924422451842"},{"denom":"ASSET17","amount":"924726846.621768249350192370"},{"denom":"ASSET18","amount":"1321868293.230134815377277444"},{"denom":"ASSET2","amount":"123326493.283147830369446172"},{"denom":"ASSET3","amount":"0.725385381337239610"},{"denom":"ASSET4","amount":"155248876.841808695844676226"},{"denom":"ASSET7","amount":"1004379843.423525489321025230"},{"denom":"ASSET8","amount":"870229921.208064598724710545"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004571301207273"},{"denom":"ASSET1","index":"0.000037398660191278"},{"denom":"ASSET10","index":"0.000032687755580364"},{"denom":"ASSET11","index":"0.000038977675941701"},{"denom":"ASSET12","index":"0.000037204809376495"},{"denom":"ASSET13","index":"0.000012591938399451"},{"denom":"ASSET14","index":"0.000035936287844387"},{"denom":"ASSET15","index":"0.000029303202324073"},{"denom":"ASSET16","index":"0.000016581018522800"},{"denom":"ASSET17","index":"0.000013510277910648"},{"denom":"ASSET18","index":"0.000005573586522557"},{"denom":"ASSET2","index":"0.000011303144015187"},{"denom":"ASSET3","index":"0.000003243979553262"},{"denom":"ASSET4","index":"0.000030664188630460"},{"denom":"ASSET5","index":"0.000002548911246263"},{"denom":"ASSET6","index":"0.000010403330372967"},{"denom":"ASSET7","index":"0.000016081578326893"},{"denom":"ASSET8","index":"0.000023245084416019"},{"denom":"ASSET9","index":"0.000009298675918452"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"1000000000.000000000000000000"},{"denom":"ASSET1","amount":"408219077.084077984714201225"},{"denom":"ASSET10","amount":"759489056.225932186156057796"},{"denom":"ASSET11","amount":"875929994.000000000000000000"},{"denom":"ASSET12","amount":"229708402.000000000000000000"},{"denom":"ASSET13","amount":"331287792.776375431769996265"},{"denom":"ASSET16","amount":"1622240859.700589589129408040"},{"denom":"ASSET18","amount":"1508194376.000000032000000000"},{"denom":"ASSET2","amount":"447990403.000000000000000000"},{"denom":"ASSET3","amount":"19621236.000000000000000000"},{"denom":"ASSET4","amount":"93438333.000000000000000000"},{"denom":"ASSET5","amount":"544233951.625870856652441340"},{"denom":"ASSET6","amount":"873142926.369078342442046084"},{"denom":"ASSET7","amount":"497069932.999999714246885718"},{"denom":"ASSET8","amount":"966977484.754504131610311951"},{"denom":"ASSET9","amount":"1230182750.577722003812774730"}],"validator_shares":[{"denom":"ASSET0","amount":"1000010405.396502073000000000"},{"denom":"ASSET1","amount":"408249012.074588101738726168"},{"denom":"ASSET10","amount":"759610784.515514302284690906"},{"denom":"ASSET11","amount":"876084309.784034867591325224"},{"denom":"ASSET12","amount":"229729396.134030939190050930"},{"denom":"ASSET13","amount":"331287792.776375525396381144"},{"denom":"ASSET16","amount":"1622240859.700589554466225348"},{"denom":"ASSET18","amount":"1508237079.772297583175962456"},{"denom":"ASSET2","amount":"448016349.892873148905684117"},{"denom":"ASSET3","amount":"19621622.831569068275961168"},{"denom":"ASSET4","amount":"93445802.379677146235344632"},{"denom":"ASSET5","amount":"544241161.903884794541126845"},{"denom":"ASSET6","amount":"873142927.009875000074381152"},{"denom":"ASSET7","amount":"497111739.331796749343496296"},{"denom":"ASSET8","amount":"966977484.754504115551265811"},{"denom":"ASSET9","amount":"1230243774.440211412859052138"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004552871680963"},{"denom":"ASSET1","index":"0.000037344847719320"},{"denom":"ASSET10","index":"0.000032201926145827"},{"denom":"ASSET11","index":"0.000038704703073052"},{"denom":"ASSET12","index":"0.000036856280286787"},{"denom":"ASSET13","index":"0.000012466588224704"},{"denom":"ASSET14","index":"0.000035695703416346"},{"denom":"ASSET15","index":"0.000028909589243734"},{"denom":"ASSET16","index":"0.000016569690881810"},{"denom":"ASSET17","index":"0.000013397621621605"},{"denom":"ASSET18","index":"0.000005561325967019"},{"denom":"ASSET2","index":"0.000011276538650114"},{"denom":"ASSET3","index":"0.000003234120737490"},{"denom":"ASSET4","index":"0.000030591329863206"},{"denom":"ASSET5","index":"0.000002538263641792"},{"denom":"ASSET6","index":"0.000010353601273959"},{"denom":"ASSET7","index":"0.000016010407720744"},{"denom":"ASSET8","index":"0.000022981553849239"},{"denom":"ASSET9","index":"0.000009249156808408"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"1689576220.879376244389468125"},{"denom":"ASSET1","amount":"768069138.008406628567324217"},{"denom":"ASSET10","amount":"1367477768.999999987872315200"},{"denom":"ASSET11","amount":"571280143.000000000000000000"},{"denom":"ASSET13","amount":"75772456.000000000000000000"},{"denom":"ASSET14","amount":"132105020.000000000000000000"},{"denom":"ASSET15","amount":"1010657848.999999999563028191"},{"denom":"ASSET16","amount":"53982569.000000000000000000"},{"denom":"ASSET17","amount":"216412248.000000000000000000"},{"denom":"ASSET18","amount":"1183878792.287233912306684609"},{"denom":"ASSET2","amount":"484587343.210983573090038839"},{"denom":"ASSET3","amount":"1330601651.172423014955987859"},{"denom":"ASSET4","amount":"1456271677.130466703868286545"},{"denom":"ASSET6","amount":"1201502029.453095807446253479"},{"denom":"ASSET7","amount":"496049985.005980693914909468"},{"denom":"ASSET8","amount":"1000053538.034377310000000000"},{"denom":"ASSET9","amount":"394327814.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"1689576220.879376249491709850"},{"denom":"ASSET1","amount":"768069138.008406634593419315"},{"denom":"ASSET10","amount":"1367587351.938362446298843877"},{"denom":"ASSET11","amount":"571330463.041207866659816062"},{"denom":"ASSET13","amount":"75774830.843524785525046824"},{"denom":"ASSET14","amount":"132105020.000000000000000000"},{"denom":"ASSET15","amount":"1010784386.504725259449952888"},{"denom":"ASSET16","amount":"53984498.358100648617215687"},{"denom":"ASSET17","amount":"216426411.528759863654708472"},{"denom":"ASSET18","amount":"1183878792.287233945308933273"},{"denom":"ASSET2","amount":"484601376.276243422194338919"},{"denom":"ASSET3","amount":"1330601651.172423008295968657"},{"denom":"ASSET4","amount":"1456271677.130466726841757970"},{"denom":"ASSET6","amount":"1201502029.453095747559802516"},{"denom":"ASSET7","amount":"496091705.554507486433110472"},{"denom":"ASSET8","amount":"1000053538.611818045677339466"},{"denom":"ASSET9","amount":"394347374.838652616600708912"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004944013332327"},{"denom":"ASSET1","index":"0.000040514572296257"},{"denom":"ASSET10","index":"0.000034983500216774"},{"denom":"ASSET11","index":"0.000042030409881091"},{"denom":"ASSET12","index":"0.000040011826209544"},{"denom":"ASSET13","index":"0.000013544638275826"},{"denom":"ASSET14","index":"0.000038770981448347"},{"denom":"ASSET15","index":"0.000031407830483843"},{"denom":"ASSET16","index":"0.000017976642481408"},{"denom":"ASSET17","index":"0.000014540265092749"},{"denom":"ASSET18","index":"0.000006039382273098"},{"denom":"ASSET2","index":"0.000012231113154221"},{"denom":"ASSET3","index":"0.000003510948218078"},{"denom":"ASSET4","index":"0.000033197360832209"},{"denom":"ASSET5","index":"0.000002756014481548"},{"denom":"ASSET6","index":"0.000011247123077836"},{"denom":"ASSET7","index":"0.000017382880386713"},{"denom":"ASSET8","index":"0.000024978933020084"},{"denom":"ASSET9","index":"0.000010039663368988"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"335367660.225234429347519232"},{"denom":"ASSET1","amount":"247585928.000000000000000000"},{"denom":"ASSET10","amount":"1346979156.182069403612767410"},{"denom":"ASSET11","amount":"12516095.658238533313771254"},{"denom":"ASSET12","amount":"649325086.000000007987655901"},{"denom":"ASSET13","amount":"681589615.000000000000000000"},{"denom":"ASSET14","amount":"502612494.000000000000000000"},{"denom":"ASSET15","amount":"1361808128.594424179497257110"},{"denom":"ASSET16","amount":"739699655.000000000000000000"},{"denom":"ASSET17","amount":"1720179798.677460868537165376"},{"denom":"ASSET18","amount":"1693864091.005013983499327536"},{"denom":"ASSET3","amount":"1286141416.110252414703646869"},{"denom":"ASSET4","amount":"615753474.000000000000000000"},{"denom":"ASSET5","amount":"1469194314.004387822218933464"},{"denom":"ASSET6","amount":"101827106.757546985825329268"},{"denom":"ASSET7","amount":"1195777550.510099122863370780"},{"denom":"ASSET8","amount":"1597190006.333532461983485296"},{"denom":"ASSET9","amount":"401624372.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"335367660.225234907251132739"},{"denom":"ASSET1","amount":"247640398.944344674317130072"},{"denom":"ASSET10","amount":"1346979156.684478234297307516"},{"denom":"ASSET11","amount":"12516095.658238544010448798"},{"denom":"ASSET12","amount":"649443781.171665081892304182"},{"denom":"ASSET13","amount":"681632340.111891169149842820"},{"denom":"ASSET14","amount":"502658987.722872620619206592"},{"denom":"ASSET15","amount":"1361893377.232780691986771576"},{"denom":"ASSET16","amount":"739752530.252172707308055065"},{"denom":"ASSET17","amount":"1720179798.677460820031241508"},{"denom":"ASSET18","amount":"1693864091.005013987662453144"},{"denom":"ASSET3","amount":"1286149868.138242134065656919"},{"denom":"ASSET4","amount":"615851923.530134386955159748"},{"denom":"ASSET5","amount":"1469194314.004418562454353479"},{"denom":"ASSET6","amount":"101827106.757546989260488728"},{"denom":"ASSET7","amount":"1195878122.018679446061703500"},{"denom":"ASSET8","amount":"1597190006.333532427167543536"},{"denom":"ASSET9","amount":"401634333.274940538361691536"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004669971272186"},{"denom":"ASSET1","index":"0.000038231704002672"},{"denom":"ASSET10","index":"0.000033091250938378"},{"denom":"ASSET11","index":"0.000039713430623018"},{"denom":"ASSET12","index":"0.000037806000956516"},{"denom":"ASSET13","index":"0.000012808127444565"},{"denom":"ASSET14","index":"0.000036638483282357"},{"denom":"ASSET15","index":"0.000029705512900617"},{"denom":"ASSET16","index":"0.000016963968278157"},{"denom":"ASSET17","index":"0.000013734289189195"},{"denom":"ASSET18","index":"0.000005705789092476"},{"denom":"ASSET2","index":"0.000011540719323858"},{"denom":"ASSET3","index":"0.000003316647299566"},{"denom":"ASSET4","index":"0.000031336158437819"},{"denom":"ASSET5","index":"0.000002604041216482"},{"denom":"ASSET6","index":"0.000010629036009854"},{"denom":"ASSET7","index":"0.000016420030654063"},{"denom":"ASSET8","index":"0.000023629608551740"},{"denom":"ASSET9","index":"0.000009482511489526"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"1585852992.018440602789496190"},{"denom":"ASSET10","amount":"1803148383.996125882715350345"},{"denom":"ASSET11","amount":"40658171.000000000000000000"},{"denom":"ASSET12","amount":"520771719.900450902401713681"},{"denom":"ASSET13","amount":"530189616.000000000000000000"},{"denom":"ASSET14","amount":"1303569299.690443724838585530"},{"denom":"ASSET15","amount":"1189287594.883581096146541683"},{"denom":"ASSET16","amount":"170494797.239071170078968526"},{"denom":"ASSET17","amount":"419740854.000000000000000000"},{"denom":"ASSET2","amount":"543409619.000000000000000000"},{"denom":"ASSET3","amount":"558200981.999999999507234070"},{"denom":"ASSET4","amount":"130048154.000000000000000000"},{"denom":"ASSET5","amount":"435912165.429028226238274382"},{"denom":"ASSET6","amount":"81225813.999999999094428826"},{"denom":"ASSET7","amount":"1154146623.760062558617310976"},{"denom":"ASSET8","amount":"909145065.823410062130572532"},{"denom":"ASSET9","amount":"583074886.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"1585852992.018440611434897910"},{"denom":"ASSET10","amount":"1803148383.996126195418200088"},{"denom":"ASSET11","amount":"40658171.000000000000000000"},{"denom":"ASSET12","amount":"520771719.900450904646809057"},{"denom":"ASSET13","amount":"530189616.000000000000000000"},{"denom":"ASSET14","amount":"1303569299.690443648390776708"},{"denom":"ASSET15","amount":"1189362043.806266449730285974"},{"denom":"ASSET16","amount":"170494797.239071180667115029"},{"denom":"ASSET17","amount":"419754589.164568565917809852"},{"denom":"ASSET2","amount":"543409619.000000000000000000"},{"denom":"ASSET3","amount":"558200982.000000000000000000"},{"denom":"ASSET4","amount":"130068946.703893286350245108"},{"denom":"ASSET5","amount":"435912165.429028185363006518"},{"denom":"ASSET6","amount":"81225814.000000000000000000"},{"denom":"ASSET7","amount":"1154195157.796221937940472375"},{"denom":"ASSET8","amount":"909145065.823410036214229740"},{"denom":"ASSET9","amount":"583118272.136827490274422310"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004576082898752"},{"denom":"ASSET1","index":"0.000037455245583402"},{"denom":"ASSET10","index":"0.000032531159064784"},{"denom":"ASSET11","index":"0.000038953742960516"},{"denom":"ASSET12","index":"0.000037116142596111"},{"denom":"ASSET13","index":"0.000012571242335954"},{"denom":"ASSET14","index":"0.000035930774352627"},{"denom":"ASSET15","index":"0.000029189460904925"},{"denom":"ASSET16","index":"0.000016614931382956"},{"denom":"ASSET17","index":"0.000013480763933753"},{"denom":"ASSET18","index":"0.000005587813700340"},{"denom":"ASSET2","index":"0.000011310430868930"},{"denom":"ASSET3","index":"0.000003249320717752"},{"denom":"ASSET4","index":"0.000030704323670264"},{"denom":"ASSET5","index":"0.000002552032680008"},{"denom":"ASSET6","index":"0.000010415855822952"},{"denom":"ASSET7","index":"0.000016094435373177"},{"denom":"ASSET8","index":"0.000023197133271532"},{"denom":"ASSET9","index":"0.000009298050576415"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"438451061.000000000000000000"},{"denom":"ASSET1","amount":"2000146666.781745030000000000"},{"denom":"ASSET10","amount":"764473785.439210741759173612"},{"denom":"ASSET11","amount":"1301119994.351126967745105866"},{"denom":"ASSET12","amount":"127734131.000000013282719880"},{"denom":"ASSET13","amount":"1000000000.000000000000000000"},{"denom":"ASSET15","amount":"473984860.000000000000000000"},{"denom":"ASSET18","amount":"2226134980.996945402458944229"},{"denom":"ASSET2","amount":"217638937.000000000000000000"},{"denom":"ASSET3","amount":"597345039.000000000000000000"},{"denom":"ASSET5","amount":"1201739592.000000017248486273"},{"denom":"ASSET7","amount":"1153853591.634967085675934701"},{"denom":"ASSET8","amount":"184077393.000000000000000000"},{"denom":"ASSET9","amount":"1000000000.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"438460185.553736599622764102"},{"denom":"ASSET1","amount":"2000146666.781745073000000000"},{"denom":"ASSET10","amount":"764473785.439210741349946594"},{"denom":"ASSET11","amount":"1301119994.351126965123642312"},{"denom":"ASSET12","amount":"127745805.224552480864652915"},{"denom":"ASSET13","amount":"1000031341.778400129000000000"},{"denom":"ASSET15","amount":"474044204.378041783197836320"},{"denom":"ASSET18","amount":"2226134980.996945398229493239"},{"denom":"ASSET2","amount":"217657845.223413812094773233"},{"denom":"ASSET3","amount":"597352890.061225122239973879"},{"denom":"ASSET5","amount":"1201755513.234852681884705256"},{"denom":"ASSET7","amount":"1153853591.634967074559309220"},{"denom":"ASSET8","amount":"184077393.000000000000000000"},{"denom":"ASSET9","amount":"1000000000.000000000000000000"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000005139957204064"},{"denom":"ASSET1","index":"0.000042128828951282"},{"denom":"ASSET10","index":"0.000036309222023019"},{"denom":"ASSET11","index":"0.000043678274178117"},{"denom":"ASSET12","index":"0.000041557601864682"},{"denom":"ASSET13","index":"0.000014071915592768"},{"denom":"ASSET14","index":"0.000040296399830453"},{"denom":"ASSET15","index":"0.000032607042636394"},{"denom":"ASSET16","index":"0.000018696081265382"},{"denom":"ASSET17","index":"0.000015103521436540"},{"denom":"ASSET18","index":"0.000006282400994781"},{"denom":"ASSET2","index":"0.000012714876215612"},{"denom":"ASSET3","index":"0.000003651406974956"},{"denom":"ASSET4","index":"0.000034517744853571"},{"denom":"ASSET5","index":"0.000002866339638232"},{"denom":"ASSET6","index":"0.000011694803417929"},{"denom":"ASSET7","index":"0.000018072491015786"},{"denom":"ASSET8","index":"0.000025947765120877"},{"denom":"ASSET9","index":"0.000010435616512372"}],"total_delegator_shares":[{"denom":"ASSET1","amount":"596241648.000000000000000000"},{"denom":"ASSET11","amount":"883335316.570968139467712622"},{"denom":"ASSET13","amount":"608093428.000000000000000000"},{"denom":"ASSET14","amount":"1195695751.987513380741129992"},{"denom":"ASSET15","amount":"1614596411.258241958780492508"},{"denom":"ASSET16","amount":"180793387.000000000000000000"},{"denom":"ASSET17","amount":"529668677.423327839948512739"},{"denom":"ASSET4","amount":"979864358.718715259902958864"},{"denom":"ASSET5","amount":"561171541.718557380333424163"},{"denom":"ASSET7","amount":"345618470.000000000000000000"},{"denom":"ASSET8","amount":"1352622204.822890065847351698"}],"validator_shares":[{"denom":"ASSET1","amount":"596329096.843654538641400304"},{"denom":"ASSET11","amount":"883335316.570968755461497722"},{"denom":"ASSET13","amount":"608131546.039330139458265904"},{"denom":"ASSET14","amount":"1195695751.987513373225020768"},{"denom":"ASSET15","amount":"1614697484.340906686174862656"},{"denom":"ASSET16","amount":"180812772.572007100333328839"},{"denom":"ASSET17","amount":"529703342.640362526220655883"},{"denom":"ASSET4","amount":"979942688.229659413368376492"},{"denom":"ASSET5","amount":"561171541.718557360700502674"},{"denom":"ASSET7","amount":"345618470.000000000000000000"},{"denom":"ASSET8","amount":"1352622204.822890110872822416"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004555079465444"},{"denom":"ASSET1","index":"0.000037273549067376"},{"denom":"ASSET10","index":"0.000032327684804267"},{"denom":"ASSET11","index":"0.000038750612688183"},{"denom":"ASSET12","index":"0.000036903207760820"},{"denom":"ASSET13","index":"0.000012503456656218"},{"denom":"ASSET14","index":"0.000035748189968481"},{"denom":"ASSET15","index":"0.000029013847228438"},{"denom":"ASSET16","index":"0.000016537106119195"},{"denom":"ASSET17","index":"0.000013404148016668"},{"denom":"ASSET18","index":"0.000005562876043231"},{"denom":"ASSET2","index":"0.000011253659411821"},{"denom":"ASSET3","index":"0.000003234713826536"},{"denom":"ASSET4","index":"0.000030555670866593"},{"denom":"ASSET5","index":"0.000002539995571455"},{"denom":"ASSET6","index":"0.000010366930709039"},{"denom":"ASSET7","index":"0.000016015414742941"},{"denom":"ASSET8","index":"0.000023070708179395"},{"denom":"ASSET9","index":"0.000009250489531619"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"1000000000.000000000000000000"},{"denom":"ASSET1","amount":"1488364876.405798367830010157"},{"denom":"ASSET10","amount":"442236422.000000000000000000"},{"denom":"ASSET11","amount":"2050683830.939582030859591710"},{"denom":"ASSET12","amount":"1675592026.781403809605304376"},{"denom":"ASSET13","amount":"330950648.999999999049370885"},{"denom":"ASSET14","amount":"149830585.000000000000000000"},{"denom":"ASSET16","amount":"335111939.000000000000000000"},{"denom":"ASSET17","amount":"894289051.937715001475231919"},{"denom":"ASSET18","amount":"1084965720.000000000764691480"},{"denom":"ASSET2","amount":"447137824.000000000000000000"},{"denom":"ASSET3","amount":"1512467324.869454542685713063"},{"denom":"ASSET5","amount":"79761651.000000000000000000"},{"denom":"ASSET6","amount":"771881166.548918683208986912"},{"denom":"ASSET7","amount":"909144818.631157233958018710"},{"denom":"ASSET9","amount":"1015345889.889770971121830841"}],"validator_shares":[{"denom":"ASSET0","amount":"1000010405.396502073000000000"},{"denom":"ASSET1","amount":"1488364876.405798217315645306"},{"denom":"ASSET10","amount":"442236422.000000000000000000"},{"denom":"ASSET11","amount":"2050864461.224288424393778632"},{"denom":"ASSET12","amount":"1675592026.781403863922599122"},{"denom":"ASSET13","amount":"330950649.000000000000000000"},{"denom":"ASSET14","amount":"149830585.000000000000000000"},{"denom":"ASSET16","amount":"335135893.490394766925883997"},{"denom":"ASSET17","amount":"894289051.937715000523864518"},{"denom":"ASSET18","amount":"1084981080.031924693348235760"},{"denom":"ASSET2","amount":"447150772.572331174100101824"},{"denom":"ASSET3","amount":"1512467324.869454537477072716"},{"denom":"ASSET5","amount":"79762707.721428055146328143"},{"denom":"ASSET6","amount":"771881166.548918681828175664"},{"denom":"ASSET7","amount":"909144818.631157230262353203"},{"denom":"ASSET9","amount":"1015371072.971959365858900920"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000005033700679369"},{"denom":"ASSET1","index":"0.000041280717822700"},{"denom":"ASSET10","index":"0.000035484557863540"},{"denom":"ASSET11","index":"0.000042749382986800"},{"denom":"ASSET12","index":"0.000040658499244399"},{"denom":"ASSET13","index":"0.000013763551421232"},{"denom":"ASSET14","index":"0.000039440630266686"},{"denom":"ASSET15","index":"0.000031874481758322"},{"denom":"ASSET16","index":"0.000018321915952545"},{"denom":"ASSET17","index":"0.000014780229724773"},{"denom":"ASSET18","index":"0.000006154144789227"},{"denom":"ASSET2","index":"0.000012457673673982"},{"denom":"ASSET3","index":"0.000003576618316768"},{"denom":"ASSET4","index":"0.000033815746124859"},{"denom":"ASSET5","index":"0.000002806622008559"},{"denom":"ASSET6","index":"0.000011449929287096"},{"denom":"ASSET7","index":"0.000017696914726492"},{"denom":"ASSET8","index":"0.000025372002576679"},{"denom":"ASSET9","index":"0.000010217363519491"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"767412956.000000246498226520"},{"denom":"ASSET1","amount":"465039140.000000000000000000"},{"denom":"ASSET10","amount":"559215434.000000000000000000"},{"denom":"ASSET11","amount":"183727685.000000000000000000"},{"denom":"ASSET12","amount":"23050665.000000000000000000"},{"denom":"ASSET13","amount":"669665407.000000000000000000"},{"denom":"ASSET14","amount":"135514873.249644646901519938"},{"denom":"ASSET15","amount":"401100211.000000009582396624"},{"denom":"ASSET16","amount":"304587295.999999996223818520"},{"denom":"ASSET17","amount":"1157766822.736086128764068592"},{"denom":"ASSET18","amount":"2032182706.019805821637627292"},{"denom":"ASSET2","amount":"963762072.000000008750588000"},{"denom":"ASSET3","amount":"453737273.000000000000000000"},{"denom":"ASSET5","amount":"1066280128.362900582295461573"},{"denom":"ASSET6","amount":"381546737.000000000000000000"},{"denom":"ASSET7","amount":"1282852539.463016348507023728"},{"denom":"ASSET8","amount":"2141133970.115908396296246819"},{"denom":"ASSET9","amount":"523478878.800976563159402444"}],"validator_shares":[{"denom":"ASSET0","amount":"767428926.541248581359673992"},{"denom":"ASSET1","amount":"465107345.794049296447157220"},{"denom":"ASSET10","amount":"559305063.123330625846375944"},{"denom":"ASSET11","amount":"183743868.276792496435845290"},{"denom":"ASSET12","amount":"23052771.708967973574189225"},{"denom":"ASSET13","amount":"669665407.000000000000000000"},{"denom":"ASSET14","amount":"135514873.249644640339619776"},{"denom":"ASSET15","amount":"401150429.993396166720321832"},{"denom":"ASSET16","amount":"304598182.068925179499402208"},{"denom":"ASSET17","amount":"1157804708.297357473575707827"},{"denom":"ASSET18","amount":"2032211475.952962118411745189"},{"denom":"ASSET2","amount":"963817891.569057572026842408"},{"denom":"ASSET3","amount":"453740254.787292859787267526"},{"denom":"ASSET5","amount":"1066280128.362900580923924914"},{"denom":"ASSET6","amount":"381546737.000000000000000000"},{"denom":"ASSET7","amount":"1282852539.463016340870647424"},{"denom":"ASSET8","amount":"2141133970.115908341740370452"},{"denom":"ASSET9","amount":"523478878.800976518494393904"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004910041973405"},{"denom":"ASSET1","index":"0.000040228080858216"},{"denom":"ASSET10","index":"0.000034450855857558"},{"denom":"ASSET11","index":"0.000041648044604994"},{"denom":"ASSET12","index":"0.000039516330908444"},{"denom":"ASSET13","index":"0.000013407340157723"},{"denom":"ASSET14","index":"0.000038456388304312"},{"denom":"ASSET15","index":"0.000030975283852804"},{"denom":"ASSET16","index":"0.000017865867984722"},{"denom":"ASSET17","index":"0.000014361867516195"},{"denom":"ASSET18","index":"0.000006016535679771"},{"denom":"ASSET2","index":"0.000012123633162367"},{"denom":"ASSET3","index":"0.000003489488983902"},{"denom":"ASSET4","index":"0.000032962561426957"},{"denom":"ASSET5","index":"0.000002738000911337"},{"denom":"ASSET6","index":"0.000011181500268340"},{"denom":"ASSET7","index":"0.000017261198616714"},{"denom":"ASSET8","index":"0.000024724198292368"},{"denom":"ASSET9","index":"0.000009952657946993"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"631411329.000000000000000000"},{"denom":"ASSET10","amount":"2197782821.445686355126319036"},{"denom":"ASSET11","amount":"794296196.000000000000000000"},{"denom":"ASSET12","amount":"836801581.254021161992030576"},{"denom":"ASSET13","amount":"18044473.000000000000000000"},{"denom":"ASSET14","amount":"705753584.572338845846751925"},{"denom":"ASSET16","amount":"1953277393.970916243517361712"},{"denom":"ASSET17","amount":"1046197569.414956981479123388"},{"denom":"ASSET2","amount":"500515843.000000000000000000"},{"denom":"ASSET5","amount":"892263634.000000000000000000"},{"denom":"ASSET6","amount":"594084132.177699140673346568"},{"denom":"ASSET8","amount":"1264046167.319815023966339634"},{"denom":"ASSET9","amount":"218807139.000000001277425094"}],"validator_shares":[{"denom":"ASSET0","amount":"631417899.085234145864185017"},{"denom":"ASSET10","amount":"2197782821.612807874868227786"},{"denom":"ASSET11","amount":"794436130.059892065825472016"},{"denom":"ASSET12","amount":"836878060.496404949471656489"},{"denom":"ASSET13","amount":"18045038.545874113110937017"},{"denom":"ASSET14","amount":"705753584.572338993137170370"},{"denom":"ASSET16","amount":"1953347204.867890601018173642"},{"denom":"ASSET17","amount":"1046197569.414956917294657699"},{"denom":"ASSET2","amount":"500544832.082963982191808277"},{"denom":"ASSET3","amount":"0.421705030406633554"},{"denom":"ASSET5","amount":"892275455.145747373689834362"},{"denom":"ASSET6","amount":"594084132.177699210638327264"},{"denom":"ASSET8","amount":"1264113841.866975497344827003"},{"denom":"ASSET9","amount":"218807139.000000000000000000"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004966120290331"},{"denom":"ASSET1","index":"0.000040690544144156"},{"denom":"ASSET10","index":"0.000035008616018986"},{"denom":"ASSET11","index":"0.000042171157431549"},{"denom":"ASSET12","index":"0.000040093293320436"},{"denom":"ASSET13","index":"0.000013583728581688"},{"denom":"ASSET14","index":"0.000038916162839599"},{"denom":"ASSET15","index":"0.000031450025763049"},{"denom":"ASSET16","index":"0.000018062966317414"},{"denom":"ASSET17","index":"0.000014570933713275"},{"denom":"ASSET18","index":"0.000006073753693017"},{"denom":"ASSET2","index":"0.000012276212695773"},{"denom":"ASSET3","index":"0.000003528975238030"},{"denom":"ASSET4","index":"0.000033340338954974"},{"denom":"ASSET5","index":"0.000002768929808594"},{"denom":"ASSET6","index":"0.000011300425346446"},{"denom":"ASSET7","index":"0.000017457146665459"},{"denom":"ASSET8","index":"0.000025048210849575"},{"denom":"ASSET9","index":"0.000010075937377830"}],"total_delegator_shares":[{"denom":"ASSET10","amount":"1579445122.791782536380055408"},{"denom":"ASSET11","amount":"1642797139.549761349485195963"},{"denom":"ASSET14","amount":"2040043681.705629810654311188"},{"denom":"ASSET2","amount":"869171431.000000000000000000"},{"denom":"ASSET3","amount":"1570007052.835688449895439168"},{"denom":"ASSET4","amount":"579322121.000000000000000000"},{"denom":"ASSET5","amount":"947792282.380273746637990656"},{"denom":"ASSET7","amount":"851279874.068626723717395685"},{"denom":"ASSET8","amount":"2738127827.466052974255032890"}],"validator_shares":[{"denom":"ASSET10","amount":"1579571691.750680019447638747"},{"denom":"ASSET11","amount":"1642941841.970756069530483234"},{"denom":"ASSET14","amount":"2040043681.705629850618594056"},{"denom":"ASSET2","amount":"869196601.156802689987809306"},{"denom":"ASSET3","amount":"1570017370.319744580141971764"},{"denom":"ASSET4","amount":"579414745.715924715133475442"},{"denom":"ASSET5","amount":"947792282.380273769132932368"},{"denom":"ASSET7","amount":"851315671.988361320144553539"},{"denom":"ASSET8","amount":"2738127827.466052972814977562"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004627764027420"},{"denom":"ASSET1","index":"0.000037903536607636"},{"denom":"ASSET10","index":"0.000032865942220262"},{"denom":"ASSET11","index":"0.000039383898049886"},{"denom":"ASSET12","index":"0.000037527333381682"},{"denom":"ASSET13","index":"0.000012703297183668"},{"denom":"ASSET14","index":"0.000036322948545804"},{"denom":"ASSET15","index":"0.000029491335058024"},{"denom":"ASSET16","index":"0.000016814012542586"},{"denom":"ASSET17","index":"0.000013634338949011"},{"denom":"ASSET18","index":"0.000005649814365271"},{"denom":"ASSET2","index":"0.000011447251219906"},{"denom":"ASSET3","index":"0.000003286184110324"},{"denom":"ASSET4","index":"0.000031065113175814"},{"denom":"ASSET5","index":"0.000002580192699817"},{"denom":"ASSET6","index":"0.000010529610832732"},{"denom":"ASSET7","index":"0.000016275676858161"},{"denom":"ASSET8","index":"0.000023433995869400"},{"denom":"ASSET9","index":"0.000009404185101028"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"910274644.000000000000000000"},{"denom":"ASSET1","amount":"54311740.272079544027790196"},{"denom":"ASSET10","amount":"1033355758.116784993971947400"},{"denom":"ASSET11","amount":"277764107.000000000000000000"},{"denom":"ASSET13","amount":"591448603.000000000000000000"},{"denom":"ASSET14","amount":"1248898426.098417817719577938"},{"denom":"ASSET15","amount":"25885313.000000000000000000"},{"denom":"ASSET16","amount":"1000000000.000000000000000000"},{"denom":"ASSET17","amount":"1257184826.911773144382217832"},{"denom":"ASSET2","amount":"1849631508.578821685456306280"},{"denom":"ASSET3","amount":"1570036020.999999940197080593"},{"denom":"ASSET5","amount":"287891179.793027079570315081"},{"denom":"ASSET6","amount":"465992393.403807024052602796"},{"denom":"ASSET7","amount":"6329567.000000000000000000"},{"denom":"ASSET8","amount":"469922286.185513029587969522"},{"denom":"ASSET9","amount":"167740722.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"910274644.000000000000000000"},{"denom":"ASSET1","amount":"54319706.000236213654591436"},{"denom":"ASSET10","amount":"1033438566.161577544469942575"},{"denom":"ASSET11","amount":"277788573.282403773806888438"},{"denom":"ASSET13","amount":"591485677.666610128268622804"},{"denom":"ASSET14","amount":"1249129494.802826719397040120"},{"denom":"ASSET15","amount":"25885313.000000000000000000"},{"denom":"ASSET16","amount":"1000000000.000000000000000000"},{"denom":"ASSET17","amount":"1257225965.724749472940967791"},{"denom":"ASSET2","amount":"1849685071.677466751034553295"},{"denom":"ASSET3","amount":"1570056656.391811663320580781"},{"denom":"ASSET5","amount":"287891180.583605235831265888"},{"denom":"ASSET6","amount":"465992393.403807005618307864"},{"denom":"ASSET7","amount":"6330099.351608021632947704"},{"denom":"ASSET8","amount":"469972604.955036441819239116"},{"denom":"ASSET9","amount":"167749042.866756092979512976"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004580582438832"},{"denom":"ASSET1","index":"0.000037483984288658"},{"denom":"ASSET10","index":"0.000032499660214303"},{"denom":"ASSET11","index":"0.000038965700064047"},{"denom":"ASSET12","index":"0.000037103230568829"},{"denom":"ASSET13","index":"0.000012572310863615"},{"denom":"ASSET14","index":"0.000035948606907820"},{"denom":"ASSET15","index":"0.000029169852951154"},{"denom":"ASSET16","index":"0.000016631043190223"},{"denom":"ASSET17","index":"0.000013476854922794"},{"denom":"ASSET18","index":"0.000005595251304571"},{"denom":"ASSET2","index":"0.000011316458569232"},{"denom":"ASSET3","index":"0.000003252952025465"},{"denom":"ASSET4","index":"0.000030728353795456"},{"denom":"ASSET5","index":"0.000002554509941654"},{"denom":"ASSET6","index":"0.000010426461044140"},{"denom":"ASSET7","index":"0.000016105643609974"},{"denom":"ASSET8","index":"0.000023198729331950"},{"denom":"ASSET9","index":"0.000009302269752593"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"1780540182.000000007740518467"},{"denom":"ASSET1","amount":"184791825.000000000000000000"},{"denom":"ASSET10","amount":"1401274257.321061779632816484"},{"denom":"ASSET11","amount":"1832469761.209839027792069748"},{"denom":"ASSET12","amount":"725212053.040533223662462686"},{"denom":"ASSET13","amount":"592166608.000000000000000000"},{"denom":"ASSET14","amount":"142328086.000000000000000000"},{"denom":"ASSET15","amount":"24505362.000000000000000000"},{"denom":"ASSET16","amount":"942722327.336871756781950488"},{"denom":"ASSET17","amount":"567837427.651556460957203269"},{"denom":"ASSET2","amount":"482795421.000000003480886706"},{"denom":"ASSET3","amount":"1917316353.463775162603506691"},{"denom":"ASSET7","amount":"1193696491.609952554386948507"},{"denom":"ASSET8","amount":"249427541.000000000000000000"},{"denom":"ASSET9","amount":"1302846098.235979072851711817"}],"validator_shares":[{"denom":"ASSET0","amount":"1780540182.000000000000000000"},{"denom":"ASSET1","amount":"184818927.822265548724428225"},{"denom":"ASSET10","amount":"1401386548.543668773246887361"},{"denom":"ASSET11","amount":"1832469761.209839061575261412"},{"denom":"ASSET12","amount":"725278333.589741822954965268"},{"denom":"ASSET13","amount":"592166608.000000000000000000"},{"denom":"ASSET14","amount":"142341251.933331284268742848"},{"denom":"ASSET15","amount":"24505362.000000000000000000"},{"denom":"ASSET16","amount":"942722327.336871817940642505"},{"denom":"ASSET17","amount":"567856008.974872161950274155"},{"denom":"ASSET2","amount":"482809402.173352890296042046"},{"denom":"ASSET3","amount":"1917316353.463775328164459272"},{"denom":"ASSET7","amount":"1193746688.792448533892496580"},{"denom":"ASSET8","amount":"249440894.860264706647777333"},{"denom":"ASSET9","amount":"1302846098.235979082272224424"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004425863510700"},{"denom":"ASSET1","index":"0.000036160672221872"},{"denom":"ASSET10","index":"0.000031557458061761"},{"denom":"ASSET11","index":"0.000037700664708319"},{"denom":"ASSET12","index":"0.000035928372047662"},{"denom":"ASSET13","index":"0.000012183543527385"},{"denom":"ASSET14","index":"0.000034780774754072"},{"denom":"ASSET15","index":"0.000028307087788627"},{"denom":"ASSET16","index":"0.000016039535319794"},{"denom":"ASSET17","index":"0.000013042771810819"},{"denom":"ASSET18","index":"0.000005402952153823"},{"denom":"ASSET2","index":"0.000010919186373904"},{"denom":"ASSET3","index":"0.000003141880910304"},{"denom":"ASSET4","index":"0.000029659922771182"},{"denom":"ASSET5","index":"0.000002468660048805"},{"denom":"ASSET6","index":"0.000010080499351124"},{"denom":"ASSET7","index":"0.000015564502508768"},{"denom":"ASSET8","index":"0.000022498991790116"},{"denom":"ASSET9","index":"0.000008992113067194"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"62212605.000000013360174125"},{"denom":"ASSET1","amount":"992372861.999999057872117694"},{"denom":"ASSET10","amount":"886253110.000000000000000000"},{"denom":"ASSET12","amount":"498513922.000000000000000000"},{"denom":"ASSET13","amount":"746278556.530342262383829033"},{"denom":"ASSET14","amount":"311036105.999999237961540300"},{"denom":"ASSET15","amount":"1883393294.736827664320275975"},{"denom":"ASSET16","amount":"1165431720.960682396146315483"},{"denom":"ASSET2","amount":"88397527.000000000000000000"},{"denom":"ASSET3","amount":"1069316198.000000023082267735"},{"denom":"ASSET4","amount":"233337259.000000000000000000"},{"denom":"ASSET6","amount":"1166357330.667623558280171680"},{"denom":"ASSET7","amount":"1223894357.276895720135713549"}],"validator_shares":[{"denom":"ASSET0","amount":"62213252.346822451849230165"},{"denom":"ASSET1","amount":"992372862.000000000000000000"},{"denom":"ASSET10","amount":"886324129.962538532748577630"},{"denom":"ASSET11","amount":"0.818483020056808496"},{"denom":"ASSET12","amount":"498559483.538035326914057730"},{"denom":"ASSET13","amount":"746325336.636916713609684576"},{"denom":"ASSET14","amount":"311064878.525587350355152392"},{"denom":"ASSET15","amount":"1883511194.395740473775675770"},{"denom":"ASSET16","amount":"1165431720.960682396113689129"},{"denom":"ASSET2","amount":"88400086.885813320090441402"},{"denom":"ASSET3","amount":"1069330252.300933958096761078"},{"denom":"ASSET4","amount":"233355911.779050495341108936"},{"denom":"ASSET6","amount":"1166357330.667623368000000000"},{"denom":"ASSET7","amount":"1223894357.276895739466606136"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004962972541432"},{"denom":"ASSET1","index":"0.000040650098665327"},{"denom":"ASSET10","index":"0.000035029276691044"},{"denom":"ASSET11","index":"0.000042155953964920"},{"denom":"ASSET12","index":"0.000040090986287408"},{"denom":"ASSET13","index":"0.000013583146547951"},{"denom":"ASSET14","index":"0.000038900128980945"},{"denom":"ASSET15","index":"0.000031463357706274"},{"denom":"ASSET16","index":"0.000018043166594771"},{"denom":"ASSET17","index":"0.000014567679910779"},{"denom":"ASSET18","index":"0.000006067375008702"},{"denom":"ASSET2","index":"0.000012265082923430"},{"denom":"ASSET3","index":"0.000003525171494558"},{"denom":"ASSET4","index":"0.000033311451785840"},{"denom":"ASSET5","index":"0.000002766894365829"},{"denom":"ASSET6","index":"0.000011292799073571"},{"denom":"ASSET7","index":"0.000017445141192124"},{"denom":"ASSET8","index":"0.000025051796020968"},{"denom":"ASSET9","index":"0.000010070586397372"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"111744623.000000000000000000"},{"denom":"ASSET1","amount":"1036487236.999999997185134045"},{"denom":"ASSET10","amount":"963498140.000000000000000000"},{"denom":"ASSET11","amount":"320997898.000000000000000000"},{"denom":"ASSET12","amount":"296058803.000000000000000000"},{"denom":"ASSET13","amount":"708901014.600796470912572474"},{"denom":"ASSET14","amount":"1409069211.533073449120399362"},{"denom":"ASSET15","amount":"1000000000.000000000000000000"},{"denom":"ASSET16","amount":"239075798.000000000000000000"},{"denom":"ASSET17","amount":"123448225.000000000000000000"},{"denom":"ASSET18","amount":"707022891.720605786982020811"},{"denom":"ASSET2","amount":"952421676.000000000014511344"},{"denom":"ASSET3","amount":"661918856.000000000000000000"},{"denom":"ASSET4","amount":"98468348.000000000107796920"},{"denom":"ASSET5","amount":"233804421.000000000000000000"},{"denom":"ASSET6","amount":"1022852842.809078435513347479"},{"denom":"ASSET8","amount":"1409441275.536144311397986346"}],"validator_shares":[{"denom":"ASSET0","amount":"111745785.747109289666103479"},{"denom":"ASSET1","amount":"1036563243.334209178084275062"},{"denom":"ASSET10","amount":"963652566.162742297645560240"},{"denom":"ASSET11","amount":"320997898.000000000000000000"},{"denom":"ASSET12","amount":"296085861.210048500627209395"},{"denom":"ASSET13","amount":"708923232.819303721337639172"},{"denom":"ASSET14","amount":"1409199556.230452498607944376"},{"denom":"ASSET15","amount":"1000000000.000000000000000000"},{"denom":"ASSET16","amount":"239101432.903876677601358606"},{"denom":"ASSET17","amount":"123460344.167198616138936575"},{"denom":"ASSET18","amount":"707022891.720605786342283174"},{"denom":"ASSET2","amount":"952421676.000000000000000000"},{"denom":"ASSET3","amount":"661927555.771698478727206216"},{"denom":"ASSET4","amount":"98468348.000000000000000000"},{"denom":"ASSET5","amount":"233807518.555511291092047753"},{"denom":"ASSET6","amount":"1022852842.809078455551724817"},{"denom":"ASSET8","amount":"1409592196.981637440901919593"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004998366479421"},{"denom":"ASSET1","index":"0.000041003058470161"},{"denom":"ASSET10","index":"0.000035371684503353"},{"denom":"ASSET11","index":"0.000042507113632794"},{"denom":"ASSET12","index":"0.000040474634178020"},{"denom":"ASSET13","index":"0.000013692225298153"},{"denom":"ASSET14","index":"0.000039203644327879"},{"denom":"ASSET15","index":"0.000031754410004916"},{"denom":"ASSET16","index":"0.000018191496793637"},{"denom":"ASSET17","index":"0.000014711204061235"},{"denom":"ASSET18","index":"0.000006107657014076"},{"denom":"ASSET2","index":"0.000012378633937847"},{"denom":"ASSET3","index":"0.000003550763999341"},{"denom":"ASSET4","index":"0.000033588763313421"},{"denom":"ASSET5","index":"0.000002786585175417"},{"denom":"ASSET6","index":"0.000011370781245157"},{"denom":"ASSET7","index":"0.000017582533575325"},{"denom":"ASSET8","index":"0.000025244942353745"},{"denom":"ASSET9","index":"0.000010154599708630"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"1273337202.603290727017538856"},{"denom":"ASSET1","amount":"195366306.000000000000000000"},{"denom":"ASSET10","amount":"911564974.000000000000000000"},{"denom":"ASSET11","amount":"246926205.735113216916036152"},{"denom":"ASSET13","amount":"702762568.000000000000000000"},{"denom":"ASSET16","amount":"1038723322.000000004600398769"},{"denom":"ASSET17","amount":"234567012.781292818553711800"},{"denom":"ASSET18","amount":"1341899161.892680064567707292"},{"denom":"ASSET2","amount":"820571793.952991393006734870"},{"denom":"ASSET5","amount":"557400606.302668065888879851"},{"denom":"ASSET6","amount":"738468180.000000000000000000"},{"denom":"ASSET7","amount":"1923226452.861792311039459426"},{"denom":"ASSET8","amount":"1015127501.231631948977346145"},{"denom":"ASSET9","amount":"1873402497.435577712603044170"}],"validator_shares":[{"denom":"ASSET0","amount":"1273337202.603289781016487411"},{"denom":"ASSET1","amount":"195394959.747362443145710338"},{"denom":"ASSET10","amount":"911564974.000000000000000000"},{"denom":"ASSET11","amount":"246926205.735113234414204174"},{"denom":"ASSET13","amount":"702762568.000000000000000000"},{"denom":"ASSET16","amount":"1038797572.078686899283137606"},{"denom":"ASSET17","amount":"234574688.509047685944906878"},{"denom":"ASSET18","amount":"1341899162.303793247924487706"},{"denom":"ASSET2","amount":"820571793.952991406992872140"},{"denom":"ASSET5","amount":"557400606.302668063699278438"},{"denom":"ASSET6","amount":"738489510.229474665634290660"},{"denom":"ASSET7","amount":"1923226452.861792292777229298"},{"denom":"ASSET8","amount":"1015236199.985176993137534387"},{"denom":"ASSET9","amount":"1873402497.435577672660894228"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004660804205407"},{"denom":"ASSET1","index":"0.000038057537045202"},{"denom":"ASSET10","index":"0.000033236768377738"},{"denom":"ASSET11","index":"0.000039701821838753"},{"denom":"ASSET12","index":"0.000037824613654517"},{"denom":"ASSET13","index":"0.000012834687122975"},{"denom":"ASSET14","index":"0.000036631919493883"},{"denom":"ASSET15","index":"0.000029815074691348"},{"denom":"ASSET16","index":"0.000016881501899894"},{"denom":"ASSET17","index":"0.000013727591369636"},{"denom":"ASSET18","index":"0.000005691132396522"},{"denom":"ASSET2","index":"0.000011490151771186"},{"denom":"ASSET3","index":"0.000003308008506911"},{"denom":"ASSET4","index":"0.000031222727917954"},{"denom":"ASSET5","index":"0.000002599510414053"},{"denom":"ASSET6","index":"0.000010619768184658"},{"denom":"ASSET7","index":"0.000016390179065509"},{"denom":"ASSET8","index":"0.000023706313213553"},{"denom":"ASSET9","index":"0.000009466987970942"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"327786690.000000000000000000"},{"denom":"ASSET1","amount":"191547922.000000000000000000"},{"denom":"ASSET10","amount":"771329076.042173099116596342"},{"denom":"ASSET11","amount":"1859268896.911081166624828966"},{"denom":"ASSET12","amount":"1000000000.000000000000000000"},{"denom":"ASSET13","amount":"1000000000.000000000000000000"},{"denom":"ASSET15","amount":"1000604531.416997379620098925"},{"denom":"ASSET16","amount":"578187457.179691304873597565"},{"denom":"ASSET2","amount":"596125409.033379312870510784"},{"denom":"ASSET4","amount":"708987617.457088565852402316"},{"denom":"ASSET5","amount":"403892868.000000000000000000"},{"denom":"ASSET6","amount":"850089499.550969785298262580"},{"denom":"ASSET7","amount":"841378181.000000000000000000"},{"denom":"ASSET9","amount":"921207596.633725433454836622"}],"validator_shares":[{"denom":"ASSET0","amount":"327793511.530458212580767580"},{"denom":"ASSET1","amount":"191547922.000000000000000000"},{"denom":"ASSET10","amount":"771329076.042173100180697465"},{"denom":"ASSET11","amount":"1859268896.911081136012117474"},{"denom":"ASSET12","amount":"1000091394.715422465000000000"},{"denom":"ASSET13","amount":"1000062684.965378554889062983"},{"denom":"ASSET15","amount":"1000667168.856182449122806088"},{"denom":"ASSET16","amount":"578187457.179690404933773935"},{"denom":"ASSET2","amount":"596142672.106559480117393168"},{"denom":"ASSET4","amount":"709044293.315177555890552842"},{"denom":"ASSET5","amount":"403892868.312848135895808158"},{"denom":"ASSET6","amount":"850089499.667868098692059972"},{"denom":"ASSET7","amount":"841378181.000000000000000000"},{"denom":"ASSET9","amount":"921230445.045984584462531468"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004712304863435"},{"denom":"ASSET1","index":"0.000038516862421739"},{"denom":"ASSET10","index":"0.000033327636856773"},{"denom":"ASSET11","index":"0.000040042769224492"},{"denom":"ASSET12","index":"0.000038067581160411"},{"denom":"ASSET13","index":"0.000012921267350758"},{"denom":"ASSET14","index":"0.000036963543894220"},{"denom":"ASSET15","index":"0.000029932685024411"},{"denom":"ASSET16","index":"0.000017097625110945"},{"denom":"ASSET17","index":"0.000013823249488614"},{"denom":"ASSET18","index":"0.000005763288311346"},{"denom":"ASSET2","index":"0.000011617908519758"},{"denom":"ASSET3","index":"0.000003346339926665"},{"denom":"ASSET4","index":"0.000031583806671954"},{"denom":"ASSET5","index":"0.000002627997258659"},{"denom":"ASSET6","index":"0.000010733107053643"},{"denom":"ASSET7","index":"0.000016562310450612"},{"denom":"ASSET8","index":"0.000023849612256254"},{"denom":"ASSET9","index":"0.000009557057241669"}],"total_delegator_shares":[{"denom":"ASSET1","amount":"1451375072.410126246383038524"},{"denom":"ASSET10","amount":"818135280.000000002563579700"},{"denom":"ASSET11","amount":"679640699.000000000000000000"},{"denom":"ASSET12","amount":"1086967907.030480557025800108"},{"denom":"ASSET13","amount":"1371296011.492016610817093432"},{"denom":"ASSET15","amount":"789542115.000000003330717214"},{"denom":"ASSET16","amount":"602032415.508344931722619698"},{"denom":"ASSET18","amount":"11043581.613116657713053309"},{"denom":"ASSET4","amount":"882668618.000000000000000000"},{"denom":"ASSET5","amount":"460267926.000000000000000000"},{"denom":"ASSET6","amount":"697459316.000000000000000000"},{"denom":"ASSET9","amount":"586319477.000000000000000000"}],"validator_shares":[{"denom":"ASSET1","amount":"1451375072.410126214999478848"},{"denom":"ASSET10","amount":"818266407.904299322520844480"},{"denom":"ASSET11","amount":"679760433.782512985221671404"},{"denom":"ASSET12","amount":"1086967907.030480553819998469"},{"denom":"ASSET13","amount":"1371296011.492016544915728338"},{"denom":"ASSET15","amount":"789591540.017236661935963560"},{"denom":"ASSET16","amount":"602032415.508338403241225528"},{"denom":"ASSET17","amount":"0.571192385201961479"},{"denom":"ASSET18","amount":"11043581.613116651442324388"},{"denom":"ASSET4","amount":"882739177.767338143262204272"},{"denom":"ASSET5","amount":"460270974.917019844173349044"},{"denom":"ASSET6","amount":"697459316.000000000000000000"},{"denom":"ASSET9","amount":"586334019.169052902143910276"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004580604195578"},{"denom":"ASSET1","index":"0.000037467407266582"},{"denom":"ASSET10","index":"0.000032540876274858"},{"denom":"ASSET11","index":"0.000038977321346432"},{"denom":"ASSET12","index":"0.000037123502258906"},{"denom":"ASSET13","index":"0.000012581243323829"},{"denom":"ASSET14","index":"0.000035957810703484"},{"denom":"ASSET15","index":"0.000029201582176456"},{"denom":"ASSET16","index":"0.000016622648974655"},{"denom":"ASSET17","index":"0.000013482713768574"},{"denom":"ASSET18","index":"0.000005593801439345"},{"denom":"ASSET2","index":"0.000011312321226872"},{"denom":"ASSET3","index":"0.000003252156988555"},{"denom":"ASSET4","index":"0.000030718296740206"},{"denom":"ASSET5","index":"0.000002554157985732"},{"denom":"ASSET6","index":"0.000010426952466130"},{"denom":"ASSET7","index":"0.000016105730271489"},{"denom":"ASSET8","index":"0.000023219107262404"},{"denom":"ASSET9","index":"0.000009302979106515"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"1323427099.939870451042827323"},{"denom":"ASSET1","amount":"1059685479.094207133738266359"},{"denom":"ASSET10","amount":"1181018005.357221832267262862"},{"denom":"ASSET11","amount":"776716066.828891231898405600"},{"denom":"ASSET12","amount":"62899163.888149979858580725"},{"denom":"ASSET13","amount":"84270541.521896630706135626"},{"denom":"ASSET15","amount":"1573829302.006000696804283112"},{"denom":"ASSET17","amount":"88267712.000000000000000000"},{"denom":"ASSET18","amount":"899552911.000000000000000000"},{"denom":"ASSET2","amount":"330583074.000000000000000000"},{"denom":"ASSET5","amount":"487083402.000000000000000000"},{"denom":"ASSET6","amount":"514748524.622679201313305865"},{"denom":"ASSET7","amount":"58345631.558255053097361577"}],"validator_shares":[{"denom":"ASSET0","amount":"1323427099.939870429069762480"},{"denom":"ASSET1","amount":"1059685479.094207116187484261"},{"denom":"ASSET10","amount":"1181018005.357221802508190676"},{"denom":"ASSET11","amount":"776784482.272642511087952402"},{"denom":"ASSET12","amount":"62899163.888149989563226810"},{"denom":"ASSET13","amount":"84270541.521896642863865163"},{"denom":"ASSET15","amount":"1574026350.327483995032314582"},{"denom":"ASSET17","amount":"88270600.381101951969360256"},{"denom":"ASSET18","amount":"899552911.000000000000000000"},{"denom":"ASSET2","amount":"330602220.846783577766287086"},{"denom":"ASSET5","amount":"487089855.119534140522205586"},{"denom":"ASSET6","amount":"514748524.622679026851841848"},{"denom":"ASSET7","amount":"58345631.558255049547627714"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004451028909096"},{"denom":"ASSET1","index":"0.000036477295358036"},{"denom":"ASSET10","index":"0.000031594285637271"},{"denom":"ASSET11","index":"0.000037877235122777"},{"denom":"ASSET12","index":"0.000036094024478773"},{"denom":"ASSET13","index":"0.000012212628058403"},{"denom":"ASSET14","index":"0.000034929714752807"},{"denom":"ASSET15","index":"0.000028351244338063"},{"denom":"ASSET16","index":"0.000016180904344378"},{"denom":"ASSET17","index":"0.000013115564217581"},{"denom":"ASSET18","index":"0.000005434356167162"},{"denom":"ASSET2","index":"0.000011017450045022"},{"denom":"ASSET3","index":"0.000003160957283863"},{"denom":"ASSET4","index":"0.000029890627189887"},{"denom":"ASSET5","index":"0.000002482144499160"},{"denom":"ASSET6","index":"0.000010125586077425"},{"denom":"ASSET7","index":"0.000015654963573568"},{"denom":"ASSET8","index":"0.000022524154498080"},{"denom":"ASSET9","index":"0.000009046112711560"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"1140179837.766436086637181311"},{"denom":"ASSET1","amount":"228857477.000000000000000000"},{"denom":"ASSET10","amount":"432857787.083068254416682325"},{"denom":"ASSET12","amount":"933181466.617024461527631586"},{"denom":"ASSET13","amount":"15374773.000000000061499092"},{"denom":"ASSET15","amount":"626462203.751429651243570493"},{"denom":"ASSET16","amount":"1003727503.872111062294109421"},{"denom":"ASSET18","amount":"1065216318.401603026332205932"},{"denom":"ASSET2","amount":"222078908.000000000000000000"},{"denom":"ASSET3","amount":"606874506.657407952332632830"},{"denom":"ASSET4","amount":"1246095682.042034061465862394"},{"denom":"ASSET5","amount":"1254567322.999999990643513756"},{"denom":"ASSET7","amount":"1576500295.626196913476650635"},{"denom":"ASSET8","amount":"1000000000.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"1140179837.766436202110276477"},{"denom":"ASSET1","amount":"228857477.000000000000000000"},{"denom":"ASSET10","amount":"432857787.083068241249660124"},{"denom":"ASSET12","amount":"933181466.617024457727429939"},{"denom":"ASSET13","amount":"15374773.605087547259818234"},{"denom":"ASSET15","amount":"626462203.751429633722898850"},{"denom":"ASSET16","amount":"1003727503.872111034134123169"},{"denom":"ASSET18","amount":"1065216318.401603036474060310"},{"denom":"ASSET2","amount":"222085339.137446037574554408"},{"denom":"ASSET3","amount":"606874506.915818409686222124"},{"denom":"ASSET4","amount":"1246195293.855133815572065276"},{"denom":"ASSET5","amount":"1254567323.000000000000000000"},{"denom":"ASSET7","amount":"1576566590.428603350386054588"},{"denom":"ASSET8","amount":"1000160622.673012973000000000"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000005006929389050"},{"denom":"ASSET1","index":"0.000041040719024259"},{"denom":"ASSET10","index":"0.000035335236957082"},{"denom":"ASSET11","index":"0.000042570302950344"},{"denom":"ASSET12","index":"0.000040446830831619"},{"denom":"ASSET13","index":"0.000013714364135971"},{"denom":"ASSET14","index":"0.000039291775310945"},{"denom":"ASSET15","index":"0.000031749911679613"},{"denom":"ASSET16","index":"0.000018218670659075"},{"denom":"ASSET17","index":"0.000014692127914697"},{"denom":"ASSET18","index":"0.000006128628862048"},{"denom":"ASSET2","index":"0.000012375095752463"},{"denom":"ASSET3","index":"0.000003562895226431"},{"denom":"ASSET4","index":"0.000033637129839069"},{"denom":"ASSET5","index":"0.000002792230076840"},{"denom":"ASSET6","index":"0.000011411674108417"},{"denom":"ASSET7","index":"0.000017623585250478"},{"denom":"ASSET8","index":"0.000025306496126979"},{"denom":"ASSET9","index":"0.000010169019213984"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"494450152.000000000000000000"},{"denom":"ASSET10","amount":"432693787.000000000000000000"},{"denom":"ASSET11","amount":"1043131983.376727201623478184"},{"denom":"ASSET13","amount":"2000031341.778400122000000000"},{"denom":"ASSET14","amount":"498147183.869792844710675898"},{"denom":"ASSET15","amount":"205984312.000000000000000000"},{"denom":"ASSET16","amount":"240549982.000000000000000000"},{"denom":"ASSET17","amount":"351627172.000000000000000000"},{"denom":"ASSET18","amount":"1567615953.142585191000000000"},{"denom":"ASSET3","amount":"1105740169.000000002120944828"},{"denom":"ASSET4","amount":"608940313.000000000000000000"},{"denom":"ASSET5","amount":"676191291.000000000000000000"},{"denom":"ASSET6","amount":"1864225791.889725203350799374"},{"denom":"ASSET7","amount":"910669356.201505739557508424"},{"denom":"ASSET8","amount":"668434002.073266197527798266"},{"denom":"ASSET9","amount":"1406343207.063727214255423581"}],"validator_shares":[{"denom":"ASSET0","amount":"494455296.949882070263165096"},{"denom":"ASSET10","amount":"432728460.950586639823927471"},{"denom":"ASSET11","amount":"1043131983.376726743349336850"},{"denom":"ASSET13","amount":"2000031341.778400129000000000"},{"denom":"ASSET14","amount":"498193264.533113167794244400"},{"denom":"ASSET15","amount":"205997206.534664666938072128"},{"denom":"ASSET16","amount":"240558579.350311034272184386"},{"denom":"ASSET17","amount":"351650184.937619739174885908"},{"denom":"ASSET18","amount":"1567638146.130475990936507368"},{"denom":"ASSET3","amount":"1105754702.030659179899331809"},{"denom":"ASSET4","amount":"609037673.210256380176814226"},{"denom":"ASSET5","amount":"676195770.823616515520797904"},{"denom":"ASSET6","amount":"1864279638.981598004742981277"},{"denom":"ASSET7","amount":"910707651.560659451709338811"},{"denom":"ASSET8","amount":"668469788.715848140927140749"},{"denom":"ASSET9","amount":"1406343207.063727213849090452"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004836979013225"},{"denom":"ASSET1","index":"0.000039577282529760"},{"denom":"ASSET10","index":"0.000034314822965027"},{"denom":"ASSET11","index":"0.000041143647196390"},{"denom":"ASSET12","index":"0.000039175131964155"},{"denom":"ASSET13","index":"0.000013275183327871"},{"denom":"ASSET14","index":"0.000037958187432774"},{"denom":"ASSET15","index":"0.000030799620771454"},{"denom":"ASSET16","index":"0.000017560332811566"},{"denom":"ASSET17","index":"0.000014229600019779"},{"denom":"ASSET18","index":"0.000005908428628636"},{"denom":"ASSET2","index":"0.000011948073948502"},{"denom":"ASSET3","index":"0.000003434959854289"},{"denom":"ASSET4","index":"0.000032444397664905"},{"denom":"ASSET5","index":"0.000002697479070199"},{"denom":"ASSET6","index":"0.000011009822966557"},{"denom":"ASSET7","index":"0.000017006174923380"},{"denom":"ASSET8","index":"0.000024496113573743"},{"denom":"ASSET9","index":"0.000009822002615441"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"1763346113.359599895819312773"},{"denom":"ASSET1","amount":"196572501.000000000000000000"},{"denom":"ASSET10","amount":"330176255.000000000000000000"},{"denom":"ASSET11","amount":"2107266587.342060724319140431"},{"denom":"ASSET12","amount":"344640732.000000008085582312"},{"denom":"ASSET13","amount":"812041125.999999996907893460"},{"denom":"ASSET14","amount":"748560369.000000000000000000"},{"denom":"ASSET15","amount":"940471251.079274464548854430"},{"denom":"ASSET16","amount":"761642543.737517839850571925"},{"denom":"ASSET17","amount":"1234451119.353957969148714428"},{"denom":"ASSET18","amount":"1568921268.674166052059188864"},{"denom":"ASSET2","amount":"1000000000.000000000000000000"},{"denom":"ASSET3","amount":"629132164.000000000000000000"},{"denom":"ASSET4","amount":"1126362173.200851044066966970"},{"denom":"ASSET5","amount":"661804412.792921742365527310"},{"denom":"ASSET7","amount":"1343597023.511834140501015490"},{"denom":"ASSET9","amount":"2490293702.989962076341312300"}],"validator_shares":[{"denom":"ASSET0","amount":"1763346113.359599869515226984"},{"denom":"ASSET1","amount":"196601331.656101250144037573"},{"denom":"ASSET10","amount":"330202713.700112446472678915"},{"denom":"ASSET11","amount":"2107266587.342060693796178436"},{"denom":"ASSET12","amount":"344640732.000000000000000000"},{"denom":"ASSET13","amount":"812092028.401100376193224168"},{"denom":"ASSET14","amount":"748560369.000000000000000000"},{"denom":"ASSET15","amount":"940471251.079274478529898176"},{"denom":"ASSET16","amount":"761642543.738022937038169410"},{"denom":"ASSET17","amount":"1234491514.252654564393248370"},{"denom":"ASSET18","amount":"1568921268.674166069659290835"},{"denom":"ASSET2","amount":"1000057918.412312839000000000"},{"denom":"ASSET3","amount":"629132164.000000000000000000"},{"denom":"ASSET4","amount":"1126362173.200851030862508104"},{"denom":"ASSET5","amount":"661804413.355270063381746896"},{"denom":"ASSET7","amount":"1343597023.511834156869537352"},{"denom":"ASSET9","amount":"2490417239.055783070425841658"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004736121968577"},{"denom":"ASSET1","index":"0.000038761893571018"},{"denom":"ASSET10","index":"0.000033507102183548"},{"denom":"ASSET11","index":"0.000040255954218087"},{"denom":"ASSET12","index":"0.000038296483713125"},{"denom":"ASSET13","index":"0.000012981125931500"},{"denom":"ASSET14","index":"0.000037144963211864"},{"denom":"ASSET15","index":"0.000030086100212575"},{"denom":"ASSET16","index":"0.000017200793994088"},{"denom":"ASSET17","index":"0.000013910336551622"},{"denom":"ASSET18","index":"0.000005787660096353"},{"denom":"ASSET2","index":"0.000011696689560653"},{"denom":"ASSET3","index":"0.000003364158799327"},{"denom":"ASSET4","index":"0.000031772510725021"},{"denom":"ASSET5","index":"0.000002640231519377"},{"denom":"ASSET6","index":"0.000010779027652808"},{"denom":"ASSET7","index":"0.000016649985952266"},{"denom":"ASSET8","index":"0.000023948972231982"},{"denom":"ASSET9","index":"0.000009610057695084"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"653535874.094200399492262833"},{"denom":"ASSET10","amount":"819661651.000000000000000000"},{"denom":"ASSET11","amount":"1000000000.000000000000000000"},{"denom":"ASSET12","amount":"1495968569.480903068062122360"},{"denom":"ASSET13","amount":"86546889.000000000000000000"},{"denom":"ASSET15","amount":"1000000000.000000000000000000"},{"denom":"ASSET16","amount":"504381381.326214847764360600"},{"denom":"ASSET17","amount":"142381935.000000000000000000"},{"denom":"ASSET18","amount":"295004375.000000000000000000"},{"denom":"ASSET2","amount":"988540562.647766531206173454"},{"denom":"ASSET3","amount":"278962597.000000000000000000"},{"denom":"ASSET4","amount":"648902027.055895816203933203"},{"denom":"ASSET5","amount":"297036578.000000000000000000"},{"denom":"ASSET6","amount":"516020601.000000000000000000"},{"denom":"ASSET8","amount":"1224178346.075887900954761126"},{"denom":"ASSET9","amount":"169037607.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"653542674.394098675689098513"},{"denom":"ASSET10","amount":"819858717.706933681895756649"},{"denom":"ASSET11","amount":"1000000000.000000000000000000"},{"denom":"ASSET12","amount":"1495968569.480903037466097350"},{"denom":"ASSET13","amount":"86555026.850704599653327862"},{"denom":"ASSET15","amount":"1000062599.595762744000000000"},{"denom":"ASSET16","amount":"504381381.326214794427462104"},{"denom":"ASSET17","amount":"142386594.158836170509037030"},{"denom":"ASSET18","amount":"295016904.439056358398165625"},{"denom":"ASSET2","amount":"988540562.647766504568439122"},{"denom":"ASSET3","amount":"278964430.235170251851478414"},{"denom":"ASSET4","amount":"648953902.815090140409222830"},{"denom":"ASSET5","amount":"297036578.000000000000000000"},{"denom":"ASSET6","amount":"516050411.338606580597004168"},{"denom":"ASSET7","amount":"0.492326182882648834"},{"denom":"ASSET8","amount":"1224243886.178264079298374985"},{"denom":"ASSET9","amount":"169050184.953402530061643095"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004759172551230"},{"denom":"ASSET1","index":"0.000038864559845537"},{"denom":"ASSET10","index":"0.000033789559914776"},{"denom":"ASSET11","index":"0.000040483498273200"},{"denom":"ASSET12","index":"0.000038519500877358"},{"denom":"ASSET13","index":"0.000013077901294621"},{"denom":"ASSET14","index":"0.000037366902385783"},{"denom":"ASSET15","index":"0.000030331952984765"},{"denom":"ASSET16","index":"0.000017247589073506"},{"denom":"ASSET17","index":"0.000013981748886788"},{"denom":"ASSET18","index":"0.000005816425174292"},{"denom":"ASSET2","index":"0.000011726326503880"},{"denom":"ASSET3","index":"0.000003378996028425"},{"denom":"ASSET4","index":"0.000031879565540339"},{"denom":"ASSET5","index":"0.000002654849092411"},{"denom":"ASSET6","index":"0.000010843826038420"},{"denom":"ASSET7","index":"0.000016729873959345"},{"denom":"ASSET8","index":"0.000024149705961421"},{"denom":"ASSET9","index":"0.000009656726204889"}],"total_delegator_shares":[{"denom":"ASSET1","amount":"311206342.888525642806267360"},{"denom":"ASSET11","amount":"982475820.000000000000000000"},{"denom":"ASSET13","amount":"532192789.656401185080647174"},{"denom":"ASSET14","amount":"390690389.000000000000000000"},{"denom":"ASSET15","amount":"583464546.000000000000000000"},{"denom":"ASSET16","amount":"1000000000.000000000000000000"},{"denom":"ASSET17","amount":"1729993662.955129748806101055"},{"denom":"ASSET18","amount":"24660316.000000000000000000"},{"denom":"ASSET2","amount":"989524153.460659281694270089"},{"denom":"ASSET4","amount":"717897605.637999883782520505"},{"denom":"ASSET5","amount":"5616723.000000000000000000"},{"denom":"ASSET6","amount":"432027931.261613042000582687"},{"denom":"ASSET8","amount":"137067347.000000000000000000"},{"denom":"ASSET9","amount":"410355986.401348361675987651"}],"validator_shares":[{"denom":"ASSET0","amount":"0.768008200150358682"},{"denom":"ASSET1","amount":"311229163.867367701204396344"},{"denom":"ASSET11","amount":"982735460.954716148318909880"},{"denom":"ASSET13","amount":"532209469.524880742416576974"},{"denom":"ASSET14","amount":"390762673.278232444148748172"},{"denom":"ASSET15","amount":"583464546.000000000000000000"},{"denom":"ASSET16","amount":"1000000000.000000000000000000"},{"denom":"ASSET17","amount":"1729993662.955129766998535203"},{"denom":"ASSET18","amount":"24660316.000000000000000000"},{"denom":"ASSET2","amount":"989552808.887211881102841823"},{"denom":"ASSET4","amount":"717897605.638000099944229346"},{"denom":"ASSET5","amount":"5616760.206421267012693962"},{"denom":"ASSET6","amount":"432040411.145132645746152122"},{"denom":"ASSET8","amount":"137089363.123657936705692631"},{"denom":"ASSET9","amount":"410355986.401348370858740308"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004628196216454"},{"denom":"ASSET1","index":"0.000037795277380303"},{"denom":"ASSET10","index":"0.000032676632065203"},{"denom":"ASSET11","index":"0.000039304101124319"},{"denom":"ASSET12","index":"0.000037329106659292"},{"denom":"ASSET13","index":"0.000012685957294416"},{"denom":"ASSET14","index":"0.000036296237966481"},{"denom":"ASSET15","index":"0.000029358352032693"},{"denom":"ASSET16","index":"0.000016782013119957"},{"denom":"ASSET17","index":"0.000013552222419598"},{"denom":"ASSET18","index":"0.000005664432888245"},{"denom":"ASSET2","index":"0.000011394866388508"},{"denom":"ASSET3","index":"0.000003287725213992"},{"denom":"ASSET4","index":"0.000030999049090585"},{"denom":"ASSET5","index":"0.000002581694668490"},{"denom":"ASSET6","index":"0.000010547613503465"},{"denom":"ASSET7","index":"0.000016263806219015"},{"denom":"ASSET8","index":"0.000023421280150023"},{"denom":"ASSET9","index":"0.000009378776027781"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"1125431172.145208352475610197"},{"denom":"ASSET1","amount":"1488397773.240309535000000000"},{"denom":"ASSET10","amount":"710359384.000000000000000000"},{"denom":"ASSET11","amount":"1000000000.000000000000000000"},{"denom":"ASSET12","amount":"988196328.163484201316056658"},{"denom":"ASSET13","amount":"1578818696.212960528341389900"},{"denom":"ASSET14","amount":"470599217.583903062455641618"},{"denom":"ASSET15","amount":"9816490.167465636189486235"},{"denom":"ASSET16","amount":"5731164.000000011931226032"},{"denom":"ASSET17","amount":"1544630650.030464055634853494"},{"denom":"ASSET18","amount":"654950737.220783254474032696"},{"denom":"ASSET2","amount":"940483481.097357857611134242"},{"denom":"ASSET3","amount":"59127129.487973340421722582"},{"denom":"ASSET4","amount":"386345854.000000000000000000"},{"denom":"ASSET5","amount":"740903875.999025128958691770"},{"denom":"ASSET6","amount":"156185568.856993466328595033"},{"denom":"ASSET7","amount":"204837948.000000000000000000"},{"denom":"ASSET8","amount":"983384849.914065777044135190"}],"validator_shares":[{"denom":"ASSET0","amount":"1125442882.702790318117772794"},{"denom":"ASSET1","amount":"1488397773.240309499000000000"},{"denom":"ASSET10","amount":"710473237.954963631072754144"},{"denom":"ASSET11","amount":"1000176173.649825796000000000"},{"denom":"ASSET12","amount":"988196328.163484220957365570"},{"denom":"ASSET13","amount":"1578868179.198671198588884704"},{"denom":"ASSET14","amount":"470599217.583903307047933972"},{"denom":"ASSET15","amount":"9816490.167465621662852440"},{"denom":"ASSET16","amount":"5731164.000000000000000000"},{"denom":"ASSET17","amount":"1544630650.030464044335103961"},{"denom":"ASSET18","amount":"654960009.462336486950477472"},{"denom":"ASSET2","amount":"940483481.097357900326068592"},{"denom":"ASSET3","amount":"59127518.048785667260405458"},{"denom":"ASSET4","amount":"386407624.772560299778280508"},{"denom":"ASSET5","amount":"740908783.910939102377010837"},{"denom":"ASSET6","amount":"156185568.856993637313151026"},{"denom":"ASSET7","amount":"204863790.549792607340223816"},{"denom":"ASSET8","amount":"983384849.914065704546501783"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004869887299521"},{"denom":"ASSET1","index":"0.000039833201749803"},{"denom":"ASSET10","index":"0.000034582858915370"},{"denom":"ASSET11","index":"0.000041435041927464"},{"denom":"ASSET12","index":"0.000039458673939422"},{"denom":"ASSET13","index":"0.000013374077274086"},{"denom":"ASSET14","index":"0.000038227321273771"},{"denom":"ASSET15","index":"0.000031036572157357"},{"denom":"ASSET16","index":"0.000017673006815143"},{"denom":"ASSET17","index":"0.000014330426863021"},{"denom":"ASSET18","index":"0.000005948072747599"},{"denom":"ASSET2","index":"0.000012025751405231"},{"denom":"ASSET3","index":"0.000003457845736897"},{"denom":"ASSET4","index":"0.000032658443884182"},{"denom":"ASSET5","index":"0.000002715628165746"},{"denom":"ASSET6","index":"0.000011086570965892"},{"denom":"ASSET7","index":"0.000017122805990068"},{"denom":"ASSET8","index":"0.000024682545172353"},{"denom":"ASSET9","index":"0.000009889623407986"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"999499538.150143837894176804"},{"denom":"ASSET10","amount":"217124761.000000000000000000"},{"denom":"ASSET11","amount":"326059435.999999996403367905"},{"denom":"ASSET14","amount":"40533661.000000000000000000"},{"denom":"ASSET17","amount":"1736207754.000000048647029696"},{"denom":"ASSET18","amount":"8469756.010981904913536323"},{"denom":"ASSET2","amount":"207113846.000000000000000000"},{"denom":"ASSET3","amount":"1000000000.000000000000000000"},{"denom":"ASSET4","amount":"1000000000.000000000000000000"},{"denom":"ASSET5","amount":"401155297.078352537574136227"},{"denom":"ASSET6","amount":"2343349401.834112147846085496"},{"denom":"ASSET8","amount":"162181304.000000000000000000"},{"denom":"ASSET9","amount":"1337811434.335162041594364656"}],"validator_shares":[{"denom":"ASSET0","amount":"999499538.150143818739552937"},{"denom":"ASSET10","amount":"217176963.102650319948256539"},{"denom":"ASSET11","amount":"326059436.000000000000000000"},{"denom":"ASSET14","amount":"40537410.530351998671884448"},{"denom":"ASSET17","amount":"1736321383.559713631740878306"},{"denom":"ASSET18","amount":"8469756.010981917239852907"},{"denom":"ASSET2","amount":"207119843.767291810798738596"},{"denom":"ASSET3","amount":"1000000000.000000000000000000"},{"denom":"ASSET4","amount":"1000000000.000000000000000000"},{"denom":"ASSET5","amount":"401157954.420181229617254999"},{"denom":"ASSET6","amount":"2343349401.834112119785521288"},{"denom":"ASSET8","amount":"162198670.198405345637063976"},{"denom":"ASSET9","amount":"1337844615.358140448502942916"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004345312717672"},{"denom":"ASSET1","index":"0.000035604481385598"},{"denom":"ASSET10","index":"0.000031025251807557"},{"denom":"ASSET11","index":"0.000037050439443017"},{"denom":"ASSET12","index":"0.000035357849973215"},{"denom":"ASSET13","index":"0.000011959438767370"},{"denom":"ASSET14","index":"0.000034157085094566"},{"denom":"ASSET15","index":"0.000027818837624992"},{"denom":"ASSET16","index":"0.000015786420178891"},{"denom":"ASSET17","index":"0.000012844831922266"},{"denom":"ASSET18","index":"0.000005300827971603"},{"denom":"ASSET2","index":"0.000010757857285958"},{"denom":"ASSET3","index":"0.000003085036200990"},{"denom":"ASSET4","index":"0.000029183444212257"},{"denom":"ASSET5","index":"0.000002421411109851"},{"denom":"ASSET6","index":"0.000009889451981084"},{"denom":"ASSET7","index":"0.000015294049995907"},{"denom":"ASSET8","index":"0.000022067283766323"},{"denom":"ASSET9","index":"0.000008843518625722"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"312435998.000000000000000000"},{"denom":"ASSET1","amount":"1014615318.337179897135362397"},{"denom":"ASSET10","amount":"2416646.999999999224627580"},{"denom":"ASSET11","amount":"1500721769.767288227902607960"},{"denom":"ASSET12","amount":"719463949.215944227330634545"},{"denom":"ASSET13","amount":"1379535124.993306930729325744"},{"denom":"ASSET14","amount":"195854231.000000000000000000"},{"denom":"ASSET16","amount":"2162878967.395195396250017241"},{"denom":"ASSET18","amount":"5668695.000000000000000000"},{"denom":"ASSET2","amount":"799827878.000000000000000000"},{"denom":"ASSET3","amount":"1239739875.672357209019419195"},{"denom":"ASSET4","amount":"471407096.999999966875858812"},{"denom":"ASSET5","amount":"60033139.000000000000000000"},{"denom":"ASSET6","amount":"324470044.000000000000000000"},{"denom":"ASSET7","amount":"608538613.454396412952705016"},{"denom":"ASSET8","amount":"567386891.014323768075983908"}],"validator_shares":[{"denom":"ASSET0","amount":"312442500.069002859893329636"},{"denom":"ASSET1","amount":"1014615318.337179647912134268"},{"denom":"ASSET10","amount":"2416647.000000000000000000"},{"denom":"ASSET11","amount":"1500853957.770357394706496384"},{"denom":"ASSET12","amount":"719529704.418839178279758593"},{"denom":"ASSET13","amount":"1379578362.077489550179398704"},{"denom":"ASSET14","amount":"195890467.319410983483403588"},{"denom":"ASSET16","amount":"2163033574.430695635968508421"},{"denom":"ASSET18","amount":"5668855.506274493923893045"},{"denom":"ASSET2","amount":"799874202.760817307089525642"},{"denom":"ASSET3","amount":"1239739875.672357188260516676"},{"denom":"ASSET4","amount":"471444780.876380738770760088"},{"denom":"ASSET5","amount":"60033139.000000000000000000"},{"denom":"ASSET6","amount":"324488788.526595619590388192"},{"denom":"ASSET7","amount":"608564203.647590513060551559"},{"denom":"ASSET8","amount":"567417267.793200130455712211"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000005025135283889"},{"denom":"ASSET1","index":"0.000041150902230665"},{"denom":"ASSET10","index":"0.000035503906252523"},{"denom":"ASSET11","index":"0.000042698139065522"},{"denom":"ASSET12","index":"0.000040613177204205"},{"denom":"ASSET13","index":"0.000013762722497172"},{"denom":"ASSET14","index":"0.000039399391051892"},{"denom":"ASSET15","index":"0.000031885867220772"},{"denom":"ASSET16","index":"0.000018264474504804"},{"denom":"ASSET17","index":"0.000014756668842278"},{"denom":"ASSET18","index":"0.000006143633971099"},{"denom":"ASSET2","index":"0.000012417834673698"},{"denom":"ASSET3","index":"0.000003569934151742"},{"denom":"ASSET4","index":"0.000033724592875945"},{"denom":"ASSET5","index":"0.000002802367388675"},{"denom":"ASSET6","index":"0.000011436693406867"},{"denom":"ASSET7","index":"0.000017665780825714"},{"denom":"ASSET8","index":"0.000025384816720225"},{"denom":"ASSET9","index":"0.000010198330599342"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"600806600.041975399839567270"},{"denom":"ASSET1","amount":"695232218.602669094367658089"},{"denom":"ASSET11","amount":"333350026.000000000000000000"},{"denom":"ASSET13","amount":"1474419911.758496168052327362"},{"denom":"ASSET14","amount":"1079150702.499285877053862171"},{"denom":"ASSET15","amount":"1921448090.560646641386625941"},{"denom":"ASSET16","amount":"1593122870.683950750993801073"},{"denom":"ASSET17","amount":"1426028145.800219758551594366"},{"denom":"ASSET2","amount":"968475501.694238447500350422"},{"denom":"ASSET3","amount":"356226123.000000000000000000"},{"denom":"ASSET4","amount":"769687940.522984057758126346"},{"denom":"ASSET5","amount":"1545839453.148595368339472312"},{"denom":"ASSET6","amount":"1874717021.000000016803461414"},{"denom":"ASSET7","amount":"1363186438.207840251750072720"},{"denom":"ASSET8","amount":"512619698.000000002327449916"},{"denom":"ASSET9","amount":"1525279321.972586046826076740"}],"validator_shares":[{"denom":"ASSET0","amount":"600812851.672869890139120936"},{"denom":"ASSET1","amount":"695232218.602669049819139306"},{"denom":"ASSET11","amount":"333438121.113633730817648484"},{"denom":"ASSET13","amount":"1474419911.758496164009437884"},{"denom":"ASSET14","amount":"1079150702.499285879981896428"},{"denom":"ASSET15","amount":"1921448090.560647304296374216"},{"denom":"ASSET16","amount":"1593179809.517593175613764279"},{"denom":"ASSET17","amount":"1426074809.666925423969340893"},{"denom":"ASSET2","amount":"968475501.694238480323992992"},{"denom":"ASSET3","amount":"356230804.972593834374754003"},{"denom":"ASSET4","amount":"769687940.522984056686587116"},{"denom":"ASSET5","amount":"1545839453.148595375792391168"},{"denom":"ASSET6","amount":"1874771171.125003343479049377"},{"denom":"ASSET7","amount":"1363186438.207840293118238440"},{"denom":"ASSET8","amount":"512674588.762143313153144662"},{"denom":"ASSET9","amount":"1525317152.661524628444014034"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004648504890947"},{"denom":"ASSET1","index":"0.000038005743874569"},{"denom":"ASSET10","index":"0.000032973191285320"},{"denom":"ASSET11","index":"0.000039537922548136"},{"denom":"ASSET12","index":"0.000037627878871705"},{"denom":"ASSET13","index":"0.000012761305026200"},{"denom":"ASSET14","index":"0.000036486034554196"},{"denom":"ASSET15","index":"0.000029598314517611"},{"denom":"ASSET16","index":"0.000016865856154882"},{"denom":"ASSET17","index":"0.000013663949051484"},{"denom":"ASSET18","index":"0.000005680718279797"},{"denom":"ASSET2","index":"0.000011470109605632"},{"denom":"ASSET3","index":"0.000003301336964385"},{"denom":"ASSET4","index":"0.000031164977367323"},{"denom":"ASSET5","index":"0.000002591469654587"},{"denom":"ASSET6","index":"0.000010585594458273"},{"denom":"ASSET7","index":"0.000016342370501086"},{"denom":"ASSET8","index":"0.000023556637867710"},{"denom":"ASSET9","index":"0.000009435212020595"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"367785004.290111032848542760"},{"denom":"ASSET11","amount":"319932132.000000000000000000"},{"denom":"ASSET12","amount":"436122074.293711928088370421"},{"denom":"ASSET13","amount":"764784903.126790065329941280"},{"denom":"ASSET15","amount":"456083816.708288850549061670"},{"denom":"ASSET16","amount":"1719428923.716672329490139786"},{"denom":"ASSET17","amount":"1073776488.709323703384112435"},{"denom":"ASSET3","amount":"161226241.746013451320720778"},{"denom":"ASSET4","amount":"667611925.783077733224095974"},{"denom":"ASSET7","amount":"855930534.000000000000000000"},{"denom":"ASSET8","amount":"641139815.741567096514801841"},{"denom":"ASSET9","amount":"385656345.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"367788831.238908185508360811"},{"denom":"ASSET11","amount":"319988495.611390988342877072"},{"denom":"ASSET12","amount":"436122074.293711893916336560"},{"denom":"ASSET13","amount":"764832843.294655986143539584"},{"denom":"ASSET15","amount":"456112367.370848738735265256"},{"denom":"ASSET16","amount":"1719428923.716672351565128425"},{"denom":"ASSET17","amount":"1073776488.709323672745287989"},{"denom":"ASSET3","amount":"161226241.746013454919824441"},{"denom":"ASSET4","amount":"667611925.783077741154208632"},{"denom":"ASSET7","amount":"855966527.488731072180224466"},{"denom":"ASSET8","amount":"641174141.107063008808875947"},{"denom":"ASSET9","amount":"385656345.000000000000000000"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004648549344493"},{"denom":"ASSET1","index":"0.000037978316533688"},{"denom":"ASSET10","index":"0.000033290219143121"},{"denom":"ASSET11","index":"0.000039657248197361"},{"denom":"ASSET12","index":"0.000037837866302733"},{"denom":"ASSET13","index":"0.000012824764012983"},{"denom":"ASSET14","index":"0.000036575099744730"},{"denom":"ASSET15","index":"0.000029843051210200"},{"denom":"ASSET16","index":"0.000016840537595639"},{"denom":"ASSET17","index":"0.000013732356341625"},{"denom":"ASSET18","index":"0.000005671766950170"},{"denom":"ASSET2","index":"0.000011472292881176"},{"denom":"ASSET3","index":"0.000003300384266933"},{"denom":"ASSET4","index":"0.000031156816061403"},{"denom":"ASSET5","index":"0.000002591035551297"},{"denom":"ASSET6","index":"0.000010590406767696"},{"denom":"ASSET7","index":"0.000016355259958069"},{"denom":"ASSET8","index":"0.000023691797848915"},{"denom":"ASSET9","index":"0.000009453837376185"}],"total_delegator_shares":[{"denom":"ASSET11","amount":"950339555.000000000000000000"},{"denom":"ASSET12","amount":"36692941.000000000000000000"},{"denom":"ASSET13","amount":"1490243204.181654871356741958"},{"denom":"ASSET14","amount":"221721908.000000000000000000"},{"denom":"ASSET15","amount":"1649125384.000000009456093976"},{"denom":"ASSET17","amount":"541100967.000000000000000000"},{"denom":"ASSET2","amount":"973788051.000000000000000000"},{"denom":"ASSET3","amount":"1422903396.214779749316266624"},{"denom":"ASSET4","amount":"192812435.000000000000000000"},{"denom":"ASSET6","amount":"1014782967.033870361891665025"}],"validator_shares":[{"denom":"ASSET0","amount":"0.798652752034014564"},{"denom":"ASSET10","amount":"0.547883324532855282"},{"denom":"ASSET11","amount":"950339555.000000000000000000"},{"denom":"ASSET12","amount":"36692941.000000000000000000"},{"denom":"ASSET13","amount":"1490289911.053922583160961939"},{"denom":"ASSET14","amount":"221762930.273747564299985584"},{"denom":"ASSET15","amount":"1649228618.582400479971893696"},{"denom":"ASSET17","amount":"541118673.427094550000439446"},{"denom":"ASSET2","amount":"973844451.257843133892086789"},{"denom":"ASSET3","amount":"1422903396.214779735090944128"},{"denom":"ASSET4","amount":"192827848.259603958040303240"},{"denom":"ASSET6","amount":"1014812278.457354828540960031"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004545294507794"},{"denom":"ASSET1","index":"0.000037192694983912"},{"denom":"ASSET10","index":"0.000032262715242687"},{"denom":"ASSET11","index":"0.000038670034921742"},{"denom":"ASSET12","index":"0.000036825082134373"},{"denom":"ASSET13","index":"0.000012477999234476"},{"denom":"ASSET14","index":"0.000035675231103004"},{"denom":"ASSET15","index":"0.000028955126539269"},{"denom":"ASSET16","index":"0.000016501479711143"},{"denom":"ASSET17","index":"0.000013375565376674"},{"denom":"ASSET18","index":"0.000005551584309232"},{"denom":"ASSET2","index":"0.000011228299311701"},{"denom":"ASSET3","index":"0.000003227045554533"},{"denom":"ASSET4","index":"0.000030489570113631"},{"denom":"ASSET5","index":"0.000002534727468650"},{"denom":"ASSET6","index":"0.000010345764684520"},{"denom":"ASSET7","index":"0.000015981527512644"},{"denom":"ASSET8","index":"0.000023025532506718"},{"denom":"ASSET9","index":"0.000009230960558874"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"947674396.000000000000000000"},{"denom":"ASSET1","amount":"1284238048.806298895868040825"},{"denom":"ASSET10","amount":"569169503.696184127583588422"},{"denom":"ASSET12","amount":"156172936.000000000000000000"},{"denom":"ASSET13","amount":"1352271937.123471335933840264"},{"denom":"ASSET16","amount":"718627593.108225214586652930"},{"denom":"ASSET17","amount":"1281702177.999999995450888737"},{"denom":"ASSET18","amount":"1411765315.564331854479217495"},{"denom":"ASSET3","amount":"1840664118.963117467854330686"},{"denom":"ASSET4","amount":"154923435.254972909927210491"},{"denom":"ASSET5","amount":"802993454.000000000000000000"},{"denom":"ASSET7","amount":"405703069.284165983496643552"},{"denom":"ASSET8","amount":"1697916213.507767731681200585"},{"denom":"ASSET9","amount":"145430033.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"947703979.053591100001455876"},{"denom":"ASSET1","amount":"1284238048.806298875479509207"},{"denom":"ASSET10","amount":"569169503.696184132887560972"},{"denom":"ASSET12","amount":"156201484.062977440313774632"},{"denom":"ASSET13","amount":"1352356703.628930637980894112"},{"denom":"ASSET16","amount":"718627593.108225215992756794"},{"denom":"ASSET17","amount":"1281786061.540915313098281242"},{"denom":"ASSET18","amount":"1411765315.564331903743768565"},{"denom":"ASSET3","amount":"1840676215.101581158915904471"},{"denom":"ASSET4","amount":"154923435.254972905508360326"},{"denom":"ASSET5","amount":"802998773.207075758868540676"},{"denom":"ASSET7","amount":"405720129.861248151409113128"},{"denom":"ASSET8","amount":"1698007116.604376219044358238"},{"denom":"ASSET9","amount":"145437247.133291540291341064"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004661893028622"},{"denom":"ASSET1","index":"0.000038137975825711"},{"denom":"ASSET10","index":"0.000033150085518927"},{"denom":"ASSET11","index":"0.000039682713064008"},{"denom":"ASSET12","index":"0.000037808386674166"},{"denom":"ASSET13","index":"0.000012809978062150"},{"denom":"ASSET14","index":"0.000036604760467577"},{"denom":"ASSET15","index":"0.000029743967314677"},{"denom":"ASSET16","index":"0.000016918476649108"},{"denom":"ASSET17","index":"0.000013731443491498"},{"denom":"ASSET18","index":"0.000005692314706836"},{"denom":"ASSET2","index":"0.000011516703436018"},{"denom":"ASSET3","index":"0.000003310212659144"},{"denom":"ASSET4","index":"0.000031268129730844"},{"denom":"ASSET5","index":"0.000002599699609420"},{"denom":"ASSET6","index":"0.000010611913552986"},{"denom":"ASSET7","index":"0.000016393433257001"},{"denom":"ASSET8","index":"0.000023641582691432"},{"denom":"ASSET9","index":"0.000009470669846110"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"901540749.969293562903382118"},{"denom":"ASSET1","amount":"1000000000.000000000000000000"},{"denom":"ASSET10","amount":"999839749.000000000000000000"},{"denom":"ASSET11","amount":"609172344.000000000000000000"},{"denom":"ASSET12","amount":"52903514.000000000000000000"},{"denom":"ASSET13","amount":"458401444.000000000000000000"},{"denom":"ASSET14","amount":"1105335226.872496941959737240"},{"denom":"ASSET15","amount":"41493.163531164725146950"},{"denom":"ASSET16","amount":"952697475.000000000000000000"},{"denom":"ASSET18","amount":"1563210437.790960818821453551"},{"denom":"ASSET2","amount":"624975297.000000000000000000"},{"denom":"ASSET5","amount":"63456749.682576364961715038"},{"denom":"ASSET6","amount":"283384389.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"901540749.969293540122624275"},{"denom":"ASSET1","amount":"1000000000.000000000000000000"},{"denom":"ASSET10","amount":"999999999.950590620027849451"},{"denom":"ASSET11","amount":"609226001.698116023480269296"},{"denom":"ASSET12","amount":"52913184.643890564337754018"},{"denom":"ASSET13","amount":"458430178.670474657260052592"},{"denom":"ASSET14","amount":"1105335226.872496929590152640"},{"denom":"ASSET15","amount":"41493.163531144264895832"},{"denom":"ASSET16","amount":"952697475.000000000000000000"},{"denom":"ASSET18","amount":"1563210437.790960870504357560"},{"denom":"ASSET2","amount":"625011494.576936985010938183"},{"denom":"ASSET5","amount":"63456749.682576358475151098"},{"denom":"ASSET6","amount":"283392574.395404454545018793"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004025900971927"},{"denom":"ASSET1","index":"0.000032866990223703"},{"denom":"ASSET10","index":"0.000029177590451167"},{"denom":"ASSET11","index":"0.000034457399555284"},{"denom":"ASSET12","index":"0.000033006816481640"},{"denom":"ASSET13","index":"0.000011167120321398"},{"denom":"ASSET14","index":"0.000031745829379235"},{"denom":"ASSET15","index":"0.000026105610144876"},{"denom":"ASSET16","index":"0.000014556334682662"},{"denom":"ASSET17","index":"0.000011974632893267"},{"denom":"ASSET18","index":"0.000004894173072333"},{"denom":"ASSET2","index":"0.000009948255093659"},{"denom":"ASSET3","index":"0.000002854082481256"},{"denom":"ASSET4","index":"0.000026972415235685"},{"denom":"ASSET5","index":"0.000002244012673462"},{"denom":"ASSET6","index":"0.000009165742222560"},{"denom":"ASSET7","index":"0.000014171217677897"},{"denom":"ASSET8","index":"0.000020639253265734"},{"denom":"ASSET9","index":"0.000008207596762469"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"2559056977.747945195655336918"},{"denom":"ASSET1","amount":"1647579666.000000011205408454"},{"denom":"ASSET10","amount":"770130855.602149150582084951"},{"denom":"ASSET11","amount":"1368261272.287519343550795125"},{"denom":"ASSET13","amount":"227846627.000000000000000000"},{"denom":"ASSET14","amount":"691062526.000000000000000000"},{"denom":"ASSET16","amount":"236562339.000000000000000000"},{"denom":"ASSET17","amount":"1000000000.000000000000000000"},{"denom":"ASSET3","amount":"791177536.735389372776624928"},{"denom":"ASSET4","amount":"171379702.000000000000000000"},{"denom":"ASSET5","amount":"30386366.000000000000000000"},{"denom":"ASSET6","amount":"971899794.105295501322834344"},{"denom":"ASSET8","amount":"130485521.000000000000000000"},{"denom":"ASSET9","amount":"633868043.199439868302204641"}],"validator_shares":[{"denom":"ASSET0","amount":"2559056977.747945245109357663"},{"denom":"ASSET1","amount":"1647700484.169544177418775516"},{"denom":"ASSET10","amount":"770130855.602149146344307564"},{"denom":"ASSET11","amount":"1368502323.986424856088880122"},{"denom":"ASSET13","amount":"227846627.000000000000000000"},{"denom":"ASSET14","amount":"691126452.125902268520504768"},{"denom":"ASSET16","amount":"236587704.398220304260685983"},{"denom":"ASSET17","amount":"1000000000.000000000000000000"},{"denom":"ASSET3","amount":"791182736.050644794273522582"},{"denom":"ASSET4","amount":"171379702.000000000000000000"},{"denom":"ASSET5","amount":"30386567.286040662790642404"},{"denom":"ASSET6","amount":"971927866.872947241546344684"},{"denom":"ASSET8","amount":"130485521.000000000000000000"},{"denom":"ASSET9","amount":"633868043.199439868167377320"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004613485224377"},{"denom":"ASSET1","index":"0.000037740369506725"},{"denom":"ASSET10","index":"0.000032691878864798"},{"denom":"ASSET11","index":"0.000039232152349692"},{"denom":"ASSET12","index":"0.000037331153749090"},{"denom":"ASSET13","index":"0.000012657550996453"},{"denom":"ASSET14","index":"0.000036202019838156"},{"denom":"ASSET15","index":"0.000029349029406985"},{"denom":"ASSET16","index":"0.000016745236814022"},{"denom":"ASSET17","index":"0.000013558784939453"},{"denom":"ASSET18","index":"0.000005636901817265"},{"denom":"ASSET2","index":"0.000011389634856992"},{"denom":"ASSET3","index":"0.000003276670342419"},{"denom":"ASSET4","index":"0.000030939743993790"},{"denom":"ASSET5","index":"0.000002570403032325"},{"denom":"ASSET6","index":"0.000010502839382187"},{"denom":"ASSET7","index":"0.000016219772344493"},{"denom":"ASSET8","index":"0.000023358092187368"},{"denom":"ASSET9","index":"0.000009362632929320"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"1110068663.474472215395560388"},{"denom":"ASSET1","amount":"1445594469.707685579785274231"},{"denom":"ASSET11","amount":"1468168983.078124700032223925"},{"denom":"ASSET12","amount":"1966049714.692251709861135750"},{"denom":"ASSET13","amount":"670149516.000000000000000000"},{"denom":"ASSET15","amount":"590997001.000000000000000000"},{"denom":"ASSET16","amount":"945915912.865222605939814235"},{"denom":"ASSET17","amount":"130887379.002554565727132526"},{"denom":"ASSET18","amount":"789738519.653658415861970782"},{"denom":"ASSET3","amount":"1007463852.241260128000000000"},{"denom":"ASSET4","amount":"57558986.000000041905138929"},{"denom":"ASSET7","amount":"2158441156.213406420830970498"},{"denom":"ASSET8","amount":"115834.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"1110068663.474472631000000000"},{"denom":"ASSET1","amount":"1445700476.161478067180991018"},{"denom":"ASSET11","amount":"1468427635.766434562127752538"},{"denom":"ASSET12","amount":"1966229401.246432399381658800"},{"denom":"ASSET13","amount":"670191523.994876672013908688"},{"denom":"ASSET15","amount":"591033997.173359594011530744"},{"denom":"ASSET16","amount":"945915912.865222565001219289"},{"denom":"ASSET17","amount":"130891662.025456452931307202"},{"denom":"ASSET18","amount":"789749700.107243659471934267"},{"denom":"ASSET3","amount":"1007470472.907207252261251758"},{"denom":"ASSET4","amount":"57558986.000000000000000000"},{"denom":"ASSET7","amount":"2158441156.213406388117172576"},{"denom":"ASSET8","amount":"115852.605566705784714482"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000003932141229954"},{"denom":"ASSET1","index":"0.000031982273733453"},{"denom":"ASSET10","index":"0.000028524807141068"},{"denom":"ASSET11","index":"0.000033650870548373"},{"denom":"ASSET12","index":"0.000032189741660520"},{"denom":"ASSET13","index":"0.000010928281530915"},{"denom":"ASSET14","index":"0.000031029292859346"},{"denom":"ASSET15","index":"0.000025528430167550"},{"denom":"ASSET16","index":"0.000014169702033303"},{"denom":"ASSET17","index":"0.000011665236620037"},{"denom":"ASSET18","index":"0.000004785741423778"},{"denom":"ASSET2","index":"0.000009671723513504"},{"denom":"ASSET3","index":"0.000002787177463987"},{"denom":"ASSET4","index":"0.000026276537470003"},{"denom":"ASSET5","index":"0.000002193093087113"},{"denom":"ASSET6","index":"0.000008967187788370"},{"denom":"ASSET7","index":"0.000013834455896763"},{"denom":"ASSET8","index":"0.000020224290111997"},{"denom":"ASSET9","index":"0.000008004370791503"}],"total_delegator_shares":[{"denom":"ASSET1","amount":"1403821558.070570529715873856"},{"denom":"ASSET10","amount":"348206629.000000000000000000"},{"denom":"ASSET11","amount":"895169738.999999983813913252"},{"denom":"ASSET12","amount":"1277294933.980604748200630329"},{"denom":"ASSET13","amount":"2116579383.947720627496139922"},{"denom":"ASSET14","amount":"974517085.999999790672456190"},{"denom":"ASSET16","amount":"232939044.999999995898503600"},{"denom":"ASSET18","amount":"1175701358.000000013353538121"},{"denom":"ASSET2","amount":"1107215610.901107000703014353"},{"denom":"ASSET3","amount":"160120341.033956492063210115"},{"denom":"ASSET4","amount":"311686230.000000000000000000"},{"denom":"ASSET5","amount":"444089533.000000000000000000"},{"denom":"ASSET6","amount":"570545642.000000000000000000"},{"denom":"ASSET8","amount":"512294191.000000000000000000"},{"denom":"ASSET9","amount":"645900763.432234374946633752"}],"validator_shares":[{"denom":"ASSET1","amount":"1403821558.070570525110997888"},{"denom":"ASSET10","amount":"348206629.000000000000000000"},{"denom":"ASSET11","amount":"895327444.320133235200787244"},{"denom":"ASSET12","amount":"1277294934.505576710280076764"},{"denom":"ASSET13","amount":"2116579383.947720525031991400"},{"denom":"ASSET14","amount":"974697388.014510765716573128"},{"denom":"ASSET16","amount":"232939045.000000000000000000"},{"denom":"ASSET18","amount":"1175734647.398157781832291498"},{"denom":"ASSET2","amount":"1107247674.530382879223064161"},{"denom":"ASSET3","amount":"160121393.283411475065685397"},{"denom":"ASSET4","amount":"311736063.844531193767028460"},{"denom":"ASSET5","amount":"444098358.307250573161793024"},{"denom":"ASSET6","amount":"570595083.056859454929659848"},{"denom":"ASSET8","amount":"512349046.907206246369896429"},{"denom":"ASSET9","amount":"645900763.432234375139977448"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004988100402711"},{"denom":"ASSET1","index":"0.000040830811222204"},{"denom":"ASSET10","index":"0.000035211557233449"},{"denom":"ASSET11","index":"0.000042368225765116"},{"denom":"ASSET12","index":"0.000040283068049268"},{"denom":"ASSET13","index":"0.000013656840057503"},{"denom":"ASSET14","index":"0.000039101529800040"},{"denom":"ASSET15","index":"0.000031628202661313"},{"denom":"ASSET16","index":"0.000018124368514983"},{"denom":"ASSET17","index":"0.000014635120510330"},{"denom":"ASSET18","index":"0.000006099363487354"},{"denom":"ASSET2","index":"0.000012317983770908"},{"denom":"ASSET3","index":"0.000003543214603465"},{"denom":"ASSET4","index":"0.000033464976861775"},{"denom":"ASSET5","index":"0.000002781716792708"},{"denom":"ASSET6","index":"0.000011353508340787"},{"denom":"ASSET7","index":"0.000017532655976265"},{"denom":"ASSET8","index":"0.000025192183938276"},{"denom":"ASSET9","index":"0.000010118614836237"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"832786092.000000000000000000"},{"denom":"ASSET1","amount":"1544778055.448390126017740634"},{"denom":"ASSET10","amount":"1023074325.954296335166062056"},{"denom":"ASSET11","amount":"1047551747.475354772592241043"},{"denom":"ASSET12","amount":"709493511.000000000000000000"},{"denom":"ASSET13","amount":"1166152102.999999988976581561"},{"denom":"ASSET14","amount":"56596449.005003140889913292"},{"denom":"ASSET15","amount":"46514409.174438445562130685"},{"denom":"ASSET17","amount":"1621055815.400646378441545201"},{"denom":"ASSET18","amount":"196805861.904444852680674011"},{"denom":"ASSET2","amount":"824778864.000000000000000000"},{"denom":"ASSET3","amount":"18125076.000000000000000000"},{"denom":"ASSET4","amount":"1113401473.231981778402213232"},{"denom":"ASSET6","amount":"395507150.296494036058770111"},{"denom":"ASSET7","amount":"948313664.287277502817869365"},{"denom":"ASSET8","amount":"477702898.732319410098936729"},{"denom":"ASSET9","amount":"356627651.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"832794757.469488671843568716"},{"denom":"ASSET1","amount":"1544778055.448389993529113911"},{"denom":"ASSET10","amount":"1023156310.095715250077810036"},{"denom":"ASSET11","amount":"1047551747.475354790137163532"},{"denom":"ASSET12","amount":"709623204.825017884289585907"},{"denom":"ASSET13","amount":"1166225202.674622825952560804"},{"denom":"ASSET14","amount":"56596449.005003134374682528"},{"denom":"ASSET15","amount":"46517320.957649908032913832"},{"denom":"ASSET16","amount":"0.812952985547746038"},{"denom":"ASSET17","amount":"1621055815.400646374015949643"},{"denom":"ASSET18","amount":"196808648.116272658750539939"},{"denom":"ASSET2","amount":"824850519.850016865968411376"},{"denom":"ASSET3","amount":"18125314.222588446061755636"},{"denom":"ASSET4","amount":"1113401473.231981786787246788"},{"denom":"ASSET6","amount":"395507150.296494038148955448"},{"denom":"ASSET7","amount":"948313664.287277609122049278"},{"denom":"ASSET8","amount":"477702898.732319294459204141"},{"denom":"ASSET9","amount":"356627651.000000000000000000"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004713052793206"},{"denom":"ASSET1","index":"0.000038540515083927"},{"denom":"ASSET10","index":"0.000033490360102272"},{"denom":"ASSET11","index":"0.000040107734635720"},{"denom":"ASSET12","index":"0.000038197935060603"},{"denom":"ASSET13","index":"0.000012948354360272"},{"denom":"ASSET14","index":"0.000037002954624969"},{"denom":"ASSET15","index":"0.000030054303395937"},{"denom":"ASSET16","index":"0.000017098583157054"},{"denom":"ASSET17","index":"0.000013871074640540"},{"denom":"ASSET18","index":"0.000005756151421242"},{"denom":"ASSET2","index":"0.000011635316491200"},{"denom":"ASSET3","index":"0.000003346046298358"},{"denom":"ASSET4","index":"0.000031600919386329"},{"denom":"ASSET5","index":"0.000002627879191745"},{"denom":"ASSET6","index":"0.000010730060131595"},{"denom":"ASSET7","index":"0.000016571778991047"},{"denom":"ASSET8","index":"0.000023899875611587"},{"denom":"ASSET9","index":"0.000009570555980860"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"123299776.999999868238478388"},{"denom":"ASSET1","amount":"132632199.495184523820107122"},{"denom":"ASSET10","amount":"525912815.244839184886919593"},{"denom":"ASSET11","amount":"1066998099.589623116700870919"},{"denom":"ASSET12","amount":"650258689.999999909736079975"},{"denom":"ASSET14","amount":"217831832.306960136083803456"},{"denom":"ASSET15","amount":"476237779.891758335810665203"},{"denom":"ASSET16","amount":"658297232.403681739633032018"},{"denom":"ASSET17","amount":"576937590.000000000000000000"},{"denom":"ASSET18","amount":"1618954540.488909737391234101"},{"denom":"ASSET2","amount":"662419309.997761270716812205"},{"denom":"ASSET5","amount":"507603248.454440734608788382"},{"denom":"ASSET6","amount":"37539773.900854183380087696"},{"denom":"ASSET8","amount":"141130377.126232692792034127"},{"denom":"ASSET9","amount":"518412786.059729702950022053"}],"validator_shares":[{"denom":"ASSET0","amount":"123299777.000000000000000000"},{"denom":"ASSET1","amount":"132632199.495184644953472338"},{"denom":"ASSET10","amount":"525954959.309571734833981579"},{"denom":"ASSET11","amount":"1066998099.589623120243663926"},{"denom":"ASSET12","amount":"650377555.832385630747111530"},{"denom":"ASSET14","amount":"217872134.851424231694882296"},{"denom":"ASSET15","amount":"476237779.891758333573210536"},{"denom":"ASSET16","amount":"658297232.403681727389534170"},{"denom":"ASSET17","amount":"576937590.000000000000000000"},{"denom":"ASSET18","amount":"1618977460.285331142808039203"},{"denom":"ASSET2","amount":"662419309.997761275676544997"},{"denom":"ASSET5","amount":"507603248.791546554197363684"},{"denom":"ASSET6","amount":"37539773.900854182276188461"},{"denom":"ASSET8","amount":"141130377.126232693944146919"},{"denom":"ASSET9","amount":"518412786.059729615963975252"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000005022043474041"},{"denom":"ASSET1","index":"0.000041096794239441"},{"denom":"ASSET10","index":"0.000035574671940647"},{"denom":"ASSET11","index":"0.000042700481411828"},{"denom":"ASSET12","index":"0.000040638297029532"},{"denom":"ASSET13","index":"0.000013773808455342"},{"denom":"ASSET14","index":"0.000039399672265895"},{"denom":"ASSET15","index":"0.000031937841897211"},{"denom":"ASSET16","index":"0.000018237403653439"},{"denom":"ASSET17","index":"0.000014762079157320"},{"denom":"ASSET18","index":"0.000006137029310650"},{"denom":"ASSET2","index":"0.000012403796445196"},{"denom":"ASSET3","index":"0.000003566759582791"},{"denom":"ASSET4","index":"0.000033688477201807"},{"denom":"ASSET5","index":"0.000002800829165762"},{"denom":"ASSET6","index":"0.000011431718580511"},{"denom":"ASSET7","index":"0.000017656166797885"},{"denom":"ASSET8","index":"0.000025414309681597"},{"denom":"ASSET9","index":"0.000010194770419860"}],"total_delegator_shares":[{"denom":"ASSET1","amount":"973315763.000000000000000000"},{"denom":"ASSET10","amount":"827071042.044444021935624730"},{"denom":"ASSET11","amount":"1234366368.387482703547714336"},{"denom":"ASSET12","amount":"842980863.000000000000000000"},{"denom":"ASSET13","amount":"1542527118.000000000000000000"},{"denom":"ASSET14","amount":"1349872.000000000478627264"},{"denom":"ASSET15","amount":"314779965.430901019810932220"},{"denom":"ASSET16","amount":"1215510300.550689076139755706"},{"denom":"ASSET17","amount":"1002375770.000001379000000000"},{"denom":"ASSET18","amount":"1899167427.954295813479033996"},{"denom":"ASSET2","amount":"183255510.000000000000000000"},{"denom":"ASSET4","amount":"2553543708.251967673795053032"},{"denom":"ASSET5","amount":"659676780.000000001651556255"},{"denom":"ASSET6","amount":"1000000000.000000000000000000"},{"denom":"ASSET8","amount":"804610970.882100346005745512"}],"validator_shares":[{"denom":"ASSET1","amount":"973458516.090580960198485699"},{"denom":"ASSET10","amount":"827071042.044443597554422634"},{"denom":"ASSET11","amount":"1234475095.020613312367916142"},{"denom":"ASSET12","amount":"843134958.014040723325049931"},{"denom":"ASSET13","amount":"1542623810.558485816539850824"},{"denom":"ASSET14","amount":"1349872.000000000000000000"},{"denom":"ASSET15","amount":"314779965.430901018463512160"},{"denom":"ASSET16","amount":"1215553743.363586495646872819"},{"denom":"ASSET17","amount":"1002408570.705552700332716260"},{"denom":"ASSET18","amount":"1899167427.954295814023629096"},{"denom":"ASSET2","amount":"183255510.000000000000000000"},{"denom":"ASSET4","amount":"2553543708.251967720533614956"},{"denom":"ASSET5","amount":"659676780.000000000000000000"},{"denom":"ASSET6","amount":"1000086655.743589844000000000"},{"denom":"ASSET8","amount":"804610970.882100358423584008"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000005048911725696"},{"denom":"ASSET1","index":"0.000041320951448293"},{"denom":"ASSET10","index":"0.000035649771574261"},{"denom":"ASSET11","index":"0.000042887960848601"},{"denom":"ASSET12","index":"0.000040775936624057"},{"denom":"ASSET13","index":"0.000013826441376117"},{"denom":"ASSET14","index":"0.000039583869779468"},{"denom":"ASSET15","index":"0.000032021394062496"},{"denom":"ASSET16","index":"0.000018341994041795"},{"denom":"ASSET17","index":"0.000014812881950746"},{"denom":"ASSET18","index":"0.000006174249175365"},{"denom":"ASSET2","index":"0.000012465340095364"},{"denom":"ASSET3","index":"0.000003586498630693"},{"denom":"ASSET4","index":"0.000033869215713103"},{"denom":"ASSET5","index":"0.000002815466573700"},{"denom":"ASSET6","index":"0.000011494118983183"},{"denom":"ASSET7","index":"0.000017746598003219"},{"denom":"ASSET8","index":"0.000025507564581042"},{"denom":"ASSET9","index":"0.000010241737770259"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"552910602.018359568315470069"},{"denom":"ASSET1","amount":"434104760.999999999259731575"},{"denom":"ASSET12","amount":"2203073500.879817309991094200"},{"denom":"ASSET13","amount":"957326673.896974014008432436"},{"denom":"ASSET14","amount":"448147709.000000000000000000"},{"denom":"ASSET15","amount":"236220834.000000000000000000"},{"denom":"ASSET16","amount":"814066838.083502488523470722"},{"denom":"ASSET17","amount":"662782866.978387273333776258"},{"denom":"ASSET2","amount":"1573336736.779262338000000000"},{"denom":"ASSET4","amount":"1087224194.870806259312260013"},{"denom":"ASSET6","amount":"357705769.611858558419770038"},{"denom":"ASSET7","amount":"217046886.000000000000000000"},{"denom":"ASSET8","amount":"148002418.712757250713499900"},{"denom":"ASSET9","amount":"268074356.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"552916355.272403366602734977"},{"denom":"ASSET1","amount":"434168429.748236084077592553"},{"denom":"ASSET12","amount":"2203274850.155485016792240199"},{"denom":"ASSET13","amount":"957386683.451634878234416664"},{"denom":"ASSET14","amount":"448230623.846637265025559532"},{"denom":"ASSET15","amount":"236250409.582802879640164208"},{"denom":"ASSET16","amount":"814066838.083498229333847729"},{"denom":"ASSET17","amount":"662804555.197830998556021811"},{"denom":"ASSET2","amount":"1573382298.714406293083322028"},{"denom":"ASSET4","amount":"1087224194.870806259520539632"},{"denom":"ASSET6","amount":"357705769.611858558779735237"},{"denom":"ASSET7","amount":"217065140.844095684278550832"},{"denom":"ASSET8","amount":"148002418.712757254055653220"},{"denom":"ASSET9","amount":"268074356.000000000000000000"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004406145269356"},{"denom":"ASSET1","index":"0.000035982671068665"},{"denom":"ASSET10","index":"0.000031271738130447"},{"denom":"ASSET11","index":"0.000037474537578871"},{"denom":"ASSET12","index":"0.000035655856503069"},{"denom":"ASSET13","index":"0.000012104130170712"},{"denom":"ASSET14","index":"0.000034588610172798"},{"denom":"ASSET15","index":"0.000028072528074935"},{"denom":"ASSET16","index":"0.000015968874002764"},{"denom":"ASSET17","index":"0.000012944169264583"},{"denom":"ASSET18","index":"0.000005384646829137"},{"denom":"ASSET2","index":"0.000010857489792794"},{"denom":"ASSET3","index":"0.000003128490133943"},{"denom":"ASSET4","index":"0.000029514600008257"},{"denom":"ASSET5","index":"0.000002457760230967"},{"denom":"ASSET6","index":"0.000010037466684357"},{"denom":"ASSET7","index":"0.000015487392093402"},{"denom":"ASSET8","index":"0.000022350591386021"},{"denom":"ASSET9","index":"0.000008939890806059"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"660753961.107796295589200580"},{"denom":"ASSET1","amount":"81008097.695128304048258117"},{"denom":"ASSET10","amount":"159024385.000000000000000000"},{"denom":"ASSET11","amount":"1000000000.000000000000000000"},{"denom":"ASSET12","amount":"570402235.337617351332625508"},{"denom":"ASSET14","amount":"1131841120.454593608712931384"},{"denom":"ASSET15","amount":"57906609.000000002091167378"},{"denom":"ASSET16","amount":"2300447995.087946428845181953"},{"denom":"ASSET17","amount":"170853572.000000000000000000"},{"denom":"ASSET2","amount":"312323697.000000000000000000"},{"denom":"ASSET3","amount":"770794407.365852247542549061"},{"denom":"ASSET5","amount":"241769611.999999962432690723"},{"denom":"ASSET8","amount":"668889057.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"660753961.107796123387749990"},{"denom":"ASSET1","amount":"81014038.075605038606824555"},{"denom":"ASSET10","amount":"159024385.000000000000000000"},{"denom":"ASSET11","amount":"1000088082.951638434000000000"},{"denom":"ASSET12","amount":"570402235.337617348650101330"},{"denom":"ASSET14","amount":"1132050530.055570234259631466"},{"denom":"ASSET15","amount":"57906609.000000000000000000"},{"denom":"ASSET16","amount":"2300447995.087946411353931421"},{"denom":"ASSET17","amount":"170864753.850856923013155508"},{"denom":"ASSET2","amount":"312332741.517739890873768822"},{"denom":"ASSET3","amount":"770794407.365852252802710062"},{"denom":"ASSET5","amount":"241769612.000000000000000000"},{"denom":"ASSET7","amount":"0.104514351991690984"},{"denom":"ASSET8","amount":"668889057.000000000000000000"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004579400192033"},{"denom":"ASSET1","index":"0.000037472260458931"},{"denom":"ASSET10","index":"0.000032444794741920"},{"denom":"ASSET11","index":"0.000038938975596945"},{"denom":"ASSET12","index":"0.000037059285480927"},{"denom":"ASSET13","index":"0.000012561263189519"},{"denom":"ASSET14","index":"0.000035928426876446"},{"denom":"ASSET15","index":"0.000029127648221084"},{"denom":"ASSET16","index":"0.000016628374395061"},{"denom":"ASSET17","index":"0.000013461522639347"},{"denom":"ASSET18","index":"0.000005595935921704"},{"denom":"ASSET2","index":"0.000011310239971506"},{"denom":"ASSET3","index":"0.000003252341030929"},{"denom":"ASSET4","index":"0.000030717793529802"},{"denom":"ASSET5","index":"0.000002553898048133"},{"denom":"ASSET6","index":"0.000010424767435139"},{"denom":"ASSET7","index":"0.000016100084567463"},{"denom":"ASSET8","index":"0.000023177450827129"},{"denom":"ASSET9","index":"0.000009296241529202"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"859550320.000000001312925136"},{"denom":"ASSET1","amount":"1162207216.801725837692010917"},{"denom":"ASSET10","amount":"1721463413.999999944654650444"},{"denom":"ASSET11","amount":"1644302791.649825836000000000"},{"denom":"ASSET12","amount":"1224093969.730377654245695060"},{"denom":"ASSET13","amount":"988669024.000000000000000000"},{"denom":"ASSET14","amount":"503621606.000000000000000000"},{"denom":"ASSET17","amount":"1398042367.276431996179579952"},{"denom":"ASSET3","amount":"1067034241.237720062897285090"},{"denom":"ASSET4","amount":"551134255.199961873629125580"},{"denom":"ASSET5","amount":"679604146.000000000000000000"},{"denom":"ASSET6","amount":"409161503.000000000000000000"},{"denom":"ASSET7","amount":"543138101.376251758300262304"},{"denom":"ASSET8","amount":"1543663932.511068856972634424"},{"denom":"ASSET9","amount":"2034219827.561024982020192625"}],"validator_shares":[{"denom":"ASSET0","amount":"859550320.000000000000000000"},{"denom":"ASSET1","amount":"1162207216.801725858691190251"},{"denom":"ASSET10","amount":"1721739324.225758479727973624"},{"denom":"ASSET11","amount":"1644302791.649825796000000000"},{"denom":"ASSET12","amount":"1224093969.730377661132859950"},{"denom":"ASSET13","amount":"988700010.645461279819904096"},{"denom":"ASSET14","amount":"503668193.069882962618262208"},{"denom":"ASSET17","amount":"1398042367.276431992961657140"},{"denom":"ASSET3","amount":"1067034241.237720064095626684"},{"denom":"ASSET4","amount":"551134255.199961870710322078"},{"denom":"ASSET5","amount":"679613149.728667468507657178"},{"denom":"ASSET6","amount":"409196959.194290803186575532"},{"denom":"ASSET7","amount":"543160941.354912112735568807"},{"denom":"ASSET8","amount":"1543663932.511068844843515597"},{"denom":"ASSET9","amount":"2034219827.561025181604351800"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000005180085583978"},{"denom":"ASSET1","index":"0.000042453398829291"},{"denom":"ASSET10","index":"0.000036601166522925"},{"denom":"ASSET11","index":"0.000044027815346030"},{"denom":"ASSET12","index":"0.000041882382657179"},{"denom":"ASSET13","index":"0.000014186442935092"},{"denom":"ASSET14","index":"0.000040623148163189"},{"denom":"ASSET15","index":"0.000032869444044267"},{"denom":"ASSET16","index":"0.000018839345473644"},{"denom":"ASSET17","index":"0.000015220818962022"},{"denom":"ASSET18","index":"0.000006331525475439"},{"denom":"ASSET2","index":"0.000012809427742229"},{"denom":"ASSET3","index":"0.000003681341435185"},{"denom":"ASSET4","index":"0.000034786704814403"},{"denom":"ASSET5","index":"0.000002888643103732"},{"denom":"ASSET6","index":"0.000011788771185399"},{"denom":"ASSET7","index":"0.000018215500007226"},{"denom":"ASSET8","index":"0.000026160872429339"},{"denom":"ASSET9","index":"0.000010514780317885"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"23823442.000000013759452213"},{"denom":"ASSET10","amount":"338562714.832288681095074426"},{"denom":"ASSET11","amount":"891745153.000000054974200134"},{"denom":"ASSET13","amount":"640327098.999999993618747160"},{"denom":"ASSET14","amount":"1110696943.289641169498252936"},{"denom":"ASSET15","amount":"845958314.854745385164773048"},{"denom":"ASSET16","amount":"61024514.666088165729192566"},{"denom":"ASSET17","amount":"1000000000.000000000000000000"},{"denom":"ASSET18","amount":"820585114.000000000000000000"},{"denom":"ASSET2","amount":"614227458.000000000000000000"},{"denom":"ASSET3","amount":"41962963.000000000000000000"},{"denom":"ASSET4","amount":"24950641.643464671365431043"},{"denom":"ASSET5","amount":"52483328.000000000000000000"},{"denom":"ASSET6","amount":"307197709.000000000000000000"},{"denom":"ASSET8","amount":"278912430.000000000000000000"},{"denom":"ASSET9","amount":"2009070547.948706737209361354"}],"validator_shares":[{"denom":"ASSET0","amount":"23823689.892360054138995266"},{"denom":"ASSET10","amount":"338562714.832288697768690375"},{"denom":"ASSET11","amount":"891823700.545185506928010402"},{"denom":"ASSET13","amount":"640367237.591242653756450132"},{"denom":"ASSET14","amount":"1110799687.325042671542457268"},{"denom":"ASSET15","amount":"845958314.854745389291879224"},{"denom":"ASSET16","amount":"61026695.706077352352143578"},{"denom":"ASSET17","amount":"1000032722.963318138000000000"},{"denom":"ASSET18","amount":"820596731.153717970122205412"},{"denom":"ASSET2","amount":"614263033.079166310999733262"},{"denom":"ASSET3","amount":"41963238.764494763350458306"},{"denom":"ASSET4","amount":"24950641.643464660895940824"},{"denom":"ASSET5","amount":"52484023.324841172691458304"},{"denom":"ASSET6","amount":"307197709.000000000000000000"},{"denom":"ASSET8","amount":"278927362.423265599905700590"},{"denom":"ASSET9","amount":"2009070547.948706735067726776"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004959246898457"},{"denom":"ASSET1","index":"0.000040644134720716"},{"denom":"ASSET10","index":"0.000035353347669123"},{"denom":"ASSET11","index":"0.000042259329711737"},{"denom":"ASSET12","index":"0.000040324609330816"},{"denom":"ASSET13","index":"0.000013634496574458"},{"denom":"ASSET14","index":"0.000038957207426942"},{"denom":"ASSET15","index":"0.000031703303912562"},{"denom":"ASSET16","index":"0.000018020987420922"},{"denom":"ASSET17","index":"0.000014649010642136"},{"denom":"ASSET18","index":"0.000006048740887504"},{"denom":"ASSET2","index":"0.000012283177286373"},{"denom":"ASSET3","index":"0.000003521378987865"},{"denom":"ASSET4","index":"0.000033309186540081"},{"denom":"ASSET5","index":"0.000002764517824101"},{"denom":"ASSET6","index":"0.000011281385393492"},{"denom":"ASSET7","index":"0.000017449426350326"},{"denom":"ASSET8","index":"0.000025152281518201"},{"denom":"ASSET9","index":"0.000010089053949444"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"607177352.586791179744415490"},{"denom":"ASSET10","amount":"211377379.707337106768094359"},{"denom":"ASSET11","amount":"284264376.516471077197539723"},{"denom":"ASSET12","amount":"209553841.752435335302489665"},{"denom":"ASSET14","amount":"131034002.158114150721056299"},{"denom":"ASSET15","amount":"284282841.000000000000000000"},{"denom":"ASSET16","amount":"188213426.000000000000000000"},{"denom":"ASSET18","amount":"2163485860.149250648075178192"},{"denom":"ASSET2","amount":"685326482.000000000000000000"},{"denom":"ASSET5","amount":"9739448.000000001871846330"},{"denom":"ASSET6","amount":"451402137.104957144410496802"},{"denom":"ASSET7","amount":"140259453.000000000000000000"},{"denom":"ASSET8","amount":"510834690.000000000000000000"},{"denom":"ASSET9","amount":"623427293.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"607177352.586790954333669458"},{"denom":"ASSET10","amount":"211377379.707337113142792648"},{"denom":"ASSET11","amount":"284264376.516417534364804948"},{"denom":"ASSET12","amount":"209553841.752435328851808322"},{"denom":"ASSET14","amount":"131046123.342239010257652948"},{"denom":"ASSET15","amount":"284282841.000000000000000000"},{"denom":"ASSET16","amount":"188226880.567923546529442383"},{"denom":"ASSET18","amount":"2163516488.962002926669570608"},{"denom":"ASSET2","amount":"685386022.385611504218659138"},{"denom":"ASSET5","amount":"9739448.000000000000000000"},{"denom":"ASSET6","amount":"451402137.104957141058375472"},{"denom":"ASSET7","amount":"140259453.000000000000000000"},{"denom":"ASSET8","amount":"510889389.625419667564471110"},{"denom":"ASSET9","amount":"623427293.000000000000000000"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004570366380068"},{"denom":"ASSET1","index":"0.000037387120318498"},{"denom":"ASSET10","index":"0.000032261509452601"},{"denom":"ASSET11","index":"0.000038817463478610"},{"denom":"ASSET12","index":"0.000036894062034502"},{"denom":"ASSET13","index":"0.000012516582661637"},{"denom":"ASSET14","index":"0.000035830728510526"},{"denom":"ASSET15","index":"0.000028981323182880"},{"denom":"ASSET16","index":"0.000016597035677072"},{"denom":"ASSET17","index":"0.000013401965035997"},{"denom":"ASSET18","index":"0.000005590155550400"},{"denom":"ASSET2","index":"0.000011277033561355"},{"denom":"ASSET3","index":"0.000003246418139164"},{"denom":"ASSET4","index":"0.000030648574600701"},{"denom":"ASSET5","index":"0.000002548630973095"},{"denom":"ASSET6","index":"0.000010406123697859"},{"denom":"ASSET7","index":"0.000016063189038053"},{"denom":"ASSET8","index":"0.000023094558959157"},{"denom":"ASSET9","index":"0.000009268753871352"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"342038142.999216758584886952"},{"denom":"ASSET1","amount":"1029364302.270444100294104404"},{"denom":"ASSET10","amount":"1866875859.041063933922249208"},{"denom":"ASSET11","amount":"1527351699.999999983763879399"},{"denom":"ASSET13","amount":"1196894022.778400044579683351"},{"denom":"ASSET14","amount":"363264073.114125845842189032"},{"denom":"ASSET16","amount":"482847203.542616373540366289"},{"denom":"ASSET17","amount":"856742108.547967977288420151"},{"denom":"ASSET2","amount":"399037366.000000000000000000"},{"denom":"ASSET3","amount":"1416621761.147397098775685974"},{"denom":"ASSET4","amount":"408614285.756953791631466120"},{"denom":"ASSET5","amount":"514036054.000000000000000000"},{"denom":"ASSET6","amount":"35663583.000000000000000000"},{"denom":"ASSET8","amount":"842497326.000000000000000000"},{"denom":"ASSET9","amount":"394516898.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"342041702.782452678601138190"},{"denom":"ASSET1","amount":"1029364302.270444189182388894"},{"denom":"ASSET10","amount":"1867025461.284573390011071505"},{"denom":"ASSET11","amount":"1527620779.123556634224453200"},{"denom":"ASSET13","amount":"1196894022.778400129000000000"},{"denom":"ASSET14","amount":"363264073.114125846081849824"},{"denom":"ASSET16","amount":"482847203.542616376758872289"},{"denom":"ASSET17","amount":"856770143.688559099787419691"},{"denom":"ASSET2","amount":"399048921.641055524286382116"},{"denom":"ASSET3","amount":"1416621761.147397065924280244"},{"denom":"ASSET4","amount":"408614285.756953750047771120"},{"denom":"ASSET5","amount":"514042864.201472067225801422"},{"denom":"ASSET6","amount":"35665643.273336168397407544"},{"denom":"ASSET8","amount":"842497326.000000000000000000"},{"denom":"ASSET9","amount":"394516898.000000000000000000"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004819121490741"},{"denom":"ASSET1","index":"0.000039439037062385"},{"denom":"ASSET10","index":"0.000033949711699647"},{"denom":"ASSET11","index":"0.000040926462496439"},{"denom":"ASSET12","index":"0.000038853804420393"},{"denom":"ASSET13","index":"0.000013188383097013"},{"denom":"ASSET14","index":"0.000037786507004869"},{"denom":"ASSET15","index":"0.000030511465947454"},{"denom":"ASSET16","index":"0.000017508488927783"},{"denom":"ASSET17","index":"0.000014113313501087"},{"denom":"ASSET18","index":"0.000005902508101436"},{"denom":"ASSET2","index":"0.000011888871733978"},{"denom":"ASSET3","index":"0.000003426020888663"},{"denom":"ASSET4","index":"0.000032328377078046"},{"denom":"ASSET5","index":"0.000002685672180211"},{"denom":"ASSET6","index":"0.000010983824100820"},{"denom":"ASSET7","index":"0.000016943392626871"},{"denom":"ASSET8","index":"0.000024343267700456"},{"denom":"ASSET9","index":"0.000009767523137997"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"375988732.000000000000000000"},{"denom":"ASSET1","amount":"631911356.000000000000000000"},{"denom":"ASSET10","amount":"1498865304.567333079092651190"},{"denom":"ASSET11","amount":"65327230.999999963547762009"},{"denom":"ASSET13","amount":"1166960610.338345142525358072"},{"denom":"ASSET14","amount":"303869165.801484377626404029"},{"denom":"ASSET15","amount":"794376619.000000000000000000"},{"denom":"ASSET16","amount":"1000000000.000000000000000000"},{"denom":"ASSET2","amount":"983808866.389156935129991747"},{"denom":"ASSET3","amount":"1207654639.049218945412264376"},{"denom":"ASSET4","amount":"378595842.000000000000000000"},{"denom":"ASSET5","amount":"757414943.931733956354539253"},{"denom":"ASSET6","amount":"1280976798.000000005338559162"},{"denom":"ASSET7","amount":"96588643.142545907491672942"},{"denom":"ASSET8","amount":"992460964.000000000000000000"},{"denom":"ASSET9","amount":"292255188.612839518149779710"}],"validator_shares":[{"denom":"ASSET0","amount":"376000469.042654474898393892"},{"denom":"ASSET1","amount":"632004036.404932685125748988"},{"denom":"ASSET10","amount":"1498865304.567333084401677746"},{"denom":"ASSET11","amount":"65338739.936718282885050876"},{"denom":"ASSET13","amount":"1167033760.693855318320126218"},{"denom":"ASSET14","amount":"303897274.949094043205332348"},{"denom":"ASSET15","amount":"794525811.622861625020733310"},{"denom":"ASSET16","amount":"1000035740.390581423000000000"},{"denom":"ASSET2","amount":"983808866.389156936179822659"},{"denom":"ASSET3","amount":"1207670511.568267299540015596"},{"denom":"ASSET4","amount":"378656373.664585838134374084"},{"denom":"ASSET5","amount":"757414943.931733931746120265"},{"denom":"ASSET6","amount":"1281050799.603853706210615664"},{"denom":"ASSET7","amount":"96588643.142545905234862608"},{"denom":"ASSET8","amount":"992514098.409208773199709732"},{"denom":"ASSET9","amount":"292262437.262297914700014640"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004954736972544"},{"denom":"ASSET1","index":"0.000040562621437536"},{"denom":"ASSET10","index":"0.000035068009959717"},{"denom":"ASSET11","index":"0.000042119207174838"},{"denom":"ASSET12","index":"0.000040082055175883"},{"denom":"ASSET13","index":"0.000013580869106236"},{"denom":"ASSET14","index":"0.000038861863580520"},{"denom":"ASSET15","index":"0.000031485762730084"},{"denom":"ASSET16","index":"0.000018000600433823"},{"denom":"ASSET17","index":"0.000014562026555578"},{"denom":"ASSET18","index":"0.000006054868189146"},{"denom":"ASSET2","index":"0.000012242446491443"},{"denom":"ASSET3","index":"0.000003518864143702"},{"denom":"ASSET4","index":"0.000033246162080602"},{"denom":"ASSET5","index":"0.000002762582727971"},{"denom":"ASSET6","index":"0.000011276343530113"},{"denom":"ASSET7","index":"0.000017419014271677"},{"denom":"ASSET8","index":"0.000025054480685761"},{"denom":"ASSET9","index":"0.000010057790704152"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"746639697.443757531952247392"},{"denom":"ASSET10","amount":"333126043.000000000000000000"},{"denom":"ASSET11","amount":"758130067.999999999958767484"},{"denom":"ASSET12","amount":"939227618.658490649465768992"},{"denom":"ASSET13","amount":"2311856.000000000000000000"},{"denom":"ASSET15","amount":"2000062599.594424291000000000"},{"denom":"ASSET16","amount":"182621451.000000000000000000"},{"denom":"ASSET18","amount":"1090450278.500822493643404466"},{"denom":"ASSET4","amount":"393947065.765950218119104028"},{"denom":"ASSET9","amount":"1852403731.981737991252855798"}],"validator_shares":[{"denom":"ASSET0","amount":"746639697.443757555225808528"},{"denom":"ASSET10","amount":"333126043.000000000000000000"},{"denom":"ASSET11","amount":"758130068.000000000000000000"},{"denom":"ASSET12","amount":"939313459.099414455062809026"},{"denom":"ASSET13","amount":"2311856.879253454667880959"},{"denom":"ASSET14","amount":"0.866430986185970336"},{"denom":"ASSET15","amount":"2000187802.704659056000000000"},{"denom":"ASSET16","amount":"182621451.000000000000000000"},{"denom":"ASSET18","amount":"1090450278.500822492829363484"},{"denom":"ASSET4","amount":"393947065.765950228541581520"},{"denom":"ASSET9","amount":"1852403731.981738004752164636"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004505151831120"},{"denom":"ASSET1","index":"0.000036819978927173"},{"denom":"ASSET10","index":"0.000032120266083166"},{"denom":"ASSET11","index":"0.000038373726814935"},{"denom":"ASSET12","index":"0.000036577960619268"},{"denom":"ASSET13","index":"0.000012398555446018"},{"denom":"ASSET14","index":"0.000035397002231999"},{"denom":"ASSET15","index":"0.000028810535001949"},{"denom":"ASSET16","index":"0.000016330920897579"},{"denom":"ASSET17","index":"0.000013279681403456"},{"denom":"ASSET18","index":"0.000005498055481430"},{"denom":"ASSET2","index":"0.000011120281009853"},{"denom":"ASSET3","index":"0.000003197840204443"},{"denom":"ASSET4","index":"0.000030197395102084"},{"denom":"ASSET5","index":"0.000002512215970511"},{"denom":"ASSET6","index":"0.000010257867177915"},{"denom":"ASSET7","index":"0.000015842498359347"},{"denom":"ASSET8","index":"0.000022891881896997"},{"denom":"ASSET9","index":"0.000009154034675168"}],"total_delegator_shares":[{"denom":"ASSET1","amount":"3168651929.818040172803876947"},{"denom":"ASSET10","amount":"504941514.239445804317082830"},{"denom":"ASSET11","amount":"599143498.000000000000000000"},{"denom":"ASSET12","amount":"1412682352.306852725933307194"},{"denom":"ASSET13","amount":"63034446.000000000000000000"},{"denom":"ASSET14","amount":"1428697.999999998272694979"},{"denom":"ASSET17","amount":"1326512639.000000000682868661"},{"denom":"ASSET18","amount":"2000014157.142585158000000000"},{"denom":"ASSET3","amount":"1299939901.000000031736735069"},{"denom":"ASSET4","amount":"963694237.082218009789251759"},{"denom":"ASSET6","amount":"1132035042.397881137993385600"},{"denom":"ASSET7","amount":"2514579206.480108112550758090"},{"denom":"ASSET8","amount":"76040196.798703163621924808"},{"denom":"ASSET9","amount":"183833319.200476738892939320"}],"validator_shares":[{"denom":"ASSET1","amount":"3168651929.818040175085203834"},{"denom":"ASSET10","amount":"504941514.239445754930508090"},{"denom":"ASSET11","amount":"599143498.000000000000000000"},{"denom":"ASSET12","amount":"1412682352.306852693417161744"},{"denom":"ASSET13","amount":"63038397.283439592693401928"},{"denom":"ASSET14","amount":"1428698.000000000000000000"},{"denom":"ASSET17","amount":"1326556046.424427043434946182"},{"denom":"ASSET18","amount":"2000042471.660488589000000000"},{"denom":"ASSET3","amount":"1299956986.448250839735097461"},{"denom":"ASSET4","amount":"963771273.967598250709406370"},{"denom":"ASSET6","amount":"1132035042.397881143077631280"},{"denom":"ASSET7","amount":"2514579206.480108066863650245"},{"denom":"ASSET8","amount":"76040196.798703156246347990"},{"denom":"ASSET9","amount":"183837878.720175850788714776"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004934519090666"},{"denom":"ASSET1","index":"0.000040427425853445"},{"denom":"ASSET10","index":"0.000034956454364729"},{"denom":"ASSET11","index":"0.000041970150523959"},{"denom":"ASSET12","index":"0.000039953739652645"},{"denom":"ASSET13","index":"0.000013529847026884"},{"denom":"ASSET14","index":"0.000038720039011166"},{"denom":"ASSET15","index":"0.000031380979964511"},{"denom":"ASSET16","index":"0.000017937044208634"},{"denom":"ASSET17","index":"0.000014514779524145"},{"denom":"ASSET18","index":"0.000006029404952774"},{"denom":"ASSET2","index":"0.000012203146861853"},{"denom":"ASSET3","index":"0.000003503504291382"},{"denom":"ASSET4","index":"0.000033131393819799"},{"denom":"ASSET5","index":"0.000002750652351117"},{"denom":"ASSET6","index":"0.000011232838794861"},{"denom":"ASSET7","index":"0.000017353264007807"},{"denom":"ASSET8","index":"0.000024958646702939"},{"denom":"ASSET9","index":"0.000010021543642476"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"516552486.000000000000000000"},{"denom":"ASSET10","amount":"121120967.000000000000000000"},{"denom":"ASSET12","amount":"456130121.829314921399203816"},{"denom":"ASSET13","amount":"907174504.000000000000000000"},{"denom":"ASSET15","amount":"1199138569.759837375455351312"},{"denom":"ASSET16","amount":"280769930.339303885945711880"},{"denom":"ASSET17","amount":"533954714.000000000000000000"},{"denom":"ASSET3","amount":"380349434.000000000000000000"},{"denom":"ASSET5","amount":"1000000000.000000000000000000"},{"denom":"ASSET6","amount":"383719769.000000051815540570"},{"denom":"ASSET7","amount":"1631041387.912593333241308820"},{"denom":"ASSET8","amount":"33432511.000000000000000000"},{"denom":"ASSET9","amount":"28720415.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"516563235.913355281227898452"},{"denom":"ASSET10","amount":"121120967.000000000000000000"},{"denom":"ASSET12","amount":"456171809.711995116628766531"},{"denom":"ASSET13","amount":"907202936.462274614939111016"},{"denom":"ASSET15","amount":"1199213635.349567895223570104"},{"denom":"ASSET16","amount":"280769930.339303896924946141"},{"denom":"ASSET17","amount":"533972186.580519768866802532"},{"denom":"ASSET3","amount":"380356932.567794019228410792"},{"denom":"ASSET5","amount":"1000000000.000000000000000000"},{"denom":"ASSET6","amount":"383741936.363515645547961992"},{"denom":"ASSET7","amount":"1631041387.912593320361732821"},{"denom":"ASSET8","amount":"33436090.917073640624260509"},{"denom":"ASSET9","amount":"28721127.337124354998235020"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004712919701194"},{"denom":"ASSET1","index":"0.000038551910188637"},{"denom":"ASSET10","index":"0.000033366472665064"},{"denom":"ASSET11","index":"0.000040061772796167"},{"denom":"ASSET12","index":"0.000038115593387847"},{"denom":"ASSET13","index":"0.000012923798257493"},{"denom":"ASSET14","index":"0.000036968911284872"},{"denom":"ASSET15","index":"0.000029958439689060"},{"denom":"ASSET16","index":"0.000017109313494010"},{"denom":"ASSET17","index":"0.000013844574846959"},{"denom":"ASSET18","index":"0.000005759646481226"},{"denom":"ASSET2","index":"0.000011633813263895"},{"denom":"ASSET3","index":"0.000003346860308295"},{"denom":"ASSET4","index":"0.000031605298521278"},{"denom":"ASSET5","index":"0.000002628206284514"},{"denom":"ASSET6","index":"0.000010728866620912"},{"denom":"ASSET7","index":"0.000016566279364856"},{"denom":"ASSET8","index":"0.000023846908582094"},{"denom":"ASSET9","index":"0.000009564372690576"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"639848752.000000000000000000"},{"denom":"ASSET1","amount":"444816162.999999975637734877"},{"denom":"ASSET10","amount":"85278766.812912312275106834"},{"denom":"ASSET12","amount":"514154494.000000000000000000"},{"denom":"ASSET13","amount":"1585543243.999999987703591876"},{"denom":"ASSET14","amount":"561553811.000000000000000000"},{"denom":"ASSET15","amount":"1931500244.102797427400057342"},{"denom":"ASSET16","amount":"1800151516.793032495562380206"},{"denom":"ASSET18","amount":"1000000000.000000000000000000"},{"denom":"ASSET2","amount":"1806907289.972160743419823714"},{"denom":"ASSET3","amount":"1380447550.290078593187143909"},{"denom":"ASSET5","amount":"975805169.000000000000000000"},{"denom":"ASSET6","amount":"1203712886.199598106509798109"},{"denom":"ASSET7","amount":"528766015.442925495457428798"},{"denom":"ASSET8","amount":"129612736.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"639848752.000000000000000000"},{"denom":"ASSET1","amount":"444816163.000000000000000000"},{"denom":"ASSET10","amount":"85278766.812912304778940844"},{"denom":"ASSET12","amount":"514201485.003662311488307710"},{"denom":"ASSET13","amount":"1585592937.744997269664678476"},{"denom":"ASSET14","amount":"561553811.000000000000000000"},{"denom":"ASSET15","amount":"1931742073.938193079189395670"},{"denom":"ASSET16","amount":"1800215854.911348448628017359"},{"denom":"ASSET18","amount":"1000028314.501749331000000000"},{"denom":"ASSET2","amount":"1807011943.173592384435082386"},{"denom":"ASSET3","amount":"1380447550.290078286934442060"},{"denom":"ASSET5","amount":"975811632.950277117549851886"},{"denom":"ASSET6","amount":"1203712886.199598223919452132"},{"denom":"ASSET7","amount":"528766015.442925276152900266"},{"denom":"ASSET8","amount":"129612736.000000000000000000"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004706688898441"},{"denom":"ASSET1","index":"0.000038469218208281"},{"denom":"ASSET10","index":"0.000033429119744638"},{"denom":"ASSET11","index":"0.000040048044376731"},{"denom":"ASSET12","index":"0.000038123876502831"},{"denom":"ASSET13","index":"0.000012931635980653"},{"denom":"ASSET14","index":"0.000036956318697253"},{"denom":"ASSET15","index":"0.000030004409506937"},{"denom":"ASSET16","index":"0.000017069515077087"},{"denom":"ASSET17","index":"0.000013841693766226"},{"denom":"ASSET18","index":"0.000005751286723449"},{"denom":"ASSET2","index":"0.000011610503886412"},{"denom":"ASSET3","index":"0.000003341731270562"},{"denom":"ASSET4","index":"0.000031548567387514"},{"denom":"ASSET5","index":"0.000002624970943084"},{"denom":"ASSET6","index":"0.000010720567793479"},{"denom":"ASSET7","index":"0.000016548766625825"},{"denom":"ASSET8","index":"0.000023874445360637"},{"denom":"ASSET9","index":"0.000009555094049936"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"133060724.000000000000000000"},{"denom":"ASSET11","amount":"689032141.000000000000000000"},{"denom":"ASSET14","amount":"953632152.000000000000000000"},{"denom":"ASSET15","amount":"896878198.000000000000000000"},{"denom":"ASSET16","amount":"716262954.000000298178605002"},{"denom":"ASSET17","amount":"176188541.592588118619622325"},{"denom":"ASSET2","amount":"750970811.559470605127767436"},{"denom":"ASSET3","amount":"779622836.999999998267130163"},{"denom":"ASSET5","amount":"353117672.371562420921516226"},{"denom":"ASSET6","amount":"1438472800.251515629145353470"},{"denom":"ASSET8","amount":"439318602.000000000000000000"},{"denom":"ASSET9","amount":"811682235.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"133060724.000000000000000000"},{"denom":"ASSET11","amount":"689153530.307127252494909236"},{"denom":"ASSET14","amount":"953808589.951245768858139296"},{"denom":"ASSET15","amount":"896934342.212643218274255312"},{"denom":"ASSET16","amount":"716288553.517734963815503542"},{"denom":"ASSET17","amount":"176188541.592588120513995925"},{"denom":"ASSET2","amount":"750992558.768832332481834300"},{"denom":"ASSET3","amount":"779622837.000000000000000000"},{"denom":"ASSET5","amount":"353117672.371562441650876152"},{"denom":"ASSET6","amount":"1438472800.251515620665427320"},{"denom":"ASSET8","amount":"439389166.528157562426223746"},{"denom":"ASSET9","amount":"811702366.721257159337733180"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004887144198005"},{"denom":"ASSET1","index":"0.000040023452786680"},{"denom":"ASSET10","index":"0.000034437802546936"},{"denom":"ASSET11","index":"0.000041494859984978"},{"denom":"ASSET12","index":"0.000039432934551770"},{"denom":"ASSET13","index":"0.000013368653429450"},{"denom":"ASSET14","index":"0.000038299674909876"},{"denom":"ASSET15","index":"0.000030940975323868"},{"denom":"ASSET16","index":"0.000017768457463154"},{"denom":"ASSET17","index":"0.000014327966130944"},{"denom":"ASSET18","index":"0.000005979301312257"},{"denom":"ASSET2","index":"0.000012071629758701"},{"denom":"ASSET3","index":"0.000003472888386423"},{"denom":"ASSET4","index":"0.000032798616202156"},{"denom":"ASSET5","index":"0.000002725831062282"},{"denom":"ASSET6","index":"0.000011125357279785"},{"denom":"ASSET7","index":"0.000017178460034926"},{"denom":"ASSET8","index":"0.000024656607892367"},{"denom":"ASSET9","index":"0.000009912524841079"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"980526411.166206528403308762"},{"denom":"ASSET10","amount":"1000000000.000000000000000000"},{"denom":"ASSET11","amount":"1415292368.739272587835977120"},{"denom":"ASSET12","amount":"543860236.000000012905669055"},{"denom":"ASSET13","amount":"944402387.000000000000000000"},{"denom":"ASSET15","amount":"2798794886.083080595670820167"},{"denom":"ASSET16","amount":"116855968.357934522716075964"},{"denom":"ASSET17","amount":"350434970.934310766029923300"},{"denom":"ASSET2","amount":"1695742960.087167678593428752"},{"denom":"ASSET3","amount":"1271772848.041320365694984212"},{"denom":"ASSET4","amount":"661588199.878433503015845027"},{"denom":"ASSET5","amount":"454979087.999999897223449433"},{"denom":"ASSET6","amount":"308798908.000000000000000000"},{"denom":"ASSET7","amount":"313140141.391151040539635671"},{"denom":"ASSET8","amount":"977654995.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"980536613.932295271538712747"},{"denom":"ASSET10","amount":"1000080135.078497533000000000"},{"denom":"ASSET11","amount":"1415292368.739272543263549920"},{"denom":"ASSET12","amount":"543860236.000000000000000000"},{"denom":"ASSET13","amount":"944461586.402054948019318516"},{"denom":"ASSET15","amount":"2798794886.083080723690688672"},{"denom":"ASSET16","amount":"116864321.462810349655561563"},{"denom":"ASSET17","amount":"350434970.934310765456431780"},{"denom":"ASSET2","amount":"1695742960.087167689219192594"},{"denom":"ASSET3","amount":"1271781205.644592900576603838"},{"denom":"ASSET4","amount":"661588199.878433504018867432"},{"denom":"ASSET5","amount":"454985115.785854214428059984"},{"denom":"ASSET6","amount":"308807827.479197013148940396"},{"denom":"ASSET7","amount":"313140141.391151043473247683"},{"denom":"ASSET8","amount":"977759681.238156940683970905"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004817835879767"},{"denom":"ASSET1","index":"0.000039488204780396"},{"denom":"ASSET10","index":"0.000033995250485661"},{"denom":"ASSET11","index":"0.000040925091239801"},{"denom":"ASSET12","index":"0.000038926083462773"},{"denom":"ASSET13","index":"0.000013182210958747"},{"denom":"ASSET14","index":"0.000037759800640957"},{"denom":"ASSET15","index":"0.000030534401627825"},{"denom":"ASSET16","index":"0.000017526460270060"},{"denom":"ASSET17","index":"0.000014147141919553"},{"denom":"ASSET18","index":"0.000005890295558042"},{"denom":"ASSET2","index":"0.000011916234104952"},{"denom":"ASSET3","index":"0.000003422666965158"},{"denom":"ASSET4","index":"0.000032353046153051"},{"denom":"ASSET5","index":"0.000002686332119571"},{"denom":"ASSET6","index":"0.000010961064994483"},{"denom":"ASSET7","index":"0.000016937661203717"},{"denom":"ASSET8","index":"0.000024306118669962"},{"denom":"ASSET9","index":"0.000009778460006236"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"71764781.521289728608568310"},{"denom":"ASSET1","amount":"1887494100.418182113802821587"},{"denom":"ASSET10","amount":"1871432198.198221668982317366"},{"denom":"ASSET11","amount":"147136670.000000000000000000"},{"denom":"ASSET12","amount":"16948289.878130239733841704"},{"denom":"ASSET14","amount":"1000000000.000000000000000000"},{"denom":"ASSET15","amount":"1196056869.265307202671506996"},{"denom":"ASSET17","amount":"685168872.000000000000000000"},{"denom":"ASSET18","amount":"653203751.000000000000000000"},{"denom":"ASSET2","amount":"672255685.000000000000000000"},{"denom":"ASSET3","amount":"954786741.000000000000000000"},{"denom":"ASSET4","amount":"252137288.307620841988250616"},{"denom":"ASSET5","amount":"914617943.177311736191802571"},{"denom":"ASSET7","amount":"594735134.064868105562568305"},{"denom":"ASSET8","amount":"2231447605.818816384637033564"},{"denom":"ASSET9","amount":"1505911568.705922512418240558"}],"validator_shares":[{"denom":"ASSET0","amount":"71764781.521289746135670370"},{"denom":"ASSET1","amount":"1887632511.681044815735380859"},{"denom":"ASSET10","amount":"1871432198.198221650462865525"},{"denom":"ASSET11","amount":"147162591.604177113703539320"},{"denom":"ASSET12","amount":"16948289.878130237676303279"},{"denom":"ASSET14","amount":"1000000000.000000000000000000"},{"denom":"ASSET15","amount":"1196056869.265307209271888752"},{"denom":"ASSET17","amount":"685168872.125938872139250684"},{"denom":"ASSET18","amount":"653212998.509191985756556758"},{"denom":"ASSET2","amount":"672314089.809628275698815165"},{"denom":"ASSET3","amount":"954793015.492181083851260142"},{"denom":"ASSET4","amount":"252137288.307620840580840830"},{"denom":"ASSET5","amount":"914630060.483898564578586960"},{"denom":"ASSET7","amount":"594735134.064868108609258445"},{"denom":"ASSET8","amount":"2231567073.137447938485384903"},{"denom":"ASSET9","amount":"1505948919.026813908094947752"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004325641877836"},{"denom":"ASSET1","index":"0.000035348366307226"},{"denom":"ASSET10","index":"0.000031257662761879"},{"denom":"ASSET11","index":"0.000036992717950464"},{"denom":"ASSET12","index":"0.000035418573696276"},{"denom":"ASSET13","index":"0.000011977249429898"},{"denom":"ASSET14","index":"0.000034081065809858"},{"denom":"ASSET15","index":"0.000027976550364248"},{"denom":"ASSET16","index":"0.000015657655343385"},{"denom":"ASSET17","index":"0.000012854637082527"},{"denom":"ASSET18","index":"0.000005260882039585"},{"denom":"ASSET2","index":"0.000010698212732322"},{"denom":"ASSET3","index":"0.000003067429365425"},{"denom":"ASSET4","index":"0.000028998546821196"},{"denom":"ASSET5","index":"0.000002411533626135"},{"denom":"ASSET6","index":"0.000009843748043150"},{"denom":"ASSET7","index":"0.000015224574068437"},{"denom":"ASSET8","index":"0.000022125866923020"},{"denom":"ASSET9","index":"0.000008816372619792"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"25178663.709888944628508902"},{"denom":"ASSET1","amount":"364257664.165324450540120311"},{"denom":"ASSET10","amount":"253566951.070876021139214582"},{"denom":"ASSET12","amount":"983139157.660211194468050821"},{"denom":"ASSET13","amount":"249202142.779979339432767820"},{"denom":"ASSET14","amount":"1322158194.578687456168004405"},{"denom":"ASSET15","amount":"1220471403.380878568276029939"},{"denom":"ASSET16","amount":"589208421.000000000000000000"},{"denom":"ASSET17","amount":"134707319.346463555733445359"},{"denom":"ASSET2","amount":"809104530.000000000000000000"},{"denom":"ASSET3","amount":"4859654975.448342320088552541"},{"denom":"ASSET4","amount":"1439221644.384976727356442362"},{"denom":"ASSET5","amount":"902131655.000000000000000000"},{"denom":"ASSET6","amount":"707285320.000000000000000000"},{"denom":"ASSET7","amount":"1059748332.999999960106643920"},{"denom":"ASSET9","amount":"583523106.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"25178925.703868263467322953"},{"denom":"ASSET1","amount":"364284375.434670042956447480"},{"denom":"ASSET10","amount":"253566951.070875654437124746"},{"denom":"ASSET12","amount":"983139157.660211190507661010"},{"denom":"ASSET13","amount":"249202142.779979402411228120"},{"denom":"ASSET14","amount":"1322158194.578687464444818720"},{"denom":"ASSET15","amount":"1220471403.380878571483519256"},{"denom":"ASSET16","amount":"589208421.000000000000000000"},{"denom":"ASSET17","amount":"134707319.346463552550193980"},{"denom":"ASSET2","amount":"809127960.691764035655840780"},{"denom":"ASSET3","amount":"4859654975.448342330905346227"},{"denom":"ASSET4","amount":"1439221644.384976730609549992"},{"denom":"ASSET5","amount":"902137630.920549088384545570"},{"denom":"ASSET6","amount":"707305749.530463536445188840"},{"denom":"ASSET7","amount":"1059792897.410505780634174167"},{"denom":"ASSET9","amount":"583552051.970639899355090448"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004884846200251"},{"denom":"ASSET1","index":"0.000040304484797617"},{"denom":"ASSET10","index":"0.000034917109179481"},{"denom":"ASSET11","index":"0.000041818292132207"},{"denom":"ASSET12","index":"0.000039867945342619"},{"denom":"ASSET13","index":"0.000013471240006092"},{"denom":"ASSET14","index":"0.000038555063072812"},{"denom":"ASSET15","index":"0.000031316255649666"},{"denom":"ASSET16","index":"0.000017871123795518"},{"denom":"ASSET17","index":"0.000014499114587660"},{"denom":"ASSET18","index":"0.000005977772587166"},{"denom":"ASSET2","index":"0.000012148457367650"},{"denom":"ASSET3","index":"0.000003465725186322"},{"denom":"ASSET4","index":"0.000033018842440738"},{"denom":"ASSET5","index":"0.000002731597284885"},{"denom":"ASSET6","index":"0.000011159624356967"},{"denom":"ASSET7","index":"0.000017271758444400"},{"denom":"ASSET8","index":"0.000024836200192877"},{"denom":"ASSET9","index":"0.000009993242634471"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"83008042.000000000000000000"},{"denom":"ASSET1","amount":"866712532.000000000000000000"},{"denom":"ASSET11","amount":"574351765.383676477824289607"},{"denom":"ASSET12","amount":"695000285.000000000000000000"},{"denom":"ASSET15","amount":"1507639987.544927281164889100"},{"denom":"ASSET17","amount":"437479015.000000000000000000"},{"denom":"ASSET18","amount":"663685312.000000000000000000"},{"denom":"ASSET5","amount":"1468986581.819605096588108336"},{"denom":"ASSET6","amount":"33680305.000000000000000000"},{"denom":"ASSET9","amount":"1329333783.157421201543308164"}],"validator_shares":[{"denom":"ASSET0","amount":"83008905.731589870728671066"},{"denom":"ASSET1","amount":"866839649.937766563598354836"},{"denom":"ASSET11","amount":"574351765.383676488505611996"},{"denom":"ASSET12","amount":"695127329.495760257504820545"},{"denom":"ASSET15","amount":"1507734365.198703343784662160"},{"denom":"ASSET17","amount":"437521963.218402256474931705"},{"denom":"ASSET18","amount":"663694707.898314897972378496"},{"denom":"ASSET5","amount":"1468996312.713152579541690666"},{"denom":"ASSET6","amount":"33682250.700025303659367240"},{"denom":"ASSET9","amount":"1329333783.157421172197836552"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004693137822929"},{"denom":"ASSET1","index":"0.000038383313313216"},{"denom":"ASSET10","index":"0.000033308138886664"},{"denom":"ASSET11","index":"0.000039923068103801"},{"denom":"ASSET12","index":"0.000038009729805120"},{"denom":"ASSET13","index":"0.000012885299057013"},{"denom":"ASSET14","index":"0.000036834613154996"},{"denom":"ASSET15","index":"0.000029895181167364"},{"denom":"ASSET16","index":"0.000017030985361721"},{"denom":"ASSET17","index":"0.000013804368089241"},{"denom":"ASSET18","index":"0.000005733076288042"},{"denom":"ASSET2","index":"0.000011586566219439"},{"denom":"ASSET3","index":"0.000003332516431489"},{"denom":"ASSET4","index":"0.000031470213973793"},{"denom":"ASSET5","index":"0.000002616947491206"},{"denom":"ASSET6","index":"0.000010684341404295"},{"denom":"ASSET7","index":"0.000016500249189766"},{"denom":"ASSET8","index":"0.000023780340379452"},{"denom":"ASSET9","index":"0.000009528434672575"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"1904513775.016859342661298809"},{"denom":"ASSET1","amount":"900686242.220707500408945408"},{"denom":"ASSET10","amount":"889412346.000000000000000000"},{"denom":"ASSET11","amount":"91932167.000000000000000000"},{"denom":"ASSET14","amount":"687878246.664194053839270740"},{"denom":"ASSET15","amount":"995515169.000000000000000000"},{"denom":"ASSET16","amount":"681686734.881496323937948780"},{"denom":"ASSET17","amount":"414591241.000000000000000000"},{"denom":"ASSET18","amount":"690657607.883618449679271574"},{"denom":"ASSET2","amount":"164493401.033603373876019027"},{"denom":"ASSET3","amount":"674653054.000000000000000000"},{"denom":"ASSET4","amount":"569390762.000000000000000000"},{"denom":"ASSET6","amount":"1548588980.000000009874601640"},{"denom":"ASSET7","amount":"247064573.000000000000000000"},{"denom":"ASSET9","amount":"26057051.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"1904533592.237832062172192163"},{"denom":"ASSET1","amount":"900686242.220707567751874432"},{"denom":"ASSET10","amount":"889483619.128163384980742418"},{"denom":"ASSET11","amount":"91948363.025396784598779932"},{"denom":"ASSET14","amount":"687878246.664194050615405044"},{"denom":"ASSET15","amount":"995577487.847155079777063736"},{"denom":"ASSET16","amount":"681686734.881496321589633980"},{"denom":"ASSET17","amount":"414618374.745985999200915749"},{"denom":"ASSET18","amount":"690667385.633007728270618386"},{"denom":"ASSET2","amount":"164493401.033603363801179156"},{"denom":"ASSET3","amount":"674653054.000000000000000000"},{"denom":"ASSET4","amount":"569436278.605974098541851248"},{"denom":"ASSET6","amount":"1548678441.470659810475284640"},{"denom":"ASSET7","amount":"247085352.497668912915999976"},{"denom":"ASSET9","amount":"26057697.279128574971187388"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004647505809556"},{"denom":"ASSET1","index":"0.000038009017612926"},{"denom":"ASSET10","index":"0.000032985806125997"},{"denom":"ASSET11","index":"0.000039536736758564"},{"denom":"ASSET12","index":"0.000037639937363025"},{"denom":"ASSET13","index":"0.000012761097886329"},{"denom":"ASSET14","index":"0.000036479648984095"},{"denom":"ASSET15","index":"0.000029606122473006"},{"denom":"ASSET16","index":"0.000016864369335210"},{"denom":"ASSET17","index":"0.000013669148362381"},{"denom":"ASSET18","index":"0.000005677302881525"},{"denom":"ASSET2","index":"0.000011472901091017"},{"denom":"ASSET3","index":"0.000003300273677547"},{"denom":"ASSET4","index":"0.000031164129384679"},{"denom":"ASSET5","index":"0.000002591830530814"},{"denom":"ASSET6","index":"0.000010581810919490"},{"denom":"ASSET7","index":"0.000016340325217451"},{"denom":"ASSET8","index":"0.000023553337303201"},{"denom":"ASSET9","index":"0.000009436380699685"}],"total_delegator_shares":[{"denom":"ASSET1","amount":"673043961.000000038995211610"},{"denom":"ASSET11","amount":"213783241.000000000000000000"},{"denom":"ASSET13","amount":"1148020957.976373234265929244"},{"denom":"ASSET14","amount":"193399801.000000000000000000"},{"denom":"ASSET15","amount":"929690936.000000000000000000"},{"denom":"ASSET16","amount":"1430274972.741291050983351520"},{"denom":"ASSET17","amount":"1557136678.092747236651643682"},{"denom":"ASSET2","amount":"1147137580.396839867719906936"},{"denom":"ASSET5","amount":"1414847232.223810270000000000"},{"denom":"ASSET6","amount":"985304894.041743029327339287"},{"denom":"ASSET7","amount":"487560658.000000000000000000"},{"denom":"ASSET8","amount":"888346620.191341172290727826"},{"denom":"ASSET9","amount":"237867801.000000000000000000"}],"validator_shares":[{"denom":"ASSET1","amount":"673043961.000000000000000000"},{"denom":"ASSET11","amount":"213820903.973838557754284836"},{"denom":"ASSET13","amount":"1148020957.976373241669329136"},{"denom":"ASSET14","amount":"193399801.000000000000000000"},{"denom":"ASSET15","amount":"929865541.754806609028196784"},{"denom":"ASSET16","amount":"1430274972.741291043669199814"},{"denom":"ASSET17","amount":"1557136678.092747217560884362"},{"denom":"ASSET18","amount":"0.312361012262838408"},{"denom":"ASSET2","amount":"1147137580.396839875961172912"},{"denom":"ASSET5","amount":"1414856604.486275514861129152"},{"denom":"ASSET6","amount":"985304894.041743019916754636"},{"denom":"ASSET7","amount":"487601664.549151685326692496"},{"denom":"ASSET8","amount":"888394180.523231912489862318"},{"denom":"ASSET9","amount":"237879600.557400771414280008"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000005032492628219"},{"denom":"ASSET1","index":"0.000041266859936301"},{"denom":"ASSET10","index":"0.000035429889399779"},{"denom":"ASSET11","index":"0.000042723656696405"},{"denom":"ASSET12","index":"0.000040613653925804"},{"denom":"ASSET13","index":"0.000013753263814422"},{"denom":"ASSET14","index":"0.000039422947852626"},{"denom":"ASSET15","index":"0.000031833222954476"},{"denom":"ASSET16","index":"0.000018318787006987"},{"denom":"ASSET17","index":"0.000014763750221356"},{"denom":"ASSET18","index":"0.000006155924174192"},{"denom":"ASSET2","index":"0.000012450707876225"},{"denom":"ASSET3","index":"0.000003576279428546"},{"denom":"ASSET4","index":"0.000033804929454957"},{"denom":"ASSET5","index":"0.000002805642715656"},{"denom":"ASSET6","index":"0.000011448870089314"},{"denom":"ASSET7","index":"0.000017691249600312"},{"denom":"ASSET8","index":"0.000025352925937643"},{"denom":"ASSET9","index":"0.000010211383859297"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"1456904581.334544611507688001"},{"denom":"ASSET1","amount":"836399381.000000000000000000"},{"denom":"ASSET10","amount":"681046486.730788681818358412"},{"denom":"ASSET11","amount":"1531406017.973049572119836465"},{"denom":"ASSET12","amount":"356346917.000000000000000000"},{"denom":"ASSET13","amount":"208648348.080069068426357690"},{"denom":"ASSET14","amount":"864219109.291543051273065475"},{"denom":"ASSET15","amount":"31071870.000000000000000000"},{"denom":"ASSET16","amount":"1000000000.000000000000000000"},{"denom":"ASSET2","amount":"230946030.543592837383443660"},{"denom":"ASSET3","amount":"1689229837.457282727742941120"},{"denom":"ASSET4","amount":"64315159.000000001919640975"},{"denom":"ASSET5","amount":"589058597.000000004895901980"},{"denom":"ASSET6","amount":"1085474059.457609485982359804"},{"denom":"ASSET7","amount":"522871219.000000000000000000"},{"denom":"ASSET8","amount":"2139903.463855745125626318"},{"denom":"ASSET9","amount":"131039273.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"1456919741.004379133934655540"},{"denom":"ASSET1","amount":"836522053.005464841156999813"},{"denom":"ASSET10","amount":"681046486.730788694882967518"},{"denom":"ASSET11","amount":"1531406017.973049539244012080"},{"denom":"ASSET12","amount":"356412056.418447846151557929"},{"denom":"ASSET13","amount":"208648348.080069068622828930"},{"denom":"ASSET14","amount":"864219109.291543052065994208"},{"denom":"ASSET15","amount":"31071870.000000000000000000"},{"denom":"ASSET16","amount":"1000071482.056014623000000000"},{"denom":"ASSET2","amount":"230952718.462217891142760820"},{"denom":"ASSET3","amount":"1689240938.427742428160093970"},{"denom":"ASSET4","amount":"64320300.298288862118210536"},{"denom":"ASSET5","amount":"589058597.000000000000000000"},{"denom":"ASSET6","amount":"1085474059.457609486131685210"},{"denom":"ASSET7","amount":"522893206.718139844365046281"},{"denom":"ASSET8","amount":"2140132.602401306956892008"},{"denom":"ASSET9","amount":"131042523.097148888327784724"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004472729794114"},{"denom":"ASSET1","index":"0.000036518404552659"},{"denom":"ASSET10","index":"0.000031806618583794"},{"denom":"ASSET11","index":"0.000038065878352943"},{"denom":"ASSET12","index":"0.000036234170359366"},{"denom":"ASSET13","index":"0.000012300327066335"},{"denom":"ASSET14","index":"0.000035130679728770"},{"denom":"ASSET15","index":"0.000028544805069229"},{"denom":"ASSET16","index":"0.000016203683260988"},{"denom":"ASSET17","index":"0.000013151129891361"},{"denom":"ASSET18","index":"0.000005464565365162"},{"denom":"ASSET2","index":"0.000011020513055337"},{"denom":"ASSET3","index":"0.000003175272891215"},{"denom":"ASSET4","index":"0.000029958504869629"},{"denom":"ASSET5","index":"0.000002495325874955"},{"denom":"ASSET6","index":"0.000010191162452474"},{"denom":"ASSET7","index":"0.000015724445267312"},{"denom":"ASSET8","index":"0.000022717890304093"},{"denom":"ASSET9","index":"0.000009078313256265"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"77020000.000000000000000000"},{"denom":"ASSET10","amount":"82961053.000000005168244576"},{"denom":"ASSET11","amount":"524652668.000000000000000000"},{"denom":"ASSET14","amount":"346641395.000000000000000000"},{"denom":"ASSET15","amount":"1590971931.205746352619445273"},{"denom":"ASSET16","amount":"2148652379.875367586377578903"},{"denom":"ASSET17","amount":"23060854.449193707905008053"},{"denom":"ASSET2","amount":"1192640990.232794196740455321"},{"denom":"ASSET6","amount":"247189664.000000000000000000"},{"denom":"ASSET7","amount":"367574347.000000000000000000"},{"denom":"ASSET8","amount":"336199284.485246471522752316"},{"denom":"ASSET9","amount":"711795710.706742600166366920"}],"validator_shares":[{"denom":"ASSET0","amount":"77020801.423638589662460000"},{"denom":"ASSET10","amount":"82961053.000000000000000000"},{"denom":"ASSET11","amount":"524652668.000000000000000000"},{"denom":"ASSET14","amount":"346705529.475145900182309460"},{"denom":"ASSET15","amount":"1591071525.405509692162282248"},{"denom":"ASSET16","amount":"2148652379.875367534100791151"},{"denom":"ASSET17","amount":"23060854.449193688960140502"},{"denom":"ASSET2","amount":"1192640990.232794225375833035"},{"denom":"ASSET6","amount":"247203944.064729212014468352"},{"denom":"ASSET7","amount":"367605262.036477685075871064"},{"denom":"ASSET8","amount":"336199284.507641827858458445"},{"denom":"ASSET9","amount":"711813364.995849949691939684"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004912340647587"},{"denom":"ASSET1","index":"0.000040199309595439"},{"denom":"ASSET10","index":"0.000034800768875367"},{"denom":"ASSET11","index":"0.000041767894394800"},{"denom":"ASSET12","index":"0.000039753547235653"},{"denom":"ASSET13","index":"0.000013472552474856"},{"denom":"ASSET14","index":"0.000038537764465707"},{"denom":"ASSET15","index":"0.000031242193966784"},{"denom":"ASSET16","index":"0.000017838437870347"},{"denom":"ASSET17","index":"0.000014440562344565"},{"denom":"ASSET18","index":"0.000006002059033299"},{"denom":"ASSET2","index":"0.000012133740101151"},{"denom":"ASSET3","index":"0.000003488688045009"},{"denom":"ASSET4","index":"0.000032952478616949"},{"denom":"ASSET5","index":"0.000002739203403453"},{"denom":"ASSET6","index":"0.000011180764418736"},{"denom":"ASSET7","index":"0.000017269876640579"},{"denom":"ASSET8","index":"0.000024857889435420"},{"denom":"ASSET9","index":"0.000009971931425304"}],"total_delegator_shares":[{"denom":"ASSET1","amount":"214022119.000000000000000000"},{"denom":"ASSET11","amount":"2024801341.672628561936388731"},{"denom":"ASSET12","amount":"1000000000.000000000000000000"},{"denom":"ASSET13","amount":"256937371.111214661982639493"},{"denom":"ASSET15","amount":"975774924.000000000000000000"},{"denom":"ASSET16","amount":"1604723462.789505217738556269"},{"denom":"ASSET17","amount":"707347905.000000000000000000"},{"denom":"ASSET18","amount":"2086785441.066526836715336204"},{"denom":"ASSET2","amount":"762061555.999999953803788010"},{"denom":"ASSET3","amount":"212286843.090627272783440313"},{"denom":"ASSET4","amount":"1047867669.361541146299582098"},{"denom":"ASSET5","amount":"496808963.000000010173710232"},{"denom":"ASSET6","amount":"644429567.000000000000000000"},{"denom":"ASSET7","amount":"925739183.349270872283878094"},{"denom":"ASSET8","amount":"1404599665.726052883144066058"},{"denom":"ASSET9","amount":"801691851.263973727434282708"}],"validator_shares":[{"denom":"ASSET1","amount":"214037813.391714801677625394"},{"denom":"ASSET11","amount":"2024801341.672628586069342258"},{"denom":"ASSET12","amount":"1000182797.760666037000000000"},{"denom":"ASSET13","amount":"256945423.985362739231253204"},{"denom":"ASSET15","amount":"975897094.054067862565680288"},{"denom":"ASSET16","amount":"1604780816.232840510381632283"},{"denom":"ASSET17","amount":"707394198.786457487398050045"},{"denom":"ASSET18","amount":"2086785441.066526834535580752"},{"denom":"ASSET2","amount":"762083624.383950164506840056"},{"denom":"ASSET3","amount":"212286843.090627269986018680"},{"denom":"ASSET4","amount":"1047867669.361541156045528072"},{"denom":"ASSET5","amount":"496808963.000000000000000000"},{"denom":"ASSET6","amount":"644485410.523319666194517548"},{"denom":"ASSET7","amount":"925739183.349270872631288695"},{"denom":"ASSET8","amount":"1404599665.726053961361002441"},{"denom":"ASSET9","amount":"801691851.263973702863074032"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000005006228103618"},{"denom":"ASSET1","index":"0.000040947325300376"},{"denom":"ASSET10","index":"0.000035488645967587"},{"denom":"ASSET11","index":"0.000042574940264102"},{"denom":"ASSET12","index":"0.000040516417800037"},{"denom":"ASSET13","index":"0.000013739373191785"},{"denom":"ASSET14","index":"0.000039287313389576"},{"denom":"ASSET15","index":"0.000031859830028224"},{"denom":"ASSET16","index":"0.000018170366377289"},{"denom":"ASSET17","index":"0.000014714890817855"},{"denom":"ASSET18","index":"0.000006118552920444"},{"denom":"ASSET2","index":"0.000012357882268468"},{"denom":"ASSET3","index":"0.000003555809778192"},{"denom":"ASSET4","index":"0.000033572245212516"},{"denom":"ASSET5","index":"0.000002791901316791"},{"denom":"ASSET6","index":"0.000011398916012655"},{"denom":"ASSET7","index":"0.000017601054204752"},{"denom":"ASSET8","index":"0.000025355321651880"},{"denom":"ASSET9","index":"0.000010162593600920"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"1000000000.000000000000000000"},{"denom":"ASSET10","amount":"1737695921.372164792676165092"},{"denom":"ASSET12","amount":"1951409275.833625374922275490"},{"denom":"ASSET13","amount":"404620559.000000000000000000"},{"denom":"ASSET14","amount":"353153341.000000000000000000"},{"denom":"ASSET15","amount":"143619715.999999998287239432"},{"denom":"ASSET16","amount":"1059700387.772085640063456440"},{"denom":"ASSET17","amount":"98220234.000000000000000000"},{"denom":"ASSET18","amount":"25623081.000000000000000000"},{"denom":"ASSET2","amount":"279044726.550824481426385797"},{"denom":"ASSET3","amount":"39516384.000000000000000000"},{"denom":"ASSET4","amount":"3484750554.446516402202969491"},{"denom":"ASSET5","amount":"1489829127.489904750000000000"},{"denom":"ASSET6","amount":"75391007.000000000000000000"},{"denom":"ASSET7","amount":"1479176745.056517589200640361"},{"denom":"ASSET9","amount":"1176600652.201749489000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"1000020810.883011182000000000"},{"denom":"ASSET10","amount":"1737835171.771228803657725080"},{"denom":"ASSET12","amount":"1951409275.833625386338143450"},{"denom":"ASSET13","amount":"404658604.754610008634749722"},{"denom":"ASSET14","amount":"353186009.136514716423062688"},{"denom":"ASSET15","amount":"143637697.634942005402887392"},{"denom":"ASSET16","amount":"1059700387.772085677201158110"},{"denom":"ASSET17","amount":"98220234.000000000000000000"},{"denom":"ASSET18","amount":"25623443.750025105865613898"},{"denom":"ASSET2","amount":"279044726.550824482058086014"},{"denom":"ASSET3","amount":"39516903.374113659360083424"},{"denom":"ASSET4","amount":"3484750554.446516483105044342"},{"denom":"ASSET5","amount":"1489829127.489904693000000000"},{"denom":"ASSET6","amount":"75393184.625960317102840459"},{"denom":"ASSET7","amount":"1479176745.056517574233097148"},{"denom":"ASSET9","amount":"1176600652.201749585000000000"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004759364904599"},{"denom":"ASSET1","index":"0.000039014688598823"},{"denom":"ASSET10","index":"0.000033564746899774"},{"denom":"ASSET11","index":"0.000040428699846607"},{"denom":"ASSET12","index":"0.000038441898385906"},{"denom":"ASSET13","index":"0.000013020994461924"},{"denom":"ASSET14","index":"0.000037304807804505"},{"denom":"ASSET15","index":"0.000030152778242557"},{"denom":"ASSET16","index":"0.000017316516616402"},{"denom":"ASSET17","index":"0.000013971686283299"},{"denom":"ASSET18","index":"0.000005820085693082"},{"denom":"ASSET2","index":"0.000011772463606205"},{"denom":"ASSET3","index":"0.000003382604675726"},{"denom":"ASSET4","index":"0.000031964503105066"},{"denom":"ASSET5","index":"0.000002653911338254"},{"denom":"ASSET6","index":"0.000010830608501608"},{"denom":"ASSET7","index":"0.000016733421795061"},{"denom":"ASSET8","index":"0.000024009455581904"},{"denom":"ASSET9","index":"0.000009659109983255"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"1483069130.000000005505419110"},{"denom":"ASSET1","amount":"297339180.941310179402067722"},{"denom":"ASSET10","amount":"986132731.047238661757225540"},{"denom":"ASSET11","amount":"507817630.426419879394621109"},{"denom":"ASSET12","amount":"1077847134.459506580147920831"},{"denom":"ASSET14","amount":"849727528.172004457803527051"},{"denom":"ASSET16","amount":"377642.000000000000000000"},{"denom":"ASSET18","amount":"804222982.675119019751384787"},{"denom":"ASSET2","amount":"285442023.000000000000000000"},{"denom":"ASSET3","amount":"812466697.000000000000000000"},{"denom":"ASSET5","amount":"2921331235.265413450199078813"},{"denom":"ASSET6","amount":"581829997.999999999892762913"},{"denom":"ASSET8","amount":"445090574.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"1483099993.978161925469011660"},{"denom":"ASSET1","amount":"297339180.941310203688113634"},{"denom":"ASSET10","amount":"986290785.004260544998709434"},{"denom":"ASSET11","amount":"507817630.426419880610985056"},{"denom":"ASSET12","amount":"1078044162.502025947245459213"},{"denom":"ASSET14","amount":"849727528.172005090324052726"},{"denom":"ASSET15","amount":"0.415640833959900920"},{"denom":"ASSET16","amount":"377668.994626597474258966"},{"denom":"ASSET18","amount":"804222982.675119048302578975"},{"denom":"ASSET2","amount":"285442023.000000000000000000"},{"denom":"ASSET3","amount":"812472036.219449547762952614"},{"denom":"ASSET5","amount":"2921350586.812674345161689741"},{"denom":"ASSET6","amount":"581829998.000000000000000000"},{"denom":"ASSET8","amount":"445138233.816673031401136106"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004829962844284"},{"denom":"ASSET1","index":"0.000039524111522190"},{"denom":"ASSET10","index":"0.000034078647298627"},{"denom":"ASSET11","index":"0.000041019961315880"},{"denom":"ASSET12","index":"0.000038986303917418"},{"denom":"ASSET13","index":"0.000013223748427218"},{"denom":"ASSET14","index":"0.000037862348824484"},{"denom":"ASSET15","index":"0.000030615488739002"},{"denom":"ASSET16","index":"0.000017546337426996"},{"denom":"ASSET17","index":"0.000014163136845027"},{"denom":"ASSET18","index":"0.000005908859381642"},{"denom":"ASSET2","index":"0.000011921448629340"},{"denom":"ASSET3","index":"0.000003430931561974"},{"denom":"ASSET4","index":"0.000032397189102807"},{"denom":"ASSET5","index":"0.000002693636544476"},{"denom":"ASSET6","index":"0.000010996765047817"},{"denom":"ASSET7","index":"0.000016976981501674"},{"denom":"ASSET8","index":"0.000024395918561262"},{"denom":"ASSET9","index":"0.000009795939235919"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"802058067.000000000000000000"},{"denom":"ASSET1","amount":"171951580.945141188239785408"},{"denom":"ASSET10","amount":"525917394.000000000000000000"},{"denom":"ASSET11","amount":"2184997909.276564906019534207"},{"denom":"ASSET12","amount":"326550261.399723173244961583"},{"denom":"ASSET13","amount":"591378548.024734447639528981"},{"denom":"ASSET14","amount":"786895215.000000000000000000"},{"denom":"ASSET16","amount":"1759875181.918850019275619844"},{"denom":"ASSET17","amount":"321241540.274020048508747500"},{"denom":"ASSET18","amount":"420999835.999999919168031488"},{"denom":"ASSET2","amount":"1353114448.059552788169834557"},{"denom":"ASSET4","amount":"247521161.000000003532987100"},{"denom":"ASSET5","amount":"771454208.467887061822275564"},{"denom":"ASSET6","amount":"479783416.999999977929962818"},{"denom":"ASSET8","amount":"727092255.000000000000000000"},{"denom":"ASSET9","amount":"546990164.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"802074758.536600511774305194"},{"denom":"ASSET1","amount":"171976800.530134370167489759"},{"denom":"ASSET10","amount":"526001686.228187227295867304"},{"denom":"ASSET11","amount":"2185190370.341737850691422160"},{"denom":"ASSET12","amount":"326550261.399723093719173815"},{"denom":"ASSET13","amount":"591378548.024734423951496948"},{"denom":"ASSET14","amount":"786968006.043781735397457120"},{"denom":"ASSET15","amount":"0.077607284293369408"},{"denom":"ASSET16","amount":"1759938080.545226356625586992"},{"denom":"ASSET17","amount":"321241540.593590210960270808"},{"denom":"ASSET18","amount":"420999836.717007472609952086"},{"denom":"ASSET2","amount":"1353114448.059552750359909799"},{"denom":"ASSET4","amount":"247521161.000000000000000000"},{"denom":"ASSET5","amount":"771454208.481956654130580062"},{"denom":"ASSET6","amount":"479783417.646780788227551698"},{"denom":"ASSET8","amount":"727170111.251293429995526845"},{"denom":"ASSET9","amount":"547017297.734833557273367712"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004446684873458"},{"denom":"ASSET1","index":"0.000036404895314087"},{"denom":"ASSET10","index":"0.000031497863426924"},{"denom":"ASSET11","index":"0.000037815820194448"},{"denom":"ASSET12","index":"0.000035989413017548"},{"denom":"ASSET13","index":"0.000012195791726504"},{"denom":"ASSET14","index":"0.000034891798741053"},{"denom":"ASSET15","index":"0.000028278958051966"},{"denom":"ASSET16","index":"0.000016154851773622"},{"denom":"ASSET17","index":"0.000013073633758252"},{"denom":"ASSET18","index":"0.000005434133264708"},{"denom":"ASSET2","index":"0.000010987802074141"},{"denom":"ASSET3","index":"0.000003158831420452"},{"denom":"ASSET4","index":"0.000029841108712677"},{"denom":"ASSET5","index":"0.000002479169702478"},{"denom":"ASSET6","index":"0.000010122369652719"},{"denom":"ASSET7","index":"0.000015637311791850"},{"denom":"ASSET8","index":"0.000022502186830931"},{"denom":"ASSET9","index":"0.000009028489924777"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"461712577.999999993180922763"},{"denom":"ASSET1","amount":"266358906.000000000000000000"},{"denom":"ASSET10","amount":"257271438.000000000000000000"},{"denom":"ASSET11","amount":"1492890421.147140111232035723"},{"denom":"ASSET12","amount":"1531466236.272179092828687460"},{"denom":"ASSET15","amount":"931310510.590803537531419224"},{"denom":"ASSET17","amount":"600418905.109949604321241416"},{"denom":"ASSET3","amount":"1001399920.199655902062963153"},{"denom":"ASSET5","amount":"29926782.000000000000000000"},{"denom":"ASSET6","amount":"152880219.000000000000000000"},{"denom":"ASSET9","amount":"205738442.000000000000000000"}],"validator_shares":[{"denom":"ASSET0","amount":"461712578.000000000000000000"},{"denom":"ASSET1","amount":"266358906.000000000000000000"},{"denom":"ASSET10","amount":"257333292.345647254042333962"},{"denom":"ASSET11","amount":"1493021919.341907566642535128"},{"denom":"ASSET12","amount":"1531466236.272179119275571495"},{"denom":"ASSET15","amount":"931310510.590804355771985136"},{"denom":"ASSET17","amount":"600418905.109947384571400436"},{"denom":"ASSET3","amount":"1001406501.015768670835293071"},{"denom":"ASSET5","amount":"29926782.000000000000000000"},{"denom":"ASSET6","amount":"152884634.857367621631472503"},{"denom":"ASSET9","amount":"205748647.763645682672166736"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004565478059780"},{"denom":"ASSET1","index":"0.000037736114077554"},{"denom":"ASSET10","index":"0.000031825820517489"},{"denom":"ASSET11","index":"0.000038685850648716"},{"denom":"ASSET12","index":"0.000036788452071453"},{"denom":"ASSET13","index":"0.000012381244410564"},{"denom":"ASSET14","index":"0.000035654955133069"},{"denom":"ASSET15","index":"0.000028616198788550"},{"denom":"ASSET16","index":"0.000016750351619561"},{"denom":"ASSET17","index":"0.000013405640316386"},{"denom":"ASSET18","index":"0.000005582271545328"},{"denom":"ASSET2","index":"0.000011392477328809"},{"denom":"ASSET3","index":"0.000003247635140503"},{"denom":"ASSET4","index":"0.000030836249037897"},{"denom":"ASSET5","index":"0.000002543131552682"},{"denom":"ASSET6","index":"0.000010352525282998"},{"denom":"ASSET7","index":"0.000016058778639515"},{"denom":"ASSET8","index":"0.000022752754383051"},{"denom":"ASSET9","index":"0.000009275867790330"}],"total_delegator_shares":[{"denom":"ASSET1","amount":"1391352433.785537847000000000"},{"denom":"ASSET10","amount":"118690749.000000000000000000"},{"denom":"ASSET11","amount":"2049892111.899962102132487098"},{"denom":"ASSET13","amount":"1000000000.000000000000000000"},{"denom":"ASSET14","amount":"915735654.000000000000000000"},{"denom":"ASSET15","amount":"2000125203.108896343000000000"},{"denom":"ASSET16","amount":"1797473268.388945838375034800"},{"denom":"ASSET17","amount":"12390908.000000008865494736"},{"denom":"ASSET2","amount":"35707562.756376553813852082"},{"denom":"ASSET3","amount":"151098414.000000000000000000"},{"denom":"ASSET4","amount":"38953813.000000000000000000"},{"denom":"ASSET5","amount":"1917732217.319611114454763522"},{"denom":"ASSET6","amount":"377562242.338692757414600032"},{"denom":"ASSET7","amount":"970984057.000000000223978942"},{"denom":"ASSET8","amount":"936263191.227313591220984870"},{"denom":"ASSET9","amount":"989226327.000000000000000000"}],"validator_shares":[{"denom":"ASSET1","amount":"1391454462.632888709168217842"},{"denom":"ASSET10","amount":"118700260.292488045986422217"},{"denom":"ASSET11","amount":"2049892111.899962070308795424"},{"denom":"ASSET13","amount":"1000094028.229074758000000000"},{"denom":"ASSET14","amount":"915820363.314292640726561472"},{"denom":"ASSET15","amount":"2000125203.108896312000000000"},{"denom":"ASSET16","amount":"1797537510.782029388698045207"},{"denom":"ASSET17","amount":"12391313.467227962422689304"},{"denom":"ASSET2","amount":"35707562.756376546272540002"},{"denom":"ASSET3","amount":"151099406.960811567418620468"},{"denom":"ASSET4","amount":"38956926.934183410087434552"},{"denom":"ASSET5","amount":"1917744920.803965557016491167"},{"denom":"ASSET6","amount":"377562242.338692769584784928"},{"denom":"ASSET7","amount":"971024888.705758122010768443"},{"denom":"ASSET8","amount":"936313316.918231738730677634"},{"denom":"ASSET9","amount":"989275398.092340870352245816"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004642329094444"},{"denom":"ASSET1","index":"0.000037967161482845"},{"denom":"ASSET10","index":"0.000032931253260152"},{"denom":"ASSET11","index":"0.000039486280861719"},{"denom":"ASSET12","index":"0.000037586804680979"},{"denom":"ASSET13","index":"0.000012743069023422"},{"denom":"ASSET14","index":"0.000036434359116272"},{"denom":"ASSET15","index":"0.000029559994513742"},{"denom":"ASSET16","index":"0.000016847409196889"},{"denom":"ASSET17","index":"0.000013650334747675"},{"denom":"ASSET18","index":"0.000005671704965855"},{"denom":"ASSET2","index":"0.000011459689932521"},{"denom":"ASSET3","index":"0.000003296448580147"},{"denom":"ASSET4","index":"0.000031129189219066"},{"denom":"ASSET5","index":"0.000002588892680165"},{"denom":"ASSET6","index":"0.000010569495723679"},{"denom":"ASSET7","index":"0.000016320903643661"},{"denom":"ASSET8","index":"0.000023519579582169"},{"denom":"ASSET9","index":"0.000009424684718802"}],"total_delegator_shares":[{"denom":"ASSET10","amount":"2036936937.802665598522504730"},{"denom":"ASSET11","amount":"916183067.000000000000000000"},{"denom":"ASSET12","amount":"1964458885.939400312201044344"},{"denom":"ASSET13","amount":"1265637911.778400113000000000"},{"denom":"ASSET14","amount":"39917086.000000000000000000"},{"denom":"ASSET15","amount":"1459921674.499756462291613080"},{"denom":"ASSET16","amount":"2213851069.168140460107641289"},{"denom":"ASSET3","amount":"1000259574.235505108135453041"},{"denom":"ASSET4","amount":"1337229747.843056883215839250"},{"denom":"ASSET7","amount":"632796320.000000000000000000"},{"denom":"ASSET8","amount":"2249774232.999999985642600661"},{"denom":"ASSET9","amount":"1467488961.881541706220030781"}],"validator_shares":[{"denom":"ASSET10","amount":"2036936937.802666735996427990"},{"denom":"ASSET11","amount":"916183067.000000000000000000"},{"denom":"ASSET12","amount":"1964458885.939400328185978405"},{"denom":"ASSET13","amount":"1265637911.778400129000000000"},{"denom":"ASSET14","amount":"39917086.000000000000000000"},{"denom":"ASSET15","amount":"1459921674.499756455000903104"},{"denom":"ASSET16","amount":"2213851069.168140205943117934"},{"denom":"ASSET3","amount":"1000259574.235505236649541694"},{"denom":"ASSET4","amount":"1337229747.843056839848060680"},{"denom":"ASSET7","amount":"632849541.671956734451139840"},{"denom":"ASSET8","amount":"2249894681.490227546987175929"},{"denom":"ASSET9","amount":"1467525359.227023253970991917"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004438699641099"},{"denom":"ASSET1","index":"0.000036255725401955"},{"denom":"ASSET10","index":"0.000031773819944540"},{"denom":"ASSET11","index":"0.000037854845959991"},{"denom":"ASSET12","index":"0.000036116368998824"},{"denom":"ASSET13","index":"0.000012242486087336"},{"denom":"ASSET14","index":"0.000034912499362753"},{"denom":"ASSET15","index":"0.000028483723402882"},{"denom":"ASSET16","index":"0.000016076425142514"},{"denom":"ASSET17","index":"0.000013107565199934"},{"denom":"ASSET18","index":"0.000005413409529918"},{"denom":"ASSET2","index":"0.000010953679082828"},{"denom":"ASSET3","index":"0.000003149863059983"},{"denom":"ASSET4","index":"0.000029743851068357"},{"denom":"ASSET5","index":"0.000002475468657266"},{"denom":"ASSET6","index":"0.000010109707200491"},{"denom":"ASSET7","index":"0.000015613975686421"},{"denom":"ASSET8","index":"0.000022613294693202"},{"denom":"ASSET9","index":"0.000009024920539711"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"1318625751.378237137000000000"},{"denom":"ASSET1","amount":"830409212.255640181121520890"},{"denom":"ASSET10","amount":"323637123.552889908660366861"},{"denom":"ASSET11","amount":"1007424389.649824227000000000"},{"denom":"ASSET13","amount":"68767176.000000000000000000"},{"denom":"ASSET14","amount":"756667312.000000000000000000"},{"denom":"ASSET17","amount":"118034255.000000000000000000"},{"denom":"ASSET18","amount":"1299596747.000000053000000000"},{"denom":"ASSET3","amount":"977816431.999999999669518618"},{"denom":"ASSET4","amount":"1478971095.468523913787152830"},{"denom":"ASSET5","amount":"16930537.000000000000000000"},{"denom":"ASSET6","amount":"166180562.000000000000000000"},{"denom":"ASSET8","amount":"152737179.000000000000000000"},{"denom":"ASSET9","amount":"632039978.661331643336585556"}],"validator_shares":[{"denom":"ASSET0","amount":"1318639472.202017957178612258"},{"denom":"ASSET1","amount":"830409212.255640197828864606"},{"denom":"ASSET10","amount":"323663058.239190543191924146"},{"denom":"ASSET11","amount":"1007424389.649825796000000000"},{"denom":"ASSET13","amount":"68769331.285591394669365704"},{"denom":"ASSET14","amount":"756807308.150532394144006976"},{"denom":"ASSET17","amount":"118041979.985904409534090195"},{"denom":"ASSET18","amount":"1299615145.597444302317993726"},{"denom":"ASSET3","amount":"977816432.000000000000000000"},{"denom":"ASSET4","amount":"1479207560.247984023433230100"},{"denom":"ASSET5","amount":"16930761.304048525531310141"},{"denom":"ASSET6","amount":"166190162.195832204498572816"},{"denom":"ASSET8","amount":"152753533.931727437529575601"},{"denom":"ASSET9","amount":"632039978.661331732463426160"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004668297440245"},{"denom":"ASSET1","index":"0.000038252783071288"},{"denom":"ASSET10","index":"0.000033083245025153"},{"denom":"ASSET11","index":"0.000039708345694553"},{"denom":"ASSET12","index":"0.000037813797973625"},{"denom":"ASSET13","index":"0.000012799944975093"},{"denom":"ASSET14","index":"0.000036625421736424"},{"denom":"ASSET15","index":"0.000029696005658341"},{"denom":"ASSET16","index":"0.000016971159537831"},{"denom":"ASSET17","index":"0.000013740059333476"},{"denom":"ASSET18","index":"0.000005702232169970"},{"denom":"ASSET2","index":"0.000011549026586519"},{"denom":"ASSET3","index":"0.000003315565659179"},{"denom":"ASSET4","index":"0.000031346012924510"},{"denom":"ASSET5","index":"0.000002602988639174"},{"denom":"ASSET6","index":"0.000010621884419797"},{"denom":"ASSET7","index":"0.000016417450552926"},{"denom":"ASSET8","index":"0.000023609141580926"},{"denom":"ASSET9","index":"0.000009483071524163"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"1823844698.883011214000000000"},{"denom":"ASSET1","amount":"1969490752.703386201000000000"},{"denom":"ASSET11","amount":"1000000000.000000000000000000"},{"denom":"ASSET12","amount":"1175321129.715422452000000000"},{"denom":"ASSET13","amount":"635115638.010350093002962644"},{"denom":"ASSET14","amount":"2955249.000000000000000000"},{"denom":"ASSET15","amount":"1505001329.182735076208538050"},{"denom":"ASSET17","amount":"266406757.092629316200653373"},{"denom":"ASSET18","amount":"306744164.999999839481048092"},{"denom":"ASSET2","amount":"22682342.996345047803807375"},{"denom":"ASSET3","amount":"1311519592.167926235121716070"},{"denom":"ASSET4","amount":"100763539.155468541780809165"},{"denom":"ASSET5","amount":"979080321.229857282471556622"},{"denom":"ASSET6","amount":"223887250.000000000000000000"},{"denom":"ASSET7","amount":"310912969.999999999051541462"},{"denom":"ASSET8","amount":"318647632.000000000000000000"},{"denom":"ASSET9","amount":"739702617.000000013727704282"}],"validator_shares":[{"denom":"ASSET0","amount":"1823844698.883011182000000000"},{"denom":"ASSET1","amount":"1969779611.573761844328861806"},{"denom":"ASSET10","amount":"0.022596655421547429"},{"denom":"ASSET11","amount":"1000176173.649825796000000000"},{"denom":"ASSET12","amount":"1175321129.715422465000000000"},{"denom":"ASSET13","amount":"635115638.010350115445743768"},{"denom":"ASSET14","amount":"2955795.770657729571991452"},{"denom":"ASSET15","amount":"1505001329.182735052316749184"},{"denom":"ASSET17","amount":"266406757.092629299535347685"},{"denom":"ASSET18","amount":"306748507.625836246147929570"},{"denom":"ASSET2","amount":"22682342.996345029423258625"},{"denom":"ASSET3","amount":"1311536829.811070118847059460"},{"denom":"ASSET4","amount":"100763539.155469008598384570"},{"denom":"ASSET5","amount":"979086806.875470718839069253"},{"denom":"ASSET6","amount":"223900183.892017609897258000"},{"denom":"ASSET7","amount":"310939119.501148227315394640"},{"denom":"ASSET8","amount":"318681752.443369388393818608"},{"denom":"ASSET9","amount":"739720963.449209443757392596"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","validator":{"global_reward_history":[{"denom":"ASSET0","index":"0.000004666078822529"},{"denom":"ASSET1","index":"0.000038144124395476"},{"denom":"ASSET10","index":"0.000033089052036549"},{"denom":"ASSET11","index":"0.000039681425534428"},{"denom":"ASSET12","index":"0.000037761291809173"},{"denom":"ASSET13","index":"0.000012808979605762"},{"denom":"ASSET14","index":"0.000036619269127831"},{"denom":"ASSET15","index":"0.000029704245003480"},{"denom":"ASSET16","index":"0.000016927274823028"},{"denom":"ASSET17","index":"0.000013712454456823"},{"denom":"ASSET18","index":"0.000005702042524448"},{"denom":"ASSET2","index":"0.000011511448148246"},{"denom":"ASSET3","index":"0.000003313641110366"},{"denom":"ASSET4","index":"0.000031278179163152"},{"denom":"ASSET5","index":"0.000002602567541660"},{"denom":"ASSET6","index":"0.000010625923836833"},{"denom":"ASSET7","index":"0.000016403144902467"},{"denom":"ASSET8","index":"0.000023643127909799"},{"denom":"ASSET9","index":"0.000009470170432977"}],"total_delegator_shares":[{"denom":"ASSET0","amount":"41273098.941665646609690779"},{"denom":"ASSET1","amount":"119708391.386943676533737669"},{"denom":"ASSET11","amount":"302100269.446654734494981293"},{"denom":"ASSET12","amount":"1560080979.690482017168132280"},{"denom":"ASSET13","amount":"751736045.999999807119341260"},{"denom":"ASSET15","amount":"1158500273.483559746608936426"},{"denom":"ASSET16","amount":"2295514351.715411961598721053"},{"denom":"ASSET17","amount":"1000000000.000000000000000000"},{"denom":"ASSET3","amount":"1372813410.693762832860858848"},{"denom":"ASSET4","amount":"1305397643.999999996170978040"},{"denom":"ASSET5","amount":"794855448.096051673993474670"},{"denom":"ASSET8","amount":"164300612.008852341953009123"},{"denom":"ASSET9","amount":"546056526.137403177729130208"}],"validator_shares":[{"denom":"ASSET0","amount":"41273098.941665646935436124"},{"denom":"ASSET1","amount":"119717169.687031341469268302"},{"denom":"ASSET11","amount":"302126880.070583879342502900"},{"denom":"ASSET12","amount":"1560366159.000027259930834742"},{"denom":"ASSET13","amount":"751759606.744569121180349934"},{"denom":"ASSET15","amount":"1158500273.483559730817399448"},{"denom":"ASSET16","amount":"2295514351.715411939217427921"},{"denom":"ASSET17","amount":"1000065447.981324448724863836"},{"denom":"ASSET3","amount":"1372822432.296851392520642650"},{"denom":"ASSET4","amount":"1305397644.000000000000000000"},{"denom":"ASSET5","amount":"794865978.730431458245509398"},{"denom":"ASSET8","amount":"164309408.340666288385317871"},{"denom":"ASSET9","amount":"546056526.137403070495571520"}]}},{"validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","validator":{"global_reward_history":[],"total_delegator_shares":[],"validator_shares":[]}}],"reward_weight_change_snaphots":[{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001587610635106"},{"denom":"ASSET1","index":"0.000013244938725362"},{"denom":"ASSET10","index":"0.000009227311812032"},{"denom":"ASSET11","index":"0.000012812935831455"},{"denom":"ASSET12","index":"0.000011538527294432"},{"denom":"ASSET13","index":"0.000003970376596809"},{"denom":"ASSET14","index":"0.000011969180179294"},{"denom":"ASSET15","index":"0.000008557707326477"},{"denom":"ASSET16","index":"0.000005967039972082"},{"denom":"ASSET17","index":"0.000004237678387413"},{"denom":"ASSET18","index":"0.000002018263519969"},{"denom":"ASSET2","index":"0.000003909626189853"},{"denom":"ASSET3","index":"0.000001143457659809"},{"denom":"ASSET4","index":"0.000010763622103487"},{"denom":"ASSET5","index":"0.000000886955941552"},{"denom":"ASSET6","index":"0.000003612624200292"},{"denom":"ASSET7","index":"0.000005533687069132"},{"denom":"ASSET8","index":"0.000007219848364411"},{"denom":"ASSET9","index":"0.000003118520890387"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003152887181228"},{"denom":"ASSET1","index":"0.000026760532918289"},{"denom":"ASSET10","index":"0.000021371603424459"},{"denom":"ASSET11","index":"0.000026596151859305"},{"denom":"ASSET12","index":"0.000025366346961436"},{"denom":"ASSET13","index":"0.000008353980761099"},{"denom":"ASSET14","index":"0.000024408754798213"},{"denom":"ASSET15","index":"0.000019248058608344"},{"denom":"ASSET16","index":"0.000011870971278696"},{"denom":"ASSET17","index":"0.000009321801721671"},{"denom":"ASSET18","index":"0.000003850124607081"},{"denom":"ASSET2","index":"0.000008105134387478"},{"denom":"ASSET3","index":"0.000002250596051831"},{"denom":"ASSET4","index":"0.000021694971342643"},{"denom":"ASSET5","index":"0.000001752750611640"},{"denom":"ASSET6","index":"0.000007075802880646"},{"denom":"ASSET7","index":"0.000011117440314842"},{"denom":"ASSET8","index":"0.000015186957305377"},{"denom":"ASSET9","index":"0.000006446159830056"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001450981944084"},{"denom":"ASSET1","index":"0.000012097851501865"},{"denom":"ASSET10","index":"0.000008428524260541"},{"denom":"ASSET11","index":"0.000011703479004578"},{"denom":"ASSET12","index":"0.000010538773481717"},{"denom":"ASSET13","index":"0.000003626563958485"},{"denom":"ASSET14","index":"0.000010932552044520"},{"denom":"ASSET15","index":"0.000007816771742159"},{"denom":"ASSET16","index":"0.000005449942823954"},{"denom":"ASSET17","index":"0.000003870671031354"},{"denom":"ASSET18","index":"0.000001843572637920"},{"denom":"ASSET2","index":"0.000003571328051486"},{"denom":"ASSET3","index":"0.000001044730757120"},{"denom":"ASSET4","index":"0.000009831991445917"},{"denom":"ASSET5","index":"0.000000810720570477"},{"denom":"ASSET6","index":"0.000003299899992359"},{"denom":"ASSET7","index":"0.000005054382457699"},{"denom":"ASSET8","index":"0.000006595048508847"},{"denom":"ASSET9","index":"0.000002848509784621"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002831039632868"},{"denom":"ASSET1","index":"0.000024014703977493"},{"denom":"ASSET10","index":"0.000019136467933987"},{"denom":"ASSET11","index":"0.000023856136612857"},{"denom":"ASSET12","index":"0.000022731094165303"},{"denom":"ASSET13","index":"0.000007491812146677"},{"denom":"ASSET14","index":"0.000021900750691559"},{"denom":"ASSET15","index":"0.000017242457090593"},{"denom":"ASSET16","index":"0.000010655585625623"},{"denom":"ASSET17","index":"0.000008353141870908"},{"denom":"ASSET18","index":"0.000003458892129556"},{"denom":"ASSET2","index":"0.000007270317321266"},{"denom":"ASSET3","index":"0.000002020551075646"},{"denom":"ASSET4","index":"0.000019470118745656"},{"denom":"ASSET5","index":"0.000001574098937698"},{"denom":"ASSET6","index":"0.000006353413461243"},{"denom":"ASSET7","index":"0.000009977493764026"},{"denom":"ASSET8","index":"0.000013619759476676"},{"denom":"ASSET9","index":"0.000005782490697784"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001596167964962"},{"denom":"ASSET1","index":"0.000013307648687747"},{"denom":"ASSET10","index":"0.000009271254138767"},{"denom":"ASSET11","index":"0.000012873344596610"},{"denom":"ASSET12","index":"0.000011592750107942"},{"denom":"ASSET13","index":"0.000003989527201016"},{"denom":"ASSET14","index":"0.000012025715131995"},{"denom":"ASSET15","index":"0.000008598149750858"},{"denom":"ASSET16","index":"0.000005994556982506"},{"denom":"ASSET17","index":"0.000004257340617956"},{"denom":"ASSET18","index":"0.000002028240277625"},{"denom":"ASSET2","index":"0.000003928376470814"},{"denom":"ASSET3","index":"0.000001148919558672"},{"denom":"ASSET4","index":"0.000010814752131731"},{"denom":"ASSET5","index":"0.000000891818678410"},{"denom":"ASSET6","index":"0.000003630210866621"},{"denom":"ASSET7","index":"0.000005559360179979"},{"denom":"ASSET8","index":"0.000007254619109209"},{"denom":"ASSET9","index":"0.000003133416978198"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003160678210357"},{"denom":"ASSET1","index":"0.000026816731621709"},{"denom":"ASSET10","index":"0.000021409695697867"},{"denom":"ASSET11","index":"0.000026650151208928"},{"denom":"ASSET12","index":"0.000025413985003091"},{"denom":"ASSET13","index":"0.000008371194471357"},{"denom":"ASSET14","index":"0.000024459575922385"},{"denom":"ASSET15","index":"0.000019283728762326"},{"denom":"ASSET16","index":"0.000011895729224726"},{"denom":"ASSET17","index":"0.000009339186085895"},{"denom":"ASSET18","index":"0.000003859320220004"},{"denom":"ASSET2","index":"0.000008121656282140"},{"denom":"ASSET3","index":"0.000002255587694637"},{"denom":"ASSET4","index":"0.000021740936259308"},{"denom":"ASSET5","index":"0.000001757304707579"},{"denom":"ASSET6","index":"0.000007091577992612"},{"denom":"ASSET7","index":"0.000011140302591406"},{"denom":"ASSET8","index":"0.000015217956063596"},{"denom":"ASSET9","index":"0.000006459479788296"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001539653287763"},{"denom":"ASSET1","index":"0.000012837628062054"},{"denom":"ASSET10","index":"0.000008944076712630"},{"denom":"ASSET11","index":"0.000012418678362380"},{"denom":"ASSET12","index":"0.000011182855597091"},{"denom":"ASSET13","index":"0.000003848344731893"},{"denom":"ASSET14","index":"0.000011600753980079"},{"denom":"ASSET15","index":"0.000008294363000211"},{"denom":"ASSET16","index":"0.000005782767435536"},{"denom":"ASSET17","index":"0.000004106968636837"},{"denom":"ASSET18","index":"0.000001956500354065"},{"denom":"ASSET2","index":"0.000003789470997435"},{"denom":"ASSET3","index":"0.000001108613446191"},{"denom":"ASSET4","index":"0.000010432741141086"},{"denom":"ASSET5","index":"0.000000860502708115"},{"denom":"ASSET6","index":"0.000003501935883605"},{"denom":"ASSET7","index":"0.000005362766419174"},{"denom":"ASSET8","index":"0.000006998089525433"},{"denom":"ASSET9","index":"0.000003022535474442"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003102081054533"},{"denom":"ASSET1","index":"0.000026328097047411"},{"denom":"ASSET10","index":"0.000021065731925672"},{"denom":"ASSET11","index":"0.000026176422512857"},{"denom":"ASSET12","index":"0.000024984864029023"},{"denom":"ASSET13","index":"0.000008223750690350"},{"denom":"ASSET14","index":"0.000024017391771060"},{"denom":"ASSET15","index":"0.000018965095888316"},{"denom":"ASSET16","index":"0.000011675661088751"},{"denom":"ASSET17","index":"0.000009181817821335"},{"denom":"ASSET18","index":"0.000003784851704842"},{"denom":"ASSET2","index":"0.000007977007181168"},{"denom":"ASSET3","index":"0.000002213531006169"},{"denom":"ASSET4","index":"0.000021343717572048"},{"denom":"ASSET5","index":"0.000001724500934679"},{"denom":"ASSET6","index":"0.000006958604580417"},{"denom":"ASSET7","index":"0.000010936011139136"},{"denom":"ASSET8","index":"0.000014950117004491"},{"denom":"ASSET9","index":"0.000006344046059941"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001722784092424"},{"denom":"ASSET1","index":"0.000014376047839207"},{"denom":"ASSET10","index":"0.000010014727915911"},{"denom":"ASSET11","index":"0.000013905627425621"},{"denom":"ASSET12","index":"0.000012523636788373"},{"denom":"ASSET13","index":"0.000004309050988454"},{"denom":"ASSET14","index":"0.000012989875687172"},{"denom":"ASSET15","index":"0.000009287144342897"},{"denom":"ASSET16","index":"0.000006475075648346"},{"denom":"ASSET17","index":"0.000004597575508787"},{"denom":"ASSET18","index":"0.000002191113748617"},{"denom":"ASSET2","index":"0.000004242146751855"},{"denom":"ASSET3","index":"0.000001239819134475"},{"denom":"ASSET4","index":"0.000011683152316098"},{"denom":"ASSET5","index":"0.000000961748401110"},{"denom":"ASSET6","index":"0.000003920170113222"},{"denom":"ASSET7","index":"0.000006004655234759"},{"denom":"ASSET8","index":"0.000007836158711656"},{"denom":"ASSET9","index":"0.000003384936220430"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003308323901116"},{"denom":"ASSET1","index":"0.000028066718381779"},{"denom":"ASSET10","index":"0.000022316311421496"},{"denom":"ASSET11","index":"0.000027867424204892"},{"denom":"ASSET12","index":"0.000026530665881565"},{"denom":"ASSET13","index":"0.000008749579510737"},{"denom":"ASSET14","index":"0.000025590688346390"},{"denom":"ASSET15","index":"0.000020116135001180"},{"denom":"ASSET16","index":"0.000012455644018572"},{"denom":"ASSET17","index":"0.000009747635771928"},{"denom":"ASSET18","index":"0.000004046709206696"},{"denom":"ASSET2","index":"0.000008491843085820"},{"denom":"ASSET3","index":"0.000002361259343526"},{"denom":"ASSET4","index":"0.000022756236881458"},{"denom":"ASSET5","index":"0.000001838827056256"},{"denom":"ASSET6","index":"0.000007428217086977"},{"denom":"ASSET7","index":"0.000011660835649526"},{"denom":"ASSET8","index":"0.000015906513514404"},{"denom":"ASSET9","index":"0.000006755948018281"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001677980890787"},{"denom":"ASSET1","index":"0.000013990275877081"},{"denom":"ASSET10","index":"0.000009746835585844"},{"denom":"ASSET11","index":"0.000013534047272362"},{"denom":"ASSET12","index":"0.000012187401487418"},{"denom":"ASSET13","index":"0.000004194217559326"},{"denom":"ASSET14","index":"0.000012642160756856"},{"denom":"ASSET15","index":"0.000009039350648091"},{"denom":"ASSET16","index":"0.000006301979019776"},{"denom":"ASSET17","index":"0.000004475595265619"},{"denom":"ASSET18","index":"0.000002132005492585"},{"denom":"ASSET2","index":"0.000004129566806967"},{"denom":"ASSET3","index":"0.000001207793600899"},{"denom":"ASSET4","index":"0.000011368981735957"},{"denom":"ASSET5","index":"0.000000937435909214"},{"denom":"ASSET6","index":"0.000003815863724495"},{"denom":"ASSET7","index":"0.000005844281079776"},{"denom":"ASSET8","index":"0.000007626584775507"},{"denom":"ASSET9","index":"0.000003293515032135"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003299297789724"},{"denom":"ASSET1","index":"0.000027989603079017"},{"denom":"ASSET10","index":"0.000022326156077139"},{"denom":"ASSET11","index":"0.000027810817552502"},{"denom":"ASSET12","index":"0.000026510364756940"},{"denom":"ASSET13","index":"0.000008734817330461"},{"denom":"ASSET14","index":"0.000025527438517331"},{"denom":"ASSET15","index":"0.000020112836713905"},{"denom":"ASSET16","index":"0.000012417417558556"},{"denom":"ASSET17","index":"0.000009741881197111"},{"denom":"ASSET18","index":"0.000004029624902086"},{"denom":"ASSET2","index":"0.000008475129511821"},{"denom":"ASSET3","index":"0.000002354634361983"},{"denom":"ASSET4","index":"0.000022691681830907"},{"denom":"ASSET5","index":"0.000001834207215432"},{"denom":"ASSET6","index":"0.000007402948949368"},{"denom":"ASSET7","index":"0.000011627814435586"},{"denom":"ASSET8","index":"0.000015878876786083"},{"denom":"ASSET9","index":"0.000006740310437402"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001570026110869"},{"denom":"ASSET1","index":"0.000013093495665706"},{"denom":"ASSET10","index":"0.000009121814411369"},{"denom":"ASSET11","index":"0.000012665871768525"},{"denom":"ASSET12","index":"0.000011405375746022"},{"denom":"ASSET13","index":"0.000003924443730811"},{"denom":"ASSET14","index":"0.000011831756550478"},{"denom":"ASSET15","index":"0.000008459245989284"},{"denom":"ASSET16","index":"0.000005898474977098"},{"denom":"ASSET17","index":"0.000004187979388376"},{"denom":"ASSET18","index":"0.000001995163822601"},{"denom":"ASSET2","index":"0.000003864775280042"},{"denom":"ASSET3","index":"0.000001129971286445"},{"denom":"ASSET4","index":"0.000010639630627815"},{"denom":"ASSET5","index":"0.000000877623463400"},{"denom":"ASSET6","index":"0.000003571405397092"},{"denom":"ASSET7","index":"0.000005469607987193"},{"denom":"ASSET8","index":"0.000007137838423287"},{"denom":"ASSET9","index":"0.000003082869956418"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003142586597057"},{"denom":"ASSET1","index":"0.000026671940208455"},{"denom":"ASSET10","index":"0.000021322845581004"},{"denom":"ASSET11","index":"0.000026513185667064"},{"denom":"ASSET12","index":"0.000025297681895631"},{"denom":"ASSET13","index":"0.000008328263582513"},{"denom":"ASSET14","index":"0.000024329302916923"},{"denom":"ASSET15","index":"0.000019199384187435"},{"denom":"ASSET16","index":"0.000011829863063918"},{"denom":"ASSET17","index":"0.000009295955073087"},{"denom":"ASSET18","index":"0.000003835509513951"},{"denom":"ASSET2","index":"0.000008079410847125"},{"denom":"ASSET3","index":"0.000002242309830967"},{"denom":"ASSET4","index":"0.000021622076491366"},{"denom":"ASSET5","index":"0.000001747112267207"},{"denom":"ASSET6","index":"0.000007050444762949"},{"denom":"ASSET7","index":"0.000011079003337441"},{"denom":"ASSET8","index":"0.000015142122511204"},{"denom":"ASSET9","index":"0.000006425848418438"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001808467589320"},{"denom":"ASSET1","index":"0.000015078627759778"},{"denom":"ASSET10","index":"0.000010504031371633"},{"denom":"ASSET11","index":"0.000014586692317421"},{"denom":"ASSET12","index":"0.000013135079536696"},{"denom":"ASSET13","index":"0.000004520160908868"},{"denom":"ASSET14","index":"0.000013624998850191"},{"denom":"ASSET15","index":"0.000009741934661752"},{"denom":"ASSET16","index":"0.000006792338136474"},{"denom":"ASSET17","index":"0.000004822580238185"},{"denom":"ASSET18","index":"0.000002296370773952"},{"denom":"ASSET2","index":"0.000004449596398694"},{"denom":"ASSET3","index":"0.000001300403116066"},{"denom":"ASSET4","index":"0.000012254031223951"},{"denom":"ASSET5","index":"0.000001010080559921"},{"denom":"ASSET6","index":"0.000004112902878720"},{"denom":"ASSET7","index":"0.000006298386565256"},{"denom":"ASSET8","index":"0.000008219757370854"},{"denom":"ASSET9","index":"0.000003550402926189"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003309574221953"},{"denom":"ASSET1","index":"0.000028041386020893"},{"denom":"ASSET10","index":"0.000022151472675705"},{"denom":"ASSET11","index":"0.000027806413413432"},{"denom":"ASSET12","index":"0.000026397319662942"},{"denom":"ASSET13","index":"0.000008723998941637"},{"denom":"ASSET14","index":"0.000025556208464743"},{"denom":"ASSET15","index":"0.000019995491235522"},{"denom":"ASSET16","index":"0.000012454763771642"},{"denom":"ASSET17","index":"0.000009698403814011"},{"denom":"ASSET18","index":"0.000004053515914738"},{"denom":"ASSET2","index":"0.000008473190716338"},{"denom":"ASSET3","index":"0.000002361530218445"},{"denom":"ASSET4","index":"0.000022738669483779"},{"denom":"ASSET5","index":"0.000001840125976242"},{"denom":"ASSET6","index":"0.000007434008870747"},{"denom":"ASSET7","index":"0.000011653935721338"},{"denom":"ASSET8","index":"0.000015861166565423"},{"denom":"ASSET9","index":"0.000006742103174023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001541663174382"},{"denom":"ASSET1","index":"0.000012852134347969"},{"denom":"ASSET10","index":"0.000008953505358908"},{"denom":"ASSET11","index":"0.000012432624080325"},{"denom":"ASSET12","index":"0.000011194846435509"},{"denom":"ASSET13","index":"0.000003852675567517"},{"denom":"ASSET14","index":"0.000011614356703153"},{"denom":"ASSET15","index":"0.000008302745615107"},{"denom":"ASSET16","index":"0.000005788648746115"},{"denom":"ASSET17","index":"0.000004110607675539"},{"denom":"ASSET18","index":"0.000001958208705152"},{"denom":"ASSET2","index":"0.000003793380830041"},{"denom":"ASSET3","index":"0.000001108811590805"},{"denom":"ASSET4","index":"0.000010443285637998"},{"denom":"ASSET5","index":"0.000000861256061842"},{"denom":"ASSET6","index":"0.000003505801353281"},{"denom":"ASSET7","index":"0.000005369138478471"},{"denom":"ASSET8","index":"0.000007005673232815"},{"denom":"ASSET9","index":"0.000003025513979724"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003039218640043"},{"denom":"ASSET1","index":"0.000025782167100542"},{"denom":"ASSET10","index":"0.000020571830356487"},{"denom":"ASSET11","index":"0.000025618833387376"},{"denom":"ASSET12","index":"0.000024423552320522"},{"denom":"ASSET13","index":"0.000008046369560384"},{"denom":"ASSET14","index":"0.000023515194162679"},{"denom":"ASSET15","index":"0.000018530055863607"},{"denom":"ASSET16","index":"0.000011436803083329"},{"denom":"ASSET17","index":"0.000008974370950503"},{"denom":"ASSET18","index":"0.000003710743638587"},{"denom":"ASSET2","index":"0.000007806913274081"},{"denom":"ASSET3","index":"0.000002167934051431"},{"denom":"ASSET4","index":"0.000020901035076857"},{"denom":"ASSET5","index":"0.000001689640060433"},{"denom":"ASSET6","index":"0.000006819038075969"},{"denom":"ASSET7","index":"0.000010710838619674"},{"denom":"ASSET8","index":"0.000014627524271874"},{"denom":"ASSET9","index":"0.000006209166066794"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001647112085871"},{"denom":"ASSET1","index":"0.000013744257107488"},{"denom":"ASSET10","index":"0.000009576415679235"},{"denom":"ASSET11","index":"0.000013296650962579"},{"denom":"ASSET12","index":"0.000011973464376313"},{"denom":"ASSET13","index":"0.000004120724991946"},{"denom":"ASSET14","index":"0.000012421070521222"},{"denom":"ASSET15","index":"0.000008879485058873"},{"denom":"ASSET16","index":"0.000006191885004573"},{"denom":"ASSET17","index":"0.000004397534055245"},{"denom":"ASSET18","index":"0.000002094718230780"},{"denom":"ASSET2","index":"0.000004055939892025"},{"denom":"ASSET3","index":"0.000001185763647039"},{"denom":"ASSET4","index":"0.000011170521774262"},{"denom":"ASSET5","index":"0.000000920733692817"},{"denom":"ASSET6","index":"0.000003749683056035"},{"denom":"ASSET7","index":"0.000005742315674818"},{"denom":"ASSET8","index":"0.000007491513372686"},{"denom":"ASSET9","index":"0.000003235328626359"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003240628198198"},{"denom":"ASSET1","index":"0.000027504329283847"},{"denom":"ASSET10","index":"0.000021940320319100"},{"denom":"ASSET11","index":"0.000027329345632586"},{"denom":"ASSET12","index":"0.000026051323397008"},{"denom":"ASSET13","index":"0.000008583813762496"},{"denom":"ASSET14","index":"0.000025085743554439"},{"denom":"ASSET15","index":"0.000019763439018939"},{"denom":"ASSET16","index":"0.000012202670980955"},{"denom":"ASSET17","index":"0.000009573761377605"},{"denom":"ASSET18","index":"0.000003959875003044"},{"denom":"ASSET2","index":"0.000008327243811102"},{"denom":"ASSET3","index":"0.000002312908746824"},{"denom":"ASSET4","index":"0.000022299606884078"},{"denom":"ASSET5","index":"0.000001802093087045"},{"denom":"ASSET6","index":"0.000007275447910852"},{"denom":"ASSET7","index":"0.000011427132859276"},{"denom":"ASSET8","index":"0.000015602768933976"},{"denom":"ASSET9","index":"0.000006623309483786"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001570100817458"},{"denom":"ASSET1","index":"0.000013089401919768"},{"denom":"ASSET10","index":"0.000009119446705996"},{"denom":"ASSET11","index":"0.000012662761138201"},{"denom":"ASSET12","index":"0.000011403229713207"},{"denom":"ASSET13","index":"0.000003924467777503"},{"denom":"ASSET14","index":"0.000011828301962489"},{"denom":"ASSET15","index":"0.000008457526081653"},{"denom":"ASSET16","index":"0.000005896112859965"},{"denom":"ASSET17","index":"0.000004187981201412"},{"denom":"ASSET18","index":"0.000001993604534455"},{"denom":"ASSET2","index":"0.000003863295018381"},{"denom":"ASSET3","index":"0.000001129343245325"},{"denom":"ASSET4","index":"0.000010637785958043"},{"denom":"ASSET5","index":"0.000000876809547412"},{"denom":"ASSET6","index":"0.000003569979481054"},{"denom":"ASSET7","index":"0.000005467903546113"},{"denom":"ASSET8","index":"0.000007135253365252"},{"denom":"ASSET9","index":"0.000003082165940365"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003152920186871"},{"denom":"ASSET1","index":"0.000026760622644749"},{"denom":"ASSET10","index":"0.000021403995558307"},{"denom":"ASSET11","index":"0.000026604821287493"},{"denom":"ASSET12","index":"0.000025390105019040"},{"denom":"ASSET13","index":"0.000008358570294936"},{"denom":"ASSET14","index":"0.000024411618525071"},{"denom":"ASSET15","index":"0.000019270968708391"},{"denom":"ASSET16","index":"0.000011868219590271"},{"denom":"ASSET17","index":"0.000009330682788205"},{"denom":"ASSET18","index":"0.000003846613833157"},{"denom":"ASSET2","index":"0.000008107095494272"},{"denom":"ASSET3","index":"0.000002249072663818"},{"denom":"ASSET4","index":"0.000021694789218154"},{"denom":"ASSET5","index":"0.000001752328837510"},{"denom":"ASSET6","index":"0.000007072706136469"},{"denom":"ASSET7","index":"0.000011115912260277"},{"denom":"ASSET8","index":"0.000015194187602297"},{"denom":"ASSET9","index":"0.000006447849146068"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001655272585709"},{"denom":"ASSET1","index":"0.000013804891217292"},{"denom":"ASSET10","index":"0.000009617831976915"},{"denom":"ASSET11","index":"0.000013354722791997"},{"denom":"ASSET12","index":"0.000012025575872058"},{"denom":"ASSET13","index":"0.000004138592201887"},{"denom":"ASSET14","index":"0.000012474922822124"},{"denom":"ASSET15","index":"0.000008919578032571"},{"denom":"ASSET16","index":"0.000006218567480803"},{"denom":"ASSET17","index":"0.000004416250829168"},{"denom":"ASSET18","index":"0.000002103798060547"},{"denom":"ASSET2","index":"0.000004074517134053"},{"denom":"ASSET3","index":"0.000001191960556756"},{"denom":"ASSET4","index":"0.000011218887197534"},{"denom":"ASSET5","index":"0.000000924981107448"},{"denom":"ASSET6","index":"0.000003765642448085"},{"denom":"ASSET7","index":"0.000005766756105051"},{"denom":"ASSET8","index":"0.000007525534569569"},{"denom":"ASSET9","index":"0.000003250577479728"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003218229550028"},{"denom":"ASSET1","index":"0.000027301798081180"},{"denom":"ASSET10","index":"0.000021745417841688"},{"denom":"ASSET11","index":"0.000027119412726222"},{"denom":"ASSET12","index":"0.000025834540696398"},{"denom":"ASSET13","index":"0.000008516471999212"},{"denom":"ASSET14","index":"0.000024897496810197"},{"denom":"ASSET15","index":"0.000019595694306931"},{"denom":"ASSET16","index":"0.000012114595919920"},{"denom":"ASSET17","index":"0.000009493460517354"},{"denom":"ASSET18","index":"0.000003932937797970"},{"denom":"ASSET2","index":"0.000008264095290285"},{"denom":"ASSET3","index":"0.000002297232512411"},{"denom":"ASSET4","index":"0.000022135581489268"},{"denom":"ASSET5","index":"0.000001789675045728"},{"denom":"ASSET6","index":"0.000007223884768794"},{"denom":"ASSET7","index":"0.000011342725097550"},{"denom":"ASSET8","index":"0.000015481678980085"},{"denom":"ASSET9","index":"0.000006573861400446"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001621688869515"},{"denom":"ASSET1","index":"0.000013520143478358"},{"denom":"ASSET10","index":"0.000009419470546393"},{"denom":"ASSET11","index":"0.000013079418684764"},{"denom":"ASSET12","index":"0.000011778054243646"},{"denom":"ASSET13","index":"0.000004053107355591"},{"denom":"ASSET14","index":"0.000012218035825109"},{"denom":"ASSET15","index":"0.000008735715386011"},{"denom":"ASSET16","index":"0.000006090623412316"},{"denom":"ASSET17","index":"0.000004325494601547"},{"denom":"ASSET18","index":"0.000002060555632782"},{"denom":"ASSET2","index":"0.000003991049142665"},{"denom":"ASSET3","index":"0.000001167586257565"},{"denom":"ASSET4","index":"0.000010987648142487"},{"denom":"ASSET5","index":"0.000000905975587506"},{"denom":"ASSET6","index":"0.000003688190199343"},{"denom":"ASSET7","index":"0.000005648412194460"},{"denom":"ASSET8","index":"0.000007370434701640"},{"denom":"ASSET9","index":"0.000003183549162496"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003224207736427"},{"denom":"ASSET1","index":"0.000027358045975387"},{"denom":"ASSET10","index":"0.000021853454393362"},{"denom":"ASSET11","index":"0.000027191663823691"},{"denom":"ASSET12","index":"0.000025935625558190"},{"denom":"ASSET13","index":"0.000008541293337334"},{"denom":"ASSET14","index":"0.000024954691173737"},{"denom":"ASSET15","index":"0.000019681390400685"},{"denom":"ASSET16","index":"0.000012135703886829"},{"denom":"ASSET17","index":"0.000009530848033034"},{"denom":"ASSET18","index":"0.000003936224347496"},{"denom":"ASSET2","index":"0.000008286598878032"},{"denom":"ASSET3","index":"0.000002301038846536"},{"denom":"ASSET4","index":"0.000022179933336345"},{"denom":"ASSET5","index":"0.000001792519798769"},{"denom":"ASSET6","index":"0.000007234068845872"},{"denom":"ASSET7","index":"0.000011365474292791"},{"denom":"ASSET8","index":"0.000015527655320242"},{"denom":"ASSET9","index":"0.000006590765495457"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001684197417987"},{"denom":"ASSET1","index":"0.000014041270025306"},{"denom":"ASSET10","index":"0.000009782380002809"},{"denom":"ASSET11","index":"0.000013583439347888"},{"denom":"ASSET12","index":"0.000012231725730520"},{"denom":"ASSET13","index":"0.000004209525615418"},{"denom":"ASSET14","index":"0.000012688588478388"},{"denom":"ASSET15","index":"0.000009072403677468"},{"denom":"ASSET16","index":"0.000006325419612958"},{"denom":"ASSET17","index":"0.000004492161044183"},{"denom":"ASSET18","index":"0.000002139608271529"},{"denom":"ASSET2","index":"0.000004144674335530"},{"denom":"ASSET3","index":"0.000001212331762086"},{"denom":"ASSET4","index":"0.000011410921471639"},{"denom":"ASSET5","index":"0.000000940827523152"},{"denom":"ASSET6","index":"0.000003830097231595"},{"denom":"ASSET7","index":"0.000005866137041214"},{"denom":"ASSET8","index":"0.000007654386885887"},{"denom":"ASSET9","index":"0.000003305963379963"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003193080094990"},{"denom":"ASSET1","index":"0.000027069824276969"},{"denom":"ASSET10","index":"0.000021489349079139"},{"denom":"ASSET11","index":"0.000026870184080824"},{"denom":"ASSET12","index":"0.000025561356340007"},{"denom":"ASSET13","index":"0.000008435097288603"},{"denom":"ASSET14","index":"0.000024680442306089"},{"denom":"ASSET15","index":"0.000019377704768171"},{"denom":"ASSET16","index":"0.000012016988086595"},{"denom":"ASSET17","index":"0.000009392966467546"},{"denom":"ASSET18","index":"0.000003905368596850"},{"denom":"ASSET2","index":"0.000008189075060838"},{"denom":"ASSET3","index":"0.000002279664955012"},{"denom":"ASSET4","index":"0.000021948593995488"},{"denom":"ASSET5","index":"0.000001775351671947"},{"denom":"ASSET6","index":"0.000007168631437760"},{"denom":"ASSET7","index":"0.000011248752159293"},{"denom":"ASSET8","index":"0.000015334459676317"},{"denom":"ASSET9","index":"0.000006513651901550"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001677613648548"},{"denom":"ASSET1","index":"0.000013997394471820"},{"denom":"ASSET10","index":"0.000009752554992736"},{"denom":"ASSET11","index":"0.000013541183096442"},{"denom":"ASSET12","index":"0.000012193285851007"},{"denom":"ASSET13","index":"0.000004195070965406"},{"denom":"ASSET14","index":"0.000012649497226385"},{"denom":"ASSET15","index":"0.000009043353672830"},{"denom":"ASSET16","index":"0.000006306085420563"},{"denom":"ASSET17","index":"0.000004477092542912"},{"denom":"ASSET18","index":"0.000002131751335856"},{"denom":"ASSET2","index":"0.000004130786635239"},{"denom":"ASSET3","index":"0.000001208960144751"},{"denom":"ASSET4","index":"0.000011376252751467"},{"denom":"ASSET5","index":"0.000000937307007594"},{"denom":"ASSET6","index":"0.000003817659736684"},{"denom":"ASSET7","index":"0.000005847800357116"},{"denom":"ASSET8","index":"0.000007631172097229"},{"denom":"ASSET9","index":"0.000003295090343070"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003316222748087"},{"denom":"ASSET1","index":"0.000028147075207200"},{"denom":"ASSET10","index":"0.000022466702115272"},{"denom":"ASSET11","index":"0.000027971336509453"},{"denom":"ASSET12","index":"0.000026669877578580"},{"denom":"ASSET13","index":"0.000008784355829882"},{"denom":"ASSET14","index":"0.000025672864554615"},{"denom":"ASSET15","index":"0.000020235356040284"},{"denom":"ASSET16","index":"0.000012487172511964"},{"denom":"ASSET17","index":"0.000009799807931023"},{"denom":"ASSET18","index":"0.000004049727438870"},{"denom":"ASSET2","index":"0.000008522892941853"},{"denom":"ASSET3","index":"0.000002368075218536"},{"denom":"ASSET4","index":"0.000022820717384594"},{"denom":"ASSET5","index":"0.000001843591257654"},{"denom":"ASSET6","index":"0.000007443165294976"},{"denom":"ASSET7","index":"0.000011693499621126"},{"denom":"ASSET8","index":"0.000015972009373807"},{"denom":"ASSET9","index":"0.000006779069609364"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001520550536467"},{"denom":"ASSET1","index":"0.000012675827554874"},{"denom":"ASSET10","index":"0.000008831388003026"},{"denom":"ASSET11","index":"0.000012262725604616"},{"denom":"ASSET12","index":"0.000011042474271843"},{"denom":"ASSET13","index":"0.000003800233070086"},{"denom":"ASSET14","index":"0.000011455195131741"},{"denom":"ASSET15","index":"0.000008190012927118"},{"denom":"ASSET16","index":"0.000005710257954490"},{"denom":"ASSET17","index":"0.000004055182520937"},{"denom":"ASSET18","index":"0.000001931747034924"},{"denom":"ASSET2","index":"0.000003741926245004"},{"denom":"ASSET3","index":"0.000001094491513968"},{"denom":"ASSET4","index":"0.000010301253521611"},{"denom":"ASSET5","index":"0.000000849450412477"},{"denom":"ASSET6","index":"0.000003457632836431"},{"denom":"ASSET7","index":"0.000005295631642792"},{"denom":"ASSET8","index":"0.000006910311498182"},{"denom":"ASSET9","index":"0.000002984699699651"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003047858420945"},{"denom":"ASSET1","index":"0.000025863853767953"},{"denom":"ASSET10","index":"0.000020681482671570"},{"denom":"ASSET11","index":"0.000025712271525236"},{"denom":"ASSET12","index":"0.000024535470175220"},{"denom":"ASSET13","index":"0.000008077733573885"},{"denom":"ASSET14","index":"0.000023593590000343"},{"denom":"ASSET15","index":"0.000018621561303244"},{"denom":"ASSET16","index":"0.000011471343089677"},{"denom":"ASSET17","index":"0.000009016132124589"},{"denom":"ASSET18","index":"0.000003719208275283"},{"denom":"ASSET2","index":"0.000007835789085827"},{"denom":"ASSET3","index":"0.000002174729135607"},{"denom":"ASSET4","index":"0.000020967814383093"},{"denom":"ASSET5","index":"0.000001694402278429"},{"denom":"ASSET6","index":"0.000006836893759575"},{"denom":"ASSET7","index":"0.000010744095518390"},{"denom":"ASSET8","index":"0.000014684305897471"},{"denom":"ASSET9","index":"0.000006231971052532"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001765508823557"},{"denom":"ASSET1","index":"0.000014724618911480"},{"denom":"ASSET10","index":"0.000010258363403154"},{"denom":"ASSET11","index":"0.000014244524406828"},{"denom":"ASSET12","index":"0.000012826610887714"},{"denom":"ASSET13","index":"0.000004413772058893"},{"denom":"ASSET14","index":"0.000013305845007949"},{"denom":"ASSET15","index":"0.000009513270498085"},{"denom":"ASSET16","index":"0.000006632703470176"},{"denom":"ASSET17","index":"0.000004710604682736"},{"denom":"ASSET18","index":"0.000002243882559375"},{"denom":"ASSET2","index":"0.000004346662074372"},{"denom":"ASSET3","index":"0.000001271648168235"},{"denom":"ASSET4","index":"0.000011966226470776"},{"denom":"ASSET5","index":"0.000000986860926228"},{"denom":"ASSET6","index":"0.000004016274458267"},{"denom":"ASSET7","index":"0.000006150888196691"},{"denom":"ASSET8","index":"0.000008026526225616"},{"denom":"ASSET9","index":"0.000003466488815844"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003365151784209"},{"denom":"ASSET1","index":"0.000028538337865727"},{"denom":"ASSET10","index":"0.000022670552359626"},{"denom":"ASSET11","index":"0.000028331786642422"},{"denom":"ASSET12","index":"0.000026959391418936"},{"denom":"ASSET13","index":"0.000008894072871450"},{"denom":"ASSET14","index":"0.000026020188745878"},{"denom":"ASSET15","index":"0.000020439828986765"},{"denom":"ASSET16","index":"0.000012667128947757"},{"denom":"ASSET17","index":"0.000009907060013179"},{"denom":"ASSET18","index":"0.000004116201786219"},{"denom":"ASSET2","index":"0.000008634485522558"},{"denom":"ASSET3","index":"0.000002403102945281"},{"denom":"ASSET4","index":"0.000023139017263426"},{"denom":"ASSET5","index":"0.000001871649891727"},{"denom":"ASSET6","index":"0.000007555863827839"},{"denom":"ASSET7","index":"0.000011857581945748"},{"denom":"ASSET8","index":"0.000016169532559731"},{"denom":"ASSET9","index":"0.000006867789268222"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001833509758465"},{"denom":"ASSET1","index":"0.000015308139656127"},{"denom":"ASSET10","index":"0.000010661025831945"},{"denom":"ASSET11","index":"0.000014808091540182"},{"denom":"ASSET12","index":"0.000013334616425197"},{"denom":"ASSET13","index":"0.000004587108050268"},{"denom":"ASSET14","index":"0.000013827997232930"},{"denom":"ASSET15","index":"0.000009887618079284"},{"denom":"ASSET16","index":"0.000006893996691827"},{"denom":"ASSET17","index":"0.000004893804228047"},{"denom":"ASSET18","index":"0.000002326890566197"},{"denom":"ASSET2","index":"0.000004513767659929"},{"denom":"ASSET3","index":"0.000001320127026095"},{"denom":"ASSET4","index":"0.000012434529816496"},{"denom":"ASSET5","index":"0.000001020098156528"},{"denom":"ASSET6","index":"0.000004173734941087"},{"denom":"ASSET7","index":"0.000006393948575882"},{"denom":"ASSET8","index":"0.000008340802573961"},{"denom":"ASSET9","index":"0.000003600346434803"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003461123478470"},{"denom":"ASSET1","index":"0.000029368181297786"},{"denom":"ASSET10","index":"0.000023294808028239"},{"denom":"ASSET11","index":"0.000029147392384169"},{"denom":"ASSET12","index":"0.000027719461688447"},{"denom":"ASSET13","index":"0.000009147542663388"},{"denom":"ASSET14","index":"0.000026768604990580"},{"denom":"ASSET15","index":"0.000021008846141082"},{"denom":"ASSET16","index":"0.000013035302068339"},{"denom":"ASSET17","index":"0.000010182949549387"},{"denom":"ASSET18","index":"0.000004232564951180"},{"denom":"ASSET2","index":"0.000008877642147806"},{"denom":"ASSET3","index":"0.000002471921418528"},{"denom":"ASSET4","index":"0.000023806252184245"},{"denom":"ASSET5","index":"0.000001920199705662"},{"denom":"ASSET6","index":"0.000007776538212319"},{"denom":"ASSET7","index":"0.000012202060569359"},{"denom":"ASSET8","index":"0.000016628688342614"},{"denom":"ASSET9","index":"0.000007061722298848"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001580229076001"},{"denom":"ASSET1","index":"0.000013178675425859"},{"denom":"ASSET10","index":"0.000009181488308837"},{"denom":"ASSET11","index":"0.000012749045790152"},{"denom":"ASSET12","index":"0.000011480356468073"},{"denom":"ASSET13","index":"0.000003950572690002"},{"denom":"ASSET14","index":"0.000011909209196663"},{"denom":"ASSET15","index":"0.000008514902002442"},{"denom":"ASSET16","index":"0.000005936347281082"},{"denom":"ASSET17","index":"0.000004216274924019"},{"denom":"ASSET18","index":"0.000002008304897474"},{"denom":"ASSET2","index":"0.000003889973934875"},{"denom":"ASSET3","index":"0.000001137392019304"},{"denom":"ASSET4","index":"0.000010709664607998"},{"denom":"ASSET5","index":"0.000000883343392042"},{"denom":"ASSET6","index":"0.000003594749230410"},{"denom":"ASSET7","index":"0.000005505163831141"},{"denom":"ASSET8","index":"0.000007184060111002"},{"denom":"ASSET9","index":"0.000003102967025342"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003136420796654"},{"denom":"ASSET1","index":"0.000026617535879560"},{"denom":"ASSET10","index":"0.000021257162201233"},{"denom":"ASSET11","index":"0.000026454281403244"},{"denom":"ASSET12","index":"0.000025229520616223"},{"denom":"ASSET13","index":"0.000008309311482354"},{"denom":"ASSET14","index":"0.000024278363089230"},{"denom":"ASSET15","index":"0.000019144672836670"},{"denom":"ASSET16","index":"0.000011806881934189"},{"denom":"ASSET17","index":"0.000009271795054357"},{"denom":"ASSET18","index":"0.000003829937127836"},{"denom":"ASSET2","index":"0.000008061315465971"},{"denom":"ASSET3","index":"0.000002238409344787"},{"denom":"ASSET4","index":"0.000021579173085678"},{"denom":"ASSET5","index":"0.000001744155749232"},{"denom":"ASSET6","index":"0.000007037998659171"},{"denom":"ASSET7","index":"0.000011056982942661"},{"denom":"ASSET8","index":"0.000015105683491420"},{"denom":"ASSET9","index":"0.000006411626899884"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001065673750407"},{"denom":"ASSET1","index":"0.000008885137524612"},{"denom":"ASSET10","index":"0.000006190162379117"},{"denom":"ASSET11","index":"0.000008595321581390"},{"denom":"ASSET12","index":"0.000007740138401991"},{"denom":"ASSET13","index":"0.000002663662498568"},{"denom":"ASSET14","index":"0.000008029258508615"},{"denom":"ASSET15","index":"0.000005740999854868"},{"denom":"ASSET16","index":"0.000004002452113836"},{"denom":"ASSET17","index":"0.000002842492504350"},{"denom":"ASSET18","index":"0.000001354098020432"},{"denom":"ASSET2","index":"0.000002622608139264"},{"denom":"ASSET3","index":"0.000000767159849705"},{"denom":"ASSET4","index":"0.000007220696381306"},{"denom":"ASSET5","index":"0.000000595288209907"},{"denom":"ASSET6","index":"0.000002423598872130"},{"denom":"ASSET7","index":"0.000003711940334016"},{"denom":"ASSET8","index":"0.000004843718561268"},{"denom":"ASSET9","index":"0.000002092032733005"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002559869929403"},{"denom":"ASSET1","index":"0.000021787096732684"},{"denom":"ASSET10","index":"0.000017783238471081"},{"denom":"ASSET11","index":"0.000021752938768967"},{"denom":"ASSET12","index":"0.000020940235345308"},{"denom":"ASSET13","index":"0.000006848308161575"},{"denom":"ASSET14","index":"0.000019904298850841"},{"denom":"ASSET15","index":"0.000015946274018453"},{"denom":"ASSET16","index":"0.000009638424477568"},{"denom":"ASSET17","index":"0.000007695902028378"},{"denom":"ASSET18","index":"0.000003102977872608"},{"denom":"ASSET2","index":"0.000006627591716064"},{"denom":"ASSET3","index":"0.000001824087350341"},{"denom":"ASSET4","index":"0.000017655906837434"},{"denom":"ASSET5","index":"0.000001421889695470"},{"denom":"ASSET6","index":"0.000005729615091854"},{"denom":"ASSET7","index":"0.000009042175373173"},{"denom":"ASSET8","index":"0.000012449153729005"},{"denom":"ASSET9","index":"0.000005268661072858"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001663945626017"},{"denom":"ASSET1","index":"0.000013874870096624"},{"denom":"ASSET10","index":"0.000009666844154779"},{"denom":"ASSET11","index":"0.000013422526194886"},{"denom":"ASSET12","index":"0.000012086742376498"},{"denom":"ASSET13","index":"0.000004159391889779"},{"denom":"ASSET14","index":"0.000012538614102973"},{"denom":"ASSET15","index":"0.000008964719539034"},{"denom":"ASSET16","index":"0.000006250183953344"},{"denom":"ASSET17","index":"0.000004438919645342"},{"denom":"ASSET18","index":"0.000002114400826704"},{"denom":"ASSET2","index":"0.000004095648229305"},{"denom":"ASSET3","index":"0.000001197908641659"},{"denom":"ASSET4","index":"0.000011275545275051"},{"denom":"ASSET5","index":"0.000000929713092403"},{"denom":"ASSET6","index":"0.000003784956906399"},{"denom":"ASSET7","index":"0.000005796423525818"},{"denom":"ASSET8","index":"0.000007563775534382"},{"denom":"ASSET9","index":"0.000003266980643136"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003299045378029"},{"denom":"ASSET1","index":"0.000027992490930804"},{"denom":"ASSET10","index":"0.000022352284005938"},{"denom":"ASSET11","index":"0.000027819914533732"},{"denom":"ASSET12","index":"0.000026530494002155"},{"denom":"ASSET13","index":"0.000008738242797579"},{"denom":"ASSET14","index":"0.000025532401567106"},{"denom":"ASSET15","index":"0.000020131602968729"},{"denom":"ASSET16","index":"0.000012417136212826"},{"denom":"ASSET17","index":"0.000009749421325842"},{"denom":"ASSET18","index":"0.000004027997856345"},{"denom":"ASSET2","index":"0.000008477931503293"},{"denom":"ASSET3","index":"0.000002354450357881"},{"denom":"ASSET4","index":"0.000022693933657862"},{"denom":"ASSET5","index":"0.000001834114741991"},{"denom":"ASSET6","index":"0.000007402245947993"},{"denom":"ASSET7","index":"0.000011628988518089"},{"denom":"ASSET8","index":"0.000015885667960333"},{"denom":"ASSET9","index":"0.000006742956926982"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001554670726054"},{"denom":"ASSET1","index":"0.000012963415617374"},{"denom":"ASSET10","index":"0.000009031685079156"},{"denom":"ASSET11","index":"0.000012540799003679"},{"denom":"ASSET12","index":"0.000011293255065955"},{"denom":"ASSET13","index":"0.000003886042255656"},{"denom":"ASSET14","index":"0.000011715237120170"},{"denom":"ASSET15","index":"0.000008376185136293"},{"denom":"ASSET16","index":"0.000005839850894644"},{"denom":"ASSET17","index":"0.000004147480761425"},{"denom":"ASSET18","index":"0.000001975383661309"},{"denom":"ASSET2","index":"0.000003826393664534"},{"denom":"ASSET3","index":"0.000001119362922759"},{"denom":"ASSET4","index":"0.000010534956487329"},{"denom":"ASSET5","index":"0.000000868711928150"},{"denom":"ASSET6","index":"0.000003536399982164"},{"denom":"ASSET7","index":"0.000005415965161990"},{"denom":"ASSET8","index":"0.000007067088929007"},{"denom":"ASSET9","index":"0.000003052231098907"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003157426180098"},{"denom":"ASSET1","index":"0.000026803913890418"},{"denom":"ASSET10","index":"0.000021467927303389"},{"denom":"ASSET11","index":"0.000026655124661377"},{"denom":"ASSET12","index":"0.000025453388278707"},{"denom":"ASSET13","index":"0.000008375182650914"},{"denom":"ASSET14","index":"0.000024453809207757"},{"denom":"ASSET15","index":"0.000019323681821282"},{"denom":"ASSET16","index":"0.000011885939188892"},{"denom":"ASSET17","index":"0.000009353763879690"},{"denom":"ASSET18","index":"0.000003851457527173"},{"denom":"ASSET2","index":"0.000008122633355733"},{"denom":"ASSET3","index":"0.000002252845423920"},{"denom":"ASSET4","index":"0.000021728796023940"},{"denom":"ASSET5","index":"0.000001755342604855"},{"denom":"ASSET6","index":"0.000007082922688985"},{"denom":"ASSET7","index":"0.000011133765978354"},{"denom":"ASSET8","index":"0.000015225414484063"},{"denom":"ASSET9","index":"0.000006459804222065"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001578706846766"},{"denom":"ASSET1","index":"0.000013164667632738"},{"denom":"ASSET10","index":"0.000009171819989970"},{"denom":"ASSET11","index":"0.000012734981690366"},{"denom":"ASSET12","index":"0.000011467468005207"},{"denom":"ASSET13","index":"0.000003946168668528"},{"denom":"ASSET14","index":"0.000011895957050803"},{"denom":"ASSET15","index":"0.000008505148486066"},{"denom":"ASSET16","index":"0.000005930623522158"},{"denom":"ASSET17","index":"0.000004211879752669"},{"denom":"ASSET18","index":"0.000002005998995588"},{"denom":"ASSET2","index":"0.000003886323829757"},{"denom":"ASSET3","index":"0.000001135855039864"},{"denom":"ASSET4","index":"0.000010697863378618"},{"denom":"ASSET5","index":"0.000000882112923477"},{"denom":"ASSET6","index":"0.000003590690326231"},{"denom":"ASSET7","index":"0.000005499740683011"},{"denom":"ASSET8","index":"0.000007176593065360"},{"denom":"ASSET9","index":"0.000003098765751537"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003185213515607"},{"denom":"ASSET1","index":"0.000027035699090666"},{"denom":"ASSET10","index":"0.000021635640181728"},{"denom":"ASSET11","index":"0.000026880669357351"},{"denom":"ASSET12","index":"0.000025658872180332"},{"denom":"ASSET13","index":"0.000008444958797633"},{"denom":"ASSET14","index":"0.000024662649108986"},{"denom":"ASSET15","index":"0.000019476753279332"},{"denom":"ASSET16","index":"0.000011989846651744"},{"denom":"ASSET17","index":"0.000009429633404312"},{"denom":"ASSET18","index":"0.000003886090392826"},{"denom":"ASSET2","index":"0.000008191890279929"},{"denom":"ASSET3","index":"0.000002271981699175"},{"denom":"ASSET4","index":"0.000021916623044014"},{"denom":"ASSET5","index":"0.000001770727550439"},{"denom":"ASSET6","index":"0.000007144791673859"},{"denom":"ASSET7","index":"0.000011230376410345"},{"denom":"ASSET8","index":"0.000015353061978158"},{"denom":"ASSET9","index":"0.000006513931773648"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001736464555496"},{"denom":"ASSET1","index":"0.000014486324003877"},{"denom":"ASSET10","index":"0.000010092542477093"},{"denom":"ASSET11","index":"0.000014014496766071"},{"denom":"ASSET12","index":"0.000012620063107870"},{"denom":"ASSET13","index":"0.000004342915393341"},{"denom":"ASSET14","index":"0.000013091890345676"},{"denom":"ASSET15","index":"0.000009359368553661"},{"denom":"ASSET16","index":"0.000006524897117620"},{"denom":"ASSET17","index":"0.000004634080157191"},{"denom":"ASSET18","index":"0.000002206537788701"},{"denom":"ASSET2","index":"0.000004276263218483"},{"denom":"ASSET3","index":"0.000001250605280877"},{"denom":"ASSET4","index":"0.000011772878885340"},{"denom":"ASSET5","index":"0.000000969964544635"},{"denom":"ASSET6","index":"0.000003951772367204"},{"denom":"ASSET7","index":"0.000006051315875212"},{"denom":"ASSET8","index":"0.000007896528716001"},{"denom":"ASSET9","index":"0.000003409784945337"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003356675502673"},{"denom":"ASSET1","index":"0.000028477076245214"},{"denom":"ASSET10","index":"0.000022663760086849"},{"denom":"ASSET11","index":"0.000028282539274294"},{"denom":"ASSET12","index":"0.000026934248109484"},{"denom":"ASSET13","index":"0.000008880550781135"},{"denom":"ASSET14","index":"0.000025969128454053"},{"denom":"ASSET15","index":"0.000020425731449718"},{"denom":"ASSET16","index":"0.000012636600959200"},{"denom":"ASSET17","index":"0.000009896936242996"},{"denom":"ASSET18","index":"0.000004102733083140"},{"denom":"ASSET2","index":"0.000008619316582261"},{"denom":"ASSET3","index":"0.000002396767404444"},{"denom":"ASSET4","index":"0.000023088672429632"},{"denom":"ASSET5","index":"0.000001866260713425"},{"denom":"ASSET6","index":"0.000007536521735823"},{"denom":"ASSET7","index":"0.000011831316132227"},{"denom":"ASSET8","index":"0.000016143846449802"},{"denom":"ASSET9","index":"0.000006854365607618"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001432199402946"},{"denom":"ASSET1","index":"0.000011943338809449"},{"denom":"ASSET10","index":"0.000008321234131428"},{"denom":"ASSET11","index":"0.000011554338026882"},{"denom":"ASSET12","index":"0.000010404248756685"},{"denom":"ASSET13","index":"0.000003580160245814"},{"denom":"ASSET14","index":"0.000010793249539252"},{"denom":"ASSET15","index":"0.000007717099003024"},{"denom":"ASSET16","index":"0.000005380388215223"},{"denom":"ASSET17","index":"0.000003821002469456"},{"denom":"ASSET18","index":"0.000001819847139312"},{"denom":"ASSET2","index":"0.000003525361874705"},{"denom":"ASSET3","index":"0.000001031021204577"},{"denom":"ASSET4","index":"0.000009706076917365"},{"denom":"ASSET5","index":"0.000000800326827437"},{"denom":"ASSET6","index":"0.000003258135250159"},{"denom":"ASSET7","index":"0.000004989357863356"},{"denom":"ASSET8","index":"0.000006510858315517"},{"denom":"ASSET9","index":"0.000002812306527182"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002962853679956"},{"denom":"ASSET1","index":"0.000025162993314326"},{"denom":"ASSET10","index":"0.000020199688926412"},{"denom":"ASSET11","index":"0.000025035647772320"},{"denom":"ASSET12","index":"0.000023929456511577"},{"denom":"ASSET13","index":"0.000007867725037604"},{"denom":"ASSET14","index":"0.000022960507028012"},{"denom":"ASSET15","index":"0.000018173489333858"},{"denom":"ASSET16","index":"0.000011155286879957"},{"denom":"ASSET17","index":"0.000008793607250882"},{"denom":"ASSET18","index":"0.000003611579051495"},{"denom":"ASSET2","index":"0.000007628670547867"},{"denom":"ASSET3","index":"0.000002114031306235"},{"denom":"ASSET4","index":"0.000020398130246320"},{"denom":"ASSET5","index":"0.000001647096325587"},{"denom":"ASSET6","index":"0.000006645213242757"},{"denom":"ASSET7","index":"0.000010450616802650"},{"denom":"ASSET8","index":"0.000014303332598966"},{"denom":"ASSET9","index":"0.000006067112886031"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001597673370668"},{"denom":"ASSET1","index":"0.000013327099930964"},{"denom":"ASSET10","index":"0.000009285285696821"},{"denom":"ASSET11","index":"0.000012892979142852"},{"denom":"ASSET12","index":"0.000011609669101507"},{"denom":"ASSET13","index":"0.000003995544306884"},{"denom":"ASSET14","index":"0.000012043789889618"},{"denom":"ASSET15","index":"0.000008610289110917"},{"denom":"ASSET16","index":"0.000006002842621820"},{"denom":"ASSET17","index":"0.000004263637708946"},{"denom":"ASSET18","index":"0.000002030433278566"},{"denom":"ASSET2","index":"0.000003934304697275"},{"denom":"ASSET3","index":"0.000001149943780421"},{"denom":"ASSET4","index":"0.000010829884739162"},{"denom":"ASSET5","index":"0.000000892737420067"},{"denom":"ASSET6","index":"0.000003634911050302"},{"denom":"ASSET7","index":"0.000005567360953495"},{"denom":"ASSET8","index":"0.000007264378579749"},{"denom":"ASSET9","index":"0.000003138189772368"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003135234009226"},{"denom":"ASSET1","index":"0.000026602125077525"},{"denom":"ASSET10","index":"0.000021213712135644"},{"denom":"ASSET11","index":"0.000026430841190504"},{"denom":"ASSET12","index":"0.000025191219856579"},{"denom":"ASSET13","index":"0.000008300995957475"},{"denom":"ASSET14","index":"0.000024262534835813"},{"denom":"ASSET15","index":"0.000019110376679732"},{"denom":"ASSET16","index":"0.000011801461546978"},{"denom":"ASSET17","index":"0.000009257538829689"},{"denom":"ASSET18","index":"0.000003829421505073"},{"denom":"ASSET2","index":"0.000008055136326188"},{"denom":"ASSET3","index":"0.000002237228869924"},{"denom":"ASSET4","index":"0.000021566736915931"},{"denom":"ASSET5","index":"0.000001743257901616"},{"denom":"ASSET6","index":"0.000007036288319926"},{"denom":"ASSET7","index":"0.000011051703047857"},{"denom":"ASSET8","index":"0.000015089589803941"},{"denom":"ASSET9","index":"0.000006406386950018"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001689516061942"},{"denom":"ASSET1","index":"0.000014086551658080"},{"denom":"ASSET10","index":"0.000009813816295422"},{"denom":"ASSET11","index":"0.000013627312671286"},{"denom":"ASSET12","index":"0.000012271349136594"},{"denom":"ASSET13","index":"0.000004223185893030"},{"denom":"ASSET14","index":"0.000012729983861563"},{"denom":"ASSET15","index":"0.000009101391604066"},{"denom":"ASSET16","index":"0.000006345353421478"},{"denom":"ASSET17","index":"0.000004506584688828"},{"denom":"ASSET18","index":"0.000002146942263262"},{"denom":"ASSET2","index":"0.000004157925615959"},{"denom":"ASSET3","index":"0.000001216379053179"},{"denom":"ASSET4","index":"0.000011447740269489"},{"denom":"ASSET5","index":"0.000000943856970227"},{"denom":"ASSET6","index":"0.000003842500943451"},{"denom":"ASSET7","index":"0.000005884905911035"},{"denom":"ASSET8","index":"0.000007678959268655"},{"denom":"ASSET9","index":"0.000003316793155937"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003297864217859"},{"denom":"ASSET1","index":"0.000027973253972789"},{"denom":"ASSET10","index":"0.000022291630953866"},{"denom":"ASSET11","index":"0.000027789008146512"},{"denom":"ASSET12","index":"0.000026479178332828"},{"denom":"ASSET13","index":"0.000008727103479255"},{"denom":"ASSET14","index":"0.000025511286037616"},{"denom":"ASSET15","index":"0.000020085740117730"},{"denom":"ASSET16","index":"0.000012411485442612"},{"denom":"ASSET17","index":"0.000009730550155880"},{"denom":"ASSET18","index":"0.000004028926705548"},{"denom":"ASSET2","index":"0.000008468714781887"},{"denom":"ASSET3","index":"0.000002353891879987"},{"denom":"ASSET4","index":"0.000022679492169342"},{"denom":"ASSET5","index":"0.000001833514119464"},{"denom":"ASSET6","index":"0.000007400677249018"},{"denom":"ASSET7","index":"0.000011621769805761"},{"denom":"ASSET8","index":"0.000015864980999233"},{"denom":"ASSET9","index":"0.000006736116007098"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001411859688057"},{"denom":"ASSET1","index":"0.000011770485537623"},{"denom":"ASSET10","index":"0.000008200497469250"},{"denom":"ASSET11","index":"0.000011386615852852"},{"denom":"ASSET12","index":"0.000010253874969484"},{"denom":"ASSET13","index":"0.000003528347966974"},{"denom":"ASSET14","index":"0.000010637094027671"},{"denom":"ASSET15","index":"0.000007605174144562"},{"denom":"ASSET16","index":"0.000005302606662519"},{"denom":"ASSET17","index":"0.000003765826670265"},{"denom":"ASSET18","index":"0.000001793777493075"},{"denom":"ASSET2","index":"0.000003474345960472"},{"denom":"ASSET3","index":"0.000001016278724767"},{"denom":"ASSET4","index":"0.000009565512043233"},{"denom":"ASSET5","index":"0.000000788559420242"},{"denom":"ASSET6","index":"0.000003210842193807"},{"denom":"ASSET7","index":"0.000004917435724579"},{"denom":"ASSET8","index":"0.000006416479374940"},{"denom":"ASSET9","index":"0.000002771018622781"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002930820438736"},{"denom":"ASSET1","index":"0.000024889799880283"},{"denom":"ASSET10","index":"0.000019988623694797"},{"denom":"ASSET11","index":"0.000024765615752571"},{"denom":"ASSET12","index":"0.000023676022623299"},{"denom":"ASSET13","index":"0.000007783195940338"},{"denom":"ASSET14","index":"0.000022712072914709"},{"denom":"ASSET15","index":"0.000017982209004670"},{"denom":"ASSET16","index":"0.000011033267632466"},{"denom":"ASSET17","index":"0.000008700651286884"},{"denom":"ASSET18","index":"0.000003571624768330"},{"denom":"ASSET2","index":"0.000007546215495169"},{"denom":"ASSET3","index":"0.000002090977414753"},{"denom":"ASSET4","index":"0.000020176663420937"},{"denom":"ASSET5","index":"0.000001628342560149"},{"denom":"ASSET6","index":"0.000006572371850885"},{"denom":"ASSET7","index":"0.000010337273058537"},{"denom":"ASSET8","index":"0.000014149515747938"},{"denom":"ASSET9","index":"0.000006000707920121"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001726304213109"},{"denom":"ASSET1","index":"0.000014431903221591"},{"denom":"ASSET10","index":"0.000010055058078201"},{"denom":"ASSET11","index":"0.000013959161452463"},{"denom":"ASSET12","index":"0.000012572806376704"},{"denom":"ASSET13","index":"0.000004323728090679"},{"denom":"ASSET14","index":"0.000013040236440562"},{"denom":"ASSET15","index":"0.000009322042750788"},{"denom":"ASSET16","index":"0.000006501527251832"},{"denom":"ASSET17","index":"0.000004615871880590"},{"denom":"ASSET18","index":"0.000002199045982237"},{"denom":"ASSET2","index":"0.000004259987627426"},{"denom":"ASSET3","index":"0.000001242939033438"},{"denom":"ASSET4","index":"0.000011728245238599"},{"denom":"ASSET5","index":"0.000000966730359341"},{"denom":"ASSET6","index":"0.000003935973605888"},{"denom":"ASSET7","index":"0.000006028785482704"},{"denom":"ASSET8","index":"0.000007866635506506"},{"denom":"ASSET9","index":"0.000003394179668236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003313075721980"},{"denom":"ASSET1","index":"0.000028138029356789"},{"denom":"ASSET10","index":"0.000022370607880245"},{"denom":"ASSET11","index":"0.000027937207217164"},{"denom":"ASSET12","index":"0.000026595598409551"},{"denom":"ASSET13","index":"0.000008769097729958"},{"denom":"ASSET14","index":"0.000025655242037122"},{"denom":"ASSET15","index":"0.000020162686714325"},{"denom":"ASSET16","index":"0.000012488922131836"},{"denom":"ASSET17","index":"0.000009772018779266"},{"denom":"ASSET18","index":"0.000004056016110298"},{"denom":"ASSET2","index":"0.000008514325121927"},{"denom":"ASSET3","index":"0.000002365037757716"},{"denom":"ASSET4","index":"0.000022813272666626"},{"denom":"ASSET5","index":"0.000001844445619129"},{"denom":"ASSET6","index":"0.000007446834645040"},{"denom":"ASSET7","index":"0.000011690909413493"},{"denom":"ASSET8","index":"0.000015945057917181"},{"denom":"ASSET9","index":"0.000006769080892636"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001630255611072"},{"denom":"ASSET1","index":"0.000013593541268721"},{"denom":"ASSET10","index":"0.000009470169531707"},{"denom":"ASSET11","index":"0.000013149994246609"},{"denom":"ASSET12","index":"0.000011841383661505"},{"denom":"ASSET13","index":"0.000004074904678306"},{"denom":"ASSET14","index":"0.000012284196334242"},{"denom":"ASSET15","index":"0.000008782818517308"},{"denom":"ASSET16","index":"0.000006123739432762"},{"denom":"ASSET17","index":"0.000004348816994942"},{"denom":"ASSET18","index":"0.000002071599585061"},{"denom":"ASSET2","index":"0.000004012484981486"},{"denom":"ASSET3","index":"0.000001173490300222"},{"denom":"ASSET4","index":"0.000011046817638451"},{"denom":"ASSET5","index":"0.000000910593224203"},{"denom":"ASSET6","index":"0.000003707729991128"},{"denom":"ASSET7","index":"0.000005678723711902"},{"denom":"ASSET8","index":"0.000007410319536635"},{"denom":"ASSET9","index":"0.000003200294573447"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003344718004914"},{"denom":"ASSET1","index":"0.000028399683918161"},{"denom":"ASSET10","index":"0.000022773943545696"},{"denom":"ASSET11","index":"0.000028249525692452"},{"denom":"ASSET12","index":"0.000026989510465266"},{"denom":"ASSET13","index":"0.000008877216029957"},{"denom":"ASSET14","index":"0.000025911788013611"},{"denom":"ASSET15","index":"0.000020494299775586"},{"denom":"ASSET16","index":"0.000012591463658113"},{"denom":"ASSET17","index":"0.000009918208342143"},{"denom":"ASSET18","index":"0.000004078542450859"},{"denom":"ASSET2","index":"0.000008608606683653"},{"denom":"ASSET3","index":"0.000002386103437058"},{"denom":"ASSET4","index":"0.000023022167148602"},{"denom":"ASSET5","index":"0.000001858883946943"},{"denom":"ASSET6","index":"0.000007501347044310"},{"denom":"ASSET7","index":"0.000011795380538461"},{"denom":"ASSET8","index":"0.000016137954986293"},{"denom":"ASSET9","index":"0.000006845854741756"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001401914217082"},{"denom":"ASSET1","index":"0.000011691084141249"},{"denom":"ASSET10","index":"0.000008144816837289"},{"denom":"ASSET11","index":"0.000011309282624399"},{"denom":"ASSET12","index":"0.000010184195671197"},{"denom":"ASSET13","index":"0.000003504785542706"},{"denom":"ASSET14","index":"0.000010565150621491"},{"denom":"ASSET15","index":"0.000007553913381055"},{"denom":"ASSET16","index":"0.000005266490546178"},{"denom":"ASSET17","index":"0.000003740131045332"},{"denom":"ASSET18","index":"0.000001781176034264"},{"denom":"ASSET2","index":"0.000003450605283109"},{"denom":"ASSET3","index":"0.000001009107335001"},{"denom":"ASSET4","index":"0.000009501016460336"},{"denom":"ASSET5","index":"0.000000783074064494"},{"denom":"ASSET6","index":"0.000003189016217240"},{"denom":"ASSET7","index":"0.000004883842462771"},{"denom":"ASSET8","index":"0.000006372953035143"},{"denom":"ASSET9","index":"0.000002752187874236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002824624853437"},{"denom":"ASSET1","index":"0.000023976113690517"},{"denom":"ASSET10","index":"0.000019183481330878"},{"denom":"ASSET11","index":"0.000023837782846342"},{"denom":"ASSET12","index":"0.000022753084719682"},{"denom":"ASSET13","index":"0.000007489057952554"},{"denom":"ASSET14","index":"0.000021872315483076"},{"denom":"ASSET15","index":"0.000017271123733000"},{"denom":"ASSET16","index":"0.000010633084765839"},{"denom":"ASSET17","index":"0.000008361522972460"},{"denom":"ASSET18","index":"0.000003446219629870"},{"denom":"ASSET2","index":"0.000007263651822688"},{"denom":"ASSET3","index":"0.000002015414858276"},{"denom":"ASSET4","index":"0.000019437236646346"},{"denom":"ASSET5","index":"0.000001569802896992"},{"denom":"ASSET6","index":"0.000006336500403946"},{"denom":"ASSET7","index":"0.000009959182045961"},{"denom":"ASSET8","index":"0.000013614498977085"},{"denom":"ASSET9","index":"0.000005776799011181"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001454934724421"},{"denom":"ASSET1","index":"0.000012138554241533"},{"denom":"ASSET10","index":"0.000008457231031836"},{"denom":"ASSET11","index":"0.000011742676653726"},{"denom":"ASSET12","index":"0.000010575345305063"},{"denom":"ASSET13","index":"0.000003639028595615"},{"denom":"ASSET14","index":"0.000010969531108307"},{"denom":"ASSET15","index":"0.000007843113235366"},{"denom":"ASSET16","index":"0.000005467847708521"},{"denom":"ASSET17","index":"0.000003882645572727"},{"denom":"ASSET18","index":"0.000001849120527665"},{"denom":"ASSET2","index":"0.000003583199705027"},{"denom":"ASSET3","index":"0.000001047214644670"},{"denom":"ASSET4","index":"0.000009864795788485"},{"denom":"ASSET5","index":"0.000000813748374938"},{"denom":"ASSET6","index":"0.000003310822390339"},{"denom":"ASSET7","index":"0.000005070278336150"},{"denom":"ASSET8","index":"0.000006616569426988"},{"denom":"ASSET9","index":"0.000002857424127380"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003026822568793"},{"denom":"ASSET1","index":"0.000025710421285725"},{"denom":"ASSET10","index":"0.000020652297735472"},{"denom":"ASSET11","index":"0.000025583400849235"},{"denom":"ASSET12","index":"0.000024460820755928"},{"denom":"ASSET13","index":"0.000008041083722059"},{"denom":"ASSET14","index":"0.000023461074878675"},{"denom":"ASSET15","index":"0.000018578170233019"},{"denom":"ASSET16","index":"0.000011396689804799"},{"denom":"ASSET17","index":"0.000008988134494295"},{"denom":"ASSET18","index":"0.000003688816665807"},{"denom":"ASSET2","index":"0.000007796110853756"},{"denom":"ASSET3","index":"0.000002159003644915"},{"denom":"ASSET4","index":"0.000020841789260406"},{"denom":"ASSET5","index":"0.000001683251281734"},{"denom":"ASSET6","index":"0.000006788484398340"},{"denom":"ASSET7","index":"0.000010677121165375"},{"denom":"ASSET8","index":"0.000014616905179383"},{"denom":"ASSET9","index":"0.000006199084273401"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001547699786520"},{"denom":"ASSET1","index":"0.000012908880828127"},{"denom":"ASSET10","index":"0.000008993933542043"},{"denom":"ASSET11","index":"0.000012488059147042"},{"denom":"ASSET12","index":"0.000011245681057538"},{"denom":"ASSET13","index":"0.000003869751640144"},{"denom":"ASSET14","index":"0.000011665498390936"},{"denom":"ASSET15","index":"0.000008340103197445"},{"denom":"ASSET16","index":"0.000005815173110936"},{"denom":"ASSET17","index":"0.000004129877691221"},{"denom":"ASSET18","index":"0.000001966512772230"},{"denom":"ASSET2","index":"0.000003810495126579"},{"denom":"ASSET3","index":"0.000001114825933185"},{"denom":"ASSET4","index":"0.000010490411596498"},{"denom":"ASSET5","index":"0.000000864743358984"},{"denom":"ASSET6","index":"0.000003521242992563"},{"denom":"ASSET7","index":"0.000005392342734476"},{"denom":"ASSET8","index":"0.000007036459899001"},{"denom":"ASSET9","index":"0.000003039156102537"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003086703561215"},{"denom":"ASSET1","index":"0.000026199550261878"},{"denom":"ASSET10","index":"0.000020936384793003"},{"denom":"ASSET11","index":"0.000026042194398185"},{"denom":"ASSET12","index":"0.000024843424443974"},{"denom":"ASSET13","index":"0.000008180415813801"},{"denom":"ASSET14","index":"0.000023898307142718"},{"denom":"ASSET15","index":"0.000018852934413068"},{"denom":"ASSET16","index":"0.000011621232923996"},{"denom":"ASSET17","index":"0.000009129550402498"},{"denom":"ASSET18","index":"0.000003767892160935"},{"denom":"ASSET2","index":"0.000007936188126371"},{"denom":"ASSET3","index":"0.000002203575710986"},{"denom":"ASSET4","index":"0.000021240180347210"},{"denom":"ASSET5","index":"0.000001716192200569"},{"denom":"ASSET6","index":"0.000006926674957775"},{"denom":"ASSET7","index":"0.000010883333770048"},{"denom":"ASSET8","index":"0.000014871024805414"},{"denom":"ASSET9","index":"0.000006311583255107"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001511232509129"},{"denom":"ASSET1","index":"0.000012598757210652"},{"denom":"ASSET10","index":"0.000008777665278232"},{"denom":"ASSET11","index":"0.000012187849575766"},{"denom":"ASSET12","index":"0.000010975073643675"},{"denom":"ASSET13","index":"0.000003776959255615"},{"denom":"ASSET14","index":"0.000011385233267090"},{"denom":"ASSET15","index":"0.000008140359504707"},{"denom":"ASSET16","index":"0.000005675412369706"},{"denom":"ASSET17","index":"0.000004030784481533"},{"denom":"ASSET18","index":"0.000001920145446758"},{"denom":"ASSET2","index":"0.000003719113035170"},{"denom":"ASSET3","index":"0.000001087858016388"},{"denom":"ASSET4","index":"0.000010238531681628"},{"denom":"ASSET5","index":"0.000000844504951067"},{"denom":"ASSET6","index":"0.000003436614036185"},{"denom":"ASSET7","index":"0.000005263507386191"},{"denom":"ASSET8","index":"0.000006867991992072"},{"denom":"ASSET9","index":"0.000002966364157912"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003050294937135"},{"denom":"ASSET1","index":"0.000025887230915803"},{"denom":"ASSET10","index":"0.000020718160619670"},{"denom":"ASSET11","index":"0.000025739685005463"},{"denom":"ASSET12","index":"0.000024570727404900"},{"denom":"ASSET13","index":"0.000008086966483560"},{"denom":"ASSET14","index":"0.000023616194455668"},{"denom":"ASSET15","index":"0.000018651338246959"},{"denom":"ASSET16","index":"0.000011480437826441"},{"denom":"ASSET17","index":"0.000009029688158762"},{"denom":"ASSET18","index":"0.000003721440260869"},{"denom":"ASSET2","index":"0.000007844134626406"},{"denom":"ASSET3","index":"0.000002176540273945"},{"denom":"ASSET4","index":"0.000020986445628896"},{"denom":"ASSET5","index":"0.000001695800268231"},{"denom":"ASSET6","index":"0.000006841569437153"},{"denom":"ASSET7","index":"0.000010753447417762"},{"denom":"ASSET8","index":"0.000014701309289649"},{"denom":"ASSET9","index":"0.000006238283490477"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001535139489204"},{"denom":"ASSET1","index":"0.000012800845981431"},{"denom":"ASSET10","index":"0.000008918122145344"},{"denom":"ASSET11","index":"0.000012383184798277"},{"denom":"ASSET12","index":"0.000011151318949088"},{"denom":"ASSET13","index":"0.000003837555421617"},{"denom":"ASSET14","index":"0.000011567806926671"},{"denom":"ASSET15","index":"0.000008270512670342"},{"denom":"ASSET16","index":"0.000005766305379776"},{"denom":"ASSET17","index":"0.000004095074044376"},{"denom":"ASSET18","index":"0.000001950454261216"},{"denom":"ASSET2","index":"0.000003778308540299"},{"denom":"ASSET3","index":"0.000001105159647558"},{"denom":"ASSET4","index":"0.000010402813795010"},{"denom":"ASSET5","index":"0.000000857613272150"},{"denom":"ASSET6","index":"0.000003491459778273"},{"denom":"ASSET7","index":"0.000005347470991052"},{"denom":"ASSET8","index":"0.000006978226734264"},{"denom":"ASSET9","index":"0.000003013965111016"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002944371933765"},{"denom":"ASSET1","index":"0.000024968433937291"},{"denom":"ASSET10","index":"0.000019851368221906"},{"denom":"ASSET11","index":"0.000024791952485266"},{"denom":"ASSET12","index":"0.000023600048189968"},{"denom":"ASSET13","index":"0.000007784111470281"},{"denom":"ASSET14","index":"0.000022766914870589"},{"denom":"ASSET15","index":"0.000017894900322998"},{"denom":"ASSET16","index":"0.000011081662183182"},{"denom":"ASSET17","index":"0.000008672317440622"},{"denom":"ASSET18","index":"0.000003599691097086"},{"denom":"ASSET2","index":"0.000007555380586873"},{"denom":"ASSET3","index":"0.000002101847815188"},{"denom":"ASSET4","index":"0.000020244169178497"},{"denom":"ASSET5","index":"0.000001637098640985"},{"denom":"ASSET6","index":"0.000006609166185649"},{"denom":"ASSET7","index":"0.000010374399402552"},{"denom":"ASSET8","index":"0.000014150620453773"},{"denom":"ASSET9","index":"0.000006009906313007"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001449310882227"},{"denom":"ASSET1","index":"0.000012082282763787"},{"denom":"ASSET10","index":"0.000008417588941675"},{"denom":"ASSET11","index":"0.000011688148164511"},{"denom":"ASSET12","index":"0.000010525234539176"},{"denom":"ASSET13","index":"0.000003621923721366"},{"denom":"ASSET14","index":"0.000010918286351091"},{"denom":"ASSET15","index":"0.000007806355476589"},{"denom":"ASSET16","index":"0.000005442630668295"},{"denom":"ASSET17","index":"0.000003865550877512"},{"denom":"ASSET18","index":"0.000001841279906781"},{"denom":"ASSET2","index":"0.000003566701565973"},{"denom":"ASSET3","index":"0.000001043265621984"},{"denom":"ASSET4","index":"0.000009818715786353"},{"denom":"ASSET5","index":"0.000000809924945764"},{"denom":"ASSET6","index":"0.000003295463332131"},{"denom":"ASSET7","index":"0.000005047413281659"},{"denom":"ASSET8","index":"0.000006586595514820"},{"denom":"ASSET9","index":"0.000002844482396421"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002938303361264"},{"denom":"ASSET1","index":"0.000024939884544734"},{"denom":"ASSET10","index":"0.000019970621943114"},{"denom":"ASSET11","index":"0.000024800280810198"},{"denom":"ASSET12","index":"0.000023679745396670"},{"denom":"ASSET13","index":"0.000007792253675830"},{"denom":"ASSET14","index":"0.000022752532795075"},{"denom":"ASSET15","index":"0.000017976341528508"},{"denom":"ASSET16","index":"0.000011059313296089"},{"denom":"ASSET17","index":"0.000008702160495382"},{"denom":"ASSET18","index":"0.000003584018468858"},{"denom":"ASSET2","index":"0.000007557839698908"},{"denom":"ASSET3","index":"0.000002096442663552"},{"denom":"ASSET4","index":"0.000020217858094708"},{"denom":"ASSET5","index":"0.000001633684136995"},{"denom":"ASSET6","index":"0.000006589976909255"},{"denom":"ASSET7","index":"0.000010359339015905"},{"denom":"ASSET8","index":"0.000014165755580726"},{"denom":"ASSET9","index":"0.000006010291774725"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001731982701050"},{"denom":"ASSET1","index":"0.000014440617081118"},{"denom":"ASSET10","index":"0.000010060714066040"},{"denom":"ASSET11","index":"0.000013969585405988"},{"denom":"ASSET12","index":"0.000012579542501729"},{"denom":"ASSET13","index":"0.000004329188348588"},{"denom":"ASSET14","index":"0.000013049805772821"},{"denom":"ASSET15","index":"0.000009329961826155"},{"denom":"ASSET16","index":"0.000006505308583448"},{"denom":"ASSET17","index":"0.000004619645074851"},{"denom":"ASSET18","index":"0.000002200709164068"},{"denom":"ASSET2","index":"0.000004262337197306"},{"denom":"ASSET3","index":"0.000001247119753241"},{"denom":"ASSET4","index":"0.000011735066464260"},{"denom":"ASSET5","index":"0.000000967420683506"},{"denom":"ASSET6","index":"0.000003938839097420"},{"denom":"ASSET7","index":"0.000006032740100243"},{"denom":"ASSET8","index":"0.000007872299366576"},{"denom":"ASSET9","index":"0.000003400187866969"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003329715418659"},{"denom":"ASSET1","index":"0.000028238028843607"},{"denom":"ASSET10","index":"0.000022458342297172"},{"denom":"ASSET11","index":"0.000028040237741643"},{"denom":"ASSET12","index":"0.000026695793846360"},{"denom":"ASSET13","index":"0.000008804253880653"},{"denom":"ASSET14","index":"0.000025748953032298"},{"denom":"ASSET15","index":"0.000020243324641083"},{"denom":"ASSET16","index":"0.000012532507824147"},{"denom":"ASSET17","index":"0.000009809802042254"},{"denom":"ASSET18","index":"0.000004070975493464"},{"denom":"ASSET2","index":"0.000008545109234155"},{"denom":"ASSET3","index":"0.000002377197518329"},{"denom":"ASSET4","index":"0.000022894451839245"},{"denom":"ASSET5","index":"0.000001851122407848"},{"denom":"ASSET6","index":"0.000007473999475476"},{"denom":"ASSET7","index":"0.000011732969702935"},{"denom":"ASSET8","index":"0.000016005536556726"},{"denom":"ASSET9","index":"0.000006797137295338"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001649988907243"},{"denom":"ASSET1","index":"0.000013756519537767"},{"denom":"ASSET10","index":"0.000009584361794534"},{"denom":"ASSET11","index":"0.000013307506163009"},{"denom":"ASSET12","index":"0.000011983307415229"},{"denom":"ASSET13","index":"0.000004124070634826"},{"denom":"ASSET14","index":"0.000012431118612277"},{"denom":"ASSET15","index":"0.000008888300900330"},{"denom":"ASSET16","index":"0.000006196625007203"},{"denom":"ASSET17","index":"0.000004401172597026"},{"denom":"ASSET18","index":"0.000002096597926581"},{"denom":"ASSET2","index":"0.000004060355216185"},{"denom":"ASSET3","index":"0.000001187751577673"},{"denom":"ASSET4","index":"0.000011179050527108"},{"denom":"ASSET5","index":"0.000000922070303720"},{"denom":"ASSET6","index":"0.000003752597722375"},{"denom":"ASSET7","index":"0.000005747010543590"},{"denom":"ASSET8","index":"0.000007499184556200"},{"denom":"ASSET9","index":"0.000003238666751267"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003269082759145"},{"denom":"ASSET1","index":"0.000027736662456421"},{"denom":"ASSET10","index":"0.000022145815740722"},{"denom":"ASSET11","index":"0.000027564157079872"},{"denom":"ASSET12","index":"0.000026286254396013"},{"denom":"ASSET13","index":"0.000008658548128401"},{"denom":"ASSET14","index":"0.000025298253418871"},{"denom":"ASSET15","index":"0.000019946084058089"},{"denom":"ASSET16","index":"0.000012303266096103"},{"denom":"ASSET17","index":"0.000009659898104260"},{"denom":"ASSET18","index":"0.000003991565584036"},{"denom":"ASSET2","index":"0.000008399501371576"},{"denom":"ASSET3","index":"0.000002333103515211"},{"denom":"ASSET4","index":"0.000022486071398850"},{"denom":"ASSET5","index":"0.000001817550334619"},{"denom":"ASSET6","index":"0.000007334517845971"},{"denom":"ASSET7","index":"0.000011522603065826"},{"denom":"ASSET8","index":"0.000015739883934035"},{"denom":"ASSET9","index":"0.000006680430297789"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001707974867576"},{"denom":"ASSET1","index":"0.000014238090744503"},{"denom":"ASSET10","index":"0.000009920037235236"},{"denom":"ASSET11","index":"0.000013773690453356"},{"denom":"ASSET12","index":"0.000012403461252069"},{"denom":"ASSET13","index":"0.000004268385028930"},{"denom":"ASSET14","index":"0.000012866619831208"},{"denom":"ASSET15","index":"0.000009199844270355"},{"denom":"ASSET16","index":"0.000006414063379473"},{"denom":"ASSET17","index":"0.000004555220502875"},{"denom":"ASSET18","index":"0.000002169891734707"},{"denom":"ASSET2","index":"0.000004203195148489"},{"denom":"ASSET3","index":"0.000001229294888332"},{"denom":"ASSET4","index":"0.000011570893350426"},{"denom":"ASSET5","index":"0.000000954255678468"},{"denom":"ASSET6","index":"0.000003884075162326"},{"denom":"ASSET7","index":"0.000005948421376317"},{"denom":"ASSET8","index":"0.000007761941764609"},{"denom":"ASSET9","index":"0.000003352622422724"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003075387603983"},{"denom":"ASSET1","index":"0.000026047450678709"},{"denom":"ASSET10","index":"0.000020531243448578"},{"denom":"ASSET11","index":"0.000025816927992783"},{"denom":"ASSET12","index":"0.000024485469945303"},{"denom":"ASSET13","index":"0.000008098391373250"},{"denom":"ASSET14","index":"0.000023735883509134"},{"denom":"ASSET15","index":"0.000018540774078871"},{"denom":"ASSET16","index":"0.000011572711306393"},{"denom":"ASSET17","index":"0.000008997644319689"},{"denom":"ASSET18","index":"0.000003770348288081"},{"denom":"ASSET2","index":"0.000007868945206789"},{"denom":"ASSET3","index":"0.000002196489262864"},{"denom":"ASSET4","index":"0.000021122354693053"},{"denom":"ASSET5","index":"0.000001710501624761"},{"denom":"ASSET6","index":"0.000006909892735753"},{"denom":"ASSET7","index":"0.000010827333344051"},{"denom":"ASSET8","index":"0.000014723239896475"},{"denom":"ASSET9","index":"0.000006260042064096"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001779156074987"},{"denom":"ASSET1","index":"0.000014834764457923"},{"denom":"ASSET10","index":"0.000010335215703318"},{"denom":"ASSET11","index":"0.000014351450406057"},{"denom":"ASSET12","index":"0.000012923397473821"},{"denom":"ASSET13","index":"0.000004447014618532"},{"denom":"ASSET14","index":"0.000013405835956753"},{"denom":"ASSET15","index":"0.000009584853126417"},{"denom":"ASSET16","index":"0.000006682342108415"},{"denom":"ASSET17","index":"0.000004745583625211"},{"denom":"ASSET18","index":"0.000002260718988984"},{"denom":"ASSET2","index":"0.000004378720241638"},{"denom":"ASSET3","index":"0.000001280957351233"},{"denom":"ASSET4","index":"0.000012055708659691"},{"denom":"ASSET5","index":"0.000000993770740704"},{"denom":"ASSET6","index":"0.000004046879615447"},{"denom":"ASSET7","index":"0.000006197276918679"},{"denom":"ASSET8","index":"0.000008086754679418"},{"denom":"ASSET9","index":"0.000003492644479883"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003478645419875"},{"denom":"ASSET1","index":"0.000029510728520321"},{"denom":"ASSET10","index":"0.000023521700007579"},{"denom":"ASSET11","index":"0.000029317721838376"},{"denom":"ASSET12","index":"0.000027938200533330"},{"denom":"ASSET13","index":"0.000009206643656085"},{"denom":"ASSET14","index":"0.000026913511393693"},{"denom":"ASSET15","index":"0.000021192735957156"},{"denom":"ASSET16","index":"0.000013092928863665"},{"denom":"ASSET17","index":"0.000010265835619821"},{"denom":"ASSET18","index":"0.000004249633310572"},{"denom":"ASSET2","index":"0.000008933634051769"},{"denom":"ASSET3","index":"0.000002482776919113"},{"denom":"ASSET4","index":"0.000023925662277258"},{"denom":"ASSET5","index":"0.000001933519521756"},{"denom":"ASSET6","index":"0.000007806757132876"},{"denom":"ASSET7","index":"0.000012260200744601"},{"denom":"ASSET8","index":"0.000016737737824425"},{"denom":"ASSET9","index":"0.000007106044722519"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001752700098923"},{"denom":"ASSET1","index":"0.000014612940709519"},{"denom":"ASSET10","index":"0.000010180696541309"},{"denom":"ASSET11","index":"0.000014136053678762"},{"denom":"ASSET12","index":"0.000012730078503378"},{"denom":"ASSET13","index":"0.000004380628160175"},{"denom":"ASSET14","index":"0.000013205843447004"},{"denom":"ASSET15","index":"0.000009441241121853"},{"denom":"ASSET16","index":"0.000006583285198706"},{"denom":"ASSET17","index":"0.000004674614988548"},{"denom":"ASSET18","index":"0.000002226220868286"},{"denom":"ASSET2","index":"0.000004313302932304"},{"denom":"ASSET3","index":"0.000001261225935460"},{"denom":"ASSET4","index":"0.000011875048109410"},{"denom":"ASSET5","index":"0.000000979582065531"},{"denom":"ASSET6","index":"0.000003985653489996"},{"denom":"ASSET7","index":"0.000006105276080818"},{"denom":"ASSET8","index":"0.000007965696544335"},{"denom":"ASSET9","index":"0.000003440319144236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003327512121722"},{"denom":"ASSET1","index":"0.000028211822531533"},{"denom":"ASSET10","index":"0.000022399629444355"},{"denom":"ASSET11","index":"0.000028004032167971"},{"denom":"ASSET12","index":"0.000026643127370344"},{"denom":"ASSET13","index":"0.000008791339050068"},{"denom":"ASSET14","index":"0.000025722152469956"},{"denom":"ASSET15","index":"0.000020197596080044"},{"denom":"ASSET16","index":"0.000012523737733641"},{"denom":"ASSET17","index":"0.000009790102863953"},{"denom":"ASSET18","index":"0.000004069245825383"},{"denom":"ASSET2","index":"0.000008534453115749"},{"denom":"ASSET3","index":"0.000002375171252372"},{"denom":"ASSET4","index":"0.000022873545881432"},{"denom":"ASSET5","index":"0.000001850500835715"},{"denom":"ASSET6","index":"0.000007470212303630"},{"denom":"ASSET7","index":"0.000011723166108277"},{"denom":"ASSET8","index":"0.000015981595788329"},{"denom":"ASSET9","index":"0.000006788341225254"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001434713876400"},{"denom":"ASSET1","index":"0.000011974044460331"},{"denom":"ASSET10","index":"0.000008340728508476"},{"denom":"ASSET11","index":"0.000011582406348125"},{"denom":"ASSET12","index":"0.000010430757641934"},{"denom":"ASSET13","index":"0.000003588723493535"},{"denom":"ASSET14","index":"0.000010820456951604"},{"denom":"ASSET15","index":"0.000007735822117345"},{"denom":"ASSET16","index":"0.000005393748654249"},{"denom":"ASSET17","index":"0.000003829135007959"},{"denom":"ASSET18","index":"0.000001824413186071"},{"denom":"ASSET2","index":"0.000003534437022536"},{"denom":"ASSET3","index":"0.000001033381751515"},{"denom":"ASSET4","index":"0.000009730849926555"},{"denom":"ASSET5","index":"0.000000802664249770"},{"denom":"ASSET6","index":"0.000003264943470077"},{"denom":"ASSET7","index":"0.000005002110542043"},{"denom":"ASSET8","index":"0.000006526009335083"},{"denom":"ASSET9","index":"0.000002819018886872"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002895048613815"},{"denom":"ASSET1","index":"0.000024589366099895"},{"denom":"ASSET10","index":"0.000019676065498265"},{"denom":"ASSET11","index":"0.000024447379266412"},{"denom":"ASSET12","index":"0.000023337478265694"},{"denom":"ASSET13","index":"0.000007679998629802"},{"denom":"ASSET14","index":"0.000022431328797509"},{"denom":"ASSET15","index":"0.000017714358679290"},{"denom":"ASSET16","index":"0.000010904445776568"},{"denom":"ASSET17","index":"0.000008574179211920"},{"denom":"ASSET18","index":"0.000003534399202209"},{"denom":"ASSET2","index":"0.000007450371795821"},{"denom":"ASSET3","index":"0.000002066219984895"},{"denom":"ASSET4","index":"0.000019933989143940"},{"denom":"ASSET5","index":"0.000001610899827710"},{"denom":"ASSET6","index":"0.000006497050827728"},{"denom":"ASSET7","index":"0.000010213894093182"},{"denom":"ASSET8","index":"0.000013962110633776"},{"denom":"ASSET9","index":"0.000005925048173997"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001401536005232"},{"denom":"ASSET1","index":"0.000011690786017211"},{"denom":"ASSET10","index":"0.000008143726832164"},{"denom":"ASSET11","index":"0.000011307987636928"},{"denom":"ASSET12","index":"0.000010184289165772"},{"denom":"ASSET13","index":"0.000003503840013080"},{"denom":"ASSET14","index":"0.000010564000462344"},{"denom":"ASSET15","index":"0.000007554093843178"},{"denom":"ASSET16","index":"0.000005266564812612"},{"denom":"ASSET17","index":"0.000003738458375190"},{"denom":"ASSET18","index":"0.000001781247301804"},{"denom":"ASSET2","index":"0.000003448272506265"},{"denom":"ASSET3","index":"0.000001009476373813"},{"denom":"ASSET4","index":"0.000009498956581716"},{"denom":"ASSET5","index":"0.000000781032179127"},{"denom":"ASSET6","index":"0.000003188957474460"},{"denom":"ASSET7","index":"0.000004883766432329"},{"denom":"ASSET8","index":"0.000006371740781496"},{"denom":"ASSET9","index":"0.000002750591587361"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003071913026336"},{"denom":"ASSET1","index":"0.000026115211920195"},{"denom":"ASSET10","index":"0.000021104918039272"},{"denom":"ASSET11","index":"0.000026018207650283"},{"denom":"ASSET12","index":"0.000024942011742431"},{"denom":"ASSET13","index":"0.000008182453133262"},{"denom":"ASSET14","index":"0.000023839798810024"},{"denom":"ASSET15","index":"0.000018963275072170"},{"denom":"ASSET16","index":"0.000011567273660047"},{"denom":"ASSET17","index":"0.000009164652819502"},{"denom":"ASSET18","index":"0.000003735860972186"},{"denom":"ASSET2","index":"0.000007925194415041"},{"denom":"ASSET3","index":"0.000002190810612048"},{"denom":"ASSET4","index":"0.000021165118890878"},{"denom":"ASSET5","index":"0.000001704606606646"},{"denom":"ASSET6","index":"0.000006884812645629"},{"denom":"ASSET7","index":"0.000010842612570084"},{"denom":"ASSET8","index":"0.000014874699612932"},{"denom":"ASSET9","index":"0.000006301602876980"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001534549585700"},{"denom":"ASSET1","index":"0.000012795681230217"},{"denom":"ASSET10","index":"0.000008914897664776"},{"denom":"ASSET11","index":"0.000012378406858633"},{"denom":"ASSET12","index":"0.000011146809898878"},{"denom":"ASSET13","index":"0.000003835934265229"},{"denom":"ASSET14","index":"0.000011563204872419"},{"denom":"ASSET15","index":"0.000008267660704848"},{"denom":"ASSET16","index":"0.000005764014475342"},{"denom":"ASSET17","index":"0.000004093597891939"},{"denom":"ASSET18","index":"0.000001950065161198"},{"denom":"ASSET2","index":"0.000003777014596322"},{"denom":"ASSET3","index":"0.000001104963641508"},{"denom":"ASSET4","index":"0.000010398442163960"},{"denom":"ASSET5","index":"0.000000857413092297"},{"denom":"ASSET6","index":"0.000003490330834180"},{"denom":"ASSET7","index":"0.000005345421006692"},{"denom":"ASSET8","index":"0.000006975385280099"},{"denom":"ASSET9","index":"0.000003012817696624"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003034954909236"},{"denom":"ASSET1","index":"0.000025752158165977"},{"denom":"ASSET10","index":"0.000020556858138008"},{"denom":"ASSET11","index":"0.000025591676311293"},{"denom":"ASSET12","index":"0.000024402528250789"},{"denom":"ASSET13","index":"0.000008038375291107"},{"denom":"ASSET14","index":"0.000023488313497799"},{"denom":"ASSET15","index":"0.000018516037809802"},{"denom":"ASSET16","index":"0.000011423945454084"},{"denom":"ASSET17","index":"0.000008967524527402"},{"denom":"ASSET18","index":"0.000003706330058793"},{"denom":"ASSET2","index":"0.000007798931182527"},{"denom":"ASSET3","index":"0.000002166419358500"},{"denom":"ASSET4","index":"0.000020877722621984"},{"denom":"ASSET5","index":"0.000001687498984799"},{"denom":"ASSET6","index":"0.000006810207932767"},{"denom":"ASSET7","index":"0.000010698180555138"},{"denom":"ASSET8","index":"0.000014612921845389"},{"denom":"ASSET9","index":"0.000006203015740356"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001658482037183"},{"denom":"ASSET1","index":"0.000013862588923046"},{"denom":"ASSET10","index":"0.000009655943522610"},{"denom":"ASSET11","index":"0.000013408077810815"},{"denom":"ASSET12","index":"0.000012073555821711"},{"denom":"ASSET13","index":"0.000004153457929856"},{"denom":"ASSET14","index":"0.000012528066933942"},{"denom":"ASSET15","index":"0.000008954835955871"},{"denom":"ASSET16","index":"0.000006242274956279"},{"denom":"ASSET17","index":"0.000004433900956551"},{"denom":"ASSET18","index":"0.000002112993149414"},{"denom":"ASSET2","index":"0.000004090600010079"},{"denom":"ASSET3","index":"0.000001194300475756"},{"denom":"ASSET4","index":"0.000011266073313811"},{"denom":"ASSET5","index":"0.000000928363122855"},{"denom":"ASSET6","index":"0.000003781145635794"},{"denom":"ASSET7","index":"0.000005787763844048"},{"denom":"ASSET8","index":"0.000007557456046990"},{"denom":"ASSET9","index":"0.000003263776603787"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003188277912377"},{"denom":"ASSET1","index":"0.000027072180177666"},{"denom":"ASSET10","index":"0.000021525590492702"},{"denom":"ASSET11","index":"0.000026879695640981"},{"denom":"ASSET12","index":"0.000025588321740665"},{"denom":"ASSET13","index":"0.000008437670891103"},{"denom":"ASSET14","index":"0.000024686413843557"},{"denom":"ASSET15","index":"0.000019403734038796"},{"denom":"ASSET16","index":"0.000012012351193227"},{"denom":"ASSET17","index":"0.000009402991763462"},{"denom":"ASSET18","index":"0.000003903246578743"},{"denom":"ASSET2","index":"0.000008191237466303"},{"denom":"ASSET3","index":"0.000002276140738265"},{"denom":"ASSET4","index":"0.000021950324608304"},{"denom":"ASSET5","index":"0.000001774065663090"},{"denom":"ASSET6","index":"0.000007165524818145"},{"denom":"ASSET7","index":"0.000011244820309610"},{"denom":"ASSET8","index":"0.000015343724796373"},{"denom":"ASSET9","index":"0.000006516357987660"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001453411320498"},{"denom":"ASSET1","index":"0.000012118137400313"},{"denom":"ASSET10","index":"0.000008442891188019"},{"denom":"ASSET11","index":"0.000011723343510399"},{"denom":"ASSET12","index":"0.000010556870017106"},{"denom":"ASSET13","index":"0.000003632917795231"},{"denom":"ASSET14","index":"0.000010951256903010"},{"denom":"ASSET15","index":"0.000007829943148627"},{"denom":"ASSET16","index":"0.000005459144789091"},{"denom":"ASSET17","index":"0.000003877120201363"},{"denom":"ASSET18","index":"0.000001846984198382"},{"denom":"ASSET2","index":"0.000003577158245830"},{"denom":"ASSET3","index":"0.000001046407310278"},{"denom":"ASSET4","index":"0.000009848276035312"},{"denom":"ASSET5","index":"0.000000811973000390"},{"denom":"ASSET6","index":"0.000003305686571013"},{"denom":"ASSET7","index":"0.000005062722883136"},{"denom":"ASSET8","index":"0.000006606082089893"},{"denom":"ASSET9","index":"0.000002853098111648"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002979919393708"},{"denom":"ASSET1","index":"0.000025298333716476"},{"denom":"ASSET10","index":"0.000020286143685892"},{"denom":"ASSET11","index":"0.000025164674259360"},{"denom":"ASSET12","index":"0.000024041723171534"},{"denom":"ASSET13","index":"0.000007907785176595"},{"denom":"ASSET14","index":"0.000023082402053339"},{"denom":"ASSET15","index":"0.000018255332392862"},{"denom":"ASSET16","index":"0.000011216675450010"},{"denom":"ASSET17","index":"0.000008835128154455"},{"denom":"ASSET18","index":"0.000003633337151635"},{"denom":"ASSET2","index":"0.000007668586747858"},{"denom":"ASSET3","index":"0.000002126085354033"},{"denom":"ASSET4","index":"0.000020508686269066"},{"denom":"ASSET5","index":"0.000001656307666438"},{"denom":"ASSET6","index":"0.000006683025235204"},{"denom":"ASSET7","index":"0.000010507859389263"},{"denom":"ASSET8","index":"0.000014375637436113"},{"denom":"ASSET9","index":"0.000006098257618497"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001779729226299"},{"denom":"ASSET1","index":"0.000014840802182142"},{"denom":"ASSET10","index":"0.000010337989986643"},{"denom":"ASSET11","index":"0.000014356968690293"},{"denom":"ASSET12","index":"0.000012927350131463"},{"denom":"ASSET13","index":"0.000004449323065747"},{"denom":"ASSET14","index":"0.000013411183623312"},{"denom":"ASSET15","index":"0.000009589142170113"},{"denom":"ASSET16","index":"0.000006683709894939"},{"denom":"ASSET17","index":"0.000004745944603463"},{"denom":"ASSET18","index":"0.000002261131394068"},{"denom":"ASSET2","index":"0.000004378814667437"},{"denom":"ASSET3","index":"0.000001281307789972"},{"denom":"ASSET4","index":"0.000012059367435030"},{"denom":"ASSET5","index":"0.000000994411548574"},{"denom":"ASSET6","index":"0.000004048154592606"},{"denom":"ASSET7","index":"0.000006199876403090"},{"denom":"ASSET8","index":"0.000008089015212973"},{"denom":"ASSET9","index":"0.000003493812702447"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003433377044021"},{"denom":"ASSET1","index":"0.000029119719093870"},{"denom":"ASSET10","index":"0.000023168779363922"},{"denom":"ASSET11","index":"0.000028918871222836"},{"denom":"ASSET12","index":"0.000027536680421684"},{"denom":"ASSET13","index":"0.000009079853140421"},{"denom":"ASSET14","index":"0.000026553415276013"},{"denom":"ASSET15","index":"0.000020883272198610"},{"denom":"ASSET16","index":"0.000012920460029656"},{"denom":"ASSET17","index":"0.000010116347697920"},{"denom":"ASSET18","index":"0.000004196183907349"},{"denom":"ASSET2","index":"0.000008810148159861"},{"denom":"ASSET3","index":"0.000002451192479374"},{"denom":"ASSET4","index":"0.000023608026429735"},{"denom":"ASSET5","index":"0.000001908186346512"},{"denom":"ASSET6","index":"0.000007706415634871"},{"denom":"ASSET7","index":"0.000012098308533034"},{"denom":"ASSET8","index":"0.000016505861275643"},{"denom":"ASSET9","index":"0.000007009790471677"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001595670533734"},{"denom":"ASSET1","index":"0.000013304245337308"},{"denom":"ASSET10","index":"0.000009268754359880"},{"denom":"ASSET11","index":"0.000012870227612725"},{"denom":"ASSET12","index":"0.000011589729681675"},{"denom":"ASSET13","index":"0.000003988302473145"},{"denom":"ASSET14","index":"0.000012022582258004"},{"denom":"ASSET15","index":"0.000008595881243245"},{"denom":"ASSET16","index":"0.000005992940044003"},{"denom":"ASSET17","index":"0.000004256286571545"},{"denom":"ASSET18","index":"0.000002027357961809"},{"denom":"ASSET2","index":"0.000003927132189815"},{"denom":"ASSET3","index":"0.000001148836178358"},{"denom":"ASSET4","index":"0.000010811993222188"},{"denom":"ASSET5","index":"0.000000891338414244"},{"denom":"ASSET6","index":"0.000003628854236813"},{"denom":"ASSET7","index":"0.000005557757171166"},{"denom":"ASSET8","index":"0.000007252465306483"},{"denom":"ASSET9","index":"0.000003132501080646"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003118409098775"},{"denom":"ASSET1","index":"0.000026454243753489"},{"denom":"ASSET10","index":"0.000021084585905412"},{"denom":"ASSET11","index":"0.000026280950742513"},{"denom":"ASSET12","index":"0.000025043390497745"},{"denom":"ASSET13","index":"0.000008253298424938"},{"denom":"ASSET14","index":"0.000024125697910719"},{"denom":"ASSET15","index":"0.000018997425080839"},{"denom":"ASSET16","index":"0.000011737294217995"},{"denom":"ASSET17","index":"0.000009202973625129"},{"denom":"ASSET18","index":"0.000003809493270778"},{"denom":"ASSET2","index":"0.000008008868325931"},{"denom":"ASSET3","index":"0.000002225819587877"},{"denom":"ASSET4","index":"0.000021447702379813"},{"denom":"ASSET5","index":"0.000001733713847172"},{"denom":"ASSET6","index":"0.000006998355968525"},{"denom":"ASSET7","index":"0.000010990481127196"},{"denom":"ASSET8","index":"0.000015003824321723"},{"denom":"ASSET9","index":"0.000006370091157596"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001536288093705"},{"denom":"ASSET1","index":"0.000012808796131863"},{"denom":"ASSET10","index":"0.000008924322337818"},{"denom":"ASSET11","index":"0.000012391382492026"},{"denom":"ASSET12","index":"0.000011158327625467"},{"denom":"ASSET13","index":"0.000003840018305497"},{"denom":"ASSET14","index":"0.000011575273312793"},{"denom":"ASSET15","index":"0.000008276208110044"},{"denom":"ASSET16","index":"0.000005770322413488"},{"denom":"ASSET17","index":"0.000004097860139074"},{"denom":"ASSET18","index":"0.000001951829923499"},{"denom":"ASSET2","index":"0.000003781056289108"},{"denom":"ASSET3","index":"0.000001105771783560"},{"denom":"ASSET4","index":"0.000010409603607822"},{"denom":"ASSET5","index":"0.000000858224905226"},{"denom":"ASSET6","index":"0.000003494201399847"},{"denom":"ASSET7","index":"0.000005351036963607"},{"denom":"ASSET8","index":"0.000006982787369562"},{"denom":"ASSET9","index":"0.000003015953933577"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003103831608428"},{"denom":"ASSET1","index":"0.000026343132935309"},{"denom":"ASSET10","index":"0.000021085436521682"},{"denom":"ASSET11","index":"0.000026194005406126"},{"denom":"ASSET12","index":"0.000025005394550642"},{"denom":"ASSET13","index":"0.000008229918727938"},{"denom":"ASSET14","index":"0.000024032248358707"},{"denom":"ASSET15","index":"0.000018981699828973"},{"denom":"ASSET16","index":"0.000011682673521897"},{"denom":"ASSET17","index":"0.000009189132473525"},{"denom":"ASSET18","index":"0.000003786361913516"},{"denom":"ASSET2","index":"0.000007982150766688"},{"denom":"ASSET3","index":"0.000002214601198569"},{"denom":"ASSET4","index":"0.000021356131094847"},{"denom":"ASSET5","index":"0.000001725369734459"},{"denom":"ASSET6","index":"0.000006962131899100"},{"denom":"ASSET7","index":"0.000010942547729288"},{"denom":"ASSET8","index":"0.000014960973970884"},{"denom":"ASSET9","index":"0.000006348281537724"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001156201861882"},{"denom":"ASSET1","index":"0.000009641528249827"},{"denom":"ASSET10","index":"0.000006717693720376"},{"denom":"ASSET11","index":"0.000009327193051790"},{"denom":"ASSET12","index":"0.000008399128436016"},{"denom":"ASSET13","index":"0.000002890504654704"},{"denom":"ASSET14","index":"0.000008712888981039"},{"denom":"ASSET15","index":"0.000006229813312455"},{"denom":"ASSET16","index":"0.000004343227471224"},{"denom":"ASSET17","index":"0.000003084737373052"},{"denom":"ASSET18","index":"0.000001469387753892"},{"denom":"ASSET2","index":"0.000002846256372714"},{"denom":"ASSET3","index":"0.000000832672215639"},{"denom":"ASSET4","index":"0.000007835393830396"},{"denom":"ASSET5","index":"0.000000645909986459"},{"denom":"ASSET6","index":"0.000002630186839877"},{"denom":"ASSET7","index":"0.000004027742967162"},{"denom":"ASSET8","index":"0.000005256351108664"},{"denom":"ASSET9","index":"0.000002269879400812"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002648545180722"},{"denom":"ASSET1","index":"0.000022528915692996"},{"denom":"ASSET10","index":"0.000018297756458480"},{"denom":"ASSET11","index":"0.000022469822082599"},{"denom":"ASSET12","index":"0.000021584227648624"},{"denom":"ASSET13","index":"0.000007070243338634"},{"denom":"ASSET14","index":"0.000020574684608302"},{"denom":"ASSET15","index":"0.000016423497937791"},{"denom":"ASSET16","index":"0.000009972839292196"},{"denom":"ASSET17","index":"0.000007932645550822"},{"denom":"ASSET18","index":"0.000003216131666673"},{"denom":"ASSET2","index":"0.000006846442901912"},{"denom":"ASSET3","index":"0.000001888119307859"},{"denom":"ASSET4","index":"0.000018258669735553"},{"denom":"ASSET5","index":"0.000001471345302008"},{"denom":"ASSET6","index":"0.000005932348598922"},{"denom":"ASSET7","index":"0.000009352074075404"},{"denom":"ASSET8","index":"0.000012853047191550"},{"denom":"ASSET9","index":"0.000005442948627063"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001638829976996"},{"denom":"ASSET1","index":"0.000013663699511091"},{"denom":"ASSET10","index":"0.000009519748943981"},{"denom":"ASSET11","index":"0.000013218199388741"},{"denom":"ASSET12","index":"0.000011902774883924"},{"denom":"ASSET13","index":"0.000004095984811686"},{"denom":"ASSET14","index":"0.000012347548252404"},{"denom":"ASSET15","index":"0.000008827879259679"},{"denom":"ASSET16","index":"0.000006154878525580"},{"denom":"ASSET17","index":"0.000004371424528441"},{"denom":"ASSET18","index":"0.000002082149837736"},{"denom":"ASSET2","index":"0.000004033483978861"},{"denom":"ASSET3","index":"0.000001179521531115"},{"denom":"ASSET4","index":"0.000011104072380722"},{"denom":"ASSET5","index":"0.000000915709876282"},{"denom":"ASSET6","index":"0.000003726793845693"},{"denom":"ASSET7","index":"0.000005707924895490"},{"denom":"ASSET8","index":"0.000007448500414296"},{"denom":"ASSET9","index":"0.000003217339382778"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003133427860009"},{"denom":"ASSET1","index":"0.000026571363581284"},{"denom":"ASSET10","index":"0.000021118003104150"},{"denom":"ASSET11","index":"0.000026381510155653"},{"denom":"ASSET12","index":"0.000025108485590780"},{"denom":"ASSET13","index":"0.000008282355352591"},{"denom":"ASSET14","index":"0.000024227637307493"},{"denom":"ASSET15","index":"0.000019037535386694"},{"denom":"ASSET16","index":"0.000011793447009555"},{"denom":"ASSET17","index":"0.000009226841180516"},{"denom":"ASSET18","index":"0.000003831770888939"},{"denom":"ASSET2","index":"0.000008040278303534"},{"denom":"ASSET3","index":"0.000002236402387063"},{"denom":"ASSET4","index":"0.000021543810534784"},{"denom":"ASSET5","index":"0.000001742508705183"},{"denom":"ASSET6","index":"0.000007033989161296"},{"denom":"ASSET7","index":"0.000011040340871930"},{"denom":"ASSET8","index":"0.000015056795520064"},{"denom":"ASSET9","index":"0.000006395464292965"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001556422065682"},{"denom":"ASSET1","index":"0.000012975233747354"},{"denom":"ASSET10","index":"0.000009039925804131"},{"denom":"ASSET11","index":"0.000012551842294036"},{"denom":"ASSET12","index":"0.000011303196313064"},{"denom":"ASSET13","index":"0.000003889859143149"},{"denom":"ASSET14","index":"0.000011725391745328"},{"denom":"ASSET15","index":"0.000008383310245172"},{"denom":"ASSET16","index":"0.000005844954893688"},{"denom":"ASSET17","index":"0.000004150990406731"},{"denom":"ASSET18","index":"0.000001977421476890"},{"denom":"ASSET2","index":"0.000003830058090421"},{"denom":"ASSET3","index":"0.000001120273054448"},{"denom":"ASSET4","index":"0.000010544520290781"},{"denom":"ASSET5","index":"0.000000869507306673"},{"denom":"ASSET6","index":"0.000003539424974160"},{"denom":"ASSET7","index":"0.000005420766093000"},{"denom":"ASSET8","index":"0.000007073268516732"},{"denom":"ASSET9","index":"0.000003055036447059"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003102345998156"},{"denom":"ASSET1","index":"0.000026324295521459"},{"denom":"ASSET10","index":"0.000021034709957123"},{"denom":"ASSET11","index":"0.000026165624152899"},{"denom":"ASSET12","index":"0.000024960753498443"},{"denom":"ASSET13","index":"0.000008219480216908"},{"denom":"ASSET14","index":"0.000024012126304297"},{"denom":"ASSET15","index":"0.000018942125813395"},{"denom":"ASSET16","index":"0.000011676379885795"},{"denom":"ASSET17","index":"0.000009172744202097"},{"denom":"ASSET18","index":"0.000003786686743681"},{"denom":"ASSET2","index":"0.000007973892542195"},{"denom":"ASSET3","index":"0.000002213622154517"},{"denom":"ASSET4","index":"0.000021341514997764"},{"denom":"ASSET5","index":"0.000001724677267981"},{"denom":"ASSET6","index":"0.000006959760131783"},{"denom":"ASSET7","index":"0.000010935767858794"},{"denom":"ASSET8","index":"0.000014942141973689"},{"denom":"ASSET9","index":"0.000006341977499472"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001602535700795"},{"denom":"ASSET1","index":"0.000013360208994045"},{"denom":"ASSET10","index":"0.000009307956057468"},{"denom":"ASSET11","index":"0.000012924500245282"},{"denom":"ASSET12","index":"0.000011638378499862"},{"denom":"ASSET13","index":"0.000004005127453862"},{"denom":"ASSET14","index":"0.000012073279383206"},{"denom":"ASSET15","index":"0.000008632311279566"},{"denom":"ASSET16","index":"0.000006018597363935"},{"denom":"ASSET17","index":"0.000004274146638048"},{"denom":"ASSET18","index":"0.000002036090141777"},{"denom":"ASSET2","index":"0.000003943729682095"},{"denom":"ASSET3","index":"0.000001153631816872"},{"denom":"ASSET4","index":"0.000010857441929150"},{"denom":"ASSET5","index":"0.000000895384171592"},{"denom":"ASSET6","index":"0.000003644280900498"},{"denom":"ASSET7","index":"0.000005581542172809"},{"denom":"ASSET8","index":"0.000007283176031543"},{"denom":"ASSET9","index":"0.000003145827937606"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003144114236048"},{"denom":"ASSET1","index":"0.000026672683120621"},{"denom":"ASSET10","index":"0.000021269722635007"},{"denom":"ASSET11","index":"0.000026500587720899"},{"denom":"ASSET12","index":"0.000025258297912053"},{"denom":"ASSET13","index":"0.000008323039503604"},{"denom":"ASSET14","index":"0.000024326015412045"},{"denom":"ASSET15","index":"0.000019162234595686"},{"denom":"ASSET16","index":"0.000011833945147558"},{"denom":"ASSET17","index":"0.000009281867675434"},{"denom":"ASSET18","index":"0.000003840349431676"},{"denom":"ASSET2","index":"0.000008076055447193"},{"denom":"ASSET3","index":"0.000002244145529651"},{"denom":"ASSET4","index":"0.000021624555086447"},{"denom":"ASSET5","index":"0.000001748086313596"},{"denom":"ASSET6","index":"0.000007055400333314"},{"denom":"ASSET7","index":"0.000011081362186058"},{"denom":"ASSET8","index":"0.000015130336137492"},{"denom":"ASSET9","index":"0.000006423586371910"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001633811359009"},{"denom":"ASSET1","index":"0.000013620164108551"},{"denom":"ASSET10","index":"0.000009487838038290"},{"denom":"ASSET11","index":"0.000013174776703502"},{"denom":"ASSET12","index":"0.000011864685946211"},{"denom":"ASSET13","index":"0.000004082355776036"},{"denom":"ASSET14","index":"0.000012307900729772"},{"denom":"ASSET15","index":"0.000008799117026580"},{"denom":"ASSET16","index":"0.000006135483082238"},{"denom":"ASSET17","index":"0.000004356106083529"},{"denom":"ASSET18","index":"0.000002074853521082"},{"denom":"ASSET2","index":"0.000004019349752882"},{"denom":"ASSET3","index":"0.000001175388225032"},{"denom":"ASSET4","index":"0.000011067333860098"},{"denom":"ASSET5","index":"0.000000912501024979"},{"denom":"ASSET6","index":"0.000003715182744556"},{"denom":"ASSET7","index":"0.000005690095677188"},{"denom":"ASSET8","index":"0.000007423847624648"},{"denom":"ASSET9","index":"0.000003206789316354"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003109600829404"},{"denom":"ASSET1","index":"0.000026362702045617"},{"denom":"ASSET10","index":"0.000020937844947102"},{"denom":"ASSET11","index":"0.000026169598808926"},{"denom":"ASSET12","index":"0.000024901798461360"},{"denom":"ASSET13","index":"0.000008215149609138"},{"denom":"ASSET14","index":"0.000024035954930107"},{"denom":"ASSET15","index":"0.000018878331344314"},{"denom":"ASSET16","index":"0.000011701775976010"},{"denom":"ASSET17","index":"0.000009149505282332"},{"denom":"ASSET18","index":"0.000003801954966508"},{"denom":"ASSET2","index":"0.000007974718303805"},{"denom":"ASSET3","index":"0.000002219037761573"},{"denom":"ASSET4","index":"0.000021373555319687"},{"denom":"ASSET5","index":"0.000001728657323000"},{"denom":"ASSET6","index":"0.000006980294033305"},{"denom":"ASSET7","index":"0.000010954522542925"},{"denom":"ASSET8","index":"0.000014935013269095"},{"denom":"ASSET9","index":"0.000006344057182602"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001356454583190"},{"denom":"ASSET1","index":"0.000011307707773056"},{"denom":"ASSET10","index":"0.000007878355411964"},{"denom":"ASSET11","index":"0.000010938987301217"},{"denom":"ASSET12","index":"0.000009850463994830"},{"denom":"ASSET13","index":"0.000003389876593037"},{"denom":"ASSET14","index":"0.000010218764511690"},{"denom":"ASSET15","index":"0.000007305956775156"},{"denom":"ASSET16","index":"0.000005094053899100"},{"denom":"ASSET17","index":"0.000003617492191826"},{"denom":"ASSET18","index":"0.000001723075280133"},{"denom":"ASSET2","index":"0.000003337802175602"},{"denom":"ASSET3","index":"0.000000976395326909"},{"denom":"ASSET4","index":"0.000009189454857387"},{"denom":"ASSET5","index":"0.000000758018737665"},{"denom":"ASSET6","index":"0.000003084569323074"},{"denom":"ASSET7","index":"0.000004724073562323"},{"denom":"ASSET8","index":"0.000006164519141376"},{"denom":"ASSET9","index":"0.000002662514568862"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002920257070141"},{"denom":"ASSET1","index":"0.000024811653868653"},{"denom":"ASSET10","index":"0.000020012294768332"},{"denom":"ASSET11","index":"0.000024710629923001"},{"denom":"ASSET12","index":"0.000023666550441425"},{"denom":"ASSET13","index":"0.000007769918885884"},{"denom":"ASSET14","index":"0.000022647790193256"},{"denom":"ASSET15","index":"0.000017987461600930"},{"denom":"ASSET16","index":"0.000010993196459757"},{"denom":"ASSET17","index":"0.000008697266331114"},{"denom":"ASSET18","index":"0.000003553540715950"},{"denom":"ASSET2","index":"0.000007529733395993"},{"denom":"ASSET3","index":"0.000002082581454906"},{"denom":"ASSET4","index":"0.000020111524804667"},{"denom":"ASSET5","index":"0.000001623122955496"},{"denom":"ASSET6","index":"0.000006544727800067"},{"denom":"ASSET7","index":"0.000010303065547743"},{"denom":"ASSET8","index":"0.000014124873274804"},{"denom":"ASSET9","index":"0.000005987532811110"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001730803097805"},{"denom":"ASSET1","index":"0.000014429128492036"},{"denom":"ASSET10","index":"0.000010053081326419"},{"denom":"ASSET11","index":"0.000013956042311970"},{"denom":"ASSET12","index":"0.000012568515161896"},{"denom":"ASSET13","index":"0.000004324123072683"},{"denom":"ASSET14","index":"0.000013038716670133"},{"denom":"ASSET15","index":"0.000009320374681681"},{"denom":"ASSET16","index":"0.000006499165632259"},{"denom":"ASSET17","index":"0.000004615474927481"},{"denom":"ASSET18","index":"0.000002198119934213"},{"denom":"ASSET2","index":"0.000004257775620601"},{"denom":"ASSET3","index":"0.000001243293558590"},{"denom":"ASSET4","index":"0.000011726190987631"},{"denom":"ASSET5","index":"0.000000966365062941"},{"denom":"ASSET6","index":"0.000003934692375677"},{"denom":"ASSET7","index":"0.000006026079452192"},{"denom":"ASSET8","index":"0.000007863615407695"},{"denom":"ASSET9","index":"0.000003395258743528"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003241945367060"},{"denom":"ASSET1","index":"0.000027480716546724"},{"denom":"ASSET10","index":"0.000021780901079221"},{"denom":"ASSET11","index":"0.000027265989011084"},{"denom":"ASSET12","index":"0.000025921947969478"},{"denom":"ASSET13","index":"0.000008556984130745"},{"denom":"ASSET14","index":"0.000025051754134356"},{"denom":"ASSET15","index":"0.000019643848931612"},{"denom":"ASSET16","index":"0.000012200322352703"},{"denom":"ASSET17","index":"0.000009524928673174"},{"denom":"ASSET18","index":"0.000003966981346299"},{"denom":"ASSET2","index":"0.000008309018225650"},{"denom":"ASSET3","index":"0.000002312540225621"},{"denom":"ASSET4","index":"0.000022282443818183"},{"denom":"ASSET5","index":"0.000001802193647755"},{"denom":"ASSET6","index":"0.000007278646216530"},{"denom":"ASSET7","index":"0.000011418356902196"},{"denom":"ASSET8","index":"0.000015557459098515"},{"denom":"ASSET9","index":"0.000006608754258977"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001631665384825"},{"denom":"ASSET1","index":"0.000013602742609312"},{"denom":"ASSET10","index":"0.000009477179623123"},{"denom":"ASSET11","index":"0.000013159027954757"},{"denom":"ASSET12","index":"0.000011849393704263"},{"denom":"ASSET13","index":"0.000004077627053980"},{"denom":"ASSET14","index":"0.000012292493795584"},{"denom":"ASSET15","index":"0.000008788868801652"},{"denom":"ASSET16","index":"0.000006127810000788"},{"denom":"ASSET17","index":"0.000004351722256101"},{"denom":"ASSET18","index":"0.000002072921786447"},{"denom":"ASSET2","index":"0.000004015556167401"},{"denom":"ASSET3","index":"0.000001174430339134"},{"denom":"ASSET4","index":"0.000011054148880171"},{"denom":"ASSET5","index":"0.000000911397275215"},{"denom":"ASSET6","index":"0.000003710118240373"},{"denom":"ASSET7","index":"0.000005682866219766"},{"denom":"ASSET8","index":"0.000007415319974879"},{"denom":"ASSET9","index":"0.000003202489009539"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003079719434352"},{"denom":"ASSET1","index":"0.000026105925494605"},{"denom":"ASSET10","index":"0.000020711970439773"},{"denom":"ASSET11","index":"0.000025910008103106"},{"denom":"ASSET12","index":"0.000024641613628664"},{"denom":"ASSET13","index":"0.000008133110770201"},{"denom":"ASSET14","index":"0.000023800542954419"},{"denom":"ASSET15","index":"0.000018678884312278"},{"denom":"ASSET16","index":"0.000011589749383737"},{"denom":"ASSET17","index":"0.000009055208366452"},{"denom":"ASSET18","index":"0.000003767697278786"},{"denom":"ASSET2","index":"0.000007896757003962"},{"denom":"ASSET3","index":"0.000002198611212202"},{"denom":"ASSET4","index":"0.000021166859181475"},{"denom":"ASSET5","index":"0.000001712166144109"},{"denom":"ASSET6","index":"0.000006913910929446"},{"denom":"ASSET7","index":"0.000010848237821893"},{"denom":"ASSET8","index":"0.000014785764472138"},{"denom":"ASSET9","index":"0.000006281127943464"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001520990142264"},{"denom":"ASSET1","index":"0.000012680102108631"},{"denom":"ASSET10","index":"0.000008834326429376"},{"denom":"ASSET11","index":"0.000012266893306329"},{"denom":"ASSET12","index":"0.000011046354389007"},{"denom":"ASSET13","index":"0.000003801591675587"},{"denom":"ASSET14","index":"0.000011458856247250"},{"denom":"ASSET15","index":"0.000008193128168148"},{"denom":"ASSET16","index":"0.000005712107994187"},{"denom":"ASSET17","index":"0.000004056798480773"},{"denom":"ASSET18","index":"0.000001932431584420"},{"denom":"ASSET2","index":"0.000003743268790745"},{"denom":"ASSET3","index":"0.000001095056346905"},{"denom":"ASSET4","index":"0.000010304770071444"},{"denom":"ASSET5","index":"0.000000849746758541"},{"denom":"ASSET6","index":"0.000003459077279153"},{"denom":"ASSET7","index":"0.000005297485303768"},{"denom":"ASSET8","index":"0.000006912499005837"},{"denom":"ASSET9","index":"0.000002985778231863"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003063170165442"},{"denom":"ASSET1","index":"0.000025996358951928"},{"denom":"ASSET10","index":"0.000020799618544072"},{"denom":"ASSET11","index":"0.000025846936295403"},{"denom":"ASSET12","index":"0.000024670295822131"},{"denom":"ASSET13","index":"0.000008120644896033"},{"denom":"ASSET14","index":"0.000023715222729701"},{"denom":"ASSET15","index":"0.000018725986369791"},{"denom":"ASSET16","index":"0.000011529047312284"},{"denom":"ASSET17","index":"0.000009065966880203"},{"denom":"ASSET18","index":"0.000003737409049681"},{"denom":"ASSET2","index":"0.000007876841198043"},{"denom":"ASSET3","index":"0.000002185992003768"},{"denom":"ASSET4","index":"0.000021074917159843"},{"denom":"ASSET5","index":"0.000001702800306431"},{"denom":"ASSET6","index":"0.000006871093729972"},{"denom":"ASSET7","index":"0.000010798830402478"},{"denom":"ASSET8","index":"0.000014762015379742"},{"denom":"ASSET9","index":"0.000006264517424621"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001519669987195"},{"denom":"ASSET1","index":"0.000012676623405048"},{"denom":"ASSET10","index":"0.000008831600766261"},{"denom":"ASSET11","index":"0.000012262448940742"},{"denom":"ASSET12","index":"0.000011042591812037"},{"denom":"ASSET13","index":"0.000003799690110356"},{"denom":"ASSET14","index":"0.000011454705706870"},{"denom":"ASSET15","index":"0.000008189733375059"},{"denom":"ASSET16","index":"0.000005709838012905"},{"denom":"ASSET17","index":"0.000004055200725152"},{"denom":"ASSET18","index":"0.000001931783882027"},{"denom":"ASSET2","index":"0.000003741994165079"},{"denom":"ASSET3","index":"0.000001094162390780"},{"denom":"ASSET4","index":"0.000010301817086076"},{"denom":"ASSET5","index":"0.000000848954623355"},{"denom":"ASSET6","index":"0.000003457635577645"},{"denom":"ASSET7","index":"0.000005295663548598"},{"denom":"ASSET8","index":"0.000006910119731604"},{"denom":"ASSET9","index":"0.000002984734883325"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003051401969864"},{"denom":"ASSET1","index":"0.000025903543471827"},{"denom":"ASSET10","index":"0.000020717104247015"},{"denom":"ASSET11","index":"0.000025751820078700"},{"denom":"ASSET12","index":"0.000024575704795191"},{"denom":"ASSET13","index":"0.000008089460542782"},{"denom":"ASSET14","index":"0.000023629519286555"},{"denom":"ASSET15","index":"0.000018652475785738"},{"denom":"ASSET16","index":"0.000011487598582804"},{"denom":"ASSET17","index":"0.000009031027466449"},{"denom":"ASSET18","index":"0.000003724432134289"},{"denom":"ASSET2","index":"0.000007847588407204"},{"denom":"ASSET3","index":"0.000002177732310384"},{"denom":"ASSET4","index":"0.000021000151540181"},{"denom":"ASSET5","index":"0.000001696165098739"},{"denom":"ASSET6","index":"0.000006846477479182"},{"denom":"ASSET7","index":"0.000010760324594985"},{"denom":"ASSET8","index":"0.000014706911787677"},{"denom":"ASSET9","index":"0.000006241583848480"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001392192847149"},{"denom":"ASSET1","index":"0.000011611450847386"},{"denom":"ASSET10","index":"0.000008088781067478"},{"denom":"ASSET11","index":"0.000011231761889073"},{"denom":"ASSET12","index":"0.000010115195100551"},{"denom":"ASSET13","index":"0.000003480482117873"},{"denom":"ASSET14","index":"0.000010492071548062"},{"denom":"ASSET15","index":"0.000007502372565194"},{"denom":"ASSET16","index":"0.000005229863836918"},{"denom":"ASSET17","index":"0.000003713920514466"},{"denom":"ASSET18","index":"0.000001769069294661"},{"denom":"ASSET2","index":"0.000003427044412629"},{"denom":"ASSET3","index":"0.000001002660101028"},{"denom":"ASSET4","index":"0.000009435973741790"},{"denom":"ASSET5","index":"0.000000777659236842"},{"denom":"ASSET6","index":"0.000003166887163415"},{"denom":"ASSET7","index":"0.000004850174878604"},{"denom":"ASSET8","index":"0.000006329555560626"},{"denom":"ASSET9","index":"0.000002733760499857"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002834261839987"},{"denom":"ASSET1","index":"0.000024063735726127"},{"denom":"ASSET10","index":"0.000019278012414561"},{"denom":"ASSET11","index":"0.000023930766794440"},{"denom":"ASSET12","index":"0.000022855511266190"},{"denom":"ASSET13","index":"0.000007519422832827"},{"denom":"ASSET14","index":"0.000021953268691937"},{"denom":"ASSET15","index":"0.000017352048046781"},{"denom":"ASSET16","index":"0.000010669562284438"},{"denom":"ASSET17","index":"0.000008398158415340"},{"denom":"ASSET18","index":"0.000003456710779118"},{"denom":"ASSET2","index":"0.000007292324829772"},{"denom":"ASSET3","index":"0.000002022818722752"},{"denom":"ASSET4","index":"0.000019507505991506"},{"denom":"ASSET5","index":"0.000001575196067099"},{"denom":"ASSET6","index":"0.000006357416996111"},{"denom":"ASSET7","index":"0.000009994574317511"},{"denom":"ASSET8","index":"0.000013669954492341"},{"denom":"ASSET9","index":"0.000005799591528398"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001553840185331"},{"denom":"ASSET1","index":"0.000012958259817171"},{"denom":"ASSET10","index":"0.000009028099224953"},{"denom":"ASSET11","index":"0.000012533831248030"},{"denom":"ASSET12","index":"0.000011286922457332"},{"denom":"ASSET13","index":"0.000003884600463327"},{"denom":"ASSET14","index":"0.000011708953124953"},{"denom":"ASSET15","index":"0.000008371074208317"},{"denom":"ASSET16","index":"0.000005836492301072"},{"denom":"ASSET17","index":"0.000004143573827548"},{"denom":"ASSET18","index":"0.000001973472951431"},{"denom":"ASSET2","index":"0.000003824652925312"},{"denom":"ASSET3","index":"0.000001117422108587"},{"denom":"ASSET4","index":"0.000010529185576831"},{"denom":"ASSET5","index":"0.000000868040350447"},{"denom":"ASSET6","index":"0.000003534506841323"},{"denom":"ASSET7","index":"0.000005412063731931"},{"denom":"ASSET8","index":"0.000007064217879605"},{"denom":"ASSET9","index":"0.000003050130734168"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002875427361068"},{"denom":"ASSET1","index":"0.000024372739255487"},{"denom":"ASSET10","index":"0.000019284464921318"},{"denom":"ASSET11","index":"0.000024174413552556"},{"denom":"ASSET12","index":"0.000022964657814992"},{"denom":"ASSET13","index":"0.000007586106071195"},{"denom":"ASSET14","index":"0.000022214775035212"},{"denom":"ASSET15","index":"0.000017399266119679"},{"denom":"ASSET16","index":"0.000010822432031544"},{"denom":"ASSET17","index":"0.000008437405253940"},{"denom":"ASSET18","index":"0.000003520101477575"},{"denom":"ASSET2","index":"0.000007366931162610"},{"denom":"ASSET3","index":"0.000002051556015935"},{"denom":"ASSET4","index":"0.000019761188522524"},{"denom":"ASSET5","index":"0.000001598363223465"},{"denom":"ASSET6","index":"0.000006458982880806"},{"denom":"ASSET7","index":"0.000010127316932433"},{"denom":"ASSET8","index":"0.000013792105044122"},{"denom":"ASSET9","index":"0.000005859963066840"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001468329025254"},{"denom":"ASSET1","index":"0.000012248466172689"},{"denom":"ASSET10","index":"0.000008533242661533"},{"denom":"ASSET11","index":"0.000011849890220686"},{"denom":"ASSET12","index":"0.000010670683647662"},{"denom":"ASSET13","index":"0.000003671855143322"},{"denom":"ASSET14","index":"0.000011069259599665"},{"denom":"ASSET15","index":"0.000007913694549611"},{"denom":"ASSET16","index":"0.000005518108516848"},{"denom":"ASSET17","index":"0.000003917609227717"},{"denom":"ASSET18","index":"0.000001866904977257"},{"denom":"ASSET2","index":"0.000003616095813249"},{"denom":"ASSET3","index":"0.000001057362111013"},{"denom":"ASSET4","index":"0.000009954072998206"},{"denom":"ASSET5","index":"0.000000819868668110"},{"denom":"ASSET6","index":"0.000003341429483630"},{"denom":"ASSET7","index":"0.000005117467404472"},{"denom":"ASSET8","index":"0.000006676663486141"},{"denom":"ASSET9","index":"0.000002882963880808"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002995432004660"},{"denom":"ASSET1","index":"0.000025434255671185"},{"denom":"ASSET10","index":"0.000020381248485322"},{"denom":"ASSET11","index":"0.000025297016742096"},{"denom":"ASSET12","index":"0.000024161457271020"},{"denom":"ASSET13","index":"0.000007948725545453"},{"denom":"ASSET14","index":"0.000023205881885085"},{"denom":"ASSET15","index":"0.000018343715148864"},{"denom":"ASSET16","index":"0.000011277889207663"},{"denom":"ASSET17","index":"0.000008877556775335"},{"denom":"ASSET18","index":"0.000003654253802028"},{"denom":"ASSET2","index":"0.000007709102798424"},{"denom":"ASSET3","index":"0.000002137627884226"},{"denom":"ASSET4","index":"0.000020618696770430"},{"denom":"ASSET5","index":"0.000001664440090804"},{"denom":"ASSET6","index":"0.000006720260763181"},{"denom":"ASSET7","index":"0.000010565171316359"},{"denom":"ASSET8","index":"0.000014449121165534"},{"denom":"ASSET9","index":"0.000006129217088192"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001484659776814"},{"denom":"ASSET1","index":"0.000012377911876883"},{"denom":"ASSET10","index":"0.000008623797972416"},{"denom":"ASSET11","index":"0.000011974339842928"},{"denom":"ASSET12","index":"0.000010782780641408"},{"denom":"ASSET13","index":"0.000003710691597017"},{"denom":"ASSET14","index":"0.000011185714112019"},{"denom":"ASSET15","index":"0.000007997367331102"},{"denom":"ASSET16","index":"0.000005575935127370"},{"denom":"ASSET17","index":"0.000003959731301514"},{"denom":"ASSET18","index":"0.000001886316120734"},{"denom":"ASSET2","index":"0.000003653859459324"},{"denom":"ASSET3","index":"0.000001068955039306"},{"denom":"ASSET4","index":"0.000010059288371675"},{"denom":"ASSET5","index":"0.000000829493784981"},{"denom":"ASSET6","index":"0.000003376084404307"},{"denom":"ASSET7","index":"0.000005171085966725"},{"denom":"ASSET8","index":"0.000006747698865199"},{"denom":"ASSET9","index":"0.000002914403105969"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002967027008461"},{"denom":"ASSET1","index":"0.000025180120058697"},{"denom":"ASSET10","index":"0.000020126919929476"},{"denom":"ASSET11","index":"0.000025029678796477"},{"denom":"ASSET12","index":"0.000023880507059092"},{"denom":"ASSET13","index":"0.000007862872062626"},{"denom":"ASSET14","index":"0.000022968832134984"},{"denom":"ASSET15","index":"0.000018123195207046"},{"denom":"ASSET16","index":"0.000011168095360491"},{"denom":"ASSET17","index":"0.000008775186029853"},{"denom":"ASSET18","index":"0.000003621217117579"},{"denom":"ASSET2","index":"0.000007627534970337"},{"denom":"ASSET3","index":"0.000002117298518473"},{"denom":"ASSET4","index":"0.000020413769751333"},{"denom":"ASSET5","index":"0.000001649183760435"},{"denom":"ASSET6","index":"0.000006656038319196"},{"denom":"ASSET7","index":"0.000010459966878994"},{"denom":"ASSET8","index":"0.000014293861494285"},{"denom":"ASSET9","index":"0.000006066597621916"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001508631993599"},{"denom":"ASSET1","index":"0.000012578103553994"},{"denom":"ASSET10","index":"0.000008763023138279"},{"denom":"ASSET11","index":"0.000012169014387632"},{"denom":"ASSET12","index":"0.000010956555546150"},{"denom":"ASSET13","index":"0.000003770654442897"},{"denom":"ASSET14","index":"0.000011367495794714"},{"denom":"ASSET15","index":"0.000008126250861227"},{"denom":"ASSET16","index":"0.000005666162616450"},{"denom":"ASSET17","index":"0.000004024252704398"},{"denom":"ASSET18","index":"0.000001915870077761"},{"denom":"ASSET2","index":"0.000003713270894674"},{"denom":"ASSET3","index":"0.000001084734169631"},{"denom":"ASSET4","index":"0.000010221675912459"},{"denom":"ASSET5","index":"0.000000842242401334"},{"denom":"ASSET6","index":"0.000003430055317962"},{"denom":"ASSET7","index":"0.000005255222367887"},{"denom":"ASSET8","index":"0.000006856408471522"},{"denom":"ASSET9","index":"0.000002961731521176"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002968383248598"},{"denom":"ASSET1","index":"0.000025185581850199"},{"denom":"ASSET10","index":"0.000020091193699906"},{"denom":"ASSET11","index":"0.000025026167595767"},{"denom":"ASSET12","index":"0.000023854952987524"},{"denom":"ASSET13","index":"0.000007859725566891"},{"denom":"ASSET14","index":"0.000022971118914045"},{"denom":"ASSET15","index":"0.000018098517255117"},{"denom":"ASSET16","index":"0.000011173004258039"},{"denom":"ASSET17","index":"0.000008766603022733"},{"denom":"ASSET18","index":"0.000003624559740525"},{"denom":"ASSET2","index":"0.000007626317523237"},{"denom":"ASSET3","index":"0.000002117313008939"},{"denom":"ASSET4","index":"0.000020418576076670"},{"denom":"ASSET5","index":"0.000001649450966157"},{"denom":"ASSET6","index":"0.000006660362585584"},{"denom":"ASSET7","index":"0.000010463779822658"},{"denom":"ASSET8","index":"0.000014287735496216"},{"denom":"ASSET9","index":"0.000006065360072421"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001603618851190"},{"denom":"ASSET1","index":"0.000013373450792115"},{"denom":"ASSET10","index":"0.000009317368604669"},{"denom":"ASSET11","index":"0.000012937408123124"},{"denom":"ASSET12","index":"0.000011650307554501"},{"denom":"ASSET13","index":"0.000004008493774333"},{"denom":"ASSET14","index":"0.000012085243516211"},{"denom":"ASSET15","index":"0.000008640063748266"},{"denom":"ASSET16","index":"0.000006023807734317"},{"denom":"ASSET17","index":"0.000004278530351069"},{"denom":"ASSET18","index":"0.000002037448105618"},{"denom":"ASSET2","index":"0.000003947624873839"},{"denom":"ASSET3","index":"0.000001154295694818"},{"denom":"ASSET4","index":"0.000010867865506336"},{"denom":"ASSET5","index":"0.000000896432898181"},{"denom":"ASSET6","index":"0.000003647707200497"},{"denom":"ASSET7","index":"0.000005586658358043"},{"denom":"ASSET8","index":"0.000007289880864586"},{"denom":"ASSET9","index":"0.000003148582216449"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003259379166935"},{"denom":"ASSET1","index":"0.000027669546155668"},{"denom":"ASSET10","index":"0.000022163157427920"},{"denom":"ASSET11","index":"0.000027516665793422"},{"denom":"ASSET12","index":"0.000026276569409586"},{"denom":"ASSET13","index":"0.000008645229164029"},{"denom":"ASSET14","index":"0.000025243382728696"},{"denom":"ASSET15","index":"0.000019947981783747"},{"denom":"ASSET16","index":"0.000012268920188963"},{"denom":"ASSET17","index":"0.000009656339783182"},{"denom":"ASSET18","index":"0.000003975233530089"},{"denom":"ASSET2","index":"0.000008385350610200"},{"denom":"ASSET3","index":"0.000002325230588439"},{"denom":"ASSET4","index":"0.000022430515898086"},{"denom":"ASSET5","index":"0.000001812256369527"},{"denom":"ASSET6","index":"0.000007311001085881"},{"denom":"ASSET7","index":"0.000011492885803011"},{"denom":"ASSET8","index":"0.000015716897251793"},{"denom":"ASSET9","index":"0.000006668589151432"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001669758803356"},{"denom":"ASSET1","index":"0.000013919924903508"},{"denom":"ASSET10","index":"0.000009698114015232"},{"denom":"ASSET11","index":"0.000013466332119255"},{"denom":"ASSET12","index":"0.000012126099781115"},{"denom":"ASSET13","index":"0.000004173211661392"},{"denom":"ASSET14","index":"0.000012579297449702"},{"denom":"ASSET15","index":"0.000008994017898909"},{"denom":"ASSET16","index":"0.000006270880730729"},{"denom":"ASSET17","index":"0.000004453348668392"},{"denom":"ASSET18","index":"0.000002121376009280"},{"denom":"ASSET2","index":"0.000004109202923545"},{"denom":"ASSET3","index":"0.000001201941855137"},{"denom":"ASSET4","index":"0.000011312556625386"},{"denom":"ASSET5","index":"0.000000932868086778"},{"denom":"ASSET6","index":"0.000003797061547622"},{"denom":"ASSET7","index":"0.000005815312368147"},{"denom":"ASSET8","index":"0.000007588591475923"},{"denom":"ASSET9","index":"0.000003277484447193"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003314119794923"},{"denom":"ASSET1","index":"0.000028119315186385"},{"denom":"ASSET10","index":"0.000022456877991933"},{"denom":"ASSET11","index":"0.000027947185249485"},{"denom":"ASSET12","index":"0.000026653541530161"},{"denom":"ASSET13","index":"0.000008778725953540"},{"denom":"ASSET14","index":"0.000025648491290636"},{"denom":"ASSET15","index":"0.000020225495910600"},{"denom":"ASSET16","index":"0.000012473684612014"},{"denom":"ASSET17","index":"0.000009794866581105"},{"denom":"ASSET18","index":"0.000004045992889163"},{"denom":"ASSET2","index":"0.000008517017325485"},{"denom":"ASSET3","index":"0.000002365208974685"},{"denom":"ASSET4","index":"0.000022797013251164"},{"denom":"ASSET5","index":"0.000001842432416817"},{"denom":"ASSET6","index":"0.000007435560259585"},{"denom":"ASSET7","index":"0.000011681616070006"},{"denom":"ASSET8","index":"0.000015958852395270"},{"denom":"ASSET9","index":"0.000006773561992828"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001334597814253"},{"denom":"ASSET1","index":"0.000011126876577448"},{"denom":"ASSET10","index":"0.000007751884027943"},{"denom":"ASSET11","index":"0.000010763759508328"},{"denom":"ASSET12","index":"0.000009692944381721"},{"denom":"ASSET13","index":"0.000003335543967388"},{"denom":"ASSET14","index":"0.000010055110882597"},{"denom":"ASSET15","index":"0.000007189147627631"},{"denom":"ASSET16","index":"0.000005012346349398"},{"denom":"ASSET17","index":"0.000003559878072918"},{"denom":"ASSET18","index":"0.000001695813746885"},{"denom":"ASSET2","index":"0.000003284213282225"},{"denom":"ASSET3","index":"0.000000960549210329"},{"denom":"ASSET4","index":"0.000009042280418860"},{"denom":"ASSET5","index":"0.000000745720787237"},{"denom":"ASSET6","index":"0.000003035164402357"},{"denom":"ASSET7","index":"0.000004648278712034"},{"denom":"ASSET8","index":"0.000006065575963495"},{"denom":"ASSET9","index":"0.000002619766079830"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002933404194828"},{"denom":"ASSET1","index":"0.000024932632498194"},{"denom":"ASSET10","index":"0.000020157113753706"},{"denom":"ASSET11","index":"0.000024842878528839"},{"denom":"ASSET12","index":"0.000023817726072485"},{"denom":"ASSET13","index":"0.000007813243799971"},{"denom":"ASSET14","index":"0.000022761898108549"},{"denom":"ASSET15","index":"0.000018109267957138"},{"denom":"ASSET16","index":"0.000011043189892304"},{"denom":"ASSET17","index":"0.000008753164046701"},{"denom":"ASSET18","index":"0.000003567063844603"},{"denom":"ASSET2","index":"0.000007569762146700"},{"denom":"ASSET3","index":"0.000002091389836038"},{"denom":"ASSET4","index":"0.000020208488830330"},{"denom":"ASSET5","index":"0.000001630166870108"},{"denom":"ASSET6","index":"0.000006572642272968"},{"denom":"ASSET7","index":"0.000010351822041320"},{"denom":"ASSET8","index":"0.000014203644477234"},{"denom":"ASSET9","index":"0.000006019030096188"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001655550281073"},{"denom":"ASSET1","index":"0.000013803766186213"},{"denom":"ASSET10","index":"0.000009616885369480"},{"denom":"ASSET11","index":"0.000013353770421464"},{"denom":"ASSET12","index":"0.000012024654915933"},{"denom":"ASSET13","index":"0.000004138458266908"},{"denom":"ASSET14","index":"0.000012474650680682"},{"denom":"ASSET15","index":"0.000008918932754767"},{"denom":"ASSET16","index":"0.000006218123294721"},{"denom":"ASSET17","index":"0.000004415635621077"},{"denom":"ASSET18","index":"0.000002103876302725"},{"denom":"ASSET2","index":"0.000004075008029207"},{"denom":"ASSET3","index":"0.000001191361699996"},{"denom":"ASSET4","index":"0.000011218168999888"},{"denom":"ASSET5","index":"0.000000925037675960"},{"denom":"ASSET6","index":"0.000003765270684639"},{"denom":"ASSET7","index":"0.000005766457786874"},{"denom":"ASSET8","index":"0.000007524697268437"},{"denom":"ASSET9","index":"0.000003250154939091"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003215122291080"},{"denom":"ASSET1","index":"0.000027271082473775"},{"denom":"ASSET10","index":"0.000021717714787675"},{"denom":"ASSET11","index":"0.000027088129911249"},{"denom":"ASSET12","index":"0.000025803190697535"},{"denom":"ASSET13","index":"0.000008506451165719"},{"denom":"ASSET14","index":"0.000024869823256717"},{"denom":"ASSET15","index":"0.000019571375436743"},{"denom":"ASSET16","index":"0.000012101015548893"},{"denom":"ASSET17","index":"0.000009481514658039"},{"denom":"ASSET18","index":"0.000003929002426467"},{"denom":"ASSET2","index":"0.000008255375778501"},{"denom":"ASSET3","index":"0.000002294279906946"},{"denom":"ASSET4","index":"0.000022110354928469"},{"denom":"ASSET5","index":"0.000001787716273475"},{"denom":"ASSET6","index":"0.000007215985074700"},{"denom":"ASSET7","index":"0.000011330188741735"},{"denom":"ASSET8","index":"0.000015463524362026"},{"denom":"ASSET9","index":"0.000006565858639552"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001631513498845"},{"denom":"ASSET1","index":"0.000013601788709515"},{"denom":"ASSET10","index":"0.000009476711328689"},{"denom":"ASSET11","index":"0.000013158178840821"},{"denom":"ASSET12","index":"0.000011848922966954"},{"denom":"ASSET13","index":"0.000004077884841603"},{"denom":"ASSET14","index":"0.000012291633930140"},{"denom":"ASSET15","index":"0.000008788599161546"},{"denom":"ASSET16","index":"0.000006127389402135"},{"denom":"ASSET17","index":"0.000004351601569095"},{"denom":"ASSET18","index":"0.000002072876103766"},{"denom":"ASSET2","index":"0.000004014961455973"},{"denom":"ASSET3","index":"0.000001174420047516"},{"denom":"ASSET4","index":"0.000011053841044239"},{"denom":"ASSET5","index":"0.000000911490186131"},{"denom":"ASSET6","index":"0.000003710232488420"},{"denom":"ASSET7","index":"0.000005682431175178"},{"denom":"ASSET8","index":"0.000007415071543785"},{"denom":"ASSET9","index":"0.000003202800328586"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003159157648171"},{"denom":"ASSET1","index":"0.000026793811254639"},{"denom":"ASSET10","index":"0.000021330257270132"},{"denom":"ASSET11","index":"0.000026611245447042"},{"denom":"ASSET12","index":"0.000025345616114893"},{"denom":"ASSET13","index":"0.000008356504281369"},{"denom":"ASSET14","index":"0.000024433401122602"},{"denom":"ASSET15","index":"0.000019223209713353"},{"denom":"ASSET16","index":"0.000011890026449509"},{"denom":"ASSET17","index":"0.000009313941892173"},{"denom":"ASSET18","index":"0.000003860849124980"},{"denom":"ASSET2","index":"0.000008109777269158"},{"denom":"ASSET3","index":"0.000002255070941538"},{"denom":"ASSET4","index":"0.000021723391251034"},{"denom":"ASSET5","index":"0.000001756486235957"},{"denom":"ASSET6","index":"0.000007090574282328"},{"denom":"ASSET7","index":"0.000011132530538444"},{"denom":"ASSET8","index":"0.000015191323807650"},{"denom":"ASSET9","index":"0.000006450832118924"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001649724724935"},{"denom":"ASSET1","index":"0.000013753740147655"},{"denom":"ASSET10","index":"0.000009582563441278"},{"denom":"ASSET11","index":"0.000013305204895691"},{"denom":"ASSET12","index":"0.000011981321923304"},{"denom":"ASSET13","index":"0.000004123306127916"},{"denom":"ASSET14","index":"0.000012429052627730"},{"denom":"ASSET15","index":"0.000008886629821639"},{"denom":"ASSET16","index":"0.000006195820583626"},{"denom":"ASSET17","index":"0.000004400070480698"},{"denom":"ASSET18","index":"0.000002096248608056"},{"denom":"ASSET2","index":"0.000004060149146250"},{"denom":"ASSET3","index":"0.000001187512164840"},{"denom":"ASSET4","index":"0.000011177176659918"},{"denom":"ASSET5","index":"0.000000921609203810"},{"denom":"ASSET6","index":"0.000003751605165751"},{"denom":"ASSET7","index":"0.000005746078510357"},{"denom":"ASSET8","index":"0.000007497578498742"},{"denom":"ASSET9","index":"0.000003238303837047"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003253063831874"},{"denom":"ASSET1","index":"0.000027597326034286"},{"denom":"ASSET10","index":"0.000022021617243178"},{"denom":"ASSET11","index":"0.000027423138617092"},{"denom":"ASSET12","index":"0.000026144931484859"},{"denom":"ASSET13","index":"0.000008613299773809"},{"denom":"ASSET14","index":"0.000025170855267573"},{"denom":"ASSET15","index":"0.000019836826910831"},{"denom":"ASSET16","index":"0.000012243184702458"},{"denom":"ASSET17","index":"0.000009607701845932"},{"denom":"ASSET18","index":"0.000003972764374377"},{"denom":"ASSET2","index":"0.000008357484440725"},{"denom":"ASSET3","index":"0.000002321502734814"},{"denom":"ASSET4","index":"0.000022373906168402"},{"denom":"ASSET5","index":"0.000001808481766797"},{"denom":"ASSET6","index":"0.000007298802623853"},{"denom":"ASSET7","index":"0.000011465220726545"},{"denom":"ASSET8","index":"0.000015658035812384"},{"denom":"ASSET9","index":"0.000006646717011605"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001698975992122"},{"denom":"ASSET1","index":"0.000014167905922226"},{"denom":"ASSET10","index":"0.000009870625403756"},{"denom":"ASSET11","index":"0.000013705415046027"},{"denom":"ASSET12","index":"0.000012342129737421"},{"denom":"ASSET13","index":"0.000004247439980305"},{"denom":"ASSET14","index":"0.000012803154715439"},{"denom":"ASSET15","index":"0.000009153801193103"},{"denom":"ASSET16","index":"0.000006381787732272"},{"denom":"ASSET17","index":"0.000004532557176567"},{"denom":"ASSET18","index":"0.000002159268021049"},{"denom":"ASSET2","index":"0.000004182207511237"},{"denom":"ASSET3","index":"0.000001223292032291"},{"denom":"ASSET4","index":"0.000011513897264989"},{"denom":"ASSET5","index":"0.000000949169072389"},{"denom":"ASSET6","index":"0.000003864840554987"},{"denom":"ASSET7","index":"0.000005918563906982"},{"denom":"ASSET8","index":"0.000007723084568158"},{"denom":"ASSET9","index":"0.000003335651311539"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003402845442317"},{"denom":"ASSET1","index":"0.000028880571174740"},{"denom":"ASSET10","index":"0.000023090578471272"},{"denom":"ASSET11","index":"0.000028709364204549"},{"denom":"ASSET12","index":"0.000027394626213612"},{"denom":"ASSET13","index":"0.000009019217107214"},{"denom":"ASSET14","index":"0.000026344557012563"},{"denom":"ASSET15","index":"0.000020791017438004"},{"denom":"ASSET16","index":"0.000012808886991708"},{"denom":"ASSET17","index":"0.000010066951390727"},{"denom":"ASSET18","index":"0.000004153478710890"},{"denom":"ASSET2","index":"0.000008748954704305"},{"denom":"ASSET3","index":"0.000002428490976730"},{"denom":"ASSET4","index":"0.000023413646091842"},{"denom":"ASSET5","index":"0.000001891364101695"},{"denom":"ASSET6","index":"0.000007634563338572"},{"denom":"ASSET7","index":"0.000011996876612297"},{"denom":"ASSET8","index":"0.000016395615103037"},{"denom":"ASSET9","index":"0.000006958318142576"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001515088644413"},{"denom":"ASSET1","index":"0.000012634136557163"},{"denom":"ASSET10","index":"0.000008802109028204"},{"denom":"ASSET11","index":"0.000012222352143486"},{"denom":"ASSET12","index":"0.000011006111259210"},{"denom":"ASSET13","index":"0.000003787721611031"},{"denom":"ASSET14","index":"0.000011417895672887"},{"denom":"ASSET15","index":"0.000008163582563959"},{"denom":"ASSET16","index":"0.000005691138594924"},{"denom":"ASSET17","index":"0.000004042263453241"},{"denom":"ASSET18","index":"0.000001925135571111"},{"denom":"ASSET2","index":"0.000003729515797284"},{"denom":"ASSET3","index":"0.000001091141821893"},{"denom":"ASSET4","index":"0.000010267679293757"},{"denom":"ASSET5","index":"0.000000846156158061"},{"denom":"ASSET6","index":"0.000003446305419945"},{"denom":"ASSET7","index":"0.000005278485437758"},{"denom":"ASSET8","index":"0.000006887398378958"},{"denom":"ASSET9","index":"0.000002974577705544"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003029367235848"},{"denom":"ASSET1","index":"0.000025709657584098"},{"denom":"ASSET10","index":"0.000020551027857005"},{"denom":"ASSET11","index":"0.000025556791271547"},{"denom":"ASSET12","index":"0.000024383546484064"},{"denom":"ASSET13","index":"0.000008028643187417"},{"denom":"ASSET14","index":"0.000023452409013233"},{"denom":"ASSET15","index":"0.000018505869963369"},{"denom":"ASSET16","index":"0.000011403028825829"},{"denom":"ASSET17","index":"0.000008960765854271"},{"denom":"ASSET18","index":"0.000003697390743305"},{"denom":"ASSET2","index":"0.000007788410102575"},{"denom":"ASSET3","index":"0.000002162278160249"},{"denom":"ASSET4","index":"0.000020843149904241"},{"denom":"ASSET5","index":"0.000001683795445220"},{"denom":"ASSET6","index":"0.000006796548728457"},{"denom":"ASSET7","index":"0.000010680301627557"},{"denom":"ASSET8","index":"0.000014594997949332"},{"denom":"ASSET9","index":"0.000006193949682941"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001650481631660"},{"denom":"ASSET1","index":"0.000013760556046882"},{"denom":"ASSET10","index":"0.000009587067899364"},{"denom":"ASSET11","index":"0.000013312100857594"},{"denom":"ASSET12","index":"0.000011987552175177"},{"denom":"ASSET13","index":"0.000004125311926918"},{"denom":"ASSET14","index":"0.000012435412596309"},{"denom":"ASSET15","index":"0.000008891189157367"},{"denom":"ASSET16","index":"0.000006198673717177"},{"denom":"ASSET17","index":"0.000004402473887406"},{"denom":"ASSET18","index":"0.000002097152516481"},{"denom":"ASSET2","index":"0.000004062266502429"},{"denom":"ASSET3","index":"0.000001188346774796"},{"denom":"ASSET4","index":"0.000011182830860714"},{"denom":"ASSET5","index":"0.000000921890641108"},{"denom":"ASSET6","index":"0.000003753581829697"},{"denom":"ASSET7","index":"0.000005749028991578"},{"denom":"ASSET8","index":"0.000007501810745994"},{"denom":"ASSET9","index":"0.000003239702143299"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003205609047354"},{"denom":"ASSET1","index":"0.000027188537481167"},{"denom":"ASSET10","index":"0.000021652723818266"},{"denom":"ASSET11","index":"0.000027005979418132"},{"denom":"ASSET12","index":"0.000025725923481940"},{"denom":"ASSET13","index":"0.000008480657418555"},{"denom":"ASSET14","index":"0.000024794508770079"},{"denom":"ASSET15","index":"0.000019512596409105"},{"denom":"ASSET16","index":"0.000012064653878282"},{"denom":"ASSET17","index":"0.000009453813052143"},{"denom":"ASSET18","index":"0.000003917117707327"},{"denom":"ASSET2","index":"0.000008230459966291"},{"denom":"ASSET3","index":"0.000002288306334262"},{"denom":"ASSET4","index":"0.000022043298344156"},{"denom":"ASSET5","index":"0.000001782083734802"},{"denom":"ASSET6","index":"0.000007194354204475"},{"denom":"ASSET7","index":"0.000011296497588433"},{"denom":"ASSET8","index":"0.000015417282169744"},{"denom":"ASSET9","index":"0.000006545936928299"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001428935211366"},{"denom":"ASSET1","index":"0.000011914564237659"},{"denom":"ASSET10","index":"0.000008301159777028"},{"denom":"ASSET11","index":"0.000011525978642480"},{"denom":"ASSET12","index":"0.000010379209562159"},{"denom":"ASSET13","index":"0.000003571896453874"},{"denom":"ASSET14","index":"0.000010767353582799"},{"denom":"ASSET15","index":"0.000007698410529959"},{"denom":"ASSET16","index":"0.000005367338533420"},{"denom":"ASSET17","index":"0.000003811671429081"},{"denom":"ASSET18","index":"0.000001815754508385"},{"denom":"ASSET2","index":"0.000003517141210917"},{"denom":"ASSET3","index":"0.000001028868678146"},{"denom":"ASSET4","index":"0.000009682846512616"},{"denom":"ASSET5","index":"0.000000798366768278"},{"denom":"ASSET6","index":"0.000003249988614231"},{"denom":"ASSET7","index":"0.000004977428214621"},{"denom":"ASSET8","index":"0.000006495119908522"},{"denom":"ASSET9","index":"0.000002805323052474"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003075918064869"},{"denom":"ASSET1","index":"0.000026136551234120"},{"denom":"ASSET10","index":"0.000021080163895542"},{"denom":"ASSET11","index":"0.000026029570124972"},{"denom":"ASSET12","index":"0.000024929671095533"},{"denom":"ASSET13","index":"0.000008184754658215"},{"denom":"ASSET14","index":"0.000023857159923959"},{"denom":"ASSET15","index":"0.000018947606922173"},{"denom":"ASSET16","index":"0.000011579925359638"},{"denom":"ASSET17","index":"0.000009161388302193"},{"denom":"ASSET18","index":"0.000003743573486430"},{"denom":"ASSET2","index":"0.000007931762150876"},{"denom":"ASSET3","index":"0.000002193704696765"},{"denom":"ASSET4","index":"0.000021185602196482"},{"denom":"ASSET5","index":"0.000001709259314500"},{"denom":"ASSET6","index":"0.000006893942979866"},{"denom":"ASSET7","index":"0.000010853088527538"},{"denom":"ASSET8","index":"0.000014878712124324"},{"denom":"ASSET9","index":"0.000006307130542486"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001556917620519"},{"denom":"ASSET1","index":"0.000012983455297040"},{"denom":"ASSET10","index":"0.000009045452282177"},{"denom":"ASSET11","index":"0.000012560119972943"},{"denom":"ASSET12","index":"0.000011310507230547"},{"denom":"ASSET13","index":"0.000003892294051298"},{"denom":"ASSET14","index":"0.000011733139339821"},{"denom":"ASSET15","index":"0.000008388649636483"},{"denom":"ASSET16","index":"0.000005848637691896"},{"denom":"ASSET17","index":"0.000004153889965857"},{"denom":"ASSET18","index":"0.000001978846514969"},{"denom":"ASSET2","index":"0.000003832520791251"},{"denom":"ASSET3","index":"0.000001120924429588"},{"denom":"ASSET4","index":"0.000010551035220538"},{"denom":"ASSET5","index":"0.000000869876737390"},{"denom":"ASSET6","index":"0.000003541389854081"},{"denom":"ASSET7","index":"0.000005423895938150"},{"denom":"ASSET8","index":"0.000007077857204393"},{"denom":"ASSET9","index":"0.000003056874840288"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003155948059833"},{"denom":"ASSET1","index":"0.000026789841893667"},{"denom":"ASSET10","index":"0.000021451154188244"},{"denom":"ASSET11","index":"0.000026640130662201"},{"denom":"ASSET12","index":"0.000025435769508540"},{"denom":"ASSET13","index":"0.000008370086775831"},{"denom":"ASSET14","index":"0.000024440800445484"},{"denom":"ASSET15","index":"0.000019309084443140"},{"denom":"ASSET16","index":"0.000011879786354964"},{"denom":"ASSET17","index":"0.000009347672781307"},{"denom":"ASSET18","index":"0.000003850232310781"},{"denom":"ASSET2","index":"0.000008118311447694"},{"denom":"ASSET3","index":"0.000002251791235916"},{"denom":"ASSET4","index":"0.000021717604836949"},{"denom":"ASSET5","index":"0.000001754185821919"},{"denom":"ASSET6","index":"0.000007079049104243"},{"denom":"ASSET7","index":"0.000011127710678967"},{"denom":"ASSET8","index":"0.000015216376583965"},{"denom":"ASSET9","index":"0.000006456241851980"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001629017625409"},{"denom":"ASSET1","index":"0.000013583500814952"},{"denom":"ASSET10","index":"0.000009463617777698"},{"denom":"ASSET11","index":"0.000013140742178302"},{"denom":"ASSET12","index":"0.000011833351109704"},{"denom":"ASSET13","index":"0.000004072544063523"},{"denom":"ASSET14","index":"0.000012276109746354"},{"denom":"ASSET15","index":"0.000008777202658616"},{"denom":"ASSET16","index":"0.000006119258515961"},{"denom":"ASSET17","index":"0.000004345439323848"},{"denom":"ASSET18","index":"0.000002070383939302"},{"denom":"ASSET2","index":"0.000004009889539469"},{"denom":"ASSET3","index":"0.000001172335761192"},{"denom":"ASSET4","index":"0.000011039727138351"},{"denom":"ASSET5","index":"0.000000910579082921"},{"denom":"ASSET6","index":"0.000003704970855739"},{"denom":"ASSET7","index":"0.000005675107556554"},{"denom":"ASSET8","index":"0.000007404372420450"},{"denom":"ASSET9","index":"0.000003198165372278"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003300821213878"},{"denom":"ASSET1","index":"0.000028019420341436"},{"denom":"ASSET10","index":"0.000022435320069293"},{"denom":"ASSET11","index":"0.000027862926397945"},{"denom":"ASSET12","index":"0.000026603097941410"},{"denom":"ASSET13","index":"0.000008754572034100"},{"denom":"ASSET14","index":"0.000025562969906661"},{"denom":"ASSET15","index":"0.000020195785636702"},{"denom":"ASSET16","index":"0.000012425527462944"},{"denom":"ASSET17","index":"0.000009776022796414"},{"denom":"ASSET18","index":"0.000004027118689751"},{"denom":"ASSET2","index":"0.000008490998812362"},{"denom":"ASSET3","index":"0.000002354733406852"},{"denom":"ASSET4","index":"0.000022715681634045"},{"denom":"ASSET5","index":"0.000001835160700580"},{"denom":"ASSET6","index":"0.000007403741836767"},{"denom":"ASSET7","index":"0.000011639103500846"},{"denom":"ASSET8","index":"0.000015914079386056"},{"denom":"ASSET9","index":"0.000006752470475547"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001599876133405"},{"denom":"ASSET1","index":"0.000013345434681176"},{"denom":"ASSET10","index":"0.000009297530322905"},{"denom":"ASSET11","index":"0.000012909953167223"},{"denom":"ASSET12","index":"0.000011625282701060"},{"denom":"ASSET13","index":"0.000004000208763886"},{"denom":"ASSET14","index":"0.000012059727354266"},{"denom":"ASSET15","index":"0.000008622533976277"},{"denom":"ASSET16","index":"0.000006011718614052"},{"denom":"ASSET17","index":"0.000004268755697491"},{"denom":"ASSET18","index":"0.000002033283925863"},{"denom":"ASSET2","index":"0.000003939033979783"},{"denom":"ASSET3","index":"0.000001151952290481"},{"denom":"ASSET4","index":"0.000010845563418934"},{"denom":"ASSET5","index":"0.000000893773964352"},{"denom":"ASSET6","index":"0.000003640418084501"},{"denom":"ASSET7","index":"0.000005575200239351"},{"denom":"ASSET8","index":"0.000007274615004517"},{"denom":"ASSET9","index":"0.000003141688064949"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003205518103121"},{"denom":"ASSET1","index":"0.000027209804037075"},{"denom":"ASSET10","index":"0.000021755111918776"},{"denom":"ASSET11","index":"0.000027048910570117"},{"denom":"ASSET12","index":"0.000025809934262776"},{"denom":"ASSET13","index":"0.000008496852467218"},{"denom":"ASSET14","index":"0.000024820667393427"},{"denom":"ASSET15","index":"0.000019589132093549"},{"denom":"ASSET16","index":"0.000012068310128279"},{"denom":"ASSET17","index":"0.000009484236214143"},{"denom":"ASSET18","index":"0.000003912244660385"},{"denom":"ASSET2","index":"0.000008242746790311"},{"denom":"ASSET3","index":"0.000002287536756020"},{"denom":"ASSET4","index":"0.000022059248469095"},{"denom":"ASSET5","index":"0.000001781848402938"},{"denom":"ASSET6","index":"0.000007192715838846"},{"denom":"ASSET7","index":"0.000011303047666497"},{"denom":"ASSET8","index":"0.000015447099928639"},{"denom":"ASSET9","index":"0.000006555210966575"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001693699328345"},{"denom":"ASSET1","index":"0.000014121235265065"},{"denom":"ASSET10","index":"0.000009838380374958"},{"denom":"ASSET11","index":"0.000013660499756586"},{"denom":"ASSET12","index":"0.000012301569616423"},{"denom":"ASSET13","index":"0.000004233563721295"},{"denom":"ASSET14","index":"0.000012760935925768"},{"denom":"ASSET15","index":"0.000009123658427184"},{"denom":"ASSET16","index":"0.000006361299175013"},{"denom":"ASSET17","index":"0.000004517672541531"},{"denom":"ASSET18","index":"0.000002151696438556"},{"denom":"ASSET2","index":"0.000004168526762446"},{"denom":"ASSET3","index":"0.000001219271828530"},{"denom":"ASSET4","index":"0.000011475942538822"},{"denom":"ASSET5","index":"0.000000946116601363"},{"denom":"ASSET6","index":"0.000003852241762569"},{"denom":"ASSET7","index":"0.000005899194467400"},{"denom":"ASSET8","index":"0.000007698322129037"},{"denom":"ASSET9","index":"0.000003325100096108"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003374964488748"},{"denom":"ASSET1","index":"0.000028642371697541"},{"denom":"ASSET10","index":"0.000022886358038922"},{"denom":"ASSET11","index":"0.000028469467846578"},{"denom":"ASSET12","index":"0.000027158021136678"},{"denom":"ASSET13","index":"0.000008943216545101"},{"denom":"ASSET14","index":"0.000026126056006670"},{"denom":"ASSET15","index":"0.000020609372613995"},{"denom":"ASSET16","index":"0.000012704733728960"},{"denom":"ASSET17","index":"0.000009980025667275"},{"denom":"ASSET18","index":"0.000004119620826099"},{"denom":"ASSET2","index":"0.000008675935346246"},{"denom":"ASSET3","index":"0.000002408702445844"},{"denom":"ASSET4","index":"0.000023220763838917"},{"denom":"ASSET5","index":"0.000001876440105393"},{"denom":"ASSET6","index":"0.000007572949563502"},{"denom":"ASSET7","index":"0.000011897934490553"},{"denom":"ASSET8","index":"0.000016258236310419"},{"denom":"ASSET9","index":"0.000006900426530312"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001608105877482"},{"denom":"ASSET1","index":"0.000013418457239972"},{"denom":"ASSET10","index":"0.000009349233819318"},{"denom":"ASSET11","index":"0.000012981594753349"},{"denom":"ASSET12","index":"0.000011689837573077"},{"denom":"ASSET13","index":"0.000004022147721664"},{"denom":"ASSET14","index":"0.000012126700059700"},{"denom":"ASSET15","index":"0.000008669460725910"},{"denom":"ASSET16","index":"0.000006044519750254"},{"denom":"ASSET17","index":"0.000004293303747844"},{"denom":"ASSET18","index":"0.000002044968364105"},{"denom":"ASSET2","index":"0.000003960007798998"},{"denom":"ASSET3","index":"0.000001158062195142"},{"denom":"ASSET4","index":"0.000010904614913932"},{"denom":"ASSET5","index":"0.000000898204336720"},{"denom":"ASSET6","index":"0.000003660606353425"},{"denom":"ASSET7","index":"0.000005605774235672"},{"denom":"ASSET8","index":"0.000007313680595011"},{"denom":"ASSET9","index":"0.000003159720916176"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003138779820137"},{"denom":"ASSET1","index":"0.000026638851971456"},{"denom":"ASSET10","index":"0.000021228354320839"},{"denom":"ASSET11","index":"0.000026463611656062"},{"denom":"ASSET12","index":"0.000025215335343685"},{"denom":"ASSET13","index":"0.000008309803474369"},{"denom":"ASSET14","index":"0.000024294710395367"},{"denom":"ASSET15","index":"0.000019126240972581"},{"denom":"ASSET16","index":"0.000011819368577720"},{"denom":"ASSET17","index":"0.000009266335892783"},{"denom":"ASSET18","index":"0.000003836527514127"},{"denom":"ASSET2","index":"0.000008063422586049"},{"denom":"ASSET3","index":"0.000002240662109326"},{"denom":"ASSET4","index":"0.000021597223596640"},{"denom":"ASSET5","index":"0.000001744975814867"},{"denom":"ASSET6","index":"0.000007047692266012"},{"denom":"ASSET7","index":"0.000011067413421526"},{"denom":"ASSET8","index":"0.000015106336478322"},{"denom":"ASSET9","index":"0.000006414890297355"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001636130781121"},{"denom":"ASSET1","index":"0.000013651986161797"},{"denom":"ASSET10","index":"0.000009511743354655"},{"denom":"ASSET11","index":"0.000013205516575762"},{"denom":"ASSET12","index":"0.000011891065744828"},{"denom":"ASSET13","index":"0.000004093100055822"},{"denom":"ASSET14","index":"0.000012337535330862"},{"denom":"ASSET15","index":"0.000008821240702961"},{"denom":"ASSET16","index":"0.000006147969392790"},{"denom":"ASSET17","index":"0.000004367637254688"},{"denom":"ASSET18","index":"0.000002079827264137"},{"denom":"ASSET2","index":"0.000004029318686389"},{"denom":"ASSET3","index":"0.000001178568783011"},{"denom":"ASSET4","index":"0.000011095185178418"},{"denom":"ASSET5","index":"0.000000915123996220"},{"denom":"ASSET6","index":"0.000003724277354315"},{"denom":"ASSET7","index":"0.000005701499806755"},{"denom":"ASSET8","index":"0.000007440235399574"},{"denom":"ASSET9","index":"0.000003214026398847"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003135138573804"},{"denom":"ASSET1","index":"0.000026601246250396"},{"denom":"ASSET10","index":"0.000021147351718785"},{"denom":"ASSET11","index":"0.000026411423528042"},{"denom":"ASSET12","index":"0.000025139747174388"},{"denom":"ASSET13","index":"0.000008292603180789"},{"denom":"ASSET14","index":"0.000024256405788980"},{"denom":"ASSET15","index":"0.000019064302195638"},{"denom":"ASSET16","index":"0.000011804656377100"},{"denom":"ASSET17","index":"0.000009238224400983"},{"denom":"ASSET18","index":"0.000003834531376561"},{"denom":"ASSET2","index":"0.000008049169006780"},{"denom":"ASSET3","index":"0.000002239375819558"},{"denom":"ASSET4","index":"0.000021568278304468"},{"denom":"ASSET5","index":"0.000001743998311515"},{"denom":"ASSET6","index":"0.000007041675703373"},{"denom":"ASSET7","index":"0.000011051161098588"},{"denom":"ASSET8","index":"0.000015073103234225"},{"denom":"ASSET9","index":"0.000006402150772125"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001682560247115"},{"denom":"ASSET1","index":"0.000014026482890055"},{"denom":"ASSET10","index":"0.000009772411969975"},{"denom":"ASSET11","index":"0.000013568579422963"},{"denom":"ASSET12","index":"0.000012218368466479"},{"denom":"ASSET13","index":"0.000004205057792371"},{"denom":"ASSET14","index":"0.000012675600520863"},{"denom":"ASSET15","index":"0.000009062728737253"},{"denom":"ASSET16","index":"0.000006318664998244"},{"denom":"ASSET17","index":"0.000004487051129876"},{"denom":"ASSET18","index":"0.000002137778063373"},{"denom":"ASSET2","index":"0.000004140602172369"},{"denom":"ASSET3","index":"0.000001211228525856"},{"denom":"ASSET4","index":"0.000011398573549589"},{"denom":"ASSET5","index":"0.000000939977791684"},{"denom":"ASSET6","index":"0.000003825709612155"},{"denom":"ASSET7","index":"0.000005859418705735"},{"denom":"ASSET8","index":"0.000007646047922643"},{"denom":"ASSET9","index":"0.000003302679112354"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003237426875283"},{"denom":"ASSET1","index":"0.000027451710154634"},{"denom":"ASSET10","index":"0.000021835512998164"},{"denom":"ASSET11","index":"0.000027259736654219"},{"denom":"ASSET12","index":"0.000025953768913429"},{"denom":"ASSET13","index":"0.000008559484494503"},{"denom":"ASSET14","index":"0.000025032165857410"},{"denom":"ASSET15","index":"0.000019681806512765"},{"denom":"ASSET16","index":"0.000012183244440341"},{"denom":"ASSET17","index":"0.000009537367134186"},{"denom":"ASSET18","index":"0.000003957397976948"},{"denom":"ASSET2","index":"0.000008307936552813"},{"denom":"ASSET3","index":"0.000002310954839376"},{"denom":"ASSET4","index":"0.000022256988295109"},{"denom":"ASSET5","index":"0.000001799896462688"},{"denom":"ASSET6","index":"0.000007265619632425"},{"denom":"ASSET7","index":"0.000011405823532836"},{"denom":"ASSET8","index":"0.000015559935461923"},{"denom":"ASSET9","index":"0.000006608212131764"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001576738934866"},{"denom":"ASSET1","index":"0.000013143695761043"},{"denom":"ASSET10","index":"0.000009157699733702"},{"denom":"ASSET11","index":"0.000012715663698192"},{"denom":"ASSET12","index":"0.000011450067913139"},{"denom":"ASSET13","index":"0.000003940585946017"},{"denom":"ASSET14","index":"0.000011878099975991"},{"denom":"ASSET15","index":"0.000008492526135047"},{"denom":"ASSET16","index":"0.000005920970048209"},{"denom":"ASSET17","index":"0.000004204637159643"},{"denom":"ASSET18","index":"0.000002003089142854"},{"denom":"ASSET2","index":"0.000003880039170918"},{"denom":"ASSET3","index":"0.000001134411105672"},{"denom":"ASSET4","index":"0.000010681460240357"},{"denom":"ASSET5","index":"0.000000880451021229"},{"denom":"ASSET6","index":"0.000003584873642311"},{"denom":"ASSET7","index":"0.000005491256130493"},{"denom":"ASSET8","index":"0.000007165542647463"},{"denom":"ASSET9","index":"0.000003094612949497"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003150995592381"},{"denom":"ASSET1","index":"0.000026735906318713"},{"denom":"ASSET10","index":"0.000021370928366269"},{"denom":"ASSET11","index":"0.000026577057751538"},{"denom":"ASSET12","index":"0.000025356196217934"},{"denom":"ASSET13","index":"0.000008349049177946"},{"denom":"ASSET14","index":"0.000024388519635576"},{"denom":"ASSET15","index":"0.000019243917228958"},{"denom":"ASSET16","index":"0.000011858566692713"},{"denom":"ASSET17","index":"0.000009317567603522"},{"denom":"ASSET18","index":"0.000003845362315572"},{"denom":"ASSET2","index":"0.000008099062572798"},{"denom":"ASSET3","index":"0.000002247710476517"},{"denom":"ASSET4","index":"0.000021674805285583"},{"denom":"ASSET5","index":"0.000001751018453776"},{"denom":"ASSET6","index":"0.000007067532365991"},{"denom":"ASSET7","index":"0.000011106766164564"},{"denom":"ASSET8","index":"0.000015177641578730"},{"denom":"ASSET9","index":"0.000006441123951375"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001735896630597"},{"denom":"ASSET1","index":"0.000014474259966527"},{"denom":"ASSET10","index":"0.000010084408758147"},{"denom":"ASSET11","index":"0.000014002239606889"},{"denom":"ASSET12","index":"0.000012609068112910"},{"denom":"ASSET13","index":"0.000004339122939062"},{"denom":"ASSET14","index":"0.000013079851197687"},{"denom":"ASSET15","index":"0.000009351942040176"},{"denom":"ASSET16","index":"0.000006520438519776"},{"denom":"ASSET17","index":"0.000004630501168930"},{"denom":"ASSET18","index":"0.000002205442440512"},{"denom":"ASSET2","index":"0.000004272310096544"},{"denom":"ASSET3","index":"0.000001249647610052"},{"denom":"ASSET4","index":"0.000011762772107687"},{"denom":"ASSET5","index":"0.000000970023491367"},{"denom":"ASSET6","index":"0.000003948144082847"},{"denom":"ASSET7","index":"0.000006046562247845"},{"denom":"ASSET8","index":"0.000007890101791387"},{"denom":"ASSET9","index":"0.000003408073605830"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003300304206809"},{"denom":"ASSET1","index":"0.000027981868665615"},{"denom":"ASSET10","index":"0.000022221493016134"},{"denom":"ASSET11","index":"0.000027777532118325"},{"denom":"ASSET12","index":"0.000026428557640091"},{"denom":"ASSET13","index":"0.000008720047886627"},{"denom":"ASSET14","index":"0.000025512138164618"},{"denom":"ASSET15","index":"0.000020036362120252"},{"denom":"ASSET16","index":"0.000012421157074829"},{"denom":"ASSET17","index":"0.000009711490167791"},{"denom":"ASSET18","index":"0.000004036282970136"},{"denom":"ASSET2","index":"0.000008465189250700"},{"denom":"ASSET3","index":"0.000002356240815614"},{"denom":"ASSET4","index":"0.000022687774056492"},{"denom":"ASSET5","index":"0.000001835200922241"},{"denom":"ASSET6","index":"0.000007409270759323"},{"denom":"ASSET7","index":"0.000011627060915230"},{"denom":"ASSET8","index":"0.000015852235873304"},{"denom":"ASSET9","index":"0.000006733690564218"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001726734301691"},{"denom":"ASSET1","index":"0.000014395988805148"},{"denom":"ASSET10","index":"0.000010029746380297"},{"denom":"ASSET11","index":"0.000013926529312304"},{"denom":"ASSET12","index":"0.000012540835608608"},{"denom":"ASSET13","index":"0.000004315874534955"},{"denom":"ASSET14","index":"0.000013009526126035"},{"denom":"ASSET15","index":"0.000009301526659210"},{"denom":"ASSET16","index":"0.000006485154189852"},{"denom":"ASSET17","index":"0.000004605778267637"},{"denom":"ASSET18","index":"0.000002193886868281"},{"denom":"ASSET2","index":"0.000004249742648985"},{"denom":"ASSET3","index":"0.000001243048763609"},{"denom":"ASSET4","index":"0.000011699192013329"},{"denom":"ASSET5","index":"0.000000964679662201"},{"denom":"ASSET6","index":"0.000003926772973318"},{"denom":"ASSET7","index":"0.000006014156746171"},{"denom":"ASSET8","index":"0.000007847778630999"},{"denom":"ASSET9","index":"0.000003389643643667"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003383074331503"},{"denom":"ASSET1","index":"0.000028697774885580"},{"denom":"ASSET10","index":"0.000022880621123289"},{"denom":"ASSET11","index":"0.000028511966470743"},{"denom":"ASSET12","index":"0.000027173358086556"},{"denom":"ASSET13","index":"0.000008954537947194"},{"denom":"ASSET14","index":"0.000026172910691250"},{"denom":"ASSET15","index":"0.000020614154391480"},{"denom":"ASSET16","index":"0.000012732692592075"},{"denom":"ASSET17","index":"0.000009985655741818"},{"denom":"ASSET18","index":"0.000004132359094826"},{"denom":"ASSET2","index":"0.000008689052893949"},{"denom":"ASSET3","index":"0.000002414485946546"},{"denom":"ASSET4","index":"0.000023266612079392"},{"denom":"ASSET5","index":"0.000001880944791026"},{"denom":"ASSET6","index":"0.000007591453768301"},{"denom":"ASSET7","index":"0.000011922604903868"},{"denom":"ASSET8","index":"0.000016278329144958"},{"denom":"ASSET9","index":"0.000006911169878531"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001436232590899"},{"denom":"ASSET1","index":"0.000011976183987962"},{"denom":"ASSET10","index":"0.000008344549248442"},{"denom":"ASSET11","index":"0.000011585862202045"},{"denom":"ASSET12","index":"0.000010432581326504"},{"denom":"ASSET13","index":"0.000003589949888597"},{"denom":"ASSET14","index":"0.000010822903112421"},{"denom":"ASSET15","index":"0.000007738224144105"},{"denom":"ASSET16","index":"0.000005395030251301"},{"denom":"ASSET17","index":"0.000003831216753031"},{"denom":"ASSET18","index":"0.000001825291199515"},{"denom":"ASSET2","index":"0.000003535633264667"},{"denom":"ASSET3","index":"0.000001033279031975"},{"denom":"ASSET4","index":"0.000009732781101914"},{"denom":"ASSET5","index":"0.000000802117585946"},{"denom":"ASSET6","index":"0.000003266576499617"},{"denom":"ASSET7","index":"0.000005003445288083"},{"denom":"ASSET8","index":"0.000006528100290032"},{"denom":"ASSET9","index":"0.000002819411735168"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003006064648013"},{"denom":"ASSET1","index":"0.000025531157590212"},{"denom":"ASSET10","index":"0.000020524407173472"},{"denom":"ASSET11","index":"0.000025409258384489"},{"denom":"ASSET12","index":"0.000024300714605646"},{"denom":"ASSET13","index":"0.000007986286383048"},{"denom":"ASSET14","index":"0.000023298685931189"},{"denom":"ASSET15","index":"0.000018459726056254"},{"denom":"ASSET16","index":"0.000011316095008653"},{"denom":"ASSET17","index":"0.000008930145684163"},{"denom":"ASSET18","index":"0.000003662445744281"},{"denom":"ASSET2","index":"0.000007743120539446"},{"denom":"ASSET3","index":"0.000002143639104141"},{"denom":"ASSET4","index":"0.000020695936675740"},{"denom":"ASSET5","index":"0.000001670457298921"},{"denom":"ASSET6","index":"0.000006739935351518"},{"denom":"ASSET7","index":"0.000010603283023237"},{"denom":"ASSET8","index":"0.000014518439118465"},{"denom":"ASSET9","index":"0.000006156725809403"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001476546163568"},{"denom":"ASSET1","index":"0.000012315891963405"},{"denom":"ASSET10","index":"0.000008580298213179"},{"denom":"ASSET11","index":"0.000011914434711559"},{"denom":"ASSET12","index":"0.000010728207916557"},{"denom":"ASSET13","index":"0.000003691365408921"},{"denom":"ASSET14","index":"0.000011129665168403"},{"denom":"ASSET15","index":"0.000007957699254808"},{"denom":"ASSET16","index":"0.000005547821683700"},{"denom":"ASSET17","index":"0.000003939724556249"},{"denom":"ASSET18","index":"0.000001876869355381"},{"denom":"ASSET2","index":"0.000003635796467281"},{"denom":"ASSET3","index":"0.000001062614251355"},{"denom":"ASSET4","index":"0.000010009213855342"},{"denom":"ASSET5","index":"0.000000825595704361"},{"denom":"ASSET6","index":"0.000003359085819117"},{"denom":"ASSET7","index":"0.000005145230371820"},{"denom":"ASSET8","index":"0.000006713635398099"},{"denom":"ASSET9","index":"0.000002899791505564"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002611689387046"},{"denom":"ASSET1","index":"0.000022118950462866"},{"denom":"ASSET10","index":"0.000017388824351878"},{"denom":"ASSET11","index":"0.000021911701626113"},{"denom":"ASSET12","index":"0.000020757567192719"},{"denom":"ASSET13","index":"0.000006870825151743"},{"denom":"ASSET14","index":"0.000020152250667519"},{"denom":"ASSET15","index":"0.000015711809347683"},{"denom":"ASSET16","index":"0.000009830001439303"},{"denom":"ASSET17","index":"0.000007627368499381"},{"denom":"ASSET18","index":"0.000003205559295774"},{"denom":"ASSET2","index":"0.000006678615536452"},{"denom":"ASSET3","index":"0.000001865584989735"},{"denom":"ASSET4","index":"0.000017938012267073"},{"denom":"ASSET5","index":"0.000001453547274796"},{"denom":"ASSET6","index":"0.000005870892100855"},{"denom":"ASSET7","index":"0.000009195154067126"},{"denom":"ASSET8","index":"0.000012492245582088"},{"denom":"ASSET9","index":"0.000005313335607946"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000000860911540335"},{"denom":"ASSET1","index":"0.000007178593209511"},{"denom":"ASSET10","index":"0.000005001581264509"},{"denom":"ASSET11","index":"0.000006944753046495"},{"denom":"ASSET12","index":"0.000006253725385275"},{"denom":"ASSET13","index":"0.000002152029021603"},{"denom":"ASSET14","index":"0.000006487065889823"},{"denom":"ASSET15","index":"0.000004638329558286"},{"denom":"ASSET16","index":"0.000003233789604786"},{"denom":"ASSET17","index":"0.000002296430318850"},{"denom":"ASSET18","index":"0.000001093752386415"},{"denom":"ASSET2","index":"0.000002119051562716"},{"denom":"ASSET3","index":"0.000000619576500299"},{"denom":"ASSET4","index":"0.000005834012272169"},{"denom":"ASSET5","index":"0.000000481171104668"},{"denom":"ASSET6","index":"0.000001958161536025"},{"denom":"ASSET7","index":"0.000002998950124834"},{"denom":"ASSET8","index":"0.000003913325121242"},{"denom":"ASSET9","index":"0.000001690344597186"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002357406510396"},{"denom":"ASSET1","index":"0.000020099972826550"},{"denom":"ASSET10","index":"0.000016611857270119"},{"denom":"ASSET11","index":"0.000020122040980663"},{"denom":"ASSET12","index":"0.000019473664705632"},{"denom":"ASSET13","index":"0.000006342954228467"},{"denom":"ASSET14","index":"0.000018379978414574"},{"denom":"ASSET15","index":"0.000014858739059306"},{"denom":"ASSET16","index":"0.000008878274052948"},{"denom":"ASSET17","index":"0.000007156982288871"},{"denom":"ASSET18","index":"0.000002845018303307"},{"denom":"ASSET2","index":"0.000006129987919866"},{"denom":"ASSET3","index":"0.000001678183905493"},{"denom":"ASSET4","index":"0.000016284739258605"},{"denom":"ASSET5","index":"0.000001308892339296"},{"denom":"ASSET6","index":"0.000005269046474537"},{"denom":"ASSET7","index":"0.000008337197620164"},{"denom":"ASSET8","index":"0.000011530009666752"},{"denom":"ASSET9","index":"0.000004871853664260"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001198976216272"},{"denom":"ASSET1","index":"0.000010001315625623"},{"denom":"ASSET10","index":"0.000006967712250892"},{"denom":"ASSET11","index":"0.000009674322112094"},{"denom":"ASSET12","index":"0.000008711677656379"},{"denom":"ASSET13","index":"0.000002997949876371"},{"denom":"ASSET14","index":"0.000009037652498526"},{"denom":"ASSET15","index":"0.000006461432574183"},{"denom":"ASSET16","index":"0.000004504564849919"},{"denom":"ASSET17","index":"0.000003199646809949"},{"denom":"ASSET18","index":"0.000001523932387037"},{"denom":"ASSET2","index":"0.000002952109664194"},{"denom":"ASSET3","index":"0.000000862814660308"},{"denom":"ASSET4","index":"0.000008126960283277"},{"denom":"ASSET5","index":"0.000000670285769165"},{"denom":"ASSET6","index":"0.000002728001960218"},{"denom":"ASSET7","index":"0.000004177571336390"},{"denom":"ASSET8","index":"0.000005451929234909"},{"denom":"ASSET9","index":"0.000002354149563130"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002792091306062"},{"denom":"ASSET1","index":"0.000023760392481519"},{"denom":"ASSET10","index":"0.000019330735214415"},{"denom":"ASSET11","index":"0.000023705763948043"},{"denom":"ASSET12","index":"0.000022788595153270"},{"denom":"ASSET13","index":"0.000007460432475948"},{"denom":"ASSET14","index":"0.000021701401606991"},{"denom":"ASSET15","index":"0.000017344296121870"},{"denom":"ASSET16","index":"0.000010515175863945"},{"denom":"ASSET17","index":"0.000008375559402161"},{"denom":"ASSET18","index":"0.000003388923471278"},{"denom":"ASSET2","index":"0.000007222909907971"},{"denom":"ASSET3","index":"0.000001989926471838"},{"denom":"ASSET4","index":"0.000019255294602933"},{"denom":"ASSET5","index":"0.000001551437823125"},{"denom":"ASSET6","index":"0.000006253588147261"},{"denom":"ASSET7","index":"0.000009862028954195"},{"denom":"ASSET8","index":"0.000013562244421912"},{"denom":"ASSET9","index":"0.000005741841810541"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001507638919625"},{"denom":"ASSET1","index":"0.000012569401049902"},{"denom":"ASSET10","index":"0.000008757228353136"},{"denom":"ASSET11","index":"0.000012160184771718"},{"denom":"ASSET12","index":"0.000010949766096248"},{"denom":"ASSET13","index":"0.000003769097299062"},{"denom":"ASSET14","index":"0.000011358982374432"},{"denom":"ASSET15","index":"0.000008124020006893"},{"denom":"ASSET16","index":"0.000005660107258249"},{"denom":"ASSET17","index":"0.000004018934605743"},{"denom":"ASSET18","index":"0.000001912547658039"},{"denom":"ASSET2","index":"0.000003708791742277"},{"denom":"ASSET3","index":"0.000001085500022130"},{"denom":"ASSET4","index":"0.000010217484335287"},{"denom":"ASSET5","index":"0.000000839970255220"},{"denom":"ASSET6","index":"0.000003428801657204"},{"denom":"ASSET7","index":"0.000005250890980065"},{"denom":"ASSET8","index":"0.000006853295774638"},{"denom":"ASSET9","index":"0.000002959279822235"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003131246414749"},{"denom":"ASSET1","index":"0.000026589761836242"},{"denom":"ASSET10","index":"0.000021355242603721"},{"denom":"ASSET11","index":"0.000026458316408852"},{"denom":"ASSET12","index":"0.000025293988029420"},{"denom":"ASSET13","index":"0.000008316673174883"},{"denom":"ASSET14","index":"0.000024263343459355"},{"denom":"ASSET15","index":"0.000019213959771091"},{"denom":"ASSET16","index":"0.000011784585795875"},{"denom":"ASSET17","index":"0.000009292893547134"},{"denom":"ASSET18","index":"0.000003813004198036"},{"denom":"ASSET2","index":"0.000008060944762894"},{"denom":"ASSET3","index":"0.000002234070199415"},{"denom":"ASSET4","index":"0.000021557233504015"},{"denom":"ASSET5","index":"0.000001738116490695"},{"denom":"ASSET6","index":"0.000007021386599103"},{"denom":"ASSET7","index":"0.000011043212117572"},{"denom":"ASSET8","index":"0.000015117900391662"},{"denom":"ASSET9","index":"0.000006411442995536"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001538667310820"},{"denom":"ASSET1","index":"0.000012827917927858"},{"denom":"ASSET10","index":"0.000008937244372687"},{"denom":"ASSET11","index":"0.000012409488429871"},{"denom":"ASSET12","index":"0.000011174685151587"},{"denom":"ASSET13","index":"0.000003845530209513"},{"denom":"ASSET14","index":"0.000011592355937882"},{"denom":"ASSET15","index":"0.000008288166520415"},{"denom":"ASSET16","index":"0.000005778727600031"},{"denom":"ASSET17","index":"0.000004103871540546"},{"denom":"ASSET18","index":"0.000001954820673732"},{"denom":"ASSET2","index":"0.000003786730053405"},{"denom":"ASSET3","index":"0.000001107719069920"},{"denom":"ASSET4","index":"0.000010424698644316"},{"denom":"ASSET5","index":"0.000000859620346726"},{"denom":"ASSET6","index":"0.000003499178322240"},{"denom":"ASSET7","index":"0.000005359160034507"},{"denom":"ASSET8","index":"0.000006993045662639"},{"denom":"ASSET9","index":"0.000003020431244761"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003070496060295"},{"denom":"ASSET1","index":"0.000026054009108675"},{"denom":"ASSET10","index":"0.000020821706468932"},{"denom":"ASSET11","index":"0.000025897661631707"},{"denom":"ASSET12","index":"0.000024706407518076"},{"denom":"ASSET13","index":"0.000008135385272267"},{"denom":"ASSET14","index":"0.000023765921524780"},{"denom":"ASSET15","index":"0.000018749935123185"},{"denom":"ASSET16","index":"0.000011556337558875"},{"denom":"ASSET17","index":"0.000009079232430047"},{"denom":"ASSET18","index":"0.000003747682066764"},{"denom":"ASSET2","index":"0.000007892419371659"},{"denom":"ASSET3","index":"0.000002191201298955"},{"denom":"ASSET4","index":"0.000021122052487200"},{"denom":"ASSET5","index":"0.000001706992646915"},{"denom":"ASSET6","index":"0.000006888142834266"},{"denom":"ASSET7","index":"0.000010823268476718"},{"denom":"ASSET8","index":"0.000014789657857476"},{"denom":"ASSET9","index":"0.000006276911852268"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001679222100186"},{"denom":"ASSET1","index":"0.000013999028794594"},{"denom":"ASSET10","index":"0.000009753438641601"},{"denom":"ASSET11","index":"0.000013542280383343"},{"denom":"ASSET12","index":"0.000012194769233410"},{"denom":"ASSET13","index":"0.000004196505199295"},{"denom":"ASSET14","index":"0.000012650484277214"},{"denom":"ASSET15","index":"0.000009045065257184"},{"denom":"ASSET16","index":"0.000006306124840851"},{"denom":"ASSET17","index":"0.000004478614512126"},{"denom":"ASSET18","index":"0.000002133387092820"},{"denom":"ASSET2","index":"0.000004132436417626"},{"denom":"ASSET3","index":"0.000001208523228411"},{"denom":"ASSET4","index":"0.000011376342215965"},{"denom":"ASSET5","index":"0.000000938297641211"},{"denom":"ASSET6","index":"0.000003818809397684"},{"denom":"ASSET7","index":"0.000005848343062154"},{"denom":"ASSET8","index":"0.000007631418590690"},{"denom":"ASSET9","index":"0.000003295925469872"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003295755498274"},{"denom":"ASSET1","index":"0.000027960125957180"},{"denom":"ASSET10","index":"0.000022298091456525"},{"denom":"ASSET11","index":"0.000027779779629540"},{"denom":"ASSET12","index":"0.000026478335493542"},{"denom":"ASSET13","index":"0.000008724566942758"},{"denom":"ASSET14","index":"0.000025500389224880"},{"denom":"ASSET15","index":"0.000020088119547171"},{"denom":"ASSET16","index":"0.000012404652968467"},{"denom":"ASSET17","index":"0.000009730254100732"},{"denom":"ASSET18","index":"0.000004025857251145"},{"denom":"ASSET2","index":"0.000008465992991141"},{"denom":"ASSET3","index":"0.000002352288079447"},{"denom":"ASSET4","index":"0.000022667879187178"},{"denom":"ASSET5","index":"0.000001832649164275"},{"denom":"ASSET6","index":"0.000007396215489940"},{"denom":"ASSET7","index":"0.000011616026271508"},{"denom":"ASSET8","index":"0.000015861127767022"},{"denom":"ASSET9","index":"0.000006733269226830"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001488486853561"},{"denom":"ASSET1","index":"0.000012409943784184"},{"denom":"ASSET10","index":"0.000008645838046025"},{"denom":"ASSET11","index":"0.000012005445379346"},{"denom":"ASSET12","index":"0.000010810451131374"},{"denom":"ASSET13","index":"0.000003720376180879"},{"denom":"ASSET14","index":"0.000011214949536212"},{"denom":"ASSET15","index":"0.000008018487089665"},{"denom":"ASSET16","index":"0.000005590655707614"},{"denom":"ASSET17","index":"0.000003970139229188"},{"denom":"ASSET18","index":"0.000001891303352350"},{"denom":"ASSET2","index":"0.000003663191375205"},{"denom":"ASSET3","index":"0.000001071374153354"},{"denom":"ASSET4","index":"0.000010085549624159"},{"denom":"ASSET5","index":"0.000000831702541340"},{"denom":"ASSET6","index":"0.000003384835924059"},{"denom":"ASSET7","index":"0.000005184475396726"},{"denom":"ASSET8","index":"0.000006765467082995"},{"denom":"ASSET9","index":"0.000002921470807498"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003140601357292"},{"denom":"ASSET1","index":"0.000026678854887219"},{"denom":"ASSET10","index":"0.000021467437308134"},{"denom":"ASSET11","index":"0.000026557150856893"},{"denom":"ASSET12","index":"0.000025409189778577"},{"denom":"ASSET13","index":"0.000008348678217638"},{"denom":"ASSET14","index":"0.000024348515645151"},{"denom":"ASSET15","index":"0.000019305257093893"},{"denom":"ASSET16","index":"0.000011824039078448"},{"denom":"ASSET17","index":"0.000009337874135725"},{"denom":"ASSET18","index":"0.000003825021517438"},{"denom":"ASSET2","index":"0.000008092644314938"},{"denom":"ASSET3","index":"0.000002240059115813"},{"denom":"ASSET4","index":"0.000021626536887159"},{"denom":"ASSET5","index":"0.000001745574888449"},{"denom":"ASSET6","index":"0.000007040920669072"},{"denom":"ASSET7","index":"0.000011079696231301"},{"denom":"ASSET8","index":"0.000015176664815864"},{"denom":"ASSET9","index":"0.000006434669973810"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001385039568420"},{"denom":"ASSET1","index":"0.000011547928050470"},{"denom":"ASSET10","index":"0.000008045290512347"},{"denom":"ASSET11","index":"0.000011171268467624"},{"denom":"ASSET12","index":"0.000010059084660007"},{"denom":"ASSET13","index":"0.000003461116009305"},{"denom":"ASSET14","index":"0.000010435744242853"},{"denom":"ASSET15","index":"0.000007461023285412"},{"denom":"ASSET16","index":"0.000005202054396163"},{"denom":"ASSET17","index":"0.000003694427456948"},{"denom":"ASSET18","index":"0.000001759721935608"},{"denom":"ASSET2","index":"0.000003408719794369"},{"denom":"ASSET3","index":"0.000000996516691625"},{"denom":"ASSET4","index":"0.000009383865512804"},{"denom":"ASSET5","index":"0.000000774079930102"},{"denom":"ASSET6","index":"0.000003149704543173"},{"denom":"ASSET7","index":"0.000004824406205487"},{"denom":"ASSET8","index":"0.000006294466047200"},{"denom":"ASSET9","index":"0.000002718671529731"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002978674281858"},{"denom":"ASSET1","index":"0.000025310372422717"},{"denom":"ASSET10","index":"0.000020411345436720"},{"denom":"ASSET11","index":"0.000025206262983954"},{"denom":"ASSET12","index":"0.000024139567910062"},{"denom":"ASSET13","index":"0.000007924745788344"},{"denom":"ASSET14","index":"0.000023102636423037"},{"denom":"ASSET15","index":"0.000018346974201526"},{"denom":"ASSET16","index":"0.000011213830154915"},{"denom":"ASSET17","index":"0.000008871351161454"},{"denom":"ASSET18","index":"0.000003625142276595"},{"denom":"ASSET2","index":"0.000007680838181843"},{"denom":"ASSET3","index":"0.000002123796319816"},{"denom":"ASSET4","index":"0.000020514843977806"},{"denom":"ASSET5","index":"0.000001655567492872"},{"denom":"ASSET6","index":"0.000006676037052519"},{"denom":"ASSET7","index":"0.000010510115662832"},{"denom":"ASSET8","index":"0.000014407133239162"},{"denom":"ASSET9","index":"0.000006107008804836"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001563741356289"},{"denom":"ASSET1","index":"0.000013036816883138"},{"denom":"ASSET10","index":"0.000009082880828100"},{"denom":"ASSET11","index":"0.000012611783735587"},{"denom":"ASSET12","index":"0.000011356772924286"},{"denom":"ASSET13","index":"0.000003908472310400"},{"denom":"ASSET14","index":"0.000011781101207579"},{"denom":"ASSET15","index":"0.000008423480314776"},{"denom":"ASSET16","index":"0.000005872928997340"},{"denom":"ASSET17","index":"0.000004170681814362"},{"denom":"ASSET18","index":"0.000001986659911066"},{"denom":"ASSET2","index":"0.000003848558848473"},{"denom":"ASSET3","index":"0.000001125668219966"},{"denom":"ASSET4","index":"0.000010594814661429"},{"denom":"ASSET5","index":"0.000000873679247744"},{"denom":"ASSET6","index":"0.000003556392613548"},{"denom":"ASSET7","index":"0.000005446486121273"},{"denom":"ASSET8","index":"0.000007106793880903"},{"denom":"ASSET9","index":"0.000003069683843425"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003115193601728"},{"denom":"ASSET1","index":"0.000026433576226141"},{"denom":"ASSET10","index":"0.000021120836274624"},{"denom":"ASSET11","index":"0.000026274076149270"},{"denom":"ASSET12","index":"0.000025063206789151"},{"denom":"ASSET13","index":"0.000008253838888439"},{"denom":"ASSET14","index":"0.000024111622086359"},{"denom":"ASSET15","index":"0.000019020166052921"},{"denom":"ASSET16","index":"0.000011725264187843"},{"denom":"ASSET17","index":"0.000009210335248597"},{"denom":"ASSET18","index":"0.000003802618681808"},{"denom":"ASSET2","index":"0.000008007094168018"},{"denom":"ASSET3","index":"0.000002223045227271"},{"denom":"ASSET4","index":"0.000021430343290469"},{"denom":"ASSET5","index":"0.000001731871182363"},{"denom":"ASSET6","index":"0.000006989160352022"},{"denom":"ASSET7","index":"0.000010981276608696"},{"denom":"ASSET8","index":"0.000015004007461071"},{"denom":"ASSET9","index":"0.000006368316319391"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001688791638136"},{"denom":"ASSET1","index":"0.000014080258863939"},{"denom":"ASSET10","index":"0.000009809129194434"},{"denom":"ASSET11","index":"0.000013620783833550"},{"denom":"ASSET12","index":"0.000012265553395360"},{"denom":"ASSET13","index":"0.000004220322334414"},{"denom":"ASSET14","index":"0.000012723923918464"},{"denom":"ASSET15","index":"0.000009096721995874"},{"denom":"ASSET16","index":"0.000006342080828109"},{"denom":"ASSET17","index":"0.000004504180706554"},{"denom":"ASSET18","index":"0.000002144953146672"},{"denom":"ASSET2","index":"0.000004156260911908"},{"denom":"ASSET3","index":"0.000001214958013048"},{"denom":"ASSET4","index":"0.000011442695468341"},{"denom":"ASSET5","index":"0.000000943249221039"},{"denom":"ASSET6","index":"0.000003840371828516"},{"denom":"ASSET7","index":"0.000005881501290436"},{"denom":"ASSET8","index":"0.000007675221120608"},{"denom":"ASSET9","index":"0.000003314626361051"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003342989987813"},{"denom":"ASSET1","index":"0.000028363859076608"},{"denom":"ASSET10","index":"0.000022643596968544"},{"denom":"ASSET11","index":"0.000028187678804911"},{"denom":"ASSET12","index":"0.000026879157824253"},{"denom":"ASSET13","index":"0.000008853292918908"},{"denom":"ASSET14","index":"0.000025870927331183"},{"denom":"ASSET15","index":"0.000020395094195043"},{"denom":"ASSET16","index":"0.000012581780801373"},{"denom":"ASSET17","index":"0.000009877287329505"},{"denom":"ASSET18","index":"0.000004080927248291"},{"denom":"ASSET2","index":"0.000008590241612281"},{"denom":"ASSET3","index":"0.000002384972961476"},{"denom":"ASSET4","index":"0.000022995501297970"},{"denom":"ASSET5","index":"0.000001858071035633"},{"denom":"ASSET6","index":"0.000007500418590266"},{"denom":"ASSET7","index":"0.000011782462758670"},{"denom":"ASSET8","index":"0.000016095075530395"},{"denom":"ASSET9","index":"0.000006831506736707"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001571496317510"},{"denom":"ASSET1","index":"0.000013101483241955"},{"denom":"ASSET10","index":"0.000009127906315185"},{"denom":"ASSET11","index":"0.000012674221268720"},{"denom":"ASSET12","index":"0.000011413128948859"},{"denom":"ASSET13","index":"0.000003927726401627"},{"denom":"ASSET14","index":"0.000011839579408375"},{"denom":"ASSET15","index":"0.000008464899606481"},{"denom":"ASSET16","index":"0.000005901733523932"},{"denom":"ASSET17","index":"0.000004191468360414"},{"denom":"ASSET18","index":"0.000001996729506447"},{"denom":"ASSET2","index":"0.000003867268629536"},{"denom":"ASSET3","index":"0.000001131250124766"},{"denom":"ASSET4","index":"0.000010647059997798"},{"denom":"ASSET5","index":"0.000000878057844331"},{"denom":"ASSET6","index":"0.000003573906419993"},{"denom":"ASSET7","index":"0.000005473254280118"},{"denom":"ASSET8","index":"0.000007142132243950"},{"denom":"ASSET9","index":"0.000003084563647228"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003113134051861"},{"denom":"ASSET1","index":"0.000026415094552464"},{"denom":"ASSET10","index":"0.000021090707465492"},{"denom":"ASSET11","index":"0.000026251548228726"},{"denom":"ASSET12","index":"0.000025034408517114"},{"denom":"ASSET13","index":"0.000008245703890405"},{"denom":"ASSET14","index":"0.000024093200316600"},{"denom":"ASSET15","index":"0.000018995578271326"},{"denom":"ASSET16","index":"0.000011717396138812"},{"denom":"ASSET17","index":"0.000009199501798709"},{"denom":"ASSET18","index":"0.000003801350346824"},{"denom":"ASSET2","index":"0.000007999912620195"},{"denom":"ASSET3","index":"0.000002221641081089"},{"denom":"ASSET4","index":"0.000021415082747190"},{"denom":"ASSET5","index":"0.000001730738444371"},{"denom":"ASSET6","index":"0.000006985361363625"},{"denom":"ASSET7","index":"0.000010973556930807"},{"denom":"ASSET8","index":"0.000014990236718633"},{"denom":"ASSET9","index":"0.000006362695679170"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001486431692511"},{"denom":"ASSET1","index":"0.000012397696164316"},{"denom":"ASSET10","index":"0.000008637613387551"},{"denom":"ASSET11","index":"0.000011993186507636"},{"denom":"ASSET12","index":"0.000010799842650204"},{"denom":"ASSET13","index":"0.000003716482933529"},{"denom":"ASSET14","index":"0.000011203544902380"},{"denom":"ASSET15","index":"0.000008010260087670"},{"denom":"ASSET16","index":"0.000005584816956599"},{"denom":"ASSET17","index":"0.000003965970925374"},{"denom":"ASSET18","index":"0.000001889326540182"},{"denom":"ASSET2","index":"0.000003659157213720"},{"denom":"ASSET3","index":"0.000001070618372770"},{"denom":"ASSET4","index":"0.000010074793405297"},{"denom":"ASSET5","index":"0.000000830819234978"},{"denom":"ASSET6","index":"0.000003381410064224"},{"denom":"ASSET7","index":"0.000005179499895414"},{"denom":"ASSET8","index":"0.000006757975701421"},{"denom":"ASSET9","index":"0.000002918767283230"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003023961266495"},{"denom":"ASSET1","index":"0.000025674667559579"},{"denom":"ASSET10","index":"0.000020567435721356"},{"denom":"ASSET11","index":"0.000025532965784321"},{"denom":"ASSET12","index":"0.000024383768132692"},{"denom":"ASSET13","index":"0.000008022807352722"},{"denom":"ASSET14","index":"0.000023423766496233"},{"denom":"ASSET15","index":"0.000018512228577533"},{"denom":"ASSET16","index":"0.000011384524743973"},{"denom":"ASSET17","index":"0.000008960010456843"},{"denom":"ASSET18","index":"0.000003688974211121"},{"denom":"ASSET2","index":"0.000007780619396113"},{"denom":"ASSET3","index":"0.000002157718690670"},{"denom":"ASSET4","index":"0.000020813357966886"},{"denom":"ASSET5","index":"0.000001681323481152"},{"denom":"ASSET6","index":"0.000006783427048921"},{"denom":"ASSET7","index":"0.000010664665966441"},{"denom":"ASSET8","index":"0.000014584270248941"},{"denom":"ASSET9","index":"0.000006187655866052"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001789525520762"},{"denom":"ASSET1","index":"0.000014923544215299"},{"denom":"ASSET10","index":"0.000010397506905977"},{"denom":"ASSET11","index":"0.000014436898494348"},{"denom":"ASSET12","index":"0.000013000171779235"},{"denom":"ASSET13","index":"0.000004474200642702"},{"denom":"ASSET14","index":"0.000013486043818595"},{"denom":"ASSET15","index":"0.000009642393672833"},{"denom":"ASSET16","index":"0.000006722519347127"},{"denom":"ASSET17","index":"0.000004774389100140"},{"denom":"ASSET18","index":"0.000002273850196939"},{"denom":"ASSET2","index":"0.000004405342981073"},{"denom":"ASSET3","index":"0.000001288179849576"},{"denom":"ASSET4","index":"0.000012128232625798"},{"denom":"ASSET5","index":"0.000001000370297599"},{"denom":"ASSET6","index":"0.000004071112533615"},{"denom":"ASSET7","index":"0.000006234326262993"},{"denom":"ASSET8","index":"0.000008135261932908"},{"denom":"ASSET9","index":"0.000003514061787852"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003488279034648"},{"denom":"ASSET1","index":"0.000029592208548275"},{"denom":"ASSET10","index":"0.000023577626976592"},{"denom":"ASSET11","index":"0.000029395914355993"},{"denom":"ASSET12","index":"0.000028007798530295"},{"denom":"ASSET13","index":"0.000009231498766276"},{"denom":"ASSET14","index":"0.000026986732997785"},{"denom":"ASSET15","index":"0.000021244630549189"},{"denom":"ASSET16","index":"0.000013129960095172"},{"denom":"ASSET17","index":"0.000010292381952670"},{"denom":"ASSET18","index":"0.000004261641431672"},{"denom":"ASSET2","index":"0.000008958343988321"},{"denom":"ASSET3","index":"0.000002489657102823"},{"denom":"ASSET4","index":"0.000023991917258738"},{"denom":"ASSET5","index":"0.000001939742890351"},{"denom":"ASSET6","index":"0.000007829259808535"},{"denom":"ASSET7","index":"0.000012294264842111"},{"denom":"ASSET8","index":"0.000016782088113605"},{"denom":"ASSET9","index":"0.000007125719490615"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001504632489095"},{"denom":"ASSET1","index":"0.000012543084148708"},{"denom":"ASSET10","index":"0.000008738830231438"},{"denom":"ASSET11","index":"0.000012134501498699"},{"denom":"ASSET12","index":"0.000010926897843985"},{"denom":"ASSET13","index":"0.000003760573206331"},{"denom":"ASSET14","index":"0.000011335480493994"},{"denom":"ASSET15","index":"0.000008104451906425"},{"denom":"ASSET16","index":"0.000005650267962622"},{"denom":"ASSET17","index":"0.000004012577307899"},{"denom":"ASSET18","index":"0.000001911199106291"},{"denom":"ASSET2","index":"0.000003702780265705"},{"denom":"ASSET3","index":"0.000001083281631273"},{"denom":"ASSET4","index":"0.000010193733911157"},{"denom":"ASSET5","index":"0.000000840685682831"},{"denom":"ASSET6","index":"0.000003421207682886"},{"denom":"ASSET7","index":"0.000005240341290738"},{"denom":"ASSET8","index":"0.000006837711289210"},{"denom":"ASSET9","index":"0.000002953488070376"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003015423229771"},{"denom":"ASSET1","index":"0.000025588098096649"},{"denom":"ASSET10","index":"0.000020460473772645"},{"denom":"ASSET11","index":"0.000025438043766359"},{"denom":"ASSET12","index":"0.000024273358860204"},{"denom":"ASSET13","index":"0.000007991752317173"},{"denom":"ASSET14","index":"0.000023342063892494"},{"denom":"ASSET15","index":"0.000018422728556898"},{"denom":"ASSET16","index":"0.000011348811151398"},{"denom":"ASSET17","index":"0.000008919790197810"},{"denom":"ASSET18","index":"0.000003679502338318"},{"denom":"ASSET2","index":"0.000007752126098631"},{"denom":"ASSET3","index":"0.000002151933074669"},{"denom":"ASSET4","index":"0.000020744635257959"},{"denom":"ASSET5","index":"0.000001676458472807"},{"denom":"ASSET6","index":"0.000006763790928604"},{"denom":"ASSET7","index":"0.000010629564741383"},{"denom":"ASSET8","index":"0.000014527278079751"},{"denom":"ASSET9","index":"0.000006165283413682"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001790270882045"},{"denom":"ASSET1","index":"0.000014924962381265"},{"denom":"ASSET10","index":"0.000010398687848362"},{"denom":"ASSET11","index":"0.000014438353512768"},{"denom":"ASSET12","index":"0.000013001639266884"},{"denom":"ASSET13","index":"0.000004474427888377"},{"denom":"ASSET14","index":"0.000013487623477013"},{"denom":"ASSET15","index":"0.000009643475881721"},{"denom":"ASSET16","index":"0.000006723198012370"},{"denom":"ASSET17","index":"0.000004774888563278"},{"denom":"ASSET18","index":"0.000002274381117071"},{"denom":"ASSET2","index":"0.000004405715467922"},{"denom":"ASSET3","index":"0.000001288670212721"},{"denom":"ASSET4","index":"0.000012129616185469"},{"denom":"ASSET5","index":"0.000001000078046809"},{"denom":"ASSET6","index":"0.000004071523241162"},{"denom":"ASSET7","index":"0.000006235339827137"},{"denom":"ASSET8","index":"0.000008136175240279"},{"denom":"ASSET9","index":"0.000003514327977106"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003452635056994"},{"denom":"ASSET1","index":"0.000029280443630050"},{"denom":"ASSET10","index":"0.000023297581891953"},{"denom":"ASSET11","index":"0.000029078046899152"},{"denom":"ASSET12","index":"0.000027688393753974"},{"denom":"ASSET13","index":"0.000009130247174920"},{"denom":"ASSET14","index":"0.000026700258191979"},{"denom":"ASSET15","index":"0.000020998119885469"},{"denom":"ASSET16","index":"0.000012993858989816"},{"denom":"ASSET17","index":"0.000010174919177657"},{"denom":"ASSET18","index":"0.000004220034662939"},{"denom":"ASSET2","index":"0.000008861755768133"},{"denom":"ASSET3","index":"0.000002464736347038"},{"denom":"ASSET4","index":"0.000023740327943060"},{"denom":"ASSET5","index":"0.000001919615043943"},{"denom":"ASSET6","index":"0.000007749671229698"},{"denom":"ASSET7","index":"0.000012165961282812"},{"denom":"ASSET8","index":"0.000016598407083950"},{"denom":"ASSET9","index":"0.000007048985746822"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001835550145227"},{"denom":"ASSET1","index":"0.000015324623289081"},{"denom":"ASSET10","index":"0.000010676536631006"},{"denom":"ASSET11","index":"0.000014825027987456"},{"denom":"ASSET12","index":"0.000013348446318211"},{"denom":"ASSET13","index":"0.000004592576069005"},{"denom":"ASSET14","index":"0.000013848041619836"},{"denom":"ASSET15","index":"0.000009899388384035"},{"denom":"ASSET16","index":"0.000006901816574290"},{"denom":"ASSET17","index":"0.000004903435367793"},{"denom":"ASSET18","index":"0.000002335145446851"},{"denom":"ASSET2","index":"0.000004522262656184"},{"denom":"ASSET3","index":"0.000001321152019851"},{"denom":"ASSET4","index":"0.000012452875481226"},{"denom":"ASSET5","index":"0.000001025095544814"},{"denom":"ASSET6","index":"0.000004178097003954"},{"denom":"ASSET7","index":"0.000006402221272666"},{"denom":"ASSET8","index":"0.000008352493301969"},{"denom":"ASSET9","index":"0.000003608188289508"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003336473275634"},{"denom":"ASSET1","index":"0.000028284037775138"},{"denom":"ASSET10","index":"0.000022321061137243"},{"denom":"ASSET11","index":"0.000028041053149272"},{"denom":"ASSET12","index":"0.000026607048139233"},{"denom":"ASSET13","index":"0.000008795774551756"},{"denom":"ASSET14","index":"0.000025776026947277"},{"denom":"ASSET15","index":"0.000020150006768141"},{"denom":"ASSET16","index":"0.000012562977954735"},{"denom":"ASSET17","index":"0.000009778271060189"},{"denom":"ASSET18","index":"0.000004091528532498"},{"denom":"ASSET2","index":"0.000008544798017437"},{"denom":"ASSET3","index":"0.000002382883485470"},{"denom":"ASSET4","index":"0.000022934405116164"},{"denom":"ASSET5","index":"0.000001855148612588"},{"denom":"ASSET6","index":"0.000007498692848558"},{"denom":"ASSET7","index":"0.000011756140274513"},{"denom":"ASSET8","index":"0.000015991743254740"},{"denom":"ASSET9","index":"0.000006799136288961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001764742979644"},{"denom":"ASSET1","index":"0.000014715413525055"},{"denom":"ASSET10","index":"0.000010252344388411"},{"denom":"ASSET11","index":"0.000014235671854472"},{"denom":"ASSET12","index":"0.000012819403806098"},{"denom":"ASSET13","index":"0.000004411268809023"},{"denom":"ASSET14","index":"0.000013298556836595"},{"denom":"ASSET15","index":"0.000009507714678855"},{"denom":"ASSET16","index":"0.000006629264655353"},{"denom":"ASSET17","index":"0.000004707943412672"},{"denom":"ASSET18","index":"0.000002242718729968"},{"denom":"ASSET2","index":"0.000004343575199063"},{"denom":"ASSET3","index":"0.000001270873946982"},{"denom":"ASSET4","index":"0.000011958811999481"},{"denom":"ASSET5","index":"0.000000985972145064"},{"denom":"ASSET6","index":"0.000004013936750564"},{"denom":"ASSET7","index":"0.000006147757064510"},{"denom":"ASSET8","index":"0.000008021987100262"},{"denom":"ASSET9","index":"0.000003464735549761"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003371223111771"},{"denom":"ASSET1","index":"0.000028586584995448"},{"denom":"ASSET10","index":"0.000022716281614844"},{"denom":"ASSET11","index":"0.000028381809067472"},{"denom":"ASSET12","index":"0.000027011101270499"},{"denom":"ASSET13","index":"0.000008910504058238"},{"denom":"ASSET14","index":"0.000026065694327630"},{"denom":"ASSET15","index":"0.000020479714095343"},{"denom":"ASSET16","index":"0.000012688778091614"},{"denom":"ASSET17","index":"0.000009925875585388"},{"denom":"ASSET18","index":"0.000004122881217339"},{"denom":"ASSET2","index":"0.000008649339803247"},{"denom":"ASSET3","index":"0.000002407313457267"},{"denom":"ASSET4","index":"0.000023177863483423"},{"denom":"ASSET5","index":"0.000001874397047373"},{"denom":"ASSET6","index":"0.000007568278053481"},{"denom":"ASSET7","index":"0.000011878402488901"},{"denom":"ASSET8","index":"0.000016198768839280"},{"denom":"ASSET9","index":"0.000006880150170591"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001519402004985"},{"denom":"ASSET1","index":"0.000012669186594649"},{"denom":"ASSET10","index":"0.000008826466179926"},{"denom":"ASSET11","index":"0.000012255973562605"},{"denom":"ASSET12","index":"0.000011036700348729"},{"denom":"ASSET13","index":"0.000003798237040326"},{"denom":"ASSET14","index":"0.000011448841492233"},{"denom":"ASSET15","index":"0.000008185476833202"},{"denom":"ASSET16","index":"0.000005707270529482"},{"denom":"ASSET17","index":"0.000004053346512768"},{"denom":"ASSET18","index":"0.000001930471259949"},{"denom":"ASSET2","index":"0.000003739819114914"},{"denom":"ASSET3","index":"0.000001093862254735"},{"denom":"ASSET4","index":"0.000010296025367816"},{"denom":"ASSET5","index":"0.000000848935723420"},{"denom":"ASSET6","index":"0.000003455768651901"},{"denom":"ASSET7","index":"0.000005292985608899"},{"denom":"ASSET8","index":"0.000006906177861104"},{"denom":"ASSET9","index":"0.000002983065805906"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003090388166914"},{"denom":"ASSET1","index":"0.000026235396530584"},{"denom":"ASSET10","index":"0.000021016328726441"},{"denom":"ASSET11","index":"0.000026091077525301"},{"denom":"ASSET12","index":"0.000024916432469284"},{"denom":"ASSET13","index":"0.000008198423394567"},{"denom":"ASSET14","index":"0.000023935350029219"},{"denom":"ASSET15","index":"0.000018916111125702"},{"denom":"ASSET16","index":"0.000011633439861257"},{"denom":"ASSET17","index":"0.000009156707623184"},{"denom":"ASSET18","index":"0.000003769226369030"},{"denom":"ASSET2","index":"0.000007950992094695"},{"denom":"ASSET3","index":"0.000002205065882760"},{"denom":"ASSET4","index":"0.000021268551776440"},{"denom":"ASSET5","index":"0.000001717872208784"},{"denom":"ASSET6","index":"0.000006931889619894"},{"denom":"ASSET7","index":"0.000010897757198785"},{"denom":"ASSET8","index":"0.000014903243728132"},{"denom":"ASSET9","index":"0.000006323427167640"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001518878942956"},{"denom":"ASSET1","index":"0.000012665267621292"},{"denom":"ASSET10","index":"0.000008823986077449"},{"denom":"ASSET11","index":"0.000012252067733139"},{"denom":"ASSET12","index":"0.000011032961258059"},{"denom":"ASSET13","index":"0.000003796959064490"},{"denom":"ASSET14","index":"0.000011445207974612"},{"denom":"ASSET15","index":"0.000008182978177143"},{"denom":"ASSET16","index":"0.000005705208605625"},{"denom":"ASSET17","index":"0.000004051932467214"},{"denom":"ASSET18","index":"0.000001930172487911"},{"denom":"ASSET2","index":"0.000003738815596953"},{"denom":"ASSET3","index":"0.000001093764409816"},{"denom":"ASSET4","index":"0.000010292823511460"},{"denom":"ASSET5","index":"0.000000848799308881"},{"denom":"ASSET6","index":"0.000003454770460461"},{"denom":"ASSET7","index":"0.000005291055545873"},{"denom":"ASSET8","index":"0.000006904298477127"},{"denom":"ASSET9","index":"0.000002981997347372"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003032310940473"},{"denom":"ASSET1","index":"0.000025733484746235"},{"denom":"ASSET10","index":"0.000020566326171769"},{"denom":"ASSET11","index":"0.000025579130700492"},{"denom":"ASSET12","index":"0.000024402998631681"},{"denom":"ASSET13","index":"0.000008035434808363"},{"denom":"ASSET14","index":"0.000023473377840860"},{"denom":"ASSET15","index":"0.000018519821992016"},{"denom":"ASSET16","index":"0.000011413808805814"},{"denom":"ASSET17","index":"0.000008967671528488"},{"denom":"ASSET18","index":"0.000003701450923042"},{"denom":"ASSET2","index":"0.000007795399667781"},{"denom":"ASSET3","index":"0.000002164126947351"},{"denom":"ASSET4","index":"0.000020862528644023"},{"denom":"ASSET5","index":"0.000001685967393794"},{"denom":"ASSET6","index":"0.000006803442800114"},{"denom":"ASSET7","index":"0.000010689840259007"},{"denom":"ASSET8","index":"0.000014607710652032"},{"denom":"ASSET9","index":"0.000006199747658625"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001387661284101"},{"denom":"ASSET1","index":"0.000011573014587468"},{"denom":"ASSET10","index":"0.000008062929395432"},{"denom":"ASSET11","index":"0.000011195232526081"},{"denom":"ASSET12","index":"0.000010081345808669"},{"denom":"ASSET13","index":"0.000003469153210252"},{"denom":"ASSET14","index":"0.000010458456853962"},{"denom":"ASSET15","index":"0.000007477132344649"},{"denom":"ASSET16","index":"0.000005213124040705"},{"denom":"ASSET17","index":"0.000003702666811251"},{"denom":"ASSET18","index":"0.000001763430297203"},{"denom":"ASSET2","index":"0.000003416142938760"},{"denom":"ASSET3","index":"0.000000999142965196"},{"denom":"ASSET4","index":"0.000009404961585085"},{"denom":"ASSET5","index":"0.000000775694605619"},{"denom":"ASSET6","index":"0.000003156459710063"},{"denom":"ASSET7","index":"0.000004834670963223"},{"denom":"ASSET8","index":"0.000006308893323556"},{"denom":"ASSET9","index":"0.000002724996361089"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002847838387483"},{"denom":"ASSET1","index":"0.000024182680336096"},{"denom":"ASSET10","index":"0.000019393227963423"},{"denom":"ASSET11","index":"0.000024054653395269"},{"denom":"ASSET12","index":"0.000022982316432831"},{"denom":"ASSET13","index":"0.000007558836235579"},{"denom":"ASSET14","index":"0.000022064079622497"},{"denom":"ASSET15","index":"0.000017450899901336"},{"denom":"ASSET16","index":"0.000010721434414440"},{"denom":"ASSET17","index":"0.000008446187739031"},{"denom":"ASSET18","index":"0.000003472449339717"},{"denom":"ASSET2","index":"0.000007330038539196"},{"denom":"ASSET3","index":"0.000002031951160271"},{"denom":"ASSET4","index":"0.000019603371773062"},{"denom":"ASSET5","index":"0.000001583403578691"},{"denom":"ASSET6","index":"0.000006387295602350"},{"denom":"ASSET7","index":"0.000010043914419286"},{"denom":"ASSET8","index":"0.000013741733556815"},{"denom":"ASSET9","index":"0.000005829813216311"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001740203165372"},{"denom":"ASSET1","index":"0.000014506985633466"},{"denom":"ASSET10","index":"0.000010106727386233"},{"denom":"ASSET11","index":"0.000014033828203465"},{"denom":"ASSET12","index":"0.000012637643303754"},{"denom":"ASSET13","index":"0.000004348390877948"},{"denom":"ASSET14","index":"0.000013109742216014"},{"denom":"ASSET15","index":"0.000009373174592071"},{"denom":"ASSET16","index":"0.000006535288529808"},{"denom":"ASSET17","index":"0.000004640541774324"},{"denom":"ASSET18","index":"0.000002210185042151"},{"denom":"ASSET2","index":"0.000004281704260297"},{"denom":"ASSET3","index":"0.000001252226487004"},{"denom":"ASSET4","index":"0.000011789770593618"},{"denom":"ASSET5","index":"0.000000971719285773"},{"denom":"ASSET6","index":"0.000003956739313965"},{"denom":"ASSET7","index":"0.000006060014064326"},{"denom":"ASSET8","index":"0.000007908186039228"},{"denom":"ASSET9","index":"0.000003415836748573"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003351161845380"},{"denom":"ASSET1","index":"0.000028416485386018"},{"denom":"ASSET10","index":"0.000022605276372189"},{"denom":"ASSET11","index":"0.000028218825237526"},{"denom":"ASSET12","index":"0.000026868556551399"},{"denom":"ASSET13","index":"0.000008859853422879"},{"denom":"ASSET14","index":"0.000025912194276628"},{"denom":"ASSET15","index":"0.000020375555431981"},{"denom":"ASSET16","index":"0.000012611404420708"},{"denom":"ASSET17","index":"0.000009873044520717"},{"denom":"ASSET18","index":"0.000004095473642305"},{"denom":"ASSET2","index":"0.000008599384819082"},{"denom":"ASSET3","index":"0.000002391571176633"},{"denom":"ASSET4","index":"0.000023040021162794"},{"denom":"ASSET5","index":"0.000001862805125681"},{"denom":"ASSET6","index":"0.000007520693553142"},{"denom":"ASSET7","index":"0.000011806544930596"},{"denom":"ASSET8","index":"0.000016107343127742"},{"denom":"ASSET9","index":"0.000006840485865179"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001711866379191"},{"denom":"ASSET1","index":"0.000014286095556473"},{"denom":"ASSET10","index":"0.000009953932372868"},{"denom":"ASSET11","index":"0.000013820467901333"},{"denom":"ASSET12","index":"0.000012444127332464"},{"denom":"ASSET13","index":"0.000004281948436482"},{"denom":"ASSET14","index":"0.000012909754987604"},{"denom":"ASSET15","index":"0.000009230383516596"},{"denom":"ASSET16","index":"0.000006434335097252"},{"denom":"ASSET17","index":"0.000004569541988186"},{"denom":"ASSET18","index":"0.000002177494034331"},{"denom":"ASSET2","index":"0.000004215756269820"},{"denom":"ASSET3","index":"0.000001232543793017"},{"denom":"ASSET4","index":"0.000011608736539419"},{"denom":"ASSET5","index":"0.000000956362683841"},{"denom":"ASSET6","index":"0.000003896207879038"},{"denom":"ASSET7","index":"0.000005968707442112"},{"denom":"ASSET8","index":"0.000007787850781065"},{"denom":"ASSET9","index":"0.000003362105568731"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003408995344605"},{"denom":"ASSET1","index":"0.000028940875589883"},{"denom":"ASSET10","index":"0.000023121939135123"},{"denom":"ASSET11","index":"0.000028765460883304"},{"denom":"ASSET12","index":"0.000027437813762181"},{"denom":"ASSET13","index":"0.000009035078182388"},{"denom":"ASSET14","index":"0.000026397840013038"},{"denom":"ASSET15","index":"0.000020822021063845"},{"denom":"ASSET16","index":"0.000012835900360827"},{"denom":"ASSET17","index":"0.000010082289518918"},{"denom":"ASSET18","index":"0.000004163537456367"},{"denom":"ASSET2","index":"0.000008764373535196"},{"denom":"ASSET3","index":"0.000002432999591430"},{"denom":"ASSET4","index":"0.000023461370966582"},{"denom":"ASSET5","index":"0.000001895172356369"},{"denom":"ASSET6","index":"0.000007651446569151"},{"denom":"ASSET7","index":"0.000012022926111771"},{"denom":"ASSET8","index":"0.000016426068411072"},{"denom":"ASSET9","index":"0.000006969965423669"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001459800105667"},{"denom":"ASSET1","index":"0.000012176396665923"},{"denom":"ASSET10","index":"0.000008484162206626"},{"denom":"ASSET11","index":"0.000011779823335110"},{"denom":"ASSET12","index":"0.000010607197020722"},{"denom":"ASSET13","index":"0.000003650070053435"},{"denom":"ASSET14","index":"0.000011003770351536"},{"denom":"ASSET15","index":"0.000007867650218206"},{"denom":"ASSET16","index":"0.000005484791497715"},{"denom":"ASSET17","index":"0.000003895079438851"},{"denom":"ASSET18","index":"0.000001855233857943"},{"denom":"ASSET2","index":"0.000003594230705131"},{"denom":"ASSET3","index":"0.000001050691410948"},{"denom":"ASSET4","index":"0.000009896100013746"},{"denom":"ASSET5","index":"0.000000815938232363"},{"denom":"ASSET6","index":"0.000003321871434831"},{"denom":"ASSET7","index":"0.000005087078588365"},{"denom":"ASSET8","index":"0.000006638044976977"},{"denom":"ASSET9","index":"0.000002867179598640"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002975317591563"},{"denom":"ASSET1","index":"0.000025265738469637"},{"denom":"ASSET10","index":"0.000020245724387946"},{"denom":"ASSET11","index":"0.000025128558675417"},{"denom":"ASSET12","index":"0.000023998925764885"},{"denom":"ASSET13","index":"0.000007895668684136"},{"denom":"ASSET14","index":"0.000023051238668493"},{"denom":"ASSET15","index":"0.000018221178423268"},{"denom":"ASSET16","index":"0.000011202197653725"},{"denom":"ASSET17","index":"0.000008818540737002"},{"denom":"ASSET18","index":"0.000003629428323701"},{"denom":"ASSET2","index":"0.000007657107369447"},{"denom":"ASSET3","index":"0.000002122660280404"},{"denom":"ASSET4","index":"0.000020482509156357"},{"denom":"ASSET5","index":"0.000001654309607539"},{"denom":"ASSET6","index":"0.000006675356935536"},{"denom":"ASSET7","index":"0.000010494215679887"},{"denom":"ASSET8","index":"0.000014353927855523"},{"denom":"ASSET9","index":"0.000006089535217587"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001617402557586"},{"denom":"ASSET1","index":"0.000013485147451276"},{"denom":"ASSET10","index":"0.000009395521488362"},{"denom":"ASSET11","index":"0.000013045402724081"},{"denom":"ASSET12","index":"0.000011747619504798"},{"denom":"ASSET13","index":"0.000004042433845849"},{"denom":"ASSET14","index":"0.000012186291683878"},{"denom":"ASSET15","index":"0.000008713380887153"},{"denom":"ASSET16","index":"0.000006074912523982"},{"denom":"ASSET17","index":"0.000004313788518972"},{"denom":"ASSET18","index":"0.000002055002188551"},{"denom":"ASSET2","index":"0.000003980226055173"},{"denom":"ASSET3","index":"0.000001163714704894"},{"denom":"ASSET4","index":"0.000010959296640193"},{"denom":"ASSET5","index":"0.000000903085512923"},{"denom":"ASSET6","index":"0.000003677767486712"},{"denom":"ASSET7","index":"0.000005633022700557"},{"denom":"ASSET8","index":"0.000007351244780963"},{"denom":"ASSET9","index":"0.000003174742420725"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003091273620954"},{"denom":"ASSET1","index":"0.000026212594205506"},{"denom":"ASSET10","index":"0.000020831747389799"},{"denom":"ASSET11","index":"0.000026024829344923"},{"denom":"ASSET12","index":"0.000024768925461013"},{"denom":"ASSET13","index":"0.000008170539761157"},{"denom":"ASSET14","index":"0.000023900540063840"},{"denom":"ASSET15","index":"0.000018780610027247"},{"denom":"ASSET16","index":"0.000011634658240098"},{"denom":"ASSET17","index":"0.000009101405984603"},{"denom":"ASSET18","index":"0.000003780149264156"},{"denom":"ASSET2","index":"0.000007930960667726"},{"denom":"ASSET3","index":"0.000002206123035767"},{"denom":"ASSET4","index":"0.000021253166889363"},{"denom":"ASSET5","index":"0.000001718500807532"},{"denom":"ASSET6","index":"0.000006939076737962"},{"denom":"ASSET7","index":"0.000010891166816552"},{"denom":"ASSET8","index":"0.000014853628574871"},{"denom":"ASSET9","index":"0.000006308302102729"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001496654334782"},{"denom":"ASSET1","index":"0.000012477377024436"},{"denom":"ASSET10","index":"0.000008693096469902"},{"denom":"ASSET11","index":"0.000012070207597683"},{"denom":"ASSET12","index":"0.000010869145414891"},{"denom":"ASSET13","index":"0.000003740467488528"},{"denom":"ASSET14","index":"0.000011275146493218"},{"denom":"ASSET15","index":"0.000008061604145195"},{"denom":"ASSET16","index":"0.000005620924281527"},{"denom":"ASSET17","index":"0.000003991662400298"},{"denom":"ASSET18","index":"0.000001901487064682"},{"denom":"ASSET2","index":"0.000003683218415613"},{"denom":"ASSET3","index":"0.000001077217249546"},{"denom":"ASSET4","index":"0.000010139511822330"},{"denom":"ASSET5","index":"0.000000835953299404"},{"denom":"ASSET6","index":"0.000003403398967385"},{"denom":"ASSET7","index":"0.000005212586506346"},{"denom":"ASSET8","index":"0.000006801540366848"},{"denom":"ASSET9","index":"0.000002937812119289"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003012098530886"},{"denom":"ASSET1","index":"0.000025562058034330"},{"denom":"ASSET10","index":"0.000020450222858637"},{"denom":"ASSET11","index":"0.000025414193224582"},{"denom":"ASSET12","index":"0.000024256065084933"},{"denom":"ASSET13","index":"0.000007984561416691"},{"denom":"ASSET14","index":"0.000023318358139730"},{"denom":"ASSET15","index":"0.000018411259079989"},{"denom":"ASSET16","index":"0.000011336678183578"},{"denom":"ASSET17","index":"0.000008913774138499"},{"denom":"ASSET18","index":"0.000003674960609183"},{"denom":"ASSET2","index":"0.000007744948932800"},{"denom":"ASSET3","index":"0.000002148867969989"},{"denom":"ASSET4","index":"0.000020722540912428"},{"denom":"ASSET5","index":"0.000001674229864542"},{"denom":"ASSET6","index":"0.000006756080138401"},{"denom":"ASSET7","index":"0.000010618450136599"},{"denom":"ASSET8","index":"0.000014514789998911"},{"denom":"ASSET9","index":"0.000006159565713194"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001470615438656"},{"denom":"ASSET1","index":"0.000012263141624205"},{"denom":"ASSET10","index":"0.000008543710077270"},{"denom":"ASSET11","index":"0.000011863435889596"},{"denom":"ASSET12","index":"0.000010682701378752"},{"denom":"ASSET13","index":"0.000003676538596641"},{"denom":"ASSET14","index":"0.000011081935762259"},{"denom":"ASSET15","index":"0.000007923412026863"},{"denom":"ASSET16","index":"0.000005524234917004"},{"denom":"ASSET17","index":"0.000003923055223056"},{"denom":"ASSET18","index":"0.000001868907119959"},{"denom":"ASSET2","index":"0.000003619976464385"},{"denom":"ASSET3","index":"0.000001058654575392"},{"denom":"ASSET4","index":"0.000009965776352407"},{"denom":"ASSET5","index":"0.000000822036322121"},{"denom":"ASSET6","index":"0.000003345178771841"},{"denom":"ASSET7","index":"0.000005123115129088"},{"denom":"ASSET8","index":"0.000006685172681558"},{"denom":"ASSET9","index":"0.000002887496851669"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002995147819628"},{"denom":"ASSET1","index":"0.000025426980115999"},{"denom":"ASSET10","index":"0.000020372034738960"},{"denom":"ASSET11","index":"0.000025287989623967"},{"denom":"ASSET12","index":"0.000024150599022202"},{"denom":"ASSET13","index":"0.000007946076587902"},{"denom":"ASSET14","index":"0.000023198024872944"},{"denom":"ASSET15","index":"0.000018335727027304"},{"denom":"ASSET16","index":"0.000011274635486105"},{"denom":"ASSET17","index":"0.000008875015361763"},{"denom":"ASSET18","index":"0.000003653177061349"},{"denom":"ASSET2","index":"0.000007706361997735"},{"denom":"ASSET3","index":"0.000002137037997503"},{"denom":"ASSET4","index":"0.000020612735071168"},{"denom":"ASSET5","index":"0.000001665450131859"},{"denom":"ASSET6","index":"0.000006718182222688"},{"denom":"ASSET7","index":"0.000010561635089256"},{"denom":"ASSET8","index":"0.000014445035982826"},{"denom":"ASSET9","index":"0.000006128513210961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001778581753434"},{"denom":"ASSET1","index":"0.000014888315804569"},{"denom":"ASSET10","index":"0.000010370885153828"},{"denom":"ASSET11","index":"0.000014404007158094"},{"denom":"ASSET12","index":"0.000012967781516823"},{"denom":"ASSET13","index":"0.000004458979607201"},{"denom":"ASSET14","index":"0.000013452090163298"},{"denom":"ASSET15","index":"0.000009619371736884"},{"denom":"ASSET16","index":"0.000006705169708956"},{"denom":"ASSET17","index":"0.000004759584973979"},{"denom":"ASSET18","index":"0.000002262890399909"},{"denom":"ASSET2","index":"0.000004392178414584"},{"denom":"ASSET3","index":"0.000001285922957882"},{"denom":"ASSET4","index":"0.000012099366012799"},{"denom":"ASSET5","index":"0.000000993667740182"},{"denom":"ASSET6","index":"0.000004058172451498"},{"denom":"ASSET7","index":"0.000006220861062481"},{"denom":"ASSET8","index":"0.000008116344902996"},{"denom":"ASSET9","index":"0.000003507062612406"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003356752793751"},{"denom":"ASSET1","index":"0.000028516406305775"},{"denom":"ASSET10","index":"0.000022616173055400"},{"denom":"ASSET11","index":"0.000028302061322789"},{"denom":"ASSET12","index":"0.000026910491325102"},{"denom":"ASSET13","index":"0.000008878873421079"},{"denom":"ASSET14","index":"0.000025995251505598"},{"denom":"ASSET15","index":"0.000020398635157595"},{"denom":"ASSET16","index":"0.000012658071469071"},{"denom":"ASSET17","index":"0.000009885849877285"},{"denom":"ASSET18","index":"0.000004110010202724"},{"denom":"ASSET2","index":"0.000008622285743228"},{"denom":"ASSET3","index":"0.000002402314047495"},{"denom":"ASSET4","index":"0.000023121698220749"},{"denom":"ASSET5","index":"0.000001866482592061"},{"denom":"ASSET6","index":"0.000007549939309511"},{"denom":"ASSET7","index":"0.000011851024307599"},{"denom":"ASSET8","index":"0.000016149793693754"},{"denom":"ASSET9","index":"0.000006862325287189"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001604942959288"},{"denom":"ASSET1","index":"0.000013380628695124"},{"denom":"ASSET10","index":"0.000009322365613635"},{"denom":"ASSET11","index":"0.000012944148427984"},{"denom":"ASSET12","index":"0.000011656280789193"},{"denom":"ASSET13","index":"0.000004011353995308"},{"denom":"ASSET14","index":"0.000012091757653420"},{"denom":"ASSET15","index":"0.000008645319498111"},{"denom":"ASSET16","index":"0.000006027692148913"},{"denom":"ASSET17","index":"0.000004280767677439"},{"denom":"ASSET18","index":"0.000002039165569874"},{"denom":"ASSET2","index":"0.000003949895566889"},{"denom":"ASSET3","index":"0.000001155418454280"},{"denom":"ASSET4","index":"0.000010873877367808"},{"denom":"ASSET5","index":"0.000000896791353463"},{"denom":"ASSET6","index":"0.000003649878095912"},{"denom":"ASSET7","index":"0.000005589957628131"},{"denom":"ASSET8","index":"0.000007294237475803"},{"denom":"ASSET9","index":"0.000003150685146712"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003200268554223"},{"denom":"ASSET1","index":"0.000027155061035589"},{"denom":"ASSET10","index":"0.000021699312128992"},{"denom":"ASSET11","index":"0.000026991580254755"},{"denom":"ASSET12","index":"0.000025748970079650"},{"denom":"ASSET13","index":"0.000008479073830121"},{"denom":"ASSET14","index":"0.000024769827936089"},{"denom":"ASSET15","index":"0.000019540730612944"},{"denom":"ASSET16","index":"0.000012044995213579"},{"denom":"ASSET17","index":"0.000009462424001901"},{"denom":"ASSET18","index":"0.000003906197580725"},{"denom":"ASSET2","index":"0.000008225756082433"},{"denom":"ASSET3","index":"0.000002283784004254"},{"denom":"ASSET4","index":"0.000022014648589339"},{"denom":"ASSET5","index":"0.000001779311895342"},{"denom":"ASSET6","index":"0.000007179475362032"},{"denom":"ASSET7","index":"0.000011280598785262"},{"denom":"ASSET8","index":"0.000015413911362487"},{"denom":"ASSET9","index":"0.000006542247148589"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001620184629837"},{"denom":"ASSET1","index":"0.000013508113244239"},{"denom":"ASSET10","index":"0.000009411159415052"},{"denom":"ASSET11","index":"0.000013068550109883"},{"denom":"ASSET12","index":"0.000011766766981214"},{"denom":"ASSET13","index":"0.000004049052718392"},{"denom":"ASSET14","index":"0.000012206330115570"},{"denom":"ASSET15","index":"0.000008726455301921"},{"denom":"ASSET16","index":"0.000006083441070987"},{"denom":"ASSET17","index":"0.000004319553108765"},{"denom":"ASSET18","index":"0.000002056930051793"},{"denom":"ASSET2","index":"0.000003987063045598"},{"denom":"ASSET3","index":"0.000001166532933482"},{"denom":"ASSET4","index":"0.000010977807509294"},{"denom":"ASSET5","index":"0.000000904485680309"},{"denom":"ASSET6","index":"0.000003682750106429"},{"denom":"ASSET7","index":"0.000005643877936631"},{"denom":"ASSET8","index":"0.000007362682500458"},{"denom":"ASSET9","index":"0.000003178379586880"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003154859072778"},{"denom":"ASSET1","index":"0.000026759958230198"},{"denom":"ASSET10","index":"0.000021318547828682"},{"denom":"ASSET11","index":"0.000026582778956839"},{"denom":"ASSET12","index":"0.000025324795995745"},{"denom":"ASSET13","index":"0.000008347309163095"},{"denom":"ASSET14","index":"0.000024403216779648"},{"denom":"ASSET15","index":"0.000019208461119321"},{"denom":"ASSET16","index":"0.000011872154646602"},{"denom":"ASSET17","index":"0.000009304429323264"},{"denom":"ASSET18","index":"0.000003853154066825"},{"denom":"ASSET2","index":"0.000008100524497579"},{"denom":"ASSET3","index":"0.000002251942800438"},{"denom":"ASSET4","index":"0.000021695917087147"},{"denom":"ASSET5","index":"0.000001753374642360"},{"denom":"ASSET6","index":"0.000007078305954632"},{"denom":"ASSET7","index":"0.000011118481739065"},{"denom":"ASSET8","index":"0.000015174129529137"},{"denom":"ASSET9","index":"0.000006441283498998"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001565910537906"},{"denom":"ASSET1","index":"0.000013053983025959"},{"denom":"ASSET10","index":"0.000009094819386579"},{"denom":"ASSET11","index":"0.000012628414118813"},{"denom":"ASSET12","index":"0.000011371841840295"},{"denom":"ASSET13","index":"0.000003913403541838"},{"denom":"ASSET14","index":"0.000011796953146466"},{"denom":"ASSET15","index":"0.000008434501179040"},{"denom":"ASSET16","index":"0.000005880630135191"},{"denom":"ASSET17","index":"0.000004176066501732"},{"denom":"ASSET18","index":"0.000001989191440174"},{"denom":"ASSET2","index":"0.000003853457814057"},{"denom":"ASSET3","index":"0.000001127071202473"},{"denom":"ASSET4","index":"0.000010608563413286"},{"denom":"ASSET5","index":"0.000000874933065013"},{"denom":"ASSET6","index":"0.000003561050790760"},{"denom":"ASSET7","index":"0.000005453688425119"},{"denom":"ASSET8","index":"0.000007116152768840"},{"denom":"ASSET9","index":"0.000003073705751932"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003066618221533"},{"denom":"ASSET1","index":"0.000026018563142658"},{"denom":"ASSET10","index":"0.000020743763118655"},{"denom":"ASSET11","index":"0.000025849025514444"},{"denom":"ASSET12","index":"0.000024635604575072"},{"denom":"ASSET13","index":"0.000008118261811936"},{"denom":"ASSET14","index":"0.000023728777879609"},{"denom":"ASSET15","index":"0.000018689177197382"},{"denom":"ASSET16","index":"0.000011544003668418"},{"denom":"ASSET17","index":"0.000009052167825210"},{"denom":"ASSET18","index":"0.000003745930402733"},{"denom":"ASSET2","index":"0.000007877080459743"},{"denom":"ASSET3","index":"0.000002188594145460"},{"denom":"ASSET4","index":"0.000021094338825720"},{"denom":"ASSET5","index":"0.000001705356613908"},{"denom":"ASSET6","index":"0.000006882744986340"},{"denom":"ASSET7","index":"0.000010809249072439"},{"denom":"ASSET8","index":"0.000014757775472241"},{"denom":"ASSET9","index":"0.000006264987011427"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001616793771814"},{"denom":"ASSET1","index":"0.000013481664806896"},{"denom":"ASSET10","index":"0.000009392973001731"},{"denom":"ASSET11","index":"0.000013042136425966"},{"denom":"ASSET12","index":"0.000011745108533466"},{"denom":"ASSET13","index":"0.000004041984429535"},{"denom":"ASSET14","index":"0.000012183439289380"},{"denom":"ASSET15","index":"0.000008710326742521"},{"denom":"ASSET16","index":"0.000006073156456940"},{"denom":"ASSET17","index":"0.000004312647683187"},{"denom":"ASSET18","index":"0.000002053926902712"},{"denom":"ASSET2","index":"0.000003979707928695"},{"denom":"ASSET3","index":"0.000001164091515706"},{"denom":"ASSET4","index":"0.000010955873647818"},{"denom":"ASSET5","index":"0.000000903009262183"},{"denom":"ASSET6","index":"0.000003677906424623"},{"denom":"ASSET7","index":"0.000005632430450993"},{"denom":"ASSET8","index":"0.000007349824724165"},{"denom":"ASSET9","index":"0.000003173706292820"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003010548827117"},{"denom":"ASSET1","index":"0.000025517681435823"},{"denom":"ASSET10","index":"0.000020207909525991"},{"denom":"ASSET11","index":"0.000025316824190850"},{"denom":"ASSET12","index":"0.000024059273468565"},{"denom":"ASSET13","index":"0.000007945703994160"},{"denom":"ASSET14","index":"0.000023261456497592"},{"denom":"ASSET15","index":"0.000018230653165683"},{"denom":"ASSET16","index":"0.000011330852554208"},{"denom":"ASSET17","index":"0.000008840468160143"},{"denom":"ASSET18","index":"0.000003685449036638"},{"denom":"ASSET2","index":"0.000007715875534239"},{"denom":"ASSET3","index":"0.000002150116713749"},{"denom":"ASSET4","index":"0.000020690763011385"},{"denom":"ASSET5","index":"0.000001674170167376"},{"denom":"ASSET6","index":"0.000006761947340508"},{"denom":"ASSET7","index":"0.000010605047135869"},{"denom":"ASSET8","index":"0.000014444866674878"},{"denom":"ASSET9","index":"0.000006137206230949"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001598496813351"},{"denom":"ASSET1","index":"0.000013327209301876"},{"denom":"ASSET10","index":"0.000009285082513510"},{"denom":"ASSET11","index":"0.000012892549064690"},{"denom":"ASSET12","index":"0.000011609910099638"},{"denom":"ASSET13","index":"0.000003995530641827"},{"denom":"ASSET14","index":"0.000012043503249499"},{"denom":"ASSET15","index":"0.000008611039019674"},{"denom":"ASSET16","index":"0.000006003788988106"},{"denom":"ASSET17","index":"0.000004263725256261"},{"denom":"ASSET18","index":"0.000002031022875886"},{"denom":"ASSET2","index":"0.000003933995272733"},{"denom":"ASSET3","index":"0.000001150675832486"},{"denom":"ASSET4","index":"0.000010830580656369"},{"denom":"ASSET5","index":"0.000000893152091305"},{"denom":"ASSET6","index":"0.000003635566517414"},{"denom":"ASSET7","index":"0.000005567705967820"},{"denom":"ASSET8","index":"0.000007265086206652"},{"denom":"ASSET9","index":"0.000003137948128033"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003202417698287"},{"denom":"ASSET1","index":"0.000027176874960756"},{"denom":"ASSET10","index":"0.000021729724210241"},{"denom":"ASSET11","index":"0.000027016578438308"},{"denom":"ASSET12","index":"0.000025779554956391"},{"denom":"ASSET13","index":"0.000008487649506725"},{"denom":"ASSET14","index":"0.000024790682929963"},{"denom":"ASSET15","index":"0.000019565798539307"},{"denom":"ASSET16","index":"0.000012053877846841"},{"denom":"ASSET17","index":"0.000009473617164606"},{"denom":"ASSET18","index":"0.000003908301251667"},{"denom":"ASSET2","index":"0.000008233254558201"},{"denom":"ASSET3","index":"0.000002285025567503"},{"denom":"ASSET4","index":"0.000022032200437673"},{"denom":"ASSET5","index":"0.000001780306156687"},{"denom":"ASSET6","index":"0.000007184182778940"},{"denom":"ASSET7","index":"0.000011289430429576"},{"denom":"ASSET8","index":"0.000015429251463912"},{"denom":"ASSET9","index":"0.000006548040900334"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001349258766758"},{"denom":"ASSET1","index":"0.000011264433664868"},{"denom":"ASSET10","index":"0.000007848225297969"},{"denom":"ASSET11","index":"0.000010895650990484"},{"denom":"ASSET12","index":"0.000009811385762205"},{"denom":"ASSET13","index":"0.000003376459336127"},{"denom":"ASSET14","index":"0.000010177960157102"},{"denom":"ASSET15","index":"0.000007278489190238"},{"denom":"ASSET16","index":"0.000005074626261883"},{"denom":"ASSET17","index":"0.000003603912123322"},{"denom":"ASSET18","index":"0.000001715833161655"},{"denom":"ASSET2","index":"0.000003323460628431"},{"denom":"ASSET3","index":"0.000000971642974425"},{"denom":"ASSET4","index":"0.000009153318474981"},{"denom":"ASSET5","index":"0.000000753023305179"},{"denom":"ASSET6","index":"0.000003071716766875"},{"denom":"ASSET7","index":"0.000004705843587499"},{"denom":"ASSET8","index":"0.000006139016974776"},{"denom":"ASSET9","index":"0.000002652143664283"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002874619638549"},{"denom":"ASSET1","index":"0.000024442633186143"},{"denom":"ASSET10","index":"0.000019689737510784"},{"denom":"ASSET11","index":"0.000024334399718263"},{"denom":"ASSET12","index":"0.000023294058494145"},{"denom":"ASSET13","index":"0.000007650065286478"},{"denom":"ASSET14","index":"0.000022306974942610"},{"denom":"ASSET15","index":"0.000017702453996022"},{"denom":"ASSET16","index":"0.000010830667352685"},{"denom":"ASSET17","index":"0.000008561334956642"},{"denom":"ASSET18","index":"0.000003501743239949"},{"denom":"ASSET2","index":"0.000007413384379561"},{"denom":"ASSET3","index":"0.000002050775894848"},{"denom":"ASSET4","index":"0.000019811877393900"},{"denom":"ASSET5","index":"0.000001596563839644"},{"denom":"ASSET6","index":"0.000006447875450380"},{"denom":"ASSET7","index":"0.000010149425285061"},{"denom":"ASSET8","index":"0.000013906577801610"},{"denom":"ASSET9","index":"0.000005896530335304"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001744355646452"},{"denom":"ASSET1","index":"0.000014544558741461"},{"denom":"ASSET10","index":"0.000010133244841823"},{"denom":"ASSET11","index":"0.000014070651242217"},{"denom":"ASSET12","index":"0.000012670295178174"},{"denom":"ASSET13","index":"0.000004360461787457"},{"denom":"ASSET14","index":"0.000013143775348745"},{"denom":"ASSET15","index":"0.000009397812194213"},{"denom":"ASSET16","index":"0.000006552230555377"},{"denom":"ASSET17","index":"0.000004653181929010"},{"denom":"ASSET18","index":"0.000002216553831001"},{"denom":"ASSET2","index":"0.000004293371185670"},{"denom":"ASSET3","index":"0.000001255918972299"},{"denom":"ASSET4","index":"0.000011819911117312"},{"denom":"ASSET5","index":"0.000000974736704938"},{"denom":"ASSET6","index":"0.000003967319407560"},{"denom":"ASSET7","index":"0.000006076186412764"},{"denom":"ASSET8","index":"0.000007929083542361"},{"denom":"ASSET9","index":"0.000003424611991834"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003377008276018"},{"denom":"ASSET1","index":"0.000028642142456639"},{"denom":"ASSET10","index":"0.000022800592191853"},{"denom":"ASSET11","index":"0.000028447577997463"},{"denom":"ASSET12","index":"0.000027093635853923"},{"denom":"ASSET13","index":"0.000008933092474106"},{"denom":"ASSET14","index":"0.000026119259559896"},{"denom":"ASSET15","index":"0.000020548756595198"},{"denom":"ASSET16","index":"0.000012710670192565"},{"denom":"ASSET17","index":"0.000009956402105067"},{"denom":"ASSET18","index":"0.000004127475104327"},{"denom":"ASSET2","index":"0.000008669602227225"},{"denom":"ASSET3","index":"0.000002410895003349"},{"denom":"ASSET4","index":"0.000023222264254358"},{"denom":"ASSET5","index":"0.000001877874241403"},{"denom":"ASSET6","index":"0.000007579654674160"},{"denom":"ASSET7","index":"0.000011900488798179"},{"denom":"ASSET8","index":"0.000016239324105118"},{"denom":"ASSET9","index":"0.000006895771583569"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001546168277317"},{"denom":"ASSET1","index":"0.000012892123182452"},{"denom":"ASSET10","index":"0.000008982377260299"},{"denom":"ASSET11","index":"0.000012472337191477"},{"denom":"ASSET12","index":"0.000011231230783378"},{"denom":"ASSET13","index":"0.000003864117010091"},{"denom":"ASSET14","index":"0.000011651016774353"},{"denom":"ASSET15","index":"0.000008329231976204"},{"denom":"ASSET16","index":"0.000005807908663952"},{"denom":"ASSET17","index":"0.000004124853650448"},{"denom":"ASSET18","index":"0.000001964650585090"},{"denom":"ASSET2","index":"0.000003805451266010"},{"denom":"ASSET3","index":"0.000001113345454324"},{"denom":"ASSET4","index":"0.000010477701892746"},{"denom":"ASSET5","index":"0.000000863038279582"},{"denom":"ASSET6","index":"0.000003516033595214"},{"denom":"ASSET7","index":"0.000005385515306574"},{"denom":"ASSET8","index":"0.000007028156140823"},{"denom":"ASSET9","index":"0.000003034974493755"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003044385892570"},{"denom":"ASSET1","index":"0.000025830014188245"},{"denom":"ASSET10","index":"0.000020607856539150"},{"denom":"ASSET11","index":"0.000025666657138152"},{"denom":"ASSET12","index":"0.000024468008636658"},{"denom":"ASSET13","index":"0.000008060303383676"},{"denom":"ASSET14","index":"0.000023559408638801"},{"denom":"ASSET15","index":"0.000018562848593971"},{"denom":"ASSET16","index":"0.000011459854746185"},{"denom":"ASSET17","index":"0.000008991538648143"},{"denom":"ASSET18","index":"0.000003718456390600"},{"denom":"ASSET2","index":"0.000007821717005664"},{"denom":"ASSET3","index":"0.000002173111618200"},{"denom":"ASSET4","index":"0.000020942104557307"},{"denom":"ASSET5","index":"0.000001691598021351"},{"denom":"ASSET6","index":"0.000006831113312915"},{"denom":"ASSET7","index":"0.000010730587410374"},{"denom":"ASSET8","index":"0.000014654605067850"},{"denom":"ASSET9","index":"0.000006220578615076"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001387821916020"},{"denom":"ASSET1","index":"0.000011588015182905"},{"denom":"ASSET10","index":"0.000008073788013584"},{"denom":"ASSET11","index":"0.000011209789038410"},{"denom":"ASSET12","index":"0.000010095957715252"},{"denom":"ASSET13","index":"0.000003472532948668"},{"denom":"ASSET14","index":"0.000010471205701129"},{"denom":"ASSET15","index":"0.000007487090765824"},{"denom":"ASSET16","index":"0.000005220712057474"},{"denom":"ASSET17","index":"0.000003707807479495"},{"denom":"ASSET18","index":"0.000001766048060515"},{"denom":"ASSET2","index":"0.000003418926093543"},{"denom":"ASSET3","index":"0.000001000661295671"},{"denom":"ASSET4","index":"0.000009416937550333"},{"denom":"ASSET5","index":"0.000000774321240698"},{"denom":"ASSET6","index":"0.000003159826293771"},{"denom":"ASSET7","index":"0.000004839507754361"},{"denom":"ASSET8","index":"0.000006316674428923"},{"denom":"ASSET9","index":"0.000002727993294151"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002956721491824"},{"denom":"ASSET1","index":"0.000025136116728129"},{"denom":"ASSET10","index":"0.000020247681325291"},{"denom":"ASSET11","index":"0.000025026479369709"},{"denom":"ASSET12","index":"0.000023957412844230"},{"denom":"ASSET13","index":"0.000007866588644670"},{"denom":"ASSET14","index":"0.000022940688787988"},{"denom":"ASSET15","index":"0.000018203641219753"},{"denom":"ASSET16","index":"0.000011138902531601"},{"denom":"ASSET17","index":"0.000008803888891481"},{"denom":"ASSET18","index":"0.000003602115317706"},{"denom":"ASSET2","index":"0.000007623974866010"},{"denom":"ASSET3","index":"0.000002110544057177"},{"denom":"ASSET4","index":"0.000020374365248917"},{"denom":"ASSET5","index":"0.000001641905652861"},{"denom":"ASSET6","index":"0.000006630874494768"},{"denom":"ASSET7","index":"0.000010436528568948"},{"denom":"ASSET8","index":"0.000014302572224422"},{"denom":"ASSET9","index":"0.000006063325997423"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001500850379058"},{"denom":"ASSET1","index":"0.000012511793460183"},{"denom":"ASSET10","index":"0.000008717304800227"},{"denom":"ASSET11","index":"0.000012103632089176"},{"denom":"ASSET12","index":"0.000010899320696303"},{"denom":"ASSET13","index":"0.000003750781099635"},{"denom":"ASSET14","index":"0.000011306809643305"},{"denom":"ASSET15","index":"0.000008083881387560"},{"denom":"ASSET16","index":"0.000005636258009526"},{"denom":"ASSET17","index":"0.000004002940101492"},{"denom":"ASSET18","index":"0.000001906322054045"},{"denom":"ASSET2","index":"0.000003692952635209"},{"denom":"ASSET3","index":"0.000001079912951956"},{"denom":"ASSET4","index":"0.000010167723378913"},{"denom":"ASSET5","index":"0.000000838512734178"},{"denom":"ASSET6","index":"0.000003412551825143"},{"denom":"ASSET7","index":"0.000005226751790509"},{"denom":"ASSET8","index":"0.000006820396682251"},{"denom":"ASSET9","index":"0.000002945889565704"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003004514310835"},{"denom":"ASSET1","index":"0.000025497942224476"},{"denom":"ASSET10","index":"0.000020385999177782"},{"denom":"ASSET11","index":"0.000025346802479017"},{"denom":"ASSET12","index":"0.000024185328023735"},{"denom":"ASSET13","index":"0.000007962788555043"},{"denom":"ASSET14","index":"0.000023259189454501"},{"denom":"ASSET15","index":"0.000018355567065709"},{"denom":"ASSET16","index":"0.000011309092459120"},{"denom":"ASSET17","index":"0.000008887662321727"},{"denom":"ASSET18","index":"0.000003666570499762"},{"denom":"ASSET2","index":"0.000007723995884874"},{"denom":"ASSET3","index":"0.000002143405494402"},{"denom":"ASSET4","index":"0.000020670641097733"},{"denom":"ASSET5","index":"0.000001670336124344"},{"denom":"ASSET6","index":"0.000006739845385808"},{"denom":"ASSET7","index":"0.000010591422556410"},{"denom":"ASSET8","index":"0.000014475095162856"},{"denom":"ASSET9","index":"0.000006143360978771"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001507842106347"},{"denom":"ASSET1","index":"0.000012572313391156"},{"denom":"ASSET10","index":"0.000008759356679472"},{"denom":"ASSET11","index":"0.000012162445176153"},{"denom":"ASSET12","index":"0.000010952151629736"},{"denom":"ASSET13","index":"0.000003769211161813"},{"denom":"ASSET14","index":"0.000011361231636633"},{"denom":"ASSET15","index":"0.000008123272738112"},{"denom":"ASSET16","index":"0.000005663669344042"},{"denom":"ASSET17","index":"0.000004022225963767"},{"denom":"ASSET18","index":"0.000001916133905138"},{"denom":"ASSET2","index":"0.000003711277866039"},{"denom":"ASSET3","index":"0.000001085756665704"},{"denom":"ASSET4","index":"0.000010217147571101"},{"denom":"ASSET5","index":"0.000000842594465073"},{"denom":"ASSET6","index":"0.000003429493468225"},{"denom":"ASSET7","index":"0.000005252224712828"},{"denom":"ASSET8","index":"0.000006853863583762"},{"denom":"ASSET9","index":"0.000002960115541236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003064659144392"},{"denom":"ASSET1","index":"0.000026014545525120"},{"denom":"ASSET10","index":"0.000020837902255895"},{"denom":"ASSET11","index":"0.000025870951889592"},{"denom":"ASSET12","index":"0.000024704995690840"},{"denom":"ASSET13","index":"0.000008129050348807"},{"denom":"ASSET14","index":"0.000023733606076391"},{"denom":"ASSET15","index":"0.000018755969892396"},{"denom":"ASSET16","index":"0.000011535737727926"},{"denom":"ASSET17","index":"0.000009078938038909"},{"denom":"ASSET18","index":"0.000003738223548700"},{"denom":"ASSET2","index":"0.000007883998416280"},{"denom":"ASSET3","index":"0.000002186926046113"},{"denom":"ASSET4","index":"0.000021089316501471"},{"denom":"ASSET5","index":"0.000001703791082418"},{"denom":"ASSET6","index":"0.000006873778950624"},{"denom":"ASSET7","index":"0.000010805665377904"},{"denom":"ASSET8","index":"0.000014777724141198"},{"denom":"ASSET9","index":"0.000006269886019705"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001016570122529"},{"denom":"ASSET1","index":"0.000008477171470527"},{"denom":"ASSET10","index":"0.000005906463519680"},{"denom":"ASSET11","index":"0.000008200989896911"},{"denom":"ASSET12","index":"0.000007384774710599"},{"denom":"ASSET13","index":"0.000002541117067960"},{"denom":"ASSET14","index":"0.000007660956284215"},{"denom":"ASSET15","index":"0.000005477395717812"},{"denom":"ASSET16","index":"0.000003819073322661"},{"denom":"ASSET17","index":"0.000002711881121289"},{"denom":"ASSET18","index":"0.000001291518742692"},{"denom":"ASSET2","index":"0.000002502279034170"},{"denom":"ASSET3","index":"0.000000731757874738"},{"denom":"ASSET4","index":"0.000006889127422234"},{"denom":"ASSET5","index":"0.000000567775065403"},{"denom":"ASSET6","index":"0.000002312404202309"},{"denom":"ASSET7","index":"0.000003541658795591"},{"denom":"ASSET8","index":"0.000004621109544256"},{"denom":"ASSET9","index":"0.000001996151641449"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002499545170163"},{"denom":"ASSET1","index":"0.000021282413071401"},{"denom":"ASSET10","index":"0.000017412808765385"},{"denom":"ASSET11","index":"0.000021259874812403"},{"denom":"ASSET12","index":"0.000020486111882687"},{"denom":"ASSET13","index":"0.000006694303381301"},{"denom":"ASSET14","index":"0.000019446986985139"},{"denom":"ASSET15","index":"0.000015606004703242"},{"denom":"ASSET16","index":"0.000009412782427040"},{"denom":"ASSET17","index":"0.000007528963649123"},{"denom":"ASSET18","index":"0.000003027066879988"},{"denom":"ASSET2","index":"0.000006477094521478"},{"denom":"ASSET3","index":"0.000001780578331809"},{"denom":"ASSET4","index":"0.000017246051064985"},{"denom":"ASSET5","index":"0.000001387924123500"},{"denom":"ASSET6","index":"0.000005593713918003"},{"denom":"ASSET7","index":"0.000008831780754063"},{"denom":"ASSET8","index":"0.000012169406160300"},{"denom":"ASSET9","index":"0.000005149034362400"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001552339226368"},{"denom":"ASSET1","index":"0.000012948480372324"},{"denom":"ASSET10","index":"0.000009021431734191"},{"denom":"ASSET11","index":"0.000012526515146109"},{"denom":"ASSET12","index":"0.000011279099696349"},{"denom":"ASSET13","index":"0.000003880848065920"},{"denom":"ASSET14","index":"0.000011701064922564"},{"denom":"ASSET15","index":"0.000008365383608761"},{"denom":"ASSET16","index":"0.000005830512213323"},{"denom":"ASSET17","index":"0.000004142651308462"},{"denom":"ASSET18","index":"0.000001971224414436"},{"denom":"ASSET2","index":"0.000003822327341117"},{"denom":"ASSET3","index":"0.000001118053847563"},{"denom":"ASSET4","index":"0.000010521410312050"},{"denom":"ASSET5","index":"0.000000865490719463"},{"denom":"ASSET6","index":"0.000003529723717099"},{"denom":"ASSET7","index":"0.000005408546987108"},{"denom":"ASSET8","index":"0.000007056367396050"},{"denom":"ASSET9","index":"0.000003046157727933"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003043964098015"},{"denom":"ASSET1","index":"0.000025828331615061"},{"denom":"ASSET10","index":"0.000020594675215425"},{"denom":"ASSET11","index":"0.000025661520704142"},{"denom":"ASSET12","index":"0.000024456429429906"},{"denom":"ASSET13","index":"0.000008058244190043"},{"denom":"ASSET14","index":"0.000023555461855486"},{"denom":"ASSET15","index":"0.000018552812657155"},{"denom":"ASSET16","index":"0.000011456604402492"},{"denom":"ASSET17","index":"0.000008987560143691"},{"denom":"ASSET18","index":"0.000003716794339222"},{"denom":"ASSET2","index":"0.000007820148034807"},{"denom":"ASSET3","index":"0.000002173135080244"},{"denom":"ASSET4","index":"0.000020938599170426"},{"denom":"ASSET5","index":"0.000001690207511083"},{"denom":"ASSET6","index":"0.000006829800145738"},{"denom":"ASSET7","index":"0.000010729300481432"},{"denom":"ASSET8","index":"0.000014648719853803"},{"denom":"ASSET9","index":"0.000006217447736766"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000000977108719668"},{"denom":"ASSET1","index":"0.000008146517162771"},{"denom":"ASSET10","index":"0.000005675852121603"},{"denom":"ASSET11","index":"0.000007881108738917"},{"denom":"ASSET12","index":"0.000007096716963958"},{"denom":"ASSET13","index":"0.000002441926549413"},{"denom":"ASSET14","index":"0.000007362125387813"},{"denom":"ASSET15","index":"0.000005263370239944"},{"denom":"ASSET16","index":"0.000003670074447059"},{"denom":"ASSET17","index":"0.000002605905002368"},{"denom":"ASSET18","index":"0.000001241671893765"},{"denom":"ASSET2","index":"0.000002404735560083"},{"denom":"ASSET3","index":"0.000000703247798239"},{"denom":"ASSET4","index":"0.000006620841350486"},{"denom":"ASSET5","index":"0.000000546031343344"},{"denom":"ASSET6","index":"0.000002222161612464"},{"denom":"ASSET7","index":"0.000003402975523689"},{"denom":"ASSET8","index":"0.000004440942225898"},{"denom":"ASSET9","index":"0.000001917871699764"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002320380931676"},{"denom":"ASSET1","index":"0.000019748951316256"},{"denom":"ASSET10","index":"0.000016101172379351"},{"denom":"ASSET11","index":"0.000019714000020718"},{"denom":"ASSET12","index":"0.000018967805559844"},{"denom":"ASSET13","index":"0.000006204998608741"},{"denom":"ASSET14","index":"0.000018041457784230"},{"denom":"ASSET15","index":"0.000014440911570898"},{"denom":"ASSET16","index":"0.000008738221404310"},{"denom":"ASSET17","index":"0.000006970584758543"},{"denom":"ASSET18","index":"0.000002814127990287"},{"denom":"ASSET2","index":"0.000006006105656449"},{"denom":"ASSET3","index":"0.000001653724297068"},{"denom":"ASSET4","index":"0.000016005284799403"},{"denom":"ASSET5","index":"0.000001288969102308"},{"denom":"ASSET6","index":"0.000005195185892122"},{"denom":"ASSET7","index":"0.000008196101819524"},{"denom":"ASSET8","index":"0.000011280171312915"},{"denom":"ASSET9","index":"0.000004774394171461"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001745798220012"},{"denom":"ASSET1","index":"0.000014553743296829"},{"denom":"ASSET10","index":"0.000010139438249561"},{"denom":"ASSET11","index":"0.000014079320164724"},{"denom":"ASSET12","index":"0.000012678243118663"},{"denom":"ASSET13","index":"0.000004363016060013"},{"denom":"ASSET14","index":"0.000013152173087429"},{"denom":"ASSET15","index":"0.000009403145384454"},{"denom":"ASSET16","index":"0.000006556113428486"},{"denom":"ASSET17","index":"0.000004655955083371"},{"denom":"ASSET18","index":"0.000002217755535422"},{"denom":"ASSET2","index":"0.000004295945845911"},{"denom":"ASSET3","index":"0.000001256580187737"},{"denom":"ASSET4","index":"0.000011827536358912"},{"denom":"ASSET5","index":"0.000000975477084515"},{"denom":"ASSET6","index":"0.000003969964878841"},{"denom":"ASSET7","index":"0.000006080210806364"},{"denom":"ASSET8","index":"0.000007934011797614"},{"denom":"ASSET9","index":"0.000003426498879278"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003342998947188"},{"denom":"ASSET1","index":"0.000028345782457833"},{"denom":"ASSET10","index":"0.000022532322238539"},{"denom":"ASSET11","index":"0.000028144588841629"},{"denom":"ASSET12","index":"0.000026788988923046"},{"denom":"ASSET13","index":"0.000008836278349189"},{"denom":"ASSET14","index":"0.000025846526421467"},{"denom":"ASSET15","index":"0.000020312521464953"},{"denom":"ASSET16","index":"0.000012581099317360"},{"denom":"ASSET17","index":"0.000009844015126225"},{"denom":"ASSET18","index":"0.000004087085525414"},{"denom":"ASSET2","index":"0.000008577030596387"},{"denom":"ASSET3","index":"0.000002386540105172"},{"denom":"ASSET4","index":"0.000022982635628207"},{"denom":"ASSET5","index":"0.000001858980311097"},{"denom":"ASSET6","index":"0.000007503977785171"},{"denom":"ASSET7","index":"0.000011778054778213"},{"denom":"ASSET8","index":"0.000016064148587518"},{"denom":"ASSET9","index":"0.000006822246648031"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001535240763659"},{"denom":"ASSET1","index":"0.000012802535686671"},{"denom":"ASSET10","index":"0.000008918976928097"},{"denom":"ASSET11","index":"0.000012384847277788"},{"denom":"ASSET12","index":"0.000011152366284839"},{"denom":"ASSET13","index":"0.000003838101909148"},{"denom":"ASSET14","index":"0.000011569197017318"},{"denom":"ASSET15","index":"0.000008271431242866"},{"denom":"ASSET16","index":"0.000005767016142371"},{"denom":"ASSET17","index":"0.000004095404830432"},{"denom":"ASSET18","index":"0.000001951213819735"},{"denom":"ASSET2","index":"0.000003778922237253"},{"denom":"ASSET3","index":"0.000001105544885116"},{"denom":"ASSET4","index":"0.000010403614783903"},{"denom":"ASSET5","index":"0.000000857676404279"},{"denom":"ASSET6","index":"0.000003491600641819"},{"denom":"ASSET7","index":"0.000005348470057083"},{"denom":"ASSET8","index":"0.000006978912901618"},{"denom":"ASSET9","index":"0.000003013874884636"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003086246918243"},{"denom":"ASSET1","index":"0.000026194228204796"},{"denom":"ASSET10","index":"0.000020951998769875"},{"denom":"ASSET11","index":"0.000026042273492864"},{"denom":"ASSET12","index":"0.000024853724280460"},{"denom":"ASSET13","index":"0.000008181454895403"},{"denom":"ASSET14","index":"0.000023895275980533"},{"denom":"ASSET15","index":"0.000018864347888264"},{"denom":"ASSET16","index":"0.000011616907749245"},{"denom":"ASSET17","index":"0.000009133094250657"},{"denom":"ASSET18","index":"0.000003766346411006"},{"denom":"ASSET2","index":"0.000007935833032906"},{"denom":"ASSET3","index":"0.000002202232138461"},{"denom":"ASSET4","index":"0.000021234941701767"},{"denom":"ASSET5","index":"0.000001715417631736"},{"denom":"ASSET6","index":"0.000006923101305069"},{"denom":"ASSET7","index":"0.000010881195638563"},{"denom":"ASSET8","index":"0.000014873239564067"},{"denom":"ASSET9","index":"0.000006310901439146"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001694764141112"},{"denom":"ASSET1","index":"0.000014130580032100"},{"denom":"ASSET10","index":"0.000009844524497723"},{"denom":"ASSET11","index":"0.000013669508873851"},{"denom":"ASSET12","index":"0.000012309527666765"},{"denom":"ASSET13","index":"0.000004236016804025"},{"denom":"ASSET14","index":"0.000012769407426673"},{"denom":"ASSET15","index":"0.000009129685492685"},{"denom":"ASSET16","index":"0.000006365641339869"},{"denom":"ASSET17","index":"0.000004520761007698"},{"denom":"ASSET18","index":"0.000002153452502679"},{"denom":"ASSET2","index":"0.000004171085594400"},{"denom":"ASSET3","index":"0.000001219991901933"},{"denom":"ASSET4","index":"0.000011483292916774"},{"denom":"ASSET5","index":"0.000000947161681676"},{"denom":"ASSET6","index":"0.000003854173635500"},{"denom":"ASSET7","index":"0.000005903378783277"},{"denom":"ASSET8","index":"0.000007702985978462"},{"denom":"ASSET9","index":"0.000003326979869284"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003333609736915"},{"denom":"ASSET1","index":"0.000028281729059652"},{"denom":"ASSET10","index":"0.000022560289398652"},{"denom":"ASSET11","index":"0.000028101042421314"},{"denom":"ASSET12","index":"0.000026787599659919"},{"denom":"ASSET13","index":"0.000008826015241086"},{"denom":"ASSET14","index":"0.000025794402991537"},{"denom":"ASSET15","index":"0.000020323143219667"},{"denom":"ASSET16","index":"0.000012547562311789"},{"denom":"ASSET17","index":"0.000009844220733470"},{"denom":"ASSET18","index":"0.000004071528772633"},{"denom":"ASSET2","index":"0.000008563776406339"},{"denom":"ASSET3","index":"0.000002379222276435"},{"denom":"ASSET4","index":"0.000022929058250150"},{"denom":"ASSET5","index":"0.000001853699834530"},{"denom":"ASSET6","index":"0.000007480326246914"},{"denom":"ASSET7","index":"0.000011749530638760"},{"denom":"ASSET8","index":"0.000016044906214881"},{"denom":"ASSET9","index":"0.000006811209452101"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001763265776240"},{"denom":"ASSET1","index":"0.000014701143889842"},{"denom":"ASSET10","index":"0.000010242267715158"},{"denom":"ASSET11","index":"0.000014221824092125"},{"denom":"ASSET12","index":"0.000012807154532407"},{"denom":"ASSET13","index":"0.000004407037513175"},{"denom":"ASSET14","index":"0.000013285723045174"},{"denom":"ASSET15","index":"0.000009498495615253"},{"denom":"ASSET16","index":"0.000006622576828953"},{"denom":"ASSET17","index":"0.000004703043783239"},{"denom":"ASSET18","index":"0.000002240331719108"},{"denom":"ASSET2","index":"0.000004339421867729"},{"denom":"ASSET3","index":"0.000001269671564485"},{"denom":"ASSET4","index":"0.000011947684550294"},{"denom":"ASSET5","index":"0.000000984934568662"},{"denom":"ASSET6","index":"0.000004010359059893"},{"denom":"ASSET7","index":"0.000006141754461338"},{"denom":"ASSET8","index":"0.000008013956555240"},{"denom":"ASSET9","index":"0.000003461169761882"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003372790294110"},{"denom":"ASSET1","index":"0.000028600279733511"},{"denom":"ASSET10","index":"0.000022731421090197"},{"denom":"ASSET11","index":"0.000028396190348540"},{"denom":"ASSET12","index":"0.000027027392524280"},{"denom":"ASSET13","index":"0.000008915082315276"},{"denom":"ASSET14","index":"0.000026078776667620"},{"denom":"ASSET15","index":"0.000020492230414373"},{"denom":"ASSET16","index":"0.000012694274413467"},{"denom":"ASSET17","index":"0.000009931274832025"},{"denom":"ASSET18","index":"0.000004123939856338"},{"denom":"ASSET2","index":"0.000008653658587521"},{"denom":"ASSET3","index":"0.000002407864000528"},{"denom":"ASSET4","index":"0.000023189126720885"},{"denom":"ASSET5","index":"0.000001875419633234"},{"denom":"ASSET6","index":"0.000007571725921487"},{"denom":"ASSET7","index":"0.000011883748947250"},{"denom":"ASSET8","index":"0.000016207221904670"},{"denom":"ASSET9","index":"0.000006883201227023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001453309126336"},{"denom":"ASSET1","index":"0.000012116886392617"},{"denom":"ASSET10","index":"0.000008441923956558"},{"denom":"ASSET11","index":"0.000011721955689254"},{"denom":"ASSET12","index":"0.000010555542874101"},{"denom":"ASSET13","index":"0.000003632376264868"},{"denom":"ASSET14","index":"0.000010950025301978"},{"denom":"ASSET15","index":"0.000007829131366891"},{"denom":"ASSET16","index":"0.000005458650595742"},{"denom":"ASSET17","index":"0.000003876686404859"},{"denom":"ASSET18","index":"0.000001846446727754"},{"denom":"ASSET2","index":"0.000003576790104576"},{"denom":"ASSET3","index":"0.000001046274984845"},{"denom":"ASSET4","index":"0.000009847267605868"},{"denom":"ASSET5","index":"0.000000812275181037"},{"denom":"ASSET6","index":"0.000003305135159925"},{"denom":"ASSET7","index":"0.000005061926790434"},{"denom":"ASSET8","index":"0.000006605339289501"},{"denom":"ASSET9","index":"0.000002852825194325"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002846126280344"},{"denom":"ASSET1","index":"0.000024142729904188"},{"denom":"ASSET10","index":"0.000019247649074564"},{"denom":"ASSET11","index":"0.000023985879136349"},{"denom":"ASSET12","index":"0.000022859091275790"},{"denom":"ASSET13","index":"0.000007532792628817"},{"denom":"ASSET14","index":"0.000022018595952129"},{"denom":"ASSET15","index":"0.000017341431925331"},{"denom":"ASSET16","index":"0.000010711928951149"},{"denom":"ASSET17","index":"0.000008400535387767"},{"denom":"ASSET18","index":"0.000003476353193421"},{"denom":"ASSET2","index":"0.000007309791035362"},{"denom":"ASSET3","index":"0.000002031285314481"},{"denom":"ASSET4","index":"0.000019573873127075"},{"denom":"ASSET5","index":"0.000001582650339951"},{"denom":"ASSET6","index":"0.000006386635795582"},{"denom":"ASSET7","index":"0.000010030235680714"},{"denom":"ASSET8","index":"0.000013694243666513"},{"denom":"ASSET9","index":"0.000005813799926422"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001542334439671"},{"denom":"ASSET1","index":"0.000012860022908304"},{"denom":"ASSET10","index":"0.000008959505058412"},{"denom":"ASSET11","index":"0.000012440701863130"},{"denom":"ASSET12","index":"0.000011202637482986"},{"denom":"ASSET13","index":"0.000003855293405849"},{"denom":"ASSET14","index":"0.000011621234937056"},{"denom":"ASSET15","index":"0.000008308996655285"},{"denom":"ASSET16","index":"0.000005793070384239"},{"denom":"ASSET17","index":"0.000004114339021332"},{"denom":"ASSET18","index":"0.000001959846507084"},{"denom":"ASSET2","index":"0.000003796320730815"},{"denom":"ASSET3","index":"0.000001110350550164"},{"denom":"ASSET4","index":"0.000010450826325201"},{"denom":"ASSET5","index":"0.000000861797005699"},{"denom":"ASSET6","index":"0.000003507969675592"},{"denom":"ASSET7","index":"0.000005372663952407"},{"denom":"ASSET8","index":"0.000007010512417899"},{"denom":"ASSET9","index":"0.000003027866977623"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003036454064443"},{"denom":"ASSET1","index":"0.000025762443856573"},{"denom":"ASSET10","index":"0.000020552854458451"},{"denom":"ASSET11","index":"0.000025598594042577"},{"denom":"ASSET12","index":"0.000024403233064712"},{"denom":"ASSET13","index":"0.000008040226829205"},{"denom":"ASSET14","index":"0.000023496526683137"},{"denom":"ASSET15","index":"0.000018514610345002"},{"denom":"ASSET16","index":"0.000011429420030088"},{"denom":"ASSET17","index":"0.000008967792958730"},{"denom":"ASSET18","index":"0.000003708688180539"},{"denom":"ASSET2","index":"0.000007801450355100"},{"denom":"ASSET3","index":"0.000002167197324698"},{"denom":"ASSET4","index":"0.000020886439041228"},{"denom":"ASSET5","index":"0.000001688395026424"},{"denom":"ASSET6","index":"0.000006814112030993"},{"denom":"ASSET7","index":"0.000010703097412338"},{"denom":"ASSET8","index":"0.000014616213118562"},{"denom":"ASSET9","index":"0.000006204650488693"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001802604811891"},{"denom":"ASSET1","index":"0.000015041134377282"},{"denom":"ASSET10","index":"0.000010478421042795"},{"denom":"ASSET11","index":"0.000014549893343095"},{"denom":"ASSET12","index":"0.000013101148598203"},{"denom":"ASSET13","index":"0.000004508593559534"},{"denom":"ASSET14","index":"0.000013592389632390"},{"denom":"ASSET15","index":"0.000009716581133843"},{"denom":"ASSET16","index":"0.000006773297988330"},{"denom":"ASSET17","index":"0.000004812496911192"},{"denom":"ASSET18","index":"0.000002289682786467"},{"denom":"ASSET2","index":"0.000004437821546134"},{"denom":"ASSET3","index":"0.000001298874598869"},{"denom":"ASSET4","index":"0.000012222743020122"},{"denom":"ASSET5","index":"0.000001007460426045"},{"denom":"ASSET6","index":"0.000004100613717582"},{"denom":"ASSET7","index":"0.000006282056954143"},{"denom":"ASSET8","index":"0.000008197064375552"},{"denom":"ASSET9","index":"0.000003538600669994"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003500919125422"},{"denom":"ASSET1","index":"0.000029708744113596"},{"denom":"ASSET10","index":"0.000023658219501850"},{"denom":"ASSET11","index":"0.000029508250092955"},{"denom":"ASSET12","index":"0.000028107871580940"},{"denom":"ASSET13","index":"0.000009266072102552"},{"denom":"ASSET14","index":"0.000027092614384257"},{"denom":"ASSET15","index":"0.000021318431245277"},{"denom":"ASSET16","index":"0.000013180724612002"},{"denom":"ASSET17","index":"0.000010330094773179"},{"denom":"ASSET18","index":"0.000004277644880979"},{"denom":"ASSET2","index":"0.000008990842831989"},{"denom":"ASSET3","index":"0.000002500335792843"},{"denom":"ASSET4","index":"0.000024086210482120"},{"denom":"ASSET5","index":"0.000001946754653173"},{"denom":"ASSET6","index":"0.000007858889858659"},{"denom":"ASSET7","index":"0.000012341576470869"},{"denom":"ASSET8","index":"0.000016843078118646"},{"denom":"ASSET9","index":"0.000007150129263591"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001563811170888"},{"denom":"ASSET1","index":"0.000013038374863878"},{"denom":"ASSET10","index":"0.000009083864212622"},{"denom":"ASSET11","index":"0.000012612362006834"},{"denom":"ASSET12","index":"0.000011358137819015"},{"denom":"ASSET13","index":"0.000003908204905926"},{"denom":"ASSET14","index":"0.000011781504633469"},{"denom":"ASSET15","index":"0.000008423676586333"},{"denom":"ASSET16","index":"0.000005872891529250"},{"denom":"ASSET17","index":"0.000004170163122369"},{"denom":"ASSET18","index":"0.000001987177985342"},{"denom":"ASSET2","index":"0.000003848668947643"},{"denom":"ASSET3","index":"0.000001125891122188"},{"denom":"ASSET4","index":"0.000010596077552999"},{"denom":"ASSET5","index":"0.000000873194054811"},{"denom":"ASSET6","index":"0.000003556281241411"},{"denom":"ASSET7","index":"0.000005446878672206"},{"denom":"ASSET8","index":"0.000007107270397641"},{"denom":"ASSET9","index":"0.000003069409404789"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003311345528520"},{"denom":"ASSET1","index":"0.000028134750769747"},{"denom":"ASSET10","index":"0.000022648872120201"},{"denom":"ASSET11","index":"0.000028007957662740"},{"denom":"ASSET12","index":"0.000026803793052874"},{"denom":"ASSET13","index":"0.000008804941803873"},{"denom":"ASSET14","index":"0.000025676450668466"},{"denom":"ASSET15","index":"0.000020365161363483"},{"denom":"ASSET16","index":"0.000012467103206876"},{"denom":"ASSET17","index":"0.000009848512066991"},{"denom":"ASSET18","index":"0.000004032794375330"},{"denom":"ASSET2","index":"0.000008534928074651"},{"denom":"ASSET3","index":"0.000002362590241163"},{"denom":"ASSET4","index":"0.000022806063702805"},{"denom":"ASSET5","index":"0.000001840254083448"},{"denom":"ASSET6","index":"0.000007424521355960"},{"denom":"ASSET7","index":"0.000011683846998076"},{"denom":"ASSET8","index":"0.000016006498096466"},{"denom":"ASSET9","index":"0.000006786333067798"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001600184479142"},{"denom":"ASSET1","index":"0.000013342157474081"},{"denom":"ASSET10","index":"0.000009295060662992"},{"denom":"ASSET11","index":"0.000012907134644369"},{"denom":"ASSET12","index":"0.000011622469236023"},{"denom":"ASSET13","index":"0.000003999732516397"},{"denom":"ASSET14","index":"0.000012056763384279"},{"denom":"ASSET15","index":"0.000008620301633991"},{"denom":"ASSET16","index":"0.000006010164655719"},{"denom":"ASSET17","index":"0.000004268615973958"},{"denom":"ASSET18","index":"0.000002033021264483"},{"denom":"ASSET2","index":"0.000003938523274026"},{"denom":"ASSET3","index":"0.000001152045383207"},{"denom":"ASSET4","index":"0.000010842780077243"},{"denom":"ASSET5","index":"0.000000894092147498"},{"denom":"ASSET6","index":"0.000003639035195279"},{"denom":"ASSET7","index":"0.000005573684463094"},{"denom":"ASSET8","index":"0.000007272969620361"},{"denom":"ASSET9","index":"0.000003141345760282"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003037978324998"},{"denom":"ASSET1","index":"0.000025756345113171"},{"denom":"ASSET10","index":"0.000020449699671521"},{"denom":"ASSET11","index":"0.000025567125107120"},{"denom":"ASSET12","index":"0.000024323299608917"},{"denom":"ASSET13","index":"0.000008026089638757"},{"denom":"ASSET14","index":"0.000023482777870484"},{"denom":"ASSET15","index":"0.000018439819094125"},{"denom":"ASSET16","index":"0.000011433094032389"},{"denom":"ASSET17","index":"0.000008938487942114"},{"denom":"ASSET18","index":"0.000003715472889790"},{"denom":"ASSET2","index":"0.000007791978720736"},{"denom":"ASSET3","index":"0.000002168844641333"},{"denom":"ASSET4","index":"0.000020883291069830"},{"denom":"ASSET5","index":"0.000001689134510364"},{"denom":"ASSET6","index":"0.000006819968009550"},{"denom":"ASSET7","index":"0.000010702337477897"},{"denom":"ASSET8","index":"0.000014590947163921"},{"denom":"ASSET9","index":"0.000006197850437110"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001732863553160"},{"denom":"ASSET1","index":"0.000014476512568697"},{"denom":"ASSET10","index":"0.000010084697727409"},{"denom":"ASSET11","index":"0.000014004946421444"},{"denom":"ASSET12","index":"0.000012607292539223"},{"denom":"ASSET13","index":"0.000004334999642824"},{"denom":"ASSET14","index":"0.000013078858686476"},{"denom":"ASSET15","index":"0.000009351781667220"},{"denom":"ASSET16","index":"0.000006516703263852"},{"denom":"ASSET17","index":"0.000004630438674838"},{"denom":"ASSET18","index":"0.000002204429700414"},{"denom":"ASSET2","index":"0.000004272502924514"},{"denom":"ASSET3","index":"0.000001249934366214"},{"denom":"ASSET4","index":"0.000011760746082105"},{"denom":"ASSET5","index":"0.000000965858373893"},{"denom":"ASSET6","index":"0.000003948656293267"},{"denom":"ASSET7","index":"0.000006045137116599"},{"denom":"ASSET8","index":"0.000007891631066688"},{"denom":"ASSET9","index":"0.000003403230388010"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003203314564743"},{"denom":"ASSET1","index":"0.000027174750089688"},{"denom":"ASSET10","index":"0.000021494761442080"},{"denom":"ASSET11","index":"0.000026954579685264"},{"denom":"ASSET12","index":"0.000025598519259277"},{"denom":"ASSET13","index":"0.000008453363478510"},{"denom":"ASSET14","index":"0.000024766008219885"},{"denom":"ASSET15","index":"0.000019395989679368"},{"denom":"ASSET16","index":"0.000012063312986412"},{"denom":"ASSET17","index":"0.000009406957788586"},{"denom":"ASSET18","index":"0.000003925664786352"},{"denom":"ASSET2","index":"0.000008214094571203"},{"denom":"ASSET3","index":"0.000002289770772075"},{"denom":"ASSET4","index":"0.000022031271429646"},{"denom":"ASSET5","index":"0.000001779377444361"},{"denom":"ASSET6","index":"0.000007202120906665"},{"denom":"ASSET7","index":"0.000011290805949933"},{"denom":"ASSET8","index":"0.000015376618183469"},{"denom":"ASSET9","index":"0.000006529467958809"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001687731873143"},{"denom":"ASSET1","index":"0.000014069560961171"},{"denom":"ASSET10","index":"0.000009802495056563"},{"denom":"ASSET11","index":"0.000013610740912442"},{"denom":"ASSET12","index":"0.000012256373563096"},{"denom":"ASSET13","index":"0.000004217751625940"},{"denom":"ASSET14","index":"0.000012714404583367"},{"denom":"ASSET15","index":"0.000009090791386823"},{"denom":"ASSET16","index":"0.000006338265608675"},{"denom":"ASSET17","index":"0.000004501407356839"},{"denom":"ASSET18","index":"0.000002144184836496"},{"denom":"ASSET2","index":"0.000004153051292327"},{"denom":"ASSET3","index":"0.000001214709312157"},{"denom":"ASSET4","index":"0.000011433811394910"},{"denom":"ASSET5","index":"0.000000942889008137"},{"denom":"ASSET6","index":"0.000003837834423079"},{"denom":"ASSET7","index":"0.000005877867503028"},{"denom":"ASSET8","index":"0.000007669751132718"},{"denom":"ASSET9","index":"0.000003312735983819"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003310751488522"},{"denom":"ASSET1","index":"0.000028084250149300"},{"denom":"ASSET10","index":"0.000022395324527460"},{"denom":"ASSET11","index":"0.000027902986790638"},{"denom":"ASSET12","index":"0.000026594787286768"},{"denom":"ASSET13","index":"0.000008763085936534"},{"denom":"ASSET14","index":"0.000025613920456358"},{"denom":"ASSET15","index":"0.000020176020856033"},{"denom":"ASSET16","index":"0.000012460451689171"},{"denom":"ASSET17","index":"0.000009773335616478"},{"denom":"ASSET18","index":"0.000004043661907525"},{"denom":"ASSET2","index":"0.000008503271494062"},{"denom":"ASSET3","index":"0.000002362859659779"},{"denom":"ASSET4","index":"0.000022769116693783"},{"denom":"ASSET5","index":"0.000001840413908887"},{"denom":"ASSET6","index":"0.000007429033260494"},{"denom":"ASSET7","index":"0.000011667535172652"},{"denom":"ASSET8","index":"0.000015931047386954"},{"denom":"ASSET9","index":"0.000006763232815972"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001411639939639"},{"denom":"ASSET1","index":"0.000011770559134781"},{"denom":"ASSET10","index":"0.000008200405560598"},{"denom":"ASSET11","index":"0.000011386782830640"},{"denom":"ASSET12","index":"0.000010253700018254"},{"denom":"ASSET13","index":"0.000003528795747429"},{"denom":"ASSET14","index":"0.000010636868119061"},{"denom":"ASSET15","index":"0.000007604974496011"},{"denom":"ASSET16","index":"0.000005302316671163"},{"denom":"ASSET17","index":"0.000003765386844594"},{"denom":"ASSET18","index":"0.000001793591633776"},{"denom":"ASSET2","index":"0.000003474665650649"},{"denom":"ASSET3","index":"0.000001016307772140"},{"denom":"ASSET4","index":"0.000009565822046806"},{"denom":"ASSET5","index":"0.000000788839724994"},{"denom":"ASSET6","index":"0.000003210705403426"},{"denom":"ASSET7","index":"0.000004917323960353"},{"denom":"ASSET8","index":"0.000006416545180176"},{"denom":"ASSET9","index":"0.000002771582595835"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002915106026686"},{"denom":"ASSET1","index":"0.000024751938975568"},{"denom":"ASSET10","index":"0.000019864528416862"},{"denom":"ASSET11","index":"0.000024625253839727"},{"denom":"ASSET12","index":"0.000023534700266806"},{"denom":"ASSET13","index":"0.000007739190454504"},{"denom":"ASSET14","index":"0.000022584902384729"},{"denom":"ASSET15","index":"0.000017872912229645"},{"denom":"ASSET16","index":"0.000010972881933217"},{"denom":"ASSET17","index":"0.000008648586457086"},{"denom":"ASSET18","index":"0.000003552999450219"},{"denom":"ASSET2","index":"0.000007504215303421"},{"denom":"ASSET3","index":"0.000002079538758775"},{"denom":"ASSET4","index":"0.000020065180146540"},{"denom":"ASSET5","index":"0.000001620267199228"},{"denom":"ASSET6","index":"0.000006536798446662"},{"denom":"ASSET7","index":"0.000010280222742310"},{"denom":"ASSET8","index":"0.000014068743113537"},{"denom":"ASSET9","index":"0.000005967789042866"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001670929391506"},{"denom":"ASSET1","index":"0.000013946161101263"},{"denom":"ASSET10","index":"0.000009716355120388"},{"denom":"ASSET11","index":"0.000013489421488305"},{"denom":"ASSET12","index":"0.000012147571569489"},{"denom":"ASSET13","index":"0.000004178741924768"},{"denom":"ASSET14","index":"0.000012601474290441"},{"denom":"ASSET15","index":"0.000009009969010905"},{"denom":"ASSET16","index":"0.000006280878901179"},{"denom":"ASSET17","index":"0.000004459594233357"},{"denom":"ASSET18","index":"0.000002124832112458"},{"denom":"ASSET2","index":"0.000004116330300637"},{"denom":"ASSET3","index":"0.000001202842210524"},{"denom":"ASSET4","index":"0.000011333383563781"},{"denom":"ASSET5","index":"0.000000933337469958"},{"denom":"ASSET6","index":"0.000003804272179982"},{"denom":"ASSET7","index":"0.000005824139288221"},{"denom":"ASSET8","index":"0.000007600033683947"},{"denom":"ASSET9","index":"0.000003282284050887"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003306866574231"},{"denom":"ASSET1","index":"0.000028073670524533"},{"denom":"ASSET10","index":"0.000022410378668975"},{"denom":"ASSET11","index":"0.000027896117796052"},{"denom":"ASSET12","index":"0.000026601615360568"},{"denom":"ASSET13","index":"0.000008760019105133"},{"denom":"ASSET14","index":"0.000025604072816608"},{"denom":"ASSET15","index":"0.000020183975077340"},{"denom":"ASSET16","index":"0.000012452378452775"},{"denom":"ASSET17","index":"0.000009773941069454"},{"denom":"ASSET18","index":"0.000004038323507821"},{"denom":"ASSET2","index":"0.000008501686860316"},{"denom":"ASSET3","index":"0.000002358773872569"},{"denom":"ASSET4","index":"0.000022758821093429"},{"denom":"ASSET5","index":"0.000001837837668790"},{"denom":"ASSET6","index":"0.000007423905647148"},{"denom":"ASSET7","index":"0.000011659308440973"},{"denom":"ASSET8","index":"0.000015926660063085"},{"denom":"ASSET9","index":"0.000006759875068056"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001598361255475"},{"denom":"ASSET1","index":"0.000013324868720531"},{"denom":"ASSET10","index":"0.000009283863630055"},{"denom":"ASSET11","index":"0.000012890721875256"},{"denom":"ASSET12","index":"0.000011607749807828"},{"denom":"ASSET13","index":"0.000003994929715268"},{"denom":"ASSET14","index":"0.000012041896653103"},{"denom":"ASSET15","index":"0.000008609605674538"},{"denom":"ASSET16","index":"0.000006002777756047"},{"denom":"ASSET17","index":"0.000004262945630213"},{"denom":"ASSET18","index":"0.000002030561253910"},{"denom":"ASSET2","index":"0.000003933279565341"},{"denom":"ASSET3","index":"0.000001150586482321"},{"denom":"ASSET4","index":"0.000010829011071909"},{"denom":"ASSET5","index":"0.000000892953750521"},{"denom":"ASSET6","index":"0.000003634763049905"},{"denom":"ASSET7","index":"0.000005566684063932"},{"denom":"ASSET8","index":"0.000007263685559290"},{"denom":"ASSET9","index":"0.000003137668156809"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003119961272076"},{"denom":"ASSET1","index":"0.000026462428012801"},{"denom":"ASSET10","index":"0.000021088828135750"},{"denom":"ASSET11","index":"0.000026288818556387"},{"denom":"ASSET12","index":"0.000025049012446876"},{"denom":"ASSET13","index":"0.000008256026418292"},{"denom":"ASSET14","index":"0.000024133914778951"},{"denom":"ASSET15","index":"0.000019001193386697"},{"denom":"ASSET16","index":"0.000011741691861213"},{"denom":"ASSET17","index":"0.000009205139483526"},{"denom":"ASSET18","index":"0.000003811157018018"},{"denom":"ASSET2","index":"0.000008011229275486"},{"denom":"ASSET3","index":"0.000002226652147557"},{"denom":"ASSET4","index":"0.000021454928269907"},{"denom":"ASSET5","index":"0.000001734689929917"},{"denom":"ASSET6","index":"0.000007001091110949"},{"denom":"ASSET7","index":"0.000010994186615549"},{"denom":"ASSET8","index":"0.000015007966738007"},{"denom":"ASSET9","index":"0.000006372340046203"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001543375593884"},{"denom":"ASSET1","index":"0.000012871309378663"},{"denom":"ASSET10","index":"0.000008967332198598"},{"denom":"ASSET11","index":"0.000012451619524186"},{"denom":"ASSET12","index":"0.000011213472915376"},{"denom":"ASSET13","index":"0.000003858438984711"},{"denom":"ASSET14","index":"0.000011631932007817"},{"denom":"ASSET15","index":"0.000008316259081242"},{"denom":"ASSET16","index":"0.000005798119954378"},{"denom":"ASSET17","index":"0.000004118129774432"},{"denom":"ASSET18","index":"0.000001961834686325"},{"denom":"ASSET2","index":"0.000003799362406955"},{"denom":"ASSET3","index":"0.000001111378119041"},{"denom":"ASSET4","index":"0.000010460246548983"},{"denom":"ASSET5","index":"0.000000862764187650"},{"denom":"ASSET6","index":"0.000003511364090393"},{"denom":"ASSET7","index":"0.000005377199337864"},{"denom":"ASSET8","index":"0.000007016574370602"},{"denom":"ASSET9","index":"0.000003030136134086"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003061984062566"},{"denom":"ASSET1","index":"0.000025984754387841"},{"denom":"ASSET10","index":"0.000020750278468036"},{"denom":"ASSET11","index":"0.000025825260107338"},{"denom":"ASSET12","index":"0.000024630365005548"},{"denom":"ASSET13","index":"0.000008111503841622"},{"denom":"ASSET14","index":"0.000023701848593669"},{"denom":"ASSET15","index":"0.000018689068915475"},{"denom":"ASSET16","index":"0.000011526541772952"},{"denom":"ASSET17","index":"0.000009050861170220"},{"denom":"ASSET18","index":"0.000003739265665267"},{"denom":"ASSET2","index":"0.000007869809789784"},{"denom":"ASSET3","index":"0.000002185113944095"},{"denom":"ASSET4","index":"0.000021066477214749"},{"denom":"ASSET5","index":"0.000001702392649313"},{"denom":"ASSET6","index":"0.000006871251000760"},{"denom":"ASSET7","index":"0.000010794622225013"},{"denom":"ASSET8","index":"0.000014746923085504"},{"denom":"ASSET9","index":"0.000006258895459680"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001745217677213"},{"denom":"ASSET1","index":"0.000014553842410819"},{"denom":"ASSET10","index":"0.000010139729507131"},{"denom":"ASSET11","index":"0.000014078681363843"},{"denom":"ASSET12","index":"0.000012678362515121"},{"denom":"ASSET13","index":"0.000004362304066790"},{"denom":"ASSET14","index":"0.000013152043309614"},{"denom":"ASSET15","index":"0.000009402563770700"},{"denom":"ASSET16","index":"0.000006556038246289"},{"denom":"ASSET17","index":"0.000004655394058383"},{"denom":"ASSET18","index":"0.000002217418219224"},{"denom":"ASSET2","index":"0.000004295692705065"},{"denom":"ASSET3","index":"0.000001256734357891"},{"denom":"ASSET4","index":"0.000011827217337515"},{"denom":"ASSET5","index":"0.000000975486386160"},{"denom":"ASSET6","index":"0.000003970037158850"},{"denom":"ASSET7","index":"0.000006079396946830"},{"denom":"ASSET8","index":"0.000007932673055287"},{"denom":"ASSET9","index":"0.000003426784497665"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003296605577903"},{"denom":"ASSET1","index":"0.000027950980635352"},{"denom":"ASSET10","index":"0.000022177590033485"},{"denom":"ASSET11","index":"0.000027741245317152"},{"denom":"ASSET12","index":"0.000026384837371861"},{"denom":"ASSET13","index":"0.000008707523198290"},{"denom":"ASSET14","index":"0.000025482773879389"},{"denom":"ASSET15","index":"0.000019999205716580"},{"denom":"ASSET16","index":"0.000012408342313410"},{"denom":"ASSET17","index":"0.000009694954350389"},{"denom":"ASSET18","index":"0.000004033447725414"},{"denom":"ASSET2","index":"0.000008454290496983"},{"denom":"ASSET3","index":"0.000002354114882033"},{"denom":"ASSET4","index":"0.000022662624820802"},{"denom":"ASSET5","index":"0.000001833709311257"},{"denom":"ASSET6","index":"0.000007402928859239"},{"denom":"ASSET7","index":"0.000011614131087351"},{"denom":"ASSET8","index":"0.000015829970625061"},{"denom":"ASSET9","index":"0.000006725199056296"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001696105704481"},{"denom":"ASSET1","index":"0.000014140754037071"},{"denom":"ASSET10","index":"0.000009851931515387"},{"denom":"ASSET11","index":"0.000013679695806241"},{"denom":"ASSET12","index":"0.000012318593050331"},{"denom":"ASSET13","index":"0.000004239283286244"},{"denom":"ASSET14","index":"0.000012779160793682"},{"denom":"ASSET15","index":"0.000009136800770120"},{"denom":"ASSET16","index":"0.000006369960897657"},{"denom":"ASSET17","index":"0.000004523766024416"},{"denom":"ASSET18","index":"0.000002155201985393"},{"denom":"ASSET2","index":"0.000004174048451456"},{"denom":"ASSET3","index":"0.000001220823336742"},{"denom":"ASSET4","index":"0.000011492121647193"},{"denom":"ASSET5","index":"0.000000947621810601"},{"denom":"ASSET6","index":"0.000003857193539630"},{"denom":"ASSET7","index":"0.000005907431204387"},{"denom":"ASSET8","index":"0.000007708991716984"},{"denom":"ASSET9","index":"0.000003329429011573"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003278023650839"},{"denom":"ASSET1","index":"0.000027801084973989"},{"denom":"ASSET10","index":"0.000022126343818190"},{"denom":"ASSET11","index":"0.000027610641458424"},{"denom":"ASSET12","index":"0.000026294522151225"},{"denom":"ASSET13","index":"0.000008669795972838"},{"denom":"ASSET14","index":"0.000025352034708572"},{"denom":"ASSET15","index":"0.000019941753748345"},{"denom":"ASSET16","index":"0.000012337408081897"},{"denom":"ASSET17","index":"0.000009662232510971"},{"denom":"ASSET18","index":"0.000004006663612522"},{"denom":"ASSET2","index":"0.000008414274009770"},{"denom":"ASSET3","index":"0.000002339697370568"},{"denom":"ASSET4","index":"0.000022540556466857"},{"denom":"ASSET5","index":"0.000001822656991491"},{"denom":"ASSET6","index":"0.000007357334263189"},{"denom":"ASSET7","index":"0.000011551068960203"},{"denom":"ASSET8","index":"0.000015761386047857"},{"denom":"ASSET9","index":"0.000006692834331509"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001139195115521"},{"denom":"ASSET1","index":"0.000009496890331931"},{"denom":"ASSET10","index":"0.000006616523219856"},{"denom":"ASSET11","index":"0.000009187371854639"},{"denom":"ASSET12","index":"0.000008273091178185"},{"denom":"ASSET13","index":"0.000002846943294505"},{"denom":"ASSET14","index":"0.000008582261490710"},{"denom":"ASSET15","index":"0.000006136055842283"},{"denom":"ASSET16","index":"0.000004278248649000"},{"denom":"ASSET17","index":"0.000003038433916001"},{"denom":"ASSET18","index":"0.000001447320933748"},{"denom":"ASSET2","index":"0.000002803422698710"},{"denom":"ASSET3","index":"0.000000819928024772"},{"denom":"ASSET4","index":"0.000007718116540611"},{"denom":"ASSET5","index":"0.000000636445192901"},{"denom":"ASSET6","index":"0.000002590694026466"},{"denom":"ASSET7","index":"0.000003967685677409"},{"denom":"ASSET8","index":"0.000005177210075735"},{"denom":"ASSET9","index":"0.000002236262294314"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002735257365218"},{"denom":"ASSET1","index":"0.000023278157661741"},{"denom":"ASSET10","index":"0.000018999615823078"},{"denom":"ASSET11","index":"0.000023241706683585"},{"denom":"ASSET12","index":"0.000022372793234045"},{"denom":"ASSET13","index":"0.000007316911351959"},{"denom":"ASSET14","index":"0.000021266506066871"},{"denom":"ASSET15","index":"0.000017036720297506"},{"denom":"ASSET16","index":"0.000010298479660409"},{"denom":"ASSET17","index":"0.000008222611745720"},{"denom":"ASSET18","index":"0.000003315370510511"},{"denom":"ASSET2","index":"0.000007081336162231"},{"denom":"ASSET3","index":"0.000001948923871674"},{"denom":"ASSET4","index":"0.000018864412124408"},{"denom":"ASSET5","index":"0.000001519377842401"},{"denom":"ASSET6","index":"0.000006121992555640"},{"denom":"ASSET7","index":"0.000009661272655042"},{"denom":"ASSET8","index":"0.000013300968175029"},{"denom":"ASSET9","index":"0.000005629514833023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001583959364947"},{"denom":"ASSET1","index":"0.000013443347430705"},{"denom":"ASSET10","index":"0.000009381913161610"},{"denom":"ASSET11","index":"0.000012996589661105"},{"denom":"ASSET12","index":"0.000011696930694994"},{"denom":"ASSET13","index":"0.000004020819926404"},{"denom":"ASSET14","index":"0.000012143688464595"},{"denom":"ASSET15","index":"0.000008691469335864"},{"denom":"ASSET16","index":"0.000006051537060952"},{"denom":"ASSET17","index":"0.000004305120325241"},{"denom":"ASSET18","index":"0.000002030717134548"},{"denom":"ASSET2","index":"0.000003939591241022"},{"denom":"ASSET3","index":"0.000001137201595347"},{"denom":"ASSET4","index":"0.000010925258183866"},{"denom":"ASSET5","index":"0.000000893515539201"},{"denom":"ASSET6","index":"0.000003655290842186"},{"denom":"ASSET7","index":"0.000005604779291351"},{"denom":"ASSET8","index":"0.000007310581684371"},{"denom":"ASSET9","index":"0.000003167918729894"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003310378542013"},{"denom":"ASSET1","index":"0.000028352771206955"},{"denom":"ASSET10","index":"0.000022778987578468"},{"denom":"ASSET11","index":"0.000028201706998458"},{"denom":"ASSET12","index":"0.000026949790221900"},{"denom":"ASSET13","index":"0.000008856641706946"},{"denom":"ASSET14","index":"0.000025865717784540"},{"denom":"ASSET15","index":"0.000020483790155485"},{"denom":"ASSET16","index":"0.000012564495758376"},{"denom":"ASSET17","index":"0.000009912517491786"},{"denom":"ASSET18","index":"0.000004051289802086"},{"denom":"ASSET2","index":"0.000008567503486413"},{"denom":"ASSET3","index":"0.000002358477605528"},{"denom":"ASSET4","index":"0.000022984011222606"},{"denom":"ASSET5","index":"0.000001848359330263"},{"denom":"ASSET6","index":"0.000007474666006436"},{"denom":"ASSET7","index":"0.000011763521743703"},{"denom":"ASSET8","index":"0.000016098224703406"},{"denom":"ASSET9","index":"0.000006837907042961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001549911588522"},{"denom":"ASSET1","index":"0.000012922257740418"},{"denom":"ASSET10","index":"0.000009003081854783"},{"denom":"ASSET11","index":"0.000012500946332712"},{"denom":"ASSET12","index":"0.000011256607989023"},{"denom":"ASSET13","index":"0.000003873860414458"},{"denom":"ASSET14","index":"0.000011677307025497"},{"denom":"ASSET15","index":"0.000008349069378868"},{"denom":"ASSET16","index":"0.000005821200932633"},{"denom":"ASSET17","index":"0.000004134118188113"},{"denom":"ASSET18","index":"0.000001969385882532"},{"denom":"ASSET2","index":"0.000003814460404941"},{"denom":"ASSET3","index":"0.000001115740384942"},{"denom":"ASSET4","index":"0.000010501554259806"},{"denom":"ASSET5","index":"0.000000865892922233"},{"denom":"ASSET6","index":"0.000003524808812143"},{"denom":"ASSET7","index":"0.000005398664782463"},{"denom":"ASSET8","index":"0.000007044106283197"},{"denom":"ASSET9","index":"0.000003042260281224"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003086330633608"},{"denom":"ASSET1","index":"0.000026187842720704"},{"denom":"ASSET10","index":"0.000020922921087024"},{"denom":"ASSET11","index":"0.000026029396638226"},{"denom":"ASSET12","index":"0.000024828709288325"},{"denom":"ASSET13","index":"0.000008176601230700"},{"denom":"ASSET14","index":"0.000023887113573615"},{"denom":"ASSET15","index":"0.000018841856891118"},{"denom":"ASSET16","index":"0.000011616230118922"},{"denom":"ASSET17","index":"0.000009124242236202"},{"denom":"ASSET18","index":"0.000003767471049721"},{"denom":"ASSET2","index":"0.000007932284099147"},{"denom":"ASSET3","index":"0.000002202458257762"},{"denom":"ASSET4","index":"0.000021230824628511"},{"denom":"ASSET5","index":"0.000001715648257347"},{"denom":"ASSET6","index":"0.000006923830152599"},{"denom":"ASSET7","index":"0.000010879262909104"},{"denom":"ASSET8","index":"0.000014863870027497"},{"denom":"ASSET9","index":"0.000006308409915314"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001535524830156"},{"denom":"ASSET1","index":"0.000012804491333161"},{"denom":"ASSET10","index":"0.000008921035499248"},{"denom":"ASSET11","index":"0.000012386713938596"},{"denom":"ASSET12","index":"0.000011154325740380"},{"denom":"ASSET13","index":"0.000003838812075390"},{"denom":"ASSET14","index":"0.000011571000819920"},{"denom":"ASSET15","index":"0.000008272874264409"},{"denom":"ASSET16","index":"0.000005767863369556"},{"denom":"ASSET17","index":"0.000004096202633783"},{"denom":"ASSET18","index":"0.000001951097594671"},{"denom":"ASSET2","index":"0.000003779838221540"},{"denom":"ASSET3","index":"0.000001105621970313"},{"denom":"ASSET4","index":"0.000010405853838244"},{"denom":"ASSET5","index":"0.000000858152247148"},{"denom":"ASSET6","index":"0.000003492685157466"},{"denom":"ASSET7","index":"0.000005348983659966"},{"denom":"ASSET8","index":"0.000006980409897318"},{"denom":"ASSET9","index":"0.000003014831594025"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003051773960929"},{"denom":"ASSET1","index":"0.000025898629359040"},{"denom":"ASSET10","index":"0.000020686863907037"},{"denom":"ASSET11","index":"0.000025740096441319"},{"denom":"ASSET12","index":"0.000024551000542772"},{"denom":"ASSET13","index":"0.000008085532012369"},{"denom":"ASSET14","index":"0.000023622558405526"},{"denom":"ASSET15","index":"0.000018629920308839"},{"denom":"ASSET16","index":"0.000011487540137638"},{"denom":"ASSET17","index":"0.000009021847693812"},{"denom":"ASSET18","index":"0.000003725572559942"},{"denom":"ASSET2","index":"0.000007844221178735"},{"denom":"ASSET3","index":"0.000002178252359768"},{"denom":"ASSET4","index":"0.000020996168979716"},{"denom":"ASSET5","index":"0.000001697004218389"},{"denom":"ASSET6","index":"0.000006847583721256"},{"denom":"ASSET7","index":"0.000010758483833946"},{"denom":"ASSET8","index":"0.000014699172267780"},{"denom":"ASSET9","index":"0.000006238834616461"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001813824295534"},{"denom":"ASSET1","index":"0.000015126179984122"},{"denom":"ASSET10","index":"0.000010538420488017"},{"denom":"ASSET11","index":"0.000014633035948465"},{"denom":"ASSET12","index":"0.000013177247733614"},{"denom":"ASSET13","index":"0.000004534560738834"},{"denom":"ASSET14","index":"0.000013669547344553"},{"denom":"ASSET15","index":"0.000009773371692973"},{"denom":"ASSET16","index":"0.000006813663054312"},{"denom":"ASSET17","index":"0.000004839398062246"},{"denom":"ASSET18","index":"0.000002305279481754"},{"denom":"ASSET2","index":"0.000004465317911910"},{"denom":"ASSET3","index":"0.000001306325039660"},{"denom":"ASSET4","index":"0.000012293135053249"},{"denom":"ASSET5","index":"0.000001013309662309"},{"denom":"ASSET6","index":"0.000004125859175036"},{"denom":"ASSET7","index":"0.000006318830169217"},{"denom":"ASSET8","index":"0.000008245807377042"},{"denom":"ASSET9","index":"0.000003561783463017"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003452880861936"},{"denom":"ASSET1","index":"0.000029278299049117"},{"denom":"ASSET10","index":"0.000023254773922096"},{"denom":"ASSET11","index":"0.000029065569213605"},{"denom":"ASSET12","index":"0.000027656204711461"},{"denom":"ASSET13","index":"0.000009124518140406"},{"denom":"ASSET14","index":"0.000026695142606829"},{"denom":"ASSET15","index":"0.000020967476611979"},{"denom":"ASSET16","index":"0.000012995878924798"},{"denom":"ASSET17","index":"0.000010163149632422"},{"denom":"ASSET18","index":"0.000004223627093961"},{"denom":"ASSET2","index":"0.000008858348919255"},{"denom":"ASSET3","index":"0.000002465420318230"},{"denom":"ASSET4","index":"0.000023739200929128"},{"denom":"ASSET5","index":"0.000001919695214447"},{"denom":"ASSET6","index":"0.000007752150153146"},{"denom":"ASSET7","index":"0.000012165597276913"},{"denom":"ASSET8","index":"0.000016587849042771"},{"denom":"ASSET9","index":"0.000007046182609545"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001444852701297"},{"denom":"ASSET1","index":"0.000012048934466992"},{"denom":"ASSET10","index":"0.000008394653008080"},{"denom":"ASSET11","index":"0.000011656844181701"},{"denom":"ASSET12","index":"0.000010496256937239"},{"denom":"ASSET13","index":"0.000003612131753243"},{"denom":"ASSET14","index":"0.000010888347222530"},{"denom":"ASSET15","index":"0.000007784952614452"},{"denom":"ASSET16","index":"0.000005427509774140"},{"denom":"ASSET17","index":"0.000003854247504410"},{"denom":"ASSET18","index":"0.000001835962760875"},{"denom":"ASSET2","index":"0.000003556258887589"},{"denom":"ASSET3","index":"0.000001040019481734"},{"denom":"ASSET4","index":"0.000009792454875142"},{"denom":"ASSET5","index":"0.000000807705987699"},{"denom":"ASSET6","index":"0.000003286696816452"},{"denom":"ASSET7","index":"0.000005033459037423"},{"denom":"ASSET8","index":"0.000006568492504337"},{"denom":"ASSET9","index":"0.000002836773214080"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002868026198866"},{"denom":"ASSET1","index":"0.000024339331661302"},{"denom":"ASSET10","index":"0.000019438063504597"},{"denom":"ASSET11","index":"0.000024190729344646"},{"denom":"ASSET12","index":"0.000023070632234294"},{"denom":"ASSET13","index":"0.000007598221307181"},{"denom":"ASSET14","index":"0.000022200415230506"},{"denom":"ASSET15","index":"0.000017506414948675"},{"denom":"ASSET16","index":"0.000010796282691537"},{"denom":"ASSET17","index":"0.000008477235924619"},{"denom":"ASSET18","index":"0.000003501529899130"},{"denom":"ASSET2","index":"0.000007371086117521"},{"denom":"ASSET3","index":"0.000002046801194740"},{"denom":"ASSET4","index":"0.000019732782799148"},{"denom":"ASSET5","index":"0.000001595074946946"},{"denom":"ASSET6","index":"0.000006435625489467"},{"denom":"ASSET7","index":"0.000010111140720407"},{"denom":"ASSET8","index":"0.000013813490690156"},{"denom":"ASSET9","index":"0.000005862589992841"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001655416114862"},{"denom":"ASSET1","index":"0.000013800538848519"},{"denom":"ASSET10","index":"0.000009615249134678"},{"denom":"ASSET11","index":"0.000013350879623065"},{"denom":"ASSET12","index":"0.000012022439267096"},{"denom":"ASSET13","index":"0.000004137189147657"},{"denom":"ASSET14","index":"0.000012471558036751"},{"denom":"ASSET15","index":"0.000008916980241305"},{"denom":"ASSET16","index":"0.000006216863065381"},{"denom":"ASSET17","index":"0.000004414983428766"},{"denom":"ASSET18","index":"0.000002102913517117"},{"denom":"ASSET2","index":"0.000004073955819077"},{"denom":"ASSET3","index":"0.000001191705038613"},{"denom":"ASSET4","index":"0.000011215538757958"},{"denom":"ASSET5","index":"0.000000924719873500"},{"denom":"ASSET6","index":"0.000003764274645778"},{"denom":"ASSET7","index":"0.000005765582472528"},{"denom":"ASSET8","index":"0.000007523144733557"},{"denom":"ASSET9","index":"0.000003249220268545"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003262792429801"},{"denom":"ASSET1","index":"0.000027679878715890"},{"denom":"ASSET10","index":"0.000022086570261210"},{"denom":"ASSET11","index":"0.000027505267384149"},{"denom":"ASSET12","index":"0.000026222420015979"},{"denom":"ASSET13","index":"0.000008638975204347"},{"denom":"ASSET14","index":"0.000025246236428505"},{"denom":"ASSET15","index":"0.000019895354512471"},{"denom":"ASSET16","index":"0.000012279836462442"},{"denom":"ASSET17","index":"0.000009636125515167"},{"denom":"ASSET18","index":"0.000003984145752232"},{"denom":"ASSET2","index":"0.000008382344169353"},{"denom":"ASSET3","index":"0.000002328549799735"},{"denom":"ASSET4","index":"0.000022441247538096"},{"denom":"ASSET5","index":"0.000001813932132265"},{"denom":"ASSET6","index":"0.000007320527694069"},{"denom":"ASSET7","index":"0.000011499571173317"},{"denom":"ASSET8","index":"0.000015704553099640"},{"denom":"ASSET9","index":"0.000006666608399750"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001676736923170"},{"denom":"ASSET1","index":"0.000013985463602132"},{"denom":"ASSET10","index":"0.000009743339709608"},{"denom":"ASSET11","index":"0.000013528824721587"},{"denom":"ASSET12","index":"0.000012182509640070"},{"denom":"ASSET13","index":"0.000004192868462713"},{"denom":"ASSET14","index":"0.000012638122365828"},{"denom":"ASSET15","index":"0.000009036319060854"},{"denom":"ASSET16","index":"0.000006299564241947"},{"denom":"ASSET17","index":"0.000004474034874554"},{"denom":"ASSET18","index":"0.000002131323494140"},{"denom":"ASSET2","index":"0.000004128220711085"},{"denom":"ASSET3","index":"0.000001207784185172"},{"denom":"ASSET4","index":"0.000011365690429028"},{"denom":"ASSET5","index":"0.000000936879321208"},{"denom":"ASSET6","index":"0.000003814217346036"},{"denom":"ASSET7","index":"0.000005841899206614"},{"denom":"ASSET8","index":"0.000007623303918134"},{"denom":"ASSET9","index":"0.000003292930713863"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003296156578493"},{"denom":"ASSET1","index":"0.000027968412540894"},{"denom":"ASSET10","index":"0.000022307812536905"},{"denom":"ASSET11","index":"0.000027788867279184"},{"denom":"ASSET12","index":"0.000026488589695468"},{"denom":"ASSET13","index":"0.000008728285856057"},{"denom":"ASSET14","index":"0.000025508064125070"},{"denom":"ASSET15","index":"0.000020096610749334"},{"denom":"ASSET16","index":"0.000012407784704791"},{"denom":"ASSET17","index":"0.000009734180928237"},{"denom":"ASSET18","index":"0.000004026678592252"},{"denom":"ASSET2","index":"0.000008468774984810"},{"denom":"ASSET3","index":"0.000002353220293961"},{"denom":"ASSET4","index":"0.000022675279511256"},{"denom":"ASSET5","index":"0.000001832728492238"},{"denom":"ASSET6","index":"0.000007397034942132"},{"denom":"ASSET7","index":"0.000011618881320506"},{"denom":"ASSET8","index":"0.000015866042832442"},{"denom":"ASSET9","index":"0.000006735898552490"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001687654189845"},{"denom":"ASSET1","index":"0.000014079752531439"},{"denom":"ASSET10","index":"0.000009809029374167"},{"denom":"ASSET11","index":"0.000013620990639222"},{"denom":"ASSET12","index":"0.000012264971552184"},{"denom":"ASSET13","index":"0.000004220977891851"},{"denom":"ASSET14","index":"0.000012723733444402"},{"denom":"ASSET15","index":"0.000009097856320367"},{"denom":"ASSET16","index":"0.000006341600132585"},{"denom":"ASSET17","index":"0.000004504710146476"},{"denom":"ASSET18","index":"0.000002144573664825"},{"denom":"ASSET2","index":"0.000004156493288528"},{"denom":"ASSET3","index":"0.000001215995376963"},{"denom":"ASSET4","index":"0.000011441411046878"},{"denom":"ASSET5","index":"0.000000943317625765"},{"denom":"ASSET6","index":"0.000003839597523622"},{"denom":"ASSET7","index":"0.000005880995823129"},{"denom":"ASSET8","index":"0.000007675510212768"},{"denom":"ASSET9","index":"0.000003314508610843"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003237925740153"},{"denom":"ASSET1","index":"0.000027468087048908"},{"denom":"ASSET10","index":"0.000021838560142362"},{"denom":"ASSET11","index":"0.000027274223261348"},{"denom":"ASSET12","index":"0.000025962125103579"},{"denom":"ASSET13","index":"0.000008562973508850"},{"denom":"ASSET14","index":"0.000025046299162567"},{"denom":"ASSET15","index":"0.000019687604125947"},{"denom":"ASSET16","index":"0.000012189946370622"},{"denom":"ASSET17","index":"0.000009540519193028"},{"denom":"ASSET18","index":"0.000003959057055270"},{"denom":"ASSET2","index":"0.000008312511220651"},{"denom":"ASSET3","index":"0.000002312646079660"},{"denom":"ASSET4","index":"0.000022269978905361"},{"denom":"ASSET5","index":"0.000001800462011039"},{"denom":"ASSET6","index":"0.000007270233858279"},{"denom":"ASSET7","index":"0.000011411601588483"},{"denom":"ASSET8","index":"0.000015567552190875"},{"denom":"ASSET9","index":"0.000006610637099613"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001700269946448"},{"denom":"ASSET1","index":"0.000014175647296985"},{"denom":"ASSET10","index":"0.000009876508679424"},{"denom":"ASSET11","index":"0.000013714231996791"},{"denom":"ASSET12","index":"0.000012349169664489"},{"denom":"ASSET13","index":"0.000004249665204630"},{"denom":"ASSET14","index":"0.000012810584964683"},{"denom":"ASSET15","index":"0.000009159649022667"},{"denom":"ASSET16","index":"0.000006386108914062"},{"denom":"ASSET17","index":"0.000004535399405845"},{"denom":"ASSET18","index":"0.000002160675585153"},{"denom":"ASSET2","index":"0.000004184037207885"},{"denom":"ASSET3","index":"0.000001223709723928"},{"denom":"ASSET4","index":"0.000011520237582522"},{"denom":"ASSET5","index":"0.000000950091460574"},{"denom":"ASSET6","index":"0.000003867003500531"},{"denom":"ASSET7","index":"0.000005922674290891"},{"denom":"ASSET8","index":"0.000007727949032131"},{"denom":"ASSET9","index":"0.000003337940880615"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003224934301433"},{"denom":"ASSET1","index":"0.000027341438894536"},{"denom":"ASSET10","index":"0.000021706571274337"},{"denom":"ASSET11","index":"0.000027141091242061"},{"denom":"ASSET12","index":"0.000025819235056226"},{"denom":"ASSET13","index":"0.000008520116782966"},{"denom":"ASSET14","index":"0.000024928444433519"},{"denom":"ASSET15","index":"0.000019573794936329"},{"denom":"ASSET16","index":"0.000012137286393349"},{"denom":"ASSET17","index":"0.000009487995483061"},{"denom":"ASSET18","index":"0.000003945309126507"},{"denom":"ASSET2","index":"0.000008271045740629"},{"denom":"ASSET3","index":"0.000002302032616683"},{"denom":"ASSET4","index":"0.000022168721917699"},{"denom":"ASSET5","index":"0.000001793343624246"},{"denom":"ASSET6","index":"0.000007240378309003"},{"denom":"ASSET7","index":"0.000011361888746536"},{"denom":"ASSET8","index":"0.000015488944629697"},{"denom":"ASSET9","index":"0.000006579500326985"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001505652349479"},{"denom":"ASSET1","index":"0.000012557843622987"},{"denom":"ASSET10","index":"0.000008748308836028"},{"denom":"ASSET11","index":"0.000012147743761261"},{"denom":"ASSET12","index":"0.000010939413811534"},{"denom":"ASSET13","index":"0.000003764130873697"},{"denom":"ASSET14","index":"0.000011348049030896"},{"denom":"ASSET15","index":"0.000008114118692716"},{"denom":"ASSET16","index":"0.000005656448807088"},{"denom":"ASSET17","index":"0.000004017514002549"},{"denom":"ASSET18","index":"0.000001912822926478"},{"denom":"ASSET2","index":"0.000003707009821528"},{"denom":"ASSET3","index":"0.000001083835348847"},{"denom":"ASSET4","index":"0.000010205627987517"},{"denom":"ASSET5","index":"0.000000840704716538"},{"denom":"ASSET6","index":"0.000003424333845410"},{"denom":"ASSET7","index":"0.000005246348945363"},{"denom":"ASSET8","index":"0.000006845738406093"},{"denom":"ASSET9","index":"0.000002955648289152"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002959758868257"},{"denom":"ASSET1","index":"0.000025116229265451"},{"denom":"ASSET10","index":"0.000020033024535037"},{"denom":"ASSET11","index":"0.000024955202637112"},{"denom":"ASSET12","index":"0.000023787913163340"},{"denom":"ASSET13","index":"0.000007837044315100"},{"denom":"ASSET14","index":"0.000022906603767748"},{"denom":"ASSET15","index":"0.000018047329062837"},{"denom":"ASSET16","index":"0.000011142428291313"},{"denom":"ASSET17","index":"0.000008741414303940"},{"denom":"ASSET18","index":"0.000003614587489816"},{"denom":"ASSET2","index":"0.000007605147442913"},{"denom":"ASSET3","index":"0.000002112677625393"},{"denom":"ASSET4","index":"0.000020363145786569"},{"denom":"ASSET5","index":"0.000001645239564154"},{"denom":"ASSET6","index":"0.000006641765641459"},{"denom":"ASSET7","index":"0.000010434431181702"},{"denom":"ASSET8","index":"0.000014248591155217"},{"denom":"ASSET9","index":"0.000006047835874095"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001815877519749"},{"denom":"ASSET1","index":"0.000015137138459046"},{"denom":"ASSET10","index":"0.000010545739718907"},{"denom":"ASSET11","index":"0.000014644907422941"},{"denom":"ASSET12","index":"0.000013186828093302"},{"denom":"ASSET13","index":"0.000004537625601742"},{"denom":"ASSET14","index":"0.000013679059129408"},{"denom":"ASSET15","index":"0.000009780506595550"},{"denom":"ASSET16","index":"0.000006818847588397"},{"denom":"ASSET17","index":"0.000004841650653454"},{"denom":"ASSET18","index":"0.000002306040358223"},{"denom":"ASSET2","index":"0.000004467306882298"},{"denom":"ASSET3","index":"0.000001307100902598"},{"denom":"ASSET4","index":"0.000012301639507366"},{"denom":"ASSET5","index":"0.000001013416839040"},{"denom":"ASSET6","index":"0.000004128122470864"},{"denom":"ASSET7","index":"0.000006324548354661"},{"denom":"ASSET8","index":"0.000008252108546467"},{"denom":"ASSET9","index":"0.000003563504517685"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003468946703322"},{"denom":"ASSET1","index":"0.000029412495408176"},{"denom":"ASSET10","index":"0.000023372734593498"},{"denom":"ASSET11","index":"0.000029203218600002"},{"denom":"ASSET12","index":"0.000027792166579196"},{"denom":"ASSET13","index":"0.000009167641990636"},{"denom":"ASSET14","index":"0.000026818252104650"},{"denom":"ASSET15","index":"0.000021072198152383"},{"denom":"ASSET16","index":"0.000013054905852031"},{"denom":"ASSET17","index":"0.000010211457984650"},{"denom":"ASSET18","index":"0.000004240878207320"},{"denom":"ASSET2","index":"0.000008898543974195"},{"denom":"ASSET3","index":"0.000002476460623897"},{"denom":"ASSET4","index":"0.000023847831794350"},{"denom":"ASSET5","index":"0.000001927880642719"},{"denom":"ASSET6","index":"0.000007785977685579"},{"denom":"ASSET7","index":"0.000012222326144679"},{"denom":"ASSET8","index":"0.000016667230515151"},{"denom":"ASSET9","index":"0.000007078301868557"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001541968050995"},{"denom":"ASSET1","index":"0.000012857487907975"},{"denom":"ASSET10","index":"0.000008957704485900"},{"denom":"ASSET11","index":"0.000012438763825161"},{"denom":"ASSET12","index":"0.000011200869215257"},{"denom":"ASSET13","index":"0.000003854089325736"},{"denom":"ASSET14","index":"0.000011619593298070"},{"denom":"ASSET15","index":"0.000008307186714386"},{"denom":"ASSET16","index":"0.000005792349812251"},{"denom":"ASSET17","index":"0.000004113299472240"},{"denom":"ASSET18","index":"0.000001959030530305"},{"denom":"ASSET2","index":"0.000003795102401372"},{"denom":"ASSET3","index":"0.000001109951140156"},{"denom":"ASSET4","index":"0.000010448993630046"},{"denom":"ASSET5","index":"0.000000861541416423"},{"denom":"ASSET6","index":"0.000003506814193562"},{"denom":"ASSET7","index":"0.000005371133324183"},{"denom":"ASSET8","index":"0.000007009474378365"},{"denom":"ASSET9","index":"0.000003027441582881"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003053196756625"},{"denom":"ASSET1","index":"0.000025905581999278"},{"denom":"ASSET10","index":"0.000020682143152818"},{"denom":"ASSET11","index":"0.000025745380902198"},{"denom":"ASSET12","index":"0.000024550499550641"},{"denom":"ASSET13","index":"0.000008086239198545"},{"denom":"ASSET14","index":"0.000023629161089906"},{"denom":"ASSET15","index":"0.000018628151539367"},{"denom":"ASSET16","index":"0.000011492271696690"},{"denom":"ASSET17","index":"0.000009021688715966"},{"denom":"ASSET18","index":"0.000003727673632537"},{"denom":"ASSET2","index":"0.000007845443656426"},{"denom":"ASSET3","index":"0.000002178852781858"},{"denom":"ASSET4","index":"0.000021002318737231"},{"denom":"ASSET5","index":"0.000001697417622442"},{"denom":"ASSET6","index":"0.000006850319017638"},{"denom":"ASSET7","index":"0.000010761758840612"},{"denom":"ASSET8","index":"0.000014701087498525"},{"denom":"ASSET9","index":"0.000006240132889304"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001327266579501"},{"denom":"ASSET1","index":"0.000011071143497688"},{"denom":"ASSET10","index":"0.000007713614824674"},{"denom":"ASSET11","index":"0.000010710668391289"},{"denom":"ASSET12","index":"0.000009644435509525"},{"denom":"ASSET13","index":"0.000003318857014090"},{"denom":"ASSET14","index":"0.000010004910615924"},{"denom":"ASSET15","index":"0.000007152875770275"},{"denom":"ASSET16","index":"0.000004987262870528"},{"denom":"ASSET17","index":"0.000003541219052903"},{"denom":"ASSET18","index":"0.000001686360555224"},{"denom":"ASSET2","index":"0.000003267755179083"},{"denom":"ASSET3","index":"0.000000955742427695"},{"denom":"ASSET4","index":"0.000008998066353223"},{"denom":"ASSET5","index":"0.000000741667172936"},{"denom":"ASSET6","index":"0.000003019151657428"},{"denom":"ASSET7","index":"0.000004625406633453"},{"denom":"ASSET8","index":"0.000006035541053505"},{"denom":"ASSET9","index":"0.000002606193585346"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002827520151011"},{"denom":"ASSET1","index":"0.000024027878888002"},{"denom":"ASSET10","index":"0.000019355847170480"},{"denom":"ASSET11","index":"0.000023924401086085"},{"denom":"ASSET12","index":"0.000022900407365256"},{"denom":"ASSET13","index":"0.000007521399074311"},{"denom":"ASSET14","index":"0.000021930603354990"},{"denom":"ASSET15","index":"0.000017401215805238"},{"denom":"ASSET16","index":"0.000010647310435771"},{"denom":"ASSET17","index":"0.000008415007538097"},{"denom":"ASSET18","index":"0.000003442593620109"},{"denom":"ASSET2","index":"0.000007289635767836"},{"denom":"ASSET3","index":"0.000002016810506595"},{"denom":"ASSET4","index":"0.000019477449509443"},{"denom":"ASSET5","index":"0.000001571692130579"},{"denom":"ASSET6","index":"0.000006339251488002"},{"denom":"ASSET7","index":"0.000009978075244424"},{"denom":"ASSET8","index":"0.000013673195599374"},{"denom":"ASSET9","index":"0.000005796522499795"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001571435631869"},{"denom":"ASSET1","index":"0.000013104175099655"},{"denom":"ASSET10","index":"0.000009129715488355"},{"denom":"ASSET11","index":"0.000012677036600848"},{"denom":"ASSET12","index":"0.000011415350365342"},{"denom":"ASSET13","index":"0.000003928095848150"},{"denom":"ASSET14","index":"0.000011841502401104"},{"denom":"ASSET15","index":"0.000008466812321615"},{"denom":"ASSET16","index":"0.000005902994865728"},{"denom":"ASSET17","index":"0.000004192467944409"},{"denom":"ASSET18","index":"0.000001996601204585"},{"denom":"ASSET2","index":"0.000003867921602360"},{"denom":"ASSET3","index":"0.000001131473113468"},{"denom":"ASSET4","index":"0.000010648868578800"},{"denom":"ASSET5","index":"0.000000877952110712"},{"denom":"ASSET6","index":"0.000003573955614728"},{"denom":"ASSET7","index":"0.000005473883440830"},{"denom":"ASSET8","index":"0.000007142978914228"},{"denom":"ASSET9","index":"0.000003084669944040"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003141123056438"},{"denom":"ASSET1","index":"0.000026662100889972"},{"denom":"ASSET10","index":"0.000021312054987248"},{"denom":"ASSET11","index":"0.000026503481745319"},{"denom":"ASSET12","index":"0.000025286293002787"},{"denom":"ASSET13","index":"0.000008324908472884"},{"denom":"ASSET14","index":"0.000024319980387721"},{"denom":"ASSET15","index":"0.000019190708128374"},{"denom":"ASSET16","index":"0.000011824997422058"},{"denom":"ASSET17","index":"0.000009292034078872"},{"denom":"ASSET18","index":"0.000003834040785154"},{"denom":"ASSET2","index":"0.000008076003481032"},{"denom":"ASSET3","index":"0.000002241608843356"},{"denom":"ASSET4","index":"0.000021614431804298"},{"denom":"ASSET5","index":"0.000001746420421862"},{"denom":"ASSET6","index":"0.000007047828859327"},{"denom":"ASSET7","index":"0.000011075197168484"},{"denom":"ASSET8","index":"0.000015134882092008"},{"denom":"ASSET9","index":"0.000006422749115253"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001554974273829"},{"denom":"ASSET1","index":"0.000012964145980643"},{"denom":"ASSET10","index":"0.000009032293690170"},{"denom":"ASSET11","index":"0.000012541598623624"},{"denom":"ASSET12","index":"0.000011293609918011"},{"denom":"ASSET13","index":"0.000003886649549954"},{"denom":"ASSET14","index":"0.000011715371140412"},{"denom":"ASSET15","index":"0.000008376264351692"},{"denom":"ASSET16","index":"0.000005840194074962"},{"denom":"ASSET17","index":"0.000004147646243034"},{"denom":"ASSET18","index":"0.000001975556294303"},{"denom":"ASSET2","index":"0.000003826903319009"},{"denom":"ASSET3","index":"0.000001119455695618"},{"denom":"ASSET4","index":"0.000010535776146539"},{"denom":"ASSET5","index":"0.000000869071819878"},{"denom":"ASSET6","index":"0.000003536426577765"},{"denom":"ASSET7","index":"0.000005416074448708"},{"denom":"ASSET8","index":"0.000007067350213206"},{"denom":"ASSET9","index":"0.000003052560720565"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003054120352223"},{"denom":"ASSET1","index":"0.000025909289170716"},{"denom":"ASSET10","index":"0.000020664041936079"},{"denom":"ASSET11","index":"0.000025743066158465"},{"denom":"ASSET12","index":"0.000024537849095602"},{"denom":"ASSET13","index":"0.000008085297309351"},{"denom":"ASSET14","index":"0.000023630023251940"},{"denom":"ASSET15","index":"0.000018615490114349"},{"denom":"ASSET16","index":"0.000011495216270003"},{"denom":"ASSET17","index":"0.000009017197770141"},{"denom":"ASSET18","index":"0.000003730110182262"},{"denom":"ASSET2","index":"0.000007845299155388"},{"denom":"ASSET3","index":"0.000002179886924088"},{"denom":"ASSET4","index":"0.000021005968780047"},{"denom":"ASSET5","index":"0.000001698230665763"},{"denom":"ASSET6","index":"0.000006853367473041"},{"denom":"ASSET7","index":"0.000010764057351149"},{"denom":"ASSET8","index":"0.000014698116791571"},{"denom":"ASSET9","index":"0.000006239964640655"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET0","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET0","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001587610635106"},{"denom":"ASSET1","index":"0.000013244938725362"},{"denom":"ASSET10","index":"0.000009227311812032"},{"denom":"ASSET11","index":"0.000012812935831455"},{"denom":"ASSET12","index":"0.000011538527294432"},{"denom":"ASSET13","index":"0.000003970376596809"},{"denom":"ASSET14","index":"0.000011969180179294"},{"denom":"ASSET15","index":"0.000008557707326477"},{"denom":"ASSET16","index":"0.000005967039972082"},{"denom":"ASSET17","index":"0.000004237678387413"},{"denom":"ASSET18","index":"0.000002018263519969"},{"denom":"ASSET2","index":"0.000003909626189853"},{"denom":"ASSET3","index":"0.000001143457659809"},{"denom":"ASSET4","index":"0.000010763622103487"},{"denom":"ASSET5","index":"0.000000886955941552"},{"denom":"ASSET6","index":"0.000003612624200292"},{"denom":"ASSET7","index":"0.000005533687069132"},{"denom":"ASSET8","index":"0.000007219848364411"},{"denom":"ASSET9","index":"0.000003118520890387"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003152887181228"},{"denom":"ASSET1","index":"0.000026760532918289"},{"denom":"ASSET10","index":"0.000021371603424459"},{"denom":"ASSET11","index":"0.000026596151859305"},{"denom":"ASSET12","index":"0.000025366346961436"},{"denom":"ASSET13","index":"0.000008353980761099"},{"denom":"ASSET14","index":"0.000024408754798213"},{"denom":"ASSET15","index":"0.000019248058608344"},{"denom":"ASSET16","index":"0.000011870971278696"},{"denom":"ASSET17","index":"0.000009321801721671"},{"denom":"ASSET18","index":"0.000003850124607081"},{"denom":"ASSET2","index":"0.000008105134387478"},{"denom":"ASSET3","index":"0.000002250596051831"},{"denom":"ASSET4","index":"0.000021694971342643"},{"denom":"ASSET5","index":"0.000001752750611640"},{"denom":"ASSET6","index":"0.000007075802880646"},{"denom":"ASSET7","index":"0.000011117440314842"},{"denom":"ASSET8","index":"0.000015186957305377"},{"denom":"ASSET9","index":"0.000006446159830056"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001450981944084"},{"denom":"ASSET1","index":"0.000012097851501865"},{"denom":"ASSET10","index":"0.000008428524260541"},{"denom":"ASSET11","index":"0.000011703479004578"},{"denom":"ASSET12","index":"0.000010538773481717"},{"denom":"ASSET13","index":"0.000003626563958485"},{"denom":"ASSET14","index":"0.000010932552044520"},{"denom":"ASSET15","index":"0.000007816771742159"},{"denom":"ASSET16","index":"0.000005449942823954"},{"denom":"ASSET17","index":"0.000003870671031354"},{"denom":"ASSET18","index":"0.000001843572637920"},{"denom":"ASSET2","index":"0.000003571328051486"},{"denom":"ASSET3","index":"0.000001044730757120"},{"denom":"ASSET4","index":"0.000009831991445917"},{"denom":"ASSET5","index":"0.000000810720570477"},{"denom":"ASSET6","index":"0.000003299899992359"},{"denom":"ASSET7","index":"0.000005054382457699"},{"denom":"ASSET8","index":"0.000006595048508847"},{"denom":"ASSET9","index":"0.000002848509784621"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000002831039632868"},{"denom":"ASSET1","index":"0.000024014703977493"},{"denom":"ASSET10","index":"0.000019136467933987"},{"denom":"ASSET11","index":"0.000023856136612857"},{"denom":"ASSET12","index":"0.000022731094165303"},{"denom":"ASSET13","index":"0.000007491812146677"},{"denom":"ASSET14","index":"0.000021900750691559"},{"denom":"ASSET15","index":"0.000017242457090593"},{"denom":"ASSET16","index":"0.000010655585625623"},{"denom":"ASSET17","index":"0.000008353141870908"},{"denom":"ASSET18","index":"0.000003458892129556"},{"denom":"ASSET2","index":"0.000007270317321266"},{"denom":"ASSET3","index":"0.000002020551075646"},{"denom":"ASSET4","index":"0.000019470118745656"},{"denom":"ASSET5","index":"0.000001574098937698"},{"denom":"ASSET6","index":"0.000006353413461243"},{"denom":"ASSET7","index":"0.000009977493764026"},{"denom":"ASSET8","index":"0.000013619759476676"},{"denom":"ASSET9","index":"0.000005782490697784"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001596167964962"},{"denom":"ASSET1","index":"0.000013307648687747"},{"denom":"ASSET10","index":"0.000009271254138767"},{"denom":"ASSET11","index":"0.000012873344596610"},{"denom":"ASSET12","index":"0.000011592750107942"},{"denom":"ASSET13","index":"0.000003989527201016"},{"denom":"ASSET14","index":"0.000012025715131995"},{"denom":"ASSET15","index":"0.000008598149750858"},{"denom":"ASSET16","index":"0.000005994556982506"},{"denom":"ASSET17","index":"0.000004257340617956"},{"denom":"ASSET18","index":"0.000002028240277625"},{"denom":"ASSET2","index":"0.000003928376470814"},{"denom":"ASSET3","index":"0.000001148919558672"},{"denom":"ASSET4","index":"0.000010814752131731"},{"denom":"ASSET5","index":"0.000000891818678410"},{"denom":"ASSET6","index":"0.000003630210866621"},{"denom":"ASSET7","index":"0.000005559360179979"},{"denom":"ASSET8","index":"0.000007254619109209"},{"denom":"ASSET9","index":"0.000003133416978198"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003160678210357"},{"denom":"ASSET1","index":"0.000026816731621709"},{"denom":"ASSET10","index":"0.000021409695697867"},{"denom":"ASSET11","index":"0.000026650151208928"},{"denom":"ASSET12","index":"0.000025413985003091"},{"denom":"ASSET13","index":"0.000008371194471357"},{"denom":"ASSET14","index":"0.000024459575922385"},{"denom":"ASSET15","index":"0.000019283728762326"},{"denom":"ASSET16","index":"0.000011895729224726"},{"denom":"ASSET17","index":"0.000009339186085895"},{"denom":"ASSET18","index":"0.000003859320220004"},{"denom":"ASSET2","index":"0.000008121656282140"},{"denom":"ASSET3","index":"0.000002255587694637"},{"denom":"ASSET4","index":"0.000021740936259308"},{"denom":"ASSET5","index":"0.000001757304707579"},{"denom":"ASSET6","index":"0.000007091577992612"},{"denom":"ASSET7","index":"0.000011140302591406"},{"denom":"ASSET8","index":"0.000015217956063596"},{"denom":"ASSET9","index":"0.000006459479788296"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001539653287763"},{"denom":"ASSET1","index":"0.000012837628062054"},{"denom":"ASSET10","index":"0.000008944076712630"},{"denom":"ASSET11","index":"0.000012418678362380"},{"denom":"ASSET12","index":"0.000011182855597091"},{"denom":"ASSET13","index":"0.000003848344731893"},{"denom":"ASSET14","index":"0.000011600753980079"},{"denom":"ASSET15","index":"0.000008294363000211"},{"denom":"ASSET16","index":"0.000005782767435536"},{"denom":"ASSET17","index":"0.000004106968636837"},{"denom":"ASSET18","index":"0.000001956500354065"},{"denom":"ASSET2","index":"0.000003789470997435"},{"denom":"ASSET3","index":"0.000001108613446191"},{"denom":"ASSET4","index":"0.000010432741141086"},{"denom":"ASSET5","index":"0.000000860502708115"},{"denom":"ASSET6","index":"0.000003501935883605"},{"denom":"ASSET7","index":"0.000005362766419174"},{"denom":"ASSET8","index":"0.000006998089525433"},{"denom":"ASSET9","index":"0.000003022535474442"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003102081054533"},{"denom":"ASSET1","index":"0.000026328097047411"},{"denom":"ASSET10","index":"0.000021065731925672"},{"denom":"ASSET11","index":"0.000026176422512857"},{"denom":"ASSET12","index":"0.000024984864029023"},{"denom":"ASSET13","index":"0.000008223750690350"},{"denom":"ASSET14","index":"0.000024017391771060"},{"denom":"ASSET15","index":"0.000018965095888316"},{"denom":"ASSET16","index":"0.000011675661088751"},{"denom":"ASSET17","index":"0.000009181817821335"},{"denom":"ASSET18","index":"0.000003784851704842"},{"denom":"ASSET2","index":"0.000007977007181168"},{"denom":"ASSET3","index":"0.000002213531006169"},{"denom":"ASSET4","index":"0.000021343717572048"},{"denom":"ASSET5","index":"0.000001724500934679"},{"denom":"ASSET6","index":"0.000006958604580417"},{"denom":"ASSET7","index":"0.000010936011139136"},{"denom":"ASSET8","index":"0.000014950117004491"},{"denom":"ASSET9","index":"0.000006344046059941"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001722784092424"},{"denom":"ASSET1","index":"0.000014376047839207"},{"denom":"ASSET10","index":"0.000010014727915911"},{"denom":"ASSET11","index":"0.000013905627425621"},{"denom":"ASSET12","index":"0.000012523636788373"},{"denom":"ASSET13","index":"0.000004309050988454"},{"denom":"ASSET14","index":"0.000012989875687172"},{"denom":"ASSET15","index":"0.000009287144342897"},{"denom":"ASSET16","index":"0.000006475075648346"},{"denom":"ASSET17","index":"0.000004597575508787"},{"denom":"ASSET18","index":"0.000002191113748617"},{"denom":"ASSET2","index":"0.000004242146751855"},{"denom":"ASSET3","index":"0.000001239819134475"},{"denom":"ASSET4","index":"0.000011683152316098"},{"denom":"ASSET5","index":"0.000000961748401110"},{"denom":"ASSET6","index":"0.000003920170113222"},{"denom":"ASSET7","index":"0.000006004655234759"},{"denom":"ASSET8","index":"0.000007836158711656"},{"denom":"ASSET9","index":"0.000003384936220430"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003308323901116"},{"denom":"ASSET1","index":"0.000028066718381779"},{"denom":"ASSET10","index":"0.000022316311421496"},{"denom":"ASSET11","index":"0.000027867424204892"},{"denom":"ASSET12","index":"0.000026530665881565"},{"denom":"ASSET13","index":"0.000008749579510737"},{"denom":"ASSET14","index":"0.000025590688346390"},{"denom":"ASSET15","index":"0.000020116135001180"},{"denom":"ASSET16","index":"0.000012455644018572"},{"denom":"ASSET17","index":"0.000009747635771928"},{"denom":"ASSET18","index":"0.000004046709206696"},{"denom":"ASSET2","index":"0.000008491843085820"},{"denom":"ASSET3","index":"0.000002361259343526"},{"denom":"ASSET4","index":"0.000022756236881458"},{"denom":"ASSET5","index":"0.000001838827056256"},{"denom":"ASSET6","index":"0.000007428217086977"},{"denom":"ASSET7","index":"0.000011660835649526"},{"denom":"ASSET8","index":"0.000015906513514404"},{"denom":"ASSET9","index":"0.000006755948018281"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001677980890787"},{"denom":"ASSET1","index":"0.000013990275877081"},{"denom":"ASSET10","index":"0.000009746835585844"},{"denom":"ASSET11","index":"0.000013534047272362"},{"denom":"ASSET12","index":"0.000012187401487418"},{"denom":"ASSET13","index":"0.000004194217559326"},{"denom":"ASSET14","index":"0.000012642160756856"},{"denom":"ASSET15","index":"0.000009039350648091"},{"denom":"ASSET16","index":"0.000006301979019776"},{"denom":"ASSET17","index":"0.000004475595265619"},{"denom":"ASSET18","index":"0.000002132005492585"},{"denom":"ASSET2","index":"0.000004129566806967"},{"denom":"ASSET3","index":"0.000001207793600899"},{"denom":"ASSET4","index":"0.000011368981735957"},{"denom":"ASSET5","index":"0.000000937435909214"},{"denom":"ASSET6","index":"0.000003815863724495"},{"denom":"ASSET7","index":"0.000005844281079776"},{"denom":"ASSET8","index":"0.000007626584775507"},{"denom":"ASSET9","index":"0.000003293515032135"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003299297789724"},{"denom":"ASSET1","index":"0.000027989603079017"},{"denom":"ASSET10","index":"0.000022326156077139"},{"denom":"ASSET11","index":"0.000027810817552502"},{"denom":"ASSET12","index":"0.000026510364756940"},{"denom":"ASSET13","index":"0.000008734817330461"},{"denom":"ASSET14","index":"0.000025527438517331"},{"denom":"ASSET15","index":"0.000020112836713905"},{"denom":"ASSET16","index":"0.000012417417558556"},{"denom":"ASSET17","index":"0.000009741881197111"},{"denom":"ASSET18","index":"0.000004029624902086"},{"denom":"ASSET2","index":"0.000008475129511821"},{"denom":"ASSET3","index":"0.000002354634361983"},{"denom":"ASSET4","index":"0.000022691681830907"},{"denom":"ASSET5","index":"0.000001834207215432"},{"denom":"ASSET6","index":"0.000007402948949368"},{"denom":"ASSET7","index":"0.000011627814435586"},{"denom":"ASSET8","index":"0.000015878876786083"},{"denom":"ASSET9","index":"0.000006740310437402"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001570026110869"},{"denom":"ASSET1","index":"0.000013093495665706"},{"denom":"ASSET10","index":"0.000009121814411369"},{"denom":"ASSET11","index":"0.000012665871768525"},{"denom":"ASSET12","index":"0.000011405375746022"},{"denom":"ASSET13","index":"0.000003924443730811"},{"denom":"ASSET14","index":"0.000011831756550478"},{"denom":"ASSET15","index":"0.000008459245989284"},{"denom":"ASSET16","index":"0.000005898474977098"},{"denom":"ASSET17","index":"0.000004187979388376"},{"denom":"ASSET18","index":"0.000001995163822601"},{"denom":"ASSET2","index":"0.000003864775280042"},{"denom":"ASSET3","index":"0.000001129971286445"},{"denom":"ASSET4","index":"0.000010639630627815"},{"denom":"ASSET5","index":"0.000000877623463400"},{"denom":"ASSET6","index":"0.000003571405397092"},{"denom":"ASSET7","index":"0.000005469607987193"},{"denom":"ASSET8","index":"0.000007137838423287"},{"denom":"ASSET9","index":"0.000003082869956418"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003142586597057"},{"denom":"ASSET1","index":"0.000026671940208455"},{"denom":"ASSET10","index":"0.000021322845581004"},{"denom":"ASSET11","index":"0.000026513185667064"},{"denom":"ASSET12","index":"0.000025297681895631"},{"denom":"ASSET13","index":"0.000008328263582513"},{"denom":"ASSET14","index":"0.000024329302916923"},{"denom":"ASSET15","index":"0.000019199384187435"},{"denom":"ASSET16","index":"0.000011829863063918"},{"denom":"ASSET17","index":"0.000009295955073087"},{"denom":"ASSET18","index":"0.000003835509513951"},{"denom":"ASSET2","index":"0.000008079410847125"},{"denom":"ASSET3","index":"0.000002242309830967"},{"denom":"ASSET4","index":"0.000021622076491366"},{"denom":"ASSET5","index":"0.000001747112267207"},{"denom":"ASSET6","index":"0.000007050444762949"},{"denom":"ASSET7","index":"0.000011079003337441"},{"denom":"ASSET8","index":"0.000015142122511204"},{"denom":"ASSET9","index":"0.000006425848418438"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001808467589320"},{"denom":"ASSET1","index":"0.000015078627759778"},{"denom":"ASSET10","index":"0.000010504031371633"},{"denom":"ASSET11","index":"0.000014586692317421"},{"denom":"ASSET12","index":"0.000013135079536696"},{"denom":"ASSET13","index":"0.000004520160908868"},{"denom":"ASSET14","index":"0.000013624998850191"},{"denom":"ASSET15","index":"0.000009741934661752"},{"denom":"ASSET16","index":"0.000006792338136474"},{"denom":"ASSET17","index":"0.000004822580238185"},{"denom":"ASSET18","index":"0.000002296370773952"},{"denom":"ASSET2","index":"0.000004449596398694"},{"denom":"ASSET3","index":"0.000001300403116066"},{"denom":"ASSET4","index":"0.000012254031223951"},{"denom":"ASSET5","index":"0.000001010080559921"},{"denom":"ASSET6","index":"0.000004112902878720"},{"denom":"ASSET7","index":"0.000006298386565256"},{"denom":"ASSET8","index":"0.000008219757370854"},{"denom":"ASSET9","index":"0.000003550402926189"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003309574221953"},{"denom":"ASSET1","index":"0.000028041386020893"},{"denom":"ASSET10","index":"0.000022151472675705"},{"denom":"ASSET11","index":"0.000027806413413432"},{"denom":"ASSET12","index":"0.000026397319662942"},{"denom":"ASSET13","index":"0.000008723998941637"},{"denom":"ASSET14","index":"0.000025556208464743"},{"denom":"ASSET15","index":"0.000019995491235522"},{"denom":"ASSET16","index":"0.000012454763771642"},{"denom":"ASSET17","index":"0.000009698403814011"},{"denom":"ASSET18","index":"0.000004053515914738"},{"denom":"ASSET2","index":"0.000008473190716338"},{"denom":"ASSET3","index":"0.000002361530218445"},{"denom":"ASSET4","index":"0.000022738669483779"},{"denom":"ASSET5","index":"0.000001840125976242"},{"denom":"ASSET6","index":"0.000007434008870747"},{"denom":"ASSET7","index":"0.000011653935721338"},{"denom":"ASSET8","index":"0.000015861166565423"},{"denom":"ASSET9","index":"0.000006742103174023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001541663174382"},{"denom":"ASSET1","index":"0.000012852134347969"},{"denom":"ASSET10","index":"0.000008953505358908"},{"denom":"ASSET11","index":"0.000012432624080325"},{"denom":"ASSET12","index":"0.000011194846435509"},{"denom":"ASSET13","index":"0.000003852675567517"},{"denom":"ASSET14","index":"0.000011614356703153"},{"denom":"ASSET15","index":"0.000008302745615107"},{"denom":"ASSET16","index":"0.000005788648746115"},{"denom":"ASSET17","index":"0.000004110607675539"},{"denom":"ASSET18","index":"0.000001958208705152"},{"denom":"ASSET2","index":"0.000003793380830041"},{"denom":"ASSET3","index":"0.000001108811590805"},{"denom":"ASSET4","index":"0.000010443285637998"},{"denom":"ASSET5","index":"0.000000861256061842"},{"denom":"ASSET6","index":"0.000003505801353281"},{"denom":"ASSET7","index":"0.000005369138478471"},{"denom":"ASSET8","index":"0.000007005673232815"},{"denom":"ASSET9","index":"0.000003025513979724"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003039218640043"},{"denom":"ASSET1","index":"0.000025782167100542"},{"denom":"ASSET10","index":"0.000020571830356487"},{"denom":"ASSET11","index":"0.000025618833387376"},{"denom":"ASSET12","index":"0.000024423552320522"},{"denom":"ASSET13","index":"0.000008046369560384"},{"denom":"ASSET14","index":"0.000023515194162679"},{"denom":"ASSET15","index":"0.000018530055863607"},{"denom":"ASSET16","index":"0.000011436803083329"},{"denom":"ASSET17","index":"0.000008974370950503"},{"denom":"ASSET18","index":"0.000003710743638587"},{"denom":"ASSET2","index":"0.000007806913274081"},{"denom":"ASSET3","index":"0.000002167934051431"},{"denom":"ASSET4","index":"0.000020901035076857"},{"denom":"ASSET5","index":"0.000001689640060433"},{"denom":"ASSET6","index":"0.000006819038075969"},{"denom":"ASSET7","index":"0.000010710838619674"},{"denom":"ASSET8","index":"0.000014627524271874"},{"denom":"ASSET9","index":"0.000006209166066794"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001647112085871"},{"denom":"ASSET1","index":"0.000013744257107488"},{"denom":"ASSET10","index":"0.000009576415679235"},{"denom":"ASSET11","index":"0.000013296650962579"},{"denom":"ASSET12","index":"0.000011973464376313"},{"denom":"ASSET13","index":"0.000004120724991946"},{"denom":"ASSET14","index":"0.000012421070521222"},{"denom":"ASSET15","index":"0.000008879485058873"},{"denom":"ASSET16","index":"0.000006191885004573"},{"denom":"ASSET17","index":"0.000004397534055245"},{"denom":"ASSET18","index":"0.000002094718230780"},{"denom":"ASSET2","index":"0.000004055939892025"},{"denom":"ASSET3","index":"0.000001185763647039"},{"denom":"ASSET4","index":"0.000011170521774262"},{"denom":"ASSET5","index":"0.000000920733692817"},{"denom":"ASSET6","index":"0.000003749683056035"},{"denom":"ASSET7","index":"0.000005742315674818"},{"denom":"ASSET8","index":"0.000007491513372686"},{"denom":"ASSET9","index":"0.000003235328626359"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003240628198198"},{"denom":"ASSET1","index":"0.000027504329283847"},{"denom":"ASSET10","index":"0.000021940320319100"},{"denom":"ASSET11","index":"0.000027329345632586"},{"denom":"ASSET12","index":"0.000026051323397008"},{"denom":"ASSET13","index":"0.000008583813762496"},{"denom":"ASSET14","index":"0.000025085743554439"},{"denom":"ASSET15","index":"0.000019763439018939"},{"denom":"ASSET16","index":"0.000012202670980955"},{"denom":"ASSET17","index":"0.000009573761377605"},{"denom":"ASSET18","index":"0.000003959875003044"},{"denom":"ASSET2","index":"0.000008327243811102"},{"denom":"ASSET3","index":"0.000002312908746824"},{"denom":"ASSET4","index":"0.000022299606884078"},{"denom":"ASSET5","index":"0.000001802093087045"},{"denom":"ASSET6","index":"0.000007275447910852"},{"denom":"ASSET7","index":"0.000011427132859276"},{"denom":"ASSET8","index":"0.000015602768933976"},{"denom":"ASSET9","index":"0.000006623309483786"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001570100817458"},{"denom":"ASSET1","index":"0.000013089401919768"},{"denom":"ASSET10","index":"0.000009119446705996"},{"denom":"ASSET11","index":"0.000012662761138201"},{"denom":"ASSET12","index":"0.000011403229713207"},{"denom":"ASSET13","index":"0.000003924467777503"},{"denom":"ASSET14","index":"0.000011828301962489"},{"denom":"ASSET15","index":"0.000008457526081653"},{"denom":"ASSET16","index":"0.000005896112859965"},{"denom":"ASSET17","index":"0.000004187981201412"},{"denom":"ASSET18","index":"0.000001993604534455"},{"denom":"ASSET2","index":"0.000003863295018381"},{"denom":"ASSET3","index":"0.000001129343245325"},{"denom":"ASSET4","index":"0.000010637785958043"},{"denom":"ASSET5","index":"0.000000876809547412"},{"denom":"ASSET6","index":"0.000003569979481054"},{"denom":"ASSET7","index":"0.000005467903546113"},{"denom":"ASSET8","index":"0.000007135253365252"},{"denom":"ASSET9","index":"0.000003082165940365"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003152920186871"},{"denom":"ASSET1","index":"0.000026760622644749"},{"denom":"ASSET10","index":"0.000021403995558307"},{"denom":"ASSET11","index":"0.000026604821287493"},{"denom":"ASSET12","index":"0.000025390105019040"},{"denom":"ASSET13","index":"0.000008358570294936"},{"denom":"ASSET14","index":"0.000024411618525071"},{"denom":"ASSET15","index":"0.000019270968708391"},{"denom":"ASSET16","index":"0.000011868219590271"},{"denom":"ASSET17","index":"0.000009330682788205"},{"denom":"ASSET18","index":"0.000003846613833157"},{"denom":"ASSET2","index":"0.000008107095494272"},{"denom":"ASSET3","index":"0.000002249072663818"},{"denom":"ASSET4","index":"0.000021694789218154"},{"denom":"ASSET5","index":"0.000001752328837510"},{"denom":"ASSET6","index":"0.000007072706136469"},{"denom":"ASSET7","index":"0.000011115912260277"},{"denom":"ASSET8","index":"0.000015194187602297"},{"denom":"ASSET9","index":"0.000006447849146068"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001655272585709"},{"denom":"ASSET1","index":"0.000013804891217292"},{"denom":"ASSET10","index":"0.000009617831976915"},{"denom":"ASSET11","index":"0.000013354722791997"},{"denom":"ASSET12","index":"0.000012025575872058"},{"denom":"ASSET13","index":"0.000004138592201887"},{"denom":"ASSET14","index":"0.000012474922822124"},{"denom":"ASSET15","index":"0.000008919578032571"},{"denom":"ASSET16","index":"0.000006218567480803"},{"denom":"ASSET17","index":"0.000004416250829168"},{"denom":"ASSET18","index":"0.000002103798060547"},{"denom":"ASSET2","index":"0.000004074517134053"},{"denom":"ASSET3","index":"0.000001191960556756"},{"denom":"ASSET4","index":"0.000011218887197534"},{"denom":"ASSET5","index":"0.000000924981107448"},{"denom":"ASSET6","index":"0.000003765642448085"},{"denom":"ASSET7","index":"0.000005766756105051"},{"denom":"ASSET8","index":"0.000007525534569569"},{"denom":"ASSET9","index":"0.000003250577479728"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003218229550028"},{"denom":"ASSET1","index":"0.000027301798081180"},{"denom":"ASSET10","index":"0.000021745417841688"},{"denom":"ASSET11","index":"0.000027119412726222"},{"denom":"ASSET12","index":"0.000025834540696398"},{"denom":"ASSET13","index":"0.000008516471999212"},{"denom":"ASSET14","index":"0.000024897496810197"},{"denom":"ASSET15","index":"0.000019595694306931"},{"denom":"ASSET16","index":"0.000012114595919920"},{"denom":"ASSET17","index":"0.000009493460517354"},{"denom":"ASSET18","index":"0.000003932937797970"},{"denom":"ASSET2","index":"0.000008264095290285"},{"denom":"ASSET3","index":"0.000002297232512411"},{"denom":"ASSET4","index":"0.000022135581489268"},{"denom":"ASSET5","index":"0.000001789675045728"},{"denom":"ASSET6","index":"0.000007223884768794"},{"denom":"ASSET7","index":"0.000011342725097550"},{"denom":"ASSET8","index":"0.000015481678980085"},{"denom":"ASSET9","index":"0.000006573861400446"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001621688869515"},{"denom":"ASSET1","index":"0.000013520143478358"},{"denom":"ASSET10","index":"0.000009419470546393"},{"denom":"ASSET11","index":"0.000013079418684764"},{"denom":"ASSET12","index":"0.000011778054243646"},{"denom":"ASSET13","index":"0.000004053107355591"},{"denom":"ASSET14","index":"0.000012218035825109"},{"denom":"ASSET15","index":"0.000008735715386011"},{"denom":"ASSET16","index":"0.000006090623412316"},{"denom":"ASSET17","index":"0.000004325494601547"},{"denom":"ASSET18","index":"0.000002060555632782"},{"denom":"ASSET2","index":"0.000003991049142665"},{"denom":"ASSET3","index":"0.000001167586257565"},{"denom":"ASSET4","index":"0.000010987648142487"},{"denom":"ASSET5","index":"0.000000905975587506"},{"denom":"ASSET6","index":"0.000003688190199343"},{"denom":"ASSET7","index":"0.000005648412194460"},{"denom":"ASSET8","index":"0.000007370434701640"},{"denom":"ASSET9","index":"0.000003183549162496"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003224207736427"},{"denom":"ASSET1","index":"0.000027358045975387"},{"denom":"ASSET10","index":"0.000021853454393362"},{"denom":"ASSET11","index":"0.000027191663823691"},{"denom":"ASSET12","index":"0.000025935625558190"},{"denom":"ASSET13","index":"0.000008541293337334"},{"denom":"ASSET14","index":"0.000024954691173737"},{"denom":"ASSET15","index":"0.000019681390400685"},{"denom":"ASSET16","index":"0.000012135703886829"},{"denom":"ASSET17","index":"0.000009530848033034"},{"denom":"ASSET18","index":"0.000003936224347496"},{"denom":"ASSET2","index":"0.000008286598878032"},{"denom":"ASSET3","index":"0.000002301038846536"},{"denom":"ASSET4","index":"0.000022179933336345"},{"denom":"ASSET5","index":"0.000001792519798769"},{"denom":"ASSET6","index":"0.000007234068845872"},{"denom":"ASSET7","index":"0.000011365474292791"},{"denom":"ASSET8","index":"0.000015527655320242"},{"denom":"ASSET9","index":"0.000006590765495457"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001684197417987"},{"denom":"ASSET1","index":"0.000014041270025306"},{"denom":"ASSET10","index":"0.000009782380002809"},{"denom":"ASSET11","index":"0.000013583439347888"},{"denom":"ASSET12","index":"0.000012231725730520"},{"denom":"ASSET13","index":"0.000004209525615418"},{"denom":"ASSET14","index":"0.000012688588478388"},{"denom":"ASSET15","index":"0.000009072403677468"},{"denom":"ASSET16","index":"0.000006325419612958"},{"denom":"ASSET17","index":"0.000004492161044183"},{"denom":"ASSET18","index":"0.000002139608271529"},{"denom":"ASSET2","index":"0.000004144674335530"},{"denom":"ASSET3","index":"0.000001212331762086"},{"denom":"ASSET4","index":"0.000011410921471639"},{"denom":"ASSET5","index":"0.000000940827523152"},{"denom":"ASSET6","index":"0.000003830097231595"},{"denom":"ASSET7","index":"0.000005866137041214"},{"denom":"ASSET8","index":"0.000007654386885887"},{"denom":"ASSET9","index":"0.000003305963379963"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003193080094990"},{"denom":"ASSET1","index":"0.000027069824276969"},{"denom":"ASSET10","index":"0.000021489349079139"},{"denom":"ASSET11","index":"0.000026870184080824"},{"denom":"ASSET12","index":"0.000025561356340007"},{"denom":"ASSET13","index":"0.000008435097288603"},{"denom":"ASSET14","index":"0.000024680442306089"},{"denom":"ASSET15","index":"0.000019377704768171"},{"denom":"ASSET16","index":"0.000012016988086595"},{"denom":"ASSET17","index":"0.000009392966467546"},{"denom":"ASSET18","index":"0.000003905368596850"},{"denom":"ASSET2","index":"0.000008189075060838"},{"denom":"ASSET3","index":"0.000002279664955012"},{"denom":"ASSET4","index":"0.000021948593995488"},{"denom":"ASSET5","index":"0.000001775351671947"},{"denom":"ASSET6","index":"0.000007168631437760"},{"denom":"ASSET7","index":"0.000011248752159293"},{"denom":"ASSET8","index":"0.000015334459676317"},{"denom":"ASSET9","index":"0.000006513651901550"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001677613648548"},{"denom":"ASSET1","index":"0.000013997394471820"},{"denom":"ASSET10","index":"0.000009752554992736"},{"denom":"ASSET11","index":"0.000013541183096442"},{"denom":"ASSET12","index":"0.000012193285851007"},{"denom":"ASSET13","index":"0.000004195070965406"},{"denom":"ASSET14","index":"0.000012649497226385"},{"denom":"ASSET15","index":"0.000009043353672830"},{"denom":"ASSET16","index":"0.000006306085420563"},{"denom":"ASSET17","index":"0.000004477092542912"},{"denom":"ASSET18","index":"0.000002131751335856"},{"denom":"ASSET2","index":"0.000004130786635239"},{"denom":"ASSET3","index":"0.000001208960144751"},{"denom":"ASSET4","index":"0.000011376252751467"},{"denom":"ASSET5","index":"0.000000937307007594"},{"denom":"ASSET6","index":"0.000003817659736684"},{"denom":"ASSET7","index":"0.000005847800357116"},{"denom":"ASSET8","index":"0.000007631172097229"},{"denom":"ASSET9","index":"0.000003295090343070"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003316222748087"},{"denom":"ASSET1","index":"0.000028147075207200"},{"denom":"ASSET10","index":"0.000022466702115272"},{"denom":"ASSET11","index":"0.000027971336509453"},{"denom":"ASSET12","index":"0.000026669877578580"},{"denom":"ASSET13","index":"0.000008784355829882"},{"denom":"ASSET14","index":"0.000025672864554615"},{"denom":"ASSET15","index":"0.000020235356040284"},{"denom":"ASSET16","index":"0.000012487172511964"},{"denom":"ASSET17","index":"0.000009799807931023"},{"denom":"ASSET18","index":"0.000004049727438870"},{"denom":"ASSET2","index":"0.000008522892941853"},{"denom":"ASSET3","index":"0.000002368075218536"},{"denom":"ASSET4","index":"0.000022820717384594"},{"denom":"ASSET5","index":"0.000001843591257654"},{"denom":"ASSET6","index":"0.000007443165294976"},{"denom":"ASSET7","index":"0.000011693499621126"},{"denom":"ASSET8","index":"0.000015972009373807"},{"denom":"ASSET9","index":"0.000006779069609364"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001520550536467"},{"denom":"ASSET1","index":"0.000012675827554874"},{"denom":"ASSET10","index":"0.000008831388003026"},{"denom":"ASSET11","index":"0.000012262725604616"},{"denom":"ASSET12","index":"0.000011042474271843"},{"denom":"ASSET13","index":"0.000003800233070086"},{"denom":"ASSET14","index":"0.000011455195131741"},{"denom":"ASSET15","index":"0.000008190012927118"},{"denom":"ASSET16","index":"0.000005710257954490"},{"denom":"ASSET17","index":"0.000004055182520937"},{"denom":"ASSET18","index":"0.000001931747034924"},{"denom":"ASSET2","index":"0.000003741926245004"},{"denom":"ASSET3","index":"0.000001094491513968"},{"denom":"ASSET4","index":"0.000010301253521611"},{"denom":"ASSET5","index":"0.000000849450412477"},{"denom":"ASSET6","index":"0.000003457632836431"},{"denom":"ASSET7","index":"0.000005295631642792"},{"denom":"ASSET8","index":"0.000006910311498182"},{"denom":"ASSET9","index":"0.000002984699699651"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003047858420945"},{"denom":"ASSET1","index":"0.000025863853767953"},{"denom":"ASSET10","index":"0.000020681482671570"},{"denom":"ASSET11","index":"0.000025712271525236"},{"denom":"ASSET12","index":"0.000024535470175220"},{"denom":"ASSET13","index":"0.000008077733573885"},{"denom":"ASSET14","index":"0.000023593590000343"},{"denom":"ASSET15","index":"0.000018621561303244"},{"denom":"ASSET16","index":"0.000011471343089677"},{"denom":"ASSET17","index":"0.000009016132124589"},{"denom":"ASSET18","index":"0.000003719208275283"},{"denom":"ASSET2","index":"0.000007835789085827"},{"denom":"ASSET3","index":"0.000002174729135607"},{"denom":"ASSET4","index":"0.000020967814383093"},{"denom":"ASSET5","index":"0.000001694402278429"},{"denom":"ASSET6","index":"0.000006836893759575"},{"denom":"ASSET7","index":"0.000010744095518390"},{"denom":"ASSET8","index":"0.000014684305897471"},{"denom":"ASSET9","index":"0.000006231971052532"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001765508823557"},{"denom":"ASSET1","index":"0.000014724618911480"},{"denom":"ASSET10","index":"0.000010258363403154"},{"denom":"ASSET11","index":"0.000014244524406828"},{"denom":"ASSET12","index":"0.000012826610887714"},{"denom":"ASSET13","index":"0.000004413772058893"},{"denom":"ASSET14","index":"0.000013305845007949"},{"denom":"ASSET15","index":"0.000009513270498085"},{"denom":"ASSET16","index":"0.000006632703470176"},{"denom":"ASSET17","index":"0.000004710604682736"},{"denom":"ASSET18","index":"0.000002243882559375"},{"denom":"ASSET2","index":"0.000004346662074372"},{"denom":"ASSET3","index":"0.000001271648168235"},{"denom":"ASSET4","index":"0.000011966226470776"},{"denom":"ASSET5","index":"0.000000986860926228"},{"denom":"ASSET6","index":"0.000004016274458267"},{"denom":"ASSET7","index":"0.000006150888196691"},{"denom":"ASSET8","index":"0.000008026526225616"},{"denom":"ASSET9","index":"0.000003466488815844"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003365151784209"},{"denom":"ASSET1","index":"0.000028538337865727"},{"denom":"ASSET10","index":"0.000022670552359626"},{"denom":"ASSET11","index":"0.000028331786642422"},{"denom":"ASSET12","index":"0.000026959391418936"},{"denom":"ASSET13","index":"0.000008894072871450"},{"denom":"ASSET14","index":"0.000026020188745878"},{"denom":"ASSET15","index":"0.000020439828986765"},{"denom":"ASSET16","index":"0.000012667128947757"},{"denom":"ASSET17","index":"0.000009907060013179"},{"denom":"ASSET18","index":"0.000004116201786219"},{"denom":"ASSET2","index":"0.000008634485522558"},{"denom":"ASSET3","index":"0.000002403102945281"},{"denom":"ASSET4","index":"0.000023139017263426"},{"denom":"ASSET5","index":"0.000001871649891727"},{"denom":"ASSET6","index":"0.000007555863827839"},{"denom":"ASSET7","index":"0.000011857581945748"},{"denom":"ASSET8","index":"0.000016169532559731"},{"denom":"ASSET9","index":"0.000006867789268222"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001833509758465"},{"denom":"ASSET1","index":"0.000015308139656127"},{"denom":"ASSET10","index":"0.000010661025831945"},{"denom":"ASSET11","index":"0.000014808091540182"},{"denom":"ASSET12","index":"0.000013334616425197"},{"denom":"ASSET13","index":"0.000004587108050268"},{"denom":"ASSET14","index":"0.000013827997232930"},{"denom":"ASSET15","index":"0.000009887618079284"},{"denom":"ASSET16","index":"0.000006893996691827"},{"denom":"ASSET17","index":"0.000004893804228047"},{"denom":"ASSET18","index":"0.000002326890566197"},{"denom":"ASSET2","index":"0.000004513767659929"},{"denom":"ASSET3","index":"0.000001320127026095"},{"denom":"ASSET4","index":"0.000012434529816496"},{"denom":"ASSET5","index":"0.000001020098156528"},{"denom":"ASSET6","index":"0.000004173734941087"},{"denom":"ASSET7","index":"0.000006393948575882"},{"denom":"ASSET8","index":"0.000008340802573961"},{"denom":"ASSET9","index":"0.000003600346434803"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003461123478470"},{"denom":"ASSET1","index":"0.000029368181297786"},{"denom":"ASSET10","index":"0.000023294808028239"},{"denom":"ASSET11","index":"0.000029147392384169"},{"denom":"ASSET12","index":"0.000027719461688447"},{"denom":"ASSET13","index":"0.000009147542663388"},{"denom":"ASSET14","index":"0.000026768604990580"},{"denom":"ASSET15","index":"0.000021008846141082"},{"denom":"ASSET16","index":"0.000013035302068339"},{"denom":"ASSET17","index":"0.000010182949549387"},{"denom":"ASSET18","index":"0.000004232564951180"},{"denom":"ASSET2","index":"0.000008877642147806"},{"denom":"ASSET3","index":"0.000002471921418528"},{"denom":"ASSET4","index":"0.000023806252184245"},{"denom":"ASSET5","index":"0.000001920199705662"},{"denom":"ASSET6","index":"0.000007776538212319"},{"denom":"ASSET7","index":"0.000012202060569359"},{"denom":"ASSET8","index":"0.000016628688342614"},{"denom":"ASSET9","index":"0.000007061722298848"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001580229076001"},{"denom":"ASSET1","index":"0.000013178675425859"},{"denom":"ASSET10","index":"0.000009181488308837"},{"denom":"ASSET11","index":"0.000012749045790152"},{"denom":"ASSET12","index":"0.000011480356468073"},{"denom":"ASSET13","index":"0.000003950572690002"},{"denom":"ASSET14","index":"0.000011909209196663"},{"denom":"ASSET15","index":"0.000008514902002442"},{"denom":"ASSET16","index":"0.000005936347281082"},{"denom":"ASSET17","index":"0.000004216274924019"},{"denom":"ASSET18","index":"0.000002008304897474"},{"denom":"ASSET2","index":"0.000003889973934875"},{"denom":"ASSET3","index":"0.000001137392019304"},{"denom":"ASSET4","index":"0.000010709664607998"},{"denom":"ASSET5","index":"0.000000883343392042"},{"denom":"ASSET6","index":"0.000003594749230410"},{"denom":"ASSET7","index":"0.000005505163831141"},{"denom":"ASSET8","index":"0.000007184060111002"},{"denom":"ASSET9","index":"0.000003102967025342"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003136420796654"},{"denom":"ASSET1","index":"0.000026617535879560"},{"denom":"ASSET10","index":"0.000021257162201233"},{"denom":"ASSET11","index":"0.000026454281403244"},{"denom":"ASSET12","index":"0.000025229520616223"},{"denom":"ASSET13","index":"0.000008309311482354"},{"denom":"ASSET14","index":"0.000024278363089230"},{"denom":"ASSET15","index":"0.000019144672836670"},{"denom":"ASSET16","index":"0.000011806881934189"},{"denom":"ASSET17","index":"0.000009271795054357"},{"denom":"ASSET18","index":"0.000003829937127836"},{"denom":"ASSET2","index":"0.000008061315465971"},{"denom":"ASSET3","index":"0.000002238409344787"},{"denom":"ASSET4","index":"0.000021579173085678"},{"denom":"ASSET5","index":"0.000001744155749232"},{"denom":"ASSET6","index":"0.000007037998659171"},{"denom":"ASSET7","index":"0.000011056982942661"},{"denom":"ASSET8","index":"0.000015105683491420"},{"denom":"ASSET9","index":"0.000006411626899884"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001065673750407"},{"denom":"ASSET1","index":"0.000008885137524612"},{"denom":"ASSET10","index":"0.000006190162379117"},{"denom":"ASSET11","index":"0.000008595321581390"},{"denom":"ASSET12","index":"0.000007740138401991"},{"denom":"ASSET13","index":"0.000002663662498568"},{"denom":"ASSET14","index":"0.000008029258508615"},{"denom":"ASSET15","index":"0.000005740999854868"},{"denom":"ASSET16","index":"0.000004002452113836"},{"denom":"ASSET17","index":"0.000002842492504350"},{"denom":"ASSET18","index":"0.000001354098020432"},{"denom":"ASSET2","index":"0.000002622608139264"},{"denom":"ASSET3","index":"0.000000767159849705"},{"denom":"ASSET4","index":"0.000007220696381306"},{"denom":"ASSET5","index":"0.000000595288209907"},{"denom":"ASSET6","index":"0.000002423598872130"},{"denom":"ASSET7","index":"0.000003711940334016"},{"denom":"ASSET8","index":"0.000004843718561268"},{"denom":"ASSET9","index":"0.000002092032733005"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000002559869929403"},{"denom":"ASSET1","index":"0.000021787096732684"},{"denom":"ASSET10","index":"0.000017783238471081"},{"denom":"ASSET11","index":"0.000021752938768967"},{"denom":"ASSET12","index":"0.000020940235345308"},{"denom":"ASSET13","index":"0.000006848308161575"},{"denom":"ASSET14","index":"0.000019904298850841"},{"denom":"ASSET15","index":"0.000015946274018453"},{"denom":"ASSET16","index":"0.000009638424477568"},{"denom":"ASSET17","index":"0.000007695902028378"},{"denom":"ASSET18","index":"0.000003102977872608"},{"denom":"ASSET2","index":"0.000006627591716064"},{"denom":"ASSET3","index":"0.000001824087350341"},{"denom":"ASSET4","index":"0.000017655906837434"},{"denom":"ASSET5","index":"0.000001421889695470"},{"denom":"ASSET6","index":"0.000005729615091854"},{"denom":"ASSET7","index":"0.000009042175373173"},{"denom":"ASSET8","index":"0.000012449153729005"},{"denom":"ASSET9","index":"0.000005268661072858"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001663945626017"},{"denom":"ASSET1","index":"0.000013874870096624"},{"denom":"ASSET10","index":"0.000009666844154779"},{"denom":"ASSET11","index":"0.000013422526194886"},{"denom":"ASSET12","index":"0.000012086742376498"},{"denom":"ASSET13","index":"0.000004159391889779"},{"denom":"ASSET14","index":"0.000012538614102973"},{"denom":"ASSET15","index":"0.000008964719539034"},{"denom":"ASSET16","index":"0.000006250183953344"},{"denom":"ASSET17","index":"0.000004438919645342"},{"denom":"ASSET18","index":"0.000002114400826704"},{"denom":"ASSET2","index":"0.000004095648229305"},{"denom":"ASSET3","index":"0.000001197908641659"},{"denom":"ASSET4","index":"0.000011275545275051"},{"denom":"ASSET5","index":"0.000000929713092403"},{"denom":"ASSET6","index":"0.000003784956906399"},{"denom":"ASSET7","index":"0.000005796423525818"},{"denom":"ASSET8","index":"0.000007563775534382"},{"denom":"ASSET9","index":"0.000003266980643136"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003299045378029"},{"denom":"ASSET1","index":"0.000027992490930804"},{"denom":"ASSET10","index":"0.000022352284005938"},{"denom":"ASSET11","index":"0.000027819914533732"},{"denom":"ASSET12","index":"0.000026530494002155"},{"denom":"ASSET13","index":"0.000008738242797579"},{"denom":"ASSET14","index":"0.000025532401567106"},{"denom":"ASSET15","index":"0.000020131602968729"},{"denom":"ASSET16","index":"0.000012417136212826"},{"denom":"ASSET17","index":"0.000009749421325842"},{"denom":"ASSET18","index":"0.000004027997856345"},{"denom":"ASSET2","index":"0.000008477931503293"},{"denom":"ASSET3","index":"0.000002354450357881"},{"denom":"ASSET4","index":"0.000022693933657862"},{"denom":"ASSET5","index":"0.000001834114741991"},{"denom":"ASSET6","index":"0.000007402245947993"},{"denom":"ASSET7","index":"0.000011628988518089"},{"denom":"ASSET8","index":"0.000015885667960333"},{"denom":"ASSET9","index":"0.000006742956926982"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001554670726054"},{"denom":"ASSET1","index":"0.000012963415617374"},{"denom":"ASSET10","index":"0.000009031685079156"},{"denom":"ASSET11","index":"0.000012540799003679"},{"denom":"ASSET12","index":"0.000011293255065955"},{"denom":"ASSET13","index":"0.000003886042255656"},{"denom":"ASSET14","index":"0.000011715237120170"},{"denom":"ASSET15","index":"0.000008376185136293"},{"denom":"ASSET16","index":"0.000005839850894644"},{"denom":"ASSET17","index":"0.000004147480761425"},{"denom":"ASSET18","index":"0.000001975383661309"},{"denom":"ASSET2","index":"0.000003826393664534"},{"denom":"ASSET3","index":"0.000001119362922759"},{"denom":"ASSET4","index":"0.000010534956487329"},{"denom":"ASSET5","index":"0.000000868711928150"},{"denom":"ASSET6","index":"0.000003536399982164"},{"denom":"ASSET7","index":"0.000005415965161990"},{"denom":"ASSET8","index":"0.000007067088929007"},{"denom":"ASSET9","index":"0.000003052231098907"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003157426180098"},{"denom":"ASSET1","index":"0.000026803913890418"},{"denom":"ASSET10","index":"0.000021467927303389"},{"denom":"ASSET11","index":"0.000026655124661377"},{"denom":"ASSET12","index":"0.000025453388278707"},{"denom":"ASSET13","index":"0.000008375182650914"},{"denom":"ASSET14","index":"0.000024453809207757"},{"denom":"ASSET15","index":"0.000019323681821282"},{"denom":"ASSET16","index":"0.000011885939188892"},{"denom":"ASSET17","index":"0.000009353763879690"},{"denom":"ASSET18","index":"0.000003851457527173"},{"denom":"ASSET2","index":"0.000008122633355733"},{"denom":"ASSET3","index":"0.000002252845423920"},{"denom":"ASSET4","index":"0.000021728796023940"},{"denom":"ASSET5","index":"0.000001755342604855"},{"denom":"ASSET6","index":"0.000007082922688985"},{"denom":"ASSET7","index":"0.000011133765978354"},{"denom":"ASSET8","index":"0.000015225414484063"},{"denom":"ASSET9","index":"0.000006459804222065"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001578706846766"},{"denom":"ASSET1","index":"0.000013164667632738"},{"denom":"ASSET10","index":"0.000009171819989970"},{"denom":"ASSET11","index":"0.000012734981690366"},{"denom":"ASSET12","index":"0.000011467468005207"},{"denom":"ASSET13","index":"0.000003946168668528"},{"denom":"ASSET14","index":"0.000011895957050803"},{"denom":"ASSET15","index":"0.000008505148486066"},{"denom":"ASSET16","index":"0.000005930623522158"},{"denom":"ASSET17","index":"0.000004211879752669"},{"denom":"ASSET18","index":"0.000002005998995588"},{"denom":"ASSET2","index":"0.000003886323829757"},{"denom":"ASSET3","index":"0.000001135855039864"},{"denom":"ASSET4","index":"0.000010697863378618"},{"denom":"ASSET5","index":"0.000000882112923477"},{"denom":"ASSET6","index":"0.000003590690326231"},{"denom":"ASSET7","index":"0.000005499740683011"},{"denom":"ASSET8","index":"0.000007176593065360"},{"denom":"ASSET9","index":"0.000003098765751537"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003185213515607"},{"denom":"ASSET1","index":"0.000027035699090666"},{"denom":"ASSET10","index":"0.000021635640181728"},{"denom":"ASSET11","index":"0.000026880669357351"},{"denom":"ASSET12","index":"0.000025658872180332"},{"denom":"ASSET13","index":"0.000008444958797633"},{"denom":"ASSET14","index":"0.000024662649108986"},{"denom":"ASSET15","index":"0.000019476753279332"},{"denom":"ASSET16","index":"0.000011989846651744"},{"denom":"ASSET17","index":"0.000009429633404312"},{"denom":"ASSET18","index":"0.000003886090392826"},{"denom":"ASSET2","index":"0.000008191890279929"},{"denom":"ASSET3","index":"0.000002271981699175"},{"denom":"ASSET4","index":"0.000021916623044014"},{"denom":"ASSET5","index":"0.000001770727550439"},{"denom":"ASSET6","index":"0.000007144791673859"},{"denom":"ASSET7","index":"0.000011230376410345"},{"denom":"ASSET8","index":"0.000015353061978158"},{"denom":"ASSET9","index":"0.000006513931773648"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001736464555496"},{"denom":"ASSET1","index":"0.000014486324003877"},{"denom":"ASSET10","index":"0.000010092542477093"},{"denom":"ASSET11","index":"0.000014014496766071"},{"denom":"ASSET12","index":"0.000012620063107870"},{"denom":"ASSET13","index":"0.000004342915393341"},{"denom":"ASSET14","index":"0.000013091890345676"},{"denom":"ASSET15","index":"0.000009359368553661"},{"denom":"ASSET16","index":"0.000006524897117620"},{"denom":"ASSET17","index":"0.000004634080157191"},{"denom":"ASSET18","index":"0.000002206537788701"},{"denom":"ASSET2","index":"0.000004276263218483"},{"denom":"ASSET3","index":"0.000001250605280877"},{"denom":"ASSET4","index":"0.000011772878885340"},{"denom":"ASSET5","index":"0.000000969964544635"},{"denom":"ASSET6","index":"0.000003951772367204"},{"denom":"ASSET7","index":"0.000006051315875212"},{"denom":"ASSET8","index":"0.000007896528716001"},{"denom":"ASSET9","index":"0.000003409784945337"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003356675502673"},{"denom":"ASSET1","index":"0.000028477076245214"},{"denom":"ASSET10","index":"0.000022663760086849"},{"denom":"ASSET11","index":"0.000028282539274294"},{"denom":"ASSET12","index":"0.000026934248109484"},{"denom":"ASSET13","index":"0.000008880550781135"},{"denom":"ASSET14","index":"0.000025969128454053"},{"denom":"ASSET15","index":"0.000020425731449718"},{"denom":"ASSET16","index":"0.000012636600959200"},{"denom":"ASSET17","index":"0.000009896936242996"},{"denom":"ASSET18","index":"0.000004102733083140"},{"denom":"ASSET2","index":"0.000008619316582261"},{"denom":"ASSET3","index":"0.000002396767404444"},{"denom":"ASSET4","index":"0.000023088672429632"},{"denom":"ASSET5","index":"0.000001866260713425"},{"denom":"ASSET6","index":"0.000007536521735823"},{"denom":"ASSET7","index":"0.000011831316132227"},{"denom":"ASSET8","index":"0.000016143846449802"},{"denom":"ASSET9","index":"0.000006854365607618"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001432199402946"},{"denom":"ASSET1","index":"0.000011943338809449"},{"denom":"ASSET10","index":"0.000008321234131428"},{"denom":"ASSET11","index":"0.000011554338026882"},{"denom":"ASSET12","index":"0.000010404248756685"},{"denom":"ASSET13","index":"0.000003580160245814"},{"denom":"ASSET14","index":"0.000010793249539252"},{"denom":"ASSET15","index":"0.000007717099003024"},{"denom":"ASSET16","index":"0.000005380388215223"},{"denom":"ASSET17","index":"0.000003821002469456"},{"denom":"ASSET18","index":"0.000001819847139312"},{"denom":"ASSET2","index":"0.000003525361874705"},{"denom":"ASSET3","index":"0.000001031021204577"},{"denom":"ASSET4","index":"0.000009706076917365"},{"denom":"ASSET5","index":"0.000000800326827437"},{"denom":"ASSET6","index":"0.000003258135250159"},{"denom":"ASSET7","index":"0.000004989357863356"},{"denom":"ASSET8","index":"0.000006510858315517"},{"denom":"ASSET9","index":"0.000002812306527182"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000002962853679956"},{"denom":"ASSET1","index":"0.000025162993314326"},{"denom":"ASSET10","index":"0.000020199688926412"},{"denom":"ASSET11","index":"0.000025035647772320"},{"denom":"ASSET12","index":"0.000023929456511577"},{"denom":"ASSET13","index":"0.000007867725037604"},{"denom":"ASSET14","index":"0.000022960507028012"},{"denom":"ASSET15","index":"0.000018173489333858"},{"denom":"ASSET16","index":"0.000011155286879957"},{"denom":"ASSET17","index":"0.000008793607250882"},{"denom":"ASSET18","index":"0.000003611579051495"},{"denom":"ASSET2","index":"0.000007628670547867"},{"denom":"ASSET3","index":"0.000002114031306235"},{"denom":"ASSET4","index":"0.000020398130246320"},{"denom":"ASSET5","index":"0.000001647096325587"},{"denom":"ASSET6","index":"0.000006645213242757"},{"denom":"ASSET7","index":"0.000010450616802650"},{"denom":"ASSET8","index":"0.000014303332598966"},{"denom":"ASSET9","index":"0.000006067112886031"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001597673370668"},{"denom":"ASSET1","index":"0.000013327099930964"},{"denom":"ASSET10","index":"0.000009285285696821"},{"denom":"ASSET11","index":"0.000012892979142852"},{"denom":"ASSET12","index":"0.000011609669101507"},{"denom":"ASSET13","index":"0.000003995544306884"},{"denom":"ASSET14","index":"0.000012043789889618"},{"denom":"ASSET15","index":"0.000008610289110917"},{"denom":"ASSET16","index":"0.000006002842621820"},{"denom":"ASSET17","index":"0.000004263637708946"},{"denom":"ASSET18","index":"0.000002030433278566"},{"denom":"ASSET2","index":"0.000003934304697275"},{"denom":"ASSET3","index":"0.000001149943780421"},{"denom":"ASSET4","index":"0.000010829884739162"},{"denom":"ASSET5","index":"0.000000892737420067"},{"denom":"ASSET6","index":"0.000003634911050302"},{"denom":"ASSET7","index":"0.000005567360953495"},{"denom":"ASSET8","index":"0.000007264378579749"},{"denom":"ASSET9","index":"0.000003138189772368"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003135234009226"},{"denom":"ASSET1","index":"0.000026602125077525"},{"denom":"ASSET10","index":"0.000021213712135644"},{"denom":"ASSET11","index":"0.000026430841190504"},{"denom":"ASSET12","index":"0.000025191219856579"},{"denom":"ASSET13","index":"0.000008300995957475"},{"denom":"ASSET14","index":"0.000024262534835813"},{"denom":"ASSET15","index":"0.000019110376679732"},{"denom":"ASSET16","index":"0.000011801461546978"},{"denom":"ASSET17","index":"0.000009257538829689"},{"denom":"ASSET18","index":"0.000003829421505073"},{"denom":"ASSET2","index":"0.000008055136326188"},{"denom":"ASSET3","index":"0.000002237228869924"},{"denom":"ASSET4","index":"0.000021566736915931"},{"denom":"ASSET5","index":"0.000001743257901616"},{"denom":"ASSET6","index":"0.000007036288319926"},{"denom":"ASSET7","index":"0.000011051703047857"},{"denom":"ASSET8","index":"0.000015089589803941"},{"denom":"ASSET9","index":"0.000006406386950018"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001689516061942"},{"denom":"ASSET1","index":"0.000014086551658080"},{"denom":"ASSET10","index":"0.000009813816295422"},{"denom":"ASSET11","index":"0.000013627312671286"},{"denom":"ASSET12","index":"0.000012271349136594"},{"denom":"ASSET13","index":"0.000004223185893030"},{"denom":"ASSET14","index":"0.000012729983861563"},{"denom":"ASSET15","index":"0.000009101391604066"},{"denom":"ASSET16","index":"0.000006345353421478"},{"denom":"ASSET17","index":"0.000004506584688828"},{"denom":"ASSET18","index":"0.000002146942263262"},{"denom":"ASSET2","index":"0.000004157925615959"},{"denom":"ASSET3","index":"0.000001216379053179"},{"denom":"ASSET4","index":"0.000011447740269489"},{"denom":"ASSET5","index":"0.000000943856970227"},{"denom":"ASSET6","index":"0.000003842500943451"},{"denom":"ASSET7","index":"0.000005884905911035"},{"denom":"ASSET8","index":"0.000007678959268655"},{"denom":"ASSET9","index":"0.000003316793155937"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003297864217859"},{"denom":"ASSET1","index":"0.000027973253972789"},{"denom":"ASSET10","index":"0.000022291630953866"},{"denom":"ASSET11","index":"0.000027789008146512"},{"denom":"ASSET12","index":"0.000026479178332828"},{"denom":"ASSET13","index":"0.000008727103479255"},{"denom":"ASSET14","index":"0.000025511286037616"},{"denom":"ASSET15","index":"0.000020085740117730"},{"denom":"ASSET16","index":"0.000012411485442612"},{"denom":"ASSET17","index":"0.000009730550155880"},{"denom":"ASSET18","index":"0.000004028926705548"},{"denom":"ASSET2","index":"0.000008468714781887"},{"denom":"ASSET3","index":"0.000002353891879987"},{"denom":"ASSET4","index":"0.000022679492169342"},{"denom":"ASSET5","index":"0.000001833514119464"},{"denom":"ASSET6","index":"0.000007400677249018"},{"denom":"ASSET7","index":"0.000011621769805761"},{"denom":"ASSET8","index":"0.000015864980999233"},{"denom":"ASSET9","index":"0.000006736116007098"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001411859688057"},{"denom":"ASSET1","index":"0.000011770485537623"},{"denom":"ASSET10","index":"0.000008200497469250"},{"denom":"ASSET11","index":"0.000011386615852852"},{"denom":"ASSET12","index":"0.000010253874969484"},{"denom":"ASSET13","index":"0.000003528347966974"},{"denom":"ASSET14","index":"0.000010637094027671"},{"denom":"ASSET15","index":"0.000007605174144562"},{"denom":"ASSET16","index":"0.000005302606662519"},{"denom":"ASSET17","index":"0.000003765826670265"},{"denom":"ASSET18","index":"0.000001793777493075"},{"denom":"ASSET2","index":"0.000003474345960472"},{"denom":"ASSET3","index":"0.000001016278724767"},{"denom":"ASSET4","index":"0.000009565512043233"},{"denom":"ASSET5","index":"0.000000788559420242"},{"denom":"ASSET6","index":"0.000003210842193807"},{"denom":"ASSET7","index":"0.000004917435724579"},{"denom":"ASSET8","index":"0.000006416479374940"},{"denom":"ASSET9","index":"0.000002771018622781"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000002930820438736"},{"denom":"ASSET1","index":"0.000024889799880283"},{"denom":"ASSET10","index":"0.000019988623694797"},{"denom":"ASSET11","index":"0.000024765615752571"},{"denom":"ASSET12","index":"0.000023676022623299"},{"denom":"ASSET13","index":"0.000007783195940338"},{"denom":"ASSET14","index":"0.000022712072914709"},{"denom":"ASSET15","index":"0.000017982209004670"},{"denom":"ASSET16","index":"0.000011033267632466"},{"denom":"ASSET17","index":"0.000008700651286884"},{"denom":"ASSET18","index":"0.000003571624768330"},{"denom":"ASSET2","index":"0.000007546215495169"},{"denom":"ASSET3","index":"0.000002090977414753"},{"denom":"ASSET4","index":"0.000020176663420937"},{"denom":"ASSET5","index":"0.000001628342560149"},{"denom":"ASSET6","index":"0.000006572371850885"},{"denom":"ASSET7","index":"0.000010337273058537"},{"denom":"ASSET8","index":"0.000014149515747938"},{"denom":"ASSET9","index":"0.000006000707920121"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001726304213109"},{"denom":"ASSET1","index":"0.000014431903221591"},{"denom":"ASSET10","index":"0.000010055058078201"},{"denom":"ASSET11","index":"0.000013959161452463"},{"denom":"ASSET12","index":"0.000012572806376704"},{"denom":"ASSET13","index":"0.000004323728090679"},{"denom":"ASSET14","index":"0.000013040236440562"},{"denom":"ASSET15","index":"0.000009322042750788"},{"denom":"ASSET16","index":"0.000006501527251832"},{"denom":"ASSET17","index":"0.000004615871880590"},{"denom":"ASSET18","index":"0.000002199045982237"},{"denom":"ASSET2","index":"0.000004259987627426"},{"denom":"ASSET3","index":"0.000001242939033438"},{"denom":"ASSET4","index":"0.000011728245238599"},{"denom":"ASSET5","index":"0.000000966730359341"},{"denom":"ASSET6","index":"0.000003935973605888"},{"denom":"ASSET7","index":"0.000006028785482704"},{"denom":"ASSET8","index":"0.000007866635506506"},{"denom":"ASSET9","index":"0.000003394179668236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003313075721980"},{"denom":"ASSET1","index":"0.000028138029356789"},{"denom":"ASSET10","index":"0.000022370607880245"},{"denom":"ASSET11","index":"0.000027937207217164"},{"denom":"ASSET12","index":"0.000026595598409551"},{"denom":"ASSET13","index":"0.000008769097729958"},{"denom":"ASSET14","index":"0.000025655242037122"},{"denom":"ASSET15","index":"0.000020162686714325"},{"denom":"ASSET16","index":"0.000012488922131836"},{"denom":"ASSET17","index":"0.000009772018779266"},{"denom":"ASSET18","index":"0.000004056016110298"},{"denom":"ASSET2","index":"0.000008514325121927"},{"denom":"ASSET3","index":"0.000002365037757716"},{"denom":"ASSET4","index":"0.000022813272666626"},{"denom":"ASSET5","index":"0.000001844445619129"},{"denom":"ASSET6","index":"0.000007446834645040"},{"denom":"ASSET7","index":"0.000011690909413493"},{"denom":"ASSET8","index":"0.000015945057917181"},{"denom":"ASSET9","index":"0.000006769080892636"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001630255611072"},{"denom":"ASSET1","index":"0.000013593541268721"},{"denom":"ASSET10","index":"0.000009470169531707"},{"denom":"ASSET11","index":"0.000013149994246609"},{"denom":"ASSET12","index":"0.000011841383661505"},{"denom":"ASSET13","index":"0.000004074904678306"},{"denom":"ASSET14","index":"0.000012284196334242"},{"denom":"ASSET15","index":"0.000008782818517308"},{"denom":"ASSET16","index":"0.000006123739432762"},{"denom":"ASSET17","index":"0.000004348816994942"},{"denom":"ASSET18","index":"0.000002071599585061"},{"denom":"ASSET2","index":"0.000004012484981486"},{"denom":"ASSET3","index":"0.000001173490300222"},{"denom":"ASSET4","index":"0.000011046817638451"},{"denom":"ASSET5","index":"0.000000910593224203"},{"denom":"ASSET6","index":"0.000003707729991128"},{"denom":"ASSET7","index":"0.000005678723711902"},{"denom":"ASSET8","index":"0.000007410319536635"},{"denom":"ASSET9","index":"0.000003200294573447"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003344718004914"},{"denom":"ASSET1","index":"0.000028399683918161"},{"denom":"ASSET10","index":"0.000022773943545696"},{"denom":"ASSET11","index":"0.000028249525692452"},{"denom":"ASSET12","index":"0.000026989510465266"},{"denom":"ASSET13","index":"0.000008877216029957"},{"denom":"ASSET14","index":"0.000025911788013611"},{"denom":"ASSET15","index":"0.000020494299775586"},{"denom":"ASSET16","index":"0.000012591463658113"},{"denom":"ASSET17","index":"0.000009918208342143"},{"denom":"ASSET18","index":"0.000004078542450859"},{"denom":"ASSET2","index":"0.000008608606683653"},{"denom":"ASSET3","index":"0.000002386103437058"},{"denom":"ASSET4","index":"0.000023022167148602"},{"denom":"ASSET5","index":"0.000001858883946943"},{"denom":"ASSET6","index":"0.000007501347044310"},{"denom":"ASSET7","index":"0.000011795380538461"},{"denom":"ASSET8","index":"0.000016137954986293"},{"denom":"ASSET9","index":"0.000006845854741756"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001401914217082"},{"denom":"ASSET1","index":"0.000011691084141249"},{"denom":"ASSET10","index":"0.000008144816837289"},{"denom":"ASSET11","index":"0.000011309282624399"},{"denom":"ASSET12","index":"0.000010184195671197"},{"denom":"ASSET13","index":"0.000003504785542706"},{"denom":"ASSET14","index":"0.000010565150621491"},{"denom":"ASSET15","index":"0.000007553913381055"},{"denom":"ASSET16","index":"0.000005266490546178"},{"denom":"ASSET17","index":"0.000003740131045332"},{"denom":"ASSET18","index":"0.000001781176034264"},{"denom":"ASSET2","index":"0.000003450605283109"},{"denom":"ASSET3","index":"0.000001009107335001"},{"denom":"ASSET4","index":"0.000009501016460336"},{"denom":"ASSET5","index":"0.000000783074064494"},{"denom":"ASSET6","index":"0.000003189016217240"},{"denom":"ASSET7","index":"0.000004883842462771"},{"denom":"ASSET8","index":"0.000006372953035143"},{"denom":"ASSET9","index":"0.000002752187874236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000002824624853437"},{"denom":"ASSET1","index":"0.000023976113690517"},{"denom":"ASSET10","index":"0.000019183481330878"},{"denom":"ASSET11","index":"0.000023837782846342"},{"denom":"ASSET12","index":"0.000022753084719682"},{"denom":"ASSET13","index":"0.000007489057952554"},{"denom":"ASSET14","index":"0.000021872315483076"},{"denom":"ASSET15","index":"0.000017271123733000"},{"denom":"ASSET16","index":"0.000010633084765839"},{"denom":"ASSET17","index":"0.000008361522972460"},{"denom":"ASSET18","index":"0.000003446219629870"},{"denom":"ASSET2","index":"0.000007263651822688"},{"denom":"ASSET3","index":"0.000002015414858276"},{"denom":"ASSET4","index":"0.000019437236646346"},{"denom":"ASSET5","index":"0.000001569802896992"},{"denom":"ASSET6","index":"0.000006336500403946"},{"denom":"ASSET7","index":"0.000009959182045961"},{"denom":"ASSET8","index":"0.000013614498977085"},{"denom":"ASSET9","index":"0.000005776799011181"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001454934724421"},{"denom":"ASSET1","index":"0.000012138554241533"},{"denom":"ASSET10","index":"0.000008457231031836"},{"denom":"ASSET11","index":"0.000011742676653726"},{"denom":"ASSET12","index":"0.000010575345305063"},{"denom":"ASSET13","index":"0.000003639028595615"},{"denom":"ASSET14","index":"0.000010969531108307"},{"denom":"ASSET15","index":"0.000007843113235366"},{"denom":"ASSET16","index":"0.000005467847708521"},{"denom":"ASSET17","index":"0.000003882645572727"},{"denom":"ASSET18","index":"0.000001849120527665"},{"denom":"ASSET2","index":"0.000003583199705027"},{"denom":"ASSET3","index":"0.000001047214644670"},{"denom":"ASSET4","index":"0.000009864795788485"},{"denom":"ASSET5","index":"0.000000813748374938"},{"denom":"ASSET6","index":"0.000003310822390339"},{"denom":"ASSET7","index":"0.000005070278336150"},{"denom":"ASSET8","index":"0.000006616569426988"},{"denom":"ASSET9","index":"0.000002857424127380"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003026822568793"},{"denom":"ASSET1","index":"0.000025710421285725"},{"denom":"ASSET10","index":"0.000020652297735472"},{"denom":"ASSET11","index":"0.000025583400849235"},{"denom":"ASSET12","index":"0.000024460820755928"},{"denom":"ASSET13","index":"0.000008041083722059"},{"denom":"ASSET14","index":"0.000023461074878675"},{"denom":"ASSET15","index":"0.000018578170233019"},{"denom":"ASSET16","index":"0.000011396689804799"},{"denom":"ASSET17","index":"0.000008988134494295"},{"denom":"ASSET18","index":"0.000003688816665807"},{"denom":"ASSET2","index":"0.000007796110853756"},{"denom":"ASSET3","index":"0.000002159003644915"},{"denom":"ASSET4","index":"0.000020841789260406"},{"denom":"ASSET5","index":"0.000001683251281734"},{"denom":"ASSET6","index":"0.000006788484398340"},{"denom":"ASSET7","index":"0.000010677121165375"},{"denom":"ASSET8","index":"0.000014616905179383"},{"denom":"ASSET9","index":"0.000006199084273401"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001547699786520"},{"denom":"ASSET1","index":"0.000012908880828127"},{"denom":"ASSET10","index":"0.000008993933542043"},{"denom":"ASSET11","index":"0.000012488059147042"},{"denom":"ASSET12","index":"0.000011245681057538"},{"denom":"ASSET13","index":"0.000003869751640144"},{"denom":"ASSET14","index":"0.000011665498390936"},{"denom":"ASSET15","index":"0.000008340103197445"},{"denom":"ASSET16","index":"0.000005815173110936"},{"denom":"ASSET17","index":"0.000004129877691221"},{"denom":"ASSET18","index":"0.000001966512772230"},{"denom":"ASSET2","index":"0.000003810495126579"},{"denom":"ASSET3","index":"0.000001114825933185"},{"denom":"ASSET4","index":"0.000010490411596498"},{"denom":"ASSET5","index":"0.000000864743358984"},{"denom":"ASSET6","index":"0.000003521242992563"},{"denom":"ASSET7","index":"0.000005392342734476"},{"denom":"ASSET8","index":"0.000007036459899001"},{"denom":"ASSET9","index":"0.000003039156102537"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003086703561215"},{"denom":"ASSET1","index":"0.000026199550261878"},{"denom":"ASSET10","index":"0.000020936384793003"},{"denom":"ASSET11","index":"0.000026042194398185"},{"denom":"ASSET12","index":"0.000024843424443974"},{"denom":"ASSET13","index":"0.000008180415813801"},{"denom":"ASSET14","index":"0.000023898307142718"},{"denom":"ASSET15","index":"0.000018852934413068"},{"denom":"ASSET16","index":"0.000011621232923996"},{"denom":"ASSET17","index":"0.000009129550402498"},{"denom":"ASSET18","index":"0.000003767892160935"},{"denom":"ASSET2","index":"0.000007936188126371"},{"denom":"ASSET3","index":"0.000002203575710986"},{"denom":"ASSET4","index":"0.000021240180347210"},{"denom":"ASSET5","index":"0.000001716192200569"},{"denom":"ASSET6","index":"0.000006926674957775"},{"denom":"ASSET7","index":"0.000010883333770048"},{"denom":"ASSET8","index":"0.000014871024805414"},{"denom":"ASSET9","index":"0.000006311583255107"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001511232509129"},{"denom":"ASSET1","index":"0.000012598757210652"},{"denom":"ASSET10","index":"0.000008777665278232"},{"denom":"ASSET11","index":"0.000012187849575766"},{"denom":"ASSET12","index":"0.000010975073643675"},{"denom":"ASSET13","index":"0.000003776959255615"},{"denom":"ASSET14","index":"0.000011385233267090"},{"denom":"ASSET15","index":"0.000008140359504707"},{"denom":"ASSET16","index":"0.000005675412369706"},{"denom":"ASSET17","index":"0.000004030784481533"},{"denom":"ASSET18","index":"0.000001920145446758"},{"denom":"ASSET2","index":"0.000003719113035170"},{"denom":"ASSET3","index":"0.000001087858016388"},{"denom":"ASSET4","index":"0.000010238531681628"},{"denom":"ASSET5","index":"0.000000844504951067"},{"denom":"ASSET6","index":"0.000003436614036185"},{"denom":"ASSET7","index":"0.000005263507386191"},{"denom":"ASSET8","index":"0.000006867991992072"},{"denom":"ASSET9","index":"0.000002966364157912"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003050294937135"},{"denom":"ASSET1","index":"0.000025887230915803"},{"denom":"ASSET10","index":"0.000020718160619670"},{"denom":"ASSET11","index":"0.000025739685005463"},{"denom":"ASSET12","index":"0.000024570727404900"},{"denom":"ASSET13","index":"0.000008086966483560"},{"denom":"ASSET14","index":"0.000023616194455668"},{"denom":"ASSET15","index":"0.000018651338246959"},{"denom":"ASSET16","index":"0.000011480437826441"},{"denom":"ASSET17","index":"0.000009029688158762"},{"denom":"ASSET18","index":"0.000003721440260869"},{"denom":"ASSET2","index":"0.000007844134626406"},{"denom":"ASSET3","index":"0.000002176540273945"},{"denom":"ASSET4","index":"0.000020986445628896"},{"denom":"ASSET5","index":"0.000001695800268231"},{"denom":"ASSET6","index":"0.000006841569437153"},{"denom":"ASSET7","index":"0.000010753447417762"},{"denom":"ASSET8","index":"0.000014701309289649"},{"denom":"ASSET9","index":"0.000006238283490477"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001535139489204"},{"denom":"ASSET1","index":"0.000012800845981431"},{"denom":"ASSET10","index":"0.000008918122145344"},{"denom":"ASSET11","index":"0.000012383184798277"},{"denom":"ASSET12","index":"0.000011151318949088"},{"denom":"ASSET13","index":"0.000003837555421617"},{"denom":"ASSET14","index":"0.000011567806926671"},{"denom":"ASSET15","index":"0.000008270512670342"},{"denom":"ASSET16","index":"0.000005766305379776"},{"denom":"ASSET17","index":"0.000004095074044376"},{"denom":"ASSET18","index":"0.000001950454261216"},{"denom":"ASSET2","index":"0.000003778308540299"},{"denom":"ASSET3","index":"0.000001105159647558"},{"denom":"ASSET4","index":"0.000010402813795010"},{"denom":"ASSET5","index":"0.000000857613272150"},{"denom":"ASSET6","index":"0.000003491459778273"},{"denom":"ASSET7","index":"0.000005347470991052"},{"denom":"ASSET8","index":"0.000006978226734264"},{"denom":"ASSET9","index":"0.000003013965111016"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000002944371933765"},{"denom":"ASSET1","index":"0.000024968433937291"},{"denom":"ASSET10","index":"0.000019851368221906"},{"denom":"ASSET11","index":"0.000024791952485266"},{"denom":"ASSET12","index":"0.000023600048189968"},{"denom":"ASSET13","index":"0.000007784111470281"},{"denom":"ASSET14","index":"0.000022766914870589"},{"denom":"ASSET15","index":"0.000017894900322998"},{"denom":"ASSET16","index":"0.000011081662183182"},{"denom":"ASSET17","index":"0.000008672317440622"},{"denom":"ASSET18","index":"0.000003599691097086"},{"denom":"ASSET2","index":"0.000007555380586873"},{"denom":"ASSET3","index":"0.000002101847815188"},{"denom":"ASSET4","index":"0.000020244169178497"},{"denom":"ASSET5","index":"0.000001637098640985"},{"denom":"ASSET6","index":"0.000006609166185649"},{"denom":"ASSET7","index":"0.000010374399402552"},{"denom":"ASSET8","index":"0.000014150620453773"},{"denom":"ASSET9","index":"0.000006009906313007"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001449310882227"},{"denom":"ASSET1","index":"0.000012082282763787"},{"denom":"ASSET10","index":"0.000008417588941675"},{"denom":"ASSET11","index":"0.000011688148164511"},{"denom":"ASSET12","index":"0.000010525234539176"},{"denom":"ASSET13","index":"0.000003621923721366"},{"denom":"ASSET14","index":"0.000010918286351091"},{"denom":"ASSET15","index":"0.000007806355476589"},{"denom":"ASSET16","index":"0.000005442630668295"},{"denom":"ASSET17","index":"0.000003865550877512"},{"denom":"ASSET18","index":"0.000001841279906781"},{"denom":"ASSET2","index":"0.000003566701565973"},{"denom":"ASSET3","index":"0.000001043265621984"},{"denom":"ASSET4","index":"0.000009818715786353"},{"denom":"ASSET5","index":"0.000000809924945764"},{"denom":"ASSET6","index":"0.000003295463332131"},{"denom":"ASSET7","index":"0.000005047413281659"},{"denom":"ASSET8","index":"0.000006586595514820"},{"denom":"ASSET9","index":"0.000002844482396421"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000002938303361264"},{"denom":"ASSET1","index":"0.000024939884544734"},{"denom":"ASSET10","index":"0.000019970621943114"},{"denom":"ASSET11","index":"0.000024800280810198"},{"denom":"ASSET12","index":"0.000023679745396670"},{"denom":"ASSET13","index":"0.000007792253675830"},{"denom":"ASSET14","index":"0.000022752532795075"},{"denom":"ASSET15","index":"0.000017976341528508"},{"denom":"ASSET16","index":"0.000011059313296089"},{"denom":"ASSET17","index":"0.000008702160495382"},{"denom":"ASSET18","index":"0.000003584018468858"},{"denom":"ASSET2","index":"0.000007557839698908"},{"denom":"ASSET3","index":"0.000002096442663552"},{"denom":"ASSET4","index":"0.000020217858094708"},{"denom":"ASSET5","index":"0.000001633684136995"},{"denom":"ASSET6","index":"0.000006589976909255"},{"denom":"ASSET7","index":"0.000010359339015905"},{"denom":"ASSET8","index":"0.000014165755580726"},{"denom":"ASSET9","index":"0.000006010291774725"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001731982701050"},{"denom":"ASSET1","index":"0.000014440617081118"},{"denom":"ASSET10","index":"0.000010060714066040"},{"denom":"ASSET11","index":"0.000013969585405988"},{"denom":"ASSET12","index":"0.000012579542501729"},{"denom":"ASSET13","index":"0.000004329188348588"},{"denom":"ASSET14","index":"0.000013049805772821"},{"denom":"ASSET15","index":"0.000009329961826155"},{"denom":"ASSET16","index":"0.000006505308583448"},{"denom":"ASSET17","index":"0.000004619645074851"},{"denom":"ASSET18","index":"0.000002200709164068"},{"denom":"ASSET2","index":"0.000004262337197306"},{"denom":"ASSET3","index":"0.000001247119753241"},{"denom":"ASSET4","index":"0.000011735066464260"},{"denom":"ASSET5","index":"0.000000967420683506"},{"denom":"ASSET6","index":"0.000003938839097420"},{"denom":"ASSET7","index":"0.000006032740100243"},{"denom":"ASSET8","index":"0.000007872299366576"},{"denom":"ASSET9","index":"0.000003400187866969"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003329715418659"},{"denom":"ASSET1","index":"0.000028238028843607"},{"denom":"ASSET10","index":"0.000022458342297172"},{"denom":"ASSET11","index":"0.000028040237741643"},{"denom":"ASSET12","index":"0.000026695793846360"},{"denom":"ASSET13","index":"0.000008804253880653"},{"denom":"ASSET14","index":"0.000025748953032298"},{"denom":"ASSET15","index":"0.000020243324641083"},{"denom":"ASSET16","index":"0.000012532507824147"},{"denom":"ASSET17","index":"0.000009809802042254"},{"denom":"ASSET18","index":"0.000004070975493464"},{"denom":"ASSET2","index":"0.000008545109234155"},{"denom":"ASSET3","index":"0.000002377197518329"},{"denom":"ASSET4","index":"0.000022894451839245"},{"denom":"ASSET5","index":"0.000001851122407848"},{"denom":"ASSET6","index":"0.000007473999475476"},{"denom":"ASSET7","index":"0.000011732969702935"},{"denom":"ASSET8","index":"0.000016005536556726"},{"denom":"ASSET9","index":"0.000006797137295338"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001649988907243"},{"denom":"ASSET1","index":"0.000013756519537767"},{"denom":"ASSET10","index":"0.000009584361794534"},{"denom":"ASSET11","index":"0.000013307506163009"},{"denom":"ASSET12","index":"0.000011983307415229"},{"denom":"ASSET13","index":"0.000004124070634826"},{"denom":"ASSET14","index":"0.000012431118612277"},{"denom":"ASSET15","index":"0.000008888300900330"},{"denom":"ASSET16","index":"0.000006196625007203"},{"denom":"ASSET17","index":"0.000004401172597026"},{"denom":"ASSET18","index":"0.000002096597926581"},{"denom":"ASSET2","index":"0.000004060355216185"},{"denom":"ASSET3","index":"0.000001187751577673"},{"denom":"ASSET4","index":"0.000011179050527108"},{"denom":"ASSET5","index":"0.000000922070303720"},{"denom":"ASSET6","index":"0.000003752597722375"},{"denom":"ASSET7","index":"0.000005747010543590"},{"denom":"ASSET8","index":"0.000007499184556200"},{"denom":"ASSET9","index":"0.000003238666751267"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003269082759145"},{"denom":"ASSET1","index":"0.000027736662456421"},{"denom":"ASSET10","index":"0.000022145815740722"},{"denom":"ASSET11","index":"0.000027564157079872"},{"denom":"ASSET12","index":"0.000026286254396013"},{"denom":"ASSET13","index":"0.000008658548128401"},{"denom":"ASSET14","index":"0.000025298253418871"},{"denom":"ASSET15","index":"0.000019946084058089"},{"denom":"ASSET16","index":"0.000012303266096103"},{"denom":"ASSET17","index":"0.000009659898104260"},{"denom":"ASSET18","index":"0.000003991565584036"},{"denom":"ASSET2","index":"0.000008399501371576"},{"denom":"ASSET3","index":"0.000002333103515211"},{"denom":"ASSET4","index":"0.000022486071398850"},{"denom":"ASSET5","index":"0.000001817550334619"},{"denom":"ASSET6","index":"0.000007334517845971"},{"denom":"ASSET7","index":"0.000011522603065826"},{"denom":"ASSET8","index":"0.000015739883934035"},{"denom":"ASSET9","index":"0.000006680430297789"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001707974867576"},{"denom":"ASSET1","index":"0.000014238090744503"},{"denom":"ASSET10","index":"0.000009920037235236"},{"denom":"ASSET11","index":"0.000013773690453356"},{"denom":"ASSET12","index":"0.000012403461252069"},{"denom":"ASSET13","index":"0.000004268385028930"},{"denom":"ASSET14","index":"0.000012866619831208"},{"denom":"ASSET15","index":"0.000009199844270355"},{"denom":"ASSET16","index":"0.000006414063379473"},{"denom":"ASSET17","index":"0.000004555220502875"},{"denom":"ASSET18","index":"0.000002169891734707"},{"denom":"ASSET2","index":"0.000004203195148489"},{"denom":"ASSET3","index":"0.000001229294888332"},{"denom":"ASSET4","index":"0.000011570893350426"},{"denom":"ASSET5","index":"0.000000954255678468"},{"denom":"ASSET6","index":"0.000003884075162326"},{"denom":"ASSET7","index":"0.000005948421376317"},{"denom":"ASSET8","index":"0.000007761941764609"},{"denom":"ASSET9","index":"0.000003352622422724"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003075387603983"},{"denom":"ASSET1","index":"0.000026047450678709"},{"denom":"ASSET10","index":"0.000020531243448578"},{"denom":"ASSET11","index":"0.000025816927992783"},{"denom":"ASSET12","index":"0.000024485469945303"},{"denom":"ASSET13","index":"0.000008098391373250"},{"denom":"ASSET14","index":"0.000023735883509134"},{"denom":"ASSET15","index":"0.000018540774078871"},{"denom":"ASSET16","index":"0.000011572711306393"},{"denom":"ASSET17","index":"0.000008997644319689"},{"denom":"ASSET18","index":"0.000003770348288081"},{"denom":"ASSET2","index":"0.000007868945206789"},{"denom":"ASSET3","index":"0.000002196489262864"},{"denom":"ASSET4","index":"0.000021122354693053"},{"denom":"ASSET5","index":"0.000001710501624761"},{"denom":"ASSET6","index":"0.000006909892735753"},{"denom":"ASSET7","index":"0.000010827333344051"},{"denom":"ASSET8","index":"0.000014723239896475"},{"denom":"ASSET9","index":"0.000006260042064096"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001779156074987"},{"denom":"ASSET1","index":"0.000014834764457923"},{"denom":"ASSET10","index":"0.000010335215703318"},{"denom":"ASSET11","index":"0.000014351450406057"},{"denom":"ASSET12","index":"0.000012923397473821"},{"denom":"ASSET13","index":"0.000004447014618532"},{"denom":"ASSET14","index":"0.000013405835956753"},{"denom":"ASSET15","index":"0.000009584853126417"},{"denom":"ASSET16","index":"0.000006682342108415"},{"denom":"ASSET17","index":"0.000004745583625211"},{"denom":"ASSET18","index":"0.000002260718988984"},{"denom":"ASSET2","index":"0.000004378720241638"},{"denom":"ASSET3","index":"0.000001280957351233"},{"denom":"ASSET4","index":"0.000012055708659691"},{"denom":"ASSET5","index":"0.000000993770740704"},{"denom":"ASSET6","index":"0.000004046879615447"},{"denom":"ASSET7","index":"0.000006197276918679"},{"denom":"ASSET8","index":"0.000008086754679418"},{"denom":"ASSET9","index":"0.000003492644479883"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003478645419875"},{"denom":"ASSET1","index":"0.000029510728520321"},{"denom":"ASSET10","index":"0.000023521700007579"},{"denom":"ASSET11","index":"0.000029317721838376"},{"denom":"ASSET12","index":"0.000027938200533330"},{"denom":"ASSET13","index":"0.000009206643656085"},{"denom":"ASSET14","index":"0.000026913511393693"},{"denom":"ASSET15","index":"0.000021192735957156"},{"denom":"ASSET16","index":"0.000013092928863665"},{"denom":"ASSET17","index":"0.000010265835619821"},{"denom":"ASSET18","index":"0.000004249633310572"},{"denom":"ASSET2","index":"0.000008933634051769"},{"denom":"ASSET3","index":"0.000002482776919113"},{"denom":"ASSET4","index":"0.000023925662277258"},{"denom":"ASSET5","index":"0.000001933519521756"},{"denom":"ASSET6","index":"0.000007806757132876"},{"denom":"ASSET7","index":"0.000012260200744601"},{"denom":"ASSET8","index":"0.000016737737824425"},{"denom":"ASSET9","index":"0.000007106044722519"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001752700098923"},{"denom":"ASSET1","index":"0.000014612940709519"},{"denom":"ASSET10","index":"0.000010180696541309"},{"denom":"ASSET11","index":"0.000014136053678762"},{"denom":"ASSET12","index":"0.000012730078503378"},{"denom":"ASSET13","index":"0.000004380628160175"},{"denom":"ASSET14","index":"0.000013205843447004"},{"denom":"ASSET15","index":"0.000009441241121853"},{"denom":"ASSET16","index":"0.000006583285198706"},{"denom":"ASSET17","index":"0.000004674614988548"},{"denom":"ASSET18","index":"0.000002226220868286"},{"denom":"ASSET2","index":"0.000004313302932304"},{"denom":"ASSET3","index":"0.000001261225935460"},{"denom":"ASSET4","index":"0.000011875048109410"},{"denom":"ASSET5","index":"0.000000979582065531"},{"denom":"ASSET6","index":"0.000003985653489996"},{"denom":"ASSET7","index":"0.000006105276080818"},{"denom":"ASSET8","index":"0.000007965696544335"},{"denom":"ASSET9","index":"0.000003440319144236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003327512121722"},{"denom":"ASSET1","index":"0.000028211822531533"},{"denom":"ASSET10","index":"0.000022399629444355"},{"denom":"ASSET11","index":"0.000028004032167971"},{"denom":"ASSET12","index":"0.000026643127370344"},{"denom":"ASSET13","index":"0.000008791339050068"},{"denom":"ASSET14","index":"0.000025722152469956"},{"denom":"ASSET15","index":"0.000020197596080044"},{"denom":"ASSET16","index":"0.000012523737733641"},{"denom":"ASSET17","index":"0.000009790102863953"},{"denom":"ASSET18","index":"0.000004069245825383"},{"denom":"ASSET2","index":"0.000008534453115749"},{"denom":"ASSET3","index":"0.000002375171252372"},{"denom":"ASSET4","index":"0.000022873545881432"},{"denom":"ASSET5","index":"0.000001850500835715"},{"denom":"ASSET6","index":"0.000007470212303630"},{"denom":"ASSET7","index":"0.000011723166108277"},{"denom":"ASSET8","index":"0.000015981595788329"},{"denom":"ASSET9","index":"0.000006788341225254"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001434713876400"},{"denom":"ASSET1","index":"0.000011974044460331"},{"denom":"ASSET10","index":"0.000008340728508476"},{"denom":"ASSET11","index":"0.000011582406348125"},{"denom":"ASSET12","index":"0.000010430757641934"},{"denom":"ASSET13","index":"0.000003588723493535"},{"denom":"ASSET14","index":"0.000010820456951604"},{"denom":"ASSET15","index":"0.000007735822117345"},{"denom":"ASSET16","index":"0.000005393748654249"},{"denom":"ASSET17","index":"0.000003829135007959"},{"denom":"ASSET18","index":"0.000001824413186071"},{"denom":"ASSET2","index":"0.000003534437022536"},{"denom":"ASSET3","index":"0.000001033381751515"},{"denom":"ASSET4","index":"0.000009730849926555"},{"denom":"ASSET5","index":"0.000000802664249770"},{"denom":"ASSET6","index":"0.000003264943470077"},{"denom":"ASSET7","index":"0.000005002110542043"},{"denom":"ASSET8","index":"0.000006526009335083"},{"denom":"ASSET9","index":"0.000002819018886872"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000002895048613815"},{"denom":"ASSET1","index":"0.000024589366099895"},{"denom":"ASSET10","index":"0.000019676065498265"},{"denom":"ASSET11","index":"0.000024447379266412"},{"denom":"ASSET12","index":"0.000023337478265694"},{"denom":"ASSET13","index":"0.000007679998629802"},{"denom":"ASSET14","index":"0.000022431328797509"},{"denom":"ASSET15","index":"0.000017714358679290"},{"denom":"ASSET16","index":"0.000010904445776568"},{"denom":"ASSET17","index":"0.000008574179211920"},{"denom":"ASSET18","index":"0.000003534399202209"},{"denom":"ASSET2","index":"0.000007450371795821"},{"denom":"ASSET3","index":"0.000002066219984895"},{"denom":"ASSET4","index":"0.000019933989143940"},{"denom":"ASSET5","index":"0.000001610899827710"},{"denom":"ASSET6","index":"0.000006497050827728"},{"denom":"ASSET7","index":"0.000010213894093182"},{"denom":"ASSET8","index":"0.000013962110633776"},{"denom":"ASSET9","index":"0.000005925048173997"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001401536005232"},{"denom":"ASSET1","index":"0.000011690786017211"},{"denom":"ASSET10","index":"0.000008143726832164"},{"denom":"ASSET11","index":"0.000011307987636928"},{"denom":"ASSET12","index":"0.000010184289165772"},{"denom":"ASSET13","index":"0.000003503840013080"},{"denom":"ASSET14","index":"0.000010564000462344"},{"denom":"ASSET15","index":"0.000007554093843178"},{"denom":"ASSET16","index":"0.000005266564812612"},{"denom":"ASSET17","index":"0.000003738458375190"},{"denom":"ASSET18","index":"0.000001781247301804"},{"denom":"ASSET2","index":"0.000003448272506265"},{"denom":"ASSET3","index":"0.000001009476373813"},{"denom":"ASSET4","index":"0.000009498956581716"},{"denom":"ASSET5","index":"0.000000781032179127"},{"denom":"ASSET6","index":"0.000003188957474460"},{"denom":"ASSET7","index":"0.000004883766432329"},{"denom":"ASSET8","index":"0.000006371740781496"},{"denom":"ASSET9","index":"0.000002750591587361"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003071913026336"},{"denom":"ASSET1","index":"0.000026115211920195"},{"denom":"ASSET10","index":"0.000021104918039272"},{"denom":"ASSET11","index":"0.000026018207650283"},{"denom":"ASSET12","index":"0.000024942011742431"},{"denom":"ASSET13","index":"0.000008182453133262"},{"denom":"ASSET14","index":"0.000023839798810024"},{"denom":"ASSET15","index":"0.000018963275072170"},{"denom":"ASSET16","index":"0.000011567273660047"},{"denom":"ASSET17","index":"0.000009164652819502"},{"denom":"ASSET18","index":"0.000003735860972186"},{"denom":"ASSET2","index":"0.000007925194415041"},{"denom":"ASSET3","index":"0.000002190810612048"},{"denom":"ASSET4","index":"0.000021165118890878"},{"denom":"ASSET5","index":"0.000001704606606646"},{"denom":"ASSET6","index":"0.000006884812645629"},{"denom":"ASSET7","index":"0.000010842612570084"},{"denom":"ASSET8","index":"0.000014874699612932"},{"denom":"ASSET9","index":"0.000006301602876980"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001534549585700"},{"denom":"ASSET1","index":"0.000012795681230217"},{"denom":"ASSET10","index":"0.000008914897664776"},{"denom":"ASSET11","index":"0.000012378406858633"},{"denom":"ASSET12","index":"0.000011146809898878"},{"denom":"ASSET13","index":"0.000003835934265229"},{"denom":"ASSET14","index":"0.000011563204872419"},{"denom":"ASSET15","index":"0.000008267660704848"},{"denom":"ASSET16","index":"0.000005764014475342"},{"denom":"ASSET17","index":"0.000004093597891939"},{"denom":"ASSET18","index":"0.000001950065161198"},{"denom":"ASSET2","index":"0.000003777014596322"},{"denom":"ASSET3","index":"0.000001104963641508"},{"denom":"ASSET4","index":"0.000010398442163960"},{"denom":"ASSET5","index":"0.000000857413092297"},{"denom":"ASSET6","index":"0.000003490330834180"},{"denom":"ASSET7","index":"0.000005345421006692"},{"denom":"ASSET8","index":"0.000006975385280099"},{"denom":"ASSET9","index":"0.000003012817696624"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003034954909236"},{"denom":"ASSET1","index":"0.000025752158165977"},{"denom":"ASSET10","index":"0.000020556858138008"},{"denom":"ASSET11","index":"0.000025591676311293"},{"denom":"ASSET12","index":"0.000024402528250789"},{"denom":"ASSET13","index":"0.000008038375291107"},{"denom":"ASSET14","index":"0.000023488313497799"},{"denom":"ASSET15","index":"0.000018516037809802"},{"denom":"ASSET16","index":"0.000011423945454084"},{"denom":"ASSET17","index":"0.000008967524527402"},{"denom":"ASSET18","index":"0.000003706330058793"},{"denom":"ASSET2","index":"0.000007798931182527"},{"denom":"ASSET3","index":"0.000002166419358500"},{"denom":"ASSET4","index":"0.000020877722621984"},{"denom":"ASSET5","index":"0.000001687498984799"},{"denom":"ASSET6","index":"0.000006810207932767"},{"denom":"ASSET7","index":"0.000010698180555138"},{"denom":"ASSET8","index":"0.000014612921845389"},{"denom":"ASSET9","index":"0.000006203015740356"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001658482037183"},{"denom":"ASSET1","index":"0.000013862588923046"},{"denom":"ASSET10","index":"0.000009655943522610"},{"denom":"ASSET11","index":"0.000013408077810815"},{"denom":"ASSET12","index":"0.000012073555821711"},{"denom":"ASSET13","index":"0.000004153457929856"},{"denom":"ASSET14","index":"0.000012528066933942"},{"denom":"ASSET15","index":"0.000008954835955871"},{"denom":"ASSET16","index":"0.000006242274956279"},{"denom":"ASSET17","index":"0.000004433900956551"},{"denom":"ASSET18","index":"0.000002112993149414"},{"denom":"ASSET2","index":"0.000004090600010079"},{"denom":"ASSET3","index":"0.000001194300475756"},{"denom":"ASSET4","index":"0.000011266073313811"},{"denom":"ASSET5","index":"0.000000928363122855"},{"denom":"ASSET6","index":"0.000003781145635794"},{"denom":"ASSET7","index":"0.000005787763844048"},{"denom":"ASSET8","index":"0.000007557456046990"},{"denom":"ASSET9","index":"0.000003263776603787"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003188277912377"},{"denom":"ASSET1","index":"0.000027072180177666"},{"denom":"ASSET10","index":"0.000021525590492702"},{"denom":"ASSET11","index":"0.000026879695640981"},{"denom":"ASSET12","index":"0.000025588321740665"},{"denom":"ASSET13","index":"0.000008437670891103"},{"denom":"ASSET14","index":"0.000024686413843557"},{"denom":"ASSET15","index":"0.000019403734038796"},{"denom":"ASSET16","index":"0.000012012351193227"},{"denom":"ASSET17","index":"0.000009402991763462"},{"denom":"ASSET18","index":"0.000003903246578743"},{"denom":"ASSET2","index":"0.000008191237466303"},{"denom":"ASSET3","index":"0.000002276140738265"},{"denom":"ASSET4","index":"0.000021950324608304"},{"denom":"ASSET5","index":"0.000001774065663090"},{"denom":"ASSET6","index":"0.000007165524818145"},{"denom":"ASSET7","index":"0.000011244820309610"},{"denom":"ASSET8","index":"0.000015343724796373"},{"denom":"ASSET9","index":"0.000006516357987660"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001453411320498"},{"denom":"ASSET1","index":"0.000012118137400313"},{"denom":"ASSET10","index":"0.000008442891188019"},{"denom":"ASSET11","index":"0.000011723343510399"},{"denom":"ASSET12","index":"0.000010556870017106"},{"denom":"ASSET13","index":"0.000003632917795231"},{"denom":"ASSET14","index":"0.000010951256903010"},{"denom":"ASSET15","index":"0.000007829943148627"},{"denom":"ASSET16","index":"0.000005459144789091"},{"denom":"ASSET17","index":"0.000003877120201363"},{"denom":"ASSET18","index":"0.000001846984198382"},{"denom":"ASSET2","index":"0.000003577158245830"},{"denom":"ASSET3","index":"0.000001046407310278"},{"denom":"ASSET4","index":"0.000009848276035312"},{"denom":"ASSET5","index":"0.000000811973000390"},{"denom":"ASSET6","index":"0.000003305686571013"},{"denom":"ASSET7","index":"0.000005062722883136"},{"denom":"ASSET8","index":"0.000006606082089893"},{"denom":"ASSET9","index":"0.000002853098111648"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000002979919393708"},{"denom":"ASSET1","index":"0.000025298333716476"},{"denom":"ASSET10","index":"0.000020286143685892"},{"denom":"ASSET11","index":"0.000025164674259360"},{"denom":"ASSET12","index":"0.000024041723171534"},{"denom":"ASSET13","index":"0.000007907785176595"},{"denom":"ASSET14","index":"0.000023082402053339"},{"denom":"ASSET15","index":"0.000018255332392862"},{"denom":"ASSET16","index":"0.000011216675450010"},{"denom":"ASSET17","index":"0.000008835128154455"},{"denom":"ASSET18","index":"0.000003633337151635"},{"denom":"ASSET2","index":"0.000007668586747858"},{"denom":"ASSET3","index":"0.000002126085354033"},{"denom":"ASSET4","index":"0.000020508686269066"},{"denom":"ASSET5","index":"0.000001656307666438"},{"denom":"ASSET6","index":"0.000006683025235204"},{"denom":"ASSET7","index":"0.000010507859389263"},{"denom":"ASSET8","index":"0.000014375637436113"},{"denom":"ASSET9","index":"0.000006098257618497"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001779729226299"},{"denom":"ASSET1","index":"0.000014840802182142"},{"denom":"ASSET10","index":"0.000010337989986643"},{"denom":"ASSET11","index":"0.000014356968690293"},{"denom":"ASSET12","index":"0.000012927350131463"},{"denom":"ASSET13","index":"0.000004449323065747"},{"denom":"ASSET14","index":"0.000013411183623312"},{"denom":"ASSET15","index":"0.000009589142170113"},{"denom":"ASSET16","index":"0.000006683709894939"},{"denom":"ASSET17","index":"0.000004745944603463"},{"denom":"ASSET18","index":"0.000002261131394068"},{"denom":"ASSET2","index":"0.000004378814667437"},{"denom":"ASSET3","index":"0.000001281307789972"},{"denom":"ASSET4","index":"0.000012059367435030"},{"denom":"ASSET5","index":"0.000000994411548574"},{"denom":"ASSET6","index":"0.000004048154592606"},{"denom":"ASSET7","index":"0.000006199876403090"},{"denom":"ASSET8","index":"0.000008089015212973"},{"denom":"ASSET9","index":"0.000003493812702447"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003433377044021"},{"denom":"ASSET1","index":"0.000029119719093870"},{"denom":"ASSET10","index":"0.000023168779363922"},{"denom":"ASSET11","index":"0.000028918871222836"},{"denom":"ASSET12","index":"0.000027536680421684"},{"denom":"ASSET13","index":"0.000009079853140421"},{"denom":"ASSET14","index":"0.000026553415276013"},{"denom":"ASSET15","index":"0.000020883272198610"},{"denom":"ASSET16","index":"0.000012920460029656"},{"denom":"ASSET17","index":"0.000010116347697920"},{"denom":"ASSET18","index":"0.000004196183907349"},{"denom":"ASSET2","index":"0.000008810148159861"},{"denom":"ASSET3","index":"0.000002451192479374"},{"denom":"ASSET4","index":"0.000023608026429735"},{"denom":"ASSET5","index":"0.000001908186346512"},{"denom":"ASSET6","index":"0.000007706415634871"},{"denom":"ASSET7","index":"0.000012098308533034"},{"denom":"ASSET8","index":"0.000016505861275643"},{"denom":"ASSET9","index":"0.000007009790471677"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001595670533734"},{"denom":"ASSET1","index":"0.000013304245337308"},{"denom":"ASSET10","index":"0.000009268754359880"},{"denom":"ASSET11","index":"0.000012870227612725"},{"denom":"ASSET12","index":"0.000011589729681675"},{"denom":"ASSET13","index":"0.000003988302473145"},{"denom":"ASSET14","index":"0.000012022582258004"},{"denom":"ASSET15","index":"0.000008595881243245"},{"denom":"ASSET16","index":"0.000005992940044003"},{"denom":"ASSET17","index":"0.000004256286571545"},{"denom":"ASSET18","index":"0.000002027357961809"},{"denom":"ASSET2","index":"0.000003927132189815"},{"denom":"ASSET3","index":"0.000001148836178358"},{"denom":"ASSET4","index":"0.000010811993222188"},{"denom":"ASSET5","index":"0.000000891338414244"},{"denom":"ASSET6","index":"0.000003628854236813"},{"denom":"ASSET7","index":"0.000005557757171166"},{"denom":"ASSET8","index":"0.000007252465306483"},{"denom":"ASSET9","index":"0.000003132501080646"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003118409098775"},{"denom":"ASSET1","index":"0.000026454243753489"},{"denom":"ASSET10","index":"0.000021084585905412"},{"denom":"ASSET11","index":"0.000026280950742513"},{"denom":"ASSET12","index":"0.000025043390497745"},{"denom":"ASSET13","index":"0.000008253298424938"},{"denom":"ASSET14","index":"0.000024125697910719"},{"denom":"ASSET15","index":"0.000018997425080839"},{"denom":"ASSET16","index":"0.000011737294217995"},{"denom":"ASSET17","index":"0.000009202973625129"},{"denom":"ASSET18","index":"0.000003809493270778"},{"denom":"ASSET2","index":"0.000008008868325931"},{"denom":"ASSET3","index":"0.000002225819587877"},{"denom":"ASSET4","index":"0.000021447702379813"},{"denom":"ASSET5","index":"0.000001733713847172"},{"denom":"ASSET6","index":"0.000006998355968525"},{"denom":"ASSET7","index":"0.000010990481127196"},{"denom":"ASSET8","index":"0.000015003824321723"},{"denom":"ASSET9","index":"0.000006370091157596"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001536288093705"},{"denom":"ASSET1","index":"0.000012808796131863"},{"denom":"ASSET10","index":"0.000008924322337818"},{"denom":"ASSET11","index":"0.000012391382492026"},{"denom":"ASSET12","index":"0.000011158327625467"},{"denom":"ASSET13","index":"0.000003840018305497"},{"denom":"ASSET14","index":"0.000011575273312793"},{"denom":"ASSET15","index":"0.000008276208110044"},{"denom":"ASSET16","index":"0.000005770322413488"},{"denom":"ASSET17","index":"0.000004097860139074"},{"denom":"ASSET18","index":"0.000001951829923499"},{"denom":"ASSET2","index":"0.000003781056289108"},{"denom":"ASSET3","index":"0.000001105771783560"},{"denom":"ASSET4","index":"0.000010409603607822"},{"denom":"ASSET5","index":"0.000000858224905226"},{"denom":"ASSET6","index":"0.000003494201399847"},{"denom":"ASSET7","index":"0.000005351036963607"},{"denom":"ASSET8","index":"0.000006982787369562"},{"denom":"ASSET9","index":"0.000003015953933577"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003103831608428"},{"denom":"ASSET1","index":"0.000026343132935309"},{"denom":"ASSET10","index":"0.000021085436521682"},{"denom":"ASSET11","index":"0.000026194005406126"},{"denom":"ASSET12","index":"0.000025005394550642"},{"denom":"ASSET13","index":"0.000008229918727938"},{"denom":"ASSET14","index":"0.000024032248358707"},{"denom":"ASSET15","index":"0.000018981699828973"},{"denom":"ASSET16","index":"0.000011682673521897"},{"denom":"ASSET17","index":"0.000009189132473525"},{"denom":"ASSET18","index":"0.000003786361913516"},{"denom":"ASSET2","index":"0.000007982150766688"},{"denom":"ASSET3","index":"0.000002214601198569"},{"denom":"ASSET4","index":"0.000021356131094847"},{"denom":"ASSET5","index":"0.000001725369734459"},{"denom":"ASSET6","index":"0.000006962131899100"},{"denom":"ASSET7","index":"0.000010942547729288"},{"denom":"ASSET8","index":"0.000014960973970884"},{"denom":"ASSET9","index":"0.000006348281537724"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001156201861882"},{"denom":"ASSET1","index":"0.000009641528249827"},{"denom":"ASSET10","index":"0.000006717693720376"},{"denom":"ASSET11","index":"0.000009327193051790"},{"denom":"ASSET12","index":"0.000008399128436016"},{"denom":"ASSET13","index":"0.000002890504654704"},{"denom":"ASSET14","index":"0.000008712888981039"},{"denom":"ASSET15","index":"0.000006229813312455"},{"denom":"ASSET16","index":"0.000004343227471224"},{"denom":"ASSET17","index":"0.000003084737373052"},{"denom":"ASSET18","index":"0.000001469387753892"},{"denom":"ASSET2","index":"0.000002846256372714"},{"denom":"ASSET3","index":"0.000000832672215639"},{"denom":"ASSET4","index":"0.000007835393830396"},{"denom":"ASSET5","index":"0.000000645909986459"},{"denom":"ASSET6","index":"0.000002630186839877"},{"denom":"ASSET7","index":"0.000004027742967162"},{"denom":"ASSET8","index":"0.000005256351108664"},{"denom":"ASSET9","index":"0.000002269879400812"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000002648545180722"},{"denom":"ASSET1","index":"0.000022528915692996"},{"denom":"ASSET10","index":"0.000018297756458480"},{"denom":"ASSET11","index":"0.000022469822082599"},{"denom":"ASSET12","index":"0.000021584227648624"},{"denom":"ASSET13","index":"0.000007070243338634"},{"denom":"ASSET14","index":"0.000020574684608302"},{"denom":"ASSET15","index":"0.000016423497937791"},{"denom":"ASSET16","index":"0.000009972839292196"},{"denom":"ASSET17","index":"0.000007932645550822"},{"denom":"ASSET18","index":"0.000003216131666673"},{"denom":"ASSET2","index":"0.000006846442901912"},{"denom":"ASSET3","index":"0.000001888119307859"},{"denom":"ASSET4","index":"0.000018258669735553"},{"denom":"ASSET5","index":"0.000001471345302008"},{"denom":"ASSET6","index":"0.000005932348598922"},{"denom":"ASSET7","index":"0.000009352074075404"},{"denom":"ASSET8","index":"0.000012853047191550"},{"denom":"ASSET9","index":"0.000005442948627063"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001638829976996"},{"denom":"ASSET1","index":"0.000013663699511091"},{"denom":"ASSET10","index":"0.000009519748943981"},{"denom":"ASSET11","index":"0.000013218199388741"},{"denom":"ASSET12","index":"0.000011902774883924"},{"denom":"ASSET13","index":"0.000004095984811686"},{"denom":"ASSET14","index":"0.000012347548252404"},{"denom":"ASSET15","index":"0.000008827879259679"},{"denom":"ASSET16","index":"0.000006154878525580"},{"denom":"ASSET17","index":"0.000004371424528441"},{"denom":"ASSET18","index":"0.000002082149837736"},{"denom":"ASSET2","index":"0.000004033483978861"},{"denom":"ASSET3","index":"0.000001179521531115"},{"denom":"ASSET4","index":"0.000011104072380722"},{"denom":"ASSET5","index":"0.000000915709876282"},{"denom":"ASSET6","index":"0.000003726793845693"},{"denom":"ASSET7","index":"0.000005707924895490"},{"denom":"ASSET8","index":"0.000007448500414296"},{"denom":"ASSET9","index":"0.000003217339382778"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003133427860009"},{"denom":"ASSET1","index":"0.000026571363581284"},{"denom":"ASSET10","index":"0.000021118003104150"},{"denom":"ASSET11","index":"0.000026381510155653"},{"denom":"ASSET12","index":"0.000025108485590780"},{"denom":"ASSET13","index":"0.000008282355352591"},{"denom":"ASSET14","index":"0.000024227637307493"},{"denom":"ASSET15","index":"0.000019037535386694"},{"denom":"ASSET16","index":"0.000011793447009555"},{"denom":"ASSET17","index":"0.000009226841180516"},{"denom":"ASSET18","index":"0.000003831770888939"},{"denom":"ASSET2","index":"0.000008040278303534"},{"denom":"ASSET3","index":"0.000002236402387063"},{"denom":"ASSET4","index":"0.000021543810534784"},{"denom":"ASSET5","index":"0.000001742508705183"},{"denom":"ASSET6","index":"0.000007033989161296"},{"denom":"ASSET7","index":"0.000011040340871930"},{"denom":"ASSET8","index":"0.000015056795520064"},{"denom":"ASSET9","index":"0.000006395464292965"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001556422065682"},{"denom":"ASSET1","index":"0.000012975233747354"},{"denom":"ASSET10","index":"0.000009039925804131"},{"denom":"ASSET11","index":"0.000012551842294036"},{"denom":"ASSET12","index":"0.000011303196313064"},{"denom":"ASSET13","index":"0.000003889859143149"},{"denom":"ASSET14","index":"0.000011725391745328"},{"denom":"ASSET15","index":"0.000008383310245172"},{"denom":"ASSET16","index":"0.000005844954893688"},{"denom":"ASSET17","index":"0.000004150990406731"},{"denom":"ASSET18","index":"0.000001977421476890"},{"denom":"ASSET2","index":"0.000003830058090421"},{"denom":"ASSET3","index":"0.000001120273054448"},{"denom":"ASSET4","index":"0.000010544520290781"},{"denom":"ASSET5","index":"0.000000869507306673"},{"denom":"ASSET6","index":"0.000003539424974160"},{"denom":"ASSET7","index":"0.000005420766093000"},{"denom":"ASSET8","index":"0.000007073268516732"},{"denom":"ASSET9","index":"0.000003055036447059"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003102345998156"},{"denom":"ASSET1","index":"0.000026324295521459"},{"denom":"ASSET10","index":"0.000021034709957123"},{"denom":"ASSET11","index":"0.000026165624152899"},{"denom":"ASSET12","index":"0.000024960753498443"},{"denom":"ASSET13","index":"0.000008219480216908"},{"denom":"ASSET14","index":"0.000024012126304297"},{"denom":"ASSET15","index":"0.000018942125813395"},{"denom":"ASSET16","index":"0.000011676379885795"},{"denom":"ASSET17","index":"0.000009172744202097"},{"denom":"ASSET18","index":"0.000003786686743681"},{"denom":"ASSET2","index":"0.000007973892542195"},{"denom":"ASSET3","index":"0.000002213622154517"},{"denom":"ASSET4","index":"0.000021341514997764"},{"denom":"ASSET5","index":"0.000001724677267981"},{"denom":"ASSET6","index":"0.000006959760131783"},{"denom":"ASSET7","index":"0.000010935767858794"},{"denom":"ASSET8","index":"0.000014942141973689"},{"denom":"ASSET9","index":"0.000006341977499472"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001602535700795"},{"denom":"ASSET1","index":"0.000013360208994045"},{"denom":"ASSET10","index":"0.000009307956057468"},{"denom":"ASSET11","index":"0.000012924500245282"},{"denom":"ASSET12","index":"0.000011638378499862"},{"denom":"ASSET13","index":"0.000004005127453862"},{"denom":"ASSET14","index":"0.000012073279383206"},{"denom":"ASSET15","index":"0.000008632311279566"},{"denom":"ASSET16","index":"0.000006018597363935"},{"denom":"ASSET17","index":"0.000004274146638048"},{"denom":"ASSET18","index":"0.000002036090141777"},{"denom":"ASSET2","index":"0.000003943729682095"},{"denom":"ASSET3","index":"0.000001153631816872"},{"denom":"ASSET4","index":"0.000010857441929150"},{"denom":"ASSET5","index":"0.000000895384171592"},{"denom":"ASSET6","index":"0.000003644280900498"},{"denom":"ASSET7","index":"0.000005581542172809"},{"denom":"ASSET8","index":"0.000007283176031543"},{"denom":"ASSET9","index":"0.000003145827937606"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003144114236048"},{"denom":"ASSET1","index":"0.000026672683120621"},{"denom":"ASSET10","index":"0.000021269722635007"},{"denom":"ASSET11","index":"0.000026500587720899"},{"denom":"ASSET12","index":"0.000025258297912053"},{"denom":"ASSET13","index":"0.000008323039503604"},{"denom":"ASSET14","index":"0.000024326015412045"},{"denom":"ASSET15","index":"0.000019162234595686"},{"denom":"ASSET16","index":"0.000011833945147558"},{"denom":"ASSET17","index":"0.000009281867675434"},{"denom":"ASSET18","index":"0.000003840349431676"},{"denom":"ASSET2","index":"0.000008076055447193"},{"denom":"ASSET3","index":"0.000002244145529651"},{"denom":"ASSET4","index":"0.000021624555086447"},{"denom":"ASSET5","index":"0.000001748086313596"},{"denom":"ASSET6","index":"0.000007055400333314"},{"denom":"ASSET7","index":"0.000011081362186058"},{"denom":"ASSET8","index":"0.000015130336137492"},{"denom":"ASSET9","index":"0.000006423586371910"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001633811359009"},{"denom":"ASSET1","index":"0.000013620164108551"},{"denom":"ASSET10","index":"0.000009487838038290"},{"denom":"ASSET11","index":"0.000013174776703502"},{"denom":"ASSET12","index":"0.000011864685946211"},{"denom":"ASSET13","index":"0.000004082355776036"},{"denom":"ASSET14","index":"0.000012307900729772"},{"denom":"ASSET15","index":"0.000008799117026580"},{"denom":"ASSET16","index":"0.000006135483082238"},{"denom":"ASSET17","index":"0.000004356106083529"},{"denom":"ASSET18","index":"0.000002074853521082"},{"denom":"ASSET2","index":"0.000004019349752882"},{"denom":"ASSET3","index":"0.000001175388225032"},{"denom":"ASSET4","index":"0.000011067333860098"},{"denom":"ASSET5","index":"0.000000912501024979"},{"denom":"ASSET6","index":"0.000003715182744556"},{"denom":"ASSET7","index":"0.000005690095677188"},{"denom":"ASSET8","index":"0.000007423847624648"},{"denom":"ASSET9","index":"0.000003206789316354"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003109600829404"},{"denom":"ASSET1","index":"0.000026362702045617"},{"denom":"ASSET10","index":"0.000020937844947102"},{"denom":"ASSET11","index":"0.000026169598808926"},{"denom":"ASSET12","index":"0.000024901798461360"},{"denom":"ASSET13","index":"0.000008215149609138"},{"denom":"ASSET14","index":"0.000024035954930107"},{"denom":"ASSET15","index":"0.000018878331344314"},{"denom":"ASSET16","index":"0.000011701775976010"},{"denom":"ASSET17","index":"0.000009149505282332"},{"denom":"ASSET18","index":"0.000003801954966508"},{"denom":"ASSET2","index":"0.000007974718303805"},{"denom":"ASSET3","index":"0.000002219037761573"},{"denom":"ASSET4","index":"0.000021373555319687"},{"denom":"ASSET5","index":"0.000001728657323000"},{"denom":"ASSET6","index":"0.000006980294033305"},{"denom":"ASSET7","index":"0.000010954522542925"},{"denom":"ASSET8","index":"0.000014935013269095"},{"denom":"ASSET9","index":"0.000006344057182602"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001356454583190"},{"denom":"ASSET1","index":"0.000011307707773056"},{"denom":"ASSET10","index":"0.000007878355411964"},{"denom":"ASSET11","index":"0.000010938987301217"},{"denom":"ASSET12","index":"0.000009850463994830"},{"denom":"ASSET13","index":"0.000003389876593037"},{"denom":"ASSET14","index":"0.000010218764511690"},{"denom":"ASSET15","index":"0.000007305956775156"},{"denom":"ASSET16","index":"0.000005094053899100"},{"denom":"ASSET17","index":"0.000003617492191826"},{"denom":"ASSET18","index":"0.000001723075280133"},{"denom":"ASSET2","index":"0.000003337802175602"},{"denom":"ASSET3","index":"0.000000976395326909"},{"denom":"ASSET4","index":"0.000009189454857387"},{"denom":"ASSET5","index":"0.000000758018737665"},{"denom":"ASSET6","index":"0.000003084569323074"},{"denom":"ASSET7","index":"0.000004724073562323"},{"denom":"ASSET8","index":"0.000006164519141376"},{"denom":"ASSET9","index":"0.000002662514568862"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000002920257070141"},{"denom":"ASSET1","index":"0.000024811653868653"},{"denom":"ASSET10","index":"0.000020012294768332"},{"denom":"ASSET11","index":"0.000024710629923001"},{"denom":"ASSET12","index":"0.000023666550441425"},{"denom":"ASSET13","index":"0.000007769918885884"},{"denom":"ASSET14","index":"0.000022647790193256"},{"denom":"ASSET15","index":"0.000017987461600930"},{"denom":"ASSET16","index":"0.000010993196459757"},{"denom":"ASSET17","index":"0.000008697266331114"},{"denom":"ASSET18","index":"0.000003553540715950"},{"denom":"ASSET2","index":"0.000007529733395993"},{"denom":"ASSET3","index":"0.000002082581454906"},{"denom":"ASSET4","index":"0.000020111524804667"},{"denom":"ASSET5","index":"0.000001623122955496"},{"denom":"ASSET6","index":"0.000006544727800067"},{"denom":"ASSET7","index":"0.000010303065547743"},{"denom":"ASSET8","index":"0.000014124873274804"},{"denom":"ASSET9","index":"0.000005987532811110"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001730803097805"},{"denom":"ASSET1","index":"0.000014429128492036"},{"denom":"ASSET10","index":"0.000010053081326419"},{"denom":"ASSET11","index":"0.000013956042311970"},{"denom":"ASSET12","index":"0.000012568515161896"},{"denom":"ASSET13","index":"0.000004324123072683"},{"denom":"ASSET14","index":"0.000013038716670133"},{"denom":"ASSET15","index":"0.000009320374681681"},{"denom":"ASSET16","index":"0.000006499165632259"},{"denom":"ASSET17","index":"0.000004615474927481"},{"denom":"ASSET18","index":"0.000002198119934213"},{"denom":"ASSET2","index":"0.000004257775620601"},{"denom":"ASSET3","index":"0.000001243293558590"},{"denom":"ASSET4","index":"0.000011726190987631"},{"denom":"ASSET5","index":"0.000000966365062941"},{"denom":"ASSET6","index":"0.000003934692375677"},{"denom":"ASSET7","index":"0.000006026079452192"},{"denom":"ASSET8","index":"0.000007863615407695"},{"denom":"ASSET9","index":"0.000003395258743528"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003241945367060"},{"denom":"ASSET1","index":"0.000027480716546724"},{"denom":"ASSET10","index":"0.000021780901079221"},{"denom":"ASSET11","index":"0.000027265989011084"},{"denom":"ASSET12","index":"0.000025921947969478"},{"denom":"ASSET13","index":"0.000008556984130745"},{"denom":"ASSET14","index":"0.000025051754134356"},{"denom":"ASSET15","index":"0.000019643848931612"},{"denom":"ASSET16","index":"0.000012200322352703"},{"denom":"ASSET17","index":"0.000009524928673174"},{"denom":"ASSET18","index":"0.000003966981346299"},{"denom":"ASSET2","index":"0.000008309018225650"},{"denom":"ASSET3","index":"0.000002312540225621"},{"denom":"ASSET4","index":"0.000022282443818183"},{"denom":"ASSET5","index":"0.000001802193647755"},{"denom":"ASSET6","index":"0.000007278646216530"},{"denom":"ASSET7","index":"0.000011418356902196"},{"denom":"ASSET8","index":"0.000015557459098515"},{"denom":"ASSET9","index":"0.000006608754258977"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001631665384825"},{"denom":"ASSET1","index":"0.000013602742609312"},{"denom":"ASSET10","index":"0.000009477179623123"},{"denom":"ASSET11","index":"0.000013159027954757"},{"denom":"ASSET12","index":"0.000011849393704263"},{"denom":"ASSET13","index":"0.000004077627053980"},{"denom":"ASSET14","index":"0.000012292493795584"},{"denom":"ASSET15","index":"0.000008788868801652"},{"denom":"ASSET16","index":"0.000006127810000788"},{"denom":"ASSET17","index":"0.000004351722256101"},{"denom":"ASSET18","index":"0.000002072921786447"},{"denom":"ASSET2","index":"0.000004015556167401"},{"denom":"ASSET3","index":"0.000001174430339134"},{"denom":"ASSET4","index":"0.000011054148880171"},{"denom":"ASSET5","index":"0.000000911397275215"},{"denom":"ASSET6","index":"0.000003710118240373"},{"denom":"ASSET7","index":"0.000005682866219766"},{"denom":"ASSET8","index":"0.000007415319974879"},{"denom":"ASSET9","index":"0.000003202489009539"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003079719434352"},{"denom":"ASSET1","index":"0.000026105925494605"},{"denom":"ASSET10","index":"0.000020711970439773"},{"denom":"ASSET11","index":"0.000025910008103106"},{"denom":"ASSET12","index":"0.000024641613628664"},{"denom":"ASSET13","index":"0.000008133110770201"},{"denom":"ASSET14","index":"0.000023800542954419"},{"denom":"ASSET15","index":"0.000018678884312278"},{"denom":"ASSET16","index":"0.000011589749383737"},{"denom":"ASSET17","index":"0.000009055208366452"},{"denom":"ASSET18","index":"0.000003767697278786"},{"denom":"ASSET2","index":"0.000007896757003962"},{"denom":"ASSET3","index":"0.000002198611212202"},{"denom":"ASSET4","index":"0.000021166859181475"},{"denom":"ASSET5","index":"0.000001712166144109"},{"denom":"ASSET6","index":"0.000006913910929446"},{"denom":"ASSET7","index":"0.000010848237821893"},{"denom":"ASSET8","index":"0.000014785764472138"},{"denom":"ASSET9","index":"0.000006281127943464"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001520990142264"},{"denom":"ASSET1","index":"0.000012680102108631"},{"denom":"ASSET10","index":"0.000008834326429376"},{"denom":"ASSET11","index":"0.000012266893306329"},{"denom":"ASSET12","index":"0.000011046354389007"},{"denom":"ASSET13","index":"0.000003801591675587"},{"denom":"ASSET14","index":"0.000011458856247250"},{"denom":"ASSET15","index":"0.000008193128168148"},{"denom":"ASSET16","index":"0.000005712107994187"},{"denom":"ASSET17","index":"0.000004056798480773"},{"denom":"ASSET18","index":"0.000001932431584420"},{"denom":"ASSET2","index":"0.000003743268790745"},{"denom":"ASSET3","index":"0.000001095056346905"},{"denom":"ASSET4","index":"0.000010304770071444"},{"denom":"ASSET5","index":"0.000000849746758541"},{"denom":"ASSET6","index":"0.000003459077279153"},{"denom":"ASSET7","index":"0.000005297485303768"},{"denom":"ASSET8","index":"0.000006912499005837"},{"denom":"ASSET9","index":"0.000002985778231863"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003063170165442"},{"denom":"ASSET1","index":"0.000025996358951928"},{"denom":"ASSET10","index":"0.000020799618544072"},{"denom":"ASSET11","index":"0.000025846936295403"},{"denom":"ASSET12","index":"0.000024670295822131"},{"denom":"ASSET13","index":"0.000008120644896033"},{"denom":"ASSET14","index":"0.000023715222729701"},{"denom":"ASSET15","index":"0.000018725986369791"},{"denom":"ASSET16","index":"0.000011529047312284"},{"denom":"ASSET17","index":"0.000009065966880203"},{"denom":"ASSET18","index":"0.000003737409049681"},{"denom":"ASSET2","index":"0.000007876841198043"},{"denom":"ASSET3","index":"0.000002185992003768"},{"denom":"ASSET4","index":"0.000021074917159843"},{"denom":"ASSET5","index":"0.000001702800306431"},{"denom":"ASSET6","index":"0.000006871093729972"},{"denom":"ASSET7","index":"0.000010798830402478"},{"denom":"ASSET8","index":"0.000014762015379742"},{"denom":"ASSET9","index":"0.000006264517424621"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001519669987195"},{"denom":"ASSET1","index":"0.000012676623405048"},{"denom":"ASSET10","index":"0.000008831600766261"},{"denom":"ASSET11","index":"0.000012262448940742"},{"denom":"ASSET12","index":"0.000011042591812037"},{"denom":"ASSET13","index":"0.000003799690110356"},{"denom":"ASSET14","index":"0.000011454705706870"},{"denom":"ASSET15","index":"0.000008189733375059"},{"denom":"ASSET16","index":"0.000005709838012905"},{"denom":"ASSET17","index":"0.000004055200725152"},{"denom":"ASSET18","index":"0.000001931783882027"},{"denom":"ASSET2","index":"0.000003741994165079"},{"denom":"ASSET3","index":"0.000001094162390780"},{"denom":"ASSET4","index":"0.000010301817086076"},{"denom":"ASSET5","index":"0.000000848954623355"},{"denom":"ASSET6","index":"0.000003457635577645"},{"denom":"ASSET7","index":"0.000005295663548598"},{"denom":"ASSET8","index":"0.000006910119731604"},{"denom":"ASSET9","index":"0.000002984734883325"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003051401969864"},{"denom":"ASSET1","index":"0.000025903543471827"},{"denom":"ASSET10","index":"0.000020717104247015"},{"denom":"ASSET11","index":"0.000025751820078700"},{"denom":"ASSET12","index":"0.000024575704795191"},{"denom":"ASSET13","index":"0.000008089460542782"},{"denom":"ASSET14","index":"0.000023629519286555"},{"denom":"ASSET15","index":"0.000018652475785738"},{"denom":"ASSET16","index":"0.000011487598582804"},{"denom":"ASSET17","index":"0.000009031027466449"},{"denom":"ASSET18","index":"0.000003724432134289"},{"denom":"ASSET2","index":"0.000007847588407204"},{"denom":"ASSET3","index":"0.000002177732310384"},{"denom":"ASSET4","index":"0.000021000151540181"},{"denom":"ASSET5","index":"0.000001696165098739"},{"denom":"ASSET6","index":"0.000006846477479182"},{"denom":"ASSET7","index":"0.000010760324594985"},{"denom":"ASSET8","index":"0.000014706911787677"},{"denom":"ASSET9","index":"0.000006241583848480"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001392192847149"},{"denom":"ASSET1","index":"0.000011611450847386"},{"denom":"ASSET10","index":"0.000008088781067478"},{"denom":"ASSET11","index":"0.000011231761889073"},{"denom":"ASSET12","index":"0.000010115195100551"},{"denom":"ASSET13","index":"0.000003480482117873"},{"denom":"ASSET14","index":"0.000010492071548062"},{"denom":"ASSET15","index":"0.000007502372565194"},{"denom":"ASSET16","index":"0.000005229863836918"},{"denom":"ASSET17","index":"0.000003713920514466"},{"denom":"ASSET18","index":"0.000001769069294661"},{"denom":"ASSET2","index":"0.000003427044412629"},{"denom":"ASSET3","index":"0.000001002660101028"},{"denom":"ASSET4","index":"0.000009435973741790"},{"denom":"ASSET5","index":"0.000000777659236842"},{"denom":"ASSET6","index":"0.000003166887163415"},{"denom":"ASSET7","index":"0.000004850174878604"},{"denom":"ASSET8","index":"0.000006329555560626"},{"denom":"ASSET9","index":"0.000002733760499857"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000002834261839987"},{"denom":"ASSET1","index":"0.000024063735726127"},{"denom":"ASSET10","index":"0.000019278012414561"},{"denom":"ASSET11","index":"0.000023930766794440"},{"denom":"ASSET12","index":"0.000022855511266190"},{"denom":"ASSET13","index":"0.000007519422832827"},{"denom":"ASSET14","index":"0.000021953268691937"},{"denom":"ASSET15","index":"0.000017352048046781"},{"denom":"ASSET16","index":"0.000010669562284438"},{"denom":"ASSET17","index":"0.000008398158415340"},{"denom":"ASSET18","index":"0.000003456710779118"},{"denom":"ASSET2","index":"0.000007292324829772"},{"denom":"ASSET3","index":"0.000002022818722752"},{"denom":"ASSET4","index":"0.000019507505991506"},{"denom":"ASSET5","index":"0.000001575196067099"},{"denom":"ASSET6","index":"0.000006357416996111"},{"denom":"ASSET7","index":"0.000009994574317511"},{"denom":"ASSET8","index":"0.000013669954492341"},{"denom":"ASSET9","index":"0.000005799591528398"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001553840185331"},{"denom":"ASSET1","index":"0.000012958259817171"},{"denom":"ASSET10","index":"0.000009028099224953"},{"denom":"ASSET11","index":"0.000012533831248030"},{"denom":"ASSET12","index":"0.000011286922457332"},{"denom":"ASSET13","index":"0.000003884600463327"},{"denom":"ASSET14","index":"0.000011708953124953"},{"denom":"ASSET15","index":"0.000008371074208317"},{"denom":"ASSET16","index":"0.000005836492301072"},{"denom":"ASSET17","index":"0.000004143573827548"},{"denom":"ASSET18","index":"0.000001973472951431"},{"denom":"ASSET2","index":"0.000003824652925312"},{"denom":"ASSET3","index":"0.000001117422108587"},{"denom":"ASSET4","index":"0.000010529185576831"},{"denom":"ASSET5","index":"0.000000868040350447"},{"denom":"ASSET6","index":"0.000003534506841323"},{"denom":"ASSET7","index":"0.000005412063731931"},{"denom":"ASSET8","index":"0.000007064217879605"},{"denom":"ASSET9","index":"0.000003050130734168"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000002875427361068"},{"denom":"ASSET1","index":"0.000024372739255487"},{"denom":"ASSET10","index":"0.000019284464921318"},{"denom":"ASSET11","index":"0.000024174413552556"},{"denom":"ASSET12","index":"0.000022964657814992"},{"denom":"ASSET13","index":"0.000007586106071195"},{"denom":"ASSET14","index":"0.000022214775035212"},{"denom":"ASSET15","index":"0.000017399266119679"},{"denom":"ASSET16","index":"0.000010822432031544"},{"denom":"ASSET17","index":"0.000008437405253940"},{"denom":"ASSET18","index":"0.000003520101477575"},{"denom":"ASSET2","index":"0.000007366931162610"},{"denom":"ASSET3","index":"0.000002051556015935"},{"denom":"ASSET4","index":"0.000019761188522524"},{"denom":"ASSET5","index":"0.000001598363223465"},{"denom":"ASSET6","index":"0.000006458982880806"},{"denom":"ASSET7","index":"0.000010127316932433"},{"denom":"ASSET8","index":"0.000013792105044122"},{"denom":"ASSET9","index":"0.000005859963066840"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001468329025254"},{"denom":"ASSET1","index":"0.000012248466172689"},{"denom":"ASSET10","index":"0.000008533242661533"},{"denom":"ASSET11","index":"0.000011849890220686"},{"denom":"ASSET12","index":"0.000010670683647662"},{"denom":"ASSET13","index":"0.000003671855143322"},{"denom":"ASSET14","index":"0.000011069259599665"},{"denom":"ASSET15","index":"0.000007913694549611"},{"denom":"ASSET16","index":"0.000005518108516848"},{"denom":"ASSET17","index":"0.000003917609227717"},{"denom":"ASSET18","index":"0.000001866904977257"},{"denom":"ASSET2","index":"0.000003616095813249"},{"denom":"ASSET3","index":"0.000001057362111013"},{"denom":"ASSET4","index":"0.000009954072998206"},{"denom":"ASSET5","index":"0.000000819868668110"},{"denom":"ASSET6","index":"0.000003341429483630"},{"denom":"ASSET7","index":"0.000005117467404472"},{"denom":"ASSET8","index":"0.000006676663486141"},{"denom":"ASSET9","index":"0.000002882963880808"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000002995432004660"},{"denom":"ASSET1","index":"0.000025434255671185"},{"denom":"ASSET10","index":"0.000020381248485322"},{"denom":"ASSET11","index":"0.000025297016742096"},{"denom":"ASSET12","index":"0.000024161457271020"},{"denom":"ASSET13","index":"0.000007948725545453"},{"denom":"ASSET14","index":"0.000023205881885085"},{"denom":"ASSET15","index":"0.000018343715148864"},{"denom":"ASSET16","index":"0.000011277889207663"},{"denom":"ASSET17","index":"0.000008877556775335"},{"denom":"ASSET18","index":"0.000003654253802028"},{"denom":"ASSET2","index":"0.000007709102798424"},{"denom":"ASSET3","index":"0.000002137627884226"},{"denom":"ASSET4","index":"0.000020618696770430"},{"denom":"ASSET5","index":"0.000001664440090804"},{"denom":"ASSET6","index":"0.000006720260763181"},{"denom":"ASSET7","index":"0.000010565171316359"},{"denom":"ASSET8","index":"0.000014449121165534"},{"denom":"ASSET9","index":"0.000006129217088192"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001484659776814"},{"denom":"ASSET1","index":"0.000012377911876883"},{"denom":"ASSET10","index":"0.000008623797972416"},{"denom":"ASSET11","index":"0.000011974339842928"},{"denom":"ASSET12","index":"0.000010782780641408"},{"denom":"ASSET13","index":"0.000003710691597017"},{"denom":"ASSET14","index":"0.000011185714112019"},{"denom":"ASSET15","index":"0.000007997367331102"},{"denom":"ASSET16","index":"0.000005575935127370"},{"denom":"ASSET17","index":"0.000003959731301514"},{"denom":"ASSET18","index":"0.000001886316120734"},{"denom":"ASSET2","index":"0.000003653859459324"},{"denom":"ASSET3","index":"0.000001068955039306"},{"denom":"ASSET4","index":"0.000010059288371675"},{"denom":"ASSET5","index":"0.000000829493784981"},{"denom":"ASSET6","index":"0.000003376084404307"},{"denom":"ASSET7","index":"0.000005171085966725"},{"denom":"ASSET8","index":"0.000006747698865199"},{"denom":"ASSET9","index":"0.000002914403105969"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000002967027008461"},{"denom":"ASSET1","index":"0.000025180120058697"},{"denom":"ASSET10","index":"0.000020126919929476"},{"denom":"ASSET11","index":"0.000025029678796477"},{"denom":"ASSET12","index":"0.000023880507059092"},{"denom":"ASSET13","index":"0.000007862872062626"},{"denom":"ASSET14","index":"0.000022968832134984"},{"denom":"ASSET15","index":"0.000018123195207046"},{"denom":"ASSET16","index":"0.000011168095360491"},{"denom":"ASSET17","index":"0.000008775186029853"},{"denom":"ASSET18","index":"0.000003621217117579"},{"denom":"ASSET2","index":"0.000007627534970337"},{"denom":"ASSET3","index":"0.000002117298518473"},{"denom":"ASSET4","index":"0.000020413769751333"},{"denom":"ASSET5","index":"0.000001649183760435"},{"denom":"ASSET6","index":"0.000006656038319196"},{"denom":"ASSET7","index":"0.000010459966878994"},{"denom":"ASSET8","index":"0.000014293861494285"},{"denom":"ASSET9","index":"0.000006066597621916"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001508631993599"},{"denom":"ASSET1","index":"0.000012578103553994"},{"denom":"ASSET10","index":"0.000008763023138279"},{"denom":"ASSET11","index":"0.000012169014387632"},{"denom":"ASSET12","index":"0.000010956555546150"},{"denom":"ASSET13","index":"0.000003770654442897"},{"denom":"ASSET14","index":"0.000011367495794714"},{"denom":"ASSET15","index":"0.000008126250861227"},{"denom":"ASSET16","index":"0.000005666162616450"},{"denom":"ASSET17","index":"0.000004024252704398"},{"denom":"ASSET18","index":"0.000001915870077761"},{"denom":"ASSET2","index":"0.000003713270894674"},{"denom":"ASSET3","index":"0.000001084734169631"},{"denom":"ASSET4","index":"0.000010221675912459"},{"denom":"ASSET5","index":"0.000000842242401334"},{"denom":"ASSET6","index":"0.000003430055317962"},{"denom":"ASSET7","index":"0.000005255222367887"},{"denom":"ASSET8","index":"0.000006856408471522"},{"denom":"ASSET9","index":"0.000002961731521176"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000002968383248598"},{"denom":"ASSET1","index":"0.000025185581850199"},{"denom":"ASSET10","index":"0.000020091193699906"},{"denom":"ASSET11","index":"0.000025026167595767"},{"denom":"ASSET12","index":"0.000023854952987524"},{"denom":"ASSET13","index":"0.000007859725566891"},{"denom":"ASSET14","index":"0.000022971118914045"},{"denom":"ASSET15","index":"0.000018098517255117"},{"denom":"ASSET16","index":"0.000011173004258039"},{"denom":"ASSET17","index":"0.000008766603022733"},{"denom":"ASSET18","index":"0.000003624559740525"},{"denom":"ASSET2","index":"0.000007626317523237"},{"denom":"ASSET3","index":"0.000002117313008939"},{"denom":"ASSET4","index":"0.000020418576076670"},{"denom":"ASSET5","index":"0.000001649450966157"},{"denom":"ASSET6","index":"0.000006660362585584"},{"denom":"ASSET7","index":"0.000010463779822658"},{"denom":"ASSET8","index":"0.000014287735496216"},{"denom":"ASSET9","index":"0.000006065360072421"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001603618851190"},{"denom":"ASSET1","index":"0.000013373450792115"},{"denom":"ASSET10","index":"0.000009317368604669"},{"denom":"ASSET11","index":"0.000012937408123124"},{"denom":"ASSET12","index":"0.000011650307554501"},{"denom":"ASSET13","index":"0.000004008493774333"},{"denom":"ASSET14","index":"0.000012085243516211"},{"denom":"ASSET15","index":"0.000008640063748266"},{"denom":"ASSET16","index":"0.000006023807734317"},{"denom":"ASSET17","index":"0.000004278530351069"},{"denom":"ASSET18","index":"0.000002037448105618"},{"denom":"ASSET2","index":"0.000003947624873839"},{"denom":"ASSET3","index":"0.000001154295694818"},{"denom":"ASSET4","index":"0.000010867865506336"},{"denom":"ASSET5","index":"0.000000896432898181"},{"denom":"ASSET6","index":"0.000003647707200497"},{"denom":"ASSET7","index":"0.000005586658358043"},{"denom":"ASSET8","index":"0.000007289880864586"},{"denom":"ASSET9","index":"0.000003148582216449"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003259379166935"},{"denom":"ASSET1","index":"0.000027669546155668"},{"denom":"ASSET10","index":"0.000022163157427920"},{"denom":"ASSET11","index":"0.000027516665793422"},{"denom":"ASSET12","index":"0.000026276569409586"},{"denom":"ASSET13","index":"0.000008645229164029"},{"denom":"ASSET14","index":"0.000025243382728696"},{"denom":"ASSET15","index":"0.000019947981783747"},{"denom":"ASSET16","index":"0.000012268920188963"},{"denom":"ASSET17","index":"0.000009656339783182"},{"denom":"ASSET18","index":"0.000003975233530089"},{"denom":"ASSET2","index":"0.000008385350610200"},{"denom":"ASSET3","index":"0.000002325230588439"},{"denom":"ASSET4","index":"0.000022430515898086"},{"denom":"ASSET5","index":"0.000001812256369527"},{"denom":"ASSET6","index":"0.000007311001085881"},{"denom":"ASSET7","index":"0.000011492885803011"},{"denom":"ASSET8","index":"0.000015716897251793"},{"denom":"ASSET9","index":"0.000006668589151432"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001669758803356"},{"denom":"ASSET1","index":"0.000013919924903508"},{"denom":"ASSET10","index":"0.000009698114015232"},{"denom":"ASSET11","index":"0.000013466332119255"},{"denom":"ASSET12","index":"0.000012126099781115"},{"denom":"ASSET13","index":"0.000004173211661392"},{"denom":"ASSET14","index":"0.000012579297449702"},{"denom":"ASSET15","index":"0.000008994017898909"},{"denom":"ASSET16","index":"0.000006270880730729"},{"denom":"ASSET17","index":"0.000004453348668392"},{"denom":"ASSET18","index":"0.000002121376009280"},{"denom":"ASSET2","index":"0.000004109202923545"},{"denom":"ASSET3","index":"0.000001201941855137"},{"denom":"ASSET4","index":"0.000011312556625386"},{"denom":"ASSET5","index":"0.000000932868086778"},{"denom":"ASSET6","index":"0.000003797061547622"},{"denom":"ASSET7","index":"0.000005815312368147"},{"denom":"ASSET8","index":"0.000007588591475923"},{"denom":"ASSET9","index":"0.000003277484447193"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003314119794923"},{"denom":"ASSET1","index":"0.000028119315186385"},{"denom":"ASSET10","index":"0.000022456877991933"},{"denom":"ASSET11","index":"0.000027947185249485"},{"denom":"ASSET12","index":"0.000026653541530161"},{"denom":"ASSET13","index":"0.000008778725953540"},{"denom":"ASSET14","index":"0.000025648491290636"},{"denom":"ASSET15","index":"0.000020225495910600"},{"denom":"ASSET16","index":"0.000012473684612014"},{"denom":"ASSET17","index":"0.000009794866581105"},{"denom":"ASSET18","index":"0.000004045992889163"},{"denom":"ASSET2","index":"0.000008517017325485"},{"denom":"ASSET3","index":"0.000002365208974685"},{"denom":"ASSET4","index":"0.000022797013251164"},{"denom":"ASSET5","index":"0.000001842432416817"},{"denom":"ASSET6","index":"0.000007435560259585"},{"denom":"ASSET7","index":"0.000011681616070006"},{"denom":"ASSET8","index":"0.000015958852395270"},{"denom":"ASSET9","index":"0.000006773561992828"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001334597814253"},{"denom":"ASSET1","index":"0.000011126876577448"},{"denom":"ASSET10","index":"0.000007751884027943"},{"denom":"ASSET11","index":"0.000010763759508328"},{"denom":"ASSET12","index":"0.000009692944381721"},{"denom":"ASSET13","index":"0.000003335543967388"},{"denom":"ASSET14","index":"0.000010055110882597"},{"denom":"ASSET15","index":"0.000007189147627631"},{"denom":"ASSET16","index":"0.000005012346349398"},{"denom":"ASSET17","index":"0.000003559878072918"},{"denom":"ASSET18","index":"0.000001695813746885"},{"denom":"ASSET2","index":"0.000003284213282225"},{"denom":"ASSET3","index":"0.000000960549210329"},{"denom":"ASSET4","index":"0.000009042280418860"},{"denom":"ASSET5","index":"0.000000745720787237"},{"denom":"ASSET6","index":"0.000003035164402357"},{"denom":"ASSET7","index":"0.000004648278712034"},{"denom":"ASSET8","index":"0.000006065575963495"},{"denom":"ASSET9","index":"0.000002619766079830"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000002933404194828"},{"denom":"ASSET1","index":"0.000024932632498194"},{"denom":"ASSET10","index":"0.000020157113753706"},{"denom":"ASSET11","index":"0.000024842878528839"},{"denom":"ASSET12","index":"0.000023817726072485"},{"denom":"ASSET13","index":"0.000007813243799971"},{"denom":"ASSET14","index":"0.000022761898108549"},{"denom":"ASSET15","index":"0.000018109267957138"},{"denom":"ASSET16","index":"0.000011043189892304"},{"denom":"ASSET17","index":"0.000008753164046701"},{"denom":"ASSET18","index":"0.000003567063844603"},{"denom":"ASSET2","index":"0.000007569762146700"},{"denom":"ASSET3","index":"0.000002091389836038"},{"denom":"ASSET4","index":"0.000020208488830330"},{"denom":"ASSET5","index":"0.000001630166870108"},{"denom":"ASSET6","index":"0.000006572642272968"},{"denom":"ASSET7","index":"0.000010351822041320"},{"denom":"ASSET8","index":"0.000014203644477234"},{"denom":"ASSET9","index":"0.000006019030096188"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001655550281073"},{"denom":"ASSET1","index":"0.000013803766186213"},{"denom":"ASSET10","index":"0.000009616885369480"},{"denom":"ASSET11","index":"0.000013353770421464"},{"denom":"ASSET12","index":"0.000012024654915933"},{"denom":"ASSET13","index":"0.000004138458266908"},{"denom":"ASSET14","index":"0.000012474650680682"},{"denom":"ASSET15","index":"0.000008918932754767"},{"denom":"ASSET16","index":"0.000006218123294721"},{"denom":"ASSET17","index":"0.000004415635621077"},{"denom":"ASSET18","index":"0.000002103876302725"},{"denom":"ASSET2","index":"0.000004075008029207"},{"denom":"ASSET3","index":"0.000001191361699996"},{"denom":"ASSET4","index":"0.000011218168999888"},{"denom":"ASSET5","index":"0.000000925037675960"},{"denom":"ASSET6","index":"0.000003765270684639"},{"denom":"ASSET7","index":"0.000005766457786874"},{"denom":"ASSET8","index":"0.000007524697268437"},{"denom":"ASSET9","index":"0.000003250154939091"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003215122291080"},{"denom":"ASSET1","index":"0.000027271082473775"},{"denom":"ASSET10","index":"0.000021717714787675"},{"denom":"ASSET11","index":"0.000027088129911249"},{"denom":"ASSET12","index":"0.000025803190697535"},{"denom":"ASSET13","index":"0.000008506451165719"},{"denom":"ASSET14","index":"0.000024869823256717"},{"denom":"ASSET15","index":"0.000019571375436743"},{"denom":"ASSET16","index":"0.000012101015548893"},{"denom":"ASSET17","index":"0.000009481514658039"},{"denom":"ASSET18","index":"0.000003929002426467"},{"denom":"ASSET2","index":"0.000008255375778501"},{"denom":"ASSET3","index":"0.000002294279906946"},{"denom":"ASSET4","index":"0.000022110354928469"},{"denom":"ASSET5","index":"0.000001787716273475"},{"denom":"ASSET6","index":"0.000007215985074700"},{"denom":"ASSET7","index":"0.000011330188741735"},{"denom":"ASSET8","index":"0.000015463524362026"},{"denom":"ASSET9","index":"0.000006565858639552"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001631513498845"},{"denom":"ASSET1","index":"0.000013601788709515"},{"denom":"ASSET10","index":"0.000009476711328689"},{"denom":"ASSET11","index":"0.000013158178840821"},{"denom":"ASSET12","index":"0.000011848922966954"},{"denom":"ASSET13","index":"0.000004077884841603"},{"denom":"ASSET14","index":"0.000012291633930140"},{"denom":"ASSET15","index":"0.000008788599161546"},{"denom":"ASSET16","index":"0.000006127389402135"},{"denom":"ASSET17","index":"0.000004351601569095"},{"denom":"ASSET18","index":"0.000002072876103766"},{"denom":"ASSET2","index":"0.000004014961455973"},{"denom":"ASSET3","index":"0.000001174420047516"},{"denom":"ASSET4","index":"0.000011053841044239"},{"denom":"ASSET5","index":"0.000000911490186131"},{"denom":"ASSET6","index":"0.000003710232488420"},{"denom":"ASSET7","index":"0.000005682431175178"},{"denom":"ASSET8","index":"0.000007415071543785"},{"denom":"ASSET9","index":"0.000003202800328586"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003159157648171"},{"denom":"ASSET1","index":"0.000026793811254639"},{"denom":"ASSET10","index":"0.000021330257270132"},{"denom":"ASSET11","index":"0.000026611245447042"},{"denom":"ASSET12","index":"0.000025345616114893"},{"denom":"ASSET13","index":"0.000008356504281369"},{"denom":"ASSET14","index":"0.000024433401122602"},{"denom":"ASSET15","index":"0.000019223209713353"},{"denom":"ASSET16","index":"0.000011890026449509"},{"denom":"ASSET17","index":"0.000009313941892173"},{"denom":"ASSET18","index":"0.000003860849124980"},{"denom":"ASSET2","index":"0.000008109777269158"},{"denom":"ASSET3","index":"0.000002255070941538"},{"denom":"ASSET4","index":"0.000021723391251034"},{"denom":"ASSET5","index":"0.000001756486235957"},{"denom":"ASSET6","index":"0.000007090574282328"},{"denom":"ASSET7","index":"0.000011132530538444"},{"denom":"ASSET8","index":"0.000015191323807650"},{"denom":"ASSET9","index":"0.000006450832118924"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001649724724935"},{"denom":"ASSET1","index":"0.000013753740147655"},{"denom":"ASSET10","index":"0.000009582563441278"},{"denom":"ASSET11","index":"0.000013305204895691"},{"denom":"ASSET12","index":"0.000011981321923304"},{"denom":"ASSET13","index":"0.000004123306127916"},{"denom":"ASSET14","index":"0.000012429052627730"},{"denom":"ASSET15","index":"0.000008886629821639"},{"denom":"ASSET16","index":"0.000006195820583626"},{"denom":"ASSET17","index":"0.000004400070480698"},{"denom":"ASSET18","index":"0.000002096248608056"},{"denom":"ASSET2","index":"0.000004060149146250"},{"denom":"ASSET3","index":"0.000001187512164840"},{"denom":"ASSET4","index":"0.000011177176659918"},{"denom":"ASSET5","index":"0.000000921609203810"},{"denom":"ASSET6","index":"0.000003751605165751"},{"denom":"ASSET7","index":"0.000005746078510357"},{"denom":"ASSET8","index":"0.000007497578498742"},{"denom":"ASSET9","index":"0.000003238303837047"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003253063831874"},{"denom":"ASSET1","index":"0.000027597326034286"},{"denom":"ASSET10","index":"0.000022021617243178"},{"denom":"ASSET11","index":"0.000027423138617092"},{"denom":"ASSET12","index":"0.000026144931484859"},{"denom":"ASSET13","index":"0.000008613299773809"},{"denom":"ASSET14","index":"0.000025170855267573"},{"denom":"ASSET15","index":"0.000019836826910831"},{"denom":"ASSET16","index":"0.000012243184702458"},{"denom":"ASSET17","index":"0.000009607701845932"},{"denom":"ASSET18","index":"0.000003972764374377"},{"denom":"ASSET2","index":"0.000008357484440725"},{"denom":"ASSET3","index":"0.000002321502734814"},{"denom":"ASSET4","index":"0.000022373906168402"},{"denom":"ASSET5","index":"0.000001808481766797"},{"denom":"ASSET6","index":"0.000007298802623853"},{"denom":"ASSET7","index":"0.000011465220726545"},{"denom":"ASSET8","index":"0.000015658035812384"},{"denom":"ASSET9","index":"0.000006646717011605"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001698975992122"},{"denom":"ASSET1","index":"0.000014167905922226"},{"denom":"ASSET10","index":"0.000009870625403756"},{"denom":"ASSET11","index":"0.000013705415046027"},{"denom":"ASSET12","index":"0.000012342129737421"},{"denom":"ASSET13","index":"0.000004247439980305"},{"denom":"ASSET14","index":"0.000012803154715439"},{"denom":"ASSET15","index":"0.000009153801193103"},{"denom":"ASSET16","index":"0.000006381787732272"},{"denom":"ASSET17","index":"0.000004532557176567"},{"denom":"ASSET18","index":"0.000002159268021049"},{"denom":"ASSET2","index":"0.000004182207511237"},{"denom":"ASSET3","index":"0.000001223292032291"},{"denom":"ASSET4","index":"0.000011513897264989"},{"denom":"ASSET5","index":"0.000000949169072389"},{"denom":"ASSET6","index":"0.000003864840554987"},{"denom":"ASSET7","index":"0.000005918563906982"},{"denom":"ASSET8","index":"0.000007723084568158"},{"denom":"ASSET9","index":"0.000003335651311539"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003402845442317"},{"denom":"ASSET1","index":"0.000028880571174740"},{"denom":"ASSET10","index":"0.000023090578471272"},{"denom":"ASSET11","index":"0.000028709364204549"},{"denom":"ASSET12","index":"0.000027394626213612"},{"denom":"ASSET13","index":"0.000009019217107214"},{"denom":"ASSET14","index":"0.000026344557012563"},{"denom":"ASSET15","index":"0.000020791017438004"},{"denom":"ASSET16","index":"0.000012808886991708"},{"denom":"ASSET17","index":"0.000010066951390727"},{"denom":"ASSET18","index":"0.000004153478710890"},{"denom":"ASSET2","index":"0.000008748954704305"},{"denom":"ASSET3","index":"0.000002428490976730"},{"denom":"ASSET4","index":"0.000023413646091842"},{"denom":"ASSET5","index":"0.000001891364101695"},{"denom":"ASSET6","index":"0.000007634563338572"},{"denom":"ASSET7","index":"0.000011996876612297"},{"denom":"ASSET8","index":"0.000016395615103037"},{"denom":"ASSET9","index":"0.000006958318142576"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001515088644413"},{"denom":"ASSET1","index":"0.000012634136557163"},{"denom":"ASSET10","index":"0.000008802109028204"},{"denom":"ASSET11","index":"0.000012222352143486"},{"denom":"ASSET12","index":"0.000011006111259210"},{"denom":"ASSET13","index":"0.000003787721611031"},{"denom":"ASSET14","index":"0.000011417895672887"},{"denom":"ASSET15","index":"0.000008163582563959"},{"denom":"ASSET16","index":"0.000005691138594924"},{"denom":"ASSET17","index":"0.000004042263453241"},{"denom":"ASSET18","index":"0.000001925135571111"},{"denom":"ASSET2","index":"0.000003729515797284"},{"denom":"ASSET3","index":"0.000001091141821893"},{"denom":"ASSET4","index":"0.000010267679293757"},{"denom":"ASSET5","index":"0.000000846156158061"},{"denom":"ASSET6","index":"0.000003446305419945"},{"denom":"ASSET7","index":"0.000005278485437758"},{"denom":"ASSET8","index":"0.000006887398378958"},{"denom":"ASSET9","index":"0.000002974577705544"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003029367235848"},{"denom":"ASSET1","index":"0.000025709657584098"},{"denom":"ASSET10","index":"0.000020551027857005"},{"denom":"ASSET11","index":"0.000025556791271547"},{"denom":"ASSET12","index":"0.000024383546484064"},{"denom":"ASSET13","index":"0.000008028643187417"},{"denom":"ASSET14","index":"0.000023452409013233"},{"denom":"ASSET15","index":"0.000018505869963369"},{"denom":"ASSET16","index":"0.000011403028825829"},{"denom":"ASSET17","index":"0.000008960765854271"},{"denom":"ASSET18","index":"0.000003697390743305"},{"denom":"ASSET2","index":"0.000007788410102575"},{"denom":"ASSET3","index":"0.000002162278160249"},{"denom":"ASSET4","index":"0.000020843149904241"},{"denom":"ASSET5","index":"0.000001683795445220"},{"denom":"ASSET6","index":"0.000006796548728457"},{"denom":"ASSET7","index":"0.000010680301627557"},{"denom":"ASSET8","index":"0.000014594997949332"},{"denom":"ASSET9","index":"0.000006193949682941"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001650481631660"},{"denom":"ASSET1","index":"0.000013760556046882"},{"denom":"ASSET10","index":"0.000009587067899364"},{"denom":"ASSET11","index":"0.000013312100857594"},{"denom":"ASSET12","index":"0.000011987552175177"},{"denom":"ASSET13","index":"0.000004125311926918"},{"denom":"ASSET14","index":"0.000012435412596309"},{"denom":"ASSET15","index":"0.000008891189157367"},{"denom":"ASSET16","index":"0.000006198673717177"},{"denom":"ASSET17","index":"0.000004402473887406"},{"denom":"ASSET18","index":"0.000002097152516481"},{"denom":"ASSET2","index":"0.000004062266502429"},{"denom":"ASSET3","index":"0.000001188346774796"},{"denom":"ASSET4","index":"0.000011182830860714"},{"denom":"ASSET5","index":"0.000000921890641108"},{"denom":"ASSET6","index":"0.000003753581829697"},{"denom":"ASSET7","index":"0.000005749028991578"},{"denom":"ASSET8","index":"0.000007501810745994"},{"denom":"ASSET9","index":"0.000003239702143299"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003205609047354"},{"denom":"ASSET1","index":"0.000027188537481167"},{"denom":"ASSET10","index":"0.000021652723818266"},{"denom":"ASSET11","index":"0.000027005979418132"},{"denom":"ASSET12","index":"0.000025725923481940"},{"denom":"ASSET13","index":"0.000008480657418555"},{"denom":"ASSET14","index":"0.000024794508770079"},{"denom":"ASSET15","index":"0.000019512596409105"},{"denom":"ASSET16","index":"0.000012064653878282"},{"denom":"ASSET17","index":"0.000009453813052143"},{"denom":"ASSET18","index":"0.000003917117707327"},{"denom":"ASSET2","index":"0.000008230459966291"},{"denom":"ASSET3","index":"0.000002288306334262"},{"denom":"ASSET4","index":"0.000022043298344156"},{"denom":"ASSET5","index":"0.000001782083734802"},{"denom":"ASSET6","index":"0.000007194354204475"},{"denom":"ASSET7","index":"0.000011296497588433"},{"denom":"ASSET8","index":"0.000015417282169744"},{"denom":"ASSET9","index":"0.000006545936928299"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001428935211366"},{"denom":"ASSET1","index":"0.000011914564237659"},{"denom":"ASSET10","index":"0.000008301159777028"},{"denom":"ASSET11","index":"0.000011525978642480"},{"denom":"ASSET12","index":"0.000010379209562159"},{"denom":"ASSET13","index":"0.000003571896453874"},{"denom":"ASSET14","index":"0.000010767353582799"},{"denom":"ASSET15","index":"0.000007698410529959"},{"denom":"ASSET16","index":"0.000005367338533420"},{"denom":"ASSET17","index":"0.000003811671429081"},{"denom":"ASSET18","index":"0.000001815754508385"},{"denom":"ASSET2","index":"0.000003517141210917"},{"denom":"ASSET3","index":"0.000001028868678146"},{"denom":"ASSET4","index":"0.000009682846512616"},{"denom":"ASSET5","index":"0.000000798366768278"},{"denom":"ASSET6","index":"0.000003249988614231"},{"denom":"ASSET7","index":"0.000004977428214621"},{"denom":"ASSET8","index":"0.000006495119908522"},{"denom":"ASSET9","index":"0.000002805323052474"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003075918064869"},{"denom":"ASSET1","index":"0.000026136551234120"},{"denom":"ASSET10","index":"0.000021080163895542"},{"denom":"ASSET11","index":"0.000026029570124972"},{"denom":"ASSET12","index":"0.000024929671095533"},{"denom":"ASSET13","index":"0.000008184754658215"},{"denom":"ASSET14","index":"0.000023857159923959"},{"denom":"ASSET15","index":"0.000018947606922173"},{"denom":"ASSET16","index":"0.000011579925359638"},{"denom":"ASSET17","index":"0.000009161388302193"},{"denom":"ASSET18","index":"0.000003743573486430"},{"denom":"ASSET2","index":"0.000007931762150876"},{"denom":"ASSET3","index":"0.000002193704696765"},{"denom":"ASSET4","index":"0.000021185602196482"},{"denom":"ASSET5","index":"0.000001709259314500"},{"denom":"ASSET6","index":"0.000006893942979866"},{"denom":"ASSET7","index":"0.000010853088527538"},{"denom":"ASSET8","index":"0.000014878712124324"},{"denom":"ASSET9","index":"0.000006307130542486"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001556917620519"},{"denom":"ASSET1","index":"0.000012983455297040"},{"denom":"ASSET10","index":"0.000009045452282177"},{"denom":"ASSET11","index":"0.000012560119972943"},{"denom":"ASSET12","index":"0.000011310507230547"},{"denom":"ASSET13","index":"0.000003892294051298"},{"denom":"ASSET14","index":"0.000011733139339821"},{"denom":"ASSET15","index":"0.000008388649636483"},{"denom":"ASSET16","index":"0.000005848637691896"},{"denom":"ASSET17","index":"0.000004153889965857"},{"denom":"ASSET18","index":"0.000001978846514969"},{"denom":"ASSET2","index":"0.000003832520791251"},{"denom":"ASSET3","index":"0.000001120924429588"},{"denom":"ASSET4","index":"0.000010551035220538"},{"denom":"ASSET5","index":"0.000000869876737390"},{"denom":"ASSET6","index":"0.000003541389854081"},{"denom":"ASSET7","index":"0.000005423895938150"},{"denom":"ASSET8","index":"0.000007077857204393"},{"denom":"ASSET9","index":"0.000003056874840288"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003155948059833"},{"denom":"ASSET1","index":"0.000026789841893667"},{"denom":"ASSET10","index":"0.000021451154188244"},{"denom":"ASSET11","index":"0.000026640130662201"},{"denom":"ASSET12","index":"0.000025435769508540"},{"denom":"ASSET13","index":"0.000008370086775831"},{"denom":"ASSET14","index":"0.000024440800445484"},{"denom":"ASSET15","index":"0.000019309084443140"},{"denom":"ASSET16","index":"0.000011879786354964"},{"denom":"ASSET17","index":"0.000009347672781307"},{"denom":"ASSET18","index":"0.000003850232310781"},{"denom":"ASSET2","index":"0.000008118311447694"},{"denom":"ASSET3","index":"0.000002251791235916"},{"denom":"ASSET4","index":"0.000021717604836949"},{"denom":"ASSET5","index":"0.000001754185821919"},{"denom":"ASSET6","index":"0.000007079049104243"},{"denom":"ASSET7","index":"0.000011127710678967"},{"denom":"ASSET8","index":"0.000015216376583965"},{"denom":"ASSET9","index":"0.000006456241851980"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001629017625409"},{"denom":"ASSET1","index":"0.000013583500814952"},{"denom":"ASSET10","index":"0.000009463617777698"},{"denom":"ASSET11","index":"0.000013140742178302"},{"denom":"ASSET12","index":"0.000011833351109704"},{"denom":"ASSET13","index":"0.000004072544063523"},{"denom":"ASSET14","index":"0.000012276109746354"},{"denom":"ASSET15","index":"0.000008777202658616"},{"denom":"ASSET16","index":"0.000006119258515961"},{"denom":"ASSET17","index":"0.000004345439323848"},{"denom":"ASSET18","index":"0.000002070383939302"},{"denom":"ASSET2","index":"0.000004009889539469"},{"denom":"ASSET3","index":"0.000001172335761192"},{"denom":"ASSET4","index":"0.000011039727138351"},{"denom":"ASSET5","index":"0.000000910579082921"},{"denom":"ASSET6","index":"0.000003704970855739"},{"denom":"ASSET7","index":"0.000005675107556554"},{"denom":"ASSET8","index":"0.000007404372420450"},{"denom":"ASSET9","index":"0.000003198165372278"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003300821213878"},{"denom":"ASSET1","index":"0.000028019420341436"},{"denom":"ASSET10","index":"0.000022435320069293"},{"denom":"ASSET11","index":"0.000027862926397945"},{"denom":"ASSET12","index":"0.000026603097941410"},{"denom":"ASSET13","index":"0.000008754572034100"},{"denom":"ASSET14","index":"0.000025562969906661"},{"denom":"ASSET15","index":"0.000020195785636702"},{"denom":"ASSET16","index":"0.000012425527462944"},{"denom":"ASSET17","index":"0.000009776022796414"},{"denom":"ASSET18","index":"0.000004027118689751"},{"denom":"ASSET2","index":"0.000008490998812362"},{"denom":"ASSET3","index":"0.000002354733406852"},{"denom":"ASSET4","index":"0.000022715681634045"},{"denom":"ASSET5","index":"0.000001835160700580"},{"denom":"ASSET6","index":"0.000007403741836767"},{"denom":"ASSET7","index":"0.000011639103500846"},{"denom":"ASSET8","index":"0.000015914079386056"},{"denom":"ASSET9","index":"0.000006752470475547"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001599876133405"},{"denom":"ASSET1","index":"0.000013345434681176"},{"denom":"ASSET10","index":"0.000009297530322905"},{"denom":"ASSET11","index":"0.000012909953167223"},{"denom":"ASSET12","index":"0.000011625282701060"},{"denom":"ASSET13","index":"0.000004000208763886"},{"denom":"ASSET14","index":"0.000012059727354266"},{"denom":"ASSET15","index":"0.000008622533976277"},{"denom":"ASSET16","index":"0.000006011718614052"},{"denom":"ASSET17","index":"0.000004268755697491"},{"denom":"ASSET18","index":"0.000002033283925863"},{"denom":"ASSET2","index":"0.000003939033979783"},{"denom":"ASSET3","index":"0.000001151952290481"},{"denom":"ASSET4","index":"0.000010845563418934"},{"denom":"ASSET5","index":"0.000000893773964352"},{"denom":"ASSET6","index":"0.000003640418084501"},{"denom":"ASSET7","index":"0.000005575200239351"},{"denom":"ASSET8","index":"0.000007274615004517"},{"denom":"ASSET9","index":"0.000003141688064949"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003205518103121"},{"denom":"ASSET1","index":"0.000027209804037075"},{"denom":"ASSET10","index":"0.000021755111918776"},{"denom":"ASSET11","index":"0.000027048910570117"},{"denom":"ASSET12","index":"0.000025809934262776"},{"denom":"ASSET13","index":"0.000008496852467218"},{"denom":"ASSET14","index":"0.000024820667393427"},{"denom":"ASSET15","index":"0.000019589132093549"},{"denom":"ASSET16","index":"0.000012068310128279"},{"denom":"ASSET17","index":"0.000009484236214143"},{"denom":"ASSET18","index":"0.000003912244660385"},{"denom":"ASSET2","index":"0.000008242746790311"},{"denom":"ASSET3","index":"0.000002287536756020"},{"denom":"ASSET4","index":"0.000022059248469095"},{"denom":"ASSET5","index":"0.000001781848402938"},{"denom":"ASSET6","index":"0.000007192715838846"},{"denom":"ASSET7","index":"0.000011303047666497"},{"denom":"ASSET8","index":"0.000015447099928639"},{"denom":"ASSET9","index":"0.000006555210966575"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001693699328345"},{"denom":"ASSET1","index":"0.000014121235265065"},{"denom":"ASSET10","index":"0.000009838380374958"},{"denom":"ASSET11","index":"0.000013660499756586"},{"denom":"ASSET12","index":"0.000012301569616423"},{"denom":"ASSET13","index":"0.000004233563721295"},{"denom":"ASSET14","index":"0.000012760935925768"},{"denom":"ASSET15","index":"0.000009123658427184"},{"denom":"ASSET16","index":"0.000006361299175013"},{"denom":"ASSET17","index":"0.000004517672541531"},{"denom":"ASSET18","index":"0.000002151696438556"},{"denom":"ASSET2","index":"0.000004168526762446"},{"denom":"ASSET3","index":"0.000001219271828530"},{"denom":"ASSET4","index":"0.000011475942538822"},{"denom":"ASSET5","index":"0.000000946116601363"},{"denom":"ASSET6","index":"0.000003852241762569"},{"denom":"ASSET7","index":"0.000005899194467400"},{"denom":"ASSET8","index":"0.000007698322129037"},{"denom":"ASSET9","index":"0.000003325100096108"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003374964488748"},{"denom":"ASSET1","index":"0.000028642371697541"},{"denom":"ASSET10","index":"0.000022886358038922"},{"denom":"ASSET11","index":"0.000028469467846578"},{"denom":"ASSET12","index":"0.000027158021136678"},{"denom":"ASSET13","index":"0.000008943216545101"},{"denom":"ASSET14","index":"0.000026126056006670"},{"denom":"ASSET15","index":"0.000020609372613995"},{"denom":"ASSET16","index":"0.000012704733728960"},{"denom":"ASSET17","index":"0.000009980025667275"},{"denom":"ASSET18","index":"0.000004119620826099"},{"denom":"ASSET2","index":"0.000008675935346246"},{"denom":"ASSET3","index":"0.000002408702445844"},{"denom":"ASSET4","index":"0.000023220763838917"},{"denom":"ASSET5","index":"0.000001876440105393"},{"denom":"ASSET6","index":"0.000007572949563502"},{"denom":"ASSET7","index":"0.000011897934490553"},{"denom":"ASSET8","index":"0.000016258236310419"},{"denom":"ASSET9","index":"0.000006900426530312"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001608105877482"},{"denom":"ASSET1","index":"0.000013418457239972"},{"denom":"ASSET10","index":"0.000009349233819318"},{"denom":"ASSET11","index":"0.000012981594753349"},{"denom":"ASSET12","index":"0.000011689837573077"},{"denom":"ASSET13","index":"0.000004022147721664"},{"denom":"ASSET14","index":"0.000012126700059700"},{"denom":"ASSET15","index":"0.000008669460725910"},{"denom":"ASSET16","index":"0.000006044519750254"},{"denom":"ASSET17","index":"0.000004293303747844"},{"denom":"ASSET18","index":"0.000002044968364105"},{"denom":"ASSET2","index":"0.000003960007798998"},{"denom":"ASSET3","index":"0.000001158062195142"},{"denom":"ASSET4","index":"0.000010904614913932"},{"denom":"ASSET5","index":"0.000000898204336720"},{"denom":"ASSET6","index":"0.000003660606353425"},{"denom":"ASSET7","index":"0.000005605774235672"},{"denom":"ASSET8","index":"0.000007313680595011"},{"denom":"ASSET9","index":"0.000003159720916176"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003138779820137"},{"denom":"ASSET1","index":"0.000026638851971456"},{"denom":"ASSET10","index":"0.000021228354320839"},{"denom":"ASSET11","index":"0.000026463611656062"},{"denom":"ASSET12","index":"0.000025215335343685"},{"denom":"ASSET13","index":"0.000008309803474369"},{"denom":"ASSET14","index":"0.000024294710395367"},{"denom":"ASSET15","index":"0.000019126240972581"},{"denom":"ASSET16","index":"0.000011819368577720"},{"denom":"ASSET17","index":"0.000009266335892783"},{"denom":"ASSET18","index":"0.000003836527514127"},{"denom":"ASSET2","index":"0.000008063422586049"},{"denom":"ASSET3","index":"0.000002240662109326"},{"denom":"ASSET4","index":"0.000021597223596640"},{"denom":"ASSET5","index":"0.000001744975814867"},{"denom":"ASSET6","index":"0.000007047692266012"},{"denom":"ASSET7","index":"0.000011067413421526"},{"denom":"ASSET8","index":"0.000015106336478322"},{"denom":"ASSET9","index":"0.000006414890297355"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001636130781121"},{"denom":"ASSET1","index":"0.000013651986161797"},{"denom":"ASSET10","index":"0.000009511743354655"},{"denom":"ASSET11","index":"0.000013205516575762"},{"denom":"ASSET12","index":"0.000011891065744828"},{"denom":"ASSET13","index":"0.000004093100055822"},{"denom":"ASSET14","index":"0.000012337535330862"},{"denom":"ASSET15","index":"0.000008821240702961"},{"denom":"ASSET16","index":"0.000006147969392790"},{"denom":"ASSET17","index":"0.000004367637254688"},{"denom":"ASSET18","index":"0.000002079827264137"},{"denom":"ASSET2","index":"0.000004029318686389"},{"denom":"ASSET3","index":"0.000001178568783011"},{"denom":"ASSET4","index":"0.000011095185178418"},{"denom":"ASSET5","index":"0.000000915123996220"},{"denom":"ASSET6","index":"0.000003724277354315"},{"denom":"ASSET7","index":"0.000005701499806755"},{"denom":"ASSET8","index":"0.000007440235399574"},{"denom":"ASSET9","index":"0.000003214026398847"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003135138573804"},{"denom":"ASSET1","index":"0.000026601246250396"},{"denom":"ASSET10","index":"0.000021147351718785"},{"denom":"ASSET11","index":"0.000026411423528042"},{"denom":"ASSET12","index":"0.000025139747174388"},{"denom":"ASSET13","index":"0.000008292603180789"},{"denom":"ASSET14","index":"0.000024256405788980"},{"denom":"ASSET15","index":"0.000019064302195638"},{"denom":"ASSET16","index":"0.000011804656377100"},{"denom":"ASSET17","index":"0.000009238224400983"},{"denom":"ASSET18","index":"0.000003834531376561"},{"denom":"ASSET2","index":"0.000008049169006780"},{"denom":"ASSET3","index":"0.000002239375819558"},{"denom":"ASSET4","index":"0.000021568278304468"},{"denom":"ASSET5","index":"0.000001743998311515"},{"denom":"ASSET6","index":"0.000007041675703373"},{"denom":"ASSET7","index":"0.000011051161098588"},{"denom":"ASSET8","index":"0.000015073103234225"},{"denom":"ASSET9","index":"0.000006402150772125"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001682560247115"},{"denom":"ASSET1","index":"0.000014026482890055"},{"denom":"ASSET10","index":"0.000009772411969975"},{"denom":"ASSET11","index":"0.000013568579422963"},{"denom":"ASSET12","index":"0.000012218368466479"},{"denom":"ASSET13","index":"0.000004205057792371"},{"denom":"ASSET14","index":"0.000012675600520863"},{"denom":"ASSET15","index":"0.000009062728737253"},{"denom":"ASSET16","index":"0.000006318664998244"},{"denom":"ASSET17","index":"0.000004487051129876"},{"denom":"ASSET18","index":"0.000002137778063373"},{"denom":"ASSET2","index":"0.000004140602172369"},{"denom":"ASSET3","index":"0.000001211228525856"},{"denom":"ASSET4","index":"0.000011398573549589"},{"denom":"ASSET5","index":"0.000000939977791684"},{"denom":"ASSET6","index":"0.000003825709612155"},{"denom":"ASSET7","index":"0.000005859418705735"},{"denom":"ASSET8","index":"0.000007646047922643"},{"denom":"ASSET9","index":"0.000003302679112354"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003237426875283"},{"denom":"ASSET1","index":"0.000027451710154634"},{"denom":"ASSET10","index":"0.000021835512998164"},{"denom":"ASSET11","index":"0.000027259736654219"},{"denom":"ASSET12","index":"0.000025953768913429"},{"denom":"ASSET13","index":"0.000008559484494503"},{"denom":"ASSET14","index":"0.000025032165857410"},{"denom":"ASSET15","index":"0.000019681806512765"},{"denom":"ASSET16","index":"0.000012183244440341"},{"denom":"ASSET17","index":"0.000009537367134186"},{"denom":"ASSET18","index":"0.000003957397976948"},{"denom":"ASSET2","index":"0.000008307936552813"},{"denom":"ASSET3","index":"0.000002310954839376"},{"denom":"ASSET4","index":"0.000022256988295109"},{"denom":"ASSET5","index":"0.000001799896462688"},{"denom":"ASSET6","index":"0.000007265619632425"},{"denom":"ASSET7","index":"0.000011405823532836"},{"denom":"ASSET8","index":"0.000015559935461923"},{"denom":"ASSET9","index":"0.000006608212131764"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001576738934866"},{"denom":"ASSET1","index":"0.000013143695761043"},{"denom":"ASSET10","index":"0.000009157699733702"},{"denom":"ASSET11","index":"0.000012715663698192"},{"denom":"ASSET12","index":"0.000011450067913139"},{"denom":"ASSET13","index":"0.000003940585946017"},{"denom":"ASSET14","index":"0.000011878099975991"},{"denom":"ASSET15","index":"0.000008492526135047"},{"denom":"ASSET16","index":"0.000005920970048209"},{"denom":"ASSET17","index":"0.000004204637159643"},{"denom":"ASSET18","index":"0.000002003089142854"},{"denom":"ASSET2","index":"0.000003880039170918"},{"denom":"ASSET3","index":"0.000001134411105672"},{"denom":"ASSET4","index":"0.000010681460240357"},{"denom":"ASSET5","index":"0.000000880451021229"},{"denom":"ASSET6","index":"0.000003584873642311"},{"denom":"ASSET7","index":"0.000005491256130493"},{"denom":"ASSET8","index":"0.000007165542647463"},{"denom":"ASSET9","index":"0.000003094612949497"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003150995592381"},{"denom":"ASSET1","index":"0.000026735906318713"},{"denom":"ASSET10","index":"0.000021370928366269"},{"denom":"ASSET11","index":"0.000026577057751538"},{"denom":"ASSET12","index":"0.000025356196217934"},{"denom":"ASSET13","index":"0.000008349049177946"},{"denom":"ASSET14","index":"0.000024388519635576"},{"denom":"ASSET15","index":"0.000019243917228958"},{"denom":"ASSET16","index":"0.000011858566692713"},{"denom":"ASSET17","index":"0.000009317567603522"},{"denom":"ASSET18","index":"0.000003845362315572"},{"denom":"ASSET2","index":"0.000008099062572798"},{"denom":"ASSET3","index":"0.000002247710476517"},{"denom":"ASSET4","index":"0.000021674805285583"},{"denom":"ASSET5","index":"0.000001751018453776"},{"denom":"ASSET6","index":"0.000007067532365991"},{"denom":"ASSET7","index":"0.000011106766164564"},{"denom":"ASSET8","index":"0.000015177641578730"},{"denom":"ASSET9","index":"0.000006441123951375"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001735896630597"},{"denom":"ASSET1","index":"0.000014474259966527"},{"denom":"ASSET10","index":"0.000010084408758147"},{"denom":"ASSET11","index":"0.000014002239606889"},{"denom":"ASSET12","index":"0.000012609068112910"},{"denom":"ASSET13","index":"0.000004339122939062"},{"denom":"ASSET14","index":"0.000013079851197687"},{"denom":"ASSET15","index":"0.000009351942040176"},{"denom":"ASSET16","index":"0.000006520438519776"},{"denom":"ASSET17","index":"0.000004630501168930"},{"denom":"ASSET18","index":"0.000002205442440512"},{"denom":"ASSET2","index":"0.000004272310096544"},{"denom":"ASSET3","index":"0.000001249647610052"},{"denom":"ASSET4","index":"0.000011762772107687"},{"denom":"ASSET5","index":"0.000000970023491367"},{"denom":"ASSET6","index":"0.000003948144082847"},{"denom":"ASSET7","index":"0.000006046562247845"},{"denom":"ASSET8","index":"0.000007890101791387"},{"denom":"ASSET9","index":"0.000003408073605830"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003300304206809"},{"denom":"ASSET1","index":"0.000027981868665615"},{"denom":"ASSET10","index":"0.000022221493016134"},{"denom":"ASSET11","index":"0.000027777532118325"},{"denom":"ASSET12","index":"0.000026428557640091"},{"denom":"ASSET13","index":"0.000008720047886627"},{"denom":"ASSET14","index":"0.000025512138164618"},{"denom":"ASSET15","index":"0.000020036362120252"},{"denom":"ASSET16","index":"0.000012421157074829"},{"denom":"ASSET17","index":"0.000009711490167791"},{"denom":"ASSET18","index":"0.000004036282970136"},{"denom":"ASSET2","index":"0.000008465189250700"},{"denom":"ASSET3","index":"0.000002356240815614"},{"denom":"ASSET4","index":"0.000022687774056492"},{"denom":"ASSET5","index":"0.000001835200922241"},{"denom":"ASSET6","index":"0.000007409270759323"},{"denom":"ASSET7","index":"0.000011627060915230"},{"denom":"ASSET8","index":"0.000015852235873304"},{"denom":"ASSET9","index":"0.000006733690564218"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001726734301691"},{"denom":"ASSET1","index":"0.000014395988805148"},{"denom":"ASSET10","index":"0.000010029746380297"},{"denom":"ASSET11","index":"0.000013926529312304"},{"denom":"ASSET12","index":"0.000012540835608608"},{"denom":"ASSET13","index":"0.000004315874534955"},{"denom":"ASSET14","index":"0.000013009526126035"},{"denom":"ASSET15","index":"0.000009301526659210"},{"denom":"ASSET16","index":"0.000006485154189852"},{"denom":"ASSET17","index":"0.000004605778267637"},{"denom":"ASSET18","index":"0.000002193886868281"},{"denom":"ASSET2","index":"0.000004249742648985"},{"denom":"ASSET3","index":"0.000001243048763609"},{"denom":"ASSET4","index":"0.000011699192013329"},{"denom":"ASSET5","index":"0.000000964679662201"},{"denom":"ASSET6","index":"0.000003926772973318"},{"denom":"ASSET7","index":"0.000006014156746171"},{"denom":"ASSET8","index":"0.000007847778630999"},{"denom":"ASSET9","index":"0.000003389643643667"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003383074331503"},{"denom":"ASSET1","index":"0.000028697774885580"},{"denom":"ASSET10","index":"0.000022880621123289"},{"denom":"ASSET11","index":"0.000028511966470743"},{"denom":"ASSET12","index":"0.000027173358086556"},{"denom":"ASSET13","index":"0.000008954537947194"},{"denom":"ASSET14","index":"0.000026172910691250"},{"denom":"ASSET15","index":"0.000020614154391480"},{"denom":"ASSET16","index":"0.000012732692592075"},{"denom":"ASSET17","index":"0.000009985655741818"},{"denom":"ASSET18","index":"0.000004132359094826"},{"denom":"ASSET2","index":"0.000008689052893949"},{"denom":"ASSET3","index":"0.000002414485946546"},{"denom":"ASSET4","index":"0.000023266612079392"},{"denom":"ASSET5","index":"0.000001880944791026"},{"denom":"ASSET6","index":"0.000007591453768301"},{"denom":"ASSET7","index":"0.000011922604903868"},{"denom":"ASSET8","index":"0.000016278329144958"},{"denom":"ASSET9","index":"0.000006911169878531"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001436232590899"},{"denom":"ASSET1","index":"0.000011976183987962"},{"denom":"ASSET10","index":"0.000008344549248442"},{"denom":"ASSET11","index":"0.000011585862202045"},{"denom":"ASSET12","index":"0.000010432581326504"},{"denom":"ASSET13","index":"0.000003589949888597"},{"denom":"ASSET14","index":"0.000010822903112421"},{"denom":"ASSET15","index":"0.000007738224144105"},{"denom":"ASSET16","index":"0.000005395030251301"},{"denom":"ASSET17","index":"0.000003831216753031"},{"denom":"ASSET18","index":"0.000001825291199515"},{"denom":"ASSET2","index":"0.000003535633264667"},{"denom":"ASSET3","index":"0.000001033279031975"},{"denom":"ASSET4","index":"0.000009732781101914"},{"denom":"ASSET5","index":"0.000000802117585946"},{"denom":"ASSET6","index":"0.000003266576499617"},{"denom":"ASSET7","index":"0.000005003445288083"},{"denom":"ASSET8","index":"0.000006528100290032"},{"denom":"ASSET9","index":"0.000002819411735168"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003006064648013"},{"denom":"ASSET1","index":"0.000025531157590212"},{"denom":"ASSET10","index":"0.000020524407173472"},{"denom":"ASSET11","index":"0.000025409258384489"},{"denom":"ASSET12","index":"0.000024300714605646"},{"denom":"ASSET13","index":"0.000007986286383048"},{"denom":"ASSET14","index":"0.000023298685931189"},{"denom":"ASSET15","index":"0.000018459726056254"},{"denom":"ASSET16","index":"0.000011316095008653"},{"denom":"ASSET17","index":"0.000008930145684163"},{"denom":"ASSET18","index":"0.000003662445744281"},{"denom":"ASSET2","index":"0.000007743120539446"},{"denom":"ASSET3","index":"0.000002143639104141"},{"denom":"ASSET4","index":"0.000020695936675740"},{"denom":"ASSET5","index":"0.000001670457298921"},{"denom":"ASSET6","index":"0.000006739935351518"},{"denom":"ASSET7","index":"0.000010603283023237"},{"denom":"ASSET8","index":"0.000014518439118465"},{"denom":"ASSET9","index":"0.000006156725809403"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001476546163568"},{"denom":"ASSET1","index":"0.000012315891963405"},{"denom":"ASSET10","index":"0.000008580298213179"},{"denom":"ASSET11","index":"0.000011914434711559"},{"denom":"ASSET12","index":"0.000010728207916557"},{"denom":"ASSET13","index":"0.000003691365408921"},{"denom":"ASSET14","index":"0.000011129665168403"},{"denom":"ASSET15","index":"0.000007957699254808"},{"denom":"ASSET16","index":"0.000005547821683700"},{"denom":"ASSET17","index":"0.000003939724556249"},{"denom":"ASSET18","index":"0.000001876869355381"},{"denom":"ASSET2","index":"0.000003635796467281"},{"denom":"ASSET3","index":"0.000001062614251355"},{"denom":"ASSET4","index":"0.000010009213855342"},{"denom":"ASSET5","index":"0.000000825595704361"},{"denom":"ASSET6","index":"0.000003359085819117"},{"denom":"ASSET7","index":"0.000005145230371820"},{"denom":"ASSET8","index":"0.000006713635398099"},{"denom":"ASSET9","index":"0.000002899791505564"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000002611689387046"},{"denom":"ASSET1","index":"0.000022118950462866"},{"denom":"ASSET10","index":"0.000017388824351878"},{"denom":"ASSET11","index":"0.000021911701626113"},{"denom":"ASSET12","index":"0.000020757567192719"},{"denom":"ASSET13","index":"0.000006870825151743"},{"denom":"ASSET14","index":"0.000020152250667519"},{"denom":"ASSET15","index":"0.000015711809347683"},{"denom":"ASSET16","index":"0.000009830001439303"},{"denom":"ASSET17","index":"0.000007627368499381"},{"denom":"ASSET18","index":"0.000003205559295774"},{"denom":"ASSET2","index":"0.000006678615536452"},{"denom":"ASSET3","index":"0.000001865584989735"},{"denom":"ASSET4","index":"0.000017938012267073"},{"denom":"ASSET5","index":"0.000001453547274796"},{"denom":"ASSET6","index":"0.000005870892100855"},{"denom":"ASSET7","index":"0.000009195154067126"},{"denom":"ASSET8","index":"0.000012492245582088"},{"denom":"ASSET9","index":"0.000005313335607946"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000000860911540335"},{"denom":"ASSET1","index":"0.000007178593209511"},{"denom":"ASSET10","index":"0.000005001581264509"},{"denom":"ASSET11","index":"0.000006944753046495"},{"denom":"ASSET12","index":"0.000006253725385275"},{"denom":"ASSET13","index":"0.000002152029021603"},{"denom":"ASSET14","index":"0.000006487065889823"},{"denom":"ASSET15","index":"0.000004638329558286"},{"denom":"ASSET16","index":"0.000003233789604786"},{"denom":"ASSET17","index":"0.000002296430318850"},{"denom":"ASSET18","index":"0.000001093752386415"},{"denom":"ASSET2","index":"0.000002119051562716"},{"denom":"ASSET3","index":"0.000000619576500299"},{"denom":"ASSET4","index":"0.000005834012272169"},{"denom":"ASSET5","index":"0.000000481171104668"},{"denom":"ASSET6","index":"0.000001958161536025"},{"denom":"ASSET7","index":"0.000002998950124834"},{"denom":"ASSET8","index":"0.000003913325121242"},{"denom":"ASSET9","index":"0.000001690344597186"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000002357406510396"},{"denom":"ASSET1","index":"0.000020099972826550"},{"denom":"ASSET10","index":"0.000016611857270119"},{"denom":"ASSET11","index":"0.000020122040980663"},{"denom":"ASSET12","index":"0.000019473664705632"},{"denom":"ASSET13","index":"0.000006342954228467"},{"denom":"ASSET14","index":"0.000018379978414574"},{"denom":"ASSET15","index":"0.000014858739059306"},{"denom":"ASSET16","index":"0.000008878274052948"},{"denom":"ASSET17","index":"0.000007156982288871"},{"denom":"ASSET18","index":"0.000002845018303307"},{"denom":"ASSET2","index":"0.000006129987919866"},{"denom":"ASSET3","index":"0.000001678183905493"},{"denom":"ASSET4","index":"0.000016284739258605"},{"denom":"ASSET5","index":"0.000001308892339296"},{"denom":"ASSET6","index":"0.000005269046474537"},{"denom":"ASSET7","index":"0.000008337197620164"},{"denom":"ASSET8","index":"0.000011530009666752"},{"denom":"ASSET9","index":"0.000004871853664260"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001198976216272"},{"denom":"ASSET1","index":"0.000010001315625623"},{"denom":"ASSET10","index":"0.000006967712250892"},{"denom":"ASSET11","index":"0.000009674322112094"},{"denom":"ASSET12","index":"0.000008711677656379"},{"denom":"ASSET13","index":"0.000002997949876371"},{"denom":"ASSET14","index":"0.000009037652498526"},{"denom":"ASSET15","index":"0.000006461432574183"},{"denom":"ASSET16","index":"0.000004504564849919"},{"denom":"ASSET17","index":"0.000003199646809949"},{"denom":"ASSET18","index":"0.000001523932387037"},{"denom":"ASSET2","index":"0.000002952109664194"},{"denom":"ASSET3","index":"0.000000862814660308"},{"denom":"ASSET4","index":"0.000008126960283277"},{"denom":"ASSET5","index":"0.000000670285769165"},{"denom":"ASSET6","index":"0.000002728001960218"},{"denom":"ASSET7","index":"0.000004177571336390"},{"denom":"ASSET8","index":"0.000005451929234909"},{"denom":"ASSET9","index":"0.000002354149563130"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000002792091306062"},{"denom":"ASSET1","index":"0.000023760392481519"},{"denom":"ASSET10","index":"0.000019330735214415"},{"denom":"ASSET11","index":"0.000023705763948043"},{"denom":"ASSET12","index":"0.000022788595153270"},{"denom":"ASSET13","index":"0.000007460432475948"},{"denom":"ASSET14","index":"0.000021701401606991"},{"denom":"ASSET15","index":"0.000017344296121870"},{"denom":"ASSET16","index":"0.000010515175863945"},{"denom":"ASSET17","index":"0.000008375559402161"},{"denom":"ASSET18","index":"0.000003388923471278"},{"denom":"ASSET2","index":"0.000007222909907971"},{"denom":"ASSET3","index":"0.000001989926471838"},{"denom":"ASSET4","index":"0.000019255294602933"},{"denom":"ASSET5","index":"0.000001551437823125"},{"denom":"ASSET6","index":"0.000006253588147261"},{"denom":"ASSET7","index":"0.000009862028954195"},{"denom":"ASSET8","index":"0.000013562244421912"},{"denom":"ASSET9","index":"0.000005741841810541"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001507638919625"},{"denom":"ASSET1","index":"0.000012569401049902"},{"denom":"ASSET10","index":"0.000008757228353136"},{"denom":"ASSET11","index":"0.000012160184771718"},{"denom":"ASSET12","index":"0.000010949766096248"},{"denom":"ASSET13","index":"0.000003769097299062"},{"denom":"ASSET14","index":"0.000011358982374432"},{"denom":"ASSET15","index":"0.000008124020006893"},{"denom":"ASSET16","index":"0.000005660107258249"},{"denom":"ASSET17","index":"0.000004018934605743"},{"denom":"ASSET18","index":"0.000001912547658039"},{"denom":"ASSET2","index":"0.000003708791742277"},{"denom":"ASSET3","index":"0.000001085500022130"},{"denom":"ASSET4","index":"0.000010217484335287"},{"denom":"ASSET5","index":"0.000000839970255220"},{"denom":"ASSET6","index":"0.000003428801657204"},{"denom":"ASSET7","index":"0.000005250890980065"},{"denom":"ASSET8","index":"0.000006853295774638"},{"denom":"ASSET9","index":"0.000002959279822235"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003131246414749"},{"denom":"ASSET1","index":"0.000026589761836242"},{"denom":"ASSET10","index":"0.000021355242603721"},{"denom":"ASSET11","index":"0.000026458316408852"},{"denom":"ASSET12","index":"0.000025293988029420"},{"denom":"ASSET13","index":"0.000008316673174883"},{"denom":"ASSET14","index":"0.000024263343459355"},{"denom":"ASSET15","index":"0.000019213959771091"},{"denom":"ASSET16","index":"0.000011784585795875"},{"denom":"ASSET17","index":"0.000009292893547134"},{"denom":"ASSET18","index":"0.000003813004198036"},{"denom":"ASSET2","index":"0.000008060944762894"},{"denom":"ASSET3","index":"0.000002234070199415"},{"denom":"ASSET4","index":"0.000021557233504015"},{"denom":"ASSET5","index":"0.000001738116490695"},{"denom":"ASSET6","index":"0.000007021386599103"},{"denom":"ASSET7","index":"0.000011043212117572"},{"denom":"ASSET8","index":"0.000015117900391662"},{"denom":"ASSET9","index":"0.000006411442995536"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001538667310820"},{"denom":"ASSET1","index":"0.000012827917927858"},{"denom":"ASSET10","index":"0.000008937244372687"},{"denom":"ASSET11","index":"0.000012409488429871"},{"denom":"ASSET12","index":"0.000011174685151587"},{"denom":"ASSET13","index":"0.000003845530209513"},{"denom":"ASSET14","index":"0.000011592355937882"},{"denom":"ASSET15","index":"0.000008288166520415"},{"denom":"ASSET16","index":"0.000005778727600031"},{"denom":"ASSET17","index":"0.000004103871540546"},{"denom":"ASSET18","index":"0.000001954820673732"},{"denom":"ASSET2","index":"0.000003786730053405"},{"denom":"ASSET3","index":"0.000001107719069920"},{"denom":"ASSET4","index":"0.000010424698644316"},{"denom":"ASSET5","index":"0.000000859620346726"},{"denom":"ASSET6","index":"0.000003499178322240"},{"denom":"ASSET7","index":"0.000005359160034507"},{"denom":"ASSET8","index":"0.000006993045662639"},{"denom":"ASSET9","index":"0.000003020431244761"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003070496060295"},{"denom":"ASSET1","index":"0.000026054009108675"},{"denom":"ASSET10","index":"0.000020821706468932"},{"denom":"ASSET11","index":"0.000025897661631707"},{"denom":"ASSET12","index":"0.000024706407518076"},{"denom":"ASSET13","index":"0.000008135385272267"},{"denom":"ASSET14","index":"0.000023765921524780"},{"denom":"ASSET15","index":"0.000018749935123185"},{"denom":"ASSET16","index":"0.000011556337558875"},{"denom":"ASSET17","index":"0.000009079232430047"},{"denom":"ASSET18","index":"0.000003747682066764"},{"denom":"ASSET2","index":"0.000007892419371659"},{"denom":"ASSET3","index":"0.000002191201298955"},{"denom":"ASSET4","index":"0.000021122052487200"},{"denom":"ASSET5","index":"0.000001706992646915"},{"denom":"ASSET6","index":"0.000006888142834266"},{"denom":"ASSET7","index":"0.000010823268476718"},{"denom":"ASSET8","index":"0.000014789657857476"},{"denom":"ASSET9","index":"0.000006276911852268"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001679222100186"},{"denom":"ASSET1","index":"0.000013999028794594"},{"denom":"ASSET10","index":"0.000009753438641601"},{"denom":"ASSET11","index":"0.000013542280383343"},{"denom":"ASSET12","index":"0.000012194769233410"},{"denom":"ASSET13","index":"0.000004196505199295"},{"denom":"ASSET14","index":"0.000012650484277214"},{"denom":"ASSET15","index":"0.000009045065257184"},{"denom":"ASSET16","index":"0.000006306124840851"},{"denom":"ASSET17","index":"0.000004478614512126"},{"denom":"ASSET18","index":"0.000002133387092820"},{"denom":"ASSET2","index":"0.000004132436417626"},{"denom":"ASSET3","index":"0.000001208523228411"},{"denom":"ASSET4","index":"0.000011376342215965"},{"denom":"ASSET5","index":"0.000000938297641211"},{"denom":"ASSET6","index":"0.000003818809397684"},{"denom":"ASSET7","index":"0.000005848343062154"},{"denom":"ASSET8","index":"0.000007631418590690"},{"denom":"ASSET9","index":"0.000003295925469872"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003295755498274"},{"denom":"ASSET1","index":"0.000027960125957180"},{"denom":"ASSET10","index":"0.000022298091456525"},{"denom":"ASSET11","index":"0.000027779779629540"},{"denom":"ASSET12","index":"0.000026478335493542"},{"denom":"ASSET13","index":"0.000008724566942758"},{"denom":"ASSET14","index":"0.000025500389224880"},{"denom":"ASSET15","index":"0.000020088119547171"},{"denom":"ASSET16","index":"0.000012404652968467"},{"denom":"ASSET17","index":"0.000009730254100732"},{"denom":"ASSET18","index":"0.000004025857251145"},{"denom":"ASSET2","index":"0.000008465992991141"},{"denom":"ASSET3","index":"0.000002352288079447"},{"denom":"ASSET4","index":"0.000022667879187178"},{"denom":"ASSET5","index":"0.000001832649164275"},{"denom":"ASSET6","index":"0.000007396215489940"},{"denom":"ASSET7","index":"0.000011616026271508"},{"denom":"ASSET8","index":"0.000015861127767022"},{"denom":"ASSET9","index":"0.000006733269226830"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001488486853561"},{"denom":"ASSET1","index":"0.000012409943784184"},{"denom":"ASSET10","index":"0.000008645838046025"},{"denom":"ASSET11","index":"0.000012005445379346"},{"denom":"ASSET12","index":"0.000010810451131374"},{"denom":"ASSET13","index":"0.000003720376180879"},{"denom":"ASSET14","index":"0.000011214949536212"},{"denom":"ASSET15","index":"0.000008018487089665"},{"denom":"ASSET16","index":"0.000005590655707614"},{"denom":"ASSET17","index":"0.000003970139229188"},{"denom":"ASSET18","index":"0.000001891303352350"},{"denom":"ASSET2","index":"0.000003663191375205"},{"denom":"ASSET3","index":"0.000001071374153354"},{"denom":"ASSET4","index":"0.000010085549624159"},{"denom":"ASSET5","index":"0.000000831702541340"},{"denom":"ASSET6","index":"0.000003384835924059"},{"denom":"ASSET7","index":"0.000005184475396726"},{"denom":"ASSET8","index":"0.000006765467082995"},{"denom":"ASSET9","index":"0.000002921470807498"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003140601357292"},{"denom":"ASSET1","index":"0.000026678854887219"},{"denom":"ASSET10","index":"0.000021467437308134"},{"denom":"ASSET11","index":"0.000026557150856893"},{"denom":"ASSET12","index":"0.000025409189778577"},{"denom":"ASSET13","index":"0.000008348678217638"},{"denom":"ASSET14","index":"0.000024348515645151"},{"denom":"ASSET15","index":"0.000019305257093893"},{"denom":"ASSET16","index":"0.000011824039078448"},{"denom":"ASSET17","index":"0.000009337874135725"},{"denom":"ASSET18","index":"0.000003825021517438"},{"denom":"ASSET2","index":"0.000008092644314938"},{"denom":"ASSET3","index":"0.000002240059115813"},{"denom":"ASSET4","index":"0.000021626536887159"},{"denom":"ASSET5","index":"0.000001745574888449"},{"denom":"ASSET6","index":"0.000007040920669072"},{"denom":"ASSET7","index":"0.000011079696231301"},{"denom":"ASSET8","index":"0.000015176664815864"},{"denom":"ASSET9","index":"0.000006434669973810"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001385039568420"},{"denom":"ASSET1","index":"0.000011547928050470"},{"denom":"ASSET10","index":"0.000008045290512347"},{"denom":"ASSET11","index":"0.000011171268467624"},{"denom":"ASSET12","index":"0.000010059084660007"},{"denom":"ASSET13","index":"0.000003461116009305"},{"denom":"ASSET14","index":"0.000010435744242853"},{"denom":"ASSET15","index":"0.000007461023285412"},{"denom":"ASSET16","index":"0.000005202054396163"},{"denom":"ASSET17","index":"0.000003694427456948"},{"denom":"ASSET18","index":"0.000001759721935608"},{"denom":"ASSET2","index":"0.000003408719794369"},{"denom":"ASSET3","index":"0.000000996516691625"},{"denom":"ASSET4","index":"0.000009383865512804"},{"denom":"ASSET5","index":"0.000000774079930102"},{"denom":"ASSET6","index":"0.000003149704543173"},{"denom":"ASSET7","index":"0.000004824406205487"},{"denom":"ASSET8","index":"0.000006294466047200"},{"denom":"ASSET9","index":"0.000002718671529731"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000002978674281858"},{"denom":"ASSET1","index":"0.000025310372422717"},{"denom":"ASSET10","index":"0.000020411345436720"},{"denom":"ASSET11","index":"0.000025206262983954"},{"denom":"ASSET12","index":"0.000024139567910062"},{"denom":"ASSET13","index":"0.000007924745788344"},{"denom":"ASSET14","index":"0.000023102636423037"},{"denom":"ASSET15","index":"0.000018346974201526"},{"denom":"ASSET16","index":"0.000011213830154915"},{"denom":"ASSET17","index":"0.000008871351161454"},{"denom":"ASSET18","index":"0.000003625142276595"},{"denom":"ASSET2","index":"0.000007680838181843"},{"denom":"ASSET3","index":"0.000002123796319816"},{"denom":"ASSET4","index":"0.000020514843977806"},{"denom":"ASSET5","index":"0.000001655567492872"},{"denom":"ASSET6","index":"0.000006676037052519"},{"denom":"ASSET7","index":"0.000010510115662832"},{"denom":"ASSET8","index":"0.000014407133239162"},{"denom":"ASSET9","index":"0.000006107008804836"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001563741356289"},{"denom":"ASSET1","index":"0.000013036816883138"},{"denom":"ASSET10","index":"0.000009082880828100"},{"denom":"ASSET11","index":"0.000012611783735587"},{"denom":"ASSET12","index":"0.000011356772924286"},{"denom":"ASSET13","index":"0.000003908472310400"},{"denom":"ASSET14","index":"0.000011781101207579"},{"denom":"ASSET15","index":"0.000008423480314776"},{"denom":"ASSET16","index":"0.000005872928997340"},{"denom":"ASSET17","index":"0.000004170681814362"},{"denom":"ASSET18","index":"0.000001986659911066"},{"denom":"ASSET2","index":"0.000003848558848473"},{"denom":"ASSET3","index":"0.000001125668219966"},{"denom":"ASSET4","index":"0.000010594814661429"},{"denom":"ASSET5","index":"0.000000873679247744"},{"denom":"ASSET6","index":"0.000003556392613548"},{"denom":"ASSET7","index":"0.000005446486121273"},{"denom":"ASSET8","index":"0.000007106793880903"},{"denom":"ASSET9","index":"0.000003069683843425"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003115193601728"},{"denom":"ASSET1","index":"0.000026433576226141"},{"denom":"ASSET10","index":"0.000021120836274624"},{"denom":"ASSET11","index":"0.000026274076149270"},{"denom":"ASSET12","index":"0.000025063206789151"},{"denom":"ASSET13","index":"0.000008253838888439"},{"denom":"ASSET14","index":"0.000024111622086359"},{"denom":"ASSET15","index":"0.000019020166052921"},{"denom":"ASSET16","index":"0.000011725264187843"},{"denom":"ASSET17","index":"0.000009210335248597"},{"denom":"ASSET18","index":"0.000003802618681808"},{"denom":"ASSET2","index":"0.000008007094168018"},{"denom":"ASSET3","index":"0.000002223045227271"},{"denom":"ASSET4","index":"0.000021430343290469"},{"denom":"ASSET5","index":"0.000001731871182363"},{"denom":"ASSET6","index":"0.000006989160352022"},{"denom":"ASSET7","index":"0.000010981276608696"},{"denom":"ASSET8","index":"0.000015004007461071"},{"denom":"ASSET9","index":"0.000006368316319391"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001688791638136"},{"denom":"ASSET1","index":"0.000014080258863939"},{"denom":"ASSET10","index":"0.000009809129194434"},{"denom":"ASSET11","index":"0.000013620783833550"},{"denom":"ASSET12","index":"0.000012265553395360"},{"denom":"ASSET13","index":"0.000004220322334414"},{"denom":"ASSET14","index":"0.000012723923918464"},{"denom":"ASSET15","index":"0.000009096721995874"},{"denom":"ASSET16","index":"0.000006342080828109"},{"denom":"ASSET17","index":"0.000004504180706554"},{"denom":"ASSET18","index":"0.000002144953146672"},{"denom":"ASSET2","index":"0.000004156260911908"},{"denom":"ASSET3","index":"0.000001214958013048"},{"denom":"ASSET4","index":"0.000011442695468341"},{"denom":"ASSET5","index":"0.000000943249221039"},{"denom":"ASSET6","index":"0.000003840371828516"},{"denom":"ASSET7","index":"0.000005881501290436"},{"denom":"ASSET8","index":"0.000007675221120608"},{"denom":"ASSET9","index":"0.000003314626361051"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003342989987813"},{"denom":"ASSET1","index":"0.000028363859076608"},{"denom":"ASSET10","index":"0.000022643596968544"},{"denom":"ASSET11","index":"0.000028187678804911"},{"denom":"ASSET12","index":"0.000026879157824253"},{"denom":"ASSET13","index":"0.000008853292918908"},{"denom":"ASSET14","index":"0.000025870927331183"},{"denom":"ASSET15","index":"0.000020395094195043"},{"denom":"ASSET16","index":"0.000012581780801373"},{"denom":"ASSET17","index":"0.000009877287329505"},{"denom":"ASSET18","index":"0.000004080927248291"},{"denom":"ASSET2","index":"0.000008590241612281"},{"denom":"ASSET3","index":"0.000002384972961476"},{"denom":"ASSET4","index":"0.000022995501297970"},{"denom":"ASSET5","index":"0.000001858071035633"},{"denom":"ASSET6","index":"0.000007500418590266"},{"denom":"ASSET7","index":"0.000011782462758670"},{"denom":"ASSET8","index":"0.000016095075530395"},{"denom":"ASSET9","index":"0.000006831506736707"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001571496317510"},{"denom":"ASSET1","index":"0.000013101483241955"},{"denom":"ASSET10","index":"0.000009127906315185"},{"denom":"ASSET11","index":"0.000012674221268720"},{"denom":"ASSET12","index":"0.000011413128948859"},{"denom":"ASSET13","index":"0.000003927726401627"},{"denom":"ASSET14","index":"0.000011839579408375"},{"denom":"ASSET15","index":"0.000008464899606481"},{"denom":"ASSET16","index":"0.000005901733523932"},{"denom":"ASSET17","index":"0.000004191468360414"},{"denom":"ASSET18","index":"0.000001996729506447"},{"denom":"ASSET2","index":"0.000003867268629536"},{"denom":"ASSET3","index":"0.000001131250124766"},{"denom":"ASSET4","index":"0.000010647059997798"},{"denom":"ASSET5","index":"0.000000878057844331"},{"denom":"ASSET6","index":"0.000003573906419993"},{"denom":"ASSET7","index":"0.000005473254280118"},{"denom":"ASSET8","index":"0.000007142132243950"},{"denom":"ASSET9","index":"0.000003084563647228"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003113134051861"},{"denom":"ASSET1","index":"0.000026415094552464"},{"denom":"ASSET10","index":"0.000021090707465492"},{"denom":"ASSET11","index":"0.000026251548228726"},{"denom":"ASSET12","index":"0.000025034408517114"},{"denom":"ASSET13","index":"0.000008245703890405"},{"denom":"ASSET14","index":"0.000024093200316600"},{"denom":"ASSET15","index":"0.000018995578271326"},{"denom":"ASSET16","index":"0.000011717396138812"},{"denom":"ASSET17","index":"0.000009199501798709"},{"denom":"ASSET18","index":"0.000003801350346824"},{"denom":"ASSET2","index":"0.000007999912620195"},{"denom":"ASSET3","index":"0.000002221641081089"},{"denom":"ASSET4","index":"0.000021415082747190"},{"denom":"ASSET5","index":"0.000001730738444371"},{"denom":"ASSET6","index":"0.000006985361363625"},{"denom":"ASSET7","index":"0.000010973556930807"},{"denom":"ASSET8","index":"0.000014990236718633"},{"denom":"ASSET9","index":"0.000006362695679170"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001486431692511"},{"denom":"ASSET1","index":"0.000012397696164316"},{"denom":"ASSET10","index":"0.000008637613387551"},{"denom":"ASSET11","index":"0.000011993186507636"},{"denom":"ASSET12","index":"0.000010799842650204"},{"denom":"ASSET13","index":"0.000003716482933529"},{"denom":"ASSET14","index":"0.000011203544902380"},{"denom":"ASSET15","index":"0.000008010260087670"},{"denom":"ASSET16","index":"0.000005584816956599"},{"denom":"ASSET17","index":"0.000003965970925374"},{"denom":"ASSET18","index":"0.000001889326540182"},{"denom":"ASSET2","index":"0.000003659157213720"},{"denom":"ASSET3","index":"0.000001070618372770"},{"denom":"ASSET4","index":"0.000010074793405297"},{"denom":"ASSET5","index":"0.000000830819234978"},{"denom":"ASSET6","index":"0.000003381410064224"},{"denom":"ASSET7","index":"0.000005179499895414"},{"denom":"ASSET8","index":"0.000006757975701421"},{"denom":"ASSET9","index":"0.000002918767283230"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003023961266495"},{"denom":"ASSET1","index":"0.000025674667559579"},{"denom":"ASSET10","index":"0.000020567435721356"},{"denom":"ASSET11","index":"0.000025532965784321"},{"denom":"ASSET12","index":"0.000024383768132692"},{"denom":"ASSET13","index":"0.000008022807352722"},{"denom":"ASSET14","index":"0.000023423766496233"},{"denom":"ASSET15","index":"0.000018512228577533"},{"denom":"ASSET16","index":"0.000011384524743973"},{"denom":"ASSET17","index":"0.000008960010456843"},{"denom":"ASSET18","index":"0.000003688974211121"},{"denom":"ASSET2","index":"0.000007780619396113"},{"denom":"ASSET3","index":"0.000002157718690670"},{"denom":"ASSET4","index":"0.000020813357966886"},{"denom":"ASSET5","index":"0.000001681323481152"},{"denom":"ASSET6","index":"0.000006783427048921"},{"denom":"ASSET7","index":"0.000010664665966441"},{"denom":"ASSET8","index":"0.000014584270248941"},{"denom":"ASSET9","index":"0.000006187655866052"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001789525520762"},{"denom":"ASSET1","index":"0.000014923544215299"},{"denom":"ASSET10","index":"0.000010397506905977"},{"denom":"ASSET11","index":"0.000014436898494348"},{"denom":"ASSET12","index":"0.000013000171779235"},{"denom":"ASSET13","index":"0.000004474200642702"},{"denom":"ASSET14","index":"0.000013486043818595"},{"denom":"ASSET15","index":"0.000009642393672833"},{"denom":"ASSET16","index":"0.000006722519347127"},{"denom":"ASSET17","index":"0.000004774389100140"},{"denom":"ASSET18","index":"0.000002273850196939"},{"denom":"ASSET2","index":"0.000004405342981073"},{"denom":"ASSET3","index":"0.000001288179849576"},{"denom":"ASSET4","index":"0.000012128232625798"},{"denom":"ASSET5","index":"0.000001000370297599"},{"denom":"ASSET6","index":"0.000004071112533615"},{"denom":"ASSET7","index":"0.000006234326262993"},{"denom":"ASSET8","index":"0.000008135261932908"},{"denom":"ASSET9","index":"0.000003514061787852"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003488279034648"},{"denom":"ASSET1","index":"0.000029592208548275"},{"denom":"ASSET10","index":"0.000023577626976592"},{"denom":"ASSET11","index":"0.000029395914355993"},{"denom":"ASSET12","index":"0.000028007798530295"},{"denom":"ASSET13","index":"0.000009231498766276"},{"denom":"ASSET14","index":"0.000026986732997785"},{"denom":"ASSET15","index":"0.000021244630549189"},{"denom":"ASSET16","index":"0.000013129960095172"},{"denom":"ASSET17","index":"0.000010292381952670"},{"denom":"ASSET18","index":"0.000004261641431672"},{"denom":"ASSET2","index":"0.000008958343988321"},{"denom":"ASSET3","index":"0.000002489657102823"},{"denom":"ASSET4","index":"0.000023991917258738"},{"denom":"ASSET5","index":"0.000001939742890351"},{"denom":"ASSET6","index":"0.000007829259808535"},{"denom":"ASSET7","index":"0.000012294264842111"},{"denom":"ASSET8","index":"0.000016782088113605"},{"denom":"ASSET9","index":"0.000007125719490615"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001504632489095"},{"denom":"ASSET1","index":"0.000012543084148708"},{"denom":"ASSET10","index":"0.000008738830231438"},{"denom":"ASSET11","index":"0.000012134501498699"},{"denom":"ASSET12","index":"0.000010926897843985"},{"denom":"ASSET13","index":"0.000003760573206331"},{"denom":"ASSET14","index":"0.000011335480493994"},{"denom":"ASSET15","index":"0.000008104451906425"},{"denom":"ASSET16","index":"0.000005650267962622"},{"denom":"ASSET17","index":"0.000004012577307899"},{"denom":"ASSET18","index":"0.000001911199106291"},{"denom":"ASSET2","index":"0.000003702780265705"},{"denom":"ASSET3","index":"0.000001083281631273"},{"denom":"ASSET4","index":"0.000010193733911157"},{"denom":"ASSET5","index":"0.000000840685682831"},{"denom":"ASSET6","index":"0.000003421207682886"},{"denom":"ASSET7","index":"0.000005240341290738"},{"denom":"ASSET8","index":"0.000006837711289210"},{"denom":"ASSET9","index":"0.000002953488070376"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003015423229771"},{"denom":"ASSET1","index":"0.000025588098096649"},{"denom":"ASSET10","index":"0.000020460473772645"},{"denom":"ASSET11","index":"0.000025438043766359"},{"denom":"ASSET12","index":"0.000024273358860204"},{"denom":"ASSET13","index":"0.000007991752317173"},{"denom":"ASSET14","index":"0.000023342063892494"},{"denom":"ASSET15","index":"0.000018422728556898"},{"denom":"ASSET16","index":"0.000011348811151398"},{"denom":"ASSET17","index":"0.000008919790197810"},{"denom":"ASSET18","index":"0.000003679502338318"},{"denom":"ASSET2","index":"0.000007752126098631"},{"denom":"ASSET3","index":"0.000002151933074669"},{"denom":"ASSET4","index":"0.000020744635257959"},{"denom":"ASSET5","index":"0.000001676458472807"},{"denom":"ASSET6","index":"0.000006763790928604"},{"denom":"ASSET7","index":"0.000010629564741383"},{"denom":"ASSET8","index":"0.000014527278079751"},{"denom":"ASSET9","index":"0.000006165283413682"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001790270882045"},{"denom":"ASSET1","index":"0.000014924962381265"},{"denom":"ASSET10","index":"0.000010398687848362"},{"denom":"ASSET11","index":"0.000014438353512768"},{"denom":"ASSET12","index":"0.000013001639266884"},{"denom":"ASSET13","index":"0.000004474427888377"},{"denom":"ASSET14","index":"0.000013487623477013"},{"denom":"ASSET15","index":"0.000009643475881721"},{"denom":"ASSET16","index":"0.000006723198012370"},{"denom":"ASSET17","index":"0.000004774888563278"},{"denom":"ASSET18","index":"0.000002274381117071"},{"denom":"ASSET2","index":"0.000004405715467922"},{"denom":"ASSET3","index":"0.000001288670212721"},{"denom":"ASSET4","index":"0.000012129616185469"},{"denom":"ASSET5","index":"0.000001000078046809"},{"denom":"ASSET6","index":"0.000004071523241162"},{"denom":"ASSET7","index":"0.000006235339827137"},{"denom":"ASSET8","index":"0.000008136175240279"},{"denom":"ASSET9","index":"0.000003514327977106"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003452635056994"},{"denom":"ASSET1","index":"0.000029280443630050"},{"denom":"ASSET10","index":"0.000023297581891953"},{"denom":"ASSET11","index":"0.000029078046899152"},{"denom":"ASSET12","index":"0.000027688393753974"},{"denom":"ASSET13","index":"0.000009130247174920"},{"denom":"ASSET14","index":"0.000026700258191979"},{"denom":"ASSET15","index":"0.000020998119885469"},{"denom":"ASSET16","index":"0.000012993858989816"},{"denom":"ASSET17","index":"0.000010174919177657"},{"denom":"ASSET18","index":"0.000004220034662939"},{"denom":"ASSET2","index":"0.000008861755768133"},{"denom":"ASSET3","index":"0.000002464736347038"},{"denom":"ASSET4","index":"0.000023740327943060"},{"denom":"ASSET5","index":"0.000001919615043943"},{"denom":"ASSET6","index":"0.000007749671229698"},{"denom":"ASSET7","index":"0.000012165961282812"},{"denom":"ASSET8","index":"0.000016598407083950"},{"denom":"ASSET9","index":"0.000007048985746822"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001835550145227"},{"denom":"ASSET1","index":"0.000015324623289081"},{"denom":"ASSET10","index":"0.000010676536631006"},{"denom":"ASSET11","index":"0.000014825027987456"},{"denom":"ASSET12","index":"0.000013348446318211"},{"denom":"ASSET13","index":"0.000004592576069005"},{"denom":"ASSET14","index":"0.000013848041619836"},{"denom":"ASSET15","index":"0.000009899388384035"},{"denom":"ASSET16","index":"0.000006901816574290"},{"denom":"ASSET17","index":"0.000004903435367793"},{"denom":"ASSET18","index":"0.000002335145446851"},{"denom":"ASSET2","index":"0.000004522262656184"},{"denom":"ASSET3","index":"0.000001321152019851"},{"denom":"ASSET4","index":"0.000012452875481226"},{"denom":"ASSET5","index":"0.000001025095544814"},{"denom":"ASSET6","index":"0.000004178097003954"},{"denom":"ASSET7","index":"0.000006402221272666"},{"denom":"ASSET8","index":"0.000008352493301969"},{"denom":"ASSET9","index":"0.000003608188289508"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003336473275634"},{"denom":"ASSET1","index":"0.000028284037775138"},{"denom":"ASSET10","index":"0.000022321061137243"},{"denom":"ASSET11","index":"0.000028041053149272"},{"denom":"ASSET12","index":"0.000026607048139233"},{"denom":"ASSET13","index":"0.000008795774551756"},{"denom":"ASSET14","index":"0.000025776026947277"},{"denom":"ASSET15","index":"0.000020150006768141"},{"denom":"ASSET16","index":"0.000012562977954735"},{"denom":"ASSET17","index":"0.000009778271060189"},{"denom":"ASSET18","index":"0.000004091528532498"},{"denom":"ASSET2","index":"0.000008544798017437"},{"denom":"ASSET3","index":"0.000002382883485470"},{"denom":"ASSET4","index":"0.000022934405116164"},{"denom":"ASSET5","index":"0.000001855148612588"},{"denom":"ASSET6","index":"0.000007498692848558"},{"denom":"ASSET7","index":"0.000011756140274513"},{"denom":"ASSET8","index":"0.000015991743254740"},{"denom":"ASSET9","index":"0.000006799136288961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001764742979644"},{"denom":"ASSET1","index":"0.000014715413525055"},{"denom":"ASSET10","index":"0.000010252344388411"},{"denom":"ASSET11","index":"0.000014235671854472"},{"denom":"ASSET12","index":"0.000012819403806098"},{"denom":"ASSET13","index":"0.000004411268809023"},{"denom":"ASSET14","index":"0.000013298556836595"},{"denom":"ASSET15","index":"0.000009507714678855"},{"denom":"ASSET16","index":"0.000006629264655353"},{"denom":"ASSET17","index":"0.000004707943412672"},{"denom":"ASSET18","index":"0.000002242718729968"},{"denom":"ASSET2","index":"0.000004343575199063"},{"denom":"ASSET3","index":"0.000001270873946982"},{"denom":"ASSET4","index":"0.000011958811999481"},{"denom":"ASSET5","index":"0.000000985972145064"},{"denom":"ASSET6","index":"0.000004013936750564"},{"denom":"ASSET7","index":"0.000006147757064510"},{"denom":"ASSET8","index":"0.000008021987100262"},{"denom":"ASSET9","index":"0.000003464735549761"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003371223111771"},{"denom":"ASSET1","index":"0.000028586584995448"},{"denom":"ASSET10","index":"0.000022716281614844"},{"denom":"ASSET11","index":"0.000028381809067472"},{"denom":"ASSET12","index":"0.000027011101270499"},{"denom":"ASSET13","index":"0.000008910504058238"},{"denom":"ASSET14","index":"0.000026065694327630"},{"denom":"ASSET15","index":"0.000020479714095343"},{"denom":"ASSET16","index":"0.000012688778091614"},{"denom":"ASSET17","index":"0.000009925875585388"},{"denom":"ASSET18","index":"0.000004122881217339"},{"denom":"ASSET2","index":"0.000008649339803247"},{"denom":"ASSET3","index":"0.000002407313457267"},{"denom":"ASSET4","index":"0.000023177863483423"},{"denom":"ASSET5","index":"0.000001874397047373"},{"denom":"ASSET6","index":"0.000007568278053481"},{"denom":"ASSET7","index":"0.000011878402488901"},{"denom":"ASSET8","index":"0.000016198768839280"},{"denom":"ASSET9","index":"0.000006880150170591"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001519402004985"},{"denom":"ASSET1","index":"0.000012669186594649"},{"denom":"ASSET10","index":"0.000008826466179926"},{"denom":"ASSET11","index":"0.000012255973562605"},{"denom":"ASSET12","index":"0.000011036700348729"},{"denom":"ASSET13","index":"0.000003798237040326"},{"denom":"ASSET14","index":"0.000011448841492233"},{"denom":"ASSET15","index":"0.000008185476833202"},{"denom":"ASSET16","index":"0.000005707270529482"},{"denom":"ASSET17","index":"0.000004053346512768"},{"denom":"ASSET18","index":"0.000001930471259949"},{"denom":"ASSET2","index":"0.000003739819114914"},{"denom":"ASSET3","index":"0.000001093862254735"},{"denom":"ASSET4","index":"0.000010296025367816"},{"denom":"ASSET5","index":"0.000000848935723420"},{"denom":"ASSET6","index":"0.000003455768651901"},{"denom":"ASSET7","index":"0.000005292985608899"},{"denom":"ASSET8","index":"0.000006906177861104"},{"denom":"ASSET9","index":"0.000002983065805906"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003090388166914"},{"denom":"ASSET1","index":"0.000026235396530584"},{"denom":"ASSET10","index":"0.000021016328726441"},{"denom":"ASSET11","index":"0.000026091077525301"},{"denom":"ASSET12","index":"0.000024916432469284"},{"denom":"ASSET13","index":"0.000008198423394567"},{"denom":"ASSET14","index":"0.000023935350029219"},{"denom":"ASSET15","index":"0.000018916111125702"},{"denom":"ASSET16","index":"0.000011633439861257"},{"denom":"ASSET17","index":"0.000009156707623184"},{"denom":"ASSET18","index":"0.000003769226369030"},{"denom":"ASSET2","index":"0.000007950992094695"},{"denom":"ASSET3","index":"0.000002205065882760"},{"denom":"ASSET4","index":"0.000021268551776440"},{"denom":"ASSET5","index":"0.000001717872208784"},{"denom":"ASSET6","index":"0.000006931889619894"},{"denom":"ASSET7","index":"0.000010897757198785"},{"denom":"ASSET8","index":"0.000014903243728132"},{"denom":"ASSET9","index":"0.000006323427167640"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001518878942956"},{"denom":"ASSET1","index":"0.000012665267621292"},{"denom":"ASSET10","index":"0.000008823986077449"},{"denom":"ASSET11","index":"0.000012252067733139"},{"denom":"ASSET12","index":"0.000011032961258059"},{"denom":"ASSET13","index":"0.000003796959064490"},{"denom":"ASSET14","index":"0.000011445207974612"},{"denom":"ASSET15","index":"0.000008182978177143"},{"denom":"ASSET16","index":"0.000005705208605625"},{"denom":"ASSET17","index":"0.000004051932467214"},{"denom":"ASSET18","index":"0.000001930172487911"},{"denom":"ASSET2","index":"0.000003738815596953"},{"denom":"ASSET3","index":"0.000001093764409816"},{"denom":"ASSET4","index":"0.000010292823511460"},{"denom":"ASSET5","index":"0.000000848799308881"},{"denom":"ASSET6","index":"0.000003454770460461"},{"denom":"ASSET7","index":"0.000005291055545873"},{"denom":"ASSET8","index":"0.000006904298477127"},{"denom":"ASSET9","index":"0.000002981997347372"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003032310940473"},{"denom":"ASSET1","index":"0.000025733484746235"},{"denom":"ASSET10","index":"0.000020566326171769"},{"denom":"ASSET11","index":"0.000025579130700492"},{"denom":"ASSET12","index":"0.000024402998631681"},{"denom":"ASSET13","index":"0.000008035434808363"},{"denom":"ASSET14","index":"0.000023473377840860"},{"denom":"ASSET15","index":"0.000018519821992016"},{"denom":"ASSET16","index":"0.000011413808805814"},{"denom":"ASSET17","index":"0.000008967671528488"},{"denom":"ASSET18","index":"0.000003701450923042"},{"denom":"ASSET2","index":"0.000007795399667781"},{"denom":"ASSET3","index":"0.000002164126947351"},{"denom":"ASSET4","index":"0.000020862528644023"},{"denom":"ASSET5","index":"0.000001685967393794"},{"denom":"ASSET6","index":"0.000006803442800114"},{"denom":"ASSET7","index":"0.000010689840259007"},{"denom":"ASSET8","index":"0.000014607710652032"},{"denom":"ASSET9","index":"0.000006199747658625"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001387661284101"},{"denom":"ASSET1","index":"0.000011573014587468"},{"denom":"ASSET10","index":"0.000008062929395432"},{"denom":"ASSET11","index":"0.000011195232526081"},{"denom":"ASSET12","index":"0.000010081345808669"},{"denom":"ASSET13","index":"0.000003469153210252"},{"denom":"ASSET14","index":"0.000010458456853962"},{"denom":"ASSET15","index":"0.000007477132344649"},{"denom":"ASSET16","index":"0.000005213124040705"},{"denom":"ASSET17","index":"0.000003702666811251"},{"denom":"ASSET18","index":"0.000001763430297203"},{"denom":"ASSET2","index":"0.000003416142938760"},{"denom":"ASSET3","index":"0.000000999142965196"},{"denom":"ASSET4","index":"0.000009404961585085"},{"denom":"ASSET5","index":"0.000000775694605619"},{"denom":"ASSET6","index":"0.000003156459710063"},{"denom":"ASSET7","index":"0.000004834670963223"},{"denom":"ASSET8","index":"0.000006308893323556"},{"denom":"ASSET9","index":"0.000002724996361089"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000002847838387483"},{"denom":"ASSET1","index":"0.000024182680336096"},{"denom":"ASSET10","index":"0.000019393227963423"},{"denom":"ASSET11","index":"0.000024054653395269"},{"denom":"ASSET12","index":"0.000022982316432831"},{"denom":"ASSET13","index":"0.000007558836235579"},{"denom":"ASSET14","index":"0.000022064079622497"},{"denom":"ASSET15","index":"0.000017450899901336"},{"denom":"ASSET16","index":"0.000010721434414440"},{"denom":"ASSET17","index":"0.000008446187739031"},{"denom":"ASSET18","index":"0.000003472449339717"},{"denom":"ASSET2","index":"0.000007330038539196"},{"denom":"ASSET3","index":"0.000002031951160271"},{"denom":"ASSET4","index":"0.000019603371773062"},{"denom":"ASSET5","index":"0.000001583403578691"},{"denom":"ASSET6","index":"0.000006387295602350"},{"denom":"ASSET7","index":"0.000010043914419286"},{"denom":"ASSET8","index":"0.000013741733556815"},{"denom":"ASSET9","index":"0.000005829813216311"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001740203165372"},{"denom":"ASSET1","index":"0.000014506985633466"},{"denom":"ASSET10","index":"0.000010106727386233"},{"denom":"ASSET11","index":"0.000014033828203465"},{"denom":"ASSET12","index":"0.000012637643303754"},{"denom":"ASSET13","index":"0.000004348390877948"},{"denom":"ASSET14","index":"0.000013109742216014"},{"denom":"ASSET15","index":"0.000009373174592071"},{"denom":"ASSET16","index":"0.000006535288529808"},{"denom":"ASSET17","index":"0.000004640541774324"},{"denom":"ASSET18","index":"0.000002210185042151"},{"denom":"ASSET2","index":"0.000004281704260297"},{"denom":"ASSET3","index":"0.000001252226487004"},{"denom":"ASSET4","index":"0.000011789770593618"},{"denom":"ASSET5","index":"0.000000971719285773"},{"denom":"ASSET6","index":"0.000003956739313965"},{"denom":"ASSET7","index":"0.000006060014064326"},{"denom":"ASSET8","index":"0.000007908186039228"},{"denom":"ASSET9","index":"0.000003415836748573"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003351161845380"},{"denom":"ASSET1","index":"0.000028416485386018"},{"denom":"ASSET10","index":"0.000022605276372189"},{"denom":"ASSET11","index":"0.000028218825237526"},{"denom":"ASSET12","index":"0.000026868556551399"},{"denom":"ASSET13","index":"0.000008859853422879"},{"denom":"ASSET14","index":"0.000025912194276628"},{"denom":"ASSET15","index":"0.000020375555431981"},{"denom":"ASSET16","index":"0.000012611404420708"},{"denom":"ASSET17","index":"0.000009873044520717"},{"denom":"ASSET18","index":"0.000004095473642305"},{"denom":"ASSET2","index":"0.000008599384819082"},{"denom":"ASSET3","index":"0.000002391571176633"},{"denom":"ASSET4","index":"0.000023040021162794"},{"denom":"ASSET5","index":"0.000001862805125681"},{"denom":"ASSET6","index":"0.000007520693553142"},{"denom":"ASSET7","index":"0.000011806544930596"},{"denom":"ASSET8","index":"0.000016107343127742"},{"denom":"ASSET9","index":"0.000006840485865179"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001711866379191"},{"denom":"ASSET1","index":"0.000014286095556473"},{"denom":"ASSET10","index":"0.000009953932372868"},{"denom":"ASSET11","index":"0.000013820467901333"},{"denom":"ASSET12","index":"0.000012444127332464"},{"denom":"ASSET13","index":"0.000004281948436482"},{"denom":"ASSET14","index":"0.000012909754987604"},{"denom":"ASSET15","index":"0.000009230383516596"},{"denom":"ASSET16","index":"0.000006434335097252"},{"denom":"ASSET17","index":"0.000004569541988186"},{"denom":"ASSET18","index":"0.000002177494034331"},{"denom":"ASSET2","index":"0.000004215756269820"},{"denom":"ASSET3","index":"0.000001232543793017"},{"denom":"ASSET4","index":"0.000011608736539419"},{"denom":"ASSET5","index":"0.000000956362683841"},{"denom":"ASSET6","index":"0.000003896207879038"},{"denom":"ASSET7","index":"0.000005968707442112"},{"denom":"ASSET8","index":"0.000007787850781065"},{"denom":"ASSET9","index":"0.000003362105568731"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003408995344605"},{"denom":"ASSET1","index":"0.000028940875589883"},{"denom":"ASSET10","index":"0.000023121939135123"},{"denom":"ASSET11","index":"0.000028765460883304"},{"denom":"ASSET12","index":"0.000027437813762181"},{"denom":"ASSET13","index":"0.000009035078182388"},{"denom":"ASSET14","index":"0.000026397840013038"},{"denom":"ASSET15","index":"0.000020822021063845"},{"denom":"ASSET16","index":"0.000012835900360827"},{"denom":"ASSET17","index":"0.000010082289518918"},{"denom":"ASSET18","index":"0.000004163537456367"},{"denom":"ASSET2","index":"0.000008764373535196"},{"denom":"ASSET3","index":"0.000002432999591430"},{"denom":"ASSET4","index":"0.000023461370966582"},{"denom":"ASSET5","index":"0.000001895172356369"},{"denom":"ASSET6","index":"0.000007651446569151"},{"denom":"ASSET7","index":"0.000012022926111771"},{"denom":"ASSET8","index":"0.000016426068411072"},{"denom":"ASSET9","index":"0.000006969965423669"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001459800105667"},{"denom":"ASSET1","index":"0.000012176396665923"},{"denom":"ASSET10","index":"0.000008484162206626"},{"denom":"ASSET11","index":"0.000011779823335110"},{"denom":"ASSET12","index":"0.000010607197020722"},{"denom":"ASSET13","index":"0.000003650070053435"},{"denom":"ASSET14","index":"0.000011003770351536"},{"denom":"ASSET15","index":"0.000007867650218206"},{"denom":"ASSET16","index":"0.000005484791497715"},{"denom":"ASSET17","index":"0.000003895079438851"},{"denom":"ASSET18","index":"0.000001855233857943"},{"denom":"ASSET2","index":"0.000003594230705131"},{"denom":"ASSET3","index":"0.000001050691410948"},{"denom":"ASSET4","index":"0.000009896100013746"},{"denom":"ASSET5","index":"0.000000815938232363"},{"denom":"ASSET6","index":"0.000003321871434831"},{"denom":"ASSET7","index":"0.000005087078588365"},{"denom":"ASSET8","index":"0.000006638044976977"},{"denom":"ASSET9","index":"0.000002867179598640"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000002975317591563"},{"denom":"ASSET1","index":"0.000025265738469637"},{"denom":"ASSET10","index":"0.000020245724387946"},{"denom":"ASSET11","index":"0.000025128558675417"},{"denom":"ASSET12","index":"0.000023998925764885"},{"denom":"ASSET13","index":"0.000007895668684136"},{"denom":"ASSET14","index":"0.000023051238668493"},{"denom":"ASSET15","index":"0.000018221178423268"},{"denom":"ASSET16","index":"0.000011202197653725"},{"denom":"ASSET17","index":"0.000008818540737002"},{"denom":"ASSET18","index":"0.000003629428323701"},{"denom":"ASSET2","index":"0.000007657107369447"},{"denom":"ASSET3","index":"0.000002122660280404"},{"denom":"ASSET4","index":"0.000020482509156357"},{"denom":"ASSET5","index":"0.000001654309607539"},{"denom":"ASSET6","index":"0.000006675356935536"},{"denom":"ASSET7","index":"0.000010494215679887"},{"denom":"ASSET8","index":"0.000014353927855523"},{"denom":"ASSET9","index":"0.000006089535217587"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001617402557586"},{"denom":"ASSET1","index":"0.000013485147451276"},{"denom":"ASSET10","index":"0.000009395521488362"},{"denom":"ASSET11","index":"0.000013045402724081"},{"denom":"ASSET12","index":"0.000011747619504798"},{"denom":"ASSET13","index":"0.000004042433845849"},{"denom":"ASSET14","index":"0.000012186291683878"},{"denom":"ASSET15","index":"0.000008713380887153"},{"denom":"ASSET16","index":"0.000006074912523982"},{"denom":"ASSET17","index":"0.000004313788518972"},{"denom":"ASSET18","index":"0.000002055002188551"},{"denom":"ASSET2","index":"0.000003980226055173"},{"denom":"ASSET3","index":"0.000001163714704894"},{"denom":"ASSET4","index":"0.000010959296640193"},{"denom":"ASSET5","index":"0.000000903085512923"},{"denom":"ASSET6","index":"0.000003677767486712"},{"denom":"ASSET7","index":"0.000005633022700557"},{"denom":"ASSET8","index":"0.000007351244780963"},{"denom":"ASSET9","index":"0.000003174742420725"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003091273620954"},{"denom":"ASSET1","index":"0.000026212594205506"},{"denom":"ASSET10","index":"0.000020831747389799"},{"denom":"ASSET11","index":"0.000026024829344923"},{"denom":"ASSET12","index":"0.000024768925461013"},{"denom":"ASSET13","index":"0.000008170539761157"},{"denom":"ASSET14","index":"0.000023900540063840"},{"denom":"ASSET15","index":"0.000018780610027247"},{"denom":"ASSET16","index":"0.000011634658240098"},{"denom":"ASSET17","index":"0.000009101405984603"},{"denom":"ASSET18","index":"0.000003780149264156"},{"denom":"ASSET2","index":"0.000007930960667726"},{"denom":"ASSET3","index":"0.000002206123035767"},{"denom":"ASSET4","index":"0.000021253166889363"},{"denom":"ASSET5","index":"0.000001718500807532"},{"denom":"ASSET6","index":"0.000006939076737962"},{"denom":"ASSET7","index":"0.000010891166816552"},{"denom":"ASSET8","index":"0.000014853628574871"},{"denom":"ASSET9","index":"0.000006308302102729"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001496654334782"},{"denom":"ASSET1","index":"0.000012477377024436"},{"denom":"ASSET10","index":"0.000008693096469902"},{"denom":"ASSET11","index":"0.000012070207597683"},{"denom":"ASSET12","index":"0.000010869145414891"},{"denom":"ASSET13","index":"0.000003740467488528"},{"denom":"ASSET14","index":"0.000011275146493218"},{"denom":"ASSET15","index":"0.000008061604145195"},{"denom":"ASSET16","index":"0.000005620924281527"},{"denom":"ASSET17","index":"0.000003991662400298"},{"denom":"ASSET18","index":"0.000001901487064682"},{"denom":"ASSET2","index":"0.000003683218415613"},{"denom":"ASSET3","index":"0.000001077217249546"},{"denom":"ASSET4","index":"0.000010139511822330"},{"denom":"ASSET5","index":"0.000000835953299404"},{"denom":"ASSET6","index":"0.000003403398967385"},{"denom":"ASSET7","index":"0.000005212586506346"},{"denom":"ASSET8","index":"0.000006801540366848"},{"denom":"ASSET9","index":"0.000002937812119289"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003012098530886"},{"denom":"ASSET1","index":"0.000025562058034330"},{"denom":"ASSET10","index":"0.000020450222858637"},{"denom":"ASSET11","index":"0.000025414193224582"},{"denom":"ASSET12","index":"0.000024256065084933"},{"denom":"ASSET13","index":"0.000007984561416691"},{"denom":"ASSET14","index":"0.000023318358139730"},{"denom":"ASSET15","index":"0.000018411259079989"},{"denom":"ASSET16","index":"0.000011336678183578"},{"denom":"ASSET17","index":"0.000008913774138499"},{"denom":"ASSET18","index":"0.000003674960609183"},{"denom":"ASSET2","index":"0.000007744948932800"},{"denom":"ASSET3","index":"0.000002148867969989"},{"denom":"ASSET4","index":"0.000020722540912428"},{"denom":"ASSET5","index":"0.000001674229864542"},{"denom":"ASSET6","index":"0.000006756080138401"},{"denom":"ASSET7","index":"0.000010618450136599"},{"denom":"ASSET8","index":"0.000014514789998911"},{"denom":"ASSET9","index":"0.000006159565713194"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001470615438656"},{"denom":"ASSET1","index":"0.000012263141624205"},{"denom":"ASSET10","index":"0.000008543710077270"},{"denom":"ASSET11","index":"0.000011863435889596"},{"denom":"ASSET12","index":"0.000010682701378752"},{"denom":"ASSET13","index":"0.000003676538596641"},{"denom":"ASSET14","index":"0.000011081935762259"},{"denom":"ASSET15","index":"0.000007923412026863"},{"denom":"ASSET16","index":"0.000005524234917004"},{"denom":"ASSET17","index":"0.000003923055223056"},{"denom":"ASSET18","index":"0.000001868907119959"},{"denom":"ASSET2","index":"0.000003619976464385"},{"denom":"ASSET3","index":"0.000001058654575392"},{"denom":"ASSET4","index":"0.000009965776352407"},{"denom":"ASSET5","index":"0.000000822036322121"},{"denom":"ASSET6","index":"0.000003345178771841"},{"denom":"ASSET7","index":"0.000005123115129088"},{"denom":"ASSET8","index":"0.000006685172681558"},{"denom":"ASSET9","index":"0.000002887496851669"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000002995147819628"},{"denom":"ASSET1","index":"0.000025426980115999"},{"denom":"ASSET10","index":"0.000020372034738960"},{"denom":"ASSET11","index":"0.000025287989623967"},{"denom":"ASSET12","index":"0.000024150599022202"},{"denom":"ASSET13","index":"0.000007946076587902"},{"denom":"ASSET14","index":"0.000023198024872944"},{"denom":"ASSET15","index":"0.000018335727027304"},{"denom":"ASSET16","index":"0.000011274635486105"},{"denom":"ASSET17","index":"0.000008875015361763"},{"denom":"ASSET18","index":"0.000003653177061349"},{"denom":"ASSET2","index":"0.000007706361997735"},{"denom":"ASSET3","index":"0.000002137037997503"},{"denom":"ASSET4","index":"0.000020612735071168"},{"denom":"ASSET5","index":"0.000001665450131859"},{"denom":"ASSET6","index":"0.000006718182222688"},{"denom":"ASSET7","index":"0.000010561635089256"},{"denom":"ASSET8","index":"0.000014445035982826"},{"denom":"ASSET9","index":"0.000006128513210961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001778581753434"},{"denom":"ASSET1","index":"0.000014888315804569"},{"denom":"ASSET10","index":"0.000010370885153828"},{"denom":"ASSET11","index":"0.000014404007158094"},{"denom":"ASSET12","index":"0.000012967781516823"},{"denom":"ASSET13","index":"0.000004458979607201"},{"denom":"ASSET14","index":"0.000013452090163298"},{"denom":"ASSET15","index":"0.000009619371736884"},{"denom":"ASSET16","index":"0.000006705169708956"},{"denom":"ASSET17","index":"0.000004759584973979"},{"denom":"ASSET18","index":"0.000002262890399909"},{"denom":"ASSET2","index":"0.000004392178414584"},{"denom":"ASSET3","index":"0.000001285922957882"},{"denom":"ASSET4","index":"0.000012099366012799"},{"denom":"ASSET5","index":"0.000000993667740182"},{"denom":"ASSET6","index":"0.000004058172451498"},{"denom":"ASSET7","index":"0.000006220861062481"},{"denom":"ASSET8","index":"0.000008116344902996"},{"denom":"ASSET9","index":"0.000003507062612406"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003356752793751"},{"denom":"ASSET1","index":"0.000028516406305775"},{"denom":"ASSET10","index":"0.000022616173055400"},{"denom":"ASSET11","index":"0.000028302061322789"},{"denom":"ASSET12","index":"0.000026910491325102"},{"denom":"ASSET13","index":"0.000008878873421079"},{"denom":"ASSET14","index":"0.000025995251505598"},{"denom":"ASSET15","index":"0.000020398635157595"},{"denom":"ASSET16","index":"0.000012658071469071"},{"denom":"ASSET17","index":"0.000009885849877285"},{"denom":"ASSET18","index":"0.000004110010202724"},{"denom":"ASSET2","index":"0.000008622285743228"},{"denom":"ASSET3","index":"0.000002402314047495"},{"denom":"ASSET4","index":"0.000023121698220749"},{"denom":"ASSET5","index":"0.000001866482592061"},{"denom":"ASSET6","index":"0.000007549939309511"},{"denom":"ASSET7","index":"0.000011851024307599"},{"denom":"ASSET8","index":"0.000016149793693754"},{"denom":"ASSET9","index":"0.000006862325287189"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001604942959288"},{"denom":"ASSET1","index":"0.000013380628695124"},{"denom":"ASSET10","index":"0.000009322365613635"},{"denom":"ASSET11","index":"0.000012944148427984"},{"denom":"ASSET12","index":"0.000011656280789193"},{"denom":"ASSET13","index":"0.000004011353995308"},{"denom":"ASSET14","index":"0.000012091757653420"},{"denom":"ASSET15","index":"0.000008645319498111"},{"denom":"ASSET16","index":"0.000006027692148913"},{"denom":"ASSET17","index":"0.000004280767677439"},{"denom":"ASSET18","index":"0.000002039165569874"},{"denom":"ASSET2","index":"0.000003949895566889"},{"denom":"ASSET3","index":"0.000001155418454280"},{"denom":"ASSET4","index":"0.000010873877367808"},{"denom":"ASSET5","index":"0.000000896791353463"},{"denom":"ASSET6","index":"0.000003649878095912"},{"denom":"ASSET7","index":"0.000005589957628131"},{"denom":"ASSET8","index":"0.000007294237475803"},{"denom":"ASSET9","index":"0.000003150685146712"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003200268554223"},{"denom":"ASSET1","index":"0.000027155061035589"},{"denom":"ASSET10","index":"0.000021699312128992"},{"denom":"ASSET11","index":"0.000026991580254755"},{"denom":"ASSET12","index":"0.000025748970079650"},{"denom":"ASSET13","index":"0.000008479073830121"},{"denom":"ASSET14","index":"0.000024769827936089"},{"denom":"ASSET15","index":"0.000019540730612944"},{"denom":"ASSET16","index":"0.000012044995213579"},{"denom":"ASSET17","index":"0.000009462424001901"},{"denom":"ASSET18","index":"0.000003906197580725"},{"denom":"ASSET2","index":"0.000008225756082433"},{"denom":"ASSET3","index":"0.000002283784004254"},{"denom":"ASSET4","index":"0.000022014648589339"},{"denom":"ASSET5","index":"0.000001779311895342"},{"denom":"ASSET6","index":"0.000007179475362032"},{"denom":"ASSET7","index":"0.000011280598785262"},{"denom":"ASSET8","index":"0.000015413911362487"},{"denom":"ASSET9","index":"0.000006542247148589"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001620184629837"},{"denom":"ASSET1","index":"0.000013508113244239"},{"denom":"ASSET10","index":"0.000009411159415052"},{"denom":"ASSET11","index":"0.000013068550109883"},{"denom":"ASSET12","index":"0.000011766766981214"},{"denom":"ASSET13","index":"0.000004049052718392"},{"denom":"ASSET14","index":"0.000012206330115570"},{"denom":"ASSET15","index":"0.000008726455301921"},{"denom":"ASSET16","index":"0.000006083441070987"},{"denom":"ASSET17","index":"0.000004319553108765"},{"denom":"ASSET18","index":"0.000002056930051793"},{"denom":"ASSET2","index":"0.000003987063045598"},{"denom":"ASSET3","index":"0.000001166532933482"},{"denom":"ASSET4","index":"0.000010977807509294"},{"denom":"ASSET5","index":"0.000000904485680309"},{"denom":"ASSET6","index":"0.000003682750106429"},{"denom":"ASSET7","index":"0.000005643877936631"},{"denom":"ASSET8","index":"0.000007362682500458"},{"denom":"ASSET9","index":"0.000003178379586880"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003154859072778"},{"denom":"ASSET1","index":"0.000026759958230198"},{"denom":"ASSET10","index":"0.000021318547828682"},{"denom":"ASSET11","index":"0.000026582778956839"},{"denom":"ASSET12","index":"0.000025324795995745"},{"denom":"ASSET13","index":"0.000008347309163095"},{"denom":"ASSET14","index":"0.000024403216779648"},{"denom":"ASSET15","index":"0.000019208461119321"},{"denom":"ASSET16","index":"0.000011872154646602"},{"denom":"ASSET17","index":"0.000009304429323264"},{"denom":"ASSET18","index":"0.000003853154066825"},{"denom":"ASSET2","index":"0.000008100524497579"},{"denom":"ASSET3","index":"0.000002251942800438"},{"denom":"ASSET4","index":"0.000021695917087147"},{"denom":"ASSET5","index":"0.000001753374642360"},{"denom":"ASSET6","index":"0.000007078305954632"},{"denom":"ASSET7","index":"0.000011118481739065"},{"denom":"ASSET8","index":"0.000015174129529137"},{"denom":"ASSET9","index":"0.000006441283498998"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001565910537906"},{"denom":"ASSET1","index":"0.000013053983025959"},{"denom":"ASSET10","index":"0.000009094819386579"},{"denom":"ASSET11","index":"0.000012628414118813"},{"denom":"ASSET12","index":"0.000011371841840295"},{"denom":"ASSET13","index":"0.000003913403541838"},{"denom":"ASSET14","index":"0.000011796953146466"},{"denom":"ASSET15","index":"0.000008434501179040"},{"denom":"ASSET16","index":"0.000005880630135191"},{"denom":"ASSET17","index":"0.000004176066501732"},{"denom":"ASSET18","index":"0.000001989191440174"},{"denom":"ASSET2","index":"0.000003853457814057"},{"denom":"ASSET3","index":"0.000001127071202473"},{"denom":"ASSET4","index":"0.000010608563413286"},{"denom":"ASSET5","index":"0.000000874933065013"},{"denom":"ASSET6","index":"0.000003561050790760"},{"denom":"ASSET7","index":"0.000005453688425119"},{"denom":"ASSET8","index":"0.000007116152768840"},{"denom":"ASSET9","index":"0.000003073705751932"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003066618221533"},{"denom":"ASSET1","index":"0.000026018563142658"},{"denom":"ASSET10","index":"0.000020743763118655"},{"denom":"ASSET11","index":"0.000025849025514444"},{"denom":"ASSET12","index":"0.000024635604575072"},{"denom":"ASSET13","index":"0.000008118261811936"},{"denom":"ASSET14","index":"0.000023728777879609"},{"denom":"ASSET15","index":"0.000018689177197382"},{"denom":"ASSET16","index":"0.000011544003668418"},{"denom":"ASSET17","index":"0.000009052167825210"},{"denom":"ASSET18","index":"0.000003745930402733"},{"denom":"ASSET2","index":"0.000007877080459743"},{"denom":"ASSET3","index":"0.000002188594145460"},{"denom":"ASSET4","index":"0.000021094338825720"},{"denom":"ASSET5","index":"0.000001705356613908"},{"denom":"ASSET6","index":"0.000006882744986340"},{"denom":"ASSET7","index":"0.000010809249072439"},{"denom":"ASSET8","index":"0.000014757775472241"},{"denom":"ASSET9","index":"0.000006264987011427"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001616793771814"},{"denom":"ASSET1","index":"0.000013481664806896"},{"denom":"ASSET10","index":"0.000009392973001731"},{"denom":"ASSET11","index":"0.000013042136425966"},{"denom":"ASSET12","index":"0.000011745108533466"},{"denom":"ASSET13","index":"0.000004041984429535"},{"denom":"ASSET14","index":"0.000012183439289380"},{"denom":"ASSET15","index":"0.000008710326742521"},{"denom":"ASSET16","index":"0.000006073156456940"},{"denom":"ASSET17","index":"0.000004312647683187"},{"denom":"ASSET18","index":"0.000002053926902712"},{"denom":"ASSET2","index":"0.000003979707928695"},{"denom":"ASSET3","index":"0.000001164091515706"},{"denom":"ASSET4","index":"0.000010955873647818"},{"denom":"ASSET5","index":"0.000000903009262183"},{"denom":"ASSET6","index":"0.000003677906424623"},{"denom":"ASSET7","index":"0.000005632430450993"},{"denom":"ASSET8","index":"0.000007349824724165"},{"denom":"ASSET9","index":"0.000003173706292820"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003010548827117"},{"denom":"ASSET1","index":"0.000025517681435823"},{"denom":"ASSET10","index":"0.000020207909525991"},{"denom":"ASSET11","index":"0.000025316824190850"},{"denom":"ASSET12","index":"0.000024059273468565"},{"denom":"ASSET13","index":"0.000007945703994160"},{"denom":"ASSET14","index":"0.000023261456497592"},{"denom":"ASSET15","index":"0.000018230653165683"},{"denom":"ASSET16","index":"0.000011330852554208"},{"denom":"ASSET17","index":"0.000008840468160143"},{"denom":"ASSET18","index":"0.000003685449036638"},{"denom":"ASSET2","index":"0.000007715875534239"},{"denom":"ASSET3","index":"0.000002150116713749"},{"denom":"ASSET4","index":"0.000020690763011385"},{"denom":"ASSET5","index":"0.000001674170167376"},{"denom":"ASSET6","index":"0.000006761947340508"},{"denom":"ASSET7","index":"0.000010605047135869"},{"denom":"ASSET8","index":"0.000014444866674878"},{"denom":"ASSET9","index":"0.000006137206230949"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001598496813351"},{"denom":"ASSET1","index":"0.000013327209301876"},{"denom":"ASSET10","index":"0.000009285082513510"},{"denom":"ASSET11","index":"0.000012892549064690"},{"denom":"ASSET12","index":"0.000011609910099638"},{"denom":"ASSET13","index":"0.000003995530641827"},{"denom":"ASSET14","index":"0.000012043503249499"},{"denom":"ASSET15","index":"0.000008611039019674"},{"denom":"ASSET16","index":"0.000006003788988106"},{"denom":"ASSET17","index":"0.000004263725256261"},{"denom":"ASSET18","index":"0.000002031022875886"},{"denom":"ASSET2","index":"0.000003933995272733"},{"denom":"ASSET3","index":"0.000001150675832486"},{"denom":"ASSET4","index":"0.000010830580656369"},{"denom":"ASSET5","index":"0.000000893152091305"},{"denom":"ASSET6","index":"0.000003635566517414"},{"denom":"ASSET7","index":"0.000005567705967820"},{"denom":"ASSET8","index":"0.000007265086206652"},{"denom":"ASSET9","index":"0.000003137948128033"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003202417698287"},{"denom":"ASSET1","index":"0.000027176874960756"},{"denom":"ASSET10","index":"0.000021729724210241"},{"denom":"ASSET11","index":"0.000027016578438308"},{"denom":"ASSET12","index":"0.000025779554956391"},{"denom":"ASSET13","index":"0.000008487649506725"},{"denom":"ASSET14","index":"0.000024790682929963"},{"denom":"ASSET15","index":"0.000019565798539307"},{"denom":"ASSET16","index":"0.000012053877846841"},{"denom":"ASSET17","index":"0.000009473617164606"},{"denom":"ASSET18","index":"0.000003908301251667"},{"denom":"ASSET2","index":"0.000008233254558201"},{"denom":"ASSET3","index":"0.000002285025567503"},{"denom":"ASSET4","index":"0.000022032200437673"},{"denom":"ASSET5","index":"0.000001780306156687"},{"denom":"ASSET6","index":"0.000007184182778940"},{"denom":"ASSET7","index":"0.000011289430429576"},{"denom":"ASSET8","index":"0.000015429251463912"},{"denom":"ASSET9","index":"0.000006548040900334"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001349258766758"},{"denom":"ASSET1","index":"0.000011264433664868"},{"denom":"ASSET10","index":"0.000007848225297969"},{"denom":"ASSET11","index":"0.000010895650990484"},{"denom":"ASSET12","index":"0.000009811385762205"},{"denom":"ASSET13","index":"0.000003376459336127"},{"denom":"ASSET14","index":"0.000010177960157102"},{"denom":"ASSET15","index":"0.000007278489190238"},{"denom":"ASSET16","index":"0.000005074626261883"},{"denom":"ASSET17","index":"0.000003603912123322"},{"denom":"ASSET18","index":"0.000001715833161655"},{"denom":"ASSET2","index":"0.000003323460628431"},{"denom":"ASSET3","index":"0.000000971642974425"},{"denom":"ASSET4","index":"0.000009153318474981"},{"denom":"ASSET5","index":"0.000000753023305179"},{"denom":"ASSET6","index":"0.000003071716766875"},{"denom":"ASSET7","index":"0.000004705843587499"},{"denom":"ASSET8","index":"0.000006139016974776"},{"denom":"ASSET9","index":"0.000002652143664283"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000002874619638549"},{"denom":"ASSET1","index":"0.000024442633186143"},{"denom":"ASSET10","index":"0.000019689737510784"},{"denom":"ASSET11","index":"0.000024334399718263"},{"denom":"ASSET12","index":"0.000023294058494145"},{"denom":"ASSET13","index":"0.000007650065286478"},{"denom":"ASSET14","index":"0.000022306974942610"},{"denom":"ASSET15","index":"0.000017702453996022"},{"denom":"ASSET16","index":"0.000010830667352685"},{"denom":"ASSET17","index":"0.000008561334956642"},{"denom":"ASSET18","index":"0.000003501743239949"},{"denom":"ASSET2","index":"0.000007413384379561"},{"denom":"ASSET3","index":"0.000002050775894848"},{"denom":"ASSET4","index":"0.000019811877393900"},{"denom":"ASSET5","index":"0.000001596563839644"},{"denom":"ASSET6","index":"0.000006447875450380"},{"denom":"ASSET7","index":"0.000010149425285061"},{"denom":"ASSET8","index":"0.000013906577801610"},{"denom":"ASSET9","index":"0.000005896530335304"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001744355646452"},{"denom":"ASSET1","index":"0.000014544558741461"},{"denom":"ASSET10","index":"0.000010133244841823"},{"denom":"ASSET11","index":"0.000014070651242217"},{"denom":"ASSET12","index":"0.000012670295178174"},{"denom":"ASSET13","index":"0.000004360461787457"},{"denom":"ASSET14","index":"0.000013143775348745"},{"denom":"ASSET15","index":"0.000009397812194213"},{"denom":"ASSET16","index":"0.000006552230555377"},{"denom":"ASSET17","index":"0.000004653181929010"},{"denom":"ASSET18","index":"0.000002216553831001"},{"denom":"ASSET2","index":"0.000004293371185670"},{"denom":"ASSET3","index":"0.000001255918972299"},{"denom":"ASSET4","index":"0.000011819911117312"},{"denom":"ASSET5","index":"0.000000974736704938"},{"denom":"ASSET6","index":"0.000003967319407560"},{"denom":"ASSET7","index":"0.000006076186412764"},{"denom":"ASSET8","index":"0.000007929083542361"},{"denom":"ASSET9","index":"0.000003424611991834"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003377008276018"},{"denom":"ASSET1","index":"0.000028642142456639"},{"denom":"ASSET10","index":"0.000022800592191853"},{"denom":"ASSET11","index":"0.000028447577997463"},{"denom":"ASSET12","index":"0.000027093635853923"},{"denom":"ASSET13","index":"0.000008933092474106"},{"denom":"ASSET14","index":"0.000026119259559896"},{"denom":"ASSET15","index":"0.000020548756595198"},{"denom":"ASSET16","index":"0.000012710670192565"},{"denom":"ASSET17","index":"0.000009956402105067"},{"denom":"ASSET18","index":"0.000004127475104327"},{"denom":"ASSET2","index":"0.000008669602227225"},{"denom":"ASSET3","index":"0.000002410895003349"},{"denom":"ASSET4","index":"0.000023222264254358"},{"denom":"ASSET5","index":"0.000001877874241403"},{"denom":"ASSET6","index":"0.000007579654674160"},{"denom":"ASSET7","index":"0.000011900488798179"},{"denom":"ASSET8","index":"0.000016239324105118"},{"denom":"ASSET9","index":"0.000006895771583569"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001546168277317"},{"denom":"ASSET1","index":"0.000012892123182452"},{"denom":"ASSET10","index":"0.000008982377260299"},{"denom":"ASSET11","index":"0.000012472337191477"},{"denom":"ASSET12","index":"0.000011231230783378"},{"denom":"ASSET13","index":"0.000003864117010091"},{"denom":"ASSET14","index":"0.000011651016774353"},{"denom":"ASSET15","index":"0.000008329231976204"},{"denom":"ASSET16","index":"0.000005807908663952"},{"denom":"ASSET17","index":"0.000004124853650448"},{"denom":"ASSET18","index":"0.000001964650585090"},{"denom":"ASSET2","index":"0.000003805451266010"},{"denom":"ASSET3","index":"0.000001113345454324"},{"denom":"ASSET4","index":"0.000010477701892746"},{"denom":"ASSET5","index":"0.000000863038279582"},{"denom":"ASSET6","index":"0.000003516033595214"},{"denom":"ASSET7","index":"0.000005385515306574"},{"denom":"ASSET8","index":"0.000007028156140823"},{"denom":"ASSET9","index":"0.000003034974493755"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003044385892570"},{"denom":"ASSET1","index":"0.000025830014188245"},{"denom":"ASSET10","index":"0.000020607856539150"},{"denom":"ASSET11","index":"0.000025666657138152"},{"denom":"ASSET12","index":"0.000024468008636658"},{"denom":"ASSET13","index":"0.000008060303383676"},{"denom":"ASSET14","index":"0.000023559408638801"},{"denom":"ASSET15","index":"0.000018562848593971"},{"denom":"ASSET16","index":"0.000011459854746185"},{"denom":"ASSET17","index":"0.000008991538648143"},{"denom":"ASSET18","index":"0.000003718456390600"},{"denom":"ASSET2","index":"0.000007821717005664"},{"denom":"ASSET3","index":"0.000002173111618200"},{"denom":"ASSET4","index":"0.000020942104557307"},{"denom":"ASSET5","index":"0.000001691598021351"},{"denom":"ASSET6","index":"0.000006831113312915"},{"denom":"ASSET7","index":"0.000010730587410374"},{"denom":"ASSET8","index":"0.000014654605067850"},{"denom":"ASSET9","index":"0.000006220578615076"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001387821916020"},{"denom":"ASSET1","index":"0.000011588015182905"},{"denom":"ASSET10","index":"0.000008073788013584"},{"denom":"ASSET11","index":"0.000011209789038410"},{"denom":"ASSET12","index":"0.000010095957715252"},{"denom":"ASSET13","index":"0.000003472532948668"},{"denom":"ASSET14","index":"0.000010471205701129"},{"denom":"ASSET15","index":"0.000007487090765824"},{"denom":"ASSET16","index":"0.000005220712057474"},{"denom":"ASSET17","index":"0.000003707807479495"},{"denom":"ASSET18","index":"0.000001766048060515"},{"denom":"ASSET2","index":"0.000003418926093543"},{"denom":"ASSET3","index":"0.000001000661295671"},{"denom":"ASSET4","index":"0.000009416937550333"},{"denom":"ASSET5","index":"0.000000774321240698"},{"denom":"ASSET6","index":"0.000003159826293771"},{"denom":"ASSET7","index":"0.000004839507754361"},{"denom":"ASSET8","index":"0.000006316674428923"},{"denom":"ASSET9","index":"0.000002727993294151"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000002956721491824"},{"denom":"ASSET1","index":"0.000025136116728129"},{"denom":"ASSET10","index":"0.000020247681325291"},{"denom":"ASSET11","index":"0.000025026479369709"},{"denom":"ASSET12","index":"0.000023957412844230"},{"denom":"ASSET13","index":"0.000007866588644670"},{"denom":"ASSET14","index":"0.000022940688787988"},{"denom":"ASSET15","index":"0.000018203641219753"},{"denom":"ASSET16","index":"0.000011138902531601"},{"denom":"ASSET17","index":"0.000008803888891481"},{"denom":"ASSET18","index":"0.000003602115317706"},{"denom":"ASSET2","index":"0.000007623974866010"},{"denom":"ASSET3","index":"0.000002110544057177"},{"denom":"ASSET4","index":"0.000020374365248917"},{"denom":"ASSET5","index":"0.000001641905652861"},{"denom":"ASSET6","index":"0.000006630874494768"},{"denom":"ASSET7","index":"0.000010436528568948"},{"denom":"ASSET8","index":"0.000014302572224422"},{"denom":"ASSET9","index":"0.000006063325997423"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001500850379058"},{"denom":"ASSET1","index":"0.000012511793460183"},{"denom":"ASSET10","index":"0.000008717304800227"},{"denom":"ASSET11","index":"0.000012103632089176"},{"denom":"ASSET12","index":"0.000010899320696303"},{"denom":"ASSET13","index":"0.000003750781099635"},{"denom":"ASSET14","index":"0.000011306809643305"},{"denom":"ASSET15","index":"0.000008083881387560"},{"denom":"ASSET16","index":"0.000005636258009526"},{"denom":"ASSET17","index":"0.000004002940101492"},{"denom":"ASSET18","index":"0.000001906322054045"},{"denom":"ASSET2","index":"0.000003692952635209"},{"denom":"ASSET3","index":"0.000001079912951956"},{"denom":"ASSET4","index":"0.000010167723378913"},{"denom":"ASSET5","index":"0.000000838512734178"},{"denom":"ASSET6","index":"0.000003412551825143"},{"denom":"ASSET7","index":"0.000005226751790509"},{"denom":"ASSET8","index":"0.000006820396682251"},{"denom":"ASSET9","index":"0.000002945889565704"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003004514310835"},{"denom":"ASSET1","index":"0.000025497942224476"},{"denom":"ASSET10","index":"0.000020385999177782"},{"denom":"ASSET11","index":"0.000025346802479017"},{"denom":"ASSET12","index":"0.000024185328023735"},{"denom":"ASSET13","index":"0.000007962788555043"},{"denom":"ASSET14","index":"0.000023259189454501"},{"denom":"ASSET15","index":"0.000018355567065709"},{"denom":"ASSET16","index":"0.000011309092459120"},{"denom":"ASSET17","index":"0.000008887662321727"},{"denom":"ASSET18","index":"0.000003666570499762"},{"denom":"ASSET2","index":"0.000007723995884874"},{"denom":"ASSET3","index":"0.000002143405494402"},{"denom":"ASSET4","index":"0.000020670641097733"},{"denom":"ASSET5","index":"0.000001670336124344"},{"denom":"ASSET6","index":"0.000006739845385808"},{"denom":"ASSET7","index":"0.000010591422556410"},{"denom":"ASSET8","index":"0.000014475095162856"},{"denom":"ASSET9","index":"0.000006143360978771"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001507842106347"},{"denom":"ASSET1","index":"0.000012572313391156"},{"denom":"ASSET10","index":"0.000008759356679472"},{"denom":"ASSET11","index":"0.000012162445176153"},{"denom":"ASSET12","index":"0.000010952151629736"},{"denom":"ASSET13","index":"0.000003769211161813"},{"denom":"ASSET14","index":"0.000011361231636633"},{"denom":"ASSET15","index":"0.000008123272738112"},{"denom":"ASSET16","index":"0.000005663669344042"},{"denom":"ASSET17","index":"0.000004022225963767"},{"denom":"ASSET18","index":"0.000001916133905138"},{"denom":"ASSET2","index":"0.000003711277866039"},{"denom":"ASSET3","index":"0.000001085756665704"},{"denom":"ASSET4","index":"0.000010217147571101"},{"denom":"ASSET5","index":"0.000000842594465073"},{"denom":"ASSET6","index":"0.000003429493468225"},{"denom":"ASSET7","index":"0.000005252224712828"},{"denom":"ASSET8","index":"0.000006853863583762"},{"denom":"ASSET9","index":"0.000002960115541236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003064659144392"},{"denom":"ASSET1","index":"0.000026014545525120"},{"denom":"ASSET10","index":"0.000020837902255895"},{"denom":"ASSET11","index":"0.000025870951889592"},{"denom":"ASSET12","index":"0.000024704995690840"},{"denom":"ASSET13","index":"0.000008129050348807"},{"denom":"ASSET14","index":"0.000023733606076391"},{"denom":"ASSET15","index":"0.000018755969892396"},{"denom":"ASSET16","index":"0.000011535737727926"},{"denom":"ASSET17","index":"0.000009078938038909"},{"denom":"ASSET18","index":"0.000003738223548700"},{"denom":"ASSET2","index":"0.000007883998416280"},{"denom":"ASSET3","index":"0.000002186926046113"},{"denom":"ASSET4","index":"0.000021089316501471"},{"denom":"ASSET5","index":"0.000001703791082418"},{"denom":"ASSET6","index":"0.000006873778950624"},{"denom":"ASSET7","index":"0.000010805665377904"},{"denom":"ASSET8","index":"0.000014777724141198"},{"denom":"ASSET9","index":"0.000006269886019705"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001016570122529"},{"denom":"ASSET1","index":"0.000008477171470527"},{"denom":"ASSET10","index":"0.000005906463519680"},{"denom":"ASSET11","index":"0.000008200989896911"},{"denom":"ASSET12","index":"0.000007384774710599"},{"denom":"ASSET13","index":"0.000002541117067960"},{"denom":"ASSET14","index":"0.000007660956284215"},{"denom":"ASSET15","index":"0.000005477395717812"},{"denom":"ASSET16","index":"0.000003819073322661"},{"denom":"ASSET17","index":"0.000002711881121289"},{"denom":"ASSET18","index":"0.000001291518742692"},{"denom":"ASSET2","index":"0.000002502279034170"},{"denom":"ASSET3","index":"0.000000731757874738"},{"denom":"ASSET4","index":"0.000006889127422234"},{"denom":"ASSET5","index":"0.000000567775065403"},{"denom":"ASSET6","index":"0.000002312404202309"},{"denom":"ASSET7","index":"0.000003541658795591"},{"denom":"ASSET8","index":"0.000004621109544256"},{"denom":"ASSET9","index":"0.000001996151641449"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000002499545170163"},{"denom":"ASSET1","index":"0.000021282413071401"},{"denom":"ASSET10","index":"0.000017412808765385"},{"denom":"ASSET11","index":"0.000021259874812403"},{"denom":"ASSET12","index":"0.000020486111882687"},{"denom":"ASSET13","index":"0.000006694303381301"},{"denom":"ASSET14","index":"0.000019446986985139"},{"denom":"ASSET15","index":"0.000015606004703242"},{"denom":"ASSET16","index":"0.000009412782427040"},{"denom":"ASSET17","index":"0.000007528963649123"},{"denom":"ASSET18","index":"0.000003027066879988"},{"denom":"ASSET2","index":"0.000006477094521478"},{"denom":"ASSET3","index":"0.000001780578331809"},{"denom":"ASSET4","index":"0.000017246051064985"},{"denom":"ASSET5","index":"0.000001387924123500"},{"denom":"ASSET6","index":"0.000005593713918003"},{"denom":"ASSET7","index":"0.000008831780754063"},{"denom":"ASSET8","index":"0.000012169406160300"},{"denom":"ASSET9","index":"0.000005149034362400"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001552339226368"},{"denom":"ASSET1","index":"0.000012948480372324"},{"denom":"ASSET10","index":"0.000009021431734191"},{"denom":"ASSET11","index":"0.000012526515146109"},{"denom":"ASSET12","index":"0.000011279099696349"},{"denom":"ASSET13","index":"0.000003880848065920"},{"denom":"ASSET14","index":"0.000011701064922564"},{"denom":"ASSET15","index":"0.000008365383608761"},{"denom":"ASSET16","index":"0.000005830512213323"},{"denom":"ASSET17","index":"0.000004142651308462"},{"denom":"ASSET18","index":"0.000001971224414436"},{"denom":"ASSET2","index":"0.000003822327341117"},{"denom":"ASSET3","index":"0.000001118053847563"},{"denom":"ASSET4","index":"0.000010521410312050"},{"denom":"ASSET5","index":"0.000000865490719463"},{"denom":"ASSET6","index":"0.000003529723717099"},{"denom":"ASSET7","index":"0.000005408546987108"},{"denom":"ASSET8","index":"0.000007056367396050"},{"denom":"ASSET9","index":"0.000003046157727933"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003043964098015"},{"denom":"ASSET1","index":"0.000025828331615061"},{"denom":"ASSET10","index":"0.000020594675215425"},{"denom":"ASSET11","index":"0.000025661520704142"},{"denom":"ASSET12","index":"0.000024456429429906"},{"denom":"ASSET13","index":"0.000008058244190043"},{"denom":"ASSET14","index":"0.000023555461855486"},{"denom":"ASSET15","index":"0.000018552812657155"},{"denom":"ASSET16","index":"0.000011456604402492"},{"denom":"ASSET17","index":"0.000008987560143691"},{"denom":"ASSET18","index":"0.000003716794339222"},{"denom":"ASSET2","index":"0.000007820148034807"},{"denom":"ASSET3","index":"0.000002173135080244"},{"denom":"ASSET4","index":"0.000020938599170426"},{"denom":"ASSET5","index":"0.000001690207511083"},{"denom":"ASSET6","index":"0.000006829800145738"},{"denom":"ASSET7","index":"0.000010729300481432"},{"denom":"ASSET8","index":"0.000014648719853803"},{"denom":"ASSET9","index":"0.000006217447736766"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000000977108719668"},{"denom":"ASSET1","index":"0.000008146517162771"},{"denom":"ASSET10","index":"0.000005675852121603"},{"denom":"ASSET11","index":"0.000007881108738917"},{"denom":"ASSET12","index":"0.000007096716963958"},{"denom":"ASSET13","index":"0.000002441926549413"},{"denom":"ASSET14","index":"0.000007362125387813"},{"denom":"ASSET15","index":"0.000005263370239944"},{"denom":"ASSET16","index":"0.000003670074447059"},{"denom":"ASSET17","index":"0.000002605905002368"},{"denom":"ASSET18","index":"0.000001241671893765"},{"denom":"ASSET2","index":"0.000002404735560083"},{"denom":"ASSET3","index":"0.000000703247798239"},{"denom":"ASSET4","index":"0.000006620841350486"},{"denom":"ASSET5","index":"0.000000546031343344"},{"denom":"ASSET6","index":"0.000002222161612464"},{"denom":"ASSET7","index":"0.000003402975523689"},{"denom":"ASSET8","index":"0.000004440942225898"},{"denom":"ASSET9","index":"0.000001917871699764"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000002320380931676"},{"denom":"ASSET1","index":"0.000019748951316256"},{"denom":"ASSET10","index":"0.000016101172379351"},{"denom":"ASSET11","index":"0.000019714000020718"},{"denom":"ASSET12","index":"0.000018967805559844"},{"denom":"ASSET13","index":"0.000006204998608741"},{"denom":"ASSET14","index":"0.000018041457784230"},{"denom":"ASSET15","index":"0.000014440911570898"},{"denom":"ASSET16","index":"0.000008738221404310"},{"denom":"ASSET17","index":"0.000006970584758543"},{"denom":"ASSET18","index":"0.000002814127990287"},{"denom":"ASSET2","index":"0.000006006105656449"},{"denom":"ASSET3","index":"0.000001653724297068"},{"denom":"ASSET4","index":"0.000016005284799403"},{"denom":"ASSET5","index":"0.000001288969102308"},{"denom":"ASSET6","index":"0.000005195185892122"},{"denom":"ASSET7","index":"0.000008196101819524"},{"denom":"ASSET8","index":"0.000011280171312915"},{"denom":"ASSET9","index":"0.000004774394171461"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001745798220012"},{"denom":"ASSET1","index":"0.000014553743296829"},{"denom":"ASSET10","index":"0.000010139438249561"},{"denom":"ASSET11","index":"0.000014079320164724"},{"denom":"ASSET12","index":"0.000012678243118663"},{"denom":"ASSET13","index":"0.000004363016060013"},{"denom":"ASSET14","index":"0.000013152173087429"},{"denom":"ASSET15","index":"0.000009403145384454"},{"denom":"ASSET16","index":"0.000006556113428486"},{"denom":"ASSET17","index":"0.000004655955083371"},{"denom":"ASSET18","index":"0.000002217755535422"},{"denom":"ASSET2","index":"0.000004295945845911"},{"denom":"ASSET3","index":"0.000001256580187737"},{"denom":"ASSET4","index":"0.000011827536358912"},{"denom":"ASSET5","index":"0.000000975477084515"},{"denom":"ASSET6","index":"0.000003969964878841"},{"denom":"ASSET7","index":"0.000006080210806364"},{"denom":"ASSET8","index":"0.000007934011797614"},{"denom":"ASSET9","index":"0.000003426498879278"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003342998947188"},{"denom":"ASSET1","index":"0.000028345782457833"},{"denom":"ASSET10","index":"0.000022532322238539"},{"denom":"ASSET11","index":"0.000028144588841629"},{"denom":"ASSET12","index":"0.000026788988923046"},{"denom":"ASSET13","index":"0.000008836278349189"},{"denom":"ASSET14","index":"0.000025846526421467"},{"denom":"ASSET15","index":"0.000020312521464953"},{"denom":"ASSET16","index":"0.000012581099317360"},{"denom":"ASSET17","index":"0.000009844015126225"},{"denom":"ASSET18","index":"0.000004087085525414"},{"denom":"ASSET2","index":"0.000008577030596387"},{"denom":"ASSET3","index":"0.000002386540105172"},{"denom":"ASSET4","index":"0.000022982635628207"},{"denom":"ASSET5","index":"0.000001858980311097"},{"denom":"ASSET6","index":"0.000007503977785171"},{"denom":"ASSET7","index":"0.000011778054778213"},{"denom":"ASSET8","index":"0.000016064148587518"},{"denom":"ASSET9","index":"0.000006822246648031"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001535240763659"},{"denom":"ASSET1","index":"0.000012802535686671"},{"denom":"ASSET10","index":"0.000008918976928097"},{"denom":"ASSET11","index":"0.000012384847277788"},{"denom":"ASSET12","index":"0.000011152366284839"},{"denom":"ASSET13","index":"0.000003838101909148"},{"denom":"ASSET14","index":"0.000011569197017318"},{"denom":"ASSET15","index":"0.000008271431242866"},{"denom":"ASSET16","index":"0.000005767016142371"},{"denom":"ASSET17","index":"0.000004095404830432"},{"denom":"ASSET18","index":"0.000001951213819735"},{"denom":"ASSET2","index":"0.000003778922237253"},{"denom":"ASSET3","index":"0.000001105544885116"},{"denom":"ASSET4","index":"0.000010403614783903"},{"denom":"ASSET5","index":"0.000000857676404279"},{"denom":"ASSET6","index":"0.000003491600641819"},{"denom":"ASSET7","index":"0.000005348470057083"},{"denom":"ASSET8","index":"0.000006978912901618"},{"denom":"ASSET9","index":"0.000003013874884636"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003086246918243"},{"denom":"ASSET1","index":"0.000026194228204796"},{"denom":"ASSET10","index":"0.000020951998769875"},{"denom":"ASSET11","index":"0.000026042273492864"},{"denom":"ASSET12","index":"0.000024853724280460"},{"denom":"ASSET13","index":"0.000008181454895403"},{"denom":"ASSET14","index":"0.000023895275980533"},{"denom":"ASSET15","index":"0.000018864347888264"},{"denom":"ASSET16","index":"0.000011616907749245"},{"denom":"ASSET17","index":"0.000009133094250657"},{"denom":"ASSET18","index":"0.000003766346411006"},{"denom":"ASSET2","index":"0.000007935833032906"},{"denom":"ASSET3","index":"0.000002202232138461"},{"denom":"ASSET4","index":"0.000021234941701767"},{"denom":"ASSET5","index":"0.000001715417631736"},{"denom":"ASSET6","index":"0.000006923101305069"},{"denom":"ASSET7","index":"0.000010881195638563"},{"denom":"ASSET8","index":"0.000014873239564067"},{"denom":"ASSET9","index":"0.000006310901439146"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001694764141112"},{"denom":"ASSET1","index":"0.000014130580032100"},{"denom":"ASSET10","index":"0.000009844524497723"},{"denom":"ASSET11","index":"0.000013669508873851"},{"denom":"ASSET12","index":"0.000012309527666765"},{"denom":"ASSET13","index":"0.000004236016804025"},{"denom":"ASSET14","index":"0.000012769407426673"},{"denom":"ASSET15","index":"0.000009129685492685"},{"denom":"ASSET16","index":"0.000006365641339869"},{"denom":"ASSET17","index":"0.000004520761007698"},{"denom":"ASSET18","index":"0.000002153452502679"},{"denom":"ASSET2","index":"0.000004171085594400"},{"denom":"ASSET3","index":"0.000001219991901933"},{"denom":"ASSET4","index":"0.000011483292916774"},{"denom":"ASSET5","index":"0.000000947161681676"},{"denom":"ASSET6","index":"0.000003854173635500"},{"denom":"ASSET7","index":"0.000005903378783277"},{"denom":"ASSET8","index":"0.000007702985978462"},{"denom":"ASSET9","index":"0.000003326979869284"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003333609736915"},{"denom":"ASSET1","index":"0.000028281729059652"},{"denom":"ASSET10","index":"0.000022560289398652"},{"denom":"ASSET11","index":"0.000028101042421314"},{"denom":"ASSET12","index":"0.000026787599659919"},{"denom":"ASSET13","index":"0.000008826015241086"},{"denom":"ASSET14","index":"0.000025794402991537"},{"denom":"ASSET15","index":"0.000020323143219667"},{"denom":"ASSET16","index":"0.000012547562311789"},{"denom":"ASSET17","index":"0.000009844220733470"},{"denom":"ASSET18","index":"0.000004071528772633"},{"denom":"ASSET2","index":"0.000008563776406339"},{"denom":"ASSET3","index":"0.000002379222276435"},{"denom":"ASSET4","index":"0.000022929058250150"},{"denom":"ASSET5","index":"0.000001853699834530"},{"denom":"ASSET6","index":"0.000007480326246914"},{"denom":"ASSET7","index":"0.000011749530638760"},{"denom":"ASSET8","index":"0.000016044906214881"},{"denom":"ASSET9","index":"0.000006811209452101"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001763265776240"},{"denom":"ASSET1","index":"0.000014701143889842"},{"denom":"ASSET10","index":"0.000010242267715158"},{"denom":"ASSET11","index":"0.000014221824092125"},{"denom":"ASSET12","index":"0.000012807154532407"},{"denom":"ASSET13","index":"0.000004407037513175"},{"denom":"ASSET14","index":"0.000013285723045174"},{"denom":"ASSET15","index":"0.000009498495615253"},{"denom":"ASSET16","index":"0.000006622576828953"},{"denom":"ASSET17","index":"0.000004703043783239"},{"denom":"ASSET18","index":"0.000002240331719108"},{"denom":"ASSET2","index":"0.000004339421867729"},{"denom":"ASSET3","index":"0.000001269671564485"},{"denom":"ASSET4","index":"0.000011947684550294"},{"denom":"ASSET5","index":"0.000000984934568662"},{"denom":"ASSET6","index":"0.000004010359059893"},{"denom":"ASSET7","index":"0.000006141754461338"},{"denom":"ASSET8","index":"0.000008013956555240"},{"denom":"ASSET9","index":"0.000003461169761882"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003372790294110"},{"denom":"ASSET1","index":"0.000028600279733511"},{"denom":"ASSET10","index":"0.000022731421090197"},{"denom":"ASSET11","index":"0.000028396190348540"},{"denom":"ASSET12","index":"0.000027027392524280"},{"denom":"ASSET13","index":"0.000008915082315276"},{"denom":"ASSET14","index":"0.000026078776667620"},{"denom":"ASSET15","index":"0.000020492230414373"},{"denom":"ASSET16","index":"0.000012694274413467"},{"denom":"ASSET17","index":"0.000009931274832025"},{"denom":"ASSET18","index":"0.000004123939856338"},{"denom":"ASSET2","index":"0.000008653658587521"},{"denom":"ASSET3","index":"0.000002407864000528"},{"denom":"ASSET4","index":"0.000023189126720885"},{"denom":"ASSET5","index":"0.000001875419633234"},{"denom":"ASSET6","index":"0.000007571725921487"},{"denom":"ASSET7","index":"0.000011883748947250"},{"denom":"ASSET8","index":"0.000016207221904670"},{"denom":"ASSET9","index":"0.000006883201227023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001453309126336"},{"denom":"ASSET1","index":"0.000012116886392617"},{"denom":"ASSET10","index":"0.000008441923956558"},{"denom":"ASSET11","index":"0.000011721955689254"},{"denom":"ASSET12","index":"0.000010555542874101"},{"denom":"ASSET13","index":"0.000003632376264868"},{"denom":"ASSET14","index":"0.000010950025301978"},{"denom":"ASSET15","index":"0.000007829131366891"},{"denom":"ASSET16","index":"0.000005458650595742"},{"denom":"ASSET17","index":"0.000003876686404859"},{"denom":"ASSET18","index":"0.000001846446727754"},{"denom":"ASSET2","index":"0.000003576790104576"},{"denom":"ASSET3","index":"0.000001046274984845"},{"denom":"ASSET4","index":"0.000009847267605868"},{"denom":"ASSET5","index":"0.000000812275181037"},{"denom":"ASSET6","index":"0.000003305135159925"},{"denom":"ASSET7","index":"0.000005061926790434"},{"denom":"ASSET8","index":"0.000006605339289501"},{"denom":"ASSET9","index":"0.000002852825194325"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000002846126280344"},{"denom":"ASSET1","index":"0.000024142729904188"},{"denom":"ASSET10","index":"0.000019247649074564"},{"denom":"ASSET11","index":"0.000023985879136349"},{"denom":"ASSET12","index":"0.000022859091275790"},{"denom":"ASSET13","index":"0.000007532792628817"},{"denom":"ASSET14","index":"0.000022018595952129"},{"denom":"ASSET15","index":"0.000017341431925331"},{"denom":"ASSET16","index":"0.000010711928951149"},{"denom":"ASSET17","index":"0.000008400535387767"},{"denom":"ASSET18","index":"0.000003476353193421"},{"denom":"ASSET2","index":"0.000007309791035362"},{"denom":"ASSET3","index":"0.000002031285314481"},{"denom":"ASSET4","index":"0.000019573873127075"},{"denom":"ASSET5","index":"0.000001582650339951"},{"denom":"ASSET6","index":"0.000006386635795582"},{"denom":"ASSET7","index":"0.000010030235680714"},{"denom":"ASSET8","index":"0.000013694243666513"},{"denom":"ASSET9","index":"0.000005813799926422"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001542334439671"},{"denom":"ASSET1","index":"0.000012860022908304"},{"denom":"ASSET10","index":"0.000008959505058412"},{"denom":"ASSET11","index":"0.000012440701863130"},{"denom":"ASSET12","index":"0.000011202637482986"},{"denom":"ASSET13","index":"0.000003855293405849"},{"denom":"ASSET14","index":"0.000011621234937056"},{"denom":"ASSET15","index":"0.000008308996655285"},{"denom":"ASSET16","index":"0.000005793070384239"},{"denom":"ASSET17","index":"0.000004114339021332"},{"denom":"ASSET18","index":"0.000001959846507084"},{"denom":"ASSET2","index":"0.000003796320730815"},{"denom":"ASSET3","index":"0.000001110350550164"},{"denom":"ASSET4","index":"0.000010450826325201"},{"denom":"ASSET5","index":"0.000000861797005699"},{"denom":"ASSET6","index":"0.000003507969675592"},{"denom":"ASSET7","index":"0.000005372663952407"},{"denom":"ASSET8","index":"0.000007010512417899"},{"denom":"ASSET9","index":"0.000003027866977623"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003036454064443"},{"denom":"ASSET1","index":"0.000025762443856573"},{"denom":"ASSET10","index":"0.000020552854458451"},{"denom":"ASSET11","index":"0.000025598594042577"},{"denom":"ASSET12","index":"0.000024403233064712"},{"denom":"ASSET13","index":"0.000008040226829205"},{"denom":"ASSET14","index":"0.000023496526683137"},{"denom":"ASSET15","index":"0.000018514610345002"},{"denom":"ASSET16","index":"0.000011429420030088"},{"denom":"ASSET17","index":"0.000008967792958730"},{"denom":"ASSET18","index":"0.000003708688180539"},{"denom":"ASSET2","index":"0.000007801450355100"},{"denom":"ASSET3","index":"0.000002167197324698"},{"denom":"ASSET4","index":"0.000020886439041228"},{"denom":"ASSET5","index":"0.000001688395026424"},{"denom":"ASSET6","index":"0.000006814112030993"},{"denom":"ASSET7","index":"0.000010703097412338"},{"denom":"ASSET8","index":"0.000014616213118562"},{"denom":"ASSET9","index":"0.000006204650488693"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001802604811891"},{"denom":"ASSET1","index":"0.000015041134377282"},{"denom":"ASSET10","index":"0.000010478421042795"},{"denom":"ASSET11","index":"0.000014549893343095"},{"denom":"ASSET12","index":"0.000013101148598203"},{"denom":"ASSET13","index":"0.000004508593559534"},{"denom":"ASSET14","index":"0.000013592389632390"},{"denom":"ASSET15","index":"0.000009716581133843"},{"denom":"ASSET16","index":"0.000006773297988330"},{"denom":"ASSET17","index":"0.000004812496911192"},{"denom":"ASSET18","index":"0.000002289682786467"},{"denom":"ASSET2","index":"0.000004437821546134"},{"denom":"ASSET3","index":"0.000001298874598869"},{"denom":"ASSET4","index":"0.000012222743020122"},{"denom":"ASSET5","index":"0.000001007460426045"},{"denom":"ASSET6","index":"0.000004100613717582"},{"denom":"ASSET7","index":"0.000006282056954143"},{"denom":"ASSET8","index":"0.000008197064375552"},{"denom":"ASSET9","index":"0.000003538600669994"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003500919125422"},{"denom":"ASSET1","index":"0.000029708744113596"},{"denom":"ASSET10","index":"0.000023658219501850"},{"denom":"ASSET11","index":"0.000029508250092955"},{"denom":"ASSET12","index":"0.000028107871580940"},{"denom":"ASSET13","index":"0.000009266072102552"},{"denom":"ASSET14","index":"0.000027092614384257"},{"denom":"ASSET15","index":"0.000021318431245277"},{"denom":"ASSET16","index":"0.000013180724612002"},{"denom":"ASSET17","index":"0.000010330094773179"},{"denom":"ASSET18","index":"0.000004277644880979"},{"denom":"ASSET2","index":"0.000008990842831989"},{"denom":"ASSET3","index":"0.000002500335792843"},{"denom":"ASSET4","index":"0.000024086210482120"},{"denom":"ASSET5","index":"0.000001946754653173"},{"denom":"ASSET6","index":"0.000007858889858659"},{"denom":"ASSET7","index":"0.000012341576470869"},{"denom":"ASSET8","index":"0.000016843078118646"},{"denom":"ASSET9","index":"0.000007150129263591"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001563811170888"},{"denom":"ASSET1","index":"0.000013038374863878"},{"denom":"ASSET10","index":"0.000009083864212622"},{"denom":"ASSET11","index":"0.000012612362006834"},{"denom":"ASSET12","index":"0.000011358137819015"},{"denom":"ASSET13","index":"0.000003908204905926"},{"denom":"ASSET14","index":"0.000011781504633469"},{"denom":"ASSET15","index":"0.000008423676586333"},{"denom":"ASSET16","index":"0.000005872891529250"},{"denom":"ASSET17","index":"0.000004170163122369"},{"denom":"ASSET18","index":"0.000001987177985342"},{"denom":"ASSET2","index":"0.000003848668947643"},{"denom":"ASSET3","index":"0.000001125891122188"},{"denom":"ASSET4","index":"0.000010596077552999"},{"denom":"ASSET5","index":"0.000000873194054811"},{"denom":"ASSET6","index":"0.000003556281241411"},{"denom":"ASSET7","index":"0.000005446878672206"},{"denom":"ASSET8","index":"0.000007107270397641"},{"denom":"ASSET9","index":"0.000003069409404789"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003311345528520"},{"denom":"ASSET1","index":"0.000028134750769747"},{"denom":"ASSET10","index":"0.000022648872120201"},{"denom":"ASSET11","index":"0.000028007957662740"},{"denom":"ASSET12","index":"0.000026803793052874"},{"denom":"ASSET13","index":"0.000008804941803873"},{"denom":"ASSET14","index":"0.000025676450668466"},{"denom":"ASSET15","index":"0.000020365161363483"},{"denom":"ASSET16","index":"0.000012467103206876"},{"denom":"ASSET17","index":"0.000009848512066991"},{"denom":"ASSET18","index":"0.000004032794375330"},{"denom":"ASSET2","index":"0.000008534928074651"},{"denom":"ASSET3","index":"0.000002362590241163"},{"denom":"ASSET4","index":"0.000022806063702805"},{"denom":"ASSET5","index":"0.000001840254083448"},{"denom":"ASSET6","index":"0.000007424521355960"},{"denom":"ASSET7","index":"0.000011683846998076"},{"denom":"ASSET8","index":"0.000016006498096466"},{"denom":"ASSET9","index":"0.000006786333067798"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001600184479142"},{"denom":"ASSET1","index":"0.000013342157474081"},{"denom":"ASSET10","index":"0.000009295060662992"},{"denom":"ASSET11","index":"0.000012907134644369"},{"denom":"ASSET12","index":"0.000011622469236023"},{"denom":"ASSET13","index":"0.000003999732516397"},{"denom":"ASSET14","index":"0.000012056763384279"},{"denom":"ASSET15","index":"0.000008620301633991"},{"denom":"ASSET16","index":"0.000006010164655719"},{"denom":"ASSET17","index":"0.000004268615973958"},{"denom":"ASSET18","index":"0.000002033021264483"},{"denom":"ASSET2","index":"0.000003938523274026"},{"denom":"ASSET3","index":"0.000001152045383207"},{"denom":"ASSET4","index":"0.000010842780077243"},{"denom":"ASSET5","index":"0.000000894092147498"},{"denom":"ASSET6","index":"0.000003639035195279"},{"denom":"ASSET7","index":"0.000005573684463094"},{"denom":"ASSET8","index":"0.000007272969620361"},{"denom":"ASSET9","index":"0.000003141345760282"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003037978324998"},{"denom":"ASSET1","index":"0.000025756345113171"},{"denom":"ASSET10","index":"0.000020449699671521"},{"denom":"ASSET11","index":"0.000025567125107120"},{"denom":"ASSET12","index":"0.000024323299608917"},{"denom":"ASSET13","index":"0.000008026089638757"},{"denom":"ASSET14","index":"0.000023482777870484"},{"denom":"ASSET15","index":"0.000018439819094125"},{"denom":"ASSET16","index":"0.000011433094032389"},{"denom":"ASSET17","index":"0.000008938487942114"},{"denom":"ASSET18","index":"0.000003715472889790"},{"denom":"ASSET2","index":"0.000007791978720736"},{"denom":"ASSET3","index":"0.000002168844641333"},{"denom":"ASSET4","index":"0.000020883291069830"},{"denom":"ASSET5","index":"0.000001689134510364"},{"denom":"ASSET6","index":"0.000006819968009550"},{"denom":"ASSET7","index":"0.000010702337477897"},{"denom":"ASSET8","index":"0.000014590947163921"},{"denom":"ASSET9","index":"0.000006197850437110"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001732863553160"},{"denom":"ASSET1","index":"0.000014476512568697"},{"denom":"ASSET10","index":"0.000010084697727409"},{"denom":"ASSET11","index":"0.000014004946421444"},{"denom":"ASSET12","index":"0.000012607292539223"},{"denom":"ASSET13","index":"0.000004334999642824"},{"denom":"ASSET14","index":"0.000013078858686476"},{"denom":"ASSET15","index":"0.000009351781667220"},{"denom":"ASSET16","index":"0.000006516703263852"},{"denom":"ASSET17","index":"0.000004630438674838"},{"denom":"ASSET18","index":"0.000002204429700414"},{"denom":"ASSET2","index":"0.000004272502924514"},{"denom":"ASSET3","index":"0.000001249934366214"},{"denom":"ASSET4","index":"0.000011760746082105"},{"denom":"ASSET5","index":"0.000000965858373893"},{"denom":"ASSET6","index":"0.000003948656293267"},{"denom":"ASSET7","index":"0.000006045137116599"},{"denom":"ASSET8","index":"0.000007891631066688"},{"denom":"ASSET9","index":"0.000003403230388010"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003203314564743"},{"denom":"ASSET1","index":"0.000027174750089688"},{"denom":"ASSET10","index":"0.000021494761442080"},{"denom":"ASSET11","index":"0.000026954579685264"},{"denom":"ASSET12","index":"0.000025598519259277"},{"denom":"ASSET13","index":"0.000008453363478510"},{"denom":"ASSET14","index":"0.000024766008219885"},{"denom":"ASSET15","index":"0.000019395989679368"},{"denom":"ASSET16","index":"0.000012063312986412"},{"denom":"ASSET17","index":"0.000009406957788586"},{"denom":"ASSET18","index":"0.000003925664786352"},{"denom":"ASSET2","index":"0.000008214094571203"},{"denom":"ASSET3","index":"0.000002289770772075"},{"denom":"ASSET4","index":"0.000022031271429646"},{"denom":"ASSET5","index":"0.000001779377444361"},{"denom":"ASSET6","index":"0.000007202120906665"},{"denom":"ASSET7","index":"0.000011290805949933"},{"denom":"ASSET8","index":"0.000015376618183469"},{"denom":"ASSET9","index":"0.000006529467958809"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001687731873143"},{"denom":"ASSET1","index":"0.000014069560961171"},{"denom":"ASSET10","index":"0.000009802495056563"},{"denom":"ASSET11","index":"0.000013610740912442"},{"denom":"ASSET12","index":"0.000012256373563096"},{"denom":"ASSET13","index":"0.000004217751625940"},{"denom":"ASSET14","index":"0.000012714404583367"},{"denom":"ASSET15","index":"0.000009090791386823"},{"denom":"ASSET16","index":"0.000006338265608675"},{"denom":"ASSET17","index":"0.000004501407356839"},{"denom":"ASSET18","index":"0.000002144184836496"},{"denom":"ASSET2","index":"0.000004153051292327"},{"denom":"ASSET3","index":"0.000001214709312157"},{"denom":"ASSET4","index":"0.000011433811394910"},{"denom":"ASSET5","index":"0.000000942889008137"},{"denom":"ASSET6","index":"0.000003837834423079"},{"denom":"ASSET7","index":"0.000005877867503028"},{"denom":"ASSET8","index":"0.000007669751132718"},{"denom":"ASSET9","index":"0.000003312735983819"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003310751488522"},{"denom":"ASSET1","index":"0.000028084250149300"},{"denom":"ASSET10","index":"0.000022395324527460"},{"denom":"ASSET11","index":"0.000027902986790638"},{"denom":"ASSET12","index":"0.000026594787286768"},{"denom":"ASSET13","index":"0.000008763085936534"},{"denom":"ASSET14","index":"0.000025613920456358"},{"denom":"ASSET15","index":"0.000020176020856033"},{"denom":"ASSET16","index":"0.000012460451689171"},{"denom":"ASSET17","index":"0.000009773335616478"},{"denom":"ASSET18","index":"0.000004043661907525"},{"denom":"ASSET2","index":"0.000008503271494062"},{"denom":"ASSET3","index":"0.000002362859659779"},{"denom":"ASSET4","index":"0.000022769116693783"},{"denom":"ASSET5","index":"0.000001840413908887"},{"denom":"ASSET6","index":"0.000007429033260494"},{"denom":"ASSET7","index":"0.000011667535172652"},{"denom":"ASSET8","index":"0.000015931047386954"},{"denom":"ASSET9","index":"0.000006763232815972"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001411639939639"},{"denom":"ASSET1","index":"0.000011770559134781"},{"denom":"ASSET10","index":"0.000008200405560598"},{"denom":"ASSET11","index":"0.000011386782830640"},{"denom":"ASSET12","index":"0.000010253700018254"},{"denom":"ASSET13","index":"0.000003528795747429"},{"denom":"ASSET14","index":"0.000010636868119061"},{"denom":"ASSET15","index":"0.000007604974496011"},{"denom":"ASSET16","index":"0.000005302316671163"},{"denom":"ASSET17","index":"0.000003765386844594"},{"denom":"ASSET18","index":"0.000001793591633776"},{"denom":"ASSET2","index":"0.000003474665650649"},{"denom":"ASSET3","index":"0.000001016307772140"},{"denom":"ASSET4","index":"0.000009565822046806"},{"denom":"ASSET5","index":"0.000000788839724994"},{"denom":"ASSET6","index":"0.000003210705403426"},{"denom":"ASSET7","index":"0.000004917323960353"},{"denom":"ASSET8","index":"0.000006416545180176"},{"denom":"ASSET9","index":"0.000002771582595835"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000002915106026686"},{"denom":"ASSET1","index":"0.000024751938975568"},{"denom":"ASSET10","index":"0.000019864528416862"},{"denom":"ASSET11","index":"0.000024625253839727"},{"denom":"ASSET12","index":"0.000023534700266806"},{"denom":"ASSET13","index":"0.000007739190454504"},{"denom":"ASSET14","index":"0.000022584902384729"},{"denom":"ASSET15","index":"0.000017872912229645"},{"denom":"ASSET16","index":"0.000010972881933217"},{"denom":"ASSET17","index":"0.000008648586457086"},{"denom":"ASSET18","index":"0.000003552999450219"},{"denom":"ASSET2","index":"0.000007504215303421"},{"denom":"ASSET3","index":"0.000002079538758775"},{"denom":"ASSET4","index":"0.000020065180146540"},{"denom":"ASSET5","index":"0.000001620267199228"},{"denom":"ASSET6","index":"0.000006536798446662"},{"denom":"ASSET7","index":"0.000010280222742310"},{"denom":"ASSET8","index":"0.000014068743113537"},{"denom":"ASSET9","index":"0.000005967789042866"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001670929391506"},{"denom":"ASSET1","index":"0.000013946161101263"},{"denom":"ASSET10","index":"0.000009716355120388"},{"denom":"ASSET11","index":"0.000013489421488305"},{"denom":"ASSET12","index":"0.000012147571569489"},{"denom":"ASSET13","index":"0.000004178741924768"},{"denom":"ASSET14","index":"0.000012601474290441"},{"denom":"ASSET15","index":"0.000009009969010905"},{"denom":"ASSET16","index":"0.000006280878901179"},{"denom":"ASSET17","index":"0.000004459594233357"},{"denom":"ASSET18","index":"0.000002124832112458"},{"denom":"ASSET2","index":"0.000004116330300637"},{"denom":"ASSET3","index":"0.000001202842210524"},{"denom":"ASSET4","index":"0.000011333383563781"},{"denom":"ASSET5","index":"0.000000933337469958"},{"denom":"ASSET6","index":"0.000003804272179982"},{"denom":"ASSET7","index":"0.000005824139288221"},{"denom":"ASSET8","index":"0.000007600033683947"},{"denom":"ASSET9","index":"0.000003282284050887"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003306866574231"},{"denom":"ASSET1","index":"0.000028073670524533"},{"denom":"ASSET10","index":"0.000022410378668975"},{"denom":"ASSET11","index":"0.000027896117796052"},{"denom":"ASSET12","index":"0.000026601615360568"},{"denom":"ASSET13","index":"0.000008760019105133"},{"denom":"ASSET14","index":"0.000025604072816608"},{"denom":"ASSET15","index":"0.000020183975077340"},{"denom":"ASSET16","index":"0.000012452378452775"},{"denom":"ASSET17","index":"0.000009773941069454"},{"denom":"ASSET18","index":"0.000004038323507821"},{"denom":"ASSET2","index":"0.000008501686860316"},{"denom":"ASSET3","index":"0.000002358773872569"},{"denom":"ASSET4","index":"0.000022758821093429"},{"denom":"ASSET5","index":"0.000001837837668790"},{"denom":"ASSET6","index":"0.000007423905647148"},{"denom":"ASSET7","index":"0.000011659308440973"},{"denom":"ASSET8","index":"0.000015926660063085"},{"denom":"ASSET9","index":"0.000006759875068056"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001598361255475"},{"denom":"ASSET1","index":"0.000013324868720531"},{"denom":"ASSET10","index":"0.000009283863630055"},{"denom":"ASSET11","index":"0.000012890721875256"},{"denom":"ASSET12","index":"0.000011607749807828"},{"denom":"ASSET13","index":"0.000003994929715268"},{"denom":"ASSET14","index":"0.000012041896653103"},{"denom":"ASSET15","index":"0.000008609605674538"},{"denom":"ASSET16","index":"0.000006002777756047"},{"denom":"ASSET17","index":"0.000004262945630213"},{"denom":"ASSET18","index":"0.000002030561253910"},{"denom":"ASSET2","index":"0.000003933279565341"},{"denom":"ASSET3","index":"0.000001150586482321"},{"denom":"ASSET4","index":"0.000010829011071909"},{"denom":"ASSET5","index":"0.000000892953750521"},{"denom":"ASSET6","index":"0.000003634763049905"},{"denom":"ASSET7","index":"0.000005566684063932"},{"denom":"ASSET8","index":"0.000007263685559290"},{"denom":"ASSET9","index":"0.000003137668156809"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003119961272076"},{"denom":"ASSET1","index":"0.000026462428012801"},{"denom":"ASSET10","index":"0.000021088828135750"},{"denom":"ASSET11","index":"0.000026288818556387"},{"denom":"ASSET12","index":"0.000025049012446876"},{"denom":"ASSET13","index":"0.000008256026418292"},{"denom":"ASSET14","index":"0.000024133914778951"},{"denom":"ASSET15","index":"0.000019001193386697"},{"denom":"ASSET16","index":"0.000011741691861213"},{"denom":"ASSET17","index":"0.000009205139483526"},{"denom":"ASSET18","index":"0.000003811157018018"},{"denom":"ASSET2","index":"0.000008011229275486"},{"denom":"ASSET3","index":"0.000002226652147557"},{"denom":"ASSET4","index":"0.000021454928269907"},{"denom":"ASSET5","index":"0.000001734689929917"},{"denom":"ASSET6","index":"0.000007001091110949"},{"denom":"ASSET7","index":"0.000010994186615549"},{"denom":"ASSET8","index":"0.000015007966738007"},{"denom":"ASSET9","index":"0.000006372340046203"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001543375593884"},{"denom":"ASSET1","index":"0.000012871309378663"},{"denom":"ASSET10","index":"0.000008967332198598"},{"denom":"ASSET11","index":"0.000012451619524186"},{"denom":"ASSET12","index":"0.000011213472915376"},{"denom":"ASSET13","index":"0.000003858438984711"},{"denom":"ASSET14","index":"0.000011631932007817"},{"denom":"ASSET15","index":"0.000008316259081242"},{"denom":"ASSET16","index":"0.000005798119954378"},{"denom":"ASSET17","index":"0.000004118129774432"},{"denom":"ASSET18","index":"0.000001961834686325"},{"denom":"ASSET2","index":"0.000003799362406955"},{"denom":"ASSET3","index":"0.000001111378119041"},{"denom":"ASSET4","index":"0.000010460246548983"},{"denom":"ASSET5","index":"0.000000862764187650"},{"denom":"ASSET6","index":"0.000003511364090393"},{"denom":"ASSET7","index":"0.000005377199337864"},{"denom":"ASSET8","index":"0.000007016574370602"},{"denom":"ASSET9","index":"0.000003030136134086"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003061984062566"},{"denom":"ASSET1","index":"0.000025984754387841"},{"denom":"ASSET10","index":"0.000020750278468036"},{"denom":"ASSET11","index":"0.000025825260107338"},{"denom":"ASSET12","index":"0.000024630365005548"},{"denom":"ASSET13","index":"0.000008111503841622"},{"denom":"ASSET14","index":"0.000023701848593669"},{"denom":"ASSET15","index":"0.000018689068915475"},{"denom":"ASSET16","index":"0.000011526541772952"},{"denom":"ASSET17","index":"0.000009050861170220"},{"denom":"ASSET18","index":"0.000003739265665267"},{"denom":"ASSET2","index":"0.000007869809789784"},{"denom":"ASSET3","index":"0.000002185113944095"},{"denom":"ASSET4","index":"0.000021066477214749"},{"denom":"ASSET5","index":"0.000001702392649313"},{"denom":"ASSET6","index":"0.000006871251000760"},{"denom":"ASSET7","index":"0.000010794622225013"},{"denom":"ASSET8","index":"0.000014746923085504"},{"denom":"ASSET9","index":"0.000006258895459680"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001745217677213"},{"denom":"ASSET1","index":"0.000014553842410819"},{"denom":"ASSET10","index":"0.000010139729507131"},{"denom":"ASSET11","index":"0.000014078681363843"},{"denom":"ASSET12","index":"0.000012678362515121"},{"denom":"ASSET13","index":"0.000004362304066790"},{"denom":"ASSET14","index":"0.000013152043309614"},{"denom":"ASSET15","index":"0.000009402563770700"},{"denom":"ASSET16","index":"0.000006556038246289"},{"denom":"ASSET17","index":"0.000004655394058383"},{"denom":"ASSET18","index":"0.000002217418219224"},{"denom":"ASSET2","index":"0.000004295692705065"},{"denom":"ASSET3","index":"0.000001256734357891"},{"denom":"ASSET4","index":"0.000011827217337515"},{"denom":"ASSET5","index":"0.000000975486386160"},{"denom":"ASSET6","index":"0.000003970037158850"},{"denom":"ASSET7","index":"0.000006079396946830"},{"denom":"ASSET8","index":"0.000007932673055287"},{"denom":"ASSET9","index":"0.000003426784497665"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003296605577903"},{"denom":"ASSET1","index":"0.000027950980635352"},{"denom":"ASSET10","index":"0.000022177590033485"},{"denom":"ASSET11","index":"0.000027741245317152"},{"denom":"ASSET12","index":"0.000026384837371861"},{"denom":"ASSET13","index":"0.000008707523198290"},{"denom":"ASSET14","index":"0.000025482773879389"},{"denom":"ASSET15","index":"0.000019999205716580"},{"denom":"ASSET16","index":"0.000012408342313410"},{"denom":"ASSET17","index":"0.000009694954350389"},{"denom":"ASSET18","index":"0.000004033447725414"},{"denom":"ASSET2","index":"0.000008454290496983"},{"denom":"ASSET3","index":"0.000002354114882033"},{"denom":"ASSET4","index":"0.000022662624820802"},{"denom":"ASSET5","index":"0.000001833709311257"},{"denom":"ASSET6","index":"0.000007402928859239"},{"denom":"ASSET7","index":"0.000011614131087351"},{"denom":"ASSET8","index":"0.000015829970625061"},{"denom":"ASSET9","index":"0.000006725199056296"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001696105704481"},{"denom":"ASSET1","index":"0.000014140754037071"},{"denom":"ASSET10","index":"0.000009851931515387"},{"denom":"ASSET11","index":"0.000013679695806241"},{"denom":"ASSET12","index":"0.000012318593050331"},{"denom":"ASSET13","index":"0.000004239283286244"},{"denom":"ASSET14","index":"0.000012779160793682"},{"denom":"ASSET15","index":"0.000009136800770120"},{"denom":"ASSET16","index":"0.000006369960897657"},{"denom":"ASSET17","index":"0.000004523766024416"},{"denom":"ASSET18","index":"0.000002155201985393"},{"denom":"ASSET2","index":"0.000004174048451456"},{"denom":"ASSET3","index":"0.000001220823336742"},{"denom":"ASSET4","index":"0.000011492121647193"},{"denom":"ASSET5","index":"0.000000947621810601"},{"denom":"ASSET6","index":"0.000003857193539630"},{"denom":"ASSET7","index":"0.000005907431204387"},{"denom":"ASSET8","index":"0.000007708991716984"},{"denom":"ASSET9","index":"0.000003329429011573"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003278023650839"},{"denom":"ASSET1","index":"0.000027801084973989"},{"denom":"ASSET10","index":"0.000022126343818190"},{"denom":"ASSET11","index":"0.000027610641458424"},{"denom":"ASSET12","index":"0.000026294522151225"},{"denom":"ASSET13","index":"0.000008669795972838"},{"denom":"ASSET14","index":"0.000025352034708572"},{"denom":"ASSET15","index":"0.000019941753748345"},{"denom":"ASSET16","index":"0.000012337408081897"},{"denom":"ASSET17","index":"0.000009662232510971"},{"denom":"ASSET18","index":"0.000004006663612522"},{"denom":"ASSET2","index":"0.000008414274009770"},{"denom":"ASSET3","index":"0.000002339697370568"},{"denom":"ASSET4","index":"0.000022540556466857"},{"denom":"ASSET5","index":"0.000001822656991491"},{"denom":"ASSET6","index":"0.000007357334263189"},{"denom":"ASSET7","index":"0.000011551068960203"},{"denom":"ASSET8","index":"0.000015761386047857"},{"denom":"ASSET9","index":"0.000006692834331509"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001139195115521"},{"denom":"ASSET1","index":"0.000009496890331931"},{"denom":"ASSET10","index":"0.000006616523219856"},{"denom":"ASSET11","index":"0.000009187371854639"},{"denom":"ASSET12","index":"0.000008273091178185"},{"denom":"ASSET13","index":"0.000002846943294505"},{"denom":"ASSET14","index":"0.000008582261490710"},{"denom":"ASSET15","index":"0.000006136055842283"},{"denom":"ASSET16","index":"0.000004278248649000"},{"denom":"ASSET17","index":"0.000003038433916001"},{"denom":"ASSET18","index":"0.000001447320933748"},{"denom":"ASSET2","index":"0.000002803422698710"},{"denom":"ASSET3","index":"0.000000819928024772"},{"denom":"ASSET4","index":"0.000007718116540611"},{"denom":"ASSET5","index":"0.000000636445192901"},{"denom":"ASSET6","index":"0.000002590694026466"},{"denom":"ASSET7","index":"0.000003967685677409"},{"denom":"ASSET8","index":"0.000005177210075735"},{"denom":"ASSET9","index":"0.000002236262294314"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000002735257365218"},{"denom":"ASSET1","index":"0.000023278157661741"},{"denom":"ASSET10","index":"0.000018999615823078"},{"denom":"ASSET11","index":"0.000023241706683585"},{"denom":"ASSET12","index":"0.000022372793234045"},{"denom":"ASSET13","index":"0.000007316911351959"},{"denom":"ASSET14","index":"0.000021266506066871"},{"denom":"ASSET15","index":"0.000017036720297506"},{"denom":"ASSET16","index":"0.000010298479660409"},{"denom":"ASSET17","index":"0.000008222611745720"},{"denom":"ASSET18","index":"0.000003315370510511"},{"denom":"ASSET2","index":"0.000007081336162231"},{"denom":"ASSET3","index":"0.000001948923871674"},{"denom":"ASSET4","index":"0.000018864412124408"},{"denom":"ASSET5","index":"0.000001519377842401"},{"denom":"ASSET6","index":"0.000006121992555640"},{"denom":"ASSET7","index":"0.000009661272655042"},{"denom":"ASSET8","index":"0.000013300968175029"},{"denom":"ASSET9","index":"0.000005629514833023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001583959364947"},{"denom":"ASSET1","index":"0.000013443347430705"},{"denom":"ASSET10","index":"0.000009381913161610"},{"denom":"ASSET11","index":"0.000012996589661105"},{"denom":"ASSET12","index":"0.000011696930694994"},{"denom":"ASSET13","index":"0.000004020819926404"},{"denom":"ASSET14","index":"0.000012143688464595"},{"denom":"ASSET15","index":"0.000008691469335864"},{"denom":"ASSET16","index":"0.000006051537060952"},{"denom":"ASSET17","index":"0.000004305120325241"},{"denom":"ASSET18","index":"0.000002030717134548"},{"denom":"ASSET2","index":"0.000003939591241022"},{"denom":"ASSET3","index":"0.000001137201595347"},{"denom":"ASSET4","index":"0.000010925258183866"},{"denom":"ASSET5","index":"0.000000893515539201"},{"denom":"ASSET6","index":"0.000003655290842186"},{"denom":"ASSET7","index":"0.000005604779291351"},{"denom":"ASSET8","index":"0.000007310581684371"},{"denom":"ASSET9","index":"0.000003167918729894"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003310378542013"},{"denom":"ASSET1","index":"0.000028352771206955"},{"denom":"ASSET10","index":"0.000022778987578468"},{"denom":"ASSET11","index":"0.000028201706998458"},{"denom":"ASSET12","index":"0.000026949790221900"},{"denom":"ASSET13","index":"0.000008856641706946"},{"denom":"ASSET14","index":"0.000025865717784540"},{"denom":"ASSET15","index":"0.000020483790155485"},{"denom":"ASSET16","index":"0.000012564495758376"},{"denom":"ASSET17","index":"0.000009912517491786"},{"denom":"ASSET18","index":"0.000004051289802086"},{"denom":"ASSET2","index":"0.000008567503486413"},{"denom":"ASSET3","index":"0.000002358477605528"},{"denom":"ASSET4","index":"0.000022984011222606"},{"denom":"ASSET5","index":"0.000001848359330263"},{"denom":"ASSET6","index":"0.000007474666006436"},{"denom":"ASSET7","index":"0.000011763521743703"},{"denom":"ASSET8","index":"0.000016098224703406"},{"denom":"ASSET9","index":"0.000006837907042961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001549911588522"},{"denom":"ASSET1","index":"0.000012922257740418"},{"denom":"ASSET10","index":"0.000009003081854783"},{"denom":"ASSET11","index":"0.000012500946332712"},{"denom":"ASSET12","index":"0.000011256607989023"},{"denom":"ASSET13","index":"0.000003873860414458"},{"denom":"ASSET14","index":"0.000011677307025497"},{"denom":"ASSET15","index":"0.000008349069378868"},{"denom":"ASSET16","index":"0.000005821200932633"},{"denom":"ASSET17","index":"0.000004134118188113"},{"denom":"ASSET18","index":"0.000001969385882532"},{"denom":"ASSET2","index":"0.000003814460404941"},{"denom":"ASSET3","index":"0.000001115740384942"},{"denom":"ASSET4","index":"0.000010501554259806"},{"denom":"ASSET5","index":"0.000000865892922233"},{"denom":"ASSET6","index":"0.000003524808812143"},{"denom":"ASSET7","index":"0.000005398664782463"},{"denom":"ASSET8","index":"0.000007044106283197"},{"denom":"ASSET9","index":"0.000003042260281224"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003086330633608"},{"denom":"ASSET1","index":"0.000026187842720704"},{"denom":"ASSET10","index":"0.000020922921087024"},{"denom":"ASSET11","index":"0.000026029396638226"},{"denom":"ASSET12","index":"0.000024828709288325"},{"denom":"ASSET13","index":"0.000008176601230700"},{"denom":"ASSET14","index":"0.000023887113573615"},{"denom":"ASSET15","index":"0.000018841856891118"},{"denom":"ASSET16","index":"0.000011616230118922"},{"denom":"ASSET17","index":"0.000009124242236202"},{"denom":"ASSET18","index":"0.000003767471049721"},{"denom":"ASSET2","index":"0.000007932284099147"},{"denom":"ASSET3","index":"0.000002202458257762"},{"denom":"ASSET4","index":"0.000021230824628511"},{"denom":"ASSET5","index":"0.000001715648257347"},{"denom":"ASSET6","index":"0.000006923830152599"},{"denom":"ASSET7","index":"0.000010879262909104"},{"denom":"ASSET8","index":"0.000014863870027497"},{"denom":"ASSET9","index":"0.000006308409915314"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001535524830156"},{"denom":"ASSET1","index":"0.000012804491333161"},{"denom":"ASSET10","index":"0.000008921035499248"},{"denom":"ASSET11","index":"0.000012386713938596"},{"denom":"ASSET12","index":"0.000011154325740380"},{"denom":"ASSET13","index":"0.000003838812075390"},{"denom":"ASSET14","index":"0.000011571000819920"},{"denom":"ASSET15","index":"0.000008272874264409"},{"denom":"ASSET16","index":"0.000005767863369556"},{"denom":"ASSET17","index":"0.000004096202633783"},{"denom":"ASSET18","index":"0.000001951097594671"},{"denom":"ASSET2","index":"0.000003779838221540"},{"denom":"ASSET3","index":"0.000001105621970313"},{"denom":"ASSET4","index":"0.000010405853838244"},{"denom":"ASSET5","index":"0.000000858152247148"},{"denom":"ASSET6","index":"0.000003492685157466"},{"denom":"ASSET7","index":"0.000005348983659966"},{"denom":"ASSET8","index":"0.000006980409897318"},{"denom":"ASSET9","index":"0.000003014831594025"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003051773960929"},{"denom":"ASSET1","index":"0.000025898629359040"},{"denom":"ASSET10","index":"0.000020686863907037"},{"denom":"ASSET11","index":"0.000025740096441319"},{"denom":"ASSET12","index":"0.000024551000542772"},{"denom":"ASSET13","index":"0.000008085532012369"},{"denom":"ASSET14","index":"0.000023622558405526"},{"denom":"ASSET15","index":"0.000018629920308839"},{"denom":"ASSET16","index":"0.000011487540137638"},{"denom":"ASSET17","index":"0.000009021847693812"},{"denom":"ASSET18","index":"0.000003725572559942"},{"denom":"ASSET2","index":"0.000007844221178735"},{"denom":"ASSET3","index":"0.000002178252359768"},{"denom":"ASSET4","index":"0.000020996168979716"},{"denom":"ASSET5","index":"0.000001697004218389"},{"denom":"ASSET6","index":"0.000006847583721256"},{"denom":"ASSET7","index":"0.000010758483833946"},{"denom":"ASSET8","index":"0.000014699172267780"},{"denom":"ASSET9","index":"0.000006238834616461"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001813824295534"},{"denom":"ASSET1","index":"0.000015126179984122"},{"denom":"ASSET10","index":"0.000010538420488017"},{"denom":"ASSET11","index":"0.000014633035948465"},{"denom":"ASSET12","index":"0.000013177247733614"},{"denom":"ASSET13","index":"0.000004534560738834"},{"denom":"ASSET14","index":"0.000013669547344553"},{"denom":"ASSET15","index":"0.000009773371692973"},{"denom":"ASSET16","index":"0.000006813663054312"},{"denom":"ASSET17","index":"0.000004839398062246"},{"denom":"ASSET18","index":"0.000002305279481754"},{"denom":"ASSET2","index":"0.000004465317911910"},{"denom":"ASSET3","index":"0.000001306325039660"},{"denom":"ASSET4","index":"0.000012293135053249"},{"denom":"ASSET5","index":"0.000001013309662309"},{"denom":"ASSET6","index":"0.000004125859175036"},{"denom":"ASSET7","index":"0.000006318830169217"},{"denom":"ASSET8","index":"0.000008245807377042"},{"denom":"ASSET9","index":"0.000003561783463017"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003452880861936"},{"denom":"ASSET1","index":"0.000029278299049117"},{"denom":"ASSET10","index":"0.000023254773922096"},{"denom":"ASSET11","index":"0.000029065569213605"},{"denom":"ASSET12","index":"0.000027656204711461"},{"denom":"ASSET13","index":"0.000009124518140406"},{"denom":"ASSET14","index":"0.000026695142606829"},{"denom":"ASSET15","index":"0.000020967476611979"},{"denom":"ASSET16","index":"0.000012995878924798"},{"denom":"ASSET17","index":"0.000010163149632422"},{"denom":"ASSET18","index":"0.000004223627093961"},{"denom":"ASSET2","index":"0.000008858348919255"},{"denom":"ASSET3","index":"0.000002465420318230"},{"denom":"ASSET4","index":"0.000023739200929128"},{"denom":"ASSET5","index":"0.000001919695214447"},{"denom":"ASSET6","index":"0.000007752150153146"},{"denom":"ASSET7","index":"0.000012165597276913"},{"denom":"ASSET8","index":"0.000016587849042771"},{"denom":"ASSET9","index":"0.000007046182609545"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001444852701297"},{"denom":"ASSET1","index":"0.000012048934466992"},{"denom":"ASSET10","index":"0.000008394653008080"},{"denom":"ASSET11","index":"0.000011656844181701"},{"denom":"ASSET12","index":"0.000010496256937239"},{"denom":"ASSET13","index":"0.000003612131753243"},{"denom":"ASSET14","index":"0.000010888347222530"},{"denom":"ASSET15","index":"0.000007784952614452"},{"denom":"ASSET16","index":"0.000005427509774140"},{"denom":"ASSET17","index":"0.000003854247504410"},{"denom":"ASSET18","index":"0.000001835962760875"},{"denom":"ASSET2","index":"0.000003556258887589"},{"denom":"ASSET3","index":"0.000001040019481734"},{"denom":"ASSET4","index":"0.000009792454875142"},{"denom":"ASSET5","index":"0.000000807705987699"},{"denom":"ASSET6","index":"0.000003286696816452"},{"denom":"ASSET7","index":"0.000005033459037423"},{"denom":"ASSET8","index":"0.000006568492504337"},{"denom":"ASSET9","index":"0.000002836773214080"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000002868026198866"},{"denom":"ASSET1","index":"0.000024339331661302"},{"denom":"ASSET10","index":"0.000019438063504597"},{"denom":"ASSET11","index":"0.000024190729344646"},{"denom":"ASSET12","index":"0.000023070632234294"},{"denom":"ASSET13","index":"0.000007598221307181"},{"denom":"ASSET14","index":"0.000022200415230506"},{"denom":"ASSET15","index":"0.000017506414948675"},{"denom":"ASSET16","index":"0.000010796282691537"},{"denom":"ASSET17","index":"0.000008477235924619"},{"denom":"ASSET18","index":"0.000003501529899130"},{"denom":"ASSET2","index":"0.000007371086117521"},{"denom":"ASSET3","index":"0.000002046801194740"},{"denom":"ASSET4","index":"0.000019732782799148"},{"denom":"ASSET5","index":"0.000001595074946946"},{"denom":"ASSET6","index":"0.000006435625489467"},{"denom":"ASSET7","index":"0.000010111140720407"},{"denom":"ASSET8","index":"0.000013813490690156"},{"denom":"ASSET9","index":"0.000005862589992841"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001655416114862"},{"denom":"ASSET1","index":"0.000013800538848519"},{"denom":"ASSET10","index":"0.000009615249134678"},{"denom":"ASSET11","index":"0.000013350879623065"},{"denom":"ASSET12","index":"0.000012022439267096"},{"denom":"ASSET13","index":"0.000004137189147657"},{"denom":"ASSET14","index":"0.000012471558036751"},{"denom":"ASSET15","index":"0.000008916980241305"},{"denom":"ASSET16","index":"0.000006216863065381"},{"denom":"ASSET17","index":"0.000004414983428766"},{"denom":"ASSET18","index":"0.000002102913517117"},{"denom":"ASSET2","index":"0.000004073955819077"},{"denom":"ASSET3","index":"0.000001191705038613"},{"denom":"ASSET4","index":"0.000011215538757958"},{"denom":"ASSET5","index":"0.000000924719873500"},{"denom":"ASSET6","index":"0.000003764274645778"},{"denom":"ASSET7","index":"0.000005765582472528"},{"denom":"ASSET8","index":"0.000007523144733557"},{"denom":"ASSET9","index":"0.000003249220268545"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003262792429801"},{"denom":"ASSET1","index":"0.000027679878715890"},{"denom":"ASSET10","index":"0.000022086570261210"},{"denom":"ASSET11","index":"0.000027505267384149"},{"denom":"ASSET12","index":"0.000026222420015979"},{"denom":"ASSET13","index":"0.000008638975204347"},{"denom":"ASSET14","index":"0.000025246236428505"},{"denom":"ASSET15","index":"0.000019895354512471"},{"denom":"ASSET16","index":"0.000012279836462442"},{"denom":"ASSET17","index":"0.000009636125515167"},{"denom":"ASSET18","index":"0.000003984145752232"},{"denom":"ASSET2","index":"0.000008382344169353"},{"denom":"ASSET3","index":"0.000002328549799735"},{"denom":"ASSET4","index":"0.000022441247538096"},{"denom":"ASSET5","index":"0.000001813932132265"},{"denom":"ASSET6","index":"0.000007320527694069"},{"denom":"ASSET7","index":"0.000011499571173317"},{"denom":"ASSET8","index":"0.000015704553099640"},{"denom":"ASSET9","index":"0.000006666608399750"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001676736923170"},{"denom":"ASSET1","index":"0.000013985463602132"},{"denom":"ASSET10","index":"0.000009743339709608"},{"denom":"ASSET11","index":"0.000013528824721587"},{"denom":"ASSET12","index":"0.000012182509640070"},{"denom":"ASSET13","index":"0.000004192868462713"},{"denom":"ASSET14","index":"0.000012638122365828"},{"denom":"ASSET15","index":"0.000009036319060854"},{"denom":"ASSET16","index":"0.000006299564241947"},{"denom":"ASSET17","index":"0.000004474034874554"},{"denom":"ASSET18","index":"0.000002131323494140"},{"denom":"ASSET2","index":"0.000004128220711085"},{"denom":"ASSET3","index":"0.000001207784185172"},{"denom":"ASSET4","index":"0.000011365690429028"},{"denom":"ASSET5","index":"0.000000936879321208"},{"denom":"ASSET6","index":"0.000003814217346036"},{"denom":"ASSET7","index":"0.000005841899206614"},{"denom":"ASSET8","index":"0.000007623303918134"},{"denom":"ASSET9","index":"0.000003292930713863"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003296156578493"},{"denom":"ASSET1","index":"0.000027968412540894"},{"denom":"ASSET10","index":"0.000022307812536905"},{"denom":"ASSET11","index":"0.000027788867279184"},{"denom":"ASSET12","index":"0.000026488589695468"},{"denom":"ASSET13","index":"0.000008728285856057"},{"denom":"ASSET14","index":"0.000025508064125070"},{"denom":"ASSET15","index":"0.000020096610749334"},{"denom":"ASSET16","index":"0.000012407784704791"},{"denom":"ASSET17","index":"0.000009734180928237"},{"denom":"ASSET18","index":"0.000004026678592252"},{"denom":"ASSET2","index":"0.000008468774984810"},{"denom":"ASSET3","index":"0.000002353220293961"},{"denom":"ASSET4","index":"0.000022675279511256"},{"denom":"ASSET5","index":"0.000001832728492238"},{"denom":"ASSET6","index":"0.000007397034942132"},{"denom":"ASSET7","index":"0.000011618881320506"},{"denom":"ASSET8","index":"0.000015866042832442"},{"denom":"ASSET9","index":"0.000006735898552490"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001687654189845"},{"denom":"ASSET1","index":"0.000014079752531439"},{"denom":"ASSET10","index":"0.000009809029374167"},{"denom":"ASSET11","index":"0.000013620990639222"},{"denom":"ASSET12","index":"0.000012264971552184"},{"denom":"ASSET13","index":"0.000004220977891851"},{"denom":"ASSET14","index":"0.000012723733444402"},{"denom":"ASSET15","index":"0.000009097856320367"},{"denom":"ASSET16","index":"0.000006341600132585"},{"denom":"ASSET17","index":"0.000004504710146476"},{"denom":"ASSET18","index":"0.000002144573664825"},{"denom":"ASSET2","index":"0.000004156493288528"},{"denom":"ASSET3","index":"0.000001215995376963"},{"denom":"ASSET4","index":"0.000011441411046878"},{"denom":"ASSET5","index":"0.000000943317625765"},{"denom":"ASSET6","index":"0.000003839597523622"},{"denom":"ASSET7","index":"0.000005880995823129"},{"denom":"ASSET8","index":"0.000007675510212768"},{"denom":"ASSET9","index":"0.000003314508610843"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003237925740153"},{"denom":"ASSET1","index":"0.000027468087048908"},{"denom":"ASSET10","index":"0.000021838560142362"},{"denom":"ASSET11","index":"0.000027274223261348"},{"denom":"ASSET12","index":"0.000025962125103579"},{"denom":"ASSET13","index":"0.000008562973508850"},{"denom":"ASSET14","index":"0.000025046299162567"},{"denom":"ASSET15","index":"0.000019687604125947"},{"denom":"ASSET16","index":"0.000012189946370622"},{"denom":"ASSET17","index":"0.000009540519193028"},{"denom":"ASSET18","index":"0.000003959057055270"},{"denom":"ASSET2","index":"0.000008312511220651"},{"denom":"ASSET3","index":"0.000002312646079660"},{"denom":"ASSET4","index":"0.000022269978905361"},{"denom":"ASSET5","index":"0.000001800462011039"},{"denom":"ASSET6","index":"0.000007270233858279"},{"denom":"ASSET7","index":"0.000011411601588483"},{"denom":"ASSET8","index":"0.000015567552190875"},{"denom":"ASSET9","index":"0.000006610637099613"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001700269946448"},{"denom":"ASSET1","index":"0.000014175647296985"},{"denom":"ASSET10","index":"0.000009876508679424"},{"denom":"ASSET11","index":"0.000013714231996791"},{"denom":"ASSET12","index":"0.000012349169664489"},{"denom":"ASSET13","index":"0.000004249665204630"},{"denom":"ASSET14","index":"0.000012810584964683"},{"denom":"ASSET15","index":"0.000009159649022667"},{"denom":"ASSET16","index":"0.000006386108914062"},{"denom":"ASSET17","index":"0.000004535399405845"},{"denom":"ASSET18","index":"0.000002160675585153"},{"denom":"ASSET2","index":"0.000004184037207885"},{"denom":"ASSET3","index":"0.000001223709723928"},{"denom":"ASSET4","index":"0.000011520237582522"},{"denom":"ASSET5","index":"0.000000950091460574"},{"denom":"ASSET6","index":"0.000003867003500531"},{"denom":"ASSET7","index":"0.000005922674290891"},{"denom":"ASSET8","index":"0.000007727949032131"},{"denom":"ASSET9","index":"0.000003337940880615"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003224934301433"},{"denom":"ASSET1","index":"0.000027341438894536"},{"denom":"ASSET10","index":"0.000021706571274337"},{"denom":"ASSET11","index":"0.000027141091242061"},{"denom":"ASSET12","index":"0.000025819235056226"},{"denom":"ASSET13","index":"0.000008520116782966"},{"denom":"ASSET14","index":"0.000024928444433519"},{"denom":"ASSET15","index":"0.000019573794936329"},{"denom":"ASSET16","index":"0.000012137286393349"},{"denom":"ASSET17","index":"0.000009487995483061"},{"denom":"ASSET18","index":"0.000003945309126507"},{"denom":"ASSET2","index":"0.000008271045740629"},{"denom":"ASSET3","index":"0.000002302032616683"},{"denom":"ASSET4","index":"0.000022168721917699"},{"denom":"ASSET5","index":"0.000001793343624246"},{"denom":"ASSET6","index":"0.000007240378309003"},{"denom":"ASSET7","index":"0.000011361888746536"},{"denom":"ASSET8","index":"0.000015488944629697"},{"denom":"ASSET9","index":"0.000006579500326985"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001505652349479"},{"denom":"ASSET1","index":"0.000012557843622987"},{"denom":"ASSET10","index":"0.000008748308836028"},{"denom":"ASSET11","index":"0.000012147743761261"},{"denom":"ASSET12","index":"0.000010939413811534"},{"denom":"ASSET13","index":"0.000003764130873697"},{"denom":"ASSET14","index":"0.000011348049030896"},{"denom":"ASSET15","index":"0.000008114118692716"},{"denom":"ASSET16","index":"0.000005656448807088"},{"denom":"ASSET17","index":"0.000004017514002549"},{"denom":"ASSET18","index":"0.000001912822926478"},{"denom":"ASSET2","index":"0.000003707009821528"},{"denom":"ASSET3","index":"0.000001083835348847"},{"denom":"ASSET4","index":"0.000010205627987517"},{"denom":"ASSET5","index":"0.000000840704716538"},{"denom":"ASSET6","index":"0.000003424333845410"},{"denom":"ASSET7","index":"0.000005246348945363"},{"denom":"ASSET8","index":"0.000006845738406093"},{"denom":"ASSET9","index":"0.000002955648289152"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000002959758868257"},{"denom":"ASSET1","index":"0.000025116229265451"},{"denom":"ASSET10","index":"0.000020033024535037"},{"denom":"ASSET11","index":"0.000024955202637112"},{"denom":"ASSET12","index":"0.000023787913163340"},{"denom":"ASSET13","index":"0.000007837044315100"},{"denom":"ASSET14","index":"0.000022906603767748"},{"denom":"ASSET15","index":"0.000018047329062837"},{"denom":"ASSET16","index":"0.000011142428291313"},{"denom":"ASSET17","index":"0.000008741414303940"},{"denom":"ASSET18","index":"0.000003614587489816"},{"denom":"ASSET2","index":"0.000007605147442913"},{"denom":"ASSET3","index":"0.000002112677625393"},{"denom":"ASSET4","index":"0.000020363145786569"},{"denom":"ASSET5","index":"0.000001645239564154"},{"denom":"ASSET6","index":"0.000006641765641459"},{"denom":"ASSET7","index":"0.000010434431181702"},{"denom":"ASSET8","index":"0.000014248591155217"},{"denom":"ASSET9","index":"0.000006047835874095"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001815877519749"},{"denom":"ASSET1","index":"0.000015137138459046"},{"denom":"ASSET10","index":"0.000010545739718907"},{"denom":"ASSET11","index":"0.000014644907422941"},{"denom":"ASSET12","index":"0.000013186828093302"},{"denom":"ASSET13","index":"0.000004537625601742"},{"denom":"ASSET14","index":"0.000013679059129408"},{"denom":"ASSET15","index":"0.000009780506595550"},{"denom":"ASSET16","index":"0.000006818847588397"},{"denom":"ASSET17","index":"0.000004841650653454"},{"denom":"ASSET18","index":"0.000002306040358223"},{"denom":"ASSET2","index":"0.000004467306882298"},{"denom":"ASSET3","index":"0.000001307100902598"},{"denom":"ASSET4","index":"0.000012301639507366"},{"denom":"ASSET5","index":"0.000001013416839040"},{"denom":"ASSET6","index":"0.000004128122470864"},{"denom":"ASSET7","index":"0.000006324548354661"},{"denom":"ASSET8","index":"0.000008252108546467"},{"denom":"ASSET9","index":"0.000003563504517685"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003468946703322"},{"denom":"ASSET1","index":"0.000029412495408176"},{"denom":"ASSET10","index":"0.000023372734593498"},{"denom":"ASSET11","index":"0.000029203218600002"},{"denom":"ASSET12","index":"0.000027792166579196"},{"denom":"ASSET13","index":"0.000009167641990636"},{"denom":"ASSET14","index":"0.000026818252104650"},{"denom":"ASSET15","index":"0.000021072198152383"},{"denom":"ASSET16","index":"0.000013054905852031"},{"denom":"ASSET17","index":"0.000010211457984650"},{"denom":"ASSET18","index":"0.000004240878207320"},{"denom":"ASSET2","index":"0.000008898543974195"},{"denom":"ASSET3","index":"0.000002476460623897"},{"denom":"ASSET4","index":"0.000023847831794350"},{"denom":"ASSET5","index":"0.000001927880642719"},{"denom":"ASSET6","index":"0.000007785977685579"},{"denom":"ASSET7","index":"0.000012222326144679"},{"denom":"ASSET8","index":"0.000016667230515151"},{"denom":"ASSET9","index":"0.000007078301868557"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001541968050995"},{"denom":"ASSET1","index":"0.000012857487907975"},{"denom":"ASSET10","index":"0.000008957704485900"},{"denom":"ASSET11","index":"0.000012438763825161"},{"denom":"ASSET12","index":"0.000011200869215257"},{"denom":"ASSET13","index":"0.000003854089325736"},{"denom":"ASSET14","index":"0.000011619593298070"},{"denom":"ASSET15","index":"0.000008307186714386"},{"denom":"ASSET16","index":"0.000005792349812251"},{"denom":"ASSET17","index":"0.000004113299472240"},{"denom":"ASSET18","index":"0.000001959030530305"},{"denom":"ASSET2","index":"0.000003795102401372"},{"denom":"ASSET3","index":"0.000001109951140156"},{"denom":"ASSET4","index":"0.000010448993630046"},{"denom":"ASSET5","index":"0.000000861541416423"},{"denom":"ASSET6","index":"0.000003506814193562"},{"denom":"ASSET7","index":"0.000005371133324183"},{"denom":"ASSET8","index":"0.000007009474378365"},{"denom":"ASSET9","index":"0.000003027441582881"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003053196756625"},{"denom":"ASSET1","index":"0.000025905581999278"},{"denom":"ASSET10","index":"0.000020682143152818"},{"denom":"ASSET11","index":"0.000025745380902198"},{"denom":"ASSET12","index":"0.000024550499550641"},{"denom":"ASSET13","index":"0.000008086239198545"},{"denom":"ASSET14","index":"0.000023629161089906"},{"denom":"ASSET15","index":"0.000018628151539367"},{"denom":"ASSET16","index":"0.000011492271696690"},{"denom":"ASSET17","index":"0.000009021688715966"},{"denom":"ASSET18","index":"0.000003727673632537"},{"denom":"ASSET2","index":"0.000007845443656426"},{"denom":"ASSET3","index":"0.000002178852781858"},{"denom":"ASSET4","index":"0.000021002318737231"},{"denom":"ASSET5","index":"0.000001697417622442"},{"denom":"ASSET6","index":"0.000006850319017638"},{"denom":"ASSET7","index":"0.000010761758840612"},{"denom":"ASSET8","index":"0.000014701087498525"},{"denom":"ASSET9","index":"0.000006240132889304"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001327266579501"},{"denom":"ASSET1","index":"0.000011071143497688"},{"denom":"ASSET10","index":"0.000007713614824674"},{"denom":"ASSET11","index":"0.000010710668391289"},{"denom":"ASSET12","index":"0.000009644435509525"},{"denom":"ASSET13","index":"0.000003318857014090"},{"denom":"ASSET14","index":"0.000010004910615924"},{"denom":"ASSET15","index":"0.000007152875770275"},{"denom":"ASSET16","index":"0.000004987262870528"},{"denom":"ASSET17","index":"0.000003541219052903"},{"denom":"ASSET18","index":"0.000001686360555224"},{"denom":"ASSET2","index":"0.000003267755179083"},{"denom":"ASSET3","index":"0.000000955742427695"},{"denom":"ASSET4","index":"0.000008998066353223"},{"denom":"ASSET5","index":"0.000000741667172936"},{"denom":"ASSET6","index":"0.000003019151657428"},{"denom":"ASSET7","index":"0.000004625406633453"},{"denom":"ASSET8","index":"0.000006035541053505"},{"denom":"ASSET9","index":"0.000002606193585346"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000002827520151011"},{"denom":"ASSET1","index":"0.000024027878888002"},{"denom":"ASSET10","index":"0.000019355847170480"},{"denom":"ASSET11","index":"0.000023924401086085"},{"denom":"ASSET12","index":"0.000022900407365256"},{"denom":"ASSET13","index":"0.000007521399074311"},{"denom":"ASSET14","index":"0.000021930603354990"},{"denom":"ASSET15","index":"0.000017401215805238"},{"denom":"ASSET16","index":"0.000010647310435771"},{"denom":"ASSET17","index":"0.000008415007538097"},{"denom":"ASSET18","index":"0.000003442593620109"},{"denom":"ASSET2","index":"0.000007289635767836"},{"denom":"ASSET3","index":"0.000002016810506595"},{"denom":"ASSET4","index":"0.000019477449509443"},{"denom":"ASSET5","index":"0.000001571692130579"},{"denom":"ASSET6","index":"0.000006339251488002"},{"denom":"ASSET7","index":"0.000009978075244424"},{"denom":"ASSET8","index":"0.000013673195599374"},{"denom":"ASSET9","index":"0.000005796522499795"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001571435631869"},{"denom":"ASSET1","index":"0.000013104175099655"},{"denom":"ASSET10","index":"0.000009129715488355"},{"denom":"ASSET11","index":"0.000012677036600848"},{"denom":"ASSET12","index":"0.000011415350365342"},{"denom":"ASSET13","index":"0.000003928095848150"},{"denom":"ASSET14","index":"0.000011841502401104"},{"denom":"ASSET15","index":"0.000008466812321615"},{"denom":"ASSET16","index":"0.000005902994865728"},{"denom":"ASSET17","index":"0.000004192467944409"},{"denom":"ASSET18","index":"0.000001996601204585"},{"denom":"ASSET2","index":"0.000003867921602360"},{"denom":"ASSET3","index":"0.000001131473113468"},{"denom":"ASSET4","index":"0.000010648868578800"},{"denom":"ASSET5","index":"0.000000877952110712"},{"denom":"ASSET6","index":"0.000003573955614728"},{"denom":"ASSET7","index":"0.000005473883440830"},{"denom":"ASSET8","index":"0.000007142978914228"},{"denom":"ASSET9","index":"0.000003084669944040"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003141123056438"},{"denom":"ASSET1","index":"0.000026662100889972"},{"denom":"ASSET10","index":"0.000021312054987248"},{"denom":"ASSET11","index":"0.000026503481745319"},{"denom":"ASSET12","index":"0.000025286293002787"},{"denom":"ASSET13","index":"0.000008324908472884"},{"denom":"ASSET14","index":"0.000024319980387721"},{"denom":"ASSET15","index":"0.000019190708128374"},{"denom":"ASSET16","index":"0.000011824997422058"},{"denom":"ASSET17","index":"0.000009292034078872"},{"denom":"ASSET18","index":"0.000003834040785154"},{"denom":"ASSET2","index":"0.000008076003481032"},{"denom":"ASSET3","index":"0.000002241608843356"},{"denom":"ASSET4","index":"0.000021614431804298"},{"denom":"ASSET5","index":"0.000001746420421862"},{"denom":"ASSET6","index":"0.000007047828859327"},{"denom":"ASSET7","index":"0.000011075197168484"},{"denom":"ASSET8","index":"0.000015134882092008"},{"denom":"ASSET9","index":"0.000006422749115253"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[{"denom":"ASSET0","index":"0.000001554974273829"},{"denom":"ASSET1","index":"0.000012964145980643"},{"denom":"ASSET10","index":"0.000009032293690170"},{"denom":"ASSET11","index":"0.000012541598623624"},{"denom":"ASSET12","index":"0.000011293609918011"},{"denom":"ASSET13","index":"0.000003886649549954"},{"denom":"ASSET14","index":"0.000011715371140412"},{"denom":"ASSET15","index":"0.000008376264351692"},{"denom":"ASSET16","index":"0.000005840194074962"},{"denom":"ASSET17","index":"0.000004147646243034"},{"denom":"ASSET18","index":"0.000001975556294303"},{"denom":"ASSET2","index":"0.000003826903319009"},{"denom":"ASSET3","index":"0.000001119455695618"},{"denom":"ASSET4","index":"0.000010535776146539"},{"denom":"ASSET5","index":"0.000000869071819878"},{"denom":"ASSET6","index":"0.000003536426577765"},{"denom":"ASSET7","index":"0.000005416074448708"},{"denom":"ASSET8","index":"0.000007067350213206"},{"denom":"ASSET9","index":"0.000003052560720565"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[{"denom":"ASSET0","index":"0.000003054120352223"},{"denom":"ASSET1","index":"0.000025909289170716"},{"denom":"ASSET10","index":"0.000020664041936079"},{"denom":"ASSET11","index":"0.000025743066158465"},{"denom":"ASSET12","index":"0.000024537849095602"},{"denom":"ASSET13","index":"0.000008085297309351"},{"denom":"ASSET14","index":"0.000023630023251940"},{"denom":"ASSET15","index":"0.000018615490114349"},{"denom":"ASSET16","index":"0.000011495216270003"},{"denom":"ASSET17","index":"0.000009017197770141"},{"denom":"ASSET18","index":"0.000003730110182262"},{"denom":"ASSET2","index":"0.000007845299155388"},{"denom":"ASSET3","index":"0.000002179886924088"},{"denom":"ASSET4","index":"0.000021005968780047"},{"denom":"ASSET5","index":"0.000001698230665763"},{"denom":"ASSET6","index":"0.000006853367473041"},{"denom":"ASSET7","index":"0.000010764057351149"},{"denom":"ASSET8","index":"0.000014698116791571"},{"denom":"ASSET9","index":"0.000006239964640655"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581427624565118578","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581422655913373708","reward_histories":[]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET1","snapshot":{"prev_reward_weight":"0.581417687304088981","reward_histories":[]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001587610635106"},{"denom":"ASSET1","index":"0.000013244938725362"},{"denom":"ASSET10","index":"0.000009227311812032"},{"denom":"ASSET11","index":"0.000012812935831455"},{"denom":"ASSET12","index":"0.000011538527294432"},{"denom":"ASSET13","index":"0.000003970376596809"},{"denom":"ASSET14","index":"0.000011969180179294"},{"denom":"ASSET15","index":"0.000008557707326477"},{"denom":"ASSET16","index":"0.000005967039972082"},{"denom":"ASSET17","index":"0.000004237678387413"},{"denom":"ASSET18","index":"0.000002018263519969"},{"denom":"ASSET2","index":"0.000003909626189853"},{"denom":"ASSET3","index":"0.000001143457659809"},{"denom":"ASSET4","index":"0.000010763622103487"},{"denom":"ASSET5","index":"0.000000886955941552"},{"denom":"ASSET6","index":"0.000003612624200292"},{"denom":"ASSET7","index":"0.000005533687069132"},{"denom":"ASSET8","index":"0.000007219848364411"},{"denom":"ASSET9","index":"0.000003118520890387"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003152887181228"},{"denom":"ASSET1","index":"0.000026760532918289"},{"denom":"ASSET10","index":"0.000021371603424459"},{"denom":"ASSET11","index":"0.000026596151859305"},{"denom":"ASSET12","index":"0.000025366346961436"},{"denom":"ASSET13","index":"0.000008353980761099"},{"denom":"ASSET14","index":"0.000024408754798213"},{"denom":"ASSET15","index":"0.000019248058608344"},{"denom":"ASSET16","index":"0.000011870971278696"},{"denom":"ASSET17","index":"0.000009321801721671"},{"denom":"ASSET18","index":"0.000003850124607081"},{"denom":"ASSET2","index":"0.000008105134387478"},{"denom":"ASSET3","index":"0.000002250596051831"},{"denom":"ASSET4","index":"0.000021694971342643"},{"denom":"ASSET5","index":"0.000001752750611640"},{"denom":"ASSET6","index":"0.000007075802880646"},{"denom":"ASSET7","index":"0.000011117440314842"},{"denom":"ASSET8","index":"0.000015186957305377"},{"denom":"ASSET9","index":"0.000006446159830056"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001450981944084"},{"denom":"ASSET1","index":"0.000012097851501865"},{"denom":"ASSET10","index":"0.000008428524260541"},{"denom":"ASSET11","index":"0.000011703479004578"},{"denom":"ASSET12","index":"0.000010538773481717"},{"denom":"ASSET13","index":"0.000003626563958485"},{"denom":"ASSET14","index":"0.000010932552044520"},{"denom":"ASSET15","index":"0.000007816771742159"},{"denom":"ASSET16","index":"0.000005449942823954"},{"denom":"ASSET17","index":"0.000003870671031354"},{"denom":"ASSET18","index":"0.000001843572637920"},{"denom":"ASSET2","index":"0.000003571328051486"},{"denom":"ASSET3","index":"0.000001044730757120"},{"denom":"ASSET4","index":"0.000009831991445917"},{"denom":"ASSET5","index":"0.000000810720570477"},{"denom":"ASSET6","index":"0.000003299899992359"},{"denom":"ASSET7","index":"0.000005054382457699"},{"denom":"ASSET8","index":"0.000006595048508847"},{"denom":"ASSET9","index":"0.000002848509784621"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000002831039632868"},{"denom":"ASSET1","index":"0.000024014703977493"},{"denom":"ASSET10","index":"0.000019136467933987"},{"denom":"ASSET11","index":"0.000023856136612857"},{"denom":"ASSET12","index":"0.000022731094165303"},{"denom":"ASSET13","index":"0.000007491812146677"},{"denom":"ASSET14","index":"0.000021900750691559"},{"denom":"ASSET15","index":"0.000017242457090593"},{"denom":"ASSET16","index":"0.000010655585625623"},{"denom":"ASSET17","index":"0.000008353141870908"},{"denom":"ASSET18","index":"0.000003458892129556"},{"denom":"ASSET2","index":"0.000007270317321266"},{"denom":"ASSET3","index":"0.000002020551075646"},{"denom":"ASSET4","index":"0.000019470118745656"},{"denom":"ASSET5","index":"0.000001574098937698"},{"denom":"ASSET6","index":"0.000006353413461243"},{"denom":"ASSET7","index":"0.000009977493764026"},{"denom":"ASSET8","index":"0.000013619759476676"},{"denom":"ASSET9","index":"0.000005782490697784"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001596167964962"},{"denom":"ASSET1","index":"0.000013307648687747"},{"denom":"ASSET10","index":"0.000009271254138767"},{"denom":"ASSET11","index":"0.000012873344596610"},{"denom":"ASSET12","index":"0.000011592750107942"},{"denom":"ASSET13","index":"0.000003989527201016"},{"denom":"ASSET14","index":"0.000012025715131995"},{"denom":"ASSET15","index":"0.000008598149750858"},{"denom":"ASSET16","index":"0.000005994556982506"},{"denom":"ASSET17","index":"0.000004257340617956"},{"denom":"ASSET18","index":"0.000002028240277625"},{"denom":"ASSET2","index":"0.000003928376470814"},{"denom":"ASSET3","index":"0.000001148919558672"},{"denom":"ASSET4","index":"0.000010814752131731"},{"denom":"ASSET5","index":"0.000000891818678410"},{"denom":"ASSET6","index":"0.000003630210866621"},{"denom":"ASSET7","index":"0.000005559360179979"},{"denom":"ASSET8","index":"0.000007254619109209"},{"denom":"ASSET9","index":"0.000003133416978198"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003160678210357"},{"denom":"ASSET1","index":"0.000026816731621709"},{"denom":"ASSET10","index":"0.000021409695697867"},{"denom":"ASSET11","index":"0.000026650151208928"},{"denom":"ASSET12","index":"0.000025413985003091"},{"denom":"ASSET13","index":"0.000008371194471357"},{"denom":"ASSET14","index":"0.000024459575922385"},{"denom":"ASSET15","index":"0.000019283728762326"},{"denom":"ASSET16","index":"0.000011895729224726"},{"denom":"ASSET17","index":"0.000009339186085895"},{"denom":"ASSET18","index":"0.000003859320220004"},{"denom":"ASSET2","index":"0.000008121656282140"},{"denom":"ASSET3","index":"0.000002255587694637"},{"denom":"ASSET4","index":"0.000021740936259308"},{"denom":"ASSET5","index":"0.000001757304707579"},{"denom":"ASSET6","index":"0.000007091577992612"},{"denom":"ASSET7","index":"0.000011140302591406"},{"denom":"ASSET8","index":"0.000015217956063596"},{"denom":"ASSET9","index":"0.000006459479788296"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001539653287763"},{"denom":"ASSET1","index":"0.000012837628062054"},{"denom":"ASSET10","index":"0.000008944076712630"},{"denom":"ASSET11","index":"0.000012418678362380"},{"denom":"ASSET12","index":"0.000011182855597091"},{"denom":"ASSET13","index":"0.000003848344731893"},{"denom":"ASSET14","index":"0.000011600753980079"},{"denom":"ASSET15","index":"0.000008294363000211"},{"denom":"ASSET16","index":"0.000005782767435536"},{"denom":"ASSET17","index":"0.000004106968636837"},{"denom":"ASSET18","index":"0.000001956500354065"},{"denom":"ASSET2","index":"0.000003789470997435"},{"denom":"ASSET3","index":"0.000001108613446191"},{"denom":"ASSET4","index":"0.000010432741141086"},{"denom":"ASSET5","index":"0.000000860502708115"},{"denom":"ASSET6","index":"0.000003501935883605"},{"denom":"ASSET7","index":"0.000005362766419174"},{"denom":"ASSET8","index":"0.000006998089525433"},{"denom":"ASSET9","index":"0.000003022535474442"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003102081054533"},{"denom":"ASSET1","index":"0.000026328097047411"},{"denom":"ASSET10","index":"0.000021065731925672"},{"denom":"ASSET11","index":"0.000026176422512857"},{"denom":"ASSET12","index":"0.000024984864029023"},{"denom":"ASSET13","index":"0.000008223750690350"},{"denom":"ASSET14","index":"0.000024017391771060"},{"denom":"ASSET15","index":"0.000018965095888316"},{"denom":"ASSET16","index":"0.000011675661088751"},{"denom":"ASSET17","index":"0.000009181817821335"},{"denom":"ASSET18","index":"0.000003784851704842"},{"denom":"ASSET2","index":"0.000007977007181168"},{"denom":"ASSET3","index":"0.000002213531006169"},{"denom":"ASSET4","index":"0.000021343717572048"},{"denom":"ASSET5","index":"0.000001724500934679"},{"denom":"ASSET6","index":"0.000006958604580417"},{"denom":"ASSET7","index":"0.000010936011139136"},{"denom":"ASSET8","index":"0.000014950117004491"},{"denom":"ASSET9","index":"0.000006344046059941"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001722784092424"},{"denom":"ASSET1","index":"0.000014376047839207"},{"denom":"ASSET10","index":"0.000010014727915911"},{"denom":"ASSET11","index":"0.000013905627425621"},{"denom":"ASSET12","index":"0.000012523636788373"},{"denom":"ASSET13","index":"0.000004309050988454"},{"denom":"ASSET14","index":"0.000012989875687172"},{"denom":"ASSET15","index":"0.000009287144342897"},{"denom":"ASSET16","index":"0.000006475075648346"},{"denom":"ASSET17","index":"0.000004597575508787"},{"denom":"ASSET18","index":"0.000002191113748617"},{"denom":"ASSET2","index":"0.000004242146751855"},{"denom":"ASSET3","index":"0.000001239819134475"},{"denom":"ASSET4","index":"0.000011683152316098"},{"denom":"ASSET5","index":"0.000000961748401110"},{"denom":"ASSET6","index":"0.000003920170113222"},{"denom":"ASSET7","index":"0.000006004655234759"},{"denom":"ASSET8","index":"0.000007836158711656"},{"denom":"ASSET9","index":"0.000003384936220430"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003308323901116"},{"denom":"ASSET1","index":"0.000028066718381779"},{"denom":"ASSET10","index":"0.000022316311421496"},{"denom":"ASSET11","index":"0.000027867424204892"},{"denom":"ASSET12","index":"0.000026530665881565"},{"denom":"ASSET13","index":"0.000008749579510737"},{"denom":"ASSET14","index":"0.000025590688346390"},{"denom":"ASSET15","index":"0.000020116135001180"},{"denom":"ASSET16","index":"0.000012455644018572"},{"denom":"ASSET17","index":"0.000009747635771928"},{"denom":"ASSET18","index":"0.000004046709206696"},{"denom":"ASSET2","index":"0.000008491843085820"},{"denom":"ASSET3","index":"0.000002361259343526"},{"denom":"ASSET4","index":"0.000022756236881458"},{"denom":"ASSET5","index":"0.000001838827056256"},{"denom":"ASSET6","index":"0.000007428217086977"},{"denom":"ASSET7","index":"0.000011660835649526"},{"denom":"ASSET8","index":"0.000015906513514404"},{"denom":"ASSET9","index":"0.000006755948018281"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001677980890787"},{"denom":"ASSET1","index":"0.000013990275877081"},{"denom":"ASSET10","index":"0.000009746835585844"},{"denom":"ASSET11","index":"0.000013534047272362"},{"denom":"ASSET12","index":"0.000012187401487418"},{"denom":"ASSET13","index":"0.000004194217559326"},{"denom":"ASSET14","index":"0.000012642160756856"},{"denom":"ASSET15","index":"0.000009039350648091"},{"denom":"ASSET16","index":"0.000006301979019776"},{"denom":"ASSET17","index":"0.000004475595265619"},{"denom":"ASSET18","index":"0.000002132005492585"},{"denom":"ASSET2","index":"0.000004129566806967"},{"denom":"ASSET3","index":"0.000001207793600899"},{"denom":"ASSET4","index":"0.000011368981735957"},{"denom":"ASSET5","index":"0.000000937435909214"},{"denom":"ASSET6","index":"0.000003815863724495"},{"denom":"ASSET7","index":"0.000005844281079776"},{"denom":"ASSET8","index":"0.000007626584775507"},{"denom":"ASSET9","index":"0.000003293515032135"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003299297789724"},{"denom":"ASSET1","index":"0.000027989603079017"},{"denom":"ASSET10","index":"0.000022326156077139"},{"denom":"ASSET11","index":"0.000027810817552502"},{"denom":"ASSET12","index":"0.000026510364756940"},{"denom":"ASSET13","index":"0.000008734817330461"},{"denom":"ASSET14","index":"0.000025527438517331"},{"denom":"ASSET15","index":"0.000020112836713905"},{"denom":"ASSET16","index":"0.000012417417558556"},{"denom":"ASSET17","index":"0.000009741881197111"},{"denom":"ASSET18","index":"0.000004029624902086"},{"denom":"ASSET2","index":"0.000008475129511821"},{"denom":"ASSET3","index":"0.000002354634361983"},{"denom":"ASSET4","index":"0.000022691681830907"},{"denom":"ASSET5","index":"0.000001834207215432"},{"denom":"ASSET6","index":"0.000007402948949368"},{"denom":"ASSET7","index":"0.000011627814435586"},{"denom":"ASSET8","index":"0.000015878876786083"},{"denom":"ASSET9","index":"0.000006740310437402"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001570026110869"},{"denom":"ASSET1","index":"0.000013093495665706"},{"denom":"ASSET10","index":"0.000009121814411369"},{"denom":"ASSET11","index":"0.000012665871768525"},{"denom":"ASSET12","index":"0.000011405375746022"},{"denom":"ASSET13","index":"0.000003924443730811"},{"denom":"ASSET14","index":"0.000011831756550478"},{"denom":"ASSET15","index":"0.000008459245989284"},{"denom":"ASSET16","index":"0.000005898474977098"},{"denom":"ASSET17","index":"0.000004187979388376"},{"denom":"ASSET18","index":"0.000001995163822601"},{"denom":"ASSET2","index":"0.000003864775280042"},{"denom":"ASSET3","index":"0.000001129971286445"},{"denom":"ASSET4","index":"0.000010639630627815"},{"denom":"ASSET5","index":"0.000000877623463400"},{"denom":"ASSET6","index":"0.000003571405397092"},{"denom":"ASSET7","index":"0.000005469607987193"},{"denom":"ASSET8","index":"0.000007137838423287"},{"denom":"ASSET9","index":"0.000003082869956418"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003142586597057"},{"denom":"ASSET1","index":"0.000026671940208455"},{"denom":"ASSET10","index":"0.000021322845581004"},{"denom":"ASSET11","index":"0.000026513185667064"},{"denom":"ASSET12","index":"0.000025297681895631"},{"denom":"ASSET13","index":"0.000008328263582513"},{"denom":"ASSET14","index":"0.000024329302916923"},{"denom":"ASSET15","index":"0.000019199384187435"},{"denom":"ASSET16","index":"0.000011829863063918"},{"denom":"ASSET17","index":"0.000009295955073087"},{"denom":"ASSET18","index":"0.000003835509513951"},{"denom":"ASSET2","index":"0.000008079410847125"},{"denom":"ASSET3","index":"0.000002242309830967"},{"denom":"ASSET4","index":"0.000021622076491366"},{"denom":"ASSET5","index":"0.000001747112267207"},{"denom":"ASSET6","index":"0.000007050444762949"},{"denom":"ASSET7","index":"0.000011079003337441"},{"denom":"ASSET8","index":"0.000015142122511204"},{"denom":"ASSET9","index":"0.000006425848418438"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001808467589320"},{"denom":"ASSET1","index":"0.000015078627759778"},{"denom":"ASSET10","index":"0.000010504031371633"},{"denom":"ASSET11","index":"0.000014586692317421"},{"denom":"ASSET12","index":"0.000013135079536696"},{"denom":"ASSET13","index":"0.000004520160908868"},{"denom":"ASSET14","index":"0.000013624998850191"},{"denom":"ASSET15","index":"0.000009741934661752"},{"denom":"ASSET16","index":"0.000006792338136474"},{"denom":"ASSET17","index":"0.000004822580238185"},{"denom":"ASSET18","index":"0.000002296370773952"},{"denom":"ASSET2","index":"0.000004449596398694"},{"denom":"ASSET3","index":"0.000001300403116066"},{"denom":"ASSET4","index":"0.000012254031223951"},{"denom":"ASSET5","index":"0.000001010080559921"},{"denom":"ASSET6","index":"0.000004112902878720"},{"denom":"ASSET7","index":"0.000006298386565256"},{"denom":"ASSET8","index":"0.000008219757370854"},{"denom":"ASSET9","index":"0.000003550402926189"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003309574221953"},{"denom":"ASSET1","index":"0.000028041386020893"},{"denom":"ASSET10","index":"0.000022151472675705"},{"denom":"ASSET11","index":"0.000027806413413432"},{"denom":"ASSET12","index":"0.000026397319662942"},{"denom":"ASSET13","index":"0.000008723998941637"},{"denom":"ASSET14","index":"0.000025556208464743"},{"denom":"ASSET15","index":"0.000019995491235522"},{"denom":"ASSET16","index":"0.000012454763771642"},{"denom":"ASSET17","index":"0.000009698403814011"},{"denom":"ASSET18","index":"0.000004053515914738"},{"denom":"ASSET2","index":"0.000008473190716338"},{"denom":"ASSET3","index":"0.000002361530218445"},{"denom":"ASSET4","index":"0.000022738669483779"},{"denom":"ASSET5","index":"0.000001840125976242"},{"denom":"ASSET6","index":"0.000007434008870747"},{"denom":"ASSET7","index":"0.000011653935721338"},{"denom":"ASSET8","index":"0.000015861166565423"},{"denom":"ASSET9","index":"0.000006742103174023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001541663174382"},{"denom":"ASSET1","index":"0.000012852134347969"},{"denom":"ASSET10","index":"0.000008953505358908"},{"denom":"ASSET11","index":"0.000012432624080325"},{"denom":"ASSET12","index":"0.000011194846435509"},{"denom":"ASSET13","index":"0.000003852675567517"},{"denom":"ASSET14","index":"0.000011614356703153"},{"denom":"ASSET15","index":"0.000008302745615107"},{"denom":"ASSET16","index":"0.000005788648746115"},{"denom":"ASSET17","index":"0.000004110607675539"},{"denom":"ASSET18","index":"0.000001958208705152"},{"denom":"ASSET2","index":"0.000003793380830041"},{"denom":"ASSET3","index":"0.000001108811590805"},{"denom":"ASSET4","index":"0.000010443285637998"},{"denom":"ASSET5","index":"0.000000861256061842"},{"denom":"ASSET6","index":"0.000003505801353281"},{"denom":"ASSET7","index":"0.000005369138478471"},{"denom":"ASSET8","index":"0.000007005673232815"},{"denom":"ASSET9","index":"0.000003025513979724"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003039218640043"},{"denom":"ASSET1","index":"0.000025782167100542"},{"denom":"ASSET10","index":"0.000020571830356487"},{"denom":"ASSET11","index":"0.000025618833387376"},{"denom":"ASSET12","index":"0.000024423552320522"},{"denom":"ASSET13","index":"0.000008046369560384"},{"denom":"ASSET14","index":"0.000023515194162679"},{"denom":"ASSET15","index":"0.000018530055863607"},{"denom":"ASSET16","index":"0.000011436803083329"},{"denom":"ASSET17","index":"0.000008974370950503"},{"denom":"ASSET18","index":"0.000003710743638587"},{"denom":"ASSET2","index":"0.000007806913274081"},{"denom":"ASSET3","index":"0.000002167934051431"},{"denom":"ASSET4","index":"0.000020901035076857"},{"denom":"ASSET5","index":"0.000001689640060433"},{"denom":"ASSET6","index":"0.000006819038075969"},{"denom":"ASSET7","index":"0.000010710838619674"},{"denom":"ASSET8","index":"0.000014627524271874"},{"denom":"ASSET9","index":"0.000006209166066794"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001647112085871"},{"denom":"ASSET1","index":"0.000013744257107488"},{"denom":"ASSET10","index":"0.000009576415679235"},{"denom":"ASSET11","index":"0.000013296650962579"},{"denom":"ASSET12","index":"0.000011973464376313"},{"denom":"ASSET13","index":"0.000004120724991946"},{"denom":"ASSET14","index":"0.000012421070521222"},{"denom":"ASSET15","index":"0.000008879485058873"},{"denom":"ASSET16","index":"0.000006191885004573"},{"denom":"ASSET17","index":"0.000004397534055245"},{"denom":"ASSET18","index":"0.000002094718230780"},{"denom":"ASSET2","index":"0.000004055939892025"},{"denom":"ASSET3","index":"0.000001185763647039"},{"denom":"ASSET4","index":"0.000011170521774262"},{"denom":"ASSET5","index":"0.000000920733692817"},{"denom":"ASSET6","index":"0.000003749683056035"},{"denom":"ASSET7","index":"0.000005742315674818"},{"denom":"ASSET8","index":"0.000007491513372686"},{"denom":"ASSET9","index":"0.000003235328626359"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003240628198198"},{"denom":"ASSET1","index":"0.000027504329283847"},{"denom":"ASSET10","index":"0.000021940320319100"},{"denom":"ASSET11","index":"0.000027329345632586"},{"denom":"ASSET12","index":"0.000026051323397008"},{"denom":"ASSET13","index":"0.000008583813762496"},{"denom":"ASSET14","index":"0.000025085743554439"},{"denom":"ASSET15","index":"0.000019763439018939"},{"denom":"ASSET16","index":"0.000012202670980955"},{"denom":"ASSET17","index":"0.000009573761377605"},{"denom":"ASSET18","index":"0.000003959875003044"},{"denom":"ASSET2","index":"0.000008327243811102"},{"denom":"ASSET3","index":"0.000002312908746824"},{"denom":"ASSET4","index":"0.000022299606884078"},{"denom":"ASSET5","index":"0.000001802093087045"},{"denom":"ASSET6","index":"0.000007275447910852"},{"denom":"ASSET7","index":"0.000011427132859276"},{"denom":"ASSET8","index":"0.000015602768933976"},{"denom":"ASSET9","index":"0.000006623309483786"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001570100817458"},{"denom":"ASSET1","index":"0.000013089401919768"},{"denom":"ASSET10","index":"0.000009119446705996"},{"denom":"ASSET11","index":"0.000012662761138201"},{"denom":"ASSET12","index":"0.000011403229713207"},{"denom":"ASSET13","index":"0.000003924467777503"},{"denom":"ASSET14","index":"0.000011828301962489"},{"denom":"ASSET15","index":"0.000008457526081653"},{"denom":"ASSET16","index":"0.000005896112859965"},{"denom":"ASSET17","index":"0.000004187981201412"},{"denom":"ASSET18","index":"0.000001993604534455"},{"denom":"ASSET2","index":"0.000003863295018381"},{"denom":"ASSET3","index":"0.000001129343245325"},{"denom":"ASSET4","index":"0.000010637785958043"},{"denom":"ASSET5","index":"0.000000876809547412"},{"denom":"ASSET6","index":"0.000003569979481054"},{"denom":"ASSET7","index":"0.000005467903546113"},{"denom":"ASSET8","index":"0.000007135253365252"},{"denom":"ASSET9","index":"0.000003082165940365"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003152920186871"},{"denom":"ASSET1","index":"0.000026760622644749"},{"denom":"ASSET10","index":"0.000021403995558307"},{"denom":"ASSET11","index":"0.000026604821287493"},{"denom":"ASSET12","index":"0.000025390105019040"},{"denom":"ASSET13","index":"0.000008358570294936"},{"denom":"ASSET14","index":"0.000024411618525071"},{"denom":"ASSET15","index":"0.000019270968708391"},{"denom":"ASSET16","index":"0.000011868219590271"},{"denom":"ASSET17","index":"0.000009330682788205"},{"denom":"ASSET18","index":"0.000003846613833157"},{"denom":"ASSET2","index":"0.000008107095494272"},{"denom":"ASSET3","index":"0.000002249072663818"},{"denom":"ASSET4","index":"0.000021694789218154"},{"denom":"ASSET5","index":"0.000001752328837510"},{"denom":"ASSET6","index":"0.000007072706136469"},{"denom":"ASSET7","index":"0.000011115912260277"},{"denom":"ASSET8","index":"0.000015194187602297"},{"denom":"ASSET9","index":"0.000006447849146068"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001655272585709"},{"denom":"ASSET1","index":"0.000013804891217292"},{"denom":"ASSET10","index":"0.000009617831976915"},{"denom":"ASSET11","index":"0.000013354722791997"},{"denom":"ASSET12","index":"0.000012025575872058"},{"denom":"ASSET13","index":"0.000004138592201887"},{"denom":"ASSET14","index":"0.000012474922822124"},{"denom":"ASSET15","index":"0.000008919578032571"},{"denom":"ASSET16","index":"0.000006218567480803"},{"denom":"ASSET17","index":"0.000004416250829168"},{"denom":"ASSET18","index":"0.000002103798060547"},{"denom":"ASSET2","index":"0.000004074517134053"},{"denom":"ASSET3","index":"0.000001191960556756"},{"denom":"ASSET4","index":"0.000011218887197534"},{"denom":"ASSET5","index":"0.000000924981107448"},{"denom":"ASSET6","index":"0.000003765642448085"},{"denom":"ASSET7","index":"0.000005766756105051"},{"denom":"ASSET8","index":"0.000007525534569569"},{"denom":"ASSET9","index":"0.000003250577479728"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003218229550028"},{"denom":"ASSET1","index":"0.000027301798081180"},{"denom":"ASSET10","index":"0.000021745417841688"},{"denom":"ASSET11","index":"0.000027119412726222"},{"denom":"ASSET12","index":"0.000025834540696398"},{"denom":"ASSET13","index":"0.000008516471999212"},{"denom":"ASSET14","index":"0.000024897496810197"},{"denom":"ASSET15","index":"0.000019595694306931"},{"denom":"ASSET16","index":"0.000012114595919920"},{"denom":"ASSET17","index":"0.000009493460517354"},{"denom":"ASSET18","index":"0.000003932937797970"},{"denom":"ASSET2","index":"0.000008264095290285"},{"denom":"ASSET3","index":"0.000002297232512411"},{"denom":"ASSET4","index":"0.000022135581489268"},{"denom":"ASSET5","index":"0.000001789675045728"},{"denom":"ASSET6","index":"0.000007223884768794"},{"denom":"ASSET7","index":"0.000011342725097550"},{"denom":"ASSET8","index":"0.000015481678980085"},{"denom":"ASSET9","index":"0.000006573861400446"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001621688869515"},{"denom":"ASSET1","index":"0.000013520143478358"},{"denom":"ASSET10","index":"0.000009419470546393"},{"denom":"ASSET11","index":"0.000013079418684764"},{"denom":"ASSET12","index":"0.000011778054243646"},{"denom":"ASSET13","index":"0.000004053107355591"},{"denom":"ASSET14","index":"0.000012218035825109"},{"denom":"ASSET15","index":"0.000008735715386011"},{"denom":"ASSET16","index":"0.000006090623412316"},{"denom":"ASSET17","index":"0.000004325494601547"},{"denom":"ASSET18","index":"0.000002060555632782"},{"denom":"ASSET2","index":"0.000003991049142665"},{"denom":"ASSET3","index":"0.000001167586257565"},{"denom":"ASSET4","index":"0.000010987648142487"},{"denom":"ASSET5","index":"0.000000905975587506"},{"denom":"ASSET6","index":"0.000003688190199343"},{"denom":"ASSET7","index":"0.000005648412194460"},{"denom":"ASSET8","index":"0.000007370434701640"},{"denom":"ASSET9","index":"0.000003183549162496"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003224207736427"},{"denom":"ASSET1","index":"0.000027358045975387"},{"denom":"ASSET10","index":"0.000021853454393362"},{"denom":"ASSET11","index":"0.000027191663823691"},{"denom":"ASSET12","index":"0.000025935625558190"},{"denom":"ASSET13","index":"0.000008541293337334"},{"denom":"ASSET14","index":"0.000024954691173737"},{"denom":"ASSET15","index":"0.000019681390400685"},{"denom":"ASSET16","index":"0.000012135703886829"},{"denom":"ASSET17","index":"0.000009530848033034"},{"denom":"ASSET18","index":"0.000003936224347496"},{"denom":"ASSET2","index":"0.000008286598878032"},{"denom":"ASSET3","index":"0.000002301038846536"},{"denom":"ASSET4","index":"0.000022179933336345"},{"denom":"ASSET5","index":"0.000001792519798769"},{"denom":"ASSET6","index":"0.000007234068845872"},{"denom":"ASSET7","index":"0.000011365474292791"},{"denom":"ASSET8","index":"0.000015527655320242"},{"denom":"ASSET9","index":"0.000006590765495457"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001684197417987"},{"denom":"ASSET1","index":"0.000014041270025306"},{"denom":"ASSET10","index":"0.000009782380002809"},{"denom":"ASSET11","index":"0.000013583439347888"},{"denom":"ASSET12","index":"0.000012231725730520"},{"denom":"ASSET13","index":"0.000004209525615418"},{"denom":"ASSET14","index":"0.000012688588478388"},{"denom":"ASSET15","index":"0.000009072403677468"},{"denom":"ASSET16","index":"0.000006325419612958"},{"denom":"ASSET17","index":"0.000004492161044183"},{"denom":"ASSET18","index":"0.000002139608271529"},{"denom":"ASSET2","index":"0.000004144674335530"},{"denom":"ASSET3","index":"0.000001212331762086"},{"denom":"ASSET4","index":"0.000011410921471639"},{"denom":"ASSET5","index":"0.000000940827523152"},{"denom":"ASSET6","index":"0.000003830097231595"},{"denom":"ASSET7","index":"0.000005866137041214"},{"denom":"ASSET8","index":"0.000007654386885887"},{"denom":"ASSET9","index":"0.000003305963379963"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003193080094990"},{"denom":"ASSET1","index":"0.000027069824276969"},{"denom":"ASSET10","index":"0.000021489349079139"},{"denom":"ASSET11","index":"0.000026870184080824"},{"denom":"ASSET12","index":"0.000025561356340007"},{"denom":"ASSET13","index":"0.000008435097288603"},{"denom":"ASSET14","index":"0.000024680442306089"},{"denom":"ASSET15","index":"0.000019377704768171"},{"denom":"ASSET16","index":"0.000012016988086595"},{"denom":"ASSET17","index":"0.000009392966467546"},{"denom":"ASSET18","index":"0.000003905368596850"},{"denom":"ASSET2","index":"0.000008189075060838"},{"denom":"ASSET3","index":"0.000002279664955012"},{"denom":"ASSET4","index":"0.000021948593995488"},{"denom":"ASSET5","index":"0.000001775351671947"},{"denom":"ASSET6","index":"0.000007168631437760"},{"denom":"ASSET7","index":"0.000011248752159293"},{"denom":"ASSET8","index":"0.000015334459676317"},{"denom":"ASSET9","index":"0.000006513651901550"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001677613648548"},{"denom":"ASSET1","index":"0.000013997394471820"},{"denom":"ASSET10","index":"0.000009752554992736"},{"denom":"ASSET11","index":"0.000013541183096442"},{"denom":"ASSET12","index":"0.000012193285851007"},{"denom":"ASSET13","index":"0.000004195070965406"},{"denom":"ASSET14","index":"0.000012649497226385"},{"denom":"ASSET15","index":"0.000009043353672830"},{"denom":"ASSET16","index":"0.000006306085420563"},{"denom":"ASSET17","index":"0.000004477092542912"},{"denom":"ASSET18","index":"0.000002131751335856"},{"denom":"ASSET2","index":"0.000004130786635239"},{"denom":"ASSET3","index":"0.000001208960144751"},{"denom":"ASSET4","index":"0.000011376252751467"},{"denom":"ASSET5","index":"0.000000937307007594"},{"denom":"ASSET6","index":"0.000003817659736684"},{"denom":"ASSET7","index":"0.000005847800357116"},{"denom":"ASSET8","index":"0.000007631172097229"},{"denom":"ASSET9","index":"0.000003295090343070"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003316222748087"},{"denom":"ASSET1","index":"0.000028147075207200"},{"denom":"ASSET10","index":"0.000022466702115272"},{"denom":"ASSET11","index":"0.000027971336509453"},{"denom":"ASSET12","index":"0.000026669877578580"},{"denom":"ASSET13","index":"0.000008784355829882"},{"denom":"ASSET14","index":"0.000025672864554615"},{"denom":"ASSET15","index":"0.000020235356040284"},{"denom":"ASSET16","index":"0.000012487172511964"},{"denom":"ASSET17","index":"0.000009799807931023"},{"denom":"ASSET18","index":"0.000004049727438870"},{"denom":"ASSET2","index":"0.000008522892941853"},{"denom":"ASSET3","index":"0.000002368075218536"},{"denom":"ASSET4","index":"0.000022820717384594"},{"denom":"ASSET5","index":"0.000001843591257654"},{"denom":"ASSET6","index":"0.000007443165294976"},{"denom":"ASSET7","index":"0.000011693499621126"},{"denom":"ASSET8","index":"0.000015972009373807"},{"denom":"ASSET9","index":"0.000006779069609364"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001520550536467"},{"denom":"ASSET1","index":"0.000012675827554874"},{"denom":"ASSET10","index":"0.000008831388003026"},{"denom":"ASSET11","index":"0.000012262725604616"},{"denom":"ASSET12","index":"0.000011042474271843"},{"denom":"ASSET13","index":"0.000003800233070086"},{"denom":"ASSET14","index":"0.000011455195131741"},{"denom":"ASSET15","index":"0.000008190012927118"},{"denom":"ASSET16","index":"0.000005710257954490"},{"denom":"ASSET17","index":"0.000004055182520937"},{"denom":"ASSET18","index":"0.000001931747034924"},{"denom":"ASSET2","index":"0.000003741926245004"},{"denom":"ASSET3","index":"0.000001094491513968"},{"denom":"ASSET4","index":"0.000010301253521611"},{"denom":"ASSET5","index":"0.000000849450412477"},{"denom":"ASSET6","index":"0.000003457632836431"},{"denom":"ASSET7","index":"0.000005295631642792"},{"denom":"ASSET8","index":"0.000006910311498182"},{"denom":"ASSET9","index":"0.000002984699699651"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003047858420945"},{"denom":"ASSET1","index":"0.000025863853767953"},{"denom":"ASSET10","index":"0.000020681482671570"},{"denom":"ASSET11","index":"0.000025712271525236"},{"denom":"ASSET12","index":"0.000024535470175220"},{"denom":"ASSET13","index":"0.000008077733573885"},{"denom":"ASSET14","index":"0.000023593590000343"},{"denom":"ASSET15","index":"0.000018621561303244"},{"denom":"ASSET16","index":"0.000011471343089677"},{"denom":"ASSET17","index":"0.000009016132124589"},{"denom":"ASSET18","index":"0.000003719208275283"},{"denom":"ASSET2","index":"0.000007835789085827"},{"denom":"ASSET3","index":"0.000002174729135607"},{"denom":"ASSET4","index":"0.000020967814383093"},{"denom":"ASSET5","index":"0.000001694402278429"},{"denom":"ASSET6","index":"0.000006836893759575"},{"denom":"ASSET7","index":"0.000010744095518390"},{"denom":"ASSET8","index":"0.000014684305897471"},{"denom":"ASSET9","index":"0.000006231971052532"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001765508823557"},{"denom":"ASSET1","index":"0.000014724618911480"},{"denom":"ASSET10","index":"0.000010258363403154"},{"denom":"ASSET11","index":"0.000014244524406828"},{"denom":"ASSET12","index":"0.000012826610887714"},{"denom":"ASSET13","index":"0.000004413772058893"},{"denom":"ASSET14","index":"0.000013305845007949"},{"denom":"ASSET15","index":"0.000009513270498085"},{"denom":"ASSET16","index":"0.000006632703470176"},{"denom":"ASSET17","index":"0.000004710604682736"},{"denom":"ASSET18","index":"0.000002243882559375"},{"denom":"ASSET2","index":"0.000004346662074372"},{"denom":"ASSET3","index":"0.000001271648168235"},{"denom":"ASSET4","index":"0.000011966226470776"},{"denom":"ASSET5","index":"0.000000986860926228"},{"denom":"ASSET6","index":"0.000004016274458267"},{"denom":"ASSET7","index":"0.000006150888196691"},{"denom":"ASSET8","index":"0.000008026526225616"},{"denom":"ASSET9","index":"0.000003466488815844"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003365151784209"},{"denom":"ASSET1","index":"0.000028538337865727"},{"denom":"ASSET10","index":"0.000022670552359626"},{"denom":"ASSET11","index":"0.000028331786642422"},{"denom":"ASSET12","index":"0.000026959391418936"},{"denom":"ASSET13","index":"0.000008894072871450"},{"denom":"ASSET14","index":"0.000026020188745878"},{"denom":"ASSET15","index":"0.000020439828986765"},{"denom":"ASSET16","index":"0.000012667128947757"},{"denom":"ASSET17","index":"0.000009907060013179"},{"denom":"ASSET18","index":"0.000004116201786219"},{"denom":"ASSET2","index":"0.000008634485522558"},{"denom":"ASSET3","index":"0.000002403102945281"},{"denom":"ASSET4","index":"0.000023139017263426"},{"denom":"ASSET5","index":"0.000001871649891727"},{"denom":"ASSET6","index":"0.000007555863827839"},{"denom":"ASSET7","index":"0.000011857581945748"},{"denom":"ASSET8","index":"0.000016169532559731"},{"denom":"ASSET9","index":"0.000006867789268222"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001833509758465"},{"denom":"ASSET1","index":"0.000015308139656127"},{"denom":"ASSET10","index":"0.000010661025831945"},{"denom":"ASSET11","index":"0.000014808091540182"},{"denom":"ASSET12","index":"0.000013334616425197"},{"denom":"ASSET13","index":"0.000004587108050268"},{"denom":"ASSET14","index":"0.000013827997232930"},{"denom":"ASSET15","index":"0.000009887618079284"},{"denom":"ASSET16","index":"0.000006893996691827"},{"denom":"ASSET17","index":"0.000004893804228047"},{"denom":"ASSET18","index":"0.000002326890566197"},{"denom":"ASSET2","index":"0.000004513767659929"},{"denom":"ASSET3","index":"0.000001320127026095"},{"denom":"ASSET4","index":"0.000012434529816496"},{"denom":"ASSET5","index":"0.000001020098156528"},{"denom":"ASSET6","index":"0.000004173734941087"},{"denom":"ASSET7","index":"0.000006393948575882"},{"denom":"ASSET8","index":"0.000008340802573961"},{"denom":"ASSET9","index":"0.000003600346434803"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003461123478470"},{"denom":"ASSET1","index":"0.000029368181297786"},{"denom":"ASSET10","index":"0.000023294808028239"},{"denom":"ASSET11","index":"0.000029147392384169"},{"denom":"ASSET12","index":"0.000027719461688447"},{"denom":"ASSET13","index":"0.000009147542663388"},{"denom":"ASSET14","index":"0.000026768604990580"},{"denom":"ASSET15","index":"0.000021008846141082"},{"denom":"ASSET16","index":"0.000013035302068339"},{"denom":"ASSET17","index":"0.000010182949549387"},{"denom":"ASSET18","index":"0.000004232564951180"},{"denom":"ASSET2","index":"0.000008877642147806"},{"denom":"ASSET3","index":"0.000002471921418528"},{"denom":"ASSET4","index":"0.000023806252184245"},{"denom":"ASSET5","index":"0.000001920199705662"},{"denom":"ASSET6","index":"0.000007776538212319"},{"denom":"ASSET7","index":"0.000012202060569359"},{"denom":"ASSET8","index":"0.000016628688342614"},{"denom":"ASSET9","index":"0.000007061722298848"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001580229076001"},{"denom":"ASSET1","index":"0.000013178675425859"},{"denom":"ASSET10","index":"0.000009181488308837"},{"denom":"ASSET11","index":"0.000012749045790152"},{"denom":"ASSET12","index":"0.000011480356468073"},{"denom":"ASSET13","index":"0.000003950572690002"},{"denom":"ASSET14","index":"0.000011909209196663"},{"denom":"ASSET15","index":"0.000008514902002442"},{"denom":"ASSET16","index":"0.000005936347281082"},{"denom":"ASSET17","index":"0.000004216274924019"},{"denom":"ASSET18","index":"0.000002008304897474"},{"denom":"ASSET2","index":"0.000003889973934875"},{"denom":"ASSET3","index":"0.000001137392019304"},{"denom":"ASSET4","index":"0.000010709664607998"},{"denom":"ASSET5","index":"0.000000883343392042"},{"denom":"ASSET6","index":"0.000003594749230410"},{"denom":"ASSET7","index":"0.000005505163831141"},{"denom":"ASSET8","index":"0.000007184060111002"},{"denom":"ASSET9","index":"0.000003102967025342"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003136420796654"},{"denom":"ASSET1","index":"0.000026617535879560"},{"denom":"ASSET10","index":"0.000021257162201233"},{"denom":"ASSET11","index":"0.000026454281403244"},{"denom":"ASSET12","index":"0.000025229520616223"},{"denom":"ASSET13","index":"0.000008309311482354"},{"denom":"ASSET14","index":"0.000024278363089230"},{"denom":"ASSET15","index":"0.000019144672836670"},{"denom":"ASSET16","index":"0.000011806881934189"},{"denom":"ASSET17","index":"0.000009271795054357"},{"denom":"ASSET18","index":"0.000003829937127836"},{"denom":"ASSET2","index":"0.000008061315465971"},{"denom":"ASSET3","index":"0.000002238409344787"},{"denom":"ASSET4","index":"0.000021579173085678"},{"denom":"ASSET5","index":"0.000001744155749232"},{"denom":"ASSET6","index":"0.000007037998659171"},{"denom":"ASSET7","index":"0.000011056982942661"},{"denom":"ASSET8","index":"0.000015105683491420"},{"denom":"ASSET9","index":"0.000006411626899884"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001065673750407"},{"denom":"ASSET1","index":"0.000008885137524612"},{"denom":"ASSET10","index":"0.000006190162379117"},{"denom":"ASSET11","index":"0.000008595321581390"},{"denom":"ASSET12","index":"0.000007740138401991"},{"denom":"ASSET13","index":"0.000002663662498568"},{"denom":"ASSET14","index":"0.000008029258508615"},{"denom":"ASSET15","index":"0.000005740999854868"},{"denom":"ASSET16","index":"0.000004002452113836"},{"denom":"ASSET17","index":"0.000002842492504350"},{"denom":"ASSET18","index":"0.000001354098020432"},{"denom":"ASSET2","index":"0.000002622608139264"},{"denom":"ASSET3","index":"0.000000767159849705"},{"denom":"ASSET4","index":"0.000007220696381306"},{"denom":"ASSET5","index":"0.000000595288209907"},{"denom":"ASSET6","index":"0.000002423598872130"},{"denom":"ASSET7","index":"0.000003711940334016"},{"denom":"ASSET8","index":"0.000004843718561268"},{"denom":"ASSET9","index":"0.000002092032733005"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000002559869929403"},{"denom":"ASSET1","index":"0.000021787096732684"},{"denom":"ASSET10","index":"0.000017783238471081"},{"denom":"ASSET11","index":"0.000021752938768967"},{"denom":"ASSET12","index":"0.000020940235345308"},{"denom":"ASSET13","index":"0.000006848308161575"},{"denom":"ASSET14","index":"0.000019904298850841"},{"denom":"ASSET15","index":"0.000015946274018453"},{"denom":"ASSET16","index":"0.000009638424477568"},{"denom":"ASSET17","index":"0.000007695902028378"},{"denom":"ASSET18","index":"0.000003102977872608"},{"denom":"ASSET2","index":"0.000006627591716064"},{"denom":"ASSET3","index":"0.000001824087350341"},{"denom":"ASSET4","index":"0.000017655906837434"},{"denom":"ASSET5","index":"0.000001421889695470"},{"denom":"ASSET6","index":"0.000005729615091854"},{"denom":"ASSET7","index":"0.000009042175373173"},{"denom":"ASSET8","index":"0.000012449153729005"},{"denom":"ASSET9","index":"0.000005268661072858"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001663945626017"},{"denom":"ASSET1","index":"0.000013874870096624"},{"denom":"ASSET10","index":"0.000009666844154779"},{"denom":"ASSET11","index":"0.000013422526194886"},{"denom":"ASSET12","index":"0.000012086742376498"},{"denom":"ASSET13","index":"0.000004159391889779"},{"denom":"ASSET14","index":"0.000012538614102973"},{"denom":"ASSET15","index":"0.000008964719539034"},{"denom":"ASSET16","index":"0.000006250183953344"},{"denom":"ASSET17","index":"0.000004438919645342"},{"denom":"ASSET18","index":"0.000002114400826704"},{"denom":"ASSET2","index":"0.000004095648229305"},{"denom":"ASSET3","index":"0.000001197908641659"},{"denom":"ASSET4","index":"0.000011275545275051"},{"denom":"ASSET5","index":"0.000000929713092403"},{"denom":"ASSET6","index":"0.000003784956906399"},{"denom":"ASSET7","index":"0.000005796423525818"},{"denom":"ASSET8","index":"0.000007563775534382"},{"denom":"ASSET9","index":"0.000003266980643136"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003299045378029"},{"denom":"ASSET1","index":"0.000027992490930804"},{"denom":"ASSET10","index":"0.000022352284005938"},{"denom":"ASSET11","index":"0.000027819914533732"},{"denom":"ASSET12","index":"0.000026530494002155"},{"denom":"ASSET13","index":"0.000008738242797579"},{"denom":"ASSET14","index":"0.000025532401567106"},{"denom":"ASSET15","index":"0.000020131602968729"},{"denom":"ASSET16","index":"0.000012417136212826"},{"denom":"ASSET17","index":"0.000009749421325842"},{"denom":"ASSET18","index":"0.000004027997856345"},{"denom":"ASSET2","index":"0.000008477931503293"},{"denom":"ASSET3","index":"0.000002354450357881"},{"denom":"ASSET4","index":"0.000022693933657862"},{"denom":"ASSET5","index":"0.000001834114741991"},{"denom":"ASSET6","index":"0.000007402245947993"},{"denom":"ASSET7","index":"0.000011628988518089"},{"denom":"ASSET8","index":"0.000015885667960333"},{"denom":"ASSET9","index":"0.000006742956926982"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001554670726054"},{"denom":"ASSET1","index":"0.000012963415617374"},{"denom":"ASSET10","index":"0.000009031685079156"},{"denom":"ASSET11","index":"0.000012540799003679"},{"denom":"ASSET12","index":"0.000011293255065955"},{"denom":"ASSET13","index":"0.000003886042255656"},{"denom":"ASSET14","index":"0.000011715237120170"},{"denom":"ASSET15","index":"0.000008376185136293"},{"denom":"ASSET16","index":"0.000005839850894644"},{"denom":"ASSET17","index":"0.000004147480761425"},{"denom":"ASSET18","index":"0.000001975383661309"},{"denom":"ASSET2","index":"0.000003826393664534"},{"denom":"ASSET3","index":"0.000001119362922759"},{"denom":"ASSET4","index":"0.000010534956487329"},{"denom":"ASSET5","index":"0.000000868711928150"},{"denom":"ASSET6","index":"0.000003536399982164"},{"denom":"ASSET7","index":"0.000005415965161990"},{"denom":"ASSET8","index":"0.000007067088929007"},{"denom":"ASSET9","index":"0.000003052231098907"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003157426180098"},{"denom":"ASSET1","index":"0.000026803913890418"},{"denom":"ASSET10","index":"0.000021467927303389"},{"denom":"ASSET11","index":"0.000026655124661377"},{"denom":"ASSET12","index":"0.000025453388278707"},{"denom":"ASSET13","index":"0.000008375182650914"},{"denom":"ASSET14","index":"0.000024453809207757"},{"denom":"ASSET15","index":"0.000019323681821282"},{"denom":"ASSET16","index":"0.000011885939188892"},{"denom":"ASSET17","index":"0.000009353763879690"},{"denom":"ASSET18","index":"0.000003851457527173"},{"denom":"ASSET2","index":"0.000008122633355733"},{"denom":"ASSET3","index":"0.000002252845423920"},{"denom":"ASSET4","index":"0.000021728796023940"},{"denom":"ASSET5","index":"0.000001755342604855"},{"denom":"ASSET6","index":"0.000007082922688985"},{"denom":"ASSET7","index":"0.000011133765978354"},{"denom":"ASSET8","index":"0.000015225414484063"},{"denom":"ASSET9","index":"0.000006459804222065"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001578706846766"},{"denom":"ASSET1","index":"0.000013164667632738"},{"denom":"ASSET10","index":"0.000009171819989970"},{"denom":"ASSET11","index":"0.000012734981690366"},{"denom":"ASSET12","index":"0.000011467468005207"},{"denom":"ASSET13","index":"0.000003946168668528"},{"denom":"ASSET14","index":"0.000011895957050803"},{"denom":"ASSET15","index":"0.000008505148486066"},{"denom":"ASSET16","index":"0.000005930623522158"},{"denom":"ASSET17","index":"0.000004211879752669"},{"denom":"ASSET18","index":"0.000002005998995588"},{"denom":"ASSET2","index":"0.000003886323829757"},{"denom":"ASSET3","index":"0.000001135855039864"},{"denom":"ASSET4","index":"0.000010697863378618"},{"denom":"ASSET5","index":"0.000000882112923477"},{"denom":"ASSET6","index":"0.000003590690326231"},{"denom":"ASSET7","index":"0.000005499740683011"},{"denom":"ASSET8","index":"0.000007176593065360"},{"denom":"ASSET9","index":"0.000003098765751537"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003185213515607"},{"denom":"ASSET1","index":"0.000027035699090666"},{"denom":"ASSET10","index":"0.000021635640181728"},{"denom":"ASSET11","index":"0.000026880669357351"},{"denom":"ASSET12","index":"0.000025658872180332"},{"denom":"ASSET13","index":"0.000008444958797633"},{"denom":"ASSET14","index":"0.000024662649108986"},{"denom":"ASSET15","index":"0.000019476753279332"},{"denom":"ASSET16","index":"0.000011989846651744"},{"denom":"ASSET17","index":"0.000009429633404312"},{"denom":"ASSET18","index":"0.000003886090392826"},{"denom":"ASSET2","index":"0.000008191890279929"},{"denom":"ASSET3","index":"0.000002271981699175"},{"denom":"ASSET4","index":"0.000021916623044014"},{"denom":"ASSET5","index":"0.000001770727550439"},{"denom":"ASSET6","index":"0.000007144791673859"},{"denom":"ASSET7","index":"0.000011230376410345"},{"denom":"ASSET8","index":"0.000015353061978158"},{"denom":"ASSET9","index":"0.000006513931773648"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001736464555496"},{"denom":"ASSET1","index":"0.000014486324003877"},{"denom":"ASSET10","index":"0.000010092542477093"},{"denom":"ASSET11","index":"0.000014014496766071"},{"denom":"ASSET12","index":"0.000012620063107870"},{"denom":"ASSET13","index":"0.000004342915393341"},{"denom":"ASSET14","index":"0.000013091890345676"},{"denom":"ASSET15","index":"0.000009359368553661"},{"denom":"ASSET16","index":"0.000006524897117620"},{"denom":"ASSET17","index":"0.000004634080157191"},{"denom":"ASSET18","index":"0.000002206537788701"},{"denom":"ASSET2","index":"0.000004276263218483"},{"denom":"ASSET3","index":"0.000001250605280877"},{"denom":"ASSET4","index":"0.000011772878885340"},{"denom":"ASSET5","index":"0.000000969964544635"},{"denom":"ASSET6","index":"0.000003951772367204"},{"denom":"ASSET7","index":"0.000006051315875212"},{"denom":"ASSET8","index":"0.000007896528716001"},{"denom":"ASSET9","index":"0.000003409784945337"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003356675502673"},{"denom":"ASSET1","index":"0.000028477076245214"},{"denom":"ASSET10","index":"0.000022663760086849"},{"denom":"ASSET11","index":"0.000028282539274294"},{"denom":"ASSET12","index":"0.000026934248109484"},{"denom":"ASSET13","index":"0.000008880550781135"},{"denom":"ASSET14","index":"0.000025969128454053"},{"denom":"ASSET15","index":"0.000020425731449718"},{"denom":"ASSET16","index":"0.000012636600959200"},{"denom":"ASSET17","index":"0.000009896936242996"},{"denom":"ASSET18","index":"0.000004102733083140"},{"denom":"ASSET2","index":"0.000008619316582261"},{"denom":"ASSET3","index":"0.000002396767404444"},{"denom":"ASSET4","index":"0.000023088672429632"},{"denom":"ASSET5","index":"0.000001866260713425"},{"denom":"ASSET6","index":"0.000007536521735823"},{"denom":"ASSET7","index":"0.000011831316132227"},{"denom":"ASSET8","index":"0.000016143846449802"},{"denom":"ASSET9","index":"0.000006854365607618"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001432199402946"},{"denom":"ASSET1","index":"0.000011943338809449"},{"denom":"ASSET10","index":"0.000008321234131428"},{"denom":"ASSET11","index":"0.000011554338026882"},{"denom":"ASSET12","index":"0.000010404248756685"},{"denom":"ASSET13","index":"0.000003580160245814"},{"denom":"ASSET14","index":"0.000010793249539252"},{"denom":"ASSET15","index":"0.000007717099003024"},{"denom":"ASSET16","index":"0.000005380388215223"},{"denom":"ASSET17","index":"0.000003821002469456"},{"denom":"ASSET18","index":"0.000001819847139312"},{"denom":"ASSET2","index":"0.000003525361874705"},{"denom":"ASSET3","index":"0.000001031021204577"},{"denom":"ASSET4","index":"0.000009706076917365"},{"denom":"ASSET5","index":"0.000000800326827437"},{"denom":"ASSET6","index":"0.000003258135250159"},{"denom":"ASSET7","index":"0.000004989357863356"},{"denom":"ASSET8","index":"0.000006510858315517"},{"denom":"ASSET9","index":"0.000002812306527182"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000002962853679956"},{"denom":"ASSET1","index":"0.000025162993314326"},{"denom":"ASSET10","index":"0.000020199688926412"},{"denom":"ASSET11","index":"0.000025035647772320"},{"denom":"ASSET12","index":"0.000023929456511577"},{"denom":"ASSET13","index":"0.000007867725037604"},{"denom":"ASSET14","index":"0.000022960507028012"},{"denom":"ASSET15","index":"0.000018173489333858"},{"denom":"ASSET16","index":"0.000011155286879957"},{"denom":"ASSET17","index":"0.000008793607250882"},{"denom":"ASSET18","index":"0.000003611579051495"},{"denom":"ASSET2","index":"0.000007628670547867"},{"denom":"ASSET3","index":"0.000002114031306235"},{"denom":"ASSET4","index":"0.000020398130246320"},{"denom":"ASSET5","index":"0.000001647096325587"},{"denom":"ASSET6","index":"0.000006645213242757"},{"denom":"ASSET7","index":"0.000010450616802650"},{"denom":"ASSET8","index":"0.000014303332598966"},{"denom":"ASSET9","index":"0.000006067112886031"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001597673370668"},{"denom":"ASSET1","index":"0.000013327099930964"},{"denom":"ASSET10","index":"0.000009285285696821"},{"denom":"ASSET11","index":"0.000012892979142852"},{"denom":"ASSET12","index":"0.000011609669101507"},{"denom":"ASSET13","index":"0.000003995544306884"},{"denom":"ASSET14","index":"0.000012043789889618"},{"denom":"ASSET15","index":"0.000008610289110917"},{"denom":"ASSET16","index":"0.000006002842621820"},{"denom":"ASSET17","index":"0.000004263637708946"},{"denom":"ASSET18","index":"0.000002030433278566"},{"denom":"ASSET2","index":"0.000003934304697275"},{"denom":"ASSET3","index":"0.000001149943780421"},{"denom":"ASSET4","index":"0.000010829884739162"},{"denom":"ASSET5","index":"0.000000892737420067"},{"denom":"ASSET6","index":"0.000003634911050302"},{"denom":"ASSET7","index":"0.000005567360953495"},{"denom":"ASSET8","index":"0.000007264378579749"},{"denom":"ASSET9","index":"0.000003138189772368"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003135234009226"},{"denom":"ASSET1","index":"0.000026602125077525"},{"denom":"ASSET10","index":"0.000021213712135644"},{"denom":"ASSET11","index":"0.000026430841190504"},{"denom":"ASSET12","index":"0.000025191219856579"},{"denom":"ASSET13","index":"0.000008300995957475"},{"denom":"ASSET14","index":"0.000024262534835813"},{"denom":"ASSET15","index":"0.000019110376679732"},{"denom":"ASSET16","index":"0.000011801461546978"},{"denom":"ASSET17","index":"0.000009257538829689"},{"denom":"ASSET18","index":"0.000003829421505073"},{"denom":"ASSET2","index":"0.000008055136326188"},{"denom":"ASSET3","index":"0.000002237228869924"},{"denom":"ASSET4","index":"0.000021566736915931"},{"denom":"ASSET5","index":"0.000001743257901616"},{"denom":"ASSET6","index":"0.000007036288319926"},{"denom":"ASSET7","index":"0.000011051703047857"},{"denom":"ASSET8","index":"0.000015089589803941"},{"denom":"ASSET9","index":"0.000006406386950018"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001689516061942"},{"denom":"ASSET1","index":"0.000014086551658080"},{"denom":"ASSET10","index":"0.000009813816295422"},{"denom":"ASSET11","index":"0.000013627312671286"},{"denom":"ASSET12","index":"0.000012271349136594"},{"denom":"ASSET13","index":"0.000004223185893030"},{"denom":"ASSET14","index":"0.000012729983861563"},{"denom":"ASSET15","index":"0.000009101391604066"},{"denom":"ASSET16","index":"0.000006345353421478"},{"denom":"ASSET17","index":"0.000004506584688828"},{"denom":"ASSET18","index":"0.000002146942263262"},{"denom":"ASSET2","index":"0.000004157925615959"},{"denom":"ASSET3","index":"0.000001216379053179"},{"denom":"ASSET4","index":"0.000011447740269489"},{"denom":"ASSET5","index":"0.000000943856970227"},{"denom":"ASSET6","index":"0.000003842500943451"},{"denom":"ASSET7","index":"0.000005884905911035"},{"denom":"ASSET8","index":"0.000007678959268655"},{"denom":"ASSET9","index":"0.000003316793155937"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003297864217859"},{"denom":"ASSET1","index":"0.000027973253972789"},{"denom":"ASSET10","index":"0.000022291630953866"},{"denom":"ASSET11","index":"0.000027789008146512"},{"denom":"ASSET12","index":"0.000026479178332828"},{"denom":"ASSET13","index":"0.000008727103479255"},{"denom":"ASSET14","index":"0.000025511286037616"},{"denom":"ASSET15","index":"0.000020085740117730"},{"denom":"ASSET16","index":"0.000012411485442612"},{"denom":"ASSET17","index":"0.000009730550155880"},{"denom":"ASSET18","index":"0.000004028926705548"},{"denom":"ASSET2","index":"0.000008468714781887"},{"denom":"ASSET3","index":"0.000002353891879987"},{"denom":"ASSET4","index":"0.000022679492169342"},{"denom":"ASSET5","index":"0.000001833514119464"},{"denom":"ASSET6","index":"0.000007400677249018"},{"denom":"ASSET7","index":"0.000011621769805761"},{"denom":"ASSET8","index":"0.000015864980999233"},{"denom":"ASSET9","index":"0.000006736116007098"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001411859688057"},{"denom":"ASSET1","index":"0.000011770485537623"},{"denom":"ASSET10","index":"0.000008200497469250"},{"denom":"ASSET11","index":"0.000011386615852852"},{"denom":"ASSET12","index":"0.000010253874969484"},{"denom":"ASSET13","index":"0.000003528347966974"},{"denom":"ASSET14","index":"0.000010637094027671"},{"denom":"ASSET15","index":"0.000007605174144562"},{"denom":"ASSET16","index":"0.000005302606662519"},{"denom":"ASSET17","index":"0.000003765826670265"},{"denom":"ASSET18","index":"0.000001793777493075"},{"denom":"ASSET2","index":"0.000003474345960472"},{"denom":"ASSET3","index":"0.000001016278724767"},{"denom":"ASSET4","index":"0.000009565512043233"},{"denom":"ASSET5","index":"0.000000788559420242"},{"denom":"ASSET6","index":"0.000003210842193807"},{"denom":"ASSET7","index":"0.000004917435724579"},{"denom":"ASSET8","index":"0.000006416479374940"},{"denom":"ASSET9","index":"0.000002771018622781"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000002930820438736"},{"denom":"ASSET1","index":"0.000024889799880283"},{"denom":"ASSET10","index":"0.000019988623694797"},{"denom":"ASSET11","index":"0.000024765615752571"},{"denom":"ASSET12","index":"0.000023676022623299"},{"denom":"ASSET13","index":"0.000007783195940338"},{"denom":"ASSET14","index":"0.000022712072914709"},{"denom":"ASSET15","index":"0.000017982209004670"},{"denom":"ASSET16","index":"0.000011033267632466"},{"denom":"ASSET17","index":"0.000008700651286884"},{"denom":"ASSET18","index":"0.000003571624768330"},{"denom":"ASSET2","index":"0.000007546215495169"},{"denom":"ASSET3","index":"0.000002090977414753"},{"denom":"ASSET4","index":"0.000020176663420937"},{"denom":"ASSET5","index":"0.000001628342560149"},{"denom":"ASSET6","index":"0.000006572371850885"},{"denom":"ASSET7","index":"0.000010337273058537"},{"denom":"ASSET8","index":"0.000014149515747938"},{"denom":"ASSET9","index":"0.000006000707920121"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001726304213109"},{"denom":"ASSET1","index":"0.000014431903221591"},{"denom":"ASSET10","index":"0.000010055058078201"},{"denom":"ASSET11","index":"0.000013959161452463"},{"denom":"ASSET12","index":"0.000012572806376704"},{"denom":"ASSET13","index":"0.000004323728090679"},{"denom":"ASSET14","index":"0.000013040236440562"},{"denom":"ASSET15","index":"0.000009322042750788"},{"denom":"ASSET16","index":"0.000006501527251832"},{"denom":"ASSET17","index":"0.000004615871880590"},{"denom":"ASSET18","index":"0.000002199045982237"},{"denom":"ASSET2","index":"0.000004259987627426"},{"denom":"ASSET3","index":"0.000001242939033438"},{"denom":"ASSET4","index":"0.000011728245238599"},{"denom":"ASSET5","index":"0.000000966730359341"},{"denom":"ASSET6","index":"0.000003935973605888"},{"denom":"ASSET7","index":"0.000006028785482704"},{"denom":"ASSET8","index":"0.000007866635506506"},{"denom":"ASSET9","index":"0.000003394179668236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003313075721980"},{"denom":"ASSET1","index":"0.000028138029356789"},{"denom":"ASSET10","index":"0.000022370607880245"},{"denom":"ASSET11","index":"0.000027937207217164"},{"denom":"ASSET12","index":"0.000026595598409551"},{"denom":"ASSET13","index":"0.000008769097729958"},{"denom":"ASSET14","index":"0.000025655242037122"},{"denom":"ASSET15","index":"0.000020162686714325"},{"denom":"ASSET16","index":"0.000012488922131836"},{"denom":"ASSET17","index":"0.000009772018779266"},{"denom":"ASSET18","index":"0.000004056016110298"},{"denom":"ASSET2","index":"0.000008514325121927"},{"denom":"ASSET3","index":"0.000002365037757716"},{"denom":"ASSET4","index":"0.000022813272666626"},{"denom":"ASSET5","index":"0.000001844445619129"},{"denom":"ASSET6","index":"0.000007446834645040"},{"denom":"ASSET7","index":"0.000011690909413493"},{"denom":"ASSET8","index":"0.000015945057917181"},{"denom":"ASSET9","index":"0.000006769080892636"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001630255611072"},{"denom":"ASSET1","index":"0.000013593541268721"},{"denom":"ASSET10","index":"0.000009470169531707"},{"denom":"ASSET11","index":"0.000013149994246609"},{"denom":"ASSET12","index":"0.000011841383661505"},{"denom":"ASSET13","index":"0.000004074904678306"},{"denom":"ASSET14","index":"0.000012284196334242"},{"denom":"ASSET15","index":"0.000008782818517308"},{"denom":"ASSET16","index":"0.000006123739432762"},{"denom":"ASSET17","index":"0.000004348816994942"},{"denom":"ASSET18","index":"0.000002071599585061"},{"denom":"ASSET2","index":"0.000004012484981486"},{"denom":"ASSET3","index":"0.000001173490300222"},{"denom":"ASSET4","index":"0.000011046817638451"},{"denom":"ASSET5","index":"0.000000910593224203"},{"denom":"ASSET6","index":"0.000003707729991128"},{"denom":"ASSET7","index":"0.000005678723711902"},{"denom":"ASSET8","index":"0.000007410319536635"},{"denom":"ASSET9","index":"0.000003200294573447"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003344718004914"},{"denom":"ASSET1","index":"0.000028399683918161"},{"denom":"ASSET10","index":"0.000022773943545696"},{"denom":"ASSET11","index":"0.000028249525692452"},{"denom":"ASSET12","index":"0.000026989510465266"},{"denom":"ASSET13","index":"0.000008877216029957"},{"denom":"ASSET14","index":"0.000025911788013611"},{"denom":"ASSET15","index":"0.000020494299775586"},{"denom":"ASSET16","index":"0.000012591463658113"},{"denom":"ASSET17","index":"0.000009918208342143"},{"denom":"ASSET18","index":"0.000004078542450859"},{"denom":"ASSET2","index":"0.000008608606683653"},{"denom":"ASSET3","index":"0.000002386103437058"},{"denom":"ASSET4","index":"0.000023022167148602"},{"denom":"ASSET5","index":"0.000001858883946943"},{"denom":"ASSET6","index":"0.000007501347044310"},{"denom":"ASSET7","index":"0.000011795380538461"},{"denom":"ASSET8","index":"0.000016137954986293"},{"denom":"ASSET9","index":"0.000006845854741756"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001401914217082"},{"denom":"ASSET1","index":"0.000011691084141249"},{"denom":"ASSET10","index":"0.000008144816837289"},{"denom":"ASSET11","index":"0.000011309282624399"},{"denom":"ASSET12","index":"0.000010184195671197"},{"denom":"ASSET13","index":"0.000003504785542706"},{"denom":"ASSET14","index":"0.000010565150621491"},{"denom":"ASSET15","index":"0.000007553913381055"},{"denom":"ASSET16","index":"0.000005266490546178"},{"denom":"ASSET17","index":"0.000003740131045332"},{"denom":"ASSET18","index":"0.000001781176034264"},{"denom":"ASSET2","index":"0.000003450605283109"},{"denom":"ASSET3","index":"0.000001009107335001"},{"denom":"ASSET4","index":"0.000009501016460336"},{"denom":"ASSET5","index":"0.000000783074064494"},{"denom":"ASSET6","index":"0.000003189016217240"},{"denom":"ASSET7","index":"0.000004883842462771"},{"denom":"ASSET8","index":"0.000006372953035143"},{"denom":"ASSET9","index":"0.000002752187874236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000002824624853437"},{"denom":"ASSET1","index":"0.000023976113690517"},{"denom":"ASSET10","index":"0.000019183481330878"},{"denom":"ASSET11","index":"0.000023837782846342"},{"denom":"ASSET12","index":"0.000022753084719682"},{"denom":"ASSET13","index":"0.000007489057952554"},{"denom":"ASSET14","index":"0.000021872315483076"},{"denom":"ASSET15","index":"0.000017271123733000"},{"denom":"ASSET16","index":"0.000010633084765839"},{"denom":"ASSET17","index":"0.000008361522972460"},{"denom":"ASSET18","index":"0.000003446219629870"},{"denom":"ASSET2","index":"0.000007263651822688"},{"denom":"ASSET3","index":"0.000002015414858276"},{"denom":"ASSET4","index":"0.000019437236646346"},{"denom":"ASSET5","index":"0.000001569802896992"},{"denom":"ASSET6","index":"0.000006336500403946"},{"denom":"ASSET7","index":"0.000009959182045961"},{"denom":"ASSET8","index":"0.000013614498977085"},{"denom":"ASSET9","index":"0.000005776799011181"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001454934724421"},{"denom":"ASSET1","index":"0.000012138554241533"},{"denom":"ASSET10","index":"0.000008457231031836"},{"denom":"ASSET11","index":"0.000011742676653726"},{"denom":"ASSET12","index":"0.000010575345305063"},{"denom":"ASSET13","index":"0.000003639028595615"},{"denom":"ASSET14","index":"0.000010969531108307"},{"denom":"ASSET15","index":"0.000007843113235366"},{"denom":"ASSET16","index":"0.000005467847708521"},{"denom":"ASSET17","index":"0.000003882645572727"},{"denom":"ASSET18","index":"0.000001849120527665"},{"denom":"ASSET2","index":"0.000003583199705027"},{"denom":"ASSET3","index":"0.000001047214644670"},{"denom":"ASSET4","index":"0.000009864795788485"},{"denom":"ASSET5","index":"0.000000813748374938"},{"denom":"ASSET6","index":"0.000003310822390339"},{"denom":"ASSET7","index":"0.000005070278336150"},{"denom":"ASSET8","index":"0.000006616569426988"},{"denom":"ASSET9","index":"0.000002857424127380"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003026822568793"},{"denom":"ASSET1","index":"0.000025710421285725"},{"denom":"ASSET10","index":"0.000020652297735472"},{"denom":"ASSET11","index":"0.000025583400849235"},{"denom":"ASSET12","index":"0.000024460820755928"},{"denom":"ASSET13","index":"0.000008041083722059"},{"denom":"ASSET14","index":"0.000023461074878675"},{"denom":"ASSET15","index":"0.000018578170233019"},{"denom":"ASSET16","index":"0.000011396689804799"},{"denom":"ASSET17","index":"0.000008988134494295"},{"denom":"ASSET18","index":"0.000003688816665807"},{"denom":"ASSET2","index":"0.000007796110853756"},{"denom":"ASSET3","index":"0.000002159003644915"},{"denom":"ASSET4","index":"0.000020841789260406"},{"denom":"ASSET5","index":"0.000001683251281734"},{"denom":"ASSET6","index":"0.000006788484398340"},{"denom":"ASSET7","index":"0.000010677121165375"},{"denom":"ASSET8","index":"0.000014616905179383"},{"denom":"ASSET9","index":"0.000006199084273401"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001547699786520"},{"denom":"ASSET1","index":"0.000012908880828127"},{"denom":"ASSET10","index":"0.000008993933542043"},{"denom":"ASSET11","index":"0.000012488059147042"},{"denom":"ASSET12","index":"0.000011245681057538"},{"denom":"ASSET13","index":"0.000003869751640144"},{"denom":"ASSET14","index":"0.000011665498390936"},{"denom":"ASSET15","index":"0.000008340103197445"},{"denom":"ASSET16","index":"0.000005815173110936"},{"denom":"ASSET17","index":"0.000004129877691221"},{"denom":"ASSET18","index":"0.000001966512772230"},{"denom":"ASSET2","index":"0.000003810495126579"},{"denom":"ASSET3","index":"0.000001114825933185"},{"denom":"ASSET4","index":"0.000010490411596498"},{"denom":"ASSET5","index":"0.000000864743358984"},{"denom":"ASSET6","index":"0.000003521242992563"},{"denom":"ASSET7","index":"0.000005392342734476"},{"denom":"ASSET8","index":"0.000007036459899001"},{"denom":"ASSET9","index":"0.000003039156102537"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003086703561215"},{"denom":"ASSET1","index":"0.000026199550261878"},{"denom":"ASSET10","index":"0.000020936384793003"},{"denom":"ASSET11","index":"0.000026042194398185"},{"denom":"ASSET12","index":"0.000024843424443974"},{"denom":"ASSET13","index":"0.000008180415813801"},{"denom":"ASSET14","index":"0.000023898307142718"},{"denom":"ASSET15","index":"0.000018852934413068"},{"denom":"ASSET16","index":"0.000011621232923996"},{"denom":"ASSET17","index":"0.000009129550402498"},{"denom":"ASSET18","index":"0.000003767892160935"},{"denom":"ASSET2","index":"0.000007936188126371"},{"denom":"ASSET3","index":"0.000002203575710986"},{"denom":"ASSET4","index":"0.000021240180347210"},{"denom":"ASSET5","index":"0.000001716192200569"},{"denom":"ASSET6","index":"0.000006926674957775"},{"denom":"ASSET7","index":"0.000010883333770048"},{"denom":"ASSET8","index":"0.000014871024805414"},{"denom":"ASSET9","index":"0.000006311583255107"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001511232509129"},{"denom":"ASSET1","index":"0.000012598757210652"},{"denom":"ASSET10","index":"0.000008777665278232"},{"denom":"ASSET11","index":"0.000012187849575766"},{"denom":"ASSET12","index":"0.000010975073643675"},{"denom":"ASSET13","index":"0.000003776959255615"},{"denom":"ASSET14","index":"0.000011385233267090"},{"denom":"ASSET15","index":"0.000008140359504707"},{"denom":"ASSET16","index":"0.000005675412369706"},{"denom":"ASSET17","index":"0.000004030784481533"},{"denom":"ASSET18","index":"0.000001920145446758"},{"denom":"ASSET2","index":"0.000003719113035170"},{"denom":"ASSET3","index":"0.000001087858016388"},{"denom":"ASSET4","index":"0.000010238531681628"},{"denom":"ASSET5","index":"0.000000844504951067"},{"denom":"ASSET6","index":"0.000003436614036185"},{"denom":"ASSET7","index":"0.000005263507386191"},{"denom":"ASSET8","index":"0.000006867991992072"},{"denom":"ASSET9","index":"0.000002966364157912"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003050294937135"},{"denom":"ASSET1","index":"0.000025887230915803"},{"denom":"ASSET10","index":"0.000020718160619670"},{"denom":"ASSET11","index":"0.000025739685005463"},{"denom":"ASSET12","index":"0.000024570727404900"},{"denom":"ASSET13","index":"0.000008086966483560"},{"denom":"ASSET14","index":"0.000023616194455668"},{"denom":"ASSET15","index":"0.000018651338246959"},{"denom":"ASSET16","index":"0.000011480437826441"},{"denom":"ASSET17","index":"0.000009029688158762"},{"denom":"ASSET18","index":"0.000003721440260869"},{"denom":"ASSET2","index":"0.000007844134626406"},{"denom":"ASSET3","index":"0.000002176540273945"},{"denom":"ASSET4","index":"0.000020986445628896"},{"denom":"ASSET5","index":"0.000001695800268231"},{"denom":"ASSET6","index":"0.000006841569437153"},{"denom":"ASSET7","index":"0.000010753447417762"},{"denom":"ASSET8","index":"0.000014701309289649"},{"denom":"ASSET9","index":"0.000006238283490477"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001535139489204"},{"denom":"ASSET1","index":"0.000012800845981431"},{"denom":"ASSET10","index":"0.000008918122145344"},{"denom":"ASSET11","index":"0.000012383184798277"},{"denom":"ASSET12","index":"0.000011151318949088"},{"denom":"ASSET13","index":"0.000003837555421617"},{"denom":"ASSET14","index":"0.000011567806926671"},{"denom":"ASSET15","index":"0.000008270512670342"},{"denom":"ASSET16","index":"0.000005766305379776"},{"denom":"ASSET17","index":"0.000004095074044376"},{"denom":"ASSET18","index":"0.000001950454261216"},{"denom":"ASSET2","index":"0.000003778308540299"},{"denom":"ASSET3","index":"0.000001105159647558"},{"denom":"ASSET4","index":"0.000010402813795010"},{"denom":"ASSET5","index":"0.000000857613272150"},{"denom":"ASSET6","index":"0.000003491459778273"},{"denom":"ASSET7","index":"0.000005347470991052"},{"denom":"ASSET8","index":"0.000006978226734264"},{"denom":"ASSET9","index":"0.000003013965111016"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000002944371933765"},{"denom":"ASSET1","index":"0.000024968433937291"},{"denom":"ASSET10","index":"0.000019851368221906"},{"denom":"ASSET11","index":"0.000024791952485266"},{"denom":"ASSET12","index":"0.000023600048189968"},{"denom":"ASSET13","index":"0.000007784111470281"},{"denom":"ASSET14","index":"0.000022766914870589"},{"denom":"ASSET15","index":"0.000017894900322998"},{"denom":"ASSET16","index":"0.000011081662183182"},{"denom":"ASSET17","index":"0.000008672317440622"},{"denom":"ASSET18","index":"0.000003599691097086"},{"denom":"ASSET2","index":"0.000007555380586873"},{"denom":"ASSET3","index":"0.000002101847815188"},{"denom":"ASSET4","index":"0.000020244169178497"},{"denom":"ASSET5","index":"0.000001637098640985"},{"denom":"ASSET6","index":"0.000006609166185649"},{"denom":"ASSET7","index":"0.000010374399402552"},{"denom":"ASSET8","index":"0.000014150620453773"},{"denom":"ASSET9","index":"0.000006009906313007"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001449310882227"},{"denom":"ASSET1","index":"0.000012082282763787"},{"denom":"ASSET10","index":"0.000008417588941675"},{"denom":"ASSET11","index":"0.000011688148164511"},{"denom":"ASSET12","index":"0.000010525234539176"},{"denom":"ASSET13","index":"0.000003621923721366"},{"denom":"ASSET14","index":"0.000010918286351091"},{"denom":"ASSET15","index":"0.000007806355476589"},{"denom":"ASSET16","index":"0.000005442630668295"},{"denom":"ASSET17","index":"0.000003865550877512"},{"denom":"ASSET18","index":"0.000001841279906781"},{"denom":"ASSET2","index":"0.000003566701565973"},{"denom":"ASSET3","index":"0.000001043265621984"},{"denom":"ASSET4","index":"0.000009818715786353"},{"denom":"ASSET5","index":"0.000000809924945764"},{"denom":"ASSET6","index":"0.000003295463332131"},{"denom":"ASSET7","index":"0.000005047413281659"},{"denom":"ASSET8","index":"0.000006586595514820"},{"denom":"ASSET9","index":"0.000002844482396421"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000002938303361264"},{"denom":"ASSET1","index":"0.000024939884544734"},{"denom":"ASSET10","index":"0.000019970621943114"},{"denom":"ASSET11","index":"0.000024800280810198"},{"denom":"ASSET12","index":"0.000023679745396670"},{"denom":"ASSET13","index":"0.000007792253675830"},{"denom":"ASSET14","index":"0.000022752532795075"},{"denom":"ASSET15","index":"0.000017976341528508"},{"denom":"ASSET16","index":"0.000011059313296089"},{"denom":"ASSET17","index":"0.000008702160495382"},{"denom":"ASSET18","index":"0.000003584018468858"},{"denom":"ASSET2","index":"0.000007557839698908"},{"denom":"ASSET3","index":"0.000002096442663552"},{"denom":"ASSET4","index":"0.000020217858094708"},{"denom":"ASSET5","index":"0.000001633684136995"},{"denom":"ASSET6","index":"0.000006589976909255"},{"denom":"ASSET7","index":"0.000010359339015905"},{"denom":"ASSET8","index":"0.000014165755580726"},{"denom":"ASSET9","index":"0.000006010291774725"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001731982701050"},{"denom":"ASSET1","index":"0.000014440617081118"},{"denom":"ASSET10","index":"0.000010060714066040"},{"denom":"ASSET11","index":"0.000013969585405988"},{"denom":"ASSET12","index":"0.000012579542501729"},{"denom":"ASSET13","index":"0.000004329188348588"},{"denom":"ASSET14","index":"0.000013049805772821"},{"denom":"ASSET15","index":"0.000009329961826155"},{"denom":"ASSET16","index":"0.000006505308583448"},{"denom":"ASSET17","index":"0.000004619645074851"},{"denom":"ASSET18","index":"0.000002200709164068"},{"denom":"ASSET2","index":"0.000004262337197306"},{"denom":"ASSET3","index":"0.000001247119753241"},{"denom":"ASSET4","index":"0.000011735066464260"},{"denom":"ASSET5","index":"0.000000967420683506"},{"denom":"ASSET6","index":"0.000003938839097420"},{"denom":"ASSET7","index":"0.000006032740100243"},{"denom":"ASSET8","index":"0.000007872299366576"},{"denom":"ASSET9","index":"0.000003400187866969"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003329715418659"},{"denom":"ASSET1","index":"0.000028238028843607"},{"denom":"ASSET10","index":"0.000022458342297172"},{"denom":"ASSET11","index":"0.000028040237741643"},{"denom":"ASSET12","index":"0.000026695793846360"},{"denom":"ASSET13","index":"0.000008804253880653"},{"denom":"ASSET14","index":"0.000025748953032298"},{"denom":"ASSET15","index":"0.000020243324641083"},{"denom":"ASSET16","index":"0.000012532507824147"},{"denom":"ASSET17","index":"0.000009809802042254"},{"denom":"ASSET18","index":"0.000004070975493464"},{"denom":"ASSET2","index":"0.000008545109234155"},{"denom":"ASSET3","index":"0.000002377197518329"},{"denom":"ASSET4","index":"0.000022894451839245"},{"denom":"ASSET5","index":"0.000001851122407848"},{"denom":"ASSET6","index":"0.000007473999475476"},{"denom":"ASSET7","index":"0.000011732969702935"},{"denom":"ASSET8","index":"0.000016005536556726"},{"denom":"ASSET9","index":"0.000006797137295338"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001649988907243"},{"denom":"ASSET1","index":"0.000013756519537767"},{"denom":"ASSET10","index":"0.000009584361794534"},{"denom":"ASSET11","index":"0.000013307506163009"},{"denom":"ASSET12","index":"0.000011983307415229"},{"denom":"ASSET13","index":"0.000004124070634826"},{"denom":"ASSET14","index":"0.000012431118612277"},{"denom":"ASSET15","index":"0.000008888300900330"},{"denom":"ASSET16","index":"0.000006196625007203"},{"denom":"ASSET17","index":"0.000004401172597026"},{"denom":"ASSET18","index":"0.000002096597926581"},{"denom":"ASSET2","index":"0.000004060355216185"},{"denom":"ASSET3","index":"0.000001187751577673"},{"denom":"ASSET4","index":"0.000011179050527108"},{"denom":"ASSET5","index":"0.000000922070303720"},{"denom":"ASSET6","index":"0.000003752597722375"},{"denom":"ASSET7","index":"0.000005747010543590"},{"denom":"ASSET8","index":"0.000007499184556200"},{"denom":"ASSET9","index":"0.000003238666751267"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003269082759145"},{"denom":"ASSET1","index":"0.000027736662456421"},{"denom":"ASSET10","index":"0.000022145815740722"},{"denom":"ASSET11","index":"0.000027564157079872"},{"denom":"ASSET12","index":"0.000026286254396013"},{"denom":"ASSET13","index":"0.000008658548128401"},{"denom":"ASSET14","index":"0.000025298253418871"},{"denom":"ASSET15","index":"0.000019946084058089"},{"denom":"ASSET16","index":"0.000012303266096103"},{"denom":"ASSET17","index":"0.000009659898104260"},{"denom":"ASSET18","index":"0.000003991565584036"},{"denom":"ASSET2","index":"0.000008399501371576"},{"denom":"ASSET3","index":"0.000002333103515211"},{"denom":"ASSET4","index":"0.000022486071398850"},{"denom":"ASSET5","index":"0.000001817550334619"},{"denom":"ASSET6","index":"0.000007334517845971"},{"denom":"ASSET7","index":"0.000011522603065826"},{"denom":"ASSET8","index":"0.000015739883934035"},{"denom":"ASSET9","index":"0.000006680430297789"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001707974867576"},{"denom":"ASSET1","index":"0.000014238090744503"},{"denom":"ASSET10","index":"0.000009920037235236"},{"denom":"ASSET11","index":"0.000013773690453356"},{"denom":"ASSET12","index":"0.000012403461252069"},{"denom":"ASSET13","index":"0.000004268385028930"},{"denom":"ASSET14","index":"0.000012866619831208"},{"denom":"ASSET15","index":"0.000009199844270355"},{"denom":"ASSET16","index":"0.000006414063379473"},{"denom":"ASSET17","index":"0.000004555220502875"},{"denom":"ASSET18","index":"0.000002169891734707"},{"denom":"ASSET2","index":"0.000004203195148489"},{"denom":"ASSET3","index":"0.000001229294888332"},{"denom":"ASSET4","index":"0.000011570893350426"},{"denom":"ASSET5","index":"0.000000954255678468"},{"denom":"ASSET6","index":"0.000003884075162326"},{"denom":"ASSET7","index":"0.000005948421376317"},{"denom":"ASSET8","index":"0.000007761941764609"},{"denom":"ASSET9","index":"0.000003352622422724"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003075387603983"},{"denom":"ASSET1","index":"0.000026047450678709"},{"denom":"ASSET10","index":"0.000020531243448578"},{"denom":"ASSET11","index":"0.000025816927992783"},{"denom":"ASSET12","index":"0.000024485469945303"},{"denom":"ASSET13","index":"0.000008098391373250"},{"denom":"ASSET14","index":"0.000023735883509134"},{"denom":"ASSET15","index":"0.000018540774078871"},{"denom":"ASSET16","index":"0.000011572711306393"},{"denom":"ASSET17","index":"0.000008997644319689"},{"denom":"ASSET18","index":"0.000003770348288081"},{"denom":"ASSET2","index":"0.000007868945206789"},{"denom":"ASSET3","index":"0.000002196489262864"},{"denom":"ASSET4","index":"0.000021122354693053"},{"denom":"ASSET5","index":"0.000001710501624761"},{"denom":"ASSET6","index":"0.000006909892735753"},{"denom":"ASSET7","index":"0.000010827333344051"},{"denom":"ASSET8","index":"0.000014723239896475"},{"denom":"ASSET9","index":"0.000006260042064096"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001779156074987"},{"denom":"ASSET1","index":"0.000014834764457923"},{"denom":"ASSET10","index":"0.000010335215703318"},{"denom":"ASSET11","index":"0.000014351450406057"},{"denom":"ASSET12","index":"0.000012923397473821"},{"denom":"ASSET13","index":"0.000004447014618532"},{"denom":"ASSET14","index":"0.000013405835956753"},{"denom":"ASSET15","index":"0.000009584853126417"},{"denom":"ASSET16","index":"0.000006682342108415"},{"denom":"ASSET17","index":"0.000004745583625211"},{"denom":"ASSET18","index":"0.000002260718988984"},{"denom":"ASSET2","index":"0.000004378720241638"},{"denom":"ASSET3","index":"0.000001280957351233"},{"denom":"ASSET4","index":"0.000012055708659691"},{"denom":"ASSET5","index":"0.000000993770740704"},{"denom":"ASSET6","index":"0.000004046879615447"},{"denom":"ASSET7","index":"0.000006197276918679"},{"denom":"ASSET8","index":"0.000008086754679418"},{"denom":"ASSET9","index":"0.000003492644479883"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003478645419875"},{"denom":"ASSET1","index":"0.000029510728520321"},{"denom":"ASSET10","index":"0.000023521700007579"},{"denom":"ASSET11","index":"0.000029317721838376"},{"denom":"ASSET12","index":"0.000027938200533330"},{"denom":"ASSET13","index":"0.000009206643656085"},{"denom":"ASSET14","index":"0.000026913511393693"},{"denom":"ASSET15","index":"0.000021192735957156"},{"denom":"ASSET16","index":"0.000013092928863665"},{"denom":"ASSET17","index":"0.000010265835619821"},{"denom":"ASSET18","index":"0.000004249633310572"},{"denom":"ASSET2","index":"0.000008933634051769"},{"denom":"ASSET3","index":"0.000002482776919113"},{"denom":"ASSET4","index":"0.000023925662277258"},{"denom":"ASSET5","index":"0.000001933519521756"},{"denom":"ASSET6","index":"0.000007806757132876"},{"denom":"ASSET7","index":"0.000012260200744601"},{"denom":"ASSET8","index":"0.000016737737824425"},{"denom":"ASSET9","index":"0.000007106044722519"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001752700098923"},{"denom":"ASSET1","index":"0.000014612940709519"},{"denom":"ASSET10","index":"0.000010180696541309"},{"denom":"ASSET11","index":"0.000014136053678762"},{"denom":"ASSET12","index":"0.000012730078503378"},{"denom":"ASSET13","index":"0.000004380628160175"},{"denom":"ASSET14","index":"0.000013205843447004"},{"denom":"ASSET15","index":"0.000009441241121853"},{"denom":"ASSET16","index":"0.000006583285198706"},{"denom":"ASSET17","index":"0.000004674614988548"},{"denom":"ASSET18","index":"0.000002226220868286"},{"denom":"ASSET2","index":"0.000004313302932304"},{"denom":"ASSET3","index":"0.000001261225935460"},{"denom":"ASSET4","index":"0.000011875048109410"},{"denom":"ASSET5","index":"0.000000979582065531"},{"denom":"ASSET6","index":"0.000003985653489996"},{"denom":"ASSET7","index":"0.000006105276080818"},{"denom":"ASSET8","index":"0.000007965696544335"},{"denom":"ASSET9","index":"0.000003440319144236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003327512121722"},{"denom":"ASSET1","index":"0.000028211822531533"},{"denom":"ASSET10","index":"0.000022399629444355"},{"denom":"ASSET11","index":"0.000028004032167971"},{"denom":"ASSET12","index":"0.000026643127370344"},{"denom":"ASSET13","index":"0.000008791339050068"},{"denom":"ASSET14","index":"0.000025722152469956"},{"denom":"ASSET15","index":"0.000020197596080044"},{"denom":"ASSET16","index":"0.000012523737733641"},{"denom":"ASSET17","index":"0.000009790102863953"},{"denom":"ASSET18","index":"0.000004069245825383"},{"denom":"ASSET2","index":"0.000008534453115749"},{"denom":"ASSET3","index":"0.000002375171252372"},{"denom":"ASSET4","index":"0.000022873545881432"},{"denom":"ASSET5","index":"0.000001850500835715"},{"denom":"ASSET6","index":"0.000007470212303630"},{"denom":"ASSET7","index":"0.000011723166108277"},{"denom":"ASSET8","index":"0.000015981595788329"},{"denom":"ASSET9","index":"0.000006788341225254"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001434713876400"},{"denom":"ASSET1","index":"0.000011974044460331"},{"denom":"ASSET10","index":"0.000008340728508476"},{"denom":"ASSET11","index":"0.000011582406348125"},{"denom":"ASSET12","index":"0.000010430757641934"},{"denom":"ASSET13","index":"0.000003588723493535"},{"denom":"ASSET14","index":"0.000010820456951604"},{"denom":"ASSET15","index":"0.000007735822117345"},{"denom":"ASSET16","index":"0.000005393748654249"},{"denom":"ASSET17","index":"0.000003829135007959"},{"denom":"ASSET18","index":"0.000001824413186071"},{"denom":"ASSET2","index":"0.000003534437022536"},{"denom":"ASSET3","index":"0.000001033381751515"},{"denom":"ASSET4","index":"0.000009730849926555"},{"denom":"ASSET5","index":"0.000000802664249770"},{"denom":"ASSET6","index":"0.000003264943470077"},{"denom":"ASSET7","index":"0.000005002110542043"},{"denom":"ASSET8","index":"0.000006526009335083"},{"denom":"ASSET9","index":"0.000002819018886872"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000002895048613815"},{"denom":"ASSET1","index":"0.000024589366099895"},{"denom":"ASSET10","index":"0.000019676065498265"},{"denom":"ASSET11","index":"0.000024447379266412"},{"denom":"ASSET12","index":"0.000023337478265694"},{"denom":"ASSET13","index":"0.000007679998629802"},{"denom":"ASSET14","index":"0.000022431328797509"},{"denom":"ASSET15","index":"0.000017714358679290"},{"denom":"ASSET16","index":"0.000010904445776568"},{"denom":"ASSET17","index":"0.000008574179211920"},{"denom":"ASSET18","index":"0.000003534399202209"},{"denom":"ASSET2","index":"0.000007450371795821"},{"denom":"ASSET3","index":"0.000002066219984895"},{"denom":"ASSET4","index":"0.000019933989143940"},{"denom":"ASSET5","index":"0.000001610899827710"},{"denom":"ASSET6","index":"0.000006497050827728"},{"denom":"ASSET7","index":"0.000010213894093182"},{"denom":"ASSET8","index":"0.000013962110633776"},{"denom":"ASSET9","index":"0.000005925048173997"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001401536005232"},{"denom":"ASSET1","index":"0.000011690786017211"},{"denom":"ASSET10","index":"0.000008143726832164"},{"denom":"ASSET11","index":"0.000011307987636928"},{"denom":"ASSET12","index":"0.000010184289165772"},{"denom":"ASSET13","index":"0.000003503840013080"},{"denom":"ASSET14","index":"0.000010564000462344"},{"denom":"ASSET15","index":"0.000007554093843178"},{"denom":"ASSET16","index":"0.000005266564812612"},{"denom":"ASSET17","index":"0.000003738458375190"},{"denom":"ASSET18","index":"0.000001781247301804"},{"denom":"ASSET2","index":"0.000003448272506265"},{"denom":"ASSET3","index":"0.000001009476373813"},{"denom":"ASSET4","index":"0.000009498956581716"},{"denom":"ASSET5","index":"0.000000781032179127"},{"denom":"ASSET6","index":"0.000003188957474460"},{"denom":"ASSET7","index":"0.000004883766432329"},{"denom":"ASSET8","index":"0.000006371740781496"},{"denom":"ASSET9","index":"0.000002750591587361"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003071913026336"},{"denom":"ASSET1","index":"0.000026115211920195"},{"denom":"ASSET10","index":"0.000021104918039272"},{"denom":"ASSET11","index":"0.000026018207650283"},{"denom":"ASSET12","index":"0.000024942011742431"},{"denom":"ASSET13","index":"0.000008182453133262"},{"denom":"ASSET14","index":"0.000023839798810024"},{"denom":"ASSET15","index":"0.000018963275072170"},{"denom":"ASSET16","index":"0.000011567273660047"},{"denom":"ASSET17","index":"0.000009164652819502"},{"denom":"ASSET18","index":"0.000003735860972186"},{"denom":"ASSET2","index":"0.000007925194415041"},{"denom":"ASSET3","index":"0.000002190810612048"},{"denom":"ASSET4","index":"0.000021165118890878"},{"denom":"ASSET5","index":"0.000001704606606646"},{"denom":"ASSET6","index":"0.000006884812645629"},{"denom":"ASSET7","index":"0.000010842612570084"},{"denom":"ASSET8","index":"0.000014874699612932"},{"denom":"ASSET9","index":"0.000006301602876980"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001534549585700"},{"denom":"ASSET1","index":"0.000012795681230217"},{"denom":"ASSET10","index":"0.000008914897664776"},{"denom":"ASSET11","index":"0.000012378406858633"},{"denom":"ASSET12","index":"0.000011146809898878"},{"denom":"ASSET13","index":"0.000003835934265229"},{"denom":"ASSET14","index":"0.000011563204872419"},{"denom":"ASSET15","index":"0.000008267660704848"},{"denom":"ASSET16","index":"0.000005764014475342"},{"denom":"ASSET17","index":"0.000004093597891939"},{"denom":"ASSET18","index":"0.000001950065161198"},{"denom":"ASSET2","index":"0.000003777014596322"},{"denom":"ASSET3","index":"0.000001104963641508"},{"denom":"ASSET4","index":"0.000010398442163960"},{"denom":"ASSET5","index":"0.000000857413092297"},{"denom":"ASSET6","index":"0.000003490330834180"},{"denom":"ASSET7","index":"0.000005345421006692"},{"denom":"ASSET8","index":"0.000006975385280099"},{"denom":"ASSET9","index":"0.000003012817696624"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003034954909236"},{"denom":"ASSET1","index":"0.000025752158165977"},{"denom":"ASSET10","index":"0.000020556858138008"},{"denom":"ASSET11","index":"0.000025591676311293"},{"denom":"ASSET12","index":"0.000024402528250789"},{"denom":"ASSET13","index":"0.000008038375291107"},{"denom":"ASSET14","index":"0.000023488313497799"},{"denom":"ASSET15","index":"0.000018516037809802"},{"denom":"ASSET16","index":"0.000011423945454084"},{"denom":"ASSET17","index":"0.000008967524527402"},{"denom":"ASSET18","index":"0.000003706330058793"},{"denom":"ASSET2","index":"0.000007798931182527"},{"denom":"ASSET3","index":"0.000002166419358500"},{"denom":"ASSET4","index":"0.000020877722621984"},{"denom":"ASSET5","index":"0.000001687498984799"},{"denom":"ASSET6","index":"0.000006810207932767"},{"denom":"ASSET7","index":"0.000010698180555138"},{"denom":"ASSET8","index":"0.000014612921845389"},{"denom":"ASSET9","index":"0.000006203015740356"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001658482037183"},{"denom":"ASSET1","index":"0.000013862588923046"},{"denom":"ASSET10","index":"0.000009655943522610"},{"denom":"ASSET11","index":"0.000013408077810815"},{"denom":"ASSET12","index":"0.000012073555821711"},{"denom":"ASSET13","index":"0.000004153457929856"},{"denom":"ASSET14","index":"0.000012528066933942"},{"denom":"ASSET15","index":"0.000008954835955871"},{"denom":"ASSET16","index":"0.000006242274956279"},{"denom":"ASSET17","index":"0.000004433900956551"},{"denom":"ASSET18","index":"0.000002112993149414"},{"denom":"ASSET2","index":"0.000004090600010079"},{"denom":"ASSET3","index":"0.000001194300475756"},{"denom":"ASSET4","index":"0.000011266073313811"},{"denom":"ASSET5","index":"0.000000928363122855"},{"denom":"ASSET6","index":"0.000003781145635794"},{"denom":"ASSET7","index":"0.000005787763844048"},{"denom":"ASSET8","index":"0.000007557456046990"},{"denom":"ASSET9","index":"0.000003263776603787"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003188277912377"},{"denom":"ASSET1","index":"0.000027072180177666"},{"denom":"ASSET10","index":"0.000021525590492702"},{"denom":"ASSET11","index":"0.000026879695640981"},{"denom":"ASSET12","index":"0.000025588321740665"},{"denom":"ASSET13","index":"0.000008437670891103"},{"denom":"ASSET14","index":"0.000024686413843557"},{"denom":"ASSET15","index":"0.000019403734038796"},{"denom":"ASSET16","index":"0.000012012351193227"},{"denom":"ASSET17","index":"0.000009402991763462"},{"denom":"ASSET18","index":"0.000003903246578743"},{"denom":"ASSET2","index":"0.000008191237466303"},{"denom":"ASSET3","index":"0.000002276140738265"},{"denom":"ASSET4","index":"0.000021950324608304"},{"denom":"ASSET5","index":"0.000001774065663090"},{"denom":"ASSET6","index":"0.000007165524818145"},{"denom":"ASSET7","index":"0.000011244820309610"},{"denom":"ASSET8","index":"0.000015343724796373"},{"denom":"ASSET9","index":"0.000006516357987660"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001453411320498"},{"denom":"ASSET1","index":"0.000012118137400313"},{"denom":"ASSET10","index":"0.000008442891188019"},{"denom":"ASSET11","index":"0.000011723343510399"},{"denom":"ASSET12","index":"0.000010556870017106"},{"denom":"ASSET13","index":"0.000003632917795231"},{"denom":"ASSET14","index":"0.000010951256903010"},{"denom":"ASSET15","index":"0.000007829943148627"},{"denom":"ASSET16","index":"0.000005459144789091"},{"denom":"ASSET17","index":"0.000003877120201363"},{"denom":"ASSET18","index":"0.000001846984198382"},{"denom":"ASSET2","index":"0.000003577158245830"},{"denom":"ASSET3","index":"0.000001046407310278"},{"denom":"ASSET4","index":"0.000009848276035312"},{"denom":"ASSET5","index":"0.000000811973000390"},{"denom":"ASSET6","index":"0.000003305686571013"},{"denom":"ASSET7","index":"0.000005062722883136"},{"denom":"ASSET8","index":"0.000006606082089893"},{"denom":"ASSET9","index":"0.000002853098111648"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000002979919393708"},{"denom":"ASSET1","index":"0.000025298333716476"},{"denom":"ASSET10","index":"0.000020286143685892"},{"denom":"ASSET11","index":"0.000025164674259360"},{"denom":"ASSET12","index":"0.000024041723171534"},{"denom":"ASSET13","index":"0.000007907785176595"},{"denom":"ASSET14","index":"0.000023082402053339"},{"denom":"ASSET15","index":"0.000018255332392862"},{"denom":"ASSET16","index":"0.000011216675450010"},{"denom":"ASSET17","index":"0.000008835128154455"},{"denom":"ASSET18","index":"0.000003633337151635"},{"denom":"ASSET2","index":"0.000007668586747858"},{"denom":"ASSET3","index":"0.000002126085354033"},{"denom":"ASSET4","index":"0.000020508686269066"},{"denom":"ASSET5","index":"0.000001656307666438"},{"denom":"ASSET6","index":"0.000006683025235204"},{"denom":"ASSET7","index":"0.000010507859389263"},{"denom":"ASSET8","index":"0.000014375637436113"},{"denom":"ASSET9","index":"0.000006098257618497"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001779729226299"},{"denom":"ASSET1","index":"0.000014840802182142"},{"denom":"ASSET10","index":"0.000010337989986643"},{"denom":"ASSET11","index":"0.000014356968690293"},{"denom":"ASSET12","index":"0.000012927350131463"},{"denom":"ASSET13","index":"0.000004449323065747"},{"denom":"ASSET14","index":"0.000013411183623312"},{"denom":"ASSET15","index":"0.000009589142170113"},{"denom":"ASSET16","index":"0.000006683709894939"},{"denom":"ASSET17","index":"0.000004745944603463"},{"denom":"ASSET18","index":"0.000002261131394068"},{"denom":"ASSET2","index":"0.000004378814667437"},{"denom":"ASSET3","index":"0.000001281307789972"},{"denom":"ASSET4","index":"0.000012059367435030"},{"denom":"ASSET5","index":"0.000000994411548574"},{"denom":"ASSET6","index":"0.000004048154592606"},{"denom":"ASSET7","index":"0.000006199876403090"},{"denom":"ASSET8","index":"0.000008089015212973"},{"denom":"ASSET9","index":"0.000003493812702447"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003433377044021"},{"denom":"ASSET1","index":"0.000029119719093870"},{"denom":"ASSET10","index":"0.000023168779363922"},{"denom":"ASSET11","index":"0.000028918871222836"},{"denom":"ASSET12","index":"0.000027536680421684"},{"denom":"ASSET13","index":"0.000009079853140421"},{"denom":"ASSET14","index":"0.000026553415276013"},{"denom":"ASSET15","index":"0.000020883272198610"},{"denom":"ASSET16","index":"0.000012920460029656"},{"denom":"ASSET17","index":"0.000010116347697920"},{"denom":"ASSET18","index":"0.000004196183907349"},{"denom":"ASSET2","index":"0.000008810148159861"},{"denom":"ASSET3","index":"0.000002451192479374"},{"denom":"ASSET4","index":"0.000023608026429735"},{"denom":"ASSET5","index":"0.000001908186346512"},{"denom":"ASSET6","index":"0.000007706415634871"},{"denom":"ASSET7","index":"0.000012098308533034"},{"denom":"ASSET8","index":"0.000016505861275643"},{"denom":"ASSET9","index":"0.000007009790471677"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001595670533734"},{"denom":"ASSET1","index":"0.000013304245337308"},{"denom":"ASSET10","index":"0.000009268754359880"},{"denom":"ASSET11","index":"0.000012870227612725"},{"denom":"ASSET12","index":"0.000011589729681675"},{"denom":"ASSET13","index":"0.000003988302473145"},{"denom":"ASSET14","index":"0.000012022582258004"},{"denom":"ASSET15","index":"0.000008595881243245"},{"denom":"ASSET16","index":"0.000005992940044003"},{"denom":"ASSET17","index":"0.000004256286571545"},{"denom":"ASSET18","index":"0.000002027357961809"},{"denom":"ASSET2","index":"0.000003927132189815"},{"denom":"ASSET3","index":"0.000001148836178358"},{"denom":"ASSET4","index":"0.000010811993222188"},{"denom":"ASSET5","index":"0.000000891338414244"},{"denom":"ASSET6","index":"0.000003628854236813"},{"denom":"ASSET7","index":"0.000005557757171166"},{"denom":"ASSET8","index":"0.000007252465306483"},{"denom":"ASSET9","index":"0.000003132501080646"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003118409098775"},{"denom":"ASSET1","index":"0.000026454243753489"},{"denom":"ASSET10","index":"0.000021084585905412"},{"denom":"ASSET11","index":"0.000026280950742513"},{"denom":"ASSET12","index":"0.000025043390497745"},{"denom":"ASSET13","index":"0.000008253298424938"},{"denom":"ASSET14","index":"0.000024125697910719"},{"denom":"ASSET15","index":"0.000018997425080839"},{"denom":"ASSET16","index":"0.000011737294217995"},{"denom":"ASSET17","index":"0.000009202973625129"},{"denom":"ASSET18","index":"0.000003809493270778"},{"denom":"ASSET2","index":"0.000008008868325931"},{"denom":"ASSET3","index":"0.000002225819587877"},{"denom":"ASSET4","index":"0.000021447702379813"},{"denom":"ASSET5","index":"0.000001733713847172"},{"denom":"ASSET6","index":"0.000006998355968525"},{"denom":"ASSET7","index":"0.000010990481127196"},{"denom":"ASSET8","index":"0.000015003824321723"},{"denom":"ASSET9","index":"0.000006370091157596"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001536288093705"},{"denom":"ASSET1","index":"0.000012808796131863"},{"denom":"ASSET10","index":"0.000008924322337818"},{"denom":"ASSET11","index":"0.000012391382492026"},{"denom":"ASSET12","index":"0.000011158327625467"},{"denom":"ASSET13","index":"0.000003840018305497"},{"denom":"ASSET14","index":"0.000011575273312793"},{"denom":"ASSET15","index":"0.000008276208110044"},{"denom":"ASSET16","index":"0.000005770322413488"},{"denom":"ASSET17","index":"0.000004097860139074"},{"denom":"ASSET18","index":"0.000001951829923499"},{"denom":"ASSET2","index":"0.000003781056289108"},{"denom":"ASSET3","index":"0.000001105771783560"},{"denom":"ASSET4","index":"0.000010409603607822"},{"denom":"ASSET5","index":"0.000000858224905226"},{"denom":"ASSET6","index":"0.000003494201399847"},{"denom":"ASSET7","index":"0.000005351036963607"},{"denom":"ASSET8","index":"0.000006982787369562"},{"denom":"ASSET9","index":"0.000003015953933577"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003103831608428"},{"denom":"ASSET1","index":"0.000026343132935309"},{"denom":"ASSET10","index":"0.000021085436521682"},{"denom":"ASSET11","index":"0.000026194005406126"},{"denom":"ASSET12","index":"0.000025005394550642"},{"denom":"ASSET13","index":"0.000008229918727938"},{"denom":"ASSET14","index":"0.000024032248358707"},{"denom":"ASSET15","index":"0.000018981699828973"},{"denom":"ASSET16","index":"0.000011682673521897"},{"denom":"ASSET17","index":"0.000009189132473525"},{"denom":"ASSET18","index":"0.000003786361913516"},{"denom":"ASSET2","index":"0.000007982150766688"},{"denom":"ASSET3","index":"0.000002214601198569"},{"denom":"ASSET4","index":"0.000021356131094847"},{"denom":"ASSET5","index":"0.000001725369734459"},{"denom":"ASSET6","index":"0.000006962131899100"},{"denom":"ASSET7","index":"0.000010942547729288"},{"denom":"ASSET8","index":"0.000014960973970884"},{"denom":"ASSET9","index":"0.000006348281537724"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001156201861882"},{"denom":"ASSET1","index":"0.000009641528249827"},{"denom":"ASSET10","index":"0.000006717693720376"},{"denom":"ASSET11","index":"0.000009327193051790"},{"denom":"ASSET12","index":"0.000008399128436016"},{"denom":"ASSET13","index":"0.000002890504654704"},{"denom":"ASSET14","index":"0.000008712888981039"},{"denom":"ASSET15","index":"0.000006229813312455"},{"denom":"ASSET16","index":"0.000004343227471224"},{"denom":"ASSET17","index":"0.000003084737373052"},{"denom":"ASSET18","index":"0.000001469387753892"},{"denom":"ASSET2","index":"0.000002846256372714"},{"denom":"ASSET3","index":"0.000000832672215639"},{"denom":"ASSET4","index":"0.000007835393830396"},{"denom":"ASSET5","index":"0.000000645909986459"},{"denom":"ASSET6","index":"0.000002630186839877"},{"denom":"ASSET7","index":"0.000004027742967162"},{"denom":"ASSET8","index":"0.000005256351108664"},{"denom":"ASSET9","index":"0.000002269879400812"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000002648545180722"},{"denom":"ASSET1","index":"0.000022528915692996"},{"denom":"ASSET10","index":"0.000018297756458480"},{"denom":"ASSET11","index":"0.000022469822082599"},{"denom":"ASSET12","index":"0.000021584227648624"},{"denom":"ASSET13","index":"0.000007070243338634"},{"denom":"ASSET14","index":"0.000020574684608302"},{"denom":"ASSET15","index":"0.000016423497937791"},{"denom":"ASSET16","index":"0.000009972839292196"},{"denom":"ASSET17","index":"0.000007932645550822"},{"denom":"ASSET18","index":"0.000003216131666673"},{"denom":"ASSET2","index":"0.000006846442901912"},{"denom":"ASSET3","index":"0.000001888119307859"},{"denom":"ASSET4","index":"0.000018258669735553"},{"denom":"ASSET5","index":"0.000001471345302008"},{"denom":"ASSET6","index":"0.000005932348598922"},{"denom":"ASSET7","index":"0.000009352074075404"},{"denom":"ASSET8","index":"0.000012853047191550"},{"denom":"ASSET9","index":"0.000005442948627063"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001638829976996"},{"denom":"ASSET1","index":"0.000013663699511091"},{"denom":"ASSET10","index":"0.000009519748943981"},{"denom":"ASSET11","index":"0.000013218199388741"},{"denom":"ASSET12","index":"0.000011902774883924"},{"denom":"ASSET13","index":"0.000004095984811686"},{"denom":"ASSET14","index":"0.000012347548252404"},{"denom":"ASSET15","index":"0.000008827879259679"},{"denom":"ASSET16","index":"0.000006154878525580"},{"denom":"ASSET17","index":"0.000004371424528441"},{"denom":"ASSET18","index":"0.000002082149837736"},{"denom":"ASSET2","index":"0.000004033483978861"},{"denom":"ASSET3","index":"0.000001179521531115"},{"denom":"ASSET4","index":"0.000011104072380722"},{"denom":"ASSET5","index":"0.000000915709876282"},{"denom":"ASSET6","index":"0.000003726793845693"},{"denom":"ASSET7","index":"0.000005707924895490"},{"denom":"ASSET8","index":"0.000007448500414296"},{"denom":"ASSET9","index":"0.000003217339382778"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003133427860009"},{"denom":"ASSET1","index":"0.000026571363581284"},{"denom":"ASSET10","index":"0.000021118003104150"},{"denom":"ASSET11","index":"0.000026381510155653"},{"denom":"ASSET12","index":"0.000025108485590780"},{"denom":"ASSET13","index":"0.000008282355352591"},{"denom":"ASSET14","index":"0.000024227637307493"},{"denom":"ASSET15","index":"0.000019037535386694"},{"denom":"ASSET16","index":"0.000011793447009555"},{"denom":"ASSET17","index":"0.000009226841180516"},{"denom":"ASSET18","index":"0.000003831770888939"},{"denom":"ASSET2","index":"0.000008040278303534"},{"denom":"ASSET3","index":"0.000002236402387063"},{"denom":"ASSET4","index":"0.000021543810534784"},{"denom":"ASSET5","index":"0.000001742508705183"},{"denom":"ASSET6","index":"0.000007033989161296"},{"denom":"ASSET7","index":"0.000011040340871930"},{"denom":"ASSET8","index":"0.000015056795520064"},{"denom":"ASSET9","index":"0.000006395464292965"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001556422065682"},{"denom":"ASSET1","index":"0.000012975233747354"},{"denom":"ASSET10","index":"0.000009039925804131"},{"denom":"ASSET11","index":"0.000012551842294036"},{"denom":"ASSET12","index":"0.000011303196313064"},{"denom":"ASSET13","index":"0.000003889859143149"},{"denom":"ASSET14","index":"0.000011725391745328"},{"denom":"ASSET15","index":"0.000008383310245172"},{"denom":"ASSET16","index":"0.000005844954893688"},{"denom":"ASSET17","index":"0.000004150990406731"},{"denom":"ASSET18","index":"0.000001977421476890"},{"denom":"ASSET2","index":"0.000003830058090421"},{"denom":"ASSET3","index":"0.000001120273054448"},{"denom":"ASSET4","index":"0.000010544520290781"},{"denom":"ASSET5","index":"0.000000869507306673"},{"denom":"ASSET6","index":"0.000003539424974160"},{"denom":"ASSET7","index":"0.000005420766093000"},{"denom":"ASSET8","index":"0.000007073268516732"},{"denom":"ASSET9","index":"0.000003055036447059"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003102345998156"},{"denom":"ASSET1","index":"0.000026324295521459"},{"denom":"ASSET10","index":"0.000021034709957123"},{"denom":"ASSET11","index":"0.000026165624152899"},{"denom":"ASSET12","index":"0.000024960753498443"},{"denom":"ASSET13","index":"0.000008219480216908"},{"denom":"ASSET14","index":"0.000024012126304297"},{"denom":"ASSET15","index":"0.000018942125813395"},{"denom":"ASSET16","index":"0.000011676379885795"},{"denom":"ASSET17","index":"0.000009172744202097"},{"denom":"ASSET18","index":"0.000003786686743681"},{"denom":"ASSET2","index":"0.000007973892542195"},{"denom":"ASSET3","index":"0.000002213622154517"},{"denom":"ASSET4","index":"0.000021341514997764"},{"denom":"ASSET5","index":"0.000001724677267981"},{"denom":"ASSET6","index":"0.000006959760131783"},{"denom":"ASSET7","index":"0.000010935767858794"},{"denom":"ASSET8","index":"0.000014942141973689"},{"denom":"ASSET9","index":"0.000006341977499472"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001602535700795"},{"denom":"ASSET1","index":"0.000013360208994045"},{"denom":"ASSET10","index":"0.000009307956057468"},{"denom":"ASSET11","index":"0.000012924500245282"},{"denom":"ASSET12","index":"0.000011638378499862"},{"denom":"ASSET13","index":"0.000004005127453862"},{"denom":"ASSET14","index":"0.000012073279383206"},{"denom":"ASSET15","index":"0.000008632311279566"},{"denom":"ASSET16","index":"0.000006018597363935"},{"denom":"ASSET17","index":"0.000004274146638048"},{"denom":"ASSET18","index":"0.000002036090141777"},{"denom":"ASSET2","index":"0.000003943729682095"},{"denom":"ASSET3","index":"0.000001153631816872"},{"denom":"ASSET4","index":"0.000010857441929150"},{"denom":"ASSET5","index":"0.000000895384171592"},{"denom":"ASSET6","index":"0.000003644280900498"},{"denom":"ASSET7","index":"0.000005581542172809"},{"denom":"ASSET8","index":"0.000007283176031543"},{"denom":"ASSET9","index":"0.000003145827937606"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003144114236048"},{"denom":"ASSET1","index":"0.000026672683120621"},{"denom":"ASSET10","index":"0.000021269722635007"},{"denom":"ASSET11","index":"0.000026500587720899"},{"denom":"ASSET12","index":"0.000025258297912053"},{"denom":"ASSET13","index":"0.000008323039503604"},{"denom":"ASSET14","index":"0.000024326015412045"},{"denom":"ASSET15","index":"0.000019162234595686"},{"denom":"ASSET16","index":"0.000011833945147558"},{"denom":"ASSET17","index":"0.000009281867675434"},{"denom":"ASSET18","index":"0.000003840349431676"},{"denom":"ASSET2","index":"0.000008076055447193"},{"denom":"ASSET3","index":"0.000002244145529651"},{"denom":"ASSET4","index":"0.000021624555086447"},{"denom":"ASSET5","index":"0.000001748086313596"},{"denom":"ASSET6","index":"0.000007055400333314"},{"denom":"ASSET7","index":"0.000011081362186058"},{"denom":"ASSET8","index":"0.000015130336137492"},{"denom":"ASSET9","index":"0.000006423586371910"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001633811359009"},{"denom":"ASSET1","index":"0.000013620164108551"},{"denom":"ASSET10","index":"0.000009487838038290"},{"denom":"ASSET11","index":"0.000013174776703502"},{"denom":"ASSET12","index":"0.000011864685946211"},{"denom":"ASSET13","index":"0.000004082355776036"},{"denom":"ASSET14","index":"0.000012307900729772"},{"denom":"ASSET15","index":"0.000008799117026580"},{"denom":"ASSET16","index":"0.000006135483082238"},{"denom":"ASSET17","index":"0.000004356106083529"},{"denom":"ASSET18","index":"0.000002074853521082"},{"denom":"ASSET2","index":"0.000004019349752882"},{"denom":"ASSET3","index":"0.000001175388225032"},{"denom":"ASSET4","index":"0.000011067333860098"},{"denom":"ASSET5","index":"0.000000912501024979"},{"denom":"ASSET6","index":"0.000003715182744556"},{"denom":"ASSET7","index":"0.000005690095677188"},{"denom":"ASSET8","index":"0.000007423847624648"},{"denom":"ASSET9","index":"0.000003206789316354"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003109600829404"},{"denom":"ASSET1","index":"0.000026362702045617"},{"denom":"ASSET10","index":"0.000020937844947102"},{"denom":"ASSET11","index":"0.000026169598808926"},{"denom":"ASSET12","index":"0.000024901798461360"},{"denom":"ASSET13","index":"0.000008215149609138"},{"denom":"ASSET14","index":"0.000024035954930107"},{"denom":"ASSET15","index":"0.000018878331344314"},{"denom":"ASSET16","index":"0.000011701775976010"},{"denom":"ASSET17","index":"0.000009149505282332"},{"denom":"ASSET18","index":"0.000003801954966508"},{"denom":"ASSET2","index":"0.000007974718303805"},{"denom":"ASSET3","index":"0.000002219037761573"},{"denom":"ASSET4","index":"0.000021373555319687"},{"denom":"ASSET5","index":"0.000001728657323000"},{"denom":"ASSET6","index":"0.000006980294033305"},{"denom":"ASSET7","index":"0.000010954522542925"},{"denom":"ASSET8","index":"0.000014935013269095"},{"denom":"ASSET9","index":"0.000006344057182602"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001356454583190"},{"denom":"ASSET1","index":"0.000011307707773056"},{"denom":"ASSET10","index":"0.000007878355411964"},{"denom":"ASSET11","index":"0.000010938987301217"},{"denom":"ASSET12","index":"0.000009850463994830"},{"denom":"ASSET13","index":"0.000003389876593037"},{"denom":"ASSET14","index":"0.000010218764511690"},{"denom":"ASSET15","index":"0.000007305956775156"},{"denom":"ASSET16","index":"0.000005094053899100"},{"denom":"ASSET17","index":"0.000003617492191826"},{"denom":"ASSET18","index":"0.000001723075280133"},{"denom":"ASSET2","index":"0.000003337802175602"},{"denom":"ASSET3","index":"0.000000976395326909"},{"denom":"ASSET4","index":"0.000009189454857387"},{"denom":"ASSET5","index":"0.000000758018737665"},{"denom":"ASSET6","index":"0.000003084569323074"},{"denom":"ASSET7","index":"0.000004724073562323"},{"denom":"ASSET8","index":"0.000006164519141376"},{"denom":"ASSET9","index":"0.000002662514568862"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000002920257070141"},{"denom":"ASSET1","index":"0.000024811653868653"},{"denom":"ASSET10","index":"0.000020012294768332"},{"denom":"ASSET11","index":"0.000024710629923001"},{"denom":"ASSET12","index":"0.000023666550441425"},{"denom":"ASSET13","index":"0.000007769918885884"},{"denom":"ASSET14","index":"0.000022647790193256"},{"denom":"ASSET15","index":"0.000017987461600930"},{"denom":"ASSET16","index":"0.000010993196459757"},{"denom":"ASSET17","index":"0.000008697266331114"},{"denom":"ASSET18","index":"0.000003553540715950"},{"denom":"ASSET2","index":"0.000007529733395993"},{"denom":"ASSET3","index":"0.000002082581454906"},{"denom":"ASSET4","index":"0.000020111524804667"},{"denom":"ASSET5","index":"0.000001623122955496"},{"denom":"ASSET6","index":"0.000006544727800067"},{"denom":"ASSET7","index":"0.000010303065547743"},{"denom":"ASSET8","index":"0.000014124873274804"},{"denom":"ASSET9","index":"0.000005987532811110"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001730803097805"},{"denom":"ASSET1","index":"0.000014429128492036"},{"denom":"ASSET10","index":"0.000010053081326419"},{"denom":"ASSET11","index":"0.000013956042311970"},{"denom":"ASSET12","index":"0.000012568515161896"},{"denom":"ASSET13","index":"0.000004324123072683"},{"denom":"ASSET14","index":"0.000013038716670133"},{"denom":"ASSET15","index":"0.000009320374681681"},{"denom":"ASSET16","index":"0.000006499165632259"},{"denom":"ASSET17","index":"0.000004615474927481"},{"denom":"ASSET18","index":"0.000002198119934213"},{"denom":"ASSET2","index":"0.000004257775620601"},{"denom":"ASSET3","index":"0.000001243293558590"},{"denom":"ASSET4","index":"0.000011726190987631"},{"denom":"ASSET5","index":"0.000000966365062941"},{"denom":"ASSET6","index":"0.000003934692375677"},{"denom":"ASSET7","index":"0.000006026079452192"},{"denom":"ASSET8","index":"0.000007863615407695"},{"denom":"ASSET9","index":"0.000003395258743528"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003241945367060"},{"denom":"ASSET1","index":"0.000027480716546724"},{"denom":"ASSET10","index":"0.000021780901079221"},{"denom":"ASSET11","index":"0.000027265989011084"},{"denom":"ASSET12","index":"0.000025921947969478"},{"denom":"ASSET13","index":"0.000008556984130745"},{"denom":"ASSET14","index":"0.000025051754134356"},{"denom":"ASSET15","index":"0.000019643848931612"},{"denom":"ASSET16","index":"0.000012200322352703"},{"denom":"ASSET17","index":"0.000009524928673174"},{"denom":"ASSET18","index":"0.000003966981346299"},{"denom":"ASSET2","index":"0.000008309018225650"},{"denom":"ASSET3","index":"0.000002312540225621"},{"denom":"ASSET4","index":"0.000022282443818183"},{"denom":"ASSET5","index":"0.000001802193647755"},{"denom":"ASSET6","index":"0.000007278646216530"},{"denom":"ASSET7","index":"0.000011418356902196"},{"denom":"ASSET8","index":"0.000015557459098515"},{"denom":"ASSET9","index":"0.000006608754258977"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001631665384825"},{"denom":"ASSET1","index":"0.000013602742609312"},{"denom":"ASSET10","index":"0.000009477179623123"},{"denom":"ASSET11","index":"0.000013159027954757"},{"denom":"ASSET12","index":"0.000011849393704263"},{"denom":"ASSET13","index":"0.000004077627053980"},{"denom":"ASSET14","index":"0.000012292493795584"},{"denom":"ASSET15","index":"0.000008788868801652"},{"denom":"ASSET16","index":"0.000006127810000788"},{"denom":"ASSET17","index":"0.000004351722256101"},{"denom":"ASSET18","index":"0.000002072921786447"},{"denom":"ASSET2","index":"0.000004015556167401"},{"denom":"ASSET3","index":"0.000001174430339134"},{"denom":"ASSET4","index":"0.000011054148880171"},{"denom":"ASSET5","index":"0.000000911397275215"},{"denom":"ASSET6","index":"0.000003710118240373"},{"denom":"ASSET7","index":"0.000005682866219766"},{"denom":"ASSET8","index":"0.000007415319974879"},{"denom":"ASSET9","index":"0.000003202489009539"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003079719434352"},{"denom":"ASSET1","index":"0.000026105925494605"},{"denom":"ASSET10","index":"0.000020711970439773"},{"denom":"ASSET11","index":"0.000025910008103106"},{"denom":"ASSET12","index":"0.000024641613628664"},{"denom":"ASSET13","index":"0.000008133110770201"},{"denom":"ASSET14","index":"0.000023800542954419"},{"denom":"ASSET15","index":"0.000018678884312278"},{"denom":"ASSET16","index":"0.000011589749383737"},{"denom":"ASSET17","index":"0.000009055208366452"},{"denom":"ASSET18","index":"0.000003767697278786"},{"denom":"ASSET2","index":"0.000007896757003962"},{"denom":"ASSET3","index":"0.000002198611212202"},{"denom":"ASSET4","index":"0.000021166859181475"},{"denom":"ASSET5","index":"0.000001712166144109"},{"denom":"ASSET6","index":"0.000006913910929446"},{"denom":"ASSET7","index":"0.000010848237821893"},{"denom":"ASSET8","index":"0.000014785764472138"},{"denom":"ASSET9","index":"0.000006281127943464"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001520990142264"},{"denom":"ASSET1","index":"0.000012680102108631"},{"denom":"ASSET10","index":"0.000008834326429376"},{"denom":"ASSET11","index":"0.000012266893306329"},{"denom":"ASSET12","index":"0.000011046354389007"},{"denom":"ASSET13","index":"0.000003801591675587"},{"denom":"ASSET14","index":"0.000011458856247250"},{"denom":"ASSET15","index":"0.000008193128168148"},{"denom":"ASSET16","index":"0.000005712107994187"},{"denom":"ASSET17","index":"0.000004056798480773"},{"denom":"ASSET18","index":"0.000001932431584420"},{"denom":"ASSET2","index":"0.000003743268790745"},{"denom":"ASSET3","index":"0.000001095056346905"},{"denom":"ASSET4","index":"0.000010304770071444"},{"denom":"ASSET5","index":"0.000000849746758541"},{"denom":"ASSET6","index":"0.000003459077279153"},{"denom":"ASSET7","index":"0.000005297485303768"},{"denom":"ASSET8","index":"0.000006912499005837"},{"denom":"ASSET9","index":"0.000002985778231863"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003063170165442"},{"denom":"ASSET1","index":"0.000025996358951928"},{"denom":"ASSET10","index":"0.000020799618544072"},{"denom":"ASSET11","index":"0.000025846936295403"},{"denom":"ASSET12","index":"0.000024670295822131"},{"denom":"ASSET13","index":"0.000008120644896033"},{"denom":"ASSET14","index":"0.000023715222729701"},{"denom":"ASSET15","index":"0.000018725986369791"},{"denom":"ASSET16","index":"0.000011529047312284"},{"denom":"ASSET17","index":"0.000009065966880203"},{"denom":"ASSET18","index":"0.000003737409049681"},{"denom":"ASSET2","index":"0.000007876841198043"},{"denom":"ASSET3","index":"0.000002185992003768"},{"denom":"ASSET4","index":"0.000021074917159843"},{"denom":"ASSET5","index":"0.000001702800306431"},{"denom":"ASSET6","index":"0.000006871093729972"},{"denom":"ASSET7","index":"0.000010798830402478"},{"denom":"ASSET8","index":"0.000014762015379742"},{"denom":"ASSET9","index":"0.000006264517424621"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001519669987195"},{"denom":"ASSET1","index":"0.000012676623405048"},{"denom":"ASSET10","index":"0.000008831600766261"},{"denom":"ASSET11","index":"0.000012262448940742"},{"denom":"ASSET12","index":"0.000011042591812037"},{"denom":"ASSET13","index":"0.000003799690110356"},{"denom":"ASSET14","index":"0.000011454705706870"},{"denom":"ASSET15","index":"0.000008189733375059"},{"denom":"ASSET16","index":"0.000005709838012905"},{"denom":"ASSET17","index":"0.000004055200725152"},{"denom":"ASSET18","index":"0.000001931783882027"},{"denom":"ASSET2","index":"0.000003741994165079"},{"denom":"ASSET3","index":"0.000001094162390780"},{"denom":"ASSET4","index":"0.000010301817086076"},{"denom":"ASSET5","index":"0.000000848954623355"},{"denom":"ASSET6","index":"0.000003457635577645"},{"denom":"ASSET7","index":"0.000005295663548598"},{"denom":"ASSET8","index":"0.000006910119731604"},{"denom":"ASSET9","index":"0.000002984734883325"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003051401969864"},{"denom":"ASSET1","index":"0.000025903543471827"},{"denom":"ASSET10","index":"0.000020717104247015"},{"denom":"ASSET11","index":"0.000025751820078700"},{"denom":"ASSET12","index":"0.000024575704795191"},{"denom":"ASSET13","index":"0.000008089460542782"},{"denom":"ASSET14","index":"0.000023629519286555"},{"denom":"ASSET15","index":"0.000018652475785738"},{"denom":"ASSET16","index":"0.000011487598582804"},{"denom":"ASSET17","index":"0.000009031027466449"},{"denom":"ASSET18","index":"0.000003724432134289"},{"denom":"ASSET2","index":"0.000007847588407204"},{"denom":"ASSET3","index":"0.000002177732310384"},{"denom":"ASSET4","index":"0.000021000151540181"},{"denom":"ASSET5","index":"0.000001696165098739"},{"denom":"ASSET6","index":"0.000006846477479182"},{"denom":"ASSET7","index":"0.000010760324594985"},{"denom":"ASSET8","index":"0.000014706911787677"},{"denom":"ASSET9","index":"0.000006241583848480"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001392192847149"},{"denom":"ASSET1","index":"0.000011611450847386"},{"denom":"ASSET10","index":"0.000008088781067478"},{"denom":"ASSET11","index":"0.000011231761889073"},{"denom":"ASSET12","index":"0.000010115195100551"},{"denom":"ASSET13","index":"0.000003480482117873"},{"denom":"ASSET14","index":"0.000010492071548062"},{"denom":"ASSET15","index":"0.000007502372565194"},{"denom":"ASSET16","index":"0.000005229863836918"},{"denom":"ASSET17","index":"0.000003713920514466"},{"denom":"ASSET18","index":"0.000001769069294661"},{"denom":"ASSET2","index":"0.000003427044412629"},{"denom":"ASSET3","index":"0.000001002660101028"},{"denom":"ASSET4","index":"0.000009435973741790"},{"denom":"ASSET5","index":"0.000000777659236842"},{"denom":"ASSET6","index":"0.000003166887163415"},{"denom":"ASSET7","index":"0.000004850174878604"},{"denom":"ASSET8","index":"0.000006329555560626"},{"denom":"ASSET9","index":"0.000002733760499857"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000002834261839987"},{"denom":"ASSET1","index":"0.000024063735726127"},{"denom":"ASSET10","index":"0.000019278012414561"},{"denom":"ASSET11","index":"0.000023930766794440"},{"denom":"ASSET12","index":"0.000022855511266190"},{"denom":"ASSET13","index":"0.000007519422832827"},{"denom":"ASSET14","index":"0.000021953268691937"},{"denom":"ASSET15","index":"0.000017352048046781"},{"denom":"ASSET16","index":"0.000010669562284438"},{"denom":"ASSET17","index":"0.000008398158415340"},{"denom":"ASSET18","index":"0.000003456710779118"},{"denom":"ASSET2","index":"0.000007292324829772"},{"denom":"ASSET3","index":"0.000002022818722752"},{"denom":"ASSET4","index":"0.000019507505991506"},{"denom":"ASSET5","index":"0.000001575196067099"},{"denom":"ASSET6","index":"0.000006357416996111"},{"denom":"ASSET7","index":"0.000009994574317511"},{"denom":"ASSET8","index":"0.000013669954492341"},{"denom":"ASSET9","index":"0.000005799591528398"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001553840185331"},{"denom":"ASSET1","index":"0.000012958259817171"},{"denom":"ASSET10","index":"0.000009028099224953"},{"denom":"ASSET11","index":"0.000012533831248030"},{"denom":"ASSET12","index":"0.000011286922457332"},{"denom":"ASSET13","index":"0.000003884600463327"},{"denom":"ASSET14","index":"0.000011708953124953"},{"denom":"ASSET15","index":"0.000008371074208317"},{"denom":"ASSET16","index":"0.000005836492301072"},{"denom":"ASSET17","index":"0.000004143573827548"},{"denom":"ASSET18","index":"0.000001973472951431"},{"denom":"ASSET2","index":"0.000003824652925312"},{"denom":"ASSET3","index":"0.000001117422108587"},{"denom":"ASSET4","index":"0.000010529185576831"},{"denom":"ASSET5","index":"0.000000868040350447"},{"denom":"ASSET6","index":"0.000003534506841323"},{"denom":"ASSET7","index":"0.000005412063731931"},{"denom":"ASSET8","index":"0.000007064217879605"},{"denom":"ASSET9","index":"0.000003050130734168"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000002875427361068"},{"denom":"ASSET1","index":"0.000024372739255487"},{"denom":"ASSET10","index":"0.000019284464921318"},{"denom":"ASSET11","index":"0.000024174413552556"},{"denom":"ASSET12","index":"0.000022964657814992"},{"denom":"ASSET13","index":"0.000007586106071195"},{"denom":"ASSET14","index":"0.000022214775035212"},{"denom":"ASSET15","index":"0.000017399266119679"},{"denom":"ASSET16","index":"0.000010822432031544"},{"denom":"ASSET17","index":"0.000008437405253940"},{"denom":"ASSET18","index":"0.000003520101477575"},{"denom":"ASSET2","index":"0.000007366931162610"},{"denom":"ASSET3","index":"0.000002051556015935"},{"denom":"ASSET4","index":"0.000019761188522524"},{"denom":"ASSET5","index":"0.000001598363223465"},{"denom":"ASSET6","index":"0.000006458982880806"},{"denom":"ASSET7","index":"0.000010127316932433"},{"denom":"ASSET8","index":"0.000013792105044122"},{"denom":"ASSET9","index":"0.000005859963066840"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001468329025254"},{"denom":"ASSET1","index":"0.000012248466172689"},{"denom":"ASSET10","index":"0.000008533242661533"},{"denom":"ASSET11","index":"0.000011849890220686"},{"denom":"ASSET12","index":"0.000010670683647662"},{"denom":"ASSET13","index":"0.000003671855143322"},{"denom":"ASSET14","index":"0.000011069259599665"},{"denom":"ASSET15","index":"0.000007913694549611"},{"denom":"ASSET16","index":"0.000005518108516848"},{"denom":"ASSET17","index":"0.000003917609227717"},{"denom":"ASSET18","index":"0.000001866904977257"},{"denom":"ASSET2","index":"0.000003616095813249"},{"denom":"ASSET3","index":"0.000001057362111013"},{"denom":"ASSET4","index":"0.000009954072998206"},{"denom":"ASSET5","index":"0.000000819868668110"},{"denom":"ASSET6","index":"0.000003341429483630"},{"denom":"ASSET7","index":"0.000005117467404472"},{"denom":"ASSET8","index":"0.000006676663486141"},{"denom":"ASSET9","index":"0.000002882963880808"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000002995432004660"},{"denom":"ASSET1","index":"0.000025434255671185"},{"denom":"ASSET10","index":"0.000020381248485322"},{"denom":"ASSET11","index":"0.000025297016742096"},{"denom":"ASSET12","index":"0.000024161457271020"},{"denom":"ASSET13","index":"0.000007948725545453"},{"denom":"ASSET14","index":"0.000023205881885085"},{"denom":"ASSET15","index":"0.000018343715148864"},{"denom":"ASSET16","index":"0.000011277889207663"},{"denom":"ASSET17","index":"0.000008877556775335"},{"denom":"ASSET18","index":"0.000003654253802028"},{"denom":"ASSET2","index":"0.000007709102798424"},{"denom":"ASSET3","index":"0.000002137627884226"},{"denom":"ASSET4","index":"0.000020618696770430"},{"denom":"ASSET5","index":"0.000001664440090804"},{"denom":"ASSET6","index":"0.000006720260763181"},{"denom":"ASSET7","index":"0.000010565171316359"},{"denom":"ASSET8","index":"0.000014449121165534"},{"denom":"ASSET9","index":"0.000006129217088192"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001484659776814"},{"denom":"ASSET1","index":"0.000012377911876883"},{"denom":"ASSET10","index":"0.000008623797972416"},{"denom":"ASSET11","index":"0.000011974339842928"},{"denom":"ASSET12","index":"0.000010782780641408"},{"denom":"ASSET13","index":"0.000003710691597017"},{"denom":"ASSET14","index":"0.000011185714112019"},{"denom":"ASSET15","index":"0.000007997367331102"},{"denom":"ASSET16","index":"0.000005575935127370"},{"denom":"ASSET17","index":"0.000003959731301514"},{"denom":"ASSET18","index":"0.000001886316120734"},{"denom":"ASSET2","index":"0.000003653859459324"},{"denom":"ASSET3","index":"0.000001068955039306"},{"denom":"ASSET4","index":"0.000010059288371675"},{"denom":"ASSET5","index":"0.000000829493784981"},{"denom":"ASSET6","index":"0.000003376084404307"},{"denom":"ASSET7","index":"0.000005171085966725"},{"denom":"ASSET8","index":"0.000006747698865199"},{"denom":"ASSET9","index":"0.000002914403105969"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000002967027008461"},{"denom":"ASSET1","index":"0.000025180120058697"},{"denom":"ASSET10","index":"0.000020126919929476"},{"denom":"ASSET11","index":"0.000025029678796477"},{"denom":"ASSET12","index":"0.000023880507059092"},{"denom":"ASSET13","index":"0.000007862872062626"},{"denom":"ASSET14","index":"0.000022968832134984"},{"denom":"ASSET15","index":"0.000018123195207046"},{"denom":"ASSET16","index":"0.000011168095360491"},{"denom":"ASSET17","index":"0.000008775186029853"},{"denom":"ASSET18","index":"0.000003621217117579"},{"denom":"ASSET2","index":"0.000007627534970337"},{"denom":"ASSET3","index":"0.000002117298518473"},{"denom":"ASSET4","index":"0.000020413769751333"},{"denom":"ASSET5","index":"0.000001649183760435"},{"denom":"ASSET6","index":"0.000006656038319196"},{"denom":"ASSET7","index":"0.000010459966878994"},{"denom":"ASSET8","index":"0.000014293861494285"},{"denom":"ASSET9","index":"0.000006066597621916"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001508631993599"},{"denom":"ASSET1","index":"0.000012578103553994"},{"denom":"ASSET10","index":"0.000008763023138279"},{"denom":"ASSET11","index":"0.000012169014387632"},{"denom":"ASSET12","index":"0.000010956555546150"},{"denom":"ASSET13","index":"0.000003770654442897"},{"denom":"ASSET14","index":"0.000011367495794714"},{"denom":"ASSET15","index":"0.000008126250861227"},{"denom":"ASSET16","index":"0.000005666162616450"},{"denom":"ASSET17","index":"0.000004024252704398"},{"denom":"ASSET18","index":"0.000001915870077761"},{"denom":"ASSET2","index":"0.000003713270894674"},{"denom":"ASSET3","index":"0.000001084734169631"},{"denom":"ASSET4","index":"0.000010221675912459"},{"denom":"ASSET5","index":"0.000000842242401334"},{"denom":"ASSET6","index":"0.000003430055317962"},{"denom":"ASSET7","index":"0.000005255222367887"},{"denom":"ASSET8","index":"0.000006856408471522"},{"denom":"ASSET9","index":"0.000002961731521176"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000002968383248598"},{"denom":"ASSET1","index":"0.000025185581850199"},{"denom":"ASSET10","index":"0.000020091193699906"},{"denom":"ASSET11","index":"0.000025026167595767"},{"denom":"ASSET12","index":"0.000023854952987524"},{"denom":"ASSET13","index":"0.000007859725566891"},{"denom":"ASSET14","index":"0.000022971118914045"},{"denom":"ASSET15","index":"0.000018098517255117"},{"denom":"ASSET16","index":"0.000011173004258039"},{"denom":"ASSET17","index":"0.000008766603022733"},{"denom":"ASSET18","index":"0.000003624559740525"},{"denom":"ASSET2","index":"0.000007626317523237"},{"denom":"ASSET3","index":"0.000002117313008939"},{"denom":"ASSET4","index":"0.000020418576076670"},{"denom":"ASSET5","index":"0.000001649450966157"},{"denom":"ASSET6","index":"0.000006660362585584"},{"denom":"ASSET7","index":"0.000010463779822658"},{"denom":"ASSET8","index":"0.000014287735496216"},{"denom":"ASSET9","index":"0.000006065360072421"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001603618851190"},{"denom":"ASSET1","index":"0.000013373450792115"},{"denom":"ASSET10","index":"0.000009317368604669"},{"denom":"ASSET11","index":"0.000012937408123124"},{"denom":"ASSET12","index":"0.000011650307554501"},{"denom":"ASSET13","index":"0.000004008493774333"},{"denom":"ASSET14","index":"0.000012085243516211"},{"denom":"ASSET15","index":"0.000008640063748266"},{"denom":"ASSET16","index":"0.000006023807734317"},{"denom":"ASSET17","index":"0.000004278530351069"},{"denom":"ASSET18","index":"0.000002037448105618"},{"denom":"ASSET2","index":"0.000003947624873839"},{"denom":"ASSET3","index":"0.000001154295694818"},{"denom":"ASSET4","index":"0.000010867865506336"},{"denom":"ASSET5","index":"0.000000896432898181"},{"denom":"ASSET6","index":"0.000003647707200497"},{"denom":"ASSET7","index":"0.000005586658358043"},{"denom":"ASSET8","index":"0.000007289880864586"},{"denom":"ASSET9","index":"0.000003148582216449"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003259379166935"},{"denom":"ASSET1","index":"0.000027669546155668"},{"denom":"ASSET10","index":"0.000022163157427920"},{"denom":"ASSET11","index":"0.000027516665793422"},{"denom":"ASSET12","index":"0.000026276569409586"},{"denom":"ASSET13","index":"0.000008645229164029"},{"denom":"ASSET14","index":"0.000025243382728696"},{"denom":"ASSET15","index":"0.000019947981783747"},{"denom":"ASSET16","index":"0.000012268920188963"},{"denom":"ASSET17","index":"0.000009656339783182"},{"denom":"ASSET18","index":"0.000003975233530089"},{"denom":"ASSET2","index":"0.000008385350610200"},{"denom":"ASSET3","index":"0.000002325230588439"},{"denom":"ASSET4","index":"0.000022430515898086"},{"denom":"ASSET5","index":"0.000001812256369527"},{"denom":"ASSET6","index":"0.000007311001085881"},{"denom":"ASSET7","index":"0.000011492885803011"},{"denom":"ASSET8","index":"0.000015716897251793"},{"denom":"ASSET9","index":"0.000006668589151432"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001669758803356"},{"denom":"ASSET1","index":"0.000013919924903508"},{"denom":"ASSET10","index":"0.000009698114015232"},{"denom":"ASSET11","index":"0.000013466332119255"},{"denom":"ASSET12","index":"0.000012126099781115"},{"denom":"ASSET13","index":"0.000004173211661392"},{"denom":"ASSET14","index":"0.000012579297449702"},{"denom":"ASSET15","index":"0.000008994017898909"},{"denom":"ASSET16","index":"0.000006270880730729"},{"denom":"ASSET17","index":"0.000004453348668392"},{"denom":"ASSET18","index":"0.000002121376009280"},{"denom":"ASSET2","index":"0.000004109202923545"},{"denom":"ASSET3","index":"0.000001201941855137"},{"denom":"ASSET4","index":"0.000011312556625386"},{"denom":"ASSET5","index":"0.000000932868086778"},{"denom":"ASSET6","index":"0.000003797061547622"},{"denom":"ASSET7","index":"0.000005815312368147"},{"denom":"ASSET8","index":"0.000007588591475923"},{"denom":"ASSET9","index":"0.000003277484447193"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003314119794923"},{"denom":"ASSET1","index":"0.000028119315186385"},{"denom":"ASSET10","index":"0.000022456877991933"},{"denom":"ASSET11","index":"0.000027947185249485"},{"denom":"ASSET12","index":"0.000026653541530161"},{"denom":"ASSET13","index":"0.000008778725953540"},{"denom":"ASSET14","index":"0.000025648491290636"},{"denom":"ASSET15","index":"0.000020225495910600"},{"denom":"ASSET16","index":"0.000012473684612014"},{"denom":"ASSET17","index":"0.000009794866581105"},{"denom":"ASSET18","index":"0.000004045992889163"},{"denom":"ASSET2","index":"0.000008517017325485"},{"denom":"ASSET3","index":"0.000002365208974685"},{"denom":"ASSET4","index":"0.000022797013251164"},{"denom":"ASSET5","index":"0.000001842432416817"},{"denom":"ASSET6","index":"0.000007435560259585"},{"denom":"ASSET7","index":"0.000011681616070006"},{"denom":"ASSET8","index":"0.000015958852395270"},{"denom":"ASSET9","index":"0.000006773561992828"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001334597814253"},{"denom":"ASSET1","index":"0.000011126876577448"},{"denom":"ASSET10","index":"0.000007751884027943"},{"denom":"ASSET11","index":"0.000010763759508328"},{"denom":"ASSET12","index":"0.000009692944381721"},{"denom":"ASSET13","index":"0.000003335543967388"},{"denom":"ASSET14","index":"0.000010055110882597"},{"denom":"ASSET15","index":"0.000007189147627631"},{"denom":"ASSET16","index":"0.000005012346349398"},{"denom":"ASSET17","index":"0.000003559878072918"},{"denom":"ASSET18","index":"0.000001695813746885"},{"denom":"ASSET2","index":"0.000003284213282225"},{"denom":"ASSET3","index":"0.000000960549210329"},{"denom":"ASSET4","index":"0.000009042280418860"},{"denom":"ASSET5","index":"0.000000745720787237"},{"denom":"ASSET6","index":"0.000003035164402357"},{"denom":"ASSET7","index":"0.000004648278712034"},{"denom":"ASSET8","index":"0.000006065575963495"},{"denom":"ASSET9","index":"0.000002619766079830"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000002933404194828"},{"denom":"ASSET1","index":"0.000024932632498194"},{"denom":"ASSET10","index":"0.000020157113753706"},{"denom":"ASSET11","index":"0.000024842878528839"},{"denom":"ASSET12","index":"0.000023817726072485"},{"denom":"ASSET13","index":"0.000007813243799971"},{"denom":"ASSET14","index":"0.000022761898108549"},{"denom":"ASSET15","index":"0.000018109267957138"},{"denom":"ASSET16","index":"0.000011043189892304"},{"denom":"ASSET17","index":"0.000008753164046701"},{"denom":"ASSET18","index":"0.000003567063844603"},{"denom":"ASSET2","index":"0.000007569762146700"},{"denom":"ASSET3","index":"0.000002091389836038"},{"denom":"ASSET4","index":"0.000020208488830330"},{"denom":"ASSET5","index":"0.000001630166870108"},{"denom":"ASSET6","index":"0.000006572642272968"},{"denom":"ASSET7","index":"0.000010351822041320"},{"denom":"ASSET8","index":"0.000014203644477234"},{"denom":"ASSET9","index":"0.000006019030096188"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001655550281073"},{"denom":"ASSET1","index":"0.000013803766186213"},{"denom":"ASSET10","index":"0.000009616885369480"},{"denom":"ASSET11","index":"0.000013353770421464"},{"denom":"ASSET12","index":"0.000012024654915933"},{"denom":"ASSET13","index":"0.000004138458266908"},{"denom":"ASSET14","index":"0.000012474650680682"},{"denom":"ASSET15","index":"0.000008918932754767"},{"denom":"ASSET16","index":"0.000006218123294721"},{"denom":"ASSET17","index":"0.000004415635621077"},{"denom":"ASSET18","index":"0.000002103876302725"},{"denom":"ASSET2","index":"0.000004075008029207"},{"denom":"ASSET3","index":"0.000001191361699996"},{"denom":"ASSET4","index":"0.000011218168999888"},{"denom":"ASSET5","index":"0.000000925037675960"},{"denom":"ASSET6","index":"0.000003765270684639"},{"denom":"ASSET7","index":"0.000005766457786874"},{"denom":"ASSET8","index":"0.000007524697268437"},{"denom":"ASSET9","index":"0.000003250154939091"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003215122291080"},{"denom":"ASSET1","index":"0.000027271082473775"},{"denom":"ASSET10","index":"0.000021717714787675"},{"denom":"ASSET11","index":"0.000027088129911249"},{"denom":"ASSET12","index":"0.000025803190697535"},{"denom":"ASSET13","index":"0.000008506451165719"},{"denom":"ASSET14","index":"0.000024869823256717"},{"denom":"ASSET15","index":"0.000019571375436743"},{"denom":"ASSET16","index":"0.000012101015548893"},{"denom":"ASSET17","index":"0.000009481514658039"},{"denom":"ASSET18","index":"0.000003929002426467"},{"denom":"ASSET2","index":"0.000008255375778501"},{"denom":"ASSET3","index":"0.000002294279906946"},{"denom":"ASSET4","index":"0.000022110354928469"},{"denom":"ASSET5","index":"0.000001787716273475"},{"denom":"ASSET6","index":"0.000007215985074700"},{"denom":"ASSET7","index":"0.000011330188741735"},{"denom":"ASSET8","index":"0.000015463524362026"},{"denom":"ASSET9","index":"0.000006565858639552"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001631513498845"},{"denom":"ASSET1","index":"0.000013601788709515"},{"denom":"ASSET10","index":"0.000009476711328689"},{"denom":"ASSET11","index":"0.000013158178840821"},{"denom":"ASSET12","index":"0.000011848922966954"},{"denom":"ASSET13","index":"0.000004077884841603"},{"denom":"ASSET14","index":"0.000012291633930140"},{"denom":"ASSET15","index":"0.000008788599161546"},{"denom":"ASSET16","index":"0.000006127389402135"},{"denom":"ASSET17","index":"0.000004351601569095"},{"denom":"ASSET18","index":"0.000002072876103766"},{"denom":"ASSET2","index":"0.000004014961455973"},{"denom":"ASSET3","index":"0.000001174420047516"},{"denom":"ASSET4","index":"0.000011053841044239"},{"denom":"ASSET5","index":"0.000000911490186131"},{"denom":"ASSET6","index":"0.000003710232488420"},{"denom":"ASSET7","index":"0.000005682431175178"},{"denom":"ASSET8","index":"0.000007415071543785"},{"denom":"ASSET9","index":"0.000003202800328586"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003159157648171"},{"denom":"ASSET1","index":"0.000026793811254639"},{"denom":"ASSET10","index":"0.000021330257270132"},{"denom":"ASSET11","index":"0.000026611245447042"},{"denom":"ASSET12","index":"0.000025345616114893"},{"denom":"ASSET13","index":"0.000008356504281369"},{"denom":"ASSET14","index":"0.000024433401122602"},{"denom":"ASSET15","index":"0.000019223209713353"},{"denom":"ASSET16","index":"0.000011890026449509"},{"denom":"ASSET17","index":"0.000009313941892173"},{"denom":"ASSET18","index":"0.000003860849124980"},{"denom":"ASSET2","index":"0.000008109777269158"},{"denom":"ASSET3","index":"0.000002255070941538"},{"denom":"ASSET4","index":"0.000021723391251034"},{"denom":"ASSET5","index":"0.000001756486235957"},{"denom":"ASSET6","index":"0.000007090574282328"},{"denom":"ASSET7","index":"0.000011132530538444"},{"denom":"ASSET8","index":"0.000015191323807650"},{"denom":"ASSET9","index":"0.000006450832118924"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001649724724935"},{"denom":"ASSET1","index":"0.000013753740147655"},{"denom":"ASSET10","index":"0.000009582563441278"},{"denom":"ASSET11","index":"0.000013305204895691"},{"denom":"ASSET12","index":"0.000011981321923304"},{"denom":"ASSET13","index":"0.000004123306127916"},{"denom":"ASSET14","index":"0.000012429052627730"},{"denom":"ASSET15","index":"0.000008886629821639"},{"denom":"ASSET16","index":"0.000006195820583626"},{"denom":"ASSET17","index":"0.000004400070480698"},{"denom":"ASSET18","index":"0.000002096248608056"},{"denom":"ASSET2","index":"0.000004060149146250"},{"denom":"ASSET3","index":"0.000001187512164840"},{"denom":"ASSET4","index":"0.000011177176659918"},{"denom":"ASSET5","index":"0.000000921609203810"},{"denom":"ASSET6","index":"0.000003751605165751"},{"denom":"ASSET7","index":"0.000005746078510357"},{"denom":"ASSET8","index":"0.000007497578498742"},{"denom":"ASSET9","index":"0.000003238303837047"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003253063831874"},{"denom":"ASSET1","index":"0.000027597326034286"},{"denom":"ASSET10","index":"0.000022021617243178"},{"denom":"ASSET11","index":"0.000027423138617092"},{"denom":"ASSET12","index":"0.000026144931484859"},{"denom":"ASSET13","index":"0.000008613299773809"},{"denom":"ASSET14","index":"0.000025170855267573"},{"denom":"ASSET15","index":"0.000019836826910831"},{"denom":"ASSET16","index":"0.000012243184702458"},{"denom":"ASSET17","index":"0.000009607701845932"},{"denom":"ASSET18","index":"0.000003972764374377"},{"denom":"ASSET2","index":"0.000008357484440725"},{"denom":"ASSET3","index":"0.000002321502734814"},{"denom":"ASSET4","index":"0.000022373906168402"},{"denom":"ASSET5","index":"0.000001808481766797"},{"denom":"ASSET6","index":"0.000007298802623853"},{"denom":"ASSET7","index":"0.000011465220726545"},{"denom":"ASSET8","index":"0.000015658035812384"},{"denom":"ASSET9","index":"0.000006646717011605"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001698975992122"},{"denom":"ASSET1","index":"0.000014167905922226"},{"denom":"ASSET10","index":"0.000009870625403756"},{"denom":"ASSET11","index":"0.000013705415046027"},{"denom":"ASSET12","index":"0.000012342129737421"},{"denom":"ASSET13","index":"0.000004247439980305"},{"denom":"ASSET14","index":"0.000012803154715439"},{"denom":"ASSET15","index":"0.000009153801193103"},{"denom":"ASSET16","index":"0.000006381787732272"},{"denom":"ASSET17","index":"0.000004532557176567"},{"denom":"ASSET18","index":"0.000002159268021049"},{"denom":"ASSET2","index":"0.000004182207511237"},{"denom":"ASSET3","index":"0.000001223292032291"},{"denom":"ASSET4","index":"0.000011513897264989"},{"denom":"ASSET5","index":"0.000000949169072389"},{"denom":"ASSET6","index":"0.000003864840554987"},{"denom":"ASSET7","index":"0.000005918563906982"},{"denom":"ASSET8","index":"0.000007723084568158"},{"denom":"ASSET9","index":"0.000003335651311539"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003402845442317"},{"denom":"ASSET1","index":"0.000028880571174740"},{"denom":"ASSET10","index":"0.000023090578471272"},{"denom":"ASSET11","index":"0.000028709364204549"},{"denom":"ASSET12","index":"0.000027394626213612"},{"denom":"ASSET13","index":"0.000009019217107214"},{"denom":"ASSET14","index":"0.000026344557012563"},{"denom":"ASSET15","index":"0.000020791017438004"},{"denom":"ASSET16","index":"0.000012808886991708"},{"denom":"ASSET17","index":"0.000010066951390727"},{"denom":"ASSET18","index":"0.000004153478710890"},{"denom":"ASSET2","index":"0.000008748954704305"},{"denom":"ASSET3","index":"0.000002428490976730"},{"denom":"ASSET4","index":"0.000023413646091842"},{"denom":"ASSET5","index":"0.000001891364101695"},{"denom":"ASSET6","index":"0.000007634563338572"},{"denom":"ASSET7","index":"0.000011996876612297"},{"denom":"ASSET8","index":"0.000016395615103037"},{"denom":"ASSET9","index":"0.000006958318142576"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001515088644413"},{"denom":"ASSET1","index":"0.000012634136557163"},{"denom":"ASSET10","index":"0.000008802109028204"},{"denom":"ASSET11","index":"0.000012222352143486"},{"denom":"ASSET12","index":"0.000011006111259210"},{"denom":"ASSET13","index":"0.000003787721611031"},{"denom":"ASSET14","index":"0.000011417895672887"},{"denom":"ASSET15","index":"0.000008163582563959"},{"denom":"ASSET16","index":"0.000005691138594924"},{"denom":"ASSET17","index":"0.000004042263453241"},{"denom":"ASSET18","index":"0.000001925135571111"},{"denom":"ASSET2","index":"0.000003729515797284"},{"denom":"ASSET3","index":"0.000001091141821893"},{"denom":"ASSET4","index":"0.000010267679293757"},{"denom":"ASSET5","index":"0.000000846156158061"},{"denom":"ASSET6","index":"0.000003446305419945"},{"denom":"ASSET7","index":"0.000005278485437758"},{"denom":"ASSET8","index":"0.000006887398378958"},{"denom":"ASSET9","index":"0.000002974577705544"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003029367235848"},{"denom":"ASSET1","index":"0.000025709657584098"},{"denom":"ASSET10","index":"0.000020551027857005"},{"denom":"ASSET11","index":"0.000025556791271547"},{"denom":"ASSET12","index":"0.000024383546484064"},{"denom":"ASSET13","index":"0.000008028643187417"},{"denom":"ASSET14","index":"0.000023452409013233"},{"denom":"ASSET15","index":"0.000018505869963369"},{"denom":"ASSET16","index":"0.000011403028825829"},{"denom":"ASSET17","index":"0.000008960765854271"},{"denom":"ASSET18","index":"0.000003697390743305"},{"denom":"ASSET2","index":"0.000007788410102575"},{"denom":"ASSET3","index":"0.000002162278160249"},{"denom":"ASSET4","index":"0.000020843149904241"},{"denom":"ASSET5","index":"0.000001683795445220"},{"denom":"ASSET6","index":"0.000006796548728457"},{"denom":"ASSET7","index":"0.000010680301627557"},{"denom":"ASSET8","index":"0.000014594997949332"},{"denom":"ASSET9","index":"0.000006193949682941"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001650481631660"},{"denom":"ASSET1","index":"0.000013760556046882"},{"denom":"ASSET10","index":"0.000009587067899364"},{"denom":"ASSET11","index":"0.000013312100857594"},{"denom":"ASSET12","index":"0.000011987552175177"},{"denom":"ASSET13","index":"0.000004125311926918"},{"denom":"ASSET14","index":"0.000012435412596309"},{"denom":"ASSET15","index":"0.000008891189157367"},{"denom":"ASSET16","index":"0.000006198673717177"},{"denom":"ASSET17","index":"0.000004402473887406"},{"denom":"ASSET18","index":"0.000002097152516481"},{"denom":"ASSET2","index":"0.000004062266502429"},{"denom":"ASSET3","index":"0.000001188346774796"},{"denom":"ASSET4","index":"0.000011182830860714"},{"denom":"ASSET5","index":"0.000000921890641108"},{"denom":"ASSET6","index":"0.000003753581829697"},{"denom":"ASSET7","index":"0.000005749028991578"},{"denom":"ASSET8","index":"0.000007501810745994"},{"denom":"ASSET9","index":"0.000003239702143299"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003205609047354"},{"denom":"ASSET1","index":"0.000027188537481167"},{"denom":"ASSET10","index":"0.000021652723818266"},{"denom":"ASSET11","index":"0.000027005979418132"},{"denom":"ASSET12","index":"0.000025725923481940"},{"denom":"ASSET13","index":"0.000008480657418555"},{"denom":"ASSET14","index":"0.000024794508770079"},{"denom":"ASSET15","index":"0.000019512596409105"},{"denom":"ASSET16","index":"0.000012064653878282"},{"denom":"ASSET17","index":"0.000009453813052143"},{"denom":"ASSET18","index":"0.000003917117707327"},{"denom":"ASSET2","index":"0.000008230459966291"},{"denom":"ASSET3","index":"0.000002288306334262"},{"denom":"ASSET4","index":"0.000022043298344156"},{"denom":"ASSET5","index":"0.000001782083734802"},{"denom":"ASSET6","index":"0.000007194354204475"},{"denom":"ASSET7","index":"0.000011296497588433"},{"denom":"ASSET8","index":"0.000015417282169744"},{"denom":"ASSET9","index":"0.000006545936928299"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001428935211366"},{"denom":"ASSET1","index":"0.000011914564237659"},{"denom":"ASSET10","index":"0.000008301159777028"},{"denom":"ASSET11","index":"0.000011525978642480"},{"denom":"ASSET12","index":"0.000010379209562159"},{"denom":"ASSET13","index":"0.000003571896453874"},{"denom":"ASSET14","index":"0.000010767353582799"},{"denom":"ASSET15","index":"0.000007698410529959"},{"denom":"ASSET16","index":"0.000005367338533420"},{"denom":"ASSET17","index":"0.000003811671429081"},{"denom":"ASSET18","index":"0.000001815754508385"},{"denom":"ASSET2","index":"0.000003517141210917"},{"denom":"ASSET3","index":"0.000001028868678146"},{"denom":"ASSET4","index":"0.000009682846512616"},{"denom":"ASSET5","index":"0.000000798366768278"},{"denom":"ASSET6","index":"0.000003249988614231"},{"denom":"ASSET7","index":"0.000004977428214621"},{"denom":"ASSET8","index":"0.000006495119908522"},{"denom":"ASSET9","index":"0.000002805323052474"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003075918064869"},{"denom":"ASSET1","index":"0.000026136551234120"},{"denom":"ASSET10","index":"0.000021080163895542"},{"denom":"ASSET11","index":"0.000026029570124972"},{"denom":"ASSET12","index":"0.000024929671095533"},{"denom":"ASSET13","index":"0.000008184754658215"},{"denom":"ASSET14","index":"0.000023857159923959"},{"denom":"ASSET15","index":"0.000018947606922173"},{"denom":"ASSET16","index":"0.000011579925359638"},{"denom":"ASSET17","index":"0.000009161388302193"},{"denom":"ASSET18","index":"0.000003743573486430"},{"denom":"ASSET2","index":"0.000007931762150876"},{"denom":"ASSET3","index":"0.000002193704696765"},{"denom":"ASSET4","index":"0.000021185602196482"},{"denom":"ASSET5","index":"0.000001709259314500"},{"denom":"ASSET6","index":"0.000006893942979866"},{"denom":"ASSET7","index":"0.000010853088527538"},{"denom":"ASSET8","index":"0.000014878712124324"},{"denom":"ASSET9","index":"0.000006307130542486"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001556917620519"},{"denom":"ASSET1","index":"0.000012983455297040"},{"denom":"ASSET10","index":"0.000009045452282177"},{"denom":"ASSET11","index":"0.000012560119972943"},{"denom":"ASSET12","index":"0.000011310507230547"},{"denom":"ASSET13","index":"0.000003892294051298"},{"denom":"ASSET14","index":"0.000011733139339821"},{"denom":"ASSET15","index":"0.000008388649636483"},{"denom":"ASSET16","index":"0.000005848637691896"},{"denom":"ASSET17","index":"0.000004153889965857"},{"denom":"ASSET18","index":"0.000001978846514969"},{"denom":"ASSET2","index":"0.000003832520791251"},{"denom":"ASSET3","index":"0.000001120924429588"},{"denom":"ASSET4","index":"0.000010551035220538"},{"denom":"ASSET5","index":"0.000000869876737390"},{"denom":"ASSET6","index":"0.000003541389854081"},{"denom":"ASSET7","index":"0.000005423895938150"},{"denom":"ASSET8","index":"0.000007077857204393"},{"denom":"ASSET9","index":"0.000003056874840288"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003155948059833"},{"denom":"ASSET1","index":"0.000026789841893667"},{"denom":"ASSET10","index":"0.000021451154188244"},{"denom":"ASSET11","index":"0.000026640130662201"},{"denom":"ASSET12","index":"0.000025435769508540"},{"denom":"ASSET13","index":"0.000008370086775831"},{"denom":"ASSET14","index":"0.000024440800445484"},{"denom":"ASSET15","index":"0.000019309084443140"},{"denom":"ASSET16","index":"0.000011879786354964"},{"denom":"ASSET17","index":"0.000009347672781307"},{"denom":"ASSET18","index":"0.000003850232310781"},{"denom":"ASSET2","index":"0.000008118311447694"},{"denom":"ASSET3","index":"0.000002251791235916"},{"denom":"ASSET4","index":"0.000021717604836949"},{"denom":"ASSET5","index":"0.000001754185821919"},{"denom":"ASSET6","index":"0.000007079049104243"},{"denom":"ASSET7","index":"0.000011127710678967"},{"denom":"ASSET8","index":"0.000015216376583965"},{"denom":"ASSET9","index":"0.000006456241851980"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001629017625409"},{"denom":"ASSET1","index":"0.000013583500814952"},{"denom":"ASSET10","index":"0.000009463617777698"},{"denom":"ASSET11","index":"0.000013140742178302"},{"denom":"ASSET12","index":"0.000011833351109704"},{"denom":"ASSET13","index":"0.000004072544063523"},{"denom":"ASSET14","index":"0.000012276109746354"},{"denom":"ASSET15","index":"0.000008777202658616"},{"denom":"ASSET16","index":"0.000006119258515961"},{"denom":"ASSET17","index":"0.000004345439323848"},{"denom":"ASSET18","index":"0.000002070383939302"},{"denom":"ASSET2","index":"0.000004009889539469"},{"denom":"ASSET3","index":"0.000001172335761192"},{"denom":"ASSET4","index":"0.000011039727138351"},{"denom":"ASSET5","index":"0.000000910579082921"},{"denom":"ASSET6","index":"0.000003704970855739"},{"denom":"ASSET7","index":"0.000005675107556554"},{"denom":"ASSET8","index":"0.000007404372420450"},{"denom":"ASSET9","index":"0.000003198165372278"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003300821213878"},{"denom":"ASSET1","index":"0.000028019420341436"},{"denom":"ASSET10","index":"0.000022435320069293"},{"denom":"ASSET11","index":"0.000027862926397945"},{"denom":"ASSET12","index":"0.000026603097941410"},{"denom":"ASSET13","index":"0.000008754572034100"},{"denom":"ASSET14","index":"0.000025562969906661"},{"denom":"ASSET15","index":"0.000020195785636702"},{"denom":"ASSET16","index":"0.000012425527462944"},{"denom":"ASSET17","index":"0.000009776022796414"},{"denom":"ASSET18","index":"0.000004027118689751"},{"denom":"ASSET2","index":"0.000008490998812362"},{"denom":"ASSET3","index":"0.000002354733406852"},{"denom":"ASSET4","index":"0.000022715681634045"},{"denom":"ASSET5","index":"0.000001835160700580"},{"denom":"ASSET6","index":"0.000007403741836767"},{"denom":"ASSET7","index":"0.000011639103500846"},{"denom":"ASSET8","index":"0.000015914079386056"},{"denom":"ASSET9","index":"0.000006752470475547"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001599876133405"},{"denom":"ASSET1","index":"0.000013345434681176"},{"denom":"ASSET10","index":"0.000009297530322905"},{"denom":"ASSET11","index":"0.000012909953167223"},{"denom":"ASSET12","index":"0.000011625282701060"},{"denom":"ASSET13","index":"0.000004000208763886"},{"denom":"ASSET14","index":"0.000012059727354266"},{"denom":"ASSET15","index":"0.000008622533976277"},{"denom":"ASSET16","index":"0.000006011718614052"},{"denom":"ASSET17","index":"0.000004268755697491"},{"denom":"ASSET18","index":"0.000002033283925863"},{"denom":"ASSET2","index":"0.000003939033979783"},{"denom":"ASSET3","index":"0.000001151952290481"},{"denom":"ASSET4","index":"0.000010845563418934"},{"denom":"ASSET5","index":"0.000000893773964352"},{"denom":"ASSET6","index":"0.000003640418084501"},{"denom":"ASSET7","index":"0.000005575200239351"},{"denom":"ASSET8","index":"0.000007274615004517"},{"denom":"ASSET9","index":"0.000003141688064949"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003205518103121"},{"denom":"ASSET1","index":"0.000027209804037075"},{"denom":"ASSET10","index":"0.000021755111918776"},{"denom":"ASSET11","index":"0.000027048910570117"},{"denom":"ASSET12","index":"0.000025809934262776"},{"denom":"ASSET13","index":"0.000008496852467218"},{"denom":"ASSET14","index":"0.000024820667393427"},{"denom":"ASSET15","index":"0.000019589132093549"},{"denom":"ASSET16","index":"0.000012068310128279"},{"denom":"ASSET17","index":"0.000009484236214143"},{"denom":"ASSET18","index":"0.000003912244660385"},{"denom":"ASSET2","index":"0.000008242746790311"},{"denom":"ASSET3","index":"0.000002287536756020"},{"denom":"ASSET4","index":"0.000022059248469095"},{"denom":"ASSET5","index":"0.000001781848402938"},{"denom":"ASSET6","index":"0.000007192715838846"},{"denom":"ASSET7","index":"0.000011303047666497"},{"denom":"ASSET8","index":"0.000015447099928639"},{"denom":"ASSET9","index":"0.000006555210966575"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001693699328345"},{"denom":"ASSET1","index":"0.000014121235265065"},{"denom":"ASSET10","index":"0.000009838380374958"},{"denom":"ASSET11","index":"0.000013660499756586"},{"denom":"ASSET12","index":"0.000012301569616423"},{"denom":"ASSET13","index":"0.000004233563721295"},{"denom":"ASSET14","index":"0.000012760935925768"},{"denom":"ASSET15","index":"0.000009123658427184"},{"denom":"ASSET16","index":"0.000006361299175013"},{"denom":"ASSET17","index":"0.000004517672541531"},{"denom":"ASSET18","index":"0.000002151696438556"},{"denom":"ASSET2","index":"0.000004168526762446"},{"denom":"ASSET3","index":"0.000001219271828530"},{"denom":"ASSET4","index":"0.000011475942538822"},{"denom":"ASSET5","index":"0.000000946116601363"},{"denom":"ASSET6","index":"0.000003852241762569"},{"denom":"ASSET7","index":"0.000005899194467400"},{"denom":"ASSET8","index":"0.000007698322129037"},{"denom":"ASSET9","index":"0.000003325100096108"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003374964488748"},{"denom":"ASSET1","index":"0.000028642371697541"},{"denom":"ASSET10","index":"0.000022886358038922"},{"denom":"ASSET11","index":"0.000028469467846578"},{"denom":"ASSET12","index":"0.000027158021136678"},{"denom":"ASSET13","index":"0.000008943216545101"},{"denom":"ASSET14","index":"0.000026126056006670"},{"denom":"ASSET15","index":"0.000020609372613995"},{"denom":"ASSET16","index":"0.000012704733728960"},{"denom":"ASSET17","index":"0.000009980025667275"},{"denom":"ASSET18","index":"0.000004119620826099"},{"denom":"ASSET2","index":"0.000008675935346246"},{"denom":"ASSET3","index":"0.000002408702445844"},{"denom":"ASSET4","index":"0.000023220763838917"},{"denom":"ASSET5","index":"0.000001876440105393"},{"denom":"ASSET6","index":"0.000007572949563502"},{"denom":"ASSET7","index":"0.000011897934490553"},{"denom":"ASSET8","index":"0.000016258236310419"},{"denom":"ASSET9","index":"0.000006900426530312"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001608105877482"},{"denom":"ASSET1","index":"0.000013418457239972"},{"denom":"ASSET10","index":"0.000009349233819318"},{"denom":"ASSET11","index":"0.000012981594753349"},{"denom":"ASSET12","index":"0.000011689837573077"},{"denom":"ASSET13","index":"0.000004022147721664"},{"denom":"ASSET14","index":"0.000012126700059700"},{"denom":"ASSET15","index":"0.000008669460725910"},{"denom":"ASSET16","index":"0.000006044519750254"},{"denom":"ASSET17","index":"0.000004293303747844"},{"denom":"ASSET18","index":"0.000002044968364105"},{"denom":"ASSET2","index":"0.000003960007798998"},{"denom":"ASSET3","index":"0.000001158062195142"},{"denom":"ASSET4","index":"0.000010904614913932"},{"denom":"ASSET5","index":"0.000000898204336720"},{"denom":"ASSET6","index":"0.000003660606353425"},{"denom":"ASSET7","index":"0.000005605774235672"},{"denom":"ASSET8","index":"0.000007313680595011"},{"denom":"ASSET9","index":"0.000003159720916176"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003138779820137"},{"denom":"ASSET1","index":"0.000026638851971456"},{"denom":"ASSET10","index":"0.000021228354320839"},{"denom":"ASSET11","index":"0.000026463611656062"},{"denom":"ASSET12","index":"0.000025215335343685"},{"denom":"ASSET13","index":"0.000008309803474369"},{"denom":"ASSET14","index":"0.000024294710395367"},{"denom":"ASSET15","index":"0.000019126240972581"},{"denom":"ASSET16","index":"0.000011819368577720"},{"denom":"ASSET17","index":"0.000009266335892783"},{"denom":"ASSET18","index":"0.000003836527514127"},{"denom":"ASSET2","index":"0.000008063422586049"},{"denom":"ASSET3","index":"0.000002240662109326"},{"denom":"ASSET4","index":"0.000021597223596640"},{"denom":"ASSET5","index":"0.000001744975814867"},{"denom":"ASSET6","index":"0.000007047692266012"},{"denom":"ASSET7","index":"0.000011067413421526"},{"denom":"ASSET8","index":"0.000015106336478322"},{"denom":"ASSET9","index":"0.000006414890297355"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001636130781121"},{"denom":"ASSET1","index":"0.000013651986161797"},{"denom":"ASSET10","index":"0.000009511743354655"},{"denom":"ASSET11","index":"0.000013205516575762"},{"denom":"ASSET12","index":"0.000011891065744828"},{"denom":"ASSET13","index":"0.000004093100055822"},{"denom":"ASSET14","index":"0.000012337535330862"},{"denom":"ASSET15","index":"0.000008821240702961"},{"denom":"ASSET16","index":"0.000006147969392790"},{"denom":"ASSET17","index":"0.000004367637254688"},{"denom":"ASSET18","index":"0.000002079827264137"},{"denom":"ASSET2","index":"0.000004029318686389"},{"denom":"ASSET3","index":"0.000001178568783011"},{"denom":"ASSET4","index":"0.000011095185178418"},{"denom":"ASSET5","index":"0.000000915123996220"},{"denom":"ASSET6","index":"0.000003724277354315"},{"denom":"ASSET7","index":"0.000005701499806755"},{"denom":"ASSET8","index":"0.000007440235399574"},{"denom":"ASSET9","index":"0.000003214026398847"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003135138573804"},{"denom":"ASSET1","index":"0.000026601246250396"},{"denom":"ASSET10","index":"0.000021147351718785"},{"denom":"ASSET11","index":"0.000026411423528042"},{"denom":"ASSET12","index":"0.000025139747174388"},{"denom":"ASSET13","index":"0.000008292603180789"},{"denom":"ASSET14","index":"0.000024256405788980"},{"denom":"ASSET15","index":"0.000019064302195638"},{"denom":"ASSET16","index":"0.000011804656377100"},{"denom":"ASSET17","index":"0.000009238224400983"},{"denom":"ASSET18","index":"0.000003834531376561"},{"denom":"ASSET2","index":"0.000008049169006780"},{"denom":"ASSET3","index":"0.000002239375819558"},{"denom":"ASSET4","index":"0.000021568278304468"},{"denom":"ASSET5","index":"0.000001743998311515"},{"denom":"ASSET6","index":"0.000007041675703373"},{"denom":"ASSET7","index":"0.000011051161098588"},{"denom":"ASSET8","index":"0.000015073103234225"},{"denom":"ASSET9","index":"0.000006402150772125"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001682560247115"},{"denom":"ASSET1","index":"0.000014026482890055"},{"denom":"ASSET10","index":"0.000009772411969975"},{"denom":"ASSET11","index":"0.000013568579422963"},{"denom":"ASSET12","index":"0.000012218368466479"},{"denom":"ASSET13","index":"0.000004205057792371"},{"denom":"ASSET14","index":"0.000012675600520863"},{"denom":"ASSET15","index":"0.000009062728737253"},{"denom":"ASSET16","index":"0.000006318664998244"},{"denom":"ASSET17","index":"0.000004487051129876"},{"denom":"ASSET18","index":"0.000002137778063373"},{"denom":"ASSET2","index":"0.000004140602172369"},{"denom":"ASSET3","index":"0.000001211228525856"},{"denom":"ASSET4","index":"0.000011398573549589"},{"denom":"ASSET5","index":"0.000000939977791684"},{"denom":"ASSET6","index":"0.000003825709612155"},{"denom":"ASSET7","index":"0.000005859418705735"},{"denom":"ASSET8","index":"0.000007646047922643"},{"denom":"ASSET9","index":"0.000003302679112354"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003237426875283"},{"denom":"ASSET1","index":"0.000027451710154634"},{"denom":"ASSET10","index":"0.000021835512998164"},{"denom":"ASSET11","index":"0.000027259736654219"},{"denom":"ASSET12","index":"0.000025953768913429"},{"denom":"ASSET13","index":"0.000008559484494503"},{"denom":"ASSET14","index":"0.000025032165857410"},{"denom":"ASSET15","index":"0.000019681806512765"},{"denom":"ASSET16","index":"0.000012183244440341"},{"denom":"ASSET17","index":"0.000009537367134186"},{"denom":"ASSET18","index":"0.000003957397976948"},{"denom":"ASSET2","index":"0.000008307936552813"},{"denom":"ASSET3","index":"0.000002310954839376"},{"denom":"ASSET4","index":"0.000022256988295109"},{"denom":"ASSET5","index":"0.000001799896462688"},{"denom":"ASSET6","index":"0.000007265619632425"},{"denom":"ASSET7","index":"0.000011405823532836"},{"denom":"ASSET8","index":"0.000015559935461923"},{"denom":"ASSET9","index":"0.000006608212131764"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001576738934866"},{"denom":"ASSET1","index":"0.000013143695761043"},{"denom":"ASSET10","index":"0.000009157699733702"},{"denom":"ASSET11","index":"0.000012715663698192"},{"denom":"ASSET12","index":"0.000011450067913139"},{"denom":"ASSET13","index":"0.000003940585946017"},{"denom":"ASSET14","index":"0.000011878099975991"},{"denom":"ASSET15","index":"0.000008492526135047"},{"denom":"ASSET16","index":"0.000005920970048209"},{"denom":"ASSET17","index":"0.000004204637159643"},{"denom":"ASSET18","index":"0.000002003089142854"},{"denom":"ASSET2","index":"0.000003880039170918"},{"denom":"ASSET3","index":"0.000001134411105672"},{"denom":"ASSET4","index":"0.000010681460240357"},{"denom":"ASSET5","index":"0.000000880451021229"},{"denom":"ASSET6","index":"0.000003584873642311"},{"denom":"ASSET7","index":"0.000005491256130493"},{"denom":"ASSET8","index":"0.000007165542647463"},{"denom":"ASSET9","index":"0.000003094612949497"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003150995592381"},{"denom":"ASSET1","index":"0.000026735906318713"},{"denom":"ASSET10","index":"0.000021370928366269"},{"denom":"ASSET11","index":"0.000026577057751538"},{"denom":"ASSET12","index":"0.000025356196217934"},{"denom":"ASSET13","index":"0.000008349049177946"},{"denom":"ASSET14","index":"0.000024388519635576"},{"denom":"ASSET15","index":"0.000019243917228958"},{"denom":"ASSET16","index":"0.000011858566692713"},{"denom":"ASSET17","index":"0.000009317567603522"},{"denom":"ASSET18","index":"0.000003845362315572"},{"denom":"ASSET2","index":"0.000008099062572798"},{"denom":"ASSET3","index":"0.000002247710476517"},{"denom":"ASSET4","index":"0.000021674805285583"},{"denom":"ASSET5","index":"0.000001751018453776"},{"denom":"ASSET6","index":"0.000007067532365991"},{"denom":"ASSET7","index":"0.000011106766164564"},{"denom":"ASSET8","index":"0.000015177641578730"},{"denom":"ASSET9","index":"0.000006441123951375"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001735896630597"},{"denom":"ASSET1","index":"0.000014474259966527"},{"denom":"ASSET10","index":"0.000010084408758147"},{"denom":"ASSET11","index":"0.000014002239606889"},{"denom":"ASSET12","index":"0.000012609068112910"},{"denom":"ASSET13","index":"0.000004339122939062"},{"denom":"ASSET14","index":"0.000013079851197687"},{"denom":"ASSET15","index":"0.000009351942040176"},{"denom":"ASSET16","index":"0.000006520438519776"},{"denom":"ASSET17","index":"0.000004630501168930"},{"denom":"ASSET18","index":"0.000002205442440512"},{"denom":"ASSET2","index":"0.000004272310096544"},{"denom":"ASSET3","index":"0.000001249647610052"},{"denom":"ASSET4","index":"0.000011762772107687"},{"denom":"ASSET5","index":"0.000000970023491367"},{"denom":"ASSET6","index":"0.000003948144082847"},{"denom":"ASSET7","index":"0.000006046562247845"},{"denom":"ASSET8","index":"0.000007890101791387"},{"denom":"ASSET9","index":"0.000003408073605830"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003300304206809"},{"denom":"ASSET1","index":"0.000027981868665615"},{"denom":"ASSET10","index":"0.000022221493016134"},{"denom":"ASSET11","index":"0.000027777532118325"},{"denom":"ASSET12","index":"0.000026428557640091"},{"denom":"ASSET13","index":"0.000008720047886627"},{"denom":"ASSET14","index":"0.000025512138164618"},{"denom":"ASSET15","index":"0.000020036362120252"},{"denom":"ASSET16","index":"0.000012421157074829"},{"denom":"ASSET17","index":"0.000009711490167791"},{"denom":"ASSET18","index":"0.000004036282970136"},{"denom":"ASSET2","index":"0.000008465189250700"},{"denom":"ASSET3","index":"0.000002356240815614"},{"denom":"ASSET4","index":"0.000022687774056492"},{"denom":"ASSET5","index":"0.000001835200922241"},{"denom":"ASSET6","index":"0.000007409270759323"},{"denom":"ASSET7","index":"0.000011627060915230"},{"denom":"ASSET8","index":"0.000015852235873304"},{"denom":"ASSET9","index":"0.000006733690564218"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001726734301691"},{"denom":"ASSET1","index":"0.000014395988805148"},{"denom":"ASSET10","index":"0.000010029746380297"},{"denom":"ASSET11","index":"0.000013926529312304"},{"denom":"ASSET12","index":"0.000012540835608608"},{"denom":"ASSET13","index":"0.000004315874534955"},{"denom":"ASSET14","index":"0.000013009526126035"},{"denom":"ASSET15","index":"0.000009301526659210"},{"denom":"ASSET16","index":"0.000006485154189852"},{"denom":"ASSET17","index":"0.000004605778267637"},{"denom":"ASSET18","index":"0.000002193886868281"},{"denom":"ASSET2","index":"0.000004249742648985"},{"denom":"ASSET3","index":"0.000001243048763609"},{"denom":"ASSET4","index":"0.000011699192013329"},{"denom":"ASSET5","index":"0.000000964679662201"},{"denom":"ASSET6","index":"0.000003926772973318"},{"denom":"ASSET7","index":"0.000006014156746171"},{"denom":"ASSET8","index":"0.000007847778630999"},{"denom":"ASSET9","index":"0.000003389643643667"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003383074331503"},{"denom":"ASSET1","index":"0.000028697774885580"},{"denom":"ASSET10","index":"0.000022880621123289"},{"denom":"ASSET11","index":"0.000028511966470743"},{"denom":"ASSET12","index":"0.000027173358086556"},{"denom":"ASSET13","index":"0.000008954537947194"},{"denom":"ASSET14","index":"0.000026172910691250"},{"denom":"ASSET15","index":"0.000020614154391480"},{"denom":"ASSET16","index":"0.000012732692592075"},{"denom":"ASSET17","index":"0.000009985655741818"},{"denom":"ASSET18","index":"0.000004132359094826"},{"denom":"ASSET2","index":"0.000008689052893949"},{"denom":"ASSET3","index":"0.000002414485946546"},{"denom":"ASSET4","index":"0.000023266612079392"},{"denom":"ASSET5","index":"0.000001880944791026"},{"denom":"ASSET6","index":"0.000007591453768301"},{"denom":"ASSET7","index":"0.000011922604903868"},{"denom":"ASSET8","index":"0.000016278329144958"},{"denom":"ASSET9","index":"0.000006911169878531"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001436232590899"},{"denom":"ASSET1","index":"0.000011976183987962"},{"denom":"ASSET10","index":"0.000008344549248442"},{"denom":"ASSET11","index":"0.000011585862202045"},{"denom":"ASSET12","index":"0.000010432581326504"},{"denom":"ASSET13","index":"0.000003589949888597"},{"denom":"ASSET14","index":"0.000010822903112421"},{"denom":"ASSET15","index":"0.000007738224144105"},{"denom":"ASSET16","index":"0.000005395030251301"},{"denom":"ASSET17","index":"0.000003831216753031"},{"denom":"ASSET18","index":"0.000001825291199515"},{"denom":"ASSET2","index":"0.000003535633264667"},{"denom":"ASSET3","index":"0.000001033279031975"},{"denom":"ASSET4","index":"0.000009732781101914"},{"denom":"ASSET5","index":"0.000000802117585946"},{"denom":"ASSET6","index":"0.000003266576499617"},{"denom":"ASSET7","index":"0.000005003445288083"},{"denom":"ASSET8","index":"0.000006528100290032"},{"denom":"ASSET9","index":"0.000002819411735168"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003006064648013"},{"denom":"ASSET1","index":"0.000025531157590212"},{"denom":"ASSET10","index":"0.000020524407173472"},{"denom":"ASSET11","index":"0.000025409258384489"},{"denom":"ASSET12","index":"0.000024300714605646"},{"denom":"ASSET13","index":"0.000007986286383048"},{"denom":"ASSET14","index":"0.000023298685931189"},{"denom":"ASSET15","index":"0.000018459726056254"},{"denom":"ASSET16","index":"0.000011316095008653"},{"denom":"ASSET17","index":"0.000008930145684163"},{"denom":"ASSET18","index":"0.000003662445744281"},{"denom":"ASSET2","index":"0.000007743120539446"},{"denom":"ASSET3","index":"0.000002143639104141"},{"denom":"ASSET4","index":"0.000020695936675740"},{"denom":"ASSET5","index":"0.000001670457298921"},{"denom":"ASSET6","index":"0.000006739935351518"},{"denom":"ASSET7","index":"0.000010603283023237"},{"denom":"ASSET8","index":"0.000014518439118465"},{"denom":"ASSET9","index":"0.000006156725809403"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001476546163568"},{"denom":"ASSET1","index":"0.000012315891963405"},{"denom":"ASSET10","index":"0.000008580298213179"},{"denom":"ASSET11","index":"0.000011914434711559"},{"denom":"ASSET12","index":"0.000010728207916557"},{"denom":"ASSET13","index":"0.000003691365408921"},{"denom":"ASSET14","index":"0.000011129665168403"},{"denom":"ASSET15","index":"0.000007957699254808"},{"denom":"ASSET16","index":"0.000005547821683700"},{"denom":"ASSET17","index":"0.000003939724556249"},{"denom":"ASSET18","index":"0.000001876869355381"},{"denom":"ASSET2","index":"0.000003635796467281"},{"denom":"ASSET3","index":"0.000001062614251355"},{"denom":"ASSET4","index":"0.000010009213855342"},{"denom":"ASSET5","index":"0.000000825595704361"},{"denom":"ASSET6","index":"0.000003359085819117"},{"denom":"ASSET7","index":"0.000005145230371820"},{"denom":"ASSET8","index":"0.000006713635398099"},{"denom":"ASSET9","index":"0.000002899791505564"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000002611689387046"},{"denom":"ASSET1","index":"0.000022118950462866"},{"denom":"ASSET10","index":"0.000017388824351878"},{"denom":"ASSET11","index":"0.000021911701626113"},{"denom":"ASSET12","index":"0.000020757567192719"},{"denom":"ASSET13","index":"0.000006870825151743"},{"denom":"ASSET14","index":"0.000020152250667519"},{"denom":"ASSET15","index":"0.000015711809347683"},{"denom":"ASSET16","index":"0.000009830001439303"},{"denom":"ASSET17","index":"0.000007627368499381"},{"denom":"ASSET18","index":"0.000003205559295774"},{"denom":"ASSET2","index":"0.000006678615536452"},{"denom":"ASSET3","index":"0.000001865584989735"},{"denom":"ASSET4","index":"0.000017938012267073"},{"denom":"ASSET5","index":"0.000001453547274796"},{"denom":"ASSET6","index":"0.000005870892100855"},{"denom":"ASSET7","index":"0.000009195154067126"},{"denom":"ASSET8","index":"0.000012492245582088"},{"denom":"ASSET9","index":"0.000005313335607946"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000000860911540335"},{"denom":"ASSET1","index":"0.000007178593209511"},{"denom":"ASSET10","index":"0.000005001581264509"},{"denom":"ASSET11","index":"0.000006944753046495"},{"denom":"ASSET12","index":"0.000006253725385275"},{"denom":"ASSET13","index":"0.000002152029021603"},{"denom":"ASSET14","index":"0.000006487065889823"},{"denom":"ASSET15","index":"0.000004638329558286"},{"denom":"ASSET16","index":"0.000003233789604786"},{"denom":"ASSET17","index":"0.000002296430318850"},{"denom":"ASSET18","index":"0.000001093752386415"},{"denom":"ASSET2","index":"0.000002119051562716"},{"denom":"ASSET3","index":"0.000000619576500299"},{"denom":"ASSET4","index":"0.000005834012272169"},{"denom":"ASSET5","index":"0.000000481171104668"},{"denom":"ASSET6","index":"0.000001958161536025"},{"denom":"ASSET7","index":"0.000002998950124834"},{"denom":"ASSET8","index":"0.000003913325121242"},{"denom":"ASSET9","index":"0.000001690344597186"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000002357406510396"},{"denom":"ASSET1","index":"0.000020099972826550"},{"denom":"ASSET10","index":"0.000016611857270119"},{"denom":"ASSET11","index":"0.000020122040980663"},{"denom":"ASSET12","index":"0.000019473664705632"},{"denom":"ASSET13","index":"0.000006342954228467"},{"denom":"ASSET14","index":"0.000018379978414574"},{"denom":"ASSET15","index":"0.000014858739059306"},{"denom":"ASSET16","index":"0.000008878274052948"},{"denom":"ASSET17","index":"0.000007156982288871"},{"denom":"ASSET18","index":"0.000002845018303307"},{"denom":"ASSET2","index":"0.000006129987919866"},{"denom":"ASSET3","index":"0.000001678183905493"},{"denom":"ASSET4","index":"0.000016284739258605"},{"denom":"ASSET5","index":"0.000001308892339296"},{"denom":"ASSET6","index":"0.000005269046474537"},{"denom":"ASSET7","index":"0.000008337197620164"},{"denom":"ASSET8","index":"0.000011530009666752"},{"denom":"ASSET9","index":"0.000004871853664260"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001198976216272"},{"denom":"ASSET1","index":"0.000010001315625623"},{"denom":"ASSET10","index":"0.000006967712250892"},{"denom":"ASSET11","index":"0.000009674322112094"},{"denom":"ASSET12","index":"0.000008711677656379"},{"denom":"ASSET13","index":"0.000002997949876371"},{"denom":"ASSET14","index":"0.000009037652498526"},{"denom":"ASSET15","index":"0.000006461432574183"},{"denom":"ASSET16","index":"0.000004504564849919"},{"denom":"ASSET17","index":"0.000003199646809949"},{"denom":"ASSET18","index":"0.000001523932387037"},{"denom":"ASSET2","index":"0.000002952109664194"},{"denom":"ASSET3","index":"0.000000862814660308"},{"denom":"ASSET4","index":"0.000008126960283277"},{"denom":"ASSET5","index":"0.000000670285769165"},{"denom":"ASSET6","index":"0.000002728001960218"},{"denom":"ASSET7","index":"0.000004177571336390"},{"denom":"ASSET8","index":"0.000005451929234909"},{"denom":"ASSET9","index":"0.000002354149563130"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000002792091306062"},{"denom":"ASSET1","index":"0.000023760392481519"},{"denom":"ASSET10","index":"0.000019330735214415"},{"denom":"ASSET11","index":"0.000023705763948043"},{"denom":"ASSET12","index":"0.000022788595153270"},{"denom":"ASSET13","index":"0.000007460432475948"},{"denom":"ASSET14","index":"0.000021701401606991"},{"denom":"ASSET15","index":"0.000017344296121870"},{"denom":"ASSET16","index":"0.000010515175863945"},{"denom":"ASSET17","index":"0.000008375559402161"},{"denom":"ASSET18","index":"0.000003388923471278"},{"denom":"ASSET2","index":"0.000007222909907971"},{"denom":"ASSET3","index":"0.000001989926471838"},{"denom":"ASSET4","index":"0.000019255294602933"},{"denom":"ASSET5","index":"0.000001551437823125"},{"denom":"ASSET6","index":"0.000006253588147261"},{"denom":"ASSET7","index":"0.000009862028954195"},{"denom":"ASSET8","index":"0.000013562244421912"},{"denom":"ASSET9","index":"0.000005741841810541"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001507638919625"},{"denom":"ASSET1","index":"0.000012569401049902"},{"denom":"ASSET10","index":"0.000008757228353136"},{"denom":"ASSET11","index":"0.000012160184771718"},{"denom":"ASSET12","index":"0.000010949766096248"},{"denom":"ASSET13","index":"0.000003769097299062"},{"denom":"ASSET14","index":"0.000011358982374432"},{"denom":"ASSET15","index":"0.000008124020006893"},{"denom":"ASSET16","index":"0.000005660107258249"},{"denom":"ASSET17","index":"0.000004018934605743"},{"denom":"ASSET18","index":"0.000001912547658039"},{"denom":"ASSET2","index":"0.000003708791742277"},{"denom":"ASSET3","index":"0.000001085500022130"},{"denom":"ASSET4","index":"0.000010217484335287"},{"denom":"ASSET5","index":"0.000000839970255220"},{"denom":"ASSET6","index":"0.000003428801657204"},{"denom":"ASSET7","index":"0.000005250890980065"},{"denom":"ASSET8","index":"0.000006853295774638"},{"denom":"ASSET9","index":"0.000002959279822235"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003131246414749"},{"denom":"ASSET1","index":"0.000026589761836242"},{"denom":"ASSET10","index":"0.000021355242603721"},{"denom":"ASSET11","index":"0.000026458316408852"},{"denom":"ASSET12","index":"0.000025293988029420"},{"denom":"ASSET13","index":"0.000008316673174883"},{"denom":"ASSET14","index":"0.000024263343459355"},{"denom":"ASSET15","index":"0.000019213959771091"},{"denom":"ASSET16","index":"0.000011784585795875"},{"denom":"ASSET17","index":"0.000009292893547134"},{"denom":"ASSET18","index":"0.000003813004198036"},{"denom":"ASSET2","index":"0.000008060944762894"},{"denom":"ASSET3","index":"0.000002234070199415"},{"denom":"ASSET4","index":"0.000021557233504015"},{"denom":"ASSET5","index":"0.000001738116490695"},{"denom":"ASSET6","index":"0.000007021386599103"},{"denom":"ASSET7","index":"0.000011043212117572"},{"denom":"ASSET8","index":"0.000015117900391662"},{"denom":"ASSET9","index":"0.000006411442995536"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001538667310820"},{"denom":"ASSET1","index":"0.000012827917927858"},{"denom":"ASSET10","index":"0.000008937244372687"},{"denom":"ASSET11","index":"0.000012409488429871"},{"denom":"ASSET12","index":"0.000011174685151587"},{"denom":"ASSET13","index":"0.000003845530209513"},{"denom":"ASSET14","index":"0.000011592355937882"},{"denom":"ASSET15","index":"0.000008288166520415"},{"denom":"ASSET16","index":"0.000005778727600031"},{"denom":"ASSET17","index":"0.000004103871540546"},{"denom":"ASSET18","index":"0.000001954820673732"},{"denom":"ASSET2","index":"0.000003786730053405"},{"denom":"ASSET3","index":"0.000001107719069920"},{"denom":"ASSET4","index":"0.000010424698644316"},{"denom":"ASSET5","index":"0.000000859620346726"},{"denom":"ASSET6","index":"0.000003499178322240"},{"denom":"ASSET7","index":"0.000005359160034507"},{"denom":"ASSET8","index":"0.000006993045662639"},{"denom":"ASSET9","index":"0.000003020431244761"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003070496060295"},{"denom":"ASSET1","index":"0.000026054009108675"},{"denom":"ASSET10","index":"0.000020821706468932"},{"denom":"ASSET11","index":"0.000025897661631707"},{"denom":"ASSET12","index":"0.000024706407518076"},{"denom":"ASSET13","index":"0.000008135385272267"},{"denom":"ASSET14","index":"0.000023765921524780"},{"denom":"ASSET15","index":"0.000018749935123185"},{"denom":"ASSET16","index":"0.000011556337558875"},{"denom":"ASSET17","index":"0.000009079232430047"},{"denom":"ASSET18","index":"0.000003747682066764"},{"denom":"ASSET2","index":"0.000007892419371659"},{"denom":"ASSET3","index":"0.000002191201298955"},{"denom":"ASSET4","index":"0.000021122052487200"},{"denom":"ASSET5","index":"0.000001706992646915"},{"denom":"ASSET6","index":"0.000006888142834266"},{"denom":"ASSET7","index":"0.000010823268476718"},{"denom":"ASSET8","index":"0.000014789657857476"},{"denom":"ASSET9","index":"0.000006276911852268"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001679222100186"},{"denom":"ASSET1","index":"0.000013999028794594"},{"denom":"ASSET10","index":"0.000009753438641601"},{"denom":"ASSET11","index":"0.000013542280383343"},{"denom":"ASSET12","index":"0.000012194769233410"},{"denom":"ASSET13","index":"0.000004196505199295"},{"denom":"ASSET14","index":"0.000012650484277214"},{"denom":"ASSET15","index":"0.000009045065257184"},{"denom":"ASSET16","index":"0.000006306124840851"},{"denom":"ASSET17","index":"0.000004478614512126"},{"denom":"ASSET18","index":"0.000002133387092820"},{"denom":"ASSET2","index":"0.000004132436417626"},{"denom":"ASSET3","index":"0.000001208523228411"},{"denom":"ASSET4","index":"0.000011376342215965"},{"denom":"ASSET5","index":"0.000000938297641211"},{"denom":"ASSET6","index":"0.000003818809397684"},{"denom":"ASSET7","index":"0.000005848343062154"},{"denom":"ASSET8","index":"0.000007631418590690"},{"denom":"ASSET9","index":"0.000003295925469872"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003295755498274"},{"denom":"ASSET1","index":"0.000027960125957180"},{"denom":"ASSET10","index":"0.000022298091456525"},{"denom":"ASSET11","index":"0.000027779779629540"},{"denom":"ASSET12","index":"0.000026478335493542"},{"denom":"ASSET13","index":"0.000008724566942758"},{"denom":"ASSET14","index":"0.000025500389224880"},{"denom":"ASSET15","index":"0.000020088119547171"},{"denom":"ASSET16","index":"0.000012404652968467"},{"denom":"ASSET17","index":"0.000009730254100732"},{"denom":"ASSET18","index":"0.000004025857251145"},{"denom":"ASSET2","index":"0.000008465992991141"},{"denom":"ASSET3","index":"0.000002352288079447"},{"denom":"ASSET4","index":"0.000022667879187178"},{"denom":"ASSET5","index":"0.000001832649164275"},{"denom":"ASSET6","index":"0.000007396215489940"},{"denom":"ASSET7","index":"0.000011616026271508"},{"denom":"ASSET8","index":"0.000015861127767022"},{"denom":"ASSET9","index":"0.000006733269226830"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001488486853561"},{"denom":"ASSET1","index":"0.000012409943784184"},{"denom":"ASSET10","index":"0.000008645838046025"},{"denom":"ASSET11","index":"0.000012005445379346"},{"denom":"ASSET12","index":"0.000010810451131374"},{"denom":"ASSET13","index":"0.000003720376180879"},{"denom":"ASSET14","index":"0.000011214949536212"},{"denom":"ASSET15","index":"0.000008018487089665"},{"denom":"ASSET16","index":"0.000005590655707614"},{"denom":"ASSET17","index":"0.000003970139229188"},{"denom":"ASSET18","index":"0.000001891303352350"},{"denom":"ASSET2","index":"0.000003663191375205"},{"denom":"ASSET3","index":"0.000001071374153354"},{"denom":"ASSET4","index":"0.000010085549624159"},{"denom":"ASSET5","index":"0.000000831702541340"},{"denom":"ASSET6","index":"0.000003384835924059"},{"denom":"ASSET7","index":"0.000005184475396726"},{"denom":"ASSET8","index":"0.000006765467082995"},{"denom":"ASSET9","index":"0.000002921470807498"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003140601357292"},{"denom":"ASSET1","index":"0.000026678854887219"},{"denom":"ASSET10","index":"0.000021467437308134"},{"denom":"ASSET11","index":"0.000026557150856893"},{"denom":"ASSET12","index":"0.000025409189778577"},{"denom":"ASSET13","index":"0.000008348678217638"},{"denom":"ASSET14","index":"0.000024348515645151"},{"denom":"ASSET15","index":"0.000019305257093893"},{"denom":"ASSET16","index":"0.000011824039078448"},{"denom":"ASSET17","index":"0.000009337874135725"},{"denom":"ASSET18","index":"0.000003825021517438"},{"denom":"ASSET2","index":"0.000008092644314938"},{"denom":"ASSET3","index":"0.000002240059115813"},{"denom":"ASSET4","index":"0.000021626536887159"},{"denom":"ASSET5","index":"0.000001745574888449"},{"denom":"ASSET6","index":"0.000007040920669072"},{"denom":"ASSET7","index":"0.000011079696231301"},{"denom":"ASSET8","index":"0.000015176664815864"},{"denom":"ASSET9","index":"0.000006434669973810"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001385039568420"},{"denom":"ASSET1","index":"0.000011547928050470"},{"denom":"ASSET10","index":"0.000008045290512347"},{"denom":"ASSET11","index":"0.000011171268467624"},{"denom":"ASSET12","index":"0.000010059084660007"},{"denom":"ASSET13","index":"0.000003461116009305"},{"denom":"ASSET14","index":"0.000010435744242853"},{"denom":"ASSET15","index":"0.000007461023285412"},{"denom":"ASSET16","index":"0.000005202054396163"},{"denom":"ASSET17","index":"0.000003694427456948"},{"denom":"ASSET18","index":"0.000001759721935608"},{"denom":"ASSET2","index":"0.000003408719794369"},{"denom":"ASSET3","index":"0.000000996516691625"},{"denom":"ASSET4","index":"0.000009383865512804"},{"denom":"ASSET5","index":"0.000000774079930102"},{"denom":"ASSET6","index":"0.000003149704543173"},{"denom":"ASSET7","index":"0.000004824406205487"},{"denom":"ASSET8","index":"0.000006294466047200"},{"denom":"ASSET9","index":"0.000002718671529731"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000002978674281858"},{"denom":"ASSET1","index":"0.000025310372422717"},{"denom":"ASSET10","index":"0.000020411345436720"},{"denom":"ASSET11","index":"0.000025206262983954"},{"denom":"ASSET12","index":"0.000024139567910062"},{"denom":"ASSET13","index":"0.000007924745788344"},{"denom":"ASSET14","index":"0.000023102636423037"},{"denom":"ASSET15","index":"0.000018346974201526"},{"denom":"ASSET16","index":"0.000011213830154915"},{"denom":"ASSET17","index":"0.000008871351161454"},{"denom":"ASSET18","index":"0.000003625142276595"},{"denom":"ASSET2","index":"0.000007680838181843"},{"denom":"ASSET3","index":"0.000002123796319816"},{"denom":"ASSET4","index":"0.000020514843977806"},{"denom":"ASSET5","index":"0.000001655567492872"},{"denom":"ASSET6","index":"0.000006676037052519"},{"denom":"ASSET7","index":"0.000010510115662832"},{"denom":"ASSET8","index":"0.000014407133239162"},{"denom":"ASSET9","index":"0.000006107008804836"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001563741356289"},{"denom":"ASSET1","index":"0.000013036816883138"},{"denom":"ASSET10","index":"0.000009082880828100"},{"denom":"ASSET11","index":"0.000012611783735587"},{"denom":"ASSET12","index":"0.000011356772924286"},{"denom":"ASSET13","index":"0.000003908472310400"},{"denom":"ASSET14","index":"0.000011781101207579"},{"denom":"ASSET15","index":"0.000008423480314776"},{"denom":"ASSET16","index":"0.000005872928997340"},{"denom":"ASSET17","index":"0.000004170681814362"},{"denom":"ASSET18","index":"0.000001986659911066"},{"denom":"ASSET2","index":"0.000003848558848473"},{"denom":"ASSET3","index":"0.000001125668219966"},{"denom":"ASSET4","index":"0.000010594814661429"},{"denom":"ASSET5","index":"0.000000873679247744"},{"denom":"ASSET6","index":"0.000003556392613548"},{"denom":"ASSET7","index":"0.000005446486121273"},{"denom":"ASSET8","index":"0.000007106793880903"},{"denom":"ASSET9","index":"0.000003069683843425"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003115193601728"},{"denom":"ASSET1","index":"0.000026433576226141"},{"denom":"ASSET10","index":"0.000021120836274624"},{"denom":"ASSET11","index":"0.000026274076149270"},{"denom":"ASSET12","index":"0.000025063206789151"},{"denom":"ASSET13","index":"0.000008253838888439"},{"denom":"ASSET14","index":"0.000024111622086359"},{"denom":"ASSET15","index":"0.000019020166052921"},{"denom":"ASSET16","index":"0.000011725264187843"},{"denom":"ASSET17","index":"0.000009210335248597"},{"denom":"ASSET18","index":"0.000003802618681808"},{"denom":"ASSET2","index":"0.000008007094168018"},{"denom":"ASSET3","index":"0.000002223045227271"},{"denom":"ASSET4","index":"0.000021430343290469"},{"denom":"ASSET5","index":"0.000001731871182363"},{"denom":"ASSET6","index":"0.000006989160352022"},{"denom":"ASSET7","index":"0.000010981276608696"},{"denom":"ASSET8","index":"0.000015004007461071"},{"denom":"ASSET9","index":"0.000006368316319391"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001688791638136"},{"denom":"ASSET1","index":"0.000014080258863939"},{"denom":"ASSET10","index":"0.000009809129194434"},{"denom":"ASSET11","index":"0.000013620783833550"},{"denom":"ASSET12","index":"0.000012265553395360"},{"denom":"ASSET13","index":"0.000004220322334414"},{"denom":"ASSET14","index":"0.000012723923918464"},{"denom":"ASSET15","index":"0.000009096721995874"},{"denom":"ASSET16","index":"0.000006342080828109"},{"denom":"ASSET17","index":"0.000004504180706554"},{"denom":"ASSET18","index":"0.000002144953146672"},{"denom":"ASSET2","index":"0.000004156260911908"},{"denom":"ASSET3","index":"0.000001214958013048"},{"denom":"ASSET4","index":"0.000011442695468341"},{"denom":"ASSET5","index":"0.000000943249221039"},{"denom":"ASSET6","index":"0.000003840371828516"},{"denom":"ASSET7","index":"0.000005881501290436"},{"denom":"ASSET8","index":"0.000007675221120608"},{"denom":"ASSET9","index":"0.000003314626361051"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003342989987813"},{"denom":"ASSET1","index":"0.000028363859076608"},{"denom":"ASSET10","index":"0.000022643596968544"},{"denom":"ASSET11","index":"0.000028187678804911"},{"denom":"ASSET12","index":"0.000026879157824253"},{"denom":"ASSET13","index":"0.000008853292918908"},{"denom":"ASSET14","index":"0.000025870927331183"},{"denom":"ASSET15","index":"0.000020395094195043"},{"denom":"ASSET16","index":"0.000012581780801373"},{"denom":"ASSET17","index":"0.000009877287329505"},{"denom":"ASSET18","index":"0.000004080927248291"},{"denom":"ASSET2","index":"0.000008590241612281"},{"denom":"ASSET3","index":"0.000002384972961476"},{"denom":"ASSET4","index":"0.000022995501297970"},{"denom":"ASSET5","index":"0.000001858071035633"},{"denom":"ASSET6","index":"0.000007500418590266"},{"denom":"ASSET7","index":"0.000011782462758670"},{"denom":"ASSET8","index":"0.000016095075530395"},{"denom":"ASSET9","index":"0.000006831506736707"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001571496317510"},{"denom":"ASSET1","index":"0.000013101483241955"},{"denom":"ASSET10","index":"0.000009127906315185"},{"denom":"ASSET11","index":"0.000012674221268720"},{"denom":"ASSET12","index":"0.000011413128948859"},{"denom":"ASSET13","index":"0.000003927726401627"},{"denom":"ASSET14","index":"0.000011839579408375"},{"denom":"ASSET15","index":"0.000008464899606481"},{"denom":"ASSET16","index":"0.000005901733523932"},{"denom":"ASSET17","index":"0.000004191468360414"},{"denom":"ASSET18","index":"0.000001996729506447"},{"denom":"ASSET2","index":"0.000003867268629536"},{"denom":"ASSET3","index":"0.000001131250124766"},{"denom":"ASSET4","index":"0.000010647059997798"},{"denom":"ASSET5","index":"0.000000878057844331"},{"denom":"ASSET6","index":"0.000003573906419993"},{"denom":"ASSET7","index":"0.000005473254280118"},{"denom":"ASSET8","index":"0.000007142132243950"},{"denom":"ASSET9","index":"0.000003084563647228"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003113134051861"},{"denom":"ASSET1","index":"0.000026415094552464"},{"denom":"ASSET10","index":"0.000021090707465492"},{"denom":"ASSET11","index":"0.000026251548228726"},{"denom":"ASSET12","index":"0.000025034408517114"},{"denom":"ASSET13","index":"0.000008245703890405"},{"denom":"ASSET14","index":"0.000024093200316600"},{"denom":"ASSET15","index":"0.000018995578271326"},{"denom":"ASSET16","index":"0.000011717396138812"},{"denom":"ASSET17","index":"0.000009199501798709"},{"denom":"ASSET18","index":"0.000003801350346824"},{"denom":"ASSET2","index":"0.000007999912620195"},{"denom":"ASSET3","index":"0.000002221641081089"},{"denom":"ASSET4","index":"0.000021415082747190"},{"denom":"ASSET5","index":"0.000001730738444371"},{"denom":"ASSET6","index":"0.000006985361363625"},{"denom":"ASSET7","index":"0.000010973556930807"},{"denom":"ASSET8","index":"0.000014990236718633"},{"denom":"ASSET9","index":"0.000006362695679170"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001486431692511"},{"denom":"ASSET1","index":"0.000012397696164316"},{"denom":"ASSET10","index":"0.000008637613387551"},{"denom":"ASSET11","index":"0.000011993186507636"},{"denom":"ASSET12","index":"0.000010799842650204"},{"denom":"ASSET13","index":"0.000003716482933529"},{"denom":"ASSET14","index":"0.000011203544902380"},{"denom":"ASSET15","index":"0.000008010260087670"},{"denom":"ASSET16","index":"0.000005584816956599"},{"denom":"ASSET17","index":"0.000003965970925374"},{"denom":"ASSET18","index":"0.000001889326540182"},{"denom":"ASSET2","index":"0.000003659157213720"},{"denom":"ASSET3","index":"0.000001070618372770"},{"denom":"ASSET4","index":"0.000010074793405297"},{"denom":"ASSET5","index":"0.000000830819234978"},{"denom":"ASSET6","index":"0.000003381410064224"},{"denom":"ASSET7","index":"0.000005179499895414"},{"denom":"ASSET8","index":"0.000006757975701421"},{"denom":"ASSET9","index":"0.000002918767283230"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003023961266495"},{"denom":"ASSET1","index":"0.000025674667559579"},{"denom":"ASSET10","index":"0.000020567435721356"},{"denom":"ASSET11","index":"0.000025532965784321"},{"denom":"ASSET12","index":"0.000024383768132692"},{"denom":"ASSET13","index":"0.000008022807352722"},{"denom":"ASSET14","index":"0.000023423766496233"},{"denom":"ASSET15","index":"0.000018512228577533"},{"denom":"ASSET16","index":"0.000011384524743973"},{"denom":"ASSET17","index":"0.000008960010456843"},{"denom":"ASSET18","index":"0.000003688974211121"},{"denom":"ASSET2","index":"0.000007780619396113"},{"denom":"ASSET3","index":"0.000002157718690670"},{"denom":"ASSET4","index":"0.000020813357966886"},{"denom":"ASSET5","index":"0.000001681323481152"},{"denom":"ASSET6","index":"0.000006783427048921"},{"denom":"ASSET7","index":"0.000010664665966441"},{"denom":"ASSET8","index":"0.000014584270248941"},{"denom":"ASSET9","index":"0.000006187655866052"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001789525520762"},{"denom":"ASSET1","index":"0.000014923544215299"},{"denom":"ASSET10","index":"0.000010397506905977"},{"denom":"ASSET11","index":"0.000014436898494348"},{"denom":"ASSET12","index":"0.000013000171779235"},{"denom":"ASSET13","index":"0.000004474200642702"},{"denom":"ASSET14","index":"0.000013486043818595"},{"denom":"ASSET15","index":"0.000009642393672833"},{"denom":"ASSET16","index":"0.000006722519347127"},{"denom":"ASSET17","index":"0.000004774389100140"},{"denom":"ASSET18","index":"0.000002273850196939"},{"denom":"ASSET2","index":"0.000004405342981073"},{"denom":"ASSET3","index":"0.000001288179849576"},{"denom":"ASSET4","index":"0.000012128232625798"},{"denom":"ASSET5","index":"0.000001000370297599"},{"denom":"ASSET6","index":"0.000004071112533615"},{"denom":"ASSET7","index":"0.000006234326262993"},{"denom":"ASSET8","index":"0.000008135261932908"},{"denom":"ASSET9","index":"0.000003514061787852"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003488279034648"},{"denom":"ASSET1","index":"0.000029592208548275"},{"denom":"ASSET10","index":"0.000023577626976592"},{"denom":"ASSET11","index":"0.000029395914355993"},{"denom":"ASSET12","index":"0.000028007798530295"},{"denom":"ASSET13","index":"0.000009231498766276"},{"denom":"ASSET14","index":"0.000026986732997785"},{"denom":"ASSET15","index":"0.000021244630549189"},{"denom":"ASSET16","index":"0.000013129960095172"},{"denom":"ASSET17","index":"0.000010292381952670"},{"denom":"ASSET18","index":"0.000004261641431672"},{"denom":"ASSET2","index":"0.000008958343988321"},{"denom":"ASSET3","index":"0.000002489657102823"},{"denom":"ASSET4","index":"0.000023991917258738"},{"denom":"ASSET5","index":"0.000001939742890351"},{"denom":"ASSET6","index":"0.000007829259808535"},{"denom":"ASSET7","index":"0.000012294264842111"},{"denom":"ASSET8","index":"0.000016782088113605"},{"denom":"ASSET9","index":"0.000007125719490615"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001504632489095"},{"denom":"ASSET1","index":"0.000012543084148708"},{"denom":"ASSET10","index":"0.000008738830231438"},{"denom":"ASSET11","index":"0.000012134501498699"},{"denom":"ASSET12","index":"0.000010926897843985"},{"denom":"ASSET13","index":"0.000003760573206331"},{"denom":"ASSET14","index":"0.000011335480493994"},{"denom":"ASSET15","index":"0.000008104451906425"},{"denom":"ASSET16","index":"0.000005650267962622"},{"denom":"ASSET17","index":"0.000004012577307899"},{"denom":"ASSET18","index":"0.000001911199106291"},{"denom":"ASSET2","index":"0.000003702780265705"},{"denom":"ASSET3","index":"0.000001083281631273"},{"denom":"ASSET4","index":"0.000010193733911157"},{"denom":"ASSET5","index":"0.000000840685682831"},{"denom":"ASSET6","index":"0.000003421207682886"},{"denom":"ASSET7","index":"0.000005240341290738"},{"denom":"ASSET8","index":"0.000006837711289210"},{"denom":"ASSET9","index":"0.000002953488070376"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003015423229771"},{"denom":"ASSET1","index":"0.000025588098096649"},{"denom":"ASSET10","index":"0.000020460473772645"},{"denom":"ASSET11","index":"0.000025438043766359"},{"denom":"ASSET12","index":"0.000024273358860204"},{"denom":"ASSET13","index":"0.000007991752317173"},{"denom":"ASSET14","index":"0.000023342063892494"},{"denom":"ASSET15","index":"0.000018422728556898"},{"denom":"ASSET16","index":"0.000011348811151398"},{"denom":"ASSET17","index":"0.000008919790197810"},{"denom":"ASSET18","index":"0.000003679502338318"},{"denom":"ASSET2","index":"0.000007752126098631"},{"denom":"ASSET3","index":"0.000002151933074669"},{"denom":"ASSET4","index":"0.000020744635257959"},{"denom":"ASSET5","index":"0.000001676458472807"},{"denom":"ASSET6","index":"0.000006763790928604"},{"denom":"ASSET7","index":"0.000010629564741383"},{"denom":"ASSET8","index":"0.000014527278079751"},{"denom":"ASSET9","index":"0.000006165283413682"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001790270882045"},{"denom":"ASSET1","index":"0.000014924962381265"},{"denom":"ASSET10","index":"0.000010398687848362"},{"denom":"ASSET11","index":"0.000014438353512768"},{"denom":"ASSET12","index":"0.000013001639266884"},{"denom":"ASSET13","index":"0.000004474427888377"},{"denom":"ASSET14","index":"0.000013487623477013"},{"denom":"ASSET15","index":"0.000009643475881721"},{"denom":"ASSET16","index":"0.000006723198012370"},{"denom":"ASSET17","index":"0.000004774888563278"},{"denom":"ASSET18","index":"0.000002274381117071"},{"denom":"ASSET2","index":"0.000004405715467922"},{"denom":"ASSET3","index":"0.000001288670212721"},{"denom":"ASSET4","index":"0.000012129616185469"},{"denom":"ASSET5","index":"0.000001000078046809"},{"denom":"ASSET6","index":"0.000004071523241162"},{"denom":"ASSET7","index":"0.000006235339827137"},{"denom":"ASSET8","index":"0.000008136175240279"},{"denom":"ASSET9","index":"0.000003514327977106"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003452635056994"},{"denom":"ASSET1","index":"0.000029280443630050"},{"denom":"ASSET10","index":"0.000023297581891953"},{"denom":"ASSET11","index":"0.000029078046899152"},{"denom":"ASSET12","index":"0.000027688393753974"},{"denom":"ASSET13","index":"0.000009130247174920"},{"denom":"ASSET14","index":"0.000026700258191979"},{"denom":"ASSET15","index":"0.000020998119885469"},{"denom":"ASSET16","index":"0.000012993858989816"},{"denom":"ASSET17","index":"0.000010174919177657"},{"denom":"ASSET18","index":"0.000004220034662939"},{"denom":"ASSET2","index":"0.000008861755768133"},{"denom":"ASSET3","index":"0.000002464736347038"},{"denom":"ASSET4","index":"0.000023740327943060"},{"denom":"ASSET5","index":"0.000001919615043943"},{"denom":"ASSET6","index":"0.000007749671229698"},{"denom":"ASSET7","index":"0.000012165961282812"},{"denom":"ASSET8","index":"0.000016598407083950"},{"denom":"ASSET9","index":"0.000007048985746822"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001835550145227"},{"denom":"ASSET1","index":"0.000015324623289081"},{"denom":"ASSET10","index":"0.000010676536631006"},{"denom":"ASSET11","index":"0.000014825027987456"},{"denom":"ASSET12","index":"0.000013348446318211"},{"denom":"ASSET13","index":"0.000004592576069005"},{"denom":"ASSET14","index":"0.000013848041619836"},{"denom":"ASSET15","index":"0.000009899388384035"},{"denom":"ASSET16","index":"0.000006901816574290"},{"denom":"ASSET17","index":"0.000004903435367793"},{"denom":"ASSET18","index":"0.000002335145446851"},{"denom":"ASSET2","index":"0.000004522262656184"},{"denom":"ASSET3","index":"0.000001321152019851"},{"denom":"ASSET4","index":"0.000012452875481226"},{"denom":"ASSET5","index":"0.000001025095544814"},{"denom":"ASSET6","index":"0.000004178097003954"},{"denom":"ASSET7","index":"0.000006402221272666"},{"denom":"ASSET8","index":"0.000008352493301969"},{"denom":"ASSET9","index":"0.000003608188289508"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003336473275634"},{"denom":"ASSET1","index":"0.000028284037775138"},{"denom":"ASSET10","index":"0.000022321061137243"},{"denom":"ASSET11","index":"0.000028041053149272"},{"denom":"ASSET12","index":"0.000026607048139233"},{"denom":"ASSET13","index":"0.000008795774551756"},{"denom":"ASSET14","index":"0.000025776026947277"},{"denom":"ASSET15","index":"0.000020150006768141"},{"denom":"ASSET16","index":"0.000012562977954735"},{"denom":"ASSET17","index":"0.000009778271060189"},{"denom":"ASSET18","index":"0.000004091528532498"},{"denom":"ASSET2","index":"0.000008544798017437"},{"denom":"ASSET3","index":"0.000002382883485470"},{"denom":"ASSET4","index":"0.000022934405116164"},{"denom":"ASSET5","index":"0.000001855148612588"},{"denom":"ASSET6","index":"0.000007498692848558"},{"denom":"ASSET7","index":"0.000011756140274513"},{"denom":"ASSET8","index":"0.000015991743254740"},{"denom":"ASSET9","index":"0.000006799136288961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001764742979644"},{"denom":"ASSET1","index":"0.000014715413525055"},{"denom":"ASSET10","index":"0.000010252344388411"},{"denom":"ASSET11","index":"0.000014235671854472"},{"denom":"ASSET12","index":"0.000012819403806098"},{"denom":"ASSET13","index":"0.000004411268809023"},{"denom":"ASSET14","index":"0.000013298556836595"},{"denom":"ASSET15","index":"0.000009507714678855"},{"denom":"ASSET16","index":"0.000006629264655353"},{"denom":"ASSET17","index":"0.000004707943412672"},{"denom":"ASSET18","index":"0.000002242718729968"},{"denom":"ASSET2","index":"0.000004343575199063"},{"denom":"ASSET3","index":"0.000001270873946982"},{"denom":"ASSET4","index":"0.000011958811999481"},{"denom":"ASSET5","index":"0.000000985972145064"},{"denom":"ASSET6","index":"0.000004013936750564"},{"denom":"ASSET7","index":"0.000006147757064510"},{"denom":"ASSET8","index":"0.000008021987100262"},{"denom":"ASSET9","index":"0.000003464735549761"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003371223111771"},{"denom":"ASSET1","index":"0.000028586584995448"},{"denom":"ASSET10","index":"0.000022716281614844"},{"denom":"ASSET11","index":"0.000028381809067472"},{"denom":"ASSET12","index":"0.000027011101270499"},{"denom":"ASSET13","index":"0.000008910504058238"},{"denom":"ASSET14","index":"0.000026065694327630"},{"denom":"ASSET15","index":"0.000020479714095343"},{"denom":"ASSET16","index":"0.000012688778091614"},{"denom":"ASSET17","index":"0.000009925875585388"},{"denom":"ASSET18","index":"0.000004122881217339"},{"denom":"ASSET2","index":"0.000008649339803247"},{"denom":"ASSET3","index":"0.000002407313457267"},{"denom":"ASSET4","index":"0.000023177863483423"},{"denom":"ASSET5","index":"0.000001874397047373"},{"denom":"ASSET6","index":"0.000007568278053481"},{"denom":"ASSET7","index":"0.000011878402488901"},{"denom":"ASSET8","index":"0.000016198768839280"},{"denom":"ASSET9","index":"0.000006880150170591"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001519402004985"},{"denom":"ASSET1","index":"0.000012669186594649"},{"denom":"ASSET10","index":"0.000008826466179926"},{"denom":"ASSET11","index":"0.000012255973562605"},{"denom":"ASSET12","index":"0.000011036700348729"},{"denom":"ASSET13","index":"0.000003798237040326"},{"denom":"ASSET14","index":"0.000011448841492233"},{"denom":"ASSET15","index":"0.000008185476833202"},{"denom":"ASSET16","index":"0.000005707270529482"},{"denom":"ASSET17","index":"0.000004053346512768"},{"denom":"ASSET18","index":"0.000001930471259949"},{"denom":"ASSET2","index":"0.000003739819114914"},{"denom":"ASSET3","index":"0.000001093862254735"},{"denom":"ASSET4","index":"0.000010296025367816"},{"denom":"ASSET5","index":"0.000000848935723420"},{"denom":"ASSET6","index":"0.000003455768651901"},{"denom":"ASSET7","index":"0.000005292985608899"},{"denom":"ASSET8","index":"0.000006906177861104"},{"denom":"ASSET9","index":"0.000002983065805906"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003090388166914"},{"denom":"ASSET1","index":"0.000026235396530584"},{"denom":"ASSET10","index":"0.000021016328726441"},{"denom":"ASSET11","index":"0.000026091077525301"},{"denom":"ASSET12","index":"0.000024916432469284"},{"denom":"ASSET13","index":"0.000008198423394567"},{"denom":"ASSET14","index":"0.000023935350029219"},{"denom":"ASSET15","index":"0.000018916111125702"},{"denom":"ASSET16","index":"0.000011633439861257"},{"denom":"ASSET17","index":"0.000009156707623184"},{"denom":"ASSET18","index":"0.000003769226369030"},{"denom":"ASSET2","index":"0.000007950992094695"},{"denom":"ASSET3","index":"0.000002205065882760"},{"denom":"ASSET4","index":"0.000021268551776440"},{"denom":"ASSET5","index":"0.000001717872208784"},{"denom":"ASSET6","index":"0.000006931889619894"},{"denom":"ASSET7","index":"0.000010897757198785"},{"denom":"ASSET8","index":"0.000014903243728132"},{"denom":"ASSET9","index":"0.000006323427167640"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001518878942956"},{"denom":"ASSET1","index":"0.000012665267621292"},{"denom":"ASSET10","index":"0.000008823986077449"},{"denom":"ASSET11","index":"0.000012252067733139"},{"denom":"ASSET12","index":"0.000011032961258059"},{"denom":"ASSET13","index":"0.000003796959064490"},{"denom":"ASSET14","index":"0.000011445207974612"},{"denom":"ASSET15","index":"0.000008182978177143"},{"denom":"ASSET16","index":"0.000005705208605625"},{"denom":"ASSET17","index":"0.000004051932467214"},{"denom":"ASSET18","index":"0.000001930172487911"},{"denom":"ASSET2","index":"0.000003738815596953"},{"denom":"ASSET3","index":"0.000001093764409816"},{"denom":"ASSET4","index":"0.000010292823511460"},{"denom":"ASSET5","index":"0.000000848799308881"},{"denom":"ASSET6","index":"0.000003454770460461"},{"denom":"ASSET7","index":"0.000005291055545873"},{"denom":"ASSET8","index":"0.000006904298477127"},{"denom":"ASSET9","index":"0.000002981997347372"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003032310940473"},{"denom":"ASSET1","index":"0.000025733484746235"},{"denom":"ASSET10","index":"0.000020566326171769"},{"denom":"ASSET11","index":"0.000025579130700492"},{"denom":"ASSET12","index":"0.000024402998631681"},{"denom":"ASSET13","index":"0.000008035434808363"},{"denom":"ASSET14","index":"0.000023473377840860"},{"denom":"ASSET15","index":"0.000018519821992016"},{"denom":"ASSET16","index":"0.000011413808805814"},{"denom":"ASSET17","index":"0.000008967671528488"},{"denom":"ASSET18","index":"0.000003701450923042"},{"denom":"ASSET2","index":"0.000007795399667781"},{"denom":"ASSET3","index":"0.000002164126947351"},{"denom":"ASSET4","index":"0.000020862528644023"},{"denom":"ASSET5","index":"0.000001685967393794"},{"denom":"ASSET6","index":"0.000006803442800114"},{"denom":"ASSET7","index":"0.000010689840259007"},{"denom":"ASSET8","index":"0.000014607710652032"},{"denom":"ASSET9","index":"0.000006199747658625"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001387661284101"},{"denom":"ASSET1","index":"0.000011573014587468"},{"denom":"ASSET10","index":"0.000008062929395432"},{"denom":"ASSET11","index":"0.000011195232526081"},{"denom":"ASSET12","index":"0.000010081345808669"},{"denom":"ASSET13","index":"0.000003469153210252"},{"denom":"ASSET14","index":"0.000010458456853962"},{"denom":"ASSET15","index":"0.000007477132344649"},{"denom":"ASSET16","index":"0.000005213124040705"},{"denom":"ASSET17","index":"0.000003702666811251"},{"denom":"ASSET18","index":"0.000001763430297203"},{"denom":"ASSET2","index":"0.000003416142938760"},{"denom":"ASSET3","index":"0.000000999142965196"},{"denom":"ASSET4","index":"0.000009404961585085"},{"denom":"ASSET5","index":"0.000000775694605619"},{"denom":"ASSET6","index":"0.000003156459710063"},{"denom":"ASSET7","index":"0.000004834670963223"},{"denom":"ASSET8","index":"0.000006308893323556"},{"denom":"ASSET9","index":"0.000002724996361089"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000002847838387483"},{"denom":"ASSET1","index":"0.000024182680336096"},{"denom":"ASSET10","index":"0.000019393227963423"},{"denom":"ASSET11","index":"0.000024054653395269"},{"denom":"ASSET12","index":"0.000022982316432831"},{"denom":"ASSET13","index":"0.000007558836235579"},{"denom":"ASSET14","index":"0.000022064079622497"},{"denom":"ASSET15","index":"0.000017450899901336"},{"denom":"ASSET16","index":"0.000010721434414440"},{"denom":"ASSET17","index":"0.000008446187739031"},{"denom":"ASSET18","index":"0.000003472449339717"},{"denom":"ASSET2","index":"0.000007330038539196"},{"denom":"ASSET3","index":"0.000002031951160271"},{"denom":"ASSET4","index":"0.000019603371773062"},{"denom":"ASSET5","index":"0.000001583403578691"},{"denom":"ASSET6","index":"0.000006387295602350"},{"denom":"ASSET7","index":"0.000010043914419286"},{"denom":"ASSET8","index":"0.000013741733556815"},{"denom":"ASSET9","index":"0.000005829813216311"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001740203165372"},{"denom":"ASSET1","index":"0.000014506985633466"},{"denom":"ASSET10","index":"0.000010106727386233"},{"denom":"ASSET11","index":"0.000014033828203465"},{"denom":"ASSET12","index":"0.000012637643303754"},{"denom":"ASSET13","index":"0.000004348390877948"},{"denom":"ASSET14","index":"0.000013109742216014"},{"denom":"ASSET15","index":"0.000009373174592071"},{"denom":"ASSET16","index":"0.000006535288529808"},{"denom":"ASSET17","index":"0.000004640541774324"},{"denom":"ASSET18","index":"0.000002210185042151"},{"denom":"ASSET2","index":"0.000004281704260297"},{"denom":"ASSET3","index":"0.000001252226487004"},{"denom":"ASSET4","index":"0.000011789770593618"},{"denom":"ASSET5","index":"0.000000971719285773"},{"denom":"ASSET6","index":"0.000003956739313965"},{"denom":"ASSET7","index":"0.000006060014064326"},{"denom":"ASSET8","index":"0.000007908186039228"},{"denom":"ASSET9","index":"0.000003415836748573"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003351161845380"},{"denom":"ASSET1","index":"0.000028416485386018"},{"denom":"ASSET10","index":"0.000022605276372189"},{"denom":"ASSET11","index":"0.000028218825237526"},{"denom":"ASSET12","index":"0.000026868556551399"},{"denom":"ASSET13","index":"0.000008859853422879"},{"denom":"ASSET14","index":"0.000025912194276628"},{"denom":"ASSET15","index":"0.000020375555431981"},{"denom":"ASSET16","index":"0.000012611404420708"},{"denom":"ASSET17","index":"0.000009873044520717"},{"denom":"ASSET18","index":"0.000004095473642305"},{"denom":"ASSET2","index":"0.000008599384819082"},{"denom":"ASSET3","index":"0.000002391571176633"},{"denom":"ASSET4","index":"0.000023040021162794"},{"denom":"ASSET5","index":"0.000001862805125681"},{"denom":"ASSET6","index":"0.000007520693553142"},{"denom":"ASSET7","index":"0.000011806544930596"},{"denom":"ASSET8","index":"0.000016107343127742"},{"denom":"ASSET9","index":"0.000006840485865179"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001711866379191"},{"denom":"ASSET1","index":"0.000014286095556473"},{"denom":"ASSET10","index":"0.000009953932372868"},{"denom":"ASSET11","index":"0.000013820467901333"},{"denom":"ASSET12","index":"0.000012444127332464"},{"denom":"ASSET13","index":"0.000004281948436482"},{"denom":"ASSET14","index":"0.000012909754987604"},{"denom":"ASSET15","index":"0.000009230383516596"},{"denom":"ASSET16","index":"0.000006434335097252"},{"denom":"ASSET17","index":"0.000004569541988186"},{"denom":"ASSET18","index":"0.000002177494034331"},{"denom":"ASSET2","index":"0.000004215756269820"},{"denom":"ASSET3","index":"0.000001232543793017"},{"denom":"ASSET4","index":"0.000011608736539419"},{"denom":"ASSET5","index":"0.000000956362683841"},{"denom":"ASSET6","index":"0.000003896207879038"},{"denom":"ASSET7","index":"0.000005968707442112"},{"denom":"ASSET8","index":"0.000007787850781065"},{"denom":"ASSET9","index":"0.000003362105568731"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003408995344605"},{"denom":"ASSET1","index":"0.000028940875589883"},{"denom":"ASSET10","index":"0.000023121939135123"},{"denom":"ASSET11","index":"0.000028765460883304"},{"denom":"ASSET12","index":"0.000027437813762181"},{"denom":"ASSET13","index":"0.000009035078182388"},{"denom":"ASSET14","index":"0.000026397840013038"},{"denom":"ASSET15","index":"0.000020822021063845"},{"denom":"ASSET16","index":"0.000012835900360827"},{"denom":"ASSET17","index":"0.000010082289518918"},{"denom":"ASSET18","index":"0.000004163537456367"},{"denom":"ASSET2","index":"0.000008764373535196"},{"denom":"ASSET3","index":"0.000002432999591430"},{"denom":"ASSET4","index":"0.000023461370966582"},{"denom":"ASSET5","index":"0.000001895172356369"},{"denom":"ASSET6","index":"0.000007651446569151"},{"denom":"ASSET7","index":"0.000012022926111771"},{"denom":"ASSET8","index":"0.000016426068411072"},{"denom":"ASSET9","index":"0.000006969965423669"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001459800105667"},{"denom":"ASSET1","index":"0.000012176396665923"},{"denom":"ASSET10","index":"0.000008484162206626"},{"denom":"ASSET11","index":"0.000011779823335110"},{"denom":"ASSET12","index":"0.000010607197020722"},{"denom":"ASSET13","index":"0.000003650070053435"},{"denom":"ASSET14","index":"0.000011003770351536"},{"denom":"ASSET15","index":"0.000007867650218206"},{"denom":"ASSET16","index":"0.000005484791497715"},{"denom":"ASSET17","index":"0.000003895079438851"},{"denom":"ASSET18","index":"0.000001855233857943"},{"denom":"ASSET2","index":"0.000003594230705131"},{"denom":"ASSET3","index":"0.000001050691410948"},{"denom":"ASSET4","index":"0.000009896100013746"},{"denom":"ASSET5","index":"0.000000815938232363"},{"denom":"ASSET6","index":"0.000003321871434831"},{"denom":"ASSET7","index":"0.000005087078588365"},{"denom":"ASSET8","index":"0.000006638044976977"},{"denom":"ASSET9","index":"0.000002867179598640"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000002975317591563"},{"denom":"ASSET1","index":"0.000025265738469637"},{"denom":"ASSET10","index":"0.000020245724387946"},{"denom":"ASSET11","index":"0.000025128558675417"},{"denom":"ASSET12","index":"0.000023998925764885"},{"denom":"ASSET13","index":"0.000007895668684136"},{"denom":"ASSET14","index":"0.000023051238668493"},{"denom":"ASSET15","index":"0.000018221178423268"},{"denom":"ASSET16","index":"0.000011202197653725"},{"denom":"ASSET17","index":"0.000008818540737002"},{"denom":"ASSET18","index":"0.000003629428323701"},{"denom":"ASSET2","index":"0.000007657107369447"},{"denom":"ASSET3","index":"0.000002122660280404"},{"denom":"ASSET4","index":"0.000020482509156357"},{"denom":"ASSET5","index":"0.000001654309607539"},{"denom":"ASSET6","index":"0.000006675356935536"},{"denom":"ASSET7","index":"0.000010494215679887"},{"denom":"ASSET8","index":"0.000014353927855523"},{"denom":"ASSET9","index":"0.000006089535217587"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001617402557586"},{"denom":"ASSET1","index":"0.000013485147451276"},{"denom":"ASSET10","index":"0.000009395521488362"},{"denom":"ASSET11","index":"0.000013045402724081"},{"denom":"ASSET12","index":"0.000011747619504798"},{"denom":"ASSET13","index":"0.000004042433845849"},{"denom":"ASSET14","index":"0.000012186291683878"},{"denom":"ASSET15","index":"0.000008713380887153"},{"denom":"ASSET16","index":"0.000006074912523982"},{"denom":"ASSET17","index":"0.000004313788518972"},{"denom":"ASSET18","index":"0.000002055002188551"},{"denom":"ASSET2","index":"0.000003980226055173"},{"denom":"ASSET3","index":"0.000001163714704894"},{"denom":"ASSET4","index":"0.000010959296640193"},{"denom":"ASSET5","index":"0.000000903085512923"},{"denom":"ASSET6","index":"0.000003677767486712"},{"denom":"ASSET7","index":"0.000005633022700557"},{"denom":"ASSET8","index":"0.000007351244780963"},{"denom":"ASSET9","index":"0.000003174742420725"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003091273620954"},{"denom":"ASSET1","index":"0.000026212594205506"},{"denom":"ASSET10","index":"0.000020831747389799"},{"denom":"ASSET11","index":"0.000026024829344923"},{"denom":"ASSET12","index":"0.000024768925461013"},{"denom":"ASSET13","index":"0.000008170539761157"},{"denom":"ASSET14","index":"0.000023900540063840"},{"denom":"ASSET15","index":"0.000018780610027247"},{"denom":"ASSET16","index":"0.000011634658240098"},{"denom":"ASSET17","index":"0.000009101405984603"},{"denom":"ASSET18","index":"0.000003780149264156"},{"denom":"ASSET2","index":"0.000007930960667726"},{"denom":"ASSET3","index":"0.000002206123035767"},{"denom":"ASSET4","index":"0.000021253166889363"},{"denom":"ASSET5","index":"0.000001718500807532"},{"denom":"ASSET6","index":"0.000006939076737962"},{"denom":"ASSET7","index":"0.000010891166816552"},{"denom":"ASSET8","index":"0.000014853628574871"},{"denom":"ASSET9","index":"0.000006308302102729"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001496654334782"},{"denom":"ASSET1","index":"0.000012477377024436"},{"denom":"ASSET10","index":"0.000008693096469902"},{"denom":"ASSET11","index":"0.000012070207597683"},{"denom":"ASSET12","index":"0.000010869145414891"},{"denom":"ASSET13","index":"0.000003740467488528"},{"denom":"ASSET14","index":"0.000011275146493218"},{"denom":"ASSET15","index":"0.000008061604145195"},{"denom":"ASSET16","index":"0.000005620924281527"},{"denom":"ASSET17","index":"0.000003991662400298"},{"denom":"ASSET18","index":"0.000001901487064682"},{"denom":"ASSET2","index":"0.000003683218415613"},{"denom":"ASSET3","index":"0.000001077217249546"},{"denom":"ASSET4","index":"0.000010139511822330"},{"denom":"ASSET5","index":"0.000000835953299404"},{"denom":"ASSET6","index":"0.000003403398967385"},{"denom":"ASSET7","index":"0.000005212586506346"},{"denom":"ASSET8","index":"0.000006801540366848"},{"denom":"ASSET9","index":"0.000002937812119289"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003012098530886"},{"denom":"ASSET1","index":"0.000025562058034330"},{"denom":"ASSET10","index":"0.000020450222858637"},{"denom":"ASSET11","index":"0.000025414193224582"},{"denom":"ASSET12","index":"0.000024256065084933"},{"denom":"ASSET13","index":"0.000007984561416691"},{"denom":"ASSET14","index":"0.000023318358139730"},{"denom":"ASSET15","index":"0.000018411259079989"},{"denom":"ASSET16","index":"0.000011336678183578"},{"denom":"ASSET17","index":"0.000008913774138499"},{"denom":"ASSET18","index":"0.000003674960609183"},{"denom":"ASSET2","index":"0.000007744948932800"},{"denom":"ASSET3","index":"0.000002148867969989"},{"denom":"ASSET4","index":"0.000020722540912428"},{"denom":"ASSET5","index":"0.000001674229864542"},{"denom":"ASSET6","index":"0.000006756080138401"},{"denom":"ASSET7","index":"0.000010618450136599"},{"denom":"ASSET8","index":"0.000014514789998911"},{"denom":"ASSET9","index":"0.000006159565713194"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001470615438656"},{"denom":"ASSET1","index":"0.000012263141624205"},{"denom":"ASSET10","index":"0.000008543710077270"},{"denom":"ASSET11","index":"0.000011863435889596"},{"denom":"ASSET12","index":"0.000010682701378752"},{"denom":"ASSET13","index":"0.000003676538596641"},{"denom":"ASSET14","index":"0.000011081935762259"},{"denom":"ASSET15","index":"0.000007923412026863"},{"denom":"ASSET16","index":"0.000005524234917004"},{"denom":"ASSET17","index":"0.000003923055223056"},{"denom":"ASSET18","index":"0.000001868907119959"},{"denom":"ASSET2","index":"0.000003619976464385"},{"denom":"ASSET3","index":"0.000001058654575392"},{"denom":"ASSET4","index":"0.000009965776352407"},{"denom":"ASSET5","index":"0.000000822036322121"},{"denom":"ASSET6","index":"0.000003345178771841"},{"denom":"ASSET7","index":"0.000005123115129088"},{"denom":"ASSET8","index":"0.000006685172681558"},{"denom":"ASSET9","index":"0.000002887496851669"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000002995147819628"},{"denom":"ASSET1","index":"0.000025426980115999"},{"denom":"ASSET10","index":"0.000020372034738960"},{"denom":"ASSET11","index":"0.000025287989623967"},{"denom":"ASSET12","index":"0.000024150599022202"},{"denom":"ASSET13","index":"0.000007946076587902"},{"denom":"ASSET14","index":"0.000023198024872944"},{"denom":"ASSET15","index":"0.000018335727027304"},{"denom":"ASSET16","index":"0.000011274635486105"},{"denom":"ASSET17","index":"0.000008875015361763"},{"denom":"ASSET18","index":"0.000003653177061349"},{"denom":"ASSET2","index":"0.000007706361997735"},{"denom":"ASSET3","index":"0.000002137037997503"},{"denom":"ASSET4","index":"0.000020612735071168"},{"denom":"ASSET5","index":"0.000001665450131859"},{"denom":"ASSET6","index":"0.000006718182222688"},{"denom":"ASSET7","index":"0.000010561635089256"},{"denom":"ASSET8","index":"0.000014445035982826"},{"denom":"ASSET9","index":"0.000006128513210961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001778581753434"},{"denom":"ASSET1","index":"0.000014888315804569"},{"denom":"ASSET10","index":"0.000010370885153828"},{"denom":"ASSET11","index":"0.000014404007158094"},{"denom":"ASSET12","index":"0.000012967781516823"},{"denom":"ASSET13","index":"0.000004458979607201"},{"denom":"ASSET14","index":"0.000013452090163298"},{"denom":"ASSET15","index":"0.000009619371736884"},{"denom":"ASSET16","index":"0.000006705169708956"},{"denom":"ASSET17","index":"0.000004759584973979"},{"denom":"ASSET18","index":"0.000002262890399909"},{"denom":"ASSET2","index":"0.000004392178414584"},{"denom":"ASSET3","index":"0.000001285922957882"},{"denom":"ASSET4","index":"0.000012099366012799"},{"denom":"ASSET5","index":"0.000000993667740182"},{"denom":"ASSET6","index":"0.000004058172451498"},{"denom":"ASSET7","index":"0.000006220861062481"},{"denom":"ASSET8","index":"0.000008116344902996"},{"denom":"ASSET9","index":"0.000003507062612406"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003356752793751"},{"denom":"ASSET1","index":"0.000028516406305775"},{"denom":"ASSET10","index":"0.000022616173055400"},{"denom":"ASSET11","index":"0.000028302061322789"},{"denom":"ASSET12","index":"0.000026910491325102"},{"denom":"ASSET13","index":"0.000008878873421079"},{"denom":"ASSET14","index":"0.000025995251505598"},{"denom":"ASSET15","index":"0.000020398635157595"},{"denom":"ASSET16","index":"0.000012658071469071"},{"denom":"ASSET17","index":"0.000009885849877285"},{"denom":"ASSET18","index":"0.000004110010202724"},{"denom":"ASSET2","index":"0.000008622285743228"},{"denom":"ASSET3","index":"0.000002402314047495"},{"denom":"ASSET4","index":"0.000023121698220749"},{"denom":"ASSET5","index":"0.000001866482592061"},{"denom":"ASSET6","index":"0.000007549939309511"},{"denom":"ASSET7","index":"0.000011851024307599"},{"denom":"ASSET8","index":"0.000016149793693754"},{"denom":"ASSET9","index":"0.000006862325287189"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001604942959288"},{"denom":"ASSET1","index":"0.000013380628695124"},{"denom":"ASSET10","index":"0.000009322365613635"},{"denom":"ASSET11","index":"0.000012944148427984"},{"denom":"ASSET12","index":"0.000011656280789193"},{"denom":"ASSET13","index":"0.000004011353995308"},{"denom":"ASSET14","index":"0.000012091757653420"},{"denom":"ASSET15","index":"0.000008645319498111"},{"denom":"ASSET16","index":"0.000006027692148913"},{"denom":"ASSET17","index":"0.000004280767677439"},{"denom":"ASSET18","index":"0.000002039165569874"},{"denom":"ASSET2","index":"0.000003949895566889"},{"denom":"ASSET3","index":"0.000001155418454280"},{"denom":"ASSET4","index":"0.000010873877367808"},{"denom":"ASSET5","index":"0.000000896791353463"},{"denom":"ASSET6","index":"0.000003649878095912"},{"denom":"ASSET7","index":"0.000005589957628131"},{"denom":"ASSET8","index":"0.000007294237475803"},{"denom":"ASSET9","index":"0.000003150685146712"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003200268554223"},{"denom":"ASSET1","index":"0.000027155061035589"},{"denom":"ASSET10","index":"0.000021699312128992"},{"denom":"ASSET11","index":"0.000026991580254755"},{"denom":"ASSET12","index":"0.000025748970079650"},{"denom":"ASSET13","index":"0.000008479073830121"},{"denom":"ASSET14","index":"0.000024769827936089"},{"denom":"ASSET15","index":"0.000019540730612944"},{"denom":"ASSET16","index":"0.000012044995213579"},{"denom":"ASSET17","index":"0.000009462424001901"},{"denom":"ASSET18","index":"0.000003906197580725"},{"denom":"ASSET2","index":"0.000008225756082433"},{"denom":"ASSET3","index":"0.000002283784004254"},{"denom":"ASSET4","index":"0.000022014648589339"},{"denom":"ASSET5","index":"0.000001779311895342"},{"denom":"ASSET6","index":"0.000007179475362032"},{"denom":"ASSET7","index":"0.000011280598785262"},{"denom":"ASSET8","index":"0.000015413911362487"},{"denom":"ASSET9","index":"0.000006542247148589"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001620184629837"},{"denom":"ASSET1","index":"0.000013508113244239"},{"denom":"ASSET10","index":"0.000009411159415052"},{"denom":"ASSET11","index":"0.000013068550109883"},{"denom":"ASSET12","index":"0.000011766766981214"},{"denom":"ASSET13","index":"0.000004049052718392"},{"denom":"ASSET14","index":"0.000012206330115570"},{"denom":"ASSET15","index":"0.000008726455301921"},{"denom":"ASSET16","index":"0.000006083441070987"},{"denom":"ASSET17","index":"0.000004319553108765"},{"denom":"ASSET18","index":"0.000002056930051793"},{"denom":"ASSET2","index":"0.000003987063045598"},{"denom":"ASSET3","index":"0.000001166532933482"},{"denom":"ASSET4","index":"0.000010977807509294"},{"denom":"ASSET5","index":"0.000000904485680309"},{"denom":"ASSET6","index":"0.000003682750106429"},{"denom":"ASSET7","index":"0.000005643877936631"},{"denom":"ASSET8","index":"0.000007362682500458"},{"denom":"ASSET9","index":"0.000003178379586880"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003154859072778"},{"denom":"ASSET1","index":"0.000026759958230198"},{"denom":"ASSET10","index":"0.000021318547828682"},{"denom":"ASSET11","index":"0.000026582778956839"},{"denom":"ASSET12","index":"0.000025324795995745"},{"denom":"ASSET13","index":"0.000008347309163095"},{"denom":"ASSET14","index":"0.000024403216779648"},{"denom":"ASSET15","index":"0.000019208461119321"},{"denom":"ASSET16","index":"0.000011872154646602"},{"denom":"ASSET17","index":"0.000009304429323264"},{"denom":"ASSET18","index":"0.000003853154066825"},{"denom":"ASSET2","index":"0.000008100524497579"},{"denom":"ASSET3","index":"0.000002251942800438"},{"denom":"ASSET4","index":"0.000021695917087147"},{"denom":"ASSET5","index":"0.000001753374642360"},{"denom":"ASSET6","index":"0.000007078305954632"},{"denom":"ASSET7","index":"0.000011118481739065"},{"denom":"ASSET8","index":"0.000015174129529137"},{"denom":"ASSET9","index":"0.000006441283498998"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001565910537906"},{"denom":"ASSET1","index":"0.000013053983025959"},{"denom":"ASSET10","index":"0.000009094819386579"},{"denom":"ASSET11","index":"0.000012628414118813"},{"denom":"ASSET12","index":"0.000011371841840295"},{"denom":"ASSET13","index":"0.000003913403541838"},{"denom":"ASSET14","index":"0.000011796953146466"},{"denom":"ASSET15","index":"0.000008434501179040"},{"denom":"ASSET16","index":"0.000005880630135191"},{"denom":"ASSET17","index":"0.000004176066501732"},{"denom":"ASSET18","index":"0.000001989191440174"},{"denom":"ASSET2","index":"0.000003853457814057"},{"denom":"ASSET3","index":"0.000001127071202473"},{"denom":"ASSET4","index":"0.000010608563413286"},{"denom":"ASSET5","index":"0.000000874933065013"},{"denom":"ASSET6","index":"0.000003561050790760"},{"denom":"ASSET7","index":"0.000005453688425119"},{"denom":"ASSET8","index":"0.000007116152768840"},{"denom":"ASSET9","index":"0.000003073705751932"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003066618221533"},{"denom":"ASSET1","index":"0.000026018563142658"},{"denom":"ASSET10","index":"0.000020743763118655"},{"denom":"ASSET11","index":"0.000025849025514444"},{"denom":"ASSET12","index":"0.000024635604575072"},{"denom":"ASSET13","index":"0.000008118261811936"},{"denom":"ASSET14","index":"0.000023728777879609"},{"denom":"ASSET15","index":"0.000018689177197382"},{"denom":"ASSET16","index":"0.000011544003668418"},{"denom":"ASSET17","index":"0.000009052167825210"},{"denom":"ASSET18","index":"0.000003745930402733"},{"denom":"ASSET2","index":"0.000007877080459743"},{"denom":"ASSET3","index":"0.000002188594145460"},{"denom":"ASSET4","index":"0.000021094338825720"},{"denom":"ASSET5","index":"0.000001705356613908"},{"denom":"ASSET6","index":"0.000006882744986340"},{"denom":"ASSET7","index":"0.000010809249072439"},{"denom":"ASSET8","index":"0.000014757775472241"},{"denom":"ASSET9","index":"0.000006264987011427"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001616793771814"},{"denom":"ASSET1","index":"0.000013481664806896"},{"denom":"ASSET10","index":"0.000009392973001731"},{"denom":"ASSET11","index":"0.000013042136425966"},{"denom":"ASSET12","index":"0.000011745108533466"},{"denom":"ASSET13","index":"0.000004041984429535"},{"denom":"ASSET14","index":"0.000012183439289380"},{"denom":"ASSET15","index":"0.000008710326742521"},{"denom":"ASSET16","index":"0.000006073156456940"},{"denom":"ASSET17","index":"0.000004312647683187"},{"denom":"ASSET18","index":"0.000002053926902712"},{"denom":"ASSET2","index":"0.000003979707928695"},{"denom":"ASSET3","index":"0.000001164091515706"},{"denom":"ASSET4","index":"0.000010955873647818"},{"denom":"ASSET5","index":"0.000000903009262183"},{"denom":"ASSET6","index":"0.000003677906424623"},{"denom":"ASSET7","index":"0.000005632430450993"},{"denom":"ASSET8","index":"0.000007349824724165"},{"denom":"ASSET9","index":"0.000003173706292820"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003010548827117"},{"denom":"ASSET1","index":"0.000025517681435823"},{"denom":"ASSET10","index":"0.000020207909525991"},{"denom":"ASSET11","index":"0.000025316824190850"},{"denom":"ASSET12","index":"0.000024059273468565"},{"denom":"ASSET13","index":"0.000007945703994160"},{"denom":"ASSET14","index":"0.000023261456497592"},{"denom":"ASSET15","index":"0.000018230653165683"},{"denom":"ASSET16","index":"0.000011330852554208"},{"denom":"ASSET17","index":"0.000008840468160143"},{"denom":"ASSET18","index":"0.000003685449036638"},{"denom":"ASSET2","index":"0.000007715875534239"},{"denom":"ASSET3","index":"0.000002150116713749"},{"denom":"ASSET4","index":"0.000020690763011385"},{"denom":"ASSET5","index":"0.000001674170167376"},{"denom":"ASSET6","index":"0.000006761947340508"},{"denom":"ASSET7","index":"0.000010605047135869"},{"denom":"ASSET8","index":"0.000014444866674878"},{"denom":"ASSET9","index":"0.000006137206230949"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001598496813351"},{"denom":"ASSET1","index":"0.000013327209301876"},{"denom":"ASSET10","index":"0.000009285082513510"},{"denom":"ASSET11","index":"0.000012892549064690"},{"denom":"ASSET12","index":"0.000011609910099638"},{"denom":"ASSET13","index":"0.000003995530641827"},{"denom":"ASSET14","index":"0.000012043503249499"},{"denom":"ASSET15","index":"0.000008611039019674"},{"denom":"ASSET16","index":"0.000006003788988106"},{"denom":"ASSET17","index":"0.000004263725256261"},{"denom":"ASSET18","index":"0.000002031022875886"},{"denom":"ASSET2","index":"0.000003933995272733"},{"denom":"ASSET3","index":"0.000001150675832486"},{"denom":"ASSET4","index":"0.000010830580656369"},{"denom":"ASSET5","index":"0.000000893152091305"},{"denom":"ASSET6","index":"0.000003635566517414"},{"denom":"ASSET7","index":"0.000005567705967820"},{"denom":"ASSET8","index":"0.000007265086206652"},{"denom":"ASSET9","index":"0.000003137948128033"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003202417698287"},{"denom":"ASSET1","index":"0.000027176874960756"},{"denom":"ASSET10","index":"0.000021729724210241"},{"denom":"ASSET11","index":"0.000027016578438308"},{"denom":"ASSET12","index":"0.000025779554956391"},{"denom":"ASSET13","index":"0.000008487649506725"},{"denom":"ASSET14","index":"0.000024790682929963"},{"denom":"ASSET15","index":"0.000019565798539307"},{"denom":"ASSET16","index":"0.000012053877846841"},{"denom":"ASSET17","index":"0.000009473617164606"},{"denom":"ASSET18","index":"0.000003908301251667"},{"denom":"ASSET2","index":"0.000008233254558201"},{"denom":"ASSET3","index":"0.000002285025567503"},{"denom":"ASSET4","index":"0.000022032200437673"},{"denom":"ASSET5","index":"0.000001780306156687"},{"denom":"ASSET6","index":"0.000007184182778940"},{"denom":"ASSET7","index":"0.000011289430429576"},{"denom":"ASSET8","index":"0.000015429251463912"},{"denom":"ASSET9","index":"0.000006548040900334"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001349258766758"},{"denom":"ASSET1","index":"0.000011264433664868"},{"denom":"ASSET10","index":"0.000007848225297969"},{"denom":"ASSET11","index":"0.000010895650990484"},{"denom":"ASSET12","index":"0.000009811385762205"},{"denom":"ASSET13","index":"0.000003376459336127"},{"denom":"ASSET14","index":"0.000010177960157102"},{"denom":"ASSET15","index":"0.000007278489190238"},{"denom":"ASSET16","index":"0.000005074626261883"},{"denom":"ASSET17","index":"0.000003603912123322"},{"denom":"ASSET18","index":"0.000001715833161655"},{"denom":"ASSET2","index":"0.000003323460628431"},{"denom":"ASSET3","index":"0.000000971642974425"},{"denom":"ASSET4","index":"0.000009153318474981"},{"denom":"ASSET5","index":"0.000000753023305179"},{"denom":"ASSET6","index":"0.000003071716766875"},{"denom":"ASSET7","index":"0.000004705843587499"},{"denom":"ASSET8","index":"0.000006139016974776"},{"denom":"ASSET9","index":"0.000002652143664283"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000002874619638549"},{"denom":"ASSET1","index":"0.000024442633186143"},{"denom":"ASSET10","index":"0.000019689737510784"},{"denom":"ASSET11","index":"0.000024334399718263"},{"denom":"ASSET12","index":"0.000023294058494145"},{"denom":"ASSET13","index":"0.000007650065286478"},{"denom":"ASSET14","index":"0.000022306974942610"},{"denom":"ASSET15","index":"0.000017702453996022"},{"denom":"ASSET16","index":"0.000010830667352685"},{"denom":"ASSET17","index":"0.000008561334956642"},{"denom":"ASSET18","index":"0.000003501743239949"},{"denom":"ASSET2","index":"0.000007413384379561"},{"denom":"ASSET3","index":"0.000002050775894848"},{"denom":"ASSET4","index":"0.000019811877393900"},{"denom":"ASSET5","index":"0.000001596563839644"},{"denom":"ASSET6","index":"0.000006447875450380"},{"denom":"ASSET7","index":"0.000010149425285061"},{"denom":"ASSET8","index":"0.000013906577801610"},{"denom":"ASSET9","index":"0.000005896530335304"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001744355646452"},{"denom":"ASSET1","index":"0.000014544558741461"},{"denom":"ASSET10","index":"0.000010133244841823"},{"denom":"ASSET11","index":"0.000014070651242217"},{"denom":"ASSET12","index":"0.000012670295178174"},{"denom":"ASSET13","index":"0.000004360461787457"},{"denom":"ASSET14","index":"0.000013143775348745"},{"denom":"ASSET15","index":"0.000009397812194213"},{"denom":"ASSET16","index":"0.000006552230555377"},{"denom":"ASSET17","index":"0.000004653181929010"},{"denom":"ASSET18","index":"0.000002216553831001"},{"denom":"ASSET2","index":"0.000004293371185670"},{"denom":"ASSET3","index":"0.000001255918972299"},{"denom":"ASSET4","index":"0.000011819911117312"},{"denom":"ASSET5","index":"0.000000974736704938"},{"denom":"ASSET6","index":"0.000003967319407560"},{"denom":"ASSET7","index":"0.000006076186412764"},{"denom":"ASSET8","index":"0.000007929083542361"},{"denom":"ASSET9","index":"0.000003424611991834"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003377008276018"},{"denom":"ASSET1","index":"0.000028642142456639"},{"denom":"ASSET10","index":"0.000022800592191853"},{"denom":"ASSET11","index":"0.000028447577997463"},{"denom":"ASSET12","index":"0.000027093635853923"},{"denom":"ASSET13","index":"0.000008933092474106"},{"denom":"ASSET14","index":"0.000026119259559896"},{"denom":"ASSET15","index":"0.000020548756595198"},{"denom":"ASSET16","index":"0.000012710670192565"},{"denom":"ASSET17","index":"0.000009956402105067"},{"denom":"ASSET18","index":"0.000004127475104327"},{"denom":"ASSET2","index":"0.000008669602227225"},{"denom":"ASSET3","index":"0.000002410895003349"},{"denom":"ASSET4","index":"0.000023222264254358"},{"denom":"ASSET5","index":"0.000001877874241403"},{"denom":"ASSET6","index":"0.000007579654674160"},{"denom":"ASSET7","index":"0.000011900488798179"},{"denom":"ASSET8","index":"0.000016239324105118"},{"denom":"ASSET9","index":"0.000006895771583569"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001546168277317"},{"denom":"ASSET1","index":"0.000012892123182452"},{"denom":"ASSET10","index":"0.000008982377260299"},{"denom":"ASSET11","index":"0.000012472337191477"},{"denom":"ASSET12","index":"0.000011231230783378"},{"denom":"ASSET13","index":"0.000003864117010091"},{"denom":"ASSET14","index":"0.000011651016774353"},{"denom":"ASSET15","index":"0.000008329231976204"},{"denom":"ASSET16","index":"0.000005807908663952"},{"denom":"ASSET17","index":"0.000004124853650448"},{"denom":"ASSET18","index":"0.000001964650585090"},{"denom":"ASSET2","index":"0.000003805451266010"},{"denom":"ASSET3","index":"0.000001113345454324"},{"denom":"ASSET4","index":"0.000010477701892746"},{"denom":"ASSET5","index":"0.000000863038279582"},{"denom":"ASSET6","index":"0.000003516033595214"},{"denom":"ASSET7","index":"0.000005385515306574"},{"denom":"ASSET8","index":"0.000007028156140823"},{"denom":"ASSET9","index":"0.000003034974493755"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003044385892570"},{"denom":"ASSET1","index":"0.000025830014188245"},{"denom":"ASSET10","index":"0.000020607856539150"},{"denom":"ASSET11","index":"0.000025666657138152"},{"denom":"ASSET12","index":"0.000024468008636658"},{"denom":"ASSET13","index":"0.000008060303383676"},{"denom":"ASSET14","index":"0.000023559408638801"},{"denom":"ASSET15","index":"0.000018562848593971"},{"denom":"ASSET16","index":"0.000011459854746185"},{"denom":"ASSET17","index":"0.000008991538648143"},{"denom":"ASSET18","index":"0.000003718456390600"},{"denom":"ASSET2","index":"0.000007821717005664"},{"denom":"ASSET3","index":"0.000002173111618200"},{"denom":"ASSET4","index":"0.000020942104557307"},{"denom":"ASSET5","index":"0.000001691598021351"},{"denom":"ASSET6","index":"0.000006831113312915"},{"denom":"ASSET7","index":"0.000010730587410374"},{"denom":"ASSET8","index":"0.000014654605067850"},{"denom":"ASSET9","index":"0.000006220578615076"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001387821916020"},{"denom":"ASSET1","index":"0.000011588015182905"},{"denom":"ASSET10","index":"0.000008073788013584"},{"denom":"ASSET11","index":"0.000011209789038410"},{"denom":"ASSET12","index":"0.000010095957715252"},{"denom":"ASSET13","index":"0.000003472532948668"},{"denom":"ASSET14","index":"0.000010471205701129"},{"denom":"ASSET15","index":"0.000007487090765824"},{"denom":"ASSET16","index":"0.000005220712057474"},{"denom":"ASSET17","index":"0.000003707807479495"},{"denom":"ASSET18","index":"0.000001766048060515"},{"denom":"ASSET2","index":"0.000003418926093543"},{"denom":"ASSET3","index":"0.000001000661295671"},{"denom":"ASSET4","index":"0.000009416937550333"},{"denom":"ASSET5","index":"0.000000774321240698"},{"denom":"ASSET6","index":"0.000003159826293771"},{"denom":"ASSET7","index":"0.000004839507754361"},{"denom":"ASSET8","index":"0.000006316674428923"},{"denom":"ASSET9","index":"0.000002727993294151"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000002956721491824"},{"denom":"ASSET1","index":"0.000025136116728129"},{"denom":"ASSET10","index":"0.000020247681325291"},{"denom":"ASSET11","index":"0.000025026479369709"},{"denom":"ASSET12","index":"0.000023957412844230"},{"denom":"ASSET13","index":"0.000007866588644670"},{"denom":"ASSET14","index":"0.000022940688787988"},{"denom":"ASSET15","index":"0.000018203641219753"},{"denom":"ASSET16","index":"0.000011138902531601"},{"denom":"ASSET17","index":"0.000008803888891481"},{"denom":"ASSET18","index":"0.000003602115317706"},{"denom":"ASSET2","index":"0.000007623974866010"},{"denom":"ASSET3","index":"0.000002110544057177"},{"denom":"ASSET4","index":"0.000020374365248917"},{"denom":"ASSET5","index":"0.000001641905652861"},{"denom":"ASSET6","index":"0.000006630874494768"},{"denom":"ASSET7","index":"0.000010436528568948"},{"denom":"ASSET8","index":"0.000014302572224422"},{"denom":"ASSET9","index":"0.000006063325997423"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001500850379058"},{"denom":"ASSET1","index":"0.000012511793460183"},{"denom":"ASSET10","index":"0.000008717304800227"},{"denom":"ASSET11","index":"0.000012103632089176"},{"denom":"ASSET12","index":"0.000010899320696303"},{"denom":"ASSET13","index":"0.000003750781099635"},{"denom":"ASSET14","index":"0.000011306809643305"},{"denom":"ASSET15","index":"0.000008083881387560"},{"denom":"ASSET16","index":"0.000005636258009526"},{"denom":"ASSET17","index":"0.000004002940101492"},{"denom":"ASSET18","index":"0.000001906322054045"},{"denom":"ASSET2","index":"0.000003692952635209"},{"denom":"ASSET3","index":"0.000001079912951956"},{"denom":"ASSET4","index":"0.000010167723378913"},{"denom":"ASSET5","index":"0.000000838512734178"},{"denom":"ASSET6","index":"0.000003412551825143"},{"denom":"ASSET7","index":"0.000005226751790509"},{"denom":"ASSET8","index":"0.000006820396682251"},{"denom":"ASSET9","index":"0.000002945889565704"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003004514310835"},{"denom":"ASSET1","index":"0.000025497942224476"},{"denom":"ASSET10","index":"0.000020385999177782"},{"denom":"ASSET11","index":"0.000025346802479017"},{"denom":"ASSET12","index":"0.000024185328023735"},{"denom":"ASSET13","index":"0.000007962788555043"},{"denom":"ASSET14","index":"0.000023259189454501"},{"denom":"ASSET15","index":"0.000018355567065709"},{"denom":"ASSET16","index":"0.000011309092459120"},{"denom":"ASSET17","index":"0.000008887662321727"},{"denom":"ASSET18","index":"0.000003666570499762"},{"denom":"ASSET2","index":"0.000007723995884874"},{"denom":"ASSET3","index":"0.000002143405494402"},{"denom":"ASSET4","index":"0.000020670641097733"},{"denom":"ASSET5","index":"0.000001670336124344"},{"denom":"ASSET6","index":"0.000006739845385808"},{"denom":"ASSET7","index":"0.000010591422556410"},{"denom":"ASSET8","index":"0.000014475095162856"},{"denom":"ASSET9","index":"0.000006143360978771"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001507842106347"},{"denom":"ASSET1","index":"0.000012572313391156"},{"denom":"ASSET10","index":"0.000008759356679472"},{"denom":"ASSET11","index":"0.000012162445176153"},{"denom":"ASSET12","index":"0.000010952151629736"},{"denom":"ASSET13","index":"0.000003769211161813"},{"denom":"ASSET14","index":"0.000011361231636633"},{"denom":"ASSET15","index":"0.000008123272738112"},{"denom":"ASSET16","index":"0.000005663669344042"},{"denom":"ASSET17","index":"0.000004022225963767"},{"denom":"ASSET18","index":"0.000001916133905138"},{"denom":"ASSET2","index":"0.000003711277866039"},{"denom":"ASSET3","index":"0.000001085756665704"},{"denom":"ASSET4","index":"0.000010217147571101"},{"denom":"ASSET5","index":"0.000000842594465073"},{"denom":"ASSET6","index":"0.000003429493468225"},{"denom":"ASSET7","index":"0.000005252224712828"},{"denom":"ASSET8","index":"0.000006853863583762"},{"denom":"ASSET9","index":"0.000002960115541236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003064659144392"},{"denom":"ASSET1","index":"0.000026014545525120"},{"denom":"ASSET10","index":"0.000020837902255895"},{"denom":"ASSET11","index":"0.000025870951889592"},{"denom":"ASSET12","index":"0.000024704995690840"},{"denom":"ASSET13","index":"0.000008129050348807"},{"denom":"ASSET14","index":"0.000023733606076391"},{"denom":"ASSET15","index":"0.000018755969892396"},{"denom":"ASSET16","index":"0.000011535737727926"},{"denom":"ASSET17","index":"0.000009078938038909"},{"denom":"ASSET18","index":"0.000003738223548700"},{"denom":"ASSET2","index":"0.000007883998416280"},{"denom":"ASSET3","index":"0.000002186926046113"},{"denom":"ASSET4","index":"0.000021089316501471"},{"denom":"ASSET5","index":"0.000001703791082418"},{"denom":"ASSET6","index":"0.000006873778950624"},{"denom":"ASSET7","index":"0.000010805665377904"},{"denom":"ASSET8","index":"0.000014777724141198"},{"denom":"ASSET9","index":"0.000006269886019705"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001016570122529"},{"denom":"ASSET1","index":"0.000008477171470527"},{"denom":"ASSET10","index":"0.000005906463519680"},{"denom":"ASSET11","index":"0.000008200989896911"},{"denom":"ASSET12","index":"0.000007384774710599"},{"denom":"ASSET13","index":"0.000002541117067960"},{"denom":"ASSET14","index":"0.000007660956284215"},{"denom":"ASSET15","index":"0.000005477395717812"},{"denom":"ASSET16","index":"0.000003819073322661"},{"denom":"ASSET17","index":"0.000002711881121289"},{"denom":"ASSET18","index":"0.000001291518742692"},{"denom":"ASSET2","index":"0.000002502279034170"},{"denom":"ASSET3","index":"0.000000731757874738"},{"denom":"ASSET4","index":"0.000006889127422234"},{"denom":"ASSET5","index":"0.000000567775065403"},{"denom":"ASSET6","index":"0.000002312404202309"},{"denom":"ASSET7","index":"0.000003541658795591"},{"denom":"ASSET8","index":"0.000004621109544256"},{"denom":"ASSET9","index":"0.000001996151641449"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000002499545170163"},{"denom":"ASSET1","index":"0.000021282413071401"},{"denom":"ASSET10","index":"0.000017412808765385"},{"denom":"ASSET11","index":"0.000021259874812403"},{"denom":"ASSET12","index":"0.000020486111882687"},{"denom":"ASSET13","index":"0.000006694303381301"},{"denom":"ASSET14","index":"0.000019446986985139"},{"denom":"ASSET15","index":"0.000015606004703242"},{"denom":"ASSET16","index":"0.000009412782427040"},{"denom":"ASSET17","index":"0.000007528963649123"},{"denom":"ASSET18","index":"0.000003027066879988"},{"denom":"ASSET2","index":"0.000006477094521478"},{"denom":"ASSET3","index":"0.000001780578331809"},{"denom":"ASSET4","index":"0.000017246051064985"},{"denom":"ASSET5","index":"0.000001387924123500"},{"denom":"ASSET6","index":"0.000005593713918003"},{"denom":"ASSET7","index":"0.000008831780754063"},{"denom":"ASSET8","index":"0.000012169406160300"},{"denom":"ASSET9","index":"0.000005149034362400"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001552339226368"},{"denom":"ASSET1","index":"0.000012948480372324"},{"denom":"ASSET10","index":"0.000009021431734191"},{"denom":"ASSET11","index":"0.000012526515146109"},{"denom":"ASSET12","index":"0.000011279099696349"},{"denom":"ASSET13","index":"0.000003880848065920"},{"denom":"ASSET14","index":"0.000011701064922564"},{"denom":"ASSET15","index":"0.000008365383608761"},{"denom":"ASSET16","index":"0.000005830512213323"},{"denom":"ASSET17","index":"0.000004142651308462"},{"denom":"ASSET18","index":"0.000001971224414436"},{"denom":"ASSET2","index":"0.000003822327341117"},{"denom":"ASSET3","index":"0.000001118053847563"},{"denom":"ASSET4","index":"0.000010521410312050"},{"denom":"ASSET5","index":"0.000000865490719463"},{"denom":"ASSET6","index":"0.000003529723717099"},{"denom":"ASSET7","index":"0.000005408546987108"},{"denom":"ASSET8","index":"0.000007056367396050"},{"denom":"ASSET9","index":"0.000003046157727933"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003043964098015"},{"denom":"ASSET1","index":"0.000025828331615061"},{"denom":"ASSET10","index":"0.000020594675215425"},{"denom":"ASSET11","index":"0.000025661520704142"},{"denom":"ASSET12","index":"0.000024456429429906"},{"denom":"ASSET13","index":"0.000008058244190043"},{"denom":"ASSET14","index":"0.000023555461855486"},{"denom":"ASSET15","index":"0.000018552812657155"},{"denom":"ASSET16","index":"0.000011456604402492"},{"denom":"ASSET17","index":"0.000008987560143691"},{"denom":"ASSET18","index":"0.000003716794339222"},{"denom":"ASSET2","index":"0.000007820148034807"},{"denom":"ASSET3","index":"0.000002173135080244"},{"denom":"ASSET4","index":"0.000020938599170426"},{"denom":"ASSET5","index":"0.000001690207511083"},{"denom":"ASSET6","index":"0.000006829800145738"},{"denom":"ASSET7","index":"0.000010729300481432"},{"denom":"ASSET8","index":"0.000014648719853803"},{"denom":"ASSET9","index":"0.000006217447736766"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000000977108719668"},{"denom":"ASSET1","index":"0.000008146517162771"},{"denom":"ASSET10","index":"0.000005675852121603"},{"denom":"ASSET11","index":"0.000007881108738917"},{"denom":"ASSET12","index":"0.000007096716963958"},{"denom":"ASSET13","index":"0.000002441926549413"},{"denom":"ASSET14","index":"0.000007362125387813"},{"denom":"ASSET15","index":"0.000005263370239944"},{"denom":"ASSET16","index":"0.000003670074447059"},{"denom":"ASSET17","index":"0.000002605905002368"},{"denom":"ASSET18","index":"0.000001241671893765"},{"denom":"ASSET2","index":"0.000002404735560083"},{"denom":"ASSET3","index":"0.000000703247798239"},{"denom":"ASSET4","index":"0.000006620841350486"},{"denom":"ASSET5","index":"0.000000546031343344"},{"denom":"ASSET6","index":"0.000002222161612464"},{"denom":"ASSET7","index":"0.000003402975523689"},{"denom":"ASSET8","index":"0.000004440942225898"},{"denom":"ASSET9","index":"0.000001917871699764"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000002320380931676"},{"denom":"ASSET1","index":"0.000019748951316256"},{"denom":"ASSET10","index":"0.000016101172379351"},{"denom":"ASSET11","index":"0.000019714000020718"},{"denom":"ASSET12","index":"0.000018967805559844"},{"denom":"ASSET13","index":"0.000006204998608741"},{"denom":"ASSET14","index":"0.000018041457784230"},{"denom":"ASSET15","index":"0.000014440911570898"},{"denom":"ASSET16","index":"0.000008738221404310"},{"denom":"ASSET17","index":"0.000006970584758543"},{"denom":"ASSET18","index":"0.000002814127990287"},{"denom":"ASSET2","index":"0.000006006105656449"},{"denom":"ASSET3","index":"0.000001653724297068"},{"denom":"ASSET4","index":"0.000016005284799403"},{"denom":"ASSET5","index":"0.000001288969102308"},{"denom":"ASSET6","index":"0.000005195185892122"},{"denom":"ASSET7","index":"0.000008196101819524"},{"denom":"ASSET8","index":"0.000011280171312915"},{"denom":"ASSET9","index":"0.000004774394171461"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001745798220012"},{"denom":"ASSET1","index":"0.000014553743296829"},{"denom":"ASSET10","index":"0.000010139438249561"},{"denom":"ASSET11","index":"0.000014079320164724"},{"denom":"ASSET12","index":"0.000012678243118663"},{"denom":"ASSET13","index":"0.000004363016060013"},{"denom":"ASSET14","index":"0.000013152173087429"},{"denom":"ASSET15","index":"0.000009403145384454"},{"denom":"ASSET16","index":"0.000006556113428486"},{"denom":"ASSET17","index":"0.000004655955083371"},{"denom":"ASSET18","index":"0.000002217755535422"},{"denom":"ASSET2","index":"0.000004295945845911"},{"denom":"ASSET3","index":"0.000001256580187737"},{"denom":"ASSET4","index":"0.000011827536358912"},{"denom":"ASSET5","index":"0.000000975477084515"},{"denom":"ASSET6","index":"0.000003969964878841"},{"denom":"ASSET7","index":"0.000006080210806364"},{"denom":"ASSET8","index":"0.000007934011797614"},{"denom":"ASSET9","index":"0.000003426498879278"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003342998947188"},{"denom":"ASSET1","index":"0.000028345782457833"},{"denom":"ASSET10","index":"0.000022532322238539"},{"denom":"ASSET11","index":"0.000028144588841629"},{"denom":"ASSET12","index":"0.000026788988923046"},{"denom":"ASSET13","index":"0.000008836278349189"},{"denom":"ASSET14","index":"0.000025846526421467"},{"denom":"ASSET15","index":"0.000020312521464953"},{"denom":"ASSET16","index":"0.000012581099317360"},{"denom":"ASSET17","index":"0.000009844015126225"},{"denom":"ASSET18","index":"0.000004087085525414"},{"denom":"ASSET2","index":"0.000008577030596387"},{"denom":"ASSET3","index":"0.000002386540105172"},{"denom":"ASSET4","index":"0.000022982635628207"},{"denom":"ASSET5","index":"0.000001858980311097"},{"denom":"ASSET6","index":"0.000007503977785171"},{"denom":"ASSET7","index":"0.000011778054778213"},{"denom":"ASSET8","index":"0.000016064148587518"},{"denom":"ASSET9","index":"0.000006822246648031"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001535240763659"},{"denom":"ASSET1","index":"0.000012802535686671"},{"denom":"ASSET10","index":"0.000008918976928097"},{"denom":"ASSET11","index":"0.000012384847277788"},{"denom":"ASSET12","index":"0.000011152366284839"},{"denom":"ASSET13","index":"0.000003838101909148"},{"denom":"ASSET14","index":"0.000011569197017318"},{"denom":"ASSET15","index":"0.000008271431242866"},{"denom":"ASSET16","index":"0.000005767016142371"},{"denom":"ASSET17","index":"0.000004095404830432"},{"denom":"ASSET18","index":"0.000001951213819735"},{"denom":"ASSET2","index":"0.000003778922237253"},{"denom":"ASSET3","index":"0.000001105544885116"},{"denom":"ASSET4","index":"0.000010403614783903"},{"denom":"ASSET5","index":"0.000000857676404279"},{"denom":"ASSET6","index":"0.000003491600641819"},{"denom":"ASSET7","index":"0.000005348470057083"},{"denom":"ASSET8","index":"0.000006978912901618"},{"denom":"ASSET9","index":"0.000003013874884636"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003086246918243"},{"denom":"ASSET1","index":"0.000026194228204796"},{"denom":"ASSET10","index":"0.000020951998769875"},{"denom":"ASSET11","index":"0.000026042273492864"},{"denom":"ASSET12","index":"0.000024853724280460"},{"denom":"ASSET13","index":"0.000008181454895403"},{"denom":"ASSET14","index":"0.000023895275980533"},{"denom":"ASSET15","index":"0.000018864347888264"},{"denom":"ASSET16","index":"0.000011616907749245"},{"denom":"ASSET17","index":"0.000009133094250657"},{"denom":"ASSET18","index":"0.000003766346411006"},{"denom":"ASSET2","index":"0.000007935833032906"},{"denom":"ASSET3","index":"0.000002202232138461"},{"denom":"ASSET4","index":"0.000021234941701767"},{"denom":"ASSET5","index":"0.000001715417631736"},{"denom":"ASSET6","index":"0.000006923101305069"},{"denom":"ASSET7","index":"0.000010881195638563"},{"denom":"ASSET8","index":"0.000014873239564067"},{"denom":"ASSET9","index":"0.000006310901439146"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001694764141112"},{"denom":"ASSET1","index":"0.000014130580032100"},{"denom":"ASSET10","index":"0.000009844524497723"},{"denom":"ASSET11","index":"0.000013669508873851"},{"denom":"ASSET12","index":"0.000012309527666765"},{"denom":"ASSET13","index":"0.000004236016804025"},{"denom":"ASSET14","index":"0.000012769407426673"},{"denom":"ASSET15","index":"0.000009129685492685"},{"denom":"ASSET16","index":"0.000006365641339869"},{"denom":"ASSET17","index":"0.000004520761007698"},{"denom":"ASSET18","index":"0.000002153452502679"},{"denom":"ASSET2","index":"0.000004171085594400"},{"denom":"ASSET3","index":"0.000001219991901933"},{"denom":"ASSET4","index":"0.000011483292916774"},{"denom":"ASSET5","index":"0.000000947161681676"},{"denom":"ASSET6","index":"0.000003854173635500"},{"denom":"ASSET7","index":"0.000005903378783277"},{"denom":"ASSET8","index":"0.000007702985978462"},{"denom":"ASSET9","index":"0.000003326979869284"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003333609736915"},{"denom":"ASSET1","index":"0.000028281729059652"},{"denom":"ASSET10","index":"0.000022560289398652"},{"denom":"ASSET11","index":"0.000028101042421314"},{"denom":"ASSET12","index":"0.000026787599659919"},{"denom":"ASSET13","index":"0.000008826015241086"},{"denom":"ASSET14","index":"0.000025794402991537"},{"denom":"ASSET15","index":"0.000020323143219667"},{"denom":"ASSET16","index":"0.000012547562311789"},{"denom":"ASSET17","index":"0.000009844220733470"},{"denom":"ASSET18","index":"0.000004071528772633"},{"denom":"ASSET2","index":"0.000008563776406339"},{"denom":"ASSET3","index":"0.000002379222276435"},{"denom":"ASSET4","index":"0.000022929058250150"},{"denom":"ASSET5","index":"0.000001853699834530"},{"denom":"ASSET6","index":"0.000007480326246914"},{"denom":"ASSET7","index":"0.000011749530638760"},{"denom":"ASSET8","index":"0.000016044906214881"},{"denom":"ASSET9","index":"0.000006811209452101"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001763265776240"},{"denom":"ASSET1","index":"0.000014701143889842"},{"denom":"ASSET10","index":"0.000010242267715158"},{"denom":"ASSET11","index":"0.000014221824092125"},{"denom":"ASSET12","index":"0.000012807154532407"},{"denom":"ASSET13","index":"0.000004407037513175"},{"denom":"ASSET14","index":"0.000013285723045174"},{"denom":"ASSET15","index":"0.000009498495615253"},{"denom":"ASSET16","index":"0.000006622576828953"},{"denom":"ASSET17","index":"0.000004703043783239"},{"denom":"ASSET18","index":"0.000002240331719108"},{"denom":"ASSET2","index":"0.000004339421867729"},{"denom":"ASSET3","index":"0.000001269671564485"},{"denom":"ASSET4","index":"0.000011947684550294"},{"denom":"ASSET5","index":"0.000000984934568662"},{"denom":"ASSET6","index":"0.000004010359059893"},{"denom":"ASSET7","index":"0.000006141754461338"},{"denom":"ASSET8","index":"0.000008013956555240"},{"denom":"ASSET9","index":"0.000003461169761882"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003372790294110"},{"denom":"ASSET1","index":"0.000028600279733511"},{"denom":"ASSET10","index":"0.000022731421090197"},{"denom":"ASSET11","index":"0.000028396190348540"},{"denom":"ASSET12","index":"0.000027027392524280"},{"denom":"ASSET13","index":"0.000008915082315276"},{"denom":"ASSET14","index":"0.000026078776667620"},{"denom":"ASSET15","index":"0.000020492230414373"},{"denom":"ASSET16","index":"0.000012694274413467"},{"denom":"ASSET17","index":"0.000009931274832025"},{"denom":"ASSET18","index":"0.000004123939856338"},{"denom":"ASSET2","index":"0.000008653658587521"},{"denom":"ASSET3","index":"0.000002407864000528"},{"denom":"ASSET4","index":"0.000023189126720885"},{"denom":"ASSET5","index":"0.000001875419633234"},{"denom":"ASSET6","index":"0.000007571725921487"},{"denom":"ASSET7","index":"0.000011883748947250"},{"denom":"ASSET8","index":"0.000016207221904670"},{"denom":"ASSET9","index":"0.000006883201227023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001453309126336"},{"denom":"ASSET1","index":"0.000012116886392617"},{"denom":"ASSET10","index":"0.000008441923956558"},{"denom":"ASSET11","index":"0.000011721955689254"},{"denom":"ASSET12","index":"0.000010555542874101"},{"denom":"ASSET13","index":"0.000003632376264868"},{"denom":"ASSET14","index":"0.000010950025301978"},{"denom":"ASSET15","index":"0.000007829131366891"},{"denom":"ASSET16","index":"0.000005458650595742"},{"denom":"ASSET17","index":"0.000003876686404859"},{"denom":"ASSET18","index":"0.000001846446727754"},{"denom":"ASSET2","index":"0.000003576790104576"},{"denom":"ASSET3","index":"0.000001046274984845"},{"denom":"ASSET4","index":"0.000009847267605868"},{"denom":"ASSET5","index":"0.000000812275181037"},{"denom":"ASSET6","index":"0.000003305135159925"},{"denom":"ASSET7","index":"0.000005061926790434"},{"denom":"ASSET8","index":"0.000006605339289501"},{"denom":"ASSET9","index":"0.000002852825194325"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000002846126280344"},{"denom":"ASSET1","index":"0.000024142729904188"},{"denom":"ASSET10","index":"0.000019247649074564"},{"denom":"ASSET11","index":"0.000023985879136349"},{"denom":"ASSET12","index":"0.000022859091275790"},{"denom":"ASSET13","index":"0.000007532792628817"},{"denom":"ASSET14","index":"0.000022018595952129"},{"denom":"ASSET15","index":"0.000017341431925331"},{"denom":"ASSET16","index":"0.000010711928951149"},{"denom":"ASSET17","index":"0.000008400535387767"},{"denom":"ASSET18","index":"0.000003476353193421"},{"denom":"ASSET2","index":"0.000007309791035362"},{"denom":"ASSET3","index":"0.000002031285314481"},{"denom":"ASSET4","index":"0.000019573873127075"},{"denom":"ASSET5","index":"0.000001582650339951"},{"denom":"ASSET6","index":"0.000006386635795582"},{"denom":"ASSET7","index":"0.000010030235680714"},{"denom":"ASSET8","index":"0.000013694243666513"},{"denom":"ASSET9","index":"0.000005813799926422"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001542334439671"},{"denom":"ASSET1","index":"0.000012860022908304"},{"denom":"ASSET10","index":"0.000008959505058412"},{"denom":"ASSET11","index":"0.000012440701863130"},{"denom":"ASSET12","index":"0.000011202637482986"},{"denom":"ASSET13","index":"0.000003855293405849"},{"denom":"ASSET14","index":"0.000011621234937056"},{"denom":"ASSET15","index":"0.000008308996655285"},{"denom":"ASSET16","index":"0.000005793070384239"},{"denom":"ASSET17","index":"0.000004114339021332"},{"denom":"ASSET18","index":"0.000001959846507084"},{"denom":"ASSET2","index":"0.000003796320730815"},{"denom":"ASSET3","index":"0.000001110350550164"},{"denom":"ASSET4","index":"0.000010450826325201"},{"denom":"ASSET5","index":"0.000000861797005699"},{"denom":"ASSET6","index":"0.000003507969675592"},{"denom":"ASSET7","index":"0.000005372663952407"},{"denom":"ASSET8","index":"0.000007010512417899"},{"denom":"ASSET9","index":"0.000003027866977623"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003036454064443"},{"denom":"ASSET1","index":"0.000025762443856573"},{"denom":"ASSET10","index":"0.000020552854458451"},{"denom":"ASSET11","index":"0.000025598594042577"},{"denom":"ASSET12","index":"0.000024403233064712"},{"denom":"ASSET13","index":"0.000008040226829205"},{"denom":"ASSET14","index":"0.000023496526683137"},{"denom":"ASSET15","index":"0.000018514610345002"},{"denom":"ASSET16","index":"0.000011429420030088"},{"denom":"ASSET17","index":"0.000008967792958730"},{"denom":"ASSET18","index":"0.000003708688180539"},{"denom":"ASSET2","index":"0.000007801450355100"},{"denom":"ASSET3","index":"0.000002167197324698"},{"denom":"ASSET4","index":"0.000020886439041228"},{"denom":"ASSET5","index":"0.000001688395026424"},{"denom":"ASSET6","index":"0.000006814112030993"},{"denom":"ASSET7","index":"0.000010703097412338"},{"denom":"ASSET8","index":"0.000014616213118562"},{"denom":"ASSET9","index":"0.000006204650488693"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001802604811891"},{"denom":"ASSET1","index":"0.000015041134377282"},{"denom":"ASSET10","index":"0.000010478421042795"},{"denom":"ASSET11","index":"0.000014549893343095"},{"denom":"ASSET12","index":"0.000013101148598203"},{"denom":"ASSET13","index":"0.000004508593559534"},{"denom":"ASSET14","index":"0.000013592389632390"},{"denom":"ASSET15","index":"0.000009716581133843"},{"denom":"ASSET16","index":"0.000006773297988330"},{"denom":"ASSET17","index":"0.000004812496911192"},{"denom":"ASSET18","index":"0.000002289682786467"},{"denom":"ASSET2","index":"0.000004437821546134"},{"denom":"ASSET3","index":"0.000001298874598869"},{"denom":"ASSET4","index":"0.000012222743020122"},{"denom":"ASSET5","index":"0.000001007460426045"},{"denom":"ASSET6","index":"0.000004100613717582"},{"denom":"ASSET7","index":"0.000006282056954143"},{"denom":"ASSET8","index":"0.000008197064375552"},{"denom":"ASSET9","index":"0.000003538600669994"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003500919125422"},{"denom":"ASSET1","index":"0.000029708744113596"},{"denom":"ASSET10","index":"0.000023658219501850"},{"denom":"ASSET11","index":"0.000029508250092955"},{"denom":"ASSET12","index":"0.000028107871580940"},{"denom":"ASSET13","index":"0.000009266072102552"},{"denom":"ASSET14","index":"0.000027092614384257"},{"denom":"ASSET15","index":"0.000021318431245277"},{"denom":"ASSET16","index":"0.000013180724612002"},{"denom":"ASSET17","index":"0.000010330094773179"},{"denom":"ASSET18","index":"0.000004277644880979"},{"denom":"ASSET2","index":"0.000008990842831989"},{"denom":"ASSET3","index":"0.000002500335792843"},{"denom":"ASSET4","index":"0.000024086210482120"},{"denom":"ASSET5","index":"0.000001946754653173"},{"denom":"ASSET6","index":"0.000007858889858659"},{"denom":"ASSET7","index":"0.000012341576470869"},{"denom":"ASSET8","index":"0.000016843078118646"},{"denom":"ASSET9","index":"0.000007150129263591"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001563811170888"},{"denom":"ASSET1","index":"0.000013038374863878"},{"denom":"ASSET10","index":"0.000009083864212622"},{"denom":"ASSET11","index":"0.000012612362006834"},{"denom":"ASSET12","index":"0.000011358137819015"},{"denom":"ASSET13","index":"0.000003908204905926"},{"denom":"ASSET14","index":"0.000011781504633469"},{"denom":"ASSET15","index":"0.000008423676586333"},{"denom":"ASSET16","index":"0.000005872891529250"},{"denom":"ASSET17","index":"0.000004170163122369"},{"denom":"ASSET18","index":"0.000001987177985342"},{"denom":"ASSET2","index":"0.000003848668947643"},{"denom":"ASSET3","index":"0.000001125891122188"},{"denom":"ASSET4","index":"0.000010596077552999"},{"denom":"ASSET5","index":"0.000000873194054811"},{"denom":"ASSET6","index":"0.000003556281241411"},{"denom":"ASSET7","index":"0.000005446878672206"},{"denom":"ASSET8","index":"0.000007107270397641"},{"denom":"ASSET9","index":"0.000003069409404789"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003311345528520"},{"denom":"ASSET1","index":"0.000028134750769747"},{"denom":"ASSET10","index":"0.000022648872120201"},{"denom":"ASSET11","index":"0.000028007957662740"},{"denom":"ASSET12","index":"0.000026803793052874"},{"denom":"ASSET13","index":"0.000008804941803873"},{"denom":"ASSET14","index":"0.000025676450668466"},{"denom":"ASSET15","index":"0.000020365161363483"},{"denom":"ASSET16","index":"0.000012467103206876"},{"denom":"ASSET17","index":"0.000009848512066991"},{"denom":"ASSET18","index":"0.000004032794375330"},{"denom":"ASSET2","index":"0.000008534928074651"},{"denom":"ASSET3","index":"0.000002362590241163"},{"denom":"ASSET4","index":"0.000022806063702805"},{"denom":"ASSET5","index":"0.000001840254083448"},{"denom":"ASSET6","index":"0.000007424521355960"},{"denom":"ASSET7","index":"0.000011683846998076"},{"denom":"ASSET8","index":"0.000016006498096466"},{"denom":"ASSET9","index":"0.000006786333067798"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001600184479142"},{"denom":"ASSET1","index":"0.000013342157474081"},{"denom":"ASSET10","index":"0.000009295060662992"},{"denom":"ASSET11","index":"0.000012907134644369"},{"denom":"ASSET12","index":"0.000011622469236023"},{"denom":"ASSET13","index":"0.000003999732516397"},{"denom":"ASSET14","index":"0.000012056763384279"},{"denom":"ASSET15","index":"0.000008620301633991"},{"denom":"ASSET16","index":"0.000006010164655719"},{"denom":"ASSET17","index":"0.000004268615973958"},{"denom":"ASSET18","index":"0.000002033021264483"},{"denom":"ASSET2","index":"0.000003938523274026"},{"denom":"ASSET3","index":"0.000001152045383207"},{"denom":"ASSET4","index":"0.000010842780077243"},{"denom":"ASSET5","index":"0.000000894092147498"},{"denom":"ASSET6","index":"0.000003639035195279"},{"denom":"ASSET7","index":"0.000005573684463094"},{"denom":"ASSET8","index":"0.000007272969620361"},{"denom":"ASSET9","index":"0.000003141345760282"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003037978324998"},{"denom":"ASSET1","index":"0.000025756345113171"},{"denom":"ASSET10","index":"0.000020449699671521"},{"denom":"ASSET11","index":"0.000025567125107120"},{"denom":"ASSET12","index":"0.000024323299608917"},{"denom":"ASSET13","index":"0.000008026089638757"},{"denom":"ASSET14","index":"0.000023482777870484"},{"denom":"ASSET15","index":"0.000018439819094125"},{"denom":"ASSET16","index":"0.000011433094032389"},{"denom":"ASSET17","index":"0.000008938487942114"},{"denom":"ASSET18","index":"0.000003715472889790"},{"denom":"ASSET2","index":"0.000007791978720736"},{"denom":"ASSET3","index":"0.000002168844641333"},{"denom":"ASSET4","index":"0.000020883291069830"},{"denom":"ASSET5","index":"0.000001689134510364"},{"denom":"ASSET6","index":"0.000006819968009550"},{"denom":"ASSET7","index":"0.000010702337477897"},{"denom":"ASSET8","index":"0.000014590947163921"},{"denom":"ASSET9","index":"0.000006197850437110"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001732863553160"},{"denom":"ASSET1","index":"0.000014476512568697"},{"denom":"ASSET10","index":"0.000010084697727409"},{"denom":"ASSET11","index":"0.000014004946421444"},{"denom":"ASSET12","index":"0.000012607292539223"},{"denom":"ASSET13","index":"0.000004334999642824"},{"denom":"ASSET14","index":"0.000013078858686476"},{"denom":"ASSET15","index":"0.000009351781667220"},{"denom":"ASSET16","index":"0.000006516703263852"},{"denom":"ASSET17","index":"0.000004630438674838"},{"denom":"ASSET18","index":"0.000002204429700414"},{"denom":"ASSET2","index":"0.000004272502924514"},{"denom":"ASSET3","index":"0.000001249934366214"},{"denom":"ASSET4","index":"0.000011760746082105"},{"denom":"ASSET5","index":"0.000000965858373893"},{"denom":"ASSET6","index":"0.000003948656293267"},{"denom":"ASSET7","index":"0.000006045137116599"},{"denom":"ASSET8","index":"0.000007891631066688"},{"denom":"ASSET9","index":"0.000003403230388010"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003203314564743"},{"denom":"ASSET1","index":"0.000027174750089688"},{"denom":"ASSET10","index":"0.000021494761442080"},{"denom":"ASSET11","index":"0.000026954579685264"},{"denom":"ASSET12","index":"0.000025598519259277"},{"denom":"ASSET13","index":"0.000008453363478510"},{"denom":"ASSET14","index":"0.000024766008219885"},{"denom":"ASSET15","index":"0.000019395989679368"},{"denom":"ASSET16","index":"0.000012063312986412"},{"denom":"ASSET17","index":"0.000009406957788586"},{"denom":"ASSET18","index":"0.000003925664786352"},{"denom":"ASSET2","index":"0.000008214094571203"},{"denom":"ASSET3","index":"0.000002289770772075"},{"denom":"ASSET4","index":"0.000022031271429646"},{"denom":"ASSET5","index":"0.000001779377444361"},{"denom":"ASSET6","index":"0.000007202120906665"},{"denom":"ASSET7","index":"0.000011290805949933"},{"denom":"ASSET8","index":"0.000015376618183469"},{"denom":"ASSET9","index":"0.000006529467958809"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001687731873143"},{"denom":"ASSET1","index":"0.000014069560961171"},{"denom":"ASSET10","index":"0.000009802495056563"},{"denom":"ASSET11","index":"0.000013610740912442"},{"denom":"ASSET12","index":"0.000012256373563096"},{"denom":"ASSET13","index":"0.000004217751625940"},{"denom":"ASSET14","index":"0.000012714404583367"},{"denom":"ASSET15","index":"0.000009090791386823"},{"denom":"ASSET16","index":"0.000006338265608675"},{"denom":"ASSET17","index":"0.000004501407356839"},{"denom":"ASSET18","index":"0.000002144184836496"},{"denom":"ASSET2","index":"0.000004153051292327"},{"denom":"ASSET3","index":"0.000001214709312157"},{"denom":"ASSET4","index":"0.000011433811394910"},{"denom":"ASSET5","index":"0.000000942889008137"},{"denom":"ASSET6","index":"0.000003837834423079"},{"denom":"ASSET7","index":"0.000005877867503028"},{"denom":"ASSET8","index":"0.000007669751132718"},{"denom":"ASSET9","index":"0.000003312735983819"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003310751488522"},{"denom":"ASSET1","index":"0.000028084250149300"},{"denom":"ASSET10","index":"0.000022395324527460"},{"denom":"ASSET11","index":"0.000027902986790638"},{"denom":"ASSET12","index":"0.000026594787286768"},{"denom":"ASSET13","index":"0.000008763085936534"},{"denom":"ASSET14","index":"0.000025613920456358"},{"denom":"ASSET15","index":"0.000020176020856033"},{"denom":"ASSET16","index":"0.000012460451689171"},{"denom":"ASSET17","index":"0.000009773335616478"},{"denom":"ASSET18","index":"0.000004043661907525"},{"denom":"ASSET2","index":"0.000008503271494062"},{"denom":"ASSET3","index":"0.000002362859659779"},{"denom":"ASSET4","index":"0.000022769116693783"},{"denom":"ASSET5","index":"0.000001840413908887"},{"denom":"ASSET6","index":"0.000007429033260494"},{"denom":"ASSET7","index":"0.000011667535172652"},{"denom":"ASSET8","index":"0.000015931047386954"},{"denom":"ASSET9","index":"0.000006763232815972"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001411639939639"},{"denom":"ASSET1","index":"0.000011770559134781"},{"denom":"ASSET10","index":"0.000008200405560598"},{"denom":"ASSET11","index":"0.000011386782830640"},{"denom":"ASSET12","index":"0.000010253700018254"},{"denom":"ASSET13","index":"0.000003528795747429"},{"denom":"ASSET14","index":"0.000010636868119061"},{"denom":"ASSET15","index":"0.000007604974496011"},{"denom":"ASSET16","index":"0.000005302316671163"},{"denom":"ASSET17","index":"0.000003765386844594"},{"denom":"ASSET18","index":"0.000001793591633776"},{"denom":"ASSET2","index":"0.000003474665650649"},{"denom":"ASSET3","index":"0.000001016307772140"},{"denom":"ASSET4","index":"0.000009565822046806"},{"denom":"ASSET5","index":"0.000000788839724994"},{"denom":"ASSET6","index":"0.000003210705403426"},{"denom":"ASSET7","index":"0.000004917323960353"},{"denom":"ASSET8","index":"0.000006416545180176"},{"denom":"ASSET9","index":"0.000002771582595835"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000002915106026686"},{"denom":"ASSET1","index":"0.000024751938975568"},{"denom":"ASSET10","index":"0.000019864528416862"},{"denom":"ASSET11","index":"0.000024625253839727"},{"denom":"ASSET12","index":"0.000023534700266806"},{"denom":"ASSET13","index":"0.000007739190454504"},{"denom":"ASSET14","index":"0.000022584902384729"},{"denom":"ASSET15","index":"0.000017872912229645"},{"denom":"ASSET16","index":"0.000010972881933217"},{"denom":"ASSET17","index":"0.000008648586457086"},{"denom":"ASSET18","index":"0.000003552999450219"},{"denom":"ASSET2","index":"0.000007504215303421"},{"denom":"ASSET3","index":"0.000002079538758775"},{"denom":"ASSET4","index":"0.000020065180146540"},{"denom":"ASSET5","index":"0.000001620267199228"},{"denom":"ASSET6","index":"0.000006536798446662"},{"denom":"ASSET7","index":"0.000010280222742310"},{"denom":"ASSET8","index":"0.000014068743113537"},{"denom":"ASSET9","index":"0.000005967789042866"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001670929391506"},{"denom":"ASSET1","index":"0.000013946161101263"},{"denom":"ASSET10","index":"0.000009716355120388"},{"denom":"ASSET11","index":"0.000013489421488305"},{"denom":"ASSET12","index":"0.000012147571569489"},{"denom":"ASSET13","index":"0.000004178741924768"},{"denom":"ASSET14","index":"0.000012601474290441"},{"denom":"ASSET15","index":"0.000009009969010905"},{"denom":"ASSET16","index":"0.000006280878901179"},{"denom":"ASSET17","index":"0.000004459594233357"},{"denom":"ASSET18","index":"0.000002124832112458"},{"denom":"ASSET2","index":"0.000004116330300637"},{"denom":"ASSET3","index":"0.000001202842210524"},{"denom":"ASSET4","index":"0.000011333383563781"},{"denom":"ASSET5","index":"0.000000933337469958"},{"denom":"ASSET6","index":"0.000003804272179982"},{"denom":"ASSET7","index":"0.000005824139288221"},{"denom":"ASSET8","index":"0.000007600033683947"},{"denom":"ASSET9","index":"0.000003282284050887"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003306866574231"},{"denom":"ASSET1","index":"0.000028073670524533"},{"denom":"ASSET10","index":"0.000022410378668975"},{"denom":"ASSET11","index":"0.000027896117796052"},{"denom":"ASSET12","index":"0.000026601615360568"},{"denom":"ASSET13","index":"0.000008760019105133"},{"denom":"ASSET14","index":"0.000025604072816608"},{"denom":"ASSET15","index":"0.000020183975077340"},{"denom":"ASSET16","index":"0.000012452378452775"},{"denom":"ASSET17","index":"0.000009773941069454"},{"denom":"ASSET18","index":"0.000004038323507821"},{"denom":"ASSET2","index":"0.000008501686860316"},{"denom":"ASSET3","index":"0.000002358773872569"},{"denom":"ASSET4","index":"0.000022758821093429"},{"denom":"ASSET5","index":"0.000001837837668790"},{"denom":"ASSET6","index":"0.000007423905647148"},{"denom":"ASSET7","index":"0.000011659308440973"},{"denom":"ASSET8","index":"0.000015926660063085"},{"denom":"ASSET9","index":"0.000006759875068056"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001598361255475"},{"denom":"ASSET1","index":"0.000013324868720531"},{"denom":"ASSET10","index":"0.000009283863630055"},{"denom":"ASSET11","index":"0.000012890721875256"},{"denom":"ASSET12","index":"0.000011607749807828"},{"denom":"ASSET13","index":"0.000003994929715268"},{"denom":"ASSET14","index":"0.000012041896653103"},{"denom":"ASSET15","index":"0.000008609605674538"},{"denom":"ASSET16","index":"0.000006002777756047"},{"denom":"ASSET17","index":"0.000004262945630213"},{"denom":"ASSET18","index":"0.000002030561253910"},{"denom":"ASSET2","index":"0.000003933279565341"},{"denom":"ASSET3","index":"0.000001150586482321"},{"denom":"ASSET4","index":"0.000010829011071909"},{"denom":"ASSET5","index":"0.000000892953750521"},{"denom":"ASSET6","index":"0.000003634763049905"},{"denom":"ASSET7","index":"0.000005566684063932"},{"denom":"ASSET8","index":"0.000007263685559290"},{"denom":"ASSET9","index":"0.000003137668156809"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003119961272076"},{"denom":"ASSET1","index":"0.000026462428012801"},{"denom":"ASSET10","index":"0.000021088828135750"},{"denom":"ASSET11","index":"0.000026288818556387"},{"denom":"ASSET12","index":"0.000025049012446876"},{"denom":"ASSET13","index":"0.000008256026418292"},{"denom":"ASSET14","index":"0.000024133914778951"},{"denom":"ASSET15","index":"0.000019001193386697"},{"denom":"ASSET16","index":"0.000011741691861213"},{"denom":"ASSET17","index":"0.000009205139483526"},{"denom":"ASSET18","index":"0.000003811157018018"},{"denom":"ASSET2","index":"0.000008011229275486"},{"denom":"ASSET3","index":"0.000002226652147557"},{"denom":"ASSET4","index":"0.000021454928269907"},{"denom":"ASSET5","index":"0.000001734689929917"},{"denom":"ASSET6","index":"0.000007001091110949"},{"denom":"ASSET7","index":"0.000010994186615549"},{"denom":"ASSET8","index":"0.000015007966738007"},{"denom":"ASSET9","index":"0.000006372340046203"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001543375593884"},{"denom":"ASSET1","index":"0.000012871309378663"},{"denom":"ASSET10","index":"0.000008967332198598"},{"denom":"ASSET11","index":"0.000012451619524186"},{"denom":"ASSET12","index":"0.000011213472915376"},{"denom":"ASSET13","index":"0.000003858438984711"},{"denom":"ASSET14","index":"0.000011631932007817"},{"denom":"ASSET15","index":"0.000008316259081242"},{"denom":"ASSET16","index":"0.000005798119954378"},{"denom":"ASSET17","index":"0.000004118129774432"},{"denom":"ASSET18","index":"0.000001961834686325"},{"denom":"ASSET2","index":"0.000003799362406955"},{"denom":"ASSET3","index":"0.000001111378119041"},{"denom":"ASSET4","index":"0.000010460246548983"},{"denom":"ASSET5","index":"0.000000862764187650"},{"denom":"ASSET6","index":"0.000003511364090393"},{"denom":"ASSET7","index":"0.000005377199337864"},{"denom":"ASSET8","index":"0.000007016574370602"},{"denom":"ASSET9","index":"0.000003030136134086"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003061984062566"},{"denom":"ASSET1","index":"0.000025984754387841"},{"denom":"ASSET10","index":"0.000020750278468036"},{"denom":"ASSET11","index":"0.000025825260107338"},{"denom":"ASSET12","index":"0.000024630365005548"},{"denom":"ASSET13","index":"0.000008111503841622"},{"denom":"ASSET14","index":"0.000023701848593669"},{"denom":"ASSET15","index":"0.000018689068915475"},{"denom":"ASSET16","index":"0.000011526541772952"},{"denom":"ASSET17","index":"0.000009050861170220"},{"denom":"ASSET18","index":"0.000003739265665267"},{"denom":"ASSET2","index":"0.000007869809789784"},{"denom":"ASSET3","index":"0.000002185113944095"},{"denom":"ASSET4","index":"0.000021066477214749"},{"denom":"ASSET5","index":"0.000001702392649313"},{"denom":"ASSET6","index":"0.000006871251000760"},{"denom":"ASSET7","index":"0.000010794622225013"},{"denom":"ASSET8","index":"0.000014746923085504"},{"denom":"ASSET9","index":"0.000006258895459680"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001745217677213"},{"denom":"ASSET1","index":"0.000014553842410819"},{"denom":"ASSET10","index":"0.000010139729507131"},{"denom":"ASSET11","index":"0.000014078681363843"},{"denom":"ASSET12","index":"0.000012678362515121"},{"denom":"ASSET13","index":"0.000004362304066790"},{"denom":"ASSET14","index":"0.000013152043309614"},{"denom":"ASSET15","index":"0.000009402563770700"},{"denom":"ASSET16","index":"0.000006556038246289"},{"denom":"ASSET17","index":"0.000004655394058383"},{"denom":"ASSET18","index":"0.000002217418219224"},{"denom":"ASSET2","index":"0.000004295692705065"},{"denom":"ASSET3","index":"0.000001256734357891"},{"denom":"ASSET4","index":"0.000011827217337515"},{"denom":"ASSET5","index":"0.000000975486386160"},{"denom":"ASSET6","index":"0.000003970037158850"},{"denom":"ASSET7","index":"0.000006079396946830"},{"denom":"ASSET8","index":"0.000007932673055287"},{"denom":"ASSET9","index":"0.000003426784497665"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003296605577903"},{"denom":"ASSET1","index":"0.000027950980635352"},{"denom":"ASSET10","index":"0.000022177590033485"},{"denom":"ASSET11","index":"0.000027741245317152"},{"denom":"ASSET12","index":"0.000026384837371861"},{"denom":"ASSET13","index":"0.000008707523198290"},{"denom":"ASSET14","index":"0.000025482773879389"},{"denom":"ASSET15","index":"0.000019999205716580"},{"denom":"ASSET16","index":"0.000012408342313410"},{"denom":"ASSET17","index":"0.000009694954350389"},{"denom":"ASSET18","index":"0.000004033447725414"},{"denom":"ASSET2","index":"0.000008454290496983"},{"denom":"ASSET3","index":"0.000002354114882033"},{"denom":"ASSET4","index":"0.000022662624820802"},{"denom":"ASSET5","index":"0.000001833709311257"},{"denom":"ASSET6","index":"0.000007402928859239"},{"denom":"ASSET7","index":"0.000011614131087351"},{"denom":"ASSET8","index":"0.000015829970625061"},{"denom":"ASSET9","index":"0.000006725199056296"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001696105704481"},{"denom":"ASSET1","index":"0.000014140754037071"},{"denom":"ASSET10","index":"0.000009851931515387"},{"denom":"ASSET11","index":"0.000013679695806241"},{"denom":"ASSET12","index":"0.000012318593050331"},{"denom":"ASSET13","index":"0.000004239283286244"},{"denom":"ASSET14","index":"0.000012779160793682"},{"denom":"ASSET15","index":"0.000009136800770120"},{"denom":"ASSET16","index":"0.000006369960897657"},{"denom":"ASSET17","index":"0.000004523766024416"},{"denom":"ASSET18","index":"0.000002155201985393"},{"denom":"ASSET2","index":"0.000004174048451456"},{"denom":"ASSET3","index":"0.000001220823336742"},{"denom":"ASSET4","index":"0.000011492121647193"},{"denom":"ASSET5","index":"0.000000947621810601"},{"denom":"ASSET6","index":"0.000003857193539630"},{"denom":"ASSET7","index":"0.000005907431204387"},{"denom":"ASSET8","index":"0.000007708991716984"},{"denom":"ASSET9","index":"0.000003329429011573"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003278023650839"},{"denom":"ASSET1","index":"0.000027801084973989"},{"denom":"ASSET10","index":"0.000022126343818190"},{"denom":"ASSET11","index":"0.000027610641458424"},{"denom":"ASSET12","index":"0.000026294522151225"},{"denom":"ASSET13","index":"0.000008669795972838"},{"denom":"ASSET14","index":"0.000025352034708572"},{"denom":"ASSET15","index":"0.000019941753748345"},{"denom":"ASSET16","index":"0.000012337408081897"},{"denom":"ASSET17","index":"0.000009662232510971"},{"denom":"ASSET18","index":"0.000004006663612522"},{"denom":"ASSET2","index":"0.000008414274009770"},{"denom":"ASSET3","index":"0.000002339697370568"},{"denom":"ASSET4","index":"0.000022540556466857"},{"denom":"ASSET5","index":"0.000001822656991491"},{"denom":"ASSET6","index":"0.000007357334263189"},{"denom":"ASSET7","index":"0.000011551068960203"},{"denom":"ASSET8","index":"0.000015761386047857"},{"denom":"ASSET9","index":"0.000006692834331509"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001139195115521"},{"denom":"ASSET1","index":"0.000009496890331931"},{"denom":"ASSET10","index":"0.000006616523219856"},{"denom":"ASSET11","index":"0.000009187371854639"},{"denom":"ASSET12","index":"0.000008273091178185"},{"denom":"ASSET13","index":"0.000002846943294505"},{"denom":"ASSET14","index":"0.000008582261490710"},{"denom":"ASSET15","index":"0.000006136055842283"},{"denom":"ASSET16","index":"0.000004278248649000"},{"denom":"ASSET17","index":"0.000003038433916001"},{"denom":"ASSET18","index":"0.000001447320933748"},{"denom":"ASSET2","index":"0.000002803422698710"},{"denom":"ASSET3","index":"0.000000819928024772"},{"denom":"ASSET4","index":"0.000007718116540611"},{"denom":"ASSET5","index":"0.000000636445192901"},{"denom":"ASSET6","index":"0.000002590694026466"},{"denom":"ASSET7","index":"0.000003967685677409"},{"denom":"ASSET8","index":"0.000005177210075735"},{"denom":"ASSET9","index":"0.000002236262294314"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000002735257365218"},{"denom":"ASSET1","index":"0.000023278157661741"},{"denom":"ASSET10","index":"0.000018999615823078"},{"denom":"ASSET11","index":"0.000023241706683585"},{"denom":"ASSET12","index":"0.000022372793234045"},{"denom":"ASSET13","index":"0.000007316911351959"},{"denom":"ASSET14","index":"0.000021266506066871"},{"denom":"ASSET15","index":"0.000017036720297506"},{"denom":"ASSET16","index":"0.000010298479660409"},{"denom":"ASSET17","index":"0.000008222611745720"},{"denom":"ASSET18","index":"0.000003315370510511"},{"denom":"ASSET2","index":"0.000007081336162231"},{"denom":"ASSET3","index":"0.000001948923871674"},{"denom":"ASSET4","index":"0.000018864412124408"},{"denom":"ASSET5","index":"0.000001519377842401"},{"denom":"ASSET6","index":"0.000006121992555640"},{"denom":"ASSET7","index":"0.000009661272655042"},{"denom":"ASSET8","index":"0.000013300968175029"},{"denom":"ASSET9","index":"0.000005629514833023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001583959364947"},{"denom":"ASSET1","index":"0.000013443347430705"},{"denom":"ASSET10","index":"0.000009381913161610"},{"denom":"ASSET11","index":"0.000012996589661105"},{"denom":"ASSET12","index":"0.000011696930694994"},{"denom":"ASSET13","index":"0.000004020819926404"},{"denom":"ASSET14","index":"0.000012143688464595"},{"denom":"ASSET15","index":"0.000008691469335864"},{"denom":"ASSET16","index":"0.000006051537060952"},{"denom":"ASSET17","index":"0.000004305120325241"},{"denom":"ASSET18","index":"0.000002030717134548"},{"denom":"ASSET2","index":"0.000003939591241022"},{"denom":"ASSET3","index":"0.000001137201595347"},{"denom":"ASSET4","index":"0.000010925258183866"},{"denom":"ASSET5","index":"0.000000893515539201"},{"denom":"ASSET6","index":"0.000003655290842186"},{"denom":"ASSET7","index":"0.000005604779291351"},{"denom":"ASSET8","index":"0.000007310581684371"},{"denom":"ASSET9","index":"0.000003167918729894"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003310378542013"},{"denom":"ASSET1","index":"0.000028352771206955"},{"denom":"ASSET10","index":"0.000022778987578468"},{"denom":"ASSET11","index":"0.000028201706998458"},{"denom":"ASSET12","index":"0.000026949790221900"},{"denom":"ASSET13","index":"0.000008856641706946"},{"denom":"ASSET14","index":"0.000025865717784540"},{"denom":"ASSET15","index":"0.000020483790155485"},{"denom":"ASSET16","index":"0.000012564495758376"},{"denom":"ASSET17","index":"0.000009912517491786"},{"denom":"ASSET18","index":"0.000004051289802086"},{"denom":"ASSET2","index":"0.000008567503486413"},{"denom":"ASSET3","index":"0.000002358477605528"},{"denom":"ASSET4","index":"0.000022984011222606"},{"denom":"ASSET5","index":"0.000001848359330263"},{"denom":"ASSET6","index":"0.000007474666006436"},{"denom":"ASSET7","index":"0.000011763521743703"},{"denom":"ASSET8","index":"0.000016098224703406"},{"denom":"ASSET9","index":"0.000006837907042961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001549911588522"},{"denom":"ASSET1","index":"0.000012922257740418"},{"denom":"ASSET10","index":"0.000009003081854783"},{"denom":"ASSET11","index":"0.000012500946332712"},{"denom":"ASSET12","index":"0.000011256607989023"},{"denom":"ASSET13","index":"0.000003873860414458"},{"denom":"ASSET14","index":"0.000011677307025497"},{"denom":"ASSET15","index":"0.000008349069378868"},{"denom":"ASSET16","index":"0.000005821200932633"},{"denom":"ASSET17","index":"0.000004134118188113"},{"denom":"ASSET18","index":"0.000001969385882532"},{"denom":"ASSET2","index":"0.000003814460404941"},{"denom":"ASSET3","index":"0.000001115740384942"},{"denom":"ASSET4","index":"0.000010501554259806"},{"denom":"ASSET5","index":"0.000000865892922233"},{"denom":"ASSET6","index":"0.000003524808812143"},{"denom":"ASSET7","index":"0.000005398664782463"},{"denom":"ASSET8","index":"0.000007044106283197"},{"denom":"ASSET9","index":"0.000003042260281224"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003086330633608"},{"denom":"ASSET1","index":"0.000026187842720704"},{"denom":"ASSET10","index":"0.000020922921087024"},{"denom":"ASSET11","index":"0.000026029396638226"},{"denom":"ASSET12","index":"0.000024828709288325"},{"denom":"ASSET13","index":"0.000008176601230700"},{"denom":"ASSET14","index":"0.000023887113573615"},{"denom":"ASSET15","index":"0.000018841856891118"},{"denom":"ASSET16","index":"0.000011616230118922"},{"denom":"ASSET17","index":"0.000009124242236202"},{"denom":"ASSET18","index":"0.000003767471049721"},{"denom":"ASSET2","index":"0.000007932284099147"},{"denom":"ASSET3","index":"0.000002202458257762"},{"denom":"ASSET4","index":"0.000021230824628511"},{"denom":"ASSET5","index":"0.000001715648257347"},{"denom":"ASSET6","index":"0.000006923830152599"},{"denom":"ASSET7","index":"0.000010879262909104"},{"denom":"ASSET8","index":"0.000014863870027497"},{"denom":"ASSET9","index":"0.000006308409915314"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001535524830156"},{"denom":"ASSET1","index":"0.000012804491333161"},{"denom":"ASSET10","index":"0.000008921035499248"},{"denom":"ASSET11","index":"0.000012386713938596"},{"denom":"ASSET12","index":"0.000011154325740380"},{"denom":"ASSET13","index":"0.000003838812075390"},{"denom":"ASSET14","index":"0.000011571000819920"},{"denom":"ASSET15","index":"0.000008272874264409"},{"denom":"ASSET16","index":"0.000005767863369556"},{"denom":"ASSET17","index":"0.000004096202633783"},{"denom":"ASSET18","index":"0.000001951097594671"},{"denom":"ASSET2","index":"0.000003779838221540"},{"denom":"ASSET3","index":"0.000001105621970313"},{"denom":"ASSET4","index":"0.000010405853838244"},{"denom":"ASSET5","index":"0.000000858152247148"},{"denom":"ASSET6","index":"0.000003492685157466"},{"denom":"ASSET7","index":"0.000005348983659966"},{"denom":"ASSET8","index":"0.000006980409897318"},{"denom":"ASSET9","index":"0.000003014831594025"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003051773960929"},{"denom":"ASSET1","index":"0.000025898629359040"},{"denom":"ASSET10","index":"0.000020686863907037"},{"denom":"ASSET11","index":"0.000025740096441319"},{"denom":"ASSET12","index":"0.000024551000542772"},{"denom":"ASSET13","index":"0.000008085532012369"},{"denom":"ASSET14","index":"0.000023622558405526"},{"denom":"ASSET15","index":"0.000018629920308839"},{"denom":"ASSET16","index":"0.000011487540137638"},{"denom":"ASSET17","index":"0.000009021847693812"},{"denom":"ASSET18","index":"0.000003725572559942"},{"denom":"ASSET2","index":"0.000007844221178735"},{"denom":"ASSET3","index":"0.000002178252359768"},{"denom":"ASSET4","index":"0.000020996168979716"},{"denom":"ASSET5","index":"0.000001697004218389"},{"denom":"ASSET6","index":"0.000006847583721256"},{"denom":"ASSET7","index":"0.000010758483833946"},{"denom":"ASSET8","index":"0.000014699172267780"},{"denom":"ASSET9","index":"0.000006238834616461"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001813824295534"},{"denom":"ASSET1","index":"0.000015126179984122"},{"denom":"ASSET10","index":"0.000010538420488017"},{"denom":"ASSET11","index":"0.000014633035948465"},{"denom":"ASSET12","index":"0.000013177247733614"},{"denom":"ASSET13","index":"0.000004534560738834"},{"denom":"ASSET14","index":"0.000013669547344553"},{"denom":"ASSET15","index":"0.000009773371692973"},{"denom":"ASSET16","index":"0.000006813663054312"},{"denom":"ASSET17","index":"0.000004839398062246"},{"denom":"ASSET18","index":"0.000002305279481754"},{"denom":"ASSET2","index":"0.000004465317911910"},{"denom":"ASSET3","index":"0.000001306325039660"},{"denom":"ASSET4","index":"0.000012293135053249"},{"denom":"ASSET5","index":"0.000001013309662309"},{"denom":"ASSET6","index":"0.000004125859175036"},{"denom":"ASSET7","index":"0.000006318830169217"},{"denom":"ASSET8","index":"0.000008245807377042"},{"denom":"ASSET9","index":"0.000003561783463017"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003452880861936"},{"denom":"ASSET1","index":"0.000029278299049117"},{"denom":"ASSET10","index":"0.000023254773922096"},{"denom":"ASSET11","index":"0.000029065569213605"},{"denom":"ASSET12","index":"0.000027656204711461"},{"denom":"ASSET13","index":"0.000009124518140406"},{"denom":"ASSET14","index":"0.000026695142606829"},{"denom":"ASSET15","index":"0.000020967476611979"},{"denom":"ASSET16","index":"0.000012995878924798"},{"denom":"ASSET17","index":"0.000010163149632422"},{"denom":"ASSET18","index":"0.000004223627093961"},{"denom":"ASSET2","index":"0.000008858348919255"},{"denom":"ASSET3","index":"0.000002465420318230"},{"denom":"ASSET4","index":"0.000023739200929128"},{"denom":"ASSET5","index":"0.000001919695214447"},{"denom":"ASSET6","index":"0.000007752150153146"},{"denom":"ASSET7","index":"0.000012165597276913"},{"denom":"ASSET8","index":"0.000016587849042771"},{"denom":"ASSET9","index":"0.000007046182609545"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001444852701297"},{"denom":"ASSET1","index":"0.000012048934466992"},{"denom":"ASSET10","index":"0.000008394653008080"},{"denom":"ASSET11","index":"0.000011656844181701"},{"denom":"ASSET12","index":"0.000010496256937239"},{"denom":"ASSET13","index":"0.000003612131753243"},{"denom":"ASSET14","index":"0.000010888347222530"},{"denom":"ASSET15","index":"0.000007784952614452"},{"denom":"ASSET16","index":"0.000005427509774140"},{"denom":"ASSET17","index":"0.000003854247504410"},{"denom":"ASSET18","index":"0.000001835962760875"},{"denom":"ASSET2","index":"0.000003556258887589"},{"denom":"ASSET3","index":"0.000001040019481734"},{"denom":"ASSET4","index":"0.000009792454875142"},{"denom":"ASSET5","index":"0.000000807705987699"},{"denom":"ASSET6","index":"0.000003286696816452"},{"denom":"ASSET7","index":"0.000005033459037423"},{"denom":"ASSET8","index":"0.000006568492504337"},{"denom":"ASSET9","index":"0.000002836773214080"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000002868026198866"},{"denom":"ASSET1","index":"0.000024339331661302"},{"denom":"ASSET10","index":"0.000019438063504597"},{"denom":"ASSET11","index":"0.000024190729344646"},{"denom":"ASSET12","index":"0.000023070632234294"},{"denom":"ASSET13","index":"0.000007598221307181"},{"denom":"ASSET14","index":"0.000022200415230506"},{"denom":"ASSET15","index":"0.000017506414948675"},{"denom":"ASSET16","index":"0.000010796282691537"},{"denom":"ASSET17","index":"0.000008477235924619"},{"denom":"ASSET18","index":"0.000003501529899130"},{"denom":"ASSET2","index":"0.000007371086117521"},{"denom":"ASSET3","index":"0.000002046801194740"},{"denom":"ASSET4","index":"0.000019732782799148"},{"denom":"ASSET5","index":"0.000001595074946946"},{"denom":"ASSET6","index":"0.000006435625489467"},{"denom":"ASSET7","index":"0.000010111140720407"},{"denom":"ASSET8","index":"0.000013813490690156"},{"denom":"ASSET9","index":"0.000005862589992841"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001655416114862"},{"denom":"ASSET1","index":"0.000013800538848519"},{"denom":"ASSET10","index":"0.000009615249134678"},{"denom":"ASSET11","index":"0.000013350879623065"},{"denom":"ASSET12","index":"0.000012022439267096"},{"denom":"ASSET13","index":"0.000004137189147657"},{"denom":"ASSET14","index":"0.000012471558036751"},{"denom":"ASSET15","index":"0.000008916980241305"},{"denom":"ASSET16","index":"0.000006216863065381"},{"denom":"ASSET17","index":"0.000004414983428766"},{"denom":"ASSET18","index":"0.000002102913517117"},{"denom":"ASSET2","index":"0.000004073955819077"},{"denom":"ASSET3","index":"0.000001191705038613"},{"denom":"ASSET4","index":"0.000011215538757958"},{"denom":"ASSET5","index":"0.000000924719873500"},{"denom":"ASSET6","index":"0.000003764274645778"},{"denom":"ASSET7","index":"0.000005765582472528"},{"denom":"ASSET8","index":"0.000007523144733557"},{"denom":"ASSET9","index":"0.000003249220268545"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003262792429801"},{"denom":"ASSET1","index":"0.000027679878715890"},{"denom":"ASSET10","index":"0.000022086570261210"},{"denom":"ASSET11","index":"0.000027505267384149"},{"denom":"ASSET12","index":"0.000026222420015979"},{"denom":"ASSET13","index":"0.000008638975204347"},{"denom":"ASSET14","index":"0.000025246236428505"},{"denom":"ASSET15","index":"0.000019895354512471"},{"denom":"ASSET16","index":"0.000012279836462442"},{"denom":"ASSET17","index":"0.000009636125515167"},{"denom":"ASSET18","index":"0.000003984145752232"},{"denom":"ASSET2","index":"0.000008382344169353"},{"denom":"ASSET3","index":"0.000002328549799735"},{"denom":"ASSET4","index":"0.000022441247538096"},{"denom":"ASSET5","index":"0.000001813932132265"},{"denom":"ASSET6","index":"0.000007320527694069"},{"denom":"ASSET7","index":"0.000011499571173317"},{"denom":"ASSET8","index":"0.000015704553099640"},{"denom":"ASSET9","index":"0.000006666608399750"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001676736923170"},{"denom":"ASSET1","index":"0.000013985463602132"},{"denom":"ASSET10","index":"0.000009743339709608"},{"denom":"ASSET11","index":"0.000013528824721587"},{"denom":"ASSET12","index":"0.000012182509640070"},{"denom":"ASSET13","index":"0.000004192868462713"},{"denom":"ASSET14","index":"0.000012638122365828"},{"denom":"ASSET15","index":"0.000009036319060854"},{"denom":"ASSET16","index":"0.000006299564241947"},{"denom":"ASSET17","index":"0.000004474034874554"},{"denom":"ASSET18","index":"0.000002131323494140"},{"denom":"ASSET2","index":"0.000004128220711085"},{"denom":"ASSET3","index":"0.000001207784185172"},{"denom":"ASSET4","index":"0.000011365690429028"},{"denom":"ASSET5","index":"0.000000936879321208"},{"denom":"ASSET6","index":"0.000003814217346036"},{"denom":"ASSET7","index":"0.000005841899206614"},{"denom":"ASSET8","index":"0.000007623303918134"},{"denom":"ASSET9","index":"0.000003292930713863"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003296156578493"},{"denom":"ASSET1","index":"0.000027968412540894"},{"denom":"ASSET10","index":"0.000022307812536905"},{"denom":"ASSET11","index":"0.000027788867279184"},{"denom":"ASSET12","index":"0.000026488589695468"},{"denom":"ASSET13","index":"0.000008728285856057"},{"denom":"ASSET14","index":"0.000025508064125070"},{"denom":"ASSET15","index":"0.000020096610749334"},{"denom":"ASSET16","index":"0.000012407784704791"},{"denom":"ASSET17","index":"0.000009734180928237"},{"denom":"ASSET18","index":"0.000004026678592252"},{"denom":"ASSET2","index":"0.000008468774984810"},{"denom":"ASSET3","index":"0.000002353220293961"},{"denom":"ASSET4","index":"0.000022675279511256"},{"denom":"ASSET5","index":"0.000001832728492238"},{"denom":"ASSET6","index":"0.000007397034942132"},{"denom":"ASSET7","index":"0.000011618881320506"},{"denom":"ASSET8","index":"0.000015866042832442"},{"denom":"ASSET9","index":"0.000006735898552490"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001687654189845"},{"denom":"ASSET1","index":"0.000014079752531439"},{"denom":"ASSET10","index":"0.000009809029374167"},{"denom":"ASSET11","index":"0.000013620990639222"},{"denom":"ASSET12","index":"0.000012264971552184"},{"denom":"ASSET13","index":"0.000004220977891851"},{"denom":"ASSET14","index":"0.000012723733444402"},{"denom":"ASSET15","index":"0.000009097856320367"},{"denom":"ASSET16","index":"0.000006341600132585"},{"denom":"ASSET17","index":"0.000004504710146476"},{"denom":"ASSET18","index":"0.000002144573664825"},{"denom":"ASSET2","index":"0.000004156493288528"},{"denom":"ASSET3","index":"0.000001215995376963"},{"denom":"ASSET4","index":"0.000011441411046878"},{"denom":"ASSET5","index":"0.000000943317625765"},{"denom":"ASSET6","index":"0.000003839597523622"},{"denom":"ASSET7","index":"0.000005880995823129"},{"denom":"ASSET8","index":"0.000007675510212768"},{"denom":"ASSET9","index":"0.000003314508610843"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003237925740153"},{"denom":"ASSET1","index":"0.000027468087048908"},{"denom":"ASSET10","index":"0.000021838560142362"},{"denom":"ASSET11","index":"0.000027274223261348"},{"denom":"ASSET12","index":"0.000025962125103579"},{"denom":"ASSET13","index":"0.000008562973508850"},{"denom":"ASSET14","index":"0.000025046299162567"},{"denom":"ASSET15","index":"0.000019687604125947"},{"denom":"ASSET16","index":"0.000012189946370622"},{"denom":"ASSET17","index":"0.000009540519193028"},{"denom":"ASSET18","index":"0.000003959057055270"},{"denom":"ASSET2","index":"0.000008312511220651"},{"denom":"ASSET3","index":"0.000002312646079660"},{"denom":"ASSET4","index":"0.000022269978905361"},{"denom":"ASSET5","index":"0.000001800462011039"},{"denom":"ASSET6","index":"0.000007270233858279"},{"denom":"ASSET7","index":"0.000011411601588483"},{"denom":"ASSET8","index":"0.000015567552190875"},{"denom":"ASSET9","index":"0.000006610637099613"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001700269946448"},{"denom":"ASSET1","index":"0.000014175647296985"},{"denom":"ASSET10","index":"0.000009876508679424"},{"denom":"ASSET11","index":"0.000013714231996791"},{"denom":"ASSET12","index":"0.000012349169664489"},{"denom":"ASSET13","index":"0.000004249665204630"},{"denom":"ASSET14","index":"0.000012810584964683"},{"denom":"ASSET15","index":"0.000009159649022667"},{"denom":"ASSET16","index":"0.000006386108914062"},{"denom":"ASSET17","index":"0.000004535399405845"},{"denom":"ASSET18","index":"0.000002160675585153"},{"denom":"ASSET2","index":"0.000004184037207885"},{"denom":"ASSET3","index":"0.000001223709723928"},{"denom":"ASSET4","index":"0.000011520237582522"},{"denom":"ASSET5","index":"0.000000950091460574"},{"denom":"ASSET6","index":"0.000003867003500531"},{"denom":"ASSET7","index":"0.000005922674290891"},{"denom":"ASSET8","index":"0.000007727949032131"},{"denom":"ASSET9","index":"0.000003337940880615"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003224934301433"},{"denom":"ASSET1","index":"0.000027341438894536"},{"denom":"ASSET10","index":"0.000021706571274337"},{"denom":"ASSET11","index":"0.000027141091242061"},{"denom":"ASSET12","index":"0.000025819235056226"},{"denom":"ASSET13","index":"0.000008520116782966"},{"denom":"ASSET14","index":"0.000024928444433519"},{"denom":"ASSET15","index":"0.000019573794936329"},{"denom":"ASSET16","index":"0.000012137286393349"},{"denom":"ASSET17","index":"0.000009487995483061"},{"denom":"ASSET18","index":"0.000003945309126507"},{"denom":"ASSET2","index":"0.000008271045740629"},{"denom":"ASSET3","index":"0.000002302032616683"},{"denom":"ASSET4","index":"0.000022168721917699"},{"denom":"ASSET5","index":"0.000001793343624246"},{"denom":"ASSET6","index":"0.000007240378309003"},{"denom":"ASSET7","index":"0.000011361888746536"},{"denom":"ASSET8","index":"0.000015488944629697"},{"denom":"ASSET9","index":"0.000006579500326985"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001505652349479"},{"denom":"ASSET1","index":"0.000012557843622987"},{"denom":"ASSET10","index":"0.000008748308836028"},{"denom":"ASSET11","index":"0.000012147743761261"},{"denom":"ASSET12","index":"0.000010939413811534"},{"denom":"ASSET13","index":"0.000003764130873697"},{"denom":"ASSET14","index":"0.000011348049030896"},{"denom":"ASSET15","index":"0.000008114118692716"},{"denom":"ASSET16","index":"0.000005656448807088"},{"denom":"ASSET17","index":"0.000004017514002549"},{"denom":"ASSET18","index":"0.000001912822926478"},{"denom":"ASSET2","index":"0.000003707009821528"},{"denom":"ASSET3","index":"0.000001083835348847"},{"denom":"ASSET4","index":"0.000010205627987517"},{"denom":"ASSET5","index":"0.000000840704716538"},{"denom":"ASSET6","index":"0.000003424333845410"},{"denom":"ASSET7","index":"0.000005246348945363"},{"denom":"ASSET8","index":"0.000006845738406093"},{"denom":"ASSET9","index":"0.000002955648289152"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000002959758868257"},{"denom":"ASSET1","index":"0.000025116229265451"},{"denom":"ASSET10","index":"0.000020033024535037"},{"denom":"ASSET11","index":"0.000024955202637112"},{"denom":"ASSET12","index":"0.000023787913163340"},{"denom":"ASSET13","index":"0.000007837044315100"},{"denom":"ASSET14","index":"0.000022906603767748"},{"denom":"ASSET15","index":"0.000018047329062837"},{"denom":"ASSET16","index":"0.000011142428291313"},{"denom":"ASSET17","index":"0.000008741414303940"},{"denom":"ASSET18","index":"0.000003614587489816"},{"denom":"ASSET2","index":"0.000007605147442913"},{"denom":"ASSET3","index":"0.000002112677625393"},{"denom":"ASSET4","index":"0.000020363145786569"},{"denom":"ASSET5","index":"0.000001645239564154"},{"denom":"ASSET6","index":"0.000006641765641459"},{"denom":"ASSET7","index":"0.000010434431181702"},{"denom":"ASSET8","index":"0.000014248591155217"},{"denom":"ASSET9","index":"0.000006047835874095"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001815877519749"},{"denom":"ASSET1","index":"0.000015137138459046"},{"denom":"ASSET10","index":"0.000010545739718907"},{"denom":"ASSET11","index":"0.000014644907422941"},{"denom":"ASSET12","index":"0.000013186828093302"},{"denom":"ASSET13","index":"0.000004537625601742"},{"denom":"ASSET14","index":"0.000013679059129408"},{"denom":"ASSET15","index":"0.000009780506595550"},{"denom":"ASSET16","index":"0.000006818847588397"},{"denom":"ASSET17","index":"0.000004841650653454"},{"denom":"ASSET18","index":"0.000002306040358223"},{"denom":"ASSET2","index":"0.000004467306882298"},{"denom":"ASSET3","index":"0.000001307100902598"},{"denom":"ASSET4","index":"0.000012301639507366"},{"denom":"ASSET5","index":"0.000001013416839040"},{"denom":"ASSET6","index":"0.000004128122470864"},{"denom":"ASSET7","index":"0.000006324548354661"},{"denom":"ASSET8","index":"0.000008252108546467"},{"denom":"ASSET9","index":"0.000003563504517685"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003468946703322"},{"denom":"ASSET1","index":"0.000029412495408176"},{"denom":"ASSET10","index":"0.000023372734593498"},{"denom":"ASSET11","index":"0.000029203218600002"},{"denom":"ASSET12","index":"0.000027792166579196"},{"denom":"ASSET13","index":"0.000009167641990636"},{"denom":"ASSET14","index":"0.000026818252104650"},{"denom":"ASSET15","index":"0.000021072198152383"},{"denom":"ASSET16","index":"0.000013054905852031"},{"denom":"ASSET17","index":"0.000010211457984650"},{"denom":"ASSET18","index":"0.000004240878207320"},{"denom":"ASSET2","index":"0.000008898543974195"},{"denom":"ASSET3","index":"0.000002476460623897"},{"denom":"ASSET4","index":"0.000023847831794350"},{"denom":"ASSET5","index":"0.000001927880642719"},{"denom":"ASSET6","index":"0.000007785977685579"},{"denom":"ASSET7","index":"0.000012222326144679"},{"denom":"ASSET8","index":"0.000016667230515151"},{"denom":"ASSET9","index":"0.000007078301868557"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001541968050995"},{"denom":"ASSET1","index":"0.000012857487907975"},{"denom":"ASSET10","index":"0.000008957704485900"},{"denom":"ASSET11","index":"0.000012438763825161"},{"denom":"ASSET12","index":"0.000011200869215257"},{"denom":"ASSET13","index":"0.000003854089325736"},{"denom":"ASSET14","index":"0.000011619593298070"},{"denom":"ASSET15","index":"0.000008307186714386"},{"denom":"ASSET16","index":"0.000005792349812251"},{"denom":"ASSET17","index":"0.000004113299472240"},{"denom":"ASSET18","index":"0.000001959030530305"},{"denom":"ASSET2","index":"0.000003795102401372"},{"denom":"ASSET3","index":"0.000001109951140156"},{"denom":"ASSET4","index":"0.000010448993630046"},{"denom":"ASSET5","index":"0.000000861541416423"},{"denom":"ASSET6","index":"0.000003506814193562"},{"denom":"ASSET7","index":"0.000005371133324183"},{"denom":"ASSET8","index":"0.000007009474378365"},{"denom":"ASSET9","index":"0.000003027441582881"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003053196756625"},{"denom":"ASSET1","index":"0.000025905581999278"},{"denom":"ASSET10","index":"0.000020682143152818"},{"denom":"ASSET11","index":"0.000025745380902198"},{"denom":"ASSET12","index":"0.000024550499550641"},{"denom":"ASSET13","index":"0.000008086239198545"},{"denom":"ASSET14","index":"0.000023629161089906"},{"denom":"ASSET15","index":"0.000018628151539367"},{"denom":"ASSET16","index":"0.000011492271696690"},{"denom":"ASSET17","index":"0.000009021688715966"},{"denom":"ASSET18","index":"0.000003727673632537"},{"denom":"ASSET2","index":"0.000007845443656426"},{"denom":"ASSET3","index":"0.000002178852781858"},{"denom":"ASSET4","index":"0.000021002318737231"},{"denom":"ASSET5","index":"0.000001697417622442"},{"denom":"ASSET6","index":"0.000006850319017638"},{"denom":"ASSET7","index":"0.000010761758840612"},{"denom":"ASSET8","index":"0.000014701087498525"},{"denom":"ASSET9","index":"0.000006240132889304"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001327266579501"},{"denom":"ASSET1","index":"0.000011071143497688"},{"denom":"ASSET10","index":"0.000007713614824674"},{"denom":"ASSET11","index":"0.000010710668391289"},{"denom":"ASSET12","index":"0.000009644435509525"},{"denom":"ASSET13","index":"0.000003318857014090"},{"denom":"ASSET14","index":"0.000010004910615924"},{"denom":"ASSET15","index":"0.000007152875770275"},{"denom":"ASSET16","index":"0.000004987262870528"},{"denom":"ASSET17","index":"0.000003541219052903"},{"denom":"ASSET18","index":"0.000001686360555224"},{"denom":"ASSET2","index":"0.000003267755179083"},{"denom":"ASSET3","index":"0.000000955742427695"},{"denom":"ASSET4","index":"0.000008998066353223"},{"denom":"ASSET5","index":"0.000000741667172936"},{"denom":"ASSET6","index":"0.000003019151657428"},{"denom":"ASSET7","index":"0.000004625406633453"},{"denom":"ASSET8","index":"0.000006035541053505"},{"denom":"ASSET9","index":"0.000002606193585346"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000002827520151011"},{"denom":"ASSET1","index":"0.000024027878888002"},{"denom":"ASSET10","index":"0.000019355847170480"},{"denom":"ASSET11","index":"0.000023924401086085"},{"denom":"ASSET12","index":"0.000022900407365256"},{"denom":"ASSET13","index":"0.000007521399074311"},{"denom":"ASSET14","index":"0.000021930603354990"},{"denom":"ASSET15","index":"0.000017401215805238"},{"denom":"ASSET16","index":"0.000010647310435771"},{"denom":"ASSET17","index":"0.000008415007538097"},{"denom":"ASSET18","index":"0.000003442593620109"},{"denom":"ASSET2","index":"0.000007289635767836"},{"denom":"ASSET3","index":"0.000002016810506595"},{"denom":"ASSET4","index":"0.000019477449509443"},{"denom":"ASSET5","index":"0.000001571692130579"},{"denom":"ASSET6","index":"0.000006339251488002"},{"denom":"ASSET7","index":"0.000009978075244424"},{"denom":"ASSET8","index":"0.000013673195599374"},{"denom":"ASSET9","index":"0.000005796522499795"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001571435631869"},{"denom":"ASSET1","index":"0.000013104175099655"},{"denom":"ASSET10","index":"0.000009129715488355"},{"denom":"ASSET11","index":"0.000012677036600848"},{"denom":"ASSET12","index":"0.000011415350365342"},{"denom":"ASSET13","index":"0.000003928095848150"},{"denom":"ASSET14","index":"0.000011841502401104"},{"denom":"ASSET15","index":"0.000008466812321615"},{"denom":"ASSET16","index":"0.000005902994865728"},{"denom":"ASSET17","index":"0.000004192467944409"},{"denom":"ASSET18","index":"0.000001996601204585"},{"denom":"ASSET2","index":"0.000003867921602360"},{"denom":"ASSET3","index":"0.000001131473113468"},{"denom":"ASSET4","index":"0.000010648868578800"},{"denom":"ASSET5","index":"0.000000877952110712"},{"denom":"ASSET6","index":"0.000003573955614728"},{"denom":"ASSET7","index":"0.000005473883440830"},{"denom":"ASSET8","index":"0.000007142978914228"},{"denom":"ASSET9","index":"0.000003084669944040"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003141123056438"},{"denom":"ASSET1","index":"0.000026662100889972"},{"denom":"ASSET10","index":"0.000021312054987248"},{"denom":"ASSET11","index":"0.000026503481745319"},{"denom":"ASSET12","index":"0.000025286293002787"},{"denom":"ASSET13","index":"0.000008324908472884"},{"denom":"ASSET14","index":"0.000024319980387721"},{"denom":"ASSET15","index":"0.000019190708128374"},{"denom":"ASSET16","index":"0.000011824997422058"},{"denom":"ASSET17","index":"0.000009292034078872"},{"denom":"ASSET18","index":"0.000003834040785154"},{"denom":"ASSET2","index":"0.000008076003481032"},{"denom":"ASSET3","index":"0.000002241608843356"},{"denom":"ASSET4","index":"0.000021614431804298"},{"denom":"ASSET5","index":"0.000001746420421862"},{"denom":"ASSET6","index":"0.000007047828859327"},{"denom":"ASSET7","index":"0.000011075197168484"},{"denom":"ASSET8","index":"0.000015134882092008"},{"denom":"ASSET9","index":"0.000006422749115253"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[{"denom":"ASSET0","index":"0.000001554974273829"},{"denom":"ASSET1","index":"0.000012964145980643"},{"denom":"ASSET10","index":"0.000009032293690170"},{"denom":"ASSET11","index":"0.000012541598623624"},{"denom":"ASSET12","index":"0.000011293609918011"},{"denom":"ASSET13","index":"0.000003886649549954"},{"denom":"ASSET14","index":"0.000011715371140412"},{"denom":"ASSET15","index":"0.000008376264351692"},{"denom":"ASSET16","index":"0.000005840194074962"},{"denom":"ASSET17","index":"0.000004147646243034"},{"denom":"ASSET18","index":"0.000001975556294303"},{"denom":"ASSET2","index":"0.000003826903319009"},{"denom":"ASSET3","index":"0.000001119455695618"},{"denom":"ASSET4","index":"0.000010535776146539"},{"denom":"ASSET5","index":"0.000000869071819878"},{"denom":"ASSET6","index":"0.000003536426577765"},{"denom":"ASSET7","index":"0.000005416074448708"},{"denom":"ASSET8","index":"0.000007067350213206"},{"denom":"ASSET9","index":"0.000003052560720565"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[{"denom":"ASSET0","index":"0.000003054120352223"},{"denom":"ASSET1","index":"0.000025909289170716"},{"denom":"ASSET10","index":"0.000020664041936079"},{"denom":"ASSET11","index":"0.000025743066158465"},{"denom":"ASSET12","index":"0.000024537849095602"},{"denom":"ASSET13","index":"0.000008085297309351"},{"denom":"ASSET14","index":"0.000023630023251940"},{"denom":"ASSET15","index":"0.000018615490114349"},{"denom":"ASSET16","index":"0.000011495216270003"},{"denom":"ASSET17","index":"0.000009017197770141"},{"denom":"ASSET18","index":"0.000003730110182262"},{"denom":"ASSET2","index":"0.000007845299155388"},{"denom":"ASSET3","index":"0.000002179886924088"},{"denom":"ASSET4","index":"0.000021005968780047"},{"denom":"ASSET5","index":"0.000001698230665763"},{"denom":"ASSET6","index":"0.000006853367473041"},{"denom":"ASSET7","index":"0.000010764057351149"},{"denom":"ASSET8","index":"0.000014698116791571"},{"denom":"ASSET9","index":"0.000006239964640655"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150770331645252021","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150768935385823014","reward_histories":[]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET2","snapshot":{"prev_reward_weight":"0.150767539139324537","reward_histories":[]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001587610635106"},{"denom":"ASSET1","index":"0.000013244938725362"},{"denom":"ASSET10","index":"0.000009227311812032"},{"denom":"ASSET11","index":"0.000012812935831455"},{"denom":"ASSET12","index":"0.000011538527294432"},{"denom":"ASSET13","index":"0.000003970376596809"},{"denom":"ASSET14","index":"0.000011969180179294"},{"denom":"ASSET15","index":"0.000008557707326477"},{"denom":"ASSET16","index":"0.000005967039972082"},{"denom":"ASSET17","index":"0.000004237678387413"},{"denom":"ASSET18","index":"0.000002018263519969"},{"denom":"ASSET2","index":"0.000003909626189853"},{"denom":"ASSET3","index":"0.000001143457659809"},{"denom":"ASSET4","index":"0.000010763622103487"},{"denom":"ASSET5","index":"0.000000886955941552"},{"denom":"ASSET6","index":"0.000003612624200292"},{"denom":"ASSET7","index":"0.000005533687069132"},{"denom":"ASSET8","index":"0.000007219848364411"},{"denom":"ASSET9","index":"0.000003118520890387"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003152887181228"},{"denom":"ASSET1","index":"0.000026760532918289"},{"denom":"ASSET10","index":"0.000021371603424459"},{"denom":"ASSET11","index":"0.000026596151859305"},{"denom":"ASSET12","index":"0.000025366346961436"},{"denom":"ASSET13","index":"0.000008353980761099"},{"denom":"ASSET14","index":"0.000024408754798213"},{"denom":"ASSET15","index":"0.000019248058608344"},{"denom":"ASSET16","index":"0.000011870971278696"},{"denom":"ASSET17","index":"0.000009321801721671"},{"denom":"ASSET18","index":"0.000003850124607081"},{"denom":"ASSET2","index":"0.000008105134387478"},{"denom":"ASSET3","index":"0.000002250596051831"},{"denom":"ASSET4","index":"0.000021694971342643"},{"denom":"ASSET5","index":"0.000001752750611640"},{"denom":"ASSET6","index":"0.000007075802880646"},{"denom":"ASSET7","index":"0.000011117440314842"},{"denom":"ASSET8","index":"0.000015186957305377"},{"denom":"ASSET9","index":"0.000006446159830056"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001450981944084"},{"denom":"ASSET1","index":"0.000012097851501865"},{"denom":"ASSET10","index":"0.000008428524260541"},{"denom":"ASSET11","index":"0.000011703479004578"},{"denom":"ASSET12","index":"0.000010538773481717"},{"denom":"ASSET13","index":"0.000003626563958485"},{"denom":"ASSET14","index":"0.000010932552044520"},{"denom":"ASSET15","index":"0.000007816771742159"},{"denom":"ASSET16","index":"0.000005449942823954"},{"denom":"ASSET17","index":"0.000003870671031354"},{"denom":"ASSET18","index":"0.000001843572637920"},{"denom":"ASSET2","index":"0.000003571328051486"},{"denom":"ASSET3","index":"0.000001044730757120"},{"denom":"ASSET4","index":"0.000009831991445917"},{"denom":"ASSET5","index":"0.000000810720570477"},{"denom":"ASSET6","index":"0.000003299899992359"},{"denom":"ASSET7","index":"0.000005054382457699"},{"denom":"ASSET8","index":"0.000006595048508847"},{"denom":"ASSET9","index":"0.000002848509784621"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000002831039632868"},{"denom":"ASSET1","index":"0.000024014703977493"},{"denom":"ASSET10","index":"0.000019136467933987"},{"denom":"ASSET11","index":"0.000023856136612857"},{"denom":"ASSET12","index":"0.000022731094165303"},{"denom":"ASSET13","index":"0.000007491812146677"},{"denom":"ASSET14","index":"0.000021900750691559"},{"denom":"ASSET15","index":"0.000017242457090593"},{"denom":"ASSET16","index":"0.000010655585625623"},{"denom":"ASSET17","index":"0.000008353141870908"},{"denom":"ASSET18","index":"0.000003458892129556"},{"denom":"ASSET2","index":"0.000007270317321266"},{"denom":"ASSET3","index":"0.000002020551075646"},{"denom":"ASSET4","index":"0.000019470118745656"},{"denom":"ASSET5","index":"0.000001574098937698"},{"denom":"ASSET6","index":"0.000006353413461243"},{"denom":"ASSET7","index":"0.000009977493764026"},{"denom":"ASSET8","index":"0.000013619759476676"},{"denom":"ASSET9","index":"0.000005782490697784"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001596167964962"},{"denom":"ASSET1","index":"0.000013307648687747"},{"denom":"ASSET10","index":"0.000009271254138767"},{"denom":"ASSET11","index":"0.000012873344596610"},{"denom":"ASSET12","index":"0.000011592750107942"},{"denom":"ASSET13","index":"0.000003989527201016"},{"denom":"ASSET14","index":"0.000012025715131995"},{"denom":"ASSET15","index":"0.000008598149750858"},{"denom":"ASSET16","index":"0.000005994556982506"},{"denom":"ASSET17","index":"0.000004257340617956"},{"denom":"ASSET18","index":"0.000002028240277625"},{"denom":"ASSET2","index":"0.000003928376470814"},{"denom":"ASSET3","index":"0.000001148919558672"},{"denom":"ASSET4","index":"0.000010814752131731"},{"denom":"ASSET5","index":"0.000000891818678410"},{"denom":"ASSET6","index":"0.000003630210866621"},{"denom":"ASSET7","index":"0.000005559360179979"},{"denom":"ASSET8","index":"0.000007254619109209"},{"denom":"ASSET9","index":"0.000003133416978198"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003160678210357"},{"denom":"ASSET1","index":"0.000026816731621709"},{"denom":"ASSET10","index":"0.000021409695697867"},{"denom":"ASSET11","index":"0.000026650151208928"},{"denom":"ASSET12","index":"0.000025413985003091"},{"denom":"ASSET13","index":"0.000008371194471357"},{"denom":"ASSET14","index":"0.000024459575922385"},{"denom":"ASSET15","index":"0.000019283728762326"},{"denom":"ASSET16","index":"0.000011895729224726"},{"denom":"ASSET17","index":"0.000009339186085895"},{"denom":"ASSET18","index":"0.000003859320220004"},{"denom":"ASSET2","index":"0.000008121656282140"},{"denom":"ASSET3","index":"0.000002255587694637"},{"denom":"ASSET4","index":"0.000021740936259308"},{"denom":"ASSET5","index":"0.000001757304707579"},{"denom":"ASSET6","index":"0.000007091577992612"},{"denom":"ASSET7","index":"0.000011140302591406"},{"denom":"ASSET8","index":"0.000015217956063596"},{"denom":"ASSET9","index":"0.000006459479788296"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001539653287763"},{"denom":"ASSET1","index":"0.000012837628062054"},{"denom":"ASSET10","index":"0.000008944076712630"},{"denom":"ASSET11","index":"0.000012418678362380"},{"denom":"ASSET12","index":"0.000011182855597091"},{"denom":"ASSET13","index":"0.000003848344731893"},{"denom":"ASSET14","index":"0.000011600753980079"},{"denom":"ASSET15","index":"0.000008294363000211"},{"denom":"ASSET16","index":"0.000005782767435536"},{"denom":"ASSET17","index":"0.000004106968636837"},{"denom":"ASSET18","index":"0.000001956500354065"},{"denom":"ASSET2","index":"0.000003789470997435"},{"denom":"ASSET3","index":"0.000001108613446191"},{"denom":"ASSET4","index":"0.000010432741141086"},{"denom":"ASSET5","index":"0.000000860502708115"},{"denom":"ASSET6","index":"0.000003501935883605"},{"denom":"ASSET7","index":"0.000005362766419174"},{"denom":"ASSET8","index":"0.000006998089525433"},{"denom":"ASSET9","index":"0.000003022535474442"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003102081054533"},{"denom":"ASSET1","index":"0.000026328097047411"},{"denom":"ASSET10","index":"0.000021065731925672"},{"denom":"ASSET11","index":"0.000026176422512857"},{"denom":"ASSET12","index":"0.000024984864029023"},{"denom":"ASSET13","index":"0.000008223750690350"},{"denom":"ASSET14","index":"0.000024017391771060"},{"denom":"ASSET15","index":"0.000018965095888316"},{"denom":"ASSET16","index":"0.000011675661088751"},{"denom":"ASSET17","index":"0.000009181817821335"},{"denom":"ASSET18","index":"0.000003784851704842"},{"denom":"ASSET2","index":"0.000007977007181168"},{"denom":"ASSET3","index":"0.000002213531006169"},{"denom":"ASSET4","index":"0.000021343717572048"},{"denom":"ASSET5","index":"0.000001724500934679"},{"denom":"ASSET6","index":"0.000006958604580417"},{"denom":"ASSET7","index":"0.000010936011139136"},{"denom":"ASSET8","index":"0.000014950117004491"},{"denom":"ASSET9","index":"0.000006344046059941"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001722784092424"},{"denom":"ASSET1","index":"0.000014376047839207"},{"denom":"ASSET10","index":"0.000010014727915911"},{"denom":"ASSET11","index":"0.000013905627425621"},{"denom":"ASSET12","index":"0.000012523636788373"},{"denom":"ASSET13","index":"0.000004309050988454"},{"denom":"ASSET14","index":"0.000012989875687172"},{"denom":"ASSET15","index":"0.000009287144342897"},{"denom":"ASSET16","index":"0.000006475075648346"},{"denom":"ASSET17","index":"0.000004597575508787"},{"denom":"ASSET18","index":"0.000002191113748617"},{"denom":"ASSET2","index":"0.000004242146751855"},{"denom":"ASSET3","index":"0.000001239819134475"},{"denom":"ASSET4","index":"0.000011683152316098"},{"denom":"ASSET5","index":"0.000000961748401110"},{"denom":"ASSET6","index":"0.000003920170113222"},{"denom":"ASSET7","index":"0.000006004655234759"},{"denom":"ASSET8","index":"0.000007836158711656"},{"denom":"ASSET9","index":"0.000003384936220430"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003308323901116"},{"denom":"ASSET1","index":"0.000028066718381779"},{"denom":"ASSET10","index":"0.000022316311421496"},{"denom":"ASSET11","index":"0.000027867424204892"},{"denom":"ASSET12","index":"0.000026530665881565"},{"denom":"ASSET13","index":"0.000008749579510737"},{"denom":"ASSET14","index":"0.000025590688346390"},{"denom":"ASSET15","index":"0.000020116135001180"},{"denom":"ASSET16","index":"0.000012455644018572"},{"denom":"ASSET17","index":"0.000009747635771928"},{"denom":"ASSET18","index":"0.000004046709206696"},{"denom":"ASSET2","index":"0.000008491843085820"},{"denom":"ASSET3","index":"0.000002361259343526"},{"denom":"ASSET4","index":"0.000022756236881458"},{"denom":"ASSET5","index":"0.000001838827056256"},{"denom":"ASSET6","index":"0.000007428217086977"},{"denom":"ASSET7","index":"0.000011660835649526"},{"denom":"ASSET8","index":"0.000015906513514404"},{"denom":"ASSET9","index":"0.000006755948018281"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001677980890787"},{"denom":"ASSET1","index":"0.000013990275877081"},{"denom":"ASSET10","index":"0.000009746835585844"},{"denom":"ASSET11","index":"0.000013534047272362"},{"denom":"ASSET12","index":"0.000012187401487418"},{"denom":"ASSET13","index":"0.000004194217559326"},{"denom":"ASSET14","index":"0.000012642160756856"},{"denom":"ASSET15","index":"0.000009039350648091"},{"denom":"ASSET16","index":"0.000006301979019776"},{"denom":"ASSET17","index":"0.000004475595265619"},{"denom":"ASSET18","index":"0.000002132005492585"},{"denom":"ASSET2","index":"0.000004129566806967"},{"denom":"ASSET3","index":"0.000001207793600899"},{"denom":"ASSET4","index":"0.000011368981735957"},{"denom":"ASSET5","index":"0.000000937435909214"},{"denom":"ASSET6","index":"0.000003815863724495"},{"denom":"ASSET7","index":"0.000005844281079776"},{"denom":"ASSET8","index":"0.000007626584775507"},{"denom":"ASSET9","index":"0.000003293515032135"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003299297789724"},{"denom":"ASSET1","index":"0.000027989603079017"},{"denom":"ASSET10","index":"0.000022326156077139"},{"denom":"ASSET11","index":"0.000027810817552502"},{"denom":"ASSET12","index":"0.000026510364756940"},{"denom":"ASSET13","index":"0.000008734817330461"},{"denom":"ASSET14","index":"0.000025527438517331"},{"denom":"ASSET15","index":"0.000020112836713905"},{"denom":"ASSET16","index":"0.000012417417558556"},{"denom":"ASSET17","index":"0.000009741881197111"},{"denom":"ASSET18","index":"0.000004029624902086"},{"denom":"ASSET2","index":"0.000008475129511821"},{"denom":"ASSET3","index":"0.000002354634361983"},{"denom":"ASSET4","index":"0.000022691681830907"},{"denom":"ASSET5","index":"0.000001834207215432"},{"denom":"ASSET6","index":"0.000007402948949368"},{"denom":"ASSET7","index":"0.000011627814435586"},{"denom":"ASSET8","index":"0.000015878876786083"},{"denom":"ASSET9","index":"0.000006740310437402"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001570026110869"},{"denom":"ASSET1","index":"0.000013093495665706"},{"denom":"ASSET10","index":"0.000009121814411369"},{"denom":"ASSET11","index":"0.000012665871768525"},{"denom":"ASSET12","index":"0.000011405375746022"},{"denom":"ASSET13","index":"0.000003924443730811"},{"denom":"ASSET14","index":"0.000011831756550478"},{"denom":"ASSET15","index":"0.000008459245989284"},{"denom":"ASSET16","index":"0.000005898474977098"},{"denom":"ASSET17","index":"0.000004187979388376"},{"denom":"ASSET18","index":"0.000001995163822601"},{"denom":"ASSET2","index":"0.000003864775280042"},{"denom":"ASSET3","index":"0.000001129971286445"},{"denom":"ASSET4","index":"0.000010639630627815"},{"denom":"ASSET5","index":"0.000000877623463400"},{"denom":"ASSET6","index":"0.000003571405397092"},{"denom":"ASSET7","index":"0.000005469607987193"},{"denom":"ASSET8","index":"0.000007137838423287"},{"denom":"ASSET9","index":"0.000003082869956418"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003142586597057"},{"denom":"ASSET1","index":"0.000026671940208455"},{"denom":"ASSET10","index":"0.000021322845581004"},{"denom":"ASSET11","index":"0.000026513185667064"},{"denom":"ASSET12","index":"0.000025297681895631"},{"denom":"ASSET13","index":"0.000008328263582513"},{"denom":"ASSET14","index":"0.000024329302916923"},{"denom":"ASSET15","index":"0.000019199384187435"},{"denom":"ASSET16","index":"0.000011829863063918"},{"denom":"ASSET17","index":"0.000009295955073087"},{"denom":"ASSET18","index":"0.000003835509513951"},{"denom":"ASSET2","index":"0.000008079410847125"},{"denom":"ASSET3","index":"0.000002242309830967"},{"denom":"ASSET4","index":"0.000021622076491366"},{"denom":"ASSET5","index":"0.000001747112267207"},{"denom":"ASSET6","index":"0.000007050444762949"},{"denom":"ASSET7","index":"0.000011079003337441"},{"denom":"ASSET8","index":"0.000015142122511204"},{"denom":"ASSET9","index":"0.000006425848418438"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001808467589320"},{"denom":"ASSET1","index":"0.000015078627759778"},{"denom":"ASSET10","index":"0.000010504031371633"},{"denom":"ASSET11","index":"0.000014586692317421"},{"denom":"ASSET12","index":"0.000013135079536696"},{"denom":"ASSET13","index":"0.000004520160908868"},{"denom":"ASSET14","index":"0.000013624998850191"},{"denom":"ASSET15","index":"0.000009741934661752"},{"denom":"ASSET16","index":"0.000006792338136474"},{"denom":"ASSET17","index":"0.000004822580238185"},{"denom":"ASSET18","index":"0.000002296370773952"},{"denom":"ASSET2","index":"0.000004449596398694"},{"denom":"ASSET3","index":"0.000001300403116066"},{"denom":"ASSET4","index":"0.000012254031223951"},{"denom":"ASSET5","index":"0.000001010080559921"},{"denom":"ASSET6","index":"0.000004112902878720"},{"denom":"ASSET7","index":"0.000006298386565256"},{"denom":"ASSET8","index":"0.000008219757370854"},{"denom":"ASSET9","index":"0.000003550402926189"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003309574221953"},{"denom":"ASSET1","index":"0.000028041386020893"},{"denom":"ASSET10","index":"0.000022151472675705"},{"denom":"ASSET11","index":"0.000027806413413432"},{"denom":"ASSET12","index":"0.000026397319662942"},{"denom":"ASSET13","index":"0.000008723998941637"},{"denom":"ASSET14","index":"0.000025556208464743"},{"denom":"ASSET15","index":"0.000019995491235522"},{"denom":"ASSET16","index":"0.000012454763771642"},{"denom":"ASSET17","index":"0.000009698403814011"},{"denom":"ASSET18","index":"0.000004053515914738"},{"denom":"ASSET2","index":"0.000008473190716338"},{"denom":"ASSET3","index":"0.000002361530218445"},{"denom":"ASSET4","index":"0.000022738669483779"},{"denom":"ASSET5","index":"0.000001840125976242"},{"denom":"ASSET6","index":"0.000007434008870747"},{"denom":"ASSET7","index":"0.000011653935721338"},{"denom":"ASSET8","index":"0.000015861166565423"},{"denom":"ASSET9","index":"0.000006742103174023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001541663174382"},{"denom":"ASSET1","index":"0.000012852134347969"},{"denom":"ASSET10","index":"0.000008953505358908"},{"denom":"ASSET11","index":"0.000012432624080325"},{"denom":"ASSET12","index":"0.000011194846435509"},{"denom":"ASSET13","index":"0.000003852675567517"},{"denom":"ASSET14","index":"0.000011614356703153"},{"denom":"ASSET15","index":"0.000008302745615107"},{"denom":"ASSET16","index":"0.000005788648746115"},{"denom":"ASSET17","index":"0.000004110607675539"},{"denom":"ASSET18","index":"0.000001958208705152"},{"denom":"ASSET2","index":"0.000003793380830041"},{"denom":"ASSET3","index":"0.000001108811590805"},{"denom":"ASSET4","index":"0.000010443285637998"},{"denom":"ASSET5","index":"0.000000861256061842"},{"denom":"ASSET6","index":"0.000003505801353281"},{"denom":"ASSET7","index":"0.000005369138478471"},{"denom":"ASSET8","index":"0.000007005673232815"},{"denom":"ASSET9","index":"0.000003025513979724"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003039218640043"},{"denom":"ASSET1","index":"0.000025782167100542"},{"denom":"ASSET10","index":"0.000020571830356487"},{"denom":"ASSET11","index":"0.000025618833387376"},{"denom":"ASSET12","index":"0.000024423552320522"},{"denom":"ASSET13","index":"0.000008046369560384"},{"denom":"ASSET14","index":"0.000023515194162679"},{"denom":"ASSET15","index":"0.000018530055863607"},{"denom":"ASSET16","index":"0.000011436803083329"},{"denom":"ASSET17","index":"0.000008974370950503"},{"denom":"ASSET18","index":"0.000003710743638587"},{"denom":"ASSET2","index":"0.000007806913274081"},{"denom":"ASSET3","index":"0.000002167934051431"},{"denom":"ASSET4","index":"0.000020901035076857"},{"denom":"ASSET5","index":"0.000001689640060433"},{"denom":"ASSET6","index":"0.000006819038075969"},{"denom":"ASSET7","index":"0.000010710838619674"},{"denom":"ASSET8","index":"0.000014627524271874"},{"denom":"ASSET9","index":"0.000006209166066794"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001647112085871"},{"denom":"ASSET1","index":"0.000013744257107488"},{"denom":"ASSET10","index":"0.000009576415679235"},{"denom":"ASSET11","index":"0.000013296650962579"},{"denom":"ASSET12","index":"0.000011973464376313"},{"denom":"ASSET13","index":"0.000004120724991946"},{"denom":"ASSET14","index":"0.000012421070521222"},{"denom":"ASSET15","index":"0.000008879485058873"},{"denom":"ASSET16","index":"0.000006191885004573"},{"denom":"ASSET17","index":"0.000004397534055245"},{"denom":"ASSET18","index":"0.000002094718230780"},{"denom":"ASSET2","index":"0.000004055939892025"},{"denom":"ASSET3","index":"0.000001185763647039"},{"denom":"ASSET4","index":"0.000011170521774262"},{"denom":"ASSET5","index":"0.000000920733692817"},{"denom":"ASSET6","index":"0.000003749683056035"},{"denom":"ASSET7","index":"0.000005742315674818"},{"denom":"ASSET8","index":"0.000007491513372686"},{"denom":"ASSET9","index":"0.000003235328626359"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003240628198198"},{"denom":"ASSET1","index":"0.000027504329283847"},{"denom":"ASSET10","index":"0.000021940320319100"},{"denom":"ASSET11","index":"0.000027329345632586"},{"denom":"ASSET12","index":"0.000026051323397008"},{"denom":"ASSET13","index":"0.000008583813762496"},{"denom":"ASSET14","index":"0.000025085743554439"},{"denom":"ASSET15","index":"0.000019763439018939"},{"denom":"ASSET16","index":"0.000012202670980955"},{"denom":"ASSET17","index":"0.000009573761377605"},{"denom":"ASSET18","index":"0.000003959875003044"},{"denom":"ASSET2","index":"0.000008327243811102"},{"denom":"ASSET3","index":"0.000002312908746824"},{"denom":"ASSET4","index":"0.000022299606884078"},{"denom":"ASSET5","index":"0.000001802093087045"},{"denom":"ASSET6","index":"0.000007275447910852"},{"denom":"ASSET7","index":"0.000011427132859276"},{"denom":"ASSET8","index":"0.000015602768933976"},{"denom":"ASSET9","index":"0.000006623309483786"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001570100817458"},{"denom":"ASSET1","index":"0.000013089401919768"},{"denom":"ASSET10","index":"0.000009119446705996"},{"denom":"ASSET11","index":"0.000012662761138201"},{"denom":"ASSET12","index":"0.000011403229713207"},{"denom":"ASSET13","index":"0.000003924467777503"},{"denom":"ASSET14","index":"0.000011828301962489"},{"denom":"ASSET15","index":"0.000008457526081653"},{"denom":"ASSET16","index":"0.000005896112859965"},{"denom":"ASSET17","index":"0.000004187981201412"},{"denom":"ASSET18","index":"0.000001993604534455"},{"denom":"ASSET2","index":"0.000003863295018381"},{"denom":"ASSET3","index":"0.000001129343245325"},{"denom":"ASSET4","index":"0.000010637785958043"},{"denom":"ASSET5","index":"0.000000876809547412"},{"denom":"ASSET6","index":"0.000003569979481054"},{"denom":"ASSET7","index":"0.000005467903546113"},{"denom":"ASSET8","index":"0.000007135253365252"},{"denom":"ASSET9","index":"0.000003082165940365"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003152920186871"},{"denom":"ASSET1","index":"0.000026760622644749"},{"denom":"ASSET10","index":"0.000021403995558307"},{"denom":"ASSET11","index":"0.000026604821287493"},{"denom":"ASSET12","index":"0.000025390105019040"},{"denom":"ASSET13","index":"0.000008358570294936"},{"denom":"ASSET14","index":"0.000024411618525071"},{"denom":"ASSET15","index":"0.000019270968708391"},{"denom":"ASSET16","index":"0.000011868219590271"},{"denom":"ASSET17","index":"0.000009330682788205"},{"denom":"ASSET18","index":"0.000003846613833157"},{"denom":"ASSET2","index":"0.000008107095494272"},{"denom":"ASSET3","index":"0.000002249072663818"},{"denom":"ASSET4","index":"0.000021694789218154"},{"denom":"ASSET5","index":"0.000001752328837510"},{"denom":"ASSET6","index":"0.000007072706136469"},{"denom":"ASSET7","index":"0.000011115912260277"},{"denom":"ASSET8","index":"0.000015194187602297"},{"denom":"ASSET9","index":"0.000006447849146068"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001655272585709"},{"denom":"ASSET1","index":"0.000013804891217292"},{"denom":"ASSET10","index":"0.000009617831976915"},{"denom":"ASSET11","index":"0.000013354722791997"},{"denom":"ASSET12","index":"0.000012025575872058"},{"denom":"ASSET13","index":"0.000004138592201887"},{"denom":"ASSET14","index":"0.000012474922822124"},{"denom":"ASSET15","index":"0.000008919578032571"},{"denom":"ASSET16","index":"0.000006218567480803"},{"denom":"ASSET17","index":"0.000004416250829168"},{"denom":"ASSET18","index":"0.000002103798060547"},{"denom":"ASSET2","index":"0.000004074517134053"},{"denom":"ASSET3","index":"0.000001191960556756"},{"denom":"ASSET4","index":"0.000011218887197534"},{"denom":"ASSET5","index":"0.000000924981107448"},{"denom":"ASSET6","index":"0.000003765642448085"},{"denom":"ASSET7","index":"0.000005766756105051"},{"denom":"ASSET8","index":"0.000007525534569569"},{"denom":"ASSET9","index":"0.000003250577479728"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003218229550028"},{"denom":"ASSET1","index":"0.000027301798081180"},{"denom":"ASSET10","index":"0.000021745417841688"},{"denom":"ASSET11","index":"0.000027119412726222"},{"denom":"ASSET12","index":"0.000025834540696398"},{"denom":"ASSET13","index":"0.000008516471999212"},{"denom":"ASSET14","index":"0.000024897496810197"},{"denom":"ASSET15","index":"0.000019595694306931"},{"denom":"ASSET16","index":"0.000012114595919920"},{"denom":"ASSET17","index":"0.000009493460517354"},{"denom":"ASSET18","index":"0.000003932937797970"},{"denom":"ASSET2","index":"0.000008264095290285"},{"denom":"ASSET3","index":"0.000002297232512411"},{"denom":"ASSET4","index":"0.000022135581489268"},{"denom":"ASSET5","index":"0.000001789675045728"},{"denom":"ASSET6","index":"0.000007223884768794"},{"denom":"ASSET7","index":"0.000011342725097550"},{"denom":"ASSET8","index":"0.000015481678980085"},{"denom":"ASSET9","index":"0.000006573861400446"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001621688869515"},{"denom":"ASSET1","index":"0.000013520143478358"},{"denom":"ASSET10","index":"0.000009419470546393"},{"denom":"ASSET11","index":"0.000013079418684764"},{"denom":"ASSET12","index":"0.000011778054243646"},{"denom":"ASSET13","index":"0.000004053107355591"},{"denom":"ASSET14","index":"0.000012218035825109"},{"denom":"ASSET15","index":"0.000008735715386011"},{"denom":"ASSET16","index":"0.000006090623412316"},{"denom":"ASSET17","index":"0.000004325494601547"},{"denom":"ASSET18","index":"0.000002060555632782"},{"denom":"ASSET2","index":"0.000003991049142665"},{"denom":"ASSET3","index":"0.000001167586257565"},{"denom":"ASSET4","index":"0.000010987648142487"},{"denom":"ASSET5","index":"0.000000905975587506"},{"denom":"ASSET6","index":"0.000003688190199343"},{"denom":"ASSET7","index":"0.000005648412194460"},{"denom":"ASSET8","index":"0.000007370434701640"},{"denom":"ASSET9","index":"0.000003183549162496"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003224207736427"},{"denom":"ASSET1","index":"0.000027358045975387"},{"denom":"ASSET10","index":"0.000021853454393362"},{"denom":"ASSET11","index":"0.000027191663823691"},{"denom":"ASSET12","index":"0.000025935625558190"},{"denom":"ASSET13","index":"0.000008541293337334"},{"denom":"ASSET14","index":"0.000024954691173737"},{"denom":"ASSET15","index":"0.000019681390400685"},{"denom":"ASSET16","index":"0.000012135703886829"},{"denom":"ASSET17","index":"0.000009530848033034"},{"denom":"ASSET18","index":"0.000003936224347496"},{"denom":"ASSET2","index":"0.000008286598878032"},{"denom":"ASSET3","index":"0.000002301038846536"},{"denom":"ASSET4","index":"0.000022179933336345"},{"denom":"ASSET5","index":"0.000001792519798769"},{"denom":"ASSET6","index":"0.000007234068845872"},{"denom":"ASSET7","index":"0.000011365474292791"},{"denom":"ASSET8","index":"0.000015527655320242"},{"denom":"ASSET9","index":"0.000006590765495457"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001684197417987"},{"denom":"ASSET1","index":"0.000014041270025306"},{"denom":"ASSET10","index":"0.000009782380002809"},{"denom":"ASSET11","index":"0.000013583439347888"},{"denom":"ASSET12","index":"0.000012231725730520"},{"denom":"ASSET13","index":"0.000004209525615418"},{"denom":"ASSET14","index":"0.000012688588478388"},{"denom":"ASSET15","index":"0.000009072403677468"},{"denom":"ASSET16","index":"0.000006325419612958"},{"denom":"ASSET17","index":"0.000004492161044183"},{"denom":"ASSET18","index":"0.000002139608271529"},{"denom":"ASSET2","index":"0.000004144674335530"},{"denom":"ASSET3","index":"0.000001212331762086"},{"denom":"ASSET4","index":"0.000011410921471639"},{"denom":"ASSET5","index":"0.000000940827523152"},{"denom":"ASSET6","index":"0.000003830097231595"},{"denom":"ASSET7","index":"0.000005866137041214"},{"denom":"ASSET8","index":"0.000007654386885887"},{"denom":"ASSET9","index":"0.000003305963379963"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003193080094990"},{"denom":"ASSET1","index":"0.000027069824276969"},{"denom":"ASSET10","index":"0.000021489349079139"},{"denom":"ASSET11","index":"0.000026870184080824"},{"denom":"ASSET12","index":"0.000025561356340007"},{"denom":"ASSET13","index":"0.000008435097288603"},{"denom":"ASSET14","index":"0.000024680442306089"},{"denom":"ASSET15","index":"0.000019377704768171"},{"denom":"ASSET16","index":"0.000012016988086595"},{"denom":"ASSET17","index":"0.000009392966467546"},{"denom":"ASSET18","index":"0.000003905368596850"},{"denom":"ASSET2","index":"0.000008189075060838"},{"denom":"ASSET3","index":"0.000002279664955012"},{"denom":"ASSET4","index":"0.000021948593995488"},{"denom":"ASSET5","index":"0.000001775351671947"},{"denom":"ASSET6","index":"0.000007168631437760"},{"denom":"ASSET7","index":"0.000011248752159293"},{"denom":"ASSET8","index":"0.000015334459676317"},{"denom":"ASSET9","index":"0.000006513651901550"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001677613648548"},{"denom":"ASSET1","index":"0.000013997394471820"},{"denom":"ASSET10","index":"0.000009752554992736"},{"denom":"ASSET11","index":"0.000013541183096442"},{"denom":"ASSET12","index":"0.000012193285851007"},{"denom":"ASSET13","index":"0.000004195070965406"},{"denom":"ASSET14","index":"0.000012649497226385"},{"denom":"ASSET15","index":"0.000009043353672830"},{"denom":"ASSET16","index":"0.000006306085420563"},{"denom":"ASSET17","index":"0.000004477092542912"},{"denom":"ASSET18","index":"0.000002131751335856"},{"denom":"ASSET2","index":"0.000004130786635239"},{"denom":"ASSET3","index":"0.000001208960144751"},{"denom":"ASSET4","index":"0.000011376252751467"},{"denom":"ASSET5","index":"0.000000937307007594"},{"denom":"ASSET6","index":"0.000003817659736684"},{"denom":"ASSET7","index":"0.000005847800357116"},{"denom":"ASSET8","index":"0.000007631172097229"},{"denom":"ASSET9","index":"0.000003295090343070"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003316222748087"},{"denom":"ASSET1","index":"0.000028147075207200"},{"denom":"ASSET10","index":"0.000022466702115272"},{"denom":"ASSET11","index":"0.000027971336509453"},{"denom":"ASSET12","index":"0.000026669877578580"},{"denom":"ASSET13","index":"0.000008784355829882"},{"denom":"ASSET14","index":"0.000025672864554615"},{"denom":"ASSET15","index":"0.000020235356040284"},{"denom":"ASSET16","index":"0.000012487172511964"},{"denom":"ASSET17","index":"0.000009799807931023"},{"denom":"ASSET18","index":"0.000004049727438870"},{"denom":"ASSET2","index":"0.000008522892941853"},{"denom":"ASSET3","index":"0.000002368075218536"},{"denom":"ASSET4","index":"0.000022820717384594"},{"denom":"ASSET5","index":"0.000001843591257654"},{"denom":"ASSET6","index":"0.000007443165294976"},{"denom":"ASSET7","index":"0.000011693499621126"},{"denom":"ASSET8","index":"0.000015972009373807"},{"denom":"ASSET9","index":"0.000006779069609364"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001520550536467"},{"denom":"ASSET1","index":"0.000012675827554874"},{"denom":"ASSET10","index":"0.000008831388003026"},{"denom":"ASSET11","index":"0.000012262725604616"},{"denom":"ASSET12","index":"0.000011042474271843"},{"denom":"ASSET13","index":"0.000003800233070086"},{"denom":"ASSET14","index":"0.000011455195131741"},{"denom":"ASSET15","index":"0.000008190012927118"},{"denom":"ASSET16","index":"0.000005710257954490"},{"denom":"ASSET17","index":"0.000004055182520937"},{"denom":"ASSET18","index":"0.000001931747034924"},{"denom":"ASSET2","index":"0.000003741926245004"},{"denom":"ASSET3","index":"0.000001094491513968"},{"denom":"ASSET4","index":"0.000010301253521611"},{"denom":"ASSET5","index":"0.000000849450412477"},{"denom":"ASSET6","index":"0.000003457632836431"},{"denom":"ASSET7","index":"0.000005295631642792"},{"denom":"ASSET8","index":"0.000006910311498182"},{"denom":"ASSET9","index":"0.000002984699699651"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003047858420945"},{"denom":"ASSET1","index":"0.000025863853767953"},{"denom":"ASSET10","index":"0.000020681482671570"},{"denom":"ASSET11","index":"0.000025712271525236"},{"denom":"ASSET12","index":"0.000024535470175220"},{"denom":"ASSET13","index":"0.000008077733573885"},{"denom":"ASSET14","index":"0.000023593590000343"},{"denom":"ASSET15","index":"0.000018621561303244"},{"denom":"ASSET16","index":"0.000011471343089677"},{"denom":"ASSET17","index":"0.000009016132124589"},{"denom":"ASSET18","index":"0.000003719208275283"},{"denom":"ASSET2","index":"0.000007835789085827"},{"denom":"ASSET3","index":"0.000002174729135607"},{"denom":"ASSET4","index":"0.000020967814383093"},{"denom":"ASSET5","index":"0.000001694402278429"},{"denom":"ASSET6","index":"0.000006836893759575"},{"denom":"ASSET7","index":"0.000010744095518390"},{"denom":"ASSET8","index":"0.000014684305897471"},{"denom":"ASSET9","index":"0.000006231971052532"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001765508823557"},{"denom":"ASSET1","index":"0.000014724618911480"},{"denom":"ASSET10","index":"0.000010258363403154"},{"denom":"ASSET11","index":"0.000014244524406828"},{"denom":"ASSET12","index":"0.000012826610887714"},{"denom":"ASSET13","index":"0.000004413772058893"},{"denom":"ASSET14","index":"0.000013305845007949"},{"denom":"ASSET15","index":"0.000009513270498085"},{"denom":"ASSET16","index":"0.000006632703470176"},{"denom":"ASSET17","index":"0.000004710604682736"},{"denom":"ASSET18","index":"0.000002243882559375"},{"denom":"ASSET2","index":"0.000004346662074372"},{"denom":"ASSET3","index":"0.000001271648168235"},{"denom":"ASSET4","index":"0.000011966226470776"},{"denom":"ASSET5","index":"0.000000986860926228"},{"denom":"ASSET6","index":"0.000004016274458267"},{"denom":"ASSET7","index":"0.000006150888196691"},{"denom":"ASSET8","index":"0.000008026526225616"},{"denom":"ASSET9","index":"0.000003466488815844"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003365151784209"},{"denom":"ASSET1","index":"0.000028538337865727"},{"denom":"ASSET10","index":"0.000022670552359626"},{"denom":"ASSET11","index":"0.000028331786642422"},{"denom":"ASSET12","index":"0.000026959391418936"},{"denom":"ASSET13","index":"0.000008894072871450"},{"denom":"ASSET14","index":"0.000026020188745878"},{"denom":"ASSET15","index":"0.000020439828986765"},{"denom":"ASSET16","index":"0.000012667128947757"},{"denom":"ASSET17","index":"0.000009907060013179"},{"denom":"ASSET18","index":"0.000004116201786219"},{"denom":"ASSET2","index":"0.000008634485522558"},{"denom":"ASSET3","index":"0.000002403102945281"},{"denom":"ASSET4","index":"0.000023139017263426"},{"denom":"ASSET5","index":"0.000001871649891727"},{"denom":"ASSET6","index":"0.000007555863827839"},{"denom":"ASSET7","index":"0.000011857581945748"},{"denom":"ASSET8","index":"0.000016169532559731"},{"denom":"ASSET9","index":"0.000006867789268222"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001833509758465"},{"denom":"ASSET1","index":"0.000015308139656127"},{"denom":"ASSET10","index":"0.000010661025831945"},{"denom":"ASSET11","index":"0.000014808091540182"},{"denom":"ASSET12","index":"0.000013334616425197"},{"denom":"ASSET13","index":"0.000004587108050268"},{"denom":"ASSET14","index":"0.000013827997232930"},{"denom":"ASSET15","index":"0.000009887618079284"},{"denom":"ASSET16","index":"0.000006893996691827"},{"denom":"ASSET17","index":"0.000004893804228047"},{"denom":"ASSET18","index":"0.000002326890566197"},{"denom":"ASSET2","index":"0.000004513767659929"},{"denom":"ASSET3","index":"0.000001320127026095"},{"denom":"ASSET4","index":"0.000012434529816496"},{"denom":"ASSET5","index":"0.000001020098156528"},{"denom":"ASSET6","index":"0.000004173734941087"},{"denom":"ASSET7","index":"0.000006393948575882"},{"denom":"ASSET8","index":"0.000008340802573961"},{"denom":"ASSET9","index":"0.000003600346434803"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003461123478470"},{"denom":"ASSET1","index":"0.000029368181297786"},{"denom":"ASSET10","index":"0.000023294808028239"},{"denom":"ASSET11","index":"0.000029147392384169"},{"denom":"ASSET12","index":"0.000027719461688447"},{"denom":"ASSET13","index":"0.000009147542663388"},{"denom":"ASSET14","index":"0.000026768604990580"},{"denom":"ASSET15","index":"0.000021008846141082"},{"denom":"ASSET16","index":"0.000013035302068339"},{"denom":"ASSET17","index":"0.000010182949549387"},{"denom":"ASSET18","index":"0.000004232564951180"},{"denom":"ASSET2","index":"0.000008877642147806"},{"denom":"ASSET3","index":"0.000002471921418528"},{"denom":"ASSET4","index":"0.000023806252184245"},{"denom":"ASSET5","index":"0.000001920199705662"},{"denom":"ASSET6","index":"0.000007776538212319"},{"denom":"ASSET7","index":"0.000012202060569359"},{"denom":"ASSET8","index":"0.000016628688342614"},{"denom":"ASSET9","index":"0.000007061722298848"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001580229076001"},{"denom":"ASSET1","index":"0.000013178675425859"},{"denom":"ASSET10","index":"0.000009181488308837"},{"denom":"ASSET11","index":"0.000012749045790152"},{"denom":"ASSET12","index":"0.000011480356468073"},{"denom":"ASSET13","index":"0.000003950572690002"},{"denom":"ASSET14","index":"0.000011909209196663"},{"denom":"ASSET15","index":"0.000008514902002442"},{"denom":"ASSET16","index":"0.000005936347281082"},{"denom":"ASSET17","index":"0.000004216274924019"},{"denom":"ASSET18","index":"0.000002008304897474"},{"denom":"ASSET2","index":"0.000003889973934875"},{"denom":"ASSET3","index":"0.000001137392019304"},{"denom":"ASSET4","index":"0.000010709664607998"},{"denom":"ASSET5","index":"0.000000883343392042"},{"denom":"ASSET6","index":"0.000003594749230410"},{"denom":"ASSET7","index":"0.000005505163831141"},{"denom":"ASSET8","index":"0.000007184060111002"},{"denom":"ASSET9","index":"0.000003102967025342"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003136420796654"},{"denom":"ASSET1","index":"0.000026617535879560"},{"denom":"ASSET10","index":"0.000021257162201233"},{"denom":"ASSET11","index":"0.000026454281403244"},{"denom":"ASSET12","index":"0.000025229520616223"},{"denom":"ASSET13","index":"0.000008309311482354"},{"denom":"ASSET14","index":"0.000024278363089230"},{"denom":"ASSET15","index":"0.000019144672836670"},{"denom":"ASSET16","index":"0.000011806881934189"},{"denom":"ASSET17","index":"0.000009271795054357"},{"denom":"ASSET18","index":"0.000003829937127836"},{"denom":"ASSET2","index":"0.000008061315465971"},{"denom":"ASSET3","index":"0.000002238409344787"},{"denom":"ASSET4","index":"0.000021579173085678"},{"denom":"ASSET5","index":"0.000001744155749232"},{"denom":"ASSET6","index":"0.000007037998659171"},{"denom":"ASSET7","index":"0.000011056982942661"},{"denom":"ASSET8","index":"0.000015105683491420"},{"denom":"ASSET9","index":"0.000006411626899884"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001065673750407"},{"denom":"ASSET1","index":"0.000008885137524612"},{"denom":"ASSET10","index":"0.000006190162379117"},{"denom":"ASSET11","index":"0.000008595321581390"},{"denom":"ASSET12","index":"0.000007740138401991"},{"denom":"ASSET13","index":"0.000002663662498568"},{"denom":"ASSET14","index":"0.000008029258508615"},{"denom":"ASSET15","index":"0.000005740999854868"},{"denom":"ASSET16","index":"0.000004002452113836"},{"denom":"ASSET17","index":"0.000002842492504350"},{"denom":"ASSET18","index":"0.000001354098020432"},{"denom":"ASSET2","index":"0.000002622608139264"},{"denom":"ASSET3","index":"0.000000767159849705"},{"denom":"ASSET4","index":"0.000007220696381306"},{"denom":"ASSET5","index":"0.000000595288209907"},{"denom":"ASSET6","index":"0.000002423598872130"},{"denom":"ASSET7","index":"0.000003711940334016"},{"denom":"ASSET8","index":"0.000004843718561268"},{"denom":"ASSET9","index":"0.000002092032733005"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000002559869929403"},{"denom":"ASSET1","index":"0.000021787096732684"},{"denom":"ASSET10","index":"0.000017783238471081"},{"denom":"ASSET11","index":"0.000021752938768967"},{"denom":"ASSET12","index":"0.000020940235345308"},{"denom":"ASSET13","index":"0.000006848308161575"},{"denom":"ASSET14","index":"0.000019904298850841"},{"denom":"ASSET15","index":"0.000015946274018453"},{"denom":"ASSET16","index":"0.000009638424477568"},{"denom":"ASSET17","index":"0.000007695902028378"},{"denom":"ASSET18","index":"0.000003102977872608"},{"denom":"ASSET2","index":"0.000006627591716064"},{"denom":"ASSET3","index":"0.000001824087350341"},{"denom":"ASSET4","index":"0.000017655906837434"},{"denom":"ASSET5","index":"0.000001421889695470"},{"denom":"ASSET6","index":"0.000005729615091854"},{"denom":"ASSET7","index":"0.000009042175373173"},{"denom":"ASSET8","index":"0.000012449153729005"},{"denom":"ASSET9","index":"0.000005268661072858"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001663945626017"},{"denom":"ASSET1","index":"0.000013874870096624"},{"denom":"ASSET10","index":"0.000009666844154779"},{"denom":"ASSET11","index":"0.000013422526194886"},{"denom":"ASSET12","index":"0.000012086742376498"},{"denom":"ASSET13","index":"0.000004159391889779"},{"denom":"ASSET14","index":"0.000012538614102973"},{"denom":"ASSET15","index":"0.000008964719539034"},{"denom":"ASSET16","index":"0.000006250183953344"},{"denom":"ASSET17","index":"0.000004438919645342"},{"denom":"ASSET18","index":"0.000002114400826704"},{"denom":"ASSET2","index":"0.000004095648229305"},{"denom":"ASSET3","index":"0.000001197908641659"},{"denom":"ASSET4","index":"0.000011275545275051"},{"denom":"ASSET5","index":"0.000000929713092403"},{"denom":"ASSET6","index":"0.000003784956906399"},{"denom":"ASSET7","index":"0.000005796423525818"},{"denom":"ASSET8","index":"0.000007563775534382"},{"denom":"ASSET9","index":"0.000003266980643136"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003299045378029"},{"denom":"ASSET1","index":"0.000027992490930804"},{"denom":"ASSET10","index":"0.000022352284005938"},{"denom":"ASSET11","index":"0.000027819914533732"},{"denom":"ASSET12","index":"0.000026530494002155"},{"denom":"ASSET13","index":"0.000008738242797579"},{"denom":"ASSET14","index":"0.000025532401567106"},{"denom":"ASSET15","index":"0.000020131602968729"},{"denom":"ASSET16","index":"0.000012417136212826"},{"denom":"ASSET17","index":"0.000009749421325842"},{"denom":"ASSET18","index":"0.000004027997856345"},{"denom":"ASSET2","index":"0.000008477931503293"},{"denom":"ASSET3","index":"0.000002354450357881"},{"denom":"ASSET4","index":"0.000022693933657862"},{"denom":"ASSET5","index":"0.000001834114741991"},{"denom":"ASSET6","index":"0.000007402245947993"},{"denom":"ASSET7","index":"0.000011628988518089"},{"denom":"ASSET8","index":"0.000015885667960333"},{"denom":"ASSET9","index":"0.000006742956926982"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001554670726054"},{"denom":"ASSET1","index":"0.000012963415617374"},{"denom":"ASSET10","index":"0.000009031685079156"},{"denom":"ASSET11","index":"0.000012540799003679"},{"denom":"ASSET12","index":"0.000011293255065955"},{"denom":"ASSET13","index":"0.000003886042255656"},{"denom":"ASSET14","index":"0.000011715237120170"},{"denom":"ASSET15","index":"0.000008376185136293"},{"denom":"ASSET16","index":"0.000005839850894644"},{"denom":"ASSET17","index":"0.000004147480761425"},{"denom":"ASSET18","index":"0.000001975383661309"},{"denom":"ASSET2","index":"0.000003826393664534"},{"denom":"ASSET3","index":"0.000001119362922759"},{"denom":"ASSET4","index":"0.000010534956487329"},{"denom":"ASSET5","index":"0.000000868711928150"},{"denom":"ASSET6","index":"0.000003536399982164"},{"denom":"ASSET7","index":"0.000005415965161990"},{"denom":"ASSET8","index":"0.000007067088929007"},{"denom":"ASSET9","index":"0.000003052231098907"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003157426180098"},{"denom":"ASSET1","index":"0.000026803913890418"},{"denom":"ASSET10","index":"0.000021467927303389"},{"denom":"ASSET11","index":"0.000026655124661377"},{"denom":"ASSET12","index":"0.000025453388278707"},{"denom":"ASSET13","index":"0.000008375182650914"},{"denom":"ASSET14","index":"0.000024453809207757"},{"denom":"ASSET15","index":"0.000019323681821282"},{"denom":"ASSET16","index":"0.000011885939188892"},{"denom":"ASSET17","index":"0.000009353763879690"},{"denom":"ASSET18","index":"0.000003851457527173"},{"denom":"ASSET2","index":"0.000008122633355733"},{"denom":"ASSET3","index":"0.000002252845423920"},{"denom":"ASSET4","index":"0.000021728796023940"},{"denom":"ASSET5","index":"0.000001755342604855"},{"denom":"ASSET6","index":"0.000007082922688985"},{"denom":"ASSET7","index":"0.000011133765978354"},{"denom":"ASSET8","index":"0.000015225414484063"},{"denom":"ASSET9","index":"0.000006459804222065"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001578706846766"},{"denom":"ASSET1","index":"0.000013164667632738"},{"denom":"ASSET10","index":"0.000009171819989970"},{"denom":"ASSET11","index":"0.000012734981690366"},{"denom":"ASSET12","index":"0.000011467468005207"},{"denom":"ASSET13","index":"0.000003946168668528"},{"denom":"ASSET14","index":"0.000011895957050803"},{"denom":"ASSET15","index":"0.000008505148486066"},{"denom":"ASSET16","index":"0.000005930623522158"},{"denom":"ASSET17","index":"0.000004211879752669"},{"denom":"ASSET18","index":"0.000002005998995588"},{"denom":"ASSET2","index":"0.000003886323829757"},{"denom":"ASSET3","index":"0.000001135855039864"},{"denom":"ASSET4","index":"0.000010697863378618"},{"denom":"ASSET5","index":"0.000000882112923477"},{"denom":"ASSET6","index":"0.000003590690326231"},{"denom":"ASSET7","index":"0.000005499740683011"},{"denom":"ASSET8","index":"0.000007176593065360"},{"denom":"ASSET9","index":"0.000003098765751537"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003185213515607"},{"denom":"ASSET1","index":"0.000027035699090666"},{"denom":"ASSET10","index":"0.000021635640181728"},{"denom":"ASSET11","index":"0.000026880669357351"},{"denom":"ASSET12","index":"0.000025658872180332"},{"denom":"ASSET13","index":"0.000008444958797633"},{"denom":"ASSET14","index":"0.000024662649108986"},{"denom":"ASSET15","index":"0.000019476753279332"},{"denom":"ASSET16","index":"0.000011989846651744"},{"denom":"ASSET17","index":"0.000009429633404312"},{"denom":"ASSET18","index":"0.000003886090392826"},{"denom":"ASSET2","index":"0.000008191890279929"},{"denom":"ASSET3","index":"0.000002271981699175"},{"denom":"ASSET4","index":"0.000021916623044014"},{"denom":"ASSET5","index":"0.000001770727550439"},{"denom":"ASSET6","index":"0.000007144791673859"},{"denom":"ASSET7","index":"0.000011230376410345"},{"denom":"ASSET8","index":"0.000015353061978158"},{"denom":"ASSET9","index":"0.000006513931773648"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001736464555496"},{"denom":"ASSET1","index":"0.000014486324003877"},{"denom":"ASSET10","index":"0.000010092542477093"},{"denom":"ASSET11","index":"0.000014014496766071"},{"denom":"ASSET12","index":"0.000012620063107870"},{"denom":"ASSET13","index":"0.000004342915393341"},{"denom":"ASSET14","index":"0.000013091890345676"},{"denom":"ASSET15","index":"0.000009359368553661"},{"denom":"ASSET16","index":"0.000006524897117620"},{"denom":"ASSET17","index":"0.000004634080157191"},{"denom":"ASSET18","index":"0.000002206537788701"},{"denom":"ASSET2","index":"0.000004276263218483"},{"denom":"ASSET3","index":"0.000001250605280877"},{"denom":"ASSET4","index":"0.000011772878885340"},{"denom":"ASSET5","index":"0.000000969964544635"},{"denom":"ASSET6","index":"0.000003951772367204"},{"denom":"ASSET7","index":"0.000006051315875212"},{"denom":"ASSET8","index":"0.000007896528716001"},{"denom":"ASSET9","index":"0.000003409784945337"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003356675502673"},{"denom":"ASSET1","index":"0.000028477076245214"},{"denom":"ASSET10","index":"0.000022663760086849"},{"denom":"ASSET11","index":"0.000028282539274294"},{"denom":"ASSET12","index":"0.000026934248109484"},{"denom":"ASSET13","index":"0.000008880550781135"},{"denom":"ASSET14","index":"0.000025969128454053"},{"denom":"ASSET15","index":"0.000020425731449718"},{"denom":"ASSET16","index":"0.000012636600959200"},{"denom":"ASSET17","index":"0.000009896936242996"},{"denom":"ASSET18","index":"0.000004102733083140"},{"denom":"ASSET2","index":"0.000008619316582261"},{"denom":"ASSET3","index":"0.000002396767404444"},{"denom":"ASSET4","index":"0.000023088672429632"},{"denom":"ASSET5","index":"0.000001866260713425"},{"denom":"ASSET6","index":"0.000007536521735823"},{"denom":"ASSET7","index":"0.000011831316132227"},{"denom":"ASSET8","index":"0.000016143846449802"},{"denom":"ASSET9","index":"0.000006854365607618"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001432199402946"},{"denom":"ASSET1","index":"0.000011943338809449"},{"denom":"ASSET10","index":"0.000008321234131428"},{"denom":"ASSET11","index":"0.000011554338026882"},{"denom":"ASSET12","index":"0.000010404248756685"},{"denom":"ASSET13","index":"0.000003580160245814"},{"denom":"ASSET14","index":"0.000010793249539252"},{"denom":"ASSET15","index":"0.000007717099003024"},{"denom":"ASSET16","index":"0.000005380388215223"},{"denom":"ASSET17","index":"0.000003821002469456"},{"denom":"ASSET18","index":"0.000001819847139312"},{"denom":"ASSET2","index":"0.000003525361874705"},{"denom":"ASSET3","index":"0.000001031021204577"},{"denom":"ASSET4","index":"0.000009706076917365"},{"denom":"ASSET5","index":"0.000000800326827437"},{"denom":"ASSET6","index":"0.000003258135250159"},{"denom":"ASSET7","index":"0.000004989357863356"},{"denom":"ASSET8","index":"0.000006510858315517"},{"denom":"ASSET9","index":"0.000002812306527182"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000002962853679956"},{"denom":"ASSET1","index":"0.000025162993314326"},{"denom":"ASSET10","index":"0.000020199688926412"},{"denom":"ASSET11","index":"0.000025035647772320"},{"denom":"ASSET12","index":"0.000023929456511577"},{"denom":"ASSET13","index":"0.000007867725037604"},{"denom":"ASSET14","index":"0.000022960507028012"},{"denom":"ASSET15","index":"0.000018173489333858"},{"denom":"ASSET16","index":"0.000011155286879957"},{"denom":"ASSET17","index":"0.000008793607250882"},{"denom":"ASSET18","index":"0.000003611579051495"},{"denom":"ASSET2","index":"0.000007628670547867"},{"denom":"ASSET3","index":"0.000002114031306235"},{"denom":"ASSET4","index":"0.000020398130246320"},{"denom":"ASSET5","index":"0.000001647096325587"},{"denom":"ASSET6","index":"0.000006645213242757"},{"denom":"ASSET7","index":"0.000010450616802650"},{"denom":"ASSET8","index":"0.000014303332598966"},{"denom":"ASSET9","index":"0.000006067112886031"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001597673370668"},{"denom":"ASSET1","index":"0.000013327099930964"},{"denom":"ASSET10","index":"0.000009285285696821"},{"denom":"ASSET11","index":"0.000012892979142852"},{"denom":"ASSET12","index":"0.000011609669101507"},{"denom":"ASSET13","index":"0.000003995544306884"},{"denom":"ASSET14","index":"0.000012043789889618"},{"denom":"ASSET15","index":"0.000008610289110917"},{"denom":"ASSET16","index":"0.000006002842621820"},{"denom":"ASSET17","index":"0.000004263637708946"},{"denom":"ASSET18","index":"0.000002030433278566"},{"denom":"ASSET2","index":"0.000003934304697275"},{"denom":"ASSET3","index":"0.000001149943780421"},{"denom":"ASSET4","index":"0.000010829884739162"},{"denom":"ASSET5","index":"0.000000892737420067"},{"denom":"ASSET6","index":"0.000003634911050302"},{"denom":"ASSET7","index":"0.000005567360953495"},{"denom":"ASSET8","index":"0.000007264378579749"},{"denom":"ASSET9","index":"0.000003138189772368"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003135234009226"},{"denom":"ASSET1","index":"0.000026602125077525"},{"denom":"ASSET10","index":"0.000021213712135644"},{"denom":"ASSET11","index":"0.000026430841190504"},{"denom":"ASSET12","index":"0.000025191219856579"},{"denom":"ASSET13","index":"0.000008300995957475"},{"denom":"ASSET14","index":"0.000024262534835813"},{"denom":"ASSET15","index":"0.000019110376679732"},{"denom":"ASSET16","index":"0.000011801461546978"},{"denom":"ASSET17","index":"0.000009257538829689"},{"denom":"ASSET18","index":"0.000003829421505073"},{"denom":"ASSET2","index":"0.000008055136326188"},{"denom":"ASSET3","index":"0.000002237228869924"},{"denom":"ASSET4","index":"0.000021566736915931"},{"denom":"ASSET5","index":"0.000001743257901616"},{"denom":"ASSET6","index":"0.000007036288319926"},{"denom":"ASSET7","index":"0.000011051703047857"},{"denom":"ASSET8","index":"0.000015089589803941"},{"denom":"ASSET9","index":"0.000006406386950018"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001689516061942"},{"denom":"ASSET1","index":"0.000014086551658080"},{"denom":"ASSET10","index":"0.000009813816295422"},{"denom":"ASSET11","index":"0.000013627312671286"},{"denom":"ASSET12","index":"0.000012271349136594"},{"denom":"ASSET13","index":"0.000004223185893030"},{"denom":"ASSET14","index":"0.000012729983861563"},{"denom":"ASSET15","index":"0.000009101391604066"},{"denom":"ASSET16","index":"0.000006345353421478"},{"denom":"ASSET17","index":"0.000004506584688828"},{"denom":"ASSET18","index":"0.000002146942263262"},{"denom":"ASSET2","index":"0.000004157925615959"},{"denom":"ASSET3","index":"0.000001216379053179"},{"denom":"ASSET4","index":"0.000011447740269489"},{"denom":"ASSET5","index":"0.000000943856970227"},{"denom":"ASSET6","index":"0.000003842500943451"},{"denom":"ASSET7","index":"0.000005884905911035"},{"denom":"ASSET8","index":"0.000007678959268655"},{"denom":"ASSET9","index":"0.000003316793155937"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003297864217859"},{"denom":"ASSET1","index":"0.000027973253972789"},{"denom":"ASSET10","index":"0.000022291630953866"},{"denom":"ASSET11","index":"0.000027789008146512"},{"denom":"ASSET12","index":"0.000026479178332828"},{"denom":"ASSET13","index":"0.000008727103479255"},{"denom":"ASSET14","index":"0.000025511286037616"},{"denom":"ASSET15","index":"0.000020085740117730"},{"denom":"ASSET16","index":"0.000012411485442612"},{"denom":"ASSET17","index":"0.000009730550155880"},{"denom":"ASSET18","index":"0.000004028926705548"},{"denom":"ASSET2","index":"0.000008468714781887"},{"denom":"ASSET3","index":"0.000002353891879987"},{"denom":"ASSET4","index":"0.000022679492169342"},{"denom":"ASSET5","index":"0.000001833514119464"},{"denom":"ASSET6","index":"0.000007400677249018"},{"denom":"ASSET7","index":"0.000011621769805761"},{"denom":"ASSET8","index":"0.000015864980999233"},{"denom":"ASSET9","index":"0.000006736116007098"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001411859688057"},{"denom":"ASSET1","index":"0.000011770485537623"},{"denom":"ASSET10","index":"0.000008200497469250"},{"denom":"ASSET11","index":"0.000011386615852852"},{"denom":"ASSET12","index":"0.000010253874969484"},{"denom":"ASSET13","index":"0.000003528347966974"},{"denom":"ASSET14","index":"0.000010637094027671"},{"denom":"ASSET15","index":"0.000007605174144562"},{"denom":"ASSET16","index":"0.000005302606662519"},{"denom":"ASSET17","index":"0.000003765826670265"},{"denom":"ASSET18","index":"0.000001793777493075"},{"denom":"ASSET2","index":"0.000003474345960472"},{"denom":"ASSET3","index":"0.000001016278724767"},{"denom":"ASSET4","index":"0.000009565512043233"},{"denom":"ASSET5","index":"0.000000788559420242"},{"denom":"ASSET6","index":"0.000003210842193807"},{"denom":"ASSET7","index":"0.000004917435724579"},{"denom":"ASSET8","index":"0.000006416479374940"},{"denom":"ASSET9","index":"0.000002771018622781"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000002930820438736"},{"denom":"ASSET1","index":"0.000024889799880283"},{"denom":"ASSET10","index":"0.000019988623694797"},{"denom":"ASSET11","index":"0.000024765615752571"},{"denom":"ASSET12","index":"0.000023676022623299"},{"denom":"ASSET13","index":"0.000007783195940338"},{"denom":"ASSET14","index":"0.000022712072914709"},{"denom":"ASSET15","index":"0.000017982209004670"},{"denom":"ASSET16","index":"0.000011033267632466"},{"denom":"ASSET17","index":"0.000008700651286884"},{"denom":"ASSET18","index":"0.000003571624768330"},{"denom":"ASSET2","index":"0.000007546215495169"},{"denom":"ASSET3","index":"0.000002090977414753"},{"denom":"ASSET4","index":"0.000020176663420937"},{"denom":"ASSET5","index":"0.000001628342560149"},{"denom":"ASSET6","index":"0.000006572371850885"},{"denom":"ASSET7","index":"0.000010337273058537"},{"denom":"ASSET8","index":"0.000014149515747938"},{"denom":"ASSET9","index":"0.000006000707920121"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001726304213109"},{"denom":"ASSET1","index":"0.000014431903221591"},{"denom":"ASSET10","index":"0.000010055058078201"},{"denom":"ASSET11","index":"0.000013959161452463"},{"denom":"ASSET12","index":"0.000012572806376704"},{"denom":"ASSET13","index":"0.000004323728090679"},{"denom":"ASSET14","index":"0.000013040236440562"},{"denom":"ASSET15","index":"0.000009322042750788"},{"denom":"ASSET16","index":"0.000006501527251832"},{"denom":"ASSET17","index":"0.000004615871880590"},{"denom":"ASSET18","index":"0.000002199045982237"},{"denom":"ASSET2","index":"0.000004259987627426"},{"denom":"ASSET3","index":"0.000001242939033438"},{"denom":"ASSET4","index":"0.000011728245238599"},{"denom":"ASSET5","index":"0.000000966730359341"},{"denom":"ASSET6","index":"0.000003935973605888"},{"denom":"ASSET7","index":"0.000006028785482704"},{"denom":"ASSET8","index":"0.000007866635506506"},{"denom":"ASSET9","index":"0.000003394179668236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003313075721980"},{"denom":"ASSET1","index":"0.000028138029356789"},{"denom":"ASSET10","index":"0.000022370607880245"},{"denom":"ASSET11","index":"0.000027937207217164"},{"denom":"ASSET12","index":"0.000026595598409551"},{"denom":"ASSET13","index":"0.000008769097729958"},{"denom":"ASSET14","index":"0.000025655242037122"},{"denom":"ASSET15","index":"0.000020162686714325"},{"denom":"ASSET16","index":"0.000012488922131836"},{"denom":"ASSET17","index":"0.000009772018779266"},{"denom":"ASSET18","index":"0.000004056016110298"},{"denom":"ASSET2","index":"0.000008514325121927"},{"denom":"ASSET3","index":"0.000002365037757716"},{"denom":"ASSET4","index":"0.000022813272666626"},{"denom":"ASSET5","index":"0.000001844445619129"},{"denom":"ASSET6","index":"0.000007446834645040"},{"denom":"ASSET7","index":"0.000011690909413493"},{"denom":"ASSET8","index":"0.000015945057917181"},{"denom":"ASSET9","index":"0.000006769080892636"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001630255611072"},{"denom":"ASSET1","index":"0.000013593541268721"},{"denom":"ASSET10","index":"0.000009470169531707"},{"denom":"ASSET11","index":"0.000013149994246609"},{"denom":"ASSET12","index":"0.000011841383661505"},{"denom":"ASSET13","index":"0.000004074904678306"},{"denom":"ASSET14","index":"0.000012284196334242"},{"denom":"ASSET15","index":"0.000008782818517308"},{"denom":"ASSET16","index":"0.000006123739432762"},{"denom":"ASSET17","index":"0.000004348816994942"},{"denom":"ASSET18","index":"0.000002071599585061"},{"denom":"ASSET2","index":"0.000004012484981486"},{"denom":"ASSET3","index":"0.000001173490300222"},{"denom":"ASSET4","index":"0.000011046817638451"},{"denom":"ASSET5","index":"0.000000910593224203"},{"denom":"ASSET6","index":"0.000003707729991128"},{"denom":"ASSET7","index":"0.000005678723711902"},{"denom":"ASSET8","index":"0.000007410319536635"},{"denom":"ASSET9","index":"0.000003200294573447"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003344718004914"},{"denom":"ASSET1","index":"0.000028399683918161"},{"denom":"ASSET10","index":"0.000022773943545696"},{"denom":"ASSET11","index":"0.000028249525692452"},{"denom":"ASSET12","index":"0.000026989510465266"},{"denom":"ASSET13","index":"0.000008877216029957"},{"denom":"ASSET14","index":"0.000025911788013611"},{"denom":"ASSET15","index":"0.000020494299775586"},{"denom":"ASSET16","index":"0.000012591463658113"},{"denom":"ASSET17","index":"0.000009918208342143"},{"denom":"ASSET18","index":"0.000004078542450859"},{"denom":"ASSET2","index":"0.000008608606683653"},{"denom":"ASSET3","index":"0.000002386103437058"},{"denom":"ASSET4","index":"0.000023022167148602"},{"denom":"ASSET5","index":"0.000001858883946943"},{"denom":"ASSET6","index":"0.000007501347044310"},{"denom":"ASSET7","index":"0.000011795380538461"},{"denom":"ASSET8","index":"0.000016137954986293"},{"denom":"ASSET9","index":"0.000006845854741756"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001401914217082"},{"denom":"ASSET1","index":"0.000011691084141249"},{"denom":"ASSET10","index":"0.000008144816837289"},{"denom":"ASSET11","index":"0.000011309282624399"},{"denom":"ASSET12","index":"0.000010184195671197"},{"denom":"ASSET13","index":"0.000003504785542706"},{"denom":"ASSET14","index":"0.000010565150621491"},{"denom":"ASSET15","index":"0.000007553913381055"},{"denom":"ASSET16","index":"0.000005266490546178"},{"denom":"ASSET17","index":"0.000003740131045332"},{"denom":"ASSET18","index":"0.000001781176034264"},{"denom":"ASSET2","index":"0.000003450605283109"},{"denom":"ASSET3","index":"0.000001009107335001"},{"denom":"ASSET4","index":"0.000009501016460336"},{"denom":"ASSET5","index":"0.000000783074064494"},{"denom":"ASSET6","index":"0.000003189016217240"},{"denom":"ASSET7","index":"0.000004883842462771"},{"denom":"ASSET8","index":"0.000006372953035143"},{"denom":"ASSET9","index":"0.000002752187874236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000002824624853437"},{"denom":"ASSET1","index":"0.000023976113690517"},{"denom":"ASSET10","index":"0.000019183481330878"},{"denom":"ASSET11","index":"0.000023837782846342"},{"denom":"ASSET12","index":"0.000022753084719682"},{"denom":"ASSET13","index":"0.000007489057952554"},{"denom":"ASSET14","index":"0.000021872315483076"},{"denom":"ASSET15","index":"0.000017271123733000"},{"denom":"ASSET16","index":"0.000010633084765839"},{"denom":"ASSET17","index":"0.000008361522972460"},{"denom":"ASSET18","index":"0.000003446219629870"},{"denom":"ASSET2","index":"0.000007263651822688"},{"denom":"ASSET3","index":"0.000002015414858276"},{"denom":"ASSET4","index":"0.000019437236646346"},{"denom":"ASSET5","index":"0.000001569802896992"},{"denom":"ASSET6","index":"0.000006336500403946"},{"denom":"ASSET7","index":"0.000009959182045961"},{"denom":"ASSET8","index":"0.000013614498977085"},{"denom":"ASSET9","index":"0.000005776799011181"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001454934724421"},{"denom":"ASSET1","index":"0.000012138554241533"},{"denom":"ASSET10","index":"0.000008457231031836"},{"denom":"ASSET11","index":"0.000011742676653726"},{"denom":"ASSET12","index":"0.000010575345305063"},{"denom":"ASSET13","index":"0.000003639028595615"},{"denom":"ASSET14","index":"0.000010969531108307"},{"denom":"ASSET15","index":"0.000007843113235366"},{"denom":"ASSET16","index":"0.000005467847708521"},{"denom":"ASSET17","index":"0.000003882645572727"},{"denom":"ASSET18","index":"0.000001849120527665"},{"denom":"ASSET2","index":"0.000003583199705027"},{"denom":"ASSET3","index":"0.000001047214644670"},{"denom":"ASSET4","index":"0.000009864795788485"},{"denom":"ASSET5","index":"0.000000813748374938"},{"denom":"ASSET6","index":"0.000003310822390339"},{"denom":"ASSET7","index":"0.000005070278336150"},{"denom":"ASSET8","index":"0.000006616569426988"},{"denom":"ASSET9","index":"0.000002857424127380"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003026822568793"},{"denom":"ASSET1","index":"0.000025710421285725"},{"denom":"ASSET10","index":"0.000020652297735472"},{"denom":"ASSET11","index":"0.000025583400849235"},{"denom":"ASSET12","index":"0.000024460820755928"},{"denom":"ASSET13","index":"0.000008041083722059"},{"denom":"ASSET14","index":"0.000023461074878675"},{"denom":"ASSET15","index":"0.000018578170233019"},{"denom":"ASSET16","index":"0.000011396689804799"},{"denom":"ASSET17","index":"0.000008988134494295"},{"denom":"ASSET18","index":"0.000003688816665807"},{"denom":"ASSET2","index":"0.000007796110853756"},{"denom":"ASSET3","index":"0.000002159003644915"},{"denom":"ASSET4","index":"0.000020841789260406"},{"denom":"ASSET5","index":"0.000001683251281734"},{"denom":"ASSET6","index":"0.000006788484398340"},{"denom":"ASSET7","index":"0.000010677121165375"},{"denom":"ASSET8","index":"0.000014616905179383"},{"denom":"ASSET9","index":"0.000006199084273401"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001547699786520"},{"denom":"ASSET1","index":"0.000012908880828127"},{"denom":"ASSET10","index":"0.000008993933542043"},{"denom":"ASSET11","index":"0.000012488059147042"},{"denom":"ASSET12","index":"0.000011245681057538"},{"denom":"ASSET13","index":"0.000003869751640144"},{"denom":"ASSET14","index":"0.000011665498390936"},{"denom":"ASSET15","index":"0.000008340103197445"},{"denom":"ASSET16","index":"0.000005815173110936"},{"denom":"ASSET17","index":"0.000004129877691221"},{"denom":"ASSET18","index":"0.000001966512772230"},{"denom":"ASSET2","index":"0.000003810495126579"},{"denom":"ASSET3","index":"0.000001114825933185"},{"denom":"ASSET4","index":"0.000010490411596498"},{"denom":"ASSET5","index":"0.000000864743358984"},{"denom":"ASSET6","index":"0.000003521242992563"},{"denom":"ASSET7","index":"0.000005392342734476"},{"denom":"ASSET8","index":"0.000007036459899001"},{"denom":"ASSET9","index":"0.000003039156102537"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003086703561215"},{"denom":"ASSET1","index":"0.000026199550261878"},{"denom":"ASSET10","index":"0.000020936384793003"},{"denom":"ASSET11","index":"0.000026042194398185"},{"denom":"ASSET12","index":"0.000024843424443974"},{"denom":"ASSET13","index":"0.000008180415813801"},{"denom":"ASSET14","index":"0.000023898307142718"},{"denom":"ASSET15","index":"0.000018852934413068"},{"denom":"ASSET16","index":"0.000011621232923996"},{"denom":"ASSET17","index":"0.000009129550402498"},{"denom":"ASSET18","index":"0.000003767892160935"},{"denom":"ASSET2","index":"0.000007936188126371"},{"denom":"ASSET3","index":"0.000002203575710986"},{"denom":"ASSET4","index":"0.000021240180347210"},{"denom":"ASSET5","index":"0.000001716192200569"},{"denom":"ASSET6","index":"0.000006926674957775"},{"denom":"ASSET7","index":"0.000010883333770048"},{"denom":"ASSET8","index":"0.000014871024805414"},{"denom":"ASSET9","index":"0.000006311583255107"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001511232509129"},{"denom":"ASSET1","index":"0.000012598757210652"},{"denom":"ASSET10","index":"0.000008777665278232"},{"denom":"ASSET11","index":"0.000012187849575766"},{"denom":"ASSET12","index":"0.000010975073643675"},{"denom":"ASSET13","index":"0.000003776959255615"},{"denom":"ASSET14","index":"0.000011385233267090"},{"denom":"ASSET15","index":"0.000008140359504707"},{"denom":"ASSET16","index":"0.000005675412369706"},{"denom":"ASSET17","index":"0.000004030784481533"},{"denom":"ASSET18","index":"0.000001920145446758"},{"denom":"ASSET2","index":"0.000003719113035170"},{"denom":"ASSET3","index":"0.000001087858016388"},{"denom":"ASSET4","index":"0.000010238531681628"},{"denom":"ASSET5","index":"0.000000844504951067"},{"denom":"ASSET6","index":"0.000003436614036185"},{"denom":"ASSET7","index":"0.000005263507386191"},{"denom":"ASSET8","index":"0.000006867991992072"},{"denom":"ASSET9","index":"0.000002966364157912"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003050294937135"},{"denom":"ASSET1","index":"0.000025887230915803"},{"denom":"ASSET10","index":"0.000020718160619670"},{"denom":"ASSET11","index":"0.000025739685005463"},{"denom":"ASSET12","index":"0.000024570727404900"},{"denom":"ASSET13","index":"0.000008086966483560"},{"denom":"ASSET14","index":"0.000023616194455668"},{"denom":"ASSET15","index":"0.000018651338246959"},{"denom":"ASSET16","index":"0.000011480437826441"},{"denom":"ASSET17","index":"0.000009029688158762"},{"denom":"ASSET18","index":"0.000003721440260869"},{"denom":"ASSET2","index":"0.000007844134626406"},{"denom":"ASSET3","index":"0.000002176540273945"},{"denom":"ASSET4","index":"0.000020986445628896"},{"denom":"ASSET5","index":"0.000001695800268231"},{"denom":"ASSET6","index":"0.000006841569437153"},{"denom":"ASSET7","index":"0.000010753447417762"},{"denom":"ASSET8","index":"0.000014701309289649"},{"denom":"ASSET9","index":"0.000006238283490477"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001535139489204"},{"denom":"ASSET1","index":"0.000012800845981431"},{"denom":"ASSET10","index":"0.000008918122145344"},{"denom":"ASSET11","index":"0.000012383184798277"},{"denom":"ASSET12","index":"0.000011151318949088"},{"denom":"ASSET13","index":"0.000003837555421617"},{"denom":"ASSET14","index":"0.000011567806926671"},{"denom":"ASSET15","index":"0.000008270512670342"},{"denom":"ASSET16","index":"0.000005766305379776"},{"denom":"ASSET17","index":"0.000004095074044376"},{"denom":"ASSET18","index":"0.000001950454261216"},{"denom":"ASSET2","index":"0.000003778308540299"},{"denom":"ASSET3","index":"0.000001105159647558"},{"denom":"ASSET4","index":"0.000010402813795010"},{"denom":"ASSET5","index":"0.000000857613272150"},{"denom":"ASSET6","index":"0.000003491459778273"},{"denom":"ASSET7","index":"0.000005347470991052"},{"denom":"ASSET8","index":"0.000006978226734264"},{"denom":"ASSET9","index":"0.000003013965111016"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000002944371933765"},{"denom":"ASSET1","index":"0.000024968433937291"},{"denom":"ASSET10","index":"0.000019851368221906"},{"denom":"ASSET11","index":"0.000024791952485266"},{"denom":"ASSET12","index":"0.000023600048189968"},{"denom":"ASSET13","index":"0.000007784111470281"},{"denom":"ASSET14","index":"0.000022766914870589"},{"denom":"ASSET15","index":"0.000017894900322998"},{"denom":"ASSET16","index":"0.000011081662183182"},{"denom":"ASSET17","index":"0.000008672317440622"},{"denom":"ASSET18","index":"0.000003599691097086"},{"denom":"ASSET2","index":"0.000007555380586873"},{"denom":"ASSET3","index":"0.000002101847815188"},{"denom":"ASSET4","index":"0.000020244169178497"},{"denom":"ASSET5","index":"0.000001637098640985"},{"denom":"ASSET6","index":"0.000006609166185649"},{"denom":"ASSET7","index":"0.000010374399402552"},{"denom":"ASSET8","index":"0.000014150620453773"},{"denom":"ASSET9","index":"0.000006009906313007"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001449310882227"},{"denom":"ASSET1","index":"0.000012082282763787"},{"denom":"ASSET10","index":"0.000008417588941675"},{"denom":"ASSET11","index":"0.000011688148164511"},{"denom":"ASSET12","index":"0.000010525234539176"},{"denom":"ASSET13","index":"0.000003621923721366"},{"denom":"ASSET14","index":"0.000010918286351091"},{"denom":"ASSET15","index":"0.000007806355476589"},{"denom":"ASSET16","index":"0.000005442630668295"},{"denom":"ASSET17","index":"0.000003865550877512"},{"denom":"ASSET18","index":"0.000001841279906781"},{"denom":"ASSET2","index":"0.000003566701565973"},{"denom":"ASSET3","index":"0.000001043265621984"},{"denom":"ASSET4","index":"0.000009818715786353"},{"denom":"ASSET5","index":"0.000000809924945764"},{"denom":"ASSET6","index":"0.000003295463332131"},{"denom":"ASSET7","index":"0.000005047413281659"},{"denom":"ASSET8","index":"0.000006586595514820"},{"denom":"ASSET9","index":"0.000002844482396421"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000002938303361264"},{"denom":"ASSET1","index":"0.000024939884544734"},{"denom":"ASSET10","index":"0.000019970621943114"},{"denom":"ASSET11","index":"0.000024800280810198"},{"denom":"ASSET12","index":"0.000023679745396670"},{"denom":"ASSET13","index":"0.000007792253675830"},{"denom":"ASSET14","index":"0.000022752532795075"},{"denom":"ASSET15","index":"0.000017976341528508"},{"denom":"ASSET16","index":"0.000011059313296089"},{"denom":"ASSET17","index":"0.000008702160495382"},{"denom":"ASSET18","index":"0.000003584018468858"},{"denom":"ASSET2","index":"0.000007557839698908"},{"denom":"ASSET3","index":"0.000002096442663552"},{"denom":"ASSET4","index":"0.000020217858094708"},{"denom":"ASSET5","index":"0.000001633684136995"},{"denom":"ASSET6","index":"0.000006589976909255"},{"denom":"ASSET7","index":"0.000010359339015905"},{"denom":"ASSET8","index":"0.000014165755580726"},{"denom":"ASSET9","index":"0.000006010291774725"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001731982701050"},{"denom":"ASSET1","index":"0.000014440617081118"},{"denom":"ASSET10","index":"0.000010060714066040"},{"denom":"ASSET11","index":"0.000013969585405988"},{"denom":"ASSET12","index":"0.000012579542501729"},{"denom":"ASSET13","index":"0.000004329188348588"},{"denom":"ASSET14","index":"0.000013049805772821"},{"denom":"ASSET15","index":"0.000009329961826155"},{"denom":"ASSET16","index":"0.000006505308583448"},{"denom":"ASSET17","index":"0.000004619645074851"},{"denom":"ASSET18","index":"0.000002200709164068"},{"denom":"ASSET2","index":"0.000004262337197306"},{"denom":"ASSET3","index":"0.000001247119753241"},{"denom":"ASSET4","index":"0.000011735066464260"},{"denom":"ASSET5","index":"0.000000967420683506"},{"denom":"ASSET6","index":"0.000003938839097420"},{"denom":"ASSET7","index":"0.000006032740100243"},{"denom":"ASSET8","index":"0.000007872299366576"},{"denom":"ASSET9","index":"0.000003400187866969"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003329715418659"},{"denom":"ASSET1","index":"0.000028238028843607"},{"denom":"ASSET10","index":"0.000022458342297172"},{"denom":"ASSET11","index":"0.000028040237741643"},{"denom":"ASSET12","index":"0.000026695793846360"},{"denom":"ASSET13","index":"0.000008804253880653"},{"denom":"ASSET14","index":"0.000025748953032298"},{"denom":"ASSET15","index":"0.000020243324641083"},{"denom":"ASSET16","index":"0.000012532507824147"},{"denom":"ASSET17","index":"0.000009809802042254"},{"denom":"ASSET18","index":"0.000004070975493464"},{"denom":"ASSET2","index":"0.000008545109234155"},{"denom":"ASSET3","index":"0.000002377197518329"},{"denom":"ASSET4","index":"0.000022894451839245"},{"denom":"ASSET5","index":"0.000001851122407848"},{"denom":"ASSET6","index":"0.000007473999475476"},{"denom":"ASSET7","index":"0.000011732969702935"},{"denom":"ASSET8","index":"0.000016005536556726"},{"denom":"ASSET9","index":"0.000006797137295338"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001649988907243"},{"denom":"ASSET1","index":"0.000013756519537767"},{"denom":"ASSET10","index":"0.000009584361794534"},{"denom":"ASSET11","index":"0.000013307506163009"},{"denom":"ASSET12","index":"0.000011983307415229"},{"denom":"ASSET13","index":"0.000004124070634826"},{"denom":"ASSET14","index":"0.000012431118612277"},{"denom":"ASSET15","index":"0.000008888300900330"},{"denom":"ASSET16","index":"0.000006196625007203"},{"denom":"ASSET17","index":"0.000004401172597026"},{"denom":"ASSET18","index":"0.000002096597926581"},{"denom":"ASSET2","index":"0.000004060355216185"},{"denom":"ASSET3","index":"0.000001187751577673"},{"denom":"ASSET4","index":"0.000011179050527108"},{"denom":"ASSET5","index":"0.000000922070303720"},{"denom":"ASSET6","index":"0.000003752597722375"},{"denom":"ASSET7","index":"0.000005747010543590"},{"denom":"ASSET8","index":"0.000007499184556200"},{"denom":"ASSET9","index":"0.000003238666751267"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003269082759145"},{"denom":"ASSET1","index":"0.000027736662456421"},{"denom":"ASSET10","index":"0.000022145815740722"},{"denom":"ASSET11","index":"0.000027564157079872"},{"denom":"ASSET12","index":"0.000026286254396013"},{"denom":"ASSET13","index":"0.000008658548128401"},{"denom":"ASSET14","index":"0.000025298253418871"},{"denom":"ASSET15","index":"0.000019946084058089"},{"denom":"ASSET16","index":"0.000012303266096103"},{"denom":"ASSET17","index":"0.000009659898104260"},{"denom":"ASSET18","index":"0.000003991565584036"},{"denom":"ASSET2","index":"0.000008399501371576"},{"denom":"ASSET3","index":"0.000002333103515211"},{"denom":"ASSET4","index":"0.000022486071398850"},{"denom":"ASSET5","index":"0.000001817550334619"},{"denom":"ASSET6","index":"0.000007334517845971"},{"denom":"ASSET7","index":"0.000011522603065826"},{"denom":"ASSET8","index":"0.000015739883934035"},{"denom":"ASSET9","index":"0.000006680430297789"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001707974867576"},{"denom":"ASSET1","index":"0.000014238090744503"},{"denom":"ASSET10","index":"0.000009920037235236"},{"denom":"ASSET11","index":"0.000013773690453356"},{"denom":"ASSET12","index":"0.000012403461252069"},{"denom":"ASSET13","index":"0.000004268385028930"},{"denom":"ASSET14","index":"0.000012866619831208"},{"denom":"ASSET15","index":"0.000009199844270355"},{"denom":"ASSET16","index":"0.000006414063379473"},{"denom":"ASSET17","index":"0.000004555220502875"},{"denom":"ASSET18","index":"0.000002169891734707"},{"denom":"ASSET2","index":"0.000004203195148489"},{"denom":"ASSET3","index":"0.000001229294888332"},{"denom":"ASSET4","index":"0.000011570893350426"},{"denom":"ASSET5","index":"0.000000954255678468"},{"denom":"ASSET6","index":"0.000003884075162326"},{"denom":"ASSET7","index":"0.000005948421376317"},{"denom":"ASSET8","index":"0.000007761941764609"},{"denom":"ASSET9","index":"0.000003352622422724"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003075387603983"},{"denom":"ASSET1","index":"0.000026047450678709"},{"denom":"ASSET10","index":"0.000020531243448578"},{"denom":"ASSET11","index":"0.000025816927992783"},{"denom":"ASSET12","index":"0.000024485469945303"},{"denom":"ASSET13","index":"0.000008098391373250"},{"denom":"ASSET14","index":"0.000023735883509134"},{"denom":"ASSET15","index":"0.000018540774078871"},{"denom":"ASSET16","index":"0.000011572711306393"},{"denom":"ASSET17","index":"0.000008997644319689"},{"denom":"ASSET18","index":"0.000003770348288081"},{"denom":"ASSET2","index":"0.000007868945206789"},{"denom":"ASSET3","index":"0.000002196489262864"},{"denom":"ASSET4","index":"0.000021122354693053"},{"denom":"ASSET5","index":"0.000001710501624761"},{"denom":"ASSET6","index":"0.000006909892735753"},{"denom":"ASSET7","index":"0.000010827333344051"},{"denom":"ASSET8","index":"0.000014723239896475"},{"denom":"ASSET9","index":"0.000006260042064096"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001779156074987"},{"denom":"ASSET1","index":"0.000014834764457923"},{"denom":"ASSET10","index":"0.000010335215703318"},{"denom":"ASSET11","index":"0.000014351450406057"},{"denom":"ASSET12","index":"0.000012923397473821"},{"denom":"ASSET13","index":"0.000004447014618532"},{"denom":"ASSET14","index":"0.000013405835956753"},{"denom":"ASSET15","index":"0.000009584853126417"},{"denom":"ASSET16","index":"0.000006682342108415"},{"denom":"ASSET17","index":"0.000004745583625211"},{"denom":"ASSET18","index":"0.000002260718988984"},{"denom":"ASSET2","index":"0.000004378720241638"},{"denom":"ASSET3","index":"0.000001280957351233"},{"denom":"ASSET4","index":"0.000012055708659691"},{"denom":"ASSET5","index":"0.000000993770740704"},{"denom":"ASSET6","index":"0.000004046879615447"},{"denom":"ASSET7","index":"0.000006197276918679"},{"denom":"ASSET8","index":"0.000008086754679418"},{"denom":"ASSET9","index":"0.000003492644479883"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003478645419875"},{"denom":"ASSET1","index":"0.000029510728520321"},{"denom":"ASSET10","index":"0.000023521700007579"},{"denom":"ASSET11","index":"0.000029317721838376"},{"denom":"ASSET12","index":"0.000027938200533330"},{"denom":"ASSET13","index":"0.000009206643656085"},{"denom":"ASSET14","index":"0.000026913511393693"},{"denom":"ASSET15","index":"0.000021192735957156"},{"denom":"ASSET16","index":"0.000013092928863665"},{"denom":"ASSET17","index":"0.000010265835619821"},{"denom":"ASSET18","index":"0.000004249633310572"},{"denom":"ASSET2","index":"0.000008933634051769"},{"denom":"ASSET3","index":"0.000002482776919113"},{"denom":"ASSET4","index":"0.000023925662277258"},{"denom":"ASSET5","index":"0.000001933519521756"},{"denom":"ASSET6","index":"0.000007806757132876"},{"denom":"ASSET7","index":"0.000012260200744601"},{"denom":"ASSET8","index":"0.000016737737824425"},{"denom":"ASSET9","index":"0.000007106044722519"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001752700098923"},{"denom":"ASSET1","index":"0.000014612940709519"},{"denom":"ASSET10","index":"0.000010180696541309"},{"denom":"ASSET11","index":"0.000014136053678762"},{"denom":"ASSET12","index":"0.000012730078503378"},{"denom":"ASSET13","index":"0.000004380628160175"},{"denom":"ASSET14","index":"0.000013205843447004"},{"denom":"ASSET15","index":"0.000009441241121853"},{"denom":"ASSET16","index":"0.000006583285198706"},{"denom":"ASSET17","index":"0.000004674614988548"},{"denom":"ASSET18","index":"0.000002226220868286"},{"denom":"ASSET2","index":"0.000004313302932304"},{"denom":"ASSET3","index":"0.000001261225935460"},{"denom":"ASSET4","index":"0.000011875048109410"},{"denom":"ASSET5","index":"0.000000979582065531"},{"denom":"ASSET6","index":"0.000003985653489996"},{"denom":"ASSET7","index":"0.000006105276080818"},{"denom":"ASSET8","index":"0.000007965696544335"},{"denom":"ASSET9","index":"0.000003440319144236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003327512121722"},{"denom":"ASSET1","index":"0.000028211822531533"},{"denom":"ASSET10","index":"0.000022399629444355"},{"denom":"ASSET11","index":"0.000028004032167971"},{"denom":"ASSET12","index":"0.000026643127370344"},{"denom":"ASSET13","index":"0.000008791339050068"},{"denom":"ASSET14","index":"0.000025722152469956"},{"denom":"ASSET15","index":"0.000020197596080044"},{"denom":"ASSET16","index":"0.000012523737733641"},{"denom":"ASSET17","index":"0.000009790102863953"},{"denom":"ASSET18","index":"0.000004069245825383"},{"denom":"ASSET2","index":"0.000008534453115749"},{"denom":"ASSET3","index":"0.000002375171252372"},{"denom":"ASSET4","index":"0.000022873545881432"},{"denom":"ASSET5","index":"0.000001850500835715"},{"denom":"ASSET6","index":"0.000007470212303630"},{"denom":"ASSET7","index":"0.000011723166108277"},{"denom":"ASSET8","index":"0.000015981595788329"},{"denom":"ASSET9","index":"0.000006788341225254"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001434713876400"},{"denom":"ASSET1","index":"0.000011974044460331"},{"denom":"ASSET10","index":"0.000008340728508476"},{"denom":"ASSET11","index":"0.000011582406348125"},{"denom":"ASSET12","index":"0.000010430757641934"},{"denom":"ASSET13","index":"0.000003588723493535"},{"denom":"ASSET14","index":"0.000010820456951604"},{"denom":"ASSET15","index":"0.000007735822117345"},{"denom":"ASSET16","index":"0.000005393748654249"},{"denom":"ASSET17","index":"0.000003829135007959"},{"denom":"ASSET18","index":"0.000001824413186071"},{"denom":"ASSET2","index":"0.000003534437022536"},{"denom":"ASSET3","index":"0.000001033381751515"},{"denom":"ASSET4","index":"0.000009730849926555"},{"denom":"ASSET5","index":"0.000000802664249770"},{"denom":"ASSET6","index":"0.000003264943470077"},{"denom":"ASSET7","index":"0.000005002110542043"},{"denom":"ASSET8","index":"0.000006526009335083"},{"denom":"ASSET9","index":"0.000002819018886872"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000002895048613815"},{"denom":"ASSET1","index":"0.000024589366099895"},{"denom":"ASSET10","index":"0.000019676065498265"},{"denom":"ASSET11","index":"0.000024447379266412"},{"denom":"ASSET12","index":"0.000023337478265694"},{"denom":"ASSET13","index":"0.000007679998629802"},{"denom":"ASSET14","index":"0.000022431328797509"},{"denom":"ASSET15","index":"0.000017714358679290"},{"denom":"ASSET16","index":"0.000010904445776568"},{"denom":"ASSET17","index":"0.000008574179211920"},{"denom":"ASSET18","index":"0.000003534399202209"},{"denom":"ASSET2","index":"0.000007450371795821"},{"denom":"ASSET3","index":"0.000002066219984895"},{"denom":"ASSET4","index":"0.000019933989143940"},{"denom":"ASSET5","index":"0.000001610899827710"},{"denom":"ASSET6","index":"0.000006497050827728"},{"denom":"ASSET7","index":"0.000010213894093182"},{"denom":"ASSET8","index":"0.000013962110633776"},{"denom":"ASSET9","index":"0.000005925048173997"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001401536005232"},{"denom":"ASSET1","index":"0.000011690786017211"},{"denom":"ASSET10","index":"0.000008143726832164"},{"denom":"ASSET11","index":"0.000011307987636928"},{"denom":"ASSET12","index":"0.000010184289165772"},{"denom":"ASSET13","index":"0.000003503840013080"},{"denom":"ASSET14","index":"0.000010564000462344"},{"denom":"ASSET15","index":"0.000007554093843178"},{"denom":"ASSET16","index":"0.000005266564812612"},{"denom":"ASSET17","index":"0.000003738458375190"},{"denom":"ASSET18","index":"0.000001781247301804"},{"denom":"ASSET2","index":"0.000003448272506265"},{"denom":"ASSET3","index":"0.000001009476373813"},{"denom":"ASSET4","index":"0.000009498956581716"},{"denom":"ASSET5","index":"0.000000781032179127"},{"denom":"ASSET6","index":"0.000003188957474460"},{"denom":"ASSET7","index":"0.000004883766432329"},{"denom":"ASSET8","index":"0.000006371740781496"},{"denom":"ASSET9","index":"0.000002750591587361"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003071913026336"},{"denom":"ASSET1","index":"0.000026115211920195"},{"denom":"ASSET10","index":"0.000021104918039272"},{"denom":"ASSET11","index":"0.000026018207650283"},{"denom":"ASSET12","index":"0.000024942011742431"},{"denom":"ASSET13","index":"0.000008182453133262"},{"denom":"ASSET14","index":"0.000023839798810024"},{"denom":"ASSET15","index":"0.000018963275072170"},{"denom":"ASSET16","index":"0.000011567273660047"},{"denom":"ASSET17","index":"0.000009164652819502"},{"denom":"ASSET18","index":"0.000003735860972186"},{"denom":"ASSET2","index":"0.000007925194415041"},{"denom":"ASSET3","index":"0.000002190810612048"},{"denom":"ASSET4","index":"0.000021165118890878"},{"denom":"ASSET5","index":"0.000001704606606646"},{"denom":"ASSET6","index":"0.000006884812645629"},{"denom":"ASSET7","index":"0.000010842612570084"},{"denom":"ASSET8","index":"0.000014874699612932"},{"denom":"ASSET9","index":"0.000006301602876980"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001534549585700"},{"denom":"ASSET1","index":"0.000012795681230217"},{"denom":"ASSET10","index":"0.000008914897664776"},{"denom":"ASSET11","index":"0.000012378406858633"},{"denom":"ASSET12","index":"0.000011146809898878"},{"denom":"ASSET13","index":"0.000003835934265229"},{"denom":"ASSET14","index":"0.000011563204872419"},{"denom":"ASSET15","index":"0.000008267660704848"},{"denom":"ASSET16","index":"0.000005764014475342"},{"denom":"ASSET17","index":"0.000004093597891939"},{"denom":"ASSET18","index":"0.000001950065161198"},{"denom":"ASSET2","index":"0.000003777014596322"},{"denom":"ASSET3","index":"0.000001104963641508"},{"denom":"ASSET4","index":"0.000010398442163960"},{"denom":"ASSET5","index":"0.000000857413092297"},{"denom":"ASSET6","index":"0.000003490330834180"},{"denom":"ASSET7","index":"0.000005345421006692"},{"denom":"ASSET8","index":"0.000006975385280099"},{"denom":"ASSET9","index":"0.000003012817696624"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003034954909236"},{"denom":"ASSET1","index":"0.000025752158165977"},{"denom":"ASSET10","index":"0.000020556858138008"},{"denom":"ASSET11","index":"0.000025591676311293"},{"denom":"ASSET12","index":"0.000024402528250789"},{"denom":"ASSET13","index":"0.000008038375291107"},{"denom":"ASSET14","index":"0.000023488313497799"},{"denom":"ASSET15","index":"0.000018516037809802"},{"denom":"ASSET16","index":"0.000011423945454084"},{"denom":"ASSET17","index":"0.000008967524527402"},{"denom":"ASSET18","index":"0.000003706330058793"},{"denom":"ASSET2","index":"0.000007798931182527"},{"denom":"ASSET3","index":"0.000002166419358500"},{"denom":"ASSET4","index":"0.000020877722621984"},{"denom":"ASSET5","index":"0.000001687498984799"},{"denom":"ASSET6","index":"0.000006810207932767"},{"denom":"ASSET7","index":"0.000010698180555138"},{"denom":"ASSET8","index":"0.000014612921845389"},{"denom":"ASSET9","index":"0.000006203015740356"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001658482037183"},{"denom":"ASSET1","index":"0.000013862588923046"},{"denom":"ASSET10","index":"0.000009655943522610"},{"denom":"ASSET11","index":"0.000013408077810815"},{"denom":"ASSET12","index":"0.000012073555821711"},{"denom":"ASSET13","index":"0.000004153457929856"},{"denom":"ASSET14","index":"0.000012528066933942"},{"denom":"ASSET15","index":"0.000008954835955871"},{"denom":"ASSET16","index":"0.000006242274956279"},{"denom":"ASSET17","index":"0.000004433900956551"},{"denom":"ASSET18","index":"0.000002112993149414"},{"denom":"ASSET2","index":"0.000004090600010079"},{"denom":"ASSET3","index":"0.000001194300475756"},{"denom":"ASSET4","index":"0.000011266073313811"},{"denom":"ASSET5","index":"0.000000928363122855"},{"denom":"ASSET6","index":"0.000003781145635794"},{"denom":"ASSET7","index":"0.000005787763844048"},{"denom":"ASSET8","index":"0.000007557456046990"},{"denom":"ASSET9","index":"0.000003263776603787"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003188277912377"},{"denom":"ASSET1","index":"0.000027072180177666"},{"denom":"ASSET10","index":"0.000021525590492702"},{"denom":"ASSET11","index":"0.000026879695640981"},{"denom":"ASSET12","index":"0.000025588321740665"},{"denom":"ASSET13","index":"0.000008437670891103"},{"denom":"ASSET14","index":"0.000024686413843557"},{"denom":"ASSET15","index":"0.000019403734038796"},{"denom":"ASSET16","index":"0.000012012351193227"},{"denom":"ASSET17","index":"0.000009402991763462"},{"denom":"ASSET18","index":"0.000003903246578743"},{"denom":"ASSET2","index":"0.000008191237466303"},{"denom":"ASSET3","index":"0.000002276140738265"},{"denom":"ASSET4","index":"0.000021950324608304"},{"denom":"ASSET5","index":"0.000001774065663090"},{"denom":"ASSET6","index":"0.000007165524818145"},{"denom":"ASSET7","index":"0.000011244820309610"},{"denom":"ASSET8","index":"0.000015343724796373"},{"denom":"ASSET9","index":"0.000006516357987660"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001453411320498"},{"denom":"ASSET1","index":"0.000012118137400313"},{"denom":"ASSET10","index":"0.000008442891188019"},{"denom":"ASSET11","index":"0.000011723343510399"},{"denom":"ASSET12","index":"0.000010556870017106"},{"denom":"ASSET13","index":"0.000003632917795231"},{"denom":"ASSET14","index":"0.000010951256903010"},{"denom":"ASSET15","index":"0.000007829943148627"},{"denom":"ASSET16","index":"0.000005459144789091"},{"denom":"ASSET17","index":"0.000003877120201363"},{"denom":"ASSET18","index":"0.000001846984198382"},{"denom":"ASSET2","index":"0.000003577158245830"},{"denom":"ASSET3","index":"0.000001046407310278"},{"denom":"ASSET4","index":"0.000009848276035312"},{"denom":"ASSET5","index":"0.000000811973000390"},{"denom":"ASSET6","index":"0.000003305686571013"},{"denom":"ASSET7","index":"0.000005062722883136"},{"denom":"ASSET8","index":"0.000006606082089893"},{"denom":"ASSET9","index":"0.000002853098111648"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000002979919393708"},{"denom":"ASSET1","index":"0.000025298333716476"},{"denom":"ASSET10","index":"0.000020286143685892"},{"denom":"ASSET11","index":"0.000025164674259360"},{"denom":"ASSET12","index":"0.000024041723171534"},{"denom":"ASSET13","index":"0.000007907785176595"},{"denom":"ASSET14","index":"0.000023082402053339"},{"denom":"ASSET15","index":"0.000018255332392862"},{"denom":"ASSET16","index":"0.000011216675450010"},{"denom":"ASSET17","index":"0.000008835128154455"},{"denom":"ASSET18","index":"0.000003633337151635"},{"denom":"ASSET2","index":"0.000007668586747858"},{"denom":"ASSET3","index":"0.000002126085354033"},{"denom":"ASSET4","index":"0.000020508686269066"},{"denom":"ASSET5","index":"0.000001656307666438"},{"denom":"ASSET6","index":"0.000006683025235204"},{"denom":"ASSET7","index":"0.000010507859389263"},{"denom":"ASSET8","index":"0.000014375637436113"},{"denom":"ASSET9","index":"0.000006098257618497"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001779729226299"},{"denom":"ASSET1","index":"0.000014840802182142"},{"denom":"ASSET10","index":"0.000010337989986643"},{"denom":"ASSET11","index":"0.000014356968690293"},{"denom":"ASSET12","index":"0.000012927350131463"},{"denom":"ASSET13","index":"0.000004449323065747"},{"denom":"ASSET14","index":"0.000013411183623312"},{"denom":"ASSET15","index":"0.000009589142170113"},{"denom":"ASSET16","index":"0.000006683709894939"},{"denom":"ASSET17","index":"0.000004745944603463"},{"denom":"ASSET18","index":"0.000002261131394068"},{"denom":"ASSET2","index":"0.000004378814667437"},{"denom":"ASSET3","index":"0.000001281307789972"},{"denom":"ASSET4","index":"0.000012059367435030"},{"denom":"ASSET5","index":"0.000000994411548574"},{"denom":"ASSET6","index":"0.000004048154592606"},{"denom":"ASSET7","index":"0.000006199876403090"},{"denom":"ASSET8","index":"0.000008089015212973"},{"denom":"ASSET9","index":"0.000003493812702447"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003433377044021"},{"denom":"ASSET1","index":"0.000029119719093870"},{"denom":"ASSET10","index":"0.000023168779363922"},{"denom":"ASSET11","index":"0.000028918871222836"},{"denom":"ASSET12","index":"0.000027536680421684"},{"denom":"ASSET13","index":"0.000009079853140421"},{"denom":"ASSET14","index":"0.000026553415276013"},{"denom":"ASSET15","index":"0.000020883272198610"},{"denom":"ASSET16","index":"0.000012920460029656"},{"denom":"ASSET17","index":"0.000010116347697920"},{"denom":"ASSET18","index":"0.000004196183907349"},{"denom":"ASSET2","index":"0.000008810148159861"},{"denom":"ASSET3","index":"0.000002451192479374"},{"denom":"ASSET4","index":"0.000023608026429735"},{"denom":"ASSET5","index":"0.000001908186346512"},{"denom":"ASSET6","index":"0.000007706415634871"},{"denom":"ASSET7","index":"0.000012098308533034"},{"denom":"ASSET8","index":"0.000016505861275643"},{"denom":"ASSET9","index":"0.000007009790471677"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001595670533734"},{"denom":"ASSET1","index":"0.000013304245337308"},{"denom":"ASSET10","index":"0.000009268754359880"},{"denom":"ASSET11","index":"0.000012870227612725"},{"denom":"ASSET12","index":"0.000011589729681675"},{"denom":"ASSET13","index":"0.000003988302473145"},{"denom":"ASSET14","index":"0.000012022582258004"},{"denom":"ASSET15","index":"0.000008595881243245"},{"denom":"ASSET16","index":"0.000005992940044003"},{"denom":"ASSET17","index":"0.000004256286571545"},{"denom":"ASSET18","index":"0.000002027357961809"},{"denom":"ASSET2","index":"0.000003927132189815"},{"denom":"ASSET3","index":"0.000001148836178358"},{"denom":"ASSET4","index":"0.000010811993222188"},{"denom":"ASSET5","index":"0.000000891338414244"},{"denom":"ASSET6","index":"0.000003628854236813"},{"denom":"ASSET7","index":"0.000005557757171166"},{"denom":"ASSET8","index":"0.000007252465306483"},{"denom":"ASSET9","index":"0.000003132501080646"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003118409098775"},{"denom":"ASSET1","index":"0.000026454243753489"},{"denom":"ASSET10","index":"0.000021084585905412"},{"denom":"ASSET11","index":"0.000026280950742513"},{"denom":"ASSET12","index":"0.000025043390497745"},{"denom":"ASSET13","index":"0.000008253298424938"},{"denom":"ASSET14","index":"0.000024125697910719"},{"denom":"ASSET15","index":"0.000018997425080839"},{"denom":"ASSET16","index":"0.000011737294217995"},{"denom":"ASSET17","index":"0.000009202973625129"},{"denom":"ASSET18","index":"0.000003809493270778"},{"denom":"ASSET2","index":"0.000008008868325931"},{"denom":"ASSET3","index":"0.000002225819587877"},{"denom":"ASSET4","index":"0.000021447702379813"},{"denom":"ASSET5","index":"0.000001733713847172"},{"denom":"ASSET6","index":"0.000006998355968525"},{"denom":"ASSET7","index":"0.000010990481127196"},{"denom":"ASSET8","index":"0.000015003824321723"},{"denom":"ASSET9","index":"0.000006370091157596"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001536288093705"},{"denom":"ASSET1","index":"0.000012808796131863"},{"denom":"ASSET10","index":"0.000008924322337818"},{"denom":"ASSET11","index":"0.000012391382492026"},{"denom":"ASSET12","index":"0.000011158327625467"},{"denom":"ASSET13","index":"0.000003840018305497"},{"denom":"ASSET14","index":"0.000011575273312793"},{"denom":"ASSET15","index":"0.000008276208110044"},{"denom":"ASSET16","index":"0.000005770322413488"},{"denom":"ASSET17","index":"0.000004097860139074"},{"denom":"ASSET18","index":"0.000001951829923499"},{"denom":"ASSET2","index":"0.000003781056289108"},{"denom":"ASSET3","index":"0.000001105771783560"},{"denom":"ASSET4","index":"0.000010409603607822"},{"denom":"ASSET5","index":"0.000000858224905226"},{"denom":"ASSET6","index":"0.000003494201399847"},{"denom":"ASSET7","index":"0.000005351036963607"},{"denom":"ASSET8","index":"0.000006982787369562"},{"denom":"ASSET9","index":"0.000003015953933577"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003103831608428"},{"denom":"ASSET1","index":"0.000026343132935309"},{"denom":"ASSET10","index":"0.000021085436521682"},{"denom":"ASSET11","index":"0.000026194005406126"},{"denom":"ASSET12","index":"0.000025005394550642"},{"denom":"ASSET13","index":"0.000008229918727938"},{"denom":"ASSET14","index":"0.000024032248358707"},{"denom":"ASSET15","index":"0.000018981699828973"},{"denom":"ASSET16","index":"0.000011682673521897"},{"denom":"ASSET17","index":"0.000009189132473525"},{"denom":"ASSET18","index":"0.000003786361913516"},{"denom":"ASSET2","index":"0.000007982150766688"},{"denom":"ASSET3","index":"0.000002214601198569"},{"denom":"ASSET4","index":"0.000021356131094847"},{"denom":"ASSET5","index":"0.000001725369734459"},{"denom":"ASSET6","index":"0.000006962131899100"},{"denom":"ASSET7","index":"0.000010942547729288"},{"denom":"ASSET8","index":"0.000014960973970884"},{"denom":"ASSET9","index":"0.000006348281537724"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001156201861882"},{"denom":"ASSET1","index":"0.000009641528249827"},{"denom":"ASSET10","index":"0.000006717693720376"},{"denom":"ASSET11","index":"0.000009327193051790"},{"denom":"ASSET12","index":"0.000008399128436016"},{"denom":"ASSET13","index":"0.000002890504654704"},{"denom":"ASSET14","index":"0.000008712888981039"},{"denom":"ASSET15","index":"0.000006229813312455"},{"denom":"ASSET16","index":"0.000004343227471224"},{"denom":"ASSET17","index":"0.000003084737373052"},{"denom":"ASSET18","index":"0.000001469387753892"},{"denom":"ASSET2","index":"0.000002846256372714"},{"denom":"ASSET3","index":"0.000000832672215639"},{"denom":"ASSET4","index":"0.000007835393830396"},{"denom":"ASSET5","index":"0.000000645909986459"},{"denom":"ASSET6","index":"0.000002630186839877"},{"denom":"ASSET7","index":"0.000004027742967162"},{"denom":"ASSET8","index":"0.000005256351108664"},{"denom":"ASSET9","index":"0.000002269879400812"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000002648545180722"},{"denom":"ASSET1","index":"0.000022528915692996"},{"denom":"ASSET10","index":"0.000018297756458480"},{"denom":"ASSET11","index":"0.000022469822082599"},{"denom":"ASSET12","index":"0.000021584227648624"},{"denom":"ASSET13","index":"0.000007070243338634"},{"denom":"ASSET14","index":"0.000020574684608302"},{"denom":"ASSET15","index":"0.000016423497937791"},{"denom":"ASSET16","index":"0.000009972839292196"},{"denom":"ASSET17","index":"0.000007932645550822"},{"denom":"ASSET18","index":"0.000003216131666673"},{"denom":"ASSET2","index":"0.000006846442901912"},{"denom":"ASSET3","index":"0.000001888119307859"},{"denom":"ASSET4","index":"0.000018258669735553"},{"denom":"ASSET5","index":"0.000001471345302008"},{"denom":"ASSET6","index":"0.000005932348598922"},{"denom":"ASSET7","index":"0.000009352074075404"},{"denom":"ASSET8","index":"0.000012853047191550"},{"denom":"ASSET9","index":"0.000005442948627063"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001638829976996"},{"denom":"ASSET1","index":"0.000013663699511091"},{"denom":"ASSET10","index":"0.000009519748943981"},{"denom":"ASSET11","index":"0.000013218199388741"},{"denom":"ASSET12","index":"0.000011902774883924"},{"denom":"ASSET13","index":"0.000004095984811686"},{"denom":"ASSET14","index":"0.000012347548252404"},{"denom":"ASSET15","index":"0.000008827879259679"},{"denom":"ASSET16","index":"0.000006154878525580"},{"denom":"ASSET17","index":"0.000004371424528441"},{"denom":"ASSET18","index":"0.000002082149837736"},{"denom":"ASSET2","index":"0.000004033483978861"},{"denom":"ASSET3","index":"0.000001179521531115"},{"denom":"ASSET4","index":"0.000011104072380722"},{"denom":"ASSET5","index":"0.000000915709876282"},{"denom":"ASSET6","index":"0.000003726793845693"},{"denom":"ASSET7","index":"0.000005707924895490"},{"denom":"ASSET8","index":"0.000007448500414296"},{"denom":"ASSET9","index":"0.000003217339382778"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003133427860009"},{"denom":"ASSET1","index":"0.000026571363581284"},{"denom":"ASSET10","index":"0.000021118003104150"},{"denom":"ASSET11","index":"0.000026381510155653"},{"denom":"ASSET12","index":"0.000025108485590780"},{"denom":"ASSET13","index":"0.000008282355352591"},{"denom":"ASSET14","index":"0.000024227637307493"},{"denom":"ASSET15","index":"0.000019037535386694"},{"denom":"ASSET16","index":"0.000011793447009555"},{"denom":"ASSET17","index":"0.000009226841180516"},{"denom":"ASSET18","index":"0.000003831770888939"},{"denom":"ASSET2","index":"0.000008040278303534"},{"denom":"ASSET3","index":"0.000002236402387063"},{"denom":"ASSET4","index":"0.000021543810534784"},{"denom":"ASSET5","index":"0.000001742508705183"},{"denom":"ASSET6","index":"0.000007033989161296"},{"denom":"ASSET7","index":"0.000011040340871930"},{"denom":"ASSET8","index":"0.000015056795520064"},{"denom":"ASSET9","index":"0.000006395464292965"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001556422065682"},{"denom":"ASSET1","index":"0.000012975233747354"},{"denom":"ASSET10","index":"0.000009039925804131"},{"denom":"ASSET11","index":"0.000012551842294036"},{"denom":"ASSET12","index":"0.000011303196313064"},{"denom":"ASSET13","index":"0.000003889859143149"},{"denom":"ASSET14","index":"0.000011725391745328"},{"denom":"ASSET15","index":"0.000008383310245172"},{"denom":"ASSET16","index":"0.000005844954893688"},{"denom":"ASSET17","index":"0.000004150990406731"},{"denom":"ASSET18","index":"0.000001977421476890"},{"denom":"ASSET2","index":"0.000003830058090421"},{"denom":"ASSET3","index":"0.000001120273054448"},{"denom":"ASSET4","index":"0.000010544520290781"},{"denom":"ASSET5","index":"0.000000869507306673"},{"denom":"ASSET6","index":"0.000003539424974160"},{"denom":"ASSET7","index":"0.000005420766093000"},{"denom":"ASSET8","index":"0.000007073268516732"},{"denom":"ASSET9","index":"0.000003055036447059"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003102345998156"},{"denom":"ASSET1","index":"0.000026324295521459"},{"denom":"ASSET10","index":"0.000021034709957123"},{"denom":"ASSET11","index":"0.000026165624152899"},{"denom":"ASSET12","index":"0.000024960753498443"},{"denom":"ASSET13","index":"0.000008219480216908"},{"denom":"ASSET14","index":"0.000024012126304297"},{"denom":"ASSET15","index":"0.000018942125813395"},{"denom":"ASSET16","index":"0.000011676379885795"},{"denom":"ASSET17","index":"0.000009172744202097"},{"denom":"ASSET18","index":"0.000003786686743681"},{"denom":"ASSET2","index":"0.000007973892542195"},{"denom":"ASSET3","index":"0.000002213622154517"},{"denom":"ASSET4","index":"0.000021341514997764"},{"denom":"ASSET5","index":"0.000001724677267981"},{"denom":"ASSET6","index":"0.000006959760131783"},{"denom":"ASSET7","index":"0.000010935767858794"},{"denom":"ASSET8","index":"0.000014942141973689"},{"denom":"ASSET9","index":"0.000006341977499472"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001602535700795"},{"denom":"ASSET1","index":"0.000013360208994045"},{"denom":"ASSET10","index":"0.000009307956057468"},{"denom":"ASSET11","index":"0.000012924500245282"},{"denom":"ASSET12","index":"0.000011638378499862"},{"denom":"ASSET13","index":"0.000004005127453862"},{"denom":"ASSET14","index":"0.000012073279383206"},{"denom":"ASSET15","index":"0.000008632311279566"},{"denom":"ASSET16","index":"0.000006018597363935"},{"denom":"ASSET17","index":"0.000004274146638048"},{"denom":"ASSET18","index":"0.000002036090141777"},{"denom":"ASSET2","index":"0.000003943729682095"},{"denom":"ASSET3","index":"0.000001153631816872"},{"denom":"ASSET4","index":"0.000010857441929150"},{"denom":"ASSET5","index":"0.000000895384171592"},{"denom":"ASSET6","index":"0.000003644280900498"},{"denom":"ASSET7","index":"0.000005581542172809"},{"denom":"ASSET8","index":"0.000007283176031543"},{"denom":"ASSET9","index":"0.000003145827937606"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003144114236048"},{"denom":"ASSET1","index":"0.000026672683120621"},{"denom":"ASSET10","index":"0.000021269722635007"},{"denom":"ASSET11","index":"0.000026500587720899"},{"denom":"ASSET12","index":"0.000025258297912053"},{"denom":"ASSET13","index":"0.000008323039503604"},{"denom":"ASSET14","index":"0.000024326015412045"},{"denom":"ASSET15","index":"0.000019162234595686"},{"denom":"ASSET16","index":"0.000011833945147558"},{"denom":"ASSET17","index":"0.000009281867675434"},{"denom":"ASSET18","index":"0.000003840349431676"},{"denom":"ASSET2","index":"0.000008076055447193"},{"denom":"ASSET3","index":"0.000002244145529651"},{"denom":"ASSET4","index":"0.000021624555086447"},{"denom":"ASSET5","index":"0.000001748086313596"},{"denom":"ASSET6","index":"0.000007055400333314"},{"denom":"ASSET7","index":"0.000011081362186058"},{"denom":"ASSET8","index":"0.000015130336137492"},{"denom":"ASSET9","index":"0.000006423586371910"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001633811359009"},{"denom":"ASSET1","index":"0.000013620164108551"},{"denom":"ASSET10","index":"0.000009487838038290"},{"denom":"ASSET11","index":"0.000013174776703502"},{"denom":"ASSET12","index":"0.000011864685946211"},{"denom":"ASSET13","index":"0.000004082355776036"},{"denom":"ASSET14","index":"0.000012307900729772"},{"denom":"ASSET15","index":"0.000008799117026580"},{"denom":"ASSET16","index":"0.000006135483082238"},{"denom":"ASSET17","index":"0.000004356106083529"},{"denom":"ASSET18","index":"0.000002074853521082"},{"denom":"ASSET2","index":"0.000004019349752882"},{"denom":"ASSET3","index":"0.000001175388225032"},{"denom":"ASSET4","index":"0.000011067333860098"},{"denom":"ASSET5","index":"0.000000912501024979"},{"denom":"ASSET6","index":"0.000003715182744556"},{"denom":"ASSET7","index":"0.000005690095677188"},{"denom":"ASSET8","index":"0.000007423847624648"},{"denom":"ASSET9","index":"0.000003206789316354"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003109600829404"},{"denom":"ASSET1","index":"0.000026362702045617"},{"denom":"ASSET10","index":"0.000020937844947102"},{"denom":"ASSET11","index":"0.000026169598808926"},{"denom":"ASSET12","index":"0.000024901798461360"},{"denom":"ASSET13","index":"0.000008215149609138"},{"denom":"ASSET14","index":"0.000024035954930107"},{"denom":"ASSET15","index":"0.000018878331344314"},{"denom":"ASSET16","index":"0.000011701775976010"},{"denom":"ASSET17","index":"0.000009149505282332"},{"denom":"ASSET18","index":"0.000003801954966508"},{"denom":"ASSET2","index":"0.000007974718303805"},{"denom":"ASSET3","index":"0.000002219037761573"},{"denom":"ASSET4","index":"0.000021373555319687"},{"denom":"ASSET5","index":"0.000001728657323000"},{"denom":"ASSET6","index":"0.000006980294033305"},{"denom":"ASSET7","index":"0.000010954522542925"},{"denom":"ASSET8","index":"0.000014935013269095"},{"denom":"ASSET9","index":"0.000006344057182602"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001356454583190"},{"denom":"ASSET1","index":"0.000011307707773056"},{"denom":"ASSET10","index":"0.000007878355411964"},{"denom":"ASSET11","index":"0.000010938987301217"},{"denom":"ASSET12","index":"0.000009850463994830"},{"denom":"ASSET13","index":"0.000003389876593037"},{"denom":"ASSET14","index":"0.000010218764511690"},{"denom":"ASSET15","index":"0.000007305956775156"},{"denom":"ASSET16","index":"0.000005094053899100"},{"denom":"ASSET17","index":"0.000003617492191826"},{"denom":"ASSET18","index":"0.000001723075280133"},{"denom":"ASSET2","index":"0.000003337802175602"},{"denom":"ASSET3","index":"0.000000976395326909"},{"denom":"ASSET4","index":"0.000009189454857387"},{"denom":"ASSET5","index":"0.000000758018737665"},{"denom":"ASSET6","index":"0.000003084569323074"},{"denom":"ASSET7","index":"0.000004724073562323"},{"denom":"ASSET8","index":"0.000006164519141376"},{"denom":"ASSET9","index":"0.000002662514568862"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000002920257070141"},{"denom":"ASSET1","index":"0.000024811653868653"},{"denom":"ASSET10","index":"0.000020012294768332"},{"denom":"ASSET11","index":"0.000024710629923001"},{"denom":"ASSET12","index":"0.000023666550441425"},{"denom":"ASSET13","index":"0.000007769918885884"},{"denom":"ASSET14","index":"0.000022647790193256"},{"denom":"ASSET15","index":"0.000017987461600930"},{"denom":"ASSET16","index":"0.000010993196459757"},{"denom":"ASSET17","index":"0.000008697266331114"},{"denom":"ASSET18","index":"0.000003553540715950"},{"denom":"ASSET2","index":"0.000007529733395993"},{"denom":"ASSET3","index":"0.000002082581454906"},{"denom":"ASSET4","index":"0.000020111524804667"},{"denom":"ASSET5","index":"0.000001623122955496"},{"denom":"ASSET6","index":"0.000006544727800067"},{"denom":"ASSET7","index":"0.000010303065547743"},{"denom":"ASSET8","index":"0.000014124873274804"},{"denom":"ASSET9","index":"0.000005987532811110"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001730803097805"},{"denom":"ASSET1","index":"0.000014429128492036"},{"denom":"ASSET10","index":"0.000010053081326419"},{"denom":"ASSET11","index":"0.000013956042311970"},{"denom":"ASSET12","index":"0.000012568515161896"},{"denom":"ASSET13","index":"0.000004324123072683"},{"denom":"ASSET14","index":"0.000013038716670133"},{"denom":"ASSET15","index":"0.000009320374681681"},{"denom":"ASSET16","index":"0.000006499165632259"},{"denom":"ASSET17","index":"0.000004615474927481"},{"denom":"ASSET18","index":"0.000002198119934213"},{"denom":"ASSET2","index":"0.000004257775620601"},{"denom":"ASSET3","index":"0.000001243293558590"},{"denom":"ASSET4","index":"0.000011726190987631"},{"denom":"ASSET5","index":"0.000000966365062941"},{"denom":"ASSET6","index":"0.000003934692375677"},{"denom":"ASSET7","index":"0.000006026079452192"},{"denom":"ASSET8","index":"0.000007863615407695"},{"denom":"ASSET9","index":"0.000003395258743528"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003241945367060"},{"denom":"ASSET1","index":"0.000027480716546724"},{"denom":"ASSET10","index":"0.000021780901079221"},{"denom":"ASSET11","index":"0.000027265989011084"},{"denom":"ASSET12","index":"0.000025921947969478"},{"denom":"ASSET13","index":"0.000008556984130745"},{"denom":"ASSET14","index":"0.000025051754134356"},{"denom":"ASSET15","index":"0.000019643848931612"},{"denom":"ASSET16","index":"0.000012200322352703"},{"denom":"ASSET17","index":"0.000009524928673174"},{"denom":"ASSET18","index":"0.000003966981346299"},{"denom":"ASSET2","index":"0.000008309018225650"},{"denom":"ASSET3","index":"0.000002312540225621"},{"denom":"ASSET4","index":"0.000022282443818183"},{"denom":"ASSET5","index":"0.000001802193647755"},{"denom":"ASSET6","index":"0.000007278646216530"},{"denom":"ASSET7","index":"0.000011418356902196"},{"denom":"ASSET8","index":"0.000015557459098515"},{"denom":"ASSET9","index":"0.000006608754258977"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001631665384825"},{"denom":"ASSET1","index":"0.000013602742609312"},{"denom":"ASSET10","index":"0.000009477179623123"},{"denom":"ASSET11","index":"0.000013159027954757"},{"denom":"ASSET12","index":"0.000011849393704263"},{"denom":"ASSET13","index":"0.000004077627053980"},{"denom":"ASSET14","index":"0.000012292493795584"},{"denom":"ASSET15","index":"0.000008788868801652"},{"denom":"ASSET16","index":"0.000006127810000788"},{"denom":"ASSET17","index":"0.000004351722256101"},{"denom":"ASSET18","index":"0.000002072921786447"},{"denom":"ASSET2","index":"0.000004015556167401"},{"denom":"ASSET3","index":"0.000001174430339134"},{"denom":"ASSET4","index":"0.000011054148880171"},{"denom":"ASSET5","index":"0.000000911397275215"},{"denom":"ASSET6","index":"0.000003710118240373"},{"denom":"ASSET7","index":"0.000005682866219766"},{"denom":"ASSET8","index":"0.000007415319974879"},{"denom":"ASSET9","index":"0.000003202489009539"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003079719434352"},{"denom":"ASSET1","index":"0.000026105925494605"},{"denom":"ASSET10","index":"0.000020711970439773"},{"denom":"ASSET11","index":"0.000025910008103106"},{"denom":"ASSET12","index":"0.000024641613628664"},{"denom":"ASSET13","index":"0.000008133110770201"},{"denom":"ASSET14","index":"0.000023800542954419"},{"denom":"ASSET15","index":"0.000018678884312278"},{"denom":"ASSET16","index":"0.000011589749383737"},{"denom":"ASSET17","index":"0.000009055208366452"},{"denom":"ASSET18","index":"0.000003767697278786"},{"denom":"ASSET2","index":"0.000007896757003962"},{"denom":"ASSET3","index":"0.000002198611212202"},{"denom":"ASSET4","index":"0.000021166859181475"},{"denom":"ASSET5","index":"0.000001712166144109"},{"denom":"ASSET6","index":"0.000006913910929446"},{"denom":"ASSET7","index":"0.000010848237821893"},{"denom":"ASSET8","index":"0.000014785764472138"},{"denom":"ASSET9","index":"0.000006281127943464"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001520990142264"},{"denom":"ASSET1","index":"0.000012680102108631"},{"denom":"ASSET10","index":"0.000008834326429376"},{"denom":"ASSET11","index":"0.000012266893306329"},{"denom":"ASSET12","index":"0.000011046354389007"},{"denom":"ASSET13","index":"0.000003801591675587"},{"denom":"ASSET14","index":"0.000011458856247250"},{"denom":"ASSET15","index":"0.000008193128168148"},{"denom":"ASSET16","index":"0.000005712107994187"},{"denom":"ASSET17","index":"0.000004056798480773"},{"denom":"ASSET18","index":"0.000001932431584420"},{"denom":"ASSET2","index":"0.000003743268790745"},{"denom":"ASSET3","index":"0.000001095056346905"},{"denom":"ASSET4","index":"0.000010304770071444"},{"denom":"ASSET5","index":"0.000000849746758541"},{"denom":"ASSET6","index":"0.000003459077279153"},{"denom":"ASSET7","index":"0.000005297485303768"},{"denom":"ASSET8","index":"0.000006912499005837"},{"denom":"ASSET9","index":"0.000002985778231863"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003063170165442"},{"denom":"ASSET1","index":"0.000025996358951928"},{"denom":"ASSET10","index":"0.000020799618544072"},{"denom":"ASSET11","index":"0.000025846936295403"},{"denom":"ASSET12","index":"0.000024670295822131"},{"denom":"ASSET13","index":"0.000008120644896033"},{"denom":"ASSET14","index":"0.000023715222729701"},{"denom":"ASSET15","index":"0.000018725986369791"},{"denom":"ASSET16","index":"0.000011529047312284"},{"denom":"ASSET17","index":"0.000009065966880203"},{"denom":"ASSET18","index":"0.000003737409049681"},{"denom":"ASSET2","index":"0.000007876841198043"},{"denom":"ASSET3","index":"0.000002185992003768"},{"denom":"ASSET4","index":"0.000021074917159843"},{"denom":"ASSET5","index":"0.000001702800306431"},{"denom":"ASSET6","index":"0.000006871093729972"},{"denom":"ASSET7","index":"0.000010798830402478"},{"denom":"ASSET8","index":"0.000014762015379742"},{"denom":"ASSET9","index":"0.000006264517424621"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001519669987195"},{"denom":"ASSET1","index":"0.000012676623405048"},{"denom":"ASSET10","index":"0.000008831600766261"},{"denom":"ASSET11","index":"0.000012262448940742"},{"denom":"ASSET12","index":"0.000011042591812037"},{"denom":"ASSET13","index":"0.000003799690110356"},{"denom":"ASSET14","index":"0.000011454705706870"},{"denom":"ASSET15","index":"0.000008189733375059"},{"denom":"ASSET16","index":"0.000005709838012905"},{"denom":"ASSET17","index":"0.000004055200725152"},{"denom":"ASSET18","index":"0.000001931783882027"},{"denom":"ASSET2","index":"0.000003741994165079"},{"denom":"ASSET3","index":"0.000001094162390780"},{"denom":"ASSET4","index":"0.000010301817086076"},{"denom":"ASSET5","index":"0.000000848954623355"},{"denom":"ASSET6","index":"0.000003457635577645"},{"denom":"ASSET7","index":"0.000005295663548598"},{"denom":"ASSET8","index":"0.000006910119731604"},{"denom":"ASSET9","index":"0.000002984734883325"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003051401969864"},{"denom":"ASSET1","index":"0.000025903543471827"},{"denom":"ASSET10","index":"0.000020717104247015"},{"denom":"ASSET11","index":"0.000025751820078700"},{"denom":"ASSET12","index":"0.000024575704795191"},{"denom":"ASSET13","index":"0.000008089460542782"},{"denom":"ASSET14","index":"0.000023629519286555"},{"denom":"ASSET15","index":"0.000018652475785738"},{"denom":"ASSET16","index":"0.000011487598582804"},{"denom":"ASSET17","index":"0.000009031027466449"},{"denom":"ASSET18","index":"0.000003724432134289"},{"denom":"ASSET2","index":"0.000007847588407204"},{"denom":"ASSET3","index":"0.000002177732310384"},{"denom":"ASSET4","index":"0.000021000151540181"},{"denom":"ASSET5","index":"0.000001696165098739"},{"denom":"ASSET6","index":"0.000006846477479182"},{"denom":"ASSET7","index":"0.000010760324594985"},{"denom":"ASSET8","index":"0.000014706911787677"},{"denom":"ASSET9","index":"0.000006241583848480"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001392192847149"},{"denom":"ASSET1","index":"0.000011611450847386"},{"denom":"ASSET10","index":"0.000008088781067478"},{"denom":"ASSET11","index":"0.000011231761889073"},{"denom":"ASSET12","index":"0.000010115195100551"},{"denom":"ASSET13","index":"0.000003480482117873"},{"denom":"ASSET14","index":"0.000010492071548062"},{"denom":"ASSET15","index":"0.000007502372565194"},{"denom":"ASSET16","index":"0.000005229863836918"},{"denom":"ASSET17","index":"0.000003713920514466"},{"denom":"ASSET18","index":"0.000001769069294661"},{"denom":"ASSET2","index":"0.000003427044412629"},{"denom":"ASSET3","index":"0.000001002660101028"},{"denom":"ASSET4","index":"0.000009435973741790"},{"denom":"ASSET5","index":"0.000000777659236842"},{"denom":"ASSET6","index":"0.000003166887163415"},{"denom":"ASSET7","index":"0.000004850174878604"},{"denom":"ASSET8","index":"0.000006329555560626"},{"denom":"ASSET9","index":"0.000002733760499857"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000002834261839987"},{"denom":"ASSET1","index":"0.000024063735726127"},{"denom":"ASSET10","index":"0.000019278012414561"},{"denom":"ASSET11","index":"0.000023930766794440"},{"denom":"ASSET12","index":"0.000022855511266190"},{"denom":"ASSET13","index":"0.000007519422832827"},{"denom":"ASSET14","index":"0.000021953268691937"},{"denom":"ASSET15","index":"0.000017352048046781"},{"denom":"ASSET16","index":"0.000010669562284438"},{"denom":"ASSET17","index":"0.000008398158415340"},{"denom":"ASSET18","index":"0.000003456710779118"},{"denom":"ASSET2","index":"0.000007292324829772"},{"denom":"ASSET3","index":"0.000002022818722752"},{"denom":"ASSET4","index":"0.000019507505991506"},{"denom":"ASSET5","index":"0.000001575196067099"},{"denom":"ASSET6","index":"0.000006357416996111"},{"denom":"ASSET7","index":"0.000009994574317511"},{"denom":"ASSET8","index":"0.000013669954492341"},{"denom":"ASSET9","index":"0.000005799591528398"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001553840185331"},{"denom":"ASSET1","index":"0.000012958259817171"},{"denom":"ASSET10","index":"0.000009028099224953"},{"denom":"ASSET11","index":"0.000012533831248030"},{"denom":"ASSET12","index":"0.000011286922457332"},{"denom":"ASSET13","index":"0.000003884600463327"},{"denom":"ASSET14","index":"0.000011708953124953"},{"denom":"ASSET15","index":"0.000008371074208317"},{"denom":"ASSET16","index":"0.000005836492301072"},{"denom":"ASSET17","index":"0.000004143573827548"},{"denom":"ASSET18","index":"0.000001973472951431"},{"denom":"ASSET2","index":"0.000003824652925312"},{"denom":"ASSET3","index":"0.000001117422108587"},{"denom":"ASSET4","index":"0.000010529185576831"},{"denom":"ASSET5","index":"0.000000868040350447"},{"denom":"ASSET6","index":"0.000003534506841323"},{"denom":"ASSET7","index":"0.000005412063731931"},{"denom":"ASSET8","index":"0.000007064217879605"},{"denom":"ASSET9","index":"0.000003050130734168"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000002875427361068"},{"denom":"ASSET1","index":"0.000024372739255487"},{"denom":"ASSET10","index":"0.000019284464921318"},{"denom":"ASSET11","index":"0.000024174413552556"},{"denom":"ASSET12","index":"0.000022964657814992"},{"denom":"ASSET13","index":"0.000007586106071195"},{"denom":"ASSET14","index":"0.000022214775035212"},{"denom":"ASSET15","index":"0.000017399266119679"},{"denom":"ASSET16","index":"0.000010822432031544"},{"denom":"ASSET17","index":"0.000008437405253940"},{"denom":"ASSET18","index":"0.000003520101477575"},{"denom":"ASSET2","index":"0.000007366931162610"},{"denom":"ASSET3","index":"0.000002051556015935"},{"denom":"ASSET4","index":"0.000019761188522524"},{"denom":"ASSET5","index":"0.000001598363223465"},{"denom":"ASSET6","index":"0.000006458982880806"},{"denom":"ASSET7","index":"0.000010127316932433"},{"denom":"ASSET8","index":"0.000013792105044122"},{"denom":"ASSET9","index":"0.000005859963066840"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001468329025254"},{"denom":"ASSET1","index":"0.000012248466172689"},{"denom":"ASSET10","index":"0.000008533242661533"},{"denom":"ASSET11","index":"0.000011849890220686"},{"denom":"ASSET12","index":"0.000010670683647662"},{"denom":"ASSET13","index":"0.000003671855143322"},{"denom":"ASSET14","index":"0.000011069259599665"},{"denom":"ASSET15","index":"0.000007913694549611"},{"denom":"ASSET16","index":"0.000005518108516848"},{"denom":"ASSET17","index":"0.000003917609227717"},{"denom":"ASSET18","index":"0.000001866904977257"},{"denom":"ASSET2","index":"0.000003616095813249"},{"denom":"ASSET3","index":"0.000001057362111013"},{"denom":"ASSET4","index":"0.000009954072998206"},{"denom":"ASSET5","index":"0.000000819868668110"},{"denom":"ASSET6","index":"0.000003341429483630"},{"denom":"ASSET7","index":"0.000005117467404472"},{"denom":"ASSET8","index":"0.000006676663486141"},{"denom":"ASSET9","index":"0.000002882963880808"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000002995432004660"},{"denom":"ASSET1","index":"0.000025434255671185"},{"denom":"ASSET10","index":"0.000020381248485322"},{"denom":"ASSET11","index":"0.000025297016742096"},{"denom":"ASSET12","index":"0.000024161457271020"},{"denom":"ASSET13","index":"0.000007948725545453"},{"denom":"ASSET14","index":"0.000023205881885085"},{"denom":"ASSET15","index":"0.000018343715148864"},{"denom":"ASSET16","index":"0.000011277889207663"},{"denom":"ASSET17","index":"0.000008877556775335"},{"denom":"ASSET18","index":"0.000003654253802028"},{"denom":"ASSET2","index":"0.000007709102798424"},{"denom":"ASSET3","index":"0.000002137627884226"},{"denom":"ASSET4","index":"0.000020618696770430"},{"denom":"ASSET5","index":"0.000001664440090804"},{"denom":"ASSET6","index":"0.000006720260763181"},{"denom":"ASSET7","index":"0.000010565171316359"},{"denom":"ASSET8","index":"0.000014449121165534"},{"denom":"ASSET9","index":"0.000006129217088192"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001484659776814"},{"denom":"ASSET1","index":"0.000012377911876883"},{"denom":"ASSET10","index":"0.000008623797972416"},{"denom":"ASSET11","index":"0.000011974339842928"},{"denom":"ASSET12","index":"0.000010782780641408"},{"denom":"ASSET13","index":"0.000003710691597017"},{"denom":"ASSET14","index":"0.000011185714112019"},{"denom":"ASSET15","index":"0.000007997367331102"},{"denom":"ASSET16","index":"0.000005575935127370"},{"denom":"ASSET17","index":"0.000003959731301514"},{"denom":"ASSET18","index":"0.000001886316120734"},{"denom":"ASSET2","index":"0.000003653859459324"},{"denom":"ASSET3","index":"0.000001068955039306"},{"denom":"ASSET4","index":"0.000010059288371675"},{"denom":"ASSET5","index":"0.000000829493784981"},{"denom":"ASSET6","index":"0.000003376084404307"},{"denom":"ASSET7","index":"0.000005171085966725"},{"denom":"ASSET8","index":"0.000006747698865199"},{"denom":"ASSET9","index":"0.000002914403105969"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000002967027008461"},{"denom":"ASSET1","index":"0.000025180120058697"},{"denom":"ASSET10","index":"0.000020126919929476"},{"denom":"ASSET11","index":"0.000025029678796477"},{"denom":"ASSET12","index":"0.000023880507059092"},{"denom":"ASSET13","index":"0.000007862872062626"},{"denom":"ASSET14","index":"0.000022968832134984"},{"denom":"ASSET15","index":"0.000018123195207046"},{"denom":"ASSET16","index":"0.000011168095360491"},{"denom":"ASSET17","index":"0.000008775186029853"},{"denom":"ASSET18","index":"0.000003621217117579"},{"denom":"ASSET2","index":"0.000007627534970337"},{"denom":"ASSET3","index":"0.000002117298518473"},{"denom":"ASSET4","index":"0.000020413769751333"},{"denom":"ASSET5","index":"0.000001649183760435"},{"denom":"ASSET6","index":"0.000006656038319196"},{"denom":"ASSET7","index":"0.000010459966878994"},{"denom":"ASSET8","index":"0.000014293861494285"},{"denom":"ASSET9","index":"0.000006066597621916"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001508631993599"},{"denom":"ASSET1","index":"0.000012578103553994"},{"denom":"ASSET10","index":"0.000008763023138279"},{"denom":"ASSET11","index":"0.000012169014387632"},{"denom":"ASSET12","index":"0.000010956555546150"},{"denom":"ASSET13","index":"0.000003770654442897"},{"denom":"ASSET14","index":"0.000011367495794714"},{"denom":"ASSET15","index":"0.000008126250861227"},{"denom":"ASSET16","index":"0.000005666162616450"},{"denom":"ASSET17","index":"0.000004024252704398"},{"denom":"ASSET18","index":"0.000001915870077761"},{"denom":"ASSET2","index":"0.000003713270894674"},{"denom":"ASSET3","index":"0.000001084734169631"},{"denom":"ASSET4","index":"0.000010221675912459"},{"denom":"ASSET5","index":"0.000000842242401334"},{"denom":"ASSET6","index":"0.000003430055317962"},{"denom":"ASSET7","index":"0.000005255222367887"},{"denom":"ASSET8","index":"0.000006856408471522"},{"denom":"ASSET9","index":"0.000002961731521176"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000002968383248598"},{"denom":"ASSET1","index":"0.000025185581850199"},{"denom":"ASSET10","index":"0.000020091193699906"},{"denom":"ASSET11","index":"0.000025026167595767"},{"denom":"ASSET12","index":"0.000023854952987524"},{"denom":"ASSET13","index":"0.000007859725566891"},{"denom":"ASSET14","index":"0.000022971118914045"},{"denom":"ASSET15","index":"0.000018098517255117"},{"denom":"ASSET16","index":"0.000011173004258039"},{"denom":"ASSET17","index":"0.000008766603022733"},{"denom":"ASSET18","index":"0.000003624559740525"},{"denom":"ASSET2","index":"0.000007626317523237"},{"denom":"ASSET3","index":"0.000002117313008939"},{"denom":"ASSET4","index":"0.000020418576076670"},{"denom":"ASSET5","index":"0.000001649450966157"},{"denom":"ASSET6","index":"0.000006660362585584"},{"denom":"ASSET7","index":"0.000010463779822658"},{"denom":"ASSET8","index":"0.000014287735496216"},{"denom":"ASSET9","index":"0.000006065360072421"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001603618851190"},{"denom":"ASSET1","index":"0.000013373450792115"},{"denom":"ASSET10","index":"0.000009317368604669"},{"denom":"ASSET11","index":"0.000012937408123124"},{"denom":"ASSET12","index":"0.000011650307554501"},{"denom":"ASSET13","index":"0.000004008493774333"},{"denom":"ASSET14","index":"0.000012085243516211"},{"denom":"ASSET15","index":"0.000008640063748266"},{"denom":"ASSET16","index":"0.000006023807734317"},{"denom":"ASSET17","index":"0.000004278530351069"},{"denom":"ASSET18","index":"0.000002037448105618"},{"denom":"ASSET2","index":"0.000003947624873839"},{"denom":"ASSET3","index":"0.000001154295694818"},{"denom":"ASSET4","index":"0.000010867865506336"},{"denom":"ASSET5","index":"0.000000896432898181"},{"denom":"ASSET6","index":"0.000003647707200497"},{"denom":"ASSET7","index":"0.000005586658358043"},{"denom":"ASSET8","index":"0.000007289880864586"},{"denom":"ASSET9","index":"0.000003148582216449"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003259379166935"},{"denom":"ASSET1","index":"0.000027669546155668"},{"denom":"ASSET10","index":"0.000022163157427920"},{"denom":"ASSET11","index":"0.000027516665793422"},{"denom":"ASSET12","index":"0.000026276569409586"},{"denom":"ASSET13","index":"0.000008645229164029"},{"denom":"ASSET14","index":"0.000025243382728696"},{"denom":"ASSET15","index":"0.000019947981783747"},{"denom":"ASSET16","index":"0.000012268920188963"},{"denom":"ASSET17","index":"0.000009656339783182"},{"denom":"ASSET18","index":"0.000003975233530089"},{"denom":"ASSET2","index":"0.000008385350610200"},{"denom":"ASSET3","index":"0.000002325230588439"},{"denom":"ASSET4","index":"0.000022430515898086"},{"denom":"ASSET5","index":"0.000001812256369527"},{"denom":"ASSET6","index":"0.000007311001085881"},{"denom":"ASSET7","index":"0.000011492885803011"},{"denom":"ASSET8","index":"0.000015716897251793"},{"denom":"ASSET9","index":"0.000006668589151432"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001669758803356"},{"denom":"ASSET1","index":"0.000013919924903508"},{"denom":"ASSET10","index":"0.000009698114015232"},{"denom":"ASSET11","index":"0.000013466332119255"},{"denom":"ASSET12","index":"0.000012126099781115"},{"denom":"ASSET13","index":"0.000004173211661392"},{"denom":"ASSET14","index":"0.000012579297449702"},{"denom":"ASSET15","index":"0.000008994017898909"},{"denom":"ASSET16","index":"0.000006270880730729"},{"denom":"ASSET17","index":"0.000004453348668392"},{"denom":"ASSET18","index":"0.000002121376009280"},{"denom":"ASSET2","index":"0.000004109202923545"},{"denom":"ASSET3","index":"0.000001201941855137"},{"denom":"ASSET4","index":"0.000011312556625386"},{"denom":"ASSET5","index":"0.000000932868086778"},{"denom":"ASSET6","index":"0.000003797061547622"},{"denom":"ASSET7","index":"0.000005815312368147"},{"denom":"ASSET8","index":"0.000007588591475923"},{"denom":"ASSET9","index":"0.000003277484447193"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003314119794923"},{"denom":"ASSET1","index":"0.000028119315186385"},{"denom":"ASSET10","index":"0.000022456877991933"},{"denom":"ASSET11","index":"0.000027947185249485"},{"denom":"ASSET12","index":"0.000026653541530161"},{"denom":"ASSET13","index":"0.000008778725953540"},{"denom":"ASSET14","index":"0.000025648491290636"},{"denom":"ASSET15","index":"0.000020225495910600"},{"denom":"ASSET16","index":"0.000012473684612014"},{"denom":"ASSET17","index":"0.000009794866581105"},{"denom":"ASSET18","index":"0.000004045992889163"},{"denom":"ASSET2","index":"0.000008517017325485"},{"denom":"ASSET3","index":"0.000002365208974685"},{"denom":"ASSET4","index":"0.000022797013251164"},{"denom":"ASSET5","index":"0.000001842432416817"},{"denom":"ASSET6","index":"0.000007435560259585"},{"denom":"ASSET7","index":"0.000011681616070006"},{"denom":"ASSET8","index":"0.000015958852395270"},{"denom":"ASSET9","index":"0.000006773561992828"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001334597814253"},{"denom":"ASSET1","index":"0.000011126876577448"},{"denom":"ASSET10","index":"0.000007751884027943"},{"denom":"ASSET11","index":"0.000010763759508328"},{"denom":"ASSET12","index":"0.000009692944381721"},{"denom":"ASSET13","index":"0.000003335543967388"},{"denom":"ASSET14","index":"0.000010055110882597"},{"denom":"ASSET15","index":"0.000007189147627631"},{"denom":"ASSET16","index":"0.000005012346349398"},{"denom":"ASSET17","index":"0.000003559878072918"},{"denom":"ASSET18","index":"0.000001695813746885"},{"denom":"ASSET2","index":"0.000003284213282225"},{"denom":"ASSET3","index":"0.000000960549210329"},{"denom":"ASSET4","index":"0.000009042280418860"},{"denom":"ASSET5","index":"0.000000745720787237"},{"denom":"ASSET6","index":"0.000003035164402357"},{"denom":"ASSET7","index":"0.000004648278712034"},{"denom":"ASSET8","index":"0.000006065575963495"},{"denom":"ASSET9","index":"0.000002619766079830"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000002933404194828"},{"denom":"ASSET1","index":"0.000024932632498194"},{"denom":"ASSET10","index":"0.000020157113753706"},{"denom":"ASSET11","index":"0.000024842878528839"},{"denom":"ASSET12","index":"0.000023817726072485"},{"denom":"ASSET13","index":"0.000007813243799971"},{"denom":"ASSET14","index":"0.000022761898108549"},{"denom":"ASSET15","index":"0.000018109267957138"},{"denom":"ASSET16","index":"0.000011043189892304"},{"denom":"ASSET17","index":"0.000008753164046701"},{"denom":"ASSET18","index":"0.000003567063844603"},{"denom":"ASSET2","index":"0.000007569762146700"},{"denom":"ASSET3","index":"0.000002091389836038"},{"denom":"ASSET4","index":"0.000020208488830330"},{"denom":"ASSET5","index":"0.000001630166870108"},{"denom":"ASSET6","index":"0.000006572642272968"},{"denom":"ASSET7","index":"0.000010351822041320"},{"denom":"ASSET8","index":"0.000014203644477234"},{"denom":"ASSET9","index":"0.000006019030096188"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001655550281073"},{"denom":"ASSET1","index":"0.000013803766186213"},{"denom":"ASSET10","index":"0.000009616885369480"},{"denom":"ASSET11","index":"0.000013353770421464"},{"denom":"ASSET12","index":"0.000012024654915933"},{"denom":"ASSET13","index":"0.000004138458266908"},{"denom":"ASSET14","index":"0.000012474650680682"},{"denom":"ASSET15","index":"0.000008918932754767"},{"denom":"ASSET16","index":"0.000006218123294721"},{"denom":"ASSET17","index":"0.000004415635621077"},{"denom":"ASSET18","index":"0.000002103876302725"},{"denom":"ASSET2","index":"0.000004075008029207"},{"denom":"ASSET3","index":"0.000001191361699996"},{"denom":"ASSET4","index":"0.000011218168999888"},{"denom":"ASSET5","index":"0.000000925037675960"},{"denom":"ASSET6","index":"0.000003765270684639"},{"denom":"ASSET7","index":"0.000005766457786874"},{"denom":"ASSET8","index":"0.000007524697268437"},{"denom":"ASSET9","index":"0.000003250154939091"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003215122291080"},{"denom":"ASSET1","index":"0.000027271082473775"},{"denom":"ASSET10","index":"0.000021717714787675"},{"denom":"ASSET11","index":"0.000027088129911249"},{"denom":"ASSET12","index":"0.000025803190697535"},{"denom":"ASSET13","index":"0.000008506451165719"},{"denom":"ASSET14","index":"0.000024869823256717"},{"denom":"ASSET15","index":"0.000019571375436743"},{"denom":"ASSET16","index":"0.000012101015548893"},{"denom":"ASSET17","index":"0.000009481514658039"},{"denom":"ASSET18","index":"0.000003929002426467"},{"denom":"ASSET2","index":"0.000008255375778501"},{"denom":"ASSET3","index":"0.000002294279906946"},{"denom":"ASSET4","index":"0.000022110354928469"},{"denom":"ASSET5","index":"0.000001787716273475"},{"denom":"ASSET6","index":"0.000007215985074700"},{"denom":"ASSET7","index":"0.000011330188741735"},{"denom":"ASSET8","index":"0.000015463524362026"},{"denom":"ASSET9","index":"0.000006565858639552"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001631513498845"},{"denom":"ASSET1","index":"0.000013601788709515"},{"denom":"ASSET10","index":"0.000009476711328689"},{"denom":"ASSET11","index":"0.000013158178840821"},{"denom":"ASSET12","index":"0.000011848922966954"},{"denom":"ASSET13","index":"0.000004077884841603"},{"denom":"ASSET14","index":"0.000012291633930140"},{"denom":"ASSET15","index":"0.000008788599161546"},{"denom":"ASSET16","index":"0.000006127389402135"},{"denom":"ASSET17","index":"0.000004351601569095"},{"denom":"ASSET18","index":"0.000002072876103766"},{"denom":"ASSET2","index":"0.000004014961455973"},{"denom":"ASSET3","index":"0.000001174420047516"},{"denom":"ASSET4","index":"0.000011053841044239"},{"denom":"ASSET5","index":"0.000000911490186131"},{"denom":"ASSET6","index":"0.000003710232488420"},{"denom":"ASSET7","index":"0.000005682431175178"},{"denom":"ASSET8","index":"0.000007415071543785"},{"denom":"ASSET9","index":"0.000003202800328586"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003159157648171"},{"denom":"ASSET1","index":"0.000026793811254639"},{"denom":"ASSET10","index":"0.000021330257270132"},{"denom":"ASSET11","index":"0.000026611245447042"},{"denom":"ASSET12","index":"0.000025345616114893"},{"denom":"ASSET13","index":"0.000008356504281369"},{"denom":"ASSET14","index":"0.000024433401122602"},{"denom":"ASSET15","index":"0.000019223209713353"},{"denom":"ASSET16","index":"0.000011890026449509"},{"denom":"ASSET17","index":"0.000009313941892173"},{"denom":"ASSET18","index":"0.000003860849124980"},{"denom":"ASSET2","index":"0.000008109777269158"},{"denom":"ASSET3","index":"0.000002255070941538"},{"denom":"ASSET4","index":"0.000021723391251034"},{"denom":"ASSET5","index":"0.000001756486235957"},{"denom":"ASSET6","index":"0.000007090574282328"},{"denom":"ASSET7","index":"0.000011132530538444"},{"denom":"ASSET8","index":"0.000015191323807650"},{"denom":"ASSET9","index":"0.000006450832118924"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001649724724935"},{"denom":"ASSET1","index":"0.000013753740147655"},{"denom":"ASSET10","index":"0.000009582563441278"},{"denom":"ASSET11","index":"0.000013305204895691"},{"denom":"ASSET12","index":"0.000011981321923304"},{"denom":"ASSET13","index":"0.000004123306127916"},{"denom":"ASSET14","index":"0.000012429052627730"},{"denom":"ASSET15","index":"0.000008886629821639"},{"denom":"ASSET16","index":"0.000006195820583626"},{"denom":"ASSET17","index":"0.000004400070480698"},{"denom":"ASSET18","index":"0.000002096248608056"},{"denom":"ASSET2","index":"0.000004060149146250"},{"denom":"ASSET3","index":"0.000001187512164840"},{"denom":"ASSET4","index":"0.000011177176659918"},{"denom":"ASSET5","index":"0.000000921609203810"},{"denom":"ASSET6","index":"0.000003751605165751"},{"denom":"ASSET7","index":"0.000005746078510357"},{"denom":"ASSET8","index":"0.000007497578498742"},{"denom":"ASSET9","index":"0.000003238303837047"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003253063831874"},{"denom":"ASSET1","index":"0.000027597326034286"},{"denom":"ASSET10","index":"0.000022021617243178"},{"denom":"ASSET11","index":"0.000027423138617092"},{"denom":"ASSET12","index":"0.000026144931484859"},{"denom":"ASSET13","index":"0.000008613299773809"},{"denom":"ASSET14","index":"0.000025170855267573"},{"denom":"ASSET15","index":"0.000019836826910831"},{"denom":"ASSET16","index":"0.000012243184702458"},{"denom":"ASSET17","index":"0.000009607701845932"},{"denom":"ASSET18","index":"0.000003972764374377"},{"denom":"ASSET2","index":"0.000008357484440725"},{"denom":"ASSET3","index":"0.000002321502734814"},{"denom":"ASSET4","index":"0.000022373906168402"},{"denom":"ASSET5","index":"0.000001808481766797"},{"denom":"ASSET6","index":"0.000007298802623853"},{"denom":"ASSET7","index":"0.000011465220726545"},{"denom":"ASSET8","index":"0.000015658035812384"},{"denom":"ASSET9","index":"0.000006646717011605"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001698975992122"},{"denom":"ASSET1","index":"0.000014167905922226"},{"denom":"ASSET10","index":"0.000009870625403756"},{"denom":"ASSET11","index":"0.000013705415046027"},{"denom":"ASSET12","index":"0.000012342129737421"},{"denom":"ASSET13","index":"0.000004247439980305"},{"denom":"ASSET14","index":"0.000012803154715439"},{"denom":"ASSET15","index":"0.000009153801193103"},{"denom":"ASSET16","index":"0.000006381787732272"},{"denom":"ASSET17","index":"0.000004532557176567"},{"denom":"ASSET18","index":"0.000002159268021049"},{"denom":"ASSET2","index":"0.000004182207511237"},{"denom":"ASSET3","index":"0.000001223292032291"},{"denom":"ASSET4","index":"0.000011513897264989"},{"denom":"ASSET5","index":"0.000000949169072389"},{"denom":"ASSET6","index":"0.000003864840554987"},{"denom":"ASSET7","index":"0.000005918563906982"},{"denom":"ASSET8","index":"0.000007723084568158"},{"denom":"ASSET9","index":"0.000003335651311539"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003402845442317"},{"denom":"ASSET1","index":"0.000028880571174740"},{"denom":"ASSET10","index":"0.000023090578471272"},{"denom":"ASSET11","index":"0.000028709364204549"},{"denom":"ASSET12","index":"0.000027394626213612"},{"denom":"ASSET13","index":"0.000009019217107214"},{"denom":"ASSET14","index":"0.000026344557012563"},{"denom":"ASSET15","index":"0.000020791017438004"},{"denom":"ASSET16","index":"0.000012808886991708"},{"denom":"ASSET17","index":"0.000010066951390727"},{"denom":"ASSET18","index":"0.000004153478710890"},{"denom":"ASSET2","index":"0.000008748954704305"},{"denom":"ASSET3","index":"0.000002428490976730"},{"denom":"ASSET4","index":"0.000023413646091842"},{"denom":"ASSET5","index":"0.000001891364101695"},{"denom":"ASSET6","index":"0.000007634563338572"},{"denom":"ASSET7","index":"0.000011996876612297"},{"denom":"ASSET8","index":"0.000016395615103037"},{"denom":"ASSET9","index":"0.000006958318142576"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001515088644413"},{"denom":"ASSET1","index":"0.000012634136557163"},{"denom":"ASSET10","index":"0.000008802109028204"},{"denom":"ASSET11","index":"0.000012222352143486"},{"denom":"ASSET12","index":"0.000011006111259210"},{"denom":"ASSET13","index":"0.000003787721611031"},{"denom":"ASSET14","index":"0.000011417895672887"},{"denom":"ASSET15","index":"0.000008163582563959"},{"denom":"ASSET16","index":"0.000005691138594924"},{"denom":"ASSET17","index":"0.000004042263453241"},{"denom":"ASSET18","index":"0.000001925135571111"},{"denom":"ASSET2","index":"0.000003729515797284"},{"denom":"ASSET3","index":"0.000001091141821893"},{"denom":"ASSET4","index":"0.000010267679293757"},{"denom":"ASSET5","index":"0.000000846156158061"},{"denom":"ASSET6","index":"0.000003446305419945"},{"denom":"ASSET7","index":"0.000005278485437758"},{"denom":"ASSET8","index":"0.000006887398378958"},{"denom":"ASSET9","index":"0.000002974577705544"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003029367235848"},{"denom":"ASSET1","index":"0.000025709657584098"},{"denom":"ASSET10","index":"0.000020551027857005"},{"denom":"ASSET11","index":"0.000025556791271547"},{"denom":"ASSET12","index":"0.000024383546484064"},{"denom":"ASSET13","index":"0.000008028643187417"},{"denom":"ASSET14","index":"0.000023452409013233"},{"denom":"ASSET15","index":"0.000018505869963369"},{"denom":"ASSET16","index":"0.000011403028825829"},{"denom":"ASSET17","index":"0.000008960765854271"},{"denom":"ASSET18","index":"0.000003697390743305"},{"denom":"ASSET2","index":"0.000007788410102575"},{"denom":"ASSET3","index":"0.000002162278160249"},{"denom":"ASSET4","index":"0.000020843149904241"},{"denom":"ASSET5","index":"0.000001683795445220"},{"denom":"ASSET6","index":"0.000006796548728457"},{"denom":"ASSET7","index":"0.000010680301627557"},{"denom":"ASSET8","index":"0.000014594997949332"},{"denom":"ASSET9","index":"0.000006193949682941"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001650481631660"},{"denom":"ASSET1","index":"0.000013760556046882"},{"denom":"ASSET10","index":"0.000009587067899364"},{"denom":"ASSET11","index":"0.000013312100857594"},{"denom":"ASSET12","index":"0.000011987552175177"},{"denom":"ASSET13","index":"0.000004125311926918"},{"denom":"ASSET14","index":"0.000012435412596309"},{"denom":"ASSET15","index":"0.000008891189157367"},{"denom":"ASSET16","index":"0.000006198673717177"},{"denom":"ASSET17","index":"0.000004402473887406"},{"denom":"ASSET18","index":"0.000002097152516481"},{"denom":"ASSET2","index":"0.000004062266502429"},{"denom":"ASSET3","index":"0.000001188346774796"},{"denom":"ASSET4","index":"0.000011182830860714"},{"denom":"ASSET5","index":"0.000000921890641108"},{"denom":"ASSET6","index":"0.000003753581829697"},{"denom":"ASSET7","index":"0.000005749028991578"},{"denom":"ASSET8","index":"0.000007501810745994"},{"denom":"ASSET9","index":"0.000003239702143299"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003205609047354"},{"denom":"ASSET1","index":"0.000027188537481167"},{"denom":"ASSET10","index":"0.000021652723818266"},{"denom":"ASSET11","index":"0.000027005979418132"},{"denom":"ASSET12","index":"0.000025725923481940"},{"denom":"ASSET13","index":"0.000008480657418555"},{"denom":"ASSET14","index":"0.000024794508770079"},{"denom":"ASSET15","index":"0.000019512596409105"},{"denom":"ASSET16","index":"0.000012064653878282"},{"denom":"ASSET17","index":"0.000009453813052143"},{"denom":"ASSET18","index":"0.000003917117707327"},{"denom":"ASSET2","index":"0.000008230459966291"},{"denom":"ASSET3","index":"0.000002288306334262"},{"denom":"ASSET4","index":"0.000022043298344156"},{"denom":"ASSET5","index":"0.000001782083734802"},{"denom":"ASSET6","index":"0.000007194354204475"},{"denom":"ASSET7","index":"0.000011296497588433"},{"denom":"ASSET8","index":"0.000015417282169744"},{"denom":"ASSET9","index":"0.000006545936928299"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001428935211366"},{"denom":"ASSET1","index":"0.000011914564237659"},{"denom":"ASSET10","index":"0.000008301159777028"},{"denom":"ASSET11","index":"0.000011525978642480"},{"denom":"ASSET12","index":"0.000010379209562159"},{"denom":"ASSET13","index":"0.000003571896453874"},{"denom":"ASSET14","index":"0.000010767353582799"},{"denom":"ASSET15","index":"0.000007698410529959"},{"denom":"ASSET16","index":"0.000005367338533420"},{"denom":"ASSET17","index":"0.000003811671429081"},{"denom":"ASSET18","index":"0.000001815754508385"},{"denom":"ASSET2","index":"0.000003517141210917"},{"denom":"ASSET3","index":"0.000001028868678146"},{"denom":"ASSET4","index":"0.000009682846512616"},{"denom":"ASSET5","index":"0.000000798366768278"},{"denom":"ASSET6","index":"0.000003249988614231"},{"denom":"ASSET7","index":"0.000004977428214621"},{"denom":"ASSET8","index":"0.000006495119908522"},{"denom":"ASSET9","index":"0.000002805323052474"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003075918064869"},{"denom":"ASSET1","index":"0.000026136551234120"},{"denom":"ASSET10","index":"0.000021080163895542"},{"denom":"ASSET11","index":"0.000026029570124972"},{"denom":"ASSET12","index":"0.000024929671095533"},{"denom":"ASSET13","index":"0.000008184754658215"},{"denom":"ASSET14","index":"0.000023857159923959"},{"denom":"ASSET15","index":"0.000018947606922173"},{"denom":"ASSET16","index":"0.000011579925359638"},{"denom":"ASSET17","index":"0.000009161388302193"},{"denom":"ASSET18","index":"0.000003743573486430"},{"denom":"ASSET2","index":"0.000007931762150876"},{"denom":"ASSET3","index":"0.000002193704696765"},{"denom":"ASSET4","index":"0.000021185602196482"},{"denom":"ASSET5","index":"0.000001709259314500"},{"denom":"ASSET6","index":"0.000006893942979866"},{"denom":"ASSET7","index":"0.000010853088527538"},{"denom":"ASSET8","index":"0.000014878712124324"},{"denom":"ASSET9","index":"0.000006307130542486"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001556917620519"},{"denom":"ASSET1","index":"0.000012983455297040"},{"denom":"ASSET10","index":"0.000009045452282177"},{"denom":"ASSET11","index":"0.000012560119972943"},{"denom":"ASSET12","index":"0.000011310507230547"},{"denom":"ASSET13","index":"0.000003892294051298"},{"denom":"ASSET14","index":"0.000011733139339821"},{"denom":"ASSET15","index":"0.000008388649636483"},{"denom":"ASSET16","index":"0.000005848637691896"},{"denom":"ASSET17","index":"0.000004153889965857"},{"denom":"ASSET18","index":"0.000001978846514969"},{"denom":"ASSET2","index":"0.000003832520791251"},{"denom":"ASSET3","index":"0.000001120924429588"},{"denom":"ASSET4","index":"0.000010551035220538"},{"denom":"ASSET5","index":"0.000000869876737390"},{"denom":"ASSET6","index":"0.000003541389854081"},{"denom":"ASSET7","index":"0.000005423895938150"},{"denom":"ASSET8","index":"0.000007077857204393"},{"denom":"ASSET9","index":"0.000003056874840288"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003155948059833"},{"denom":"ASSET1","index":"0.000026789841893667"},{"denom":"ASSET10","index":"0.000021451154188244"},{"denom":"ASSET11","index":"0.000026640130662201"},{"denom":"ASSET12","index":"0.000025435769508540"},{"denom":"ASSET13","index":"0.000008370086775831"},{"denom":"ASSET14","index":"0.000024440800445484"},{"denom":"ASSET15","index":"0.000019309084443140"},{"denom":"ASSET16","index":"0.000011879786354964"},{"denom":"ASSET17","index":"0.000009347672781307"},{"denom":"ASSET18","index":"0.000003850232310781"},{"denom":"ASSET2","index":"0.000008118311447694"},{"denom":"ASSET3","index":"0.000002251791235916"},{"denom":"ASSET4","index":"0.000021717604836949"},{"denom":"ASSET5","index":"0.000001754185821919"},{"denom":"ASSET6","index":"0.000007079049104243"},{"denom":"ASSET7","index":"0.000011127710678967"},{"denom":"ASSET8","index":"0.000015216376583965"},{"denom":"ASSET9","index":"0.000006456241851980"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001629017625409"},{"denom":"ASSET1","index":"0.000013583500814952"},{"denom":"ASSET10","index":"0.000009463617777698"},{"denom":"ASSET11","index":"0.000013140742178302"},{"denom":"ASSET12","index":"0.000011833351109704"},{"denom":"ASSET13","index":"0.000004072544063523"},{"denom":"ASSET14","index":"0.000012276109746354"},{"denom":"ASSET15","index":"0.000008777202658616"},{"denom":"ASSET16","index":"0.000006119258515961"},{"denom":"ASSET17","index":"0.000004345439323848"},{"denom":"ASSET18","index":"0.000002070383939302"},{"denom":"ASSET2","index":"0.000004009889539469"},{"denom":"ASSET3","index":"0.000001172335761192"},{"denom":"ASSET4","index":"0.000011039727138351"},{"denom":"ASSET5","index":"0.000000910579082921"},{"denom":"ASSET6","index":"0.000003704970855739"},{"denom":"ASSET7","index":"0.000005675107556554"},{"denom":"ASSET8","index":"0.000007404372420450"},{"denom":"ASSET9","index":"0.000003198165372278"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003300821213878"},{"denom":"ASSET1","index":"0.000028019420341436"},{"denom":"ASSET10","index":"0.000022435320069293"},{"denom":"ASSET11","index":"0.000027862926397945"},{"denom":"ASSET12","index":"0.000026603097941410"},{"denom":"ASSET13","index":"0.000008754572034100"},{"denom":"ASSET14","index":"0.000025562969906661"},{"denom":"ASSET15","index":"0.000020195785636702"},{"denom":"ASSET16","index":"0.000012425527462944"},{"denom":"ASSET17","index":"0.000009776022796414"},{"denom":"ASSET18","index":"0.000004027118689751"},{"denom":"ASSET2","index":"0.000008490998812362"},{"denom":"ASSET3","index":"0.000002354733406852"},{"denom":"ASSET4","index":"0.000022715681634045"},{"denom":"ASSET5","index":"0.000001835160700580"},{"denom":"ASSET6","index":"0.000007403741836767"},{"denom":"ASSET7","index":"0.000011639103500846"},{"denom":"ASSET8","index":"0.000015914079386056"},{"denom":"ASSET9","index":"0.000006752470475547"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001599876133405"},{"denom":"ASSET1","index":"0.000013345434681176"},{"denom":"ASSET10","index":"0.000009297530322905"},{"denom":"ASSET11","index":"0.000012909953167223"},{"denom":"ASSET12","index":"0.000011625282701060"},{"denom":"ASSET13","index":"0.000004000208763886"},{"denom":"ASSET14","index":"0.000012059727354266"},{"denom":"ASSET15","index":"0.000008622533976277"},{"denom":"ASSET16","index":"0.000006011718614052"},{"denom":"ASSET17","index":"0.000004268755697491"},{"denom":"ASSET18","index":"0.000002033283925863"},{"denom":"ASSET2","index":"0.000003939033979783"},{"denom":"ASSET3","index":"0.000001151952290481"},{"denom":"ASSET4","index":"0.000010845563418934"},{"denom":"ASSET5","index":"0.000000893773964352"},{"denom":"ASSET6","index":"0.000003640418084501"},{"denom":"ASSET7","index":"0.000005575200239351"},{"denom":"ASSET8","index":"0.000007274615004517"},{"denom":"ASSET9","index":"0.000003141688064949"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003205518103121"},{"denom":"ASSET1","index":"0.000027209804037075"},{"denom":"ASSET10","index":"0.000021755111918776"},{"denom":"ASSET11","index":"0.000027048910570117"},{"denom":"ASSET12","index":"0.000025809934262776"},{"denom":"ASSET13","index":"0.000008496852467218"},{"denom":"ASSET14","index":"0.000024820667393427"},{"denom":"ASSET15","index":"0.000019589132093549"},{"denom":"ASSET16","index":"0.000012068310128279"},{"denom":"ASSET17","index":"0.000009484236214143"},{"denom":"ASSET18","index":"0.000003912244660385"},{"denom":"ASSET2","index":"0.000008242746790311"},{"denom":"ASSET3","index":"0.000002287536756020"},{"denom":"ASSET4","index":"0.000022059248469095"},{"denom":"ASSET5","index":"0.000001781848402938"},{"denom":"ASSET6","index":"0.000007192715838846"},{"denom":"ASSET7","index":"0.000011303047666497"},{"denom":"ASSET8","index":"0.000015447099928639"},{"denom":"ASSET9","index":"0.000006555210966575"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001693699328345"},{"denom":"ASSET1","index":"0.000014121235265065"},{"denom":"ASSET10","index":"0.000009838380374958"},{"denom":"ASSET11","index":"0.000013660499756586"},{"denom":"ASSET12","index":"0.000012301569616423"},{"denom":"ASSET13","index":"0.000004233563721295"},{"denom":"ASSET14","index":"0.000012760935925768"},{"denom":"ASSET15","index":"0.000009123658427184"},{"denom":"ASSET16","index":"0.000006361299175013"},{"denom":"ASSET17","index":"0.000004517672541531"},{"denom":"ASSET18","index":"0.000002151696438556"},{"denom":"ASSET2","index":"0.000004168526762446"},{"denom":"ASSET3","index":"0.000001219271828530"},{"denom":"ASSET4","index":"0.000011475942538822"},{"denom":"ASSET5","index":"0.000000946116601363"},{"denom":"ASSET6","index":"0.000003852241762569"},{"denom":"ASSET7","index":"0.000005899194467400"},{"denom":"ASSET8","index":"0.000007698322129037"},{"denom":"ASSET9","index":"0.000003325100096108"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003374964488748"},{"denom":"ASSET1","index":"0.000028642371697541"},{"denom":"ASSET10","index":"0.000022886358038922"},{"denom":"ASSET11","index":"0.000028469467846578"},{"denom":"ASSET12","index":"0.000027158021136678"},{"denom":"ASSET13","index":"0.000008943216545101"},{"denom":"ASSET14","index":"0.000026126056006670"},{"denom":"ASSET15","index":"0.000020609372613995"},{"denom":"ASSET16","index":"0.000012704733728960"},{"denom":"ASSET17","index":"0.000009980025667275"},{"denom":"ASSET18","index":"0.000004119620826099"},{"denom":"ASSET2","index":"0.000008675935346246"},{"denom":"ASSET3","index":"0.000002408702445844"},{"denom":"ASSET4","index":"0.000023220763838917"},{"denom":"ASSET5","index":"0.000001876440105393"},{"denom":"ASSET6","index":"0.000007572949563502"},{"denom":"ASSET7","index":"0.000011897934490553"},{"denom":"ASSET8","index":"0.000016258236310419"},{"denom":"ASSET9","index":"0.000006900426530312"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001608105877482"},{"denom":"ASSET1","index":"0.000013418457239972"},{"denom":"ASSET10","index":"0.000009349233819318"},{"denom":"ASSET11","index":"0.000012981594753349"},{"denom":"ASSET12","index":"0.000011689837573077"},{"denom":"ASSET13","index":"0.000004022147721664"},{"denom":"ASSET14","index":"0.000012126700059700"},{"denom":"ASSET15","index":"0.000008669460725910"},{"denom":"ASSET16","index":"0.000006044519750254"},{"denom":"ASSET17","index":"0.000004293303747844"},{"denom":"ASSET18","index":"0.000002044968364105"},{"denom":"ASSET2","index":"0.000003960007798998"},{"denom":"ASSET3","index":"0.000001158062195142"},{"denom":"ASSET4","index":"0.000010904614913932"},{"denom":"ASSET5","index":"0.000000898204336720"},{"denom":"ASSET6","index":"0.000003660606353425"},{"denom":"ASSET7","index":"0.000005605774235672"},{"denom":"ASSET8","index":"0.000007313680595011"},{"denom":"ASSET9","index":"0.000003159720916176"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003138779820137"},{"denom":"ASSET1","index":"0.000026638851971456"},{"denom":"ASSET10","index":"0.000021228354320839"},{"denom":"ASSET11","index":"0.000026463611656062"},{"denom":"ASSET12","index":"0.000025215335343685"},{"denom":"ASSET13","index":"0.000008309803474369"},{"denom":"ASSET14","index":"0.000024294710395367"},{"denom":"ASSET15","index":"0.000019126240972581"},{"denom":"ASSET16","index":"0.000011819368577720"},{"denom":"ASSET17","index":"0.000009266335892783"},{"denom":"ASSET18","index":"0.000003836527514127"},{"denom":"ASSET2","index":"0.000008063422586049"},{"denom":"ASSET3","index":"0.000002240662109326"},{"denom":"ASSET4","index":"0.000021597223596640"},{"denom":"ASSET5","index":"0.000001744975814867"},{"denom":"ASSET6","index":"0.000007047692266012"},{"denom":"ASSET7","index":"0.000011067413421526"},{"denom":"ASSET8","index":"0.000015106336478322"},{"denom":"ASSET9","index":"0.000006414890297355"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001636130781121"},{"denom":"ASSET1","index":"0.000013651986161797"},{"denom":"ASSET10","index":"0.000009511743354655"},{"denom":"ASSET11","index":"0.000013205516575762"},{"denom":"ASSET12","index":"0.000011891065744828"},{"denom":"ASSET13","index":"0.000004093100055822"},{"denom":"ASSET14","index":"0.000012337535330862"},{"denom":"ASSET15","index":"0.000008821240702961"},{"denom":"ASSET16","index":"0.000006147969392790"},{"denom":"ASSET17","index":"0.000004367637254688"},{"denom":"ASSET18","index":"0.000002079827264137"},{"denom":"ASSET2","index":"0.000004029318686389"},{"denom":"ASSET3","index":"0.000001178568783011"},{"denom":"ASSET4","index":"0.000011095185178418"},{"denom":"ASSET5","index":"0.000000915123996220"},{"denom":"ASSET6","index":"0.000003724277354315"},{"denom":"ASSET7","index":"0.000005701499806755"},{"denom":"ASSET8","index":"0.000007440235399574"},{"denom":"ASSET9","index":"0.000003214026398847"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003135138573804"},{"denom":"ASSET1","index":"0.000026601246250396"},{"denom":"ASSET10","index":"0.000021147351718785"},{"denom":"ASSET11","index":"0.000026411423528042"},{"denom":"ASSET12","index":"0.000025139747174388"},{"denom":"ASSET13","index":"0.000008292603180789"},{"denom":"ASSET14","index":"0.000024256405788980"},{"denom":"ASSET15","index":"0.000019064302195638"},{"denom":"ASSET16","index":"0.000011804656377100"},{"denom":"ASSET17","index":"0.000009238224400983"},{"denom":"ASSET18","index":"0.000003834531376561"},{"denom":"ASSET2","index":"0.000008049169006780"},{"denom":"ASSET3","index":"0.000002239375819558"},{"denom":"ASSET4","index":"0.000021568278304468"},{"denom":"ASSET5","index":"0.000001743998311515"},{"denom":"ASSET6","index":"0.000007041675703373"},{"denom":"ASSET7","index":"0.000011051161098588"},{"denom":"ASSET8","index":"0.000015073103234225"},{"denom":"ASSET9","index":"0.000006402150772125"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001682560247115"},{"denom":"ASSET1","index":"0.000014026482890055"},{"denom":"ASSET10","index":"0.000009772411969975"},{"denom":"ASSET11","index":"0.000013568579422963"},{"denom":"ASSET12","index":"0.000012218368466479"},{"denom":"ASSET13","index":"0.000004205057792371"},{"denom":"ASSET14","index":"0.000012675600520863"},{"denom":"ASSET15","index":"0.000009062728737253"},{"denom":"ASSET16","index":"0.000006318664998244"},{"denom":"ASSET17","index":"0.000004487051129876"},{"denom":"ASSET18","index":"0.000002137778063373"},{"denom":"ASSET2","index":"0.000004140602172369"},{"denom":"ASSET3","index":"0.000001211228525856"},{"denom":"ASSET4","index":"0.000011398573549589"},{"denom":"ASSET5","index":"0.000000939977791684"},{"denom":"ASSET6","index":"0.000003825709612155"},{"denom":"ASSET7","index":"0.000005859418705735"},{"denom":"ASSET8","index":"0.000007646047922643"},{"denom":"ASSET9","index":"0.000003302679112354"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003237426875283"},{"denom":"ASSET1","index":"0.000027451710154634"},{"denom":"ASSET10","index":"0.000021835512998164"},{"denom":"ASSET11","index":"0.000027259736654219"},{"denom":"ASSET12","index":"0.000025953768913429"},{"denom":"ASSET13","index":"0.000008559484494503"},{"denom":"ASSET14","index":"0.000025032165857410"},{"denom":"ASSET15","index":"0.000019681806512765"},{"denom":"ASSET16","index":"0.000012183244440341"},{"denom":"ASSET17","index":"0.000009537367134186"},{"denom":"ASSET18","index":"0.000003957397976948"},{"denom":"ASSET2","index":"0.000008307936552813"},{"denom":"ASSET3","index":"0.000002310954839376"},{"denom":"ASSET4","index":"0.000022256988295109"},{"denom":"ASSET5","index":"0.000001799896462688"},{"denom":"ASSET6","index":"0.000007265619632425"},{"denom":"ASSET7","index":"0.000011405823532836"},{"denom":"ASSET8","index":"0.000015559935461923"},{"denom":"ASSET9","index":"0.000006608212131764"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001576738934866"},{"denom":"ASSET1","index":"0.000013143695761043"},{"denom":"ASSET10","index":"0.000009157699733702"},{"denom":"ASSET11","index":"0.000012715663698192"},{"denom":"ASSET12","index":"0.000011450067913139"},{"denom":"ASSET13","index":"0.000003940585946017"},{"denom":"ASSET14","index":"0.000011878099975991"},{"denom":"ASSET15","index":"0.000008492526135047"},{"denom":"ASSET16","index":"0.000005920970048209"},{"denom":"ASSET17","index":"0.000004204637159643"},{"denom":"ASSET18","index":"0.000002003089142854"},{"denom":"ASSET2","index":"0.000003880039170918"},{"denom":"ASSET3","index":"0.000001134411105672"},{"denom":"ASSET4","index":"0.000010681460240357"},{"denom":"ASSET5","index":"0.000000880451021229"},{"denom":"ASSET6","index":"0.000003584873642311"},{"denom":"ASSET7","index":"0.000005491256130493"},{"denom":"ASSET8","index":"0.000007165542647463"},{"denom":"ASSET9","index":"0.000003094612949497"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003150995592381"},{"denom":"ASSET1","index":"0.000026735906318713"},{"denom":"ASSET10","index":"0.000021370928366269"},{"denom":"ASSET11","index":"0.000026577057751538"},{"denom":"ASSET12","index":"0.000025356196217934"},{"denom":"ASSET13","index":"0.000008349049177946"},{"denom":"ASSET14","index":"0.000024388519635576"},{"denom":"ASSET15","index":"0.000019243917228958"},{"denom":"ASSET16","index":"0.000011858566692713"},{"denom":"ASSET17","index":"0.000009317567603522"},{"denom":"ASSET18","index":"0.000003845362315572"},{"denom":"ASSET2","index":"0.000008099062572798"},{"denom":"ASSET3","index":"0.000002247710476517"},{"denom":"ASSET4","index":"0.000021674805285583"},{"denom":"ASSET5","index":"0.000001751018453776"},{"denom":"ASSET6","index":"0.000007067532365991"},{"denom":"ASSET7","index":"0.000011106766164564"},{"denom":"ASSET8","index":"0.000015177641578730"},{"denom":"ASSET9","index":"0.000006441123951375"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001735896630597"},{"denom":"ASSET1","index":"0.000014474259966527"},{"denom":"ASSET10","index":"0.000010084408758147"},{"denom":"ASSET11","index":"0.000014002239606889"},{"denom":"ASSET12","index":"0.000012609068112910"},{"denom":"ASSET13","index":"0.000004339122939062"},{"denom":"ASSET14","index":"0.000013079851197687"},{"denom":"ASSET15","index":"0.000009351942040176"},{"denom":"ASSET16","index":"0.000006520438519776"},{"denom":"ASSET17","index":"0.000004630501168930"},{"denom":"ASSET18","index":"0.000002205442440512"},{"denom":"ASSET2","index":"0.000004272310096544"},{"denom":"ASSET3","index":"0.000001249647610052"},{"denom":"ASSET4","index":"0.000011762772107687"},{"denom":"ASSET5","index":"0.000000970023491367"},{"denom":"ASSET6","index":"0.000003948144082847"},{"denom":"ASSET7","index":"0.000006046562247845"},{"denom":"ASSET8","index":"0.000007890101791387"},{"denom":"ASSET9","index":"0.000003408073605830"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003300304206809"},{"denom":"ASSET1","index":"0.000027981868665615"},{"denom":"ASSET10","index":"0.000022221493016134"},{"denom":"ASSET11","index":"0.000027777532118325"},{"denom":"ASSET12","index":"0.000026428557640091"},{"denom":"ASSET13","index":"0.000008720047886627"},{"denom":"ASSET14","index":"0.000025512138164618"},{"denom":"ASSET15","index":"0.000020036362120252"},{"denom":"ASSET16","index":"0.000012421157074829"},{"denom":"ASSET17","index":"0.000009711490167791"},{"denom":"ASSET18","index":"0.000004036282970136"},{"denom":"ASSET2","index":"0.000008465189250700"},{"denom":"ASSET3","index":"0.000002356240815614"},{"denom":"ASSET4","index":"0.000022687774056492"},{"denom":"ASSET5","index":"0.000001835200922241"},{"denom":"ASSET6","index":"0.000007409270759323"},{"denom":"ASSET7","index":"0.000011627060915230"},{"denom":"ASSET8","index":"0.000015852235873304"},{"denom":"ASSET9","index":"0.000006733690564218"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001726734301691"},{"denom":"ASSET1","index":"0.000014395988805148"},{"denom":"ASSET10","index":"0.000010029746380297"},{"denom":"ASSET11","index":"0.000013926529312304"},{"denom":"ASSET12","index":"0.000012540835608608"},{"denom":"ASSET13","index":"0.000004315874534955"},{"denom":"ASSET14","index":"0.000013009526126035"},{"denom":"ASSET15","index":"0.000009301526659210"},{"denom":"ASSET16","index":"0.000006485154189852"},{"denom":"ASSET17","index":"0.000004605778267637"},{"denom":"ASSET18","index":"0.000002193886868281"},{"denom":"ASSET2","index":"0.000004249742648985"},{"denom":"ASSET3","index":"0.000001243048763609"},{"denom":"ASSET4","index":"0.000011699192013329"},{"denom":"ASSET5","index":"0.000000964679662201"},{"denom":"ASSET6","index":"0.000003926772973318"},{"denom":"ASSET7","index":"0.000006014156746171"},{"denom":"ASSET8","index":"0.000007847778630999"},{"denom":"ASSET9","index":"0.000003389643643667"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003383074331503"},{"denom":"ASSET1","index":"0.000028697774885580"},{"denom":"ASSET10","index":"0.000022880621123289"},{"denom":"ASSET11","index":"0.000028511966470743"},{"denom":"ASSET12","index":"0.000027173358086556"},{"denom":"ASSET13","index":"0.000008954537947194"},{"denom":"ASSET14","index":"0.000026172910691250"},{"denom":"ASSET15","index":"0.000020614154391480"},{"denom":"ASSET16","index":"0.000012732692592075"},{"denom":"ASSET17","index":"0.000009985655741818"},{"denom":"ASSET18","index":"0.000004132359094826"},{"denom":"ASSET2","index":"0.000008689052893949"},{"denom":"ASSET3","index":"0.000002414485946546"},{"denom":"ASSET4","index":"0.000023266612079392"},{"denom":"ASSET5","index":"0.000001880944791026"},{"denom":"ASSET6","index":"0.000007591453768301"},{"denom":"ASSET7","index":"0.000011922604903868"},{"denom":"ASSET8","index":"0.000016278329144958"},{"denom":"ASSET9","index":"0.000006911169878531"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001436232590899"},{"denom":"ASSET1","index":"0.000011976183987962"},{"denom":"ASSET10","index":"0.000008344549248442"},{"denom":"ASSET11","index":"0.000011585862202045"},{"denom":"ASSET12","index":"0.000010432581326504"},{"denom":"ASSET13","index":"0.000003589949888597"},{"denom":"ASSET14","index":"0.000010822903112421"},{"denom":"ASSET15","index":"0.000007738224144105"},{"denom":"ASSET16","index":"0.000005395030251301"},{"denom":"ASSET17","index":"0.000003831216753031"},{"denom":"ASSET18","index":"0.000001825291199515"},{"denom":"ASSET2","index":"0.000003535633264667"},{"denom":"ASSET3","index":"0.000001033279031975"},{"denom":"ASSET4","index":"0.000009732781101914"},{"denom":"ASSET5","index":"0.000000802117585946"},{"denom":"ASSET6","index":"0.000003266576499617"},{"denom":"ASSET7","index":"0.000005003445288083"},{"denom":"ASSET8","index":"0.000006528100290032"},{"denom":"ASSET9","index":"0.000002819411735168"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003006064648013"},{"denom":"ASSET1","index":"0.000025531157590212"},{"denom":"ASSET10","index":"0.000020524407173472"},{"denom":"ASSET11","index":"0.000025409258384489"},{"denom":"ASSET12","index":"0.000024300714605646"},{"denom":"ASSET13","index":"0.000007986286383048"},{"denom":"ASSET14","index":"0.000023298685931189"},{"denom":"ASSET15","index":"0.000018459726056254"},{"denom":"ASSET16","index":"0.000011316095008653"},{"denom":"ASSET17","index":"0.000008930145684163"},{"denom":"ASSET18","index":"0.000003662445744281"},{"denom":"ASSET2","index":"0.000007743120539446"},{"denom":"ASSET3","index":"0.000002143639104141"},{"denom":"ASSET4","index":"0.000020695936675740"},{"denom":"ASSET5","index":"0.000001670457298921"},{"denom":"ASSET6","index":"0.000006739935351518"},{"denom":"ASSET7","index":"0.000010603283023237"},{"denom":"ASSET8","index":"0.000014518439118465"},{"denom":"ASSET9","index":"0.000006156725809403"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001476546163568"},{"denom":"ASSET1","index":"0.000012315891963405"},{"denom":"ASSET10","index":"0.000008580298213179"},{"denom":"ASSET11","index":"0.000011914434711559"},{"denom":"ASSET12","index":"0.000010728207916557"},{"denom":"ASSET13","index":"0.000003691365408921"},{"denom":"ASSET14","index":"0.000011129665168403"},{"denom":"ASSET15","index":"0.000007957699254808"},{"denom":"ASSET16","index":"0.000005547821683700"},{"denom":"ASSET17","index":"0.000003939724556249"},{"denom":"ASSET18","index":"0.000001876869355381"},{"denom":"ASSET2","index":"0.000003635796467281"},{"denom":"ASSET3","index":"0.000001062614251355"},{"denom":"ASSET4","index":"0.000010009213855342"},{"denom":"ASSET5","index":"0.000000825595704361"},{"denom":"ASSET6","index":"0.000003359085819117"},{"denom":"ASSET7","index":"0.000005145230371820"},{"denom":"ASSET8","index":"0.000006713635398099"},{"denom":"ASSET9","index":"0.000002899791505564"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000002611689387046"},{"denom":"ASSET1","index":"0.000022118950462866"},{"denom":"ASSET10","index":"0.000017388824351878"},{"denom":"ASSET11","index":"0.000021911701626113"},{"denom":"ASSET12","index":"0.000020757567192719"},{"denom":"ASSET13","index":"0.000006870825151743"},{"denom":"ASSET14","index":"0.000020152250667519"},{"denom":"ASSET15","index":"0.000015711809347683"},{"denom":"ASSET16","index":"0.000009830001439303"},{"denom":"ASSET17","index":"0.000007627368499381"},{"denom":"ASSET18","index":"0.000003205559295774"},{"denom":"ASSET2","index":"0.000006678615536452"},{"denom":"ASSET3","index":"0.000001865584989735"},{"denom":"ASSET4","index":"0.000017938012267073"},{"denom":"ASSET5","index":"0.000001453547274796"},{"denom":"ASSET6","index":"0.000005870892100855"},{"denom":"ASSET7","index":"0.000009195154067126"},{"denom":"ASSET8","index":"0.000012492245582088"},{"denom":"ASSET9","index":"0.000005313335607946"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000000860911540335"},{"denom":"ASSET1","index":"0.000007178593209511"},{"denom":"ASSET10","index":"0.000005001581264509"},{"denom":"ASSET11","index":"0.000006944753046495"},{"denom":"ASSET12","index":"0.000006253725385275"},{"denom":"ASSET13","index":"0.000002152029021603"},{"denom":"ASSET14","index":"0.000006487065889823"},{"denom":"ASSET15","index":"0.000004638329558286"},{"denom":"ASSET16","index":"0.000003233789604786"},{"denom":"ASSET17","index":"0.000002296430318850"},{"denom":"ASSET18","index":"0.000001093752386415"},{"denom":"ASSET2","index":"0.000002119051562716"},{"denom":"ASSET3","index":"0.000000619576500299"},{"denom":"ASSET4","index":"0.000005834012272169"},{"denom":"ASSET5","index":"0.000000481171104668"},{"denom":"ASSET6","index":"0.000001958161536025"},{"denom":"ASSET7","index":"0.000002998950124834"},{"denom":"ASSET8","index":"0.000003913325121242"},{"denom":"ASSET9","index":"0.000001690344597186"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000002357406510396"},{"denom":"ASSET1","index":"0.000020099972826550"},{"denom":"ASSET10","index":"0.000016611857270119"},{"denom":"ASSET11","index":"0.000020122040980663"},{"denom":"ASSET12","index":"0.000019473664705632"},{"denom":"ASSET13","index":"0.000006342954228467"},{"denom":"ASSET14","index":"0.000018379978414574"},{"denom":"ASSET15","index":"0.000014858739059306"},{"denom":"ASSET16","index":"0.000008878274052948"},{"denom":"ASSET17","index":"0.000007156982288871"},{"denom":"ASSET18","index":"0.000002845018303307"},{"denom":"ASSET2","index":"0.000006129987919866"},{"denom":"ASSET3","index":"0.000001678183905493"},{"denom":"ASSET4","index":"0.000016284739258605"},{"denom":"ASSET5","index":"0.000001308892339296"},{"denom":"ASSET6","index":"0.000005269046474537"},{"denom":"ASSET7","index":"0.000008337197620164"},{"denom":"ASSET8","index":"0.000011530009666752"},{"denom":"ASSET9","index":"0.000004871853664260"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001198976216272"},{"denom":"ASSET1","index":"0.000010001315625623"},{"denom":"ASSET10","index":"0.000006967712250892"},{"denom":"ASSET11","index":"0.000009674322112094"},{"denom":"ASSET12","index":"0.000008711677656379"},{"denom":"ASSET13","index":"0.000002997949876371"},{"denom":"ASSET14","index":"0.000009037652498526"},{"denom":"ASSET15","index":"0.000006461432574183"},{"denom":"ASSET16","index":"0.000004504564849919"},{"denom":"ASSET17","index":"0.000003199646809949"},{"denom":"ASSET18","index":"0.000001523932387037"},{"denom":"ASSET2","index":"0.000002952109664194"},{"denom":"ASSET3","index":"0.000000862814660308"},{"denom":"ASSET4","index":"0.000008126960283277"},{"denom":"ASSET5","index":"0.000000670285769165"},{"denom":"ASSET6","index":"0.000002728001960218"},{"denom":"ASSET7","index":"0.000004177571336390"},{"denom":"ASSET8","index":"0.000005451929234909"},{"denom":"ASSET9","index":"0.000002354149563130"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000002792091306062"},{"denom":"ASSET1","index":"0.000023760392481519"},{"denom":"ASSET10","index":"0.000019330735214415"},{"denom":"ASSET11","index":"0.000023705763948043"},{"denom":"ASSET12","index":"0.000022788595153270"},{"denom":"ASSET13","index":"0.000007460432475948"},{"denom":"ASSET14","index":"0.000021701401606991"},{"denom":"ASSET15","index":"0.000017344296121870"},{"denom":"ASSET16","index":"0.000010515175863945"},{"denom":"ASSET17","index":"0.000008375559402161"},{"denom":"ASSET18","index":"0.000003388923471278"},{"denom":"ASSET2","index":"0.000007222909907971"},{"denom":"ASSET3","index":"0.000001989926471838"},{"denom":"ASSET4","index":"0.000019255294602933"},{"denom":"ASSET5","index":"0.000001551437823125"},{"denom":"ASSET6","index":"0.000006253588147261"},{"denom":"ASSET7","index":"0.000009862028954195"},{"denom":"ASSET8","index":"0.000013562244421912"},{"denom":"ASSET9","index":"0.000005741841810541"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001507638919625"},{"denom":"ASSET1","index":"0.000012569401049902"},{"denom":"ASSET10","index":"0.000008757228353136"},{"denom":"ASSET11","index":"0.000012160184771718"},{"denom":"ASSET12","index":"0.000010949766096248"},{"denom":"ASSET13","index":"0.000003769097299062"},{"denom":"ASSET14","index":"0.000011358982374432"},{"denom":"ASSET15","index":"0.000008124020006893"},{"denom":"ASSET16","index":"0.000005660107258249"},{"denom":"ASSET17","index":"0.000004018934605743"},{"denom":"ASSET18","index":"0.000001912547658039"},{"denom":"ASSET2","index":"0.000003708791742277"},{"denom":"ASSET3","index":"0.000001085500022130"},{"denom":"ASSET4","index":"0.000010217484335287"},{"denom":"ASSET5","index":"0.000000839970255220"},{"denom":"ASSET6","index":"0.000003428801657204"},{"denom":"ASSET7","index":"0.000005250890980065"},{"denom":"ASSET8","index":"0.000006853295774638"},{"denom":"ASSET9","index":"0.000002959279822235"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003131246414749"},{"denom":"ASSET1","index":"0.000026589761836242"},{"denom":"ASSET10","index":"0.000021355242603721"},{"denom":"ASSET11","index":"0.000026458316408852"},{"denom":"ASSET12","index":"0.000025293988029420"},{"denom":"ASSET13","index":"0.000008316673174883"},{"denom":"ASSET14","index":"0.000024263343459355"},{"denom":"ASSET15","index":"0.000019213959771091"},{"denom":"ASSET16","index":"0.000011784585795875"},{"denom":"ASSET17","index":"0.000009292893547134"},{"denom":"ASSET18","index":"0.000003813004198036"},{"denom":"ASSET2","index":"0.000008060944762894"},{"denom":"ASSET3","index":"0.000002234070199415"},{"denom":"ASSET4","index":"0.000021557233504015"},{"denom":"ASSET5","index":"0.000001738116490695"},{"denom":"ASSET6","index":"0.000007021386599103"},{"denom":"ASSET7","index":"0.000011043212117572"},{"denom":"ASSET8","index":"0.000015117900391662"},{"denom":"ASSET9","index":"0.000006411442995536"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001538667310820"},{"denom":"ASSET1","index":"0.000012827917927858"},{"denom":"ASSET10","index":"0.000008937244372687"},{"denom":"ASSET11","index":"0.000012409488429871"},{"denom":"ASSET12","index":"0.000011174685151587"},{"denom":"ASSET13","index":"0.000003845530209513"},{"denom":"ASSET14","index":"0.000011592355937882"},{"denom":"ASSET15","index":"0.000008288166520415"},{"denom":"ASSET16","index":"0.000005778727600031"},{"denom":"ASSET17","index":"0.000004103871540546"},{"denom":"ASSET18","index":"0.000001954820673732"},{"denom":"ASSET2","index":"0.000003786730053405"},{"denom":"ASSET3","index":"0.000001107719069920"},{"denom":"ASSET4","index":"0.000010424698644316"},{"denom":"ASSET5","index":"0.000000859620346726"},{"denom":"ASSET6","index":"0.000003499178322240"},{"denom":"ASSET7","index":"0.000005359160034507"},{"denom":"ASSET8","index":"0.000006993045662639"},{"denom":"ASSET9","index":"0.000003020431244761"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003070496060295"},{"denom":"ASSET1","index":"0.000026054009108675"},{"denom":"ASSET10","index":"0.000020821706468932"},{"denom":"ASSET11","index":"0.000025897661631707"},{"denom":"ASSET12","index":"0.000024706407518076"},{"denom":"ASSET13","index":"0.000008135385272267"},{"denom":"ASSET14","index":"0.000023765921524780"},{"denom":"ASSET15","index":"0.000018749935123185"},{"denom":"ASSET16","index":"0.000011556337558875"},{"denom":"ASSET17","index":"0.000009079232430047"},{"denom":"ASSET18","index":"0.000003747682066764"},{"denom":"ASSET2","index":"0.000007892419371659"},{"denom":"ASSET3","index":"0.000002191201298955"},{"denom":"ASSET4","index":"0.000021122052487200"},{"denom":"ASSET5","index":"0.000001706992646915"},{"denom":"ASSET6","index":"0.000006888142834266"},{"denom":"ASSET7","index":"0.000010823268476718"},{"denom":"ASSET8","index":"0.000014789657857476"},{"denom":"ASSET9","index":"0.000006276911852268"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001679222100186"},{"denom":"ASSET1","index":"0.000013999028794594"},{"denom":"ASSET10","index":"0.000009753438641601"},{"denom":"ASSET11","index":"0.000013542280383343"},{"denom":"ASSET12","index":"0.000012194769233410"},{"denom":"ASSET13","index":"0.000004196505199295"},{"denom":"ASSET14","index":"0.000012650484277214"},{"denom":"ASSET15","index":"0.000009045065257184"},{"denom":"ASSET16","index":"0.000006306124840851"},{"denom":"ASSET17","index":"0.000004478614512126"},{"denom":"ASSET18","index":"0.000002133387092820"},{"denom":"ASSET2","index":"0.000004132436417626"},{"denom":"ASSET3","index":"0.000001208523228411"},{"denom":"ASSET4","index":"0.000011376342215965"},{"denom":"ASSET5","index":"0.000000938297641211"},{"denom":"ASSET6","index":"0.000003818809397684"},{"denom":"ASSET7","index":"0.000005848343062154"},{"denom":"ASSET8","index":"0.000007631418590690"},{"denom":"ASSET9","index":"0.000003295925469872"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003295755498274"},{"denom":"ASSET1","index":"0.000027960125957180"},{"denom":"ASSET10","index":"0.000022298091456525"},{"denom":"ASSET11","index":"0.000027779779629540"},{"denom":"ASSET12","index":"0.000026478335493542"},{"denom":"ASSET13","index":"0.000008724566942758"},{"denom":"ASSET14","index":"0.000025500389224880"},{"denom":"ASSET15","index":"0.000020088119547171"},{"denom":"ASSET16","index":"0.000012404652968467"},{"denom":"ASSET17","index":"0.000009730254100732"},{"denom":"ASSET18","index":"0.000004025857251145"},{"denom":"ASSET2","index":"0.000008465992991141"},{"denom":"ASSET3","index":"0.000002352288079447"},{"denom":"ASSET4","index":"0.000022667879187178"},{"denom":"ASSET5","index":"0.000001832649164275"},{"denom":"ASSET6","index":"0.000007396215489940"},{"denom":"ASSET7","index":"0.000011616026271508"},{"denom":"ASSET8","index":"0.000015861127767022"},{"denom":"ASSET9","index":"0.000006733269226830"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001488486853561"},{"denom":"ASSET1","index":"0.000012409943784184"},{"denom":"ASSET10","index":"0.000008645838046025"},{"denom":"ASSET11","index":"0.000012005445379346"},{"denom":"ASSET12","index":"0.000010810451131374"},{"denom":"ASSET13","index":"0.000003720376180879"},{"denom":"ASSET14","index":"0.000011214949536212"},{"denom":"ASSET15","index":"0.000008018487089665"},{"denom":"ASSET16","index":"0.000005590655707614"},{"denom":"ASSET17","index":"0.000003970139229188"},{"denom":"ASSET18","index":"0.000001891303352350"},{"denom":"ASSET2","index":"0.000003663191375205"},{"denom":"ASSET3","index":"0.000001071374153354"},{"denom":"ASSET4","index":"0.000010085549624159"},{"denom":"ASSET5","index":"0.000000831702541340"},{"denom":"ASSET6","index":"0.000003384835924059"},{"denom":"ASSET7","index":"0.000005184475396726"},{"denom":"ASSET8","index":"0.000006765467082995"},{"denom":"ASSET9","index":"0.000002921470807498"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003140601357292"},{"denom":"ASSET1","index":"0.000026678854887219"},{"denom":"ASSET10","index":"0.000021467437308134"},{"denom":"ASSET11","index":"0.000026557150856893"},{"denom":"ASSET12","index":"0.000025409189778577"},{"denom":"ASSET13","index":"0.000008348678217638"},{"denom":"ASSET14","index":"0.000024348515645151"},{"denom":"ASSET15","index":"0.000019305257093893"},{"denom":"ASSET16","index":"0.000011824039078448"},{"denom":"ASSET17","index":"0.000009337874135725"},{"denom":"ASSET18","index":"0.000003825021517438"},{"denom":"ASSET2","index":"0.000008092644314938"},{"denom":"ASSET3","index":"0.000002240059115813"},{"denom":"ASSET4","index":"0.000021626536887159"},{"denom":"ASSET5","index":"0.000001745574888449"},{"denom":"ASSET6","index":"0.000007040920669072"},{"denom":"ASSET7","index":"0.000011079696231301"},{"denom":"ASSET8","index":"0.000015176664815864"},{"denom":"ASSET9","index":"0.000006434669973810"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001385039568420"},{"denom":"ASSET1","index":"0.000011547928050470"},{"denom":"ASSET10","index":"0.000008045290512347"},{"denom":"ASSET11","index":"0.000011171268467624"},{"denom":"ASSET12","index":"0.000010059084660007"},{"denom":"ASSET13","index":"0.000003461116009305"},{"denom":"ASSET14","index":"0.000010435744242853"},{"denom":"ASSET15","index":"0.000007461023285412"},{"denom":"ASSET16","index":"0.000005202054396163"},{"denom":"ASSET17","index":"0.000003694427456948"},{"denom":"ASSET18","index":"0.000001759721935608"},{"denom":"ASSET2","index":"0.000003408719794369"},{"denom":"ASSET3","index":"0.000000996516691625"},{"denom":"ASSET4","index":"0.000009383865512804"},{"denom":"ASSET5","index":"0.000000774079930102"},{"denom":"ASSET6","index":"0.000003149704543173"},{"denom":"ASSET7","index":"0.000004824406205487"},{"denom":"ASSET8","index":"0.000006294466047200"},{"denom":"ASSET9","index":"0.000002718671529731"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000002978674281858"},{"denom":"ASSET1","index":"0.000025310372422717"},{"denom":"ASSET10","index":"0.000020411345436720"},{"denom":"ASSET11","index":"0.000025206262983954"},{"denom":"ASSET12","index":"0.000024139567910062"},{"denom":"ASSET13","index":"0.000007924745788344"},{"denom":"ASSET14","index":"0.000023102636423037"},{"denom":"ASSET15","index":"0.000018346974201526"},{"denom":"ASSET16","index":"0.000011213830154915"},{"denom":"ASSET17","index":"0.000008871351161454"},{"denom":"ASSET18","index":"0.000003625142276595"},{"denom":"ASSET2","index":"0.000007680838181843"},{"denom":"ASSET3","index":"0.000002123796319816"},{"denom":"ASSET4","index":"0.000020514843977806"},{"denom":"ASSET5","index":"0.000001655567492872"},{"denom":"ASSET6","index":"0.000006676037052519"},{"denom":"ASSET7","index":"0.000010510115662832"},{"denom":"ASSET8","index":"0.000014407133239162"},{"denom":"ASSET9","index":"0.000006107008804836"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001563741356289"},{"denom":"ASSET1","index":"0.000013036816883138"},{"denom":"ASSET10","index":"0.000009082880828100"},{"denom":"ASSET11","index":"0.000012611783735587"},{"denom":"ASSET12","index":"0.000011356772924286"},{"denom":"ASSET13","index":"0.000003908472310400"},{"denom":"ASSET14","index":"0.000011781101207579"},{"denom":"ASSET15","index":"0.000008423480314776"},{"denom":"ASSET16","index":"0.000005872928997340"},{"denom":"ASSET17","index":"0.000004170681814362"},{"denom":"ASSET18","index":"0.000001986659911066"},{"denom":"ASSET2","index":"0.000003848558848473"},{"denom":"ASSET3","index":"0.000001125668219966"},{"denom":"ASSET4","index":"0.000010594814661429"},{"denom":"ASSET5","index":"0.000000873679247744"},{"denom":"ASSET6","index":"0.000003556392613548"},{"denom":"ASSET7","index":"0.000005446486121273"},{"denom":"ASSET8","index":"0.000007106793880903"},{"denom":"ASSET9","index":"0.000003069683843425"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003115193601728"},{"denom":"ASSET1","index":"0.000026433576226141"},{"denom":"ASSET10","index":"0.000021120836274624"},{"denom":"ASSET11","index":"0.000026274076149270"},{"denom":"ASSET12","index":"0.000025063206789151"},{"denom":"ASSET13","index":"0.000008253838888439"},{"denom":"ASSET14","index":"0.000024111622086359"},{"denom":"ASSET15","index":"0.000019020166052921"},{"denom":"ASSET16","index":"0.000011725264187843"},{"denom":"ASSET17","index":"0.000009210335248597"},{"denom":"ASSET18","index":"0.000003802618681808"},{"denom":"ASSET2","index":"0.000008007094168018"},{"denom":"ASSET3","index":"0.000002223045227271"},{"denom":"ASSET4","index":"0.000021430343290469"},{"denom":"ASSET5","index":"0.000001731871182363"},{"denom":"ASSET6","index":"0.000006989160352022"},{"denom":"ASSET7","index":"0.000010981276608696"},{"denom":"ASSET8","index":"0.000015004007461071"},{"denom":"ASSET9","index":"0.000006368316319391"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001688791638136"},{"denom":"ASSET1","index":"0.000014080258863939"},{"denom":"ASSET10","index":"0.000009809129194434"},{"denom":"ASSET11","index":"0.000013620783833550"},{"denom":"ASSET12","index":"0.000012265553395360"},{"denom":"ASSET13","index":"0.000004220322334414"},{"denom":"ASSET14","index":"0.000012723923918464"},{"denom":"ASSET15","index":"0.000009096721995874"},{"denom":"ASSET16","index":"0.000006342080828109"},{"denom":"ASSET17","index":"0.000004504180706554"},{"denom":"ASSET18","index":"0.000002144953146672"},{"denom":"ASSET2","index":"0.000004156260911908"},{"denom":"ASSET3","index":"0.000001214958013048"},{"denom":"ASSET4","index":"0.000011442695468341"},{"denom":"ASSET5","index":"0.000000943249221039"},{"denom":"ASSET6","index":"0.000003840371828516"},{"denom":"ASSET7","index":"0.000005881501290436"},{"denom":"ASSET8","index":"0.000007675221120608"},{"denom":"ASSET9","index":"0.000003314626361051"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003342989987813"},{"denom":"ASSET1","index":"0.000028363859076608"},{"denom":"ASSET10","index":"0.000022643596968544"},{"denom":"ASSET11","index":"0.000028187678804911"},{"denom":"ASSET12","index":"0.000026879157824253"},{"denom":"ASSET13","index":"0.000008853292918908"},{"denom":"ASSET14","index":"0.000025870927331183"},{"denom":"ASSET15","index":"0.000020395094195043"},{"denom":"ASSET16","index":"0.000012581780801373"},{"denom":"ASSET17","index":"0.000009877287329505"},{"denom":"ASSET18","index":"0.000004080927248291"},{"denom":"ASSET2","index":"0.000008590241612281"},{"denom":"ASSET3","index":"0.000002384972961476"},{"denom":"ASSET4","index":"0.000022995501297970"},{"denom":"ASSET5","index":"0.000001858071035633"},{"denom":"ASSET6","index":"0.000007500418590266"},{"denom":"ASSET7","index":"0.000011782462758670"},{"denom":"ASSET8","index":"0.000016095075530395"},{"denom":"ASSET9","index":"0.000006831506736707"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001571496317510"},{"denom":"ASSET1","index":"0.000013101483241955"},{"denom":"ASSET10","index":"0.000009127906315185"},{"denom":"ASSET11","index":"0.000012674221268720"},{"denom":"ASSET12","index":"0.000011413128948859"},{"denom":"ASSET13","index":"0.000003927726401627"},{"denom":"ASSET14","index":"0.000011839579408375"},{"denom":"ASSET15","index":"0.000008464899606481"},{"denom":"ASSET16","index":"0.000005901733523932"},{"denom":"ASSET17","index":"0.000004191468360414"},{"denom":"ASSET18","index":"0.000001996729506447"},{"denom":"ASSET2","index":"0.000003867268629536"},{"denom":"ASSET3","index":"0.000001131250124766"},{"denom":"ASSET4","index":"0.000010647059997798"},{"denom":"ASSET5","index":"0.000000878057844331"},{"denom":"ASSET6","index":"0.000003573906419993"},{"denom":"ASSET7","index":"0.000005473254280118"},{"denom":"ASSET8","index":"0.000007142132243950"},{"denom":"ASSET9","index":"0.000003084563647228"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003113134051861"},{"denom":"ASSET1","index":"0.000026415094552464"},{"denom":"ASSET10","index":"0.000021090707465492"},{"denom":"ASSET11","index":"0.000026251548228726"},{"denom":"ASSET12","index":"0.000025034408517114"},{"denom":"ASSET13","index":"0.000008245703890405"},{"denom":"ASSET14","index":"0.000024093200316600"},{"denom":"ASSET15","index":"0.000018995578271326"},{"denom":"ASSET16","index":"0.000011717396138812"},{"denom":"ASSET17","index":"0.000009199501798709"},{"denom":"ASSET18","index":"0.000003801350346824"},{"denom":"ASSET2","index":"0.000007999912620195"},{"denom":"ASSET3","index":"0.000002221641081089"},{"denom":"ASSET4","index":"0.000021415082747190"},{"denom":"ASSET5","index":"0.000001730738444371"},{"denom":"ASSET6","index":"0.000006985361363625"},{"denom":"ASSET7","index":"0.000010973556930807"},{"denom":"ASSET8","index":"0.000014990236718633"},{"denom":"ASSET9","index":"0.000006362695679170"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001486431692511"},{"denom":"ASSET1","index":"0.000012397696164316"},{"denom":"ASSET10","index":"0.000008637613387551"},{"denom":"ASSET11","index":"0.000011993186507636"},{"denom":"ASSET12","index":"0.000010799842650204"},{"denom":"ASSET13","index":"0.000003716482933529"},{"denom":"ASSET14","index":"0.000011203544902380"},{"denom":"ASSET15","index":"0.000008010260087670"},{"denom":"ASSET16","index":"0.000005584816956599"},{"denom":"ASSET17","index":"0.000003965970925374"},{"denom":"ASSET18","index":"0.000001889326540182"},{"denom":"ASSET2","index":"0.000003659157213720"},{"denom":"ASSET3","index":"0.000001070618372770"},{"denom":"ASSET4","index":"0.000010074793405297"},{"denom":"ASSET5","index":"0.000000830819234978"},{"denom":"ASSET6","index":"0.000003381410064224"},{"denom":"ASSET7","index":"0.000005179499895414"},{"denom":"ASSET8","index":"0.000006757975701421"},{"denom":"ASSET9","index":"0.000002918767283230"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003023961266495"},{"denom":"ASSET1","index":"0.000025674667559579"},{"denom":"ASSET10","index":"0.000020567435721356"},{"denom":"ASSET11","index":"0.000025532965784321"},{"denom":"ASSET12","index":"0.000024383768132692"},{"denom":"ASSET13","index":"0.000008022807352722"},{"denom":"ASSET14","index":"0.000023423766496233"},{"denom":"ASSET15","index":"0.000018512228577533"},{"denom":"ASSET16","index":"0.000011384524743973"},{"denom":"ASSET17","index":"0.000008960010456843"},{"denom":"ASSET18","index":"0.000003688974211121"},{"denom":"ASSET2","index":"0.000007780619396113"},{"denom":"ASSET3","index":"0.000002157718690670"},{"denom":"ASSET4","index":"0.000020813357966886"},{"denom":"ASSET5","index":"0.000001681323481152"},{"denom":"ASSET6","index":"0.000006783427048921"},{"denom":"ASSET7","index":"0.000010664665966441"},{"denom":"ASSET8","index":"0.000014584270248941"},{"denom":"ASSET9","index":"0.000006187655866052"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001789525520762"},{"denom":"ASSET1","index":"0.000014923544215299"},{"denom":"ASSET10","index":"0.000010397506905977"},{"denom":"ASSET11","index":"0.000014436898494348"},{"denom":"ASSET12","index":"0.000013000171779235"},{"denom":"ASSET13","index":"0.000004474200642702"},{"denom":"ASSET14","index":"0.000013486043818595"},{"denom":"ASSET15","index":"0.000009642393672833"},{"denom":"ASSET16","index":"0.000006722519347127"},{"denom":"ASSET17","index":"0.000004774389100140"},{"denom":"ASSET18","index":"0.000002273850196939"},{"denom":"ASSET2","index":"0.000004405342981073"},{"denom":"ASSET3","index":"0.000001288179849576"},{"denom":"ASSET4","index":"0.000012128232625798"},{"denom":"ASSET5","index":"0.000001000370297599"},{"denom":"ASSET6","index":"0.000004071112533615"},{"denom":"ASSET7","index":"0.000006234326262993"},{"denom":"ASSET8","index":"0.000008135261932908"},{"denom":"ASSET9","index":"0.000003514061787852"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003488279034648"},{"denom":"ASSET1","index":"0.000029592208548275"},{"denom":"ASSET10","index":"0.000023577626976592"},{"denom":"ASSET11","index":"0.000029395914355993"},{"denom":"ASSET12","index":"0.000028007798530295"},{"denom":"ASSET13","index":"0.000009231498766276"},{"denom":"ASSET14","index":"0.000026986732997785"},{"denom":"ASSET15","index":"0.000021244630549189"},{"denom":"ASSET16","index":"0.000013129960095172"},{"denom":"ASSET17","index":"0.000010292381952670"},{"denom":"ASSET18","index":"0.000004261641431672"},{"denom":"ASSET2","index":"0.000008958343988321"},{"denom":"ASSET3","index":"0.000002489657102823"},{"denom":"ASSET4","index":"0.000023991917258738"},{"denom":"ASSET5","index":"0.000001939742890351"},{"denom":"ASSET6","index":"0.000007829259808535"},{"denom":"ASSET7","index":"0.000012294264842111"},{"denom":"ASSET8","index":"0.000016782088113605"},{"denom":"ASSET9","index":"0.000007125719490615"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001504632489095"},{"denom":"ASSET1","index":"0.000012543084148708"},{"denom":"ASSET10","index":"0.000008738830231438"},{"denom":"ASSET11","index":"0.000012134501498699"},{"denom":"ASSET12","index":"0.000010926897843985"},{"denom":"ASSET13","index":"0.000003760573206331"},{"denom":"ASSET14","index":"0.000011335480493994"},{"denom":"ASSET15","index":"0.000008104451906425"},{"denom":"ASSET16","index":"0.000005650267962622"},{"denom":"ASSET17","index":"0.000004012577307899"},{"denom":"ASSET18","index":"0.000001911199106291"},{"denom":"ASSET2","index":"0.000003702780265705"},{"denom":"ASSET3","index":"0.000001083281631273"},{"denom":"ASSET4","index":"0.000010193733911157"},{"denom":"ASSET5","index":"0.000000840685682831"},{"denom":"ASSET6","index":"0.000003421207682886"},{"denom":"ASSET7","index":"0.000005240341290738"},{"denom":"ASSET8","index":"0.000006837711289210"},{"denom":"ASSET9","index":"0.000002953488070376"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003015423229771"},{"denom":"ASSET1","index":"0.000025588098096649"},{"denom":"ASSET10","index":"0.000020460473772645"},{"denom":"ASSET11","index":"0.000025438043766359"},{"denom":"ASSET12","index":"0.000024273358860204"},{"denom":"ASSET13","index":"0.000007991752317173"},{"denom":"ASSET14","index":"0.000023342063892494"},{"denom":"ASSET15","index":"0.000018422728556898"},{"denom":"ASSET16","index":"0.000011348811151398"},{"denom":"ASSET17","index":"0.000008919790197810"},{"denom":"ASSET18","index":"0.000003679502338318"},{"denom":"ASSET2","index":"0.000007752126098631"},{"denom":"ASSET3","index":"0.000002151933074669"},{"denom":"ASSET4","index":"0.000020744635257959"},{"denom":"ASSET5","index":"0.000001676458472807"},{"denom":"ASSET6","index":"0.000006763790928604"},{"denom":"ASSET7","index":"0.000010629564741383"},{"denom":"ASSET8","index":"0.000014527278079751"},{"denom":"ASSET9","index":"0.000006165283413682"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001790270882045"},{"denom":"ASSET1","index":"0.000014924962381265"},{"denom":"ASSET10","index":"0.000010398687848362"},{"denom":"ASSET11","index":"0.000014438353512768"},{"denom":"ASSET12","index":"0.000013001639266884"},{"denom":"ASSET13","index":"0.000004474427888377"},{"denom":"ASSET14","index":"0.000013487623477013"},{"denom":"ASSET15","index":"0.000009643475881721"},{"denom":"ASSET16","index":"0.000006723198012370"},{"denom":"ASSET17","index":"0.000004774888563278"},{"denom":"ASSET18","index":"0.000002274381117071"},{"denom":"ASSET2","index":"0.000004405715467922"},{"denom":"ASSET3","index":"0.000001288670212721"},{"denom":"ASSET4","index":"0.000012129616185469"},{"denom":"ASSET5","index":"0.000001000078046809"},{"denom":"ASSET6","index":"0.000004071523241162"},{"denom":"ASSET7","index":"0.000006235339827137"},{"denom":"ASSET8","index":"0.000008136175240279"},{"denom":"ASSET9","index":"0.000003514327977106"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003452635056994"},{"denom":"ASSET1","index":"0.000029280443630050"},{"denom":"ASSET10","index":"0.000023297581891953"},{"denom":"ASSET11","index":"0.000029078046899152"},{"denom":"ASSET12","index":"0.000027688393753974"},{"denom":"ASSET13","index":"0.000009130247174920"},{"denom":"ASSET14","index":"0.000026700258191979"},{"denom":"ASSET15","index":"0.000020998119885469"},{"denom":"ASSET16","index":"0.000012993858989816"},{"denom":"ASSET17","index":"0.000010174919177657"},{"denom":"ASSET18","index":"0.000004220034662939"},{"denom":"ASSET2","index":"0.000008861755768133"},{"denom":"ASSET3","index":"0.000002464736347038"},{"denom":"ASSET4","index":"0.000023740327943060"},{"denom":"ASSET5","index":"0.000001919615043943"},{"denom":"ASSET6","index":"0.000007749671229698"},{"denom":"ASSET7","index":"0.000012165961282812"},{"denom":"ASSET8","index":"0.000016598407083950"},{"denom":"ASSET9","index":"0.000007048985746822"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001835550145227"},{"denom":"ASSET1","index":"0.000015324623289081"},{"denom":"ASSET10","index":"0.000010676536631006"},{"denom":"ASSET11","index":"0.000014825027987456"},{"denom":"ASSET12","index":"0.000013348446318211"},{"denom":"ASSET13","index":"0.000004592576069005"},{"denom":"ASSET14","index":"0.000013848041619836"},{"denom":"ASSET15","index":"0.000009899388384035"},{"denom":"ASSET16","index":"0.000006901816574290"},{"denom":"ASSET17","index":"0.000004903435367793"},{"denom":"ASSET18","index":"0.000002335145446851"},{"denom":"ASSET2","index":"0.000004522262656184"},{"denom":"ASSET3","index":"0.000001321152019851"},{"denom":"ASSET4","index":"0.000012452875481226"},{"denom":"ASSET5","index":"0.000001025095544814"},{"denom":"ASSET6","index":"0.000004178097003954"},{"denom":"ASSET7","index":"0.000006402221272666"},{"denom":"ASSET8","index":"0.000008352493301969"},{"denom":"ASSET9","index":"0.000003608188289508"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003336473275634"},{"denom":"ASSET1","index":"0.000028284037775138"},{"denom":"ASSET10","index":"0.000022321061137243"},{"denom":"ASSET11","index":"0.000028041053149272"},{"denom":"ASSET12","index":"0.000026607048139233"},{"denom":"ASSET13","index":"0.000008795774551756"},{"denom":"ASSET14","index":"0.000025776026947277"},{"denom":"ASSET15","index":"0.000020150006768141"},{"denom":"ASSET16","index":"0.000012562977954735"},{"denom":"ASSET17","index":"0.000009778271060189"},{"denom":"ASSET18","index":"0.000004091528532498"},{"denom":"ASSET2","index":"0.000008544798017437"},{"denom":"ASSET3","index":"0.000002382883485470"},{"denom":"ASSET4","index":"0.000022934405116164"},{"denom":"ASSET5","index":"0.000001855148612588"},{"denom":"ASSET6","index":"0.000007498692848558"},{"denom":"ASSET7","index":"0.000011756140274513"},{"denom":"ASSET8","index":"0.000015991743254740"},{"denom":"ASSET9","index":"0.000006799136288961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001764742979644"},{"denom":"ASSET1","index":"0.000014715413525055"},{"denom":"ASSET10","index":"0.000010252344388411"},{"denom":"ASSET11","index":"0.000014235671854472"},{"denom":"ASSET12","index":"0.000012819403806098"},{"denom":"ASSET13","index":"0.000004411268809023"},{"denom":"ASSET14","index":"0.000013298556836595"},{"denom":"ASSET15","index":"0.000009507714678855"},{"denom":"ASSET16","index":"0.000006629264655353"},{"denom":"ASSET17","index":"0.000004707943412672"},{"denom":"ASSET18","index":"0.000002242718729968"},{"denom":"ASSET2","index":"0.000004343575199063"},{"denom":"ASSET3","index":"0.000001270873946982"},{"denom":"ASSET4","index":"0.000011958811999481"},{"denom":"ASSET5","index":"0.000000985972145064"},{"denom":"ASSET6","index":"0.000004013936750564"},{"denom":"ASSET7","index":"0.000006147757064510"},{"denom":"ASSET8","index":"0.000008021987100262"},{"denom":"ASSET9","index":"0.000003464735549761"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003371223111771"},{"denom":"ASSET1","index":"0.000028586584995448"},{"denom":"ASSET10","index":"0.000022716281614844"},{"denom":"ASSET11","index":"0.000028381809067472"},{"denom":"ASSET12","index":"0.000027011101270499"},{"denom":"ASSET13","index":"0.000008910504058238"},{"denom":"ASSET14","index":"0.000026065694327630"},{"denom":"ASSET15","index":"0.000020479714095343"},{"denom":"ASSET16","index":"0.000012688778091614"},{"denom":"ASSET17","index":"0.000009925875585388"},{"denom":"ASSET18","index":"0.000004122881217339"},{"denom":"ASSET2","index":"0.000008649339803247"},{"denom":"ASSET3","index":"0.000002407313457267"},{"denom":"ASSET4","index":"0.000023177863483423"},{"denom":"ASSET5","index":"0.000001874397047373"},{"denom":"ASSET6","index":"0.000007568278053481"},{"denom":"ASSET7","index":"0.000011878402488901"},{"denom":"ASSET8","index":"0.000016198768839280"},{"denom":"ASSET9","index":"0.000006880150170591"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001519402004985"},{"denom":"ASSET1","index":"0.000012669186594649"},{"denom":"ASSET10","index":"0.000008826466179926"},{"denom":"ASSET11","index":"0.000012255973562605"},{"denom":"ASSET12","index":"0.000011036700348729"},{"denom":"ASSET13","index":"0.000003798237040326"},{"denom":"ASSET14","index":"0.000011448841492233"},{"denom":"ASSET15","index":"0.000008185476833202"},{"denom":"ASSET16","index":"0.000005707270529482"},{"denom":"ASSET17","index":"0.000004053346512768"},{"denom":"ASSET18","index":"0.000001930471259949"},{"denom":"ASSET2","index":"0.000003739819114914"},{"denom":"ASSET3","index":"0.000001093862254735"},{"denom":"ASSET4","index":"0.000010296025367816"},{"denom":"ASSET5","index":"0.000000848935723420"},{"denom":"ASSET6","index":"0.000003455768651901"},{"denom":"ASSET7","index":"0.000005292985608899"},{"denom":"ASSET8","index":"0.000006906177861104"},{"denom":"ASSET9","index":"0.000002983065805906"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003090388166914"},{"denom":"ASSET1","index":"0.000026235396530584"},{"denom":"ASSET10","index":"0.000021016328726441"},{"denom":"ASSET11","index":"0.000026091077525301"},{"denom":"ASSET12","index":"0.000024916432469284"},{"denom":"ASSET13","index":"0.000008198423394567"},{"denom":"ASSET14","index":"0.000023935350029219"},{"denom":"ASSET15","index":"0.000018916111125702"},{"denom":"ASSET16","index":"0.000011633439861257"},{"denom":"ASSET17","index":"0.000009156707623184"},{"denom":"ASSET18","index":"0.000003769226369030"},{"denom":"ASSET2","index":"0.000007950992094695"},{"denom":"ASSET3","index":"0.000002205065882760"},{"denom":"ASSET4","index":"0.000021268551776440"},{"denom":"ASSET5","index":"0.000001717872208784"},{"denom":"ASSET6","index":"0.000006931889619894"},{"denom":"ASSET7","index":"0.000010897757198785"},{"denom":"ASSET8","index":"0.000014903243728132"},{"denom":"ASSET9","index":"0.000006323427167640"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001518878942956"},{"denom":"ASSET1","index":"0.000012665267621292"},{"denom":"ASSET10","index":"0.000008823986077449"},{"denom":"ASSET11","index":"0.000012252067733139"},{"denom":"ASSET12","index":"0.000011032961258059"},{"denom":"ASSET13","index":"0.000003796959064490"},{"denom":"ASSET14","index":"0.000011445207974612"},{"denom":"ASSET15","index":"0.000008182978177143"},{"denom":"ASSET16","index":"0.000005705208605625"},{"denom":"ASSET17","index":"0.000004051932467214"},{"denom":"ASSET18","index":"0.000001930172487911"},{"denom":"ASSET2","index":"0.000003738815596953"},{"denom":"ASSET3","index":"0.000001093764409816"},{"denom":"ASSET4","index":"0.000010292823511460"},{"denom":"ASSET5","index":"0.000000848799308881"},{"denom":"ASSET6","index":"0.000003454770460461"},{"denom":"ASSET7","index":"0.000005291055545873"},{"denom":"ASSET8","index":"0.000006904298477127"},{"denom":"ASSET9","index":"0.000002981997347372"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003032310940473"},{"denom":"ASSET1","index":"0.000025733484746235"},{"denom":"ASSET10","index":"0.000020566326171769"},{"denom":"ASSET11","index":"0.000025579130700492"},{"denom":"ASSET12","index":"0.000024402998631681"},{"denom":"ASSET13","index":"0.000008035434808363"},{"denom":"ASSET14","index":"0.000023473377840860"},{"denom":"ASSET15","index":"0.000018519821992016"},{"denom":"ASSET16","index":"0.000011413808805814"},{"denom":"ASSET17","index":"0.000008967671528488"},{"denom":"ASSET18","index":"0.000003701450923042"},{"denom":"ASSET2","index":"0.000007795399667781"},{"denom":"ASSET3","index":"0.000002164126947351"},{"denom":"ASSET4","index":"0.000020862528644023"},{"denom":"ASSET5","index":"0.000001685967393794"},{"denom":"ASSET6","index":"0.000006803442800114"},{"denom":"ASSET7","index":"0.000010689840259007"},{"denom":"ASSET8","index":"0.000014607710652032"},{"denom":"ASSET9","index":"0.000006199747658625"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001387661284101"},{"denom":"ASSET1","index":"0.000011573014587468"},{"denom":"ASSET10","index":"0.000008062929395432"},{"denom":"ASSET11","index":"0.000011195232526081"},{"denom":"ASSET12","index":"0.000010081345808669"},{"denom":"ASSET13","index":"0.000003469153210252"},{"denom":"ASSET14","index":"0.000010458456853962"},{"denom":"ASSET15","index":"0.000007477132344649"},{"denom":"ASSET16","index":"0.000005213124040705"},{"denom":"ASSET17","index":"0.000003702666811251"},{"denom":"ASSET18","index":"0.000001763430297203"},{"denom":"ASSET2","index":"0.000003416142938760"},{"denom":"ASSET3","index":"0.000000999142965196"},{"denom":"ASSET4","index":"0.000009404961585085"},{"denom":"ASSET5","index":"0.000000775694605619"},{"denom":"ASSET6","index":"0.000003156459710063"},{"denom":"ASSET7","index":"0.000004834670963223"},{"denom":"ASSET8","index":"0.000006308893323556"},{"denom":"ASSET9","index":"0.000002724996361089"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000002847838387483"},{"denom":"ASSET1","index":"0.000024182680336096"},{"denom":"ASSET10","index":"0.000019393227963423"},{"denom":"ASSET11","index":"0.000024054653395269"},{"denom":"ASSET12","index":"0.000022982316432831"},{"denom":"ASSET13","index":"0.000007558836235579"},{"denom":"ASSET14","index":"0.000022064079622497"},{"denom":"ASSET15","index":"0.000017450899901336"},{"denom":"ASSET16","index":"0.000010721434414440"},{"denom":"ASSET17","index":"0.000008446187739031"},{"denom":"ASSET18","index":"0.000003472449339717"},{"denom":"ASSET2","index":"0.000007330038539196"},{"denom":"ASSET3","index":"0.000002031951160271"},{"denom":"ASSET4","index":"0.000019603371773062"},{"denom":"ASSET5","index":"0.000001583403578691"},{"denom":"ASSET6","index":"0.000006387295602350"},{"denom":"ASSET7","index":"0.000010043914419286"},{"denom":"ASSET8","index":"0.000013741733556815"},{"denom":"ASSET9","index":"0.000005829813216311"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001740203165372"},{"denom":"ASSET1","index":"0.000014506985633466"},{"denom":"ASSET10","index":"0.000010106727386233"},{"denom":"ASSET11","index":"0.000014033828203465"},{"denom":"ASSET12","index":"0.000012637643303754"},{"denom":"ASSET13","index":"0.000004348390877948"},{"denom":"ASSET14","index":"0.000013109742216014"},{"denom":"ASSET15","index":"0.000009373174592071"},{"denom":"ASSET16","index":"0.000006535288529808"},{"denom":"ASSET17","index":"0.000004640541774324"},{"denom":"ASSET18","index":"0.000002210185042151"},{"denom":"ASSET2","index":"0.000004281704260297"},{"denom":"ASSET3","index":"0.000001252226487004"},{"denom":"ASSET4","index":"0.000011789770593618"},{"denom":"ASSET5","index":"0.000000971719285773"},{"denom":"ASSET6","index":"0.000003956739313965"},{"denom":"ASSET7","index":"0.000006060014064326"},{"denom":"ASSET8","index":"0.000007908186039228"},{"denom":"ASSET9","index":"0.000003415836748573"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003351161845380"},{"denom":"ASSET1","index":"0.000028416485386018"},{"denom":"ASSET10","index":"0.000022605276372189"},{"denom":"ASSET11","index":"0.000028218825237526"},{"denom":"ASSET12","index":"0.000026868556551399"},{"denom":"ASSET13","index":"0.000008859853422879"},{"denom":"ASSET14","index":"0.000025912194276628"},{"denom":"ASSET15","index":"0.000020375555431981"},{"denom":"ASSET16","index":"0.000012611404420708"},{"denom":"ASSET17","index":"0.000009873044520717"},{"denom":"ASSET18","index":"0.000004095473642305"},{"denom":"ASSET2","index":"0.000008599384819082"},{"denom":"ASSET3","index":"0.000002391571176633"},{"denom":"ASSET4","index":"0.000023040021162794"},{"denom":"ASSET5","index":"0.000001862805125681"},{"denom":"ASSET6","index":"0.000007520693553142"},{"denom":"ASSET7","index":"0.000011806544930596"},{"denom":"ASSET8","index":"0.000016107343127742"},{"denom":"ASSET9","index":"0.000006840485865179"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001711866379191"},{"denom":"ASSET1","index":"0.000014286095556473"},{"denom":"ASSET10","index":"0.000009953932372868"},{"denom":"ASSET11","index":"0.000013820467901333"},{"denom":"ASSET12","index":"0.000012444127332464"},{"denom":"ASSET13","index":"0.000004281948436482"},{"denom":"ASSET14","index":"0.000012909754987604"},{"denom":"ASSET15","index":"0.000009230383516596"},{"denom":"ASSET16","index":"0.000006434335097252"},{"denom":"ASSET17","index":"0.000004569541988186"},{"denom":"ASSET18","index":"0.000002177494034331"},{"denom":"ASSET2","index":"0.000004215756269820"},{"denom":"ASSET3","index":"0.000001232543793017"},{"denom":"ASSET4","index":"0.000011608736539419"},{"denom":"ASSET5","index":"0.000000956362683841"},{"denom":"ASSET6","index":"0.000003896207879038"},{"denom":"ASSET7","index":"0.000005968707442112"},{"denom":"ASSET8","index":"0.000007787850781065"},{"denom":"ASSET9","index":"0.000003362105568731"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003408995344605"},{"denom":"ASSET1","index":"0.000028940875589883"},{"denom":"ASSET10","index":"0.000023121939135123"},{"denom":"ASSET11","index":"0.000028765460883304"},{"denom":"ASSET12","index":"0.000027437813762181"},{"denom":"ASSET13","index":"0.000009035078182388"},{"denom":"ASSET14","index":"0.000026397840013038"},{"denom":"ASSET15","index":"0.000020822021063845"},{"denom":"ASSET16","index":"0.000012835900360827"},{"denom":"ASSET17","index":"0.000010082289518918"},{"denom":"ASSET18","index":"0.000004163537456367"},{"denom":"ASSET2","index":"0.000008764373535196"},{"denom":"ASSET3","index":"0.000002432999591430"},{"denom":"ASSET4","index":"0.000023461370966582"},{"denom":"ASSET5","index":"0.000001895172356369"},{"denom":"ASSET6","index":"0.000007651446569151"},{"denom":"ASSET7","index":"0.000012022926111771"},{"denom":"ASSET8","index":"0.000016426068411072"},{"denom":"ASSET9","index":"0.000006969965423669"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001459800105667"},{"denom":"ASSET1","index":"0.000012176396665923"},{"denom":"ASSET10","index":"0.000008484162206626"},{"denom":"ASSET11","index":"0.000011779823335110"},{"denom":"ASSET12","index":"0.000010607197020722"},{"denom":"ASSET13","index":"0.000003650070053435"},{"denom":"ASSET14","index":"0.000011003770351536"},{"denom":"ASSET15","index":"0.000007867650218206"},{"denom":"ASSET16","index":"0.000005484791497715"},{"denom":"ASSET17","index":"0.000003895079438851"},{"denom":"ASSET18","index":"0.000001855233857943"},{"denom":"ASSET2","index":"0.000003594230705131"},{"denom":"ASSET3","index":"0.000001050691410948"},{"denom":"ASSET4","index":"0.000009896100013746"},{"denom":"ASSET5","index":"0.000000815938232363"},{"denom":"ASSET6","index":"0.000003321871434831"},{"denom":"ASSET7","index":"0.000005087078588365"},{"denom":"ASSET8","index":"0.000006638044976977"},{"denom":"ASSET9","index":"0.000002867179598640"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000002975317591563"},{"denom":"ASSET1","index":"0.000025265738469637"},{"denom":"ASSET10","index":"0.000020245724387946"},{"denom":"ASSET11","index":"0.000025128558675417"},{"denom":"ASSET12","index":"0.000023998925764885"},{"denom":"ASSET13","index":"0.000007895668684136"},{"denom":"ASSET14","index":"0.000023051238668493"},{"denom":"ASSET15","index":"0.000018221178423268"},{"denom":"ASSET16","index":"0.000011202197653725"},{"denom":"ASSET17","index":"0.000008818540737002"},{"denom":"ASSET18","index":"0.000003629428323701"},{"denom":"ASSET2","index":"0.000007657107369447"},{"denom":"ASSET3","index":"0.000002122660280404"},{"denom":"ASSET4","index":"0.000020482509156357"},{"denom":"ASSET5","index":"0.000001654309607539"},{"denom":"ASSET6","index":"0.000006675356935536"},{"denom":"ASSET7","index":"0.000010494215679887"},{"denom":"ASSET8","index":"0.000014353927855523"},{"denom":"ASSET9","index":"0.000006089535217587"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001617402557586"},{"denom":"ASSET1","index":"0.000013485147451276"},{"denom":"ASSET10","index":"0.000009395521488362"},{"denom":"ASSET11","index":"0.000013045402724081"},{"denom":"ASSET12","index":"0.000011747619504798"},{"denom":"ASSET13","index":"0.000004042433845849"},{"denom":"ASSET14","index":"0.000012186291683878"},{"denom":"ASSET15","index":"0.000008713380887153"},{"denom":"ASSET16","index":"0.000006074912523982"},{"denom":"ASSET17","index":"0.000004313788518972"},{"denom":"ASSET18","index":"0.000002055002188551"},{"denom":"ASSET2","index":"0.000003980226055173"},{"denom":"ASSET3","index":"0.000001163714704894"},{"denom":"ASSET4","index":"0.000010959296640193"},{"denom":"ASSET5","index":"0.000000903085512923"},{"denom":"ASSET6","index":"0.000003677767486712"},{"denom":"ASSET7","index":"0.000005633022700557"},{"denom":"ASSET8","index":"0.000007351244780963"},{"denom":"ASSET9","index":"0.000003174742420725"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003091273620954"},{"denom":"ASSET1","index":"0.000026212594205506"},{"denom":"ASSET10","index":"0.000020831747389799"},{"denom":"ASSET11","index":"0.000026024829344923"},{"denom":"ASSET12","index":"0.000024768925461013"},{"denom":"ASSET13","index":"0.000008170539761157"},{"denom":"ASSET14","index":"0.000023900540063840"},{"denom":"ASSET15","index":"0.000018780610027247"},{"denom":"ASSET16","index":"0.000011634658240098"},{"denom":"ASSET17","index":"0.000009101405984603"},{"denom":"ASSET18","index":"0.000003780149264156"},{"denom":"ASSET2","index":"0.000007930960667726"},{"denom":"ASSET3","index":"0.000002206123035767"},{"denom":"ASSET4","index":"0.000021253166889363"},{"denom":"ASSET5","index":"0.000001718500807532"},{"denom":"ASSET6","index":"0.000006939076737962"},{"denom":"ASSET7","index":"0.000010891166816552"},{"denom":"ASSET8","index":"0.000014853628574871"},{"denom":"ASSET9","index":"0.000006308302102729"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001496654334782"},{"denom":"ASSET1","index":"0.000012477377024436"},{"denom":"ASSET10","index":"0.000008693096469902"},{"denom":"ASSET11","index":"0.000012070207597683"},{"denom":"ASSET12","index":"0.000010869145414891"},{"denom":"ASSET13","index":"0.000003740467488528"},{"denom":"ASSET14","index":"0.000011275146493218"},{"denom":"ASSET15","index":"0.000008061604145195"},{"denom":"ASSET16","index":"0.000005620924281527"},{"denom":"ASSET17","index":"0.000003991662400298"},{"denom":"ASSET18","index":"0.000001901487064682"},{"denom":"ASSET2","index":"0.000003683218415613"},{"denom":"ASSET3","index":"0.000001077217249546"},{"denom":"ASSET4","index":"0.000010139511822330"},{"denom":"ASSET5","index":"0.000000835953299404"},{"denom":"ASSET6","index":"0.000003403398967385"},{"denom":"ASSET7","index":"0.000005212586506346"},{"denom":"ASSET8","index":"0.000006801540366848"},{"denom":"ASSET9","index":"0.000002937812119289"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003012098530886"},{"denom":"ASSET1","index":"0.000025562058034330"},{"denom":"ASSET10","index":"0.000020450222858637"},{"denom":"ASSET11","index":"0.000025414193224582"},{"denom":"ASSET12","index":"0.000024256065084933"},{"denom":"ASSET13","index":"0.000007984561416691"},{"denom":"ASSET14","index":"0.000023318358139730"},{"denom":"ASSET15","index":"0.000018411259079989"},{"denom":"ASSET16","index":"0.000011336678183578"},{"denom":"ASSET17","index":"0.000008913774138499"},{"denom":"ASSET18","index":"0.000003674960609183"},{"denom":"ASSET2","index":"0.000007744948932800"},{"denom":"ASSET3","index":"0.000002148867969989"},{"denom":"ASSET4","index":"0.000020722540912428"},{"denom":"ASSET5","index":"0.000001674229864542"},{"denom":"ASSET6","index":"0.000006756080138401"},{"denom":"ASSET7","index":"0.000010618450136599"},{"denom":"ASSET8","index":"0.000014514789998911"},{"denom":"ASSET9","index":"0.000006159565713194"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001470615438656"},{"denom":"ASSET1","index":"0.000012263141624205"},{"denom":"ASSET10","index":"0.000008543710077270"},{"denom":"ASSET11","index":"0.000011863435889596"},{"denom":"ASSET12","index":"0.000010682701378752"},{"denom":"ASSET13","index":"0.000003676538596641"},{"denom":"ASSET14","index":"0.000011081935762259"},{"denom":"ASSET15","index":"0.000007923412026863"},{"denom":"ASSET16","index":"0.000005524234917004"},{"denom":"ASSET17","index":"0.000003923055223056"},{"denom":"ASSET18","index":"0.000001868907119959"},{"denom":"ASSET2","index":"0.000003619976464385"},{"denom":"ASSET3","index":"0.000001058654575392"},{"denom":"ASSET4","index":"0.000009965776352407"},{"denom":"ASSET5","index":"0.000000822036322121"},{"denom":"ASSET6","index":"0.000003345178771841"},{"denom":"ASSET7","index":"0.000005123115129088"},{"denom":"ASSET8","index":"0.000006685172681558"},{"denom":"ASSET9","index":"0.000002887496851669"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000002995147819628"},{"denom":"ASSET1","index":"0.000025426980115999"},{"denom":"ASSET10","index":"0.000020372034738960"},{"denom":"ASSET11","index":"0.000025287989623967"},{"denom":"ASSET12","index":"0.000024150599022202"},{"denom":"ASSET13","index":"0.000007946076587902"},{"denom":"ASSET14","index":"0.000023198024872944"},{"denom":"ASSET15","index":"0.000018335727027304"},{"denom":"ASSET16","index":"0.000011274635486105"},{"denom":"ASSET17","index":"0.000008875015361763"},{"denom":"ASSET18","index":"0.000003653177061349"},{"denom":"ASSET2","index":"0.000007706361997735"},{"denom":"ASSET3","index":"0.000002137037997503"},{"denom":"ASSET4","index":"0.000020612735071168"},{"denom":"ASSET5","index":"0.000001665450131859"},{"denom":"ASSET6","index":"0.000006718182222688"},{"denom":"ASSET7","index":"0.000010561635089256"},{"denom":"ASSET8","index":"0.000014445035982826"},{"denom":"ASSET9","index":"0.000006128513210961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001778581753434"},{"denom":"ASSET1","index":"0.000014888315804569"},{"denom":"ASSET10","index":"0.000010370885153828"},{"denom":"ASSET11","index":"0.000014404007158094"},{"denom":"ASSET12","index":"0.000012967781516823"},{"denom":"ASSET13","index":"0.000004458979607201"},{"denom":"ASSET14","index":"0.000013452090163298"},{"denom":"ASSET15","index":"0.000009619371736884"},{"denom":"ASSET16","index":"0.000006705169708956"},{"denom":"ASSET17","index":"0.000004759584973979"},{"denom":"ASSET18","index":"0.000002262890399909"},{"denom":"ASSET2","index":"0.000004392178414584"},{"denom":"ASSET3","index":"0.000001285922957882"},{"denom":"ASSET4","index":"0.000012099366012799"},{"denom":"ASSET5","index":"0.000000993667740182"},{"denom":"ASSET6","index":"0.000004058172451498"},{"denom":"ASSET7","index":"0.000006220861062481"},{"denom":"ASSET8","index":"0.000008116344902996"},{"denom":"ASSET9","index":"0.000003507062612406"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003356752793751"},{"denom":"ASSET1","index":"0.000028516406305775"},{"denom":"ASSET10","index":"0.000022616173055400"},{"denom":"ASSET11","index":"0.000028302061322789"},{"denom":"ASSET12","index":"0.000026910491325102"},{"denom":"ASSET13","index":"0.000008878873421079"},{"denom":"ASSET14","index":"0.000025995251505598"},{"denom":"ASSET15","index":"0.000020398635157595"},{"denom":"ASSET16","index":"0.000012658071469071"},{"denom":"ASSET17","index":"0.000009885849877285"},{"denom":"ASSET18","index":"0.000004110010202724"},{"denom":"ASSET2","index":"0.000008622285743228"},{"denom":"ASSET3","index":"0.000002402314047495"},{"denom":"ASSET4","index":"0.000023121698220749"},{"denom":"ASSET5","index":"0.000001866482592061"},{"denom":"ASSET6","index":"0.000007549939309511"},{"denom":"ASSET7","index":"0.000011851024307599"},{"denom":"ASSET8","index":"0.000016149793693754"},{"denom":"ASSET9","index":"0.000006862325287189"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001604942959288"},{"denom":"ASSET1","index":"0.000013380628695124"},{"denom":"ASSET10","index":"0.000009322365613635"},{"denom":"ASSET11","index":"0.000012944148427984"},{"denom":"ASSET12","index":"0.000011656280789193"},{"denom":"ASSET13","index":"0.000004011353995308"},{"denom":"ASSET14","index":"0.000012091757653420"},{"denom":"ASSET15","index":"0.000008645319498111"},{"denom":"ASSET16","index":"0.000006027692148913"},{"denom":"ASSET17","index":"0.000004280767677439"},{"denom":"ASSET18","index":"0.000002039165569874"},{"denom":"ASSET2","index":"0.000003949895566889"},{"denom":"ASSET3","index":"0.000001155418454280"},{"denom":"ASSET4","index":"0.000010873877367808"},{"denom":"ASSET5","index":"0.000000896791353463"},{"denom":"ASSET6","index":"0.000003649878095912"},{"denom":"ASSET7","index":"0.000005589957628131"},{"denom":"ASSET8","index":"0.000007294237475803"},{"denom":"ASSET9","index":"0.000003150685146712"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003200268554223"},{"denom":"ASSET1","index":"0.000027155061035589"},{"denom":"ASSET10","index":"0.000021699312128992"},{"denom":"ASSET11","index":"0.000026991580254755"},{"denom":"ASSET12","index":"0.000025748970079650"},{"denom":"ASSET13","index":"0.000008479073830121"},{"denom":"ASSET14","index":"0.000024769827936089"},{"denom":"ASSET15","index":"0.000019540730612944"},{"denom":"ASSET16","index":"0.000012044995213579"},{"denom":"ASSET17","index":"0.000009462424001901"},{"denom":"ASSET18","index":"0.000003906197580725"},{"denom":"ASSET2","index":"0.000008225756082433"},{"denom":"ASSET3","index":"0.000002283784004254"},{"denom":"ASSET4","index":"0.000022014648589339"},{"denom":"ASSET5","index":"0.000001779311895342"},{"denom":"ASSET6","index":"0.000007179475362032"},{"denom":"ASSET7","index":"0.000011280598785262"},{"denom":"ASSET8","index":"0.000015413911362487"},{"denom":"ASSET9","index":"0.000006542247148589"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001620184629837"},{"denom":"ASSET1","index":"0.000013508113244239"},{"denom":"ASSET10","index":"0.000009411159415052"},{"denom":"ASSET11","index":"0.000013068550109883"},{"denom":"ASSET12","index":"0.000011766766981214"},{"denom":"ASSET13","index":"0.000004049052718392"},{"denom":"ASSET14","index":"0.000012206330115570"},{"denom":"ASSET15","index":"0.000008726455301921"},{"denom":"ASSET16","index":"0.000006083441070987"},{"denom":"ASSET17","index":"0.000004319553108765"},{"denom":"ASSET18","index":"0.000002056930051793"},{"denom":"ASSET2","index":"0.000003987063045598"},{"denom":"ASSET3","index":"0.000001166532933482"},{"denom":"ASSET4","index":"0.000010977807509294"},{"denom":"ASSET5","index":"0.000000904485680309"},{"denom":"ASSET6","index":"0.000003682750106429"},{"denom":"ASSET7","index":"0.000005643877936631"},{"denom":"ASSET8","index":"0.000007362682500458"},{"denom":"ASSET9","index":"0.000003178379586880"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003154859072778"},{"denom":"ASSET1","index":"0.000026759958230198"},{"denom":"ASSET10","index":"0.000021318547828682"},{"denom":"ASSET11","index":"0.000026582778956839"},{"denom":"ASSET12","index":"0.000025324795995745"},{"denom":"ASSET13","index":"0.000008347309163095"},{"denom":"ASSET14","index":"0.000024403216779648"},{"denom":"ASSET15","index":"0.000019208461119321"},{"denom":"ASSET16","index":"0.000011872154646602"},{"denom":"ASSET17","index":"0.000009304429323264"},{"denom":"ASSET18","index":"0.000003853154066825"},{"denom":"ASSET2","index":"0.000008100524497579"},{"denom":"ASSET3","index":"0.000002251942800438"},{"denom":"ASSET4","index":"0.000021695917087147"},{"denom":"ASSET5","index":"0.000001753374642360"},{"denom":"ASSET6","index":"0.000007078305954632"},{"denom":"ASSET7","index":"0.000011118481739065"},{"denom":"ASSET8","index":"0.000015174129529137"},{"denom":"ASSET9","index":"0.000006441283498998"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001565910537906"},{"denom":"ASSET1","index":"0.000013053983025959"},{"denom":"ASSET10","index":"0.000009094819386579"},{"denom":"ASSET11","index":"0.000012628414118813"},{"denom":"ASSET12","index":"0.000011371841840295"},{"denom":"ASSET13","index":"0.000003913403541838"},{"denom":"ASSET14","index":"0.000011796953146466"},{"denom":"ASSET15","index":"0.000008434501179040"},{"denom":"ASSET16","index":"0.000005880630135191"},{"denom":"ASSET17","index":"0.000004176066501732"},{"denom":"ASSET18","index":"0.000001989191440174"},{"denom":"ASSET2","index":"0.000003853457814057"},{"denom":"ASSET3","index":"0.000001127071202473"},{"denom":"ASSET4","index":"0.000010608563413286"},{"denom":"ASSET5","index":"0.000000874933065013"},{"denom":"ASSET6","index":"0.000003561050790760"},{"denom":"ASSET7","index":"0.000005453688425119"},{"denom":"ASSET8","index":"0.000007116152768840"},{"denom":"ASSET9","index":"0.000003073705751932"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003066618221533"},{"denom":"ASSET1","index":"0.000026018563142658"},{"denom":"ASSET10","index":"0.000020743763118655"},{"denom":"ASSET11","index":"0.000025849025514444"},{"denom":"ASSET12","index":"0.000024635604575072"},{"denom":"ASSET13","index":"0.000008118261811936"},{"denom":"ASSET14","index":"0.000023728777879609"},{"denom":"ASSET15","index":"0.000018689177197382"},{"denom":"ASSET16","index":"0.000011544003668418"},{"denom":"ASSET17","index":"0.000009052167825210"},{"denom":"ASSET18","index":"0.000003745930402733"},{"denom":"ASSET2","index":"0.000007877080459743"},{"denom":"ASSET3","index":"0.000002188594145460"},{"denom":"ASSET4","index":"0.000021094338825720"},{"denom":"ASSET5","index":"0.000001705356613908"},{"denom":"ASSET6","index":"0.000006882744986340"},{"denom":"ASSET7","index":"0.000010809249072439"},{"denom":"ASSET8","index":"0.000014757775472241"},{"denom":"ASSET9","index":"0.000006264987011427"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001616793771814"},{"denom":"ASSET1","index":"0.000013481664806896"},{"denom":"ASSET10","index":"0.000009392973001731"},{"denom":"ASSET11","index":"0.000013042136425966"},{"denom":"ASSET12","index":"0.000011745108533466"},{"denom":"ASSET13","index":"0.000004041984429535"},{"denom":"ASSET14","index":"0.000012183439289380"},{"denom":"ASSET15","index":"0.000008710326742521"},{"denom":"ASSET16","index":"0.000006073156456940"},{"denom":"ASSET17","index":"0.000004312647683187"},{"denom":"ASSET18","index":"0.000002053926902712"},{"denom":"ASSET2","index":"0.000003979707928695"},{"denom":"ASSET3","index":"0.000001164091515706"},{"denom":"ASSET4","index":"0.000010955873647818"},{"denom":"ASSET5","index":"0.000000903009262183"},{"denom":"ASSET6","index":"0.000003677906424623"},{"denom":"ASSET7","index":"0.000005632430450993"},{"denom":"ASSET8","index":"0.000007349824724165"},{"denom":"ASSET9","index":"0.000003173706292820"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003010548827117"},{"denom":"ASSET1","index":"0.000025517681435823"},{"denom":"ASSET10","index":"0.000020207909525991"},{"denom":"ASSET11","index":"0.000025316824190850"},{"denom":"ASSET12","index":"0.000024059273468565"},{"denom":"ASSET13","index":"0.000007945703994160"},{"denom":"ASSET14","index":"0.000023261456497592"},{"denom":"ASSET15","index":"0.000018230653165683"},{"denom":"ASSET16","index":"0.000011330852554208"},{"denom":"ASSET17","index":"0.000008840468160143"},{"denom":"ASSET18","index":"0.000003685449036638"},{"denom":"ASSET2","index":"0.000007715875534239"},{"denom":"ASSET3","index":"0.000002150116713749"},{"denom":"ASSET4","index":"0.000020690763011385"},{"denom":"ASSET5","index":"0.000001674170167376"},{"denom":"ASSET6","index":"0.000006761947340508"},{"denom":"ASSET7","index":"0.000010605047135869"},{"denom":"ASSET8","index":"0.000014444866674878"},{"denom":"ASSET9","index":"0.000006137206230949"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001598496813351"},{"denom":"ASSET1","index":"0.000013327209301876"},{"denom":"ASSET10","index":"0.000009285082513510"},{"denom":"ASSET11","index":"0.000012892549064690"},{"denom":"ASSET12","index":"0.000011609910099638"},{"denom":"ASSET13","index":"0.000003995530641827"},{"denom":"ASSET14","index":"0.000012043503249499"},{"denom":"ASSET15","index":"0.000008611039019674"},{"denom":"ASSET16","index":"0.000006003788988106"},{"denom":"ASSET17","index":"0.000004263725256261"},{"denom":"ASSET18","index":"0.000002031022875886"},{"denom":"ASSET2","index":"0.000003933995272733"},{"denom":"ASSET3","index":"0.000001150675832486"},{"denom":"ASSET4","index":"0.000010830580656369"},{"denom":"ASSET5","index":"0.000000893152091305"},{"denom":"ASSET6","index":"0.000003635566517414"},{"denom":"ASSET7","index":"0.000005567705967820"},{"denom":"ASSET8","index":"0.000007265086206652"},{"denom":"ASSET9","index":"0.000003137948128033"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003202417698287"},{"denom":"ASSET1","index":"0.000027176874960756"},{"denom":"ASSET10","index":"0.000021729724210241"},{"denom":"ASSET11","index":"0.000027016578438308"},{"denom":"ASSET12","index":"0.000025779554956391"},{"denom":"ASSET13","index":"0.000008487649506725"},{"denom":"ASSET14","index":"0.000024790682929963"},{"denom":"ASSET15","index":"0.000019565798539307"},{"denom":"ASSET16","index":"0.000012053877846841"},{"denom":"ASSET17","index":"0.000009473617164606"},{"denom":"ASSET18","index":"0.000003908301251667"},{"denom":"ASSET2","index":"0.000008233254558201"},{"denom":"ASSET3","index":"0.000002285025567503"},{"denom":"ASSET4","index":"0.000022032200437673"},{"denom":"ASSET5","index":"0.000001780306156687"},{"denom":"ASSET6","index":"0.000007184182778940"},{"denom":"ASSET7","index":"0.000011289430429576"},{"denom":"ASSET8","index":"0.000015429251463912"},{"denom":"ASSET9","index":"0.000006548040900334"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001349258766758"},{"denom":"ASSET1","index":"0.000011264433664868"},{"denom":"ASSET10","index":"0.000007848225297969"},{"denom":"ASSET11","index":"0.000010895650990484"},{"denom":"ASSET12","index":"0.000009811385762205"},{"denom":"ASSET13","index":"0.000003376459336127"},{"denom":"ASSET14","index":"0.000010177960157102"},{"denom":"ASSET15","index":"0.000007278489190238"},{"denom":"ASSET16","index":"0.000005074626261883"},{"denom":"ASSET17","index":"0.000003603912123322"},{"denom":"ASSET18","index":"0.000001715833161655"},{"denom":"ASSET2","index":"0.000003323460628431"},{"denom":"ASSET3","index":"0.000000971642974425"},{"denom":"ASSET4","index":"0.000009153318474981"},{"denom":"ASSET5","index":"0.000000753023305179"},{"denom":"ASSET6","index":"0.000003071716766875"},{"denom":"ASSET7","index":"0.000004705843587499"},{"denom":"ASSET8","index":"0.000006139016974776"},{"denom":"ASSET9","index":"0.000002652143664283"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000002874619638549"},{"denom":"ASSET1","index":"0.000024442633186143"},{"denom":"ASSET10","index":"0.000019689737510784"},{"denom":"ASSET11","index":"0.000024334399718263"},{"denom":"ASSET12","index":"0.000023294058494145"},{"denom":"ASSET13","index":"0.000007650065286478"},{"denom":"ASSET14","index":"0.000022306974942610"},{"denom":"ASSET15","index":"0.000017702453996022"},{"denom":"ASSET16","index":"0.000010830667352685"},{"denom":"ASSET17","index":"0.000008561334956642"},{"denom":"ASSET18","index":"0.000003501743239949"},{"denom":"ASSET2","index":"0.000007413384379561"},{"denom":"ASSET3","index":"0.000002050775894848"},{"denom":"ASSET4","index":"0.000019811877393900"},{"denom":"ASSET5","index":"0.000001596563839644"},{"denom":"ASSET6","index":"0.000006447875450380"},{"denom":"ASSET7","index":"0.000010149425285061"},{"denom":"ASSET8","index":"0.000013906577801610"},{"denom":"ASSET9","index":"0.000005896530335304"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001744355646452"},{"denom":"ASSET1","index":"0.000014544558741461"},{"denom":"ASSET10","index":"0.000010133244841823"},{"denom":"ASSET11","index":"0.000014070651242217"},{"denom":"ASSET12","index":"0.000012670295178174"},{"denom":"ASSET13","index":"0.000004360461787457"},{"denom":"ASSET14","index":"0.000013143775348745"},{"denom":"ASSET15","index":"0.000009397812194213"},{"denom":"ASSET16","index":"0.000006552230555377"},{"denom":"ASSET17","index":"0.000004653181929010"},{"denom":"ASSET18","index":"0.000002216553831001"},{"denom":"ASSET2","index":"0.000004293371185670"},{"denom":"ASSET3","index":"0.000001255918972299"},{"denom":"ASSET4","index":"0.000011819911117312"},{"denom":"ASSET5","index":"0.000000974736704938"},{"denom":"ASSET6","index":"0.000003967319407560"},{"denom":"ASSET7","index":"0.000006076186412764"},{"denom":"ASSET8","index":"0.000007929083542361"},{"denom":"ASSET9","index":"0.000003424611991834"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003377008276018"},{"denom":"ASSET1","index":"0.000028642142456639"},{"denom":"ASSET10","index":"0.000022800592191853"},{"denom":"ASSET11","index":"0.000028447577997463"},{"denom":"ASSET12","index":"0.000027093635853923"},{"denom":"ASSET13","index":"0.000008933092474106"},{"denom":"ASSET14","index":"0.000026119259559896"},{"denom":"ASSET15","index":"0.000020548756595198"},{"denom":"ASSET16","index":"0.000012710670192565"},{"denom":"ASSET17","index":"0.000009956402105067"},{"denom":"ASSET18","index":"0.000004127475104327"},{"denom":"ASSET2","index":"0.000008669602227225"},{"denom":"ASSET3","index":"0.000002410895003349"},{"denom":"ASSET4","index":"0.000023222264254358"},{"denom":"ASSET5","index":"0.000001877874241403"},{"denom":"ASSET6","index":"0.000007579654674160"},{"denom":"ASSET7","index":"0.000011900488798179"},{"denom":"ASSET8","index":"0.000016239324105118"},{"denom":"ASSET9","index":"0.000006895771583569"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001546168277317"},{"denom":"ASSET1","index":"0.000012892123182452"},{"denom":"ASSET10","index":"0.000008982377260299"},{"denom":"ASSET11","index":"0.000012472337191477"},{"denom":"ASSET12","index":"0.000011231230783378"},{"denom":"ASSET13","index":"0.000003864117010091"},{"denom":"ASSET14","index":"0.000011651016774353"},{"denom":"ASSET15","index":"0.000008329231976204"},{"denom":"ASSET16","index":"0.000005807908663952"},{"denom":"ASSET17","index":"0.000004124853650448"},{"denom":"ASSET18","index":"0.000001964650585090"},{"denom":"ASSET2","index":"0.000003805451266010"},{"denom":"ASSET3","index":"0.000001113345454324"},{"denom":"ASSET4","index":"0.000010477701892746"},{"denom":"ASSET5","index":"0.000000863038279582"},{"denom":"ASSET6","index":"0.000003516033595214"},{"denom":"ASSET7","index":"0.000005385515306574"},{"denom":"ASSET8","index":"0.000007028156140823"},{"denom":"ASSET9","index":"0.000003034974493755"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003044385892570"},{"denom":"ASSET1","index":"0.000025830014188245"},{"denom":"ASSET10","index":"0.000020607856539150"},{"denom":"ASSET11","index":"0.000025666657138152"},{"denom":"ASSET12","index":"0.000024468008636658"},{"denom":"ASSET13","index":"0.000008060303383676"},{"denom":"ASSET14","index":"0.000023559408638801"},{"denom":"ASSET15","index":"0.000018562848593971"},{"denom":"ASSET16","index":"0.000011459854746185"},{"denom":"ASSET17","index":"0.000008991538648143"},{"denom":"ASSET18","index":"0.000003718456390600"},{"denom":"ASSET2","index":"0.000007821717005664"},{"denom":"ASSET3","index":"0.000002173111618200"},{"denom":"ASSET4","index":"0.000020942104557307"},{"denom":"ASSET5","index":"0.000001691598021351"},{"denom":"ASSET6","index":"0.000006831113312915"},{"denom":"ASSET7","index":"0.000010730587410374"},{"denom":"ASSET8","index":"0.000014654605067850"},{"denom":"ASSET9","index":"0.000006220578615076"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001387821916020"},{"denom":"ASSET1","index":"0.000011588015182905"},{"denom":"ASSET10","index":"0.000008073788013584"},{"denom":"ASSET11","index":"0.000011209789038410"},{"denom":"ASSET12","index":"0.000010095957715252"},{"denom":"ASSET13","index":"0.000003472532948668"},{"denom":"ASSET14","index":"0.000010471205701129"},{"denom":"ASSET15","index":"0.000007487090765824"},{"denom":"ASSET16","index":"0.000005220712057474"},{"denom":"ASSET17","index":"0.000003707807479495"},{"denom":"ASSET18","index":"0.000001766048060515"},{"denom":"ASSET2","index":"0.000003418926093543"},{"denom":"ASSET3","index":"0.000001000661295671"},{"denom":"ASSET4","index":"0.000009416937550333"},{"denom":"ASSET5","index":"0.000000774321240698"},{"denom":"ASSET6","index":"0.000003159826293771"},{"denom":"ASSET7","index":"0.000004839507754361"},{"denom":"ASSET8","index":"0.000006316674428923"},{"denom":"ASSET9","index":"0.000002727993294151"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000002956721491824"},{"denom":"ASSET1","index":"0.000025136116728129"},{"denom":"ASSET10","index":"0.000020247681325291"},{"denom":"ASSET11","index":"0.000025026479369709"},{"denom":"ASSET12","index":"0.000023957412844230"},{"denom":"ASSET13","index":"0.000007866588644670"},{"denom":"ASSET14","index":"0.000022940688787988"},{"denom":"ASSET15","index":"0.000018203641219753"},{"denom":"ASSET16","index":"0.000011138902531601"},{"denom":"ASSET17","index":"0.000008803888891481"},{"denom":"ASSET18","index":"0.000003602115317706"},{"denom":"ASSET2","index":"0.000007623974866010"},{"denom":"ASSET3","index":"0.000002110544057177"},{"denom":"ASSET4","index":"0.000020374365248917"},{"denom":"ASSET5","index":"0.000001641905652861"},{"denom":"ASSET6","index":"0.000006630874494768"},{"denom":"ASSET7","index":"0.000010436528568948"},{"denom":"ASSET8","index":"0.000014302572224422"},{"denom":"ASSET9","index":"0.000006063325997423"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001500850379058"},{"denom":"ASSET1","index":"0.000012511793460183"},{"denom":"ASSET10","index":"0.000008717304800227"},{"denom":"ASSET11","index":"0.000012103632089176"},{"denom":"ASSET12","index":"0.000010899320696303"},{"denom":"ASSET13","index":"0.000003750781099635"},{"denom":"ASSET14","index":"0.000011306809643305"},{"denom":"ASSET15","index":"0.000008083881387560"},{"denom":"ASSET16","index":"0.000005636258009526"},{"denom":"ASSET17","index":"0.000004002940101492"},{"denom":"ASSET18","index":"0.000001906322054045"},{"denom":"ASSET2","index":"0.000003692952635209"},{"denom":"ASSET3","index":"0.000001079912951956"},{"denom":"ASSET4","index":"0.000010167723378913"},{"denom":"ASSET5","index":"0.000000838512734178"},{"denom":"ASSET6","index":"0.000003412551825143"},{"denom":"ASSET7","index":"0.000005226751790509"},{"denom":"ASSET8","index":"0.000006820396682251"},{"denom":"ASSET9","index":"0.000002945889565704"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003004514310835"},{"denom":"ASSET1","index":"0.000025497942224476"},{"denom":"ASSET10","index":"0.000020385999177782"},{"denom":"ASSET11","index":"0.000025346802479017"},{"denom":"ASSET12","index":"0.000024185328023735"},{"denom":"ASSET13","index":"0.000007962788555043"},{"denom":"ASSET14","index":"0.000023259189454501"},{"denom":"ASSET15","index":"0.000018355567065709"},{"denom":"ASSET16","index":"0.000011309092459120"},{"denom":"ASSET17","index":"0.000008887662321727"},{"denom":"ASSET18","index":"0.000003666570499762"},{"denom":"ASSET2","index":"0.000007723995884874"},{"denom":"ASSET3","index":"0.000002143405494402"},{"denom":"ASSET4","index":"0.000020670641097733"},{"denom":"ASSET5","index":"0.000001670336124344"},{"denom":"ASSET6","index":"0.000006739845385808"},{"denom":"ASSET7","index":"0.000010591422556410"},{"denom":"ASSET8","index":"0.000014475095162856"},{"denom":"ASSET9","index":"0.000006143360978771"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001507842106347"},{"denom":"ASSET1","index":"0.000012572313391156"},{"denom":"ASSET10","index":"0.000008759356679472"},{"denom":"ASSET11","index":"0.000012162445176153"},{"denom":"ASSET12","index":"0.000010952151629736"},{"denom":"ASSET13","index":"0.000003769211161813"},{"denom":"ASSET14","index":"0.000011361231636633"},{"denom":"ASSET15","index":"0.000008123272738112"},{"denom":"ASSET16","index":"0.000005663669344042"},{"denom":"ASSET17","index":"0.000004022225963767"},{"denom":"ASSET18","index":"0.000001916133905138"},{"denom":"ASSET2","index":"0.000003711277866039"},{"denom":"ASSET3","index":"0.000001085756665704"},{"denom":"ASSET4","index":"0.000010217147571101"},{"denom":"ASSET5","index":"0.000000842594465073"},{"denom":"ASSET6","index":"0.000003429493468225"},{"denom":"ASSET7","index":"0.000005252224712828"},{"denom":"ASSET8","index":"0.000006853863583762"},{"denom":"ASSET9","index":"0.000002960115541236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003064659144392"},{"denom":"ASSET1","index":"0.000026014545525120"},{"denom":"ASSET10","index":"0.000020837902255895"},{"denom":"ASSET11","index":"0.000025870951889592"},{"denom":"ASSET12","index":"0.000024704995690840"},{"denom":"ASSET13","index":"0.000008129050348807"},{"denom":"ASSET14","index":"0.000023733606076391"},{"denom":"ASSET15","index":"0.000018755969892396"},{"denom":"ASSET16","index":"0.000011535737727926"},{"denom":"ASSET17","index":"0.000009078938038909"},{"denom":"ASSET18","index":"0.000003738223548700"},{"denom":"ASSET2","index":"0.000007883998416280"},{"denom":"ASSET3","index":"0.000002186926046113"},{"denom":"ASSET4","index":"0.000021089316501471"},{"denom":"ASSET5","index":"0.000001703791082418"},{"denom":"ASSET6","index":"0.000006873778950624"},{"denom":"ASSET7","index":"0.000010805665377904"},{"denom":"ASSET8","index":"0.000014777724141198"},{"denom":"ASSET9","index":"0.000006269886019705"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001016570122529"},{"denom":"ASSET1","index":"0.000008477171470527"},{"denom":"ASSET10","index":"0.000005906463519680"},{"denom":"ASSET11","index":"0.000008200989896911"},{"denom":"ASSET12","index":"0.000007384774710599"},{"denom":"ASSET13","index":"0.000002541117067960"},{"denom":"ASSET14","index":"0.000007660956284215"},{"denom":"ASSET15","index":"0.000005477395717812"},{"denom":"ASSET16","index":"0.000003819073322661"},{"denom":"ASSET17","index":"0.000002711881121289"},{"denom":"ASSET18","index":"0.000001291518742692"},{"denom":"ASSET2","index":"0.000002502279034170"},{"denom":"ASSET3","index":"0.000000731757874738"},{"denom":"ASSET4","index":"0.000006889127422234"},{"denom":"ASSET5","index":"0.000000567775065403"},{"denom":"ASSET6","index":"0.000002312404202309"},{"denom":"ASSET7","index":"0.000003541658795591"},{"denom":"ASSET8","index":"0.000004621109544256"},{"denom":"ASSET9","index":"0.000001996151641449"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000002499545170163"},{"denom":"ASSET1","index":"0.000021282413071401"},{"denom":"ASSET10","index":"0.000017412808765385"},{"denom":"ASSET11","index":"0.000021259874812403"},{"denom":"ASSET12","index":"0.000020486111882687"},{"denom":"ASSET13","index":"0.000006694303381301"},{"denom":"ASSET14","index":"0.000019446986985139"},{"denom":"ASSET15","index":"0.000015606004703242"},{"denom":"ASSET16","index":"0.000009412782427040"},{"denom":"ASSET17","index":"0.000007528963649123"},{"denom":"ASSET18","index":"0.000003027066879988"},{"denom":"ASSET2","index":"0.000006477094521478"},{"denom":"ASSET3","index":"0.000001780578331809"},{"denom":"ASSET4","index":"0.000017246051064985"},{"denom":"ASSET5","index":"0.000001387924123500"},{"denom":"ASSET6","index":"0.000005593713918003"},{"denom":"ASSET7","index":"0.000008831780754063"},{"denom":"ASSET8","index":"0.000012169406160300"},{"denom":"ASSET9","index":"0.000005149034362400"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001552339226368"},{"denom":"ASSET1","index":"0.000012948480372324"},{"denom":"ASSET10","index":"0.000009021431734191"},{"denom":"ASSET11","index":"0.000012526515146109"},{"denom":"ASSET12","index":"0.000011279099696349"},{"denom":"ASSET13","index":"0.000003880848065920"},{"denom":"ASSET14","index":"0.000011701064922564"},{"denom":"ASSET15","index":"0.000008365383608761"},{"denom":"ASSET16","index":"0.000005830512213323"},{"denom":"ASSET17","index":"0.000004142651308462"},{"denom":"ASSET18","index":"0.000001971224414436"},{"denom":"ASSET2","index":"0.000003822327341117"},{"denom":"ASSET3","index":"0.000001118053847563"},{"denom":"ASSET4","index":"0.000010521410312050"},{"denom":"ASSET5","index":"0.000000865490719463"},{"denom":"ASSET6","index":"0.000003529723717099"},{"denom":"ASSET7","index":"0.000005408546987108"},{"denom":"ASSET8","index":"0.000007056367396050"},{"denom":"ASSET9","index":"0.000003046157727933"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003043964098015"},{"denom":"ASSET1","index":"0.000025828331615061"},{"denom":"ASSET10","index":"0.000020594675215425"},{"denom":"ASSET11","index":"0.000025661520704142"},{"denom":"ASSET12","index":"0.000024456429429906"},{"denom":"ASSET13","index":"0.000008058244190043"},{"denom":"ASSET14","index":"0.000023555461855486"},{"denom":"ASSET15","index":"0.000018552812657155"},{"denom":"ASSET16","index":"0.000011456604402492"},{"denom":"ASSET17","index":"0.000008987560143691"},{"denom":"ASSET18","index":"0.000003716794339222"},{"denom":"ASSET2","index":"0.000007820148034807"},{"denom":"ASSET3","index":"0.000002173135080244"},{"denom":"ASSET4","index":"0.000020938599170426"},{"denom":"ASSET5","index":"0.000001690207511083"},{"denom":"ASSET6","index":"0.000006829800145738"},{"denom":"ASSET7","index":"0.000010729300481432"},{"denom":"ASSET8","index":"0.000014648719853803"},{"denom":"ASSET9","index":"0.000006217447736766"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000000977108719668"},{"denom":"ASSET1","index":"0.000008146517162771"},{"denom":"ASSET10","index":"0.000005675852121603"},{"denom":"ASSET11","index":"0.000007881108738917"},{"denom":"ASSET12","index":"0.000007096716963958"},{"denom":"ASSET13","index":"0.000002441926549413"},{"denom":"ASSET14","index":"0.000007362125387813"},{"denom":"ASSET15","index":"0.000005263370239944"},{"denom":"ASSET16","index":"0.000003670074447059"},{"denom":"ASSET17","index":"0.000002605905002368"},{"denom":"ASSET18","index":"0.000001241671893765"},{"denom":"ASSET2","index":"0.000002404735560083"},{"denom":"ASSET3","index":"0.000000703247798239"},{"denom":"ASSET4","index":"0.000006620841350486"},{"denom":"ASSET5","index":"0.000000546031343344"},{"denom":"ASSET6","index":"0.000002222161612464"},{"denom":"ASSET7","index":"0.000003402975523689"},{"denom":"ASSET8","index":"0.000004440942225898"},{"denom":"ASSET9","index":"0.000001917871699764"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000002320380931676"},{"denom":"ASSET1","index":"0.000019748951316256"},{"denom":"ASSET10","index":"0.000016101172379351"},{"denom":"ASSET11","index":"0.000019714000020718"},{"denom":"ASSET12","index":"0.000018967805559844"},{"denom":"ASSET13","index":"0.000006204998608741"},{"denom":"ASSET14","index":"0.000018041457784230"},{"denom":"ASSET15","index":"0.000014440911570898"},{"denom":"ASSET16","index":"0.000008738221404310"},{"denom":"ASSET17","index":"0.000006970584758543"},{"denom":"ASSET18","index":"0.000002814127990287"},{"denom":"ASSET2","index":"0.000006006105656449"},{"denom":"ASSET3","index":"0.000001653724297068"},{"denom":"ASSET4","index":"0.000016005284799403"},{"denom":"ASSET5","index":"0.000001288969102308"},{"denom":"ASSET6","index":"0.000005195185892122"},{"denom":"ASSET7","index":"0.000008196101819524"},{"denom":"ASSET8","index":"0.000011280171312915"},{"denom":"ASSET9","index":"0.000004774394171461"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001745798220012"},{"denom":"ASSET1","index":"0.000014553743296829"},{"denom":"ASSET10","index":"0.000010139438249561"},{"denom":"ASSET11","index":"0.000014079320164724"},{"denom":"ASSET12","index":"0.000012678243118663"},{"denom":"ASSET13","index":"0.000004363016060013"},{"denom":"ASSET14","index":"0.000013152173087429"},{"denom":"ASSET15","index":"0.000009403145384454"},{"denom":"ASSET16","index":"0.000006556113428486"},{"denom":"ASSET17","index":"0.000004655955083371"},{"denom":"ASSET18","index":"0.000002217755535422"},{"denom":"ASSET2","index":"0.000004295945845911"},{"denom":"ASSET3","index":"0.000001256580187737"},{"denom":"ASSET4","index":"0.000011827536358912"},{"denom":"ASSET5","index":"0.000000975477084515"},{"denom":"ASSET6","index":"0.000003969964878841"},{"denom":"ASSET7","index":"0.000006080210806364"},{"denom":"ASSET8","index":"0.000007934011797614"},{"denom":"ASSET9","index":"0.000003426498879278"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003342998947188"},{"denom":"ASSET1","index":"0.000028345782457833"},{"denom":"ASSET10","index":"0.000022532322238539"},{"denom":"ASSET11","index":"0.000028144588841629"},{"denom":"ASSET12","index":"0.000026788988923046"},{"denom":"ASSET13","index":"0.000008836278349189"},{"denom":"ASSET14","index":"0.000025846526421467"},{"denom":"ASSET15","index":"0.000020312521464953"},{"denom":"ASSET16","index":"0.000012581099317360"},{"denom":"ASSET17","index":"0.000009844015126225"},{"denom":"ASSET18","index":"0.000004087085525414"},{"denom":"ASSET2","index":"0.000008577030596387"},{"denom":"ASSET3","index":"0.000002386540105172"},{"denom":"ASSET4","index":"0.000022982635628207"},{"denom":"ASSET5","index":"0.000001858980311097"},{"denom":"ASSET6","index":"0.000007503977785171"},{"denom":"ASSET7","index":"0.000011778054778213"},{"denom":"ASSET8","index":"0.000016064148587518"},{"denom":"ASSET9","index":"0.000006822246648031"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001535240763659"},{"denom":"ASSET1","index":"0.000012802535686671"},{"denom":"ASSET10","index":"0.000008918976928097"},{"denom":"ASSET11","index":"0.000012384847277788"},{"denom":"ASSET12","index":"0.000011152366284839"},{"denom":"ASSET13","index":"0.000003838101909148"},{"denom":"ASSET14","index":"0.000011569197017318"},{"denom":"ASSET15","index":"0.000008271431242866"},{"denom":"ASSET16","index":"0.000005767016142371"},{"denom":"ASSET17","index":"0.000004095404830432"},{"denom":"ASSET18","index":"0.000001951213819735"},{"denom":"ASSET2","index":"0.000003778922237253"},{"denom":"ASSET3","index":"0.000001105544885116"},{"denom":"ASSET4","index":"0.000010403614783903"},{"denom":"ASSET5","index":"0.000000857676404279"},{"denom":"ASSET6","index":"0.000003491600641819"},{"denom":"ASSET7","index":"0.000005348470057083"},{"denom":"ASSET8","index":"0.000006978912901618"},{"denom":"ASSET9","index":"0.000003013874884636"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003086246918243"},{"denom":"ASSET1","index":"0.000026194228204796"},{"denom":"ASSET10","index":"0.000020951998769875"},{"denom":"ASSET11","index":"0.000026042273492864"},{"denom":"ASSET12","index":"0.000024853724280460"},{"denom":"ASSET13","index":"0.000008181454895403"},{"denom":"ASSET14","index":"0.000023895275980533"},{"denom":"ASSET15","index":"0.000018864347888264"},{"denom":"ASSET16","index":"0.000011616907749245"},{"denom":"ASSET17","index":"0.000009133094250657"},{"denom":"ASSET18","index":"0.000003766346411006"},{"denom":"ASSET2","index":"0.000007935833032906"},{"denom":"ASSET3","index":"0.000002202232138461"},{"denom":"ASSET4","index":"0.000021234941701767"},{"denom":"ASSET5","index":"0.000001715417631736"},{"denom":"ASSET6","index":"0.000006923101305069"},{"denom":"ASSET7","index":"0.000010881195638563"},{"denom":"ASSET8","index":"0.000014873239564067"},{"denom":"ASSET9","index":"0.000006310901439146"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001694764141112"},{"denom":"ASSET1","index":"0.000014130580032100"},{"denom":"ASSET10","index":"0.000009844524497723"},{"denom":"ASSET11","index":"0.000013669508873851"},{"denom":"ASSET12","index":"0.000012309527666765"},{"denom":"ASSET13","index":"0.000004236016804025"},{"denom":"ASSET14","index":"0.000012769407426673"},{"denom":"ASSET15","index":"0.000009129685492685"},{"denom":"ASSET16","index":"0.000006365641339869"},{"denom":"ASSET17","index":"0.000004520761007698"},{"denom":"ASSET18","index":"0.000002153452502679"},{"denom":"ASSET2","index":"0.000004171085594400"},{"denom":"ASSET3","index":"0.000001219991901933"},{"denom":"ASSET4","index":"0.000011483292916774"},{"denom":"ASSET5","index":"0.000000947161681676"},{"denom":"ASSET6","index":"0.000003854173635500"},{"denom":"ASSET7","index":"0.000005903378783277"},{"denom":"ASSET8","index":"0.000007702985978462"},{"denom":"ASSET9","index":"0.000003326979869284"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003333609736915"},{"denom":"ASSET1","index":"0.000028281729059652"},{"denom":"ASSET10","index":"0.000022560289398652"},{"denom":"ASSET11","index":"0.000028101042421314"},{"denom":"ASSET12","index":"0.000026787599659919"},{"denom":"ASSET13","index":"0.000008826015241086"},{"denom":"ASSET14","index":"0.000025794402991537"},{"denom":"ASSET15","index":"0.000020323143219667"},{"denom":"ASSET16","index":"0.000012547562311789"},{"denom":"ASSET17","index":"0.000009844220733470"},{"denom":"ASSET18","index":"0.000004071528772633"},{"denom":"ASSET2","index":"0.000008563776406339"},{"denom":"ASSET3","index":"0.000002379222276435"},{"denom":"ASSET4","index":"0.000022929058250150"},{"denom":"ASSET5","index":"0.000001853699834530"},{"denom":"ASSET6","index":"0.000007480326246914"},{"denom":"ASSET7","index":"0.000011749530638760"},{"denom":"ASSET8","index":"0.000016044906214881"},{"denom":"ASSET9","index":"0.000006811209452101"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001763265776240"},{"denom":"ASSET1","index":"0.000014701143889842"},{"denom":"ASSET10","index":"0.000010242267715158"},{"denom":"ASSET11","index":"0.000014221824092125"},{"denom":"ASSET12","index":"0.000012807154532407"},{"denom":"ASSET13","index":"0.000004407037513175"},{"denom":"ASSET14","index":"0.000013285723045174"},{"denom":"ASSET15","index":"0.000009498495615253"},{"denom":"ASSET16","index":"0.000006622576828953"},{"denom":"ASSET17","index":"0.000004703043783239"},{"denom":"ASSET18","index":"0.000002240331719108"},{"denom":"ASSET2","index":"0.000004339421867729"},{"denom":"ASSET3","index":"0.000001269671564485"},{"denom":"ASSET4","index":"0.000011947684550294"},{"denom":"ASSET5","index":"0.000000984934568662"},{"denom":"ASSET6","index":"0.000004010359059893"},{"denom":"ASSET7","index":"0.000006141754461338"},{"denom":"ASSET8","index":"0.000008013956555240"},{"denom":"ASSET9","index":"0.000003461169761882"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003372790294110"},{"denom":"ASSET1","index":"0.000028600279733511"},{"denom":"ASSET10","index":"0.000022731421090197"},{"denom":"ASSET11","index":"0.000028396190348540"},{"denom":"ASSET12","index":"0.000027027392524280"},{"denom":"ASSET13","index":"0.000008915082315276"},{"denom":"ASSET14","index":"0.000026078776667620"},{"denom":"ASSET15","index":"0.000020492230414373"},{"denom":"ASSET16","index":"0.000012694274413467"},{"denom":"ASSET17","index":"0.000009931274832025"},{"denom":"ASSET18","index":"0.000004123939856338"},{"denom":"ASSET2","index":"0.000008653658587521"},{"denom":"ASSET3","index":"0.000002407864000528"},{"denom":"ASSET4","index":"0.000023189126720885"},{"denom":"ASSET5","index":"0.000001875419633234"},{"denom":"ASSET6","index":"0.000007571725921487"},{"denom":"ASSET7","index":"0.000011883748947250"},{"denom":"ASSET8","index":"0.000016207221904670"},{"denom":"ASSET9","index":"0.000006883201227023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001453309126336"},{"denom":"ASSET1","index":"0.000012116886392617"},{"denom":"ASSET10","index":"0.000008441923956558"},{"denom":"ASSET11","index":"0.000011721955689254"},{"denom":"ASSET12","index":"0.000010555542874101"},{"denom":"ASSET13","index":"0.000003632376264868"},{"denom":"ASSET14","index":"0.000010950025301978"},{"denom":"ASSET15","index":"0.000007829131366891"},{"denom":"ASSET16","index":"0.000005458650595742"},{"denom":"ASSET17","index":"0.000003876686404859"},{"denom":"ASSET18","index":"0.000001846446727754"},{"denom":"ASSET2","index":"0.000003576790104576"},{"denom":"ASSET3","index":"0.000001046274984845"},{"denom":"ASSET4","index":"0.000009847267605868"},{"denom":"ASSET5","index":"0.000000812275181037"},{"denom":"ASSET6","index":"0.000003305135159925"},{"denom":"ASSET7","index":"0.000005061926790434"},{"denom":"ASSET8","index":"0.000006605339289501"},{"denom":"ASSET9","index":"0.000002852825194325"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000002846126280344"},{"denom":"ASSET1","index":"0.000024142729904188"},{"denom":"ASSET10","index":"0.000019247649074564"},{"denom":"ASSET11","index":"0.000023985879136349"},{"denom":"ASSET12","index":"0.000022859091275790"},{"denom":"ASSET13","index":"0.000007532792628817"},{"denom":"ASSET14","index":"0.000022018595952129"},{"denom":"ASSET15","index":"0.000017341431925331"},{"denom":"ASSET16","index":"0.000010711928951149"},{"denom":"ASSET17","index":"0.000008400535387767"},{"denom":"ASSET18","index":"0.000003476353193421"},{"denom":"ASSET2","index":"0.000007309791035362"},{"denom":"ASSET3","index":"0.000002031285314481"},{"denom":"ASSET4","index":"0.000019573873127075"},{"denom":"ASSET5","index":"0.000001582650339951"},{"denom":"ASSET6","index":"0.000006386635795582"},{"denom":"ASSET7","index":"0.000010030235680714"},{"denom":"ASSET8","index":"0.000013694243666513"},{"denom":"ASSET9","index":"0.000005813799926422"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001542334439671"},{"denom":"ASSET1","index":"0.000012860022908304"},{"denom":"ASSET10","index":"0.000008959505058412"},{"denom":"ASSET11","index":"0.000012440701863130"},{"denom":"ASSET12","index":"0.000011202637482986"},{"denom":"ASSET13","index":"0.000003855293405849"},{"denom":"ASSET14","index":"0.000011621234937056"},{"denom":"ASSET15","index":"0.000008308996655285"},{"denom":"ASSET16","index":"0.000005793070384239"},{"denom":"ASSET17","index":"0.000004114339021332"},{"denom":"ASSET18","index":"0.000001959846507084"},{"denom":"ASSET2","index":"0.000003796320730815"},{"denom":"ASSET3","index":"0.000001110350550164"},{"denom":"ASSET4","index":"0.000010450826325201"},{"denom":"ASSET5","index":"0.000000861797005699"},{"denom":"ASSET6","index":"0.000003507969675592"},{"denom":"ASSET7","index":"0.000005372663952407"},{"denom":"ASSET8","index":"0.000007010512417899"},{"denom":"ASSET9","index":"0.000003027866977623"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003036454064443"},{"denom":"ASSET1","index":"0.000025762443856573"},{"denom":"ASSET10","index":"0.000020552854458451"},{"denom":"ASSET11","index":"0.000025598594042577"},{"denom":"ASSET12","index":"0.000024403233064712"},{"denom":"ASSET13","index":"0.000008040226829205"},{"denom":"ASSET14","index":"0.000023496526683137"},{"denom":"ASSET15","index":"0.000018514610345002"},{"denom":"ASSET16","index":"0.000011429420030088"},{"denom":"ASSET17","index":"0.000008967792958730"},{"denom":"ASSET18","index":"0.000003708688180539"},{"denom":"ASSET2","index":"0.000007801450355100"},{"denom":"ASSET3","index":"0.000002167197324698"},{"denom":"ASSET4","index":"0.000020886439041228"},{"denom":"ASSET5","index":"0.000001688395026424"},{"denom":"ASSET6","index":"0.000006814112030993"},{"denom":"ASSET7","index":"0.000010703097412338"},{"denom":"ASSET8","index":"0.000014616213118562"},{"denom":"ASSET9","index":"0.000006204650488693"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001802604811891"},{"denom":"ASSET1","index":"0.000015041134377282"},{"denom":"ASSET10","index":"0.000010478421042795"},{"denom":"ASSET11","index":"0.000014549893343095"},{"denom":"ASSET12","index":"0.000013101148598203"},{"denom":"ASSET13","index":"0.000004508593559534"},{"denom":"ASSET14","index":"0.000013592389632390"},{"denom":"ASSET15","index":"0.000009716581133843"},{"denom":"ASSET16","index":"0.000006773297988330"},{"denom":"ASSET17","index":"0.000004812496911192"},{"denom":"ASSET18","index":"0.000002289682786467"},{"denom":"ASSET2","index":"0.000004437821546134"},{"denom":"ASSET3","index":"0.000001298874598869"},{"denom":"ASSET4","index":"0.000012222743020122"},{"denom":"ASSET5","index":"0.000001007460426045"},{"denom":"ASSET6","index":"0.000004100613717582"},{"denom":"ASSET7","index":"0.000006282056954143"},{"denom":"ASSET8","index":"0.000008197064375552"},{"denom":"ASSET9","index":"0.000003538600669994"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003500919125422"},{"denom":"ASSET1","index":"0.000029708744113596"},{"denom":"ASSET10","index":"0.000023658219501850"},{"denom":"ASSET11","index":"0.000029508250092955"},{"denom":"ASSET12","index":"0.000028107871580940"},{"denom":"ASSET13","index":"0.000009266072102552"},{"denom":"ASSET14","index":"0.000027092614384257"},{"denom":"ASSET15","index":"0.000021318431245277"},{"denom":"ASSET16","index":"0.000013180724612002"},{"denom":"ASSET17","index":"0.000010330094773179"},{"denom":"ASSET18","index":"0.000004277644880979"},{"denom":"ASSET2","index":"0.000008990842831989"},{"denom":"ASSET3","index":"0.000002500335792843"},{"denom":"ASSET4","index":"0.000024086210482120"},{"denom":"ASSET5","index":"0.000001946754653173"},{"denom":"ASSET6","index":"0.000007858889858659"},{"denom":"ASSET7","index":"0.000012341576470869"},{"denom":"ASSET8","index":"0.000016843078118646"},{"denom":"ASSET9","index":"0.000007150129263591"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001563811170888"},{"denom":"ASSET1","index":"0.000013038374863878"},{"denom":"ASSET10","index":"0.000009083864212622"},{"denom":"ASSET11","index":"0.000012612362006834"},{"denom":"ASSET12","index":"0.000011358137819015"},{"denom":"ASSET13","index":"0.000003908204905926"},{"denom":"ASSET14","index":"0.000011781504633469"},{"denom":"ASSET15","index":"0.000008423676586333"},{"denom":"ASSET16","index":"0.000005872891529250"},{"denom":"ASSET17","index":"0.000004170163122369"},{"denom":"ASSET18","index":"0.000001987177985342"},{"denom":"ASSET2","index":"0.000003848668947643"},{"denom":"ASSET3","index":"0.000001125891122188"},{"denom":"ASSET4","index":"0.000010596077552999"},{"denom":"ASSET5","index":"0.000000873194054811"},{"denom":"ASSET6","index":"0.000003556281241411"},{"denom":"ASSET7","index":"0.000005446878672206"},{"denom":"ASSET8","index":"0.000007107270397641"},{"denom":"ASSET9","index":"0.000003069409404789"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003311345528520"},{"denom":"ASSET1","index":"0.000028134750769747"},{"denom":"ASSET10","index":"0.000022648872120201"},{"denom":"ASSET11","index":"0.000028007957662740"},{"denom":"ASSET12","index":"0.000026803793052874"},{"denom":"ASSET13","index":"0.000008804941803873"},{"denom":"ASSET14","index":"0.000025676450668466"},{"denom":"ASSET15","index":"0.000020365161363483"},{"denom":"ASSET16","index":"0.000012467103206876"},{"denom":"ASSET17","index":"0.000009848512066991"},{"denom":"ASSET18","index":"0.000004032794375330"},{"denom":"ASSET2","index":"0.000008534928074651"},{"denom":"ASSET3","index":"0.000002362590241163"},{"denom":"ASSET4","index":"0.000022806063702805"},{"denom":"ASSET5","index":"0.000001840254083448"},{"denom":"ASSET6","index":"0.000007424521355960"},{"denom":"ASSET7","index":"0.000011683846998076"},{"denom":"ASSET8","index":"0.000016006498096466"},{"denom":"ASSET9","index":"0.000006786333067798"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001600184479142"},{"denom":"ASSET1","index":"0.000013342157474081"},{"denom":"ASSET10","index":"0.000009295060662992"},{"denom":"ASSET11","index":"0.000012907134644369"},{"denom":"ASSET12","index":"0.000011622469236023"},{"denom":"ASSET13","index":"0.000003999732516397"},{"denom":"ASSET14","index":"0.000012056763384279"},{"denom":"ASSET15","index":"0.000008620301633991"},{"denom":"ASSET16","index":"0.000006010164655719"},{"denom":"ASSET17","index":"0.000004268615973958"},{"denom":"ASSET18","index":"0.000002033021264483"},{"denom":"ASSET2","index":"0.000003938523274026"},{"denom":"ASSET3","index":"0.000001152045383207"},{"denom":"ASSET4","index":"0.000010842780077243"},{"denom":"ASSET5","index":"0.000000894092147498"},{"denom":"ASSET6","index":"0.000003639035195279"},{"denom":"ASSET7","index":"0.000005573684463094"},{"denom":"ASSET8","index":"0.000007272969620361"},{"denom":"ASSET9","index":"0.000003141345760282"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003037978324998"},{"denom":"ASSET1","index":"0.000025756345113171"},{"denom":"ASSET10","index":"0.000020449699671521"},{"denom":"ASSET11","index":"0.000025567125107120"},{"denom":"ASSET12","index":"0.000024323299608917"},{"denom":"ASSET13","index":"0.000008026089638757"},{"denom":"ASSET14","index":"0.000023482777870484"},{"denom":"ASSET15","index":"0.000018439819094125"},{"denom":"ASSET16","index":"0.000011433094032389"},{"denom":"ASSET17","index":"0.000008938487942114"},{"denom":"ASSET18","index":"0.000003715472889790"},{"denom":"ASSET2","index":"0.000007791978720736"},{"denom":"ASSET3","index":"0.000002168844641333"},{"denom":"ASSET4","index":"0.000020883291069830"},{"denom":"ASSET5","index":"0.000001689134510364"},{"denom":"ASSET6","index":"0.000006819968009550"},{"denom":"ASSET7","index":"0.000010702337477897"},{"denom":"ASSET8","index":"0.000014590947163921"},{"denom":"ASSET9","index":"0.000006197850437110"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001732863553160"},{"denom":"ASSET1","index":"0.000014476512568697"},{"denom":"ASSET10","index":"0.000010084697727409"},{"denom":"ASSET11","index":"0.000014004946421444"},{"denom":"ASSET12","index":"0.000012607292539223"},{"denom":"ASSET13","index":"0.000004334999642824"},{"denom":"ASSET14","index":"0.000013078858686476"},{"denom":"ASSET15","index":"0.000009351781667220"},{"denom":"ASSET16","index":"0.000006516703263852"},{"denom":"ASSET17","index":"0.000004630438674838"},{"denom":"ASSET18","index":"0.000002204429700414"},{"denom":"ASSET2","index":"0.000004272502924514"},{"denom":"ASSET3","index":"0.000001249934366214"},{"denom":"ASSET4","index":"0.000011760746082105"},{"denom":"ASSET5","index":"0.000000965858373893"},{"denom":"ASSET6","index":"0.000003948656293267"},{"denom":"ASSET7","index":"0.000006045137116599"},{"denom":"ASSET8","index":"0.000007891631066688"},{"denom":"ASSET9","index":"0.000003403230388010"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003203314564743"},{"denom":"ASSET1","index":"0.000027174750089688"},{"denom":"ASSET10","index":"0.000021494761442080"},{"denom":"ASSET11","index":"0.000026954579685264"},{"denom":"ASSET12","index":"0.000025598519259277"},{"denom":"ASSET13","index":"0.000008453363478510"},{"denom":"ASSET14","index":"0.000024766008219885"},{"denom":"ASSET15","index":"0.000019395989679368"},{"denom":"ASSET16","index":"0.000012063312986412"},{"denom":"ASSET17","index":"0.000009406957788586"},{"denom":"ASSET18","index":"0.000003925664786352"},{"denom":"ASSET2","index":"0.000008214094571203"},{"denom":"ASSET3","index":"0.000002289770772075"},{"denom":"ASSET4","index":"0.000022031271429646"},{"denom":"ASSET5","index":"0.000001779377444361"},{"denom":"ASSET6","index":"0.000007202120906665"},{"denom":"ASSET7","index":"0.000011290805949933"},{"denom":"ASSET8","index":"0.000015376618183469"},{"denom":"ASSET9","index":"0.000006529467958809"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001687731873143"},{"denom":"ASSET1","index":"0.000014069560961171"},{"denom":"ASSET10","index":"0.000009802495056563"},{"denom":"ASSET11","index":"0.000013610740912442"},{"denom":"ASSET12","index":"0.000012256373563096"},{"denom":"ASSET13","index":"0.000004217751625940"},{"denom":"ASSET14","index":"0.000012714404583367"},{"denom":"ASSET15","index":"0.000009090791386823"},{"denom":"ASSET16","index":"0.000006338265608675"},{"denom":"ASSET17","index":"0.000004501407356839"},{"denom":"ASSET18","index":"0.000002144184836496"},{"denom":"ASSET2","index":"0.000004153051292327"},{"denom":"ASSET3","index":"0.000001214709312157"},{"denom":"ASSET4","index":"0.000011433811394910"},{"denom":"ASSET5","index":"0.000000942889008137"},{"denom":"ASSET6","index":"0.000003837834423079"},{"denom":"ASSET7","index":"0.000005877867503028"},{"denom":"ASSET8","index":"0.000007669751132718"},{"denom":"ASSET9","index":"0.000003312735983819"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003310751488522"},{"denom":"ASSET1","index":"0.000028084250149300"},{"denom":"ASSET10","index":"0.000022395324527460"},{"denom":"ASSET11","index":"0.000027902986790638"},{"denom":"ASSET12","index":"0.000026594787286768"},{"denom":"ASSET13","index":"0.000008763085936534"},{"denom":"ASSET14","index":"0.000025613920456358"},{"denom":"ASSET15","index":"0.000020176020856033"},{"denom":"ASSET16","index":"0.000012460451689171"},{"denom":"ASSET17","index":"0.000009773335616478"},{"denom":"ASSET18","index":"0.000004043661907525"},{"denom":"ASSET2","index":"0.000008503271494062"},{"denom":"ASSET3","index":"0.000002362859659779"},{"denom":"ASSET4","index":"0.000022769116693783"},{"denom":"ASSET5","index":"0.000001840413908887"},{"denom":"ASSET6","index":"0.000007429033260494"},{"denom":"ASSET7","index":"0.000011667535172652"},{"denom":"ASSET8","index":"0.000015931047386954"},{"denom":"ASSET9","index":"0.000006763232815972"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001411639939639"},{"denom":"ASSET1","index":"0.000011770559134781"},{"denom":"ASSET10","index":"0.000008200405560598"},{"denom":"ASSET11","index":"0.000011386782830640"},{"denom":"ASSET12","index":"0.000010253700018254"},{"denom":"ASSET13","index":"0.000003528795747429"},{"denom":"ASSET14","index":"0.000010636868119061"},{"denom":"ASSET15","index":"0.000007604974496011"},{"denom":"ASSET16","index":"0.000005302316671163"},{"denom":"ASSET17","index":"0.000003765386844594"},{"denom":"ASSET18","index":"0.000001793591633776"},{"denom":"ASSET2","index":"0.000003474665650649"},{"denom":"ASSET3","index":"0.000001016307772140"},{"denom":"ASSET4","index":"0.000009565822046806"},{"denom":"ASSET5","index":"0.000000788839724994"},{"denom":"ASSET6","index":"0.000003210705403426"},{"denom":"ASSET7","index":"0.000004917323960353"},{"denom":"ASSET8","index":"0.000006416545180176"},{"denom":"ASSET9","index":"0.000002771582595835"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000002915106026686"},{"denom":"ASSET1","index":"0.000024751938975568"},{"denom":"ASSET10","index":"0.000019864528416862"},{"denom":"ASSET11","index":"0.000024625253839727"},{"denom":"ASSET12","index":"0.000023534700266806"},{"denom":"ASSET13","index":"0.000007739190454504"},{"denom":"ASSET14","index":"0.000022584902384729"},{"denom":"ASSET15","index":"0.000017872912229645"},{"denom":"ASSET16","index":"0.000010972881933217"},{"denom":"ASSET17","index":"0.000008648586457086"},{"denom":"ASSET18","index":"0.000003552999450219"},{"denom":"ASSET2","index":"0.000007504215303421"},{"denom":"ASSET3","index":"0.000002079538758775"},{"denom":"ASSET4","index":"0.000020065180146540"},{"denom":"ASSET5","index":"0.000001620267199228"},{"denom":"ASSET6","index":"0.000006536798446662"},{"denom":"ASSET7","index":"0.000010280222742310"},{"denom":"ASSET8","index":"0.000014068743113537"},{"denom":"ASSET9","index":"0.000005967789042866"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001670929391506"},{"denom":"ASSET1","index":"0.000013946161101263"},{"denom":"ASSET10","index":"0.000009716355120388"},{"denom":"ASSET11","index":"0.000013489421488305"},{"denom":"ASSET12","index":"0.000012147571569489"},{"denom":"ASSET13","index":"0.000004178741924768"},{"denom":"ASSET14","index":"0.000012601474290441"},{"denom":"ASSET15","index":"0.000009009969010905"},{"denom":"ASSET16","index":"0.000006280878901179"},{"denom":"ASSET17","index":"0.000004459594233357"},{"denom":"ASSET18","index":"0.000002124832112458"},{"denom":"ASSET2","index":"0.000004116330300637"},{"denom":"ASSET3","index":"0.000001202842210524"},{"denom":"ASSET4","index":"0.000011333383563781"},{"denom":"ASSET5","index":"0.000000933337469958"},{"denom":"ASSET6","index":"0.000003804272179982"},{"denom":"ASSET7","index":"0.000005824139288221"},{"denom":"ASSET8","index":"0.000007600033683947"},{"denom":"ASSET9","index":"0.000003282284050887"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003306866574231"},{"denom":"ASSET1","index":"0.000028073670524533"},{"denom":"ASSET10","index":"0.000022410378668975"},{"denom":"ASSET11","index":"0.000027896117796052"},{"denom":"ASSET12","index":"0.000026601615360568"},{"denom":"ASSET13","index":"0.000008760019105133"},{"denom":"ASSET14","index":"0.000025604072816608"},{"denom":"ASSET15","index":"0.000020183975077340"},{"denom":"ASSET16","index":"0.000012452378452775"},{"denom":"ASSET17","index":"0.000009773941069454"},{"denom":"ASSET18","index":"0.000004038323507821"},{"denom":"ASSET2","index":"0.000008501686860316"},{"denom":"ASSET3","index":"0.000002358773872569"},{"denom":"ASSET4","index":"0.000022758821093429"},{"denom":"ASSET5","index":"0.000001837837668790"},{"denom":"ASSET6","index":"0.000007423905647148"},{"denom":"ASSET7","index":"0.000011659308440973"},{"denom":"ASSET8","index":"0.000015926660063085"},{"denom":"ASSET9","index":"0.000006759875068056"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001598361255475"},{"denom":"ASSET1","index":"0.000013324868720531"},{"denom":"ASSET10","index":"0.000009283863630055"},{"denom":"ASSET11","index":"0.000012890721875256"},{"denom":"ASSET12","index":"0.000011607749807828"},{"denom":"ASSET13","index":"0.000003994929715268"},{"denom":"ASSET14","index":"0.000012041896653103"},{"denom":"ASSET15","index":"0.000008609605674538"},{"denom":"ASSET16","index":"0.000006002777756047"},{"denom":"ASSET17","index":"0.000004262945630213"},{"denom":"ASSET18","index":"0.000002030561253910"},{"denom":"ASSET2","index":"0.000003933279565341"},{"denom":"ASSET3","index":"0.000001150586482321"},{"denom":"ASSET4","index":"0.000010829011071909"},{"denom":"ASSET5","index":"0.000000892953750521"},{"denom":"ASSET6","index":"0.000003634763049905"},{"denom":"ASSET7","index":"0.000005566684063932"},{"denom":"ASSET8","index":"0.000007263685559290"},{"denom":"ASSET9","index":"0.000003137668156809"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003119961272076"},{"denom":"ASSET1","index":"0.000026462428012801"},{"denom":"ASSET10","index":"0.000021088828135750"},{"denom":"ASSET11","index":"0.000026288818556387"},{"denom":"ASSET12","index":"0.000025049012446876"},{"denom":"ASSET13","index":"0.000008256026418292"},{"denom":"ASSET14","index":"0.000024133914778951"},{"denom":"ASSET15","index":"0.000019001193386697"},{"denom":"ASSET16","index":"0.000011741691861213"},{"denom":"ASSET17","index":"0.000009205139483526"},{"denom":"ASSET18","index":"0.000003811157018018"},{"denom":"ASSET2","index":"0.000008011229275486"},{"denom":"ASSET3","index":"0.000002226652147557"},{"denom":"ASSET4","index":"0.000021454928269907"},{"denom":"ASSET5","index":"0.000001734689929917"},{"denom":"ASSET6","index":"0.000007001091110949"},{"denom":"ASSET7","index":"0.000010994186615549"},{"denom":"ASSET8","index":"0.000015007966738007"},{"denom":"ASSET9","index":"0.000006372340046203"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001543375593884"},{"denom":"ASSET1","index":"0.000012871309378663"},{"denom":"ASSET10","index":"0.000008967332198598"},{"denom":"ASSET11","index":"0.000012451619524186"},{"denom":"ASSET12","index":"0.000011213472915376"},{"denom":"ASSET13","index":"0.000003858438984711"},{"denom":"ASSET14","index":"0.000011631932007817"},{"denom":"ASSET15","index":"0.000008316259081242"},{"denom":"ASSET16","index":"0.000005798119954378"},{"denom":"ASSET17","index":"0.000004118129774432"},{"denom":"ASSET18","index":"0.000001961834686325"},{"denom":"ASSET2","index":"0.000003799362406955"},{"denom":"ASSET3","index":"0.000001111378119041"},{"denom":"ASSET4","index":"0.000010460246548983"},{"denom":"ASSET5","index":"0.000000862764187650"},{"denom":"ASSET6","index":"0.000003511364090393"},{"denom":"ASSET7","index":"0.000005377199337864"},{"denom":"ASSET8","index":"0.000007016574370602"},{"denom":"ASSET9","index":"0.000003030136134086"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003061984062566"},{"denom":"ASSET1","index":"0.000025984754387841"},{"denom":"ASSET10","index":"0.000020750278468036"},{"denom":"ASSET11","index":"0.000025825260107338"},{"denom":"ASSET12","index":"0.000024630365005548"},{"denom":"ASSET13","index":"0.000008111503841622"},{"denom":"ASSET14","index":"0.000023701848593669"},{"denom":"ASSET15","index":"0.000018689068915475"},{"denom":"ASSET16","index":"0.000011526541772952"},{"denom":"ASSET17","index":"0.000009050861170220"},{"denom":"ASSET18","index":"0.000003739265665267"},{"denom":"ASSET2","index":"0.000007869809789784"},{"denom":"ASSET3","index":"0.000002185113944095"},{"denom":"ASSET4","index":"0.000021066477214749"},{"denom":"ASSET5","index":"0.000001702392649313"},{"denom":"ASSET6","index":"0.000006871251000760"},{"denom":"ASSET7","index":"0.000010794622225013"},{"denom":"ASSET8","index":"0.000014746923085504"},{"denom":"ASSET9","index":"0.000006258895459680"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001745217677213"},{"denom":"ASSET1","index":"0.000014553842410819"},{"denom":"ASSET10","index":"0.000010139729507131"},{"denom":"ASSET11","index":"0.000014078681363843"},{"denom":"ASSET12","index":"0.000012678362515121"},{"denom":"ASSET13","index":"0.000004362304066790"},{"denom":"ASSET14","index":"0.000013152043309614"},{"denom":"ASSET15","index":"0.000009402563770700"},{"denom":"ASSET16","index":"0.000006556038246289"},{"denom":"ASSET17","index":"0.000004655394058383"},{"denom":"ASSET18","index":"0.000002217418219224"},{"denom":"ASSET2","index":"0.000004295692705065"},{"denom":"ASSET3","index":"0.000001256734357891"},{"denom":"ASSET4","index":"0.000011827217337515"},{"denom":"ASSET5","index":"0.000000975486386160"},{"denom":"ASSET6","index":"0.000003970037158850"},{"denom":"ASSET7","index":"0.000006079396946830"},{"denom":"ASSET8","index":"0.000007932673055287"},{"denom":"ASSET9","index":"0.000003426784497665"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003296605577903"},{"denom":"ASSET1","index":"0.000027950980635352"},{"denom":"ASSET10","index":"0.000022177590033485"},{"denom":"ASSET11","index":"0.000027741245317152"},{"denom":"ASSET12","index":"0.000026384837371861"},{"denom":"ASSET13","index":"0.000008707523198290"},{"denom":"ASSET14","index":"0.000025482773879389"},{"denom":"ASSET15","index":"0.000019999205716580"},{"denom":"ASSET16","index":"0.000012408342313410"},{"denom":"ASSET17","index":"0.000009694954350389"},{"denom":"ASSET18","index":"0.000004033447725414"},{"denom":"ASSET2","index":"0.000008454290496983"},{"denom":"ASSET3","index":"0.000002354114882033"},{"denom":"ASSET4","index":"0.000022662624820802"},{"denom":"ASSET5","index":"0.000001833709311257"},{"denom":"ASSET6","index":"0.000007402928859239"},{"denom":"ASSET7","index":"0.000011614131087351"},{"denom":"ASSET8","index":"0.000015829970625061"},{"denom":"ASSET9","index":"0.000006725199056296"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001696105704481"},{"denom":"ASSET1","index":"0.000014140754037071"},{"denom":"ASSET10","index":"0.000009851931515387"},{"denom":"ASSET11","index":"0.000013679695806241"},{"denom":"ASSET12","index":"0.000012318593050331"},{"denom":"ASSET13","index":"0.000004239283286244"},{"denom":"ASSET14","index":"0.000012779160793682"},{"denom":"ASSET15","index":"0.000009136800770120"},{"denom":"ASSET16","index":"0.000006369960897657"},{"denom":"ASSET17","index":"0.000004523766024416"},{"denom":"ASSET18","index":"0.000002155201985393"},{"denom":"ASSET2","index":"0.000004174048451456"},{"denom":"ASSET3","index":"0.000001220823336742"},{"denom":"ASSET4","index":"0.000011492121647193"},{"denom":"ASSET5","index":"0.000000947621810601"},{"denom":"ASSET6","index":"0.000003857193539630"},{"denom":"ASSET7","index":"0.000005907431204387"},{"denom":"ASSET8","index":"0.000007708991716984"},{"denom":"ASSET9","index":"0.000003329429011573"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003278023650839"},{"denom":"ASSET1","index":"0.000027801084973989"},{"denom":"ASSET10","index":"0.000022126343818190"},{"denom":"ASSET11","index":"0.000027610641458424"},{"denom":"ASSET12","index":"0.000026294522151225"},{"denom":"ASSET13","index":"0.000008669795972838"},{"denom":"ASSET14","index":"0.000025352034708572"},{"denom":"ASSET15","index":"0.000019941753748345"},{"denom":"ASSET16","index":"0.000012337408081897"},{"denom":"ASSET17","index":"0.000009662232510971"},{"denom":"ASSET18","index":"0.000004006663612522"},{"denom":"ASSET2","index":"0.000008414274009770"},{"denom":"ASSET3","index":"0.000002339697370568"},{"denom":"ASSET4","index":"0.000022540556466857"},{"denom":"ASSET5","index":"0.000001822656991491"},{"denom":"ASSET6","index":"0.000007357334263189"},{"denom":"ASSET7","index":"0.000011551068960203"},{"denom":"ASSET8","index":"0.000015761386047857"},{"denom":"ASSET9","index":"0.000006692834331509"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001139195115521"},{"denom":"ASSET1","index":"0.000009496890331931"},{"denom":"ASSET10","index":"0.000006616523219856"},{"denom":"ASSET11","index":"0.000009187371854639"},{"denom":"ASSET12","index":"0.000008273091178185"},{"denom":"ASSET13","index":"0.000002846943294505"},{"denom":"ASSET14","index":"0.000008582261490710"},{"denom":"ASSET15","index":"0.000006136055842283"},{"denom":"ASSET16","index":"0.000004278248649000"},{"denom":"ASSET17","index":"0.000003038433916001"},{"denom":"ASSET18","index":"0.000001447320933748"},{"denom":"ASSET2","index":"0.000002803422698710"},{"denom":"ASSET3","index":"0.000000819928024772"},{"denom":"ASSET4","index":"0.000007718116540611"},{"denom":"ASSET5","index":"0.000000636445192901"},{"denom":"ASSET6","index":"0.000002590694026466"},{"denom":"ASSET7","index":"0.000003967685677409"},{"denom":"ASSET8","index":"0.000005177210075735"},{"denom":"ASSET9","index":"0.000002236262294314"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000002735257365218"},{"denom":"ASSET1","index":"0.000023278157661741"},{"denom":"ASSET10","index":"0.000018999615823078"},{"denom":"ASSET11","index":"0.000023241706683585"},{"denom":"ASSET12","index":"0.000022372793234045"},{"denom":"ASSET13","index":"0.000007316911351959"},{"denom":"ASSET14","index":"0.000021266506066871"},{"denom":"ASSET15","index":"0.000017036720297506"},{"denom":"ASSET16","index":"0.000010298479660409"},{"denom":"ASSET17","index":"0.000008222611745720"},{"denom":"ASSET18","index":"0.000003315370510511"},{"denom":"ASSET2","index":"0.000007081336162231"},{"denom":"ASSET3","index":"0.000001948923871674"},{"denom":"ASSET4","index":"0.000018864412124408"},{"denom":"ASSET5","index":"0.000001519377842401"},{"denom":"ASSET6","index":"0.000006121992555640"},{"denom":"ASSET7","index":"0.000009661272655042"},{"denom":"ASSET8","index":"0.000013300968175029"},{"denom":"ASSET9","index":"0.000005629514833023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001583959364947"},{"denom":"ASSET1","index":"0.000013443347430705"},{"denom":"ASSET10","index":"0.000009381913161610"},{"denom":"ASSET11","index":"0.000012996589661105"},{"denom":"ASSET12","index":"0.000011696930694994"},{"denom":"ASSET13","index":"0.000004020819926404"},{"denom":"ASSET14","index":"0.000012143688464595"},{"denom":"ASSET15","index":"0.000008691469335864"},{"denom":"ASSET16","index":"0.000006051537060952"},{"denom":"ASSET17","index":"0.000004305120325241"},{"denom":"ASSET18","index":"0.000002030717134548"},{"denom":"ASSET2","index":"0.000003939591241022"},{"denom":"ASSET3","index":"0.000001137201595347"},{"denom":"ASSET4","index":"0.000010925258183866"},{"denom":"ASSET5","index":"0.000000893515539201"},{"denom":"ASSET6","index":"0.000003655290842186"},{"denom":"ASSET7","index":"0.000005604779291351"},{"denom":"ASSET8","index":"0.000007310581684371"},{"denom":"ASSET9","index":"0.000003167918729894"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003310378542013"},{"denom":"ASSET1","index":"0.000028352771206955"},{"denom":"ASSET10","index":"0.000022778987578468"},{"denom":"ASSET11","index":"0.000028201706998458"},{"denom":"ASSET12","index":"0.000026949790221900"},{"denom":"ASSET13","index":"0.000008856641706946"},{"denom":"ASSET14","index":"0.000025865717784540"},{"denom":"ASSET15","index":"0.000020483790155485"},{"denom":"ASSET16","index":"0.000012564495758376"},{"denom":"ASSET17","index":"0.000009912517491786"},{"denom":"ASSET18","index":"0.000004051289802086"},{"denom":"ASSET2","index":"0.000008567503486413"},{"denom":"ASSET3","index":"0.000002358477605528"},{"denom":"ASSET4","index":"0.000022984011222606"},{"denom":"ASSET5","index":"0.000001848359330263"},{"denom":"ASSET6","index":"0.000007474666006436"},{"denom":"ASSET7","index":"0.000011763521743703"},{"denom":"ASSET8","index":"0.000016098224703406"},{"denom":"ASSET9","index":"0.000006837907042961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001549911588522"},{"denom":"ASSET1","index":"0.000012922257740418"},{"denom":"ASSET10","index":"0.000009003081854783"},{"denom":"ASSET11","index":"0.000012500946332712"},{"denom":"ASSET12","index":"0.000011256607989023"},{"denom":"ASSET13","index":"0.000003873860414458"},{"denom":"ASSET14","index":"0.000011677307025497"},{"denom":"ASSET15","index":"0.000008349069378868"},{"denom":"ASSET16","index":"0.000005821200932633"},{"denom":"ASSET17","index":"0.000004134118188113"},{"denom":"ASSET18","index":"0.000001969385882532"},{"denom":"ASSET2","index":"0.000003814460404941"},{"denom":"ASSET3","index":"0.000001115740384942"},{"denom":"ASSET4","index":"0.000010501554259806"},{"denom":"ASSET5","index":"0.000000865892922233"},{"denom":"ASSET6","index":"0.000003524808812143"},{"denom":"ASSET7","index":"0.000005398664782463"},{"denom":"ASSET8","index":"0.000007044106283197"},{"denom":"ASSET9","index":"0.000003042260281224"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003086330633608"},{"denom":"ASSET1","index":"0.000026187842720704"},{"denom":"ASSET10","index":"0.000020922921087024"},{"denom":"ASSET11","index":"0.000026029396638226"},{"denom":"ASSET12","index":"0.000024828709288325"},{"denom":"ASSET13","index":"0.000008176601230700"},{"denom":"ASSET14","index":"0.000023887113573615"},{"denom":"ASSET15","index":"0.000018841856891118"},{"denom":"ASSET16","index":"0.000011616230118922"},{"denom":"ASSET17","index":"0.000009124242236202"},{"denom":"ASSET18","index":"0.000003767471049721"},{"denom":"ASSET2","index":"0.000007932284099147"},{"denom":"ASSET3","index":"0.000002202458257762"},{"denom":"ASSET4","index":"0.000021230824628511"},{"denom":"ASSET5","index":"0.000001715648257347"},{"denom":"ASSET6","index":"0.000006923830152599"},{"denom":"ASSET7","index":"0.000010879262909104"},{"denom":"ASSET8","index":"0.000014863870027497"},{"denom":"ASSET9","index":"0.000006308409915314"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001535524830156"},{"denom":"ASSET1","index":"0.000012804491333161"},{"denom":"ASSET10","index":"0.000008921035499248"},{"denom":"ASSET11","index":"0.000012386713938596"},{"denom":"ASSET12","index":"0.000011154325740380"},{"denom":"ASSET13","index":"0.000003838812075390"},{"denom":"ASSET14","index":"0.000011571000819920"},{"denom":"ASSET15","index":"0.000008272874264409"},{"denom":"ASSET16","index":"0.000005767863369556"},{"denom":"ASSET17","index":"0.000004096202633783"},{"denom":"ASSET18","index":"0.000001951097594671"},{"denom":"ASSET2","index":"0.000003779838221540"},{"denom":"ASSET3","index":"0.000001105621970313"},{"denom":"ASSET4","index":"0.000010405853838244"},{"denom":"ASSET5","index":"0.000000858152247148"},{"denom":"ASSET6","index":"0.000003492685157466"},{"denom":"ASSET7","index":"0.000005348983659966"},{"denom":"ASSET8","index":"0.000006980409897318"},{"denom":"ASSET9","index":"0.000003014831594025"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003051773960929"},{"denom":"ASSET1","index":"0.000025898629359040"},{"denom":"ASSET10","index":"0.000020686863907037"},{"denom":"ASSET11","index":"0.000025740096441319"},{"denom":"ASSET12","index":"0.000024551000542772"},{"denom":"ASSET13","index":"0.000008085532012369"},{"denom":"ASSET14","index":"0.000023622558405526"},{"denom":"ASSET15","index":"0.000018629920308839"},{"denom":"ASSET16","index":"0.000011487540137638"},{"denom":"ASSET17","index":"0.000009021847693812"},{"denom":"ASSET18","index":"0.000003725572559942"},{"denom":"ASSET2","index":"0.000007844221178735"},{"denom":"ASSET3","index":"0.000002178252359768"},{"denom":"ASSET4","index":"0.000020996168979716"},{"denom":"ASSET5","index":"0.000001697004218389"},{"denom":"ASSET6","index":"0.000006847583721256"},{"denom":"ASSET7","index":"0.000010758483833946"},{"denom":"ASSET8","index":"0.000014699172267780"},{"denom":"ASSET9","index":"0.000006238834616461"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001813824295534"},{"denom":"ASSET1","index":"0.000015126179984122"},{"denom":"ASSET10","index":"0.000010538420488017"},{"denom":"ASSET11","index":"0.000014633035948465"},{"denom":"ASSET12","index":"0.000013177247733614"},{"denom":"ASSET13","index":"0.000004534560738834"},{"denom":"ASSET14","index":"0.000013669547344553"},{"denom":"ASSET15","index":"0.000009773371692973"},{"denom":"ASSET16","index":"0.000006813663054312"},{"denom":"ASSET17","index":"0.000004839398062246"},{"denom":"ASSET18","index":"0.000002305279481754"},{"denom":"ASSET2","index":"0.000004465317911910"},{"denom":"ASSET3","index":"0.000001306325039660"},{"denom":"ASSET4","index":"0.000012293135053249"},{"denom":"ASSET5","index":"0.000001013309662309"},{"denom":"ASSET6","index":"0.000004125859175036"},{"denom":"ASSET7","index":"0.000006318830169217"},{"denom":"ASSET8","index":"0.000008245807377042"},{"denom":"ASSET9","index":"0.000003561783463017"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003452880861936"},{"denom":"ASSET1","index":"0.000029278299049117"},{"denom":"ASSET10","index":"0.000023254773922096"},{"denom":"ASSET11","index":"0.000029065569213605"},{"denom":"ASSET12","index":"0.000027656204711461"},{"denom":"ASSET13","index":"0.000009124518140406"},{"denom":"ASSET14","index":"0.000026695142606829"},{"denom":"ASSET15","index":"0.000020967476611979"},{"denom":"ASSET16","index":"0.000012995878924798"},{"denom":"ASSET17","index":"0.000010163149632422"},{"denom":"ASSET18","index":"0.000004223627093961"},{"denom":"ASSET2","index":"0.000008858348919255"},{"denom":"ASSET3","index":"0.000002465420318230"},{"denom":"ASSET4","index":"0.000023739200929128"},{"denom":"ASSET5","index":"0.000001919695214447"},{"denom":"ASSET6","index":"0.000007752150153146"},{"denom":"ASSET7","index":"0.000012165597276913"},{"denom":"ASSET8","index":"0.000016587849042771"},{"denom":"ASSET9","index":"0.000007046182609545"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001444852701297"},{"denom":"ASSET1","index":"0.000012048934466992"},{"denom":"ASSET10","index":"0.000008394653008080"},{"denom":"ASSET11","index":"0.000011656844181701"},{"denom":"ASSET12","index":"0.000010496256937239"},{"denom":"ASSET13","index":"0.000003612131753243"},{"denom":"ASSET14","index":"0.000010888347222530"},{"denom":"ASSET15","index":"0.000007784952614452"},{"denom":"ASSET16","index":"0.000005427509774140"},{"denom":"ASSET17","index":"0.000003854247504410"},{"denom":"ASSET18","index":"0.000001835962760875"},{"denom":"ASSET2","index":"0.000003556258887589"},{"denom":"ASSET3","index":"0.000001040019481734"},{"denom":"ASSET4","index":"0.000009792454875142"},{"denom":"ASSET5","index":"0.000000807705987699"},{"denom":"ASSET6","index":"0.000003286696816452"},{"denom":"ASSET7","index":"0.000005033459037423"},{"denom":"ASSET8","index":"0.000006568492504337"},{"denom":"ASSET9","index":"0.000002836773214080"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000002868026198866"},{"denom":"ASSET1","index":"0.000024339331661302"},{"denom":"ASSET10","index":"0.000019438063504597"},{"denom":"ASSET11","index":"0.000024190729344646"},{"denom":"ASSET12","index":"0.000023070632234294"},{"denom":"ASSET13","index":"0.000007598221307181"},{"denom":"ASSET14","index":"0.000022200415230506"},{"denom":"ASSET15","index":"0.000017506414948675"},{"denom":"ASSET16","index":"0.000010796282691537"},{"denom":"ASSET17","index":"0.000008477235924619"},{"denom":"ASSET18","index":"0.000003501529899130"},{"denom":"ASSET2","index":"0.000007371086117521"},{"denom":"ASSET3","index":"0.000002046801194740"},{"denom":"ASSET4","index":"0.000019732782799148"},{"denom":"ASSET5","index":"0.000001595074946946"},{"denom":"ASSET6","index":"0.000006435625489467"},{"denom":"ASSET7","index":"0.000010111140720407"},{"denom":"ASSET8","index":"0.000013813490690156"},{"denom":"ASSET9","index":"0.000005862589992841"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001655416114862"},{"denom":"ASSET1","index":"0.000013800538848519"},{"denom":"ASSET10","index":"0.000009615249134678"},{"denom":"ASSET11","index":"0.000013350879623065"},{"denom":"ASSET12","index":"0.000012022439267096"},{"denom":"ASSET13","index":"0.000004137189147657"},{"denom":"ASSET14","index":"0.000012471558036751"},{"denom":"ASSET15","index":"0.000008916980241305"},{"denom":"ASSET16","index":"0.000006216863065381"},{"denom":"ASSET17","index":"0.000004414983428766"},{"denom":"ASSET18","index":"0.000002102913517117"},{"denom":"ASSET2","index":"0.000004073955819077"},{"denom":"ASSET3","index":"0.000001191705038613"},{"denom":"ASSET4","index":"0.000011215538757958"},{"denom":"ASSET5","index":"0.000000924719873500"},{"denom":"ASSET6","index":"0.000003764274645778"},{"denom":"ASSET7","index":"0.000005765582472528"},{"denom":"ASSET8","index":"0.000007523144733557"},{"denom":"ASSET9","index":"0.000003249220268545"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003262792429801"},{"denom":"ASSET1","index":"0.000027679878715890"},{"denom":"ASSET10","index":"0.000022086570261210"},{"denom":"ASSET11","index":"0.000027505267384149"},{"denom":"ASSET12","index":"0.000026222420015979"},{"denom":"ASSET13","index":"0.000008638975204347"},{"denom":"ASSET14","index":"0.000025246236428505"},{"denom":"ASSET15","index":"0.000019895354512471"},{"denom":"ASSET16","index":"0.000012279836462442"},{"denom":"ASSET17","index":"0.000009636125515167"},{"denom":"ASSET18","index":"0.000003984145752232"},{"denom":"ASSET2","index":"0.000008382344169353"},{"denom":"ASSET3","index":"0.000002328549799735"},{"denom":"ASSET4","index":"0.000022441247538096"},{"denom":"ASSET5","index":"0.000001813932132265"},{"denom":"ASSET6","index":"0.000007320527694069"},{"denom":"ASSET7","index":"0.000011499571173317"},{"denom":"ASSET8","index":"0.000015704553099640"},{"denom":"ASSET9","index":"0.000006666608399750"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001676736923170"},{"denom":"ASSET1","index":"0.000013985463602132"},{"denom":"ASSET10","index":"0.000009743339709608"},{"denom":"ASSET11","index":"0.000013528824721587"},{"denom":"ASSET12","index":"0.000012182509640070"},{"denom":"ASSET13","index":"0.000004192868462713"},{"denom":"ASSET14","index":"0.000012638122365828"},{"denom":"ASSET15","index":"0.000009036319060854"},{"denom":"ASSET16","index":"0.000006299564241947"},{"denom":"ASSET17","index":"0.000004474034874554"},{"denom":"ASSET18","index":"0.000002131323494140"},{"denom":"ASSET2","index":"0.000004128220711085"},{"denom":"ASSET3","index":"0.000001207784185172"},{"denom":"ASSET4","index":"0.000011365690429028"},{"denom":"ASSET5","index":"0.000000936879321208"},{"denom":"ASSET6","index":"0.000003814217346036"},{"denom":"ASSET7","index":"0.000005841899206614"},{"denom":"ASSET8","index":"0.000007623303918134"},{"denom":"ASSET9","index":"0.000003292930713863"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003296156578493"},{"denom":"ASSET1","index":"0.000027968412540894"},{"denom":"ASSET10","index":"0.000022307812536905"},{"denom":"ASSET11","index":"0.000027788867279184"},{"denom":"ASSET12","index":"0.000026488589695468"},{"denom":"ASSET13","index":"0.000008728285856057"},{"denom":"ASSET14","index":"0.000025508064125070"},{"denom":"ASSET15","index":"0.000020096610749334"},{"denom":"ASSET16","index":"0.000012407784704791"},{"denom":"ASSET17","index":"0.000009734180928237"},{"denom":"ASSET18","index":"0.000004026678592252"},{"denom":"ASSET2","index":"0.000008468774984810"},{"denom":"ASSET3","index":"0.000002353220293961"},{"denom":"ASSET4","index":"0.000022675279511256"},{"denom":"ASSET5","index":"0.000001832728492238"},{"denom":"ASSET6","index":"0.000007397034942132"},{"denom":"ASSET7","index":"0.000011618881320506"},{"denom":"ASSET8","index":"0.000015866042832442"},{"denom":"ASSET9","index":"0.000006735898552490"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001687654189845"},{"denom":"ASSET1","index":"0.000014079752531439"},{"denom":"ASSET10","index":"0.000009809029374167"},{"denom":"ASSET11","index":"0.000013620990639222"},{"denom":"ASSET12","index":"0.000012264971552184"},{"denom":"ASSET13","index":"0.000004220977891851"},{"denom":"ASSET14","index":"0.000012723733444402"},{"denom":"ASSET15","index":"0.000009097856320367"},{"denom":"ASSET16","index":"0.000006341600132585"},{"denom":"ASSET17","index":"0.000004504710146476"},{"denom":"ASSET18","index":"0.000002144573664825"},{"denom":"ASSET2","index":"0.000004156493288528"},{"denom":"ASSET3","index":"0.000001215995376963"},{"denom":"ASSET4","index":"0.000011441411046878"},{"denom":"ASSET5","index":"0.000000943317625765"},{"denom":"ASSET6","index":"0.000003839597523622"},{"denom":"ASSET7","index":"0.000005880995823129"},{"denom":"ASSET8","index":"0.000007675510212768"},{"denom":"ASSET9","index":"0.000003314508610843"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003237925740153"},{"denom":"ASSET1","index":"0.000027468087048908"},{"denom":"ASSET10","index":"0.000021838560142362"},{"denom":"ASSET11","index":"0.000027274223261348"},{"denom":"ASSET12","index":"0.000025962125103579"},{"denom":"ASSET13","index":"0.000008562973508850"},{"denom":"ASSET14","index":"0.000025046299162567"},{"denom":"ASSET15","index":"0.000019687604125947"},{"denom":"ASSET16","index":"0.000012189946370622"},{"denom":"ASSET17","index":"0.000009540519193028"},{"denom":"ASSET18","index":"0.000003959057055270"},{"denom":"ASSET2","index":"0.000008312511220651"},{"denom":"ASSET3","index":"0.000002312646079660"},{"denom":"ASSET4","index":"0.000022269978905361"},{"denom":"ASSET5","index":"0.000001800462011039"},{"denom":"ASSET6","index":"0.000007270233858279"},{"denom":"ASSET7","index":"0.000011411601588483"},{"denom":"ASSET8","index":"0.000015567552190875"},{"denom":"ASSET9","index":"0.000006610637099613"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001700269946448"},{"denom":"ASSET1","index":"0.000014175647296985"},{"denom":"ASSET10","index":"0.000009876508679424"},{"denom":"ASSET11","index":"0.000013714231996791"},{"denom":"ASSET12","index":"0.000012349169664489"},{"denom":"ASSET13","index":"0.000004249665204630"},{"denom":"ASSET14","index":"0.000012810584964683"},{"denom":"ASSET15","index":"0.000009159649022667"},{"denom":"ASSET16","index":"0.000006386108914062"},{"denom":"ASSET17","index":"0.000004535399405845"},{"denom":"ASSET18","index":"0.000002160675585153"},{"denom":"ASSET2","index":"0.000004184037207885"},{"denom":"ASSET3","index":"0.000001223709723928"},{"denom":"ASSET4","index":"0.000011520237582522"},{"denom":"ASSET5","index":"0.000000950091460574"},{"denom":"ASSET6","index":"0.000003867003500531"},{"denom":"ASSET7","index":"0.000005922674290891"},{"denom":"ASSET8","index":"0.000007727949032131"},{"denom":"ASSET9","index":"0.000003337940880615"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003224934301433"},{"denom":"ASSET1","index":"0.000027341438894536"},{"denom":"ASSET10","index":"0.000021706571274337"},{"denom":"ASSET11","index":"0.000027141091242061"},{"denom":"ASSET12","index":"0.000025819235056226"},{"denom":"ASSET13","index":"0.000008520116782966"},{"denom":"ASSET14","index":"0.000024928444433519"},{"denom":"ASSET15","index":"0.000019573794936329"},{"denom":"ASSET16","index":"0.000012137286393349"},{"denom":"ASSET17","index":"0.000009487995483061"},{"denom":"ASSET18","index":"0.000003945309126507"},{"denom":"ASSET2","index":"0.000008271045740629"},{"denom":"ASSET3","index":"0.000002302032616683"},{"denom":"ASSET4","index":"0.000022168721917699"},{"denom":"ASSET5","index":"0.000001793343624246"},{"denom":"ASSET6","index":"0.000007240378309003"},{"denom":"ASSET7","index":"0.000011361888746536"},{"denom":"ASSET8","index":"0.000015488944629697"},{"denom":"ASSET9","index":"0.000006579500326985"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001505652349479"},{"denom":"ASSET1","index":"0.000012557843622987"},{"denom":"ASSET10","index":"0.000008748308836028"},{"denom":"ASSET11","index":"0.000012147743761261"},{"denom":"ASSET12","index":"0.000010939413811534"},{"denom":"ASSET13","index":"0.000003764130873697"},{"denom":"ASSET14","index":"0.000011348049030896"},{"denom":"ASSET15","index":"0.000008114118692716"},{"denom":"ASSET16","index":"0.000005656448807088"},{"denom":"ASSET17","index":"0.000004017514002549"},{"denom":"ASSET18","index":"0.000001912822926478"},{"denom":"ASSET2","index":"0.000003707009821528"},{"denom":"ASSET3","index":"0.000001083835348847"},{"denom":"ASSET4","index":"0.000010205627987517"},{"denom":"ASSET5","index":"0.000000840704716538"},{"denom":"ASSET6","index":"0.000003424333845410"},{"denom":"ASSET7","index":"0.000005246348945363"},{"denom":"ASSET8","index":"0.000006845738406093"},{"denom":"ASSET9","index":"0.000002955648289152"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000002959758868257"},{"denom":"ASSET1","index":"0.000025116229265451"},{"denom":"ASSET10","index":"0.000020033024535037"},{"denom":"ASSET11","index":"0.000024955202637112"},{"denom":"ASSET12","index":"0.000023787913163340"},{"denom":"ASSET13","index":"0.000007837044315100"},{"denom":"ASSET14","index":"0.000022906603767748"},{"denom":"ASSET15","index":"0.000018047329062837"},{"denom":"ASSET16","index":"0.000011142428291313"},{"denom":"ASSET17","index":"0.000008741414303940"},{"denom":"ASSET18","index":"0.000003614587489816"},{"denom":"ASSET2","index":"0.000007605147442913"},{"denom":"ASSET3","index":"0.000002112677625393"},{"denom":"ASSET4","index":"0.000020363145786569"},{"denom":"ASSET5","index":"0.000001645239564154"},{"denom":"ASSET6","index":"0.000006641765641459"},{"denom":"ASSET7","index":"0.000010434431181702"},{"denom":"ASSET8","index":"0.000014248591155217"},{"denom":"ASSET9","index":"0.000006047835874095"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001815877519749"},{"denom":"ASSET1","index":"0.000015137138459046"},{"denom":"ASSET10","index":"0.000010545739718907"},{"denom":"ASSET11","index":"0.000014644907422941"},{"denom":"ASSET12","index":"0.000013186828093302"},{"denom":"ASSET13","index":"0.000004537625601742"},{"denom":"ASSET14","index":"0.000013679059129408"},{"denom":"ASSET15","index":"0.000009780506595550"},{"denom":"ASSET16","index":"0.000006818847588397"},{"denom":"ASSET17","index":"0.000004841650653454"},{"denom":"ASSET18","index":"0.000002306040358223"},{"denom":"ASSET2","index":"0.000004467306882298"},{"denom":"ASSET3","index":"0.000001307100902598"},{"denom":"ASSET4","index":"0.000012301639507366"},{"denom":"ASSET5","index":"0.000001013416839040"},{"denom":"ASSET6","index":"0.000004128122470864"},{"denom":"ASSET7","index":"0.000006324548354661"},{"denom":"ASSET8","index":"0.000008252108546467"},{"denom":"ASSET9","index":"0.000003563504517685"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003468946703322"},{"denom":"ASSET1","index":"0.000029412495408176"},{"denom":"ASSET10","index":"0.000023372734593498"},{"denom":"ASSET11","index":"0.000029203218600002"},{"denom":"ASSET12","index":"0.000027792166579196"},{"denom":"ASSET13","index":"0.000009167641990636"},{"denom":"ASSET14","index":"0.000026818252104650"},{"denom":"ASSET15","index":"0.000021072198152383"},{"denom":"ASSET16","index":"0.000013054905852031"},{"denom":"ASSET17","index":"0.000010211457984650"},{"denom":"ASSET18","index":"0.000004240878207320"},{"denom":"ASSET2","index":"0.000008898543974195"},{"denom":"ASSET3","index":"0.000002476460623897"},{"denom":"ASSET4","index":"0.000023847831794350"},{"denom":"ASSET5","index":"0.000001927880642719"},{"denom":"ASSET6","index":"0.000007785977685579"},{"denom":"ASSET7","index":"0.000012222326144679"},{"denom":"ASSET8","index":"0.000016667230515151"},{"denom":"ASSET9","index":"0.000007078301868557"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001541968050995"},{"denom":"ASSET1","index":"0.000012857487907975"},{"denom":"ASSET10","index":"0.000008957704485900"},{"denom":"ASSET11","index":"0.000012438763825161"},{"denom":"ASSET12","index":"0.000011200869215257"},{"denom":"ASSET13","index":"0.000003854089325736"},{"denom":"ASSET14","index":"0.000011619593298070"},{"denom":"ASSET15","index":"0.000008307186714386"},{"denom":"ASSET16","index":"0.000005792349812251"},{"denom":"ASSET17","index":"0.000004113299472240"},{"denom":"ASSET18","index":"0.000001959030530305"},{"denom":"ASSET2","index":"0.000003795102401372"},{"denom":"ASSET3","index":"0.000001109951140156"},{"denom":"ASSET4","index":"0.000010448993630046"},{"denom":"ASSET5","index":"0.000000861541416423"},{"denom":"ASSET6","index":"0.000003506814193562"},{"denom":"ASSET7","index":"0.000005371133324183"},{"denom":"ASSET8","index":"0.000007009474378365"},{"denom":"ASSET9","index":"0.000003027441582881"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003053196756625"},{"denom":"ASSET1","index":"0.000025905581999278"},{"denom":"ASSET10","index":"0.000020682143152818"},{"denom":"ASSET11","index":"0.000025745380902198"},{"denom":"ASSET12","index":"0.000024550499550641"},{"denom":"ASSET13","index":"0.000008086239198545"},{"denom":"ASSET14","index":"0.000023629161089906"},{"denom":"ASSET15","index":"0.000018628151539367"},{"denom":"ASSET16","index":"0.000011492271696690"},{"denom":"ASSET17","index":"0.000009021688715966"},{"denom":"ASSET18","index":"0.000003727673632537"},{"denom":"ASSET2","index":"0.000007845443656426"},{"denom":"ASSET3","index":"0.000002178852781858"},{"denom":"ASSET4","index":"0.000021002318737231"},{"denom":"ASSET5","index":"0.000001697417622442"},{"denom":"ASSET6","index":"0.000006850319017638"},{"denom":"ASSET7","index":"0.000010761758840612"},{"denom":"ASSET8","index":"0.000014701087498525"},{"denom":"ASSET9","index":"0.000006240132889304"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001327266579501"},{"denom":"ASSET1","index":"0.000011071143497688"},{"denom":"ASSET10","index":"0.000007713614824674"},{"denom":"ASSET11","index":"0.000010710668391289"},{"denom":"ASSET12","index":"0.000009644435509525"},{"denom":"ASSET13","index":"0.000003318857014090"},{"denom":"ASSET14","index":"0.000010004910615924"},{"denom":"ASSET15","index":"0.000007152875770275"},{"denom":"ASSET16","index":"0.000004987262870528"},{"denom":"ASSET17","index":"0.000003541219052903"},{"denom":"ASSET18","index":"0.000001686360555224"},{"denom":"ASSET2","index":"0.000003267755179083"},{"denom":"ASSET3","index":"0.000000955742427695"},{"denom":"ASSET4","index":"0.000008998066353223"},{"denom":"ASSET5","index":"0.000000741667172936"},{"denom":"ASSET6","index":"0.000003019151657428"},{"denom":"ASSET7","index":"0.000004625406633453"},{"denom":"ASSET8","index":"0.000006035541053505"},{"denom":"ASSET9","index":"0.000002606193585346"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000002827520151011"},{"denom":"ASSET1","index":"0.000024027878888002"},{"denom":"ASSET10","index":"0.000019355847170480"},{"denom":"ASSET11","index":"0.000023924401086085"},{"denom":"ASSET12","index":"0.000022900407365256"},{"denom":"ASSET13","index":"0.000007521399074311"},{"denom":"ASSET14","index":"0.000021930603354990"},{"denom":"ASSET15","index":"0.000017401215805238"},{"denom":"ASSET16","index":"0.000010647310435771"},{"denom":"ASSET17","index":"0.000008415007538097"},{"denom":"ASSET18","index":"0.000003442593620109"},{"denom":"ASSET2","index":"0.000007289635767836"},{"denom":"ASSET3","index":"0.000002016810506595"},{"denom":"ASSET4","index":"0.000019477449509443"},{"denom":"ASSET5","index":"0.000001571692130579"},{"denom":"ASSET6","index":"0.000006339251488002"},{"denom":"ASSET7","index":"0.000009978075244424"},{"denom":"ASSET8","index":"0.000013673195599374"},{"denom":"ASSET9","index":"0.000005796522499795"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001571435631869"},{"denom":"ASSET1","index":"0.000013104175099655"},{"denom":"ASSET10","index":"0.000009129715488355"},{"denom":"ASSET11","index":"0.000012677036600848"},{"denom":"ASSET12","index":"0.000011415350365342"},{"denom":"ASSET13","index":"0.000003928095848150"},{"denom":"ASSET14","index":"0.000011841502401104"},{"denom":"ASSET15","index":"0.000008466812321615"},{"denom":"ASSET16","index":"0.000005902994865728"},{"denom":"ASSET17","index":"0.000004192467944409"},{"denom":"ASSET18","index":"0.000001996601204585"},{"denom":"ASSET2","index":"0.000003867921602360"},{"denom":"ASSET3","index":"0.000001131473113468"},{"denom":"ASSET4","index":"0.000010648868578800"},{"denom":"ASSET5","index":"0.000000877952110712"},{"denom":"ASSET6","index":"0.000003573955614728"},{"denom":"ASSET7","index":"0.000005473883440830"},{"denom":"ASSET8","index":"0.000007142978914228"},{"denom":"ASSET9","index":"0.000003084669944040"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003141123056438"},{"denom":"ASSET1","index":"0.000026662100889972"},{"denom":"ASSET10","index":"0.000021312054987248"},{"denom":"ASSET11","index":"0.000026503481745319"},{"denom":"ASSET12","index":"0.000025286293002787"},{"denom":"ASSET13","index":"0.000008324908472884"},{"denom":"ASSET14","index":"0.000024319980387721"},{"denom":"ASSET15","index":"0.000019190708128374"},{"denom":"ASSET16","index":"0.000011824997422058"},{"denom":"ASSET17","index":"0.000009292034078872"},{"denom":"ASSET18","index":"0.000003834040785154"},{"denom":"ASSET2","index":"0.000008076003481032"},{"denom":"ASSET3","index":"0.000002241608843356"},{"denom":"ASSET4","index":"0.000021614431804298"},{"denom":"ASSET5","index":"0.000001746420421862"},{"denom":"ASSET6","index":"0.000007047828859327"},{"denom":"ASSET7","index":"0.000011075197168484"},{"denom":"ASSET8","index":"0.000015134882092008"},{"denom":"ASSET9","index":"0.000006422749115253"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[{"denom":"ASSET0","index":"0.000001554974273829"},{"denom":"ASSET1","index":"0.000012964145980643"},{"denom":"ASSET10","index":"0.000009032293690170"},{"denom":"ASSET11","index":"0.000012541598623624"},{"denom":"ASSET12","index":"0.000011293609918011"},{"denom":"ASSET13","index":"0.000003886649549954"},{"denom":"ASSET14","index":"0.000011715371140412"},{"denom":"ASSET15","index":"0.000008376264351692"},{"denom":"ASSET16","index":"0.000005840194074962"},{"denom":"ASSET17","index":"0.000004147646243034"},{"denom":"ASSET18","index":"0.000001975556294303"},{"denom":"ASSET2","index":"0.000003826903319009"},{"denom":"ASSET3","index":"0.000001119455695618"},{"denom":"ASSET4","index":"0.000010535776146539"},{"denom":"ASSET5","index":"0.000000869071819878"},{"denom":"ASSET6","index":"0.000003536426577765"},{"denom":"ASSET7","index":"0.000005416074448708"},{"denom":"ASSET8","index":"0.000007067350213206"},{"denom":"ASSET9","index":"0.000003052560720565"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[{"denom":"ASSET0","index":"0.000003054120352223"},{"denom":"ASSET1","index":"0.000025909289170716"},{"denom":"ASSET10","index":"0.000020664041936079"},{"denom":"ASSET11","index":"0.000025743066158465"},{"denom":"ASSET12","index":"0.000024537849095602"},{"denom":"ASSET13","index":"0.000008085297309351"},{"denom":"ASSET14","index":"0.000023630023251940"},{"denom":"ASSET15","index":"0.000018615490114349"},{"denom":"ASSET16","index":"0.000011495216270003"},{"denom":"ASSET17","index":"0.000009017197770141"},{"denom":"ASSET18","index":"0.000003730110182262"},{"denom":"ASSET2","index":"0.000007845299155388"},{"denom":"ASSET3","index":"0.000002179886924088"},{"denom":"ASSET4","index":"0.000021005968780047"},{"denom":"ASSET5","index":"0.000001698230665763"},{"denom":"ASSET6","index":"0.000006853367473041"},{"denom":"ASSET7","index":"0.000010764057351149"},{"denom":"ASSET8","index":"0.000014698116791571"},{"denom":"ASSET9","index":"0.000006239964640655"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522099735739831915","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522096782108800216","reward_histories":[]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET3","snapshot":{"prev_reward_weight":"0.522093828494477846","reward_histories":[]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001587610635106"},{"denom":"ASSET1","index":"0.000013244938725362"},{"denom":"ASSET10","index":"0.000009227311812032"},{"denom":"ASSET11","index":"0.000012812935831455"},{"denom":"ASSET12","index":"0.000011538527294432"},{"denom":"ASSET13","index":"0.000003970376596809"},{"denom":"ASSET14","index":"0.000011969180179294"},{"denom":"ASSET15","index":"0.000008557707326477"},{"denom":"ASSET16","index":"0.000005967039972082"},{"denom":"ASSET17","index":"0.000004237678387413"},{"denom":"ASSET18","index":"0.000002018263519969"},{"denom":"ASSET2","index":"0.000003909626189853"},{"denom":"ASSET3","index":"0.000001143457659809"},{"denom":"ASSET4","index":"0.000010763622103487"},{"denom":"ASSET5","index":"0.000000886955941552"},{"denom":"ASSET6","index":"0.000003612624200292"},{"denom":"ASSET7","index":"0.000005533687069132"},{"denom":"ASSET8","index":"0.000007219848364411"},{"denom":"ASSET9","index":"0.000003118520890387"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003152887181228"},{"denom":"ASSET1","index":"0.000026760532918289"},{"denom":"ASSET10","index":"0.000021371603424459"},{"denom":"ASSET11","index":"0.000026596151859305"},{"denom":"ASSET12","index":"0.000025366346961436"},{"denom":"ASSET13","index":"0.000008353980761099"},{"denom":"ASSET14","index":"0.000024408754798213"},{"denom":"ASSET15","index":"0.000019248058608344"},{"denom":"ASSET16","index":"0.000011870971278696"},{"denom":"ASSET17","index":"0.000009321801721671"},{"denom":"ASSET18","index":"0.000003850124607081"},{"denom":"ASSET2","index":"0.000008105134387478"},{"denom":"ASSET3","index":"0.000002250596051831"},{"denom":"ASSET4","index":"0.000021694971342643"},{"denom":"ASSET5","index":"0.000001752750611640"},{"denom":"ASSET6","index":"0.000007075802880646"},{"denom":"ASSET7","index":"0.000011117440314842"},{"denom":"ASSET8","index":"0.000015186957305377"},{"denom":"ASSET9","index":"0.000006446159830056"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001450981944084"},{"denom":"ASSET1","index":"0.000012097851501865"},{"denom":"ASSET10","index":"0.000008428524260541"},{"denom":"ASSET11","index":"0.000011703479004578"},{"denom":"ASSET12","index":"0.000010538773481717"},{"denom":"ASSET13","index":"0.000003626563958485"},{"denom":"ASSET14","index":"0.000010932552044520"},{"denom":"ASSET15","index":"0.000007816771742159"},{"denom":"ASSET16","index":"0.000005449942823954"},{"denom":"ASSET17","index":"0.000003870671031354"},{"denom":"ASSET18","index":"0.000001843572637920"},{"denom":"ASSET2","index":"0.000003571328051486"},{"denom":"ASSET3","index":"0.000001044730757120"},{"denom":"ASSET4","index":"0.000009831991445917"},{"denom":"ASSET5","index":"0.000000810720570477"},{"denom":"ASSET6","index":"0.000003299899992359"},{"denom":"ASSET7","index":"0.000005054382457699"},{"denom":"ASSET8","index":"0.000006595048508847"},{"denom":"ASSET9","index":"0.000002848509784621"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000002831039632868"},{"denom":"ASSET1","index":"0.000024014703977493"},{"denom":"ASSET10","index":"0.000019136467933987"},{"denom":"ASSET11","index":"0.000023856136612857"},{"denom":"ASSET12","index":"0.000022731094165303"},{"denom":"ASSET13","index":"0.000007491812146677"},{"denom":"ASSET14","index":"0.000021900750691559"},{"denom":"ASSET15","index":"0.000017242457090593"},{"denom":"ASSET16","index":"0.000010655585625623"},{"denom":"ASSET17","index":"0.000008353141870908"},{"denom":"ASSET18","index":"0.000003458892129556"},{"denom":"ASSET2","index":"0.000007270317321266"},{"denom":"ASSET3","index":"0.000002020551075646"},{"denom":"ASSET4","index":"0.000019470118745656"},{"denom":"ASSET5","index":"0.000001574098937698"},{"denom":"ASSET6","index":"0.000006353413461243"},{"denom":"ASSET7","index":"0.000009977493764026"},{"denom":"ASSET8","index":"0.000013619759476676"},{"denom":"ASSET9","index":"0.000005782490697784"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001596167964962"},{"denom":"ASSET1","index":"0.000013307648687747"},{"denom":"ASSET10","index":"0.000009271254138767"},{"denom":"ASSET11","index":"0.000012873344596610"},{"denom":"ASSET12","index":"0.000011592750107942"},{"denom":"ASSET13","index":"0.000003989527201016"},{"denom":"ASSET14","index":"0.000012025715131995"},{"denom":"ASSET15","index":"0.000008598149750858"},{"denom":"ASSET16","index":"0.000005994556982506"},{"denom":"ASSET17","index":"0.000004257340617956"},{"denom":"ASSET18","index":"0.000002028240277625"},{"denom":"ASSET2","index":"0.000003928376470814"},{"denom":"ASSET3","index":"0.000001148919558672"},{"denom":"ASSET4","index":"0.000010814752131731"},{"denom":"ASSET5","index":"0.000000891818678410"},{"denom":"ASSET6","index":"0.000003630210866621"},{"denom":"ASSET7","index":"0.000005559360179979"},{"denom":"ASSET8","index":"0.000007254619109209"},{"denom":"ASSET9","index":"0.000003133416978198"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003160678210357"},{"denom":"ASSET1","index":"0.000026816731621709"},{"denom":"ASSET10","index":"0.000021409695697867"},{"denom":"ASSET11","index":"0.000026650151208928"},{"denom":"ASSET12","index":"0.000025413985003091"},{"denom":"ASSET13","index":"0.000008371194471357"},{"denom":"ASSET14","index":"0.000024459575922385"},{"denom":"ASSET15","index":"0.000019283728762326"},{"denom":"ASSET16","index":"0.000011895729224726"},{"denom":"ASSET17","index":"0.000009339186085895"},{"denom":"ASSET18","index":"0.000003859320220004"},{"denom":"ASSET2","index":"0.000008121656282140"},{"denom":"ASSET3","index":"0.000002255587694637"},{"denom":"ASSET4","index":"0.000021740936259308"},{"denom":"ASSET5","index":"0.000001757304707579"},{"denom":"ASSET6","index":"0.000007091577992612"},{"denom":"ASSET7","index":"0.000011140302591406"},{"denom":"ASSET8","index":"0.000015217956063596"},{"denom":"ASSET9","index":"0.000006459479788296"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001539653287763"},{"denom":"ASSET1","index":"0.000012837628062054"},{"denom":"ASSET10","index":"0.000008944076712630"},{"denom":"ASSET11","index":"0.000012418678362380"},{"denom":"ASSET12","index":"0.000011182855597091"},{"denom":"ASSET13","index":"0.000003848344731893"},{"denom":"ASSET14","index":"0.000011600753980079"},{"denom":"ASSET15","index":"0.000008294363000211"},{"denom":"ASSET16","index":"0.000005782767435536"},{"denom":"ASSET17","index":"0.000004106968636837"},{"denom":"ASSET18","index":"0.000001956500354065"},{"denom":"ASSET2","index":"0.000003789470997435"},{"denom":"ASSET3","index":"0.000001108613446191"},{"denom":"ASSET4","index":"0.000010432741141086"},{"denom":"ASSET5","index":"0.000000860502708115"},{"denom":"ASSET6","index":"0.000003501935883605"},{"denom":"ASSET7","index":"0.000005362766419174"},{"denom":"ASSET8","index":"0.000006998089525433"},{"denom":"ASSET9","index":"0.000003022535474442"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003102081054533"},{"denom":"ASSET1","index":"0.000026328097047411"},{"denom":"ASSET10","index":"0.000021065731925672"},{"denom":"ASSET11","index":"0.000026176422512857"},{"denom":"ASSET12","index":"0.000024984864029023"},{"denom":"ASSET13","index":"0.000008223750690350"},{"denom":"ASSET14","index":"0.000024017391771060"},{"denom":"ASSET15","index":"0.000018965095888316"},{"denom":"ASSET16","index":"0.000011675661088751"},{"denom":"ASSET17","index":"0.000009181817821335"},{"denom":"ASSET18","index":"0.000003784851704842"},{"denom":"ASSET2","index":"0.000007977007181168"},{"denom":"ASSET3","index":"0.000002213531006169"},{"denom":"ASSET4","index":"0.000021343717572048"},{"denom":"ASSET5","index":"0.000001724500934679"},{"denom":"ASSET6","index":"0.000006958604580417"},{"denom":"ASSET7","index":"0.000010936011139136"},{"denom":"ASSET8","index":"0.000014950117004491"},{"denom":"ASSET9","index":"0.000006344046059941"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001722784092424"},{"denom":"ASSET1","index":"0.000014376047839207"},{"denom":"ASSET10","index":"0.000010014727915911"},{"denom":"ASSET11","index":"0.000013905627425621"},{"denom":"ASSET12","index":"0.000012523636788373"},{"denom":"ASSET13","index":"0.000004309050988454"},{"denom":"ASSET14","index":"0.000012989875687172"},{"denom":"ASSET15","index":"0.000009287144342897"},{"denom":"ASSET16","index":"0.000006475075648346"},{"denom":"ASSET17","index":"0.000004597575508787"},{"denom":"ASSET18","index":"0.000002191113748617"},{"denom":"ASSET2","index":"0.000004242146751855"},{"denom":"ASSET3","index":"0.000001239819134475"},{"denom":"ASSET4","index":"0.000011683152316098"},{"denom":"ASSET5","index":"0.000000961748401110"},{"denom":"ASSET6","index":"0.000003920170113222"},{"denom":"ASSET7","index":"0.000006004655234759"},{"denom":"ASSET8","index":"0.000007836158711656"},{"denom":"ASSET9","index":"0.000003384936220430"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003308323901116"},{"denom":"ASSET1","index":"0.000028066718381779"},{"denom":"ASSET10","index":"0.000022316311421496"},{"denom":"ASSET11","index":"0.000027867424204892"},{"denom":"ASSET12","index":"0.000026530665881565"},{"denom":"ASSET13","index":"0.000008749579510737"},{"denom":"ASSET14","index":"0.000025590688346390"},{"denom":"ASSET15","index":"0.000020116135001180"},{"denom":"ASSET16","index":"0.000012455644018572"},{"denom":"ASSET17","index":"0.000009747635771928"},{"denom":"ASSET18","index":"0.000004046709206696"},{"denom":"ASSET2","index":"0.000008491843085820"},{"denom":"ASSET3","index":"0.000002361259343526"},{"denom":"ASSET4","index":"0.000022756236881458"},{"denom":"ASSET5","index":"0.000001838827056256"},{"denom":"ASSET6","index":"0.000007428217086977"},{"denom":"ASSET7","index":"0.000011660835649526"},{"denom":"ASSET8","index":"0.000015906513514404"},{"denom":"ASSET9","index":"0.000006755948018281"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001677980890787"},{"denom":"ASSET1","index":"0.000013990275877081"},{"denom":"ASSET10","index":"0.000009746835585844"},{"denom":"ASSET11","index":"0.000013534047272362"},{"denom":"ASSET12","index":"0.000012187401487418"},{"denom":"ASSET13","index":"0.000004194217559326"},{"denom":"ASSET14","index":"0.000012642160756856"},{"denom":"ASSET15","index":"0.000009039350648091"},{"denom":"ASSET16","index":"0.000006301979019776"},{"denom":"ASSET17","index":"0.000004475595265619"},{"denom":"ASSET18","index":"0.000002132005492585"},{"denom":"ASSET2","index":"0.000004129566806967"},{"denom":"ASSET3","index":"0.000001207793600899"},{"denom":"ASSET4","index":"0.000011368981735957"},{"denom":"ASSET5","index":"0.000000937435909214"},{"denom":"ASSET6","index":"0.000003815863724495"},{"denom":"ASSET7","index":"0.000005844281079776"},{"denom":"ASSET8","index":"0.000007626584775507"},{"denom":"ASSET9","index":"0.000003293515032135"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003299297789724"},{"denom":"ASSET1","index":"0.000027989603079017"},{"denom":"ASSET10","index":"0.000022326156077139"},{"denom":"ASSET11","index":"0.000027810817552502"},{"denom":"ASSET12","index":"0.000026510364756940"},{"denom":"ASSET13","index":"0.000008734817330461"},{"denom":"ASSET14","index":"0.000025527438517331"},{"denom":"ASSET15","index":"0.000020112836713905"},{"denom":"ASSET16","index":"0.000012417417558556"},{"denom":"ASSET17","index":"0.000009741881197111"},{"denom":"ASSET18","index":"0.000004029624902086"},{"denom":"ASSET2","index":"0.000008475129511821"},{"denom":"ASSET3","index":"0.000002354634361983"},{"denom":"ASSET4","index":"0.000022691681830907"},{"denom":"ASSET5","index":"0.000001834207215432"},{"denom":"ASSET6","index":"0.000007402948949368"},{"denom":"ASSET7","index":"0.000011627814435586"},{"denom":"ASSET8","index":"0.000015878876786083"},{"denom":"ASSET9","index":"0.000006740310437402"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001570026110869"},{"denom":"ASSET1","index":"0.000013093495665706"},{"denom":"ASSET10","index":"0.000009121814411369"},{"denom":"ASSET11","index":"0.000012665871768525"},{"denom":"ASSET12","index":"0.000011405375746022"},{"denom":"ASSET13","index":"0.000003924443730811"},{"denom":"ASSET14","index":"0.000011831756550478"},{"denom":"ASSET15","index":"0.000008459245989284"},{"denom":"ASSET16","index":"0.000005898474977098"},{"denom":"ASSET17","index":"0.000004187979388376"},{"denom":"ASSET18","index":"0.000001995163822601"},{"denom":"ASSET2","index":"0.000003864775280042"},{"denom":"ASSET3","index":"0.000001129971286445"},{"denom":"ASSET4","index":"0.000010639630627815"},{"denom":"ASSET5","index":"0.000000877623463400"},{"denom":"ASSET6","index":"0.000003571405397092"},{"denom":"ASSET7","index":"0.000005469607987193"},{"denom":"ASSET8","index":"0.000007137838423287"},{"denom":"ASSET9","index":"0.000003082869956418"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003142586597057"},{"denom":"ASSET1","index":"0.000026671940208455"},{"denom":"ASSET10","index":"0.000021322845581004"},{"denom":"ASSET11","index":"0.000026513185667064"},{"denom":"ASSET12","index":"0.000025297681895631"},{"denom":"ASSET13","index":"0.000008328263582513"},{"denom":"ASSET14","index":"0.000024329302916923"},{"denom":"ASSET15","index":"0.000019199384187435"},{"denom":"ASSET16","index":"0.000011829863063918"},{"denom":"ASSET17","index":"0.000009295955073087"},{"denom":"ASSET18","index":"0.000003835509513951"},{"denom":"ASSET2","index":"0.000008079410847125"},{"denom":"ASSET3","index":"0.000002242309830967"},{"denom":"ASSET4","index":"0.000021622076491366"},{"denom":"ASSET5","index":"0.000001747112267207"},{"denom":"ASSET6","index":"0.000007050444762949"},{"denom":"ASSET7","index":"0.000011079003337441"},{"denom":"ASSET8","index":"0.000015142122511204"},{"denom":"ASSET9","index":"0.000006425848418438"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001808467589320"},{"denom":"ASSET1","index":"0.000015078627759778"},{"denom":"ASSET10","index":"0.000010504031371633"},{"denom":"ASSET11","index":"0.000014586692317421"},{"denom":"ASSET12","index":"0.000013135079536696"},{"denom":"ASSET13","index":"0.000004520160908868"},{"denom":"ASSET14","index":"0.000013624998850191"},{"denom":"ASSET15","index":"0.000009741934661752"},{"denom":"ASSET16","index":"0.000006792338136474"},{"denom":"ASSET17","index":"0.000004822580238185"},{"denom":"ASSET18","index":"0.000002296370773952"},{"denom":"ASSET2","index":"0.000004449596398694"},{"denom":"ASSET3","index":"0.000001300403116066"},{"denom":"ASSET4","index":"0.000012254031223951"},{"denom":"ASSET5","index":"0.000001010080559921"},{"denom":"ASSET6","index":"0.000004112902878720"},{"denom":"ASSET7","index":"0.000006298386565256"},{"denom":"ASSET8","index":"0.000008219757370854"},{"denom":"ASSET9","index":"0.000003550402926189"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003309574221953"},{"denom":"ASSET1","index":"0.000028041386020893"},{"denom":"ASSET10","index":"0.000022151472675705"},{"denom":"ASSET11","index":"0.000027806413413432"},{"denom":"ASSET12","index":"0.000026397319662942"},{"denom":"ASSET13","index":"0.000008723998941637"},{"denom":"ASSET14","index":"0.000025556208464743"},{"denom":"ASSET15","index":"0.000019995491235522"},{"denom":"ASSET16","index":"0.000012454763771642"},{"denom":"ASSET17","index":"0.000009698403814011"},{"denom":"ASSET18","index":"0.000004053515914738"},{"denom":"ASSET2","index":"0.000008473190716338"},{"denom":"ASSET3","index":"0.000002361530218445"},{"denom":"ASSET4","index":"0.000022738669483779"},{"denom":"ASSET5","index":"0.000001840125976242"},{"denom":"ASSET6","index":"0.000007434008870747"},{"denom":"ASSET7","index":"0.000011653935721338"},{"denom":"ASSET8","index":"0.000015861166565423"},{"denom":"ASSET9","index":"0.000006742103174023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001541663174382"},{"denom":"ASSET1","index":"0.000012852134347969"},{"denom":"ASSET10","index":"0.000008953505358908"},{"denom":"ASSET11","index":"0.000012432624080325"},{"denom":"ASSET12","index":"0.000011194846435509"},{"denom":"ASSET13","index":"0.000003852675567517"},{"denom":"ASSET14","index":"0.000011614356703153"},{"denom":"ASSET15","index":"0.000008302745615107"},{"denom":"ASSET16","index":"0.000005788648746115"},{"denom":"ASSET17","index":"0.000004110607675539"},{"denom":"ASSET18","index":"0.000001958208705152"},{"denom":"ASSET2","index":"0.000003793380830041"},{"denom":"ASSET3","index":"0.000001108811590805"},{"denom":"ASSET4","index":"0.000010443285637998"},{"denom":"ASSET5","index":"0.000000861256061842"},{"denom":"ASSET6","index":"0.000003505801353281"},{"denom":"ASSET7","index":"0.000005369138478471"},{"denom":"ASSET8","index":"0.000007005673232815"},{"denom":"ASSET9","index":"0.000003025513979724"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003039218640043"},{"denom":"ASSET1","index":"0.000025782167100542"},{"denom":"ASSET10","index":"0.000020571830356487"},{"denom":"ASSET11","index":"0.000025618833387376"},{"denom":"ASSET12","index":"0.000024423552320522"},{"denom":"ASSET13","index":"0.000008046369560384"},{"denom":"ASSET14","index":"0.000023515194162679"},{"denom":"ASSET15","index":"0.000018530055863607"},{"denom":"ASSET16","index":"0.000011436803083329"},{"denom":"ASSET17","index":"0.000008974370950503"},{"denom":"ASSET18","index":"0.000003710743638587"},{"denom":"ASSET2","index":"0.000007806913274081"},{"denom":"ASSET3","index":"0.000002167934051431"},{"denom":"ASSET4","index":"0.000020901035076857"},{"denom":"ASSET5","index":"0.000001689640060433"},{"denom":"ASSET6","index":"0.000006819038075969"},{"denom":"ASSET7","index":"0.000010710838619674"},{"denom":"ASSET8","index":"0.000014627524271874"},{"denom":"ASSET9","index":"0.000006209166066794"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001647112085871"},{"denom":"ASSET1","index":"0.000013744257107488"},{"denom":"ASSET10","index":"0.000009576415679235"},{"denom":"ASSET11","index":"0.000013296650962579"},{"denom":"ASSET12","index":"0.000011973464376313"},{"denom":"ASSET13","index":"0.000004120724991946"},{"denom":"ASSET14","index":"0.000012421070521222"},{"denom":"ASSET15","index":"0.000008879485058873"},{"denom":"ASSET16","index":"0.000006191885004573"},{"denom":"ASSET17","index":"0.000004397534055245"},{"denom":"ASSET18","index":"0.000002094718230780"},{"denom":"ASSET2","index":"0.000004055939892025"},{"denom":"ASSET3","index":"0.000001185763647039"},{"denom":"ASSET4","index":"0.000011170521774262"},{"denom":"ASSET5","index":"0.000000920733692817"},{"denom":"ASSET6","index":"0.000003749683056035"},{"denom":"ASSET7","index":"0.000005742315674818"},{"denom":"ASSET8","index":"0.000007491513372686"},{"denom":"ASSET9","index":"0.000003235328626359"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003240628198198"},{"denom":"ASSET1","index":"0.000027504329283847"},{"denom":"ASSET10","index":"0.000021940320319100"},{"denom":"ASSET11","index":"0.000027329345632586"},{"denom":"ASSET12","index":"0.000026051323397008"},{"denom":"ASSET13","index":"0.000008583813762496"},{"denom":"ASSET14","index":"0.000025085743554439"},{"denom":"ASSET15","index":"0.000019763439018939"},{"denom":"ASSET16","index":"0.000012202670980955"},{"denom":"ASSET17","index":"0.000009573761377605"},{"denom":"ASSET18","index":"0.000003959875003044"},{"denom":"ASSET2","index":"0.000008327243811102"},{"denom":"ASSET3","index":"0.000002312908746824"},{"denom":"ASSET4","index":"0.000022299606884078"},{"denom":"ASSET5","index":"0.000001802093087045"},{"denom":"ASSET6","index":"0.000007275447910852"},{"denom":"ASSET7","index":"0.000011427132859276"},{"denom":"ASSET8","index":"0.000015602768933976"},{"denom":"ASSET9","index":"0.000006623309483786"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001570100817458"},{"denom":"ASSET1","index":"0.000013089401919768"},{"denom":"ASSET10","index":"0.000009119446705996"},{"denom":"ASSET11","index":"0.000012662761138201"},{"denom":"ASSET12","index":"0.000011403229713207"},{"denom":"ASSET13","index":"0.000003924467777503"},{"denom":"ASSET14","index":"0.000011828301962489"},{"denom":"ASSET15","index":"0.000008457526081653"},{"denom":"ASSET16","index":"0.000005896112859965"},{"denom":"ASSET17","index":"0.000004187981201412"},{"denom":"ASSET18","index":"0.000001993604534455"},{"denom":"ASSET2","index":"0.000003863295018381"},{"denom":"ASSET3","index":"0.000001129343245325"},{"denom":"ASSET4","index":"0.000010637785958043"},{"denom":"ASSET5","index":"0.000000876809547412"},{"denom":"ASSET6","index":"0.000003569979481054"},{"denom":"ASSET7","index":"0.000005467903546113"},{"denom":"ASSET8","index":"0.000007135253365252"},{"denom":"ASSET9","index":"0.000003082165940365"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003152920186871"},{"denom":"ASSET1","index":"0.000026760622644749"},{"denom":"ASSET10","index":"0.000021403995558307"},{"denom":"ASSET11","index":"0.000026604821287493"},{"denom":"ASSET12","index":"0.000025390105019040"},{"denom":"ASSET13","index":"0.000008358570294936"},{"denom":"ASSET14","index":"0.000024411618525071"},{"denom":"ASSET15","index":"0.000019270968708391"},{"denom":"ASSET16","index":"0.000011868219590271"},{"denom":"ASSET17","index":"0.000009330682788205"},{"denom":"ASSET18","index":"0.000003846613833157"},{"denom":"ASSET2","index":"0.000008107095494272"},{"denom":"ASSET3","index":"0.000002249072663818"},{"denom":"ASSET4","index":"0.000021694789218154"},{"denom":"ASSET5","index":"0.000001752328837510"},{"denom":"ASSET6","index":"0.000007072706136469"},{"denom":"ASSET7","index":"0.000011115912260277"},{"denom":"ASSET8","index":"0.000015194187602297"},{"denom":"ASSET9","index":"0.000006447849146068"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001655272585709"},{"denom":"ASSET1","index":"0.000013804891217292"},{"denom":"ASSET10","index":"0.000009617831976915"},{"denom":"ASSET11","index":"0.000013354722791997"},{"denom":"ASSET12","index":"0.000012025575872058"},{"denom":"ASSET13","index":"0.000004138592201887"},{"denom":"ASSET14","index":"0.000012474922822124"},{"denom":"ASSET15","index":"0.000008919578032571"},{"denom":"ASSET16","index":"0.000006218567480803"},{"denom":"ASSET17","index":"0.000004416250829168"},{"denom":"ASSET18","index":"0.000002103798060547"},{"denom":"ASSET2","index":"0.000004074517134053"},{"denom":"ASSET3","index":"0.000001191960556756"},{"denom":"ASSET4","index":"0.000011218887197534"},{"denom":"ASSET5","index":"0.000000924981107448"},{"denom":"ASSET6","index":"0.000003765642448085"},{"denom":"ASSET7","index":"0.000005766756105051"},{"denom":"ASSET8","index":"0.000007525534569569"},{"denom":"ASSET9","index":"0.000003250577479728"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003218229550028"},{"denom":"ASSET1","index":"0.000027301798081180"},{"denom":"ASSET10","index":"0.000021745417841688"},{"denom":"ASSET11","index":"0.000027119412726222"},{"denom":"ASSET12","index":"0.000025834540696398"},{"denom":"ASSET13","index":"0.000008516471999212"},{"denom":"ASSET14","index":"0.000024897496810197"},{"denom":"ASSET15","index":"0.000019595694306931"},{"denom":"ASSET16","index":"0.000012114595919920"},{"denom":"ASSET17","index":"0.000009493460517354"},{"denom":"ASSET18","index":"0.000003932937797970"},{"denom":"ASSET2","index":"0.000008264095290285"},{"denom":"ASSET3","index":"0.000002297232512411"},{"denom":"ASSET4","index":"0.000022135581489268"},{"denom":"ASSET5","index":"0.000001789675045728"},{"denom":"ASSET6","index":"0.000007223884768794"},{"denom":"ASSET7","index":"0.000011342725097550"},{"denom":"ASSET8","index":"0.000015481678980085"},{"denom":"ASSET9","index":"0.000006573861400446"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001621688869515"},{"denom":"ASSET1","index":"0.000013520143478358"},{"denom":"ASSET10","index":"0.000009419470546393"},{"denom":"ASSET11","index":"0.000013079418684764"},{"denom":"ASSET12","index":"0.000011778054243646"},{"denom":"ASSET13","index":"0.000004053107355591"},{"denom":"ASSET14","index":"0.000012218035825109"},{"denom":"ASSET15","index":"0.000008735715386011"},{"denom":"ASSET16","index":"0.000006090623412316"},{"denom":"ASSET17","index":"0.000004325494601547"},{"denom":"ASSET18","index":"0.000002060555632782"},{"denom":"ASSET2","index":"0.000003991049142665"},{"denom":"ASSET3","index":"0.000001167586257565"},{"denom":"ASSET4","index":"0.000010987648142487"},{"denom":"ASSET5","index":"0.000000905975587506"},{"denom":"ASSET6","index":"0.000003688190199343"},{"denom":"ASSET7","index":"0.000005648412194460"},{"denom":"ASSET8","index":"0.000007370434701640"},{"denom":"ASSET9","index":"0.000003183549162496"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003224207736427"},{"denom":"ASSET1","index":"0.000027358045975387"},{"denom":"ASSET10","index":"0.000021853454393362"},{"denom":"ASSET11","index":"0.000027191663823691"},{"denom":"ASSET12","index":"0.000025935625558190"},{"denom":"ASSET13","index":"0.000008541293337334"},{"denom":"ASSET14","index":"0.000024954691173737"},{"denom":"ASSET15","index":"0.000019681390400685"},{"denom":"ASSET16","index":"0.000012135703886829"},{"denom":"ASSET17","index":"0.000009530848033034"},{"denom":"ASSET18","index":"0.000003936224347496"},{"denom":"ASSET2","index":"0.000008286598878032"},{"denom":"ASSET3","index":"0.000002301038846536"},{"denom":"ASSET4","index":"0.000022179933336345"},{"denom":"ASSET5","index":"0.000001792519798769"},{"denom":"ASSET6","index":"0.000007234068845872"},{"denom":"ASSET7","index":"0.000011365474292791"},{"denom":"ASSET8","index":"0.000015527655320242"},{"denom":"ASSET9","index":"0.000006590765495457"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001684197417987"},{"denom":"ASSET1","index":"0.000014041270025306"},{"denom":"ASSET10","index":"0.000009782380002809"},{"denom":"ASSET11","index":"0.000013583439347888"},{"denom":"ASSET12","index":"0.000012231725730520"},{"denom":"ASSET13","index":"0.000004209525615418"},{"denom":"ASSET14","index":"0.000012688588478388"},{"denom":"ASSET15","index":"0.000009072403677468"},{"denom":"ASSET16","index":"0.000006325419612958"},{"denom":"ASSET17","index":"0.000004492161044183"},{"denom":"ASSET18","index":"0.000002139608271529"},{"denom":"ASSET2","index":"0.000004144674335530"},{"denom":"ASSET3","index":"0.000001212331762086"},{"denom":"ASSET4","index":"0.000011410921471639"},{"denom":"ASSET5","index":"0.000000940827523152"},{"denom":"ASSET6","index":"0.000003830097231595"},{"denom":"ASSET7","index":"0.000005866137041214"},{"denom":"ASSET8","index":"0.000007654386885887"},{"denom":"ASSET9","index":"0.000003305963379963"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003193080094990"},{"denom":"ASSET1","index":"0.000027069824276969"},{"denom":"ASSET10","index":"0.000021489349079139"},{"denom":"ASSET11","index":"0.000026870184080824"},{"denom":"ASSET12","index":"0.000025561356340007"},{"denom":"ASSET13","index":"0.000008435097288603"},{"denom":"ASSET14","index":"0.000024680442306089"},{"denom":"ASSET15","index":"0.000019377704768171"},{"denom":"ASSET16","index":"0.000012016988086595"},{"denom":"ASSET17","index":"0.000009392966467546"},{"denom":"ASSET18","index":"0.000003905368596850"},{"denom":"ASSET2","index":"0.000008189075060838"},{"denom":"ASSET3","index":"0.000002279664955012"},{"denom":"ASSET4","index":"0.000021948593995488"},{"denom":"ASSET5","index":"0.000001775351671947"},{"denom":"ASSET6","index":"0.000007168631437760"},{"denom":"ASSET7","index":"0.000011248752159293"},{"denom":"ASSET8","index":"0.000015334459676317"},{"denom":"ASSET9","index":"0.000006513651901550"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001677613648548"},{"denom":"ASSET1","index":"0.000013997394471820"},{"denom":"ASSET10","index":"0.000009752554992736"},{"denom":"ASSET11","index":"0.000013541183096442"},{"denom":"ASSET12","index":"0.000012193285851007"},{"denom":"ASSET13","index":"0.000004195070965406"},{"denom":"ASSET14","index":"0.000012649497226385"},{"denom":"ASSET15","index":"0.000009043353672830"},{"denom":"ASSET16","index":"0.000006306085420563"},{"denom":"ASSET17","index":"0.000004477092542912"},{"denom":"ASSET18","index":"0.000002131751335856"},{"denom":"ASSET2","index":"0.000004130786635239"},{"denom":"ASSET3","index":"0.000001208960144751"},{"denom":"ASSET4","index":"0.000011376252751467"},{"denom":"ASSET5","index":"0.000000937307007594"},{"denom":"ASSET6","index":"0.000003817659736684"},{"denom":"ASSET7","index":"0.000005847800357116"},{"denom":"ASSET8","index":"0.000007631172097229"},{"denom":"ASSET9","index":"0.000003295090343070"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003316222748087"},{"denom":"ASSET1","index":"0.000028147075207200"},{"denom":"ASSET10","index":"0.000022466702115272"},{"denom":"ASSET11","index":"0.000027971336509453"},{"denom":"ASSET12","index":"0.000026669877578580"},{"denom":"ASSET13","index":"0.000008784355829882"},{"denom":"ASSET14","index":"0.000025672864554615"},{"denom":"ASSET15","index":"0.000020235356040284"},{"denom":"ASSET16","index":"0.000012487172511964"},{"denom":"ASSET17","index":"0.000009799807931023"},{"denom":"ASSET18","index":"0.000004049727438870"},{"denom":"ASSET2","index":"0.000008522892941853"},{"denom":"ASSET3","index":"0.000002368075218536"},{"denom":"ASSET4","index":"0.000022820717384594"},{"denom":"ASSET5","index":"0.000001843591257654"},{"denom":"ASSET6","index":"0.000007443165294976"},{"denom":"ASSET7","index":"0.000011693499621126"},{"denom":"ASSET8","index":"0.000015972009373807"},{"denom":"ASSET9","index":"0.000006779069609364"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001520550536467"},{"denom":"ASSET1","index":"0.000012675827554874"},{"denom":"ASSET10","index":"0.000008831388003026"},{"denom":"ASSET11","index":"0.000012262725604616"},{"denom":"ASSET12","index":"0.000011042474271843"},{"denom":"ASSET13","index":"0.000003800233070086"},{"denom":"ASSET14","index":"0.000011455195131741"},{"denom":"ASSET15","index":"0.000008190012927118"},{"denom":"ASSET16","index":"0.000005710257954490"},{"denom":"ASSET17","index":"0.000004055182520937"},{"denom":"ASSET18","index":"0.000001931747034924"},{"denom":"ASSET2","index":"0.000003741926245004"},{"denom":"ASSET3","index":"0.000001094491513968"},{"denom":"ASSET4","index":"0.000010301253521611"},{"denom":"ASSET5","index":"0.000000849450412477"},{"denom":"ASSET6","index":"0.000003457632836431"},{"denom":"ASSET7","index":"0.000005295631642792"},{"denom":"ASSET8","index":"0.000006910311498182"},{"denom":"ASSET9","index":"0.000002984699699651"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003047858420945"},{"denom":"ASSET1","index":"0.000025863853767953"},{"denom":"ASSET10","index":"0.000020681482671570"},{"denom":"ASSET11","index":"0.000025712271525236"},{"denom":"ASSET12","index":"0.000024535470175220"},{"denom":"ASSET13","index":"0.000008077733573885"},{"denom":"ASSET14","index":"0.000023593590000343"},{"denom":"ASSET15","index":"0.000018621561303244"},{"denom":"ASSET16","index":"0.000011471343089677"},{"denom":"ASSET17","index":"0.000009016132124589"},{"denom":"ASSET18","index":"0.000003719208275283"},{"denom":"ASSET2","index":"0.000007835789085827"},{"denom":"ASSET3","index":"0.000002174729135607"},{"denom":"ASSET4","index":"0.000020967814383093"},{"denom":"ASSET5","index":"0.000001694402278429"},{"denom":"ASSET6","index":"0.000006836893759575"},{"denom":"ASSET7","index":"0.000010744095518390"},{"denom":"ASSET8","index":"0.000014684305897471"},{"denom":"ASSET9","index":"0.000006231971052532"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001765508823557"},{"denom":"ASSET1","index":"0.000014724618911480"},{"denom":"ASSET10","index":"0.000010258363403154"},{"denom":"ASSET11","index":"0.000014244524406828"},{"denom":"ASSET12","index":"0.000012826610887714"},{"denom":"ASSET13","index":"0.000004413772058893"},{"denom":"ASSET14","index":"0.000013305845007949"},{"denom":"ASSET15","index":"0.000009513270498085"},{"denom":"ASSET16","index":"0.000006632703470176"},{"denom":"ASSET17","index":"0.000004710604682736"},{"denom":"ASSET18","index":"0.000002243882559375"},{"denom":"ASSET2","index":"0.000004346662074372"},{"denom":"ASSET3","index":"0.000001271648168235"},{"denom":"ASSET4","index":"0.000011966226470776"},{"denom":"ASSET5","index":"0.000000986860926228"},{"denom":"ASSET6","index":"0.000004016274458267"},{"denom":"ASSET7","index":"0.000006150888196691"},{"denom":"ASSET8","index":"0.000008026526225616"},{"denom":"ASSET9","index":"0.000003466488815844"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003365151784209"},{"denom":"ASSET1","index":"0.000028538337865727"},{"denom":"ASSET10","index":"0.000022670552359626"},{"denom":"ASSET11","index":"0.000028331786642422"},{"denom":"ASSET12","index":"0.000026959391418936"},{"denom":"ASSET13","index":"0.000008894072871450"},{"denom":"ASSET14","index":"0.000026020188745878"},{"denom":"ASSET15","index":"0.000020439828986765"},{"denom":"ASSET16","index":"0.000012667128947757"},{"denom":"ASSET17","index":"0.000009907060013179"},{"denom":"ASSET18","index":"0.000004116201786219"},{"denom":"ASSET2","index":"0.000008634485522558"},{"denom":"ASSET3","index":"0.000002403102945281"},{"denom":"ASSET4","index":"0.000023139017263426"},{"denom":"ASSET5","index":"0.000001871649891727"},{"denom":"ASSET6","index":"0.000007555863827839"},{"denom":"ASSET7","index":"0.000011857581945748"},{"denom":"ASSET8","index":"0.000016169532559731"},{"denom":"ASSET9","index":"0.000006867789268222"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001833509758465"},{"denom":"ASSET1","index":"0.000015308139656127"},{"denom":"ASSET10","index":"0.000010661025831945"},{"denom":"ASSET11","index":"0.000014808091540182"},{"denom":"ASSET12","index":"0.000013334616425197"},{"denom":"ASSET13","index":"0.000004587108050268"},{"denom":"ASSET14","index":"0.000013827997232930"},{"denom":"ASSET15","index":"0.000009887618079284"},{"denom":"ASSET16","index":"0.000006893996691827"},{"denom":"ASSET17","index":"0.000004893804228047"},{"denom":"ASSET18","index":"0.000002326890566197"},{"denom":"ASSET2","index":"0.000004513767659929"},{"denom":"ASSET3","index":"0.000001320127026095"},{"denom":"ASSET4","index":"0.000012434529816496"},{"denom":"ASSET5","index":"0.000001020098156528"},{"denom":"ASSET6","index":"0.000004173734941087"},{"denom":"ASSET7","index":"0.000006393948575882"},{"denom":"ASSET8","index":"0.000008340802573961"},{"denom":"ASSET9","index":"0.000003600346434803"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003461123478470"},{"denom":"ASSET1","index":"0.000029368181297786"},{"denom":"ASSET10","index":"0.000023294808028239"},{"denom":"ASSET11","index":"0.000029147392384169"},{"denom":"ASSET12","index":"0.000027719461688447"},{"denom":"ASSET13","index":"0.000009147542663388"},{"denom":"ASSET14","index":"0.000026768604990580"},{"denom":"ASSET15","index":"0.000021008846141082"},{"denom":"ASSET16","index":"0.000013035302068339"},{"denom":"ASSET17","index":"0.000010182949549387"},{"denom":"ASSET18","index":"0.000004232564951180"},{"denom":"ASSET2","index":"0.000008877642147806"},{"denom":"ASSET3","index":"0.000002471921418528"},{"denom":"ASSET4","index":"0.000023806252184245"},{"denom":"ASSET5","index":"0.000001920199705662"},{"denom":"ASSET6","index":"0.000007776538212319"},{"denom":"ASSET7","index":"0.000012202060569359"},{"denom":"ASSET8","index":"0.000016628688342614"},{"denom":"ASSET9","index":"0.000007061722298848"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001580229076001"},{"denom":"ASSET1","index":"0.000013178675425859"},{"denom":"ASSET10","index":"0.000009181488308837"},{"denom":"ASSET11","index":"0.000012749045790152"},{"denom":"ASSET12","index":"0.000011480356468073"},{"denom":"ASSET13","index":"0.000003950572690002"},{"denom":"ASSET14","index":"0.000011909209196663"},{"denom":"ASSET15","index":"0.000008514902002442"},{"denom":"ASSET16","index":"0.000005936347281082"},{"denom":"ASSET17","index":"0.000004216274924019"},{"denom":"ASSET18","index":"0.000002008304897474"},{"denom":"ASSET2","index":"0.000003889973934875"},{"denom":"ASSET3","index":"0.000001137392019304"},{"denom":"ASSET4","index":"0.000010709664607998"},{"denom":"ASSET5","index":"0.000000883343392042"},{"denom":"ASSET6","index":"0.000003594749230410"},{"denom":"ASSET7","index":"0.000005505163831141"},{"denom":"ASSET8","index":"0.000007184060111002"},{"denom":"ASSET9","index":"0.000003102967025342"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003136420796654"},{"denom":"ASSET1","index":"0.000026617535879560"},{"denom":"ASSET10","index":"0.000021257162201233"},{"denom":"ASSET11","index":"0.000026454281403244"},{"denom":"ASSET12","index":"0.000025229520616223"},{"denom":"ASSET13","index":"0.000008309311482354"},{"denom":"ASSET14","index":"0.000024278363089230"},{"denom":"ASSET15","index":"0.000019144672836670"},{"denom":"ASSET16","index":"0.000011806881934189"},{"denom":"ASSET17","index":"0.000009271795054357"},{"denom":"ASSET18","index":"0.000003829937127836"},{"denom":"ASSET2","index":"0.000008061315465971"},{"denom":"ASSET3","index":"0.000002238409344787"},{"denom":"ASSET4","index":"0.000021579173085678"},{"denom":"ASSET5","index":"0.000001744155749232"},{"denom":"ASSET6","index":"0.000007037998659171"},{"denom":"ASSET7","index":"0.000011056982942661"},{"denom":"ASSET8","index":"0.000015105683491420"},{"denom":"ASSET9","index":"0.000006411626899884"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001065673750407"},{"denom":"ASSET1","index":"0.000008885137524612"},{"denom":"ASSET10","index":"0.000006190162379117"},{"denom":"ASSET11","index":"0.000008595321581390"},{"denom":"ASSET12","index":"0.000007740138401991"},{"denom":"ASSET13","index":"0.000002663662498568"},{"denom":"ASSET14","index":"0.000008029258508615"},{"denom":"ASSET15","index":"0.000005740999854868"},{"denom":"ASSET16","index":"0.000004002452113836"},{"denom":"ASSET17","index":"0.000002842492504350"},{"denom":"ASSET18","index":"0.000001354098020432"},{"denom":"ASSET2","index":"0.000002622608139264"},{"denom":"ASSET3","index":"0.000000767159849705"},{"denom":"ASSET4","index":"0.000007220696381306"},{"denom":"ASSET5","index":"0.000000595288209907"},{"denom":"ASSET6","index":"0.000002423598872130"},{"denom":"ASSET7","index":"0.000003711940334016"},{"denom":"ASSET8","index":"0.000004843718561268"},{"denom":"ASSET9","index":"0.000002092032733005"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000002559869929403"},{"denom":"ASSET1","index":"0.000021787096732684"},{"denom":"ASSET10","index":"0.000017783238471081"},{"denom":"ASSET11","index":"0.000021752938768967"},{"denom":"ASSET12","index":"0.000020940235345308"},{"denom":"ASSET13","index":"0.000006848308161575"},{"denom":"ASSET14","index":"0.000019904298850841"},{"denom":"ASSET15","index":"0.000015946274018453"},{"denom":"ASSET16","index":"0.000009638424477568"},{"denom":"ASSET17","index":"0.000007695902028378"},{"denom":"ASSET18","index":"0.000003102977872608"},{"denom":"ASSET2","index":"0.000006627591716064"},{"denom":"ASSET3","index":"0.000001824087350341"},{"denom":"ASSET4","index":"0.000017655906837434"},{"denom":"ASSET5","index":"0.000001421889695470"},{"denom":"ASSET6","index":"0.000005729615091854"},{"denom":"ASSET7","index":"0.000009042175373173"},{"denom":"ASSET8","index":"0.000012449153729005"},{"denom":"ASSET9","index":"0.000005268661072858"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001663945626017"},{"denom":"ASSET1","index":"0.000013874870096624"},{"denom":"ASSET10","index":"0.000009666844154779"},{"denom":"ASSET11","index":"0.000013422526194886"},{"denom":"ASSET12","index":"0.000012086742376498"},{"denom":"ASSET13","index":"0.000004159391889779"},{"denom":"ASSET14","index":"0.000012538614102973"},{"denom":"ASSET15","index":"0.000008964719539034"},{"denom":"ASSET16","index":"0.000006250183953344"},{"denom":"ASSET17","index":"0.000004438919645342"},{"denom":"ASSET18","index":"0.000002114400826704"},{"denom":"ASSET2","index":"0.000004095648229305"},{"denom":"ASSET3","index":"0.000001197908641659"},{"denom":"ASSET4","index":"0.000011275545275051"},{"denom":"ASSET5","index":"0.000000929713092403"},{"denom":"ASSET6","index":"0.000003784956906399"},{"denom":"ASSET7","index":"0.000005796423525818"},{"denom":"ASSET8","index":"0.000007563775534382"},{"denom":"ASSET9","index":"0.000003266980643136"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003299045378029"},{"denom":"ASSET1","index":"0.000027992490930804"},{"denom":"ASSET10","index":"0.000022352284005938"},{"denom":"ASSET11","index":"0.000027819914533732"},{"denom":"ASSET12","index":"0.000026530494002155"},{"denom":"ASSET13","index":"0.000008738242797579"},{"denom":"ASSET14","index":"0.000025532401567106"},{"denom":"ASSET15","index":"0.000020131602968729"},{"denom":"ASSET16","index":"0.000012417136212826"},{"denom":"ASSET17","index":"0.000009749421325842"},{"denom":"ASSET18","index":"0.000004027997856345"},{"denom":"ASSET2","index":"0.000008477931503293"},{"denom":"ASSET3","index":"0.000002354450357881"},{"denom":"ASSET4","index":"0.000022693933657862"},{"denom":"ASSET5","index":"0.000001834114741991"},{"denom":"ASSET6","index":"0.000007402245947993"},{"denom":"ASSET7","index":"0.000011628988518089"},{"denom":"ASSET8","index":"0.000015885667960333"},{"denom":"ASSET9","index":"0.000006742956926982"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001554670726054"},{"denom":"ASSET1","index":"0.000012963415617374"},{"denom":"ASSET10","index":"0.000009031685079156"},{"denom":"ASSET11","index":"0.000012540799003679"},{"denom":"ASSET12","index":"0.000011293255065955"},{"denom":"ASSET13","index":"0.000003886042255656"},{"denom":"ASSET14","index":"0.000011715237120170"},{"denom":"ASSET15","index":"0.000008376185136293"},{"denom":"ASSET16","index":"0.000005839850894644"},{"denom":"ASSET17","index":"0.000004147480761425"},{"denom":"ASSET18","index":"0.000001975383661309"},{"denom":"ASSET2","index":"0.000003826393664534"},{"denom":"ASSET3","index":"0.000001119362922759"},{"denom":"ASSET4","index":"0.000010534956487329"},{"denom":"ASSET5","index":"0.000000868711928150"},{"denom":"ASSET6","index":"0.000003536399982164"},{"denom":"ASSET7","index":"0.000005415965161990"},{"denom":"ASSET8","index":"0.000007067088929007"},{"denom":"ASSET9","index":"0.000003052231098907"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003157426180098"},{"denom":"ASSET1","index":"0.000026803913890418"},{"denom":"ASSET10","index":"0.000021467927303389"},{"denom":"ASSET11","index":"0.000026655124661377"},{"denom":"ASSET12","index":"0.000025453388278707"},{"denom":"ASSET13","index":"0.000008375182650914"},{"denom":"ASSET14","index":"0.000024453809207757"},{"denom":"ASSET15","index":"0.000019323681821282"},{"denom":"ASSET16","index":"0.000011885939188892"},{"denom":"ASSET17","index":"0.000009353763879690"},{"denom":"ASSET18","index":"0.000003851457527173"},{"denom":"ASSET2","index":"0.000008122633355733"},{"denom":"ASSET3","index":"0.000002252845423920"},{"denom":"ASSET4","index":"0.000021728796023940"},{"denom":"ASSET5","index":"0.000001755342604855"},{"denom":"ASSET6","index":"0.000007082922688985"},{"denom":"ASSET7","index":"0.000011133765978354"},{"denom":"ASSET8","index":"0.000015225414484063"},{"denom":"ASSET9","index":"0.000006459804222065"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001578706846766"},{"denom":"ASSET1","index":"0.000013164667632738"},{"denom":"ASSET10","index":"0.000009171819989970"},{"denom":"ASSET11","index":"0.000012734981690366"},{"denom":"ASSET12","index":"0.000011467468005207"},{"denom":"ASSET13","index":"0.000003946168668528"},{"denom":"ASSET14","index":"0.000011895957050803"},{"denom":"ASSET15","index":"0.000008505148486066"},{"denom":"ASSET16","index":"0.000005930623522158"},{"denom":"ASSET17","index":"0.000004211879752669"},{"denom":"ASSET18","index":"0.000002005998995588"},{"denom":"ASSET2","index":"0.000003886323829757"},{"denom":"ASSET3","index":"0.000001135855039864"},{"denom":"ASSET4","index":"0.000010697863378618"},{"denom":"ASSET5","index":"0.000000882112923477"},{"denom":"ASSET6","index":"0.000003590690326231"},{"denom":"ASSET7","index":"0.000005499740683011"},{"denom":"ASSET8","index":"0.000007176593065360"},{"denom":"ASSET9","index":"0.000003098765751537"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003185213515607"},{"denom":"ASSET1","index":"0.000027035699090666"},{"denom":"ASSET10","index":"0.000021635640181728"},{"denom":"ASSET11","index":"0.000026880669357351"},{"denom":"ASSET12","index":"0.000025658872180332"},{"denom":"ASSET13","index":"0.000008444958797633"},{"denom":"ASSET14","index":"0.000024662649108986"},{"denom":"ASSET15","index":"0.000019476753279332"},{"denom":"ASSET16","index":"0.000011989846651744"},{"denom":"ASSET17","index":"0.000009429633404312"},{"denom":"ASSET18","index":"0.000003886090392826"},{"denom":"ASSET2","index":"0.000008191890279929"},{"denom":"ASSET3","index":"0.000002271981699175"},{"denom":"ASSET4","index":"0.000021916623044014"},{"denom":"ASSET5","index":"0.000001770727550439"},{"denom":"ASSET6","index":"0.000007144791673859"},{"denom":"ASSET7","index":"0.000011230376410345"},{"denom":"ASSET8","index":"0.000015353061978158"},{"denom":"ASSET9","index":"0.000006513931773648"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001736464555496"},{"denom":"ASSET1","index":"0.000014486324003877"},{"denom":"ASSET10","index":"0.000010092542477093"},{"denom":"ASSET11","index":"0.000014014496766071"},{"denom":"ASSET12","index":"0.000012620063107870"},{"denom":"ASSET13","index":"0.000004342915393341"},{"denom":"ASSET14","index":"0.000013091890345676"},{"denom":"ASSET15","index":"0.000009359368553661"},{"denom":"ASSET16","index":"0.000006524897117620"},{"denom":"ASSET17","index":"0.000004634080157191"},{"denom":"ASSET18","index":"0.000002206537788701"},{"denom":"ASSET2","index":"0.000004276263218483"},{"denom":"ASSET3","index":"0.000001250605280877"},{"denom":"ASSET4","index":"0.000011772878885340"},{"denom":"ASSET5","index":"0.000000969964544635"},{"denom":"ASSET6","index":"0.000003951772367204"},{"denom":"ASSET7","index":"0.000006051315875212"},{"denom":"ASSET8","index":"0.000007896528716001"},{"denom":"ASSET9","index":"0.000003409784945337"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003356675502673"},{"denom":"ASSET1","index":"0.000028477076245214"},{"denom":"ASSET10","index":"0.000022663760086849"},{"denom":"ASSET11","index":"0.000028282539274294"},{"denom":"ASSET12","index":"0.000026934248109484"},{"denom":"ASSET13","index":"0.000008880550781135"},{"denom":"ASSET14","index":"0.000025969128454053"},{"denom":"ASSET15","index":"0.000020425731449718"},{"denom":"ASSET16","index":"0.000012636600959200"},{"denom":"ASSET17","index":"0.000009896936242996"},{"denom":"ASSET18","index":"0.000004102733083140"},{"denom":"ASSET2","index":"0.000008619316582261"},{"denom":"ASSET3","index":"0.000002396767404444"},{"denom":"ASSET4","index":"0.000023088672429632"},{"denom":"ASSET5","index":"0.000001866260713425"},{"denom":"ASSET6","index":"0.000007536521735823"},{"denom":"ASSET7","index":"0.000011831316132227"},{"denom":"ASSET8","index":"0.000016143846449802"},{"denom":"ASSET9","index":"0.000006854365607618"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001432199402946"},{"denom":"ASSET1","index":"0.000011943338809449"},{"denom":"ASSET10","index":"0.000008321234131428"},{"denom":"ASSET11","index":"0.000011554338026882"},{"denom":"ASSET12","index":"0.000010404248756685"},{"denom":"ASSET13","index":"0.000003580160245814"},{"denom":"ASSET14","index":"0.000010793249539252"},{"denom":"ASSET15","index":"0.000007717099003024"},{"denom":"ASSET16","index":"0.000005380388215223"},{"denom":"ASSET17","index":"0.000003821002469456"},{"denom":"ASSET18","index":"0.000001819847139312"},{"denom":"ASSET2","index":"0.000003525361874705"},{"denom":"ASSET3","index":"0.000001031021204577"},{"denom":"ASSET4","index":"0.000009706076917365"},{"denom":"ASSET5","index":"0.000000800326827437"},{"denom":"ASSET6","index":"0.000003258135250159"},{"denom":"ASSET7","index":"0.000004989357863356"},{"denom":"ASSET8","index":"0.000006510858315517"},{"denom":"ASSET9","index":"0.000002812306527182"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000002962853679956"},{"denom":"ASSET1","index":"0.000025162993314326"},{"denom":"ASSET10","index":"0.000020199688926412"},{"denom":"ASSET11","index":"0.000025035647772320"},{"denom":"ASSET12","index":"0.000023929456511577"},{"denom":"ASSET13","index":"0.000007867725037604"},{"denom":"ASSET14","index":"0.000022960507028012"},{"denom":"ASSET15","index":"0.000018173489333858"},{"denom":"ASSET16","index":"0.000011155286879957"},{"denom":"ASSET17","index":"0.000008793607250882"},{"denom":"ASSET18","index":"0.000003611579051495"},{"denom":"ASSET2","index":"0.000007628670547867"},{"denom":"ASSET3","index":"0.000002114031306235"},{"denom":"ASSET4","index":"0.000020398130246320"},{"denom":"ASSET5","index":"0.000001647096325587"},{"denom":"ASSET6","index":"0.000006645213242757"},{"denom":"ASSET7","index":"0.000010450616802650"},{"denom":"ASSET8","index":"0.000014303332598966"},{"denom":"ASSET9","index":"0.000006067112886031"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001597673370668"},{"denom":"ASSET1","index":"0.000013327099930964"},{"denom":"ASSET10","index":"0.000009285285696821"},{"denom":"ASSET11","index":"0.000012892979142852"},{"denom":"ASSET12","index":"0.000011609669101507"},{"denom":"ASSET13","index":"0.000003995544306884"},{"denom":"ASSET14","index":"0.000012043789889618"},{"denom":"ASSET15","index":"0.000008610289110917"},{"denom":"ASSET16","index":"0.000006002842621820"},{"denom":"ASSET17","index":"0.000004263637708946"},{"denom":"ASSET18","index":"0.000002030433278566"},{"denom":"ASSET2","index":"0.000003934304697275"},{"denom":"ASSET3","index":"0.000001149943780421"},{"denom":"ASSET4","index":"0.000010829884739162"},{"denom":"ASSET5","index":"0.000000892737420067"},{"denom":"ASSET6","index":"0.000003634911050302"},{"denom":"ASSET7","index":"0.000005567360953495"},{"denom":"ASSET8","index":"0.000007264378579749"},{"denom":"ASSET9","index":"0.000003138189772368"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003135234009226"},{"denom":"ASSET1","index":"0.000026602125077525"},{"denom":"ASSET10","index":"0.000021213712135644"},{"denom":"ASSET11","index":"0.000026430841190504"},{"denom":"ASSET12","index":"0.000025191219856579"},{"denom":"ASSET13","index":"0.000008300995957475"},{"denom":"ASSET14","index":"0.000024262534835813"},{"denom":"ASSET15","index":"0.000019110376679732"},{"denom":"ASSET16","index":"0.000011801461546978"},{"denom":"ASSET17","index":"0.000009257538829689"},{"denom":"ASSET18","index":"0.000003829421505073"},{"denom":"ASSET2","index":"0.000008055136326188"},{"denom":"ASSET3","index":"0.000002237228869924"},{"denom":"ASSET4","index":"0.000021566736915931"},{"denom":"ASSET5","index":"0.000001743257901616"},{"denom":"ASSET6","index":"0.000007036288319926"},{"denom":"ASSET7","index":"0.000011051703047857"},{"denom":"ASSET8","index":"0.000015089589803941"},{"denom":"ASSET9","index":"0.000006406386950018"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001689516061942"},{"denom":"ASSET1","index":"0.000014086551658080"},{"denom":"ASSET10","index":"0.000009813816295422"},{"denom":"ASSET11","index":"0.000013627312671286"},{"denom":"ASSET12","index":"0.000012271349136594"},{"denom":"ASSET13","index":"0.000004223185893030"},{"denom":"ASSET14","index":"0.000012729983861563"},{"denom":"ASSET15","index":"0.000009101391604066"},{"denom":"ASSET16","index":"0.000006345353421478"},{"denom":"ASSET17","index":"0.000004506584688828"},{"denom":"ASSET18","index":"0.000002146942263262"},{"denom":"ASSET2","index":"0.000004157925615959"},{"denom":"ASSET3","index":"0.000001216379053179"},{"denom":"ASSET4","index":"0.000011447740269489"},{"denom":"ASSET5","index":"0.000000943856970227"},{"denom":"ASSET6","index":"0.000003842500943451"},{"denom":"ASSET7","index":"0.000005884905911035"},{"denom":"ASSET8","index":"0.000007678959268655"},{"denom":"ASSET9","index":"0.000003316793155937"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003297864217859"},{"denom":"ASSET1","index":"0.000027973253972789"},{"denom":"ASSET10","index":"0.000022291630953866"},{"denom":"ASSET11","index":"0.000027789008146512"},{"denom":"ASSET12","index":"0.000026479178332828"},{"denom":"ASSET13","index":"0.000008727103479255"},{"denom":"ASSET14","index":"0.000025511286037616"},{"denom":"ASSET15","index":"0.000020085740117730"},{"denom":"ASSET16","index":"0.000012411485442612"},{"denom":"ASSET17","index":"0.000009730550155880"},{"denom":"ASSET18","index":"0.000004028926705548"},{"denom":"ASSET2","index":"0.000008468714781887"},{"denom":"ASSET3","index":"0.000002353891879987"},{"denom":"ASSET4","index":"0.000022679492169342"},{"denom":"ASSET5","index":"0.000001833514119464"},{"denom":"ASSET6","index":"0.000007400677249018"},{"denom":"ASSET7","index":"0.000011621769805761"},{"denom":"ASSET8","index":"0.000015864980999233"},{"denom":"ASSET9","index":"0.000006736116007098"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001411859688057"},{"denom":"ASSET1","index":"0.000011770485537623"},{"denom":"ASSET10","index":"0.000008200497469250"},{"denom":"ASSET11","index":"0.000011386615852852"},{"denom":"ASSET12","index":"0.000010253874969484"},{"denom":"ASSET13","index":"0.000003528347966974"},{"denom":"ASSET14","index":"0.000010637094027671"},{"denom":"ASSET15","index":"0.000007605174144562"},{"denom":"ASSET16","index":"0.000005302606662519"},{"denom":"ASSET17","index":"0.000003765826670265"},{"denom":"ASSET18","index":"0.000001793777493075"},{"denom":"ASSET2","index":"0.000003474345960472"},{"denom":"ASSET3","index":"0.000001016278724767"},{"denom":"ASSET4","index":"0.000009565512043233"},{"denom":"ASSET5","index":"0.000000788559420242"},{"denom":"ASSET6","index":"0.000003210842193807"},{"denom":"ASSET7","index":"0.000004917435724579"},{"denom":"ASSET8","index":"0.000006416479374940"},{"denom":"ASSET9","index":"0.000002771018622781"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000002930820438736"},{"denom":"ASSET1","index":"0.000024889799880283"},{"denom":"ASSET10","index":"0.000019988623694797"},{"denom":"ASSET11","index":"0.000024765615752571"},{"denom":"ASSET12","index":"0.000023676022623299"},{"denom":"ASSET13","index":"0.000007783195940338"},{"denom":"ASSET14","index":"0.000022712072914709"},{"denom":"ASSET15","index":"0.000017982209004670"},{"denom":"ASSET16","index":"0.000011033267632466"},{"denom":"ASSET17","index":"0.000008700651286884"},{"denom":"ASSET18","index":"0.000003571624768330"},{"denom":"ASSET2","index":"0.000007546215495169"},{"denom":"ASSET3","index":"0.000002090977414753"},{"denom":"ASSET4","index":"0.000020176663420937"},{"denom":"ASSET5","index":"0.000001628342560149"},{"denom":"ASSET6","index":"0.000006572371850885"},{"denom":"ASSET7","index":"0.000010337273058537"},{"denom":"ASSET8","index":"0.000014149515747938"},{"denom":"ASSET9","index":"0.000006000707920121"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001726304213109"},{"denom":"ASSET1","index":"0.000014431903221591"},{"denom":"ASSET10","index":"0.000010055058078201"},{"denom":"ASSET11","index":"0.000013959161452463"},{"denom":"ASSET12","index":"0.000012572806376704"},{"denom":"ASSET13","index":"0.000004323728090679"},{"denom":"ASSET14","index":"0.000013040236440562"},{"denom":"ASSET15","index":"0.000009322042750788"},{"denom":"ASSET16","index":"0.000006501527251832"},{"denom":"ASSET17","index":"0.000004615871880590"},{"denom":"ASSET18","index":"0.000002199045982237"},{"denom":"ASSET2","index":"0.000004259987627426"},{"denom":"ASSET3","index":"0.000001242939033438"},{"denom":"ASSET4","index":"0.000011728245238599"},{"denom":"ASSET5","index":"0.000000966730359341"},{"denom":"ASSET6","index":"0.000003935973605888"},{"denom":"ASSET7","index":"0.000006028785482704"},{"denom":"ASSET8","index":"0.000007866635506506"},{"denom":"ASSET9","index":"0.000003394179668236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003313075721980"},{"denom":"ASSET1","index":"0.000028138029356789"},{"denom":"ASSET10","index":"0.000022370607880245"},{"denom":"ASSET11","index":"0.000027937207217164"},{"denom":"ASSET12","index":"0.000026595598409551"},{"denom":"ASSET13","index":"0.000008769097729958"},{"denom":"ASSET14","index":"0.000025655242037122"},{"denom":"ASSET15","index":"0.000020162686714325"},{"denom":"ASSET16","index":"0.000012488922131836"},{"denom":"ASSET17","index":"0.000009772018779266"},{"denom":"ASSET18","index":"0.000004056016110298"},{"denom":"ASSET2","index":"0.000008514325121927"},{"denom":"ASSET3","index":"0.000002365037757716"},{"denom":"ASSET4","index":"0.000022813272666626"},{"denom":"ASSET5","index":"0.000001844445619129"},{"denom":"ASSET6","index":"0.000007446834645040"},{"denom":"ASSET7","index":"0.000011690909413493"},{"denom":"ASSET8","index":"0.000015945057917181"},{"denom":"ASSET9","index":"0.000006769080892636"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001630255611072"},{"denom":"ASSET1","index":"0.000013593541268721"},{"denom":"ASSET10","index":"0.000009470169531707"},{"denom":"ASSET11","index":"0.000013149994246609"},{"denom":"ASSET12","index":"0.000011841383661505"},{"denom":"ASSET13","index":"0.000004074904678306"},{"denom":"ASSET14","index":"0.000012284196334242"},{"denom":"ASSET15","index":"0.000008782818517308"},{"denom":"ASSET16","index":"0.000006123739432762"},{"denom":"ASSET17","index":"0.000004348816994942"},{"denom":"ASSET18","index":"0.000002071599585061"},{"denom":"ASSET2","index":"0.000004012484981486"},{"denom":"ASSET3","index":"0.000001173490300222"},{"denom":"ASSET4","index":"0.000011046817638451"},{"denom":"ASSET5","index":"0.000000910593224203"},{"denom":"ASSET6","index":"0.000003707729991128"},{"denom":"ASSET7","index":"0.000005678723711902"},{"denom":"ASSET8","index":"0.000007410319536635"},{"denom":"ASSET9","index":"0.000003200294573447"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003344718004914"},{"denom":"ASSET1","index":"0.000028399683918161"},{"denom":"ASSET10","index":"0.000022773943545696"},{"denom":"ASSET11","index":"0.000028249525692452"},{"denom":"ASSET12","index":"0.000026989510465266"},{"denom":"ASSET13","index":"0.000008877216029957"},{"denom":"ASSET14","index":"0.000025911788013611"},{"denom":"ASSET15","index":"0.000020494299775586"},{"denom":"ASSET16","index":"0.000012591463658113"},{"denom":"ASSET17","index":"0.000009918208342143"},{"denom":"ASSET18","index":"0.000004078542450859"},{"denom":"ASSET2","index":"0.000008608606683653"},{"denom":"ASSET3","index":"0.000002386103437058"},{"denom":"ASSET4","index":"0.000023022167148602"},{"denom":"ASSET5","index":"0.000001858883946943"},{"denom":"ASSET6","index":"0.000007501347044310"},{"denom":"ASSET7","index":"0.000011795380538461"},{"denom":"ASSET8","index":"0.000016137954986293"},{"denom":"ASSET9","index":"0.000006845854741756"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001401914217082"},{"denom":"ASSET1","index":"0.000011691084141249"},{"denom":"ASSET10","index":"0.000008144816837289"},{"denom":"ASSET11","index":"0.000011309282624399"},{"denom":"ASSET12","index":"0.000010184195671197"},{"denom":"ASSET13","index":"0.000003504785542706"},{"denom":"ASSET14","index":"0.000010565150621491"},{"denom":"ASSET15","index":"0.000007553913381055"},{"denom":"ASSET16","index":"0.000005266490546178"},{"denom":"ASSET17","index":"0.000003740131045332"},{"denom":"ASSET18","index":"0.000001781176034264"},{"denom":"ASSET2","index":"0.000003450605283109"},{"denom":"ASSET3","index":"0.000001009107335001"},{"denom":"ASSET4","index":"0.000009501016460336"},{"denom":"ASSET5","index":"0.000000783074064494"},{"denom":"ASSET6","index":"0.000003189016217240"},{"denom":"ASSET7","index":"0.000004883842462771"},{"denom":"ASSET8","index":"0.000006372953035143"},{"denom":"ASSET9","index":"0.000002752187874236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000002824624853437"},{"denom":"ASSET1","index":"0.000023976113690517"},{"denom":"ASSET10","index":"0.000019183481330878"},{"denom":"ASSET11","index":"0.000023837782846342"},{"denom":"ASSET12","index":"0.000022753084719682"},{"denom":"ASSET13","index":"0.000007489057952554"},{"denom":"ASSET14","index":"0.000021872315483076"},{"denom":"ASSET15","index":"0.000017271123733000"},{"denom":"ASSET16","index":"0.000010633084765839"},{"denom":"ASSET17","index":"0.000008361522972460"},{"denom":"ASSET18","index":"0.000003446219629870"},{"denom":"ASSET2","index":"0.000007263651822688"},{"denom":"ASSET3","index":"0.000002015414858276"},{"denom":"ASSET4","index":"0.000019437236646346"},{"denom":"ASSET5","index":"0.000001569802896992"},{"denom":"ASSET6","index":"0.000006336500403946"},{"denom":"ASSET7","index":"0.000009959182045961"},{"denom":"ASSET8","index":"0.000013614498977085"},{"denom":"ASSET9","index":"0.000005776799011181"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001454934724421"},{"denom":"ASSET1","index":"0.000012138554241533"},{"denom":"ASSET10","index":"0.000008457231031836"},{"denom":"ASSET11","index":"0.000011742676653726"},{"denom":"ASSET12","index":"0.000010575345305063"},{"denom":"ASSET13","index":"0.000003639028595615"},{"denom":"ASSET14","index":"0.000010969531108307"},{"denom":"ASSET15","index":"0.000007843113235366"},{"denom":"ASSET16","index":"0.000005467847708521"},{"denom":"ASSET17","index":"0.000003882645572727"},{"denom":"ASSET18","index":"0.000001849120527665"},{"denom":"ASSET2","index":"0.000003583199705027"},{"denom":"ASSET3","index":"0.000001047214644670"},{"denom":"ASSET4","index":"0.000009864795788485"},{"denom":"ASSET5","index":"0.000000813748374938"},{"denom":"ASSET6","index":"0.000003310822390339"},{"denom":"ASSET7","index":"0.000005070278336150"},{"denom":"ASSET8","index":"0.000006616569426988"},{"denom":"ASSET9","index":"0.000002857424127380"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003026822568793"},{"denom":"ASSET1","index":"0.000025710421285725"},{"denom":"ASSET10","index":"0.000020652297735472"},{"denom":"ASSET11","index":"0.000025583400849235"},{"denom":"ASSET12","index":"0.000024460820755928"},{"denom":"ASSET13","index":"0.000008041083722059"},{"denom":"ASSET14","index":"0.000023461074878675"},{"denom":"ASSET15","index":"0.000018578170233019"},{"denom":"ASSET16","index":"0.000011396689804799"},{"denom":"ASSET17","index":"0.000008988134494295"},{"denom":"ASSET18","index":"0.000003688816665807"},{"denom":"ASSET2","index":"0.000007796110853756"},{"denom":"ASSET3","index":"0.000002159003644915"},{"denom":"ASSET4","index":"0.000020841789260406"},{"denom":"ASSET5","index":"0.000001683251281734"},{"denom":"ASSET6","index":"0.000006788484398340"},{"denom":"ASSET7","index":"0.000010677121165375"},{"denom":"ASSET8","index":"0.000014616905179383"},{"denom":"ASSET9","index":"0.000006199084273401"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001547699786520"},{"denom":"ASSET1","index":"0.000012908880828127"},{"denom":"ASSET10","index":"0.000008993933542043"},{"denom":"ASSET11","index":"0.000012488059147042"},{"denom":"ASSET12","index":"0.000011245681057538"},{"denom":"ASSET13","index":"0.000003869751640144"},{"denom":"ASSET14","index":"0.000011665498390936"},{"denom":"ASSET15","index":"0.000008340103197445"},{"denom":"ASSET16","index":"0.000005815173110936"},{"denom":"ASSET17","index":"0.000004129877691221"},{"denom":"ASSET18","index":"0.000001966512772230"},{"denom":"ASSET2","index":"0.000003810495126579"},{"denom":"ASSET3","index":"0.000001114825933185"},{"denom":"ASSET4","index":"0.000010490411596498"},{"denom":"ASSET5","index":"0.000000864743358984"},{"denom":"ASSET6","index":"0.000003521242992563"},{"denom":"ASSET7","index":"0.000005392342734476"},{"denom":"ASSET8","index":"0.000007036459899001"},{"denom":"ASSET9","index":"0.000003039156102537"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003086703561215"},{"denom":"ASSET1","index":"0.000026199550261878"},{"denom":"ASSET10","index":"0.000020936384793003"},{"denom":"ASSET11","index":"0.000026042194398185"},{"denom":"ASSET12","index":"0.000024843424443974"},{"denom":"ASSET13","index":"0.000008180415813801"},{"denom":"ASSET14","index":"0.000023898307142718"},{"denom":"ASSET15","index":"0.000018852934413068"},{"denom":"ASSET16","index":"0.000011621232923996"},{"denom":"ASSET17","index":"0.000009129550402498"},{"denom":"ASSET18","index":"0.000003767892160935"},{"denom":"ASSET2","index":"0.000007936188126371"},{"denom":"ASSET3","index":"0.000002203575710986"},{"denom":"ASSET4","index":"0.000021240180347210"},{"denom":"ASSET5","index":"0.000001716192200569"},{"denom":"ASSET6","index":"0.000006926674957775"},{"denom":"ASSET7","index":"0.000010883333770048"},{"denom":"ASSET8","index":"0.000014871024805414"},{"denom":"ASSET9","index":"0.000006311583255107"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001511232509129"},{"denom":"ASSET1","index":"0.000012598757210652"},{"denom":"ASSET10","index":"0.000008777665278232"},{"denom":"ASSET11","index":"0.000012187849575766"},{"denom":"ASSET12","index":"0.000010975073643675"},{"denom":"ASSET13","index":"0.000003776959255615"},{"denom":"ASSET14","index":"0.000011385233267090"},{"denom":"ASSET15","index":"0.000008140359504707"},{"denom":"ASSET16","index":"0.000005675412369706"},{"denom":"ASSET17","index":"0.000004030784481533"},{"denom":"ASSET18","index":"0.000001920145446758"},{"denom":"ASSET2","index":"0.000003719113035170"},{"denom":"ASSET3","index":"0.000001087858016388"},{"denom":"ASSET4","index":"0.000010238531681628"},{"denom":"ASSET5","index":"0.000000844504951067"},{"denom":"ASSET6","index":"0.000003436614036185"},{"denom":"ASSET7","index":"0.000005263507386191"},{"denom":"ASSET8","index":"0.000006867991992072"},{"denom":"ASSET9","index":"0.000002966364157912"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003050294937135"},{"denom":"ASSET1","index":"0.000025887230915803"},{"denom":"ASSET10","index":"0.000020718160619670"},{"denom":"ASSET11","index":"0.000025739685005463"},{"denom":"ASSET12","index":"0.000024570727404900"},{"denom":"ASSET13","index":"0.000008086966483560"},{"denom":"ASSET14","index":"0.000023616194455668"},{"denom":"ASSET15","index":"0.000018651338246959"},{"denom":"ASSET16","index":"0.000011480437826441"},{"denom":"ASSET17","index":"0.000009029688158762"},{"denom":"ASSET18","index":"0.000003721440260869"},{"denom":"ASSET2","index":"0.000007844134626406"},{"denom":"ASSET3","index":"0.000002176540273945"},{"denom":"ASSET4","index":"0.000020986445628896"},{"denom":"ASSET5","index":"0.000001695800268231"},{"denom":"ASSET6","index":"0.000006841569437153"},{"denom":"ASSET7","index":"0.000010753447417762"},{"denom":"ASSET8","index":"0.000014701309289649"},{"denom":"ASSET9","index":"0.000006238283490477"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001535139489204"},{"denom":"ASSET1","index":"0.000012800845981431"},{"denom":"ASSET10","index":"0.000008918122145344"},{"denom":"ASSET11","index":"0.000012383184798277"},{"denom":"ASSET12","index":"0.000011151318949088"},{"denom":"ASSET13","index":"0.000003837555421617"},{"denom":"ASSET14","index":"0.000011567806926671"},{"denom":"ASSET15","index":"0.000008270512670342"},{"denom":"ASSET16","index":"0.000005766305379776"},{"denom":"ASSET17","index":"0.000004095074044376"},{"denom":"ASSET18","index":"0.000001950454261216"},{"denom":"ASSET2","index":"0.000003778308540299"},{"denom":"ASSET3","index":"0.000001105159647558"},{"denom":"ASSET4","index":"0.000010402813795010"},{"denom":"ASSET5","index":"0.000000857613272150"},{"denom":"ASSET6","index":"0.000003491459778273"},{"denom":"ASSET7","index":"0.000005347470991052"},{"denom":"ASSET8","index":"0.000006978226734264"},{"denom":"ASSET9","index":"0.000003013965111016"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000002944371933765"},{"denom":"ASSET1","index":"0.000024968433937291"},{"denom":"ASSET10","index":"0.000019851368221906"},{"denom":"ASSET11","index":"0.000024791952485266"},{"denom":"ASSET12","index":"0.000023600048189968"},{"denom":"ASSET13","index":"0.000007784111470281"},{"denom":"ASSET14","index":"0.000022766914870589"},{"denom":"ASSET15","index":"0.000017894900322998"},{"denom":"ASSET16","index":"0.000011081662183182"},{"denom":"ASSET17","index":"0.000008672317440622"},{"denom":"ASSET18","index":"0.000003599691097086"},{"denom":"ASSET2","index":"0.000007555380586873"},{"denom":"ASSET3","index":"0.000002101847815188"},{"denom":"ASSET4","index":"0.000020244169178497"},{"denom":"ASSET5","index":"0.000001637098640985"},{"denom":"ASSET6","index":"0.000006609166185649"},{"denom":"ASSET7","index":"0.000010374399402552"},{"denom":"ASSET8","index":"0.000014150620453773"},{"denom":"ASSET9","index":"0.000006009906313007"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001449310882227"},{"denom":"ASSET1","index":"0.000012082282763787"},{"denom":"ASSET10","index":"0.000008417588941675"},{"denom":"ASSET11","index":"0.000011688148164511"},{"denom":"ASSET12","index":"0.000010525234539176"},{"denom":"ASSET13","index":"0.000003621923721366"},{"denom":"ASSET14","index":"0.000010918286351091"},{"denom":"ASSET15","index":"0.000007806355476589"},{"denom":"ASSET16","index":"0.000005442630668295"},{"denom":"ASSET17","index":"0.000003865550877512"},{"denom":"ASSET18","index":"0.000001841279906781"},{"denom":"ASSET2","index":"0.000003566701565973"},{"denom":"ASSET3","index":"0.000001043265621984"},{"denom":"ASSET4","index":"0.000009818715786353"},{"denom":"ASSET5","index":"0.000000809924945764"},{"denom":"ASSET6","index":"0.000003295463332131"},{"denom":"ASSET7","index":"0.000005047413281659"},{"denom":"ASSET8","index":"0.000006586595514820"},{"denom":"ASSET9","index":"0.000002844482396421"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000002938303361264"},{"denom":"ASSET1","index":"0.000024939884544734"},{"denom":"ASSET10","index":"0.000019970621943114"},{"denom":"ASSET11","index":"0.000024800280810198"},{"denom":"ASSET12","index":"0.000023679745396670"},{"denom":"ASSET13","index":"0.000007792253675830"},{"denom":"ASSET14","index":"0.000022752532795075"},{"denom":"ASSET15","index":"0.000017976341528508"},{"denom":"ASSET16","index":"0.000011059313296089"},{"denom":"ASSET17","index":"0.000008702160495382"},{"denom":"ASSET18","index":"0.000003584018468858"},{"denom":"ASSET2","index":"0.000007557839698908"},{"denom":"ASSET3","index":"0.000002096442663552"},{"denom":"ASSET4","index":"0.000020217858094708"},{"denom":"ASSET5","index":"0.000001633684136995"},{"denom":"ASSET6","index":"0.000006589976909255"},{"denom":"ASSET7","index":"0.000010359339015905"},{"denom":"ASSET8","index":"0.000014165755580726"},{"denom":"ASSET9","index":"0.000006010291774725"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001731982701050"},{"denom":"ASSET1","index":"0.000014440617081118"},{"denom":"ASSET10","index":"0.000010060714066040"},{"denom":"ASSET11","index":"0.000013969585405988"},{"denom":"ASSET12","index":"0.000012579542501729"},{"denom":"ASSET13","index":"0.000004329188348588"},{"denom":"ASSET14","index":"0.000013049805772821"},{"denom":"ASSET15","index":"0.000009329961826155"},{"denom":"ASSET16","index":"0.000006505308583448"},{"denom":"ASSET17","index":"0.000004619645074851"},{"denom":"ASSET18","index":"0.000002200709164068"},{"denom":"ASSET2","index":"0.000004262337197306"},{"denom":"ASSET3","index":"0.000001247119753241"},{"denom":"ASSET4","index":"0.000011735066464260"},{"denom":"ASSET5","index":"0.000000967420683506"},{"denom":"ASSET6","index":"0.000003938839097420"},{"denom":"ASSET7","index":"0.000006032740100243"},{"denom":"ASSET8","index":"0.000007872299366576"},{"denom":"ASSET9","index":"0.000003400187866969"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003329715418659"},{"denom":"ASSET1","index":"0.000028238028843607"},{"denom":"ASSET10","index":"0.000022458342297172"},{"denom":"ASSET11","index":"0.000028040237741643"},{"denom":"ASSET12","index":"0.000026695793846360"},{"denom":"ASSET13","index":"0.000008804253880653"},{"denom":"ASSET14","index":"0.000025748953032298"},{"denom":"ASSET15","index":"0.000020243324641083"},{"denom":"ASSET16","index":"0.000012532507824147"},{"denom":"ASSET17","index":"0.000009809802042254"},{"denom":"ASSET18","index":"0.000004070975493464"},{"denom":"ASSET2","index":"0.000008545109234155"},{"denom":"ASSET3","index":"0.000002377197518329"},{"denom":"ASSET4","index":"0.000022894451839245"},{"denom":"ASSET5","index":"0.000001851122407848"},{"denom":"ASSET6","index":"0.000007473999475476"},{"denom":"ASSET7","index":"0.000011732969702935"},{"denom":"ASSET8","index":"0.000016005536556726"},{"denom":"ASSET9","index":"0.000006797137295338"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001649988907243"},{"denom":"ASSET1","index":"0.000013756519537767"},{"denom":"ASSET10","index":"0.000009584361794534"},{"denom":"ASSET11","index":"0.000013307506163009"},{"denom":"ASSET12","index":"0.000011983307415229"},{"denom":"ASSET13","index":"0.000004124070634826"},{"denom":"ASSET14","index":"0.000012431118612277"},{"denom":"ASSET15","index":"0.000008888300900330"},{"denom":"ASSET16","index":"0.000006196625007203"},{"denom":"ASSET17","index":"0.000004401172597026"},{"denom":"ASSET18","index":"0.000002096597926581"},{"denom":"ASSET2","index":"0.000004060355216185"},{"denom":"ASSET3","index":"0.000001187751577673"},{"denom":"ASSET4","index":"0.000011179050527108"},{"denom":"ASSET5","index":"0.000000922070303720"},{"denom":"ASSET6","index":"0.000003752597722375"},{"denom":"ASSET7","index":"0.000005747010543590"},{"denom":"ASSET8","index":"0.000007499184556200"},{"denom":"ASSET9","index":"0.000003238666751267"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003269082759145"},{"denom":"ASSET1","index":"0.000027736662456421"},{"denom":"ASSET10","index":"0.000022145815740722"},{"denom":"ASSET11","index":"0.000027564157079872"},{"denom":"ASSET12","index":"0.000026286254396013"},{"denom":"ASSET13","index":"0.000008658548128401"},{"denom":"ASSET14","index":"0.000025298253418871"},{"denom":"ASSET15","index":"0.000019946084058089"},{"denom":"ASSET16","index":"0.000012303266096103"},{"denom":"ASSET17","index":"0.000009659898104260"},{"denom":"ASSET18","index":"0.000003991565584036"},{"denom":"ASSET2","index":"0.000008399501371576"},{"denom":"ASSET3","index":"0.000002333103515211"},{"denom":"ASSET4","index":"0.000022486071398850"},{"denom":"ASSET5","index":"0.000001817550334619"},{"denom":"ASSET6","index":"0.000007334517845971"},{"denom":"ASSET7","index":"0.000011522603065826"},{"denom":"ASSET8","index":"0.000015739883934035"},{"denom":"ASSET9","index":"0.000006680430297789"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001707974867576"},{"denom":"ASSET1","index":"0.000014238090744503"},{"denom":"ASSET10","index":"0.000009920037235236"},{"denom":"ASSET11","index":"0.000013773690453356"},{"denom":"ASSET12","index":"0.000012403461252069"},{"denom":"ASSET13","index":"0.000004268385028930"},{"denom":"ASSET14","index":"0.000012866619831208"},{"denom":"ASSET15","index":"0.000009199844270355"},{"denom":"ASSET16","index":"0.000006414063379473"},{"denom":"ASSET17","index":"0.000004555220502875"},{"denom":"ASSET18","index":"0.000002169891734707"},{"denom":"ASSET2","index":"0.000004203195148489"},{"denom":"ASSET3","index":"0.000001229294888332"},{"denom":"ASSET4","index":"0.000011570893350426"},{"denom":"ASSET5","index":"0.000000954255678468"},{"denom":"ASSET6","index":"0.000003884075162326"},{"denom":"ASSET7","index":"0.000005948421376317"},{"denom":"ASSET8","index":"0.000007761941764609"},{"denom":"ASSET9","index":"0.000003352622422724"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003075387603983"},{"denom":"ASSET1","index":"0.000026047450678709"},{"denom":"ASSET10","index":"0.000020531243448578"},{"denom":"ASSET11","index":"0.000025816927992783"},{"denom":"ASSET12","index":"0.000024485469945303"},{"denom":"ASSET13","index":"0.000008098391373250"},{"denom":"ASSET14","index":"0.000023735883509134"},{"denom":"ASSET15","index":"0.000018540774078871"},{"denom":"ASSET16","index":"0.000011572711306393"},{"denom":"ASSET17","index":"0.000008997644319689"},{"denom":"ASSET18","index":"0.000003770348288081"},{"denom":"ASSET2","index":"0.000007868945206789"},{"denom":"ASSET3","index":"0.000002196489262864"},{"denom":"ASSET4","index":"0.000021122354693053"},{"denom":"ASSET5","index":"0.000001710501624761"},{"denom":"ASSET6","index":"0.000006909892735753"},{"denom":"ASSET7","index":"0.000010827333344051"},{"denom":"ASSET8","index":"0.000014723239896475"},{"denom":"ASSET9","index":"0.000006260042064096"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001779156074987"},{"denom":"ASSET1","index":"0.000014834764457923"},{"denom":"ASSET10","index":"0.000010335215703318"},{"denom":"ASSET11","index":"0.000014351450406057"},{"denom":"ASSET12","index":"0.000012923397473821"},{"denom":"ASSET13","index":"0.000004447014618532"},{"denom":"ASSET14","index":"0.000013405835956753"},{"denom":"ASSET15","index":"0.000009584853126417"},{"denom":"ASSET16","index":"0.000006682342108415"},{"denom":"ASSET17","index":"0.000004745583625211"},{"denom":"ASSET18","index":"0.000002260718988984"},{"denom":"ASSET2","index":"0.000004378720241638"},{"denom":"ASSET3","index":"0.000001280957351233"},{"denom":"ASSET4","index":"0.000012055708659691"},{"denom":"ASSET5","index":"0.000000993770740704"},{"denom":"ASSET6","index":"0.000004046879615447"},{"denom":"ASSET7","index":"0.000006197276918679"},{"denom":"ASSET8","index":"0.000008086754679418"},{"denom":"ASSET9","index":"0.000003492644479883"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003478645419875"},{"denom":"ASSET1","index":"0.000029510728520321"},{"denom":"ASSET10","index":"0.000023521700007579"},{"denom":"ASSET11","index":"0.000029317721838376"},{"denom":"ASSET12","index":"0.000027938200533330"},{"denom":"ASSET13","index":"0.000009206643656085"},{"denom":"ASSET14","index":"0.000026913511393693"},{"denom":"ASSET15","index":"0.000021192735957156"},{"denom":"ASSET16","index":"0.000013092928863665"},{"denom":"ASSET17","index":"0.000010265835619821"},{"denom":"ASSET18","index":"0.000004249633310572"},{"denom":"ASSET2","index":"0.000008933634051769"},{"denom":"ASSET3","index":"0.000002482776919113"},{"denom":"ASSET4","index":"0.000023925662277258"},{"denom":"ASSET5","index":"0.000001933519521756"},{"denom":"ASSET6","index":"0.000007806757132876"},{"denom":"ASSET7","index":"0.000012260200744601"},{"denom":"ASSET8","index":"0.000016737737824425"},{"denom":"ASSET9","index":"0.000007106044722519"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001752700098923"},{"denom":"ASSET1","index":"0.000014612940709519"},{"denom":"ASSET10","index":"0.000010180696541309"},{"denom":"ASSET11","index":"0.000014136053678762"},{"denom":"ASSET12","index":"0.000012730078503378"},{"denom":"ASSET13","index":"0.000004380628160175"},{"denom":"ASSET14","index":"0.000013205843447004"},{"denom":"ASSET15","index":"0.000009441241121853"},{"denom":"ASSET16","index":"0.000006583285198706"},{"denom":"ASSET17","index":"0.000004674614988548"},{"denom":"ASSET18","index":"0.000002226220868286"},{"denom":"ASSET2","index":"0.000004313302932304"},{"denom":"ASSET3","index":"0.000001261225935460"},{"denom":"ASSET4","index":"0.000011875048109410"},{"denom":"ASSET5","index":"0.000000979582065531"},{"denom":"ASSET6","index":"0.000003985653489996"},{"denom":"ASSET7","index":"0.000006105276080818"},{"denom":"ASSET8","index":"0.000007965696544335"},{"denom":"ASSET9","index":"0.000003440319144236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003327512121722"},{"denom":"ASSET1","index":"0.000028211822531533"},{"denom":"ASSET10","index":"0.000022399629444355"},{"denom":"ASSET11","index":"0.000028004032167971"},{"denom":"ASSET12","index":"0.000026643127370344"},{"denom":"ASSET13","index":"0.000008791339050068"},{"denom":"ASSET14","index":"0.000025722152469956"},{"denom":"ASSET15","index":"0.000020197596080044"},{"denom":"ASSET16","index":"0.000012523737733641"},{"denom":"ASSET17","index":"0.000009790102863953"},{"denom":"ASSET18","index":"0.000004069245825383"},{"denom":"ASSET2","index":"0.000008534453115749"},{"denom":"ASSET3","index":"0.000002375171252372"},{"denom":"ASSET4","index":"0.000022873545881432"},{"denom":"ASSET5","index":"0.000001850500835715"},{"denom":"ASSET6","index":"0.000007470212303630"},{"denom":"ASSET7","index":"0.000011723166108277"},{"denom":"ASSET8","index":"0.000015981595788329"},{"denom":"ASSET9","index":"0.000006788341225254"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001434713876400"},{"denom":"ASSET1","index":"0.000011974044460331"},{"denom":"ASSET10","index":"0.000008340728508476"},{"denom":"ASSET11","index":"0.000011582406348125"},{"denom":"ASSET12","index":"0.000010430757641934"},{"denom":"ASSET13","index":"0.000003588723493535"},{"denom":"ASSET14","index":"0.000010820456951604"},{"denom":"ASSET15","index":"0.000007735822117345"},{"denom":"ASSET16","index":"0.000005393748654249"},{"denom":"ASSET17","index":"0.000003829135007959"},{"denom":"ASSET18","index":"0.000001824413186071"},{"denom":"ASSET2","index":"0.000003534437022536"},{"denom":"ASSET3","index":"0.000001033381751515"},{"denom":"ASSET4","index":"0.000009730849926555"},{"denom":"ASSET5","index":"0.000000802664249770"},{"denom":"ASSET6","index":"0.000003264943470077"},{"denom":"ASSET7","index":"0.000005002110542043"},{"denom":"ASSET8","index":"0.000006526009335083"},{"denom":"ASSET9","index":"0.000002819018886872"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000002895048613815"},{"denom":"ASSET1","index":"0.000024589366099895"},{"denom":"ASSET10","index":"0.000019676065498265"},{"denom":"ASSET11","index":"0.000024447379266412"},{"denom":"ASSET12","index":"0.000023337478265694"},{"denom":"ASSET13","index":"0.000007679998629802"},{"denom":"ASSET14","index":"0.000022431328797509"},{"denom":"ASSET15","index":"0.000017714358679290"},{"denom":"ASSET16","index":"0.000010904445776568"},{"denom":"ASSET17","index":"0.000008574179211920"},{"denom":"ASSET18","index":"0.000003534399202209"},{"denom":"ASSET2","index":"0.000007450371795821"},{"denom":"ASSET3","index":"0.000002066219984895"},{"denom":"ASSET4","index":"0.000019933989143940"},{"denom":"ASSET5","index":"0.000001610899827710"},{"denom":"ASSET6","index":"0.000006497050827728"},{"denom":"ASSET7","index":"0.000010213894093182"},{"denom":"ASSET8","index":"0.000013962110633776"},{"denom":"ASSET9","index":"0.000005925048173997"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001401536005232"},{"denom":"ASSET1","index":"0.000011690786017211"},{"denom":"ASSET10","index":"0.000008143726832164"},{"denom":"ASSET11","index":"0.000011307987636928"},{"denom":"ASSET12","index":"0.000010184289165772"},{"denom":"ASSET13","index":"0.000003503840013080"},{"denom":"ASSET14","index":"0.000010564000462344"},{"denom":"ASSET15","index":"0.000007554093843178"},{"denom":"ASSET16","index":"0.000005266564812612"},{"denom":"ASSET17","index":"0.000003738458375190"},{"denom":"ASSET18","index":"0.000001781247301804"},{"denom":"ASSET2","index":"0.000003448272506265"},{"denom":"ASSET3","index":"0.000001009476373813"},{"denom":"ASSET4","index":"0.000009498956581716"},{"denom":"ASSET5","index":"0.000000781032179127"},{"denom":"ASSET6","index":"0.000003188957474460"},{"denom":"ASSET7","index":"0.000004883766432329"},{"denom":"ASSET8","index":"0.000006371740781496"},{"denom":"ASSET9","index":"0.000002750591587361"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003071913026336"},{"denom":"ASSET1","index":"0.000026115211920195"},{"denom":"ASSET10","index":"0.000021104918039272"},{"denom":"ASSET11","index":"0.000026018207650283"},{"denom":"ASSET12","index":"0.000024942011742431"},{"denom":"ASSET13","index":"0.000008182453133262"},{"denom":"ASSET14","index":"0.000023839798810024"},{"denom":"ASSET15","index":"0.000018963275072170"},{"denom":"ASSET16","index":"0.000011567273660047"},{"denom":"ASSET17","index":"0.000009164652819502"},{"denom":"ASSET18","index":"0.000003735860972186"},{"denom":"ASSET2","index":"0.000007925194415041"},{"denom":"ASSET3","index":"0.000002190810612048"},{"denom":"ASSET4","index":"0.000021165118890878"},{"denom":"ASSET5","index":"0.000001704606606646"},{"denom":"ASSET6","index":"0.000006884812645629"},{"denom":"ASSET7","index":"0.000010842612570084"},{"denom":"ASSET8","index":"0.000014874699612932"},{"denom":"ASSET9","index":"0.000006301602876980"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001534549585700"},{"denom":"ASSET1","index":"0.000012795681230217"},{"denom":"ASSET10","index":"0.000008914897664776"},{"denom":"ASSET11","index":"0.000012378406858633"},{"denom":"ASSET12","index":"0.000011146809898878"},{"denom":"ASSET13","index":"0.000003835934265229"},{"denom":"ASSET14","index":"0.000011563204872419"},{"denom":"ASSET15","index":"0.000008267660704848"},{"denom":"ASSET16","index":"0.000005764014475342"},{"denom":"ASSET17","index":"0.000004093597891939"},{"denom":"ASSET18","index":"0.000001950065161198"},{"denom":"ASSET2","index":"0.000003777014596322"},{"denom":"ASSET3","index":"0.000001104963641508"},{"denom":"ASSET4","index":"0.000010398442163960"},{"denom":"ASSET5","index":"0.000000857413092297"},{"denom":"ASSET6","index":"0.000003490330834180"},{"denom":"ASSET7","index":"0.000005345421006692"},{"denom":"ASSET8","index":"0.000006975385280099"},{"denom":"ASSET9","index":"0.000003012817696624"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003034954909236"},{"denom":"ASSET1","index":"0.000025752158165977"},{"denom":"ASSET10","index":"0.000020556858138008"},{"denom":"ASSET11","index":"0.000025591676311293"},{"denom":"ASSET12","index":"0.000024402528250789"},{"denom":"ASSET13","index":"0.000008038375291107"},{"denom":"ASSET14","index":"0.000023488313497799"},{"denom":"ASSET15","index":"0.000018516037809802"},{"denom":"ASSET16","index":"0.000011423945454084"},{"denom":"ASSET17","index":"0.000008967524527402"},{"denom":"ASSET18","index":"0.000003706330058793"},{"denom":"ASSET2","index":"0.000007798931182527"},{"denom":"ASSET3","index":"0.000002166419358500"},{"denom":"ASSET4","index":"0.000020877722621984"},{"denom":"ASSET5","index":"0.000001687498984799"},{"denom":"ASSET6","index":"0.000006810207932767"},{"denom":"ASSET7","index":"0.000010698180555138"},{"denom":"ASSET8","index":"0.000014612921845389"},{"denom":"ASSET9","index":"0.000006203015740356"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001658482037183"},{"denom":"ASSET1","index":"0.000013862588923046"},{"denom":"ASSET10","index":"0.000009655943522610"},{"denom":"ASSET11","index":"0.000013408077810815"},{"denom":"ASSET12","index":"0.000012073555821711"},{"denom":"ASSET13","index":"0.000004153457929856"},{"denom":"ASSET14","index":"0.000012528066933942"},{"denom":"ASSET15","index":"0.000008954835955871"},{"denom":"ASSET16","index":"0.000006242274956279"},{"denom":"ASSET17","index":"0.000004433900956551"},{"denom":"ASSET18","index":"0.000002112993149414"},{"denom":"ASSET2","index":"0.000004090600010079"},{"denom":"ASSET3","index":"0.000001194300475756"},{"denom":"ASSET4","index":"0.000011266073313811"},{"denom":"ASSET5","index":"0.000000928363122855"},{"denom":"ASSET6","index":"0.000003781145635794"},{"denom":"ASSET7","index":"0.000005787763844048"},{"denom":"ASSET8","index":"0.000007557456046990"},{"denom":"ASSET9","index":"0.000003263776603787"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003188277912377"},{"denom":"ASSET1","index":"0.000027072180177666"},{"denom":"ASSET10","index":"0.000021525590492702"},{"denom":"ASSET11","index":"0.000026879695640981"},{"denom":"ASSET12","index":"0.000025588321740665"},{"denom":"ASSET13","index":"0.000008437670891103"},{"denom":"ASSET14","index":"0.000024686413843557"},{"denom":"ASSET15","index":"0.000019403734038796"},{"denom":"ASSET16","index":"0.000012012351193227"},{"denom":"ASSET17","index":"0.000009402991763462"},{"denom":"ASSET18","index":"0.000003903246578743"},{"denom":"ASSET2","index":"0.000008191237466303"},{"denom":"ASSET3","index":"0.000002276140738265"},{"denom":"ASSET4","index":"0.000021950324608304"},{"denom":"ASSET5","index":"0.000001774065663090"},{"denom":"ASSET6","index":"0.000007165524818145"},{"denom":"ASSET7","index":"0.000011244820309610"},{"denom":"ASSET8","index":"0.000015343724796373"},{"denom":"ASSET9","index":"0.000006516357987660"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001453411320498"},{"denom":"ASSET1","index":"0.000012118137400313"},{"denom":"ASSET10","index":"0.000008442891188019"},{"denom":"ASSET11","index":"0.000011723343510399"},{"denom":"ASSET12","index":"0.000010556870017106"},{"denom":"ASSET13","index":"0.000003632917795231"},{"denom":"ASSET14","index":"0.000010951256903010"},{"denom":"ASSET15","index":"0.000007829943148627"},{"denom":"ASSET16","index":"0.000005459144789091"},{"denom":"ASSET17","index":"0.000003877120201363"},{"denom":"ASSET18","index":"0.000001846984198382"},{"denom":"ASSET2","index":"0.000003577158245830"},{"denom":"ASSET3","index":"0.000001046407310278"},{"denom":"ASSET4","index":"0.000009848276035312"},{"denom":"ASSET5","index":"0.000000811973000390"},{"denom":"ASSET6","index":"0.000003305686571013"},{"denom":"ASSET7","index":"0.000005062722883136"},{"denom":"ASSET8","index":"0.000006606082089893"},{"denom":"ASSET9","index":"0.000002853098111648"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000002979919393708"},{"denom":"ASSET1","index":"0.000025298333716476"},{"denom":"ASSET10","index":"0.000020286143685892"},{"denom":"ASSET11","index":"0.000025164674259360"},{"denom":"ASSET12","index":"0.000024041723171534"},{"denom":"ASSET13","index":"0.000007907785176595"},{"denom":"ASSET14","index":"0.000023082402053339"},{"denom":"ASSET15","index":"0.000018255332392862"},{"denom":"ASSET16","index":"0.000011216675450010"},{"denom":"ASSET17","index":"0.000008835128154455"},{"denom":"ASSET18","index":"0.000003633337151635"},{"denom":"ASSET2","index":"0.000007668586747858"},{"denom":"ASSET3","index":"0.000002126085354033"},{"denom":"ASSET4","index":"0.000020508686269066"},{"denom":"ASSET5","index":"0.000001656307666438"},{"denom":"ASSET6","index":"0.000006683025235204"},{"denom":"ASSET7","index":"0.000010507859389263"},{"denom":"ASSET8","index":"0.000014375637436113"},{"denom":"ASSET9","index":"0.000006098257618497"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001779729226299"},{"denom":"ASSET1","index":"0.000014840802182142"},{"denom":"ASSET10","index":"0.000010337989986643"},{"denom":"ASSET11","index":"0.000014356968690293"},{"denom":"ASSET12","index":"0.000012927350131463"},{"denom":"ASSET13","index":"0.000004449323065747"},{"denom":"ASSET14","index":"0.000013411183623312"},{"denom":"ASSET15","index":"0.000009589142170113"},{"denom":"ASSET16","index":"0.000006683709894939"},{"denom":"ASSET17","index":"0.000004745944603463"},{"denom":"ASSET18","index":"0.000002261131394068"},{"denom":"ASSET2","index":"0.000004378814667437"},{"denom":"ASSET3","index":"0.000001281307789972"},{"denom":"ASSET4","index":"0.000012059367435030"},{"denom":"ASSET5","index":"0.000000994411548574"},{"denom":"ASSET6","index":"0.000004048154592606"},{"denom":"ASSET7","index":"0.000006199876403090"},{"denom":"ASSET8","index":"0.000008089015212973"},{"denom":"ASSET9","index":"0.000003493812702447"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003433377044021"},{"denom":"ASSET1","index":"0.000029119719093870"},{"denom":"ASSET10","index":"0.000023168779363922"},{"denom":"ASSET11","index":"0.000028918871222836"},{"denom":"ASSET12","index":"0.000027536680421684"},{"denom":"ASSET13","index":"0.000009079853140421"},{"denom":"ASSET14","index":"0.000026553415276013"},{"denom":"ASSET15","index":"0.000020883272198610"},{"denom":"ASSET16","index":"0.000012920460029656"},{"denom":"ASSET17","index":"0.000010116347697920"},{"denom":"ASSET18","index":"0.000004196183907349"},{"denom":"ASSET2","index":"0.000008810148159861"},{"denom":"ASSET3","index":"0.000002451192479374"},{"denom":"ASSET4","index":"0.000023608026429735"},{"denom":"ASSET5","index":"0.000001908186346512"},{"denom":"ASSET6","index":"0.000007706415634871"},{"denom":"ASSET7","index":"0.000012098308533034"},{"denom":"ASSET8","index":"0.000016505861275643"},{"denom":"ASSET9","index":"0.000007009790471677"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001595670533734"},{"denom":"ASSET1","index":"0.000013304245337308"},{"denom":"ASSET10","index":"0.000009268754359880"},{"denom":"ASSET11","index":"0.000012870227612725"},{"denom":"ASSET12","index":"0.000011589729681675"},{"denom":"ASSET13","index":"0.000003988302473145"},{"denom":"ASSET14","index":"0.000012022582258004"},{"denom":"ASSET15","index":"0.000008595881243245"},{"denom":"ASSET16","index":"0.000005992940044003"},{"denom":"ASSET17","index":"0.000004256286571545"},{"denom":"ASSET18","index":"0.000002027357961809"},{"denom":"ASSET2","index":"0.000003927132189815"},{"denom":"ASSET3","index":"0.000001148836178358"},{"denom":"ASSET4","index":"0.000010811993222188"},{"denom":"ASSET5","index":"0.000000891338414244"},{"denom":"ASSET6","index":"0.000003628854236813"},{"denom":"ASSET7","index":"0.000005557757171166"},{"denom":"ASSET8","index":"0.000007252465306483"},{"denom":"ASSET9","index":"0.000003132501080646"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003118409098775"},{"denom":"ASSET1","index":"0.000026454243753489"},{"denom":"ASSET10","index":"0.000021084585905412"},{"denom":"ASSET11","index":"0.000026280950742513"},{"denom":"ASSET12","index":"0.000025043390497745"},{"denom":"ASSET13","index":"0.000008253298424938"},{"denom":"ASSET14","index":"0.000024125697910719"},{"denom":"ASSET15","index":"0.000018997425080839"},{"denom":"ASSET16","index":"0.000011737294217995"},{"denom":"ASSET17","index":"0.000009202973625129"},{"denom":"ASSET18","index":"0.000003809493270778"},{"denom":"ASSET2","index":"0.000008008868325931"},{"denom":"ASSET3","index":"0.000002225819587877"},{"denom":"ASSET4","index":"0.000021447702379813"},{"denom":"ASSET5","index":"0.000001733713847172"},{"denom":"ASSET6","index":"0.000006998355968525"},{"denom":"ASSET7","index":"0.000010990481127196"},{"denom":"ASSET8","index":"0.000015003824321723"},{"denom":"ASSET9","index":"0.000006370091157596"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001536288093705"},{"denom":"ASSET1","index":"0.000012808796131863"},{"denom":"ASSET10","index":"0.000008924322337818"},{"denom":"ASSET11","index":"0.000012391382492026"},{"denom":"ASSET12","index":"0.000011158327625467"},{"denom":"ASSET13","index":"0.000003840018305497"},{"denom":"ASSET14","index":"0.000011575273312793"},{"denom":"ASSET15","index":"0.000008276208110044"},{"denom":"ASSET16","index":"0.000005770322413488"},{"denom":"ASSET17","index":"0.000004097860139074"},{"denom":"ASSET18","index":"0.000001951829923499"},{"denom":"ASSET2","index":"0.000003781056289108"},{"denom":"ASSET3","index":"0.000001105771783560"},{"denom":"ASSET4","index":"0.000010409603607822"},{"denom":"ASSET5","index":"0.000000858224905226"},{"denom":"ASSET6","index":"0.000003494201399847"},{"denom":"ASSET7","index":"0.000005351036963607"},{"denom":"ASSET8","index":"0.000006982787369562"},{"denom":"ASSET9","index":"0.000003015953933577"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003103831608428"},{"denom":"ASSET1","index":"0.000026343132935309"},{"denom":"ASSET10","index":"0.000021085436521682"},{"denom":"ASSET11","index":"0.000026194005406126"},{"denom":"ASSET12","index":"0.000025005394550642"},{"denom":"ASSET13","index":"0.000008229918727938"},{"denom":"ASSET14","index":"0.000024032248358707"},{"denom":"ASSET15","index":"0.000018981699828973"},{"denom":"ASSET16","index":"0.000011682673521897"},{"denom":"ASSET17","index":"0.000009189132473525"},{"denom":"ASSET18","index":"0.000003786361913516"},{"denom":"ASSET2","index":"0.000007982150766688"},{"denom":"ASSET3","index":"0.000002214601198569"},{"denom":"ASSET4","index":"0.000021356131094847"},{"denom":"ASSET5","index":"0.000001725369734459"},{"denom":"ASSET6","index":"0.000006962131899100"},{"denom":"ASSET7","index":"0.000010942547729288"},{"denom":"ASSET8","index":"0.000014960973970884"},{"denom":"ASSET9","index":"0.000006348281537724"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001156201861882"},{"denom":"ASSET1","index":"0.000009641528249827"},{"denom":"ASSET10","index":"0.000006717693720376"},{"denom":"ASSET11","index":"0.000009327193051790"},{"denom":"ASSET12","index":"0.000008399128436016"},{"denom":"ASSET13","index":"0.000002890504654704"},{"denom":"ASSET14","index":"0.000008712888981039"},{"denom":"ASSET15","index":"0.000006229813312455"},{"denom":"ASSET16","index":"0.000004343227471224"},{"denom":"ASSET17","index":"0.000003084737373052"},{"denom":"ASSET18","index":"0.000001469387753892"},{"denom":"ASSET2","index":"0.000002846256372714"},{"denom":"ASSET3","index":"0.000000832672215639"},{"denom":"ASSET4","index":"0.000007835393830396"},{"denom":"ASSET5","index":"0.000000645909986459"},{"denom":"ASSET6","index":"0.000002630186839877"},{"denom":"ASSET7","index":"0.000004027742967162"},{"denom":"ASSET8","index":"0.000005256351108664"},{"denom":"ASSET9","index":"0.000002269879400812"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000002648545180722"},{"denom":"ASSET1","index":"0.000022528915692996"},{"denom":"ASSET10","index":"0.000018297756458480"},{"denom":"ASSET11","index":"0.000022469822082599"},{"denom":"ASSET12","index":"0.000021584227648624"},{"denom":"ASSET13","index":"0.000007070243338634"},{"denom":"ASSET14","index":"0.000020574684608302"},{"denom":"ASSET15","index":"0.000016423497937791"},{"denom":"ASSET16","index":"0.000009972839292196"},{"denom":"ASSET17","index":"0.000007932645550822"},{"denom":"ASSET18","index":"0.000003216131666673"},{"denom":"ASSET2","index":"0.000006846442901912"},{"denom":"ASSET3","index":"0.000001888119307859"},{"denom":"ASSET4","index":"0.000018258669735553"},{"denom":"ASSET5","index":"0.000001471345302008"},{"denom":"ASSET6","index":"0.000005932348598922"},{"denom":"ASSET7","index":"0.000009352074075404"},{"denom":"ASSET8","index":"0.000012853047191550"},{"denom":"ASSET9","index":"0.000005442948627063"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001638829976996"},{"denom":"ASSET1","index":"0.000013663699511091"},{"denom":"ASSET10","index":"0.000009519748943981"},{"denom":"ASSET11","index":"0.000013218199388741"},{"denom":"ASSET12","index":"0.000011902774883924"},{"denom":"ASSET13","index":"0.000004095984811686"},{"denom":"ASSET14","index":"0.000012347548252404"},{"denom":"ASSET15","index":"0.000008827879259679"},{"denom":"ASSET16","index":"0.000006154878525580"},{"denom":"ASSET17","index":"0.000004371424528441"},{"denom":"ASSET18","index":"0.000002082149837736"},{"denom":"ASSET2","index":"0.000004033483978861"},{"denom":"ASSET3","index":"0.000001179521531115"},{"denom":"ASSET4","index":"0.000011104072380722"},{"denom":"ASSET5","index":"0.000000915709876282"},{"denom":"ASSET6","index":"0.000003726793845693"},{"denom":"ASSET7","index":"0.000005707924895490"},{"denom":"ASSET8","index":"0.000007448500414296"},{"denom":"ASSET9","index":"0.000003217339382778"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003133427860009"},{"denom":"ASSET1","index":"0.000026571363581284"},{"denom":"ASSET10","index":"0.000021118003104150"},{"denom":"ASSET11","index":"0.000026381510155653"},{"denom":"ASSET12","index":"0.000025108485590780"},{"denom":"ASSET13","index":"0.000008282355352591"},{"denom":"ASSET14","index":"0.000024227637307493"},{"denom":"ASSET15","index":"0.000019037535386694"},{"denom":"ASSET16","index":"0.000011793447009555"},{"denom":"ASSET17","index":"0.000009226841180516"},{"denom":"ASSET18","index":"0.000003831770888939"},{"denom":"ASSET2","index":"0.000008040278303534"},{"denom":"ASSET3","index":"0.000002236402387063"},{"denom":"ASSET4","index":"0.000021543810534784"},{"denom":"ASSET5","index":"0.000001742508705183"},{"denom":"ASSET6","index":"0.000007033989161296"},{"denom":"ASSET7","index":"0.000011040340871930"},{"denom":"ASSET8","index":"0.000015056795520064"},{"denom":"ASSET9","index":"0.000006395464292965"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001556422065682"},{"denom":"ASSET1","index":"0.000012975233747354"},{"denom":"ASSET10","index":"0.000009039925804131"},{"denom":"ASSET11","index":"0.000012551842294036"},{"denom":"ASSET12","index":"0.000011303196313064"},{"denom":"ASSET13","index":"0.000003889859143149"},{"denom":"ASSET14","index":"0.000011725391745328"},{"denom":"ASSET15","index":"0.000008383310245172"},{"denom":"ASSET16","index":"0.000005844954893688"},{"denom":"ASSET17","index":"0.000004150990406731"},{"denom":"ASSET18","index":"0.000001977421476890"},{"denom":"ASSET2","index":"0.000003830058090421"},{"denom":"ASSET3","index":"0.000001120273054448"},{"denom":"ASSET4","index":"0.000010544520290781"},{"denom":"ASSET5","index":"0.000000869507306673"},{"denom":"ASSET6","index":"0.000003539424974160"},{"denom":"ASSET7","index":"0.000005420766093000"},{"denom":"ASSET8","index":"0.000007073268516732"},{"denom":"ASSET9","index":"0.000003055036447059"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003102345998156"},{"denom":"ASSET1","index":"0.000026324295521459"},{"denom":"ASSET10","index":"0.000021034709957123"},{"denom":"ASSET11","index":"0.000026165624152899"},{"denom":"ASSET12","index":"0.000024960753498443"},{"denom":"ASSET13","index":"0.000008219480216908"},{"denom":"ASSET14","index":"0.000024012126304297"},{"denom":"ASSET15","index":"0.000018942125813395"},{"denom":"ASSET16","index":"0.000011676379885795"},{"denom":"ASSET17","index":"0.000009172744202097"},{"denom":"ASSET18","index":"0.000003786686743681"},{"denom":"ASSET2","index":"0.000007973892542195"},{"denom":"ASSET3","index":"0.000002213622154517"},{"denom":"ASSET4","index":"0.000021341514997764"},{"denom":"ASSET5","index":"0.000001724677267981"},{"denom":"ASSET6","index":"0.000006959760131783"},{"denom":"ASSET7","index":"0.000010935767858794"},{"denom":"ASSET8","index":"0.000014942141973689"},{"denom":"ASSET9","index":"0.000006341977499472"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001602535700795"},{"denom":"ASSET1","index":"0.000013360208994045"},{"denom":"ASSET10","index":"0.000009307956057468"},{"denom":"ASSET11","index":"0.000012924500245282"},{"denom":"ASSET12","index":"0.000011638378499862"},{"denom":"ASSET13","index":"0.000004005127453862"},{"denom":"ASSET14","index":"0.000012073279383206"},{"denom":"ASSET15","index":"0.000008632311279566"},{"denom":"ASSET16","index":"0.000006018597363935"},{"denom":"ASSET17","index":"0.000004274146638048"},{"denom":"ASSET18","index":"0.000002036090141777"},{"denom":"ASSET2","index":"0.000003943729682095"},{"denom":"ASSET3","index":"0.000001153631816872"},{"denom":"ASSET4","index":"0.000010857441929150"},{"denom":"ASSET5","index":"0.000000895384171592"},{"denom":"ASSET6","index":"0.000003644280900498"},{"denom":"ASSET7","index":"0.000005581542172809"},{"denom":"ASSET8","index":"0.000007283176031543"},{"denom":"ASSET9","index":"0.000003145827937606"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003144114236048"},{"denom":"ASSET1","index":"0.000026672683120621"},{"denom":"ASSET10","index":"0.000021269722635007"},{"denom":"ASSET11","index":"0.000026500587720899"},{"denom":"ASSET12","index":"0.000025258297912053"},{"denom":"ASSET13","index":"0.000008323039503604"},{"denom":"ASSET14","index":"0.000024326015412045"},{"denom":"ASSET15","index":"0.000019162234595686"},{"denom":"ASSET16","index":"0.000011833945147558"},{"denom":"ASSET17","index":"0.000009281867675434"},{"denom":"ASSET18","index":"0.000003840349431676"},{"denom":"ASSET2","index":"0.000008076055447193"},{"denom":"ASSET3","index":"0.000002244145529651"},{"denom":"ASSET4","index":"0.000021624555086447"},{"denom":"ASSET5","index":"0.000001748086313596"},{"denom":"ASSET6","index":"0.000007055400333314"},{"denom":"ASSET7","index":"0.000011081362186058"},{"denom":"ASSET8","index":"0.000015130336137492"},{"denom":"ASSET9","index":"0.000006423586371910"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001633811359009"},{"denom":"ASSET1","index":"0.000013620164108551"},{"denom":"ASSET10","index":"0.000009487838038290"},{"denom":"ASSET11","index":"0.000013174776703502"},{"denom":"ASSET12","index":"0.000011864685946211"},{"denom":"ASSET13","index":"0.000004082355776036"},{"denom":"ASSET14","index":"0.000012307900729772"},{"denom":"ASSET15","index":"0.000008799117026580"},{"denom":"ASSET16","index":"0.000006135483082238"},{"denom":"ASSET17","index":"0.000004356106083529"},{"denom":"ASSET18","index":"0.000002074853521082"},{"denom":"ASSET2","index":"0.000004019349752882"},{"denom":"ASSET3","index":"0.000001175388225032"},{"denom":"ASSET4","index":"0.000011067333860098"},{"denom":"ASSET5","index":"0.000000912501024979"},{"denom":"ASSET6","index":"0.000003715182744556"},{"denom":"ASSET7","index":"0.000005690095677188"},{"denom":"ASSET8","index":"0.000007423847624648"},{"denom":"ASSET9","index":"0.000003206789316354"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003109600829404"},{"denom":"ASSET1","index":"0.000026362702045617"},{"denom":"ASSET10","index":"0.000020937844947102"},{"denom":"ASSET11","index":"0.000026169598808926"},{"denom":"ASSET12","index":"0.000024901798461360"},{"denom":"ASSET13","index":"0.000008215149609138"},{"denom":"ASSET14","index":"0.000024035954930107"},{"denom":"ASSET15","index":"0.000018878331344314"},{"denom":"ASSET16","index":"0.000011701775976010"},{"denom":"ASSET17","index":"0.000009149505282332"},{"denom":"ASSET18","index":"0.000003801954966508"},{"denom":"ASSET2","index":"0.000007974718303805"},{"denom":"ASSET3","index":"0.000002219037761573"},{"denom":"ASSET4","index":"0.000021373555319687"},{"denom":"ASSET5","index":"0.000001728657323000"},{"denom":"ASSET6","index":"0.000006980294033305"},{"denom":"ASSET7","index":"0.000010954522542925"},{"denom":"ASSET8","index":"0.000014935013269095"},{"denom":"ASSET9","index":"0.000006344057182602"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001356454583190"},{"denom":"ASSET1","index":"0.000011307707773056"},{"denom":"ASSET10","index":"0.000007878355411964"},{"denom":"ASSET11","index":"0.000010938987301217"},{"denom":"ASSET12","index":"0.000009850463994830"},{"denom":"ASSET13","index":"0.000003389876593037"},{"denom":"ASSET14","index":"0.000010218764511690"},{"denom":"ASSET15","index":"0.000007305956775156"},{"denom":"ASSET16","index":"0.000005094053899100"},{"denom":"ASSET17","index":"0.000003617492191826"},{"denom":"ASSET18","index":"0.000001723075280133"},{"denom":"ASSET2","index":"0.000003337802175602"},{"denom":"ASSET3","index":"0.000000976395326909"},{"denom":"ASSET4","index":"0.000009189454857387"},{"denom":"ASSET5","index":"0.000000758018737665"},{"denom":"ASSET6","index":"0.000003084569323074"},{"denom":"ASSET7","index":"0.000004724073562323"},{"denom":"ASSET8","index":"0.000006164519141376"},{"denom":"ASSET9","index":"0.000002662514568862"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000002920257070141"},{"denom":"ASSET1","index":"0.000024811653868653"},{"denom":"ASSET10","index":"0.000020012294768332"},{"denom":"ASSET11","index":"0.000024710629923001"},{"denom":"ASSET12","index":"0.000023666550441425"},{"denom":"ASSET13","index":"0.000007769918885884"},{"denom":"ASSET14","index":"0.000022647790193256"},{"denom":"ASSET15","index":"0.000017987461600930"},{"denom":"ASSET16","index":"0.000010993196459757"},{"denom":"ASSET17","index":"0.000008697266331114"},{"denom":"ASSET18","index":"0.000003553540715950"},{"denom":"ASSET2","index":"0.000007529733395993"},{"denom":"ASSET3","index":"0.000002082581454906"},{"denom":"ASSET4","index":"0.000020111524804667"},{"denom":"ASSET5","index":"0.000001623122955496"},{"denom":"ASSET6","index":"0.000006544727800067"},{"denom":"ASSET7","index":"0.000010303065547743"},{"denom":"ASSET8","index":"0.000014124873274804"},{"denom":"ASSET9","index":"0.000005987532811110"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001730803097805"},{"denom":"ASSET1","index":"0.000014429128492036"},{"denom":"ASSET10","index":"0.000010053081326419"},{"denom":"ASSET11","index":"0.000013956042311970"},{"denom":"ASSET12","index":"0.000012568515161896"},{"denom":"ASSET13","index":"0.000004324123072683"},{"denom":"ASSET14","index":"0.000013038716670133"},{"denom":"ASSET15","index":"0.000009320374681681"},{"denom":"ASSET16","index":"0.000006499165632259"},{"denom":"ASSET17","index":"0.000004615474927481"},{"denom":"ASSET18","index":"0.000002198119934213"},{"denom":"ASSET2","index":"0.000004257775620601"},{"denom":"ASSET3","index":"0.000001243293558590"},{"denom":"ASSET4","index":"0.000011726190987631"},{"denom":"ASSET5","index":"0.000000966365062941"},{"denom":"ASSET6","index":"0.000003934692375677"},{"denom":"ASSET7","index":"0.000006026079452192"},{"denom":"ASSET8","index":"0.000007863615407695"},{"denom":"ASSET9","index":"0.000003395258743528"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003241945367060"},{"denom":"ASSET1","index":"0.000027480716546724"},{"denom":"ASSET10","index":"0.000021780901079221"},{"denom":"ASSET11","index":"0.000027265989011084"},{"denom":"ASSET12","index":"0.000025921947969478"},{"denom":"ASSET13","index":"0.000008556984130745"},{"denom":"ASSET14","index":"0.000025051754134356"},{"denom":"ASSET15","index":"0.000019643848931612"},{"denom":"ASSET16","index":"0.000012200322352703"},{"denom":"ASSET17","index":"0.000009524928673174"},{"denom":"ASSET18","index":"0.000003966981346299"},{"denom":"ASSET2","index":"0.000008309018225650"},{"denom":"ASSET3","index":"0.000002312540225621"},{"denom":"ASSET4","index":"0.000022282443818183"},{"denom":"ASSET5","index":"0.000001802193647755"},{"denom":"ASSET6","index":"0.000007278646216530"},{"denom":"ASSET7","index":"0.000011418356902196"},{"denom":"ASSET8","index":"0.000015557459098515"},{"denom":"ASSET9","index":"0.000006608754258977"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001631665384825"},{"denom":"ASSET1","index":"0.000013602742609312"},{"denom":"ASSET10","index":"0.000009477179623123"},{"denom":"ASSET11","index":"0.000013159027954757"},{"denom":"ASSET12","index":"0.000011849393704263"},{"denom":"ASSET13","index":"0.000004077627053980"},{"denom":"ASSET14","index":"0.000012292493795584"},{"denom":"ASSET15","index":"0.000008788868801652"},{"denom":"ASSET16","index":"0.000006127810000788"},{"denom":"ASSET17","index":"0.000004351722256101"},{"denom":"ASSET18","index":"0.000002072921786447"},{"denom":"ASSET2","index":"0.000004015556167401"},{"denom":"ASSET3","index":"0.000001174430339134"},{"denom":"ASSET4","index":"0.000011054148880171"},{"denom":"ASSET5","index":"0.000000911397275215"},{"denom":"ASSET6","index":"0.000003710118240373"},{"denom":"ASSET7","index":"0.000005682866219766"},{"denom":"ASSET8","index":"0.000007415319974879"},{"denom":"ASSET9","index":"0.000003202489009539"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003079719434352"},{"denom":"ASSET1","index":"0.000026105925494605"},{"denom":"ASSET10","index":"0.000020711970439773"},{"denom":"ASSET11","index":"0.000025910008103106"},{"denom":"ASSET12","index":"0.000024641613628664"},{"denom":"ASSET13","index":"0.000008133110770201"},{"denom":"ASSET14","index":"0.000023800542954419"},{"denom":"ASSET15","index":"0.000018678884312278"},{"denom":"ASSET16","index":"0.000011589749383737"},{"denom":"ASSET17","index":"0.000009055208366452"},{"denom":"ASSET18","index":"0.000003767697278786"},{"denom":"ASSET2","index":"0.000007896757003962"},{"denom":"ASSET3","index":"0.000002198611212202"},{"denom":"ASSET4","index":"0.000021166859181475"},{"denom":"ASSET5","index":"0.000001712166144109"},{"denom":"ASSET6","index":"0.000006913910929446"},{"denom":"ASSET7","index":"0.000010848237821893"},{"denom":"ASSET8","index":"0.000014785764472138"},{"denom":"ASSET9","index":"0.000006281127943464"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001520990142264"},{"denom":"ASSET1","index":"0.000012680102108631"},{"denom":"ASSET10","index":"0.000008834326429376"},{"denom":"ASSET11","index":"0.000012266893306329"},{"denom":"ASSET12","index":"0.000011046354389007"},{"denom":"ASSET13","index":"0.000003801591675587"},{"denom":"ASSET14","index":"0.000011458856247250"},{"denom":"ASSET15","index":"0.000008193128168148"},{"denom":"ASSET16","index":"0.000005712107994187"},{"denom":"ASSET17","index":"0.000004056798480773"},{"denom":"ASSET18","index":"0.000001932431584420"},{"denom":"ASSET2","index":"0.000003743268790745"},{"denom":"ASSET3","index":"0.000001095056346905"},{"denom":"ASSET4","index":"0.000010304770071444"},{"denom":"ASSET5","index":"0.000000849746758541"},{"denom":"ASSET6","index":"0.000003459077279153"},{"denom":"ASSET7","index":"0.000005297485303768"},{"denom":"ASSET8","index":"0.000006912499005837"},{"denom":"ASSET9","index":"0.000002985778231863"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003063170165442"},{"denom":"ASSET1","index":"0.000025996358951928"},{"denom":"ASSET10","index":"0.000020799618544072"},{"denom":"ASSET11","index":"0.000025846936295403"},{"denom":"ASSET12","index":"0.000024670295822131"},{"denom":"ASSET13","index":"0.000008120644896033"},{"denom":"ASSET14","index":"0.000023715222729701"},{"denom":"ASSET15","index":"0.000018725986369791"},{"denom":"ASSET16","index":"0.000011529047312284"},{"denom":"ASSET17","index":"0.000009065966880203"},{"denom":"ASSET18","index":"0.000003737409049681"},{"denom":"ASSET2","index":"0.000007876841198043"},{"denom":"ASSET3","index":"0.000002185992003768"},{"denom":"ASSET4","index":"0.000021074917159843"},{"denom":"ASSET5","index":"0.000001702800306431"},{"denom":"ASSET6","index":"0.000006871093729972"},{"denom":"ASSET7","index":"0.000010798830402478"},{"denom":"ASSET8","index":"0.000014762015379742"},{"denom":"ASSET9","index":"0.000006264517424621"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001519669987195"},{"denom":"ASSET1","index":"0.000012676623405048"},{"denom":"ASSET10","index":"0.000008831600766261"},{"denom":"ASSET11","index":"0.000012262448940742"},{"denom":"ASSET12","index":"0.000011042591812037"},{"denom":"ASSET13","index":"0.000003799690110356"},{"denom":"ASSET14","index":"0.000011454705706870"},{"denom":"ASSET15","index":"0.000008189733375059"},{"denom":"ASSET16","index":"0.000005709838012905"},{"denom":"ASSET17","index":"0.000004055200725152"},{"denom":"ASSET18","index":"0.000001931783882027"},{"denom":"ASSET2","index":"0.000003741994165079"},{"denom":"ASSET3","index":"0.000001094162390780"},{"denom":"ASSET4","index":"0.000010301817086076"},{"denom":"ASSET5","index":"0.000000848954623355"},{"denom":"ASSET6","index":"0.000003457635577645"},{"denom":"ASSET7","index":"0.000005295663548598"},{"denom":"ASSET8","index":"0.000006910119731604"},{"denom":"ASSET9","index":"0.000002984734883325"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003051401969864"},{"denom":"ASSET1","index":"0.000025903543471827"},{"denom":"ASSET10","index":"0.000020717104247015"},{"denom":"ASSET11","index":"0.000025751820078700"},{"denom":"ASSET12","index":"0.000024575704795191"},{"denom":"ASSET13","index":"0.000008089460542782"},{"denom":"ASSET14","index":"0.000023629519286555"},{"denom":"ASSET15","index":"0.000018652475785738"},{"denom":"ASSET16","index":"0.000011487598582804"},{"denom":"ASSET17","index":"0.000009031027466449"},{"denom":"ASSET18","index":"0.000003724432134289"},{"denom":"ASSET2","index":"0.000007847588407204"},{"denom":"ASSET3","index":"0.000002177732310384"},{"denom":"ASSET4","index":"0.000021000151540181"},{"denom":"ASSET5","index":"0.000001696165098739"},{"denom":"ASSET6","index":"0.000006846477479182"},{"denom":"ASSET7","index":"0.000010760324594985"},{"denom":"ASSET8","index":"0.000014706911787677"},{"denom":"ASSET9","index":"0.000006241583848480"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001392192847149"},{"denom":"ASSET1","index":"0.000011611450847386"},{"denom":"ASSET10","index":"0.000008088781067478"},{"denom":"ASSET11","index":"0.000011231761889073"},{"denom":"ASSET12","index":"0.000010115195100551"},{"denom":"ASSET13","index":"0.000003480482117873"},{"denom":"ASSET14","index":"0.000010492071548062"},{"denom":"ASSET15","index":"0.000007502372565194"},{"denom":"ASSET16","index":"0.000005229863836918"},{"denom":"ASSET17","index":"0.000003713920514466"},{"denom":"ASSET18","index":"0.000001769069294661"},{"denom":"ASSET2","index":"0.000003427044412629"},{"denom":"ASSET3","index":"0.000001002660101028"},{"denom":"ASSET4","index":"0.000009435973741790"},{"denom":"ASSET5","index":"0.000000777659236842"},{"denom":"ASSET6","index":"0.000003166887163415"},{"denom":"ASSET7","index":"0.000004850174878604"},{"denom":"ASSET8","index":"0.000006329555560626"},{"denom":"ASSET9","index":"0.000002733760499857"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000002834261839987"},{"denom":"ASSET1","index":"0.000024063735726127"},{"denom":"ASSET10","index":"0.000019278012414561"},{"denom":"ASSET11","index":"0.000023930766794440"},{"denom":"ASSET12","index":"0.000022855511266190"},{"denom":"ASSET13","index":"0.000007519422832827"},{"denom":"ASSET14","index":"0.000021953268691937"},{"denom":"ASSET15","index":"0.000017352048046781"},{"denom":"ASSET16","index":"0.000010669562284438"},{"denom":"ASSET17","index":"0.000008398158415340"},{"denom":"ASSET18","index":"0.000003456710779118"},{"denom":"ASSET2","index":"0.000007292324829772"},{"denom":"ASSET3","index":"0.000002022818722752"},{"denom":"ASSET4","index":"0.000019507505991506"},{"denom":"ASSET5","index":"0.000001575196067099"},{"denom":"ASSET6","index":"0.000006357416996111"},{"denom":"ASSET7","index":"0.000009994574317511"},{"denom":"ASSET8","index":"0.000013669954492341"},{"denom":"ASSET9","index":"0.000005799591528398"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001553840185331"},{"denom":"ASSET1","index":"0.000012958259817171"},{"denom":"ASSET10","index":"0.000009028099224953"},{"denom":"ASSET11","index":"0.000012533831248030"},{"denom":"ASSET12","index":"0.000011286922457332"},{"denom":"ASSET13","index":"0.000003884600463327"},{"denom":"ASSET14","index":"0.000011708953124953"},{"denom":"ASSET15","index":"0.000008371074208317"},{"denom":"ASSET16","index":"0.000005836492301072"},{"denom":"ASSET17","index":"0.000004143573827548"},{"denom":"ASSET18","index":"0.000001973472951431"},{"denom":"ASSET2","index":"0.000003824652925312"},{"denom":"ASSET3","index":"0.000001117422108587"},{"denom":"ASSET4","index":"0.000010529185576831"},{"denom":"ASSET5","index":"0.000000868040350447"},{"denom":"ASSET6","index":"0.000003534506841323"},{"denom":"ASSET7","index":"0.000005412063731931"},{"denom":"ASSET8","index":"0.000007064217879605"},{"denom":"ASSET9","index":"0.000003050130734168"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000002875427361068"},{"denom":"ASSET1","index":"0.000024372739255487"},{"denom":"ASSET10","index":"0.000019284464921318"},{"denom":"ASSET11","index":"0.000024174413552556"},{"denom":"ASSET12","index":"0.000022964657814992"},{"denom":"ASSET13","index":"0.000007586106071195"},{"denom":"ASSET14","index":"0.000022214775035212"},{"denom":"ASSET15","index":"0.000017399266119679"},{"denom":"ASSET16","index":"0.000010822432031544"},{"denom":"ASSET17","index":"0.000008437405253940"},{"denom":"ASSET18","index":"0.000003520101477575"},{"denom":"ASSET2","index":"0.000007366931162610"},{"denom":"ASSET3","index":"0.000002051556015935"},{"denom":"ASSET4","index":"0.000019761188522524"},{"denom":"ASSET5","index":"0.000001598363223465"},{"denom":"ASSET6","index":"0.000006458982880806"},{"denom":"ASSET7","index":"0.000010127316932433"},{"denom":"ASSET8","index":"0.000013792105044122"},{"denom":"ASSET9","index":"0.000005859963066840"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001468329025254"},{"denom":"ASSET1","index":"0.000012248466172689"},{"denom":"ASSET10","index":"0.000008533242661533"},{"denom":"ASSET11","index":"0.000011849890220686"},{"denom":"ASSET12","index":"0.000010670683647662"},{"denom":"ASSET13","index":"0.000003671855143322"},{"denom":"ASSET14","index":"0.000011069259599665"},{"denom":"ASSET15","index":"0.000007913694549611"},{"denom":"ASSET16","index":"0.000005518108516848"},{"denom":"ASSET17","index":"0.000003917609227717"},{"denom":"ASSET18","index":"0.000001866904977257"},{"denom":"ASSET2","index":"0.000003616095813249"},{"denom":"ASSET3","index":"0.000001057362111013"},{"denom":"ASSET4","index":"0.000009954072998206"},{"denom":"ASSET5","index":"0.000000819868668110"},{"denom":"ASSET6","index":"0.000003341429483630"},{"denom":"ASSET7","index":"0.000005117467404472"},{"denom":"ASSET8","index":"0.000006676663486141"},{"denom":"ASSET9","index":"0.000002882963880808"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000002995432004660"},{"denom":"ASSET1","index":"0.000025434255671185"},{"denom":"ASSET10","index":"0.000020381248485322"},{"denom":"ASSET11","index":"0.000025297016742096"},{"denom":"ASSET12","index":"0.000024161457271020"},{"denom":"ASSET13","index":"0.000007948725545453"},{"denom":"ASSET14","index":"0.000023205881885085"},{"denom":"ASSET15","index":"0.000018343715148864"},{"denom":"ASSET16","index":"0.000011277889207663"},{"denom":"ASSET17","index":"0.000008877556775335"},{"denom":"ASSET18","index":"0.000003654253802028"},{"denom":"ASSET2","index":"0.000007709102798424"},{"denom":"ASSET3","index":"0.000002137627884226"},{"denom":"ASSET4","index":"0.000020618696770430"},{"denom":"ASSET5","index":"0.000001664440090804"},{"denom":"ASSET6","index":"0.000006720260763181"},{"denom":"ASSET7","index":"0.000010565171316359"},{"denom":"ASSET8","index":"0.000014449121165534"},{"denom":"ASSET9","index":"0.000006129217088192"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001484659776814"},{"denom":"ASSET1","index":"0.000012377911876883"},{"denom":"ASSET10","index":"0.000008623797972416"},{"denom":"ASSET11","index":"0.000011974339842928"},{"denom":"ASSET12","index":"0.000010782780641408"},{"denom":"ASSET13","index":"0.000003710691597017"},{"denom":"ASSET14","index":"0.000011185714112019"},{"denom":"ASSET15","index":"0.000007997367331102"},{"denom":"ASSET16","index":"0.000005575935127370"},{"denom":"ASSET17","index":"0.000003959731301514"},{"denom":"ASSET18","index":"0.000001886316120734"},{"denom":"ASSET2","index":"0.000003653859459324"},{"denom":"ASSET3","index":"0.000001068955039306"},{"denom":"ASSET4","index":"0.000010059288371675"},{"denom":"ASSET5","index":"0.000000829493784981"},{"denom":"ASSET6","index":"0.000003376084404307"},{"denom":"ASSET7","index":"0.000005171085966725"},{"denom":"ASSET8","index":"0.000006747698865199"},{"denom":"ASSET9","index":"0.000002914403105969"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000002967027008461"},{"denom":"ASSET1","index":"0.000025180120058697"},{"denom":"ASSET10","index":"0.000020126919929476"},{"denom":"ASSET11","index":"0.000025029678796477"},{"denom":"ASSET12","index":"0.000023880507059092"},{"denom":"ASSET13","index":"0.000007862872062626"},{"denom":"ASSET14","index":"0.000022968832134984"},{"denom":"ASSET15","index":"0.000018123195207046"},{"denom":"ASSET16","index":"0.000011168095360491"},{"denom":"ASSET17","index":"0.000008775186029853"},{"denom":"ASSET18","index":"0.000003621217117579"},{"denom":"ASSET2","index":"0.000007627534970337"},{"denom":"ASSET3","index":"0.000002117298518473"},{"denom":"ASSET4","index":"0.000020413769751333"},{"denom":"ASSET5","index":"0.000001649183760435"},{"denom":"ASSET6","index":"0.000006656038319196"},{"denom":"ASSET7","index":"0.000010459966878994"},{"denom":"ASSET8","index":"0.000014293861494285"},{"denom":"ASSET9","index":"0.000006066597621916"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001508631993599"},{"denom":"ASSET1","index":"0.000012578103553994"},{"denom":"ASSET10","index":"0.000008763023138279"},{"denom":"ASSET11","index":"0.000012169014387632"},{"denom":"ASSET12","index":"0.000010956555546150"},{"denom":"ASSET13","index":"0.000003770654442897"},{"denom":"ASSET14","index":"0.000011367495794714"},{"denom":"ASSET15","index":"0.000008126250861227"},{"denom":"ASSET16","index":"0.000005666162616450"},{"denom":"ASSET17","index":"0.000004024252704398"},{"denom":"ASSET18","index":"0.000001915870077761"},{"denom":"ASSET2","index":"0.000003713270894674"},{"denom":"ASSET3","index":"0.000001084734169631"},{"denom":"ASSET4","index":"0.000010221675912459"},{"denom":"ASSET5","index":"0.000000842242401334"},{"denom":"ASSET6","index":"0.000003430055317962"},{"denom":"ASSET7","index":"0.000005255222367887"},{"denom":"ASSET8","index":"0.000006856408471522"},{"denom":"ASSET9","index":"0.000002961731521176"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000002968383248598"},{"denom":"ASSET1","index":"0.000025185581850199"},{"denom":"ASSET10","index":"0.000020091193699906"},{"denom":"ASSET11","index":"0.000025026167595767"},{"denom":"ASSET12","index":"0.000023854952987524"},{"denom":"ASSET13","index":"0.000007859725566891"},{"denom":"ASSET14","index":"0.000022971118914045"},{"denom":"ASSET15","index":"0.000018098517255117"},{"denom":"ASSET16","index":"0.000011173004258039"},{"denom":"ASSET17","index":"0.000008766603022733"},{"denom":"ASSET18","index":"0.000003624559740525"},{"denom":"ASSET2","index":"0.000007626317523237"},{"denom":"ASSET3","index":"0.000002117313008939"},{"denom":"ASSET4","index":"0.000020418576076670"},{"denom":"ASSET5","index":"0.000001649450966157"},{"denom":"ASSET6","index":"0.000006660362585584"},{"denom":"ASSET7","index":"0.000010463779822658"},{"denom":"ASSET8","index":"0.000014287735496216"},{"denom":"ASSET9","index":"0.000006065360072421"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001603618851190"},{"denom":"ASSET1","index":"0.000013373450792115"},{"denom":"ASSET10","index":"0.000009317368604669"},{"denom":"ASSET11","index":"0.000012937408123124"},{"denom":"ASSET12","index":"0.000011650307554501"},{"denom":"ASSET13","index":"0.000004008493774333"},{"denom":"ASSET14","index":"0.000012085243516211"},{"denom":"ASSET15","index":"0.000008640063748266"},{"denom":"ASSET16","index":"0.000006023807734317"},{"denom":"ASSET17","index":"0.000004278530351069"},{"denom":"ASSET18","index":"0.000002037448105618"},{"denom":"ASSET2","index":"0.000003947624873839"},{"denom":"ASSET3","index":"0.000001154295694818"},{"denom":"ASSET4","index":"0.000010867865506336"},{"denom":"ASSET5","index":"0.000000896432898181"},{"denom":"ASSET6","index":"0.000003647707200497"},{"denom":"ASSET7","index":"0.000005586658358043"},{"denom":"ASSET8","index":"0.000007289880864586"},{"denom":"ASSET9","index":"0.000003148582216449"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003259379166935"},{"denom":"ASSET1","index":"0.000027669546155668"},{"denom":"ASSET10","index":"0.000022163157427920"},{"denom":"ASSET11","index":"0.000027516665793422"},{"denom":"ASSET12","index":"0.000026276569409586"},{"denom":"ASSET13","index":"0.000008645229164029"},{"denom":"ASSET14","index":"0.000025243382728696"},{"denom":"ASSET15","index":"0.000019947981783747"},{"denom":"ASSET16","index":"0.000012268920188963"},{"denom":"ASSET17","index":"0.000009656339783182"},{"denom":"ASSET18","index":"0.000003975233530089"},{"denom":"ASSET2","index":"0.000008385350610200"},{"denom":"ASSET3","index":"0.000002325230588439"},{"denom":"ASSET4","index":"0.000022430515898086"},{"denom":"ASSET5","index":"0.000001812256369527"},{"denom":"ASSET6","index":"0.000007311001085881"},{"denom":"ASSET7","index":"0.000011492885803011"},{"denom":"ASSET8","index":"0.000015716897251793"},{"denom":"ASSET9","index":"0.000006668589151432"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001669758803356"},{"denom":"ASSET1","index":"0.000013919924903508"},{"denom":"ASSET10","index":"0.000009698114015232"},{"denom":"ASSET11","index":"0.000013466332119255"},{"denom":"ASSET12","index":"0.000012126099781115"},{"denom":"ASSET13","index":"0.000004173211661392"},{"denom":"ASSET14","index":"0.000012579297449702"},{"denom":"ASSET15","index":"0.000008994017898909"},{"denom":"ASSET16","index":"0.000006270880730729"},{"denom":"ASSET17","index":"0.000004453348668392"},{"denom":"ASSET18","index":"0.000002121376009280"},{"denom":"ASSET2","index":"0.000004109202923545"},{"denom":"ASSET3","index":"0.000001201941855137"},{"denom":"ASSET4","index":"0.000011312556625386"},{"denom":"ASSET5","index":"0.000000932868086778"},{"denom":"ASSET6","index":"0.000003797061547622"},{"denom":"ASSET7","index":"0.000005815312368147"},{"denom":"ASSET8","index":"0.000007588591475923"},{"denom":"ASSET9","index":"0.000003277484447193"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003314119794923"},{"denom":"ASSET1","index":"0.000028119315186385"},{"denom":"ASSET10","index":"0.000022456877991933"},{"denom":"ASSET11","index":"0.000027947185249485"},{"denom":"ASSET12","index":"0.000026653541530161"},{"denom":"ASSET13","index":"0.000008778725953540"},{"denom":"ASSET14","index":"0.000025648491290636"},{"denom":"ASSET15","index":"0.000020225495910600"},{"denom":"ASSET16","index":"0.000012473684612014"},{"denom":"ASSET17","index":"0.000009794866581105"},{"denom":"ASSET18","index":"0.000004045992889163"},{"denom":"ASSET2","index":"0.000008517017325485"},{"denom":"ASSET3","index":"0.000002365208974685"},{"denom":"ASSET4","index":"0.000022797013251164"},{"denom":"ASSET5","index":"0.000001842432416817"},{"denom":"ASSET6","index":"0.000007435560259585"},{"denom":"ASSET7","index":"0.000011681616070006"},{"denom":"ASSET8","index":"0.000015958852395270"},{"denom":"ASSET9","index":"0.000006773561992828"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001334597814253"},{"denom":"ASSET1","index":"0.000011126876577448"},{"denom":"ASSET10","index":"0.000007751884027943"},{"denom":"ASSET11","index":"0.000010763759508328"},{"denom":"ASSET12","index":"0.000009692944381721"},{"denom":"ASSET13","index":"0.000003335543967388"},{"denom":"ASSET14","index":"0.000010055110882597"},{"denom":"ASSET15","index":"0.000007189147627631"},{"denom":"ASSET16","index":"0.000005012346349398"},{"denom":"ASSET17","index":"0.000003559878072918"},{"denom":"ASSET18","index":"0.000001695813746885"},{"denom":"ASSET2","index":"0.000003284213282225"},{"denom":"ASSET3","index":"0.000000960549210329"},{"denom":"ASSET4","index":"0.000009042280418860"},{"denom":"ASSET5","index":"0.000000745720787237"},{"denom":"ASSET6","index":"0.000003035164402357"},{"denom":"ASSET7","index":"0.000004648278712034"},{"denom":"ASSET8","index":"0.000006065575963495"},{"denom":"ASSET9","index":"0.000002619766079830"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000002933404194828"},{"denom":"ASSET1","index":"0.000024932632498194"},{"denom":"ASSET10","index":"0.000020157113753706"},{"denom":"ASSET11","index":"0.000024842878528839"},{"denom":"ASSET12","index":"0.000023817726072485"},{"denom":"ASSET13","index":"0.000007813243799971"},{"denom":"ASSET14","index":"0.000022761898108549"},{"denom":"ASSET15","index":"0.000018109267957138"},{"denom":"ASSET16","index":"0.000011043189892304"},{"denom":"ASSET17","index":"0.000008753164046701"},{"denom":"ASSET18","index":"0.000003567063844603"},{"denom":"ASSET2","index":"0.000007569762146700"},{"denom":"ASSET3","index":"0.000002091389836038"},{"denom":"ASSET4","index":"0.000020208488830330"},{"denom":"ASSET5","index":"0.000001630166870108"},{"denom":"ASSET6","index":"0.000006572642272968"},{"denom":"ASSET7","index":"0.000010351822041320"},{"denom":"ASSET8","index":"0.000014203644477234"},{"denom":"ASSET9","index":"0.000006019030096188"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001655550281073"},{"denom":"ASSET1","index":"0.000013803766186213"},{"denom":"ASSET10","index":"0.000009616885369480"},{"denom":"ASSET11","index":"0.000013353770421464"},{"denom":"ASSET12","index":"0.000012024654915933"},{"denom":"ASSET13","index":"0.000004138458266908"},{"denom":"ASSET14","index":"0.000012474650680682"},{"denom":"ASSET15","index":"0.000008918932754767"},{"denom":"ASSET16","index":"0.000006218123294721"},{"denom":"ASSET17","index":"0.000004415635621077"},{"denom":"ASSET18","index":"0.000002103876302725"},{"denom":"ASSET2","index":"0.000004075008029207"},{"denom":"ASSET3","index":"0.000001191361699996"},{"denom":"ASSET4","index":"0.000011218168999888"},{"denom":"ASSET5","index":"0.000000925037675960"},{"denom":"ASSET6","index":"0.000003765270684639"},{"denom":"ASSET7","index":"0.000005766457786874"},{"denom":"ASSET8","index":"0.000007524697268437"},{"denom":"ASSET9","index":"0.000003250154939091"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003215122291080"},{"denom":"ASSET1","index":"0.000027271082473775"},{"denom":"ASSET10","index":"0.000021717714787675"},{"denom":"ASSET11","index":"0.000027088129911249"},{"denom":"ASSET12","index":"0.000025803190697535"},{"denom":"ASSET13","index":"0.000008506451165719"},{"denom":"ASSET14","index":"0.000024869823256717"},{"denom":"ASSET15","index":"0.000019571375436743"},{"denom":"ASSET16","index":"0.000012101015548893"},{"denom":"ASSET17","index":"0.000009481514658039"},{"denom":"ASSET18","index":"0.000003929002426467"},{"denom":"ASSET2","index":"0.000008255375778501"},{"denom":"ASSET3","index":"0.000002294279906946"},{"denom":"ASSET4","index":"0.000022110354928469"},{"denom":"ASSET5","index":"0.000001787716273475"},{"denom":"ASSET6","index":"0.000007215985074700"},{"denom":"ASSET7","index":"0.000011330188741735"},{"denom":"ASSET8","index":"0.000015463524362026"},{"denom":"ASSET9","index":"0.000006565858639552"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001631513498845"},{"denom":"ASSET1","index":"0.000013601788709515"},{"denom":"ASSET10","index":"0.000009476711328689"},{"denom":"ASSET11","index":"0.000013158178840821"},{"denom":"ASSET12","index":"0.000011848922966954"},{"denom":"ASSET13","index":"0.000004077884841603"},{"denom":"ASSET14","index":"0.000012291633930140"},{"denom":"ASSET15","index":"0.000008788599161546"},{"denom":"ASSET16","index":"0.000006127389402135"},{"denom":"ASSET17","index":"0.000004351601569095"},{"denom":"ASSET18","index":"0.000002072876103766"},{"denom":"ASSET2","index":"0.000004014961455973"},{"denom":"ASSET3","index":"0.000001174420047516"},{"denom":"ASSET4","index":"0.000011053841044239"},{"denom":"ASSET5","index":"0.000000911490186131"},{"denom":"ASSET6","index":"0.000003710232488420"},{"denom":"ASSET7","index":"0.000005682431175178"},{"denom":"ASSET8","index":"0.000007415071543785"},{"denom":"ASSET9","index":"0.000003202800328586"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003159157648171"},{"denom":"ASSET1","index":"0.000026793811254639"},{"denom":"ASSET10","index":"0.000021330257270132"},{"denom":"ASSET11","index":"0.000026611245447042"},{"denom":"ASSET12","index":"0.000025345616114893"},{"denom":"ASSET13","index":"0.000008356504281369"},{"denom":"ASSET14","index":"0.000024433401122602"},{"denom":"ASSET15","index":"0.000019223209713353"},{"denom":"ASSET16","index":"0.000011890026449509"},{"denom":"ASSET17","index":"0.000009313941892173"},{"denom":"ASSET18","index":"0.000003860849124980"},{"denom":"ASSET2","index":"0.000008109777269158"},{"denom":"ASSET3","index":"0.000002255070941538"},{"denom":"ASSET4","index":"0.000021723391251034"},{"denom":"ASSET5","index":"0.000001756486235957"},{"denom":"ASSET6","index":"0.000007090574282328"},{"denom":"ASSET7","index":"0.000011132530538444"},{"denom":"ASSET8","index":"0.000015191323807650"},{"denom":"ASSET9","index":"0.000006450832118924"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001649724724935"},{"denom":"ASSET1","index":"0.000013753740147655"},{"denom":"ASSET10","index":"0.000009582563441278"},{"denom":"ASSET11","index":"0.000013305204895691"},{"denom":"ASSET12","index":"0.000011981321923304"},{"denom":"ASSET13","index":"0.000004123306127916"},{"denom":"ASSET14","index":"0.000012429052627730"},{"denom":"ASSET15","index":"0.000008886629821639"},{"denom":"ASSET16","index":"0.000006195820583626"},{"denom":"ASSET17","index":"0.000004400070480698"},{"denom":"ASSET18","index":"0.000002096248608056"},{"denom":"ASSET2","index":"0.000004060149146250"},{"denom":"ASSET3","index":"0.000001187512164840"},{"denom":"ASSET4","index":"0.000011177176659918"},{"denom":"ASSET5","index":"0.000000921609203810"},{"denom":"ASSET6","index":"0.000003751605165751"},{"denom":"ASSET7","index":"0.000005746078510357"},{"denom":"ASSET8","index":"0.000007497578498742"},{"denom":"ASSET9","index":"0.000003238303837047"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003253063831874"},{"denom":"ASSET1","index":"0.000027597326034286"},{"denom":"ASSET10","index":"0.000022021617243178"},{"denom":"ASSET11","index":"0.000027423138617092"},{"denom":"ASSET12","index":"0.000026144931484859"},{"denom":"ASSET13","index":"0.000008613299773809"},{"denom":"ASSET14","index":"0.000025170855267573"},{"denom":"ASSET15","index":"0.000019836826910831"},{"denom":"ASSET16","index":"0.000012243184702458"},{"denom":"ASSET17","index":"0.000009607701845932"},{"denom":"ASSET18","index":"0.000003972764374377"},{"denom":"ASSET2","index":"0.000008357484440725"},{"denom":"ASSET3","index":"0.000002321502734814"},{"denom":"ASSET4","index":"0.000022373906168402"},{"denom":"ASSET5","index":"0.000001808481766797"},{"denom":"ASSET6","index":"0.000007298802623853"},{"denom":"ASSET7","index":"0.000011465220726545"},{"denom":"ASSET8","index":"0.000015658035812384"},{"denom":"ASSET9","index":"0.000006646717011605"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001698975992122"},{"denom":"ASSET1","index":"0.000014167905922226"},{"denom":"ASSET10","index":"0.000009870625403756"},{"denom":"ASSET11","index":"0.000013705415046027"},{"denom":"ASSET12","index":"0.000012342129737421"},{"denom":"ASSET13","index":"0.000004247439980305"},{"denom":"ASSET14","index":"0.000012803154715439"},{"denom":"ASSET15","index":"0.000009153801193103"},{"denom":"ASSET16","index":"0.000006381787732272"},{"denom":"ASSET17","index":"0.000004532557176567"},{"denom":"ASSET18","index":"0.000002159268021049"},{"denom":"ASSET2","index":"0.000004182207511237"},{"denom":"ASSET3","index":"0.000001223292032291"},{"denom":"ASSET4","index":"0.000011513897264989"},{"denom":"ASSET5","index":"0.000000949169072389"},{"denom":"ASSET6","index":"0.000003864840554987"},{"denom":"ASSET7","index":"0.000005918563906982"},{"denom":"ASSET8","index":"0.000007723084568158"},{"denom":"ASSET9","index":"0.000003335651311539"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003402845442317"},{"denom":"ASSET1","index":"0.000028880571174740"},{"denom":"ASSET10","index":"0.000023090578471272"},{"denom":"ASSET11","index":"0.000028709364204549"},{"denom":"ASSET12","index":"0.000027394626213612"},{"denom":"ASSET13","index":"0.000009019217107214"},{"denom":"ASSET14","index":"0.000026344557012563"},{"denom":"ASSET15","index":"0.000020791017438004"},{"denom":"ASSET16","index":"0.000012808886991708"},{"denom":"ASSET17","index":"0.000010066951390727"},{"denom":"ASSET18","index":"0.000004153478710890"},{"denom":"ASSET2","index":"0.000008748954704305"},{"denom":"ASSET3","index":"0.000002428490976730"},{"denom":"ASSET4","index":"0.000023413646091842"},{"denom":"ASSET5","index":"0.000001891364101695"},{"denom":"ASSET6","index":"0.000007634563338572"},{"denom":"ASSET7","index":"0.000011996876612297"},{"denom":"ASSET8","index":"0.000016395615103037"},{"denom":"ASSET9","index":"0.000006958318142576"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001515088644413"},{"denom":"ASSET1","index":"0.000012634136557163"},{"denom":"ASSET10","index":"0.000008802109028204"},{"denom":"ASSET11","index":"0.000012222352143486"},{"denom":"ASSET12","index":"0.000011006111259210"},{"denom":"ASSET13","index":"0.000003787721611031"},{"denom":"ASSET14","index":"0.000011417895672887"},{"denom":"ASSET15","index":"0.000008163582563959"},{"denom":"ASSET16","index":"0.000005691138594924"},{"denom":"ASSET17","index":"0.000004042263453241"},{"denom":"ASSET18","index":"0.000001925135571111"},{"denom":"ASSET2","index":"0.000003729515797284"},{"denom":"ASSET3","index":"0.000001091141821893"},{"denom":"ASSET4","index":"0.000010267679293757"},{"denom":"ASSET5","index":"0.000000846156158061"},{"denom":"ASSET6","index":"0.000003446305419945"},{"denom":"ASSET7","index":"0.000005278485437758"},{"denom":"ASSET8","index":"0.000006887398378958"},{"denom":"ASSET9","index":"0.000002974577705544"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003029367235848"},{"denom":"ASSET1","index":"0.000025709657584098"},{"denom":"ASSET10","index":"0.000020551027857005"},{"denom":"ASSET11","index":"0.000025556791271547"},{"denom":"ASSET12","index":"0.000024383546484064"},{"denom":"ASSET13","index":"0.000008028643187417"},{"denom":"ASSET14","index":"0.000023452409013233"},{"denom":"ASSET15","index":"0.000018505869963369"},{"denom":"ASSET16","index":"0.000011403028825829"},{"denom":"ASSET17","index":"0.000008960765854271"},{"denom":"ASSET18","index":"0.000003697390743305"},{"denom":"ASSET2","index":"0.000007788410102575"},{"denom":"ASSET3","index":"0.000002162278160249"},{"denom":"ASSET4","index":"0.000020843149904241"},{"denom":"ASSET5","index":"0.000001683795445220"},{"denom":"ASSET6","index":"0.000006796548728457"},{"denom":"ASSET7","index":"0.000010680301627557"},{"denom":"ASSET8","index":"0.000014594997949332"},{"denom":"ASSET9","index":"0.000006193949682941"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001650481631660"},{"denom":"ASSET1","index":"0.000013760556046882"},{"denom":"ASSET10","index":"0.000009587067899364"},{"denom":"ASSET11","index":"0.000013312100857594"},{"denom":"ASSET12","index":"0.000011987552175177"},{"denom":"ASSET13","index":"0.000004125311926918"},{"denom":"ASSET14","index":"0.000012435412596309"},{"denom":"ASSET15","index":"0.000008891189157367"},{"denom":"ASSET16","index":"0.000006198673717177"},{"denom":"ASSET17","index":"0.000004402473887406"},{"denom":"ASSET18","index":"0.000002097152516481"},{"denom":"ASSET2","index":"0.000004062266502429"},{"denom":"ASSET3","index":"0.000001188346774796"},{"denom":"ASSET4","index":"0.000011182830860714"},{"denom":"ASSET5","index":"0.000000921890641108"},{"denom":"ASSET6","index":"0.000003753581829697"},{"denom":"ASSET7","index":"0.000005749028991578"},{"denom":"ASSET8","index":"0.000007501810745994"},{"denom":"ASSET9","index":"0.000003239702143299"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003205609047354"},{"denom":"ASSET1","index":"0.000027188537481167"},{"denom":"ASSET10","index":"0.000021652723818266"},{"denom":"ASSET11","index":"0.000027005979418132"},{"denom":"ASSET12","index":"0.000025725923481940"},{"denom":"ASSET13","index":"0.000008480657418555"},{"denom":"ASSET14","index":"0.000024794508770079"},{"denom":"ASSET15","index":"0.000019512596409105"},{"denom":"ASSET16","index":"0.000012064653878282"},{"denom":"ASSET17","index":"0.000009453813052143"},{"denom":"ASSET18","index":"0.000003917117707327"},{"denom":"ASSET2","index":"0.000008230459966291"},{"denom":"ASSET3","index":"0.000002288306334262"},{"denom":"ASSET4","index":"0.000022043298344156"},{"denom":"ASSET5","index":"0.000001782083734802"},{"denom":"ASSET6","index":"0.000007194354204475"},{"denom":"ASSET7","index":"0.000011296497588433"},{"denom":"ASSET8","index":"0.000015417282169744"},{"denom":"ASSET9","index":"0.000006545936928299"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001428935211366"},{"denom":"ASSET1","index":"0.000011914564237659"},{"denom":"ASSET10","index":"0.000008301159777028"},{"denom":"ASSET11","index":"0.000011525978642480"},{"denom":"ASSET12","index":"0.000010379209562159"},{"denom":"ASSET13","index":"0.000003571896453874"},{"denom":"ASSET14","index":"0.000010767353582799"},{"denom":"ASSET15","index":"0.000007698410529959"},{"denom":"ASSET16","index":"0.000005367338533420"},{"denom":"ASSET17","index":"0.000003811671429081"},{"denom":"ASSET18","index":"0.000001815754508385"},{"denom":"ASSET2","index":"0.000003517141210917"},{"denom":"ASSET3","index":"0.000001028868678146"},{"denom":"ASSET4","index":"0.000009682846512616"},{"denom":"ASSET5","index":"0.000000798366768278"},{"denom":"ASSET6","index":"0.000003249988614231"},{"denom":"ASSET7","index":"0.000004977428214621"},{"denom":"ASSET8","index":"0.000006495119908522"},{"denom":"ASSET9","index":"0.000002805323052474"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003075918064869"},{"denom":"ASSET1","index":"0.000026136551234120"},{"denom":"ASSET10","index":"0.000021080163895542"},{"denom":"ASSET11","index":"0.000026029570124972"},{"denom":"ASSET12","index":"0.000024929671095533"},{"denom":"ASSET13","index":"0.000008184754658215"},{"denom":"ASSET14","index":"0.000023857159923959"},{"denom":"ASSET15","index":"0.000018947606922173"},{"denom":"ASSET16","index":"0.000011579925359638"},{"denom":"ASSET17","index":"0.000009161388302193"},{"denom":"ASSET18","index":"0.000003743573486430"},{"denom":"ASSET2","index":"0.000007931762150876"},{"denom":"ASSET3","index":"0.000002193704696765"},{"denom":"ASSET4","index":"0.000021185602196482"},{"denom":"ASSET5","index":"0.000001709259314500"},{"denom":"ASSET6","index":"0.000006893942979866"},{"denom":"ASSET7","index":"0.000010853088527538"},{"denom":"ASSET8","index":"0.000014878712124324"},{"denom":"ASSET9","index":"0.000006307130542486"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001556917620519"},{"denom":"ASSET1","index":"0.000012983455297040"},{"denom":"ASSET10","index":"0.000009045452282177"},{"denom":"ASSET11","index":"0.000012560119972943"},{"denom":"ASSET12","index":"0.000011310507230547"},{"denom":"ASSET13","index":"0.000003892294051298"},{"denom":"ASSET14","index":"0.000011733139339821"},{"denom":"ASSET15","index":"0.000008388649636483"},{"denom":"ASSET16","index":"0.000005848637691896"},{"denom":"ASSET17","index":"0.000004153889965857"},{"denom":"ASSET18","index":"0.000001978846514969"},{"denom":"ASSET2","index":"0.000003832520791251"},{"denom":"ASSET3","index":"0.000001120924429588"},{"denom":"ASSET4","index":"0.000010551035220538"},{"denom":"ASSET5","index":"0.000000869876737390"},{"denom":"ASSET6","index":"0.000003541389854081"},{"denom":"ASSET7","index":"0.000005423895938150"},{"denom":"ASSET8","index":"0.000007077857204393"},{"denom":"ASSET9","index":"0.000003056874840288"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003155948059833"},{"denom":"ASSET1","index":"0.000026789841893667"},{"denom":"ASSET10","index":"0.000021451154188244"},{"denom":"ASSET11","index":"0.000026640130662201"},{"denom":"ASSET12","index":"0.000025435769508540"},{"denom":"ASSET13","index":"0.000008370086775831"},{"denom":"ASSET14","index":"0.000024440800445484"},{"denom":"ASSET15","index":"0.000019309084443140"},{"denom":"ASSET16","index":"0.000011879786354964"},{"denom":"ASSET17","index":"0.000009347672781307"},{"denom":"ASSET18","index":"0.000003850232310781"},{"denom":"ASSET2","index":"0.000008118311447694"},{"denom":"ASSET3","index":"0.000002251791235916"},{"denom":"ASSET4","index":"0.000021717604836949"},{"denom":"ASSET5","index":"0.000001754185821919"},{"denom":"ASSET6","index":"0.000007079049104243"},{"denom":"ASSET7","index":"0.000011127710678967"},{"denom":"ASSET8","index":"0.000015216376583965"},{"denom":"ASSET9","index":"0.000006456241851980"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001629017625409"},{"denom":"ASSET1","index":"0.000013583500814952"},{"denom":"ASSET10","index":"0.000009463617777698"},{"denom":"ASSET11","index":"0.000013140742178302"},{"denom":"ASSET12","index":"0.000011833351109704"},{"denom":"ASSET13","index":"0.000004072544063523"},{"denom":"ASSET14","index":"0.000012276109746354"},{"denom":"ASSET15","index":"0.000008777202658616"},{"denom":"ASSET16","index":"0.000006119258515961"},{"denom":"ASSET17","index":"0.000004345439323848"},{"denom":"ASSET18","index":"0.000002070383939302"},{"denom":"ASSET2","index":"0.000004009889539469"},{"denom":"ASSET3","index":"0.000001172335761192"},{"denom":"ASSET4","index":"0.000011039727138351"},{"denom":"ASSET5","index":"0.000000910579082921"},{"denom":"ASSET6","index":"0.000003704970855739"},{"denom":"ASSET7","index":"0.000005675107556554"},{"denom":"ASSET8","index":"0.000007404372420450"},{"denom":"ASSET9","index":"0.000003198165372278"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003300821213878"},{"denom":"ASSET1","index":"0.000028019420341436"},{"denom":"ASSET10","index":"0.000022435320069293"},{"denom":"ASSET11","index":"0.000027862926397945"},{"denom":"ASSET12","index":"0.000026603097941410"},{"denom":"ASSET13","index":"0.000008754572034100"},{"denom":"ASSET14","index":"0.000025562969906661"},{"denom":"ASSET15","index":"0.000020195785636702"},{"denom":"ASSET16","index":"0.000012425527462944"},{"denom":"ASSET17","index":"0.000009776022796414"},{"denom":"ASSET18","index":"0.000004027118689751"},{"denom":"ASSET2","index":"0.000008490998812362"},{"denom":"ASSET3","index":"0.000002354733406852"},{"denom":"ASSET4","index":"0.000022715681634045"},{"denom":"ASSET5","index":"0.000001835160700580"},{"denom":"ASSET6","index":"0.000007403741836767"},{"denom":"ASSET7","index":"0.000011639103500846"},{"denom":"ASSET8","index":"0.000015914079386056"},{"denom":"ASSET9","index":"0.000006752470475547"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001599876133405"},{"denom":"ASSET1","index":"0.000013345434681176"},{"denom":"ASSET10","index":"0.000009297530322905"},{"denom":"ASSET11","index":"0.000012909953167223"},{"denom":"ASSET12","index":"0.000011625282701060"},{"denom":"ASSET13","index":"0.000004000208763886"},{"denom":"ASSET14","index":"0.000012059727354266"},{"denom":"ASSET15","index":"0.000008622533976277"},{"denom":"ASSET16","index":"0.000006011718614052"},{"denom":"ASSET17","index":"0.000004268755697491"},{"denom":"ASSET18","index":"0.000002033283925863"},{"denom":"ASSET2","index":"0.000003939033979783"},{"denom":"ASSET3","index":"0.000001151952290481"},{"denom":"ASSET4","index":"0.000010845563418934"},{"denom":"ASSET5","index":"0.000000893773964352"},{"denom":"ASSET6","index":"0.000003640418084501"},{"denom":"ASSET7","index":"0.000005575200239351"},{"denom":"ASSET8","index":"0.000007274615004517"},{"denom":"ASSET9","index":"0.000003141688064949"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003205518103121"},{"denom":"ASSET1","index":"0.000027209804037075"},{"denom":"ASSET10","index":"0.000021755111918776"},{"denom":"ASSET11","index":"0.000027048910570117"},{"denom":"ASSET12","index":"0.000025809934262776"},{"denom":"ASSET13","index":"0.000008496852467218"},{"denom":"ASSET14","index":"0.000024820667393427"},{"denom":"ASSET15","index":"0.000019589132093549"},{"denom":"ASSET16","index":"0.000012068310128279"},{"denom":"ASSET17","index":"0.000009484236214143"},{"denom":"ASSET18","index":"0.000003912244660385"},{"denom":"ASSET2","index":"0.000008242746790311"},{"denom":"ASSET3","index":"0.000002287536756020"},{"denom":"ASSET4","index":"0.000022059248469095"},{"denom":"ASSET5","index":"0.000001781848402938"},{"denom":"ASSET6","index":"0.000007192715838846"},{"denom":"ASSET7","index":"0.000011303047666497"},{"denom":"ASSET8","index":"0.000015447099928639"},{"denom":"ASSET9","index":"0.000006555210966575"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001693699328345"},{"denom":"ASSET1","index":"0.000014121235265065"},{"denom":"ASSET10","index":"0.000009838380374958"},{"denom":"ASSET11","index":"0.000013660499756586"},{"denom":"ASSET12","index":"0.000012301569616423"},{"denom":"ASSET13","index":"0.000004233563721295"},{"denom":"ASSET14","index":"0.000012760935925768"},{"denom":"ASSET15","index":"0.000009123658427184"},{"denom":"ASSET16","index":"0.000006361299175013"},{"denom":"ASSET17","index":"0.000004517672541531"},{"denom":"ASSET18","index":"0.000002151696438556"},{"denom":"ASSET2","index":"0.000004168526762446"},{"denom":"ASSET3","index":"0.000001219271828530"},{"denom":"ASSET4","index":"0.000011475942538822"},{"denom":"ASSET5","index":"0.000000946116601363"},{"denom":"ASSET6","index":"0.000003852241762569"},{"denom":"ASSET7","index":"0.000005899194467400"},{"denom":"ASSET8","index":"0.000007698322129037"},{"denom":"ASSET9","index":"0.000003325100096108"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003374964488748"},{"denom":"ASSET1","index":"0.000028642371697541"},{"denom":"ASSET10","index":"0.000022886358038922"},{"denom":"ASSET11","index":"0.000028469467846578"},{"denom":"ASSET12","index":"0.000027158021136678"},{"denom":"ASSET13","index":"0.000008943216545101"},{"denom":"ASSET14","index":"0.000026126056006670"},{"denom":"ASSET15","index":"0.000020609372613995"},{"denom":"ASSET16","index":"0.000012704733728960"},{"denom":"ASSET17","index":"0.000009980025667275"},{"denom":"ASSET18","index":"0.000004119620826099"},{"denom":"ASSET2","index":"0.000008675935346246"},{"denom":"ASSET3","index":"0.000002408702445844"},{"denom":"ASSET4","index":"0.000023220763838917"},{"denom":"ASSET5","index":"0.000001876440105393"},{"denom":"ASSET6","index":"0.000007572949563502"},{"denom":"ASSET7","index":"0.000011897934490553"},{"denom":"ASSET8","index":"0.000016258236310419"},{"denom":"ASSET9","index":"0.000006900426530312"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001608105877482"},{"denom":"ASSET1","index":"0.000013418457239972"},{"denom":"ASSET10","index":"0.000009349233819318"},{"denom":"ASSET11","index":"0.000012981594753349"},{"denom":"ASSET12","index":"0.000011689837573077"},{"denom":"ASSET13","index":"0.000004022147721664"},{"denom":"ASSET14","index":"0.000012126700059700"},{"denom":"ASSET15","index":"0.000008669460725910"},{"denom":"ASSET16","index":"0.000006044519750254"},{"denom":"ASSET17","index":"0.000004293303747844"},{"denom":"ASSET18","index":"0.000002044968364105"},{"denom":"ASSET2","index":"0.000003960007798998"},{"denom":"ASSET3","index":"0.000001158062195142"},{"denom":"ASSET4","index":"0.000010904614913932"},{"denom":"ASSET5","index":"0.000000898204336720"},{"denom":"ASSET6","index":"0.000003660606353425"},{"denom":"ASSET7","index":"0.000005605774235672"},{"denom":"ASSET8","index":"0.000007313680595011"},{"denom":"ASSET9","index":"0.000003159720916176"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003138779820137"},{"denom":"ASSET1","index":"0.000026638851971456"},{"denom":"ASSET10","index":"0.000021228354320839"},{"denom":"ASSET11","index":"0.000026463611656062"},{"denom":"ASSET12","index":"0.000025215335343685"},{"denom":"ASSET13","index":"0.000008309803474369"},{"denom":"ASSET14","index":"0.000024294710395367"},{"denom":"ASSET15","index":"0.000019126240972581"},{"denom":"ASSET16","index":"0.000011819368577720"},{"denom":"ASSET17","index":"0.000009266335892783"},{"denom":"ASSET18","index":"0.000003836527514127"},{"denom":"ASSET2","index":"0.000008063422586049"},{"denom":"ASSET3","index":"0.000002240662109326"},{"denom":"ASSET4","index":"0.000021597223596640"},{"denom":"ASSET5","index":"0.000001744975814867"},{"denom":"ASSET6","index":"0.000007047692266012"},{"denom":"ASSET7","index":"0.000011067413421526"},{"denom":"ASSET8","index":"0.000015106336478322"},{"denom":"ASSET9","index":"0.000006414890297355"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001636130781121"},{"denom":"ASSET1","index":"0.000013651986161797"},{"denom":"ASSET10","index":"0.000009511743354655"},{"denom":"ASSET11","index":"0.000013205516575762"},{"denom":"ASSET12","index":"0.000011891065744828"},{"denom":"ASSET13","index":"0.000004093100055822"},{"denom":"ASSET14","index":"0.000012337535330862"},{"denom":"ASSET15","index":"0.000008821240702961"},{"denom":"ASSET16","index":"0.000006147969392790"},{"denom":"ASSET17","index":"0.000004367637254688"},{"denom":"ASSET18","index":"0.000002079827264137"},{"denom":"ASSET2","index":"0.000004029318686389"},{"denom":"ASSET3","index":"0.000001178568783011"},{"denom":"ASSET4","index":"0.000011095185178418"},{"denom":"ASSET5","index":"0.000000915123996220"},{"denom":"ASSET6","index":"0.000003724277354315"},{"denom":"ASSET7","index":"0.000005701499806755"},{"denom":"ASSET8","index":"0.000007440235399574"},{"denom":"ASSET9","index":"0.000003214026398847"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003135138573804"},{"denom":"ASSET1","index":"0.000026601246250396"},{"denom":"ASSET10","index":"0.000021147351718785"},{"denom":"ASSET11","index":"0.000026411423528042"},{"denom":"ASSET12","index":"0.000025139747174388"},{"denom":"ASSET13","index":"0.000008292603180789"},{"denom":"ASSET14","index":"0.000024256405788980"},{"denom":"ASSET15","index":"0.000019064302195638"},{"denom":"ASSET16","index":"0.000011804656377100"},{"denom":"ASSET17","index":"0.000009238224400983"},{"denom":"ASSET18","index":"0.000003834531376561"},{"denom":"ASSET2","index":"0.000008049169006780"},{"denom":"ASSET3","index":"0.000002239375819558"},{"denom":"ASSET4","index":"0.000021568278304468"},{"denom":"ASSET5","index":"0.000001743998311515"},{"denom":"ASSET6","index":"0.000007041675703373"},{"denom":"ASSET7","index":"0.000011051161098588"},{"denom":"ASSET8","index":"0.000015073103234225"},{"denom":"ASSET9","index":"0.000006402150772125"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001682560247115"},{"denom":"ASSET1","index":"0.000014026482890055"},{"denom":"ASSET10","index":"0.000009772411969975"},{"denom":"ASSET11","index":"0.000013568579422963"},{"denom":"ASSET12","index":"0.000012218368466479"},{"denom":"ASSET13","index":"0.000004205057792371"},{"denom":"ASSET14","index":"0.000012675600520863"},{"denom":"ASSET15","index":"0.000009062728737253"},{"denom":"ASSET16","index":"0.000006318664998244"},{"denom":"ASSET17","index":"0.000004487051129876"},{"denom":"ASSET18","index":"0.000002137778063373"},{"denom":"ASSET2","index":"0.000004140602172369"},{"denom":"ASSET3","index":"0.000001211228525856"},{"denom":"ASSET4","index":"0.000011398573549589"},{"denom":"ASSET5","index":"0.000000939977791684"},{"denom":"ASSET6","index":"0.000003825709612155"},{"denom":"ASSET7","index":"0.000005859418705735"},{"denom":"ASSET8","index":"0.000007646047922643"},{"denom":"ASSET9","index":"0.000003302679112354"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003237426875283"},{"denom":"ASSET1","index":"0.000027451710154634"},{"denom":"ASSET10","index":"0.000021835512998164"},{"denom":"ASSET11","index":"0.000027259736654219"},{"denom":"ASSET12","index":"0.000025953768913429"},{"denom":"ASSET13","index":"0.000008559484494503"},{"denom":"ASSET14","index":"0.000025032165857410"},{"denom":"ASSET15","index":"0.000019681806512765"},{"denom":"ASSET16","index":"0.000012183244440341"},{"denom":"ASSET17","index":"0.000009537367134186"},{"denom":"ASSET18","index":"0.000003957397976948"},{"denom":"ASSET2","index":"0.000008307936552813"},{"denom":"ASSET3","index":"0.000002310954839376"},{"denom":"ASSET4","index":"0.000022256988295109"},{"denom":"ASSET5","index":"0.000001799896462688"},{"denom":"ASSET6","index":"0.000007265619632425"},{"denom":"ASSET7","index":"0.000011405823532836"},{"denom":"ASSET8","index":"0.000015559935461923"},{"denom":"ASSET9","index":"0.000006608212131764"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001576738934866"},{"denom":"ASSET1","index":"0.000013143695761043"},{"denom":"ASSET10","index":"0.000009157699733702"},{"denom":"ASSET11","index":"0.000012715663698192"},{"denom":"ASSET12","index":"0.000011450067913139"},{"denom":"ASSET13","index":"0.000003940585946017"},{"denom":"ASSET14","index":"0.000011878099975991"},{"denom":"ASSET15","index":"0.000008492526135047"},{"denom":"ASSET16","index":"0.000005920970048209"},{"denom":"ASSET17","index":"0.000004204637159643"},{"denom":"ASSET18","index":"0.000002003089142854"},{"denom":"ASSET2","index":"0.000003880039170918"},{"denom":"ASSET3","index":"0.000001134411105672"},{"denom":"ASSET4","index":"0.000010681460240357"},{"denom":"ASSET5","index":"0.000000880451021229"},{"denom":"ASSET6","index":"0.000003584873642311"},{"denom":"ASSET7","index":"0.000005491256130493"},{"denom":"ASSET8","index":"0.000007165542647463"},{"denom":"ASSET9","index":"0.000003094612949497"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003150995592381"},{"denom":"ASSET1","index":"0.000026735906318713"},{"denom":"ASSET10","index":"0.000021370928366269"},{"denom":"ASSET11","index":"0.000026577057751538"},{"denom":"ASSET12","index":"0.000025356196217934"},{"denom":"ASSET13","index":"0.000008349049177946"},{"denom":"ASSET14","index":"0.000024388519635576"},{"denom":"ASSET15","index":"0.000019243917228958"},{"denom":"ASSET16","index":"0.000011858566692713"},{"denom":"ASSET17","index":"0.000009317567603522"},{"denom":"ASSET18","index":"0.000003845362315572"},{"denom":"ASSET2","index":"0.000008099062572798"},{"denom":"ASSET3","index":"0.000002247710476517"},{"denom":"ASSET4","index":"0.000021674805285583"},{"denom":"ASSET5","index":"0.000001751018453776"},{"denom":"ASSET6","index":"0.000007067532365991"},{"denom":"ASSET7","index":"0.000011106766164564"},{"denom":"ASSET8","index":"0.000015177641578730"},{"denom":"ASSET9","index":"0.000006441123951375"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001735896630597"},{"denom":"ASSET1","index":"0.000014474259966527"},{"denom":"ASSET10","index":"0.000010084408758147"},{"denom":"ASSET11","index":"0.000014002239606889"},{"denom":"ASSET12","index":"0.000012609068112910"},{"denom":"ASSET13","index":"0.000004339122939062"},{"denom":"ASSET14","index":"0.000013079851197687"},{"denom":"ASSET15","index":"0.000009351942040176"},{"denom":"ASSET16","index":"0.000006520438519776"},{"denom":"ASSET17","index":"0.000004630501168930"},{"denom":"ASSET18","index":"0.000002205442440512"},{"denom":"ASSET2","index":"0.000004272310096544"},{"denom":"ASSET3","index":"0.000001249647610052"},{"denom":"ASSET4","index":"0.000011762772107687"},{"denom":"ASSET5","index":"0.000000970023491367"},{"denom":"ASSET6","index":"0.000003948144082847"},{"denom":"ASSET7","index":"0.000006046562247845"},{"denom":"ASSET8","index":"0.000007890101791387"},{"denom":"ASSET9","index":"0.000003408073605830"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003300304206809"},{"denom":"ASSET1","index":"0.000027981868665615"},{"denom":"ASSET10","index":"0.000022221493016134"},{"denom":"ASSET11","index":"0.000027777532118325"},{"denom":"ASSET12","index":"0.000026428557640091"},{"denom":"ASSET13","index":"0.000008720047886627"},{"denom":"ASSET14","index":"0.000025512138164618"},{"denom":"ASSET15","index":"0.000020036362120252"},{"denom":"ASSET16","index":"0.000012421157074829"},{"denom":"ASSET17","index":"0.000009711490167791"},{"denom":"ASSET18","index":"0.000004036282970136"},{"denom":"ASSET2","index":"0.000008465189250700"},{"denom":"ASSET3","index":"0.000002356240815614"},{"denom":"ASSET4","index":"0.000022687774056492"},{"denom":"ASSET5","index":"0.000001835200922241"},{"denom":"ASSET6","index":"0.000007409270759323"},{"denom":"ASSET7","index":"0.000011627060915230"},{"denom":"ASSET8","index":"0.000015852235873304"},{"denom":"ASSET9","index":"0.000006733690564218"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001726734301691"},{"denom":"ASSET1","index":"0.000014395988805148"},{"denom":"ASSET10","index":"0.000010029746380297"},{"denom":"ASSET11","index":"0.000013926529312304"},{"denom":"ASSET12","index":"0.000012540835608608"},{"denom":"ASSET13","index":"0.000004315874534955"},{"denom":"ASSET14","index":"0.000013009526126035"},{"denom":"ASSET15","index":"0.000009301526659210"},{"denom":"ASSET16","index":"0.000006485154189852"},{"denom":"ASSET17","index":"0.000004605778267637"},{"denom":"ASSET18","index":"0.000002193886868281"},{"denom":"ASSET2","index":"0.000004249742648985"},{"denom":"ASSET3","index":"0.000001243048763609"},{"denom":"ASSET4","index":"0.000011699192013329"},{"denom":"ASSET5","index":"0.000000964679662201"},{"denom":"ASSET6","index":"0.000003926772973318"},{"denom":"ASSET7","index":"0.000006014156746171"},{"denom":"ASSET8","index":"0.000007847778630999"},{"denom":"ASSET9","index":"0.000003389643643667"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003383074331503"},{"denom":"ASSET1","index":"0.000028697774885580"},{"denom":"ASSET10","index":"0.000022880621123289"},{"denom":"ASSET11","index":"0.000028511966470743"},{"denom":"ASSET12","index":"0.000027173358086556"},{"denom":"ASSET13","index":"0.000008954537947194"},{"denom":"ASSET14","index":"0.000026172910691250"},{"denom":"ASSET15","index":"0.000020614154391480"},{"denom":"ASSET16","index":"0.000012732692592075"},{"denom":"ASSET17","index":"0.000009985655741818"},{"denom":"ASSET18","index":"0.000004132359094826"},{"denom":"ASSET2","index":"0.000008689052893949"},{"denom":"ASSET3","index":"0.000002414485946546"},{"denom":"ASSET4","index":"0.000023266612079392"},{"denom":"ASSET5","index":"0.000001880944791026"},{"denom":"ASSET6","index":"0.000007591453768301"},{"denom":"ASSET7","index":"0.000011922604903868"},{"denom":"ASSET8","index":"0.000016278329144958"},{"denom":"ASSET9","index":"0.000006911169878531"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001436232590899"},{"denom":"ASSET1","index":"0.000011976183987962"},{"denom":"ASSET10","index":"0.000008344549248442"},{"denom":"ASSET11","index":"0.000011585862202045"},{"denom":"ASSET12","index":"0.000010432581326504"},{"denom":"ASSET13","index":"0.000003589949888597"},{"denom":"ASSET14","index":"0.000010822903112421"},{"denom":"ASSET15","index":"0.000007738224144105"},{"denom":"ASSET16","index":"0.000005395030251301"},{"denom":"ASSET17","index":"0.000003831216753031"},{"denom":"ASSET18","index":"0.000001825291199515"},{"denom":"ASSET2","index":"0.000003535633264667"},{"denom":"ASSET3","index":"0.000001033279031975"},{"denom":"ASSET4","index":"0.000009732781101914"},{"denom":"ASSET5","index":"0.000000802117585946"},{"denom":"ASSET6","index":"0.000003266576499617"},{"denom":"ASSET7","index":"0.000005003445288083"},{"denom":"ASSET8","index":"0.000006528100290032"},{"denom":"ASSET9","index":"0.000002819411735168"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003006064648013"},{"denom":"ASSET1","index":"0.000025531157590212"},{"denom":"ASSET10","index":"0.000020524407173472"},{"denom":"ASSET11","index":"0.000025409258384489"},{"denom":"ASSET12","index":"0.000024300714605646"},{"denom":"ASSET13","index":"0.000007986286383048"},{"denom":"ASSET14","index":"0.000023298685931189"},{"denom":"ASSET15","index":"0.000018459726056254"},{"denom":"ASSET16","index":"0.000011316095008653"},{"denom":"ASSET17","index":"0.000008930145684163"},{"denom":"ASSET18","index":"0.000003662445744281"},{"denom":"ASSET2","index":"0.000007743120539446"},{"denom":"ASSET3","index":"0.000002143639104141"},{"denom":"ASSET4","index":"0.000020695936675740"},{"denom":"ASSET5","index":"0.000001670457298921"},{"denom":"ASSET6","index":"0.000006739935351518"},{"denom":"ASSET7","index":"0.000010603283023237"},{"denom":"ASSET8","index":"0.000014518439118465"},{"denom":"ASSET9","index":"0.000006156725809403"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001476546163568"},{"denom":"ASSET1","index":"0.000012315891963405"},{"denom":"ASSET10","index":"0.000008580298213179"},{"denom":"ASSET11","index":"0.000011914434711559"},{"denom":"ASSET12","index":"0.000010728207916557"},{"denom":"ASSET13","index":"0.000003691365408921"},{"denom":"ASSET14","index":"0.000011129665168403"},{"denom":"ASSET15","index":"0.000007957699254808"},{"denom":"ASSET16","index":"0.000005547821683700"},{"denom":"ASSET17","index":"0.000003939724556249"},{"denom":"ASSET18","index":"0.000001876869355381"},{"denom":"ASSET2","index":"0.000003635796467281"},{"denom":"ASSET3","index":"0.000001062614251355"},{"denom":"ASSET4","index":"0.000010009213855342"},{"denom":"ASSET5","index":"0.000000825595704361"},{"denom":"ASSET6","index":"0.000003359085819117"},{"denom":"ASSET7","index":"0.000005145230371820"},{"denom":"ASSET8","index":"0.000006713635398099"},{"denom":"ASSET9","index":"0.000002899791505564"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000002611689387046"},{"denom":"ASSET1","index":"0.000022118950462866"},{"denom":"ASSET10","index":"0.000017388824351878"},{"denom":"ASSET11","index":"0.000021911701626113"},{"denom":"ASSET12","index":"0.000020757567192719"},{"denom":"ASSET13","index":"0.000006870825151743"},{"denom":"ASSET14","index":"0.000020152250667519"},{"denom":"ASSET15","index":"0.000015711809347683"},{"denom":"ASSET16","index":"0.000009830001439303"},{"denom":"ASSET17","index":"0.000007627368499381"},{"denom":"ASSET18","index":"0.000003205559295774"},{"denom":"ASSET2","index":"0.000006678615536452"},{"denom":"ASSET3","index":"0.000001865584989735"},{"denom":"ASSET4","index":"0.000017938012267073"},{"denom":"ASSET5","index":"0.000001453547274796"},{"denom":"ASSET6","index":"0.000005870892100855"},{"denom":"ASSET7","index":"0.000009195154067126"},{"denom":"ASSET8","index":"0.000012492245582088"},{"denom":"ASSET9","index":"0.000005313335607946"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000000860911540335"},{"denom":"ASSET1","index":"0.000007178593209511"},{"denom":"ASSET10","index":"0.000005001581264509"},{"denom":"ASSET11","index":"0.000006944753046495"},{"denom":"ASSET12","index":"0.000006253725385275"},{"denom":"ASSET13","index":"0.000002152029021603"},{"denom":"ASSET14","index":"0.000006487065889823"},{"denom":"ASSET15","index":"0.000004638329558286"},{"denom":"ASSET16","index":"0.000003233789604786"},{"denom":"ASSET17","index":"0.000002296430318850"},{"denom":"ASSET18","index":"0.000001093752386415"},{"denom":"ASSET2","index":"0.000002119051562716"},{"denom":"ASSET3","index":"0.000000619576500299"},{"denom":"ASSET4","index":"0.000005834012272169"},{"denom":"ASSET5","index":"0.000000481171104668"},{"denom":"ASSET6","index":"0.000001958161536025"},{"denom":"ASSET7","index":"0.000002998950124834"},{"denom":"ASSET8","index":"0.000003913325121242"},{"denom":"ASSET9","index":"0.000001690344597186"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000002357406510396"},{"denom":"ASSET1","index":"0.000020099972826550"},{"denom":"ASSET10","index":"0.000016611857270119"},{"denom":"ASSET11","index":"0.000020122040980663"},{"denom":"ASSET12","index":"0.000019473664705632"},{"denom":"ASSET13","index":"0.000006342954228467"},{"denom":"ASSET14","index":"0.000018379978414574"},{"denom":"ASSET15","index":"0.000014858739059306"},{"denom":"ASSET16","index":"0.000008878274052948"},{"denom":"ASSET17","index":"0.000007156982288871"},{"denom":"ASSET18","index":"0.000002845018303307"},{"denom":"ASSET2","index":"0.000006129987919866"},{"denom":"ASSET3","index":"0.000001678183905493"},{"denom":"ASSET4","index":"0.000016284739258605"},{"denom":"ASSET5","index":"0.000001308892339296"},{"denom":"ASSET6","index":"0.000005269046474537"},{"denom":"ASSET7","index":"0.000008337197620164"},{"denom":"ASSET8","index":"0.000011530009666752"},{"denom":"ASSET9","index":"0.000004871853664260"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001198976216272"},{"denom":"ASSET1","index":"0.000010001315625623"},{"denom":"ASSET10","index":"0.000006967712250892"},{"denom":"ASSET11","index":"0.000009674322112094"},{"denom":"ASSET12","index":"0.000008711677656379"},{"denom":"ASSET13","index":"0.000002997949876371"},{"denom":"ASSET14","index":"0.000009037652498526"},{"denom":"ASSET15","index":"0.000006461432574183"},{"denom":"ASSET16","index":"0.000004504564849919"},{"denom":"ASSET17","index":"0.000003199646809949"},{"denom":"ASSET18","index":"0.000001523932387037"},{"denom":"ASSET2","index":"0.000002952109664194"},{"denom":"ASSET3","index":"0.000000862814660308"},{"denom":"ASSET4","index":"0.000008126960283277"},{"denom":"ASSET5","index":"0.000000670285769165"},{"denom":"ASSET6","index":"0.000002728001960218"},{"denom":"ASSET7","index":"0.000004177571336390"},{"denom":"ASSET8","index":"0.000005451929234909"},{"denom":"ASSET9","index":"0.000002354149563130"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000002792091306062"},{"denom":"ASSET1","index":"0.000023760392481519"},{"denom":"ASSET10","index":"0.000019330735214415"},{"denom":"ASSET11","index":"0.000023705763948043"},{"denom":"ASSET12","index":"0.000022788595153270"},{"denom":"ASSET13","index":"0.000007460432475948"},{"denom":"ASSET14","index":"0.000021701401606991"},{"denom":"ASSET15","index":"0.000017344296121870"},{"denom":"ASSET16","index":"0.000010515175863945"},{"denom":"ASSET17","index":"0.000008375559402161"},{"denom":"ASSET18","index":"0.000003388923471278"},{"denom":"ASSET2","index":"0.000007222909907971"},{"denom":"ASSET3","index":"0.000001989926471838"},{"denom":"ASSET4","index":"0.000019255294602933"},{"denom":"ASSET5","index":"0.000001551437823125"},{"denom":"ASSET6","index":"0.000006253588147261"},{"denom":"ASSET7","index":"0.000009862028954195"},{"denom":"ASSET8","index":"0.000013562244421912"},{"denom":"ASSET9","index":"0.000005741841810541"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001507638919625"},{"denom":"ASSET1","index":"0.000012569401049902"},{"denom":"ASSET10","index":"0.000008757228353136"},{"denom":"ASSET11","index":"0.000012160184771718"},{"denom":"ASSET12","index":"0.000010949766096248"},{"denom":"ASSET13","index":"0.000003769097299062"},{"denom":"ASSET14","index":"0.000011358982374432"},{"denom":"ASSET15","index":"0.000008124020006893"},{"denom":"ASSET16","index":"0.000005660107258249"},{"denom":"ASSET17","index":"0.000004018934605743"},{"denom":"ASSET18","index":"0.000001912547658039"},{"denom":"ASSET2","index":"0.000003708791742277"},{"denom":"ASSET3","index":"0.000001085500022130"},{"denom":"ASSET4","index":"0.000010217484335287"},{"denom":"ASSET5","index":"0.000000839970255220"},{"denom":"ASSET6","index":"0.000003428801657204"},{"denom":"ASSET7","index":"0.000005250890980065"},{"denom":"ASSET8","index":"0.000006853295774638"},{"denom":"ASSET9","index":"0.000002959279822235"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003131246414749"},{"denom":"ASSET1","index":"0.000026589761836242"},{"denom":"ASSET10","index":"0.000021355242603721"},{"denom":"ASSET11","index":"0.000026458316408852"},{"denom":"ASSET12","index":"0.000025293988029420"},{"denom":"ASSET13","index":"0.000008316673174883"},{"denom":"ASSET14","index":"0.000024263343459355"},{"denom":"ASSET15","index":"0.000019213959771091"},{"denom":"ASSET16","index":"0.000011784585795875"},{"denom":"ASSET17","index":"0.000009292893547134"},{"denom":"ASSET18","index":"0.000003813004198036"},{"denom":"ASSET2","index":"0.000008060944762894"},{"denom":"ASSET3","index":"0.000002234070199415"},{"denom":"ASSET4","index":"0.000021557233504015"},{"denom":"ASSET5","index":"0.000001738116490695"},{"denom":"ASSET6","index":"0.000007021386599103"},{"denom":"ASSET7","index":"0.000011043212117572"},{"denom":"ASSET8","index":"0.000015117900391662"},{"denom":"ASSET9","index":"0.000006411442995536"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001538667310820"},{"denom":"ASSET1","index":"0.000012827917927858"},{"denom":"ASSET10","index":"0.000008937244372687"},{"denom":"ASSET11","index":"0.000012409488429871"},{"denom":"ASSET12","index":"0.000011174685151587"},{"denom":"ASSET13","index":"0.000003845530209513"},{"denom":"ASSET14","index":"0.000011592355937882"},{"denom":"ASSET15","index":"0.000008288166520415"},{"denom":"ASSET16","index":"0.000005778727600031"},{"denom":"ASSET17","index":"0.000004103871540546"},{"denom":"ASSET18","index":"0.000001954820673732"},{"denom":"ASSET2","index":"0.000003786730053405"},{"denom":"ASSET3","index":"0.000001107719069920"},{"denom":"ASSET4","index":"0.000010424698644316"},{"denom":"ASSET5","index":"0.000000859620346726"},{"denom":"ASSET6","index":"0.000003499178322240"},{"denom":"ASSET7","index":"0.000005359160034507"},{"denom":"ASSET8","index":"0.000006993045662639"},{"denom":"ASSET9","index":"0.000003020431244761"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003070496060295"},{"denom":"ASSET1","index":"0.000026054009108675"},{"denom":"ASSET10","index":"0.000020821706468932"},{"denom":"ASSET11","index":"0.000025897661631707"},{"denom":"ASSET12","index":"0.000024706407518076"},{"denom":"ASSET13","index":"0.000008135385272267"},{"denom":"ASSET14","index":"0.000023765921524780"},{"denom":"ASSET15","index":"0.000018749935123185"},{"denom":"ASSET16","index":"0.000011556337558875"},{"denom":"ASSET17","index":"0.000009079232430047"},{"denom":"ASSET18","index":"0.000003747682066764"},{"denom":"ASSET2","index":"0.000007892419371659"},{"denom":"ASSET3","index":"0.000002191201298955"},{"denom":"ASSET4","index":"0.000021122052487200"},{"denom":"ASSET5","index":"0.000001706992646915"},{"denom":"ASSET6","index":"0.000006888142834266"},{"denom":"ASSET7","index":"0.000010823268476718"},{"denom":"ASSET8","index":"0.000014789657857476"},{"denom":"ASSET9","index":"0.000006276911852268"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001679222100186"},{"denom":"ASSET1","index":"0.000013999028794594"},{"denom":"ASSET10","index":"0.000009753438641601"},{"denom":"ASSET11","index":"0.000013542280383343"},{"denom":"ASSET12","index":"0.000012194769233410"},{"denom":"ASSET13","index":"0.000004196505199295"},{"denom":"ASSET14","index":"0.000012650484277214"},{"denom":"ASSET15","index":"0.000009045065257184"},{"denom":"ASSET16","index":"0.000006306124840851"},{"denom":"ASSET17","index":"0.000004478614512126"},{"denom":"ASSET18","index":"0.000002133387092820"},{"denom":"ASSET2","index":"0.000004132436417626"},{"denom":"ASSET3","index":"0.000001208523228411"},{"denom":"ASSET4","index":"0.000011376342215965"},{"denom":"ASSET5","index":"0.000000938297641211"},{"denom":"ASSET6","index":"0.000003818809397684"},{"denom":"ASSET7","index":"0.000005848343062154"},{"denom":"ASSET8","index":"0.000007631418590690"},{"denom":"ASSET9","index":"0.000003295925469872"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003295755498274"},{"denom":"ASSET1","index":"0.000027960125957180"},{"denom":"ASSET10","index":"0.000022298091456525"},{"denom":"ASSET11","index":"0.000027779779629540"},{"denom":"ASSET12","index":"0.000026478335493542"},{"denom":"ASSET13","index":"0.000008724566942758"},{"denom":"ASSET14","index":"0.000025500389224880"},{"denom":"ASSET15","index":"0.000020088119547171"},{"denom":"ASSET16","index":"0.000012404652968467"},{"denom":"ASSET17","index":"0.000009730254100732"},{"denom":"ASSET18","index":"0.000004025857251145"},{"denom":"ASSET2","index":"0.000008465992991141"},{"denom":"ASSET3","index":"0.000002352288079447"},{"denom":"ASSET4","index":"0.000022667879187178"},{"denom":"ASSET5","index":"0.000001832649164275"},{"denom":"ASSET6","index":"0.000007396215489940"},{"denom":"ASSET7","index":"0.000011616026271508"},{"denom":"ASSET8","index":"0.000015861127767022"},{"denom":"ASSET9","index":"0.000006733269226830"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001488486853561"},{"denom":"ASSET1","index":"0.000012409943784184"},{"denom":"ASSET10","index":"0.000008645838046025"},{"denom":"ASSET11","index":"0.000012005445379346"},{"denom":"ASSET12","index":"0.000010810451131374"},{"denom":"ASSET13","index":"0.000003720376180879"},{"denom":"ASSET14","index":"0.000011214949536212"},{"denom":"ASSET15","index":"0.000008018487089665"},{"denom":"ASSET16","index":"0.000005590655707614"},{"denom":"ASSET17","index":"0.000003970139229188"},{"denom":"ASSET18","index":"0.000001891303352350"},{"denom":"ASSET2","index":"0.000003663191375205"},{"denom":"ASSET3","index":"0.000001071374153354"},{"denom":"ASSET4","index":"0.000010085549624159"},{"denom":"ASSET5","index":"0.000000831702541340"},{"denom":"ASSET6","index":"0.000003384835924059"},{"denom":"ASSET7","index":"0.000005184475396726"},{"denom":"ASSET8","index":"0.000006765467082995"},{"denom":"ASSET9","index":"0.000002921470807498"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003140601357292"},{"denom":"ASSET1","index":"0.000026678854887219"},{"denom":"ASSET10","index":"0.000021467437308134"},{"denom":"ASSET11","index":"0.000026557150856893"},{"denom":"ASSET12","index":"0.000025409189778577"},{"denom":"ASSET13","index":"0.000008348678217638"},{"denom":"ASSET14","index":"0.000024348515645151"},{"denom":"ASSET15","index":"0.000019305257093893"},{"denom":"ASSET16","index":"0.000011824039078448"},{"denom":"ASSET17","index":"0.000009337874135725"},{"denom":"ASSET18","index":"0.000003825021517438"},{"denom":"ASSET2","index":"0.000008092644314938"},{"denom":"ASSET3","index":"0.000002240059115813"},{"denom":"ASSET4","index":"0.000021626536887159"},{"denom":"ASSET5","index":"0.000001745574888449"},{"denom":"ASSET6","index":"0.000007040920669072"},{"denom":"ASSET7","index":"0.000011079696231301"},{"denom":"ASSET8","index":"0.000015176664815864"},{"denom":"ASSET9","index":"0.000006434669973810"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001385039568420"},{"denom":"ASSET1","index":"0.000011547928050470"},{"denom":"ASSET10","index":"0.000008045290512347"},{"denom":"ASSET11","index":"0.000011171268467624"},{"denom":"ASSET12","index":"0.000010059084660007"},{"denom":"ASSET13","index":"0.000003461116009305"},{"denom":"ASSET14","index":"0.000010435744242853"},{"denom":"ASSET15","index":"0.000007461023285412"},{"denom":"ASSET16","index":"0.000005202054396163"},{"denom":"ASSET17","index":"0.000003694427456948"},{"denom":"ASSET18","index":"0.000001759721935608"},{"denom":"ASSET2","index":"0.000003408719794369"},{"denom":"ASSET3","index":"0.000000996516691625"},{"denom":"ASSET4","index":"0.000009383865512804"},{"denom":"ASSET5","index":"0.000000774079930102"},{"denom":"ASSET6","index":"0.000003149704543173"},{"denom":"ASSET7","index":"0.000004824406205487"},{"denom":"ASSET8","index":"0.000006294466047200"},{"denom":"ASSET9","index":"0.000002718671529731"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000002978674281858"},{"denom":"ASSET1","index":"0.000025310372422717"},{"denom":"ASSET10","index":"0.000020411345436720"},{"denom":"ASSET11","index":"0.000025206262983954"},{"denom":"ASSET12","index":"0.000024139567910062"},{"denom":"ASSET13","index":"0.000007924745788344"},{"denom":"ASSET14","index":"0.000023102636423037"},{"denom":"ASSET15","index":"0.000018346974201526"},{"denom":"ASSET16","index":"0.000011213830154915"},{"denom":"ASSET17","index":"0.000008871351161454"},{"denom":"ASSET18","index":"0.000003625142276595"},{"denom":"ASSET2","index":"0.000007680838181843"},{"denom":"ASSET3","index":"0.000002123796319816"},{"denom":"ASSET4","index":"0.000020514843977806"},{"denom":"ASSET5","index":"0.000001655567492872"},{"denom":"ASSET6","index":"0.000006676037052519"},{"denom":"ASSET7","index":"0.000010510115662832"},{"denom":"ASSET8","index":"0.000014407133239162"},{"denom":"ASSET9","index":"0.000006107008804836"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001563741356289"},{"denom":"ASSET1","index":"0.000013036816883138"},{"denom":"ASSET10","index":"0.000009082880828100"},{"denom":"ASSET11","index":"0.000012611783735587"},{"denom":"ASSET12","index":"0.000011356772924286"},{"denom":"ASSET13","index":"0.000003908472310400"},{"denom":"ASSET14","index":"0.000011781101207579"},{"denom":"ASSET15","index":"0.000008423480314776"},{"denom":"ASSET16","index":"0.000005872928997340"},{"denom":"ASSET17","index":"0.000004170681814362"},{"denom":"ASSET18","index":"0.000001986659911066"},{"denom":"ASSET2","index":"0.000003848558848473"},{"denom":"ASSET3","index":"0.000001125668219966"},{"denom":"ASSET4","index":"0.000010594814661429"},{"denom":"ASSET5","index":"0.000000873679247744"},{"denom":"ASSET6","index":"0.000003556392613548"},{"denom":"ASSET7","index":"0.000005446486121273"},{"denom":"ASSET8","index":"0.000007106793880903"},{"denom":"ASSET9","index":"0.000003069683843425"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003115193601728"},{"denom":"ASSET1","index":"0.000026433576226141"},{"denom":"ASSET10","index":"0.000021120836274624"},{"denom":"ASSET11","index":"0.000026274076149270"},{"denom":"ASSET12","index":"0.000025063206789151"},{"denom":"ASSET13","index":"0.000008253838888439"},{"denom":"ASSET14","index":"0.000024111622086359"},{"denom":"ASSET15","index":"0.000019020166052921"},{"denom":"ASSET16","index":"0.000011725264187843"},{"denom":"ASSET17","index":"0.000009210335248597"},{"denom":"ASSET18","index":"0.000003802618681808"},{"denom":"ASSET2","index":"0.000008007094168018"},{"denom":"ASSET3","index":"0.000002223045227271"},{"denom":"ASSET4","index":"0.000021430343290469"},{"denom":"ASSET5","index":"0.000001731871182363"},{"denom":"ASSET6","index":"0.000006989160352022"},{"denom":"ASSET7","index":"0.000010981276608696"},{"denom":"ASSET8","index":"0.000015004007461071"},{"denom":"ASSET9","index":"0.000006368316319391"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001688791638136"},{"denom":"ASSET1","index":"0.000014080258863939"},{"denom":"ASSET10","index":"0.000009809129194434"},{"denom":"ASSET11","index":"0.000013620783833550"},{"denom":"ASSET12","index":"0.000012265553395360"},{"denom":"ASSET13","index":"0.000004220322334414"},{"denom":"ASSET14","index":"0.000012723923918464"},{"denom":"ASSET15","index":"0.000009096721995874"},{"denom":"ASSET16","index":"0.000006342080828109"},{"denom":"ASSET17","index":"0.000004504180706554"},{"denom":"ASSET18","index":"0.000002144953146672"},{"denom":"ASSET2","index":"0.000004156260911908"},{"denom":"ASSET3","index":"0.000001214958013048"},{"denom":"ASSET4","index":"0.000011442695468341"},{"denom":"ASSET5","index":"0.000000943249221039"},{"denom":"ASSET6","index":"0.000003840371828516"},{"denom":"ASSET7","index":"0.000005881501290436"},{"denom":"ASSET8","index":"0.000007675221120608"},{"denom":"ASSET9","index":"0.000003314626361051"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003342989987813"},{"denom":"ASSET1","index":"0.000028363859076608"},{"denom":"ASSET10","index":"0.000022643596968544"},{"denom":"ASSET11","index":"0.000028187678804911"},{"denom":"ASSET12","index":"0.000026879157824253"},{"denom":"ASSET13","index":"0.000008853292918908"},{"denom":"ASSET14","index":"0.000025870927331183"},{"denom":"ASSET15","index":"0.000020395094195043"},{"denom":"ASSET16","index":"0.000012581780801373"},{"denom":"ASSET17","index":"0.000009877287329505"},{"denom":"ASSET18","index":"0.000004080927248291"},{"denom":"ASSET2","index":"0.000008590241612281"},{"denom":"ASSET3","index":"0.000002384972961476"},{"denom":"ASSET4","index":"0.000022995501297970"},{"denom":"ASSET5","index":"0.000001858071035633"},{"denom":"ASSET6","index":"0.000007500418590266"},{"denom":"ASSET7","index":"0.000011782462758670"},{"denom":"ASSET8","index":"0.000016095075530395"},{"denom":"ASSET9","index":"0.000006831506736707"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001571496317510"},{"denom":"ASSET1","index":"0.000013101483241955"},{"denom":"ASSET10","index":"0.000009127906315185"},{"denom":"ASSET11","index":"0.000012674221268720"},{"denom":"ASSET12","index":"0.000011413128948859"},{"denom":"ASSET13","index":"0.000003927726401627"},{"denom":"ASSET14","index":"0.000011839579408375"},{"denom":"ASSET15","index":"0.000008464899606481"},{"denom":"ASSET16","index":"0.000005901733523932"},{"denom":"ASSET17","index":"0.000004191468360414"},{"denom":"ASSET18","index":"0.000001996729506447"},{"denom":"ASSET2","index":"0.000003867268629536"},{"denom":"ASSET3","index":"0.000001131250124766"},{"denom":"ASSET4","index":"0.000010647059997798"},{"denom":"ASSET5","index":"0.000000878057844331"},{"denom":"ASSET6","index":"0.000003573906419993"},{"denom":"ASSET7","index":"0.000005473254280118"},{"denom":"ASSET8","index":"0.000007142132243950"},{"denom":"ASSET9","index":"0.000003084563647228"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003113134051861"},{"denom":"ASSET1","index":"0.000026415094552464"},{"denom":"ASSET10","index":"0.000021090707465492"},{"denom":"ASSET11","index":"0.000026251548228726"},{"denom":"ASSET12","index":"0.000025034408517114"},{"denom":"ASSET13","index":"0.000008245703890405"},{"denom":"ASSET14","index":"0.000024093200316600"},{"denom":"ASSET15","index":"0.000018995578271326"},{"denom":"ASSET16","index":"0.000011717396138812"},{"denom":"ASSET17","index":"0.000009199501798709"},{"denom":"ASSET18","index":"0.000003801350346824"},{"denom":"ASSET2","index":"0.000007999912620195"},{"denom":"ASSET3","index":"0.000002221641081089"},{"denom":"ASSET4","index":"0.000021415082747190"},{"denom":"ASSET5","index":"0.000001730738444371"},{"denom":"ASSET6","index":"0.000006985361363625"},{"denom":"ASSET7","index":"0.000010973556930807"},{"denom":"ASSET8","index":"0.000014990236718633"},{"denom":"ASSET9","index":"0.000006362695679170"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001486431692511"},{"denom":"ASSET1","index":"0.000012397696164316"},{"denom":"ASSET10","index":"0.000008637613387551"},{"denom":"ASSET11","index":"0.000011993186507636"},{"denom":"ASSET12","index":"0.000010799842650204"},{"denom":"ASSET13","index":"0.000003716482933529"},{"denom":"ASSET14","index":"0.000011203544902380"},{"denom":"ASSET15","index":"0.000008010260087670"},{"denom":"ASSET16","index":"0.000005584816956599"},{"denom":"ASSET17","index":"0.000003965970925374"},{"denom":"ASSET18","index":"0.000001889326540182"},{"denom":"ASSET2","index":"0.000003659157213720"},{"denom":"ASSET3","index":"0.000001070618372770"},{"denom":"ASSET4","index":"0.000010074793405297"},{"denom":"ASSET5","index":"0.000000830819234978"},{"denom":"ASSET6","index":"0.000003381410064224"},{"denom":"ASSET7","index":"0.000005179499895414"},{"denom":"ASSET8","index":"0.000006757975701421"},{"denom":"ASSET9","index":"0.000002918767283230"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003023961266495"},{"denom":"ASSET1","index":"0.000025674667559579"},{"denom":"ASSET10","index":"0.000020567435721356"},{"denom":"ASSET11","index":"0.000025532965784321"},{"denom":"ASSET12","index":"0.000024383768132692"},{"denom":"ASSET13","index":"0.000008022807352722"},{"denom":"ASSET14","index":"0.000023423766496233"},{"denom":"ASSET15","index":"0.000018512228577533"},{"denom":"ASSET16","index":"0.000011384524743973"},{"denom":"ASSET17","index":"0.000008960010456843"},{"denom":"ASSET18","index":"0.000003688974211121"},{"denom":"ASSET2","index":"0.000007780619396113"},{"denom":"ASSET3","index":"0.000002157718690670"},{"denom":"ASSET4","index":"0.000020813357966886"},{"denom":"ASSET5","index":"0.000001681323481152"},{"denom":"ASSET6","index":"0.000006783427048921"},{"denom":"ASSET7","index":"0.000010664665966441"},{"denom":"ASSET8","index":"0.000014584270248941"},{"denom":"ASSET9","index":"0.000006187655866052"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001789525520762"},{"denom":"ASSET1","index":"0.000014923544215299"},{"denom":"ASSET10","index":"0.000010397506905977"},{"denom":"ASSET11","index":"0.000014436898494348"},{"denom":"ASSET12","index":"0.000013000171779235"},{"denom":"ASSET13","index":"0.000004474200642702"},{"denom":"ASSET14","index":"0.000013486043818595"},{"denom":"ASSET15","index":"0.000009642393672833"},{"denom":"ASSET16","index":"0.000006722519347127"},{"denom":"ASSET17","index":"0.000004774389100140"},{"denom":"ASSET18","index":"0.000002273850196939"},{"denom":"ASSET2","index":"0.000004405342981073"},{"denom":"ASSET3","index":"0.000001288179849576"},{"denom":"ASSET4","index":"0.000012128232625798"},{"denom":"ASSET5","index":"0.000001000370297599"},{"denom":"ASSET6","index":"0.000004071112533615"},{"denom":"ASSET7","index":"0.000006234326262993"},{"denom":"ASSET8","index":"0.000008135261932908"},{"denom":"ASSET9","index":"0.000003514061787852"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003488279034648"},{"denom":"ASSET1","index":"0.000029592208548275"},{"denom":"ASSET10","index":"0.000023577626976592"},{"denom":"ASSET11","index":"0.000029395914355993"},{"denom":"ASSET12","index":"0.000028007798530295"},{"denom":"ASSET13","index":"0.000009231498766276"},{"denom":"ASSET14","index":"0.000026986732997785"},{"denom":"ASSET15","index":"0.000021244630549189"},{"denom":"ASSET16","index":"0.000013129960095172"},{"denom":"ASSET17","index":"0.000010292381952670"},{"denom":"ASSET18","index":"0.000004261641431672"},{"denom":"ASSET2","index":"0.000008958343988321"},{"denom":"ASSET3","index":"0.000002489657102823"},{"denom":"ASSET4","index":"0.000023991917258738"},{"denom":"ASSET5","index":"0.000001939742890351"},{"denom":"ASSET6","index":"0.000007829259808535"},{"denom":"ASSET7","index":"0.000012294264842111"},{"denom":"ASSET8","index":"0.000016782088113605"},{"denom":"ASSET9","index":"0.000007125719490615"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001504632489095"},{"denom":"ASSET1","index":"0.000012543084148708"},{"denom":"ASSET10","index":"0.000008738830231438"},{"denom":"ASSET11","index":"0.000012134501498699"},{"denom":"ASSET12","index":"0.000010926897843985"},{"denom":"ASSET13","index":"0.000003760573206331"},{"denom":"ASSET14","index":"0.000011335480493994"},{"denom":"ASSET15","index":"0.000008104451906425"},{"denom":"ASSET16","index":"0.000005650267962622"},{"denom":"ASSET17","index":"0.000004012577307899"},{"denom":"ASSET18","index":"0.000001911199106291"},{"denom":"ASSET2","index":"0.000003702780265705"},{"denom":"ASSET3","index":"0.000001083281631273"},{"denom":"ASSET4","index":"0.000010193733911157"},{"denom":"ASSET5","index":"0.000000840685682831"},{"denom":"ASSET6","index":"0.000003421207682886"},{"denom":"ASSET7","index":"0.000005240341290738"},{"denom":"ASSET8","index":"0.000006837711289210"},{"denom":"ASSET9","index":"0.000002953488070376"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003015423229771"},{"denom":"ASSET1","index":"0.000025588098096649"},{"denom":"ASSET10","index":"0.000020460473772645"},{"denom":"ASSET11","index":"0.000025438043766359"},{"denom":"ASSET12","index":"0.000024273358860204"},{"denom":"ASSET13","index":"0.000007991752317173"},{"denom":"ASSET14","index":"0.000023342063892494"},{"denom":"ASSET15","index":"0.000018422728556898"},{"denom":"ASSET16","index":"0.000011348811151398"},{"denom":"ASSET17","index":"0.000008919790197810"},{"denom":"ASSET18","index":"0.000003679502338318"},{"denom":"ASSET2","index":"0.000007752126098631"},{"denom":"ASSET3","index":"0.000002151933074669"},{"denom":"ASSET4","index":"0.000020744635257959"},{"denom":"ASSET5","index":"0.000001676458472807"},{"denom":"ASSET6","index":"0.000006763790928604"},{"denom":"ASSET7","index":"0.000010629564741383"},{"denom":"ASSET8","index":"0.000014527278079751"},{"denom":"ASSET9","index":"0.000006165283413682"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001790270882045"},{"denom":"ASSET1","index":"0.000014924962381265"},{"denom":"ASSET10","index":"0.000010398687848362"},{"denom":"ASSET11","index":"0.000014438353512768"},{"denom":"ASSET12","index":"0.000013001639266884"},{"denom":"ASSET13","index":"0.000004474427888377"},{"denom":"ASSET14","index":"0.000013487623477013"},{"denom":"ASSET15","index":"0.000009643475881721"},{"denom":"ASSET16","index":"0.000006723198012370"},{"denom":"ASSET17","index":"0.000004774888563278"},{"denom":"ASSET18","index":"0.000002274381117071"},{"denom":"ASSET2","index":"0.000004405715467922"},{"denom":"ASSET3","index":"0.000001288670212721"},{"denom":"ASSET4","index":"0.000012129616185469"},{"denom":"ASSET5","index":"0.000001000078046809"},{"denom":"ASSET6","index":"0.000004071523241162"},{"denom":"ASSET7","index":"0.000006235339827137"},{"denom":"ASSET8","index":"0.000008136175240279"},{"denom":"ASSET9","index":"0.000003514327977106"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003452635056994"},{"denom":"ASSET1","index":"0.000029280443630050"},{"denom":"ASSET10","index":"0.000023297581891953"},{"denom":"ASSET11","index":"0.000029078046899152"},{"denom":"ASSET12","index":"0.000027688393753974"},{"denom":"ASSET13","index":"0.000009130247174920"},{"denom":"ASSET14","index":"0.000026700258191979"},{"denom":"ASSET15","index":"0.000020998119885469"},{"denom":"ASSET16","index":"0.000012993858989816"},{"denom":"ASSET17","index":"0.000010174919177657"},{"denom":"ASSET18","index":"0.000004220034662939"},{"denom":"ASSET2","index":"0.000008861755768133"},{"denom":"ASSET3","index":"0.000002464736347038"},{"denom":"ASSET4","index":"0.000023740327943060"},{"denom":"ASSET5","index":"0.000001919615043943"},{"denom":"ASSET6","index":"0.000007749671229698"},{"denom":"ASSET7","index":"0.000012165961282812"},{"denom":"ASSET8","index":"0.000016598407083950"},{"denom":"ASSET9","index":"0.000007048985746822"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001835550145227"},{"denom":"ASSET1","index":"0.000015324623289081"},{"denom":"ASSET10","index":"0.000010676536631006"},{"denom":"ASSET11","index":"0.000014825027987456"},{"denom":"ASSET12","index":"0.000013348446318211"},{"denom":"ASSET13","index":"0.000004592576069005"},{"denom":"ASSET14","index":"0.000013848041619836"},{"denom":"ASSET15","index":"0.000009899388384035"},{"denom":"ASSET16","index":"0.000006901816574290"},{"denom":"ASSET17","index":"0.000004903435367793"},{"denom":"ASSET18","index":"0.000002335145446851"},{"denom":"ASSET2","index":"0.000004522262656184"},{"denom":"ASSET3","index":"0.000001321152019851"},{"denom":"ASSET4","index":"0.000012452875481226"},{"denom":"ASSET5","index":"0.000001025095544814"},{"denom":"ASSET6","index":"0.000004178097003954"},{"denom":"ASSET7","index":"0.000006402221272666"},{"denom":"ASSET8","index":"0.000008352493301969"},{"denom":"ASSET9","index":"0.000003608188289508"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003336473275634"},{"denom":"ASSET1","index":"0.000028284037775138"},{"denom":"ASSET10","index":"0.000022321061137243"},{"denom":"ASSET11","index":"0.000028041053149272"},{"denom":"ASSET12","index":"0.000026607048139233"},{"denom":"ASSET13","index":"0.000008795774551756"},{"denom":"ASSET14","index":"0.000025776026947277"},{"denom":"ASSET15","index":"0.000020150006768141"},{"denom":"ASSET16","index":"0.000012562977954735"},{"denom":"ASSET17","index":"0.000009778271060189"},{"denom":"ASSET18","index":"0.000004091528532498"},{"denom":"ASSET2","index":"0.000008544798017437"},{"denom":"ASSET3","index":"0.000002382883485470"},{"denom":"ASSET4","index":"0.000022934405116164"},{"denom":"ASSET5","index":"0.000001855148612588"},{"denom":"ASSET6","index":"0.000007498692848558"},{"denom":"ASSET7","index":"0.000011756140274513"},{"denom":"ASSET8","index":"0.000015991743254740"},{"denom":"ASSET9","index":"0.000006799136288961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001764742979644"},{"denom":"ASSET1","index":"0.000014715413525055"},{"denom":"ASSET10","index":"0.000010252344388411"},{"denom":"ASSET11","index":"0.000014235671854472"},{"denom":"ASSET12","index":"0.000012819403806098"},{"denom":"ASSET13","index":"0.000004411268809023"},{"denom":"ASSET14","index":"0.000013298556836595"},{"denom":"ASSET15","index":"0.000009507714678855"},{"denom":"ASSET16","index":"0.000006629264655353"},{"denom":"ASSET17","index":"0.000004707943412672"},{"denom":"ASSET18","index":"0.000002242718729968"},{"denom":"ASSET2","index":"0.000004343575199063"},{"denom":"ASSET3","index":"0.000001270873946982"},{"denom":"ASSET4","index":"0.000011958811999481"},{"denom":"ASSET5","index":"0.000000985972145064"},{"denom":"ASSET6","index":"0.000004013936750564"},{"denom":"ASSET7","index":"0.000006147757064510"},{"denom":"ASSET8","index":"0.000008021987100262"},{"denom":"ASSET9","index":"0.000003464735549761"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003371223111771"},{"denom":"ASSET1","index":"0.000028586584995448"},{"denom":"ASSET10","index":"0.000022716281614844"},{"denom":"ASSET11","index":"0.000028381809067472"},{"denom":"ASSET12","index":"0.000027011101270499"},{"denom":"ASSET13","index":"0.000008910504058238"},{"denom":"ASSET14","index":"0.000026065694327630"},{"denom":"ASSET15","index":"0.000020479714095343"},{"denom":"ASSET16","index":"0.000012688778091614"},{"denom":"ASSET17","index":"0.000009925875585388"},{"denom":"ASSET18","index":"0.000004122881217339"},{"denom":"ASSET2","index":"0.000008649339803247"},{"denom":"ASSET3","index":"0.000002407313457267"},{"denom":"ASSET4","index":"0.000023177863483423"},{"denom":"ASSET5","index":"0.000001874397047373"},{"denom":"ASSET6","index":"0.000007568278053481"},{"denom":"ASSET7","index":"0.000011878402488901"},{"denom":"ASSET8","index":"0.000016198768839280"},{"denom":"ASSET9","index":"0.000006880150170591"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001519402004985"},{"denom":"ASSET1","index":"0.000012669186594649"},{"denom":"ASSET10","index":"0.000008826466179926"},{"denom":"ASSET11","index":"0.000012255973562605"},{"denom":"ASSET12","index":"0.000011036700348729"},{"denom":"ASSET13","index":"0.000003798237040326"},{"denom":"ASSET14","index":"0.000011448841492233"},{"denom":"ASSET15","index":"0.000008185476833202"},{"denom":"ASSET16","index":"0.000005707270529482"},{"denom":"ASSET17","index":"0.000004053346512768"},{"denom":"ASSET18","index":"0.000001930471259949"},{"denom":"ASSET2","index":"0.000003739819114914"},{"denom":"ASSET3","index":"0.000001093862254735"},{"denom":"ASSET4","index":"0.000010296025367816"},{"denom":"ASSET5","index":"0.000000848935723420"},{"denom":"ASSET6","index":"0.000003455768651901"},{"denom":"ASSET7","index":"0.000005292985608899"},{"denom":"ASSET8","index":"0.000006906177861104"},{"denom":"ASSET9","index":"0.000002983065805906"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003090388166914"},{"denom":"ASSET1","index":"0.000026235396530584"},{"denom":"ASSET10","index":"0.000021016328726441"},{"denom":"ASSET11","index":"0.000026091077525301"},{"denom":"ASSET12","index":"0.000024916432469284"},{"denom":"ASSET13","index":"0.000008198423394567"},{"denom":"ASSET14","index":"0.000023935350029219"},{"denom":"ASSET15","index":"0.000018916111125702"},{"denom":"ASSET16","index":"0.000011633439861257"},{"denom":"ASSET17","index":"0.000009156707623184"},{"denom":"ASSET18","index":"0.000003769226369030"},{"denom":"ASSET2","index":"0.000007950992094695"},{"denom":"ASSET3","index":"0.000002205065882760"},{"denom":"ASSET4","index":"0.000021268551776440"},{"denom":"ASSET5","index":"0.000001717872208784"},{"denom":"ASSET6","index":"0.000006931889619894"},{"denom":"ASSET7","index":"0.000010897757198785"},{"denom":"ASSET8","index":"0.000014903243728132"},{"denom":"ASSET9","index":"0.000006323427167640"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001518878942956"},{"denom":"ASSET1","index":"0.000012665267621292"},{"denom":"ASSET10","index":"0.000008823986077449"},{"denom":"ASSET11","index":"0.000012252067733139"},{"denom":"ASSET12","index":"0.000011032961258059"},{"denom":"ASSET13","index":"0.000003796959064490"},{"denom":"ASSET14","index":"0.000011445207974612"},{"denom":"ASSET15","index":"0.000008182978177143"},{"denom":"ASSET16","index":"0.000005705208605625"},{"denom":"ASSET17","index":"0.000004051932467214"},{"denom":"ASSET18","index":"0.000001930172487911"},{"denom":"ASSET2","index":"0.000003738815596953"},{"denom":"ASSET3","index":"0.000001093764409816"},{"denom":"ASSET4","index":"0.000010292823511460"},{"denom":"ASSET5","index":"0.000000848799308881"},{"denom":"ASSET6","index":"0.000003454770460461"},{"denom":"ASSET7","index":"0.000005291055545873"},{"denom":"ASSET8","index":"0.000006904298477127"},{"denom":"ASSET9","index":"0.000002981997347372"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003032310940473"},{"denom":"ASSET1","index":"0.000025733484746235"},{"denom":"ASSET10","index":"0.000020566326171769"},{"denom":"ASSET11","index":"0.000025579130700492"},{"denom":"ASSET12","index":"0.000024402998631681"},{"denom":"ASSET13","index":"0.000008035434808363"},{"denom":"ASSET14","index":"0.000023473377840860"},{"denom":"ASSET15","index":"0.000018519821992016"},{"denom":"ASSET16","index":"0.000011413808805814"},{"denom":"ASSET17","index":"0.000008967671528488"},{"denom":"ASSET18","index":"0.000003701450923042"},{"denom":"ASSET2","index":"0.000007795399667781"},{"denom":"ASSET3","index":"0.000002164126947351"},{"denom":"ASSET4","index":"0.000020862528644023"},{"denom":"ASSET5","index":"0.000001685967393794"},{"denom":"ASSET6","index":"0.000006803442800114"},{"denom":"ASSET7","index":"0.000010689840259007"},{"denom":"ASSET8","index":"0.000014607710652032"},{"denom":"ASSET9","index":"0.000006199747658625"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001387661284101"},{"denom":"ASSET1","index":"0.000011573014587468"},{"denom":"ASSET10","index":"0.000008062929395432"},{"denom":"ASSET11","index":"0.000011195232526081"},{"denom":"ASSET12","index":"0.000010081345808669"},{"denom":"ASSET13","index":"0.000003469153210252"},{"denom":"ASSET14","index":"0.000010458456853962"},{"denom":"ASSET15","index":"0.000007477132344649"},{"denom":"ASSET16","index":"0.000005213124040705"},{"denom":"ASSET17","index":"0.000003702666811251"},{"denom":"ASSET18","index":"0.000001763430297203"},{"denom":"ASSET2","index":"0.000003416142938760"},{"denom":"ASSET3","index":"0.000000999142965196"},{"denom":"ASSET4","index":"0.000009404961585085"},{"denom":"ASSET5","index":"0.000000775694605619"},{"denom":"ASSET6","index":"0.000003156459710063"},{"denom":"ASSET7","index":"0.000004834670963223"},{"denom":"ASSET8","index":"0.000006308893323556"},{"denom":"ASSET9","index":"0.000002724996361089"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000002847838387483"},{"denom":"ASSET1","index":"0.000024182680336096"},{"denom":"ASSET10","index":"0.000019393227963423"},{"denom":"ASSET11","index":"0.000024054653395269"},{"denom":"ASSET12","index":"0.000022982316432831"},{"denom":"ASSET13","index":"0.000007558836235579"},{"denom":"ASSET14","index":"0.000022064079622497"},{"denom":"ASSET15","index":"0.000017450899901336"},{"denom":"ASSET16","index":"0.000010721434414440"},{"denom":"ASSET17","index":"0.000008446187739031"},{"denom":"ASSET18","index":"0.000003472449339717"},{"denom":"ASSET2","index":"0.000007330038539196"},{"denom":"ASSET3","index":"0.000002031951160271"},{"denom":"ASSET4","index":"0.000019603371773062"},{"denom":"ASSET5","index":"0.000001583403578691"},{"denom":"ASSET6","index":"0.000006387295602350"},{"denom":"ASSET7","index":"0.000010043914419286"},{"denom":"ASSET8","index":"0.000013741733556815"},{"denom":"ASSET9","index":"0.000005829813216311"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001740203165372"},{"denom":"ASSET1","index":"0.000014506985633466"},{"denom":"ASSET10","index":"0.000010106727386233"},{"denom":"ASSET11","index":"0.000014033828203465"},{"denom":"ASSET12","index":"0.000012637643303754"},{"denom":"ASSET13","index":"0.000004348390877948"},{"denom":"ASSET14","index":"0.000013109742216014"},{"denom":"ASSET15","index":"0.000009373174592071"},{"denom":"ASSET16","index":"0.000006535288529808"},{"denom":"ASSET17","index":"0.000004640541774324"},{"denom":"ASSET18","index":"0.000002210185042151"},{"denom":"ASSET2","index":"0.000004281704260297"},{"denom":"ASSET3","index":"0.000001252226487004"},{"denom":"ASSET4","index":"0.000011789770593618"},{"denom":"ASSET5","index":"0.000000971719285773"},{"denom":"ASSET6","index":"0.000003956739313965"},{"denom":"ASSET7","index":"0.000006060014064326"},{"denom":"ASSET8","index":"0.000007908186039228"},{"denom":"ASSET9","index":"0.000003415836748573"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003351161845380"},{"denom":"ASSET1","index":"0.000028416485386018"},{"denom":"ASSET10","index":"0.000022605276372189"},{"denom":"ASSET11","index":"0.000028218825237526"},{"denom":"ASSET12","index":"0.000026868556551399"},{"denom":"ASSET13","index":"0.000008859853422879"},{"denom":"ASSET14","index":"0.000025912194276628"},{"denom":"ASSET15","index":"0.000020375555431981"},{"denom":"ASSET16","index":"0.000012611404420708"},{"denom":"ASSET17","index":"0.000009873044520717"},{"denom":"ASSET18","index":"0.000004095473642305"},{"denom":"ASSET2","index":"0.000008599384819082"},{"denom":"ASSET3","index":"0.000002391571176633"},{"denom":"ASSET4","index":"0.000023040021162794"},{"denom":"ASSET5","index":"0.000001862805125681"},{"denom":"ASSET6","index":"0.000007520693553142"},{"denom":"ASSET7","index":"0.000011806544930596"},{"denom":"ASSET8","index":"0.000016107343127742"},{"denom":"ASSET9","index":"0.000006840485865179"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001711866379191"},{"denom":"ASSET1","index":"0.000014286095556473"},{"denom":"ASSET10","index":"0.000009953932372868"},{"denom":"ASSET11","index":"0.000013820467901333"},{"denom":"ASSET12","index":"0.000012444127332464"},{"denom":"ASSET13","index":"0.000004281948436482"},{"denom":"ASSET14","index":"0.000012909754987604"},{"denom":"ASSET15","index":"0.000009230383516596"},{"denom":"ASSET16","index":"0.000006434335097252"},{"denom":"ASSET17","index":"0.000004569541988186"},{"denom":"ASSET18","index":"0.000002177494034331"},{"denom":"ASSET2","index":"0.000004215756269820"},{"denom":"ASSET3","index":"0.000001232543793017"},{"denom":"ASSET4","index":"0.000011608736539419"},{"denom":"ASSET5","index":"0.000000956362683841"},{"denom":"ASSET6","index":"0.000003896207879038"},{"denom":"ASSET7","index":"0.000005968707442112"},{"denom":"ASSET8","index":"0.000007787850781065"},{"denom":"ASSET9","index":"0.000003362105568731"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003408995344605"},{"denom":"ASSET1","index":"0.000028940875589883"},{"denom":"ASSET10","index":"0.000023121939135123"},{"denom":"ASSET11","index":"0.000028765460883304"},{"denom":"ASSET12","index":"0.000027437813762181"},{"denom":"ASSET13","index":"0.000009035078182388"},{"denom":"ASSET14","index":"0.000026397840013038"},{"denom":"ASSET15","index":"0.000020822021063845"},{"denom":"ASSET16","index":"0.000012835900360827"},{"denom":"ASSET17","index":"0.000010082289518918"},{"denom":"ASSET18","index":"0.000004163537456367"},{"denom":"ASSET2","index":"0.000008764373535196"},{"denom":"ASSET3","index":"0.000002432999591430"},{"denom":"ASSET4","index":"0.000023461370966582"},{"denom":"ASSET5","index":"0.000001895172356369"},{"denom":"ASSET6","index":"0.000007651446569151"},{"denom":"ASSET7","index":"0.000012022926111771"},{"denom":"ASSET8","index":"0.000016426068411072"},{"denom":"ASSET9","index":"0.000006969965423669"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001459800105667"},{"denom":"ASSET1","index":"0.000012176396665923"},{"denom":"ASSET10","index":"0.000008484162206626"},{"denom":"ASSET11","index":"0.000011779823335110"},{"denom":"ASSET12","index":"0.000010607197020722"},{"denom":"ASSET13","index":"0.000003650070053435"},{"denom":"ASSET14","index":"0.000011003770351536"},{"denom":"ASSET15","index":"0.000007867650218206"},{"denom":"ASSET16","index":"0.000005484791497715"},{"denom":"ASSET17","index":"0.000003895079438851"},{"denom":"ASSET18","index":"0.000001855233857943"},{"denom":"ASSET2","index":"0.000003594230705131"},{"denom":"ASSET3","index":"0.000001050691410948"},{"denom":"ASSET4","index":"0.000009896100013746"},{"denom":"ASSET5","index":"0.000000815938232363"},{"denom":"ASSET6","index":"0.000003321871434831"},{"denom":"ASSET7","index":"0.000005087078588365"},{"denom":"ASSET8","index":"0.000006638044976977"},{"denom":"ASSET9","index":"0.000002867179598640"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000002975317591563"},{"denom":"ASSET1","index":"0.000025265738469637"},{"denom":"ASSET10","index":"0.000020245724387946"},{"denom":"ASSET11","index":"0.000025128558675417"},{"denom":"ASSET12","index":"0.000023998925764885"},{"denom":"ASSET13","index":"0.000007895668684136"},{"denom":"ASSET14","index":"0.000023051238668493"},{"denom":"ASSET15","index":"0.000018221178423268"},{"denom":"ASSET16","index":"0.000011202197653725"},{"denom":"ASSET17","index":"0.000008818540737002"},{"denom":"ASSET18","index":"0.000003629428323701"},{"denom":"ASSET2","index":"0.000007657107369447"},{"denom":"ASSET3","index":"0.000002122660280404"},{"denom":"ASSET4","index":"0.000020482509156357"},{"denom":"ASSET5","index":"0.000001654309607539"},{"denom":"ASSET6","index":"0.000006675356935536"},{"denom":"ASSET7","index":"0.000010494215679887"},{"denom":"ASSET8","index":"0.000014353927855523"},{"denom":"ASSET9","index":"0.000006089535217587"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001617402557586"},{"denom":"ASSET1","index":"0.000013485147451276"},{"denom":"ASSET10","index":"0.000009395521488362"},{"denom":"ASSET11","index":"0.000013045402724081"},{"denom":"ASSET12","index":"0.000011747619504798"},{"denom":"ASSET13","index":"0.000004042433845849"},{"denom":"ASSET14","index":"0.000012186291683878"},{"denom":"ASSET15","index":"0.000008713380887153"},{"denom":"ASSET16","index":"0.000006074912523982"},{"denom":"ASSET17","index":"0.000004313788518972"},{"denom":"ASSET18","index":"0.000002055002188551"},{"denom":"ASSET2","index":"0.000003980226055173"},{"denom":"ASSET3","index":"0.000001163714704894"},{"denom":"ASSET4","index":"0.000010959296640193"},{"denom":"ASSET5","index":"0.000000903085512923"},{"denom":"ASSET6","index":"0.000003677767486712"},{"denom":"ASSET7","index":"0.000005633022700557"},{"denom":"ASSET8","index":"0.000007351244780963"},{"denom":"ASSET9","index":"0.000003174742420725"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003091273620954"},{"denom":"ASSET1","index":"0.000026212594205506"},{"denom":"ASSET10","index":"0.000020831747389799"},{"denom":"ASSET11","index":"0.000026024829344923"},{"denom":"ASSET12","index":"0.000024768925461013"},{"denom":"ASSET13","index":"0.000008170539761157"},{"denom":"ASSET14","index":"0.000023900540063840"},{"denom":"ASSET15","index":"0.000018780610027247"},{"denom":"ASSET16","index":"0.000011634658240098"},{"denom":"ASSET17","index":"0.000009101405984603"},{"denom":"ASSET18","index":"0.000003780149264156"},{"denom":"ASSET2","index":"0.000007930960667726"},{"denom":"ASSET3","index":"0.000002206123035767"},{"denom":"ASSET4","index":"0.000021253166889363"},{"denom":"ASSET5","index":"0.000001718500807532"},{"denom":"ASSET6","index":"0.000006939076737962"},{"denom":"ASSET7","index":"0.000010891166816552"},{"denom":"ASSET8","index":"0.000014853628574871"},{"denom":"ASSET9","index":"0.000006308302102729"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001496654334782"},{"denom":"ASSET1","index":"0.000012477377024436"},{"denom":"ASSET10","index":"0.000008693096469902"},{"denom":"ASSET11","index":"0.000012070207597683"},{"denom":"ASSET12","index":"0.000010869145414891"},{"denom":"ASSET13","index":"0.000003740467488528"},{"denom":"ASSET14","index":"0.000011275146493218"},{"denom":"ASSET15","index":"0.000008061604145195"},{"denom":"ASSET16","index":"0.000005620924281527"},{"denom":"ASSET17","index":"0.000003991662400298"},{"denom":"ASSET18","index":"0.000001901487064682"},{"denom":"ASSET2","index":"0.000003683218415613"},{"denom":"ASSET3","index":"0.000001077217249546"},{"denom":"ASSET4","index":"0.000010139511822330"},{"denom":"ASSET5","index":"0.000000835953299404"},{"denom":"ASSET6","index":"0.000003403398967385"},{"denom":"ASSET7","index":"0.000005212586506346"},{"denom":"ASSET8","index":"0.000006801540366848"},{"denom":"ASSET9","index":"0.000002937812119289"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003012098530886"},{"denom":"ASSET1","index":"0.000025562058034330"},{"denom":"ASSET10","index":"0.000020450222858637"},{"denom":"ASSET11","index":"0.000025414193224582"},{"denom":"ASSET12","index":"0.000024256065084933"},{"denom":"ASSET13","index":"0.000007984561416691"},{"denom":"ASSET14","index":"0.000023318358139730"},{"denom":"ASSET15","index":"0.000018411259079989"},{"denom":"ASSET16","index":"0.000011336678183578"},{"denom":"ASSET17","index":"0.000008913774138499"},{"denom":"ASSET18","index":"0.000003674960609183"},{"denom":"ASSET2","index":"0.000007744948932800"},{"denom":"ASSET3","index":"0.000002148867969989"},{"denom":"ASSET4","index":"0.000020722540912428"},{"denom":"ASSET5","index":"0.000001674229864542"},{"denom":"ASSET6","index":"0.000006756080138401"},{"denom":"ASSET7","index":"0.000010618450136599"},{"denom":"ASSET8","index":"0.000014514789998911"},{"denom":"ASSET9","index":"0.000006159565713194"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001470615438656"},{"denom":"ASSET1","index":"0.000012263141624205"},{"denom":"ASSET10","index":"0.000008543710077270"},{"denom":"ASSET11","index":"0.000011863435889596"},{"denom":"ASSET12","index":"0.000010682701378752"},{"denom":"ASSET13","index":"0.000003676538596641"},{"denom":"ASSET14","index":"0.000011081935762259"},{"denom":"ASSET15","index":"0.000007923412026863"},{"denom":"ASSET16","index":"0.000005524234917004"},{"denom":"ASSET17","index":"0.000003923055223056"},{"denom":"ASSET18","index":"0.000001868907119959"},{"denom":"ASSET2","index":"0.000003619976464385"},{"denom":"ASSET3","index":"0.000001058654575392"},{"denom":"ASSET4","index":"0.000009965776352407"},{"denom":"ASSET5","index":"0.000000822036322121"},{"denom":"ASSET6","index":"0.000003345178771841"},{"denom":"ASSET7","index":"0.000005123115129088"},{"denom":"ASSET8","index":"0.000006685172681558"},{"denom":"ASSET9","index":"0.000002887496851669"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000002995147819628"},{"denom":"ASSET1","index":"0.000025426980115999"},{"denom":"ASSET10","index":"0.000020372034738960"},{"denom":"ASSET11","index":"0.000025287989623967"},{"denom":"ASSET12","index":"0.000024150599022202"},{"denom":"ASSET13","index":"0.000007946076587902"},{"denom":"ASSET14","index":"0.000023198024872944"},{"denom":"ASSET15","index":"0.000018335727027304"},{"denom":"ASSET16","index":"0.000011274635486105"},{"denom":"ASSET17","index":"0.000008875015361763"},{"denom":"ASSET18","index":"0.000003653177061349"},{"denom":"ASSET2","index":"0.000007706361997735"},{"denom":"ASSET3","index":"0.000002137037997503"},{"denom":"ASSET4","index":"0.000020612735071168"},{"denom":"ASSET5","index":"0.000001665450131859"},{"denom":"ASSET6","index":"0.000006718182222688"},{"denom":"ASSET7","index":"0.000010561635089256"},{"denom":"ASSET8","index":"0.000014445035982826"},{"denom":"ASSET9","index":"0.000006128513210961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001778581753434"},{"denom":"ASSET1","index":"0.000014888315804569"},{"denom":"ASSET10","index":"0.000010370885153828"},{"denom":"ASSET11","index":"0.000014404007158094"},{"denom":"ASSET12","index":"0.000012967781516823"},{"denom":"ASSET13","index":"0.000004458979607201"},{"denom":"ASSET14","index":"0.000013452090163298"},{"denom":"ASSET15","index":"0.000009619371736884"},{"denom":"ASSET16","index":"0.000006705169708956"},{"denom":"ASSET17","index":"0.000004759584973979"},{"denom":"ASSET18","index":"0.000002262890399909"},{"denom":"ASSET2","index":"0.000004392178414584"},{"denom":"ASSET3","index":"0.000001285922957882"},{"denom":"ASSET4","index":"0.000012099366012799"},{"denom":"ASSET5","index":"0.000000993667740182"},{"denom":"ASSET6","index":"0.000004058172451498"},{"denom":"ASSET7","index":"0.000006220861062481"},{"denom":"ASSET8","index":"0.000008116344902996"},{"denom":"ASSET9","index":"0.000003507062612406"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003356752793751"},{"denom":"ASSET1","index":"0.000028516406305775"},{"denom":"ASSET10","index":"0.000022616173055400"},{"denom":"ASSET11","index":"0.000028302061322789"},{"denom":"ASSET12","index":"0.000026910491325102"},{"denom":"ASSET13","index":"0.000008878873421079"},{"denom":"ASSET14","index":"0.000025995251505598"},{"denom":"ASSET15","index":"0.000020398635157595"},{"denom":"ASSET16","index":"0.000012658071469071"},{"denom":"ASSET17","index":"0.000009885849877285"},{"denom":"ASSET18","index":"0.000004110010202724"},{"denom":"ASSET2","index":"0.000008622285743228"},{"denom":"ASSET3","index":"0.000002402314047495"},{"denom":"ASSET4","index":"0.000023121698220749"},{"denom":"ASSET5","index":"0.000001866482592061"},{"denom":"ASSET6","index":"0.000007549939309511"},{"denom":"ASSET7","index":"0.000011851024307599"},{"denom":"ASSET8","index":"0.000016149793693754"},{"denom":"ASSET9","index":"0.000006862325287189"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001604942959288"},{"denom":"ASSET1","index":"0.000013380628695124"},{"denom":"ASSET10","index":"0.000009322365613635"},{"denom":"ASSET11","index":"0.000012944148427984"},{"denom":"ASSET12","index":"0.000011656280789193"},{"denom":"ASSET13","index":"0.000004011353995308"},{"denom":"ASSET14","index":"0.000012091757653420"},{"denom":"ASSET15","index":"0.000008645319498111"},{"denom":"ASSET16","index":"0.000006027692148913"},{"denom":"ASSET17","index":"0.000004280767677439"},{"denom":"ASSET18","index":"0.000002039165569874"},{"denom":"ASSET2","index":"0.000003949895566889"},{"denom":"ASSET3","index":"0.000001155418454280"},{"denom":"ASSET4","index":"0.000010873877367808"},{"denom":"ASSET5","index":"0.000000896791353463"},{"denom":"ASSET6","index":"0.000003649878095912"},{"denom":"ASSET7","index":"0.000005589957628131"},{"denom":"ASSET8","index":"0.000007294237475803"},{"denom":"ASSET9","index":"0.000003150685146712"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003200268554223"},{"denom":"ASSET1","index":"0.000027155061035589"},{"denom":"ASSET10","index":"0.000021699312128992"},{"denom":"ASSET11","index":"0.000026991580254755"},{"denom":"ASSET12","index":"0.000025748970079650"},{"denom":"ASSET13","index":"0.000008479073830121"},{"denom":"ASSET14","index":"0.000024769827936089"},{"denom":"ASSET15","index":"0.000019540730612944"},{"denom":"ASSET16","index":"0.000012044995213579"},{"denom":"ASSET17","index":"0.000009462424001901"},{"denom":"ASSET18","index":"0.000003906197580725"},{"denom":"ASSET2","index":"0.000008225756082433"},{"denom":"ASSET3","index":"0.000002283784004254"},{"denom":"ASSET4","index":"0.000022014648589339"},{"denom":"ASSET5","index":"0.000001779311895342"},{"denom":"ASSET6","index":"0.000007179475362032"},{"denom":"ASSET7","index":"0.000011280598785262"},{"denom":"ASSET8","index":"0.000015413911362487"},{"denom":"ASSET9","index":"0.000006542247148589"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001620184629837"},{"denom":"ASSET1","index":"0.000013508113244239"},{"denom":"ASSET10","index":"0.000009411159415052"},{"denom":"ASSET11","index":"0.000013068550109883"},{"denom":"ASSET12","index":"0.000011766766981214"},{"denom":"ASSET13","index":"0.000004049052718392"},{"denom":"ASSET14","index":"0.000012206330115570"},{"denom":"ASSET15","index":"0.000008726455301921"},{"denom":"ASSET16","index":"0.000006083441070987"},{"denom":"ASSET17","index":"0.000004319553108765"},{"denom":"ASSET18","index":"0.000002056930051793"},{"denom":"ASSET2","index":"0.000003987063045598"},{"denom":"ASSET3","index":"0.000001166532933482"},{"denom":"ASSET4","index":"0.000010977807509294"},{"denom":"ASSET5","index":"0.000000904485680309"},{"denom":"ASSET6","index":"0.000003682750106429"},{"denom":"ASSET7","index":"0.000005643877936631"},{"denom":"ASSET8","index":"0.000007362682500458"},{"denom":"ASSET9","index":"0.000003178379586880"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003154859072778"},{"denom":"ASSET1","index":"0.000026759958230198"},{"denom":"ASSET10","index":"0.000021318547828682"},{"denom":"ASSET11","index":"0.000026582778956839"},{"denom":"ASSET12","index":"0.000025324795995745"},{"denom":"ASSET13","index":"0.000008347309163095"},{"denom":"ASSET14","index":"0.000024403216779648"},{"denom":"ASSET15","index":"0.000019208461119321"},{"denom":"ASSET16","index":"0.000011872154646602"},{"denom":"ASSET17","index":"0.000009304429323264"},{"denom":"ASSET18","index":"0.000003853154066825"},{"denom":"ASSET2","index":"0.000008100524497579"},{"denom":"ASSET3","index":"0.000002251942800438"},{"denom":"ASSET4","index":"0.000021695917087147"},{"denom":"ASSET5","index":"0.000001753374642360"},{"denom":"ASSET6","index":"0.000007078305954632"},{"denom":"ASSET7","index":"0.000011118481739065"},{"denom":"ASSET8","index":"0.000015174129529137"},{"denom":"ASSET9","index":"0.000006441283498998"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001565910537906"},{"denom":"ASSET1","index":"0.000013053983025959"},{"denom":"ASSET10","index":"0.000009094819386579"},{"denom":"ASSET11","index":"0.000012628414118813"},{"denom":"ASSET12","index":"0.000011371841840295"},{"denom":"ASSET13","index":"0.000003913403541838"},{"denom":"ASSET14","index":"0.000011796953146466"},{"denom":"ASSET15","index":"0.000008434501179040"},{"denom":"ASSET16","index":"0.000005880630135191"},{"denom":"ASSET17","index":"0.000004176066501732"},{"denom":"ASSET18","index":"0.000001989191440174"},{"denom":"ASSET2","index":"0.000003853457814057"},{"denom":"ASSET3","index":"0.000001127071202473"},{"denom":"ASSET4","index":"0.000010608563413286"},{"denom":"ASSET5","index":"0.000000874933065013"},{"denom":"ASSET6","index":"0.000003561050790760"},{"denom":"ASSET7","index":"0.000005453688425119"},{"denom":"ASSET8","index":"0.000007116152768840"},{"denom":"ASSET9","index":"0.000003073705751932"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003066618221533"},{"denom":"ASSET1","index":"0.000026018563142658"},{"denom":"ASSET10","index":"0.000020743763118655"},{"denom":"ASSET11","index":"0.000025849025514444"},{"denom":"ASSET12","index":"0.000024635604575072"},{"denom":"ASSET13","index":"0.000008118261811936"},{"denom":"ASSET14","index":"0.000023728777879609"},{"denom":"ASSET15","index":"0.000018689177197382"},{"denom":"ASSET16","index":"0.000011544003668418"},{"denom":"ASSET17","index":"0.000009052167825210"},{"denom":"ASSET18","index":"0.000003745930402733"},{"denom":"ASSET2","index":"0.000007877080459743"},{"denom":"ASSET3","index":"0.000002188594145460"},{"denom":"ASSET4","index":"0.000021094338825720"},{"denom":"ASSET5","index":"0.000001705356613908"},{"denom":"ASSET6","index":"0.000006882744986340"},{"denom":"ASSET7","index":"0.000010809249072439"},{"denom":"ASSET8","index":"0.000014757775472241"},{"denom":"ASSET9","index":"0.000006264987011427"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001616793771814"},{"denom":"ASSET1","index":"0.000013481664806896"},{"denom":"ASSET10","index":"0.000009392973001731"},{"denom":"ASSET11","index":"0.000013042136425966"},{"denom":"ASSET12","index":"0.000011745108533466"},{"denom":"ASSET13","index":"0.000004041984429535"},{"denom":"ASSET14","index":"0.000012183439289380"},{"denom":"ASSET15","index":"0.000008710326742521"},{"denom":"ASSET16","index":"0.000006073156456940"},{"denom":"ASSET17","index":"0.000004312647683187"},{"denom":"ASSET18","index":"0.000002053926902712"},{"denom":"ASSET2","index":"0.000003979707928695"},{"denom":"ASSET3","index":"0.000001164091515706"},{"denom":"ASSET4","index":"0.000010955873647818"},{"denom":"ASSET5","index":"0.000000903009262183"},{"denom":"ASSET6","index":"0.000003677906424623"},{"denom":"ASSET7","index":"0.000005632430450993"},{"denom":"ASSET8","index":"0.000007349824724165"},{"denom":"ASSET9","index":"0.000003173706292820"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003010548827117"},{"denom":"ASSET1","index":"0.000025517681435823"},{"denom":"ASSET10","index":"0.000020207909525991"},{"denom":"ASSET11","index":"0.000025316824190850"},{"denom":"ASSET12","index":"0.000024059273468565"},{"denom":"ASSET13","index":"0.000007945703994160"},{"denom":"ASSET14","index":"0.000023261456497592"},{"denom":"ASSET15","index":"0.000018230653165683"},{"denom":"ASSET16","index":"0.000011330852554208"},{"denom":"ASSET17","index":"0.000008840468160143"},{"denom":"ASSET18","index":"0.000003685449036638"},{"denom":"ASSET2","index":"0.000007715875534239"},{"denom":"ASSET3","index":"0.000002150116713749"},{"denom":"ASSET4","index":"0.000020690763011385"},{"denom":"ASSET5","index":"0.000001674170167376"},{"denom":"ASSET6","index":"0.000006761947340508"},{"denom":"ASSET7","index":"0.000010605047135869"},{"denom":"ASSET8","index":"0.000014444866674878"},{"denom":"ASSET9","index":"0.000006137206230949"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001598496813351"},{"denom":"ASSET1","index":"0.000013327209301876"},{"denom":"ASSET10","index":"0.000009285082513510"},{"denom":"ASSET11","index":"0.000012892549064690"},{"denom":"ASSET12","index":"0.000011609910099638"},{"denom":"ASSET13","index":"0.000003995530641827"},{"denom":"ASSET14","index":"0.000012043503249499"},{"denom":"ASSET15","index":"0.000008611039019674"},{"denom":"ASSET16","index":"0.000006003788988106"},{"denom":"ASSET17","index":"0.000004263725256261"},{"denom":"ASSET18","index":"0.000002031022875886"},{"denom":"ASSET2","index":"0.000003933995272733"},{"denom":"ASSET3","index":"0.000001150675832486"},{"denom":"ASSET4","index":"0.000010830580656369"},{"denom":"ASSET5","index":"0.000000893152091305"},{"denom":"ASSET6","index":"0.000003635566517414"},{"denom":"ASSET7","index":"0.000005567705967820"},{"denom":"ASSET8","index":"0.000007265086206652"},{"denom":"ASSET9","index":"0.000003137948128033"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003202417698287"},{"denom":"ASSET1","index":"0.000027176874960756"},{"denom":"ASSET10","index":"0.000021729724210241"},{"denom":"ASSET11","index":"0.000027016578438308"},{"denom":"ASSET12","index":"0.000025779554956391"},{"denom":"ASSET13","index":"0.000008487649506725"},{"denom":"ASSET14","index":"0.000024790682929963"},{"denom":"ASSET15","index":"0.000019565798539307"},{"denom":"ASSET16","index":"0.000012053877846841"},{"denom":"ASSET17","index":"0.000009473617164606"},{"denom":"ASSET18","index":"0.000003908301251667"},{"denom":"ASSET2","index":"0.000008233254558201"},{"denom":"ASSET3","index":"0.000002285025567503"},{"denom":"ASSET4","index":"0.000022032200437673"},{"denom":"ASSET5","index":"0.000001780306156687"},{"denom":"ASSET6","index":"0.000007184182778940"},{"denom":"ASSET7","index":"0.000011289430429576"},{"denom":"ASSET8","index":"0.000015429251463912"},{"denom":"ASSET9","index":"0.000006548040900334"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001349258766758"},{"denom":"ASSET1","index":"0.000011264433664868"},{"denom":"ASSET10","index":"0.000007848225297969"},{"denom":"ASSET11","index":"0.000010895650990484"},{"denom":"ASSET12","index":"0.000009811385762205"},{"denom":"ASSET13","index":"0.000003376459336127"},{"denom":"ASSET14","index":"0.000010177960157102"},{"denom":"ASSET15","index":"0.000007278489190238"},{"denom":"ASSET16","index":"0.000005074626261883"},{"denom":"ASSET17","index":"0.000003603912123322"},{"denom":"ASSET18","index":"0.000001715833161655"},{"denom":"ASSET2","index":"0.000003323460628431"},{"denom":"ASSET3","index":"0.000000971642974425"},{"denom":"ASSET4","index":"0.000009153318474981"},{"denom":"ASSET5","index":"0.000000753023305179"},{"denom":"ASSET6","index":"0.000003071716766875"},{"denom":"ASSET7","index":"0.000004705843587499"},{"denom":"ASSET8","index":"0.000006139016974776"},{"denom":"ASSET9","index":"0.000002652143664283"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000002874619638549"},{"denom":"ASSET1","index":"0.000024442633186143"},{"denom":"ASSET10","index":"0.000019689737510784"},{"denom":"ASSET11","index":"0.000024334399718263"},{"denom":"ASSET12","index":"0.000023294058494145"},{"denom":"ASSET13","index":"0.000007650065286478"},{"denom":"ASSET14","index":"0.000022306974942610"},{"denom":"ASSET15","index":"0.000017702453996022"},{"denom":"ASSET16","index":"0.000010830667352685"},{"denom":"ASSET17","index":"0.000008561334956642"},{"denom":"ASSET18","index":"0.000003501743239949"},{"denom":"ASSET2","index":"0.000007413384379561"},{"denom":"ASSET3","index":"0.000002050775894848"},{"denom":"ASSET4","index":"0.000019811877393900"},{"denom":"ASSET5","index":"0.000001596563839644"},{"denom":"ASSET6","index":"0.000006447875450380"},{"denom":"ASSET7","index":"0.000010149425285061"},{"denom":"ASSET8","index":"0.000013906577801610"},{"denom":"ASSET9","index":"0.000005896530335304"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001744355646452"},{"denom":"ASSET1","index":"0.000014544558741461"},{"denom":"ASSET10","index":"0.000010133244841823"},{"denom":"ASSET11","index":"0.000014070651242217"},{"denom":"ASSET12","index":"0.000012670295178174"},{"denom":"ASSET13","index":"0.000004360461787457"},{"denom":"ASSET14","index":"0.000013143775348745"},{"denom":"ASSET15","index":"0.000009397812194213"},{"denom":"ASSET16","index":"0.000006552230555377"},{"denom":"ASSET17","index":"0.000004653181929010"},{"denom":"ASSET18","index":"0.000002216553831001"},{"denom":"ASSET2","index":"0.000004293371185670"},{"denom":"ASSET3","index":"0.000001255918972299"},{"denom":"ASSET4","index":"0.000011819911117312"},{"denom":"ASSET5","index":"0.000000974736704938"},{"denom":"ASSET6","index":"0.000003967319407560"},{"denom":"ASSET7","index":"0.000006076186412764"},{"denom":"ASSET8","index":"0.000007929083542361"},{"denom":"ASSET9","index":"0.000003424611991834"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003377008276018"},{"denom":"ASSET1","index":"0.000028642142456639"},{"denom":"ASSET10","index":"0.000022800592191853"},{"denom":"ASSET11","index":"0.000028447577997463"},{"denom":"ASSET12","index":"0.000027093635853923"},{"denom":"ASSET13","index":"0.000008933092474106"},{"denom":"ASSET14","index":"0.000026119259559896"},{"denom":"ASSET15","index":"0.000020548756595198"},{"denom":"ASSET16","index":"0.000012710670192565"},{"denom":"ASSET17","index":"0.000009956402105067"},{"denom":"ASSET18","index":"0.000004127475104327"},{"denom":"ASSET2","index":"0.000008669602227225"},{"denom":"ASSET3","index":"0.000002410895003349"},{"denom":"ASSET4","index":"0.000023222264254358"},{"denom":"ASSET5","index":"0.000001877874241403"},{"denom":"ASSET6","index":"0.000007579654674160"},{"denom":"ASSET7","index":"0.000011900488798179"},{"denom":"ASSET8","index":"0.000016239324105118"},{"denom":"ASSET9","index":"0.000006895771583569"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001546168277317"},{"denom":"ASSET1","index":"0.000012892123182452"},{"denom":"ASSET10","index":"0.000008982377260299"},{"denom":"ASSET11","index":"0.000012472337191477"},{"denom":"ASSET12","index":"0.000011231230783378"},{"denom":"ASSET13","index":"0.000003864117010091"},{"denom":"ASSET14","index":"0.000011651016774353"},{"denom":"ASSET15","index":"0.000008329231976204"},{"denom":"ASSET16","index":"0.000005807908663952"},{"denom":"ASSET17","index":"0.000004124853650448"},{"denom":"ASSET18","index":"0.000001964650585090"},{"denom":"ASSET2","index":"0.000003805451266010"},{"denom":"ASSET3","index":"0.000001113345454324"},{"denom":"ASSET4","index":"0.000010477701892746"},{"denom":"ASSET5","index":"0.000000863038279582"},{"denom":"ASSET6","index":"0.000003516033595214"},{"denom":"ASSET7","index":"0.000005385515306574"},{"denom":"ASSET8","index":"0.000007028156140823"},{"denom":"ASSET9","index":"0.000003034974493755"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003044385892570"},{"denom":"ASSET1","index":"0.000025830014188245"},{"denom":"ASSET10","index":"0.000020607856539150"},{"denom":"ASSET11","index":"0.000025666657138152"},{"denom":"ASSET12","index":"0.000024468008636658"},{"denom":"ASSET13","index":"0.000008060303383676"},{"denom":"ASSET14","index":"0.000023559408638801"},{"denom":"ASSET15","index":"0.000018562848593971"},{"denom":"ASSET16","index":"0.000011459854746185"},{"denom":"ASSET17","index":"0.000008991538648143"},{"denom":"ASSET18","index":"0.000003718456390600"},{"denom":"ASSET2","index":"0.000007821717005664"},{"denom":"ASSET3","index":"0.000002173111618200"},{"denom":"ASSET4","index":"0.000020942104557307"},{"denom":"ASSET5","index":"0.000001691598021351"},{"denom":"ASSET6","index":"0.000006831113312915"},{"denom":"ASSET7","index":"0.000010730587410374"},{"denom":"ASSET8","index":"0.000014654605067850"},{"denom":"ASSET9","index":"0.000006220578615076"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001387821916020"},{"denom":"ASSET1","index":"0.000011588015182905"},{"denom":"ASSET10","index":"0.000008073788013584"},{"denom":"ASSET11","index":"0.000011209789038410"},{"denom":"ASSET12","index":"0.000010095957715252"},{"denom":"ASSET13","index":"0.000003472532948668"},{"denom":"ASSET14","index":"0.000010471205701129"},{"denom":"ASSET15","index":"0.000007487090765824"},{"denom":"ASSET16","index":"0.000005220712057474"},{"denom":"ASSET17","index":"0.000003707807479495"},{"denom":"ASSET18","index":"0.000001766048060515"},{"denom":"ASSET2","index":"0.000003418926093543"},{"denom":"ASSET3","index":"0.000001000661295671"},{"denom":"ASSET4","index":"0.000009416937550333"},{"denom":"ASSET5","index":"0.000000774321240698"},{"denom":"ASSET6","index":"0.000003159826293771"},{"denom":"ASSET7","index":"0.000004839507754361"},{"denom":"ASSET8","index":"0.000006316674428923"},{"denom":"ASSET9","index":"0.000002727993294151"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000002956721491824"},{"denom":"ASSET1","index":"0.000025136116728129"},{"denom":"ASSET10","index":"0.000020247681325291"},{"denom":"ASSET11","index":"0.000025026479369709"},{"denom":"ASSET12","index":"0.000023957412844230"},{"denom":"ASSET13","index":"0.000007866588644670"},{"denom":"ASSET14","index":"0.000022940688787988"},{"denom":"ASSET15","index":"0.000018203641219753"},{"denom":"ASSET16","index":"0.000011138902531601"},{"denom":"ASSET17","index":"0.000008803888891481"},{"denom":"ASSET18","index":"0.000003602115317706"},{"denom":"ASSET2","index":"0.000007623974866010"},{"denom":"ASSET3","index":"0.000002110544057177"},{"denom":"ASSET4","index":"0.000020374365248917"},{"denom":"ASSET5","index":"0.000001641905652861"},{"denom":"ASSET6","index":"0.000006630874494768"},{"denom":"ASSET7","index":"0.000010436528568948"},{"denom":"ASSET8","index":"0.000014302572224422"},{"denom":"ASSET9","index":"0.000006063325997423"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001500850379058"},{"denom":"ASSET1","index":"0.000012511793460183"},{"denom":"ASSET10","index":"0.000008717304800227"},{"denom":"ASSET11","index":"0.000012103632089176"},{"denom":"ASSET12","index":"0.000010899320696303"},{"denom":"ASSET13","index":"0.000003750781099635"},{"denom":"ASSET14","index":"0.000011306809643305"},{"denom":"ASSET15","index":"0.000008083881387560"},{"denom":"ASSET16","index":"0.000005636258009526"},{"denom":"ASSET17","index":"0.000004002940101492"},{"denom":"ASSET18","index":"0.000001906322054045"},{"denom":"ASSET2","index":"0.000003692952635209"},{"denom":"ASSET3","index":"0.000001079912951956"},{"denom":"ASSET4","index":"0.000010167723378913"},{"denom":"ASSET5","index":"0.000000838512734178"},{"denom":"ASSET6","index":"0.000003412551825143"},{"denom":"ASSET7","index":"0.000005226751790509"},{"denom":"ASSET8","index":"0.000006820396682251"},{"denom":"ASSET9","index":"0.000002945889565704"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003004514310835"},{"denom":"ASSET1","index":"0.000025497942224476"},{"denom":"ASSET10","index":"0.000020385999177782"},{"denom":"ASSET11","index":"0.000025346802479017"},{"denom":"ASSET12","index":"0.000024185328023735"},{"denom":"ASSET13","index":"0.000007962788555043"},{"denom":"ASSET14","index":"0.000023259189454501"},{"denom":"ASSET15","index":"0.000018355567065709"},{"denom":"ASSET16","index":"0.000011309092459120"},{"denom":"ASSET17","index":"0.000008887662321727"},{"denom":"ASSET18","index":"0.000003666570499762"},{"denom":"ASSET2","index":"0.000007723995884874"},{"denom":"ASSET3","index":"0.000002143405494402"},{"denom":"ASSET4","index":"0.000020670641097733"},{"denom":"ASSET5","index":"0.000001670336124344"},{"denom":"ASSET6","index":"0.000006739845385808"},{"denom":"ASSET7","index":"0.000010591422556410"},{"denom":"ASSET8","index":"0.000014475095162856"},{"denom":"ASSET9","index":"0.000006143360978771"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001507842106347"},{"denom":"ASSET1","index":"0.000012572313391156"},{"denom":"ASSET10","index":"0.000008759356679472"},{"denom":"ASSET11","index":"0.000012162445176153"},{"denom":"ASSET12","index":"0.000010952151629736"},{"denom":"ASSET13","index":"0.000003769211161813"},{"denom":"ASSET14","index":"0.000011361231636633"},{"denom":"ASSET15","index":"0.000008123272738112"},{"denom":"ASSET16","index":"0.000005663669344042"},{"denom":"ASSET17","index":"0.000004022225963767"},{"denom":"ASSET18","index":"0.000001916133905138"},{"denom":"ASSET2","index":"0.000003711277866039"},{"denom":"ASSET3","index":"0.000001085756665704"},{"denom":"ASSET4","index":"0.000010217147571101"},{"denom":"ASSET5","index":"0.000000842594465073"},{"denom":"ASSET6","index":"0.000003429493468225"},{"denom":"ASSET7","index":"0.000005252224712828"},{"denom":"ASSET8","index":"0.000006853863583762"},{"denom":"ASSET9","index":"0.000002960115541236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003064659144392"},{"denom":"ASSET1","index":"0.000026014545525120"},{"denom":"ASSET10","index":"0.000020837902255895"},{"denom":"ASSET11","index":"0.000025870951889592"},{"denom":"ASSET12","index":"0.000024704995690840"},{"denom":"ASSET13","index":"0.000008129050348807"},{"denom":"ASSET14","index":"0.000023733606076391"},{"denom":"ASSET15","index":"0.000018755969892396"},{"denom":"ASSET16","index":"0.000011535737727926"},{"denom":"ASSET17","index":"0.000009078938038909"},{"denom":"ASSET18","index":"0.000003738223548700"},{"denom":"ASSET2","index":"0.000007883998416280"},{"denom":"ASSET3","index":"0.000002186926046113"},{"denom":"ASSET4","index":"0.000021089316501471"},{"denom":"ASSET5","index":"0.000001703791082418"},{"denom":"ASSET6","index":"0.000006873778950624"},{"denom":"ASSET7","index":"0.000010805665377904"},{"denom":"ASSET8","index":"0.000014777724141198"},{"denom":"ASSET9","index":"0.000006269886019705"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001016570122529"},{"denom":"ASSET1","index":"0.000008477171470527"},{"denom":"ASSET10","index":"0.000005906463519680"},{"denom":"ASSET11","index":"0.000008200989896911"},{"denom":"ASSET12","index":"0.000007384774710599"},{"denom":"ASSET13","index":"0.000002541117067960"},{"denom":"ASSET14","index":"0.000007660956284215"},{"denom":"ASSET15","index":"0.000005477395717812"},{"denom":"ASSET16","index":"0.000003819073322661"},{"denom":"ASSET17","index":"0.000002711881121289"},{"denom":"ASSET18","index":"0.000001291518742692"},{"denom":"ASSET2","index":"0.000002502279034170"},{"denom":"ASSET3","index":"0.000000731757874738"},{"denom":"ASSET4","index":"0.000006889127422234"},{"denom":"ASSET5","index":"0.000000567775065403"},{"denom":"ASSET6","index":"0.000002312404202309"},{"denom":"ASSET7","index":"0.000003541658795591"},{"denom":"ASSET8","index":"0.000004621109544256"},{"denom":"ASSET9","index":"0.000001996151641449"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000002499545170163"},{"denom":"ASSET1","index":"0.000021282413071401"},{"denom":"ASSET10","index":"0.000017412808765385"},{"denom":"ASSET11","index":"0.000021259874812403"},{"denom":"ASSET12","index":"0.000020486111882687"},{"denom":"ASSET13","index":"0.000006694303381301"},{"denom":"ASSET14","index":"0.000019446986985139"},{"denom":"ASSET15","index":"0.000015606004703242"},{"denom":"ASSET16","index":"0.000009412782427040"},{"denom":"ASSET17","index":"0.000007528963649123"},{"denom":"ASSET18","index":"0.000003027066879988"},{"denom":"ASSET2","index":"0.000006477094521478"},{"denom":"ASSET3","index":"0.000001780578331809"},{"denom":"ASSET4","index":"0.000017246051064985"},{"denom":"ASSET5","index":"0.000001387924123500"},{"denom":"ASSET6","index":"0.000005593713918003"},{"denom":"ASSET7","index":"0.000008831780754063"},{"denom":"ASSET8","index":"0.000012169406160300"},{"denom":"ASSET9","index":"0.000005149034362400"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001552339226368"},{"denom":"ASSET1","index":"0.000012948480372324"},{"denom":"ASSET10","index":"0.000009021431734191"},{"denom":"ASSET11","index":"0.000012526515146109"},{"denom":"ASSET12","index":"0.000011279099696349"},{"denom":"ASSET13","index":"0.000003880848065920"},{"denom":"ASSET14","index":"0.000011701064922564"},{"denom":"ASSET15","index":"0.000008365383608761"},{"denom":"ASSET16","index":"0.000005830512213323"},{"denom":"ASSET17","index":"0.000004142651308462"},{"denom":"ASSET18","index":"0.000001971224414436"},{"denom":"ASSET2","index":"0.000003822327341117"},{"denom":"ASSET3","index":"0.000001118053847563"},{"denom":"ASSET4","index":"0.000010521410312050"},{"denom":"ASSET5","index":"0.000000865490719463"},{"denom":"ASSET6","index":"0.000003529723717099"},{"denom":"ASSET7","index":"0.000005408546987108"},{"denom":"ASSET8","index":"0.000007056367396050"},{"denom":"ASSET9","index":"0.000003046157727933"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003043964098015"},{"denom":"ASSET1","index":"0.000025828331615061"},{"denom":"ASSET10","index":"0.000020594675215425"},{"denom":"ASSET11","index":"0.000025661520704142"},{"denom":"ASSET12","index":"0.000024456429429906"},{"denom":"ASSET13","index":"0.000008058244190043"},{"denom":"ASSET14","index":"0.000023555461855486"},{"denom":"ASSET15","index":"0.000018552812657155"},{"denom":"ASSET16","index":"0.000011456604402492"},{"denom":"ASSET17","index":"0.000008987560143691"},{"denom":"ASSET18","index":"0.000003716794339222"},{"denom":"ASSET2","index":"0.000007820148034807"},{"denom":"ASSET3","index":"0.000002173135080244"},{"denom":"ASSET4","index":"0.000020938599170426"},{"denom":"ASSET5","index":"0.000001690207511083"},{"denom":"ASSET6","index":"0.000006829800145738"},{"denom":"ASSET7","index":"0.000010729300481432"},{"denom":"ASSET8","index":"0.000014648719853803"},{"denom":"ASSET9","index":"0.000006217447736766"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000000977108719668"},{"denom":"ASSET1","index":"0.000008146517162771"},{"denom":"ASSET10","index":"0.000005675852121603"},{"denom":"ASSET11","index":"0.000007881108738917"},{"denom":"ASSET12","index":"0.000007096716963958"},{"denom":"ASSET13","index":"0.000002441926549413"},{"denom":"ASSET14","index":"0.000007362125387813"},{"denom":"ASSET15","index":"0.000005263370239944"},{"denom":"ASSET16","index":"0.000003670074447059"},{"denom":"ASSET17","index":"0.000002605905002368"},{"denom":"ASSET18","index":"0.000001241671893765"},{"denom":"ASSET2","index":"0.000002404735560083"},{"denom":"ASSET3","index":"0.000000703247798239"},{"denom":"ASSET4","index":"0.000006620841350486"},{"denom":"ASSET5","index":"0.000000546031343344"},{"denom":"ASSET6","index":"0.000002222161612464"},{"denom":"ASSET7","index":"0.000003402975523689"},{"denom":"ASSET8","index":"0.000004440942225898"},{"denom":"ASSET9","index":"0.000001917871699764"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000002320380931676"},{"denom":"ASSET1","index":"0.000019748951316256"},{"denom":"ASSET10","index":"0.000016101172379351"},{"denom":"ASSET11","index":"0.000019714000020718"},{"denom":"ASSET12","index":"0.000018967805559844"},{"denom":"ASSET13","index":"0.000006204998608741"},{"denom":"ASSET14","index":"0.000018041457784230"},{"denom":"ASSET15","index":"0.000014440911570898"},{"denom":"ASSET16","index":"0.000008738221404310"},{"denom":"ASSET17","index":"0.000006970584758543"},{"denom":"ASSET18","index":"0.000002814127990287"},{"denom":"ASSET2","index":"0.000006006105656449"},{"denom":"ASSET3","index":"0.000001653724297068"},{"denom":"ASSET4","index":"0.000016005284799403"},{"denom":"ASSET5","index":"0.000001288969102308"},{"denom":"ASSET6","index":"0.000005195185892122"},{"denom":"ASSET7","index":"0.000008196101819524"},{"denom":"ASSET8","index":"0.000011280171312915"},{"denom":"ASSET9","index":"0.000004774394171461"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001745798220012"},{"denom":"ASSET1","index":"0.000014553743296829"},{"denom":"ASSET10","index":"0.000010139438249561"},{"denom":"ASSET11","index":"0.000014079320164724"},{"denom":"ASSET12","index":"0.000012678243118663"},{"denom":"ASSET13","index":"0.000004363016060013"},{"denom":"ASSET14","index":"0.000013152173087429"},{"denom":"ASSET15","index":"0.000009403145384454"},{"denom":"ASSET16","index":"0.000006556113428486"},{"denom":"ASSET17","index":"0.000004655955083371"},{"denom":"ASSET18","index":"0.000002217755535422"},{"denom":"ASSET2","index":"0.000004295945845911"},{"denom":"ASSET3","index":"0.000001256580187737"},{"denom":"ASSET4","index":"0.000011827536358912"},{"denom":"ASSET5","index":"0.000000975477084515"},{"denom":"ASSET6","index":"0.000003969964878841"},{"denom":"ASSET7","index":"0.000006080210806364"},{"denom":"ASSET8","index":"0.000007934011797614"},{"denom":"ASSET9","index":"0.000003426498879278"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003342998947188"},{"denom":"ASSET1","index":"0.000028345782457833"},{"denom":"ASSET10","index":"0.000022532322238539"},{"denom":"ASSET11","index":"0.000028144588841629"},{"denom":"ASSET12","index":"0.000026788988923046"},{"denom":"ASSET13","index":"0.000008836278349189"},{"denom":"ASSET14","index":"0.000025846526421467"},{"denom":"ASSET15","index":"0.000020312521464953"},{"denom":"ASSET16","index":"0.000012581099317360"},{"denom":"ASSET17","index":"0.000009844015126225"},{"denom":"ASSET18","index":"0.000004087085525414"},{"denom":"ASSET2","index":"0.000008577030596387"},{"denom":"ASSET3","index":"0.000002386540105172"},{"denom":"ASSET4","index":"0.000022982635628207"},{"denom":"ASSET5","index":"0.000001858980311097"},{"denom":"ASSET6","index":"0.000007503977785171"},{"denom":"ASSET7","index":"0.000011778054778213"},{"denom":"ASSET8","index":"0.000016064148587518"},{"denom":"ASSET9","index":"0.000006822246648031"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001535240763659"},{"denom":"ASSET1","index":"0.000012802535686671"},{"denom":"ASSET10","index":"0.000008918976928097"},{"denom":"ASSET11","index":"0.000012384847277788"},{"denom":"ASSET12","index":"0.000011152366284839"},{"denom":"ASSET13","index":"0.000003838101909148"},{"denom":"ASSET14","index":"0.000011569197017318"},{"denom":"ASSET15","index":"0.000008271431242866"},{"denom":"ASSET16","index":"0.000005767016142371"},{"denom":"ASSET17","index":"0.000004095404830432"},{"denom":"ASSET18","index":"0.000001951213819735"},{"denom":"ASSET2","index":"0.000003778922237253"},{"denom":"ASSET3","index":"0.000001105544885116"},{"denom":"ASSET4","index":"0.000010403614783903"},{"denom":"ASSET5","index":"0.000000857676404279"},{"denom":"ASSET6","index":"0.000003491600641819"},{"denom":"ASSET7","index":"0.000005348470057083"},{"denom":"ASSET8","index":"0.000006978912901618"},{"denom":"ASSET9","index":"0.000003013874884636"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003086246918243"},{"denom":"ASSET1","index":"0.000026194228204796"},{"denom":"ASSET10","index":"0.000020951998769875"},{"denom":"ASSET11","index":"0.000026042273492864"},{"denom":"ASSET12","index":"0.000024853724280460"},{"denom":"ASSET13","index":"0.000008181454895403"},{"denom":"ASSET14","index":"0.000023895275980533"},{"denom":"ASSET15","index":"0.000018864347888264"},{"denom":"ASSET16","index":"0.000011616907749245"},{"denom":"ASSET17","index":"0.000009133094250657"},{"denom":"ASSET18","index":"0.000003766346411006"},{"denom":"ASSET2","index":"0.000007935833032906"},{"denom":"ASSET3","index":"0.000002202232138461"},{"denom":"ASSET4","index":"0.000021234941701767"},{"denom":"ASSET5","index":"0.000001715417631736"},{"denom":"ASSET6","index":"0.000006923101305069"},{"denom":"ASSET7","index":"0.000010881195638563"},{"denom":"ASSET8","index":"0.000014873239564067"},{"denom":"ASSET9","index":"0.000006310901439146"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001694764141112"},{"denom":"ASSET1","index":"0.000014130580032100"},{"denom":"ASSET10","index":"0.000009844524497723"},{"denom":"ASSET11","index":"0.000013669508873851"},{"denom":"ASSET12","index":"0.000012309527666765"},{"denom":"ASSET13","index":"0.000004236016804025"},{"denom":"ASSET14","index":"0.000012769407426673"},{"denom":"ASSET15","index":"0.000009129685492685"},{"denom":"ASSET16","index":"0.000006365641339869"},{"denom":"ASSET17","index":"0.000004520761007698"},{"denom":"ASSET18","index":"0.000002153452502679"},{"denom":"ASSET2","index":"0.000004171085594400"},{"denom":"ASSET3","index":"0.000001219991901933"},{"denom":"ASSET4","index":"0.000011483292916774"},{"denom":"ASSET5","index":"0.000000947161681676"},{"denom":"ASSET6","index":"0.000003854173635500"},{"denom":"ASSET7","index":"0.000005903378783277"},{"denom":"ASSET8","index":"0.000007702985978462"},{"denom":"ASSET9","index":"0.000003326979869284"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003333609736915"},{"denom":"ASSET1","index":"0.000028281729059652"},{"denom":"ASSET10","index":"0.000022560289398652"},{"denom":"ASSET11","index":"0.000028101042421314"},{"denom":"ASSET12","index":"0.000026787599659919"},{"denom":"ASSET13","index":"0.000008826015241086"},{"denom":"ASSET14","index":"0.000025794402991537"},{"denom":"ASSET15","index":"0.000020323143219667"},{"denom":"ASSET16","index":"0.000012547562311789"},{"denom":"ASSET17","index":"0.000009844220733470"},{"denom":"ASSET18","index":"0.000004071528772633"},{"denom":"ASSET2","index":"0.000008563776406339"},{"denom":"ASSET3","index":"0.000002379222276435"},{"denom":"ASSET4","index":"0.000022929058250150"},{"denom":"ASSET5","index":"0.000001853699834530"},{"denom":"ASSET6","index":"0.000007480326246914"},{"denom":"ASSET7","index":"0.000011749530638760"},{"denom":"ASSET8","index":"0.000016044906214881"},{"denom":"ASSET9","index":"0.000006811209452101"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001763265776240"},{"denom":"ASSET1","index":"0.000014701143889842"},{"denom":"ASSET10","index":"0.000010242267715158"},{"denom":"ASSET11","index":"0.000014221824092125"},{"denom":"ASSET12","index":"0.000012807154532407"},{"denom":"ASSET13","index":"0.000004407037513175"},{"denom":"ASSET14","index":"0.000013285723045174"},{"denom":"ASSET15","index":"0.000009498495615253"},{"denom":"ASSET16","index":"0.000006622576828953"},{"denom":"ASSET17","index":"0.000004703043783239"},{"denom":"ASSET18","index":"0.000002240331719108"},{"denom":"ASSET2","index":"0.000004339421867729"},{"denom":"ASSET3","index":"0.000001269671564485"},{"denom":"ASSET4","index":"0.000011947684550294"},{"denom":"ASSET5","index":"0.000000984934568662"},{"denom":"ASSET6","index":"0.000004010359059893"},{"denom":"ASSET7","index":"0.000006141754461338"},{"denom":"ASSET8","index":"0.000008013956555240"},{"denom":"ASSET9","index":"0.000003461169761882"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003372790294110"},{"denom":"ASSET1","index":"0.000028600279733511"},{"denom":"ASSET10","index":"0.000022731421090197"},{"denom":"ASSET11","index":"0.000028396190348540"},{"denom":"ASSET12","index":"0.000027027392524280"},{"denom":"ASSET13","index":"0.000008915082315276"},{"denom":"ASSET14","index":"0.000026078776667620"},{"denom":"ASSET15","index":"0.000020492230414373"},{"denom":"ASSET16","index":"0.000012694274413467"},{"denom":"ASSET17","index":"0.000009931274832025"},{"denom":"ASSET18","index":"0.000004123939856338"},{"denom":"ASSET2","index":"0.000008653658587521"},{"denom":"ASSET3","index":"0.000002407864000528"},{"denom":"ASSET4","index":"0.000023189126720885"},{"denom":"ASSET5","index":"0.000001875419633234"},{"denom":"ASSET6","index":"0.000007571725921487"},{"denom":"ASSET7","index":"0.000011883748947250"},{"denom":"ASSET8","index":"0.000016207221904670"},{"denom":"ASSET9","index":"0.000006883201227023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001453309126336"},{"denom":"ASSET1","index":"0.000012116886392617"},{"denom":"ASSET10","index":"0.000008441923956558"},{"denom":"ASSET11","index":"0.000011721955689254"},{"denom":"ASSET12","index":"0.000010555542874101"},{"denom":"ASSET13","index":"0.000003632376264868"},{"denom":"ASSET14","index":"0.000010950025301978"},{"denom":"ASSET15","index":"0.000007829131366891"},{"denom":"ASSET16","index":"0.000005458650595742"},{"denom":"ASSET17","index":"0.000003876686404859"},{"denom":"ASSET18","index":"0.000001846446727754"},{"denom":"ASSET2","index":"0.000003576790104576"},{"denom":"ASSET3","index":"0.000001046274984845"},{"denom":"ASSET4","index":"0.000009847267605868"},{"denom":"ASSET5","index":"0.000000812275181037"},{"denom":"ASSET6","index":"0.000003305135159925"},{"denom":"ASSET7","index":"0.000005061926790434"},{"denom":"ASSET8","index":"0.000006605339289501"},{"denom":"ASSET9","index":"0.000002852825194325"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000002846126280344"},{"denom":"ASSET1","index":"0.000024142729904188"},{"denom":"ASSET10","index":"0.000019247649074564"},{"denom":"ASSET11","index":"0.000023985879136349"},{"denom":"ASSET12","index":"0.000022859091275790"},{"denom":"ASSET13","index":"0.000007532792628817"},{"denom":"ASSET14","index":"0.000022018595952129"},{"denom":"ASSET15","index":"0.000017341431925331"},{"denom":"ASSET16","index":"0.000010711928951149"},{"denom":"ASSET17","index":"0.000008400535387767"},{"denom":"ASSET18","index":"0.000003476353193421"},{"denom":"ASSET2","index":"0.000007309791035362"},{"denom":"ASSET3","index":"0.000002031285314481"},{"denom":"ASSET4","index":"0.000019573873127075"},{"denom":"ASSET5","index":"0.000001582650339951"},{"denom":"ASSET6","index":"0.000006386635795582"},{"denom":"ASSET7","index":"0.000010030235680714"},{"denom":"ASSET8","index":"0.000013694243666513"},{"denom":"ASSET9","index":"0.000005813799926422"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001542334439671"},{"denom":"ASSET1","index":"0.000012860022908304"},{"denom":"ASSET10","index":"0.000008959505058412"},{"denom":"ASSET11","index":"0.000012440701863130"},{"denom":"ASSET12","index":"0.000011202637482986"},{"denom":"ASSET13","index":"0.000003855293405849"},{"denom":"ASSET14","index":"0.000011621234937056"},{"denom":"ASSET15","index":"0.000008308996655285"},{"denom":"ASSET16","index":"0.000005793070384239"},{"denom":"ASSET17","index":"0.000004114339021332"},{"denom":"ASSET18","index":"0.000001959846507084"},{"denom":"ASSET2","index":"0.000003796320730815"},{"denom":"ASSET3","index":"0.000001110350550164"},{"denom":"ASSET4","index":"0.000010450826325201"},{"denom":"ASSET5","index":"0.000000861797005699"},{"denom":"ASSET6","index":"0.000003507969675592"},{"denom":"ASSET7","index":"0.000005372663952407"},{"denom":"ASSET8","index":"0.000007010512417899"},{"denom":"ASSET9","index":"0.000003027866977623"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003036454064443"},{"denom":"ASSET1","index":"0.000025762443856573"},{"denom":"ASSET10","index":"0.000020552854458451"},{"denom":"ASSET11","index":"0.000025598594042577"},{"denom":"ASSET12","index":"0.000024403233064712"},{"denom":"ASSET13","index":"0.000008040226829205"},{"denom":"ASSET14","index":"0.000023496526683137"},{"denom":"ASSET15","index":"0.000018514610345002"},{"denom":"ASSET16","index":"0.000011429420030088"},{"denom":"ASSET17","index":"0.000008967792958730"},{"denom":"ASSET18","index":"0.000003708688180539"},{"denom":"ASSET2","index":"0.000007801450355100"},{"denom":"ASSET3","index":"0.000002167197324698"},{"denom":"ASSET4","index":"0.000020886439041228"},{"denom":"ASSET5","index":"0.000001688395026424"},{"denom":"ASSET6","index":"0.000006814112030993"},{"denom":"ASSET7","index":"0.000010703097412338"},{"denom":"ASSET8","index":"0.000014616213118562"},{"denom":"ASSET9","index":"0.000006204650488693"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001802604811891"},{"denom":"ASSET1","index":"0.000015041134377282"},{"denom":"ASSET10","index":"0.000010478421042795"},{"denom":"ASSET11","index":"0.000014549893343095"},{"denom":"ASSET12","index":"0.000013101148598203"},{"denom":"ASSET13","index":"0.000004508593559534"},{"denom":"ASSET14","index":"0.000013592389632390"},{"denom":"ASSET15","index":"0.000009716581133843"},{"denom":"ASSET16","index":"0.000006773297988330"},{"denom":"ASSET17","index":"0.000004812496911192"},{"denom":"ASSET18","index":"0.000002289682786467"},{"denom":"ASSET2","index":"0.000004437821546134"},{"denom":"ASSET3","index":"0.000001298874598869"},{"denom":"ASSET4","index":"0.000012222743020122"},{"denom":"ASSET5","index":"0.000001007460426045"},{"denom":"ASSET6","index":"0.000004100613717582"},{"denom":"ASSET7","index":"0.000006282056954143"},{"denom":"ASSET8","index":"0.000008197064375552"},{"denom":"ASSET9","index":"0.000003538600669994"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003500919125422"},{"denom":"ASSET1","index":"0.000029708744113596"},{"denom":"ASSET10","index":"0.000023658219501850"},{"denom":"ASSET11","index":"0.000029508250092955"},{"denom":"ASSET12","index":"0.000028107871580940"},{"denom":"ASSET13","index":"0.000009266072102552"},{"denom":"ASSET14","index":"0.000027092614384257"},{"denom":"ASSET15","index":"0.000021318431245277"},{"denom":"ASSET16","index":"0.000013180724612002"},{"denom":"ASSET17","index":"0.000010330094773179"},{"denom":"ASSET18","index":"0.000004277644880979"},{"denom":"ASSET2","index":"0.000008990842831989"},{"denom":"ASSET3","index":"0.000002500335792843"},{"denom":"ASSET4","index":"0.000024086210482120"},{"denom":"ASSET5","index":"0.000001946754653173"},{"denom":"ASSET6","index":"0.000007858889858659"},{"denom":"ASSET7","index":"0.000012341576470869"},{"denom":"ASSET8","index":"0.000016843078118646"},{"denom":"ASSET9","index":"0.000007150129263591"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001563811170888"},{"denom":"ASSET1","index":"0.000013038374863878"},{"denom":"ASSET10","index":"0.000009083864212622"},{"denom":"ASSET11","index":"0.000012612362006834"},{"denom":"ASSET12","index":"0.000011358137819015"},{"denom":"ASSET13","index":"0.000003908204905926"},{"denom":"ASSET14","index":"0.000011781504633469"},{"denom":"ASSET15","index":"0.000008423676586333"},{"denom":"ASSET16","index":"0.000005872891529250"},{"denom":"ASSET17","index":"0.000004170163122369"},{"denom":"ASSET18","index":"0.000001987177985342"},{"denom":"ASSET2","index":"0.000003848668947643"},{"denom":"ASSET3","index":"0.000001125891122188"},{"denom":"ASSET4","index":"0.000010596077552999"},{"denom":"ASSET5","index":"0.000000873194054811"},{"denom":"ASSET6","index":"0.000003556281241411"},{"denom":"ASSET7","index":"0.000005446878672206"},{"denom":"ASSET8","index":"0.000007107270397641"},{"denom":"ASSET9","index":"0.000003069409404789"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003311345528520"},{"denom":"ASSET1","index":"0.000028134750769747"},{"denom":"ASSET10","index":"0.000022648872120201"},{"denom":"ASSET11","index":"0.000028007957662740"},{"denom":"ASSET12","index":"0.000026803793052874"},{"denom":"ASSET13","index":"0.000008804941803873"},{"denom":"ASSET14","index":"0.000025676450668466"},{"denom":"ASSET15","index":"0.000020365161363483"},{"denom":"ASSET16","index":"0.000012467103206876"},{"denom":"ASSET17","index":"0.000009848512066991"},{"denom":"ASSET18","index":"0.000004032794375330"},{"denom":"ASSET2","index":"0.000008534928074651"},{"denom":"ASSET3","index":"0.000002362590241163"},{"denom":"ASSET4","index":"0.000022806063702805"},{"denom":"ASSET5","index":"0.000001840254083448"},{"denom":"ASSET6","index":"0.000007424521355960"},{"denom":"ASSET7","index":"0.000011683846998076"},{"denom":"ASSET8","index":"0.000016006498096466"},{"denom":"ASSET9","index":"0.000006786333067798"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001600184479142"},{"denom":"ASSET1","index":"0.000013342157474081"},{"denom":"ASSET10","index":"0.000009295060662992"},{"denom":"ASSET11","index":"0.000012907134644369"},{"denom":"ASSET12","index":"0.000011622469236023"},{"denom":"ASSET13","index":"0.000003999732516397"},{"denom":"ASSET14","index":"0.000012056763384279"},{"denom":"ASSET15","index":"0.000008620301633991"},{"denom":"ASSET16","index":"0.000006010164655719"},{"denom":"ASSET17","index":"0.000004268615973958"},{"denom":"ASSET18","index":"0.000002033021264483"},{"denom":"ASSET2","index":"0.000003938523274026"},{"denom":"ASSET3","index":"0.000001152045383207"},{"denom":"ASSET4","index":"0.000010842780077243"},{"denom":"ASSET5","index":"0.000000894092147498"},{"denom":"ASSET6","index":"0.000003639035195279"},{"denom":"ASSET7","index":"0.000005573684463094"},{"denom":"ASSET8","index":"0.000007272969620361"},{"denom":"ASSET9","index":"0.000003141345760282"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003037978324998"},{"denom":"ASSET1","index":"0.000025756345113171"},{"denom":"ASSET10","index":"0.000020449699671521"},{"denom":"ASSET11","index":"0.000025567125107120"},{"denom":"ASSET12","index":"0.000024323299608917"},{"denom":"ASSET13","index":"0.000008026089638757"},{"denom":"ASSET14","index":"0.000023482777870484"},{"denom":"ASSET15","index":"0.000018439819094125"},{"denom":"ASSET16","index":"0.000011433094032389"},{"denom":"ASSET17","index":"0.000008938487942114"},{"denom":"ASSET18","index":"0.000003715472889790"},{"denom":"ASSET2","index":"0.000007791978720736"},{"denom":"ASSET3","index":"0.000002168844641333"},{"denom":"ASSET4","index":"0.000020883291069830"},{"denom":"ASSET5","index":"0.000001689134510364"},{"denom":"ASSET6","index":"0.000006819968009550"},{"denom":"ASSET7","index":"0.000010702337477897"},{"denom":"ASSET8","index":"0.000014590947163921"},{"denom":"ASSET9","index":"0.000006197850437110"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001732863553160"},{"denom":"ASSET1","index":"0.000014476512568697"},{"denom":"ASSET10","index":"0.000010084697727409"},{"denom":"ASSET11","index":"0.000014004946421444"},{"denom":"ASSET12","index":"0.000012607292539223"},{"denom":"ASSET13","index":"0.000004334999642824"},{"denom":"ASSET14","index":"0.000013078858686476"},{"denom":"ASSET15","index":"0.000009351781667220"},{"denom":"ASSET16","index":"0.000006516703263852"},{"denom":"ASSET17","index":"0.000004630438674838"},{"denom":"ASSET18","index":"0.000002204429700414"},{"denom":"ASSET2","index":"0.000004272502924514"},{"denom":"ASSET3","index":"0.000001249934366214"},{"denom":"ASSET4","index":"0.000011760746082105"},{"denom":"ASSET5","index":"0.000000965858373893"},{"denom":"ASSET6","index":"0.000003948656293267"},{"denom":"ASSET7","index":"0.000006045137116599"},{"denom":"ASSET8","index":"0.000007891631066688"},{"denom":"ASSET9","index":"0.000003403230388010"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003203314564743"},{"denom":"ASSET1","index":"0.000027174750089688"},{"denom":"ASSET10","index":"0.000021494761442080"},{"denom":"ASSET11","index":"0.000026954579685264"},{"denom":"ASSET12","index":"0.000025598519259277"},{"denom":"ASSET13","index":"0.000008453363478510"},{"denom":"ASSET14","index":"0.000024766008219885"},{"denom":"ASSET15","index":"0.000019395989679368"},{"denom":"ASSET16","index":"0.000012063312986412"},{"denom":"ASSET17","index":"0.000009406957788586"},{"denom":"ASSET18","index":"0.000003925664786352"},{"denom":"ASSET2","index":"0.000008214094571203"},{"denom":"ASSET3","index":"0.000002289770772075"},{"denom":"ASSET4","index":"0.000022031271429646"},{"denom":"ASSET5","index":"0.000001779377444361"},{"denom":"ASSET6","index":"0.000007202120906665"},{"denom":"ASSET7","index":"0.000011290805949933"},{"denom":"ASSET8","index":"0.000015376618183469"},{"denom":"ASSET9","index":"0.000006529467958809"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001687731873143"},{"denom":"ASSET1","index":"0.000014069560961171"},{"denom":"ASSET10","index":"0.000009802495056563"},{"denom":"ASSET11","index":"0.000013610740912442"},{"denom":"ASSET12","index":"0.000012256373563096"},{"denom":"ASSET13","index":"0.000004217751625940"},{"denom":"ASSET14","index":"0.000012714404583367"},{"denom":"ASSET15","index":"0.000009090791386823"},{"denom":"ASSET16","index":"0.000006338265608675"},{"denom":"ASSET17","index":"0.000004501407356839"},{"denom":"ASSET18","index":"0.000002144184836496"},{"denom":"ASSET2","index":"0.000004153051292327"},{"denom":"ASSET3","index":"0.000001214709312157"},{"denom":"ASSET4","index":"0.000011433811394910"},{"denom":"ASSET5","index":"0.000000942889008137"},{"denom":"ASSET6","index":"0.000003837834423079"},{"denom":"ASSET7","index":"0.000005877867503028"},{"denom":"ASSET8","index":"0.000007669751132718"},{"denom":"ASSET9","index":"0.000003312735983819"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003310751488522"},{"denom":"ASSET1","index":"0.000028084250149300"},{"denom":"ASSET10","index":"0.000022395324527460"},{"denom":"ASSET11","index":"0.000027902986790638"},{"denom":"ASSET12","index":"0.000026594787286768"},{"denom":"ASSET13","index":"0.000008763085936534"},{"denom":"ASSET14","index":"0.000025613920456358"},{"denom":"ASSET15","index":"0.000020176020856033"},{"denom":"ASSET16","index":"0.000012460451689171"},{"denom":"ASSET17","index":"0.000009773335616478"},{"denom":"ASSET18","index":"0.000004043661907525"},{"denom":"ASSET2","index":"0.000008503271494062"},{"denom":"ASSET3","index":"0.000002362859659779"},{"denom":"ASSET4","index":"0.000022769116693783"},{"denom":"ASSET5","index":"0.000001840413908887"},{"denom":"ASSET6","index":"0.000007429033260494"},{"denom":"ASSET7","index":"0.000011667535172652"},{"denom":"ASSET8","index":"0.000015931047386954"},{"denom":"ASSET9","index":"0.000006763232815972"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001411639939639"},{"denom":"ASSET1","index":"0.000011770559134781"},{"denom":"ASSET10","index":"0.000008200405560598"},{"denom":"ASSET11","index":"0.000011386782830640"},{"denom":"ASSET12","index":"0.000010253700018254"},{"denom":"ASSET13","index":"0.000003528795747429"},{"denom":"ASSET14","index":"0.000010636868119061"},{"denom":"ASSET15","index":"0.000007604974496011"},{"denom":"ASSET16","index":"0.000005302316671163"},{"denom":"ASSET17","index":"0.000003765386844594"},{"denom":"ASSET18","index":"0.000001793591633776"},{"denom":"ASSET2","index":"0.000003474665650649"},{"denom":"ASSET3","index":"0.000001016307772140"},{"denom":"ASSET4","index":"0.000009565822046806"},{"denom":"ASSET5","index":"0.000000788839724994"},{"denom":"ASSET6","index":"0.000003210705403426"},{"denom":"ASSET7","index":"0.000004917323960353"},{"denom":"ASSET8","index":"0.000006416545180176"},{"denom":"ASSET9","index":"0.000002771582595835"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000002915106026686"},{"denom":"ASSET1","index":"0.000024751938975568"},{"denom":"ASSET10","index":"0.000019864528416862"},{"denom":"ASSET11","index":"0.000024625253839727"},{"denom":"ASSET12","index":"0.000023534700266806"},{"denom":"ASSET13","index":"0.000007739190454504"},{"denom":"ASSET14","index":"0.000022584902384729"},{"denom":"ASSET15","index":"0.000017872912229645"},{"denom":"ASSET16","index":"0.000010972881933217"},{"denom":"ASSET17","index":"0.000008648586457086"},{"denom":"ASSET18","index":"0.000003552999450219"},{"denom":"ASSET2","index":"0.000007504215303421"},{"denom":"ASSET3","index":"0.000002079538758775"},{"denom":"ASSET4","index":"0.000020065180146540"},{"denom":"ASSET5","index":"0.000001620267199228"},{"denom":"ASSET6","index":"0.000006536798446662"},{"denom":"ASSET7","index":"0.000010280222742310"},{"denom":"ASSET8","index":"0.000014068743113537"},{"denom":"ASSET9","index":"0.000005967789042866"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001670929391506"},{"denom":"ASSET1","index":"0.000013946161101263"},{"denom":"ASSET10","index":"0.000009716355120388"},{"denom":"ASSET11","index":"0.000013489421488305"},{"denom":"ASSET12","index":"0.000012147571569489"},{"denom":"ASSET13","index":"0.000004178741924768"},{"denom":"ASSET14","index":"0.000012601474290441"},{"denom":"ASSET15","index":"0.000009009969010905"},{"denom":"ASSET16","index":"0.000006280878901179"},{"denom":"ASSET17","index":"0.000004459594233357"},{"denom":"ASSET18","index":"0.000002124832112458"},{"denom":"ASSET2","index":"0.000004116330300637"},{"denom":"ASSET3","index":"0.000001202842210524"},{"denom":"ASSET4","index":"0.000011333383563781"},{"denom":"ASSET5","index":"0.000000933337469958"},{"denom":"ASSET6","index":"0.000003804272179982"},{"denom":"ASSET7","index":"0.000005824139288221"},{"denom":"ASSET8","index":"0.000007600033683947"},{"denom":"ASSET9","index":"0.000003282284050887"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003306866574231"},{"denom":"ASSET1","index":"0.000028073670524533"},{"denom":"ASSET10","index":"0.000022410378668975"},{"denom":"ASSET11","index":"0.000027896117796052"},{"denom":"ASSET12","index":"0.000026601615360568"},{"denom":"ASSET13","index":"0.000008760019105133"},{"denom":"ASSET14","index":"0.000025604072816608"},{"denom":"ASSET15","index":"0.000020183975077340"},{"denom":"ASSET16","index":"0.000012452378452775"},{"denom":"ASSET17","index":"0.000009773941069454"},{"denom":"ASSET18","index":"0.000004038323507821"},{"denom":"ASSET2","index":"0.000008501686860316"},{"denom":"ASSET3","index":"0.000002358773872569"},{"denom":"ASSET4","index":"0.000022758821093429"},{"denom":"ASSET5","index":"0.000001837837668790"},{"denom":"ASSET6","index":"0.000007423905647148"},{"denom":"ASSET7","index":"0.000011659308440973"},{"denom":"ASSET8","index":"0.000015926660063085"},{"denom":"ASSET9","index":"0.000006759875068056"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001598361255475"},{"denom":"ASSET1","index":"0.000013324868720531"},{"denom":"ASSET10","index":"0.000009283863630055"},{"denom":"ASSET11","index":"0.000012890721875256"},{"denom":"ASSET12","index":"0.000011607749807828"},{"denom":"ASSET13","index":"0.000003994929715268"},{"denom":"ASSET14","index":"0.000012041896653103"},{"denom":"ASSET15","index":"0.000008609605674538"},{"denom":"ASSET16","index":"0.000006002777756047"},{"denom":"ASSET17","index":"0.000004262945630213"},{"denom":"ASSET18","index":"0.000002030561253910"},{"denom":"ASSET2","index":"0.000003933279565341"},{"denom":"ASSET3","index":"0.000001150586482321"},{"denom":"ASSET4","index":"0.000010829011071909"},{"denom":"ASSET5","index":"0.000000892953750521"},{"denom":"ASSET6","index":"0.000003634763049905"},{"denom":"ASSET7","index":"0.000005566684063932"},{"denom":"ASSET8","index":"0.000007263685559290"},{"denom":"ASSET9","index":"0.000003137668156809"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003119961272076"},{"denom":"ASSET1","index":"0.000026462428012801"},{"denom":"ASSET10","index":"0.000021088828135750"},{"denom":"ASSET11","index":"0.000026288818556387"},{"denom":"ASSET12","index":"0.000025049012446876"},{"denom":"ASSET13","index":"0.000008256026418292"},{"denom":"ASSET14","index":"0.000024133914778951"},{"denom":"ASSET15","index":"0.000019001193386697"},{"denom":"ASSET16","index":"0.000011741691861213"},{"denom":"ASSET17","index":"0.000009205139483526"},{"denom":"ASSET18","index":"0.000003811157018018"},{"denom":"ASSET2","index":"0.000008011229275486"},{"denom":"ASSET3","index":"0.000002226652147557"},{"denom":"ASSET4","index":"0.000021454928269907"},{"denom":"ASSET5","index":"0.000001734689929917"},{"denom":"ASSET6","index":"0.000007001091110949"},{"denom":"ASSET7","index":"0.000010994186615549"},{"denom":"ASSET8","index":"0.000015007966738007"},{"denom":"ASSET9","index":"0.000006372340046203"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001543375593884"},{"denom":"ASSET1","index":"0.000012871309378663"},{"denom":"ASSET10","index":"0.000008967332198598"},{"denom":"ASSET11","index":"0.000012451619524186"},{"denom":"ASSET12","index":"0.000011213472915376"},{"denom":"ASSET13","index":"0.000003858438984711"},{"denom":"ASSET14","index":"0.000011631932007817"},{"denom":"ASSET15","index":"0.000008316259081242"},{"denom":"ASSET16","index":"0.000005798119954378"},{"denom":"ASSET17","index":"0.000004118129774432"},{"denom":"ASSET18","index":"0.000001961834686325"},{"denom":"ASSET2","index":"0.000003799362406955"},{"denom":"ASSET3","index":"0.000001111378119041"},{"denom":"ASSET4","index":"0.000010460246548983"},{"denom":"ASSET5","index":"0.000000862764187650"},{"denom":"ASSET6","index":"0.000003511364090393"},{"denom":"ASSET7","index":"0.000005377199337864"},{"denom":"ASSET8","index":"0.000007016574370602"},{"denom":"ASSET9","index":"0.000003030136134086"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003061984062566"},{"denom":"ASSET1","index":"0.000025984754387841"},{"denom":"ASSET10","index":"0.000020750278468036"},{"denom":"ASSET11","index":"0.000025825260107338"},{"denom":"ASSET12","index":"0.000024630365005548"},{"denom":"ASSET13","index":"0.000008111503841622"},{"denom":"ASSET14","index":"0.000023701848593669"},{"denom":"ASSET15","index":"0.000018689068915475"},{"denom":"ASSET16","index":"0.000011526541772952"},{"denom":"ASSET17","index":"0.000009050861170220"},{"denom":"ASSET18","index":"0.000003739265665267"},{"denom":"ASSET2","index":"0.000007869809789784"},{"denom":"ASSET3","index":"0.000002185113944095"},{"denom":"ASSET4","index":"0.000021066477214749"},{"denom":"ASSET5","index":"0.000001702392649313"},{"denom":"ASSET6","index":"0.000006871251000760"},{"denom":"ASSET7","index":"0.000010794622225013"},{"denom":"ASSET8","index":"0.000014746923085504"},{"denom":"ASSET9","index":"0.000006258895459680"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001745217677213"},{"denom":"ASSET1","index":"0.000014553842410819"},{"denom":"ASSET10","index":"0.000010139729507131"},{"denom":"ASSET11","index":"0.000014078681363843"},{"denom":"ASSET12","index":"0.000012678362515121"},{"denom":"ASSET13","index":"0.000004362304066790"},{"denom":"ASSET14","index":"0.000013152043309614"},{"denom":"ASSET15","index":"0.000009402563770700"},{"denom":"ASSET16","index":"0.000006556038246289"},{"denom":"ASSET17","index":"0.000004655394058383"},{"denom":"ASSET18","index":"0.000002217418219224"},{"denom":"ASSET2","index":"0.000004295692705065"},{"denom":"ASSET3","index":"0.000001256734357891"},{"denom":"ASSET4","index":"0.000011827217337515"},{"denom":"ASSET5","index":"0.000000975486386160"},{"denom":"ASSET6","index":"0.000003970037158850"},{"denom":"ASSET7","index":"0.000006079396946830"},{"denom":"ASSET8","index":"0.000007932673055287"},{"denom":"ASSET9","index":"0.000003426784497665"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003296605577903"},{"denom":"ASSET1","index":"0.000027950980635352"},{"denom":"ASSET10","index":"0.000022177590033485"},{"denom":"ASSET11","index":"0.000027741245317152"},{"denom":"ASSET12","index":"0.000026384837371861"},{"denom":"ASSET13","index":"0.000008707523198290"},{"denom":"ASSET14","index":"0.000025482773879389"},{"denom":"ASSET15","index":"0.000019999205716580"},{"denom":"ASSET16","index":"0.000012408342313410"},{"denom":"ASSET17","index":"0.000009694954350389"},{"denom":"ASSET18","index":"0.000004033447725414"},{"denom":"ASSET2","index":"0.000008454290496983"},{"denom":"ASSET3","index":"0.000002354114882033"},{"denom":"ASSET4","index":"0.000022662624820802"},{"denom":"ASSET5","index":"0.000001833709311257"},{"denom":"ASSET6","index":"0.000007402928859239"},{"denom":"ASSET7","index":"0.000011614131087351"},{"denom":"ASSET8","index":"0.000015829970625061"},{"denom":"ASSET9","index":"0.000006725199056296"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001696105704481"},{"denom":"ASSET1","index":"0.000014140754037071"},{"denom":"ASSET10","index":"0.000009851931515387"},{"denom":"ASSET11","index":"0.000013679695806241"},{"denom":"ASSET12","index":"0.000012318593050331"},{"denom":"ASSET13","index":"0.000004239283286244"},{"denom":"ASSET14","index":"0.000012779160793682"},{"denom":"ASSET15","index":"0.000009136800770120"},{"denom":"ASSET16","index":"0.000006369960897657"},{"denom":"ASSET17","index":"0.000004523766024416"},{"denom":"ASSET18","index":"0.000002155201985393"},{"denom":"ASSET2","index":"0.000004174048451456"},{"denom":"ASSET3","index":"0.000001220823336742"},{"denom":"ASSET4","index":"0.000011492121647193"},{"denom":"ASSET5","index":"0.000000947621810601"},{"denom":"ASSET6","index":"0.000003857193539630"},{"denom":"ASSET7","index":"0.000005907431204387"},{"denom":"ASSET8","index":"0.000007708991716984"},{"denom":"ASSET9","index":"0.000003329429011573"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003278023650839"},{"denom":"ASSET1","index":"0.000027801084973989"},{"denom":"ASSET10","index":"0.000022126343818190"},{"denom":"ASSET11","index":"0.000027610641458424"},{"denom":"ASSET12","index":"0.000026294522151225"},{"denom":"ASSET13","index":"0.000008669795972838"},{"denom":"ASSET14","index":"0.000025352034708572"},{"denom":"ASSET15","index":"0.000019941753748345"},{"denom":"ASSET16","index":"0.000012337408081897"},{"denom":"ASSET17","index":"0.000009662232510971"},{"denom":"ASSET18","index":"0.000004006663612522"},{"denom":"ASSET2","index":"0.000008414274009770"},{"denom":"ASSET3","index":"0.000002339697370568"},{"denom":"ASSET4","index":"0.000022540556466857"},{"denom":"ASSET5","index":"0.000001822656991491"},{"denom":"ASSET6","index":"0.000007357334263189"},{"denom":"ASSET7","index":"0.000011551068960203"},{"denom":"ASSET8","index":"0.000015761386047857"},{"denom":"ASSET9","index":"0.000006692834331509"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001139195115521"},{"denom":"ASSET1","index":"0.000009496890331931"},{"denom":"ASSET10","index":"0.000006616523219856"},{"denom":"ASSET11","index":"0.000009187371854639"},{"denom":"ASSET12","index":"0.000008273091178185"},{"denom":"ASSET13","index":"0.000002846943294505"},{"denom":"ASSET14","index":"0.000008582261490710"},{"denom":"ASSET15","index":"0.000006136055842283"},{"denom":"ASSET16","index":"0.000004278248649000"},{"denom":"ASSET17","index":"0.000003038433916001"},{"denom":"ASSET18","index":"0.000001447320933748"},{"denom":"ASSET2","index":"0.000002803422698710"},{"denom":"ASSET3","index":"0.000000819928024772"},{"denom":"ASSET4","index":"0.000007718116540611"},{"denom":"ASSET5","index":"0.000000636445192901"},{"denom":"ASSET6","index":"0.000002590694026466"},{"denom":"ASSET7","index":"0.000003967685677409"},{"denom":"ASSET8","index":"0.000005177210075735"},{"denom":"ASSET9","index":"0.000002236262294314"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000002735257365218"},{"denom":"ASSET1","index":"0.000023278157661741"},{"denom":"ASSET10","index":"0.000018999615823078"},{"denom":"ASSET11","index":"0.000023241706683585"},{"denom":"ASSET12","index":"0.000022372793234045"},{"denom":"ASSET13","index":"0.000007316911351959"},{"denom":"ASSET14","index":"0.000021266506066871"},{"denom":"ASSET15","index":"0.000017036720297506"},{"denom":"ASSET16","index":"0.000010298479660409"},{"denom":"ASSET17","index":"0.000008222611745720"},{"denom":"ASSET18","index":"0.000003315370510511"},{"denom":"ASSET2","index":"0.000007081336162231"},{"denom":"ASSET3","index":"0.000001948923871674"},{"denom":"ASSET4","index":"0.000018864412124408"},{"denom":"ASSET5","index":"0.000001519377842401"},{"denom":"ASSET6","index":"0.000006121992555640"},{"denom":"ASSET7","index":"0.000009661272655042"},{"denom":"ASSET8","index":"0.000013300968175029"},{"denom":"ASSET9","index":"0.000005629514833023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001583959364947"},{"denom":"ASSET1","index":"0.000013443347430705"},{"denom":"ASSET10","index":"0.000009381913161610"},{"denom":"ASSET11","index":"0.000012996589661105"},{"denom":"ASSET12","index":"0.000011696930694994"},{"denom":"ASSET13","index":"0.000004020819926404"},{"denom":"ASSET14","index":"0.000012143688464595"},{"denom":"ASSET15","index":"0.000008691469335864"},{"denom":"ASSET16","index":"0.000006051537060952"},{"denom":"ASSET17","index":"0.000004305120325241"},{"denom":"ASSET18","index":"0.000002030717134548"},{"denom":"ASSET2","index":"0.000003939591241022"},{"denom":"ASSET3","index":"0.000001137201595347"},{"denom":"ASSET4","index":"0.000010925258183866"},{"denom":"ASSET5","index":"0.000000893515539201"},{"denom":"ASSET6","index":"0.000003655290842186"},{"denom":"ASSET7","index":"0.000005604779291351"},{"denom":"ASSET8","index":"0.000007310581684371"},{"denom":"ASSET9","index":"0.000003167918729894"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003310378542013"},{"denom":"ASSET1","index":"0.000028352771206955"},{"denom":"ASSET10","index":"0.000022778987578468"},{"denom":"ASSET11","index":"0.000028201706998458"},{"denom":"ASSET12","index":"0.000026949790221900"},{"denom":"ASSET13","index":"0.000008856641706946"},{"denom":"ASSET14","index":"0.000025865717784540"},{"denom":"ASSET15","index":"0.000020483790155485"},{"denom":"ASSET16","index":"0.000012564495758376"},{"denom":"ASSET17","index":"0.000009912517491786"},{"denom":"ASSET18","index":"0.000004051289802086"},{"denom":"ASSET2","index":"0.000008567503486413"},{"denom":"ASSET3","index":"0.000002358477605528"},{"denom":"ASSET4","index":"0.000022984011222606"},{"denom":"ASSET5","index":"0.000001848359330263"},{"denom":"ASSET6","index":"0.000007474666006436"},{"denom":"ASSET7","index":"0.000011763521743703"},{"denom":"ASSET8","index":"0.000016098224703406"},{"denom":"ASSET9","index":"0.000006837907042961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001549911588522"},{"denom":"ASSET1","index":"0.000012922257740418"},{"denom":"ASSET10","index":"0.000009003081854783"},{"denom":"ASSET11","index":"0.000012500946332712"},{"denom":"ASSET12","index":"0.000011256607989023"},{"denom":"ASSET13","index":"0.000003873860414458"},{"denom":"ASSET14","index":"0.000011677307025497"},{"denom":"ASSET15","index":"0.000008349069378868"},{"denom":"ASSET16","index":"0.000005821200932633"},{"denom":"ASSET17","index":"0.000004134118188113"},{"denom":"ASSET18","index":"0.000001969385882532"},{"denom":"ASSET2","index":"0.000003814460404941"},{"denom":"ASSET3","index":"0.000001115740384942"},{"denom":"ASSET4","index":"0.000010501554259806"},{"denom":"ASSET5","index":"0.000000865892922233"},{"denom":"ASSET6","index":"0.000003524808812143"},{"denom":"ASSET7","index":"0.000005398664782463"},{"denom":"ASSET8","index":"0.000007044106283197"},{"denom":"ASSET9","index":"0.000003042260281224"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003086330633608"},{"denom":"ASSET1","index":"0.000026187842720704"},{"denom":"ASSET10","index":"0.000020922921087024"},{"denom":"ASSET11","index":"0.000026029396638226"},{"denom":"ASSET12","index":"0.000024828709288325"},{"denom":"ASSET13","index":"0.000008176601230700"},{"denom":"ASSET14","index":"0.000023887113573615"},{"denom":"ASSET15","index":"0.000018841856891118"},{"denom":"ASSET16","index":"0.000011616230118922"},{"denom":"ASSET17","index":"0.000009124242236202"},{"denom":"ASSET18","index":"0.000003767471049721"},{"denom":"ASSET2","index":"0.000007932284099147"},{"denom":"ASSET3","index":"0.000002202458257762"},{"denom":"ASSET4","index":"0.000021230824628511"},{"denom":"ASSET5","index":"0.000001715648257347"},{"denom":"ASSET6","index":"0.000006923830152599"},{"denom":"ASSET7","index":"0.000010879262909104"},{"denom":"ASSET8","index":"0.000014863870027497"},{"denom":"ASSET9","index":"0.000006308409915314"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001535524830156"},{"denom":"ASSET1","index":"0.000012804491333161"},{"denom":"ASSET10","index":"0.000008921035499248"},{"denom":"ASSET11","index":"0.000012386713938596"},{"denom":"ASSET12","index":"0.000011154325740380"},{"denom":"ASSET13","index":"0.000003838812075390"},{"denom":"ASSET14","index":"0.000011571000819920"},{"denom":"ASSET15","index":"0.000008272874264409"},{"denom":"ASSET16","index":"0.000005767863369556"},{"denom":"ASSET17","index":"0.000004096202633783"},{"denom":"ASSET18","index":"0.000001951097594671"},{"denom":"ASSET2","index":"0.000003779838221540"},{"denom":"ASSET3","index":"0.000001105621970313"},{"denom":"ASSET4","index":"0.000010405853838244"},{"denom":"ASSET5","index":"0.000000858152247148"},{"denom":"ASSET6","index":"0.000003492685157466"},{"denom":"ASSET7","index":"0.000005348983659966"},{"denom":"ASSET8","index":"0.000006980409897318"},{"denom":"ASSET9","index":"0.000003014831594025"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003051773960929"},{"denom":"ASSET1","index":"0.000025898629359040"},{"denom":"ASSET10","index":"0.000020686863907037"},{"denom":"ASSET11","index":"0.000025740096441319"},{"denom":"ASSET12","index":"0.000024551000542772"},{"denom":"ASSET13","index":"0.000008085532012369"},{"denom":"ASSET14","index":"0.000023622558405526"},{"denom":"ASSET15","index":"0.000018629920308839"},{"denom":"ASSET16","index":"0.000011487540137638"},{"denom":"ASSET17","index":"0.000009021847693812"},{"denom":"ASSET18","index":"0.000003725572559942"},{"denom":"ASSET2","index":"0.000007844221178735"},{"denom":"ASSET3","index":"0.000002178252359768"},{"denom":"ASSET4","index":"0.000020996168979716"},{"denom":"ASSET5","index":"0.000001697004218389"},{"denom":"ASSET6","index":"0.000006847583721256"},{"denom":"ASSET7","index":"0.000010758483833946"},{"denom":"ASSET8","index":"0.000014699172267780"},{"denom":"ASSET9","index":"0.000006238834616461"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001813824295534"},{"denom":"ASSET1","index":"0.000015126179984122"},{"denom":"ASSET10","index":"0.000010538420488017"},{"denom":"ASSET11","index":"0.000014633035948465"},{"denom":"ASSET12","index":"0.000013177247733614"},{"denom":"ASSET13","index":"0.000004534560738834"},{"denom":"ASSET14","index":"0.000013669547344553"},{"denom":"ASSET15","index":"0.000009773371692973"},{"denom":"ASSET16","index":"0.000006813663054312"},{"denom":"ASSET17","index":"0.000004839398062246"},{"denom":"ASSET18","index":"0.000002305279481754"},{"denom":"ASSET2","index":"0.000004465317911910"},{"denom":"ASSET3","index":"0.000001306325039660"},{"denom":"ASSET4","index":"0.000012293135053249"},{"denom":"ASSET5","index":"0.000001013309662309"},{"denom":"ASSET6","index":"0.000004125859175036"},{"denom":"ASSET7","index":"0.000006318830169217"},{"denom":"ASSET8","index":"0.000008245807377042"},{"denom":"ASSET9","index":"0.000003561783463017"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003452880861936"},{"denom":"ASSET1","index":"0.000029278299049117"},{"denom":"ASSET10","index":"0.000023254773922096"},{"denom":"ASSET11","index":"0.000029065569213605"},{"denom":"ASSET12","index":"0.000027656204711461"},{"denom":"ASSET13","index":"0.000009124518140406"},{"denom":"ASSET14","index":"0.000026695142606829"},{"denom":"ASSET15","index":"0.000020967476611979"},{"denom":"ASSET16","index":"0.000012995878924798"},{"denom":"ASSET17","index":"0.000010163149632422"},{"denom":"ASSET18","index":"0.000004223627093961"},{"denom":"ASSET2","index":"0.000008858348919255"},{"denom":"ASSET3","index":"0.000002465420318230"},{"denom":"ASSET4","index":"0.000023739200929128"},{"denom":"ASSET5","index":"0.000001919695214447"},{"denom":"ASSET6","index":"0.000007752150153146"},{"denom":"ASSET7","index":"0.000012165597276913"},{"denom":"ASSET8","index":"0.000016587849042771"},{"denom":"ASSET9","index":"0.000007046182609545"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001444852701297"},{"denom":"ASSET1","index":"0.000012048934466992"},{"denom":"ASSET10","index":"0.000008394653008080"},{"denom":"ASSET11","index":"0.000011656844181701"},{"denom":"ASSET12","index":"0.000010496256937239"},{"denom":"ASSET13","index":"0.000003612131753243"},{"denom":"ASSET14","index":"0.000010888347222530"},{"denom":"ASSET15","index":"0.000007784952614452"},{"denom":"ASSET16","index":"0.000005427509774140"},{"denom":"ASSET17","index":"0.000003854247504410"},{"denom":"ASSET18","index":"0.000001835962760875"},{"denom":"ASSET2","index":"0.000003556258887589"},{"denom":"ASSET3","index":"0.000001040019481734"},{"denom":"ASSET4","index":"0.000009792454875142"},{"denom":"ASSET5","index":"0.000000807705987699"},{"denom":"ASSET6","index":"0.000003286696816452"},{"denom":"ASSET7","index":"0.000005033459037423"},{"denom":"ASSET8","index":"0.000006568492504337"},{"denom":"ASSET9","index":"0.000002836773214080"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000002868026198866"},{"denom":"ASSET1","index":"0.000024339331661302"},{"denom":"ASSET10","index":"0.000019438063504597"},{"denom":"ASSET11","index":"0.000024190729344646"},{"denom":"ASSET12","index":"0.000023070632234294"},{"denom":"ASSET13","index":"0.000007598221307181"},{"denom":"ASSET14","index":"0.000022200415230506"},{"denom":"ASSET15","index":"0.000017506414948675"},{"denom":"ASSET16","index":"0.000010796282691537"},{"denom":"ASSET17","index":"0.000008477235924619"},{"denom":"ASSET18","index":"0.000003501529899130"},{"denom":"ASSET2","index":"0.000007371086117521"},{"denom":"ASSET3","index":"0.000002046801194740"},{"denom":"ASSET4","index":"0.000019732782799148"},{"denom":"ASSET5","index":"0.000001595074946946"},{"denom":"ASSET6","index":"0.000006435625489467"},{"denom":"ASSET7","index":"0.000010111140720407"},{"denom":"ASSET8","index":"0.000013813490690156"},{"denom":"ASSET9","index":"0.000005862589992841"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001655416114862"},{"denom":"ASSET1","index":"0.000013800538848519"},{"denom":"ASSET10","index":"0.000009615249134678"},{"denom":"ASSET11","index":"0.000013350879623065"},{"denom":"ASSET12","index":"0.000012022439267096"},{"denom":"ASSET13","index":"0.000004137189147657"},{"denom":"ASSET14","index":"0.000012471558036751"},{"denom":"ASSET15","index":"0.000008916980241305"},{"denom":"ASSET16","index":"0.000006216863065381"},{"denom":"ASSET17","index":"0.000004414983428766"},{"denom":"ASSET18","index":"0.000002102913517117"},{"denom":"ASSET2","index":"0.000004073955819077"},{"denom":"ASSET3","index":"0.000001191705038613"},{"denom":"ASSET4","index":"0.000011215538757958"},{"denom":"ASSET5","index":"0.000000924719873500"},{"denom":"ASSET6","index":"0.000003764274645778"},{"denom":"ASSET7","index":"0.000005765582472528"},{"denom":"ASSET8","index":"0.000007523144733557"},{"denom":"ASSET9","index":"0.000003249220268545"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003262792429801"},{"denom":"ASSET1","index":"0.000027679878715890"},{"denom":"ASSET10","index":"0.000022086570261210"},{"denom":"ASSET11","index":"0.000027505267384149"},{"denom":"ASSET12","index":"0.000026222420015979"},{"denom":"ASSET13","index":"0.000008638975204347"},{"denom":"ASSET14","index":"0.000025246236428505"},{"denom":"ASSET15","index":"0.000019895354512471"},{"denom":"ASSET16","index":"0.000012279836462442"},{"denom":"ASSET17","index":"0.000009636125515167"},{"denom":"ASSET18","index":"0.000003984145752232"},{"denom":"ASSET2","index":"0.000008382344169353"},{"denom":"ASSET3","index":"0.000002328549799735"},{"denom":"ASSET4","index":"0.000022441247538096"},{"denom":"ASSET5","index":"0.000001813932132265"},{"denom":"ASSET6","index":"0.000007320527694069"},{"denom":"ASSET7","index":"0.000011499571173317"},{"denom":"ASSET8","index":"0.000015704553099640"},{"denom":"ASSET9","index":"0.000006666608399750"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001676736923170"},{"denom":"ASSET1","index":"0.000013985463602132"},{"denom":"ASSET10","index":"0.000009743339709608"},{"denom":"ASSET11","index":"0.000013528824721587"},{"denom":"ASSET12","index":"0.000012182509640070"},{"denom":"ASSET13","index":"0.000004192868462713"},{"denom":"ASSET14","index":"0.000012638122365828"},{"denom":"ASSET15","index":"0.000009036319060854"},{"denom":"ASSET16","index":"0.000006299564241947"},{"denom":"ASSET17","index":"0.000004474034874554"},{"denom":"ASSET18","index":"0.000002131323494140"},{"denom":"ASSET2","index":"0.000004128220711085"},{"denom":"ASSET3","index":"0.000001207784185172"},{"denom":"ASSET4","index":"0.000011365690429028"},{"denom":"ASSET5","index":"0.000000936879321208"},{"denom":"ASSET6","index":"0.000003814217346036"},{"denom":"ASSET7","index":"0.000005841899206614"},{"denom":"ASSET8","index":"0.000007623303918134"},{"denom":"ASSET9","index":"0.000003292930713863"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003296156578493"},{"denom":"ASSET1","index":"0.000027968412540894"},{"denom":"ASSET10","index":"0.000022307812536905"},{"denom":"ASSET11","index":"0.000027788867279184"},{"denom":"ASSET12","index":"0.000026488589695468"},{"denom":"ASSET13","index":"0.000008728285856057"},{"denom":"ASSET14","index":"0.000025508064125070"},{"denom":"ASSET15","index":"0.000020096610749334"},{"denom":"ASSET16","index":"0.000012407784704791"},{"denom":"ASSET17","index":"0.000009734180928237"},{"denom":"ASSET18","index":"0.000004026678592252"},{"denom":"ASSET2","index":"0.000008468774984810"},{"denom":"ASSET3","index":"0.000002353220293961"},{"denom":"ASSET4","index":"0.000022675279511256"},{"denom":"ASSET5","index":"0.000001832728492238"},{"denom":"ASSET6","index":"0.000007397034942132"},{"denom":"ASSET7","index":"0.000011618881320506"},{"denom":"ASSET8","index":"0.000015866042832442"},{"denom":"ASSET9","index":"0.000006735898552490"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001687654189845"},{"denom":"ASSET1","index":"0.000014079752531439"},{"denom":"ASSET10","index":"0.000009809029374167"},{"denom":"ASSET11","index":"0.000013620990639222"},{"denom":"ASSET12","index":"0.000012264971552184"},{"denom":"ASSET13","index":"0.000004220977891851"},{"denom":"ASSET14","index":"0.000012723733444402"},{"denom":"ASSET15","index":"0.000009097856320367"},{"denom":"ASSET16","index":"0.000006341600132585"},{"denom":"ASSET17","index":"0.000004504710146476"},{"denom":"ASSET18","index":"0.000002144573664825"},{"denom":"ASSET2","index":"0.000004156493288528"},{"denom":"ASSET3","index":"0.000001215995376963"},{"denom":"ASSET4","index":"0.000011441411046878"},{"denom":"ASSET5","index":"0.000000943317625765"},{"denom":"ASSET6","index":"0.000003839597523622"},{"denom":"ASSET7","index":"0.000005880995823129"},{"denom":"ASSET8","index":"0.000007675510212768"},{"denom":"ASSET9","index":"0.000003314508610843"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003237925740153"},{"denom":"ASSET1","index":"0.000027468087048908"},{"denom":"ASSET10","index":"0.000021838560142362"},{"denom":"ASSET11","index":"0.000027274223261348"},{"denom":"ASSET12","index":"0.000025962125103579"},{"denom":"ASSET13","index":"0.000008562973508850"},{"denom":"ASSET14","index":"0.000025046299162567"},{"denom":"ASSET15","index":"0.000019687604125947"},{"denom":"ASSET16","index":"0.000012189946370622"},{"denom":"ASSET17","index":"0.000009540519193028"},{"denom":"ASSET18","index":"0.000003959057055270"},{"denom":"ASSET2","index":"0.000008312511220651"},{"denom":"ASSET3","index":"0.000002312646079660"},{"denom":"ASSET4","index":"0.000022269978905361"},{"denom":"ASSET5","index":"0.000001800462011039"},{"denom":"ASSET6","index":"0.000007270233858279"},{"denom":"ASSET7","index":"0.000011411601588483"},{"denom":"ASSET8","index":"0.000015567552190875"},{"denom":"ASSET9","index":"0.000006610637099613"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001700269946448"},{"denom":"ASSET1","index":"0.000014175647296985"},{"denom":"ASSET10","index":"0.000009876508679424"},{"denom":"ASSET11","index":"0.000013714231996791"},{"denom":"ASSET12","index":"0.000012349169664489"},{"denom":"ASSET13","index":"0.000004249665204630"},{"denom":"ASSET14","index":"0.000012810584964683"},{"denom":"ASSET15","index":"0.000009159649022667"},{"denom":"ASSET16","index":"0.000006386108914062"},{"denom":"ASSET17","index":"0.000004535399405845"},{"denom":"ASSET18","index":"0.000002160675585153"},{"denom":"ASSET2","index":"0.000004184037207885"},{"denom":"ASSET3","index":"0.000001223709723928"},{"denom":"ASSET4","index":"0.000011520237582522"},{"denom":"ASSET5","index":"0.000000950091460574"},{"denom":"ASSET6","index":"0.000003867003500531"},{"denom":"ASSET7","index":"0.000005922674290891"},{"denom":"ASSET8","index":"0.000007727949032131"},{"denom":"ASSET9","index":"0.000003337940880615"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003224934301433"},{"denom":"ASSET1","index":"0.000027341438894536"},{"denom":"ASSET10","index":"0.000021706571274337"},{"denom":"ASSET11","index":"0.000027141091242061"},{"denom":"ASSET12","index":"0.000025819235056226"},{"denom":"ASSET13","index":"0.000008520116782966"},{"denom":"ASSET14","index":"0.000024928444433519"},{"denom":"ASSET15","index":"0.000019573794936329"},{"denom":"ASSET16","index":"0.000012137286393349"},{"denom":"ASSET17","index":"0.000009487995483061"},{"denom":"ASSET18","index":"0.000003945309126507"},{"denom":"ASSET2","index":"0.000008271045740629"},{"denom":"ASSET3","index":"0.000002302032616683"},{"denom":"ASSET4","index":"0.000022168721917699"},{"denom":"ASSET5","index":"0.000001793343624246"},{"denom":"ASSET6","index":"0.000007240378309003"},{"denom":"ASSET7","index":"0.000011361888746536"},{"denom":"ASSET8","index":"0.000015488944629697"},{"denom":"ASSET9","index":"0.000006579500326985"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001505652349479"},{"denom":"ASSET1","index":"0.000012557843622987"},{"denom":"ASSET10","index":"0.000008748308836028"},{"denom":"ASSET11","index":"0.000012147743761261"},{"denom":"ASSET12","index":"0.000010939413811534"},{"denom":"ASSET13","index":"0.000003764130873697"},{"denom":"ASSET14","index":"0.000011348049030896"},{"denom":"ASSET15","index":"0.000008114118692716"},{"denom":"ASSET16","index":"0.000005656448807088"},{"denom":"ASSET17","index":"0.000004017514002549"},{"denom":"ASSET18","index":"0.000001912822926478"},{"denom":"ASSET2","index":"0.000003707009821528"},{"denom":"ASSET3","index":"0.000001083835348847"},{"denom":"ASSET4","index":"0.000010205627987517"},{"denom":"ASSET5","index":"0.000000840704716538"},{"denom":"ASSET6","index":"0.000003424333845410"},{"denom":"ASSET7","index":"0.000005246348945363"},{"denom":"ASSET8","index":"0.000006845738406093"},{"denom":"ASSET9","index":"0.000002955648289152"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000002959758868257"},{"denom":"ASSET1","index":"0.000025116229265451"},{"denom":"ASSET10","index":"0.000020033024535037"},{"denom":"ASSET11","index":"0.000024955202637112"},{"denom":"ASSET12","index":"0.000023787913163340"},{"denom":"ASSET13","index":"0.000007837044315100"},{"denom":"ASSET14","index":"0.000022906603767748"},{"denom":"ASSET15","index":"0.000018047329062837"},{"denom":"ASSET16","index":"0.000011142428291313"},{"denom":"ASSET17","index":"0.000008741414303940"},{"denom":"ASSET18","index":"0.000003614587489816"},{"denom":"ASSET2","index":"0.000007605147442913"},{"denom":"ASSET3","index":"0.000002112677625393"},{"denom":"ASSET4","index":"0.000020363145786569"},{"denom":"ASSET5","index":"0.000001645239564154"},{"denom":"ASSET6","index":"0.000006641765641459"},{"denom":"ASSET7","index":"0.000010434431181702"},{"denom":"ASSET8","index":"0.000014248591155217"},{"denom":"ASSET9","index":"0.000006047835874095"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001815877519749"},{"denom":"ASSET1","index":"0.000015137138459046"},{"denom":"ASSET10","index":"0.000010545739718907"},{"denom":"ASSET11","index":"0.000014644907422941"},{"denom":"ASSET12","index":"0.000013186828093302"},{"denom":"ASSET13","index":"0.000004537625601742"},{"denom":"ASSET14","index":"0.000013679059129408"},{"denom":"ASSET15","index":"0.000009780506595550"},{"denom":"ASSET16","index":"0.000006818847588397"},{"denom":"ASSET17","index":"0.000004841650653454"},{"denom":"ASSET18","index":"0.000002306040358223"},{"denom":"ASSET2","index":"0.000004467306882298"},{"denom":"ASSET3","index":"0.000001307100902598"},{"denom":"ASSET4","index":"0.000012301639507366"},{"denom":"ASSET5","index":"0.000001013416839040"},{"denom":"ASSET6","index":"0.000004128122470864"},{"denom":"ASSET7","index":"0.000006324548354661"},{"denom":"ASSET8","index":"0.000008252108546467"},{"denom":"ASSET9","index":"0.000003563504517685"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003468946703322"},{"denom":"ASSET1","index":"0.000029412495408176"},{"denom":"ASSET10","index":"0.000023372734593498"},{"denom":"ASSET11","index":"0.000029203218600002"},{"denom":"ASSET12","index":"0.000027792166579196"},{"denom":"ASSET13","index":"0.000009167641990636"},{"denom":"ASSET14","index":"0.000026818252104650"},{"denom":"ASSET15","index":"0.000021072198152383"},{"denom":"ASSET16","index":"0.000013054905852031"},{"denom":"ASSET17","index":"0.000010211457984650"},{"denom":"ASSET18","index":"0.000004240878207320"},{"denom":"ASSET2","index":"0.000008898543974195"},{"denom":"ASSET3","index":"0.000002476460623897"},{"denom":"ASSET4","index":"0.000023847831794350"},{"denom":"ASSET5","index":"0.000001927880642719"},{"denom":"ASSET6","index":"0.000007785977685579"},{"denom":"ASSET7","index":"0.000012222326144679"},{"denom":"ASSET8","index":"0.000016667230515151"},{"denom":"ASSET9","index":"0.000007078301868557"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001541968050995"},{"denom":"ASSET1","index":"0.000012857487907975"},{"denom":"ASSET10","index":"0.000008957704485900"},{"denom":"ASSET11","index":"0.000012438763825161"},{"denom":"ASSET12","index":"0.000011200869215257"},{"denom":"ASSET13","index":"0.000003854089325736"},{"denom":"ASSET14","index":"0.000011619593298070"},{"denom":"ASSET15","index":"0.000008307186714386"},{"denom":"ASSET16","index":"0.000005792349812251"},{"denom":"ASSET17","index":"0.000004113299472240"},{"denom":"ASSET18","index":"0.000001959030530305"},{"denom":"ASSET2","index":"0.000003795102401372"},{"denom":"ASSET3","index":"0.000001109951140156"},{"denom":"ASSET4","index":"0.000010448993630046"},{"denom":"ASSET5","index":"0.000000861541416423"},{"denom":"ASSET6","index":"0.000003506814193562"},{"denom":"ASSET7","index":"0.000005371133324183"},{"denom":"ASSET8","index":"0.000007009474378365"},{"denom":"ASSET9","index":"0.000003027441582881"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003053196756625"},{"denom":"ASSET1","index":"0.000025905581999278"},{"denom":"ASSET10","index":"0.000020682143152818"},{"denom":"ASSET11","index":"0.000025745380902198"},{"denom":"ASSET12","index":"0.000024550499550641"},{"denom":"ASSET13","index":"0.000008086239198545"},{"denom":"ASSET14","index":"0.000023629161089906"},{"denom":"ASSET15","index":"0.000018628151539367"},{"denom":"ASSET16","index":"0.000011492271696690"},{"denom":"ASSET17","index":"0.000009021688715966"},{"denom":"ASSET18","index":"0.000003727673632537"},{"denom":"ASSET2","index":"0.000007845443656426"},{"denom":"ASSET3","index":"0.000002178852781858"},{"denom":"ASSET4","index":"0.000021002318737231"},{"denom":"ASSET5","index":"0.000001697417622442"},{"denom":"ASSET6","index":"0.000006850319017638"},{"denom":"ASSET7","index":"0.000010761758840612"},{"denom":"ASSET8","index":"0.000014701087498525"},{"denom":"ASSET9","index":"0.000006240132889304"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001327266579501"},{"denom":"ASSET1","index":"0.000011071143497688"},{"denom":"ASSET10","index":"0.000007713614824674"},{"denom":"ASSET11","index":"0.000010710668391289"},{"denom":"ASSET12","index":"0.000009644435509525"},{"denom":"ASSET13","index":"0.000003318857014090"},{"denom":"ASSET14","index":"0.000010004910615924"},{"denom":"ASSET15","index":"0.000007152875770275"},{"denom":"ASSET16","index":"0.000004987262870528"},{"denom":"ASSET17","index":"0.000003541219052903"},{"denom":"ASSET18","index":"0.000001686360555224"},{"denom":"ASSET2","index":"0.000003267755179083"},{"denom":"ASSET3","index":"0.000000955742427695"},{"denom":"ASSET4","index":"0.000008998066353223"},{"denom":"ASSET5","index":"0.000000741667172936"},{"denom":"ASSET6","index":"0.000003019151657428"},{"denom":"ASSET7","index":"0.000004625406633453"},{"denom":"ASSET8","index":"0.000006035541053505"},{"denom":"ASSET9","index":"0.000002606193585346"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000002827520151011"},{"denom":"ASSET1","index":"0.000024027878888002"},{"denom":"ASSET10","index":"0.000019355847170480"},{"denom":"ASSET11","index":"0.000023924401086085"},{"denom":"ASSET12","index":"0.000022900407365256"},{"denom":"ASSET13","index":"0.000007521399074311"},{"denom":"ASSET14","index":"0.000021930603354990"},{"denom":"ASSET15","index":"0.000017401215805238"},{"denom":"ASSET16","index":"0.000010647310435771"},{"denom":"ASSET17","index":"0.000008415007538097"},{"denom":"ASSET18","index":"0.000003442593620109"},{"denom":"ASSET2","index":"0.000007289635767836"},{"denom":"ASSET3","index":"0.000002016810506595"},{"denom":"ASSET4","index":"0.000019477449509443"},{"denom":"ASSET5","index":"0.000001571692130579"},{"denom":"ASSET6","index":"0.000006339251488002"},{"denom":"ASSET7","index":"0.000009978075244424"},{"denom":"ASSET8","index":"0.000013673195599374"},{"denom":"ASSET9","index":"0.000005796522499795"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001571435631869"},{"denom":"ASSET1","index":"0.000013104175099655"},{"denom":"ASSET10","index":"0.000009129715488355"},{"denom":"ASSET11","index":"0.000012677036600848"},{"denom":"ASSET12","index":"0.000011415350365342"},{"denom":"ASSET13","index":"0.000003928095848150"},{"denom":"ASSET14","index":"0.000011841502401104"},{"denom":"ASSET15","index":"0.000008466812321615"},{"denom":"ASSET16","index":"0.000005902994865728"},{"denom":"ASSET17","index":"0.000004192467944409"},{"denom":"ASSET18","index":"0.000001996601204585"},{"denom":"ASSET2","index":"0.000003867921602360"},{"denom":"ASSET3","index":"0.000001131473113468"},{"denom":"ASSET4","index":"0.000010648868578800"},{"denom":"ASSET5","index":"0.000000877952110712"},{"denom":"ASSET6","index":"0.000003573955614728"},{"denom":"ASSET7","index":"0.000005473883440830"},{"denom":"ASSET8","index":"0.000007142978914228"},{"denom":"ASSET9","index":"0.000003084669944040"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003141123056438"},{"denom":"ASSET1","index":"0.000026662100889972"},{"denom":"ASSET10","index":"0.000021312054987248"},{"denom":"ASSET11","index":"0.000026503481745319"},{"denom":"ASSET12","index":"0.000025286293002787"},{"denom":"ASSET13","index":"0.000008324908472884"},{"denom":"ASSET14","index":"0.000024319980387721"},{"denom":"ASSET15","index":"0.000019190708128374"},{"denom":"ASSET16","index":"0.000011824997422058"},{"denom":"ASSET17","index":"0.000009292034078872"},{"denom":"ASSET18","index":"0.000003834040785154"},{"denom":"ASSET2","index":"0.000008076003481032"},{"denom":"ASSET3","index":"0.000002241608843356"},{"denom":"ASSET4","index":"0.000021614431804298"},{"denom":"ASSET5","index":"0.000001746420421862"},{"denom":"ASSET6","index":"0.000007047828859327"},{"denom":"ASSET7","index":"0.000011075197168484"},{"denom":"ASSET8","index":"0.000015134882092008"},{"denom":"ASSET9","index":"0.000006422749115253"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[{"denom":"ASSET0","index":"0.000001554974273829"},{"denom":"ASSET1","index":"0.000012964145980643"},{"denom":"ASSET10","index":"0.000009032293690170"},{"denom":"ASSET11","index":"0.000012541598623624"},{"denom":"ASSET12","index":"0.000011293609918011"},{"denom":"ASSET13","index":"0.000003886649549954"},{"denom":"ASSET14","index":"0.000011715371140412"},{"denom":"ASSET15","index":"0.000008376264351692"},{"denom":"ASSET16","index":"0.000005840194074962"},{"denom":"ASSET17","index":"0.000004147646243034"},{"denom":"ASSET18","index":"0.000001975556294303"},{"denom":"ASSET2","index":"0.000003826903319009"},{"denom":"ASSET3","index":"0.000001119455695618"},{"denom":"ASSET4","index":"0.000010535776146539"},{"denom":"ASSET5","index":"0.000000869071819878"},{"denom":"ASSET6","index":"0.000003536426577765"},{"denom":"ASSET7","index":"0.000005416074448708"},{"denom":"ASSET8","index":"0.000007067350213206"},{"denom":"ASSET9","index":"0.000003052560720565"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[{"denom":"ASSET0","index":"0.000003054120352223"},{"denom":"ASSET1","index":"0.000025909289170716"},{"denom":"ASSET10","index":"0.000020664041936079"},{"denom":"ASSET11","index":"0.000025743066158465"},{"denom":"ASSET12","index":"0.000024537849095602"},{"denom":"ASSET13","index":"0.000008085297309351"},{"denom":"ASSET14","index":"0.000023630023251940"},{"denom":"ASSET15","index":"0.000018615490114349"},{"denom":"ASSET16","index":"0.000011495216270003"},{"denom":"ASSET17","index":"0.000009017197770141"},{"denom":"ASSET18","index":"0.000003730110182262"},{"denom":"ASSET2","index":"0.000007845299155388"},{"denom":"ASSET3","index":"0.000002179886924088"},{"denom":"ASSET4","index":"0.000021005968780047"},{"denom":"ASSET5","index":"0.000001698230665763"},{"denom":"ASSET6","index":"0.000006853367473041"},{"denom":"ASSET7","index":"0.000010764057351149"},{"denom":"ASSET8","index":"0.000014698116791571"},{"denom":"ASSET9","index":"0.000006239964640655"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888251335962281607","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888247512188335768","reward_histories":[]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET4","snapshot":{"prev_reward_weight":"0.888243688430850639","reward_histories":[]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001587610635106"},{"denom":"ASSET1","index":"0.000013244938725362"},{"denom":"ASSET10","index":"0.000009227311812032"},{"denom":"ASSET11","index":"0.000012812935831455"},{"denom":"ASSET12","index":"0.000011538527294432"},{"denom":"ASSET13","index":"0.000003970376596809"},{"denom":"ASSET14","index":"0.000011969180179294"},{"denom":"ASSET15","index":"0.000008557707326477"},{"denom":"ASSET16","index":"0.000005967039972082"},{"denom":"ASSET17","index":"0.000004237678387413"},{"denom":"ASSET18","index":"0.000002018263519969"},{"denom":"ASSET2","index":"0.000003909626189853"},{"denom":"ASSET3","index":"0.000001143457659809"},{"denom":"ASSET4","index":"0.000010763622103487"},{"denom":"ASSET5","index":"0.000000886955941552"},{"denom":"ASSET6","index":"0.000003612624200292"},{"denom":"ASSET7","index":"0.000005533687069132"},{"denom":"ASSET8","index":"0.000007219848364411"},{"denom":"ASSET9","index":"0.000003118520890387"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003152887181228"},{"denom":"ASSET1","index":"0.000026760532918289"},{"denom":"ASSET10","index":"0.000021371603424459"},{"denom":"ASSET11","index":"0.000026596151859305"},{"denom":"ASSET12","index":"0.000025366346961436"},{"denom":"ASSET13","index":"0.000008353980761099"},{"denom":"ASSET14","index":"0.000024408754798213"},{"denom":"ASSET15","index":"0.000019248058608344"},{"denom":"ASSET16","index":"0.000011870971278696"},{"denom":"ASSET17","index":"0.000009321801721671"},{"denom":"ASSET18","index":"0.000003850124607081"},{"denom":"ASSET2","index":"0.000008105134387478"},{"denom":"ASSET3","index":"0.000002250596051831"},{"denom":"ASSET4","index":"0.000021694971342643"},{"denom":"ASSET5","index":"0.000001752750611640"},{"denom":"ASSET6","index":"0.000007075802880646"},{"denom":"ASSET7","index":"0.000011117440314842"},{"denom":"ASSET8","index":"0.000015186957305377"},{"denom":"ASSET9","index":"0.000006446159830056"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001450981944084"},{"denom":"ASSET1","index":"0.000012097851501865"},{"denom":"ASSET10","index":"0.000008428524260541"},{"denom":"ASSET11","index":"0.000011703479004578"},{"denom":"ASSET12","index":"0.000010538773481717"},{"denom":"ASSET13","index":"0.000003626563958485"},{"denom":"ASSET14","index":"0.000010932552044520"},{"denom":"ASSET15","index":"0.000007816771742159"},{"denom":"ASSET16","index":"0.000005449942823954"},{"denom":"ASSET17","index":"0.000003870671031354"},{"denom":"ASSET18","index":"0.000001843572637920"},{"denom":"ASSET2","index":"0.000003571328051486"},{"denom":"ASSET3","index":"0.000001044730757120"},{"denom":"ASSET4","index":"0.000009831991445917"},{"denom":"ASSET5","index":"0.000000810720570477"},{"denom":"ASSET6","index":"0.000003299899992359"},{"denom":"ASSET7","index":"0.000005054382457699"},{"denom":"ASSET8","index":"0.000006595048508847"},{"denom":"ASSET9","index":"0.000002848509784621"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000002831039632868"},{"denom":"ASSET1","index":"0.000024014703977493"},{"denom":"ASSET10","index":"0.000019136467933987"},{"denom":"ASSET11","index":"0.000023856136612857"},{"denom":"ASSET12","index":"0.000022731094165303"},{"denom":"ASSET13","index":"0.000007491812146677"},{"denom":"ASSET14","index":"0.000021900750691559"},{"denom":"ASSET15","index":"0.000017242457090593"},{"denom":"ASSET16","index":"0.000010655585625623"},{"denom":"ASSET17","index":"0.000008353141870908"},{"denom":"ASSET18","index":"0.000003458892129556"},{"denom":"ASSET2","index":"0.000007270317321266"},{"denom":"ASSET3","index":"0.000002020551075646"},{"denom":"ASSET4","index":"0.000019470118745656"},{"denom":"ASSET5","index":"0.000001574098937698"},{"denom":"ASSET6","index":"0.000006353413461243"},{"denom":"ASSET7","index":"0.000009977493764026"},{"denom":"ASSET8","index":"0.000013619759476676"},{"denom":"ASSET9","index":"0.000005782490697784"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001596167964962"},{"denom":"ASSET1","index":"0.000013307648687747"},{"denom":"ASSET10","index":"0.000009271254138767"},{"denom":"ASSET11","index":"0.000012873344596610"},{"denom":"ASSET12","index":"0.000011592750107942"},{"denom":"ASSET13","index":"0.000003989527201016"},{"denom":"ASSET14","index":"0.000012025715131995"},{"denom":"ASSET15","index":"0.000008598149750858"},{"denom":"ASSET16","index":"0.000005994556982506"},{"denom":"ASSET17","index":"0.000004257340617956"},{"denom":"ASSET18","index":"0.000002028240277625"},{"denom":"ASSET2","index":"0.000003928376470814"},{"denom":"ASSET3","index":"0.000001148919558672"},{"denom":"ASSET4","index":"0.000010814752131731"},{"denom":"ASSET5","index":"0.000000891818678410"},{"denom":"ASSET6","index":"0.000003630210866621"},{"denom":"ASSET7","index":"0.000005559360179979"},{"denom":"ASSET8","index":"0.000007254619109209"},{"denom":"ASSET9","index":"0.000003133416978198"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003160678210357"},{"denom":"ASSET1","index":"0.000026816731621709"},{"denom":"ASSET10","index":"0.000021409695697867"},{"denom":"ASSET11","index":"0.000026650151208928"},{"denom":"ASSET12","index":"0.000025413985003091"},{"denom":"ASSET13","index":"0.000008371194471357"},{"denom":"ASSET14","index":"0.000024459575922385"},{"denom":"ASSET15","index":"0.000019283728762326"},{"denom":"ASSET16","index":"0.000011895729224726"},{"denom":"ASSET17","index":"0.000009339186085895"},{"denom":"ASSET18","index":"0.000003859320220004"},{"denom":"ASSET2","index":"0.000008121656282140"},{"denom":"ASSET3","index":"0.000002255587694637"},{"denom":"ASSET4","index":"0.000021740936259308"},{"denom":"ASSET5","index":"0.000001757304707579"},{"denom":"ASSET6","index":"0.000007091577992612"},{"denom":"ASSET7","index":"0.000011140302591406"},{"denom":"ASSET8","index":"0.000015217956063596"},{"denom":"ASSET9","index":"0.000006459479788296"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001539653287763"},{"denom":"ASSET1","index":"0.000012837628062054"},{"denom":"ASSET10","index":"0.000008944076712630"},{"denom":"ASSET11","index":"0.000012418678362380"},{"denom":"ASSET12","index":"0.000011182855597091"},{"denom":"ASSET13","index":"0.000003848344731893"},{"denom":"ASSET14","index":"0.000011600753980079"},{"denom":"ASSET15","index":"0.000008294363000211"},{"denom":"ASSET16","index":"0.000005782767435536"},{"denom":"ASSET17","index":"0.000004106968636837"},{"denom":"ASSET18","index":"0.000001956500354065"},{"denom":"ASSET2","index":"0.000003789470997435"},{"denom":"ASSET3","index":"0.000001108613446191"},{"denom":"ASSET4","index":"0.000010432741141086"},{"denom":"ASSET5","index":"0.000000860502708115"},{"denom":"ASSET6","index":"0.000003501935883605"},{"denom":"ASSET7","index":"0.000005362766419174"},{"denom":"ASSET8","index":"0.000006998089525433"},{"denom":"ASSET9","index":"0.000003022535474442"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003102081054533"},{"denom":"ASSET1","index":"0.000026328097047411"},{"denom":"ASSET10","index":"0.000021065731925672"},{"denom":"ASSET11","index":"0.000026176422512857"},{"denom":"ASSET12","index":"0.000024984864029023"},{"denom":"ASSET13","index":"0.000008223750690350"},{"denom":"ASSET14","index":"0.000024017391771060"},{"denom":"ASSET15","index":"0.000018965095888316"},{"denom":"ASSET16","index":"0.000011675661088751"},{"denom":"ASSET17","index":"0.000009181817821335"},{"denom":"ASSET18","index":"0.000003784851704842"},{"denom":"ASSET2","index":"0.000007977007181168"},{"denom":"ASSET3","index":"0.000002213531006169"},{"denom":"ASSET4","index":"0.000021343717572048"},{"denom":"ASSET5","index":"0.000001724500934679"},{"denom":"ASSET6","index":"0.000006958604580417"},{"denom":"ASSET7","index":"0.000010936011139136"},{"denom":"ASSET8","index":"0.000014950117004491"},{"denom":"ASSET9","index":"0.000006344046059941"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001722784092424"},{"denom":"ASSET1","index":"0.000014376047839207"},{"denom":"ASSET10","index":"0.000010014727915911"},{"denom":"ASSET11","index":"0.000013905627425621"},{"denom":"ASSET12","index":"0.000012523636788373"},{"denom":"ASSET13","index":"0.000004309050988454"},{"denom":"ASSET14","index":"0.000012989875687172"},{"denom":"ASSET15","index":"0.000009287144342897"},{"denom":"ASSET16","index":"0.000006475075648346"},{"denom":"ASSET17","index":"0.000004597575508787"},{"denom":"ASSET18","index":"0.000002191113748617"},{"denom":"ASSET2","index":"0.000004242146751855"},{"denom":"ASSET3","index":"0.000001239819134475"},{"denom":"ASSET4","index":"0.000011683152316098"},{"denom":"ASSET5","index":"0.000000961748401110"},{"denom":"ASSET6","index":"0.000003920170113222"},{"denom":"ASSET7","index":"0.000006004655234759"},{"denom":"ASSET8","index":"0.000007836158711656"},{"denom":"ASSET9","index":"0.000003384936220430"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003308323901116"},{"denom":"ASSET1","index":"0.000028066718381779"},{"denom":"ASSET10","index":"0.000022316311421496"},{"denom":"ASSET11","index":"0.000027867424204892"},{"denom":"ASSET12","index":"0.000026530665881565"},{"denom":"ASSET13","index":"0.000008749579510737"},{"denom":"ASSET14","index":"0.000025590688346390"},{"denom":"ASSET15","index":"0.000020116135001180"},{"denom":"ASSET16","index":"0.000012455644018572"},{"denom":"ASSET17","index":"0.000009747635771928"},{"denom":"ASSET18","index":"0.000004046709206696"},{"denom":"ASSET2","index":"0.000008491843085820"},{"denom":"ASSET3","index":"0.000002361259343526"},{"denom":"ASSET4","index":"0.000022756236881458"},{"denom":"ASSET5","index":"0.000001838827056256"},{"denom":"ASSET6","index":"0.000007428217086977"},{"denom":"ASSET7","index":"0.000011660835649526"},{"denom":"ASSET8","index":"0.000015906513514404"},{"denom":"ASSET9","index":"0.000006755948018281"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001677980890787"},{"denom":"ASSET1","index":"0.000013990275877081"},{"denom":"ASSET10","index":"0.000009746835585844"},{"denom":"ASSET11","index":"0.000013534047272362"},{"denom":"ASSET12","index":"0.000012187401487418"},{"denom":"ASSET13","index":"0.000004194217559326"},{"denom":"ASSET14","index":"0.000012642160756856"},{"denom":"ASSET15","index":"0.000009039350648091"},{"denom":"ASSET16","index":"0.000006301979019776"},{"denom":"ASSET17","index":"0.000004475595265619"},{"denom":"ASSET18","index":"0.000002132005492585"},{"denom":"ASSET2","index":"0.000004129566806967"},{"denom":"ASSET3","index":"0.000001207793600899"},{"denom":"ASSET4","index":"0.000011368981735957"},{"denom":"ASSET5","index":"0.000000937435909214"},{"denom":"ASSET6","index":"0.000003815863724495"},{"denom":"ASSET7","index":"0.000005844281079776"},{"denom":"ASSET8","index":"0.000007626584775507"},{"denom":"ASSET9","index":"0.000003293515032135"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003299297789724"},{"denom":"ASSET1","index":"0.000027989603079017"},{"denom":"ASSET10","index":"0.000022326156077139"},{"denom":"ASSET11","index":"0.000027810817552502"},{"denom":"ASSET12","index":"0.000026510364756940"},{"denom":"ASSET13","index":"0.000008734817330461"},{"denom":"ASSET14","index":"0.000025527438517331"},{"denom":"ASSET15","index":"0.000020112836713905"},{"denom":"ASSET16","index":"0.000012417417558556"},{"denom":"ASSET17","index":"0.000009741881197111"},{"denom":"ASSET18","index":"0.000004029624902086"},{"denom":"ASSET2","index":"0.000008475129511821"},{"denom":"ASSET3","index":"0.000002354634361983"},{"denom":"ASSET4","index":"0.000022691681830907"},{"denom":"ASSET5","index":"0.000001834207215432"},{"denom":"ASSET6","index":"0.000007402948949368"},{"denom":"ASSET7","index":"0.000011627814435586"},{"denom":"ASSET8","index":"0.000015878876786083"},{"denom":"ASSET9","index":"0.000006740310437402"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001570026110869"},{"denom":"ASSET1","index":"0.000013093495665706"},{"denom":"ASSET10","index":"0.000009121814411369"},{"denom":"ASSET11","index":"0.000012665871768525"},{"denom":"ASSET12","index":"0.000011405375746022"},{"denom":"ASSET13","index":"0.000003924443730811"},{"denom":"ASSET14","index":"0.000011831756550478"},{"denom":"ASSET15","index":"0.000008459245989284"},{"denom":"ASSET16","index":"0.000005898474977098"},{"denom":"ASSET17","index":"0.000004187979388376"},{"denom":"ASSET18","index":"0.000001995163822601"},{"denom":"ASSET2","index":"0.000003864775280042"},{"denom":"ASSET3","index":"0.000001129971286445"},{"denom":"ASSET4","index":"0.000010639630627815"},{"denom":"ASSET5","index":"0.000000877623463400"},{"denom":"ASSET6","index":"0.000003571405397092"},{"denom":"ASSET7","index":"0.000005469607987193"},{"denom":"ASSET8","index":"0.000007137838423287"},{"denom":"ASSET9","index":"0.000003082869956418"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003142586597057"},{"denom":"ASSET1","index":"0.000026671940208455"},{"denom":"ASSET10","index":"0.000021322845581004"},{"denom":"ASSET11","index":"0.000026513185667064"},{"denom":"ASSET12","index":"0.000025297681895631"},{"denom":"ASSET13","index":"0.000008328263582513"},{"denom":"ASSET14","index":"0.000024329302916923"},{"denom":"ASSET15","index":"0.000019199384187435"},{"denom":"ASSET16","index":"0.000011829863063918"},{"denom":"ASSET17","index":"0.000009295955073087"},{"denom":"ASSET18","index":"0.000003835509513951"},{"denom":"ASSET2","index":"0.000008079410847125"},{"denom":"ASSET3","index":"0.000002242309830967"},{"denom":"ASSET4","index":"0.000021622076491366"},{"denom":"ASSET5","index":"0.000001747112267207"},{"denom":"ASSET6","index":"0.000007050444762949"},{"denom":"ASSET7","index":"0.000011079003337441"},{"denom":"ASSET8","index":"0.000015142122511204"},{"denom":"ASSET9","index":"0.000006425848418438"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001808467589320"},{"denom":"ASSET1","index":"0.000015078627759778"},{"denom":"ASSET10","index":"0.000010504031371633"},{"denom":"ASSET11","index":"0.000014586692317421"},{"denom":"ASSET12","index":"0.000013135079536696"},{"denom":"ASSET13","index":"0.000004520160908868"},{"denom":"ASSET14","index":"0.000013624998850191"},{"denom":"ASSET15","index":"0.000009741934661752"},{"denom":"ASSET16","index":"0.000006792338136474"},{"denom":"ASSET17","index":"0.000004822580238185"},{"denom":"ASSET18","index":"0.000002296370773952"},{"denom":"ASSET2","index":"0.000004449596398694"},{"denom":"ASSET3","index":"0.000001300403116066"},{"denom":"ASSET4","index":"0.000012254031223951"},{"denom":"ASSET5","index":"0.000001010080559921"},{"denom":"ASSET6","index":"0.000004112902878720"},{"denom":"ASSET7","index":"0.000006298386565256"},{"denom":"ASSET8","index":"0.000008219757370854"},{"denom":"ASSET9","index":"0.000003550402926189"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003309574221953"},{"denom":"ASSET1","index":"0.000028041386020893"},{"denom":"ASSET10","index":"0.000022151472675705"},{"denom":"ASSET11","index":"0.000027806413413432"},{"denom":"ASSET12","index":"0.000026397319662942"},{"denom":"ASSET13","index":"0.000008723998941637"},{"denom":"ASSET14","index":"0.000025556208464743"},{"denom":"ASSET15","index":"0.000019995491235522"},{"denom":"ASSET16","index":"0.000012454763771642"},{"denom":"ASSET17","index":"0.000009698403814011"},{"denom":"ASSET18","index":"0.000004053515914738"},{"denom":"ASSET2","index":"0.000008473190716338"},{"denom":"ASSET3","index":"0.000002361530218445"},{"denom":"ASSET4","index":"0.000022738669483779"},{"denom":"ASSET5","index":"0.000001840125976242"},{"denom":"ASSET6","index":"0.000007434008870747"},{"denom":"ASSET7","index":"0.000011653935721338"},{"denom":"ASSET8","index":"0.000015861166565423"},{"denom":"ASSET9","index":"0.000006742103174023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001541663174382"},{"denom":"ASSET1","index":"0.000012852134347969"},{"denom":"ASSET10","index":"0.000008953505358908"},{"denom":"ASSET11","index":"0.000012432624080325"},{"denom":"ASSET12","index":"0.000011194846435509"},{"denom":"ASSET13","index":"0.000003852675567517"},{"denom":"ASSET14","index":"0.000011614356703153"},{"denom":"ASSET15","index":"0.000008302745615107"},{"denom":"ASSET16","index":"0.000005788648746115"},{"denom":"ASSET17","index":"0.000004110607675539"},{"denom":"ASSET18","index":"0.000001958208705152"},{"denom":"ASSET2","index":"0.000003793380830041"},{"denom":"ASSET3","index":"0.000001108811590805"},{"denom":"ASSET4","index":"0.000010443285637998"},{"denom":"ASSET5","index":"0.000000861256061842"},{"denom":"ASSET6","index":"0.000003505801353281"},{"denom":"ASSET7","index":"0.000005369138478471"},{"denom":"ASSET8","index":"0.000007005673232815"},{"denom":"ASSET9","index":"0.000003025513979724"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003039218640043"},{"denom":"ASSET1","index":"0.000025782167100542"},{"denom":"ASSET10","index":"0.000020571830356487"},{"denom":"ASSET11","index":"0.000025618833387376"},{"denom":"ASSET12","index":"0.000024423552320522"},{"denom":"ASSET13","index":"0.000008046369560384"},{"denom":"ASSET14","index":"0.000023515194162679"},{"denom":"ASSET15","index":"0.000018530055863607"},{"denom":"ASSET16","index":"0.000011436803083329"},{"denom":"ASSET17","index":"0.000008974370950503"},{"denom":"ASSET18","index":"0.000003710743638587"},{"denom":"ASSET2","index":"0.000007806913274081"},{"denom":"ASSET3","index":"0.000002167934051431"},{"denom":"ASSET4","index":"0.000020901035076857"},{"denom":"ASSET5","index":"0.000001689640060433"},{"denom":"ASSET6","index":"0.000006819038075969"},{"denom":"ASSET7","index":"0.000010710838619674"},{"denom":"ASSET8","index":"0.000014627524271874"},{"denom":"ASSET9","index":"0.000006209166066794"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001647112085871"},{"denom":"ASSET1","index":"0.000013744257107488"},{"denom":"ASSET10","index":"0.000009576415679235"},{"denom":"ASSET11","index":"0.000013296650962579"},{"denom":"ASSET12","index":"0.000011973464376313"},{"denom":"ASSET13","index":"0.000004120724991946"},{"denom":"ASSET14","index":"0.000012421070521222"},{"denom":"ASSET15","index":"0.000008879485058873"},{"denom":"ASSET16","index":"0.000006191885004573"},{"denom":"ASSET17","index":"0.000004397534055245"},{"denom":"ASSET18","index":"0.000002094718230780"},{"denom":"ASSET2","index":"0.000004055939892025"},{"denom":"ASSET3","index":"0.000001185763647039"},{"denom":"ASSET4","index":"0.000011170521774262"},{"denom":"ASSET5","index":"0.000000920733692817"},{"denom":"ASSET6","index":"0.000003749683056035"},{"denom":"ASSET7","index":"0.000005742315674818"},{"denom":"ASSET8","index":"0.000007491513372686"},{"denom":"ASSET9","index":"0.000003235328626359"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003240628198198"},{"denom":"ASSET1","index":"0.000027504329283847"},{"denom":"ASSET10","index":"0.000021940320319100"},{"denom":"ASSET11","index":"0.000027329345632586"},{"denom":"ASSET12","index":"0.000026051323397008"},{"denom":"ASSET13","index":"0.000008583813762496"},{"denom":"ASSET14","index":"0.000025085743554439"},{"denom":"ASSET15","index":"0.000019763439018939"},{"denom":"ASSET16","index":"0.000012202670980955"},{"denom":"ASSET17","index":"0.000009573761377605"},{"denom":"ASSET18","index":"0.000003959875003044"},{"denom":"ASSET2","index":"0.000008327243811102"},{"denom":"ASSET3","index":"0.000002312908746824"},{"denom":"ASSET4","index":"0.000022299606884078"},{"denom":"ASSET5","index":"0.000001802093087045"},{"denom":"ASSET6","index":"0.000007275447910852"},{"denom":"ASSET7","index":"0.000011427132859276"},{"denom":"ASSET8","index":"0.000015602768933976"},{"denom":"ASSET9","index":"0.000006623309483786"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001570100817458"},{"denom":"ASSET1","index":"0.000013089401919768"},{"denom":"ASSET10","index":"0.000009119446705996"},{"denom":"ASSET11","index":"0.000012662761138201"},{"denom":"ASSET12","index":"0.000011403229713207"},{"denom":"ASSET13","index":"0.000003924467777503"},{"denom":"ASSET14","index":"0.000011828301962489"},{"denom":"ASSET15","index":"0.000008457526081653"},{"denom":"ASSET16","index":"0.000005896112859965"},{"denom":"ASSET17","index":"0.000004187981201412"},{"denom":"ASSET18","index":"0.000001993604534455"},{"denom":"ASSET2","index":"0.000003863295018381"},{"denom":"ASSET3","index":"0.000001129343245325"},{"denom":"ASSET4","index":"0.000010637785958043"},{"denom":"ASSET5","index":"0.000000876809547412"},{"denom":"ASSET6","index":"0.000003569979481054"},{"denom":"ASSET7","index":"0.000005467903546113"},{"denom":"ASSET8","index":"0.000007135253365252"},{"denom":"ASSET9","index":"0.000003082165940365"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003152920186871"},{"denom":"ASSET1","index":"0.000026760622644749"},{"denom":"ASSET10","index":"0.000021403995558307"},{"denom":"ASSET11","index":"0.000026604821287493"},{"denom":"ASSET12","index":"0.000025390105019040"},{"denom":"ASSET13","index":"0.000008358570294936"},{"denom":"ASSET14","index":"0.000024411618525071"},{"denom":"ASSET15","index":"0.000019270968708391"},{"denom":"ASSET16","index":"0.000011868219590271"},{"denom":"ASSET17","index":"0.000009330682788205"},{"denom":"ASSET18","index":"0.000003846613833157"},{"denom":"ASSET2","index":"0.000008107095494272"},{"denom":"ASSET3","index":"0.000002249072663818"},{"denom":"ASSET4","index":"0.000021694789218154"},{"denom":"ASSET5","index":"0.000001752328837510"},{"denom":"ASSET6","index":"0.000007072706136469"},{"denom":"ASSET7","index":"0.000011115912260277"},{"denom":"ASSET8","index":"0.000015194187602297"},{"denom":"ASSET9","index":"0.000006447849146068"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001655272585709"},{"denom":"ASSET1","index":"0.000013804891217292"},{"denom":"ASSET10","index":"0.000009617831976915"},{"denom":"ASSET11","index":"0.000013354722791997"},{"denom":"ASSET12","index":"0.000012025575872058"},{"denom":"ASSET13","index":"0.000004138592201887"},{"denom":"ASSET14","index":"0.000012474922822124"},{"denom":"ASSET15","index":"0.000008919578032571"},{"denom":"ASSET16","index":"0.000006218567480803"},{"denom":"ASSET17","index":"0.000004416250829168"},{"denom":"ASSET18","index":"0.000002103798060547"},{"denom":"ASSET2","index":"0.000004074517134053"},{"denom":"ASSET3","index":"0.000001191960556756"},{"denom":"ASSET4","index":"0.000011218887197534"},{"denom":"ASSET5","index":"0.000000924981107448"},{"denom":"ASSET6","index":"0.000003765642448085"},{"denom":"ASSET7","index":"0.000005766756105051"},{"denom":"ASSET8","index":"0.000007525534569569"},{"denom":"ASSET9","index":"0.000003250577479728"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003218229550028"},{"denom":"ASSET1","index":"0.000027301798081180"},{"denom":"ASSET10","index":"0.000021745417841688"},{"denom":"ASSET11","index":"0.000027119412726222"},{"denom":"ASSET12","index":"0.000025834540696398"},{"denom":"ASSET13","index":"0.000008516471999212"},{"denom":"ASSET14","index":"0.000024897496810197"},{"denom":"ASSET15","index":"0.000019595694306931"},{"denom":"ASSET16","index":"0.000012114595919920"},{"denom":"ASSET17","index":"0.000009493460517354"},{"denom":"ASSET18","index":"0.000003932937797970"},{"denom":"ASSET2","index":"0.000008264095290285"},{"denom":"ASSET3","index":"0.000002297232512411"},{"denom":"ASSET4","index":"0.000022135581489268"},{"denom":"ASSET5","index":"0.000001789675045728"},{"denom":"ASSET6","index":"0.000007223884768794"},{"denom":"ASSET7","index":"0.000011342725097550"},{"denom":"ASSET8","index":"0.000015481678980085"},{"denom":"ASSET9","index":"0.000006573861400446"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001621688869515"},{"denom":"ASSET1","index":"0.000013520143478358"},{"denom":"ASSET10","index":"0.000009419470546393"},{"denom":"ASSET11","index":"0.000013079418684764"},{"denom":"ASSET12","index":"0.000011778054243646"},{"denom":"ASSET13","index":"0.000004053107355591"},{"denom":"ASSET14","index":"0.000012218035825109"},{"denom":"ASSET15","index":"0.000008735715386011"},{"denom":"ASSET16","index":"0.000006090623412316"},{"denom":"ASSET17","index":"0.000004325494601547"},{"denom":"ASSET18","index":"0.000002060555632782"},{"denom":"ASSET2","index":"0.000003991049142665"},{"denom":"ASSET3","index":"0.000001167586257565"},{"denom":"ASSET4","index":"0.000010987648142487"},{"denom":"ASSET5","index":"0.000000905975587506"},{"denom":"ASSET6","index":"0.000003688190199343"},{"denom":"ASSET7","index":"0.000005648412194460"},{"denom":"ASSET8","index":"0.000007370434701640"},{"denom":"ASSET9","index":"0.000003183549162496"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003224207736427"},{"denom":"ASSET1","index":"0.000027358045975387"},{"denom":"ASSET10","index":"0.000021853454393362"},{"denom":"ASSET11","index":"0.000027191663823691"},{"denom":"ASSET12","index":"0.000025935625558190"},{"denom":"ASSET13","index":"0.000008541293337334"},{"denom":"ASSET14","index":"0.000024954691173737"},{"denom":"ASSET15","index":"0.000019681390400685"},{"denom":"ASSET16","index":"0.000012135703886829"},{"denom":"ASSET17","index":"0.000009530848033034"},{"denom":"ASSET18","index":"0.000003936224347496"},{"denom":"ASSET2","index":"0.000008286598878032"},{"denom":"ASSET3","index":"0.000002301038846536"},{"denom":"ASSET4","index":"0.000022179933336345"},{"denom":"ASSET5","index":"0.000001792519798769"},{"denom":"ASSET6","index":"0.000007234068845872"},{"denom":"ASSET7","index":"0.000011365474292791"},{"denom":"ASSET8","index":"0.000015527655320242"},{"denom":"ASSET9","index":"0.000006590765495457"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001684197417987"},{"denom":"ASSET1","index":"0.000014041270025306"},{"denom":"ASSET10","index":"0.000009782380002809"},{"denom":"ASSET11","index":"0.000013583439347888"},{"denom":"ASSET12","index":"0.000012231725730520"},{"denom":"ASSET13","index":"0.000004209525615418"},{"denom":"ASSET14","index":"0.000012688588478388"},{"denom":"ASSET15","index":"0.000009072403677468"},{"denom":"ASSET16","index":"0.000006325419612958"},{"denom":"ASSET17","index":"0.000004492161044183"},{"denom":"ASSET18","index":"0.000002139608271529"},{"denom":"ASSET2","index":"0.000004144674335530"},{"denom":"ASSET3","index":"0.000001212331762086"},{"denom":"ASSET4","index":"0.000011410921471639"},{"denom":"ASSET5","index":"0.000000940827523152"},{"denom":"ASSET6","index":"0.000003830097231595"},{"denom":"ASSET7","index":"0.000005866137041214"},{"denom":"ASSET8","index":"0.000007654386885887"},{"denom":"ASSET9","index":"0.000003305963379963"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003193080094990"},{"denom":"ASSET1","index":"0.000027069824276969"},{"denom":"ASSET10","index":"0.000021489349079139"},{"denom":"ASSET11","index":"0.000026870184080824"},{"denom":"ASSET12","index":"0.000025561356340007"},{"denom":"ASSET13","index":"0.000008435097288603"},{"denom":"ASSET14","index":"0.000024680442306089"},{"denom":"ASSET15","index":"0.000019377704768171"},{"denom":"ASSET16","index":"0.000012016988086595"},{"denom":"ASSET17","index":"0.000009392966467546"},{"denom":"ASSET18","index":"0.000003905368596850"},{"denom":"ASSET2","index":"0.000008189075060838"},{"denom":"ASSET3","index":"0.000002279664955012"},{"denom":"ASSET4","index":"0.000021948593995488"},{"denom":"ASSET5","index":"0.000001775351671947"},{"denom":"ASSET6","index":"0.000007168631437760"},{"denom":"ASSET7","index":"0.000011248752159293"},{"denom":"ASSET8","index":"0.000015334459676317"},{"denom":"ASSET9","index":"0.000006513651901550"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001677613648548"},{"denom":"ASSET1","index":"0.000013997394471820"},{"denom":"ASSET10","index":"0.000009752554992736"},{"denom":"ASSET11","index":"0.000013541183096442"},{"denom":"ASSET12","index":"0.000012193285851007"},{"denom":"ASSET13","index":"0.000004195070965406"},{"denom":"ASSET14","index":"0.000012649497226385"},{"denom":"ASSET15","index":"0.000009043353672830"},{"denom":"ASSET16","index":"0.000006306085420563"},{"denom":"ASSET17","index":"0.000004477092542912"},{"denom":"ASSET18","index":"0.000002131751335856"},{"denom":"ASSET2","index":"0.000004130786635239"},{"denom":"ASSET3","index":"0.000001208960144751"},{"denom":"ASSET4","index":"0.000011376252751467"},{"denom":"ASSET5","index":"0.000000937307007594"},{"denom":"ASSET6","index":"0.000003817659736684"},{"denom":"ASSET7","index":"0.000005847800357116"},{"denom":"ASSET8","index":"0.000007631172097229"},{"denom":"ASSET9","index":"0.000003295090343070"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003316222748087"},{"denom":"ASSET1","index":"0.000028147075207200"},{"denom":"ASSET10","index":"0.000022466702115272"},{"denom":"ASSET11","index":"0.000027971336509453"},{"denom":"ASSET12","index":"0.000026669877578580"},{"denom":"ASSET13","index":"0.000008784355829882"},{"denom":"ASSET14","index":"0.000025672864554615"},{"denom":"ASSET15","index":"0.000020235356040284"},{"denom":"ASSET16","index":"0.000012487172511964"},{"denom":"ASSET17","index":"0.000009799807931023"},{"denom":"ASSET18","index":"0.000004049727438870"},{"denom":"ASSET2","index":"0.000008522892941853"},{"denom":"ASSET3","index":"0.000002368075218536"},{"denom":"ASSET4","index":"0.000022820717384594"},{"denom":"ASSET5","index":"0.000001843591257654"},{"denom":"ASSET6","index":"0.000007443165294976"},{"denom":"ASSET7","index":"0.000011693499621126"},{"denom":"ASSET8","index":"0.000015972009373807"},{"denom":"ASSET9","index":"0.000006779069609364"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001520550536467"},{"denom":"ASSET1","index":"0.000012675827554874"},{"denom":"ASSET10","index":"0.000008831388003026"},{"denom":"ASSET11","index":"0.000012262725604616"},{"denom":"ASSET12","index":"0.000011042474271843"},{"denom":"ASSET13","index":"0.000003800233070086"},{"denom":"ASSET14","index":"0.000011455195131741"},{"denom":"ASSET15","index":"0.000008190012927118"},{"denom":"ASSET16","index":"0.000005710257954490"},{"denom":"ASSET17","index":"0.000004055182520937"},{"denom":"ASSET18","index":"0.000001931747034924"},{"denom":"ASSET2","index":"0.000003741926245004"},{"denom":"ASSET3","index":"0.000001094491513968"},{"denom":"ASSET4","index":"0.000010301253521611"},{"denom":"ASSET5","index":"0.000000849450412477"},{"denom":"ASSET6","index":"0.000003457632836431"},{"denom":"ASSET7","index":"0.000005295631642792"},{"denom":"ASSET8","index":"0.000006910311498182"},{"denom":"ASSET9","index":"0.000002984699699651"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003047858420945"},{"denom":"ASSET1","index":"0.000025863853767953"},{"denom":"ASSET10","index":"0.000020681482671570"},{"denom":"ASSET11","index":"0.000025712271525236"},{"denom":"ASSET12","index":"0.000024535470175220"},{"denom":"ASSET13","index":"0.000008077733573885"},{"denom":"ASSET14","index":"0.000023593590000343"},{"denom":"ASSET15","index":"0.000018621561303244"},{"denom":"ASSET16","index":"0.000011471343089677"},{"denom":"ASSET17","index":"0.000009016132124589"},{"denom":"ASSET18","index":"0.000003719208275283"},{"denom":"ASSET2","index":"0.000007835789085827"},{"denom":"ASSET3","index":"0.000002174729135607"},{"denom":"ASSET4","index":"0.000020967814383093"},{"denom":"ASSET5","index":"0.000001694402278429"},{"denom":"ASSET6","index":"0.000006836893759575"},{"denom":"ASSET7","index":"0.000010744095518390"},{"denom":"ASSET8","index":"0.000014684305897471"},{"denom":"ASSET9","index":"0.000006231971052532"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001765508823557"},{"denom":"ASSET1","index":"0.000014724618911480"},{"denom":"ASSET10","index":"0.000010258363403154"},{"denom":"ASSET11","index":"0.000014244524406828"},{"denom":"ASSET12","index":"0.000012826610887714"},{"denom":"ASSET13","index":"0.000004413772058893"},{"denom":"ASSET14","index":"0.000013305845007949"},{"denom":"ASSET15","index":"0.000009513270498085"},{"denom":"ASSET16","index":"0.000006632703470176"},{"denom":"ASSET17","index":"0.000004710604682736"},{"denom":"ASSET18","index":"0.000002243882559375"},{"denom":"ASSET2","index":"0.000004346662074372"},{"denom":"ASSET3","index":"0.000001271648168235"},{"denom":"ASSET4","index":"0.000011966226470776"},{"denom":"ASSET5","index":"0.000000986860926228"},{"denom":"ASSET6","index":"0.000004016274458267"},{"denom":"ASSET7","index":"0.000006150888196691"},{"denom":"ASSET8","index":"0.000008026526225616"},{"denom":"ASSET9","index":"0.000003466488815844"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003365151784209"},{"denom":"ASSET1","index":"0.000028538337865727"},{"denom":"ASSET10","index":"0.000022670552359626"},{"denom":"ASSET11","index":"0.000028331786642422"},{"denom":"ASSET12","index":"0.000026959391418936"},{"denom":"ASSET13","index":"0.000008894072871450"},{"denom":"ASSET14","index":"0.000026020188745878"},{"denom":"ASSET15","index":"0.000020439828986765"},{"denom":"ASSET16","index":"0.000012667128947757"},{"denom":"ASSET17","index":"0.000009907060013179"},{"denom":"ASSET18","index":"0.000004116201786219"},{"denom":"ASSET2","index":"0.000008634485522558"},{"denom":"ASSET3","index":"0.000002403102945281"},{"denom":"ASSET4","index":"0.000023139017263426"},{"denom":"ASSET5","index":"0.000001871649891727"},{"denom":"ASSET6","index":"0.000007555863827839"},{"denom":"ASSET7","index":"0.000011857581945748"},{"denom":"ASSET8","index":"0.000016169532559731"},{"denom":"ASSET9","index":"0.000006867789268222"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001833509758465"},{"denom":"ASSET1","index":"0.000015308139656127"},{"denom":"ASSET10","index":"0.000010661025831945"},{"denom":"ASSET11","index":"0.000014808091540182"},{"denom":"ASSET12","index":"0.000013334616425197"},{"denom":"ASSET13","index":"0.000004587108050268"},{"denom":"ASSET14","index":"0.000013827997232930"},{"denom":"ASSET15","index":"0.000009887618079284"},{"denom":"ASSET16","index":"0.000006893996691827"},{"denom":"ASSET17","index":"0.000004893804228047"},{"denom":"ASSET18","index":"0.000002326890566197"},{"denom":"ASSET2","index":"0.000004513767659929"},{"denom":"ASSET3","index":"0.000001320127026095"},{"denom":"ASSET4","index":"0.000012434529816496"},{"denom":"ASSET5","index":"0.000001020098156528"},{"denom":"ASSET6","index":"0.000004173734941087"},{"denom":"ASSET7","index":"0.000006393948575882"},{"denom":"ASSET8","index":"0.000008340802573961"},{"denom":"ASSET9","index":"0.000003600346434803"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003461123478470"},{"denom":"ASSET1","index":"0.000029368181297786"},{"denom":"ASSET10","index":"0.000023294808028239"},{"denom":"ASSET11","index":"0.000029147392384169"},{"denom":"ASSET12","index":"0.000027719461688447"},{"denom":"ASSET13","index":"0.000009147542663388"},{"denom":"ASSET14","index":"0.000026768604990580"},{"denom":"ASSET15","index":"0.000021008846141082"},{"denom":"ASSET16","index":"0.000013035302068339"},{"denom":"ASSET17","index":"0.000010182949549387"},{"denom":"ASSET18","index":"0.000004232564951180"},{"denom":"ASSET2","index":"0.000008877642147806"},{"denom":"ASSET3","index":"0.000002471921418528"},{"denom":"ASSET4","index":"0.000023806252184245"},{"denom":"ASSET5","index":"0.000001920199705662"},{"denom":"ASSET6","index":"0.000007776538212319"},{"denom":"ASSET7","index":"0.000012202060569359"},{"denom":"ASSET8","index":"0.000016628688342614"},{"denom":"ASSET9","index":"0.000007061722298848"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001580229076001"},{"denom":"ASSET1","index":"0.000013178675425859"},{"denom":"ASSET10","index":"0.000009181488308837"},{"denom":"ASSET11","index":"0.000012749045790152"},{"denom":"ASSET12","index":"0.000011480356468073"},{"denom":"ASSET13","index":"0.000003950572690002"},{"denom":"ASSET14","index":"0.000011909209196663"},{"denom":"ASSET15","index":"0.000008514902002442"},{"denom":"ASSET16","index":"0.000005936347281082"},{"denom":"ASSET17","index":"0.000004216274924019"},{"denom":"ASSET18","index":"0.000002008304897474"},{"denom":"ASSET2","index":"0.000003889973934875"},{"denom":"ASSET3","index":"0.000001137392019304"},{"denom":"ASSET4","index":"0.000010709664607998"},{"denom":"ASSET5","index":"0.000000883343392042"},{"denom":"ASSET6","index":"0.000003594749230410"},{"denom":"ASSET7","index":"0.000005505163831141"},{"denom":"ASSET8","index":"0.000007184060111002"},{"denom":"ASSET9","index":"0.000003102967025342"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003136420796654"},{"denom":"ASSET1","index":"0.000026617535879560"},{"denom":"ASSET10","index":"0.000021257162201233"},{"denom":"ASSET11","index":"0.000026454281403244"},{"denom":"ASSET12","index":"0.000025229520616223"},{"denom":"ASSET13","index":"0.000008309311482354"},{"denom":"ASSET14","index":"0.000024278363089230"},{"denom":"ASSET15","index":"0.000019144672836670"},{"denom":"ASSET16","index":"0.000011806881934189"},{"denom":"ASSET17","index":"0.000009271795054357"},{"denom":"ASSET18","index":"0.000003829937127836"},{"denom":"ASSET2","index":"0.000008061315465971"},{"denom":"ASSET3","index":"0.000002238409344787"},{"denom":"ASSET4","index":"0.000021579173085678"},{"denom":"ASSET5","index":"0.000001744155749232"},{"denom":"ASSET6","index":"0.000007037998659171"},{"denom":"ASSET7","index":"0.000011056982942661"},{"denom":"ASSET8","index":"0.000015105683491420"},{"denom":"ASSET9","index":"0.000006411626899884"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001065673750407"},{"denom":"ASSET1","index":"0.000008885137524612"},{"denom":"ASSET10","index":"0.000006190162379117"},{"denom":"ASSET11","index":"0.000008595321581390"},{"denom":"ASSET12","index":"0.000007740138401991"},{"denom":"ASSET13","index":"0.000002663662498568"},{"denom":"ASSET14","index":"0.000008029258508615"},{"denom":"ASSET15","index":"0.000005740999854868"},{"denom":"ASSET16","index":"0.000004002452113836"},{"denom":"ASSET17","index":"0.000002842492504350"},{"denom":"ASSET18","index":"0.000001354098020432"},{"denom":"ASSET2","index":"0.000002622608139264"},{"denom":"ASSET3","index":"0.000000767159849705"},{"denom":"ASSET4","index":"0.000007220696381306"},{"denom":"ASSET5","index":"0.000000595288209907"},{"denom":"ASSET6","index":"0.000002423598872130"},{"denom":"ASSET7","index":"0.000003711940334016"},{"denom":"ASSET8","index":"0.000004843718561268"},{"denom":"ASSET9","index":"0.000002092032733005"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000002559869929403"},{"denom":"ASSET1","index":"0.000021787096732684"},{"denom":"ASSET10","index":"0.000017783238471081"},{"denom":"ASSET11","index":"0.000021752938768967"},{"denom":"ASSET12","index":"0.000020940235345308"},{"denom":"ASSET13","index":"0.000006848308161575"},{"denom":"ASSET14","index":"0.000019904298850841"},{"denom":"ASSET15","index":"0.000015946274018453"},{"denom":"ASSET16","index":"0.000009638424477568"},{"denom":"ASSET17","index":"0.000007695902028378"},{"denom":"ASSET18","index":"0.000003102977872608"},{"denom":"ASSET2","index":"0.000006627591716064"},{"denom":"ASSET3","index":"0.000001824087350341"},{"denom":"ASSET4","index":"0.000017655906837434"},{"denom":"ASSET5","index":"0.000001421889695470"},{"denom":"ASSET6","index":"0.000005729615091854"},{"denom":"ASSET7","index":"0.000009042175373173"},{"denom":"ASSET8","index":"0.000012449153729005"},{"denom":"ASSET9","index":"0.000005268661072858"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001663945626017"},{"denom":"ASSET1","index":"0.000013874870096624"},{"denom":"ASSET10","index":"0.000009666844154779"},{"denom":"ASSET11","index":"0.000013422526194886"},{"denom":"ASSET12","index":"0.000012086742376498"},{"denom":"ASSET13","index":"0.000004159391889779"},{"denom":"ASSET14","index":"0.000012538614102973"},{"denom":"ASSET15","index":"0.000008964719539034"},{"denom":"ASSET16","index":"0.000006250183953344"},{"denom":"ASSET17","index":"0.000004438919645342"},{"denom":"ASSET18","index":"0.000002114400826704"},{"denom":"ASSET2","index":"0.000004095648229305"},{"denom":"ASSET3","index":"0.000001197908641659"},{"denom":"ASSET4","index":"0.000011275545275051"},{"denom":"ASSET5","index":"0.000000929713092403"},{"denom":"ASSET6","index":"0.000003784956906399"},{"denom":"ASSET7","index":"0.000005796423525818"},{"denom":"ASSET8","index":"0.000007563775534382"},{"denom":"ASSET9","index":"0.000003266980643136"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003299045378029"},{"denom":"ASSET1","index":"0.000027992490930804"},{"denom":"ASSET10","index":"0.000022352284005938"},{"denom":"ASSET11","index":"0.000027819914533732"},{"denom":"ASSET12","index":"0.000026530494002155"},{"denom":"ASSET13","index":"0.000008738242797579"},{"denom":"ASSET14","index":"0.000025532401567106"},{"denom":"ASSET15","index":"0.000020131602968729"},{"denom":"ASSET16","index":"0.000012417136212826"},{"denom":"ASSET17","index":"0.000009749421325842"},{"denom":"ASSET18","index":"0.000004027997856345"},{"denom":"ASSET2","index":"0.000008477931503293"},{"denom":"ASSET3","index":"0.000002354450357881"},{"denom":"ASSET4","index":"0.000022693933657862"},{"denom":"ASSET5","index":"0.000001834114741991"},{"denom":"ASSET6","index":"0.000007402245947993"},{"denom":"ASSET7","index":"0.000011628988518089"},{"denom":"ASSET8","index":"0.000015885667960333"},{"denom":"ASSET9","index":"0.000006742956926982"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001554670726054"},{"denom":"ASSET1","index":"0.000012963415617374"},{"denom":"ASSET10","index":"0.000009031685079156"},{"denom":"ASSET11","index":"0.000012540799003679"},{"denom":"ASSET12","index":"0.000011293255065955"},{"denom":"ASSET13","index":"0.000003886042255656"},{"denom":"ASSET14","index":"0.000011715237120170"},{"denom":"ASSET15","index":"0.000008376185136293"},{"denom":"ASSET16","index":"0.000005839850894644"},{"denom":"ASSET17","index":"0.000004147480761425"},{"denom":"ASSET18","index":"0.000001975383661309"},{"denom":"ASSET2","index":"0.000003826393664534"},{"denom":"ASSET3","index":"0.000001119362922759"},{"denom":"ASSET4","index":"0.000010534956487329"},{"denom":"ASSET5","index":"0.000000868711928150"},{"denom":"ASSET6","index":"0.000003536399982164"},{"denom":"ASSET7","index":"0.000005415965161990"},{"denom":"ASSET8","index":"0.000007067088929007"},{"denom":"ASSET9","index":"0.000003052231098907"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003157426180098"},{"denom":"ASSET1","index":"0.000026803913890418"},{"denom":"ASSET10","index":"0.000021467927303389"},{"denom":"ASSET11","index":"0.000026655124661377"},{"denom":"ASSET12","index":"0.000025453388278707"},{"denom":"ASSET13","index":"0.000008375182650914"},{"denom":"ASSET14","index":"0.000024453809207757"},{"denom":"ASSET15","index":"0.000019323681821282"},{"denom":"ASSET16","index":"0.000011885939188892"},{"denom":"ASSET17","index":"0.000009353763879690"},{"denom":"ASSET18","index":"0.000003851457527173"},{"denom":"ASSET2","index":"0.000008122633355733"},{"denom":"ASSET3","index":"0.000002252845423920"},{"denom":"ASSET4","index":"0.000021728796023940"},{"denom":"ASSET5","index":"0.000001755342604855"},{"denom":"ASSET6","index":"0.000007082922688985"},{"denom":"ASSET7","index":"0.000011133765978354"},{"denom":"ASSET8","index":"0.000015225414484063"},{"denom":"ASSET9","index":"0.000006459804222065"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001578706846766"},{"denom":"ASSET1","index":"0.000013164667632738"},{"denom":"ASSET10","index":"0.000009171819989970"},{"denom":"ASSET11","index":"0.000012734981690366"},{"denom":"ASSET12","index":"0.000011467468005207"},{"denom":"ASSET13","index":"0.000003946168668528"},{"denom":"ASSET14","index":"0.000011895957050803"},{"denom":"ASSET15","index":"0.000008505148486066"},{"denom":"ASSET16","index":"0.000005930623522158"},{"denom":"ASSET17","index":"0.000004211879752669"},{"denom":"ASSET18","index":"0.000002005998995588"},{"denom":"ASSET2","index":"0.000003886323829757"},{"denom":"ASSET3","index":"0.000001135855039864"},{"denom":"ASSET4","index":"0.000010697863378618"},{"denom":"ASSET5","index":"0.000000882112923477"},{"denom":"ASSET6","index":"0.000003590690326231"},{"denom":"ASSET7","index":"0.000005499740683011"},{"denom":"ASSET8","index":"0.000007176593065360"},{"denom":"ASSET9","index":"0.000003098765751537"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003185213515607"},{"denom":"ASSET1","index":"0.000027035699090666"},{"denom":"ASSET10","index":"0.000021635640181728"},{"denom":"ASSET11","index":"0.000026880669357351"},{"denom":"ASSET12","index":"0.000025658872180332"},{"denom":"ASSET13","index":"0.000008444958797633"},{"denom":"ASSET14","index":"0.000024662649108986"},{"denom":"ASSET15","index":"0.000019476753279332"},{"denom":"ASSET16","index":"0.000011989846651744"},{"denom":"ASSET17","index":"0.000009429633404312"},{"denom":"ASSET18","index":"0.000003886090392826"},{"denom":"ASSET2","index":"0.000008191890279929"},{"denom":"ASSET3","index":"0.000002271981699175"},{"denom":"ASSET4","index":"0.000021916623044014"},{"denom":"ASSET5","index":"0.000001770727550439"},{"denom":"ASSET6","index":"0.000007144791673859"},{"denom":"ASSET7","index":"0.000011230376410345"},{"denom":"ASSET8","index":"0.000015353061978158"},{"denom":"ASSET9","index":"0.000006513931773648"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001736464555496"},{"denom":"ASSET1","index":"0.000014486324003877"},{"denom":"ASSET10","index":"0.000010092542477093"},{"denom":"ASSET11","index":"0.000014014496766071"},{"denom":"ASSET12","index":"0.000012620063107870"},{"denom":"ASSET13","index":"0.000004342915393341"},{"denom":"ASSET14","index":"0.000013091890345676"},{"denom":"ASSET15","index":"0.000009359368553661"},{"denom":"ASSET16","index":"0.000006524897117620"},{"denom":"ASSET17","index":"0.000004634080157191"},{"denom":"ASSET18","index":"0.000002206537788701"},{"denom":"ASSET2","index":"0.000004276263218483"},{"denom":"ASSET3","index":"0.000001250605280877"},{"denom":"ASSET4","index":"0.000011772878885340"},{"denom":"ASSET5","index":"0.000000969964544635"},{"denom":"ASSET6","index":"0.000003951772367204"},{"denom":"ASSET7","index":"0.000006051315875212"},{"denom":"ASSET8","index":"0.000007896528716001"},{"denom":"ASSET9","index":"0.000003409784945337"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003356675502673"},{"denom":"ASSET1","index":"0.000028477076245214"},{"denom":"ASSET10","index":"0.000022663760086849"},{"denom":"ASSET11","index":"0.000028282539274294"},{"denom":"ASSET12","index":"0.000026934248109484"},{"denom":"ASSET13","index":"0.000008880550781135"},{"denom":"ASSET14","index":"0.000025969128454053"},{"denom":"ASSET15","index":"0.000020425731449718"},{"denom":"ASSET16","index":"0.000012636600959200"},{"denom":"ASSET17","index":"0.000009896936242996"},{"denom":"ASSET18","index":"0.000004102733083140"},{"denom":"ASSET2","index":"0.000008619316582261"},{"denom":"ASSET3","index":"0.000002396767404444"},{"denom":"ASSET4","index":"0.000023088672429632"},{"denom":"ASSET5","index":"0.000001866260713425"},{"denom":"ASSET6","index":"0.000007536521735823"},{"denom":"ASSET7","index":"0.000011831316132227"},{"denom":"ASSET8","index":"0.000016143846449802"},{"denom":"ASSET9","index":"0.000006854365607618"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001432199402946"},{"denom":"ASSET1","index":"0.000011943338809449"},{"denom":"ASSET10","index":"0.000008321234131428"},{"denom":"ASSET11","index":"0.000011554338026882"},{"denom":"ASSET12","index":"0.000010404248756685"},{"denom":"ASSET13","index":"0.000003580160245814"},{"denom":"ASSET14","index":"0.000010793249539252"},{"denom":"ASSET15","index":"0.000007717099003024"},{"denom":"ASSET16","index":"0.000005380388215223"},{"denom":"ASSET17","index":"0.000003821002469456"},{"denom":"ASSET18","index":"0.000001819847139312"},{"denom":"ASSET2","index":"0.000003525361874705"},{"denom":"ASSET3","index":"0.000001031021204577"},{"denom":"ASSET4","index":"0.000009706076917365"},{"denom":"ASSET5","index":"0.000000800326827437"},{"denom":"ASSET6","index":"0.000003258135250159"},{"denom":"ASSET7","index":"0.000004989357863356"},{"denom":"ASSET8","index":"0.000006510858315517"},{"denom":"ASSET9","index":"0.000002812306527182"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000002962853679956"},{"denom":"ASSET1","index":"0.000025162993314326"},{"denom":"ASSET10","index":"0.000020199688926412"},{"denom":"ASSET11","index":"0.000025035647772320"},{"denom":"ASSET12","index":"0.000023929456511577"},{"denom":"ASSET13","index":"0.000007867725037604"},{"denom":"ASSET14","index":"0.000022960507028012"},{"denom":"ASSET15","index":"0.000018173489333858"},{"denom":"ASSET16","index":"0.000011155286879957"},{"denom":"ASSET17","index":"0.000008793607250882"},{"denom":"ASSET18","index":"0.000003611579051495"},{"denom":"ASSET2","index":"0.000007628670547867"},{"denom":"ASSET3","index":"0.000002114031306235"},{"denom":"ASSET4","index":"0.000020398130246320"},{"denom":"ASSET5","index":"0.000001647096325587"},{"denom":"ASSET6","index":"0.000006645213242757"},{"denom":"ASSET7","index":"0.000010450616802650"},{"denom":"ASSET8","index":"0.000014303332598966"},{"denom":"ASSET9","index":"0.000006067112886031"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001597673370668"},{"denom":"ASSET1","index":"0.000013327099930964"},{"denom":"ASSET10","index":"0.000009285285696821"},{"denom":"ASSET11","index":"0.000012892979142852"},{"denom":"ASSET12","index":"0.000011609669101507"},{"denom":"ASSET13","index":"0.000003995544306884"},{"denom":"ASSET14","index":"0.000012043789889618"},{"denom":"ASSET15","index":"0.000008610289110917"},{"denom":"ASSET16","index":"0.000006002842621820"},{"denom":"ASSET17","index":"0.000004263637708946"},{"denom":"ASSET18","index":"0.000002030433278566"},{"denom":"ASSET2","index":"0.000003934304697275"},{"denom":"ASSET3","index":"0.000001149943780421"},{"denom":"ASSET4","index":"0.000010829884739162"},{"denom":"ASSET5","index":"0.000000892737420067"},{"denom":"ASSET6","index":"0.000003634911050302"},{"denom":"ASSET7","index":"0.000005567360953495"},{"denom":"ASSET8","index":"0.000007264378579749"},{"denom":"ASSET9","index":"0.000003138189772368"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003135234009226"},{"denom":"ASSET1","index":"0.000026602125077525"},{"denom":"ASSET10","index":"0.000021213712135644"},{"denom":"ASSET11","index":"0.000026430841190504"},{"denom":"ASSET12","index":"0.000025191219856579"},{"denom":"ASSET13","index":"0.000008300995957475"},{"denom":"ASSET14","index":"0.000024262534835813"},{"denom":"ASSET15","index":"0.000019110376679732"},{"denom":"ASSET16","index":"0.000011801461546978"},{"denom":"ASSET17","index":"0.000009257538829689"},{"denom":"ASSET18","index":"0.000003829421505073"},{"denom":"ASSET2","index":"0.000008055136326188"},{"denom":"ASSET3","index":"0.000002237228869924"},{"denom":"ASSET4","index":"0.000021566736915931"},{"denom":"ASSET5","index":"0.000001743257901616"},{"denom":"ASSET6","index":"0.000007036288319926"},{"denom":"ASSET7","index":"0.000011051703047857"},{"denom":"ASSET8","index":"0.000015089589803941"},{"denom":"ASSET9","index":"0.000006406386950018"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001689516061942"},{"denom":"ASSET1","index":"0.000014086551658080"},{"denom":"ASSET10","index":"0.000009813816295422"},{"denom":"ASSET11","index":"0.000013627312671286"},{"denom":"ASSET12","index":"0.000012271349136594"},{"denom":"ASSET13","index":"0.000004223185893030"},{"denom":"ASSET14","index":"0.000012729983861563"},{"denom":"ASSET15","index":"0.000009101391604066"},{"denom":"ASSET16","index":"0.000006345353421478"},{"denom":"ASSET17","index":"0.000004506584688828"},{"denom":"ASSET18","index":"0.000002146942263262"},{"denom":"ASSET2","index":"0.000004157925615959"},{"denom":"ASSET3","index":"0.000001216379053179"},{"denom":"ASSET4","index":"0.000011447740269489"},{"denom":"ASSET5","index":"0.000000943856970227"},{"denom":"ASSET6","index":"0.000003842500943451"},{"denom":"ASSET7","index":"0.000005884905911035"},{"denom":"ASSET8","index":"0.000007678959268655"},{"denom":"ASSET9","index":"0.000003316793155937"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003297864217859"},{"denom":"ASSET1","index":"0.000027973253972789"},{"denom":"ASSET10","index":"0.000022291630953866"},{"denom":"ASSET11","index":"0.000027789008146512"},{"denom":"ASSET12","index":"0.000026479178332828"},{"denom":"ASSET13","index":"0.000008727103479255"},{"denom":"ASSET14","index":"0.000025511286037616"},{"denom":"ASSET15","index":"0.000020085740117730"},{"denom":"ASSET16","index":"0.000012411485442612"},{"denom":"ASSET17","index":"0.000009730550155880"},{"denom":"ASSET18","index":"0.000004028926705548"},{"denom":"ASSET2","index":"0.000008468714781887"},{"denom":"ASSET3","index":"0.000002353891879987"},{"denom":"ASSET4","index":"0.000022679492169342"},{"denom":"ASSET5","index":"0.000001833514119464"},{"denom":"ASSET6","index":"0.000007400677249018"},{"denom":"ASSET7","index":"0.000011621769805761"},{"denom":"ASSET8","index":"0.000015864980999233"},{"denom":"ASSET9","index":"0.000006736116007098"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001411859688057"},{"denom":"ASSET1","index":"0.000011770485537623"},{"denom":"ASSET10","index":"0.000008200497469250"},{"denom":"ASSET11","index":"0.000011386615852852"},{"denom":"ASSET12","index":"0.000010253874969484"},{"denom":"ASSET13","index":"0.000003528347966974"},{"denom":"ASSET14","index":"0.000010637094027671"},{"denom":"ASSET15","index":"0.000007605174144562"},{"denom":"ASSET16","index":"0.000005302606662519"},{"denom":"ASSET17","index":"0.000003765826670265"},{"denom":"ASSET18","index":"0.000001793777493075"},{"denom":"ASSET2","index":"0.000003474345960472"},{"denom":"ASSET3","index":"0.000001016278724767"},{"denom":"ASSET4","index":"0.000009565512043233"},{"denom":"ASSET5","index":"0.000000788559420242"},{"denom":"ASSET6","index":"0.000003210842193807"},{"denom":"ASSET7","index":"0.000004917435724579"},{"denom":"ASSET8","index":"0.000006416479374940"},{"denom":"ASSET9","index":"0.000002771018622781"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000002930820438736"},{"denom":"ASSET1","index":"0.000024889799880283"},{"denom":"ASSET10","index":"0.000019988623694797"},{"denom":"ASSET11","index":"0.000024765615752571"},{"denom":"ASSET12","index":"0.000023676022623299"},{"denom":"ASSET13","index":"0.000007783195940338"},{"denom":"ASSET14","index":"0.000022712072914709"},{"denom":"ASSET15","index":"0.000017982209004670"},{"denom":"ASSET16","index":"0.000011033267632466"},{"denom":"ASSET17","index":"0.000008700651286884"},{"denom":"ASSET18","index":"0.000003571624768330"},{"denom":"ASSET2","index":"0.000007546215495169"},{"denom":"ASSET3","index":"0.000002090977414753"},{"denom":"ASSET4","index":"0.000020176663420937"},{"denom":"ASSET5","index":"0.000001628342560149"},{"denom":"ASSET6","index":"0.000006572371850885"},{"denom":"ASSET7","index":"0.000010337273058537"},{"denom":"ASSET8","index":"0.000014149515747938"},{"denom":"ASSET9","index":"0.000006000707920121"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001726304213109"},{"denom":"ASSET1","index":"0.000014431903221591"},{"denom":"ASSET10","index":"0.000010055058078201"},{"denom":"ASSET11","index":"0.000013959161452463"},{"denom":"ASSET12","index":"0.000012572806376704"},{"denom":"ASSET13","index":"0.000004323728090679"},{"denom":"ASSET14","index":"0.000013040236440562"},{"denom":"ASSET15","index":"0.000009322042750788"},{"denom":"ASSET16","index":"0.000006501527251832"},{"denom":"ASSET17","index":"0.000004615871880590"},{"denom":"ASSET18","index":"0.000002199045982237"},{"denom":"ASSET2","index":"0.000004259987627426"},{"denom":"ASSET3","index":"0.000001242939033438"},{"denom":"ASSET4","index":"0.000011728245238599"},{"denom":"ASSET5","index":"0.000000966730359341"},{"denom":"ASSET6","index":"0.000003935973605888"},{"denom":"ASSET7","index":"0.000006028785482704"},{"denom":"ASSET8","index":"0.000007866635506506"},{"denom":"ASSET9","index":"0.000003394179668236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003313075721980"},{"denom":"ASSET1","index":"0.000028138029356789"},{"denom":"ASSET10","index":"0.000022370607880245"},{"denom":"ASSET11","index":"0.000027937207217164"},{"denom":"ASSET12","index":"0.000026595598409551"},{"denom":"ASSET13","index":"0.000008769097729958"},{"denom":"ASSET14","index":"0.000025655242037122"},{"denom":"ASSET15","index":"0.000020162686714325"},{"denom":"ASSET16","index":"0.000012488922131836"},{"denom":"ASSET17","index":"0.000009772018779266"},{"denom":"ASSET18","index":"0.000004056016110298"},{"denom":"ASSET2","index":"0.000008514325121927"},{"denom":"ASSET3","index":"0.000002365037757716"},{"denom":"ASSET4","index":"0.000022813272666626"},{"denom":"ASSET5","index":"0.000001844445619129"},{"denom":"ASSET6","index":"0.000007446834645040"},{"denom":"ASSET7","index":"0.000011690909413493"},{"denom":"ASSET8","index":"0.000015945057917181"},{"denom":"ASSET9","index":"0.000006769080892636"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001630255611072"},{"denom":"ASSET1","index":"0.000013593541268721"},{"denom":"ASSET10","index":"0.000009470169531707"},{"denom":"ASSET11","index":"0.000013149994246609"},{"denom":"ASSET12","index":"0.000011841383661505"},{"denom":"ASSET13","index":"0.000004074904678306"},{"denom":"ASSET14","index":"0.000012284196334242"},{"denom":"ASSET15","index":"0.000008782818517308"},{"denom":"ASSET16","index":"0.000006123739432762"},{"denom":"ASSET17","index":"0.000004348816994942"},{"denom":"ASSET18","index":"0.000002071599585061"},{"denom":"ASSET2","index":"0.000004012484981486"},{"denom":"ASSET3","index":"0.000001173490300222"},{"denom":"ASSET4","index":"0.000011046817638451"},{"denom":"ASSET5","index":"0.000000910593224203"},{"denom":"ASSET6","index":"0.000003707729991128"},{"denom":"ASSET7","index":"0.000005678723711902"},{"denom":"ASSET8","index":"0.000007410319536635"},{"denom":"ASSET9","index":"0.000003200294573447"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003344718004914"},{"denom":"ASSET1","index":"0.000028399683918161"},{"denom":"ASSET10","index":"0.000022773943545696"},{"denom":"ASSET11","index":"0.000028249525692452"},{"denom":"ASSET12","index":"0.000026989510465266"},{"denom":"ASSET13","index":"0.000008877216029957"},{"denom":"ASSET14","index":"0.000025911788013611"},{"denom":"ASSET15","index":"0.000020494299775586"},{"denom":"ASSET16","index":"0.000012591463658113"},{"denom":"ASSET17","index":"0.000009918208342143"},{"denom":"ASSET18","index":"0.000004078542450859"},{"denom":"ASSET2","index":"0.000008608606683653"},{"denom":"ASSET3","index":"0.000002386103437058"},{"denom":"ASSET4","index":"0.000023022167148602"},{"denom":"ASSET5","index":"0.000001858883946943"},{"denom":"ASSET6","index":"0.000007501347044310"},{"denom":"ASSET7","index":"0.000011795380538461"},{"denom":"ASSET8","index":"0.000016137954986293"},{"denom":"ASSET9","index":"0.000006845854741756"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001401914217082"},{"denom":"ASSET1","index":"0.000011691084141249"},{"denom":"ASSET10","index":"0.000008144816837289"},{"denom":"ASSET11","index":"0.000011309282624399"},{"denom":"ASSET12","index":"0.000010184195671197"},{"denom":"ASSET13","index":"0.000003504785542706"},{"denom":"ASSET14","index":"0.000010565150621491"},{"denom":"ASSET15","index":"0.000007553913381055"},{"denom":"ASSET16","index":"0.000005266490546178"},{"denom":"ASSET17","index":"0.000003740131045332"},{"denom":"ASSET18","index":"0.000001781176034264"},{"denom":"ASSET2","index":"0.000003450605283109"},{"denom":"ASSET3","index":"0.000001009107335001"},{"denom":"ASSET4","index":"0.000009501016460336"},{"denom":"ASSET5","index":"0.000000783074064494"},{"denom":"ASSET6","index":"0.000003189016217240"},{"denom":"ASSET7","index":"0.000004883842462771"},{"denom":"ASSET8","index":"0.000006372953035143"},{"denom":"ASSET9","index":"0.000002752187874236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000002824624853437"},{"denom":"ASSET1","index":"0.000023976113690517"},{"denom":"ASSET10","index":"0.000019183481330878"},{"denom":"ASSET11","index":"0.000023837782846342"},{"denom":"ASSET12","index":"0.000022753084719682"},{"denom":"ASSET13","index":"0.000007489057952554"},{"denom":"ASSET14","index":"0.000021872315483076"},{"denom":"ASSET15","index":"0.000017271123733000"},{"denom":"ASSET16","index":"0.000010633084765839"},{"denom":"ASSET17","index":"0.000008361522972460"},{"denom":"ASSET18","index":"0.000003446219629870"},{"denom":"ASSET2","index":"0.000007263651822688"},{"denom":"ASSET3","index":"0.000002015414858276"},{"denom":"ASSET4","index":"0.000019437236646346"},{"denom":"ASSET5","index":"0.000001569802896992"},{"denom":"ASSET6","index":"0.000006336500403946"},{"denom":"ASSET7","index":"0.000009959182045961"},{"denom":"ASSET8","index":"0.000013614498977085"},{"denom":"ASSET9","index":"0.000005776799011181"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001454934724421"},{"denom":"ASSET1","index":"0.000012138554241533"},{"denom":"ASSET10","index":"0.000008457231031836"},{"denom":"ASSET11","index":"0.000011742676653726"},{"denom":"ASSET12","index":"0.000010575345305063"},{"denom":"ASSET13","index":"0.000003639028595615"},{"denom":"ASSET14","index":"0.000010969531108307"},{"denom":"ASSET15","index":"0.000007843113235366"},{"denom":"ASSET16","index":"0.000005467847708521"},{"denom":"ASSET17","index":"0.000003882645572727"},{"denom":"ASSET18","index":"0.000001849120527665"},{"denom":"ASSET2","index":"0.000003583199705027"},{"denom":"ASSET3","index":"0.000001047214644670"},{"denom":"ASSET4","index":"0.000009864795788485"},{"denom":"ASSET5","index":"0.000000813748374938"},{"denom":"ASSET6","index":"0.000003310822390339"},{"denom":"ASSET7","index":"0.000005070278336150"},{"denom":"ASSET8","index":"0.000006616569426988"},{"denom":"ASSET9","index":"0.000002857424127380"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003026822568793"},{"denom":"ASSET1","index":"0.000025710421285725"},{"denom":"ASSET10","index":"0.000020652297735472"},{"denom":"ASSET11","index":"0.000025583400849235"},{"denom":"ASSET12","index":"0.000024460820755928"},{"denom":"ASSET13","index":"0.000008041083722059"},{"denom":"ASSET14","index":"0.000023461074878675"},{"denom":"ASSET15","index":"0.000018578170233019"},{"denom":"ASSET16","index":"0.000011396689804799"},{"denom":"ASSET17","index":"0.000008988134494295"},{"denom":"ASSET18","index":"0.000003688816665807"},{"denom":"ASSET2","index":"0.000007796110853756"},{"denom":"ASSET3","index":"0.000002159003644915"},{"denom":"ASSET4","index":"0.000020841789260406"},{"denom":"ASSET5","index":"0.000001683251281734"},{"denom":"ASSET6","index":"0.000006788484398340"},{"denom":"ASSET7","index":"0.000010677121165375"},{"denom":"ASSET8","index":"0.000014616905179383"},{"denom":"ASSET9","index":"0.000006199084273401"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001547699786520"},{"denom":"ASSET1","index":"0.000012908880828127"},{"denom":"ASSET10","index":"0.000008993933542043"},{"denom":"ASSET11","index":"0.000012488059147042"},{"denom":"ASSET12","index":"0.000011245681057538"},{"denom":"ASSET13","index":"0.000003869751640144"},{"denom":"ASSET14","index":"0.000011665498390936"},{"denom":"ASSET15","index":"0.000008340103197445"},{"denom":"ASSET16","index":"0.000005815173110936"},{"denom":"ASSET17","index":"0.000004129877691221"},{"denom":"ASSET18","index":"0.000001966512772230"},{"denom":"ASSET2","index":"0.000003810495126579"},{"denom":"ASSET3","index":"0.000001114825933185"},{"denom":"ASSET4","index":"0.000010490411596498"},{"denom":"ASSET5","index":"0.000000864743358984"},{"denom":"ASSET6","index":"0.000003521242992563"},{"denom":"ASSET7","index":"0.000005392342734476"},{"denom":"ASSET8","index":"0.000007036459899001"},{"denom":"ASSET9","index":"0.000003039156102537"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003086703561215"},{"denom":"ASSET1","index":"0.000026199550261878"},{"denom":"ASSET10","index":"0.000020936384793003"},{"denom":"ASSET11","index":"0.000026042194398185"},{"denom":"ASSET12","index":"0.000024843424443974"},{"denom":"ASSET13","index":"0.000008180415813801"},{"denom":"ASSET14","index":"0.000023898307142718"},{"denom":"ASSET15","index":"0.000018852934413068"},{"denom":"ASSET16","index":"0.000011621232923996"},{"denom":"ASSET17","index":"0.000009129550402498"},{"denom":"ASSET18","index":"0.000003767892160935"},{"denom":"ASSET2","index":"0.000007936188126371"},{"denom":"ASSET3","index":"0.000002203575710986"},{"denom":"ASSET4","index":"0.000021240180347210"},{"denom":"ASSET5","index":"0.000001716192200569"},{"denom":"ASSET6","index":"0.000006926674957775"},{"denom":"ASSET7","index":"0.000010883333770048"},{"denom":"ASSET8","index":"0.000014871024805414"},{"denom":"ASSET9","index":"0.000006311583255107"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001511232509129"},{"denom":"ASSET1","index":"0.000012598757210652"},{"denom":"ASSET10","index":"0.000008777665278232"},{"denom":"ASSET11","index":"0.000012187849575766"},{"denom":"ASSET12","index":"0.000010975073643675"},{"denom":"ASSET13","index":"0.000003776959255615"},{"denom":"ASSET14","index":"0.000011385233267090"},{"denom":"ASSET15","index":"0.000008140359504707"},{"denom":"ASSET16","index":"0.000005675412369706"},{"denom":"ASSET17","index":"0.000004030784481533"},{"denom":"ASSET18","index":"0.000001920145446758"},{"denom":"ASSET2","index":"0.000003719113035170"},{"denom":"ASSET3","index":"0.000001087858016388"},{"denom":"ASSET4","index":"0.000010238531681628"},{"denom":"ASSET5","index":"0.000000844504951067"},{"denom":"ASSET6","index":"0.000003436614036185"},{"denom":"ASSET7","index":"0.000005263507386191"},{"denom":"ASSET8","index":"0.000006867991992072"},{"denom":"ASSET9","index":"0.000002966364157912"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003050294937135"},{"denom":"ASSET1","index":"0.000025887230915803"},{"denom":"ASSET10","index":"0.000020718160619670"},{"denom":"ASSET11","index":"0.000025739685005463"},{"denom":"ASSET12","index":"0.000024570727404900"},{"denom":"ASSET13","index":"0.000008086966483560"},{"denom":"ASSET14","index":"0.000023616194455668"},{"denom":"ASSET15","index":"0.000018651338246959"},{"denom":"ASSET16","index":"0.000011480437826441"},{"denom":"ASSET17","index":"0.000009029688158762"},{"denom":"ASSET18","index":"0.000003721440260869"},{"denom":"ASSET2","index":"0.000007844134626406"},{"denom":"ASSET3","index":"0.000002176540273945"},{"denom":"ASSET4","index":"0.000020986445628896"},{"denom":"ASSET5","index":"0.000001695800268231"},{"denom":"ASSET6","index":"0.000006841569437153"},{"denom":"ASSET7","index":"0.000010753447417762"},{"denom":"ASSET8","index":"0.000014701309289649"},{"denom":"ASSET9","index":"0.000006238283490477"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001535139489204"},{"denom":"ASSET1","index":"0.000012800845981431"},{"denom":"ASSET10","index":"0.000008918122145344"},{"denom":"ASSET11","index":"0.000012383184798277"},{"denom":"ASSET12","index":"0.000011151318949088"},{"denom":"ASSET13","index":"0.000003837555421617"},{"denom":"ASSET14","index":"0.000011567806926671"},{"denom":"ASSET15","index":"0.000008270512670342"},{"denom":"ASSET16","index":"0.000005766305379776"},{"denom":"ASSET17","index":"0.000004095074044376"},{"denom":"ASSET18","index":"0.000001950454261216"},{"denom":"ASSET2","index":"0.000003778308540299"},{"denom":"ASSET3","index":"0.000001105159647558"},{"denom":"ASSET4","index":"0.000010402813795010"},{"denom":"ASSET5","index":"0.000000857613272150"},{"denom":"ASSET6","index":"0.000003491459778273"},{"denom":"ASSET7","index":"0.000005347470991052"},{"denom":"ASSET8","index":"0.000006978226734264"},{"denom":"ASSET9","index":"0.000003013965111016"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000002944371933765"},{"denom":"ASSET1","index":"0.000024968433937291"},{"denom":"ASSET10","index":"0.000019851368221906"},{"denom":"ASSET11","index":"0.000024791952485266"},{"denom":"ASSET12","index":"0.000023600048189968"},{"denom":"ASSET13","index":"0.000007784111470281"},{"denom":"ASSET14","index":"0.000022766914870589"},{"denom":"ASSET15","index":"0.000017894900322998"},{"denom":"ASSET16","index":"0.000011081662183182"},{"denom":"ASSET17","index":"0.000008672317440622"},{"denom":"ASSET18","index":"0.000003599691097086"},{"denom":"ASSET2","index":"0.000007555380586873"},{"denom":"ASSET3","index":"0.000002101847815188"},{"denom":"ASSET4","index":"0.000020244169178497"},{"denom":"ASSET5","index":"0.000001637098640985"},{"denom":"ASSET6","index":"0.000006609166185649"},{"denom":"ASSET7","index":"0.000010374399402552"},{"denom":"ASSET8","index":"0.000014150620453773"},{"denom":"ASSET9","index":"0.000006009906313007"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001449310882227"},{"denom":"ASSET1","index":"0.000012082282763787"},{"denom":"ASSET10","index":"0.000008417588941675"},{"denom":"ASSET11","index":"0.000011688148164511"},{"denom":"ASSET12","index":"0.000010525234539176"},{"denom":"ASSET13","index":"0.000003621923721366"},{"denom":"ASSET14","index":"0.000010918286351091"},{"denom":"ASSET15","index":"0.000007806355476589"},{"denom":"ASSET16","index":"0.000005442630668295"},{"denom":"ASSET17","index":"0.000003865550877512"},{"denom":"ASSET18","index":"0.000001841279906781"},{"denom":"ASSET2","index":"0.000003566701565973"},{"denom":"ASSET3","index":"0.000001043265621984"},{"denom":"ASSET4","index":"0.000009818715786353"},{"denom":"ASSET5","index":"0.000000809924945764"},{"denom":"ASSET6","index":"0.000003295463332131"},{"denom":"ASSET7","index":"0.000005047413281659"},{"denom":"ASSET8","index":"0.000006586595514820"},{"denom":"ASSET9","index":"0.000002844482396421"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000002938303361264"},{"denom":"ASSET1","index":"0.000024939884544734"},{"denom":"ASSET10","index":"0.000019970621943114"},{"denom":"ASSET11","index":"0.000024800280810198"},{"denom":"ASSET12","index":"0.000023679745396670"},{"denom":"ASSET13","index":"0.000007792253675830"},{"denom":"ASSET14","index":"0.000022752532795075"},{"denom":"ASSET15","index":"0.000017976341528508"},{"denom":"ASSET16","index":"0.000011059313296089"},{"denom":"ASSET17","index":"0.000008702160495382"},{"denom":"ASSET18","index":"0.000003584018468858"},{"denom":"ASSET2","index":"0.000007557839698908"},{"denom":"ASSET3","index":"0.000002096442663552"},{"denom":"ASSET4","index":"0.000020217858094708"},{"denom":"ASSET5","index":"0.000001633684136995"},{"denom":"ASSET6","index":"0.000006589976909255"},{"denom":"ASSET7","index":"0.000010359339015905"},{"denom":"ASSET8","index":"0.000014165755580726"},{"denom":"ASSET9","index":"0.000006010291774725"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001731982701050"},{"denom":"ASSET1","index":"0.000014440617081118"},{"denom":"ASSET10","index":"0.000010060714066040"},{"denom":"ASSET11","index":"0.000013969585405988"},{"denom":"ASSET12","index":"0.000012579542501729"},{"denom":"ASSET13","index":"0.000004329188348588"},{"denom":"ASSET14","index":"0.000013049805772821"},{"denom":"ASSET15","index":"0.000009329961826155"},{"denom":"ASSET16","index":"0.000006505308583448"},{"denom":"ASSET17","index":"0.000004619645074851"},{"denom":"ASSET18","index":"0.000002200709164068"},{"denom":"ASSET2","index":"0.000004262337197306"},{"denom":"ASSET3","index":"0.000001247119753241"},{"denom":"ASSET4","index":"0.000011735066464260"},{"denom":"ASSET5","index":"0.000000967420683506"},{"denom":"ASSET6","index":"0.000003938839097420"},{"denom":"ASSET7","index":"0.000006032740100243"},{"denom":"ASSET8","index":"0.000007872299366576"},{"denom":"ASSET9","index":"0.000003400187866969"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003329715418659"},{"denom":"ASSET1","index":"0.000028238028843607"},{"denom":"ASSET10","index":"0.000022458342297172"},{"denom":"ASSET11","index":"0.000028040237741643"},{"denom":"ASSET12","index":"0.000026695793846360"},{"denom":"ASSET13","index":"0.000008804253880653"},{"denom":"ASSET14","index":"0.000025748953032298"},{"denom":"ASSET15","index":"0.000020243324641083"},{"denom":"ASSET16","index":"0.000012532507824147"},{"denom":"ASSET17","index":"0.000009809802042254"},{"denom":"ASSET18","index":"0.000004070975493464"},{"denom":"ASSET2","index":"0.000008545109234155"},{"denom":"ASSET3","index":"0.000002377197518329"},{"denom":"ASSET4","index":"0.000022894451839245"},{"denom":"ASSET5","index":"0.000001851122407848"},{"denom":"ASSET6","index":"0.000007473999475476"},{"denom":"ASSET7","index":"0.000011732969702935"},{"denom":"ASSET8","index":"0.000016005536556726"},{"denom":"ASSET9","index":"0.000006797137295338"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001649988907243"},{"denom":"ASSET1","index":"0.000013756519537767"},{"denom":"ASSET10","index":"0.000009584361794534"},{"denom":"ASSET11","index":"0.000013307506163009"},{"denom":"ASSET12","index":"0.000011983307415229"},{"denom":"ASSET13","index":"0.000004124070634826"},{"denom":"ASSET14","index":"0.000012431118612277"},{"denom":"ASSET15","index":"0.000008888300900330"},{"denom":"ASSET16","index":"0.000006196625007203"},{"denom":"ASSET17","index":"0.000004401172597026"},{"denom":"ASSET18","index":"0.000002096597926581"},{"denom":"ASSET2","index":"0.000004060355216185"},{"denom":"ASSET3","index":"0.000001187751577673"},{"denom":"ASSET4","index":"0.000011179050527108"},{"denom":"ASSET5","index":"0.000000922070303720"},{"denom":"ASSET6","index":"0.000003752597722375"},{"denom":"ASSET7","index":"0.000005747010543590"},{"denom":"ASSET8","index":"0.000007499184556200"},{"denom":"ASSET9","index":"0.000003238666751267"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003269082759145"},{"denom":"ASSET1","index":"0.000027736662456421"},{"denom":"ASSET10","index":"0.000022145815740722"},{"denom":"ASSET11","index":"0.000027564157079872"},{"denom":"ASSET12","index":"0.000026286254396013"},{"denom":"ASSET13","index":"0.000008658548128401"},{"denom":"ASSET14","index":"0.000025298253418871"},{"denom":"ASSET15","index":"0.000019946084058089"},{"denom":"ASSET16","index":"0.000012303266096103"},{"denom":"ASSET17","index":"0.000009659898104260"},{"denom":"ASSET18","index":"0.000003991565584036"},{"denom":"ASSET2","index":"0.000008399501371576"},{"denom":"ASSET3","index":"0.000002333103515211"},{"denom":"ASSET4","index":"0.000022486071398850"},{"denom":"ASSET5","index":"0.000001817550334619"},{"denom":"ASSET6","index":"0.000007334517845971"},{"denom":"ASSET7","index":"0.000011522603065826"},{"denom":"ASSET8","index":"0.000015739883934035"},{"denom":"ASSET9","index":"0.000006680430297789"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001707974867576"},{"denom":"ASSET1","index":"0.000014238090744503"},{"denom":"ASSET10","index":"0.000009920037235236"},{"denom":"ASSET11","index":"0.000013773690453356"},{"denom":"ASSET12","index":"0.000012403461252069"},{"denom":"ASSET13","index":"0.000004268385028930"},{"denom":"ASSET14","index":"0.000012866619831208"},{"denom":"ASSET15","index":"0.000009199844270355"},{"denom":"ASSET16","index":"0.000006414063379473"},{"denom":"ASSET17","index":"0.000004555220502875"},{"denom":"ASSET18","index":"0.000002169891734707"},{"denom":"ASSET2","index":"0.000004203195148489"},{"denom":"ASSET3","index":"0.000001229294888332"},{"denom":"ASSET4","index":"0.000011570893350426"},{"denom":"ASSET5","index":"0.000000954255678468"},{"denom":"ASSET6","index":"0.000003884075162326"},{"denom":"ASSET7","index":"0.000005948421376317"},{"denom":"ASSET8","index":"0.000007761941764609"},{"denom":"ASSET9","index":"0.000003352622422724"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003075387603983"},{"denom":"ASSET1","index":"0.000026047450678709"},{"denom":"ASSET10","index":"0.000020531243448578"},{"denom":"ASSET11","index":"0.000025816927992783"},{"denom":"ASSET12","index":"0.000024485469945303"},{"denom":"ASSET13","index":"0.000008098391373250"},{"denom":"ASSET14","index":"0.000023735883509134"},{"denom":"ASSET15","index":"0.000018540774078871"},{"denom":"ASSET16","index":"0.000011572711306393"},{"denom":"ASSET17","index":"0.000008997644319689"},{"denom":"ASSET18","index":"0.000003770348288081"},{"denom":"ASSET2","index":"0.000007868945206789"},{"denom":"ASSET3","index":"0.000002196489262864"},{"denom":"ASSET4","index":"0.000021122354693053"},{"denom":"ASSET5","index":"0.000001710501624761"},{"denom":"ASSET6","index":"0.000006909892735753"},{"denom":"ASSET7","index":"0.000010827333344051"},{"denom":"ASSET8","index":"0.000014723239896475"},{"denom":"ASSET9","index":"0.000006260042064096"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001779156074987"},{"denom":"ASSET1","index":"0.000014834764457923"},{"denom":"ASSET10","index":"0.000010335215703318"},{"denom":"ASSET11","index":"0.000014351450406057"},{"denom":"ASSET12","index":"0.000012923397473821"},{"denom":"ASSET13","index":"0.000004447014618532"},{"denom":"ASSET14","index":"0.000013405835956753"},{"denom":"ASSET15","index":"0.000009584853126417"},{"denom":"ASSET16","index":"0.000006682342108415"},{"denom":"ASSET17","index":"0.000004745583625211"},{"denom":"ASSET18","index":"0.000002260718988984"},{"denom":"ASSET2","index":"0.000004378720241638"},{"denom":"ASSET3","index":"0.000001280957351233"},{"denom":"ASSET4","index":"0.000012055708659691"},{"denom":"ASSET5","index":"0.000000993770740704"},{"denom":"ASSET6","index":"0.000004046879615447"},{"denom":"ASSET7","index":"0.000006197276918679"},{"denom":"ASSET8","index":"0.000008086754679418"},{"denom":"ASSET9","index":"0.000003492644479883"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003478645419875"},{"denom":"ASSET1","index":"0.000029510728520321"},{"denom":"ASSET10","index":"0.000023521700007579"},{"denom":"ASSET11","index":"0.000029317721838376"},{"denom":"ASSET12","index":"0.000027938200533330"},{"denom":"ASSET13","index":"0.000009206643656085"},{"denom":"ASSET14","index":"0.000026913511393693"},{"denom":"ASSET15","index":"0.000021192735957156"},{"denom":"ASSET16","index":"0.000013092928863665"},{"denom":"ASSET17","index":"0.000010265835619821"},{"denom":"ASSET18","index":"0.000004249633310572"},{"denom":"ASSET2","index":"0.000008933634051769"},{"denom":"ASSET3","index":"0.000002482776919113"},{"denom":"ASSET4","index":"0.000023925662277258"},{"denom":"ASSET5","index":"0.000001933519521756"},{"denom":"ASSET6","index":"0.000007806757132876"},{"denom":"ASSET7","index":"0.000012260200744601"},{"denom":"ASSET8","index":"0.000016737737824425"},{"denom":"ASSET9","index":"0.000007106044722519"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001752700098923"},{"denom":"ASSET1","index":"0.000014612940709519"},{"denom":"ASSET10","index":"0.000010180696541309"},{"denom":"ASSET11","index":"0.000014136053678762"},{"denom":"ASSET12","index":"0.000012730078503378"},{"denom":"ASSET13","index":"0.000004380628160175"},{"denom":"ASSET14","index":"0.000013205843447004"},{"denom":"ASSET15","index":"0.000009441241121853"},{"denom":"ASSET16","index":"0.000006583285198706"},{"denom":"ASSET17","index":"0.000004674614988548"},{"denom":"ASSET18","index":"0.000002226220868286"},{"denom":"ASSET2","index":"0.000004313302932304"},{"denom":"ASSET3","index":"0.000001261225935460"},{"denom":"ASSET4","index":"0.000011875048109410"},{"denom":"ASSET5","index":"0.000000979582065531"},{"denom":"ASSET6","index":"0.000003985653489996"},{"denom":"ASSET7","index":"0.000006105276080818"},{"denom":"ASSET8","index":"0.000007965696544335"},{"denom":"ASSET9","index":"0.000003440319144236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003327512121722"},{"denom":"ASSET1","index":"0.000028211822531533"},{"denom":"ASSET10","index":"0.000022399629444355"},{"denom":"ASSET11","index":"0.000028004032167971"},{"denom":"ASSET12","index":"0.000026643127370344"},{"denom":"ASSET13","index":"0.000008791339050068"},{"denom":"ASSET14","index":"0.000025722152469956"},{"denom":"ASSET15","index":"0.000020197596080044"},{"denom":"ASSET16","index":"0.000012523737733641"},{"denom":"ASSET17","index":"0.000009790102863953"},{"denom":"ASSET18","index":"0.000004069245825383"},{"denom":"ASSET2","index":"0.000008534453115749"},{"denom":"ASSET3","index":"0.000002375171252372"},{"denom":"ASSET4","index":"0.000022873545881432"},{"denom":"ASSET5","index":"0.000001850500835715"},{"denom":"ASSET6","index":"0.000007470212303630"},{"denom":"ASSET7","index":"0.000011723166108277"},{"denom":"ASSET8","index":"0.000015981595788329"},{"denom":"ASSET9","index":"0.000006788341225254"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001434713876400"},{"denom":"ASSET1","index":"0.000011974044460331"},{"denom":"ASSET10","index":"0.000008340728508476"},{"denom":"ASSET11","index":"0.000011582406348125"},{"denom":"ASSET12","index":"0.000010430757641934"},{"denom":"ASSET13","index":"0.000003588723493535"},{"denom":"ASSET14","index":"0.000010820456951604"},{"denom":"ASSET15","index":"0.000007735822117345"},{"denom":"ASSET16","index":"0.000005393748654249"},{"denom":"ASSET17","index":"0.000003829135007959"},{"denom":"ASSET18","index":"0.000001824413186071"},{"denom":"ASSET2","index":"0.000003534437022536"},{"denom":"ASSET3","index":"0.000001033381751515"},{"denom":"ASSET4","index":"0.000009730849926555"},{"denom":"ASSET5","index":"0.000000802664249770"},{"denom":"ASSET6","index":"0.000003264943470077"},{"denom":"ASSET7","index":"0.000005002110542043"},{"denom":"ASSET8","index":"0.000006526009335083"},{"denom":"ASSET9","index":"0.000002819018886872"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000002895048613815"},{"denom":"ASSET1","index":"0.000024589366099895"},{"denom":"ASSET10","index":"0.000019676065498265"},{"denom":"ASSET11","index":"0.000024447379266412"},{"denom":"ASSET12","index":"0.000023337478265694"},{"denom":"ASSET13","index":"0.000007679998629802"},{"denom":"ASSET14","index":"0.000022431328797509"},{"denom":"ASSET15","index":"0.000017714358679290"},{"denom":"ASSET16","index":"0.000010904445776568"},{"denom":"ASSET17","index":"0.000008574179211920"},{"denom":"ASSET18","index":"0.000003534399202209"},{"denom":"ASSET2","index":"0.000007450371795821"},{"denom":"ASSET3","index":"0.000002066219984895"},{"denom":"ASSET4","index":"0.000019933989143940"},{"denom":"ASSET5","index":"0.000001610899827710"},{"denom":"ASSET6","index":"0.000006497050827728"},{"denom":"ASSET7","index":"0.000010213894093182"},{"denom":"ASSET8","index":"0.000013962110633776"},{"denom":"ASSET9","index":"0.000005925048173997"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001401536005232"},{"denom":"ASSET1","index":"0.000011690786017211"},{"denom":"ASSET10","index":"0.000008143726832164"},{"denom":"ASSET11","index":"0.000011307987636928"},{"denom":"ASSET12","index":"0.000010184289165772"},{"denom":"ASSET13","index":"0.000003503840013080"},{"denom":"ASSET14","index":"0.000010564000462344"},{"denom":"ASSET15","index":"0.000007554093843178"},{"denom":"ASSET16","index":"0.000005266564812612"},{"denom":"ASSET17","index":"0.000003738458375190"},{"denom":"ASSET18","index":"0.000001781247301804"},{"denom":"ASSET2","index":"0.000003448272506265"},{"denom":"ASSET3","index":"0.000001009476373813"},{"denom":"ASSET4","index":"0.000009498956581716"},{"denom":"ASSET5","index":"0.000000781032179127"},{"denom":"ASSET6","index":"0.000003188957474460"},{"denom":"ASSET7","index":"0.000004883766432329"},{"denom":"ASSET8","index":"0.000006371740781496"},{"denom":"ASSET9","index":"0.000002750591587361"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003071913026336"},{"denom":"ASSET1","index":"0.000026115211920195"},{"denom":"ASSET10","index":"0.000021104918039272"},{"denom":"ASSET11","index":"0.000026018207650283"},{"denom":"ASSET12","index":"0.000024942011742431"},{"denom":"ASSET13","index":"0.000008182453133262"},{"denom":"ASSET14","index":"0.000023839798810024"},{"denom":"ASSET15","index":"0.000018963275072170"},{"denom":"ASSET16","index":"0.000011567273660047"},{"denom":"ASSET17","index":"0.000009164652819502"},{"denom":"ASSET18","index":"0.000003735860972186"},{"denom":"ASSET2","index":"0.000007925194415041"},{"denom":"ASSET3","index":"0.000002190810612048"},{"denom":"ASSET4","index":"0.000021165118890878"},{"denom":"ASSET5","index":"0.000001704606606646"},{"denom":"ASSET6","index":"0.000006884812645629"},{"denom":"ASSET7","index":"0.000010842612570084"},{"denom":"ASSET8","index":"0.000014874699612932"},{"denom":"ASSET9","index":"0.000006301602876980"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001534549585700"},{"denom":"ASSET1","index":"0.000012795681230217"},{"denom":"ASSET10","index":"0.000008914897664776"},{"denom":"ASSET11","index":"0.000012378406858633"},{"denom":"ASSET12","index":"0.000011146809898878"},{"denom":"ASSET13","index":"0.000003835934265229"},{"denom":"ASSET14","index":"0.000011563204872419"},{"denom":"ASSET15","index":"0.000008267660704848"},{"denom":"ASSET16","index":"0.000005764014475342"},{"denom":"ASSET17","index":"0.000004093597891939"},{"denom":"ASSET18","index":"0.000001950065161198"},{"denom":"ASSET2","index":"0.000003777014596322"},{"denom":"ASSET3","index":"0.000001104963641508"},{"denom":"ASSET4","index":"0.000010398442163960"},{"denom":"ASSET5","index":"0.000000857413092297"},{"denom":"ASSET6","index":"0.000003490330834180"},{"denom":"ASSET7","index":"0.000005345421006692"},{"denom":"ASSET8","index":"0.000006975385280099"},{"denom":"ASSET9","index":"0.000003012817696624"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003034954909236"},{"denom":"ASSET1","index":"0.000025752158165977"},{"denom":"ASSET10","index":"0.000020556858138008"},{"denom":"ASSET11","index":"0.000025591676311293"},{"denom":"ASSET12","index":"0.000024402528250789"},{"denom":"ASSET13","index":"0.000008038375291107"},{"denom":"ASSET14","index":"0.000023488313497799"},{"denom":"ASSET15","index":"0.000018516037809802"},{"denom":"ASSET16","index":"0.000011423945454084"},{"denom":"ASSET17","index":"0.000008967524527402"},{"denom":"ASSET18","index":"0.000003706330058793"},{"denom":"ASSET2","index":"0.000007798931182527"},{"denom":"ASSET3","index":"0.000002166419358500"},{"denom":"ASSET4","index":"0.000020877722621984"},{"denom":"ASSET5","index":"0.000001687498984799"},{"denom":"ASSET6","index":"0.000006810207932767"},{"denom":"ASSET7","index":"0.000010698180555138"},{"denom":"ASSET8","index":"0.000014612921845389"},{"denom":"ASSET9","index":"0.000006203015740356"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001658482037183"},{"denom":"ASSET1","index":"0.000013862588923046"},{"denom":"ASSET10","index":"0.000009655943522610"},{"denom":"ASSET11","index":"0.000013408077810815"},{"denom":"ASSET12","index":"0.000012073555821711"},{"denom":"ASSET13","index":"0.000004153457929856"},{"denom":"ASSET14","index":"0.000012528066933942"},{"denom":"ASSET15","index":"0.000008954835955871"},{"denom":"ASSET16","index":"0.000006242274956279"},{"denom":"ASSET17","index":"0.000004433900956551"},{"denom":"ASSET18","index":"0.000002112993149414"},{"denom":"ASSET2","index":"0.000004090600010079"},{"denom":"ASSET3","index":"0.000001194300475756"},{"denom":"ASSET4","index":"0.000011266073313811"},{"denom":"ASSET5","index":"0.000000928363122855"},{"denom":"ASSET6","index":"0.000003781145635794"},{"denom":"ASSET7","index":"0.000005787763844048"},{"denom":"ASSET8","index":"0.000007557456046990"},{"denom":"ASSET9","index":"0.000003263776603787"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003188277912377"},{"denom":"ASSET1","index":"0.000027072180177666"},{"denom":"ASSET10","index":"0.000021525590492702"},{"denom":"ASSET11","index":"0.000026879695640981"},{"denom":"ASSET12","index":"0.000025588321740665"},{"denom":"ASSET13","index":"0.000008437670891103"},{"denom":"ASSET14","index":"0.000024686413843557"},{"denom":"ASSET15","index":"0.000019403734038796"},{"denom":"ASSET16","index":"0.000012012351193227"},{"denom":"ASSET17","index":"0.000009402991763462"},{"denom":"ASSET18","index":"0.000003903246578743"},{"denom":"ASSET2","index":"0.000008191237466303"},{"denom":"ASSET3","index":"0.000002276140738265"},{"denom":"ASSET4","index":"0.000021950324608304"},{"denom":"ASSET5","index":"0.000001774065663090"},{"denom":"ASSET6","index":"0.000007165524818145"},{"denom":"ASSET7","index":"0.000011244820309610"},{"denom":"ASSET8","index":"0.000015343724796373"},{"denom":"ASSET9","index":"0.000006516357987660"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001453411320498"},{"denom":"ASSET1","index":"0.000012118137400313"},{"denom":"ASSET10","index":"0.000008442891188019"},{"denom":"ASSET11","index":"0.000011723343510399"},{"denom":"ASSET12","index":"0.000010556870017106"},{"denom":"ASSET13","index":"0.000003632917795231"},{"denom":"ASSET14","index":"0.000010951256903010"},{"denom":"ASSET15","index":"0.000007829943148627"},{"denom":"ASSET16","index":"0.000005459144789091"},{"denom":"ASSET17","index":"0.000003877120201363"},{"denom":"ASSET18","index":"0.000001846984198382"},{"denom":"ASSET2","index":"0.000003577158245830"},{"denom":"ASSET3","index":"0.000001046407310278"},{"denom":"ASSET4","index":"0.000009848276035312"},{"denom":"ASSET5","index":"0.000000811973000390"},{"denom":"ASSET6","index":"0.000003305686571013"},{"denom":"ASSET7","index":"0.000005062722883136"},{"denom":"ASSET8","index":"0.000006606082089893"},{"denom":"ASSET9","index":"0.000002853098111648"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000002979919393708"},{"denom":"ASSET1","index":"0.000025298333716476"},{"denom":"ASSET10","index":"0.000020286143685892"},{"denom":"ASSET11","index":"0.000025164674259360"},{"denom":"ASSET12","index":"0.000024041723171534"},{"denom":"ASSET13","index":"0.000007907785176595"},{"denom":"ASSET14","index":"0.000023082402053339"},{"denom":"ASSET15","index":"0.000018255332392862"},{"denom":"ASSET16","index":"0.000011216675450010"},{"denom":"ASSET17","index":"0.000008835128154455"},{"denom":"ASSET18","index":"0.000003633337151635"},{"denom":"ASSET2","index":"0.000007668586747858"},{"denom":"ASSET3","index":"0.000002126085354033"},{"denom":"ASSET4","index":"0.000020508686269066"},{"denom":"ASSET5","index":"0.000001656307666438"},{"denom":"ASSET6","index":"0.000006683025235204"},{"denom":"ASSET7","index":"0.000010507859389263"},{"denom":"ASSET8","index":"0.000014375637436113"},{"denom":"ASSET9","index":"0.000006098257618497"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001779729226299"},{"denom":"ASSET1","index":"0.000014840802182142"},{"denom":"ASSET10","index":"0.000010337989986643"},{"denom":"ASSET11","index":"0.000014356968690293"},{"denom":"ASSET12","index":"0.000012927350131463"},{"denom":"ASSET13","index":"0.000004449323065747"},{"denom":"ASSET14","index":"0.000013411183623312"},{"denom":"ASSET15","index":"0.000009589142170113"},{"denom":"ASSET16","index":"0.000006683709894939"},{"denom":"ASSET17","index":"0.000004745944603463"},{"denom":"ASSET18","index":"0.000002261131394068"},{"denom":"ASSET2","index":"0.000004378814667437"},{"denom":"ASSET3","index":"0.000001281307789972"},{"denom":"ASSET4","index":"0.000012059367435030"},{"denom":"ASSET5","index":"0.000000994411548574"},{"denom":"ASSET6","index":"0.000004048154592606"},{"denom":"ASSET7","index":"0.000006199876403090"},{"denom":"ASSET8","index":"0.000008089015212973"},{"denom":"ASSET9","index":"0.000003493812702447"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003433377044021"},{"denom":"ASSET1","index":"0.000029119719093870"},{"denom":"ASSET10","index":"0.000023168779363922"},{"denom":"ASSET11","index":"0.000028918871222836"},{"denom":"ASSET12","index":"0.000027536680421684"},{"denom":"ASSET13","index":"0.000009079853140421"},{"denom":"ASSET14","index":"0.000026553415276013"},{"denom":"ASSET15","index":"0.000020883272198610"},{"denom":"ASSET16","index":"0.000012920460029656"},{"denom":"ASSET17","index":"0.000010116347697920"},{"denom":"ASSET18","index":"0.000004196183907349"},{"denom":"ASSET2","index":"0.000008810148159861"},{"denom":"ASSET3","index":"0.000002451192479374"},{"denom":"ASSET4","index":"0.000023608026429735"},{"denom":"ASSET5","index":"0.000001908186346512"},{"denom":"ASSET6","index":"0.000007706415634871"},{"denom":"ASSET7","index":"0.000012098308533034"},{"denom":"ASSET8","index":"0.000016505861275643"},{"denom":"ASSET9","index":"0.000007009790471677"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001595670533734"},{"denom":"ASSET1","index":"0.000013304245337308"},{"denom":"ASSET10","index":"0.000009268754359880"},{"denom":"ASSET11","index":"0.000012870227612725"},{"denom":"ASSET12","index":"0.000011589729681675"},{"denom":"ASSET13","index":"0.000003988302473145"},{"denom":"ASSET14","index":"0.000012022582258004"},{"denom":"ASSET15","index":"0.000008595881243245"},{"denom":"ASSET16","index":"0.000005992940044003"},{"denom":"ASSET17","index":"0.000004256286571545"},{"denom":"ASSET18","index":"0.000002027357961809"},{"denom":"ASSET2","index":"0.000003927132189815"},{"denom":"ASSET3","index":"0.000001148836178358"},{"denom":"ASSET4","index":"0.000010811993222188"},{"denom":"ASSET5","index":"0.000000891338414244"},{"denom":"ASSET6","index":"0.000003628854236813"},{"denom":"ASSET7","index":"0.000005557757171166"},{"denom":"ASSET8","index":"0.000007252465306483"},{"denom":"ASSET9","index":"0.000003132501080646"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003118409098775"},{"denom":"ASSET1","index":"0.000026454243753489"},{"denom":"ASSET10","index":"0.000021084585905412"},{"denom":"ASSET11","index":"0.000026280950742513"},{"denom":"ASSET12","index":"0.000025043390497745"},{"denom":"ASSET13","index":"0.000008253298424938"},{"denom":"ASSET14","index":"0.000024125697910719"},{"denom":"ASSET15","index":"0.000018997425080839"},{"denom":"ASSET16","index":"0.000011737294217995"},{"denom":"ASSET17","index":"0.000009202973625129"},{"denom":"ASSET18","index":"0.000003809493270778"},{"denom":"ASSET2","index":"0.000008008868325931"},{"denom":"ASSET3","index":"0.000002225819587877"},{"denom":"ASSET4","index":"0.000021447702379813"},{"denom":"ASSET5","index":"0.000001733713847172"},{"denom":"ASSET6","index":"0.000006998355968525"},{"denom":"ASSET7","index":"0.000010990481127196"},{"denom":"ASSET8","index":"0.000015003824321723"},{"denom":"ASSET9","index":"0.000006370091157596"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001536288093705"},{"denom":"ASSET1","index":"0.000012808796131863"},{"denom":"ASSET10","index":"0.000008924322337818"},{"denom":"ASSET11","index":"0.000012391382492026"},{"denom":"ASSET12","index":"0.000011158327625467"},{"denom":"ASSET13","index":"0.000003840018305497"},{"denom":"ASSET14","index":"0.000011575273312793"},{"denom":"ASSET15","index":"0.000008276208110044"},{"denom":"ASSET16","index":"0.000005770322413488"},{"denom":"ASSET17","index":"0.000004097860139074"},{"denom":"ASSET18","index":"0.000001951829923499"},{"denom":"ASSET2","index":"0.000003781056289108"},{"denom":"ASSET3","index":"0.000001105771783560"},{"denom":"ASSET4","index":"0.000010409603607822"},{"denom":"ASSET5","index":"0.000000858224905226"},{"denom":"ASSET6","index":"0.000003494201399847"},{"denom":"ASSET7","index":"0.000005351036963607"},{"denom":"ASSET8","index":"0.000006982787369562"},{"denom":"ASSET9","index":"0.000003015953933577"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003103831608428"},{"denom":"ASSET1","index":"0.000026343132935309"},{"denom":"ASSET10","index":"0.000021085436521682"},{"denom":"ASSET11","index":"0.000026194005406126"},{"denom":"ASSET12","index":"0.000025005394550642"},{"denom":"ASSET13","index":"0.000008229918727938"},{"denom":"ASSET14","index":"0.000024032248358707"},{"denom":"ASSET15","index":"0.000018981699828973"},{"denom":"ASSET16","index":"0.000011682673521897"},{"denom":"ASSET17","index":"0.000009189132473525"},{"denom":"ASSET18","index":"0.000003786361913516"},{"denom":"ASSET2","index":"0.000007982150766688"},{"denom":"ASSET3","index":"0.000002214601198569"},{"denom":"ASSET4","index":"0.000021356131094847"},{"denom":"ASSET5","index":"0.000001725369734459"},{"denom":"ASSET6","index":"0.000006962131899100"},{"denom":"ASSET7","index":"0.000010942547729288"},{"denom":"ASSET8","index":"0.000014960973970884"},{"denom":"ASSET9","index":"0.000006348281537724"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001156201861882"},{"denom":"ASSET1","index":"0.000009641528249827"},{"denom":"ASSET10","index":"0.000006717693720376"},{"denom":"ASSET11","index":"0.000009327193051790"},{"denom":"ASSET12","index":"0.000008399128436016"},{"denom":"ASSET13","index":"0.000002890504654704"},{"denom":"ASSET14","index":"0.000008712888981039"},{"denom":"ASSET15","index":"0.000006229813312455"},{"denom":"ASSET16","index":"0.000004343227471224"},{"denom":"ASSET17","index":"0.000003084737373052"},{"denom":"ASSET18","index":"0.000001469387753892"},{"denom":"ASSET2","index":"0.000002846256372714"},{"denom":"ASSET3","index":"0.000000832672215639"},{"denom":"ASSET4","index":"0.000007835393830396"},{"denom":"ASSET5","index":"0.000000645909986459"},{"denom":"ASSET6","index":"0.000002630186839877"},{"denom":"ASSET7","index":"0.000004027742967162"},{"denom":"ASSET8","index":"0.000005256351108664"},{"denom":"ASSET9","index":"0.000002269879400812"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000002648545180722"},{"denom":"ASSET1","index":"0.000022528915692996"},{"denom":"ASSET10","index":"0.000018297756458480"},{"denom":"ASSET11","index":"0.000022469822082599"},{"denom":"ASSET12","index":"0.000021584227648624"},{"denom":"ASSET13","index":"0.000007070243338634"},{"denom":"ASSET14","index":"0.000020574684608302"},{"denom":"ASSET15","index":"0.000016423497937791"},{"denom":"ASSET16","index":"0.000009972839292196"},{"denom":"ASSET17","index":"0.000007932645550822"},{"denom":"ASSET18","index":"0.000003216131666673"},{"denom":"ASSET2","index":"0.000006846442901912"},{"denom":"ASSET3","index":"0.000001888119307859"},{"denom":"ASSET4","index":"0.000018258669735553"},{"denom":"ASSET5","index":"0.000001471345302008"},{"denom":"ASSET6","index":"0.000005932348598922"},{"denom":"ASSET7","index":"0.000009352074075404"},{"denom":"ASSET8","index":"0.000012853047191550"},{"denom":"ASSET9","index":"0.000005442948627063"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001638829976996"},{"denom":"ASSET1","index":"0.000013663699511091"},{"denom":"ASSET10","index":"0.000009519748943981"},{"denom":"ASSET11","index":"0.000013218199388741"},{"denom":"ASSET12","index":"0.000011902774883924"},{"denom":"ASSET13","index":"0.000004095984811686"},{"denom":"ASSET14","index":"0.000012347548252404"},{"denom":"ASSET15","index":"0.000008827879259679"},{"denom":"ASSET16","index":"0.000006154878525580"},{"denom":"ASSET17","index":"0.000004371424528441"},{"denom":"ASSET18","index":"0.000002082149837736"},{"denom":"ASSET2","index":"0.000004033483978861"},{"denom":"ASSET3","index":"0.000001179521531115"},{"denom":"ASSET4","index":"0.000011104072380722"},{"denom":"ASSET5","index":"0.000000915709876282"},{"denom":"ASSET6","index":"0.000003726793845693"},{"denom":"ASSET7","index":"0.000005707924895490"},{"denom":"ASSET8","index":"0.000007448500414296"},{"denom":"ASSET9","index":"0.000003217339382778"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003133427860009"},{"denom":"ASSET1","index":"0.000026571363581284"},{"denom":"ASSET10","index":"0.000021118003104150"},{"denom":"ASSET11","index":"0.000026381510155653"},{"denom":"ASSET12","index":"0.000025108485590780"},{"denom":"ASSET13","index":"0.000008282355352591"},{"denom":"ASSET14","index":"0.000024227637307493"},{"denom":"ASSET15","index":"0.000019037535386694"},{"denom":"ASSET16","index":"0.000011793447009555"},{"denom":"ASSET17","index":"0.000009226841180516"},{"denom":"ASSET18","index":"0.000003831770888939"},{"denom":"ASSET2","index":"0.000008040278303534"},{"denom":"ASSET3","index":"0.000002236402387063"},{"denom":"ASSET4","index":"0.000021543810534784"},{"denom":"ASSET5","index":"0.000001742508705183"},{"denom":"ASSET6","index":"0.000007033989161296"},{"denom":"ASSET7","index":"0.000011040340871930"},{"denom":"ASSET8","index":"0.000015056795520064"},{"denom":"ASSET9","index":"0.000006395464292965"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001556422065682"},{"denom":"ASSET1","index":"0.000012975233747354"},{"denom":"ASSET10","index":"0.000009039925804131"},{"denom":"ASSET11","index":"0.000012551842294036"},{"denom":"ASSET12","index":"0.000011303196313064"},{"denom":"ASSET13","index":"0.000003889859143149"},{"denom":"ASSET14","index":"0.000011725391745328"},{"denom":"ASSET15","index":"0.000008383310245172"},{"denom":"ASSET16","index":"0.000005844954893688"},{"denom":"ASSET17","index":"0.000004150990406731"},{"denom":"ASSET18","index":"0.000001977421476890"},{"denom":"ASSET2","index":"0.000003830058090421"},{"denom":"ASSET3","index":"0.000001120273054448"},{"denom":"ASSET4","index":"0.000010544520290781"},{"denom":"ASSET5","index":"0.000000869507306673"},{"denom":"ASSET6","index":"0.000003539424974160"},{"denom":"ASSET7","index":"0.000005420766093000"},{"denom":"ASSET8","index":"0.000007073268516732"},{"denom":"ASSET9","index":"0.000003055036447059"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003102345998156"},{"denom":"ASSET1","index":"0.000026324295521459"},{"denom":"ASSET10","index":"0.000021034709957123"},{"denom":"ASSET11","index":"0.000026165624152899"},{"denom":"ASSET12","index":"0.000024960753498443"},{"denom":"ASSET13","index":"0.000008219480216908"},{"denom":"ASSET14","index":"0.000024012126304297"},{"denom":"ASSET15","index":"0.000018942125813395"},{"denom":"ASSET16","index":"0.000011676379885795"},{"denom":"ASSET17","index":"0.000009172744202097"},{"denom":"ASSET18","index":"0.000003786686743681"},{"denom":"ASSET2","index":"0.000007973892542195"},{"denom":"ASSET3","index":"0.000002213622154517"},{"denom":"ASSET4","index":"0.000021341514997764"},{"denom":"ASSET5","index":"0.000001724677267981"},{"denom":"ASSET6","index":"0.000006959760131783"},{"denom":"ASSET7","index":"0.000010935767858794"},{"denom":"ASSET8","index":"0.000014942141973689"},{"denom":"ASSET9","index":"0.000006341977499472"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001602535700795"},{"denom":"ASSET1","index":"0.000013360208994045"},{"denom":"ASSET10","index":"0.000009307956057468"},{"denom":"ASSET11","index":"0.000012924500245282"},{"denom":"ASSET12","index":"0.000011638378499862"},{"denom":"ASSET13","index":"0.000004005127453862"},{"denom":"ASSET14","index":"0.000012073279383206"},{"denom":"ASSET15","index":"0.000008632311279566"},{"denom":"ASSET16","index":"0.000006018597363935"},{"denom":"ASSET17","index":"0.000004274146638048"},{"denom":"ASSET18","index":"0.000002036090141777"},{"denom":"ASSET2","index":"0.000003943729682095"},{"denom":"ASSET3","index":"0.000001153631816872"},{"denom":"ASSET4","index":"0.000010857441929150"},{"denom":"ASSET5","index":"0.000000895384171592"},{"denom":"ASSET6","index":"0.000003644280900498"},{"denom":"ASSET7","index":"0.000005581542172809"},{"denom":"ASSET8","index":"0.000007283176031543"},{"denom":"ASSET9","index":"0.000003145827937606"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003144114236048"},{"denom":"ASSET1","index":"0.000026672683120621"},{"denom":"ASSET10","index":"0.000021269722635007"},{"denom":"ASSET11","index":"0.000026500587720899"},{"denom":"ASSET12","index":"0.000025258297912053"},{"denom":"ASSET13","index":"0.000008323039503604"},{"denom":"ASSET14","index":"0.000024326015412045"},{"denom":"ASSET15","index":"0.000019162234595686"},{"denom":"ASSET16","index":"0.000011833945147558"},{"denom":"ASSET17","index":"0.000009281867675434"},{"denom":"ASSET18","index":"0.000003840349431676"},{"denom":"ASSET2","index":"0.000008076055447193"},{"denom":"ASSET3","index":"0.000002244145529651"},{"denom":"ASSET4","index":"0.000021624555086447"},{"denom":"ASSET5","index":"0.000001748086313596"},{"denom":"ASSET6","index":"0.000007055400333314"},{"denom":"ASSET7","index":"0.000011081362186058"},{"denom":"ASSET8","index":"0.000015130336137492"},{"denom":"ASSET9","index":"0.000006423586371910"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001633811359009"},{"denom":"ASSET1","index":"0.000013620164108551"},{"denom":"ASSET10","index":"0.000009487838038290"},{"denom":"ASSET11","index":"0.000013174776703502"},{"denom":"ASSET12","index":"0.000011864685946211"},{"denom":"ASSET13","index":"0.000004082355776036"},{"denom":"ASSET14","index":"0.000012307900729772"},{"denom":"ASSET15","index":"0.000008799117026580"},{"denom":"ASSET16","index":"0.000006135483082238"},{"denom":"ASSET17","index":"0.000004356106083529"},{"denom":"ASSET18","index":"0.000002074853521082"},{"denom":"ASSET2","index":"0.000004019349752882"},{"denom":"ASSET3","index":"0.000001175388225032"},{"denom":"ASSET4","index":"0.000011067333860098"},{"denom":"ASSET5","index":"0.000000912501024979"},{"denom":"ASSET6","index":"0.000003715182744556"},{"denom":"ASSET7","index":"0.000005690095677188"},{"denom":"ASSET8","index":"0.000007423847624648"},{"denom":"ASSET9","index":"0.000003206789316354"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003109600829404"},{"denom":"ASSET1","index":"0.000026362702045617"},{"denom":"ASSET10","index":"0.000020937844947102"},{"denom":"ASSET11","index":"0.000026169598808926"},{"denom":"ASSET12","index":"0.000024901798461360"},{"denom":"ASSET13","index":"0.000008215149609138"},{"denom":"ASSET14","index":"0.000024035954930107"},{"denom":"ASSET15","index":"0.000018878331344314"},{"denom":"ASSET16","index":"0.000011701775976010"},{"denom":"ASSET17","index":"0.000009149505282332"},{"denom":"ASSET18","index":"0.000003801954966508"},{"denom":"ASSET2","index":"0.000007974718303805"},{"denom":"ASSET3","index":"0.000002219037761573"},{"denom":"ASSET4","index":"0.000021373555319687"},{"denom":"ASSET5","index":"0.000001728657323000"},{"denom":"ASSET6","index":"0.000006980294033305"},{"denom":"ASSET7","index":"0.000010954522542925"},{"denom":"ASSET8","index":"0.000014935013269095"},{"denom":"ASSET9","index":"0.000006344057182602"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001356454583190"},{"denom":"ASSET1","index":"0.000011307707773056"},{"denom":"ASSET10","index":"0.000007878355411964"},{"denom":"ASSET11","index":"0.000010938987301217"},{"denom":"ASSET12","index":"0.000009850463994830"},{"denom":"ASSET13","index":"0.000003389876593037"},{"denom":"ASSET14","index":"0.000010218764511690"},{"denom":"ASSET15","index":"0.000007305956775156"},{"denom":"ASSET16","index":"0.000005094053899100"},{"denom":"ASSET17","index":"0.000003617492191826"},{"denom":"ASSET18","index":"0.000001723075280133"},{"denom":"ASSET2","index":"0.000003337802175602"},{"denom":"ASSET3","index":"0.000000976395326909"},{"denom":"ASSET4","index":"0.000009189454857387"},{"denom":"ASSET5","index":"0.000000758018737665"},{"denom":"ASSET6","index":"0.000003084569323074"},{"denom":"ASSET7","index":"0.000004724073562323"},{"denom":"ASSET8","index":"0.000006164519141376"},{"denom":"ASSET9","index":"0.000002662514568862"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000002920257070141"},{"denom":"ASSET1","index":"0.000024811653868653"},{"denom":"ASSET10","index":"0.000020012294768332"},{"denom":"ASSET11","index":"0.000024710629923001"},{"denom":"ASSET12","index":"0.000023666550441425"},{"denom":"ASSET13","index":"0.000007769918885884"},{"denom":"ASSET14","index":"0.000022647790193256"},{"denom":"ASSET15","index":"0.000017987461600930"},{"denom":"ASSET16","index":"0.000010993196459757"},{"denom":"ASSET17","index":"0.000008697266331114"},{"denom":"ASSET18","index":"0.000003553540715950"},{"denom":"ASSET2","index":"0.000007529733395993"},{"denom":"ASSET3","index":"0.000002082581454906"},{"denom":"ASSET4","index":"0.000020111524804667"},{"denom":"ASSET5","index":"0.000001623122955496"},{"denom":"ASSET6","index":"0.000006544727800067"},{"denom":"ASSET7","index":"0.000010303065547743"},{"denom":"ASSET8","index":"0.000014124873274804"},{"denom":"ASSET9","index":"0.000005987532811110"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001730803097805"},{"denom":"ASSET1","index":"0.000014429128492036"},{"denom":"ASSET10","index":"0.000010053081326419"},{"denom":"ASSET11","index":"0.000013956042311970"},{"denom":"ASSET12","index":"0.000012568515161896"},{"denom":"ASSET13","index":"0.000004324123072683"},{"denom":"ASSET14","index":"0.000013038716670133"},{"denom":"ASSET15","index":"0.000009320374681681"},{"denom":"ASSET16","index":"0.000006499165632259"},{"denom":"ASSET17","index":"0.000004615474927481"},{"denom":"ASSET18","index":"0.000002198119934213"},{"denom":"ASSET2","index":"0.000004257775620601"},{"denom":"ASSET3","index":"0.000001243293558590"},{"denom":"ASSET4","index":"0.000011726190987631"},{"denom":"ASSET5","index":"0.000000966365062941"},{"denom":"ASSET6","index":"0.000003934692375677"},{"denom":"ASSET7","index":"0.000006026079452192"},{"denom":"ASSET8","index":"0.000007863615407695"},{"denom":"ASSET9","index":"0.000003395258743528"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003241945367060"},{"denom":"ASSET1","index":"0.000027480716546724"},{"denom":"ASSET10","index":"0.000021780901079221"},{"denom":"ASSET11","index":"0.000027265989011084"},{"denom":"ASSET12","index":"0.000025921947969478"},{"denom":"ASSET13","index":"0.000008556984130745"},{"denom":"ASSET14","index":"0.000025051754134356"},{"denom":"ASSET15","index":"0.000019643848931612"},{"denom":"ASSET16","index":"0.000012200322352703"},{"denom":"ASSET17","index":"0.000009524928673174"},{"denom":"ASSET18","index":"0.000003966981346299"},{"denom":"ASSET2","index":"0.000008309018225650"},{"denom":"ASSET3","index":"0.000002312540225621"},{"denom":"ASSET4","index":"0.000022282443818183"},{"denom":"ASSET5","index":"0.000001802193647755"},{"denom":"ASSET6","index":"0.000007278646216530"},{"denom":"ASSET7","index":"0.000011418356902196"},{"denom":"ASSET8","index":"0.000015557459098515"},{"denom":"ASSET9","index":"0.000006608754258977"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001631665384825"},{"denom":"ASSET1","index":"0.000013602742609312"},{"denom":"ASSET10","index":"0.000009477179623123"},{"denom":"ASSET11","index":"0.000013159027954757"},{"denom":"ASSET12","index":"0.000011849393704263"},{"denom":"ASSET13","index":"0.000004077627053980"},{"denom":"ASSET14","index":"0.000012292493795584"},{"denom":"ASSET15","index":"0.000008788868801652"},{"denom":"ASSET16","index":"0.000006127810000788"},{"denom":"ASSET17","index":"0.000004351722256101"},{"denom":"ASSET18","index":"0.000002072921786447"},{"denom":"ASSET2","index":"0.000004015556167401"},{"denom":"ASSET3","index":"0.000001174430339134"},{"denom":"ASSET4","index":"0.000011054148880171"},{"denom":"ASSET5","index":"0.000000911397275215"},{"denom":"ASSET6","index":"0.000003710118240373"},{"denom":"ASSET7","index":"0.000005682866219766"},{"denom":"ASSET8","index":"0.000007415319974879"},{"denom":"ASSET9","index":"0.000003202489009539"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003079719434352"},{"denom":"ASSET1","index":"0.000026105925494605"},{"denom":"ASSET10","index":"0.000020711970439773"},{"denom":"ASSET11","index":"0.000025910008103106"},{"denom":"ASSET12","index":"0.000024641613628664"},{"denom":"ASSET13","index":"0.000008133110770201"},{"denom":"ASSET14","index":"0.000023800542954419"},{"denom":"ASSET15","index":"0.000018678884312278"},{"denom":"ASSET16","index":"0.000011589749383737"},{"denom":"ASSET17","index":"0.000009055208366452"},{"denom":"ASSET18","index":"0.000003767697278786"},{"denom":"ASSET2","index":"0.000007896757003962"},{"denom":"ASSET3","index":"0.000002198611212202"},{"denom":"ASSET4","index":"0.000021166859181475"},{"denom":"ASSET5","index":"0.000001712166144109"},{"denom":"ASSET6","index":"0.000006913910929446"},{"denom":"ASSET7","index":"0.000010848237821893"},{"denom":"ASSET8","index":"0.000014785764472138"},{"denom":"ASSET9","index":"0.000006281127943464"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001520990142264"},{"denom":"ASSET1","index":"0.000012680102108631"},{"denom":"ASSET10","index":"0.000008834326429376"},{"denom":"ASSET11","index":"0.000012266893306329"},{"denom":"ASSET12","index":"0.000011046354389007"},{"denom":"ASSET13","index":"0.000003801591675587"},{"denom":"ASSET14","index":"0.000011458856247250"},{"denom":"ASSET15","index":"0.000008193128168148"},{"denom":"ASSET16","index":"0.000005712107994187"},{"denom":"ASSET17","index":"0.000004056798480773"},{"denom":"ASSET18","index":"0.000001932431584420"},{"denom":"ASSET2","index":"0.000003743268790745"},{"denom":"ASSET3","index":"0.000001095056346905"},{"denom":"ASSET4","index":"0.000010304770071444"},{"denom":"ASSET5","index":"0.000000849746758541"},{"denom":"ASSET6","index":"0.000003459077279153"},{"denom":"ASSET7","index":"0.000005297485303768"},{"denom":"ASSET8","index":"0.000006912499005837"},{"denom":"ASSET9","index":"0.000002985778231863"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003063170165442"},{"denom":"ASSET1","index":"0.000025996358951928"},{"denom":"ASSET10","index":"0.000020799618544072"},{"denom":"ASSET11","index":"0.000025846936295403"},{"denom":"ASSET12","index":"0.000024670295822131"},{"denom":"ASSET13","index":"0.000008120644896033"},{"denom":"ASSET14","index":"0.000023715222729701"},{"denom":"ASSET15","index":"0.000018725986369791"},{"denom":"ASSET16","index":"0.000011529047312284"},{"denom":"ASSET17","index":"0.000009065966880203"},{"denom":"ASSET18","index":"0.000003737409049681"},{"denom":"ASSET2","index":"0.000007876841198043"},{"denom":"ASSET3","index":"0.000002185992003768"},{"denom":"ASSET4","index":"0.000021074917159843"},{"denom":"ASSET5","index":"0.000001702800306431"},{"denom":"ASSET6","index":"0.000006871093729972"},{"denom":"ASSET7","index":"0.000010798830402478"},{"denom":"ASSET8","index":"0.000014762015379742"},{"denom":"ASSET9","index":"0.000006264517424621"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001519669987195"},{"denom":"ASSET1","index":"0.000012676623405048"},{"denom":"ASSET10","index":"0.000008831600766261"},{"denom":"ASSET11","index":"0.000012262448940742"},{"denom":"ASSET12","index":"0.000011042591812037"},{"denom":"ASSET13","index":"0.000003799690110356"},{"denom":"ASSET14","index":"0.000011454705706870"},{"denom":"ASSET15","index":"0.000008189733375059"},{"denom":"ASSET16","index":"0.000005709838012905"},{"denom":"ASSET17","index":"0.000004055200725152"},{"denom":"ASSET18","index":"0.000001931783882027"},{"denom":"ASSET2","index":"0.000003741994165079"},{"denom":"ASSET3","index":"0.000001094162390780"},{"denom":"ASSET4","index":"0.000010301817086076"},{"denom":"ASSET5","index":"0.000000848954623355"},{"denom":"ASSET6","index":"0.000003457635577645"},{"denom":"ASSET7","index":"0.000005295663548598"},{"denom":"ASSET8","index":"0.000006910119731604"},{"denom":"ASSET9","index":"0.000002984734883325"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003051401969864"},{"denom":"ASSET1","index":"0.000025903543471827"},{"denom":"ASSET10","index":"0.000020717104247015"},{"denom":"ASSET11","index":"0.000025751820078700"},{"denom":"ASSET12","index":"0.000024575704795191"},{"denom":"ASSET13","index":"0.000008089460542782"},{"denom":"ASSET14","index":"0.000023629519286555"},{"denom":"ASSET15","index":"0.000018652475785738"},{"denom":"ASSET16","index":"0.000011487598582804"},{"denom":"ASSET17","index":"0.000009031027466449"},{"denom":"ASSET18","index":"0.000003724432134289"},{"denom":"ASSET2","index":"0.000007847588407204"},{"denom":"ASSET3","index":"0.000002177732310384"},{"denom":"ASSET4","index":"0.000021000151540181"},{"denom":"ASSET5","index":"0.000001696165098739"},{"denom":"ASSET6","index":"0.000006846477479182"},{"denom":"ASSET7","index":"0.000010760324594985"},{"denom":"ASSET8","index":"0.000014706911787677"},{"denom":"ASSET9","index":"0.000006241583848480"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001392192847149"},{"denom":"ASSET1","index":"0.000011611450847386"},{"denom":"ASSET10","index":"0.000008088781067478"},{"denom":"ASSET11","index":"0.000011231761889073"},{"denom":"ASSET12","index":"0.000010115195100551"},{"denom":"ASSET13","index":"0.000003480482117873"},{"denom":"ASSET14","index":"0.000010492071548062"},{"denom":"ASSET15","index":"0.000007502372565194"},{"denom":"ASSET16","index":"0.000005229863836918"},{"denom":"ASSET17","index":"0.000003713920514466"},{"denom":"ASSET18","index":"0.000001769069294661"},{"denom":"ASSET2","index":"0.000003427044412629"},{"denom":"ASSET3","index":"0.000001002660101028"},{"denom":"ASSET4","index":"0.000009435973741790"},{"denom":"ASSET5","index":"0.000000777659236842"},{"denom":"ASSET6","index":"0.000003166887163415"},{"denom":"ASSET7","index":"0.000004850174878604"},{"denom":"ASSET8","index":"0.000006329555560626"},{"denom":"ASSET9","index":"0.000002733760499857"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000002834261839987"},{"denom":"ASSET1","index":"0.000024063735726127"},{"denom":"ASSET10","index":"0.000019278012414561"},{"denom":"ASSET11","index":"0.000023930766794440"},{"denom":"ASSET12","index":"0.000022855511266190"},{"denom":"ASSET13","index":"0.000007519422832827"},{"denom":"ASSET14","index":"0.000021953268691937"},{"denom":"ASSET15","index":"0.000017352048046781"},{"denom":"ASSET16","index":"0.000010669562284438"},{"denom":"ASSET17","index":"0.000008398158415340"},{"denom":"ASSET18","index":"0.000003456710779118"},{"denom":"ASSET2","index":"0.000007292324829772"},{"denom":"ASSET3","index":"0.000002022818722752"},{"denom":"ASSET4","index":"0.000019507505991506"},{"denom":"ASSET5","index":"0.000001575196067099"},{"denom":"ASSET6","index":"0.000006357416996111"},{"denom":"ASSET7","index":"0.000009994574317511"},{"denom":"ASSET8","index":"0.000013669954492341"},{"denom":"ASSET9","index":"0.000005799591528398"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001553840185331"},{"denom":"ASSET1","index":"0.000012958259817171"},{"denom":"ASSET10","index":"0.000009028099224953"},{"denom":"ASSET11","index":"0.000012533831248030"},{"denom":"ASSET12","index":"0.000011286922457332"},{"denom":"ASSET13","index":"0.000003884600463327"},{"denom":"ASSET14","index":"0.000011708953124953"},{"denom":"ASSET15","index":"0.000008371074208317"},{"denom":"ASSET16","index":"0.000005836492301072"},{"denom":"ASSET17","index":"0.000004143573827548"},{"denom":"ASSET18","index":"0.000001973472951431"},{"denom":"ASSET2","index":"0.000003824652925312"},{"denom":"ASSET3","index":"0.000001117422108587"},{"denom":"ASSET4","index":"0.000010529185576831"},{"denom":"ASSET5","index":"0.000000868040350447"},{"denom":"ASSET6","index":"0.000003534506841323"},{"denom":"ASSET7","index":"0.000005412063731931"},{"denom":"ASSET8","index":"0.000007064217879605"},{"denom":"ASSET9","index":"0.000003050130734168"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000002875427361068"},{"denom":"ASSET1","index":"0.000024372739255487"},{"denom":"ASSET10","index":"0.000019284464921318"},{"denom":"ASSET11","index":"0.000024174413552556"},{"denom":"ASSET12","index":"0.000022964657814992"},{"denom":"ASSET13","index":"0.000007586106071195"},{"denom":"ASSET14","index":"0.000022214775035212"},{"denom":"ASSET15","index":"0.000017399266119679"},{"denom":"ASSET16","index":"0.000010822432031544"},{"denom":"ASSET17","index":"0.000008437405253940"},{"denom":"ASSET18","index":"0.000003520101477575"},{"denom":"ASSET2","index":"0.000007366931162610"},{"denom":"ASSET3","index":"0.000002051556015935"},{"denom":"ASSET4","index":"0.000019761188522524"},{"denom":"ASSET5","index":"0.000001598363223465"},{"denom":"ASSET6","index":"0.000006458982880806"},{"denom":"ASSET7","index":"0.000010127316932433"},{"denom":"ASSET8","index":"0.000013792105044122"},{"denom":"ASSET9","index":"0.000005859963066840"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001468329025254"},{"denom":"ASSET1","index":"0.000012248466172689"},{"denom":"ASSET10","index":"0.000008533242661533"},{"denom":"ASSET11","index":"0.000011849890220686"},{"denom":"ASSET12","index":"0.000010670683647662"},{"denom":"ASSET13","index":"0.000003671855143322"},{"denom":"ASSET14","index":"0.000011069259599665"},{"denom":"ASSET15","index":"0.000007913694549611"},{"denom":"ASSET16","index":"0.000005518108516848"},{"denom":"ASSET17","index":"0.000003917609227717"},{"denom":"ASSET18","index":"0.000001866904977257"},{"denom":"ASSET2","index":"0.000003616095813249"},{"denom":"ASSET3","index":"0.000001057362111013"},{"denom":"ASSET4","index":"0.000009954072998206"},{"denom":"ASSET5","index":"0.000000819868668110"},{"denom":"ASSET6","index":"0.000003341429483630"},{"denom":"ASSET7","index":"0.000005117467404472"},{"denom":"ASSET8","index":"0.000006676663486141"},{"denom":"ASSET9","index":"0.000002882963880808"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000002995432004660"},{"denom":"ASSET1","index":"0.000025434255671185"},{"denom":"ASSET10","index":"0.000020381248485322"},{"denom":"ASSET11","index":"0.000025297016742096"},{"denom":"ASSET12","index":"0.000024161457271020"},{"denom":"ASSET13","index":"0.000007948725545453"},{"denom":"ASSET14","index":"0.000023205881885085"},{"denom":"ASSET15","index":"0.000018343715148864"},{"denom":"ASSET16","index":"0.000011277889207663"},{"denom":"ASSET17","index":"0.000008877556775335"},{"denom":"ASSET18","index":"0.000003654253802028"},{"denom":"ASSET2","index":"0.000007709102798424"},{"denom":"ASSET3","index":"0.000002137627884226"},{"denom":"ASSET4","index":"0.000020618696770430"},{"denom":"ASSET5","index":"0.000001664440090804"},{"denom":"ASSET6","index":"0.000006720260763181"},{"denom":"ASSET7","index":"0.000010565171316359"},{"denom":"ASSET8","index":"0.000014449121165534"},{"denom":"ASSET9","index":"0.000006129217088192"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001484659776814"},{"denom":"ASSET1","index":"0.000012377911876883"},{"denom":"ASSET10","index":"0.000008623797972416"},{"denom":"ASSET11","index":"0.000011974339842928"},{"denom":"ASSET12","index":"0.000010782780641408"},{"denom":"ASSET13","index":"0.000003710691597017"},{"denom":"ASSET14","index":"0.000011185714112019"},{"denom":"ASSET15","index":"0.000007997367331102"},{"denom":"ASSET16","index":"0.000005575935127370"},{"denom":"ASSET17","index":"0.000003959731301514"},{"denom":"ASSET18","index":"0.000001886316120734"},{"denom":"ASSET2","index":"0.000003653859459324"},{"denom":"ASSET3","index":"0.000001068955039306"},{"denom":"ASSET4","index":"0.000010059288371675"},{"denom":"ASSET5","index":"0.000000829493784981"},{"denom":"ASSET6","index":"0.000003376084404307"},{"denom":"ASSET7","index":"0.000005171085966725"},{"denom":"ASSET8","index":"0.000006747698865199"},{"denom":"ASSET9","index":"0.000002914403105969"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000002967027008461"},{"denom":"ASSET1","index":"0.000025180120058697"},{"denom":"ASSET10","index":"0.000020126919929476"},{"denom":"ASSET11","index":"0.000025029678796477"},{"denom":"ASSET12","index":"0.000023880507059092"},{"denom":"ASSET13","index":"0.000007862872062626"},{"denom":"ASSET14","index":"0.000022968832134984"},{"denom":"ASSET15","index":"0.000018123195207046"},{"denom":"ASSET16","index":"0.000011168095360491"},{"denom":"ASSET17","index":"0.000008775186029853"},{"denom":"ASSET18","index":"0.000003621217117579"},{"denom":"ASSET2","index":"0.000007627534970337"},{"denom":"ASSET3","index":"0.000002117298518473"},{"denom":"ASSET4","index":"0.000020413769751333"},{"denom":"ASSET5","index":"0.000001649183760435"},{"denom":"ASSET6","index":"0.000006656038319196"},{"denom":"ASSET7","index":"0.000010459966878994"},{"denom":"ASSET8","index":"0.000014293861494285"},{"denom":"ASSET9","index":"0.000006066597621916"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001508631993599"},{"denom":"ASSET1","index":"0.000012578103553994"},{"denom":"ASSET10","index":"0.000008763023138279"},{"denom":"ASSET11","index":"0.000012169014387632"},{"denom":"ASSET12","index":"0.000010956555546150"},{"denom":"ASSET13","index":"0.000003770654442897"},{"denom":"ASSET14","index":"0.000011367495794714"},{"denom":"ASSET15","index":"0.000008126250861227"},{"denom":"ASSET16","index":"0.000005666162616450"},{"denom":"ASSET17","index":"0.000004024252704398"},{"denom":"ASSET18","index":"0.000001915870077761"},{"denom":"ASSET2","index":"0.000003713270894674"},{"denom":"ASSET3","index":"0.000001084734169631"},{"denom":"ASSET4","index":"0.000010221675912459"},{"denom":"ASSET5","index":"0.000000842242401334"},{"denom":"ASSET6","index":"0.000003430055317962"},{"denom":"ASSET7","index":"0.000005255222367887"},{"denom":"ASSET8","index":"0.000006856408471522"},{"denom":"ASSET9","index":"0.000002961731521176"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000002968383248598"},{"denom":"ASSET1","index":"0.000025185581850199"},{"denom":"ASSET10","index":"0.000020091193699906"},{"denom":"ASSET11","index":"0.000025026167595767"},{"denom":"ASSET12","index":"0.000023854952987524"},{"denom":"ASSET13","index":"0.000007859725566891"},{"denom":"ASSET14","index":"0.000022971118914045"},{"denom":"ASSET15","index":"0.000018098517255117"},{"denom":"ASSET16","index":"0.000011173004258039"},{"denom":"ASSET17","index":"0.000008766603022733"},{"denom":"ASSET18","index":"0.000003624559740525"},{"denom":"ASSET2","index":"0.000007626317523237"},{"denom":"ASSET3","index":"0.000002117313008939"},{"denom":"ASSET4","index":"0.000020418576076670"},{"denom":"ASSET5","index":"0.000001649450966157"},{"denom":"ASSET6","index":"0.000006660362585584"},{"denom":"ASSET7","index":"0.000010463779822658"},{"denom":"ASSET8","index":"0.000014287735496216"},{"denom":"ASSET9","index":"0.000006065360072421"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001603618851190"},{"denom":"ASSET1","index":"0.000013373450792115"},{"denom":"ASSET10","index":"0.000009317368604669"},{"denom":"ASSET11","index":"0.000012937408123124"},{"denom":"ASSET12","index":"0.000011650307554501"},{"denom":"ASSET13","index":"0.000004008493774333"},{"denom":"ASSET14","index":"0.000012085243516211"},{"denom":"ASSET15","index":"0.000008640063748266"},{"denom":"ASSET16","index":"0.000006023807734317"},{"denom":"ASSET17","index":"0.000004278530351069"},{"denom":"ASSET18","index":"0.000002037448105618"},{"denom":"ASSET2","index":"0.000003947624873839"},{"denom":"ASSET3","index":"0.000001154295694818"},{"denom":"ASSET4","index":"0.000010867865506336"},{"denom":"ASSET5","index":"0.000000896432898181"},{"denom":"ASSET6","index":"0.000003647707200497"},{"denom":"ASSET7","index":"0.000005586658358043"},{"denom":"ASSET8","index":"0.000007289880864586"},{"denom":"ASSET9","index":"0.000003148582216449"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003259379166935"},{"denom":"ASSET1","index":"0.000027669546155668"},{"denom":"ASSET10","index":"0.000022163157427920"},{"denom":"ASSET11","index":"0.000027516665793422"},{"denom":"ASSET12","index":"0.000026276569409586"},{"denom":"ASSET13","index":"0.000008645229164029"},{"denom":"ASSET14","index":"0.000025243382728696"},{"denom":"ASSET15","index":"0.000019947981783747"},{"denom":"ASSET16","index":"0.000012268920188963"},{"denom":"ASSET17","index":"0.000009656339783182"},{"denom":"ASSET18","index":"0.000003975233530089"},{"denom":"ASSET2","index":"0.000008385350610200"},{"denom":"ASSET3","index":"0.000002325230588439"},{"denom":"ASSET4","index":"0.000022430515898086"},{"denom":"ASSET5","index":"0.000001812256369527"},{"denom":"ASSET6","index":"0.000007311001085881"},{"denom":"ASSET7","index":"0.000011492885803011"},{"denom":"ASSET8","index":"0.000015716897251793"},{"denom":"ASSET9","index":"0.000006668589151432"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001669758803356"},{"denom":"ASSET1","index":"0.000013919924903508"},{"denom":"ASSET10","index":"0.000009698114015232"},{"denom":"ASSET11","index":"0.000013466332119255"},{"denom":"ASSET12","index":"0.000012126099781115"},{"denom":"ASSET13","index":"0.000004173211661392"},{"denom":"ASSET14","index":"0.000012579297449702"},{"denom":"ASSET15","index":"0.000008994017898909"},{"denom":"ASSET16","index":"0.000006270880730729"},{"denom":"ASSET17","index":"0.000004453348668392"},{"denom":"ASSET18","index":"0.000002121376009280"},{"denom":"ASSET2","index":"0.000004109202923545"},{"denom":"ASSET3","index":"0.000001201941855137"},{"denom":"ASSET4","index":"0.000011312556625386"},{"denom":"ASSET5","index":"0.000000932868086778"},{"denom":"ASSET6","index":"0.000003797061547622"},{"denom":"ASSET7","index":"0.000005815312368147"},{"denom":"ASSET8","index":"0.000007588591475923"},{"denom":"ASSET9","index":"0.000003277484447193"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003314119794923"},{"denom":"ASSET1","index":"0.000028119315186385"},{"denom":"ASSET10","index":"0.000022456877991933"},{"denom":"ASSET11","index":"0.000027947185249485"},{"denom":"ASSET12","index":"0.000026653541530161"},{"denom":"ASSET13","index":"0.000008778725953540"},{"denom":"ASSET14","index":"0.000025648491290636"},{"denom":"ASSET15","index":"0.000020225495910600"},{"denom":"ASSET16","index":"0.000012473684612014"},{"denom":"ASSET17","index":"0.000009794866581105"},{"denom":"ASSET18","index":"0.000004045992889163"},{"denom":"ASSET2","index":"0.000008517017325485"},{"denom":"ASSET3","index":"0.000002365208974685"},{"denom":"ASSET4","index":"0.000022797013251164"},{"denom":"ASSET5","index":"0.000001842432416817"},{"denom":"ASSET6","index":"0.000007435560259585"},{"denom":"ASSET7","index":"0.000011681616070006"},{"denom":"ASSET8","index":"0.000015958852395270"},{"denom":"ASSET9","index":"0.000006773561992828"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001334597814253"},{"denom":"ASSET1","index":"0.000011126876577448"},{"denom":"ASSET10","index":"0.000007751884027943"},{"denom":"ASSET11","index":"0.000010763759508328"},{"denom":"ASSET12","index":"0.000009692944381721"},{"denom":"ASSET13","index":"0.000003335543967388"},{"denom":"ASSET14","index":"0.000010055110882597"},{"denom":"ASSET15","index":"0.000007189147627631"},{"denom":"ASSET16","index":"0.000005012346349398"},{"denom":"ASSET17","index":"0.000003559878072918"},{"denom":"ASSET18","index":"0.000001695813746885"},{"denom":"ASSET2","index":"0.000003284213282225"},{"denom":"ASSET3","index":"0.000000960549210329"},{"denom":"ASSET4","index":"0.000009042280418860"},{"denom":"ASSET5","index":"0.000000745720787237"},{"denom":"ASSET6","index":"0.000003035164402357"},{"denom":"ASSET7","index":"0.000004648278712034"},{"denom":"ASSET8","index":"0.000006065575963495"},{"denom":"ASSET9","index":"0.000002619766079830"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000002933404194828"},{"denom":"ASSET1","index":"0.000024932632498194"},{"denom":"ASSET10","index":"0.000020157113753706"},{"denom":"ASSET11","index":"0.000024842878528839"},{"denom":"ASSET12","index":"0.000023817726072485"},{"denom":"ASSET13","index":"0.000007813243799971"},{"denom":"ASSET14","index":"0.000022761898108549"},{"denom":"ASSET15","index":"0.000018109267957138"},{"denom":"ASSET16","index":"0.000011043189892304"},{"denom":"ASSET17","index":"0.000008753164046701"},{"denom":"ASSET18","index":"0.000003567063844603"},{"denom":"ASSET2","index":"0.000007569762146700"},{"denom":"ASSET3","index":"0.000002091389836038"},{"denom":"ASSET4","index":"0.000020208488830330"},{"denom":"ASSET5","index":"0.000001630166870108"},{"denom":"ASSET6","index":"0.000006572642272968"},{"denom":"ASSET7","index":"0.000010351822041320"},{"denom":"ASSET8","index":"0.000014203644477234"},{"denom":"ASSET9","index":"0.000006019030096188"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001655550281073"},{"denom":"ASSET1","index":"0.000013803766186213"},{"denom":"ASSET10","index":"0.000009616885369480"},{"denom":"ASSET11","index":"0.000013353770421464"},{"denom":"ASSET12","index":"0.000012024654915933"},{"denom":"ASSET13","index":"0.000004138458266908"},{"denom":"ASSET14","index":"0.000012474650680682"},{"denom":"ASSET15","index":"0.000008918932754767"},{"denom":"ASSET16","index":"0.000006218123294721"},{"denom":"ASSET17","index":"0.000004415635621077"},{"denom":"ASSET18","index":"0.000002103876302725"},{"denom":"ASSET2","index":"0.000004075008029207"},{"denom":"ASSET3","index":"0.000001191361699996"},{"denom":"ASSET4","index":"0.000011218168999888"},{"denom":"ASSET5","index":"0.000000925037675960"},{"denom":"ASSET6","index":"0.000003765270684639"},{"denom":"ASSET7","index":"0.000005766457786874"},{"denom":"ASSET8","index":"0.000007524697268437"},{"denom":"ASSET9","index":"0.000003250154939091"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003215122291080"},{"denom":"ASSET1","index":"0.000027271082473775"},{"denom":"ASSET10","index":"0.000021717714787675"},{"denom":"ASSET11","index":"0.000027088129911249"},{"denom":"ASSET12","index":"0.000025803190697535"},{"denom":"ASSET13","index":"0.000008506451165719"},{"denom":"ASSET14","index":"0.000024869823256717"},{"denom":"ASSET15","index":"0.000019571375436743"},{"denom":"ASSET16","index":"0.000012101015548893"},{"denom":"ASSET17","index":"0.000009481514658039"},{"denom":"ASSET18","index":"0.000003929002426467"},{"denom":"ASSET2","index":"0.000008255375778501"},{"denom":"ASSET3","index":"0.000002294279906946"},{"denom":"ASSET4","index":"0.000022110354928469"},{"denom":"ASSET5","index":"0.000001787716273475"},{"denom":"ASSET6","index":"0.000007215985074700"},{"denom":"ASSET7","index":"0.000011330188741735"},{"denom":"ASSET8","index":"0.000015463524362026"},{"denom":"ASSET9","index":"0.000006565858639552"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001631513498845"},{"denom":"ASSET1","index":"0.000013601788709515"},{"denom":"ASSET10","index":"0.000009476711328689"},{"denom":"ASSET11","index":"0.000013158178840821"},{"denom":"ASSET12","index":"0.000011848922966954"},{"denom":"ASSET13","index":"0.000004077884841603"},{"denom":"ASSET14","index":"0.000012291633930140"},{"denom":"ASSET15","index":"0.000008788599161546"},{"denom":"ASSET16","index":"0.000006127389402135"},{"denom":"ASSET17","index":"0.000004351601569095"},{"denom":"ASSET18","index":"0.000002072876103766"},{"denom":"ASSET2","index":"0.000004014961455973"},{"denom":"ASSET3","index":"0.000001174420047516"},{"denom":"ASSET4","index":"0.000011053841044239"},{"denom":"ASSET5","index":"0.000000911490186131"},{"denom":"ASSET6","index":"0.000003710232488420"},{"denom":"ASSET7","index":"0.000005682431175178"},{"denom":"ASSET8","index":"0.000007415071543785"},{"denom":"ASSET9","index":"0.000003202800328586"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003159157648171"},{"denom":"ASSET1","index":"0.000026793811254639"},{"denom":"ASSET10","index":"0.000021330257270132"},{"denom":"ASSET11","index":"0.000026611245447042"},{"denom":"ASSET12","index":"0.000025345616114893"},{"denom":"ASSET13","index":"0.000008356504281369"},{"denom":"ASSET14","index":"0.000024433401122602"},{"denom":"ASSET15","index":"0.000019223209713353"},{"denom":"ASSET16","index":"0.000011890026449509"},{"denom":"ASSET17","index":"0.000009313941892173"},{"denom":"ASSET18","index":"0.000003860849124980"},{"denom":"ASSET2","index":"0.000008109777269158"},{"denom":"ASSET3","index":"0.000002255070941538"},{"denom":"ASSET4","index":"0.000021723391251034"},{"denom":"ASSET5","index":"0.000001756486235957"},{"denom":"ASSET6","index":"0.000007090574282328"},{"denom":"ASSET7","index":"0.000011132530538444"},{"denom":"ASSET8","index":"0.000015191323807650"},{"denom":"ASSET9","index":"0.000006450832118924"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001649724724935"},{"denom":"ASSET1","index":"0.000013753740147655"},{"denom":"ASSET10","index":"0.000009582563441278"},{"denom":"ASSET11","index":"0.000013305204895691"},{"denom":"ASSET12","index":"0.000011981321923304"},{"denom":"ASSET13","index":"0.000004123306127916"},{"denom":"ASSET14","index":"0.000012429052627730"},{"denom":"ASSET15","index":"0.000008886629821639"},{"denom":"ASSET16","index":"0.000006195820583626"},{"denom":"ASSET17","index":"0.000004400070480698"},{"denom":"ASSET18","index":"0.000002096248608056"},{"denom":"ASSET2","index":"0.000004060149146250"},{"denom":"ASSET3","index":"0.000001187512164840"},{"denom":"ASSET4","index":"0.000011177176659918"},{"denom":"ASSET5","index":"0.000000921609203810"},{"denom":"ASSET6","index":"0.000003751605165751"},{"denom":"ASSET7","index":"0.000005746078510357"},{"denom":"ASSET8","index":"0.000007497578498742"},{"denom":"ASSET9","index":"0.000003238303837047"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003253063831874"},{"denom":"ASSET1","index":"0.000027597326034286"},{"denom":"ASSET10","index":"0.000022021617243178"},{"denom":"ASSET11","index":"0.000027423138617092"},{"denom":"ASSET12","index":"0.000026144931484859"},{"denom":"ASSET13","index":"0.000008613299773809"},{"denom":"ASSET14","index":"0.000025170855267573"},{"denom":"ASSET15","index":"0.000019836826910831"},{"denom":"ASSET16","index":"0.000012243184702458"},{"denom":"ASSET17","index":"0.000009607701845932"},{"denom":"ASSET18","index":"0.000003972764374377"},{"denom":"ASSET2","index":"0.000008357484440725"},{"denom":"ASSET3","index":"0.000002321502734814"},{"denom":"ASSET4","index":"0.000022373906168402"},{"denom":"ASSET5","index":"0.000001808481766797"},{"denom":"ASSET6","index":"0.000007298802623853"},{"denom":"ASSET7","index":"0.000011465220726545"},{"denom":"ASSET8","index":"0.000015658035812384"},{"denom":"ASSET9","index":"0.000006646717011605"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001698975992122"},{"denom":"ASSET1","index":"0.000014167905922226"},{"denom":"ASSET10","index":"0.000009870625403756"},{"denom":"ASSET11","index":"0.000013705415046027"},{"denom":"ASSET12","index":"0.000012342129737421"},{"denom":"ASSET13","index":"0.000004247439980305"},{"denom":"ASSET14","index":"0.000012803154715439"},{"denom":"ASSET15","index":"0.000009153801193103"},{"denom":"ASSET16","index":"0.000006381787732272"},{"denom":"ASSET17","index":"0.000004532557176567"},{"denom":"ASSET18","index":"0.000002159268021049"},{"denom":"ASSET2","index":"0.000004182207511237"},{"denom":"ASSET3","index":"0.000001223292032291"},{"denom":"ASSET4","index":"0.000011513897264989"},{"denom":"ASSET5","index":"0.000000949169072389"},{"denom":"ASSET6","index":"0.000003864840554987"},{"denom":"ASSET7","index":"0.000005918563906982"},{"denom":"ASSET8","index":"0.000007723084568158"},{"denom":"ASSET9","index":"0.000003335651311539"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003402845442317"},{"denom":"ASSET1","index":"0.000028880571174740"},{"denom":"ASSET10","index":"0.000023090578471272"},{"denom":"ASSET11","index":"0.000028709364204549"},{"denom":"ASSET12","index":"0.000027394626213612"},{"denom":"ASSET13","index":"0.000009019217107214"},{"denom":"ASSET14","index":"0.000026344557012563"},{"denom":"ASSET15","index":"0.000020791017438004"},{"denom":"ASSET16","index":"0.000012808886991708"},{"denom":"ASSET17","index":"0.000010066951390727"},{"denom":"ASSET18","index":"0.000004153478710890"},{"denom":"ASSET2","index":"0.000008748954704305"},{"denom":"ASSET3","index":"0.000002428490976730"},{"denom":"ASSET4","index":"0.000023413646091842"},{"denom":"ASSET5","index":"0.000001891364101695"},{"denom":"ASSET6","index":"0.000007634563338572"},{"denom":"ASSET7","index":"0.000011996876612297"},{"denom":"ASSET8","index":"0.000016395615103037"},{"denom":"ASSET9","index":"0.000006958318142576"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001515088644413"},{"denom":"ASSET1","index":"0.000012634136557163"},{"denom":"ASSET10","index":"0.000008802109028204"},{"denom":"ASSET11","index":"0.000012222352143486"},{"denom":"ASSET12","index":"0.000011006111259210"},{"denom":"ASSET13","index":"0.000003787721611031"},{"denom":"ASSET14","index":"0.000011417895672887"},{"denom":"ASSET15","index":"0.000008163582563959"},{"denom":"ASSET16","index":"0.000005691138594924"},{"denom":"ASSET17","index":"0.000004042263453241"},{"denom":"ASSET18","index":"0.000001925135571111"},{"denom":"ASSET2","index":"0.000003729515797284"},{"denom":"ASSET3","index":"0.000001091141821893"},{"denom":"ASSET4","index":"0.000010267679293757"},{"denom":"ASSET5","index":"0.000000846156158061"},{"denom":"ASSET6","index":"0.000003446305419945"},{"denom":"ASSET7","index":"0.000005278485437758"},{"denom":"ASSET8","index":"0.000006887398378958"},{"denom":"ASSET9","index":"0.000002974577705544"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003029367235848"},{"denom":"ASSET1","index":"0.000025709657584098"},{"denom":"ASSET10","index":"0.000020551027857005"},{"denom":"ASSET11","index":"0.000025556791271547"},{"denom":"ASSET12","index":"0.000024383546484064"},{"denom":"ASSET13","index":"0.000008028643187417"},{"denom":"ASSET14","index":"0.000023452409013233"},{"denom":"ASSET15","index":"0.000018505869963369"},{"denom":"ASSET16","index":"0.000011403028825829"},{"denom":"ASSET17","index":"0.000008960765854271"},{"denom":"ASSET18","index":"0.000003697390743305"},{"denom":"ASSET2","index":"0.000007788410102575"},{"denom":"ASSET3","index":"0.000002162278160249"},{"denom":"ASSET4","index":"0.000020843149904241"},{"denom":"ASSET5","index":"0.000001683795445220"},{"denom":"ASSET6","index":"0.000006796548728457"},{"denom":"ASSET7","index":"0.000010680301627557"},{"denom":"ASSET8","index":"0.000014594997949332"},{"denom":"ASSET9","index":"0.000006193949682941"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001650481631660"},{"denom":"ASSET1","index":"0.000013760556046882"},{"denom":"ASSET10","index":"0.000009587067899364"},{"denom":"ASSET11","index":"0.000013312100857594"},{"denom":"ASSET12","index":"0.000011987552175177"},{"denom":"ASSET13","index":"0.000004125311926918"},{"denom":"ASSET14","index":"0.000012435412596309"},{"denom":"ASSET15","index":"0.000008891189157367"},{"denom":"ASSET16","index":"0.000006198673717177"},{"denom":"ASSET17","index":"0.000004402473887406"},{"denom":"ASSET18","index":"0.000002097152516481"},{"denom":"ASSET2","index":"0.000004062266502429"},{"denom":"ASSET3","index":"0.000001188346774796"},{"denom":"ASSET4","index":"0.000011182830860714"},{"denom":"ASSET5","index":"0.000000921890641108"},{"denom":"ASSET6","index":"0.000003753581829697"},{"denom":"ASSET7","index":"0.000005749028991578"},{"denom":"ASSET8","index":"0.000007501810745994"},{"denom":"ASSET9","index":"0.000003239702143299"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003205609047354"},{"denom":"ASSET1","index":"0.000027188537481167"},{"denom":"ASSET10","index":"0.000021652723818266"},{"denom":"ASSET11","index":"0.000027005979418132"},{"denom":"ASSET12","index":"0.000025725923481940"},{"denom":"ASSET13","index":"0.000008480657418555"},{"denom":"ASSET14","index":"0.000024794508770079"},{"denom":"ASSET15","index":"0.000019512596409105"},{"denom":"ASSET16","index":"0.000012064653878282"},{"denom":"ASSET17","index":"0.000009453813052143"},{"denom":"ASSET18","index":"0.000003917117707327"},{"denom":"ASSET2","index":"0.000008230459966291"},{"denom":"ASSET3","index":"0.000002288306334262"},{"denom":"ASSET4","index":"0.000022043298344156"},{"denom":"ASSET5","index":"0.000001782083734802"},{"denom":"ASSET6","index":"0.000007194354204475"},{"denom":"ASSET7","index":"0.000011296497588433"},{"denom":"ASSET8","index":"0.000015417282169744"},{"denom":"ASSET9","index":"0.000006545936928299"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001428935211366"},{"denom":"ASSET1","index":"0.000011914564237659"},{"denom":"ASSET10","index":"0.000008301159777028"},{"denom":"ASSET11","index":"0.000011525978642480"},{"denom":"ASSET12","index":"0.000010379209562159"},{"denom":"ASSET13","index":"0.000003571896453874"},{"denom":"ASSET14","index":"0.000010767353582799"},{"denom":"ASSET15","index":"0.000007698410529959"},{"denom":"ASSET16","index":"0.000005367338533420"},{"denom":"ASSET17","index":"0.000003811671429081"},{"denom":"ASSET18","index":"0.000001815754508385"},{"denom":"ASSET2","index":"0.000003517141210917"},{"denom":"ASSET3","index":"0.000001028868678146"},{"denom":"ASSET4","index":"0.000009682846512616"},{"denom":"ASSET5","index":"0.000000798366768278"},{"denom":"ASSET6","index":"0.000003249988614231"},{"denom":"ASSET7","index":"0.000004977428214621"},{"denom":"ASSET8","index":"0.000006495119908522"},{"denom":"ASSET9","index":"0.000002805323052474"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003075918064869"},{"denom":"ASSET1","index":"0.000026136551234120"},{"denom":"ASSET10","index":"0.000021080163895542"},{"denom":"ASSET11","index":"0.000026029570124972"},{"denom":"ASSET12","index":"0.000024929671095533"},{"denom":"ASSET13","index":"0.000008184754658215"},{"denom":"ASSET14","index":"0.000023857159923959"},{"denom":"ASSET15","index":"0.000018947606922173"},{"denom":"ASSET16","index":"0.000011579925359638"},{"denom":"ASSET17","index":"0.000009161388302193"},{"denom":"ASSET18","index":"0.000003743573486430"},{"denom":"ASSET2","index":"0.000007931762150876"},{"denom":"ASSET3","index":"0.000002193704696765"},{"denom":"ASSET4","index":"0.000021185602196482"},{"denom":"ASSET5","index":"0.000001709259314500"},{"denom":"ASSET6","index":"0.000006893942979866"},{"denom":"ASSET7","index":"0.000010853088527538"},{"denom":"ASSET8","index":"0.000014878712124324"},{"denom":"ASSET9","index":"0.000006307130542486"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001556917620519"},{"denom":"ASSET1","index":"0.000012983455297040"},{"denom":"ASSET10","index":"0.000009045452282177"},{"denom":"ASSET11","index":"0.000012560119972943"},{"denom":"ASSET12","index":"0.000011310507230547"},{"denom":"ASSET13","index":"0.000003892294051298"},{"denom":"ASSET14","index":"0.000011733139339821"},{"denom":"ASSET15","index":"0.000008388649636483"},{"denom":"ASSET16","index":"0.000005848637691896"},{"denom":"ASSET17","index":"0.000004153889965857"},{"denom":"ASSET18","index":"0.000001978846514969"},{"denom":"ASSET2","index":"0.000003832520791251"},{"denom":"ASSET3","index":"0.000001120924429588"},{"denom":"ASSET4","index":"0.000010551035220538"},{"denom":"ASSET5","index":"0.000000869876737390"},{"denom":"ASSET6","index":"0.000003541389854081"},{"denom":"ASSET7","index":"0.000005423895938150"},{"denom":"ASSET8","index":"0.000007077857204393"},{"denom":"ASSET9","index":"0.000003056874840288"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003155948059833"},{"denom":"ASSET1","index":"0.000026789841893667"},{"denom":"ASSET10","index":"0.000021451154188244"},{"denom":"ASSET11","index":"0.000026640130662201"},{"denom":"ASSET12","index":"0.000025435769508540"},{"denom":"ASSET13","index":"0.000008370086775831"},{"denom":"ASSET14","index":"0.000024440800445484"},{"denom":"ASSET15","index":"0.000019309084443140"},{"denom":"ASSET16","index":"0.000011879786354964"},{"denom":"ASSET17","index":"0.000009347672781307"},{"denom":"ASSET18","index":"0.000003850232310781"},{"denom":"ASSET2","index":"0.000008118311447694"},{"denom":"ASSET3","index":"0.000002251791235916"},{"denom":"ASSET4","index":"0.000021717604836949"},{"denom":"ASSET5","index":"0.000001754185821919"},{"denom":"ASSET6","index":"0.000007079049104243"},{"denom":"ASSET7","index":"0.000011127710678967"},{"denom":"ASSET8","index":"0.000015216376583965"},{"denom":"ASSET9","index":"0.000006456241851980"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001629017625409"},{"denom":"ASSET1","index":"0.000013583500814952"},{"denom":"ASSET10","index":"0.000009463617777698"},{"denom":"ASSET11","index":"0.000013140742178302"},{"denom":"ASSET12","index":"0.000011833351109704"},{"denom":"ASSET13","index":"0.000004072544063523"},{"denom":"ASSET14","index":"0.000012276109746354"},{"denom":"ASSET15","index":"0.000008777202658616"},{"denom":"ASSET16","index":"0.000006119258515961"},{"denom":"ASSET17","index":"0.000004345439323848"},{"denom":"ASSET18","index":"0.000002070383939302"},{"denom":"ASSET2","index":"0.000004009889539469"},{"denom":"ASSET3","index":"0.000001172335761192"},{"denom":"ASSET4","index":"0.000011039727138351"},{"denom":"ASSET5","index":"0.000000910579082921"},{"denom":"ASSET6","index":"0.000003704970855739"},{"denom":"ASSET7","index":"0.000005675107556554"},{"denom":"ASSET8","index":"0.000007404372420450"},{"denom":"ASSET9","index":"0.000003198165372278"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003300821213878"},{"denom":"ASSET1","index":"0.000028019420341436"},{"denom":"ASSET10","index":"0.000022435320069293"},{"denom":"ASSET11","index":"0.000027862926397945"},{"denom":"ASSET12","index":"0.000026603097941410"},{"denom":"ASSET13","index":"0.000008754572034100"},{"denom":"ASSET14","index":"0.000025562969906661"},{"denom":"ASSET15","index":"0.000020195785636702"},{"denom":"ASSET16","index":"0.000012425527462944"},{"denom":"ASSET17","index":"0.000009776022796414"},{"denom":"ASSET18","index":"0.000004027118689751"},{"denom":"ASSET2","index":"0.000008490998812362"},{"denom":"ASSET3","index":"0.000002354733406852"},{"denom":"ASSET4","index":"0.000022715681634045"},{"denom":"ASSET5","index":"0.000001835160700580"},{"denom":"ASSET6","index":"0.000007403741836767"},{"denom":"ASSET7","index":"0.000011639103500846"},{"denom":"ASSET8","index":"0.000015914079386056"},{"denom":"ASSET9","index":"0.000006752470475547"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001599876133405"},{"denom":"ASSET1","index":"0.000013345434681176"},{"denom":"ASSET10","index":"0.000009297530322905"},{"denom":"ASSET11","index":"0.000012909953167223"},{"denom":"ASSET12","index":"0.000011625282701060"},{"denom":"ASSET13","index":"0.000004000208763886"},{"denom":"ASSET14","index":"0.000012059727354266"},{"denom":"ASSET15","index":"0.000008622533976277"},{"denom":"ASSET16","index":"0.000006011718614052"},{"denom":"ASSET17","index":"0.000004268755697491"},{"denom":"ASSET18","index":"0.000002033283925863"},{"denom":"ASSET2","index":"0.000003939033979783"},{"denom":"ASSET3","index":"0.000001151952290481"},{"denom":"ASSET4","index":"0.000010845563418934"},{"denom":"ASSET5","index":"0.000000893773964352"},{"denom":"ASSET6","index":"0.000003640418084501"},{"denom":"ASSET7","index":"0.000005575200239351"},{"denom":"ASSET8","index":"0.000007274615004517"},{"denom":"ASSET9","index":"0.000003141688064949"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003205518103121"},{"denom":"ASSET1","index":"0.000027209804037075"},{"denom":"ASSET10","index":"0.000021755111918776"},{"denom":"ASSET11","index":"0.000027048910570117"},{"denom":"ASSET12","index":"0.000025809934262776"},{"denom":"ASSET13","index":"0.000008496852467218"},{"denom":"ASSET14","index":"0.000024820667393427"},{"denom":"ASSET15","index":"0.000019589132093549"},{"denom":"ASSET16","index":"0.000012068310128279"},{"denom":"ASSET17","index":"0.000009484236214143"},{"denom":"ASSET18","index":"0.000003912244660385"},{"denom":"ASSET2","index":"0.000008242746790311"},{"denom":"ASSET3","index":"0.000002287536756020"},{"denom":"ASSET4","index":"0.000022059248469095"},{"denom":"ASSET5","index":"0.000001781848402938"},{"denom":"ASSET6","index":"0.000007192715838846"},{"denom":"ASSET7","index":"0.000011303047666497"},{"denom":"ASSET8","index":"0.000015447099928639"},{"denom":"ASSET9","index":"0.000006555210966575"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001693699328345"},{"denom":"ASSET1","index":"0.000014121235265065"},{"denom":"ASSET10","index":"0.000009838380374958"},{"denom":"ASSET11","index":"0.000013660499756586"},{"denom":"ASSET12","index":"0.000012301569616423"},{"denom":"ASSET13","index":"0.000004233563721295"},{"denom":"ASSET14","index":"0.000012760935925768"},{"denom":"ASSET15","index":"0.000009123658427184"},{"denom":"ASSET16","index":"0.000006361299175013"},{"denom":"ASSET17","index":"0.000004517672541531"},{"denom":"ASSET18","index":"0.000002151696438556"},{"denom":"ASSET2","index":"0.000004168526762446"},{"denom":"ASSET3","index":"0.000001219271828530"},{"denom":"ASSET4","index":"0.000011475942538822"},{"denom":"ASSET5","index":"0.000000946116601363"},{"denom":"ASSET6","index":"0.000003852241762569"},{"denom":"ASSET7","index":"0.000005899194467400"},{"denom":"ASSET8","index":"0.000007698322129037"},{"denom":"ASSET9","index":"0.000003325100096108"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003374964488748"},{"denom":"ASSET1","index":"0.000028642371697541"},{"denom":"ASSET10","index":"0.000022886358038922"},{"denom":"ASSET11","index":"0.000028469467846578"},{"denom":"ASSET12","index":"0.000027158021136678"},{"denom":"ASSET13","index":"0.000008943216545101"},{"denom":"ASSET14","index":"0.000026126056006670"},{"denom":"ASSET15","index":"0.000020609372613995"},{"denom":"ASSET16","index":"0.000012704733728960"},{"denom":"ASSET17","index":"0.000009980025667275"},{"denom":"ASSET18","index":"0.000004119620826099"},{"denom":"ASSET2","index":"0.000008675935346246"},{"denom":"ASSET3","index":"0.000002408702445844"},{"denom":"ASSET4","index":"0.000023220763838917"},{"denom":"ASSET5","index":"0.000001876440105393"},{"denom":"ASSET6","index":"0.000007572949563502"},{"denom":"ASSET7","index":"0.000011897934490553"},{"denom":"ASSET8","index":"0.000016258236310419"},{"denom":"ASSET9","index":"0.000006900426530312"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001608105877482"},{"denom":"ASSET1","index":"0.000013418457239972"},{"denom":"ASSET10","index":"0.000009349233819318"},{"denom":"ASSET11","index":"0.000012981594753349"},{"denom":"ASSET12","index":"0.000011689837573077"},{"denom":"ASSET13","index":"0.000004022147721664"},{"denom":"ASSET14","index":"0.000012126700059700"},{"denom":"ASSET15","index":"0.000008669460725910"},{"denom":"ASSET16","index":"0.000006044519750254"},{"denom":"ASSET17","index":"0.000004293303747844"},{"denom":"ASSET18","index":"0.000002044968364105"},{"denom":"ASSET2","index":"0.000003960007798998"},{"denom":"ASSET3","index":"0.000001158062195142"},{"denom":"ASSET4","index":"0.000010904614913932"},{"denom":"ASSET5","index":"0.000000898204336720"},{"denom":"ASSET6","index":"0.000003660606353425"},{"denom":"ASSET7","index":"0.000005605774235672"},{"denom":"ASSET8","index":"0.000007313680595011"},{"denom":"ASSET9","index":"0.000003159720916176"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003138779820137"},{"denom":"ASSET1","index":"0.000026638851971456"},{"denom":"ASSET10","index":"0.000021228354320839"},{"denom":"ASSET11","index":"0.000026463611656062"},{"denom":"ASSET12","index":"0.000025215335343685"},{"denom":"ASSET13","index":"0.000008309803474369"},{"denom":"ASSET14","index":"0.000024294710395367"},{"denom":"ASSET15","index":"0.000019126240972581"},{"denom":"ASSET16","index":"0.000011819368577720"},{"denom":"ASSET17","index":"0.000009266335892783"},{"denom":"ASSET18","index":"0.000003836527514127"},{"denom":"ASSET2","index":"0.000008063422586049"},{"denom":"ASSET3","index":"0.000002240662109326"},{"denom":"ASSET4","index":"0.000021597223596640"},{"denom":"ASSET5","index":"0.000001744975814867"},{"denom":"ASSET6","index":"0.000007047692266012"},{"denom":"ASSET7","index":"0.000011067413421526"},{"denom":"ASSET8","index":"0.000015106336478322"},{"denom":"ASSET9","index":"0.000006414890297355"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001636130781121"},{"denom":"ASSET1","index":"0.000013651986161797"},{"denom":"ASSET10","index":"0.000009511743354655"},{"denom":"ASSET11","index":"0.000013205516575762"},{"denom":"ASSET12","index":"0.000011891065744828"},{"denom":"ASSET13","index":"0.000004093100055822"},{"denom":"ASSET14","index":"0.000012337535330862"},{"denom":"ASSET15","index":"0.000008821240702961"},{"denom":"ASSET16","index":"0.000006147969392790"},{"denom":"ASSET17","index":"0.000004367637254688"},{"denom":"ASSET18","index":"0.000002079827264137"},{"denom":"ASSET2","index":"0.000004029318686389"},{"denom":"ASSET3","index":"0.000001178568783011"},{"denom":"ASSET4","index":"0.000011095185178418"},{"denom":"ASSET5","index":"0.000000915123996220"},{"denom":"ASSET6","index":"0.000003724277354315"},{"denom":"ASSET7","index":"0.000005701499806755"},{"denom":"ASSET8","index":"0.000007440235399574"},{"denom":"ASSET9","index":"0.000003214026398847"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003135138573804"},{"denom":"ASSET1","index":"0.000026601246250396"},{"denom":"ASSET10","index":"0.000021147351718785"},{"denom":"ASSET11","index":"0.000026411423528042"},{"denom":"ASSET12","index":"0.000025139747174388"},{"denom":"ASSET13","index":"0.000008292603180789"},{"denom":"ASSET14","index":"0.000024256405788980"},{"denom":"ASSET15","index":"0.000019064302195638"},{"denom":"ASSET16","index":"0.000011804656377100"},{"denom":"ASSET17","index":"0.000009238224400983"},{"denom":"ASSET18","index":"0.000003834531376561"},{"denom":"ASSET2","index":"0.000008049169006780"},{"denom":"ASSET3","index":"0.000002239375819558"},{"denom":"ASSET4","index":"0.000021568278304468"},{"denom":"ASSET5","index":"0.000001743998311515"},{"denom":"ASSET6","index":"0.000007041675703373"},{"denom":"ASSET7","index":"0.000011051161098588"},{"denom":"ASSET8","index":"0.000015073103234225"},{"denom":"ASSET9","index":"0.000006402150772125"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001682560247115"},{"denom":"ASSET1","index":"0.000014026482890055"},{"denom":"ASSET10","index":"0.000009772411969975"},{"denom":"ASSET11","index":"0.000013568579422963"},{"denom":"ASSET12","index":"0.000012218368466479"},{"denom":"ASSET13","index":"0.000004205057792371"},{"denom":"ASSET14","index":"0.000012675600520863"},{"denom":"ASSET15","index":"0.000009062728737253"},{"denom":"ASSET16","index":"0.000006318664998244"},{"denom":"ASSET17","index":"0.000004487051129876"},{"denom":"ASSET18","index":"0.000002137778063373"},{"denom":"ASSET2","index":"0.000004140602172369"},{"denom":"ASSET3","index":"0.000001211228525856"},{"denom":"ASSET4","index":"0.000011398573549589"},{"denom":"ASSET5","index":"0.000000939977791684"},{"denom":"ASSET6","index":"0.000003825709612155"},{"denom":"ASSET7","index":"0.000005859418705735"},{"denom":"ASSET8","index":"0.000007646047922643"},{"denom":"ASSET9","index":"0.000003302679112354"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003237426875283"},{"denom":"ASSET1","index":"0.000027451710154634"},{"denom":"ASSET10","index":"0.000021835512998164"},{"denom":"ASSET11","index":"0.000027259736654219"},{"denom":"ASSET12","index":"0.000025953768913429"},{"denom":"ASSET13","index":"0.000008559484494503"},{"denom":"ASSET14","index":"0.000025032165857410"},{"denom":"ASSET15","index":"0.000019681806512765"},{"denom":"ASSET16","index":"0.000012183244440341"},{"denom":"ASSET17","index":"0.000009537367134186"},{"denom":"ASSET18","index":"0.000003957397976948"},{"denom":"ASSET2","index":"0.000008307936552813"},{"denom":"ASSET3","index":"0.000002310954839376"},{"denom":"ASSET4","index":"0.000022256988295109"},{"denom":"ASSET5","index":"0.000001799896462688"},{"denom":"ASSET6","index":"0.000007265619632425"},{"denom":"ASSET7","index":"0.000011405823532836"},{"denom":"ASSET8","index":"0.000015559935461923"},{"denom":"ASSET9","index":"0.000006608212131764"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001576738934866"},{"denom":"ASSET1","index":"0.000013143695761043"},{"denom":"ASSET10","index":"0.000009157699733702"},{"denom":"ASSET11","index":"0.000012715663698192"},{"denom":"ASSET12","index":"0.000011450067913139"},{"denom":"ASSET13","index":"0.000003940585946017"},{"denom":"ASSET14","index":"0.000011878099975991"},{"denom":"ASSET15","index":"0.000008492526135047"},{"denom":"ASSET16","index":"0.000005920970048209"},{"denom":"ASSET17","index":"0.000004204637159643"},{"denom":"ASSET18","index":"0.000002003089142854"},{"denom":"ASSET2","index":"0.000003880039170918"},{"denom":"ASSET3","index":"0.000001134411105672"},{"denom":"ASSET4","index":"0.000010681460240357"},{"denom":"ASSET5","index":"0.000000880451021229"},{"denom":"ASSET6","index":"0.000003584873642311"},{"denom":"ASSET7","index":"0.000005491256130493"},{"denom":"ASSET8","index":"0.000007165542647463"},{"denom":"ASSET9","index":"0.000003094612949497"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003150995592381"},{"denom":"ASSET1","index":"0.000026735906318713"},{"denom":"ASSET10","index":"0.000021370928366269"},{"denom":"ASSET11","index":"0.000026577057751538"},{"denom":"ASSET12","index":"0.000025356196217934"},{"denom":"ASSET13","index":"0.000008349049177946"},{"denom":"ASSET14","index":"0.000024388519635576"},{"denom":"ASSET15","index":"0.000019243917228958"},{"denom":"ASSET16","index":"0.000011858566692713"},{"denom":"ASSET17","index":"0.000009317567603522"},{"denom":"ASSET18","index":"0.000003845362315572"},{"denom":"ASSET2","index":"0.000008099062572798"},{"denom":"ASSET3","index":"0.000002247710476517"},{"denom":"ASSET4","index":"0.000021674805285583"},{"denom":"ASSET5","index":"0.000001751018453776"},{"denom":"ASSET6","index":"0.000007067532365991"},{"denom":"ASSET7","index":"0.000011106766164564"},{"denom":"ASSET8","index":"0.000015177641578730"},{"denom":"ASSET9","index":"0.000006441123951375"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001735896630597"},{"denom":"ASSET1","index":"0.000014474259966527"},{"denom":"ASSET10","index":"0.000010084408758147"},{"denom":"ASSET11","index":"0.000014002239606889"},{"denom":"ASSET12","index":"0.000012609068112910"},{"denom":"ASSET13","index":"0.000004339122939062"},{"denom":"ASSET14","index":"0.000013079851197687"},{"denom":"ASSET15","index":"0.000009351942040176"},{"denom":"ASSET16","index":"0.000006520438519776"},{"denom":"ASSET17","index":"0.000004630501168930"},{"denom":"ASSET18","index":"0.000002205442440512"},{"denom":"ASSET2","index":"0.000004272310096544"},{"denom":"ASSET3","index":"0.000001249647610052"},{"denom":"ASSET4","index":"0.000011762772107687"},{"denom":"ASSET5","index":"0.000000970023491367"},{"denom":"ASSET6","index":"0.000003948144082847"},{"denom":"ASSET7","index":"0.000006046562247845"},{"denom":"ASSET8","index":"0.000007890101791387"},{"denom":"ASSET9","index":"0.000003408073605830"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003300304206809"},{"denom":"ASSET1","index":"0.000027981868665615"},{"denom":"ASSET10","index":"0.000022221493016134"},{"denom":"ASSET11","index":"0.000027777532118325"},{"denom":"ASSET12","index":"0.000026428557640091"},{"denom":"ASSET13","index":"0.000008720047886627"},{"denom":"ASSET14","index":"0.000025512138164618"},{"denom":"ASSET15","index":"0.000020036362120252"},{"denom":"ASSET16","index":"0.000012421157074829"},{"denom":"ASSET17","index":"0.000009711490167791"},{"denom":"ASSET18","index":"0.000004036282970136"},{"denom":"ASSET2","index":"0.000008465189250700"},{"denom":"ASSET3","index":"0.000002356240815614"},{"denom":"ASSET4","index":"0.000022687774056492"},{"denom":"ASSET5","index":"0.000001835200922241"},{"denom":"ASSET6","index":"0.000007409270759323"},{"denom":"ASSET7","index":"0.000011627060915230"},{"denom":"ASSET8","index":"0.000015852235873304"},{"denom":"ASSET9","index":"0.000006733690564218"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001726734301691"},{"denom":"ASSET1","index":"0.000014395988805148"},{"denom":"ASSET10","index":"0.000010029746380297"},{"denom":"ASSET11","index":"0.000013926529312304"},{"denom":"ASSET12","index":"0.000012540835608608"},{"denom":"ASSET13","index":"0.000004315874534955"},{"denom":"ASSET14","index":"0.000013009526126035"},{"denom":"ASSET15","index":"0.000009301526659210"},{"denom":"ASSET16","index":"0.000006485154189852"},{"denom":"ASSET17","index":"0.000004605778267637"},{"denom":"ASSET18","index":"0.000002193886868281"},{"denom":"ASSET2","index":"0.000004249742648985"},{"denom":"ASSET3","index":"0.000001243048763609"},{"denom":"ASSET4","index":"0.000011699192013329"},{"denom":"ASSET5","index":"0.000000964679662201"},{"denom":"ASSET6","index":"0.000003926772973318"},{"denom":"ASSET7","index":"0.000006014156746171"},{"denom":"ASSET8","index":"0.000007847778630999"},{"denom":"ASSET9","index":"0.000003389643643667"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003383074331503"},{"denom":"ASSET1","index":"0.000028697774885580"},{"denom":"ASSET10","index":"0.000022880621123289"},{"denom":"ASSET11","index":"0.000028511966470743"},{"denom":"ASSET12","index":"0.000027173358086556"},{"denom":"ASSET13","index":"0.000008954537947194"},{"denom":"ASSET14","index":"0.000026172910691250"},{"denom":"ASSET15","index":"0.000020614154391480"},{"denom":"ASSET16","index":"0.000012732692592075"},{"denom":"ASSET17","index":"0.000009985655741818"},{"denom":"ASSET18","index":"0.000004132359094826"},{"denom":"ASSET2","index":"0.000008689052893949"},{"denom":"ASSET3","index":"0.000002414485946546"},{"denom":"ASSET4","index":"0.000023266612079392"},{"denom":"ASSET5","index":"0.000001880944791026"},{"denom":"ASSET6","index":"0.000007591453768301"},{"denom":"ASSET7","index":"0.000011922604903868"},{"denom":"ASSET8","index":"0.000016278329144958"},{"denom":"ASSET9","index":"0.000006911169878531"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001436232590899"},{"denom":"ASSET1","index":"0.000011976183987962"},{"denom":"ASSET10","index":"0.000008344549248442"},{"denom":"ASSET11","index":"0.000011585862202045"},{"denom":"ASSET12","index":"0.000010432581326504"},{"denom":"ASSET13","index":"0.000003589949888597"},{"denom":"ASSET14","index":"0.000010822903112421"},{"denom":"ASSET15","index":"0.000007738224144105"},{"denom":"ASSET16","index":"0.000005395030251301"},{"denom":"ASSET17","index":"0.000003831216753031"},{"denom":"ASSET18","index":"0.000001825291199515"},{"denom":"ASSET2","index":"0.000003535633264667"},{"denom":"ASSET3","index":"0.000001033279031975"},{"denom":"ASSET4","index":"0.000009732781101914"},{"denom":"ASSET5","index":"0.000000802117585946"},{"denom":"ASSET6","index":"0.000003266576499617"},{"denom":"ASSET7","index":"0.000005003445288083"},{"denom":"ASSET8","index":"0.000006528100290032"},{"denom":"ASSET9","index":"0.000002819411735168"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003006064648013"},{"denom":"ASSET1","index":"0.000025531157590212"},{"denom":"ASSET10","index":"0.000020524407173472"},{"denom":"ASSET11","index":"0.000025409258384489"},{"denom":"ASSET12","index":"0.000024300714605646"},{"denom":"ASSET13","index":"0.000007986286383048"},{"denom":"ASSET14","index":"0.000023298685931189"},{"denom":"ASSET15","index":"0.000018459726056254"},{"denom":"ASSET16","index":"0.000011316095008653"},{"denom":"ASSET17","index":"0.000008930145684163"},{"denom":"ASSET18","index":"0.000003662445744281"},{"denom":"ASSET2","index":"0.000007743120539446"},{"denom":"ASSET3","index":"0.000002143639104141"},{"denom":"ASSET4","index":"0.000020695936675740"},{"denom":"ASSET5","index":"0.000001670457298921"},{"denom":"ASSET6","index":"0.000006739935351518"},{"denom":"ASSET7","index":"0.000010603283023237"},{"denom":"ASSET8","index":"0.000014518439118465"},{"denom":"ASSET9","index":"0.000006156725809403"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001476546163568"},{"denom":"ASSET1","index":"0.000012315891963405"},{"denom":"ASSET10","index":"0.000008580298213179"},{"denom":"ASSET11","index":"0.000011914434711559"},{"denom":"ASSET12","index":"0.000010728207916557"},{"denom":"ASSET13","index":"0.000003691365408921"},{"denom":"ASSET14","index":"0.000011129665168403"},{"denom":"ASSET15","index":"0.000007957699254808"},{"denom":"ASSET16","index":"0.000005547821683700"},{"denom":"ASSET17","index":"0.000003939724556249"},{"denom":"ASSET18","index":"0.000001876869355381"},{"denom":"ASSET2","index":"0.000003635796467281"},{"denom":"ASSET3","index":"0.000001062614251355"},{"denom":"ASSET4","index":"0.000010009213855342"},{"denom":"ASSET5","index":"0.000000825595704361"},{"denom":"ASSET6","index":"0.000003359085819117"},{"denom":"ASSET7","index":"0.000005145230371820"},{"denom":"ASSET8","index":"0.000006713635398099"},{"denom":"ASSET9","index":"0.000002899791505564"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000002611689387046"},{"denom":"ASSET1","index":"0.000022118950462866"},{"denom":"ASSET10","index":"0.000017388824351878"},{"denom":"ASSET11","index":"0.000021911701626113"},{"denom":"ASSET12","index":"0.000020757567192719"},{"denom":"ASSET13","index":"0.000006870825151743"},{"denom":"ASSET14","index":"0.000020152250667519"},{"denom":"ASSET15","index":"0.000015711809347683"},{"denom":"ASSET16","index":"0.000009830001439303"},{"denom":"ASSET17","index":"0.000007627368499381"},{"denom":"ASSET18","index":"0.000003205559295774"},{"denom":"ASSET2","index":"0.000006678615536452"},{"denom":"ASSET3","index":"0.000001865584989735"},{"denom":"ASSET4","index":"0.000017938012267073"},{"denom":"ASSET5","index":"0.000001453547274796"},{"denom":"ASSET6","index":"0.000005870892100855"},{"denom":"ASSET7","index":"0.000009195154067126"},{"denom":"ASSET8","index":"0.000012492245582088"},{"denom":"ASSET9","index":"0.000005313335607946"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000000860911540335"},{"denom":"ASSET1","index":"0.000007178593209511"},{"denom":"ASSET10","index":"0.000005001581264509"},{"denom":"ASSET11","index":"0.000006944753046495"},{"denom":"ASSET12","index":"0.000006253725385275"},{"denom":"ASSET13","index":"0.000002152029021603"},{"denom":"ASSET14","index":"0.000006487065889823"},{"denom":"ASSET15","index":"0.000004638329558286"},{"denom":"ASSET16","index":"0.000003233789604786"},{"denom":"ASSET17","index":"0.000002296430318850"},{"denom":"ASSET18","index":"0.000001093752386415"},{"denom":"ASSET2","index":"0.000002119051562716"},{"denom":"ASSET3","index":"0.000000619576500299"},{"denom":"ASSET4","index":"0.000005834012272169"},{"denom":"ASSET5","index":"0.000000481171104668"},{"denom":"ASSET6","index":"0.000001958161536025"},{"denom":"ASSET7","index":"0.000002998950124834"},{"denom":"ASSET8","index":"0.000003913325121242"},{"denom":"ASSET9","index":"0.000001690344597186"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000002357406510396"},{"denom":"ASSET1","index":"0.000020099972826550"},{"denom":"ASSET10","index":"0.000016611857270119"},{"denom":"ASSET11","index":"0.000020122040980663"},{"denom":"ASSET12","index":"0.000019473664705632"},{"denom":"ASSET13","index":"0.000006342954228467"},{"denom":"ASSET14","index":"0.000018379978414574"},{"denom":"ASSET15","index":"0.000014858739059306"},{"denom":"ASSET16","index":"0.000008878274052948"},{"denom":"ASSET17","index":"0.000007156982288871"},{"denom":"ASSET18","index":"0.000002845018303307"},{"denom":"ASSET2","index":"0.000006129987919866"},{"denom":"ASSET3","index":"0.000001678183905493"},{"denom":"ASSET4","index":"0.000016284739258605"},{"denom":"ASSET5","index":"0.000001308892339296"},{"denom":"ASSET6","index":"0.000005269046474537"},{"denom":"ASSET7","index":"0.000008337197620164"},{"denom":"ASSET8","index":"0.000011530009666752"},{"denom":"ASSET9","index":"0.000004871853664260"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001198976216272"},{"denom":"ASSET1","index":"0.000010001315625623"},{"denom":"ASSET10","index":"0.000006967712250892"},{"denom":"ASSET11","index":"0.000009674322112094"},{"denom":"ASSET12","index":"0.000008711677656379"},{"denom":"ASSET13","index":"0.000002997949876371"},{"denom":"ASSET14","index":"0.000009037652498526"},{"denom":"ASSET15","index":"0.000006461432574183"},{"denom":"ASSET16","index":"0.000004504564849919"},{"denom":"ASSET17","index":"0.000003199646809949"},{"denom":"ASSET18","index":"0.000001523932387037"},{"denom":"ASSET2","index":"0.000002952109664194"},{"denom":"ASSET3","index":"0.000000862814660308"},{"denom":"ASSET4","index":"0.000008126960283277"},{"denom":"ASSET5","index":"0.000000670285769165"},{"denom":"ASSET6","index":"0.000002728001960218"},{"denom":"ASSET7","index":"0.000004177571336390"},{"denom":"ASSET8","index":"0.000005451929234909"},{"denom":"ASSET9","index":"0.000002354149563130"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000002792091306062"},{"denom":"ASSET1","index":"0.000023760392481519"},{"denom":"ASSET10","index":"0.000019330735214415"},{"denom":"ASSET11","index":"0.000023705763948043"},{"denom":"ASSET12","index":"0.000022788595153270"},{"denom":"ASSET13","index":"0.000007460432475948"},{"denom":"ASSET14","index":"0.000021701401606991"},{"denom":"ASSET15","index":"0.000017344296121870"},{"denom":"ASSET16","index":"0.000010515175863945"},{"denom":"ASSET17","index":"0.000008375559402161"},{"denom":"ASSET18","index":"0.000003388923471278"},{"denom":"ASSET2","index":"0.000007222909907971"},{"denom":"ASSET3","index":"0.000001989926471838"},{"denom":"ASSET4","index":"0.000019255294602933"},{"denom":"ASSET5","index":"0.000001551437823125"},{"denom":"ASSET6","index":"0.000006253588147261"},{"denom":"ASSET7","index":"0.000009862028954195"},{"denom":"ASSET8","index":"0.000013562244421912"},{"denom":"ASSET9","index":"0.000005741841810541"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001507638919625"},{"denom":"ASSET1","index":"0.000012569401049902"},{"denom":"ASSET10","index":"0.000008757228353136"},{"denom":"ASSET11","index":"0.000012160184771718"},{"denom":"ASSET12","index":"0.000010949766096248"},{"denom":"ASSET13","index":"0.000003769097299062"},{"denom":"ASSET14","index":"0.000011358982374432"},{"denom":"ASSET15","index":"0.000008124020006893"},{"denom":"ASSET16","index":"0.000005660107258249"},{"denom":"ASSET17","index":"0.000004018934605743"},{"denom":"ASSET18","index":"0.000001912547658039"},{"denom":"ASSET2","index":"0.000003708791742277"},{"denom":"ASSET3","index":"0.000001085500022130"},{"denom":"ASSET4","index":"0.000010217484335287"},{"denom":"ASSET5","index":"0.000000839970255220"},{"denom":"ASSET6","index":"0.000003428801657204"},{"denom":"ASSET7","index":"0.000005250890980065"},{"denom":"ASSET8","index":"0.000006853295774638"},{"denom":"ASSET9","index":"0.000002959279822235"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003131246414749"},{"denom":"ASSET1","index":"0.000026589761836242"},{"denom":"ASSET10","index":"0.000021355242603721"},{"denom":"ASSET11","index":"0.000026458316408852"},{"denom":"ASSET12","index":"0.000025293988029420"},{"denom":"ASSET13","index":"0.000008316673174883"},{"denom":"ASSET14","index":"0.000024263343459355"},{"denom":"ASSET15","index":"0.000019213959771091"},{"denom":"ASSET16","index":"0.000011784585795875"},{"denom":"ASSET17","index":"0.000009292893547134"},{"denom":"ASSET18","index":"0.000003813004198036"},{"denom":"ASSET2","index":"0.000008060944762894"},{"denom":"ASSET3","index":"0.000002234070199415"},{"denom":"ASSET4","index":"0.000021557233504015"},{"denom":"ASSET5","index":"0.000001738116490695"},{"denom":"ASSET6","index":"0.000007021386599103"},{"denom":"ASSET7","index":"0.000011043212117572"},{"denom":"ASSET8","index":"0.000015117900391662"},{"denom":"ASSET9","index":"0.000006411442995536"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001538667310820"},{"denom":"ASSET1","index":"0.000012827917927858"},{"denom":"ASSET10","index":"0.000008937244372687"},{"denom":"ASSET11","index":"0.000012409488429871"},{"denom":"ASSET12","index":"0.000011174685151587"},{"denom":"ASSET13","index":"0.000003845530209513"},{"denom":"ASSET14","index":"0.000011592355937882"},{"denom":"ASSET15","index":"0.000008288166520415"},{"denom":"ASSET16","index":"0.000005778727600031"},{"denom":"ASSET17","index":"0.000004103871540546"},{"denom":"ASSET18","index":"0.000001954820673732"},{"denom":"ASSET2","index":"0.000003786730053405"},{"denom":"ASSET3","index":"0.000001107719069920"},{"denom":"ASSET4","index":"0.000010424698644316"},{"denom":"ASSET5","index":"0.000000859620346726"},{"denom":"ASSET6","index":"0.000003499178322240"},{"denom":"ASSET7","index":"0.000005359160034507"},{"denom":"ASSET8","index":"0.000006993045662639"},{"denom":"ASSET9","index":"0.000003020431244761"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003070496060295"},{"denom":"ASSET1","index":"0.000026054009108675"},{"denom":"ASSET10","index":"0.000020821706468932"},{"denom":"ASSET11","index":"0.000025897661631707"},{"denom":"ASSET12","index":"0.000024706407518076"},{"denom":"ASSET13","index":"0.000008135385272267"},{"denom":"ASSET14","index":"0.000023765921524780"},{"denom":"ASSET15","index":"0.000018749935123185"},{"denom":"ASSET16","index":"0.000011556337558875"},{"denom":"ASSET17","index":"0.000009079232430047"},{"denom":"ASSET18","index":"0.000003747682066764"},{"denom":"ASSET2","index":"0.000007892419371659"},{"denom":"ASSET3","index":"0.000002191201298955"},{"denom":"ASSET4","index":"0.000021122052487200"},{"denom":"ASSET5","index":"0.000001706992646915"},{"denom":"ASSET6","index":"0.000006888142834266"},{"denom":"ASSET7","index":"0.000010823268476718"},{"denom":"ASSET8","index":"0.000014789657857476"},{"denom":"ASSET9","index":"0.000006276911852268"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001679222100186"},{"denom":"ASSET1","index":"0.000013999028794594"},{"denom":"ASSET10","index":"0.000009753438641601"},{"denom":"ASSET11","index":"0.000013542280383343"},{"denom":"ASSET12","index":"0.000012194769233410"},{"denom":"ASSET13","index":"0.000004196505199295"},{"denom":"ASSET14","index":"0.000012650484277214"},{"denom":"ASSET15","index":"0.000009045065257184"},{"denom":"ASSET16","index":"0.000006306124840851"},{"denom":"ASSET17","index":"0.000004478614512126"},{"denom":"ASSET18","index":"0.000002133387092820"},{"denom":"ASSET2","index":"0.000004132436417626"},{"denom":"ASSET3","index":"0.000001208523228411"},{"denom":"ASSET4","index":"0.000011376342215965"},{"denom":"ASSET5","index":"0.000000938297641211"},{"denom":"ASSET6","index":"0.000003818809397684"},{"denom":"ASSET7","index":"0.000005848343062154"},{"denom":"ASSET8","index":"0.000007631418590690"},{"denom":"ASSET9","index":"0.000003295925469872"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003295755498274"},{"denom":"ASSET1","index":"0.000027960125957180"},{"denom":"ASSET10","index":"0.000022298091456525"},{"denom":"ASSET11","index":"0.000027779779629540"},{"denom":"ASSET12","index":"0.000026478335493542"},{"denom":"ASSET13","index":"0.000008724566942758"},{"denom":"ASSET14","index":"0.000025500389224880"},{"denom":"ASSET15","index":"0.000020088119547171"},{"denom":"ASSET16","index":"0.000012404652968467"},{"denom":"ASSET17","index":"0.000009730254100732"},{"denom":"ASSET18","index":"0.000004025857251145"},{"denom":"ASSET2","index":"0.000008465992991141"},{"denom":"ASSET3","index":"0.000002352288079447"},{"denom":"ASSET4","index":"0.000022667879187178"},{"denom":"ASSET5","index":"0.000001832649164275"},{"denom":"ASSET6","index":"0.000007396215489940"},{"denom":"ASSET7","index":"0.000011616026271508"},{"denom":"ASSET8","index":"0.000015861127767022"},{"denom":"ASSET9","index":"0.000006733269226830"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001488486853561"},{"denom":"ASSET1","index":"0.000012409943784184"},{"denom":"ASSET10","index":"0.000008645838046025"},{"denom":"ASSET11","index":"0.000012005445379346"},{"denom":"ASSET12","index":"0.000010810451131374"},{"denom":"ASSET13","index":"0.000003720376180879"},{"denom":"ASSET14","index":"0.000011214949536212"},{"denom":"ASSET15","index":"0.000008018487089665"},{"denom":"ASSET16","index":"0.000005590655707614"},{"denom":"ASSET17","index":"0.000003970139229188"},{"denom":"ASSET18","index":"0.000001891303352350"},{"denom":"ASSET2","index":"0.000003663191375205"},{"denom":"ASSET3","index":"0.000001071374153354"},{"denom":"ASSET4","index":"0.000010085549624159"},{"denom":"ASSET5","index":"0.000000831702541340"},{"denom":"ASSET6","index":"0.000003384835924059"},{"denom":"ASSET7","index":"0.000005184475396726"},{"denom":"ASSET8","index":"0.000006765467082995"},{"denom":"ASSET9","index":"0.000002921470807498"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003140601357292"},{"denom":"ASSET1","index":"0.000026678854887219"},{"denom":"ASSET10","index":"0.000021467437308134"},{"denom":"ASSET11","index":"0.000026557150856893"},{"denom":"ASSET12","index":"0.000025409189778577"},{"denom":"ASSET13","index":"0.000008348678217638"},{"denom":"ASSET14","index":"0.000024348515645151"},{"denom":"ASSET15","index":"0.000019305257093893"},{"denom":"ASSET16","index":"0.000011824039078448"},{"denom":"ASSET17","index":"0.000009337874135725"},{"denom":"ASSET18","index":"0.000003825021517438"},{"denom":"ASSET2","index":"0.000008092644314938"},{"denom":"ASSET3","index":"0.000002240059115813"},{"denom":"ASSET4","index":"0.000021626536887159"},{"denom":"ASSET5","index":"0.000001745574888449"},{"denom":"ASSET6","index":"0.000007040920669072"},{"denom":"ASSET7","index":"0.000011079696231301"},{"denom":"ASSET8","index":"0.000015176664815864"},{"denom":"ASSET9","index":"0.000006434669973810"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001385039568420"},{"denom":"ASSET1","index":"0.000011547928050470"},{"denom":"ASSET10","index":"0.000008045290512347"},{"denom":"ASSET11","index":"0.000011171268467624"},{"denom":"ASSET12","index":"0.000010059084660007"},{"denom":"ASSET13","index":"0.000003461116009305"},{"denom":"ASSET14","index":"0.000010435744242853"},{"denom":"ASSET15","index":"0.000007461023285412"},{"denom":"ASSET16","index":"0.000005202054396163"},{"denom":"ASSET17","index":"0.000003694427456948"},{"denom":"ASSET18","index":"0.000001759721935608"},{"denom":"ASSET2","index":"0.000003408719794369"},{"denom":"ASSET3","index":"0.000000996516691625"},{"denom":"ASSET4","index":"0.000009383865512804"},{"denom":"ASSET5","index":"0.000000774079930102"},{"denom":"ASSET6","index":"0.000003149704543173"},{"denom":"ASSET7","index":"0.000004824406205487"},{"denom":"ASSET8","index":"0.000006294466047200"},{"denom":"ASSET9","index":"0.000002718671529731"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000002978674281858"},{"denom":"ASSET1","index":"0.000025310372422717"},{"denom":"ASSET10","index":"0.000020411345436720"},{"denom":"ASSET11","index":"0.000025206262983954"},{"denom":"ASSET12","index":"0.000024139567910062"},{"denom":"ASSET13","index":"0.000007924745788344"},{"denom":"ASSET14","index":"0.000023102636423037"},{"denom":"ASSET15","index":"0.000018346974201526"},{"denom":"ASSET16","index":"0.000011213830154915"},{"denom":"ASSET17","index":"0.000008871351161454"},{"denom":"ASSET18","index":"0.000003625142276595"},{"denom":"ASSET2","index":"0.000007680838181843"},{"denom":"ASSET3","index":"0.000002123796319816"},{"denom":"ASSET4","index":"0.000020514843977806"},{"denom":"ASSET5","index":"0.000001655567492872"},{"denom":"ASSET6","index":"0.000006676037052519"},{"denom":"ASSET7","index":"0.000010510115662832"},{"denom":"ASSET8","index":"0.000014407133239162"},{"denom":"ASSET9","index":"0.000006107008804836"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001563741356289"},{"denom":"ASSET1","index":"0.000013036816883138"},{"denom":"ASSET10","index":"0.000009082880828100"},{"denom":"ASSET11","index":"0.000012611783735587"},{"denom":"ASSET12","index":"0.000011356772924286"},{"denom":"ASSET13","index":"0.000003908472310400"},{"denom":"ASSET14","index":"0.000011781101207579"},{"denom":"ASSET15","index":"0.000008423480314776"},{"denom":"ASSET16","index":"0.000005872928997340"},{"denom":"ASSET17","index":"0.000004170681814362"},{"denom":"ASSET18","index":"0.000001986659911066"},{"denom":"ASSET2","index":"0.000003848558848473"},{"denom":"ASSET3","index":"0.000001125668219966"},{"denom":"ASSET4","index":"0.000010594814661429"},{"denom":"ASSET5","index":"0.000000873679247744"},{"denom":"ASSET6","index":"0.000003556392613548"},{"denom":"ASSET7","index":"0.000005446486121273"},{"denom":"ASSET8","index":"0.000007106793880903"},{"denom":"ASSET9","index":"0.000003069683843425"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003115193601728"},{"denom":"ASSET1","index":"0.000026433576226141"},{"denom":"ASSET10","index":"0.000021120836274624"},{"denom":"ASSET11","index":"0.000026274076149270"},{"denom":"ASSET12","index":"0.000025063206789151"},{"denom":"ASSET13","index":"0.000008253838888439"},{"denom":"ASSET14","index":"0.000024111622086359"},{"denom":"ASSET15","index":"0.000019020166052921"},{"denom":"ASSET16","index":"0.000011725264187843"},{"denom":"ASSET17","index":"0.000009210335248597"},{"denom":"ASSET18","index":"0.000003802618681808"},{"denom":"ASSET2","index":"0.000008007094168018"},{"denom":"ASSET3","index":"0.000002223045227271"},{"denom":"ASSET4","index":"0.000021430343290469"},{"denom":"ASSET5","index":"0.000001731871182363"},{"denom":"ASSET6","index":"0.000006989160352022"},{"denom":"ASSET7","index":"0.000010981276608696"},{"denom":"ASSET8","index":"0.000015004007461071"},{"denom":"ASSET9","index":"0.000006368316319391"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001688791638136"},{"denom":"ASSET1","index":"0.000014080258863939"},{"denom":"ASSET10","index":"0.000009809129194434"},{"denom":"ASSET11","index":"0.000013620783833550"},{"denom":"ASSET12","index":"0.000012265553395360"},{"denom":"ASSET13","index":"0.000004220322334414"},{"denom":"ASSET14","index":"0.000012723923918464"},{"denom":"ASSET15","index":"0.000009096721995874"},{"denom":"ASSET16","index":"0.000006342080828109"},{"denom":"ASSET17","index":"0.000004504180706554"},{"denom":"ASSET18","index":"0.000002144953146672"},{"denom":"ASSET2","index":"0.000004156260911908"},{"denom":"ASSET3","index":"0.000001214958013048"},{"denom":"ASSET4","index":"0.000011442695468341"},{"denom":"ASSET5","index":"0.000000943249221039"},{"denom":"ASSET6","index":"0.000003840371828516"},{"denom":"ASSET7","index":"0.000005881501290436"},{"denom":"ASSET8","index":"0.000007675221120608"},{"denom":"ASSET9","index":"0.000003314626361051"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003342989987813"},{"denom":"ASSET1","index":"0.000028363859076608"},{"denom":"ASSET10","index":"0.000022643596968544"},{"denom":"ASSET11","index":"0.000028187678804911"},{"denom":"ASSET12","index":"0.000026879157824253"},{"denom":"ASSET13","index":"0.000008853292918908"},{"denom":"ASSET14","index":"0.000025870927331183"},{"denom":"ASSET15","index":"0.000020395094195043"},{"denom":"ASSET16","index":"0.000012581780801373"},{"denom":"ASSET17","index":"0.000009877287329505"},{"denom":"ASSET18","index":"0.000004080927248291"},{"denom":"ASSET2","index":"0.000008590241612281"},{"denom":"ASSET3","index":"0.000002384972961476"},{"denom":"ASSET4","index":"0.000022995501297970"},{"denom":"ASSET5","index":"0.000001858071035633"},{"denom":"ASSET6","index":"0.000007500418590266"},{"denom":"ASSET7","index":"0.000011782462758670"},{"denom":"ASSET8","index":"0.000016095075530395"},{"denom":"ASSET9","index":"0.000006831506736707"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001571496317510"},{"denom":"ASSET1","index":"0.000013101483241955"},{"denom":"ASSET10","index":"0.000009127906315185"},{"denom":"ASSET11","index":"0.000012674221268720"},{"denom":"ASSET12","index":"0.000011413128948859"},{"denom":"ASSET13","index":"0.000003927726401627"},{"denom":"ASSET14","index":"0.000011839579408375"},{"denom":"ASSET15","index":"0.000008464899606481"},{"denom":"ASSET16","index":"0.000005901733523932"},{"denom":"ASSET17","index":"0.000004191468360414"},{"denom":"ASSET18","index":"0.000001996729506447"},{"denom":"ASSET2","index":"0.000003867268629536"},{"denom":"ASSET3","index":"0.000001131250124766"},{"denom":"ASSET4","index":"0.000010647059997798"},{"denom":"ASSET5","index":"0.000000878057844331"},{"denom":"ASSET6","index":"0.000003573906419993"},{"denom":"ASSET7","index":"0.000005473254280118"},{"denom":"ASSET8","index":"0.000007142132243950"},{"denom":"ASSET9","index":"0.000003084563647228"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003113134051861"},{"denom":"ASSET1","index":"0.000026415094552464"},{"denom":"ASSET10","index":"0.000021090707465492"},{"denom":"ASSET11","index":"0.000026251548228726"},{"denom":"ASSET12","index":"0.000025034408517114"},{"denom":"ASSET13","index":"0.000008245703890405"},{"denom":"ASSET14","index":"0.000024093200316600"},{"denom":"ASSET15","index":"0.000018995578271326"},{"denom":"ASSET16","index":"0.000011717396138812"},{"denom":"ASSET17","index":"0.000009199501798709"},{"denom":"ASSET18","index":"0.000003801350346824"},{"denom":"ASSET2","index":"0.000007999912620195"},{"denom":"ASSET3","index":"0.000002221641081089"},{"denom":"ASSET4","index":"0.000021415082747190"},{"denom":"ASSET5","index":"0.000001730738444371"},{"denom":"ASSET6","index":"0.000006985361363625"},{"denom":"ASSET7","index":"0.000010973556930807"},{"denom":"ASSET8","index":"0.000014990236718633"},{"denom":"ASSET9","index":"0.000006362695679170"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001486431692511"},{"denom":"ASSET1","index":"0.000012397696164316"},{"denom":"ASSET10","index":"0.000008637613387551"},{"denom":"ASSET11","index":"0.000011993186507636"},{"denom":"ASSET12","index":"0.000010799842650204"},{"denom":"ASSET13","index":"0.000003716482933529"},{"denom":"ASSET14","index":"0.000011203544902380"},{"denom":"ASSET15","index":"0.000008010260087670"},{"denom":"ASSET16","index":"0.000005584816956599"},{"denom":"ASSET17","index":"0.000003965970925374"},{"denom":"ASSET18","index":"0.000001889326540182"},{"denom":"ASSET2","index":"0.000003659157213720"},{"denom":"ASSET3","index":"0.000001070618372770"},{"denom":"ASSET4","index":"0.000010074793405297"},{"denom":"ASSET5","index":"0.000000830819234978"},{"denom":"ASSET6","index":"0.000003381410064224"},{"denom":"ASSET7","index":"0.000005179499895414"},{"denom":"ASSET8","index":"0.000006757975701421"},{"denom":"ASSET9","index":"0.000002918767283230"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003023961266495"},{"denom":"ASSET1","index":"0.000025674667559579"},{"denom":"ASSET10","index":"0.000020567435721356"},{"denom":"ASSET11","index":"0.000025532965784321"},{"denom":"ASSET12","index":"0.000024383768132692"},{"denom":"ASSET13","index":"0.000008022807352722"},{"denom":"ASSET14","index":"0.000023423766496233"},{"denom":"ASSET15","index":"0.000018512228577533"},{"denom":"ASSET16","index":"0.000011384524743973"},{"denom":"ASSET17","index":"0.000008960010456843"},{"denom":"ASSET18","index":"0.000003688974211121"},{"denom":"ASSET2","index":"0.000007780619396113"},{"denom":"ASSET3","index":"0.000002157718690670"},{"denom":"ASSET4","index":"0.000020813357966886"},{"denom":"ASSET5","index":"0.000001681323481152"},{"denom":"ASSET6","index":"0.000006783427048921"},{"denom":"ASSET7","index":"0.000010664665966441"},{"denom":"ASSET8","index":"0.000014584270248941"},{"denom":"ASSET9","index":"0.000006187655866052"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001789525520762"},{"denom":"ASSET1","index":"0.000014923544215299"},{"denom":"ASSET10","index":"0.000010397506905977"},{"denom":"ASSET11","index":"0.000014436898494348"},{"denom":"ASSET12","index":"0.000013000171779235"},{"denom":"ASSET13","index":"0.000004474200642702"},{"denom":"ASSET14","index":"0.000013486043818595"},{"denom":"ASSET15","index":"0.000009642393672833"},{"denom":"ASSET16","index":"0.000006722519347127"},{"denom":"ASSET17","index":"0.000004774389100140"},{"denom":"ASSET18","index":"0.000002273850196939"},{"denom":"ASSET2","index":"0.000004405342981073"},{"denom":"ASSET3","index":"0.000001288179849576"},{"denom":"ASSET4","index":"0.000012128232625798"},{"denom":"ASSET5","index":"0.000001000370297599"},{"denom":"ASSET6","index":"0.000004071112533615"},{"denom":"ASSET7","index":"0.000006234326262993"},{"denom":"ASSET8","index":"0.000008135261932908"},{"denom":"ASSET9","index":"0.000003514061787852"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003488279034648"},{"denom":"ASSET1","index":"0.000029592208548275"},{"denom":"ASSET10","index":"0.000023577626976592"},{"denom":"ASSET11","index":"0.000029395914355993"},{"denom":"ASSET12","index":"0.000028007798530295"},{"denom":"ASSET13","index":"0.000009231498766276"},{"denom":"ASSET14","index":"0.000026986732997785"},{"denom":"ASSET15","index":"0.000021244630549189"},{"denom":"ASSET16","index":"0.000013129960095172"},{"denom":"ASSET17","index":"0.000010292381952670"},{"denom":"ASSET18","index":"0.000004261641431672"},{"denom":"ASSET2","index":"0.000008958343988321"},{"denom":"ASSET3","index":"0.000002489657102823"},{"denom":"ASSET4","index":"0.000023991917258738"},{"denom":"ASSET5","index":"0.000001939742890351"},{"denom":"ASSET6","index":"0.000007829259808535"},{"denom":"ASSET7","index":"0.000012294264842111"},{"denom":"ASSET8","index":"0.000016782088113605"},{"denom":"ASSET9","index":"0.000007125719490615"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001504632489095"},{"denom":"ASSET1","index":"0.000012543084148708"},{"denom":"ASSET10","index":"0.000008738830231438"},{"denom":"ASSET11","index":"0.000012134501498699"},{"denom":"ASSET12","index":"0.000010926897843985"},{"denom":"ASSET13","index":"0.000003760573206331"},{"denom":"ASSET14","index":"0.000011335480493994"},{"denom":"ASSET15","index":"0.000008104451906425"},{"denom":"ASSET16","index":"0.000005650267962622"},{"denom":"ASSET17","index":"0.000004012577307899"},{"denom":"ASSET18","index":"0.000001911199106291"},{"denom":"ASSET2","index":"0.000003702780265705"},{"denom":"ASSET3","index":"0.000001083281631273"},{"denom":"ASSET4","index":"0.000010193733911157"},{"denom":"ASSET5","index":"0.000000840685682831"},{"denom":"ASSET6","index":"0.000003421207682886"},{"denom":"ASSET7","index":"0.000005240341290738"},{"denom":"ASSET8","index":"0.000006837711289210"},{"denom":"ASSET9","index":"0.000002953488070376"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003015423229771"},{"denom":"ASSET1","index":"0.000025588098096649"},{"denom":"ASSET10","index":"0.000020460473772645"},{"denom":"ASSET11","index":"0.000025438043766359"},{"denom":"ASSET12","index":"0.000024273358860204"},{"denom":"ASSET13","index":"0.000007991752317173"},{"denom":"ASSET14","index":"0.000023342063892494"},{"denom":"ASSET15","index":"0.000018422728556898"},{"denom":"ASSET16","index":"0.000011348811151398"},{"denom":"ASSET17","index":"0.000008919790197810"},{"denom":"ASSET18","index":"0.000003679502338318"},{"denom":"ASSET2","index":"0.000007752126098631"},{"denom":"ASSET3","index":"0.000002151933074669"},{"denom":"ASSET4","index":"0.000020744635257959"},{"denom":"ASSET5","index":"0.000001676458472807"},{"denom":"ASSET6","index":"0.000006763790928604"},{"denom":"ASSET7","index":"0.000010629564741383"},{"denom":"ASSET8","index":"0.000014527278079751"},{"denom":"ASSET9","index":"0.000006165283413682"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001790270882045"},{"denom":"ASSET1","index":"0.000014924962381265"},{"denom":"ASSET10","index":"0.000010398687848362"},{"denom":"ASSET11","index":"0.000014438353512768"},{"denom":"ASSET12","index":"0.000013001639266884"},{"denom":"ASSET13","index":"0.000004474427888377"},{"denom":"ASSET14","index":"0.000013487623477013"},{"denom":"ASSET15","index":"0.000009643475881721"},{"denom":"ASSET16","index":"0.000006723198012370"},{"denom":"ASSET17","index":"0.000004774888563278"},{"denom":"ASSET18","index":"0.000002274381117071"},{"denom":"ASSET2","index":"0.000004405715467922"},{"denom":"ASSET3","index":"0.000001288670212721"},{"denom":"ASSET4","index":"0.000012129616185469"},{"denom":"ASSET5","index":"0.000001000078046809"},{"denom":"ASSET6","index":"0.000004071523241162"},{"denom":"ASSET7","index":"0.000006235339827137"},{"denom":"ASSET8","index":"0.000008136175240279"},{"denom":"ASSET9","index":"0.000003514327977106"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003452635056994"},{"denom":"ASSET1","index":"0.000029280443630050"},{"denom":"ASSET10","index":"0.000023297581891953"},{"denom":"ASSET11","index":"0.000029078046899152"},{"denom":"ASSET12","index":"0.000027688393753974"},{"denom":"ASSET13","index":"0.000009130247174920"},{"denom":"ASSET14","index":"0.000026700258191979"},{"denom":"ASSET15","index":"0.000020998119885469"},{"denom":"ASSET16","index":"0.000012993858989816"},{"denom":"ASSET17","index":"0.000010174919177657"},{"denom":"ASSET18","index":"0.000004220034662939"},{"denom":"ASSET2","index":"0.000008861755768133"},{"denom":"ASSET3","index":"0.000002464736347038"},{"denom":"ASSET4","index":"0.000023740327943060"},{"denom":"ASSET5","index":"0.000001919615043943"},{"denom":"ASSET6","index":"0.000007749671229698"},{"denom":"ASSET7","index":"0.000012165961282812"},{"denom":"ASSET8","index":"0.000016598407083950"},{"denom":"ASSET9","index":"0.000007048985746822"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001835550145227"},{"denom":"ASSET1","index":"0.000015324623289081"},{"denom":"ASSET10","index":"0.000010676536631006"},{"denom":"ASSET11","index":"0.000014825027987456"},{"denom":"ASSET12","index":"0.000013348446318211"},{"denom":"ASSET13","index":"0.000004592576069005"},{"denom":"ASSET14","index":"0.000013848041619836"},{"denom":"ASSET15","index":"0.000009899388384035"},{"denom":"ASSET16","index":"0.000006901816574290"},{"denom":"ASSET17","index":"0.000004903435367793"},{"denom":"ASSET18","index":"0.000002335145446851"},{"denom":"ASSET2","index":"0.000004522262656184"},{"denom":"ASSET3","index":"0.000001321152019851"},{"denom":"ASSET4","index":"0.000012452875481226"},{"denom":"ASSET5","index":"0.000001025095544814"},{"denom":"ASSET6","index":"0.000004178097003954"},{"denom":"ASSET7","index":"0.000006402221272666"},{"denom":"ASSET8","index":"0.000008352493301969"},{"denom":"ASSET9","index":"0.000003608188289508"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003336473275634"},{"denom":"ASSET1","index":"0.000028284037775138"},{"denom":"ASSET10","index":"0.000022321061137243"},{"denom":"ASSET11","index":"0.000028041053149272"},{"denom":"ASSET12","index":"0.000026607048139233"},{"denom":"ASSET13","index":"0.000008795774551756"},{"denom":"ASSET14","index":"0.000025776026947277"},{"denom":"ASSET15","index":"0.000020150006768141"},{"denom":"ASSET16","index":"0.000012562977954735"},{"denom":"ASSET17","index":"0.000009778271060189"},{"denom":"ASSET18","index":"0.000004091528532498"},{"denom":"ASSET2","index":"0.000008544798017437"},{"denom":"ASSET3","index":"0.000002382883485470"},{"denom":"ASSET4","index":"0.000022934405116164"},{"denom":"ASSET5","index":"0.000001855148612588"},{"denom":"ASSET6","index":"0.000007498692848558"},{"denom":"ASSET7","index":"0.000011756140274513"},{"denom":"ASSET8","index":"0.000015991743254740"},{"denom":"ASSET9","index":"0.000006799136288961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001764742979644"},{"denom":"ASSET1","index":"0.000014715413525055"},{"denom":"ASSET10","index":"0.000010252344388411"},{"denom":"ASSET11","index":"0.000014235671854472"},{"denom":"ASSET12","index":"0.000012819403806098"},{"denom":"ASSET13","index":"0.000004411268809023"},{"denom":"ASSET14","index":"0.000013298556836595"},{"denom":"ASSET15","index":"0.000009507714678855"},{"denom":"ASSET16","index":"0.000006629264655353"},{"denom":"ASSET17","index":"0.000004707943412672"},{"denom":"ASSET18","index":"0.000002242718729968"},{"denom":"ASSET2","index":"0.000004343575199063"},{"denom":"ASSET3","index":"0.000001270873946982"},{"denom":"ASSET4","index":"0.000011958811999481"},{"denom":"ASSET5","index":"0.000000985972145064"},{"denom":"ASSET6","index":"0.000004013936750564"},{"denom":"ASSET7","index":"0.000006147757064510"},{"denom":"ASSET8","index":"0.000008021987100262"},{"denom":"ASSET9","index":"0.000003464735549761"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003371223111771"},{"denom":"ASSET1","index":"0.000028586584995448"},{"denom":"ASSET10","index":"0.000022716281614844"},{"denom":"ASSET11","index":"0.000028381809067472"},{"denom":"ASSET12","index":"0.000027011101270499"},{"denom":"ASSET13","index":"0.000008910504058238"},{"denom":"ASSET14","index":"0.000026065694327630"},{"denom":"ASSET15","index":"0.000020479714095343"},{"denom":"ASSET16","index":"0.000012688778091614"},{"denom":"ASSET17","index":"0.000009925875585388"},{"denom":"ASSET18","index":"0.000004122881217339"},{"denom":"ASSET2","index":"0.000008649339803247"},{"denom":"ASSET3","index":"0.000002407313457267"},{"denom":"ASSET4","index":"0.000023177863483423"},{"denom":"ASSET5","index":"0.000001874397047373"},{"denom":"ASSET6","index":"0.000007568278053481"},{"denom":"ASSET7","index":"0.000011878402488901"},{"denom":"ASSET8","index":"0.000016198768839280"},{"denom":"ASSET9","index":"0.000006880150170591"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001519402004985"},{"denom":"ASSET1","index":"0.000012669186594649"},{"denom":"ASSET10","index":"0.000008826466179926"},{"denom":"ASSET11","index":"0.000012255973562605"},{"denom":"ASSET12","index":"0.000011036700348729"},{"denom":"ASSET13","index":"0.000003798237040326"},{"denom":"ASSET14","index":"0.000011448841492233"},{"denom":"ASSET15","index":"0.000008185476833202"},{"denom":"ASSET16","index":"0.000005707270529482"},{"denom":"ASSET17","index":"0.000004053346512768"},{"denom":"ASSET18","index":"0.000001930471259949"},{"denom":"ASSET2","index":"0.000003739819114914"},{"denom":"ASSET3","index":"0.000001093862254735"},{"denom":"ASSET4","index":"0.000010296025367816"},{"denom":"ASSET5","index":"0.000000848935723420"},{"denom":"ASSET6","index":"0.000003455768651901"},{"denom":"ASSET7","index":"0.000005292985608899"},{"denom":"ASSET8","index":"0.000006906177861104"},{"denom":"ASSET9","index":"0.000002983065805906"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003090388166914"},{"denom":"ASSET1","index":"0.000026235396530584"},{"denom":"ASSET10","index":"0.000021016328726441"},{"denom":"ASSET11","index":"0.000026091077525301"},{"denom":"ASSET12","index":"0.000024916432469284"},{"denom":"ASSET13","index":"0.000008198423394567"},{"denom":"ASSET14","index":"0.000023935350029219"},{"denom":"ASSET15","index":"0.000018916111125702"},{"denom":"ASSET16","index":"0.000011633439861257"},{"denom":"ASSET17","index":"0.000009156707623184"},{"denom":"ASSET18","index":"0.000003769226369030"},{"denom":"ASSET2","index":"0.000007950992094695"},{"denom":"ASSET3","index":"0.000002205065882760"},{"denom":"ASSET4","index":"0.000021268551776440"},{"denom":"ASSET5","index":"0.000001717872208784"},{"denom":"ASSET6","index":"0.000006931889619894"},{"denom":"ASSET7","index":"0.000010897757198785"},{"denom":"ASSET8","index":"0.000014903243728132"},{"denom":"ASSET9","index":"0.000006323427167640"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001518878942956"},{"denom":"ASSET1","index":"0.000012665267621292"},{"denom":"ASSET10","index":"0.000008823986077449"},{"denom":"ASSET11","index":"0.000012252067733139"},{"denom":"ASSET12","index":"0.000011032961258059"},{"denom":"ASSET13","index":"0.000003796959064490"},{"denom":"ASSET14","index":"0.000011445207974612"},{"denom":"ASSET15","index":"0.000008182978177143"},{"denom":"ASSET16","index":"0.000005705208605625"},{"denom":"ASSET17","index":"0.000004051932467214"},{"denom":"ASSET18","index":"0.000001930172487911"},{"denom":"ASSET2","index":"0.000003738815596953"},{"denom":"ASSET3","index":"0.000001093764409816"},{"denom":"ASSET4","index":"0.000010292823511460"},{"denom":"ASSET5","index":"0.000000848799308881"},{"denom":"ASSET6","index":"0.000003454770460461"},{"denom":"ASSET7","index":"0.000005291055545873"},{"denom":"ASSET8","index":"0.000006904298477127"},{"denom":"ASSET9","index":"0.000002981997347372"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003032310940473"},{"denom":"ASSET1","index":"0.000025733484746235"},{"denom":"ASSET10","index":"0.000020566326171769"},{"denom":"ASSET11","index":"0.000025579130700492"},{"denom":"ASSET12","index":"0.000024402998631681"},{"denom":"ASSET13","index":"0.000008035434808363"},{"denom":"ASSET14","index":"0.000023473377840860"},{"denom":"ASSET15","index":"0.000018519821992016"},{"denom":"ASSET16","index":"0.000011413808805814"},{"denom":"ASSET17","index":"0.000008967671528488"},{"denom":"ASSET18","index":"0.000003701450923042"},{"denom":"ASSET2","index":"0.000007795399667781"},{"denom":"ASSET3","index":"0.000002164126947351"},{"denom":"ASSET4","index":"0.000020862528644023"},{"denom":"ASSET5","index":"0.000001685967393794"},{"denom":"ASSET6","index":"0.000006803442800114"},{"denom":"ASSET7","index":"0.000010689840259007"},{"denom":"ASSET8","index":"0.000014607710652032"},{"denom":"ASSET9","index":"0.000006199747658625"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001387661284101"},{"denom":"ASSET1","index":"0.000011573014587468"},{"denom":"ASSET10","index":"0.000008062929395432"},{"denom":"ASSET11","index":"0.000011195232526081"},{"denom":"ASSET12","index":"0.000010081345808669"},{"denom":"ASSET13","index":"0.000003469153210252"},{"denom":"ASSET14","index":"0.000010458456853962"},{"denom":"ASSET15","index":"0.000007477132344649"},{"denom":"ASSET16","index":"0.000005213124040705"},{"denom":"ASSET17","index":"0.000003702666811251"},{"denom":"ASSET18","index":"0.000001763430297203"},{"denom":"ASSET2","index":"0.000003416142938760"},{"denom":"ASSET3","index":"0.000000999142965196"},{"denom":"ASSET4","index":"0.000009404961585085"},{"denom":"ASSET5","index":"0.000000775694605619"},{"denom":"ASSET6","index":"0.000003156459710063"},{"denom":"ASSET7","index":"0.000004834670963223"},{"denom":"ASSET8","index":"0.000006308893323556"},{"denom":"ASSET9","index":"0.000002724996361089"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000002847838387483"},{"denom":"ASSET1","index":"0.000024182680336096"},{"denom":"ASSET10","index":"0.000019393227963423"},{"denom":"ASSET11","index":"0.000024054653395269"},{"denom":"ASSET12","index":"0.000022982316432831"},{"denom":"ASSET13","index":"0.000007558836235579"},{"denom":"ASSET14","index":"0.000022064079622497"},{"denom":"ASSET15","index":"0.000017450899901336"},{"denom":"ASSET16","index":"0.000010721434414440"},{"denom":"ASSET17","index":"0.000008446187739031"},{"denom":"ASSET18","index":"0.000003472449339717"},{"denom":"ASSET2","index":"0.000007330038539196"},{"denom":"ASSET3","index":"0.000002031951160271"},{"denom":"ASSET4","index":"0.000019603371773062"},{"denom":"ASSET5","index":"0.000001583403578691"},{"denom":"ASSET6","index":"0.000006387295602350"},{"denom":"ASSET7","index":"0.000010043914419286"},{"denom":"ASSET8","index":"0.000013741733556815"},{"denom":"ASSET9","index":"0.000005829813216311"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001740203165372"},{"denom":"ASSET1","index":"0.000014506985633466"},{"denom":"ASSET10","index":"0.000010106727386233"},{"denom":"ASSET11","index":"0.000014033828203465"},{"denom":"ASSET12","index":"0.000012637643303754"},{"denom":"ASSET13","index":"0.000004348390877948"},{"denom":"ASSET14","index":"0.000013109742216014"},{"denom":"ASSET15","index":"0.000009373174592071"},{"denom":"ASSET16","index":"0.000006535288529808"},{"denom":"ASSET17","index":"0.000004640541774324"},{"denom":"ASSET18","index":"0.000002210185042151"},{"denom":"ASSET2","index":"0.000004281704260297"},{"denom":"ASSET3","index":"0.000001252226487004"},{"denom":"ASSET4","index":"0.000011789770593618"},{"denom":"ASSET5","index":"0.000000971719285773"},{"denom":"ASSET6","index":"0.000003956739313965"},{"denom":"ASSET7","index":"0.000006060014064326"},{"denom":"ASSET8","index":"0.000007908186039228"},{"denom":"ASSET9","index":"0.000003415836748573"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003351161845380"},{"denom":"ASSET1","index":"0.000028416485386018"},{"denom":"ASSET10","index":"0.000022605276372189"},{"denom":"ASSET11","index":"0.000028218825237526"},{"denom":"ASSET12","index":"0.000026868556551399"},{"denom":"ASSET13","index":"0.000008859853422879"},{"denom":"ASSET14","index":"0.000025912194276628"},{"denom":"ASSET15","index":"0.000020375555431981"},{"denom":"ASSET16","index":"0.000012611404420708"},{"denom":"ASSET17","index":"0.000009873044520717"},{"denom":"ASSET18","index":"0.000004095473642305"},{"denom":"ASSET2","index":"0.000008599384819082"},{"denom":"ASSET3","index":"0.000002391571176633"},{"denom":"ASSET4","index":"0.000023040021162794"},{"denom":"ASSET5","index":"0.000001862805125681"},{"denom":"ASSET6","index":"0.000007520693553142"},{"denom":"ASSET7","index":"0.000011806544930596"},{"denom":"ASSET8","index":"0.000016107343127742"},{"denom":"ASSET9","index":"0.000006840485865179"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001711866379191"},{"denom":"ASSET1","index":"0.000014286095556473"},{"denom":"ASSET10","index":"0.000009953932372868"},{"denom":"ASSET11","index":"0.000013820467901333"},{"denom":"ASSET12","index":"0.000012444127332464"},{"denom":"ASSET13","index":"0.000004281948436482"},{"denom":"ASSET14","index":"0.000012909754987604"},{"denom":"ASSET15","index":"0.000009230383516596"},{"denom":"ASSET16","index":"0.000006434335097252"},{"denom":"ASSET17","index":"0.000004569541988186"},{"denom":"ASSET18","index":"0.000002177494034331"},{"denom":"ASSET2","index":"0.000004215756269820"},{"denom":"ASSET3","index":"0.000001232543793017"},{"denom":"ASSET4","index":"0.000011608736539419"},{"denom":"ASSET5","index":"0.000000956362683841"},{"denom":"ASSET6","index":"0.000003896207879038"},{"denom":"ASSET7","index":"0.000005968707442112"},{"denom":"ASSET8","index":"0.000007787850781065"},{"denom":"ASSET9","index":"0.000003362105568731"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003408995344605"},{"denom":"ASSET1","index":"0.000028940875589883"},{"denom":"ASSET10","index":"0.000023121939135123"},{"denom":"ASSET11","index":"0.000028765460883304"},{"denom":"ASSET12","index":"0.000027437813762181"},{"denom":"ASSET13","index":"0.000009035078182388"},{"denom":"ASSET14","index":"0.000026397840013038"},{"denom":"ASSET15","index":"0.000020822021063845"},{"denom":"ASSET16","index":"0.000012835900360827"},{"denom":"ASSET17","index":"0.000010082289518918"},{"denom":"ASSET18","index":"0.000004163537456367"},{"denom":"ASSET2","index":"0.000008764373535196"},{"denom":"ASSET3","index":"0.000002432999591430"},{"denom":"ASSET4","index":"0.000023461370966582"},{"denom":"ASSET5","index":"0.000001895172356369"},{"denom":"ASSET6","index":"0.000007651446569151"},{"denom":"ASSET7","index":"0.000012022926111771"},{"denom":"ASSET8","index":"0.000016426068411072"},{"denom":"ASSET9","index":"0.000006969965423669"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001459800105667"},{"denom":"ASSET1","index":"0.000012176396665923"},{"denom":"ASSET10","index":"0.000008484162206626"},{"denom":"ASSET11","index":"0.000011779823335110"},{"denom":"ASSET12","index":"0.000010607197020722"},{"denom":"ASSET13","index":"0.000003650070053435"},{"denom":"ASSET14","index":"0.000011003770351536"},{"denom":"ASSET15","index":"0.000007867650218206"},{"denom":"ASSET16","index":"0.000005484791497715"},{"denom":"ASSET17","index":"0.000003895079438851"},{"denom":"ASSET18","index":"0.000001855233857943"},{"denom":"ASSET2","index":"0.000003594230705131"},{"denom":"ASSET3","index":"0.000001050691410948"},{"denom":"ASSET4","index":"0.000009896100013746"},{"denom":"ASSET5","index":"0.000000815938232363"},{"denom":"ASSET6","index":"0.000003321871434831"},{"denom":"ASSET7","index":"0.000005087078588365"},{"denom":"ASSET8","index":"0.000006638044976977"},{"denom":"ASSET9","index":"0.000002867179598640"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000002975317591563"},{"denom":"ASSET1","index":"0.000025265738469637"},{"denom":"ASSET10","index":"0.000020245724387946"},{"denom":"ASSET11","index":"0.000025128558675417"},{"denom":"ASSET12","index":"0.000023998925764885"},{"denom":"ASSET13","index":"0.000007895668684136"},{"denom":"ASSET14","index":"0.000023051238668493"},{"denom":"ASSET15","index":"0.000018221178423268"},{"denom":"ASSET16","index":"0.000011202197653725"},{"denom":"ASSET17","index":"0.000008818540737002"},{"denom":"ASSET18","index":"0.000003629428323701"},{"denom":"ASSET2","index":"0.000007657107369447"},{"denom":"ASSET3","index":"0.000002122660280404"},{"denom":"ASSET4","index":"0.000020482509156357"},{"denom":"ASSET5","index":"0.000001654309607539"},{"denom":"ASSET6","index":"0.000006675356935536"},{"denom":"ASSET7","index":"0.000010494215679887"},{"denom":"ASSET8","index":"0.000014353927855523"},{"denom":"ASSET9","index":"0.000006089535217587"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001617402557586"},{"denom":"ASSET1","index":"0.000013485147451276"},{"denom":"ASSET10","index":"0.000009395521488362"},{"denom":"ASSET11","index":"0.000013045402724081"},{"denom":"ASSET12","index":"0.000011747619504798"},{"denom":"ASSET13","index":"0.000004042433845849"},{"denom":"ASSET14","index":"0.000012186291683878"},{"denom":"ASSET15","index":"0.000008713380887153"},{"denom":"ASSET16","index":"0.000006074912523982"},{"denom":"ASSET17","index":"0.000004313788518972"},{"denom":"ASSET18","index":"0.000002055002188551"},{"denom":"ASSET2","index":"0.000003980226055173"},{"denom":"ASSET3","index":"0.000001163714704894"},{"denom":"ASSET4","index":"0.000010959296640193"},{"denom":"ASSET5","index":"0.000000903085512923"},{"denom":"ASSET6","index":"0.000003677767486712"},{"denom":"ASSET7","index":"0.000005633022700557"},{"denom":"ASSET8","index":"0.000007351244780963"},{"denom":"ASSET9","index":"0.000003174742420725"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003091273620954"},{"denom":"ASSET1","index":"0.000026212594205506"},{"denom":"ASSET10","index":"0.000020831747389799"},{"denom":"ASSET11","index":"0.000026024829344923"},{"denom":"ASSET12","index":"0.000024768925461013"},{"denom":"ASSET13","index":"0.000008170539761157"},{"denom":"ASSET14","index":"0.000023900540063840"},{"denom":"ASSET15","index":"0.000018780610027247"},{"denom":"ASSET16","index":"0.000011634658240098"},{"denom":"ASSET17","index":"0.000009101405984603"},{"denom":"ASSET18","index":"0.000003780149264156"},{"denom":"ASSET2","index":"0.000007930960667726"},{"denom":"ASSET3","index":"0.000002206123035767"},{"denom":"ASSET4","index":"0.000021253166889363"},{"denom":"ASSET5","index":"0.000001718500807532"},{"denom":"ASSET6","index":"0.000006939076737962"},{"denom":"ASSET7","index":"0.000010891166816552"},{"denom":"ASSET8","index":"0.000014853628574871"},{"denom":"ASSET9","index":"0.000006308302102729"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001496654334782"},{"denom":"ASSET1","index":"0.000012477377024436"},{"denom":"ASSET10","index":"0.000008693096469902"},{"denom":"ASSET11","index":"0.000012070207597683"},{"denom":"ASSET12","index":"0.000010869145414891"},{"denom":"ASSET13","index":"0.000003740467488528"},{"denom":"ASSET14","index":"0.000011275146493218"},{"denom":"ASSET15","index":"0.000008061604145195"},{"denom":"ASSET16","index":"0.000005620924281527"},{"denom":"ASSET17","index":"0.000003991662400298"},{"denom":"ASSET18","index":"0.000001901487064682"},{"denom":"ASSET2","index":"0.000003683218415613"},{"denom":"ASSET3","index":"0.000001077217249546"},{"denom":"ASSET4","index":"0.000010139511822330"},{"denom":"ASSET5","index":"0.000000835953299404"},{"denom":"ASSET6","index":"0.000003403398967385"},{"denom":"ASSET7","index":"0.000005212586506346"},{"denom":"ASSET8","index":"0.000006801540366848"},{"denom":"ASSET9","index":"0.000002937812119289"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003012098530886"},{"denom":"ASSET1","index":"0.000025562058034330"},{"denom":"ASSET10","index":"0.000020450222858637"},{"denom":"ASSET11","index":"0.000025414193224582"},{"denom":"ASSET12","index":"0.000024256065084933"},{"denom":"ASSET13","index":"0.000007984561416691"},{"denom":"ASSET14","index":"0.000023318358139730"},{"denom":"ASSET15","index":"0.000018411259079989"},{"denom":"ASSET16","index":"0.000011336678183578"},{"denom":"ASSET17","index":"0.000008913774138499"},{"denom":"ASSET18","index":"0.000003674960609183"},{"denom":"ASSET2","index":"0.000007744948932800"},{"denom":"ASSET3","index":"0.000002148867969989"},{"denom":"ASSET4","index":"0.000020722540912428"},{"denom":"ASSET5","index":"0.000001674229864542"},{"denom":"ASSET6","index":"0.000006756080138401"},{"denom":"ASSET7","index":"0.000010618450136599"},{"denom":"ASSET8","index":"0.000014514789998911"},{"denom":"ASSET9","index":"0.000006159565713194"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001470615438656"},{"denom":"ASSET1","index":"0.000012263141624205"},{"denom":"ASSET10","index":"0.000008543710077270"},{"denom":"ASSET11","index":"0.000011863435889596"},{"denom":"ASSET12","index":"0.000010682701378752"},{"denom":"ASSET13","index":"0.000003676538596641"},{"denom":"ASSET14","index":"0.000011081935762259"},{"denom":"ASSET15","index":"0.000007923412026863"},{"denom":"ASSET16","index":"0.000005524234917004"},{"denom":"ASSET17","index":"0.000003923055223056"},{"denom":"ASSET18","index":"0.000001868907119959"},{"denom":"ASSET2","index":"0.000003619976464385"},{"denom":"ASSET3","index":"0.000001058654575392"},{"denom":"ASSET4","index":"0.000009965776352407"},{"denom":"ASSET5","index":"0.000000822036322121"},{"denom":"ASSET6","index":"0.000003345178771841"},{"denom":"ASSET7","index":"0.000005123115129088"},{"denom":"ASSET8","index":"0.000006685172681558"},{"denom":"ASSET9","index":"0.000002887496851669"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000002995147819628"},{"denom":"ASSET1","index":"0.000025426980115999"},{"denom":"ASSET10","index":"0.000020372034738960"},{"denom":"ASSET11","index":"0.000025287989623967"},{"denom":"ASSET12","index":"0.000024150599022202"},{"denom":"ASSET13","index":"0.000007946076587902"},{"denom":"ASSET14","index":"0.000023198024872944"},{"denom":"ASSET15","index":"0.000018335727027304"},{"denom":"ASSET16","index":"0.000011274635486105"},{"denom":"ASSET17","index":"0.000008875015361763"},{"denom":"ASSET18","index":"0.000003653177061349"},{"denom":"ASSET2","index":"0.000007706361997735"},{"denom":"ASSET3","index":"0.000002137037997503"},{"denom":"ASSET4","index":"0.000020612735071168"},{"denom":"ASSET5","index":"0.000001665450131859"},{"denom":"ASSET6","index":"0.000006718182222688"},{"denom":"ASSET7","index":"0.000010561635089256"},{"denom":"ASSET8","index":"0.000014445035982826"},{"denom":"ASSET9","index":"0.000006128513210961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001778581753434"},{"denom":"ASSET1","index":"0.000014888315804569"},{"denom":"ASSET10","index":"0.000010370885153828"},{"denom":"ASSET11","index":"0.000014404007158094"},{"denom":"ASSET12","index":"0.000012967781516823"},{"denom":"ASSET13","index":"0.000004458979607201"},{"denom":"ASSET14","index":"0.000013452090163298"},{"denom":"ASSET15","index":"0.000009619371736884"},{"denom":"ASSET16","index":"0.000006705169708956"},{"denom":"ASSET17","index":"0.000004759584973979"},{"denom":"ASSET18","index":"0.000002262890399909"},{"denom":"ASSET2","index":"0.000004392178414584"},{"denom":"ASSET3","index":"0.000001285922957882"},{"denom":"ASSET4","index":"0.000012099366012799"},{"denom":"ASSET5","index":"0.000000993667740182"},{"denom":"ASSET6","index":"0.000004058172451498"},{"denom":"ASSET7","index":"0.000006220861062481"},{"denom":"ASSET8","index":"0.000008116344902996"},{"denom":"ASSET9","index":"0.000003507062612406"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003356752793751"},{"denom":"ASSET1","index":"0.000028516406305775"},{"denom":"ASSET10","index":"0.000022616173055400"},{"denom":"ASSET11","index":"0.000028302061322789"},{"denom":"ASSET12","index":"0.000026910491325102"},{"denom":"ASSET13","index":"0.000008878873421079"},{"denom":"ASSET14","index":"0.000025995251505598"},{"denom":"ASSET15","index":"0.000020398635157595"},{"denom":"ASSET16","index":"0.000012658071469071"},{"denom":"ASSET17","index":"0.000009885849877285"},{"denom":"ASSET18","index":"0.000004110010202724"},{"denom":"ASSET2","index":"0.000008622285743228"},{"denom":"ASSET3","index":"0.000002402314047495"},{"denom":"ASSET4","index":"0.000023121698220749"},{"denom":"ASSET5","index":"0.000001866482592061"},{"denom":"ASSET6","index":"0.000007549939309511"},{"denom":"ASSET7","index":"0.000011851024307599"},{"denom":"ASSET8","index":"0.000016149793693754"},{"denom":"ASSET9","index":"0.000006862325287189"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001604942959288"},{"denom":"ASSET1","index":"0.000013380628695124"},{"denom":"ASSET10","index":"0.000009322365613635"},{"denom":"ASSET11","index":"0.000012944148427984"},{"denom":"ASSET12","index":"0.000011656280789193"},{"denom":"ASSET13","index":"0.000004011353995308"},{"denom":"ASSET14","index":"0.000012091757653420"},{"denom":"ASSET15","index":"0.000008645319498111"},{"denom":"ASSET16","index":"0.000006027692148913"},{"denom":"ASSET17","index":"0.000004280767677439"},{"denom":"ASSET18","index":"0.000002039165569874"},{"denom":"ASSET2","index":"0.000003949895566889"},{"denom":"ASSET3","index":"0.000001155418454280"},{"denom":"ASSET4","index":"0.000010873877367808"},{"denom":"ASSET5","index":"0.000000896791353463"},{"denom":"ASSET6","index":"0.000003649878095912"},{"denom":"ASSET7","index":"0.000005589957628131"},{"denom":"ASSET8","index":"0.000007294237475803"},{"denom":"ASSET9","index":"0.000003150685146712"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003200268554223"},{"denom":"ASSET1","index":"0.000027155061035589"},{"denom":"ASSET10","index":"0.000021699312128992"},{"denom":"ASSET11","index":"0.000026991580254755"},{"denom":"ASSET12","index":"0.000025748970079650"},{"denom":"ASSET13","index":"0.000008479073830121"},{"denom":"ASSET14","index":"0.000024769827936089"},{"denom":"ASSET15","index":"0.000019540730612944"},{"denom":"ASSET16","index":"0.000012044995213579"},{"denom":"ASSET17","index":"0.000009462424001901"},{"denom":"ASSET18","index":"0.000003906197580725"},{"denom":"ASSET2","index":"0.000008225756082433"},{"denom":"ASSET3","index":"0.000002283784004254"},{"denom":"ASSET4","index":"0.000022014648589339"},{"denom":"ASSET5","index":"0.000001779311895342"},{"denom":"ASSET6","index":"0.000007179475362032"},{"denom":"ASSET7","index":"0.000011280598785262"},{"denom":"ASSET8","index":"0.000015413911362487"},{"denom":"ASSET9","index":"0.000006542247148589"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001620184629837"},{"denom":"ASSET1","index":"0.000013508113244239"},{"denom":"ASSET10","index":"0.000009411159415052"},{"denom":"ASSET11","index":"0.000013068550109883"},{"denom":"ASSET12","index":"0.000011766766981214"},{"denom":"ASSET13","index":"0.000004049052718392"},{"denom":"ASSET14","index":"0.000012206330115570"},{"denom":"ASSET15","index":"0.000008726455301921"},{"denom":"ASSET16","index":"0.000006083441070987"},{"denom":"ASSET17","index":"0.000004319553108765"},{"denom":"ASSET18","index":"0.000002056930051793"},{"denom":"ASSET2","index":"0.000003987063045598"},{"denom":"ASSET3","index":"0.000001166532933482"},{"denom":"ASSET4","index":"0.000010977807509294"},{"denom":"ASSET5","index":"0.000000904485680309"},{"denom":"ASSET6","index":"0.000003682750106429"},{"denom":"ASSET7","index":"0.000005643877936631"},{"denom":"ASSET8","index":"0.000007362682500458"},{"denom":"ASSET9","index":"0.000003178379586880"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003154859072778"},{"denom":"ASSET1","index":"0.000026759958230198"},{"denom":"ASSET10","index":"0.000021318547828682"},{"denom":"ASSET11","index":"0.000026582778956839"},{"denom":"ASSET12","index":"0.000025324795995745"},{"denom":"ASSET13","index":"0.000008347309163095"},{"denom":"ASSET14","index":"0.000024403216779648"},{"denom":"ASSET15","index":"0.000019208461119321"},{"denom":"ASSET16","index":"0.000011872154646602"},{"denom":"ASSET17","index":"0.000009304429323264"},{"denom":"ASSET18","index":"0.000003853154066825"},{"denom":"ASSET2","index":"0.000008100524497579"},{"denom":"ASSET3","index":"0.000002251942800438"},{"denom":"ASSET4","index":"0.000021695917087147"},{"denom":"ASSET5","index":"0.000001753374642360"},{"denom":"ASSET6","index":"0.000007078305954632"},{"denom":"ASSET7","index":"0.000011118481739065"},{"denom":"ASSET8","index":"0.000015174129529137"},{"denom":"ASSET9","index":"0.000006441283498998"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001565910537906"},{"denom":"ASSET1","index":"0.000013053983025959"},{"denom":"ASSET10","index":"0.000009094819386579"},{"denom":"ASSET11","index":"0.000012628414118813"},{"denom":"ASSET12","index":"0.000011371841840295"},{"denom":"ASSET13","index":"0.000003913403541838"},{"denom":"ASSET14","index":"0.000011796953146466"},{"denom":"ASSET15","index":"0.000008434501179040"},{"denom":"ASSET16","index":"0.000005880630135191"},{"denom":"ASSET17","index":"0.000004176066501732"},{"denom":"ASSET18","index":"0.000001989191440174"},{"denom":"ASSET2","index":"0.000003853457814057"},{"denom":"ASSET3","index":"0.000001127071202473"},{"denom":"ASSET4","index":"0.000010608563413286"},{"denom":"ASSET5","index":"0.000000874933065013"},{"denom":"ASSET6","index":"0.000003561050790760"},{"denom":"ASSET7","index":"0.000005453688425119"},{"denom":"ASSET8","index":"0.000007116152768840"},{"denom":"ASSET9","index":"0.000003073705751932"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003066618221533"},{"denom":"ASSET1","index":"0.000026018563142658"},{"denom":"ASSET10","index":"0.000020743763118655"},{"denom":"ASSET11","index":"0.000025849025514444"},{"denom":"ASSET12","index":"0.000024635604575072"},{"denom":"ASSET13","index":"0.000008118261811936"},{"denom":"ASSET14","index":"0.000023728777879609"},{"denom":"ASSET15","index":"0.000018689177197382"},{"denom":"ASSET16","index":"0.000011544003668418"},{"denom":"ASSET17","index":"0.000009052167825210"},{"denom":"ASSET18","index":"0.000003745930402733"},{"denom":"ASSET2","index":"0.000007877080459743"},{"denom":"ASSET3","index":"0.000002188594145460"},{"denom":"ASSET4","index":"0.000021094338825720"},{"denom":"ASSET5","index":"0.000001705356613908"},{"denom":"ASSET6","index":"0.000006882744986340"},{"denom":"ASSET7","index":"0.000010809249072439"},{"denom":"ASSET8","index":"0.000014757775472241"},{"denom":"ASSET9","index":"0.000006264987011427"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001616793771814"},{"denom":"ASSET1","index":"0.000013481664806896"},{"denom":"ASSET10","index":"0.000009392973001731"},{"denom":"ASSET11","index":"0.000013042136425966"},{"denom":"ASSET12","index":"0.000011745108533466"},{"denom":"ASSET13","index":"0.000004041984429535"},{"denom":"ASSET14","index":"0.000012183439289380"},{"denom":"ASSET15","index":"0.000008710326742521"},{"denom":"ASSET16","index":"0.000006073156456940"},{"denom":"ASSET17","index":"0.000004312647683187"},{"denom":"ASSET18","index":"0.000002053926902712"},{"denom":"ASSET2","index":"0.000003979707928695"},{"denom":"ASSET3","index":"0.000001164091515706"},{"denom":"ASSET4","index":"0.000010955873647818"},{"denom":"ASSET5","index":"0.000000903009262183"},{"denom":"ASSET6","index":"0.000003677906424623"},{"denom":"ASSET7","index":"0.000005632430450993"},{"denom":"ASSET8","index":"0.000007349824724165"},{"denom":"ASSET9","index":"0.000003173706292820"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003010548827117"},{"denom":"ASSET1","index":"0.000025517681435823"},{"denom":"ASSET10","index":"0.000020207909525991"},{"denom":"ASSET11","index":"0.000025316824190850"},{"denom":"ASSET12","index":"0.000024059273468565"},{"denom":"ASSET13","index":"0.000007945703994160"},{"denom":"ASSET14","index":"0.000023261456497592"},{"denom":"ASSET15","index":"0.000018230653165683"},{"denom":"ASSET16","index":"0.000011330852554208"},{"denom":"ASSET17","index":"0.000008840468160143"},{"denom":"ASSET18","index":"0.000003685449036638"},{"denom":"ASSET2","index":"0.000007715875534239"},{"denom":"ASSET3","index":"0.000002150116713749"},{"denom":"ASSET4","index":"0.000020690763011385"},{"denom":"ASSET5","index":"0.000001674170167376"},{"denom":"ASSET6","index":"0.000006761947340508"},{"denom":"ASSET7","index":"0.000010605047135869"},{"denom":"ASSET8","index":"0.000014444866674878"},{"denom":"ASSET9","index":"0.000006137206230949"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001598496813351"},{"denom":"ASSET1","index":"0.000013327209301876"},{"denom":"ASSET10","index":"0.000009285082513510"},{"denom":"ASSET11","index":"0.000012892549064690"},{"denom":"ASSET12","index":"0.000011609910099638"},{"denom":"ASSET13","index":"0.000003995530641827"},{"denom":"ASSET14","index":"0.000012043503249499"},{"denom":"ASSET15","index":"0.000008611039019674"},{"denom":"ASSET16","index":"0.000006003788988106"},{"denom":"ASSET17","index":"0.000004263725256261"},{"denom":"ASSET18","index":"0.000002031022875886"},{"denom":"ASSET2","index":"0.000003933995272733"},{"denom":"ASSET3","index":"0.000001150675832486"},{"denom":"ASSET4","index":"0.000010830580656369"},{"denom":"ASSET5","index":"0.000000893152091305"},{"denom":"ASSET6","index":"0.000003635566517414"},{"denom":"ASSET7","index":"0.000005567705967820"},{"denom":"ASSET8","index":"0.000007265086206652"},{"denom":"ASSET9","index":"0.000003137948128033"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003202417698287"},{"denom":"ASSET1","index":"0.000027176874960756"},{"denom":"ASSET10","index":"0.000021729724210241"},{"denom":"ASSET11","index":"0.000027016578438308"},{"denom":"ASSET12","index":"0.000025779554956391"},{"denom":"ASSET13","index":"0.000008487649506725"},{"denom":"ASSET14","index":"0.000024790682929963"},{"denom":"ASSET15","index":"0.000019565798539307"},{"denom":"ASSET16","index":"0.000012053877846841"},{"denom":"ASSET17","index":"0.000009473617164606"},{"denom":"ASSET18","index":"0.000003908301251667"},{"denom":"ASSET2","index":"0.000008233254558201"},{"denom":"ASSET3","index":"0.000002285025567503"},{"denom":"ASSET4","index":"0.000022032200437673"},{"denom":"ASSET5","index":"0.000001780306156687"},{"denom":"ASSET6","index":"0.000007184182778940"},{"denom":"ASSET7","index":"0.000011289430429576"},{"denom":"ASSET8","index":"0.000015429251463912"},{"denom":"ASSET9","index":"0.000006548040900334"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001349258766758"},{"denom":"ASSET1","index":"0.000011264433664868"},{"denom":"ASSET10","index":"0.000007848225297969"},{"denom":"ASSET11","index":"0.000010895650990484"},{"denom":"ASSET12","index":"0.000009811385762205"},{"denom":"ASSET13","index":"0.000003376459336127"},{"denom":"ASSET14","index":"0.000010177960157102"},{"denom":"ASSET15","index":"0.000007278489190238"},{"denom":"ASSET16","index":"0.000005074626261883"},{"denom":"ASSET17","index":"0.000003603912123322"},{"denom":"ASSET18","index":"0.000001715833161655"},{"denom":"ASSET2","index":"0.000003323460628431"},{"denom":"ASSET3","index":"0.000000971642974425"},{"denom":"ASSET4","index":"0.000009153318474981"},{"denom":"ASSET5","index":"0.000000753023305179"},{"denom":"ASSET6","index":"0.000003071716766875"},{"denom":"ASSET7","index":"0.000004705843587499"},{"denom":"ASSET8","index":"0.000006139016974776"},{"denom":"ASSET9","index":"0.000002652143664283"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000002874619638549"},{"denom":"ASSET1","index":"0.000024442633186143"},{"denom":"ASSET10","index":"0.000019689737510784"},{"denom":"ASSET11","index":"0.000024334399718263"},{"denom":"ASSET12","index":"0.000023294058494145"},{"denom":"ASSET13","index":"0.000007650065286478"},{"denom":"ASSET14","index":"0.000022306974942610"},{"denom":"ASSET15","index":"0.000017702453996022"},{"denom":"ASSET16","index":"0.000010830667352685"},{"denom":"ASSET17","index":"0.000008561334956642"},{"denom":"ASSET18","index":"0.000003501743239949"},{"denom":"ASSET2","index":"0.000007413384379561"},{"denom":"ASSET3","index":"0.000002050775894848"},{"denom":"ASSET4","index":"0.000019811877393900"},{"denom":"ASSET5","index":"0.000001596563839644"},{"denom":"ASSET6","index":"0.000006447875450380"},{"denom":"ASSET7","index":"0.000010149425285061"},{"denom":"ASSET8","index":"0.000013906577801610"},{"denom":"ASSET9","index":"0.000005896530335304"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001744355646452"},{"denom":"ASSET1","index":"0.000014544558741461"},{"denom":"ASSET10","index":"0.000010133244841823"},{"denom":"ASSET11","index":"0.000014070651242217"},{"denom":"ASSET12","index":"0.000012670295178174"},{"denom":"ASSET13","index":"0.000004360461787457"},{"denom":"ASSET14","index":"0.000013143775348745"},{"denom":"ASSET15","index":"0.000009397812194213"},{"denom":"ASSET16","index":"0.000006552230555377"},{"denom":"ASSET17","index":"0.000004653181929010"},{"denom":"ASSET18","index":"0.000002216553831001"},{"denom":"ASSET2","index":"0.000004293371185670"},{"denom":"ASSET3","index":"0.000001255918972299"},{"denom":"ASSET4","index":"0.000011819911117312"},{"denom":"ASSET5","index":"0.000000974736704938"},{"denom":"ASSET6","index":"0.000003967319407560"},{"denom":"ASSET7","index":"0.000006076186412764"},{"denom":"ASSET8","index":"0.000007929083542361"},{"denom":"ASSET9","index":"0.000003424611991834"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003377008276018"},{"denom":"ASSET1","index":"0.000028642142456639"},{"denom":"ASSET10","index":"0.000022800592191853"},{"denom":"ASSET11","index":"0.000028447577997463"},{"denom":"ASSET12","index":"0.000027093635853923"},{"denom":"ASSET13","index":"0.000008933092474106"},{"denom":"ASSET14","index":"0.000026119259559896"},{"denom":"ASSET15","index":"0.000020548756595198"},{"denom":"ASSET16","index":"0.000012710670192565"},{"denom":"ASSET17","index":"0.000009956402105067"},{"denom":"ASSET18","index":"0.000004127475104327"},{"denom":"ASSET2","index":"0.000008669602227225"},{"denom":"ASSET3","index":"0.000002410895003349"},{"denom":"ASSET4","index":"0.000023222264254358"},{"denom":"ASSET5","index":"0.000001877874241403"},{"denom":"ASSET6","index":"0.000007579654674160"},{"denom":"ASSET7","index":"0.000011900488798179"},{"denom":"ASSET8","index":"0.000016239324105118"},{"denom":"ASSET9","index":"0.000006895771583569"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001546168277317"},{"denom":"ASSET1","index":"0.000012892123182452"},{"denom":"ASSET10","index":"0.000008982377260299"},{"denom":"ASSET11","index":"0.000012472337191477"},{"denom":"ASSET12","index":"0.000011231230783378"},{"denom":"ASSET13","index":"0.000003864117010091"},{"denom":"ASSET14","index":"0.000011651016774353"},{"denom":"ASSET15","index":"0.000008329231976204"},{"denom":"ASSET16","index":"0.000005807908663952"},{"denom":"ASSET17","index":"0.000004124853650448"},{"denom":"ASSET18","index":"0.000001964650585090"},{"denom":"ASSET2","index":"0.000003805451266010"},{"denom":"ASSET3","index":"0.000001113345454324"},{"denom":"ASSET4","index":"0.000010477701892746"},{"denom":"ASSET5","index":"0.000000863038279582"},{"denom":"ASSET6","index":"0.000003516033595214"},{"denom":"ASSET7","index":"0.000005385515306574"},{"denom":"ASSET8","index":"0.000007028156140823"},{"denom":"ASSET9","index":"0.000003034974493755"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003044385892570"},{"denom":"ASSET1","index":"0.000025830014188245"},{"denom":"ASSET10","index":"0.000020607856539150"},{"denom":"ASSET11","index":"0.000025666657138152"},{"denom":"ASSET12","index":"0.000024468008636658"},{"denom":"ASSET13","index":"0.000008060303383676"},{"denom":"ASSET14","index":"0.000023559408638801"},{"denom":"ASSET15","index":"0.000018562848593971"},{"denom":"ASSET16","index":"0.000011459854746185"},{"denom":"ASSET17","index":"0.000008991538648143"},{"denom":"ASSET18","index":"0.000003718456390600"},{"denom":"ASSET2","index":"0.000007821717005664"},{"denom":"ASSET3","index":"0.000002173111618200"},{"denom":"ASSET4","index":"0.000020942104557307"},{"denom":"ASSET5","index":"0.000001691598021351"},{"denom":"ASSET6","index":"0.000006831113312915"},{"denom":"ASSET7","index":"0.000010730587410374"},{"denom":"ASSET8","index":"0.000014654605067850"},{"denom":"ASSET9","index":"0.000006220578615076"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001387821916020"},{"denom":"ASSET1","index":"0.000011588015182905"},{"denom":"ASSET10","index":"0.000008073788013584"},{"denom":"ASSET11","index":"0.000011209789038410"},{"denom":"ASSET12","index":"0.000010095957715252"},{"denom":"ASSET13","index":"0.000003472532948668"},{"denom":"ASSET14","index":"0.000010471205701129"},{"denom":"ASSET15","index":"0.000007487090765824"},{"denom":"ASSET16","index":"0.000005220712057474"},{"denom":"ASSET17","index":"0.000003707807479495"},{"denom":"ASSET18","index":"0.000001766048060515"},{"denom":"ASSET2","index":"0.000003418926093543"},{"denom":"ASSET3","index":"0.000001000661295671"},{"denom":"ASSET4","index":"0.000009416937550333"},{"denom":"ASSET5","index":"0.000000774321240698"},{"denom":"ASSET6","index":"0.000003159826293771"},{"denom":"ASSET7","index":"0.000004839507754361"},{"denom":"ASSET8","index":"0.000006316674428923"},{"denom":"ASSET9","index":"0.000002727993294151"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000002956721491824"},{"denom":"ASSET1","index":"0.000025136116728129"},{"denom":"ASSET10","index":"0.000020247681325291"},{"denom":"ASSET11","index":"0.000025026479369709"},{"denom":"ASSET12","index":"0.000023957412844230"},{"denom":"ASSET13","index":"0.000007866588644670"},{"denom":"ASSET14","index":"0.000022940688787988"},{"denom":"ASSET15","index":"0.000018203641219753"},{"denom":"ASSET16","index":"0.000011138902531601"},{"denom":"ASSET17","index":"0.000008803888891481"},{"denom":"ASSET18","index":"0.000003602115317706"},{"denom":"ASSET2","index":"0.000007623974866010"},{"denom":"ASSET3","index":"0.000002110544057177"},{"denom":"ASSET4","index":"0.000020374365248917"},{"denom":"ASSET5","index":"0.000001641905652861"},{"denom":"ASSET6","index":"0.000006630874494768"},{"denom":"ASSET7","index":"0.000010436528568948"},{"denom":"ASSET8","index":"0.000014302572224422"},{"denom":"ASSET9","index":"0.000006063325997423"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001500850379058"},{"denom":"ASSET1","index":"0.000012511793460183"},{"denom":"ASSET10","index":"0.000008717304800227"},{"denom":"ASSET11","index":"0.000012103632089176"},{"denom":"ASSET12","index":"0.000010899320696303"},{"denom":"ASSET13","index":"0.000003750781099635"},{"denom":"ASSET14","index":"0.000011306809643305"},{"denom":"ASSET15","index":"0.000008083881387560"},{"denom":"ASSET16","index":"0.000005636258009526"},{"denom":"ASSET17","index":"0.000004002940101492"},{"denom":"ASSET18","index":"0.000001906322054045"},{"denom":"ASSET2","index":"0.000003692952635209"},{"denom":"ASSET3","index":"0.000001079912951956"},{"denom":"ASSET4","index":"0.000010167723378913"},{"denom":"ASSET5","index":"0.000000838512734178"},{"denom":"ASSET6","index":"0.000003412551825143"},{"denom":"ASSET7","index":"0.000005226751790509"},{"denom":"ASSET8","index":"0.000006820396682251"},{"denom":"ASSET9","index":"0.000002945889565704"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003004514310835"},{"denom":"ASSET1","index":"0.000025497942224476"},{"denom":"ASSET10","index":"0.000020385999177782"},{"denom":"ASSET11","index":"0.000025346802479017"},{"denom":"ASSET12","index":"0.000024185328023735"},{"denom":"ASSET13","index":"0.000007962788555043"},{"denom":"ASSET14","index":"0.000023259189454501"},{"denom":"ASSET15","index":"0.000018355567065709"},{"denom":"ASSET16","index":"0.000011309092459120"},{"denom":"ASSET17","index":"0.000008887662321727"},{"denom":"ASSET18","index":"0.000003666570499762"},{"denom":"ASSET2","index":"0.000007723995884874"},{"denom":"ASSET3","index":"0.000002143405494402"},{"denom":"ASSET4","index":"0.000020670641097733"},{"denom":"ASSET5","index":"0.000001670336124344"},{"denom":"ASSET6","index":"0.000006739845385808"},{"denom":"ASSET7","index":"0.000010591422556410"},{"denom":"ASSET8","index":"0.000014475095162856"},{"denom":"ASSET9","index":"0.000006143360978771"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001507842106347"},{"denom":"ASSET1","index":"0.000012572313391156"},{"denom":"ASSET10","index":"0.000008759356679472"},{"denom":"ASSET11","index":"0.000012162445176153"},{"denom":"ASSET12","index":"0.000010952151629736"},{"denom":"ASSET13","index":"0.000003769211161813"},{"denom":"ASSET14","index":"0.000011361231636633"},{"denom":"ASSET15","index":"0.000008123272738112"},{"denom":"ASSET16","index":"0.000005663669344042"},{"denom":"ASSET17","index":"0.000004022225963767"},{"denom":"ASSET18","index":"0.000001916133905138"},{"denom":"ASSET2","index":"0.000003711277866039"},{"denom":"ASSET3","index":"0.000001085756665704"},{"denom":"ASSET4","index":"0.000010217147571101"},{"denom":"ASSET5","index":"0.000000842594465073"},{"denom":"ASSET6","index":"0.000003429493468225"},{"denom":"ASSET7","index":"0.000005252224712828"},{"denom":"ASSET8","index":"0.000006853863583762"},{"denom":"ASSET9","index":"0.000002960115541236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003064659144392"},{"denom":"ASSET1","index":"0.000026014545525120"},{"denom":"ASSET10","index":"0.000020837902255895"},{"denom":"ASSET11","index":"0.000025870951889592"},{"denom":"ASSET12","index":"0.000024704995690840"},{"denom":"ASSET13","index":"0.000008129050348807"},{"denom":"ASSET14","index":"0.000023733606076391"},{"denom":"ASSET15","index":"0.000018755969892396"},{"denom":"ASSET16","index":"0.000011535737727926"},{"denom":"ASSET17","index":"0.000009078938038909"},{"denom":"ASSET18","index":"0.000003738223548700"},{"denom":"ASSET2","index":"0.000007883998416280"},{"denom":"ASSET3","index":"0.000002186926046113"},{"denom":"ASSET4","index":"0.000021089316501471"},{"denom":"ASSET5","index":"0.000001703791082418"},{"denom":"ASSET6","index":"0.000006873778950624"},{"denom":"ASSET7","index":"0.000010805665377904"},{"denom":"ASSET8","index":"0.000014777724141198"},{"denom":"ASSET9","index":"0.000006269886019705"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001016570122529"},{"denom":"ASSET1","index":"0.000008477171470527"},{"denom":"ASSET10","index":"0.000005906463519680"},{"denom":"ASSET11","index":"0.000008200989896911"},{"denom":"ASSET12","index":"0.000007384774710599"},{"denom":"ASSET13","index":"0.000002541117067960"},{"denom":"ASSET14","index":"0.000007660956284215"},{"denom":"ASSET15","index":"0.000005477395717812"},{"denom":"ASSET16","index":"0.000003819073322661"},{"denom":"ASSET17","index":"0.000002711881121289"},{"denom":"ASSET18","index":"0.000001291518742692"},{"denom":"ASSET2","index":"0.000002502279034170"},{"denom":"ASSET3","index":"0.000000731757874738"},{"denom":"ASSET4","index":"0.000006889127422234"},{"denom":"ASSET5","index":"0.000000567775065403"},{"denom":"ASSET6","index":"0.000002312404202309"},{"denom":"ASSET7","index":"0.000003541658795591"},{"denom":"ASSET8","index":"0.000004621109544256"},{"denom":"ASSET9","index":"0.000001996151641449"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000002499545170163"},{"denom":"ASSET1","index":"0.000021282413071401"},{"denom":"ASSET10","index":"0.000017412808765385"},{"denom":"ASSET11","index":"0.000021259874812403"},{"denom":"ASSET12","index":"0.000020486111882687"},{"denom":"ASSET13","index":"0.000006694303381301"},{"denom":"ASSET14","index":"0.000019446986985139"},{"denom":"ASSET15","index":"0.000015606004703242"},{"denom":"ASSET16","index":"0.000009412782427040"},{"denom":"ASSET17","index":"0.000007528963649123"},{"denom":"ASSET18","index":"0.000003027066879988"},{"denom":"ASSET2","index":"0.000006477094521478"},{"denom":"ASSET3","index":"0.000001780578331809"},{"denom":"ASSET4","index":"0.000017246051064985"},{"denom":"ASSET5","index":"0.000001387924123500"},{"denom":"ASSET6","index":"0.000005593713918003"},{"denom":"ASSET7","index":"0.000008831780754063"},{"denom":"ASSET8","index":"0.000012169406160300"},{"denom":"ASSET9","index":"0.000005149034362400"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001552339226368"},{"denom":"ASSET1","index":"0.000012948480372324"},{"denom":"ASSET10","index":"0.000009021431734191"},{"denom":"ASSET11","index":"0.000012526515146109"},{"denom":"ASSET12","index":"0.000011279099696349"},{"denom":"ASSET13","index":"0.000003880848065920"},{"denom":"ASSET14","index":"0.000011701064922564"},{"denom":"ASSET15","index":"0.000008365383608761"},{"denom":"ASSET16","index":"0.000005830512213323"},{"denom":"ASSET17","index":"0.000004142651308462"},{"denom":"ASSET18","index":"0.000001971224414436"},{"denom":"ASSET2","index":"0.000003822327341117"},{"denom":"ASSET3","index":"0.000001118053847563"},{"denom":"ASSET4","index":"0.000010521410312050"},{"denom":"ASSET5","index":"0.000000865490719463"},{"denom":"ASSET6","index":"0.000003529723717099"},{"denom":"ASSET7","index":"0.000005408546987108"},{"denom":"ASSET8","index":"0.000007056367396050"},{"denom":"ASSET9","index":"0.000003046157727933"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003043964098015"},{"denom":"ASSET1","index":"0.000025828331615061"},{"denom":"ASSET10","index":"0.000020594675215425"},{"denom":"ASSET11","index":"0.000025661520704142"},{"denom":"ASSET12","index":"0.000024456429429906"},{"denom":"ASSET13","index":"0.000008058244190043"},{"denom":"ASSET14","index":"0.000023555461855486"},{"denom":"ASSET15","index":"0.000018552812657155"},{"denom":"ASSET16","index":"0.000011456604402492"},{"denom":"ASSET17","index":"0.000008987560143691"},{"denom":"ASSET18","index":"0.000003716794339222"},{"denom":"ASSET2","index":"0.000007820148034807"},{"denom":"ASSET3","index":"0.000002173135080244"},{"denom":"ASSET4","index":"0.000020938599170426"},{"denom":"ASSET5","index":"0.000001690207511083"},{"denom":"ASSET6","index":"0.000006829800145738"},{"denom":"ASSET7","index":"0.000010729300481432"},{"denom":"ASSET8","index":"0.000014648719853803"},{"denom":"ASSET9","index":"0.000006217447736766"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000000977108719668"},{"denom":"ASSET1","index":"0.000008146517162771"},{"denom":"ASSET10","index":"0.000005675852121603"},{"denom":"ASSET11","index":"0.000007881108738917"},{"denom":"ASSET12","index":"0.000007096716963958"},{"denom":"ASSET13","index":"0.000002441926549413"},{"denom":"ASSET14","index":"0.000007362125387813"},{"denom":"ASSET15","index":"0.000005263370239944"},{"denom":"ASSET16","index":"0.000003670074447059"},{"denom":"ASSET17","index":"0.000002605905002368"},{"denom":"ASSET18","index":"0.000001241671893765"},{"denom":"ASSET2","index":"0.000002404735560083"},{"denom":"ASSET3","index":"0.000000703247798239"},{"denom":"ASSET4","index":"0.000006620841350486"},{"denom":"ASSET5","index":"0.000000546031343344"},{"denom":"ASSET6","index":"0.000002222161612464"},{"denom":"ASSET7","index":"0.000003402975523689"},{"denom":"ASSET8","index":"0.000004440942225898"},{"denom":"ASSET9","index":"0.000001917871699764"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000002320380931676"},{"denom":"ASSET1","index":"0.000019748951316256"},{"denom":"ASSET10","index":"0.000016101172379351"},{"denom":"ASSET11","index":"0.000019714000020718"},{"denom":"ASSET12","index":"0.000018967805559844"},{"denom":"ASSET13","index":"0.000006204998608741"},{"denom":"ASSET14","index":"0.000018041457784230"},{"denom":"ASSET15","index":"0.000014440911570898"},{"denom":"ASSET16","index":"0.000008738221404310"},{"denom":"ASSET17","index":"0.000006970584758543"},{"denom":"ASSET18","index":"0.000002814127990287"},{"denom":"ASSET2","index":"0.000006006105656449"},{"denom":"ASSET3","index":"0.000001653724297068"},{"denom":"ASSET4","index":"0.000016005284799403"},{"denom":"ASSET5","index":"0.000001288969102308"},{"denom":"ASSET6","index":"0.000005195185892122"},{"denom":"ASSET7","index":"0.000008196101819524"},{"denom":"ASSET8","index":"0.000011280171312915"},{"denom":"ASSET9","index":"0.000004774394171461"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001745798220012"},{"denom":"ASSET1","index":"0.000014553743296829"},{"denom":"ASSET10","index":"0.000010139438249561"},{"denom":"ASSET11","index":"0.000014079320164724"},{"denom":"ASSET12","index":"0.000012678243118663"},{"denom":"ASSET13","index":"0.000004363016060013"},{"denom":"ASSET14","index":"0.000013152173087429"},{"denom":"ASSET15","index":"0.000009403145384454"},{"denom":"ASSET16","index":"0.000006556113428486"},{"denom":"ASSET17","index":"0.000004655955083371"},{"denom":"ASSET18","index":"0.000002217755535422"},{"denom":"ASSET2","index":"0.000004295945845911"},{"denom":"ASSET3","index":"0.000001256580187737"},{"denom":"ASSET4","index":"0.000011827536358912"},{"denom":"ASSET5","index":"0.000000975477084515"},{"denom":"ASSET6","index":"0.000003969964878841"},{"denom":"ASSET7","index":"0.000006080210806364"},{"denom":"ASSET8","index":"0.000007934011797614"},{"denom":"ASSET9","index":"0.000003426498879278"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003342998947188"},{"denom":"ASSET1","index":"0.000028345782457833"},{"denom":"ASSET10","index":"0.000022532322238539"},{"denom":"ASSET11","index":"0.000028144588841629"},{"denom":"ASSET12","index":"0.000026788988923046"},{"denom":"ASSET13","index":"0.000008836278349189"},{"denom":"ASSET14","index":"0.000025846526421467"},{"denom":"ASSET15","index":"0.000020312521464953"},{"denom":"ASSET16","index":"0.000012581099317360"},{"denom":"ASSET17","index":"0.000009844015126225"},{"denom":"ASSET18","index":"0.000004087085525414"},{"denom":"ASSET2","index":"0.000008577030596387"},{"denom":"ASSET3","index":"0.000002386540105172"},{"denom":"ASSET4","index":"0.000022982635628207"},{"denom":"ASSET5","index":"0.000001858980311097"},{"denom":"ASSET6","index":"0.000007503977785171"},{"denom":"ASSET7","index":"0.000011778054778213"},{"denom":"ASSET8","index":"0.000016064148587518"},{"denom":"ASSET9","index":"0.000006822246648031"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001535240763659"},{"denom":"ASSET1","index":"0.000012802535686671"},{"denom":"ASSET10","index":"0.000008918976928097"},{"denom":"ASSET11","index":"0.000012384847277788"},{"denom":"ASSET12","index":"0.000011152366284839"},{"denom":"ASSET13","index":"0.000003838101909148"},{"denom":"ASSET14","index":"0.000011569197017318"},{"denom":"ASSET15","index":"0.000008271431242866"},{"denom":"ASSET16","index":"0.000005767016142371"},{"denom":"ASSET17","index":"0.000004095404830432"},{"denom":"ASSET18","index":"0.000001951213819735"},{"denom":"ASSET2","index":"0.000003778922237253"},{"denom":"ASSET3","index":"0.000001105544885116"},{"denom":"ASSET4","index":"0.000010403614783903"},{"denom":"ASSET5","index":"0.000000857676404279"},{"denom":"ASSET6","index":"0.000003491600641819"},{"denom":"ASSET7","index":"0.000005348470057083"},{"denom":"ASSET8","index":"0.000006978912901618"},{"denom":"ASSET9","index":"0.000003013874884636"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003086246918243"},{"denom":"ASSET1","index":"0.000026194228204796"},{"denom":"ASSET10","index":"0.000020951998769875"},{"denom":"ASSET11","index":"0.000026042273492864"},{"denom":"ASSET12","index":"0.000024853724280460"},{"denom":"ASSET13","index":"0.000008181454895403"},{"denom":"ASSET14","index":"0.000023895275980533"},{"denom":"ASSET15","index":"0.000018864347888264"},{"denom":"ASSET16","index":"0.000011616907749245"},{"denom":"ASSET17","index":"0.000009133094250657"},{"denom":"ASSET18","index":"0.000003766346411006"},{"denom":"ASSET2","index":"0.000007935833032906"},{"denom":"ASSET3","index":"0.000002202232138461"},{"denom":"ASSET4","index":"0.000021234941701767"},{"denom":"ASSET5","index":"0.000001715417631736"},{"denom":"ASSET6","index":"0.000006923101305069"},{"denom":"ASSET7","index":"0.000010881195638563"},{"denom":"ASSET8","index":"0.000014873239564067"},{"denom":"ASSET9","index":"0.000006310901439146"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001694764141112"},{"denom":"ASSET1","index":"0.000014130580032100"},{"denom":"ASSET10","index":"0.000009844524497723"},{"denom":"ASSET11","index":"0.000013669508873851"},{"denom":"ASSET12","index":"0.000012309527666765"},{"denom":"ASSET13","index":"0.000004236016804025"},{"denom":"ASSET14","index":"0.000012769407426673"},{"denom":"ASSET15","index":"0.000009129685492685"},{"denom":"ASSET16","index":"0.000006365641339869"},{"denom":"ASSET17","index":"0.000004520761007698"},{"denom":"ASSET18","index":"0.000002153452502679"},{"denom":"ASSET2","index":"0.000004171085594400"},{"denom":"ASSET3","index":"0.000001219991901933"},{"denom":"ASSET4","index":"0.000011483292916774"},{"denom":"ASSET5","index":"0.000000947161681676"},{"denom":"ASSET6","index":"0.000003854173635500"},{"denom":"ASSET7","index":"0.000005903378783277"},{"denom":"ASSET8","index":"0.000007702985978462"},{"denom":"ASSET9","index":"0.000003326979869284"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003333609736915"},{"denom":"ASSET1","index":"0.000028281729059652"},{"denom":"ASSET10","index":"0.000022560289398652"},{"denom":"ASSET11","index":"0.000028101042421314"},{"denom":"ASSET12","index":"0.000026787599659919"},{"denom":"ASSET13","index":"0.000008826015241086"},{"denom":"ASSET14","index":"0.000025794402991537"},{"denom":"ASSET15","index":"0.000020323143219667"},{"denom":"ASSET16","index":"0.000012547562311789"},{"denom":"ASSET17","index":"0.000009844220733470"},{"denom":"ASSET18","index":"0.000004071528772633"},{"denom":"ASSET2","index":"0.000008563776406339"},{"denom":"ASSET3","index":"0.000002379222276435"},{"denom":"ASSET4","index":"0.000022929058250150"},{"denom":"ASSET5","index":"0.000001853699834530"},{"denom":"ASSET6","index":"0.000007480326246914"},{"denom":"ASSET7","index":"0.000011749530638760"},{"denom":"ASSET8","index":"0.000016044906214881"},{"denom":"ASSET9","index":"0.000006811209452101"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001763265776240"},{"denom":"ASSET1","index":"0.000014701143889842"},{"denom":"ASSET10","index":"0.000010242267715158"},{"denom":"ASSET11","index":"0.000014221824092125"},{"denom":"ASSET12","index":"0.000012807154532407"},{"denom":"ASSET13","index":"0.000004407037513175"},{"denom":"ASSET14","index":"0.000013285723045174"},{"denom":"ASSET15","index":"0.000009498495615253"},{"denom":"ASSET16","index":"0.000006622576828953"},{"denom":"ASSET17","index":"0.000004703043783239"},{"denom":"ASSET18","index":"0.000002240331719108"},{"denom":"ASSET2","index":"0.000004339421867729"},{"denom":"ASSET3","index":"0.000001269671564485"},{"denom":"ASSET4","index":"0.000011947684550294"},{"denom":"ASSET5","index":"0.000000984934568662"},{"denom":"ASSET6","index":"0.000004010359059893"},{"denom":"ASSET7","index":"0.000006141754461338"},{"denom":"ASSET8","index":"0.000008013956555240"},{"denom":"ASSET9","index":"0.000003461169761882"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003372790294110"},{"denom":"ASSET1","index":"0.000028600279733511"},{"denom":"ASSET10","index":"0.000022731421090197"},{"denom":"ASSET11","index":"0.000028396190348540"},{"denom":"ASSET12","index":"0.000027027392524280"},{"denom":"ASSET13","index":"0.000008915082315276"},{"denom":"ASSET14","index":"0.000026078776667620"},{"denom":"ASSET15","index":"0.000020492230414373"},{"denom":"ASSET16","index":"0.000012694274413467"},{"denom":"ASSET17","index":"0.000009931274832025"},{"denom":"ASSET18","index":"0.000004123939856338"},{"denom":"ASSET2","index":"0.000008653658587521"},{"denom":"ASSET3","index":"0.000002407864000528"},{"denom":"ASSET4","index":"0.000023189126720885"},{"denom":"ASSET5","index":"0.000001875419633234"},{"denom":"ASSET6","index":"0.000007571725921487"},{"denom":"ASSET7","index":"0.000011883748947250"},{"denom":"ASSET8","index":"0.000016207221904670"},{"denom":"ASSET9","index":"0.000006883201227023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001453309126336"},{"denom":"ASSET1","index":"0.000012116886392617"},{"denom":"ASSET10","index":"0.000008441923956558"},{"denom":"ASSET11","index":"0.000011721955689254"},{"denom":"ASSET12","index":"0.000010555542874101"},{"denom":"ASSET13","index":"0.000003632376264868"},{"denom":"ASSET14","index":"0.000010950025301978"},{"denom":"ASSET15","index":"0.000007829131366891"},{"denom":"ASSET16","index":"0.000005458650595742"},{"denom":"ASSET17","index":"0.000003876686404859"},{"denom":"ASSET18","index":"0.000001846446727754"},{"denom":"ASSET2","index":"0.000003576790104576"},{"denom":"ASSET3","index":"0.000001046274984845"},{"denom":"ASSET4","index":"0.000009847267605868"},{"denom":"ASSET5","index":"0.000000812275181037"},{"denom":"ASSET6","index":"0.000003305135159925"},{"denom":"ASSET7","index":"0.000005061926790434"},{"denom":"ASSET8","index":"0.000006605339289501"},{"denom":"ASSET9","index":"0.000002852825194325"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000002846126280344"},{"denom":"ASSET1","index":"0.000024142729904188"},{"denom":"ASSET10","index":"0.000019247649074564"},{"denom":"ASSET11","index":"0.000023985879136349"},{"denom":"ASSET12","index":"0.000022859091275790"},{"denom":"ASSET13","index":"0.000007532792628817"},{"denom":"ASSET14","index":"0.000022018595952129"},{"denom":"ASSET15","index":"0.000017341431925331"},{"denom":"ASSET16","index":"0.000010711928951149"},{"denom":"ASSET17","index":"0.000008400535387767"},{"denom":"ASSET18","index":"0.000003476353193421"},{"denom":"ASSET2","index":"0.000007309791035362"},{"denom":"ASSET3","index":"0.000002031285314481"},{"denom":"ASSET4","index":"0.000019573873127075"},{"denom":"ASSET5","index":"0.000001582650339951"},{"denom":"ASSET6","index":"0.000006386635795582"},{"denom":"ASSET7","index":"0.000010030235680714"},{"denom":"ASSET8","index":"0.000013694243666513"},{"denom":"ASSET9","index":"0.000005813799926422"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001542334439671"},{"denom":"ASSET1","index":"0.000012860022908304"},{"denom":"ASSET10","index":"0.000008959505058412"},{"denom":"ASSET11","index":"0.000012440701863130"},{"denom":"ASSET12","index":"0.000011202637482986"},{"denom":"ASSET13","index":"0.000003855293405849"},{"denom":"ASSET14","index":"0.000011621234937056"},{"denom":"ASSET15","index":"0.000008308996655285"},{"denom":"ASSET16","index":"0.000005793070384239"},{"denom":"ASSET17","index":"0.000004114339021332"},{"denom":"ASSET18","index":"0.000001959846507084"},{"denom":"ASSET2","index":"0.000003796320730815"},{"denom":"ASSET3","index":"0.000001110350550164"},{"denom":"ASSET4","index":"0.000010450826325201"},{"denom":"ASSET5","index":"0.000000861797005699"},{"denom":"ASSET6","index":"0.000003507969675592"},{"denom":"ASSET7","index":"0.000005372663952407"},{"denom":"ASSET8","index":"0.000007010512417899"},{"denom":"ASSET9","index":"0.000003027866977623"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003036454064443"},{"denom":"ASSET1","index":"0.000025762443856573"},{"denom":"ASSET10","index":"0.000020552854458451"},{"denom":"ASSET11","index":"0.000025598594042577"},{"denom":"ASSET12","index":"0.000024403233064712"},{"denom":"ASSET13","index":"0.000008040226829205"},{"denom":"ASSET14","index":"0.000023496526683137"},{"denom":"ASSET15","index":"0.000018514610345002"},{"denom":"ASSET16","index":"0.000011429420030088"},{"denom":"ASSET17","index":"0.000008967792958730"},{"denom":"ASSET18","index":"0.000003708688180539"},{"denom":"ASSET2","index":"0.000007801450355100"},{"denom":"ASSET3","index":"0.000002167197324698"},{"denom":"ASSET4","index":"0.000020886439041228"},{"denom":"ASSET5","index":"0.000001688395026424"},{"denom":"ASSET6","index":"0.000006814112030993"},{"denom":"ASSET7","index":"0.000010703097412338"},{"denom":"ASSET8","index":"0.000014616213118562"},{"denom":"ASSET9","index":"0.000006204650488693"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001802604811891"},{"denom":"ASSET1","index":"0.000015041134377282"},{"denom":"ASSET10","index":"0.000010478421042795"},{"denom":"ASSET11","index":"0.000014549893343095"},{"denom":"ASSET12","index":"0.000013101148598203"},{"denom":"ASSET13","index":"0.000004508593559534"},{"denom":"ASSET14","index":"0.000013592389632390"},{"denom":"ASSET15","index":"0.000009716581133843"},{"denom":"ASSET16","index":"0.000006773297988330"},{"denom":"ASSET17","index":"0.000004812496911192"},{"denom":"ASSET18","index":"0.000002289682786467"},{"denom":"ASSET2","index":"0.000004437821546134"},{"denom":"ASSET3","index":"0.000001298874598869"},{"denom":"ASSET4","index":"0.000012222743020122"},{"denom":"ASSET5","index":"0.000001007460426045"},{"denom":"ASSET6","index":"0.000004100613717582"},{"denom":"ASSET7","index":"0.000006282056954143"},{"denom":"ASSET8","index":"0.000008197064375552"},{"denom":"ASSET9","index":"0.000003538600669994"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003500919125422"},{"denom":"ASSET1","index":"0.000029708744113596"},{"denom":"ASSET10","index":"0.000023658219501850"},{"denom":"ASSET11","index":"0.000029508250092955"},{"denom":"ASSET12","index":"0.000028107871580940"},{"denom":"ASSET13","index":"0.000009266072102552"},{"denom":"ASSET14","index":"0.000027092614384257"},{"denom":"ASSET15","index":"0.000021318431245277"},{"denom":"ASSET16","index":"0.000013180724612002"},{"denom":"ASSET17","index":"0.000010330094773179"},{"denom":"ASSET18","index":"0.000004277644880979"},{"denom":"ASSET2","index":"0.000008990842831989"},{"denom":"ASSET3","index":"0.000002500335792843"},{"denom":"ASSET4","index":"0.000024086210482120"},{"denom":"ASSET5","index":"0.000001946754653173"},{"denom":"ASSET6","index":"0.000007858889858659"},{"denom":"ASSET7","index":"0.000012341576470869"},{"denom":"ASSET8","index":"0.000016843078118646"},{"denom":"ASSET9","index":"0.000007150129263591"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001563811170888"},{"denom":"ASSET1","index":"0.000013038374863878"},{"denom":"ASSET10","index":"0.000009083864212622"},{"denom":"ASSET11","index":"0.000012612362006834"},{"denom":"ASSET12","index":"0.000011358137819015"},{"denom":"ASSET13","index":"0.000003908204905926"},{"denom":"ASSET14","index":"0.000011781504633469"},{"denom":"ASSET15","index":"0.000008423676586333"},{"denom":"ASSET16","index":"0.000005872891529250"},{"denom":"ASSET17","index":"0.000004170163122369"},{"denom":"ASSET18","index":"0.000001987177985342"},{"denom":"ASSET2","index":"0.000003848668947643"},{"denom":"ASSET3","index":"0.000001125891122188"},{"denom":"ASSET4","index":"0.000010596077552999"},{"denom":"ASSET5","index":"0.000000873194054811"},{"denom":"ASSET6","index":"0.000003556281241411"},{"denom":"ASSET7","index":"0.000005446878672206"},{"denom":"ASSET8","index":"0.000007107270397641"},{"denom":"ASSET9","index":"0.000003069409404789"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003311345528520"},{"denom":"ASSET1","index":"0.000028134750769747"},{"denom":"ASSET10","index":"0.000022648872120201"},{"denom":"ASSET11","index":"0.000028007957662740"},{"denom":"ASSET12","index":"0.000026803793052874"},{"denom":"ASSET13","index":"0.000008804941803873"},{"denom":"ASSET14","index":"0.000025676450668466"},{"denom":"ASSET15","index":"0.000020365161363483"},{"denom":"ASSET16","index":"0.000012467103206876"},{"denom":"ASSET17","index":"0.000009848512066991"},{"denom":"ASSET18","index":"0.000004032794375330"},{"denom":"ASSET2","index":"0.000008534928074651"},{"denom":"ASSET3","index":"0.000002362590241163"},{"denom":"ASSET4","index":"0.000022806063702805"},{"denom":"ASSET5","index":"0.000001840254083448"},{"denom":"ASSET6","index":"0.000007424521355960"},{"denom":"ASSET7","index":"0.000011683846998076"},{"denom":"ASSET8","index":"0.000016006498096466"},{"denom":"ASSET9","index":"0.000006786333067798"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001600184479142"},{"denom":"ASSET1","index":"0.000013342157474081"},{"denom":"ASSET10","index":"0.000009295060662992"},{"denom":"ASSET11","index":"0.000012907134644369"},{"denom":"ASSET12","index":"0.000011622469236023"},{"denom":"ASSET13","index":"0.000003999732516397"},{"denom":"ASSET14","index":"0.000012056763384279"},{"denom":"ASSET15","index":"0.000008620301633991"},{"denom":"ASSET16","index":"0.000006010164655719"},{"denom":"ASSET17","index":"0.000004268615973958"},{"denom":"ASSET18","index":"0.000002033021264483"},{"denom":"ASSET2","index":"0.000003938523274026"},{"denom":"ASSET3","index":"0.000001152045383207"},{"denom":"ASSET4","index":"0.000010842780077243"},{"denom":"ASSET5","index":"0.000000894092147498"},{"denom":"ASSET6","index":"0.000003639035195279"},{"denom":"ASSET7","index":"0.000005573684463094"},{"denom":"ASSET8","index":"0.000007272969620361"},{"denom":"ASSET9","index":"0.000003141345760282"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003037978324998"},{"denom":"ASSET1","index":"0.000025756345113171"},{"denom":"ASSET10","index":"0.000020449699671521"},{"denom":"ASSET11","index":"0.000025567125107120"},{"denom":"ASSET12","index":"0.000024323299608917"},{"denom":"ASSET13","index":"0.000008026089638757"},{"denom":"ASSET14","index":"0.000023482777870484"},{"denom":"ASSET15","index":"0.000018439819094125"},{"denom":"ASSET16","index":"0.000011433094032389"},{"denom":"ASSET17","index":"0.000008938487942114"},{"denom":"ASSET18","index":"0.000003715472889790"},{"denom":"ASSET2","index":"0.000007791978720736"},{"denom":"ASSET3","index":"0.000002168844641333"},{"denom":"ASSET4","index":"0.000020883291069830"},{"denom":"ASSET5","index":"0.000001689134510364"},{"denom":"ASSET6","index":"0.000006819968009550"},{"denom":"ASSET7","index":"0.000010702337477897"},{"denom":"ASSET8","index":"0.000014590947163921"},{"denom":"ASSET9","index":"0.000006197850437110"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001732863553160"},{"denom":"ASSET1","index":"0.000014476512568697"},{"denom":"ASSET10","index":"0.000010084697727409"},{"denom":"ASSET11","index":"0.000014004946421444"},{"denom":"ASSET12","index":"0.000012607292539223"},{"denom":"ASSET13","index":"0.000004334999642824"},{"denom":"ASSET14","index":"0.000013078858686476"},{"denom":"ASSET15","index":"0.000009351781667220"},{"denom":"ASSET16","index":"0.000006516703263852"},{"denom":"ASSET17","index":"0.000004630438674838"},{"denom":"ASSET18","index":"0.000002204429700414"},{"denom":"ASSET2","index":"0.000004272502924514"},{"denom":"ASSET3","index":"0.000001249934366214"},{"denom":"ASSET4","index":"0.000011760746082105"},{"denom":"ASSET5","index":"0.000000965858373893"},{"denom":"ASSET6","index":"0.000003948656293267"},{"denom":"ASSET7","index":"0.000006045137116599"},{"denom":"ASSET8","index":"0.000007891631066688"},{"denom":"ASSET9","index":"0.000003403230388010"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003203314564743"},{"denom":"ASSET1","index":"0.000027174750089688"},{"denom":"ASSET10","index":"0.000021494761442080"},{"denom":"ASSET11","index":"0.000026954579685264"},{"denom":"ASSET12","index":"0.000025598519259277"},{"denom":"ASSET13","index":"0.000008453363478510"},{"denom":"ASSET14","index":"0.000024766008219885"},{"denom":"ASSET15","index":"0.000019395989679368"},{"denom":"ASSET16","index":"0.000012063312986412"},{"denom":"ASSET17","index":"0.000009406957788586"},{"denom":"ASSET18","index":"0.000003925664786352"},{"denom":"ASSET2","index":"0.000008214094571203"},{"denom":"ASSET3","index":"0.000002289770772075"},{"denom":"ASSET4","index":"0.000022031271429646"},{"denom":"ASSET5","index":"0.000001779377444361"},{"denom":"ASSET6","index":"0.000007202120906665"},{"denom":"ASSET7","index":"0.000011290805949933"},{"denom":"ASSET8","index":"0.000015376618183469"},{"denom":"ASSET9","index":"0.000006529467958809"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001687731873143"},{"denom":"ASSET1","index":"0.000014069560961171"},{"denom":"ASSET10","index":"0.000009802495056563"},{"denom":"ASSET11","index":"0.000013610740912442"},{"denom":"ASSET12","index":"0.000012256373563096"},{"denom":"ASSET13","index":"0.000004217751625940"},{"denom":"ASSET14","index":"0.000012714404583367"},{"denom":"ASSET15","index":"0.000009090791386823"},{"denom":"ASSET16","index":"0.000006338265608675"},{"denom":"ASSET17","index":"0.000004501407356839"},{"denom":"ASSET18","index":"0.000002144184836496"},{"denom":"ASSET2","index":"0.000004153051292327"},{"denom":"ASSET3","index":"0.000001214709312157"},{"denom":"ASSET4","index":"0.000011433811394910"},{"denom":"ASSET5","index":"0.000000942889008137"},{"denom":"ASSET6","index":"0.000003837834423079"},{"denom":"ASSET7","index":"0.000005877867503028"},{"denom":"ASSET8","index":"0.000007669751132718"},{"denom":"ASSET9","index":"0.000003312735983819"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003310751488522"},{"denom":"ASSET1","index":"0.000028084250149300"},{"denom":"ASSET10","index":"0.000022395324527460"},{"denom":"ASSET11","index":"0.000027902986790638"},{"denom":"ASSET12","index":"0.000026594787286768"},{"denom":"ASSET13","index":"0.000008763085936534"},{"denom":"ASSET14","index":"0.000025613920456358"},{"denom":"ASSET15","index":"0.000020176020856033"},{"denom":"ASSET16","index":"0.000012460451689171"},{"denom":"ASSET17","index":"0.000009773335616478"},{"denom":"ASSET18","index":"0.000004043661907525"},{"denom":"ASSET2","index":"0.000008503271494062"},{"denom":"ASSET3","index":"0.000002362859659779"},{"denom":"ASSET4","index":"0.000022769116693783"},{"denom":"ASSET5","index":"0.000001840413908887"},{"denom":"ASSET6","index":"0.000007429033260494"},{"denom":"ASSET7","index":"0.000011667535172652"},{"denom":"ASSET8","index":"0.000015931047386954"},{"denom":"ASSET9","index":"0.000006763232815972"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001411639939639"},{"denom":"ASSET1","index":"0.000011770559134781"},{"denom":"ASSET10","index":"0.000008200405560598"},{"denom":"ASSET11","index":"0.000011386782830640"},{"denom":"ASSET12","index":"0.000010253700018254"},{"denom":"ASSET13","index":"0.000003528795747429"},{"denom":"ASSET14","index":"0.000010636868119061"},{"denom":"ASSET15","index":"0.000007604974496011"},{"denom":"ASSET16","index":"0.000005302316671163"},{"denom":"ASSET17","index":"0.000003765386844594"},{"denom":"ASSET18","index":"0.000001793591633776"},{"denom":"ASSET2","index":"0.000003474665650649"},{"denom":"ASSET3","index":"0.000001016307772140"},{"denom":"ASSET4","index":"0.000009565822046806"},{"denom":"ASSET5","index":"0.000000788839724994"},{"denom":"ASSET6","index":"0.000003210705403426"},{"denom":"ASSET7","index":"0.000004917323960353"},{"denom":"ASSET8","index":"0.000006416545180176"},{"denom":"ASSET9","index":"0.000002771582595835"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000002915106026686"},{"denom":"ASSET1","index":"0.000024751938975568"},{"denom":"ASSET10","index":"0.000019864528416862"},{"denom":"ASSET11","index":"0.000024625253839727"},{"denom":"ASSET12","index":"0.000023534700266806"},{"denom":"ASSET13","index":"0.000007739190454504"},{"denom":"ASSET14","index":"0.000022584902384729"},{"denom":"ASSET15","index":"0.000017872912229645"},{"denom":"ASSET16","index":"0.000010972881933217"},{"denom":"ASSET17","index":"0.000008648586457086"},{"denom":"ASSET18","index":"0.000003552999450219"},{"denom":"ASSET2","index":"0.000007504215303421"},{"denom":"ASSET3","index":"0.000002079538758775"},{"denom":"ASSET4","index":"0.000020065180146540"},{"denom":"ASSET5","index":"0.000001620267199228"},{"denom":"ASSET6","index":"0.000006536798446662"},{"denom":"ASSET7","index":"0.000010280222742310"},{"denom":"ASSET8","index":"0.000014068743113537"},{"denom":"ASSET9","index":"0.000005967789042866"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001670929391506"},{"denom":"ASSET1","index":"0.000013946161101263"},{"denom":"ASSET10","index":"0.000009716355120388"},{"denom":"ASSET11","index":"0.000013489421488305"},{"denom":"ASSET12","index":"0.000012147571569489"},{"denom":"ASSET13","index":"0.000004178741924768"},{"denom":"ASSET14","index":"0.000012601474290441"},{"denom":"ASSET15","index":"0.000009009969010905"},{"denom":"ASSET16","index":"0.000006280878901179"},{"denom":"ASSET17","index":"0.000004459594233357"},{"denom":"ASSET18","index":"0.000002124832112458"},{"denom":"ASSET2","index":"0.000004116330300637"},{"denom":"ASSET3","index":"0.000001202842210524"},{"denom":"ASSET4","index":"0.000011333383563781"},{"denom":"ASSET5","index":"0.000000933337469958"},{"denom":"ASSET6","index":"0.000003804272179982"},{"denom":"ASSET7","index":"0.000005824139288221"},{"denom":"ASSET8","index":"0.000007600033683947"},{"denom":"ASSET9","index":"0.000003282284050887"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003306866574231"},{"denom":"ASSET1","index":"0.000028073670524533"},{"denom":"ASSET10","index":"0.000022410378668975"},{"denom":"ASSET11","index":"0.000027896117796052"},{"denom":"ASSET12","index":"0.000026601615360568"},{"denom":"ASSET13","index":"0.000008760019105133"},{"denom":"ASSET14","index":"0.000025604072816608"},{"denom":"ASSET15","index":"0.000020183975077340"},{"denom":"ASSET16","index":"0.000012452378452775"},{"denom":"ASSET17","index":"0.000009773941069454"},{"denom":"ASSET18","index":"0.000004038323507821"},{"denom":"ASSET2","index":"0.000008501686860316"},{"denom":"ASSET3","index":"0.000002358773872569"},{"denom":"ASSET4","index":"0.000022758821093429"},{"denom":"ASSET5","index":"0.000001837837668790"},{"denom":"ASSET6","index":"0.000007423905647148"},{"denom":"ASSET7","index":"0.000011659308440973"},{"denom":"ASSET8","index":"0.000015926660063085"},{"denom":"ASSET9","index":"0.000006759875068056"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001598361255475"},{"denom":"ASSET1","index":"0.000013324868720531"},{"denom":"ASSET10","index":"0.000009283863630055"},{"denom":"ASSET11","index":"0.000012890721875256"},{"denom":"ASSET12","index":"0.000011607749807828"},{"denom":"ASSET13","index":"0.000003994929715268"},{"denom":"ASSET14","index":"0.000012041896653103"},{"denom":"ASSET15","index":"0.000008609605674538"},{"denom":"ASSET16","index":"0.000006002777756047"},{"denom":"ASSET17","index":"0.000004262945630213"},{"denom":"ASSET18","index":"0.000002030561253910"},{"denom":"ASSET2","index":"0.000003933279565341"},{"denom":"ASSET3","index":"0.000001150586482321"},{"denom":"ASSET4","index":"0.000010829011071909"},{"denom":"ASSET5","index":"0.000000892953750521"},{"denom":"ASSET6","index":"0.000003634763049905"},{"denom":"ASSET7","index":"0.000005566684063932"},{"denom":"ASSET8","index":"0.000007263685559290"},{"denom":"ASSET9","index":"0.000003137668156809"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003119961272076"},{"denom":"ASSET1","index":"0.000026462428012801"},{"denom":"ASSET10","index":"0.000021088828135750"},{"denom":"ASSET11","index":"0.000026288818556387"},{"denom":"ASSET12","index":"0.000025049012446876"},{"denom":"ASSET13","index":"0.000008256026418292"},{"denom":"ASSET14","index":"0.000024133914778951"},{"denom":"ASSET15","index":"0.000019001193386697"},{"denom":"ASSET16","index":"0.000011741691861213"},{"denom":"ASSET17","index":"0.000009205139483526"},{"denom":"ASSET18","index":"0.000003811157018018"},{"denom":"ASSET2","index":"0.000008011229275486"},{"denom":"ASSET3","index":"0.000002226652147557"},{"denom":"ASSET4","index":"0.000021454928269907"},{"denom":"ASSET5","index":"0.000001734689929917"},{"denom":"ASSET6","index":"0.000007001091110949"},{"denom":"ASSET7","index":"0.000010994186615549"},{"denom":"ASSET8","index":"0.000015007966738007"},{"denom":"ASSET9","index":"0.000006372340046203"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001543375593884"},{"denom":"ASSET1","index":"0.000012871309378663"},{"denom":"ASSET10","index":"0.000008967332198598"},{"denom":"ASSET11","index":"0.000012451619524186"},{"denom":"ASSET12","index":"0.000011213472915376"},{"denom":"ASSET13","index":"0.000003858438984711"},{"denom":"ASSET14","index":"0.000011631932007817"},{"denom":"ASSET15","index":"0.000008316259081242"},{"denom":"ASSET16","index":"0.000005798119954378"},{"denom":"ASSET17","index":"0.000004118129774432"},{"denom":"ASSET18","index":"0.000001961834686325"},{"denom":"ASSET2","index":"0.000003799362406955"},{"denom":"ASSET3","index":"0.000001111378119041"},{"denom":"ASSET4","index":"0.000010460246548983"},{"denom":"ASSET5","index":"0.000000862764187650"},{"denom":"ASSET6","index":"0.000003511364090393"},{"denom":"ASSET7","index":"0.000005377199337864"},{"denom":"ASSET8","index":"0.000007016574370602"},{"denom":"ASSET9","index":"0.000003030136134086"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003061984062566"},{"denom":"ASSET1","index":"0.000025984754387841"},{"denom":"ASSET10","index":"0.000020750278468036"},{"denom":"ASSET11","index":"0.000025825260107338"},{"denom":"ASSET12","index":"0.000024630365005548"},{"denom":"ASSET13","index":"0.000008111503841622"},{"denom":"ASSET14","index":"0.000023701848593669"},{"denom":"ASSET15","index":"0.000018689068915475"},{"denom":"ASSET16","index":"0.000011526541772952"},{"denom":"ASSET17","index":"0.000009050861170220"},{"denom":"ASSET18","index":"0.000003739265665267"},{"denom":"ASSET2","index":"0.000007869809789784"},{"denom":"ASSET3","index":"0.000002185113944095"},{"denom":"ASSET4","index":"0.000021066477214749"},{"denom":"ASSET5","index":"0.000001702392649313"},{"denom":"ASSET6","index":"0.000006871251000760"},{"denom":"ASSET7","index":"0.000010794622225013"},{"denom":"ASSET8","index":"0.000014746923085504"},{"denom":"ASSET9","index":"0.000006258895459680"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001745217677213"},{"denom":"ASSET1","index":"0.000014553842410819"},{"denom":"ASSET10","index":"0.000010139729507131"},{"denom":"ASSET11","index":"0.000014078681363843"},{"denom":"ASSET12","index":"0.000012678362515121"},{"denom":"ASSET13","index":"0.000004362304066790"},{"denom":"ASSET14","index":"0.000013152043309614"},{"denom":"ASSET15","index":"0.000009402563770700"},{"denom":"ASSET16","index":"0.000006556038246289"},{"denom":"ASSET17","index":"0.000004655394058383"},{"denom":"ASSET18","index":"0.000002217418219224"},{"denom":"ASSET2","index":"0.000004295692705065"},{"denom":"ASSET3","index":"0.000001256734357891"},{"denom":"ASSET4","index":"0.000011827217337515"},{"denom":"ASSET5","index":"0.000000975486386160"},{"denom":"ASSET6","index":"0.000003970037158850"},{"denom":"ASSET7","index":"0.000006079396946830"},{"denom":"ASSET8","index":"0.000007932673055287"},{"denom":"ASSET9","index":"0.000003426784497665"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003296605577903"},{"denom":"ASSET1","index":"0.000027950980635352"},{"denom":"ASSET10","index":"0.000022177590033485"},{"denom":"ASSET11","index":"0.000027741245317152"},{"denom":"ASSET12","index":"0.000026384837371861"},{"denom":"ASSET13","index":"0.000008707523198290"},{"denom":"ASSET14","index":"0.000025482773879389"},{"denom":"ASSET15","index":"0.000019999205716580"},{"denom":"ASSET16","index":"0.000012408342313410"},{"denom":"ASSET17","index":"0.000009694954350389"},{"denom":"ASSET18","index":"0.000004033447725414"},{"denom":"ASSET2","index":"0.000008454290496983"},{"denom":"ASSET3","index":"0.000002354114882033"},{"denom":"ASSET4","index":"0.000022662624820802"},{"denom":"ASSET5","index":"0.000001833709311257"},{"denom":"ASSET6","index":"0.000007402928859239"},{"denom":"ASSET7","index":"0.000011614131087351"},{"denom":"ASSET8","index":"0.000015829970625061"},{"denom":"ASSET9","index":"0.000006725199056296"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001696105704481"},{"denom":"ASSET1","index":"0.000014140754037071"},{"denom":"ASSET10","index":"0.000009851931515387"},{"denom":"ASSET11","index":"0.000013679695806241"},{"denom":"ASSET12","index":"0.000012318593050331"},{"denom":"ASSET13","index":"0.000004239283286244"},{"denom":"ASSET14","index":"0.000012779160793682"},{"denom":"ASSET15","index":"0.000009136800770120"},{"denom":"ASSET16","index":"0.000006369960897657"},{"denom":"ASSET17","index":"0.000004523766024416"},{"denom":"ASSET18","index":"0.000002155201985393"},{"denom":"ASSET2","index":"0.000004174048451456"},{"denom":"ASSET3","index":"0.000001220823336742"},{"denom":"ASSET4","index":"0.000011492121647193"},{"denom":"ASSET5","index":"0.000000947621810601"},{"denom":"ASSET6","index":"0.000003857193539630"},{"denom":"ASSET7","index":"0.000005907431204387"},{"denom":"ASSET8","index":"0.000007708991716984"},{"denom":"ASSET9","index":"0.000003329429011573"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003278023650839"},{"denom":"ASSET1","index":"0.000027801084973989"},{"denom":"ASSET10","index":"0.000022126343818190"},{"denom":"ASSET11","index":"0.000027610641458424"},{"denom":"ASSET12","index":"0.000026294522151225"},{"denom":"ASSET13","index":"0.000008669795972838"},{"denom":"ASSET14","index":"0.000025352034708572"},{"denom":"ASSET15","index":"0.000019941753748345"},{"denom":"ASSET16","index":"0.000012337408081897"},{"denom":"ASSET17","index":"0.000009662232510971"},{"denom":"ASSET18","index":"0.000004006663612522"},{"denom":"ASSET2","index":"0.000008414274009770"},{"denom":"ASSET3","index":"0.000002339697370568"},{"denom":"ASSET4","index":"0.000022540556466857"},{"denom":"ASSET5","index":"0.000001822656991491"},{"denom":"ASSET6","index":"0.000007357334263189"},{"denom":"ASSET7","index":"0.000011551068960203"},{"denom":"ASSET8","index":"0.000015761386047857"},{"denom":"ASSET9","index":"0.000006692834331509"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001139195115521"},{"denom":"ASSET1","index":"0.000009496890331931"},{"denom":"ASSET10","index":"0.000006616523219856"},{"denom":"ASSET11","index":"0.000009187371854639"},{"denom":"ASSET12","index":"0.000008273091178185"},{"denom":"ASSET13","index":"0.000002846943294505"},{"denom":"ASSET14","index":"0.000008582261490710"},{"denom":"ASSET15","index":"0.000006136055842283"},{"denom":"ASSET16","index":"0.000004278248649000"},{"denom":"ASSET17","index":"0.000003038433916001"},{"denom":"ASSET18","index":"0.000001447320933748"},{"denom":"ASSET2","index":"0.000002803422698710"},{"denom":"ASSET3","index":"0.000000819928024772"},{"denom":"ASSET4","index":"0.000007718116540611"},{"denom":"ASSET5","index":"0.000000636445192901"},{"denom":"ASSET6","index":"0.000002590694026466"},{"denom":"ASSET7","index":"0.000003967685677409"},{"denom":"ASSET8","index":"0.000005177210075735"},{"denom":"ASSET9","index":"0.000002236262294314"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000002735257365218"},{"denom":"ASSET1","index":"0.000023278157661741"},{"denom":"ASSET10","index":"0.000018999615823078"},{"denom":"ASSET11","index":"0.000023241706683585"},{"denom":"ASSET12","index":"0.000022372793234045"},{"denom":"ASSET13","index":"0.000007316911351959"},{"denom":"ASSET14","index":"0.000021266506066871"},{"denom":"ASSET15","index":"0.000017036720297506"},{"denom":"ASSET16","index":"0.000010298479660409"},{"denom":"ASSET17","index":"0.000008222611745720"},{"denom":"ASSET18","index":"0.000003315370510511"},{"denom":"ASSET2","index":"0.000007081336162231"},{"denom":"ASSET3","index":"0.000001948923871674"},{"denom":"ASSET4","index":"0.000018864412124408"},{"denom":"ASSET5","index":"0.000001519377842401"},{"denom":"ASSET6","index":"0.000006121992555640"},{"denom":"ASSET7","index":"0.000009661272655042"},{"denom":"ASSET8","index":"0.000013300968175029"},{"denom":"ASSET9","index":"0.000005629514833023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001583959364947"},{"denom":"ASSET1","index":"0.000013443347430705"},{"denom":"ASSET10","index":"0.000009381913161610"},{"denom":"ASSET11","index":"0.000012996589661105"},{"denom":"ASSET12","index":"0.000011696930694994"},{"denom":"ASSET13","index":"0.000004020819926404"},{"denom":"ASSET14","index":"0.000012143688464595"},{"denom":"ASSET15","index":"0.000008691469335864"},{"denom":"ASSET16","index":"0.000006051537060952"},{"denom":"ASSET17","index":"0.000004305120325241"},{"denom":"ASSET18","index":"0.000002030717134548"},{"denom":"ASSET2","index":"0.000003939591241022"},{"denom":"ASSET3","index":"0.000001137201595347"},{"denom":"ASSET4","index":"0.000010925258183866"},{"denom":"ASSET5","index":"0.000000893515539201"},{"denom":"ASSET6","index":"0.000003655290842186"},{"denom":"ASSET7","index":"0.000005604779291351"},{"denom":"ASSET8","index":"0.000007310581684371"},{"denom":"ASSET9","index":"0.000003167918729894"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003310378542013"},{"denom":"ASSET1","index":"0.000028352771206955"},{"denom":"ASSET10","index":"0.000022778987578468"},{"denom":"ASSET11","index":"0.000028201706998458"},{"denom":"ASSET12","index":"0.000026949790221900"},{"denom":"ASSET13","index":"0.000008856641706946"},{"denom":"ASSET14","index":"0.000025865717784540"},{"denom":"ASSET15","index":"0.000020483790155485"},{"denom":"ASSET16","index":"0.000012564495758376"},{"denom":"ASSET17","index":"0.000009912517491786"},{"denom":"ASSET18","index":"0.000004051289802086"},{"denom":"ASSET2","index":"0.000008567503486413"},{"denom":"ASSET3","index":"0.000002358477605528"},{"denom":"ASSET4","index":"0.000022984011222606"},{"denom":"ASSET5","index":"0.000001848359330263"},{"denom":"ASSET6","index":"0.000007474666006436"},{"denom":"ASSET7","index":"0.000011763521743703"},{"denom":"ASSET8","index":"0.000016098224703406"},{"denom":"ASSET9","index":"0.000006837907042961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001549911588522"},{"denom":"ASSET1","index":"0.000012922257740418"},{"denom":"ASSET10","index":"0.000009003081854783"},{"denom":"ASSET11","index":"0.000012500946332712"},{"denom":"ASSET12","index":"0.000011256607989023"},{"denom":"ASSET13","index":"0.000003873860414458"},{"denom":"ASSET14","index":"0.000011677307025497"},{"denom":"ASSET15","index":"0.000008349069378868"},{"denom":"ASSET16","index":"0.000005821200932633"},{"denom":"ASSET17","index":"0.000004134118188113"},{"denom":"ASSET18","index":"0.000001969385882532"},{"denom":"ASSET2","index":"0.000003814460404941"},{"denom":"ASSET3","index":"0.000001115740384942"},{"denom":"ASSET4","index":"0.000010501554259806"},{"denom":"ASSET5","index":"0.000000865892922233"},{"denom":"ASSET6","index":"0.000003524808812143"},{"denom":"ASSET7","index":"0.000005398664782463"},{"denom":"ASSET8","index":"0.000007044106283197"},{"denom":"ASSET9","index":"0.000003042260281224"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003086330633608"},{"denom":"ASSET1","index":"0.000026187842720704"},{"denom":"ASSET10","index":"0.000020922921087024"},{"denom":"ASSET11","index":"0.000026029396638226"},{"denom":"ASSET12","index":"0.000024828709288325"},{"denom":"ASSET13","index":"0.000008176601230700"},{"denom":"ASSET14","index":"0.000023887113573615"},{"denom":"ASSET15","index":"0.000018841856891118"},{"denom":"ASSET16","index":"0.000011616230118922"},{"denom":"ASSET17","index":"0.000009124242236202"},{"denom":"ASSET18","index":"0.000003767471049721"},{"denom":"ASSET2","index":"0.000007932284099147"},{"denom":"ASSET3","index":"0.000002202458257762"},{"denom":"ASSET4","index":"0.000021230824628511"},{"denom":"ASSET5","index":"0.000001715648257347"},{"denom":"ASSET6","index":"0.000006923830152599"},{"denom":"ASSET7","index":"0.000010879262909104"},{"denom":"ASSET8","index":"0.000014863870027497"},{"denom":"ASSET9","index":"0.000006308409915314"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001535524830156"},{"denom":"ASSET1","index":"0.000012804491333161"},{"denom":"ASSET10","index":"0.000008921035499248"},{"denom":"ASSET11","index":"0.000012386713938596"},{"denom":"ASSET12","index":"0.000011154325740380"},{"denom":"ASSET13","index":"0.000003838812075390"},{"denom":"ASSET14","index":"0.000011571000819920"},{"denom":"ASSET15","index":"0.000008272874264409"},{"denom":"ASSET16","index":"0.000005767863369556"},{"denom":"ASSET17","index":"0.000004096202633783"},{"denom":"ASSET18","index":"0.000001951097594671"},{"denom":"ASSET2","index":"0.000003779838221540"},{"denom":"ASSET3","index":"0.000001105621970313"},{"denom":"ASSET4","index":"0.000010405853838244"},{"denom":"ASSET5","index":"0.000000858152247148"},{"denom":"ASSET6","index":"0.000003492685157466"},{"denom":"ASSET7","index":"0.000005348983659966"},{"denom":"ASSET8","index":"0.000006980409897318"},{"denom":"ASSET9","index":"0.000003014831594025"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003051773960929"},{"denom":"ASSET1","index":"0.000025898629359040"},{"denom":"ASSET10","index":"0.000020686863907037"},{"denom":"ASSET11","index":"0.000025740096441319"},{"denom":"ASSET12","index":"0.000024551000542772"},{"denom":"ASSET13","index":"0.000008085532012369"},{"denom":"ASSET14","index":"0.000023622558405526"},{"denom":"ASSET15","index":"0.000018629920308839"},{"denom":"ASSET16","index":"0.000011487540137638"},{"denom":"ASSET17","index":"0.000009021847693812"},{"denom":"ASSET18","index":"0.000003725572559942"},{"denom":"ASSET2","index":"0.000007844221178735"},{"denom":"ASSET3","index":"0.000002178252359768"},{"denom":"ASSET4","index":"0.000020996168979716"},{"denom":"ASSET5","index":"0.000001697004218389"},{"denom":"ASSET6","index":"0.000006847583721256"},{"denom":"ASSET7","index":"0.000010758483833946"},{"denom":"ASSET8","index":"0.000014699172267780"},{"denom":"ASSET9","index":"0.000006238834616461"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001813824295534"},{"denom":"ASSET1","index":"0.000015126179984122"},{"denom":"ASSET10","index":"0.000010538420488017"},{"denom":"ASSET11","index":"0.000014633035948465"},{"denom":"ASSET12","index":"0.000013177247733614"},{"denom":"ASSET13","index":"0.000004534560738834"},{"denom":"ASSET14","index":"0.000013669547344553"},{"denom":"ASSET15","index":"0.000009773371692973"},{"denom":"ASSET16","index":"0.000006813663054312"},{"denom":"ASSET17","index":"0.000004839398062246"},{"denom":"ASSET18","index":"0.000002305279481754"},{"denom":"ASSET2","index":"0.000004465317911910"},{"denom":"ASSET3","index":"0.000001306325039660"},{"denom":"ASSET4","index":"0.000012293135053249"},{"denom":"ASSET5","index":"0.000001013309662309"},{"denom":"ASSET6","index":"0.000004125859175036"},{"denom":"ASSET7","index":"0.000006318830169217"},{"denom":"ASSET8","index":"0.000008245807377042"},{"denom":"ASSET9","index":"0.000003561783463017"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003452880861936"},{"denom":"ASSET1","index":"0.000029278299049117"},{"denom":"ASSET10","index":"0.000023254773922096"},{"denom":"ASSET11","index":"0.000029065569213605"},{"denom":"ASSET12","index":"0.000027656204711461"},{"denom":"ASSET13","index":"0.000009124518140406"},{"denom":"ASSET14","index":"0.000026695142606829"},{"denom":"ASSET15","index":"0.000020967476611979"},{"denom":"ASSET16","index":"0.000012995878924798"},{"denom":"ASSET17","index":"0.000010163149632422"},{"denom":"ASSET18","index":"0.000004223627093961"},{"denom":"ASSET2","index":"0.000008858348919255"},{"denom":"ASSET3","index":"0.000002465420318230"},{"denom":"ASSET4","index":"0.000023739200929128"},{"denom":"ASSET5","index":"0.000001919695214447"},{"denom":"ASSET6","index":"0.000007752150153146"},{"denom":"ASSET7","index":"0.000012165597276913"},{"denom":"ASSET8","index":"0.000016587849042771"},{"denom":"ASSET9","index":"0.000007046182609545"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001444852701297"},{"denom":"ASSET1","index":"0.000012048934466992"},{"denom":"ASSET10","index":"0.000008394653008080"},{"denom":"ASSET11","index":"0.000011656844181701"},{"denom":"ASSET12","index":"0.000010496256937239"},{"denom":"ASSET13","index":"0.000003612131753243"},{"denom":"ASSET14","index":"0.000010888347222530"},{"denom":"ASSET15","index":"0.000007784952614452"},{"denom":"ASSET16","index":"0.000005427509774140"},{"denom":"ASSET17","index":"0.000003854247504410"},{"denom":"ASSET18","index":"0.000001835962760875"},{"denom":"ASSET2","index":"0.000003556258887589"},{"denom":"ASSET3","index":"0.000001040019481734"},{"denom":"ASSET4","index":"0.000009792454875142"},{"denom":"ASSET5","index":"0.000000807705987699"},{"denom":"ASSET6","index":"0.000003286696816452"},{"denom":"ASSET7","index":"0.000005033459037423"},{"denom":"ASSET8","index":"0.000006568492504337"},{"denom":"ASSET9","index":"0.000002836773214080"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000002868026198866"},{"denom":"ASSET1","index":"0.000024339331661302"},{"denom":"ASSET10","index":"0.000019438063504597"},{"denom":"ASSET11","index":"0.000024190729344646"},{"denom":"ASSET12","index":"0.000023070632234294"},{"denom":"ASSET13","index":"0.000007598221307181"},{"denom":"ASSET14","index":"0.000022200415230506"},{"denom":"ASSET15","index":"0.000017506414948675"},{"denom":"ASSET16","index":"0.000010796282691537"},{"denom":"ASSET17","index":"0.000008477235924619"},{"denom":"ASSET18","index":"0.000003501529899130"},{"denom":"ASSET2","index":"0.000007371086117521"},{"denom":"ASSET3","index":"0.000002046801194740"},{"denom":"ASSET4","index":"0.000019732782799148"},{"denom":"ASSET5","index":"0.000001595074946946"},{"denom":"ASSET6","index":"0.000006435625489467"},{"denom":"ASSET7","index":"0.000010111140720407"},{"denom":"ASSET8","index":"0.000013813490690156"},{"denom":"ASSET9","index":"0.000005862589992841"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001655416114862"},{"denom":"ASSET1","index":"0.000013800538848519"},{"denom":"ASSET10","index":"0.000009615249134678"},{"denom":"ASSET11","index":"0.000013350879623065"},{"denom":"ASSET12","index":"0.000012022439267096"},{"denom":"ASSET13","index":"0.000004137189147657"},{"denom":"ASSET14","index":"0.000012471558036751"},{"denom":"ASSET15","index":"0.000008916980241305"},{"denom":"ASSET16","index":"0.000006216863065381"},{"denom":"ASSET17","index":"0.000004414983428766"},{"denom":"ASSET18","index":"0.000002102913517117"},{"denom":"ASSET2","index":"0.000004073955819077"},{"denom":"ASSET3","index":"0.000001191705038613"},{"denom":"ASSET4","index":"0.000011215538757958"},{"denom":"ASSET5","index":"0.000000924719873500"},{"denom":"ASSET6","index":"0.000003764274645778"},{"denom":"ASSET7","index":"0.000005765582472528"},{"denom":"ASSET8","index":"0.000007523144733557"},{"denom":"ASSET9","index":"0.000003249220268545"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003262792429801"},{"denom":"ASSET1","index":"0.000027679878715890"},{"denom":"ASSET10","index":"0.000022086570261210"},{"denom":"ASSET11","index":"0.000027505267384149"},{"denom":"ASSET12","index":"0.000026222420015979"},{"denom":"ASSET13","index":"0.000008638975204347"},{"denom":"ASSET14","index":"0.000025246236428505"},{"denom":"ASSET15","index":"0.000019895354512471"},{"denom":"ASSET16","index":"0.000012279836462442"},{"denom":"ASSET17","index":"0.000009636125515167"},{"denom":"ASSET18","index":"0.000003984145752232"},{"denom":"ASSET2","index":"0.000008382344169353"},{"denom":"ASSET3","index":"0.000002328549799735"},{"denom":"ASSET4","index":"0.000022441247538096"},{"denom":"ASSET5","index":"0.000001813932132265"},{"denom":"ASSET6","index":"0.000007320527694069"},{"denom":"ASSET7","index":"0.000011499571173317"},{"denom":"ASSET8","index":"0.000015704553099640"},{"denom":"ASSET9","index":"0.000006666608399750"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001676736923170"},{"denom":"ASSET1","index":"0.000013985463602132"},{"denom":"ASSET10","index":"0.000009743339709608"},{"denom":"ASSET11","index":"0.000013528824721587"},{"denom":"ASSET12","index":"0.000012182509640070"},{"denom":"ASSET13","index":"0.000004192868462713"},{"denom":"ASSET14","index":"0.000012638122365828"},{"denom":"ASSET15","index":"0.000009036319060854"},{"denom":"ASSET16","index":"0.000006299564241947"},{"denom":"ASSET17","index":"0.000004474034874554"},{"denom":"ASSET18","index":"0.000002131323494140"},{"denom":"ASSET2","index":"0.000004128220711085"},{"denom":"ASSET3","index":"0.000001207784185172"},{"denom":"ASSET4","index":"0.000011365690429028"},{"denom":"ASSET5","index":"0.000000936879321208"},{"denom":"ASSET6","index":"0.000003814217346036"},{"denom":"ASSET7","index":"0.000005841899206614"},{"denom":"ASSET8","index":"0.000007623303918134"},{"denom":"ASSET9","index":"0.000003292930713863"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003296156578493"},{"denom":"ASSET1","index":"0.000027968412540894"},{"denom":"ASSET10","index":"0.000022307812536905"},{"denom":"ASSET11","index":"0.000027788867279184"},{"denom":"ASSET12","index":"0.000026488589695468"},{"denom":"ASSET13","index":"0.000008728285856057"},{"denom":"ASSET14","index":"0.000025508064125070"},{"denom":"ASSET15","index":"0.000020096610749334"},{"denom":"ASSET16","index":"0.000012407784704791"},{"denom":"ASSET17","index":"0.000009734180928237"},{"denom":"ASSET18","index":"0.000004026678592252"},{"denom":"ASSET2","index":"0.000008468774984810"},{"denom":"ASSET3","index":"0.000002353220293961"},{"denom":"ASSET4","index":"0.000022675279511256"},{"denom":"ASSET5","index":"0.000001832728492238"},{"denom":"ASSET6","index":"0.000007397034942132"},{"denom":"ASSET7","index":"0.000011618881320506"},{"denom":"ASSET8","index":"0.000015866042832442"},{"denom":"ASSET9","index":"0.000006735898552490"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001687654189845"},{"denom":"ASSET1","index":"0.000014079752531439"},{"denom":"ASSET10","index":"0.000009809029374167"},{"denom":"ASSET11","index":"0.000013620990639222"},{"denom":"ASSET12","index":"0.000012264971552184"},{"denom":"ASSET13","index":"0.000004220977891851"},{"denom":"ASSET14","index":"0.000012723733444402"},{"denom":"ASSET15","index":"0.000009097856320367"},{"denom":"ASSET16","index":"0.000006341600132585"},{"denom":"ASSET17","index":"0.000004504710146476"},{"denom":"ASSET18","index":"0.000002144573664825"},{"denom":"ASSET2","index":"0.000004156493288528"},{"denom":"ASSET3","index":"0.000001215995376963"},{"denom":"ASSET4","index":"0.000011441411046878"},{"denom":"ASSET5","index":"0.000000943317625765"},{"denom":"ASSET6","index":"0.000003839597523622"},{"denom":"ASSET7","index":"0.000005880995823129"},{"denom":"ASSET8","index":"0.000007675510212768"},{"denom":"ASSET9","index":"0.000003314508610843"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003237925740153"},{"denom":"ASSET1","index":"0.000027468087048908"},{"denom":"ASSET10","index":"0.000021838560142362"},{"denom":"ASSET11","index":"0.000027274223261348"},{"denom":"ASSET12","index":"0.000025962125103579"},{"denom":"ASSET13","index":"0.000008562973508850"},{"denom":"ASSET14","index":"0.000025046299162567"},{"denom":"ASSET15","index":"0.000019687604125947"},{"denom":"ASSET16","index":"0.000012189946370622"},{"denom":"ASSET17","index":"0.000009540519193028"},{"denom":"ASSET18","index":"0.000003959057055270"},{"denom":"ASSET2","index":"0.000008312511220651"},{"denom":"ASSET3","index":"0.000002312646079660"},{"denom":"ASSET4","index":"0.000022269978905361"},{"denom":"ASSET5","index":"0.000001800462011039"},{"denom":"ASSET6","index":"0.000007270233858279"},{"denom":"ASSET7","index":"0.000011411601588483"},{"denom":"ASSET8","index":"0.000015567552190875"},{"denom":"ASSET9","index":"0.000006610637099613"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001700269946448"},{"denom":"ASSET1","index":"0.000014175647296985"},{"denom":"ASSET10","index":"0.000009876508679424"},{"denom":"ASSET11","index":"0.000013714231996791"},{"denom":"ASSET12","index":"0.000012349169664489"},{"denom":"ASSET13","index":"0.000004249665204630"},{"denom":"ASSET14","index":"0.000012810584964683"},{"denom":"ASSET15","index":"0.000009159649022667"},{"denom":"ASSET16","index":"0.000006386108914062"},{"denom":"ASSET17","index":"0.000004535399405845"},{"denom":"ASSET18","index":"0.000002160675585153"},{"denom":"ASSET2","index":"0.000004184037207885"},{"denom":"ASSET3","index":"0.000001223709723928"},{"denom":"ASSET4","index":"0.000011520237582522"},{"denom":"ASSET5","index":"0.000000950091460574"},{"denom":"ASSET6","index":"0.000003867003500531"},{"denom":"ASSET7","index":"0.000005922674290891"},{"denom":"ASSET8","index":"0.000007727949032131"},{"denom":"ASSET9","index":"0.000003337940880615"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003224934301433"},{"denom":"ASSET1","index":"0.000027341438894536"},{"denom":"ASSET10","index":"0.000021706571274337"},{"denom":"ASSET11","index":"0.000027141091242061"},{"denom":"ASSET12","index":"0.000025819235056226"},{"denom":"ASSET13","index":"0.000008520116782966"},{"denom":"ASSET14","index":"0.000024928444433519"},{"denom":"ASSET15","index":"0.000019573794936329"},{"denom":"ASSET16","index":"0.000012137286393349"},{"denom":"ASSET17","index":"0.000009487995483061"},{"denom":"ASSET18","index":"0.000003945309126507"},{"denom":"ASSET2","index":"0.000008271045740629"},{"denom":"ASSET3","index":"0.000002302032616683"},{"denom":"ASSET4","index":"0.000022168721917699"},{"denom":"ASSET5","index":"0.000001793343624246"},{"denom":"ASSET6","index":"0.000007240378309003"},{"denom":"ASSET7","index":"0.000011361888746536"},{"denom":"ASSET8","index":"0.000015488944629697"},{"denom":"ASSET9","index":"0.000006579500326985"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001505652349479"},{"denom":"ASSET1","index":"0.000012557843622987"},{"denom":"ASSET10","index":"0.000008748308836028"},{"denom":"ASSET11","index":"0.000012147743761261"},{"denom":"ASSET12","index":"0.000010939413811534"},{"denom":"ASSET13","index":"0.000003764130873697"},{"denom":"ASSET14","index":"0.000011348049030896"},{"denom":"ASSET15","index":"0.000008114118692716"},{"denom":"ASSET16","index":"0.000005656448807088"},{"denom":"ASSET17","index":"0.000004017514002549"},{"denom":"ASSET18","index":"0.000001912822926478"},{"denom":"ASSET2","index":"0.000003707009821528"},{"denom":"ASSET3","index":"0.000001083835348847"},{"denom":"ASSET4","index":"0.000010205627987517"},{"denom":"ASSET5","index":"0.000000840704716538"},{"denom":"ASSET6","index":"0.000003424333845410"},{"denom":"ASSET7","index":"0.000005246348945363"},{"denom":"ASSET8","index":"0.000006845738406093"},{"denom":"ASSET9","index":"0.000002955648289152"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000002959758868257"},{"denom":"ASSET1","index":"0.000025116229265451"},{"denom":"ASSET10","index":"0.000020033024535037"},{"denom":"ASSET11","index":"0.000024955202637112"},{"denom":"ASSET12","index":"0.000023787913163340"},{"denom":"ASSET13","index":"0.000007837044315100"},{"denom":"ASSET14","index":"0.000022906603767748"},{"denom":"ASSET15","index":"0.000018047329062837"},{"denom":"ASSET16","index":"0.000011142428291313"},{"denom":"ASSET17","index":"0.000008741414303940"},{"denom":"ASSET18","index":"0.000003614587489816"},{"denom":"ASSET2","index":"0.000007605147442913"},{"denom":"ASSET3","index":"0.000002112677625393"},{"denom":"ASSET4","index":"0.000020363145786569"},{"denom":"ASSET5","index":"0.000001645239564154"},{"denom":"ASSET6","index":"0.000006641765641459"},{"denom":"ASSET7","index":"0.000010434431181702"},{"denom":"ASSET8","index":"0.000014248591155217"},{"denom":"ASSET9","index":"0.000006047835874095"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001815877519749"},{"denom":"ASSET1","index":"0.000015137138459046"},{"denom":"ASSET10","index":"0.000010545739718907"},{"denom":"ASSET11","index":"0.000014644907422941"},{"denom":"ASSET12","index":"0.000013186828093302"},{"denom":"ASSET13","index":"0.000004537625601742"},{"denom":"ASSET14","index":"0.000013679059129408"},{"denom":"ASSET15","index":"0.000009780506595550"},{"denom":"ASSET16","index":"0.000006818847588397"},{"denom":"ASSET17","index":"0.000004841650653454"},{"denom":"ASSET18","index":"0.000002306040358223"},{"denom":"ASSET2","index":"0.000004467306882298"},{"denom":"ASSET3","index":"0.000001307100902598"},{"denom":"ASSET4","index":"0.000012301639507366"},{"denom":"ASSET5","index":"0.000001013416839040"},{"denom":"ASSET6","index":"0.000004128122470864"},{"denom":"ASSET7","index":"0.000006324548354661"},{"denom":"ASSET8","index":"0.000008252108546467"},{"denom":"ASSET9","index":"0.000003563504517685"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003468946703322"},{"denom":"ASSET1","index":"0.000029412495408176"},{"denom":"ASSET10","index":"0.000023372734593498"},{"denom":"ASSET11","index":"0.000029203218600002"},{"denom":"ASSET12","index":"0.000027792166579196"},{"denom":"ASSET13","index":"0.000009167641990636"},{"denom":"ASSET14","index":"0.000026818252104650"},{"denom":"ASSET15","index":"0.000021072198152383"},{"denom":"ASSET16","index":"0.000013054905852031"},{"denom":"ASSET17","index":"0.000010211457984650"},{"denom":"ASSET18","index":"0.000004240878207320"},{"denom":"ASSET2","index":"0.000008898543974195"},{"denom":"ASSET3","index":"0.000002476460623897"},{"denom":"ASSET4","index":"0.000023847831794350"},{"denom":"ASSET5","index":"0.000001927880642719"},{"denom":"ASSET6","index":"0.000007785977685579"},{"denom":"ASSET7","index":"0.000012222326144679"},{"denom":"ASSET8","index":"0.000016667230515151"},{"denom":"ASSET9","index":"0.000007078301868557"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001541968050995"},{"denom":"ASSET1","index":"0.000012857487907975"},{"denom":"ASSET10","index":"0.000008957704485900"},{"denom":"ASSET11","index":"0.000012438763825161"},{"denom":"ASSET12","index":"0.000011200869215257"},{"denom":"ASSET13","index":"0.000003854089325736"},{"denom":"ASSET14","index":"0.000011619593298070"},{"denom":"ASSET15","index":"0.000008307186714386"},{"denom":"ASSET16","index":"0.000005792349812251"},{"denom":"ASSET17","index":"0.000004113299472240"},{"denom":"ASSET18","index":"0.000001959030530305"},{"denom":"ASSET2","index":"0.000003795102401372"},{"denom":"ASSET3","index":"0.000001109951140156"},{"denom":"ASSET4","index":"0.000010448993630046"},{"denom":"ASSET5","index":"0.000000861541416423"},{"denom":"ASSET6","index":"0.000003506814193562"},{"denom":"ASSET7","index":"0.000005371133324183"},{"denom":"ASSET8","index":"0.000007009474378365"},{"denom":"ASSET9","index":"0.000003027441582881"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003053196756625"},{"denom":"ASSET1","index":"0.000025905581999278"},{"denom":"ASSET10","index":"0.000020682143152818"},{"denom":"ASSET11","index":"0.000025745380902198"},{"denom":"ASSET12","index":"0.000024550499550641"},{"denom":"ASSET13","index":"0.000008086239198545"},{"denom":"ASSET14","index":"0.000023629161089906"},{"denom":"ASSET15","index":"0.000018628151539367"},{"denom":"ASSET16","index":"0.000011492271696690"},{"denom":"ASSET17","index":"0.000009021688715966"},{"denom":"ASSET18","index":"0.000003727673632537"},{"denom":"ASSET2","index":"0.000007845443656426"},{"denom":"ASSET3","index":"0.000002178852781858"},{"denom":"ASSET4","index":"0.000021002318737231"},{"denom":"ASSET5","index":"0.000001697417622442"},{"denom":"ASSET6","index":"0.000006850319017638"},{"denom":"ASSET7","index":"0.000010761758840612"},{"denom":"ASSET8","index":"0.000014701087498525"},{"denom":"ASSET9","index":"0.000006240132889304"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001327266579501"},{"denom":"ASSET1","index":"0.000011071143497688"},{"denom":"ASSET10","index":"0.000007713614824674"},{"denom":"ASSET11","index":"0.000010710668391289"},{"denom":"ASSET12","index":"0.000009644435509525"},{"denom":"ASSET13","index":"0.000003318857014090"},{"denom":"ASSET14","index":"0.000010004910615924"},{"denom":"ASSET15","index":"0.000007152875770275"},{"denom":"ASSET16","index":"0.000004987262870528"},{"denom":"ASSET17","index":"0.000003541219052903"},{"denom":"ASSET18","index":"0.000001686360555224"},{"denom":"ASSET2","index":"0.000003267755179083"},{"denom":"ASSET3","index":"0.000000955742427695"},{"denom":"ASSET4","index":"0.000008998066353223"},{"denom":"ASSET5","index":"0.000000741667172936"},{"denom":"ASSET6","index":"0.000003019151657428"},{"denom":"ASSET7","index":"0.000004625406633453"},{"denom":"ASSET8","index":"0.000006035541053505"},{"denom":"ASSET9","index":"0.000002606193585346"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000002827520151011"},{"denom":"ASSET1","index":"0.000024027878888002"},{"denom":"ASSET10","index":"0.000019355847170480"},{"denom":"ASSET11","index":"0.000023924401086085"},{"denom":"ASSET12","index":"0.000022900407365256"},{"denom":"ASSET13","index":"0.000007521399074311"},{"denom":"ASSET14","index":"0.000021930603354990"},{"denom":"ASSET15","index":"0.000017401215805238"},{"denom":"ASSET16","index":"0.000010647310435771"},{"denom":"ASSET17","index":"0.000008415007538097"},{"denom":"ASSET18","index":"0.000003442593620109"},{"denom":"ASSET2","index":"0.000007289635767836"},{"denom":"ASSET3","index":"0.000002016810506595"},{"denom":"ASSET4","index":"0.000019477449509443"},{"denom":"ASSET5","index":"0.000001571692130579"},{"denom":"ASSET6","index":"0.000006339251488002"},{"denom":"ASSET7","index":"0.000009978075244424"},{"denom":"ASSET8","index":"0.000013673195599374"},{"denom":"ASSET9","index":"0.000005796522499795"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001571435631869"},{"denom":"ASSET1","index":"0.000013104175099655"},{"denom":"ASSET10","index":"0.000009129715488355"},{"denom":"ASSET11","index":"0.000012677036600848"},{"denom":"ASSET12","index":"0.000011415350365342"},{"denom":"ASSET13","index":"0.000003928095848150"},{"denom":"ASSET14","index":"0.000011841502401104"},{"denom":"ASSET15","index":"0.000008466812321615"},{"denom":"ASSET16","index":"0.000005902994865728"},{"denom":"ASSET17","index":"0.000004192467944409"},{"denom":"ASSET18","index":"0.000001996601204585"},{"denom":"ASSET2","index":"0.000003867921602360"},{"denom":"ASSET3","index":"0.000001131473113468"},{"denom":"ASSET4","index":"0.000010648868578800"},{"denom":"ASSET5","index":"0.000000877952110712"},{"denom":"ASSET6","index":"0.000003573955614728"},{"denom":"ASSET7","index":"0.000005473883440830"},{"denom":"ASSET8","index":"0.000007142978914228"},{"denom":"ASSET9","index":"0.000003084669944040"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003141123056438"},{"denom":"ASSET1","index":"0.000026662100889972"},{"denom":"ASSET10","index":"0.000021312054987248"},{"denom":"ASSET11","index":"0.000026503481745319"},{"denom":"ASSET12","index":"0.000025286293002787"},{"denom":"ASSET13","index":"0.000008324908472884"},{"denom":"ASSET14","index":"0.000024319980387721"},{"denom":"ASSET15","index":"0.000019190708128374"},{"denom":"ASSET16","index":"0.000011824997422058"},{"denom":"ASSET17","index":"0.000009292034078872"},{"denom":"ASSET18","index":"0.000003834040785154"},{"denom":"ASSET2","index":"0.000008076003481032"},{"denom":"ASSET3","index":"0.000002241608843356"},{"denom":"ASSET4","index":"0.000021614431804298"},{"denom":"ASSET5","index":"0.000001746420421862"},{"denom":"ASSET6","index":"0.000007047828859327"},{"denom":"ASSET7","index":"0.000011075197168484"},{"denom":"ASSET8","index":"0.000015134882092008"},{"denom":"ASSET9","index":"0.000006422749115253"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[{"denom":"ASSET0","index":"0.000001554974273829"},{"denom":"ASSET1","index":"0.000012964145980643"},{"denom":"ASSET10","index":"0.000009032293690170"},{"denom":"ASSET11","index":"0.000012541598623624"},{"denom":"ASSET12","index":"0.000011293609918011"},{"denom":"ASSET13","index":"0.000003886649549954"},{"denom":"ASSET14","index":"0.000011715371140412"},{"denom":"ASSET15","index":"0.000008376264351692"},{"denom":"ASSET16","index":"0.000005840194074962"},{"denom":"ASSET17","index":"0.000004147646243034"},{"denom":"ASSET18","index":"0.000001975556294303"},{"denom":"ASSET2","index":"0.000003826903319009"},{"denom":"ASSET3","index":"0.000001119455695618"},{"denom":"ASSET4","index":"0.000010535776146539"},{"denom":"ASSET5","index":"0.000000869071819878"},{"denom":"ASSET6","index":"0.000003536426577765"},{"denom":"ASSET7","index":"0.000005416074448708"},{"denom":"ASSET8","index":"0.000007067350213206"},{"denom":"ASSET9","index":"0.000003052560720565"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[{"denom":"ASSET0","index":"0.000003054120352223"},{"denom":"ASSET1","index":"0.000025909289170716"},{"denom":"ASSET10","index":"0.000020664041936079"},{"denom":"ASSET11","index":"0.000025743066158465"},{"denom":"ASSET12","index":"0.000024537849095602"},{"denom":"ASSET13","index":"0.000008085297309351"},{"denom":"ASSET14","index":"0.000023630023251940"},{"denom":"ASSET15","index":"0.000018615490114349"},{"denom":"ASSET16","index":"0.000011495216270003"},{"denom":"ASSET17","index":"0.000009017197770141"},{"denom":"ASSET18","index":"0.000003730110182262"},{"denom":"ASSET2","index":"0.000007845299155388"},{"denom":"ASSET3","index":"0.000002179886924088"},{"denom":"ASSET4","index":"0.000021005968780047"},{"denom":"ASSET5","index":"0.000001698230665763"},{"denom":"ASSET6","index":"0.000006853367473041"},{"denom":"ASSET7","index":"0.000010764057351149"},{"denom":"ASSET8","index":"0.000014698116791571"},{"denom":"ASSET9","index":"0.000006239964640655"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405680012502028105","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405679194465446982","reward_histories":[]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET6","snapshot":{"prev_reward_weight":"0.405678376430515395","reward_histories":[]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001587610635106"},{"denom":"ASSET1","index":"0.000013244938725362"},{"denom":"ASSET10","index":"0.000009227311812032"},{"denom":"ASSET11","index":"0.000012812935831455"},{"denom":"ASSET12","index":"0.000011538527294432"},{"denom":"ASSET13","index":"0.000003970376596809"},{"denom":"ASSET14","index":"0.000011969180179294"},{"denom":"ASSET15","index":"0.000008557707326477"},{"denom":"ASSET16","index":"0.000005967039972082"},{"denom":"ASSET17","index":"0.000004237678387413"},{"denom":"ASSET18","index":"0.000002018263519969"},{"denom":"ASSET2","index":"0.000003909626189853"},{"denom":"ASSET3","index":"0.000001143457659809"},{"denom":"ASSET4","index":"0.000010763622103487"},{"denom":"ASSET5","index":"0.000000886955941552"},{"denom":"ASSET6","index":"0.000003612624200292"},{"denom":"ASSET7","index":"0.000005533687069132"},{"denom":"ASSET8","index":"0.000007219848364411"},{"denom":"ASSET9","index":"0.000003118520890387"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003152887181228"},{"denom":"ASSET1","index":"0.000026760532918289"},{"denom":"ASSET10","index":"0.000021371603424459"},{"denom":"ASSET11","index":"0.000026596151859305"},{"denom":"ASSET12","index":"0.000025366346961436"},{"denom":"ASSET13","index":"0.000008353980761099"},{"denom":"ASSET14","index":"0.000024408754798213"},{"denom":"ASSET15","index":"0.000019248058608344"},{"denom":"ASSET16","index":"0.000011870971278696"},{"denom":"ASSET17","index":"0.000009321801721671"},{"denom":"ASSET18","index":"0.000003850124607081"},{"denom":"ASSET2","index":"0.000008105134387478"},{"denom":"ASSET3","index":"0.000002250596051831"},{"denom":"ASSET4","index":"0.000021694971342643"},{"denom":"ASSET5","index":"0.000001752750611640"},{"denom":"ASSET6","index":"0.000007075802880646"},{"denom":"ASSET7","index":"0.000011117440314842"},{"denom":"ASSET8","index":"0.000015186957305377"},{"denom":"ASSET9","index":"0.000006446159830056"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001450981944084"},{"denom":"ASSET1","index":"0.000012097851501865"},{"denom":"ASSET10","index":"0.000008428524260541"},{"denom":"ASSET11","index":"0.000011703479004578"},{"denom":"ASSET12","index":"0.000010538773481717"},{"denom":"ASSET13","index":"0.000003626563958485"},{"denom":"ASSET14","index":"0.000010932552044520"},{"denom":"ASSET15","index":"0.000007816771742159"},{"denom":"ASSET16","index":"0.000005449942823954"},{"denom":"ASSET17","index":"0.000003870671031354"},{"denom":"ASSET18","index":"0.000001843572637920"},{"denom":"ASSET2","index":"0.000003571328051486"},{"denom":"ASSET3","index":"0.000001044730757120"},{"denom":"ASSET4","index":"0.000009831991445917"},{"denom":"ASSET5","index":"0.000000810720570477"},{"denom":"ASSET6","index":"0.000003299899992359"},{"denom":"ASSET7","index":"0.000005054382457699"},{"denom":"ASSET8","index":"0.000006595048508847"},{"denom":"ASSET9","index":"0.000002848509784621"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000002831039632868"},{"denom":"ASSET1","index":"0.000024014703977493"},{"denom":"ASSET10","index":"0.000019136467933987"},{"denom":"ASSET11","index":"0.000023856136612857"},{"denom":"ASSET12","index":"0.000022731094165303"},{"denom":"ASSET13","index":"0.000007491812146677"},{"denom":"ASSET14","index":"0.000021900750691559"},{"denom":"ASSET15","index":"0.000017242457090593"},{"denom":"ASSET16","index":"0.000010655585625623"},{"denom":"ASSET17","index":"0.000008353141870908"},{"denom":"ASSET18","index":"0.000003458892129556"},{"denom":"ASSET2","index":"0.000007270317321266"},{"denom":"ASSET3","index":"0.000002020551075646"},{"denom":"ASSET4","index":"0.000019470118745656"},{"denom":"ASSET5","index":"0.000001574098937698"},{"denom":"ASSET6","index":"0.000006353413461243"},{"denom":"ASSET7","index":"0.000009977493764026"},{"denom":"ASSET8","index":"0.000013619759476676"},{"denom":"ASSET9","index":"0.000005782490697784"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001596167964962"},{"denom":"ASSET1","index":"0.000013307648687747"},{"denom":"ASSET10","index":"0.000009271254138767"},{"denom":"ASSET11","index":"0.000012873344596610"},{"denom":"ASSET12","index":"0.000011592750107942"},{"denom":"ASSET13","index":"0.000003989527201016"},{"denom":"ASSET14","index":"0.000012025715131995"},{"denom":"ASSET15","index":"0.000008598149750858"},{"denom":"ASSET16","index":"0.000005994556982506"},{"denom":"ASSET17","index":"0.000004257340617956"},{"denom":"ASSET18","index":"0.000002028240277625"},{"denom":"ASSET2","index":"0.000003928376470814"},{"denom":"ASSET3","index":"0.000001148919558672"},{"denom":"ASSET4","index":"0.000010814752131731"},{"denom":"ASSET5","index":"0.000000891818678410"},{"denom":"ASSET6","index":"0.000003630210866621"},{"denom":"ASSET7","index":"0.000005559360179979"},{"denom":"ASSET8","index":"0.000007254619109209"},{"denom":"ASSET9","index":"0.000003133416978198"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003160678210357"},{"denom":"ASSET1","index":"0.000026816731621709"},{"denom":"ASSET10","index":"0.000021409695697867"},{"denom":"ASSET11","index":"0.000026650151208928"},{"denom":"ASSET12","index":"0.000025413985003091"},{"denom":"ASSET13","index":"0.000008371194471357"},{"denom":"ASSET14","index":"0.000024459575922385"},{"denom":"ASSET15","index":"0.000019283728762326"},{"denom":"ASSET16","index":"0.000011895729224726"},{"denom":"ASSET17","index":"0.000009339186085895"},{"denom":"ASSET18","index":"0.000003859320220004"},{"denom":"ASSET2","index":"0.000008121656282140"},{"denom":"ASSET3","index":"0.000002255587694637"},{"denom":"ASSET4","index":"0.000021740936259308"},{"denom":"ASSET5","index":"0.000001757304707579"},{"denom":"ASSET6","index":"0.000007091577992612"},{"denom":"ASSET7","index":"0.000011140302591406"},{"denom":"ASSET8","index":"0.000015217956063596"},{"denom":"ASSET9","index":"0.000006459479788296"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001539653287763"},{"denom":"ASSET1","index":"0.000012837628062054"},{"denom":"ASSET10","index":"0.000008944076712630"},{"denom":"ASSET11","index":"0.000012418678362380"},{"denom":"ASSET12","index":"0.000011182855597091"},{"denom":"ASSET13","index":"0.000003848344731893"},{"denom":"ASSET14","index":"0.000011600753980079"},{"denom":"ASSET15","index":"0.000008294363000211"},{"denom":"ASSET16","index":"0.000005782767435536"},{"denom":"ASSET17","index":"0.000004106968636837"},{"denom":"ASSET18","index":"0.000001956500354065"},{"denom":"ASSET2","index":"0.000003789470997435"},{"denom":"ASSET3","index":"0.000001108613446191"},{"denom":"ASSET4","index":"0.000010432741141086"},{"denom":"ASSET5","index":"0.000000860502708115"},{"denom":"ASSET6","index":"0.000003501935883605"},{"denom":"ASSET7","index":"0.000005362766419174"},{"denom":"ASSET8","index":"0.000006998089525433"},{"denom":"ASSET9","index":"0.000003022535474442"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003102081054533"},{"denom":"ASSET1","index":"0.000026328097047411"},{"denom":"ASSET10","index":"0.000021065731925672"},{"denom":"ASSET11","index":"0.000026176422512857"},{"denom":"ASSET12","index":"0.000024984864029023"},{"denom":"ASSET13","index":"0.000008223750690350"},{"denom":"ASSET14","index":"0.000024017391771060"},{"denom":"ASSET15","index":"0.000018965095888316"},{"denom":"ASSET16","index":"0.000011675661088751"},{"denom":"ASSET17","index":"0.000009181817821335"},{"denom":"ASSET18","index":"0.000003784851704842"},{"denom":"ASSET2","index":"0.000007977007181168"},{"denom":"ASSET3","index":"0.000002213531006169"},{"denom":"ASSET4","index":"0.000021343717572048"},{"denom":"ASSET5","index":"0.000001724500934679"},{"denom":"ASSET6","index":"0.000006958604580417"},{"denom":"ASSET7","index":"0.000010936011139136"},{"denom":"ASSET8","index":"0.000014950117004491"},{"denom":"ASSET9","index":"0.000006344046059941"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001722784092424"},{"denom":"ASSET1","index":"0.000014376047839207"},{"denom":"ASSET10","index":"0.000010014727915911"},{"denom":"ASSET11","index":"0.000013905627425621"},{"denom":"ASSET12","index":"0.000012523636788373"},{"denom":"ASSET13","index":"0.000004309050988454"},{"denom":"ASSET14","index":"0.000012989875687172"},{"denom":"ASSET15","index":"0.000009287144342897"},{"denom":"ASSET16","index":"0.000006475075648346"},{"denom":"ASSET17","index":"0.000004597575508787"},{"denom":"ASSET18","index":"0.000002191113748617"},{"denom":"ASSET2","index":"0.000004242146751855"},{"denom":"ASSET3","index":"0.000001239819134475"},{"denom":"ASSET4","index":"0.000011683152316098"},{"denom":"ASSET5","index":"0.000000961748401110"},{"denom":"ASSET6","index":"0.000003920170113222"},{"denom":"ASSET7","index":"0.000006004655234759"},{"denom":"ASSET8","index":"0.000007836158711656"},{"denom":"ASSET9","index":"0.000003384936220430"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003308323901116"},{"denom":"ASSET1","index":"0.000028066718381779"},{"denom":"ASSET10","index":"0.000022316311421496"},{"denom":"ASSET11","index":"0.000027867424204892"},{"denom":"ASSET12","index":"0.000026530665881565"},{"denom":"ASSET13","index":"0.000008749579510737"},{"denom":"ASSET14","index":"0.000025590688346390"},{"denom":"ASSET15","index":"0.000020116135001180"},{"denom":"ASSET16","index":"0.000012455644018572"},{"denom":"ASSET17","index":"0.000009747635771928"},{"denom":"ASSET18","index":"0.000004046709206696"},{"denom":"ASSET2","index":"0.000008491843085820"},{"denom":"ASSET3","index":"0.000002361259343526"},{"denom":"ASSET4","index":"0.000022756236881458"},{"denom":"ASSET5","index":"0.000001838827056256"},{"denom":"ASSET6","index":"0.000007428217086977"},{"denom":"ASSET7","index":"0.000011660835649526"},{"denom":"ASSET8","index":"0.000015906513514404"},{"denom":"ASSET9","index":"0.000006755948018281"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001677980890787"},{"denom":"ASSET1","index":"0.000013990275877081"},{"denom":"ASSET10","index":"0.000009746835585844"},{"denom":"ASSET11","index":"0.000013534047272362"},{"denom":"ASSET12","index":"0.000012187401487418"},{"denom":"ASSET13","index":"0.000004194217559326"},{"denom":"ASSET14","index":"0.000012642160756856"},{"denom":"ASSET15","index":"0.000009039350648091"},{"denom":"ASSET16","index":"0.000006301979019776"},{"denom":"ASSET17","index":"0.000004475595265619"},{"denom":"ASSET18","index":"0.000002132005492585"},{"denom":"ASSET2","index":"0.000004129566806967"},{"denom":"ASSET3","index":"0.000001207793600899"},{"denom":"ASSET4","index":"0.000011368981735957"},{"denom":"ASSET5","index":"0.000000937435909214"},{"denom":"ASSET6","index":"0.000003815863724495"},{"denom":"ASSET7","index":"0.000005844281079776"},{"denom":"ASSET8","index":"0.000007626584775507"},{"denom":"ASSET9","index":"0.000003293515032135"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003299297789724"},{"denom":"ASSET1","index":"0.000027989603079017"},{"denom":"ASSET10","index":"0.000022326156077139"},{"denom":"ASSET11","index":"0.000027810817552502"},{"denom":"ASSET12","index":"0.000026510364756940"},{"denom":"ASSET13","index":"0.000008734817330461"},{"denom":"ASSET14","index":"0.000025527438517331"},{"denom":"ASSET15","index":"0.000020112836713905"},{"denom":"ASSET16","index":"0.000012417417558556"},{"denom":"ASSET17","index":"0.000009741881197111"},{"denom":"ASSET18","index":"0.000004029624902086"},{"denom":"ASSET2","index":"0.000008475129511821"},{"denom":"ASSET3","index":"0.000002354634361983"},{"denom":"ASSET4","index":"0.000022691681830907"},{"denom":"ASSET5","index":"0.000001834207215432"},{"denom":"ASSET6","index":"0.000007402948949368"},{"denom":"ASSET7","index":"0.000011627814435586"},{"denom":"ASSET8","index":"0.000015878876786083"},{"denom":"ASSET9","index":"0.000006740310437402"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001570026110869"},{"denom":"ASSET1","index":"0.000013093495665706"},{"denom":"ASSET10","index":"0.000009121814411369"},{"denom":"ASSET11","index":"0.000012665871768525"},{"denom":"ASSET12","index":"0.000011405375746022"},{"denom":"ASSET13","index":"0.000003924443730811"},{"denom":"ASSET14","index":"0.000011831756550478"},{"denom":"ASSET15","index":"0.000008459245989284"},{"denom":"ASSET16","index":"0.000005898474977098"},{"denom":"ASSET17","index":"0.000004187979388376"},{"denom":"ASSET18","index":"0.000001995163822601"},{"denom":"ASSET2","index":"0.000003864775280042"},{"denom":"ASSET3","index":"0.000001129971286445"},{"denom":"ASSET4","index":"0.000010639630627815"},{"denom":"ASSET5","index":"0.000000877623463400"},{"denom":"ASSET6","index":"0.000003571405397092"},{"denom":"ASSET7","index":"0.000005469607987193"},{"denom":"ASSET8","index":"0.000007137838423287"},{"denom":"ASSET9","index":"0.000003082869956418"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003142586597057"},{"denom":"ASSET1","index":"0.000026671940208455"},{"denom":"ASSET10","index":"0.000021322845581004"},{"denom":"ASSET11","index":"0.000026513185667064"},{"denom":"ASSET12","index":"0.000025297681895631"},{"denom":"ASSET13","index":"0.000008328263582513"},{"denom":"ASSET14","index":"0.000024329302916923"},{"denom":"ASSET15","index":"0.000019199384187435"},{"denom":"ASSET16","index":"0.000011829863063918"},{"denom":"ASSET17","index":"0.000009295955073087"},{"denom":"ASSET18","index":"0.000003835509513951"},{"denom":"ASSET2","index":"0.000008079410847125"},{"denom":"ASSET3","index":"0.000002242309830967"},{"denom":"ASSET4","index":"0.000021622076491366"},{"denom":"ASSET5","index":"0.000001747112267207"},{"denom":"ASSET6","index":"0.000007050444762949"},{"denom":"ASSET7","index":"0.000011079003337441"},{"denom":"ASSET8","index":"0.000015142122511204"},{"denom":"ASSET9","index":"0.000006425848418438"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001808467589320"},{"denom":"ASSET1","index":"0.000015078627759778"},{"denom":"ASSET10","index":"0.000010504031371633"},{"denom":"ASSET11","index":"0.000014586692317421"},{"denom":"ASSET12","index":"0.000013135079536696"},{"denom":"ASSET13","index":"0.000004520160908868"},{"denom":"ASSET14","index":"0.000013624998850191"},{"denom":"ASSET15","index":"0.000009741934661752"},{"denom":"ASSET16","index":"0.000006792338136474"},{"denom":"ASSET17","index":"0.000004822580238185"},{"denom":"ASSET18","index":"0.000002296370773952"},{"denom":"ASSET2","index":"0.000004449596398694"},{"denom":"ASSET3","index":"0.000001300403116066"},{"denom":"ASSET4","index":"0.000012254031223951"},{"denom":"ASSET5","index":"0.000001010080559921"},{"denom":"ASSET6","index":"0.000004112902878720"},{"denom":"ASSET7","index":"0.000006298386565256"},{"denom":"ASSET8","index":"0.000008219757370854"},{"denom":"ASSET9","index":"0.000003550402926189"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003309574221953"},{"denom":"ASSET1","index":"0.000028041386020893"},{"denom":"ASSET10","index":"0.000022151472675705"},{"denom":"ASSET11","index":"0.000027806413413432"},{"denom":"ASSET12","index":"0.000026397319662942"},{"denom":"ASSET13","index":"0.000008723998941637"},{"denom":"ASSET14","index":"0.000025556208464743"},{"denom":"ASSET15","index":"0.000019995491235522"},{"denom":"ASSET16","index":"0.000012454763771642"},{"denom":"ASSET17","index":"0.000009698403814011"},{"denom":"ASSET18","index":"0.000004053515914738"},{"denom":"ASSET2","index":"0.000008473190716338"},{"denom":"ASSET3","index":"0.000002361530218445"},{"denom":"ASSET4","index":"0.000022738669483779"},{"denom":"ASSET5","index":"0.000001840125976242"},{"denom":"ASSET6","index":"0.000007434008870747"},{"denom":"ASSET7","index":"0.000011653935721338"},{"denom":"ASSET8","index":"0.000015861166565423"},{"denom":"ASSET9","index":"0.000006742103174023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001541663174382"},{"denom":"ASSET1","index":"0.000012852134347969"},{"denom":"ASSET10","index":"0.000008953505358908"},{"denom":"ASSET11","index":"0.000012432624080325"},{"denom":"ASSET12","index":"0.000011194846435509"},{"denom":"ASSET13","index":"0.000003852675567517"},{"denom":"ASSET14","index":"0.000011614356703153"},{"denom":"ASSET15","index":"0.000008302745615107"},{"denom":"ASSET16","index":"0.000005788648746115"},{"denom":"ASSET17","index":"0.000004110607675539"},{"denom":"ASSET18","index":"0.000001958208705152"},{"denom":"ASSET2","index":"0.000003793380830041"},{"denom":"ASSET3","index":"0.000001108811590805"},{"denom":"ASSET4","index":"0.000010443285637998"},{"denom":"ASSET5","index":"0.000000861256061842"},{"denom":"ASSET6","index":"0.000003505801353281"},{"denom":"ASSET7","index":"0.000005369138478471"},{"denom":"ASSET8","index":"0.000007005673232815"},{"denom":"ASSET9","index":"0.000003025513979724"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003039218640043"},{"denom":"ASSET1","index":"0.000025782167100542"},{"denom":"ASSET10","index":"0.000020571830356487"},{"denom":"ASSET11","index":"0.000025618833387376"},{"denom":"ASSET12","index":"0.000024423552320522"},{"denom":"ASSET13","index":"0.000008046369560384"},{"denom":"ASSET14","index":"0.000023515194162679"},{"denom":"ASSET15","index":"0.000018530055863607"},{"denom":"ASSET16","index":"0.000011436803083329"},{"denom":"ASSET17","index":"0.000008974370950503"},{"denom":"ASSET18","index":"0.000003710743638587"},{"denom":"ASSET2","index":"0.000007806913274081"},{"denom":"ASSET3","index":"0.000002167934051431"},{"denom":"ASSET4","index":"0.000020901035076857"},{"denom":"ASSET5","index":"0.000001689640060433"},{"denom":"ASSET6","index":"0.000006819038075969"},{"denom":"ASSET7","index":"0.000010710838619674"},{"denom":"ASSET8","index":"0.000014627524271874"},{"denom":"ASSET9","index":"0.000006209166066794"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001647112085871"},{"denom":"ASSET1","index":"0.000013744257107488"},{"denom":"ASSET10","index":"0.000009576415679235"},{"denom":"ASSET11","index":"0.000013296650962579"},{"denom":"ASSET12","index":"0.000011973464376313"},{"denom":"ASSET13","index":"0.000004120724991946"},{"denom":"ASSET14","index":"0.000012421070521222"},{"denom":"ASSET15","index":"0.000008879485058873"},{"denom":"ASSET16","index":"0.000006191885004573"},{"denom":"ASSET17","index":"0.000004397534055245"},{"denom":"ASSET18","index":"0.000002094718230780"},{"denom":"ASSET2","index":"0.000004055939892025"},{"denom":"ASSET3","index":"0.000001185763647039"},{"denom":"ASSET4","index":"0.000011170521774262"},{"denom":"ASSET5","index":"0.000000920733692817"},{"denom":"ASSET6","index":"0.000003749683056035"},{"denom":"ASSET7","index":"0.000005742315674818"},{"denom":"ASSET8","index":"0.000007491513372686"},{"denom":"ASSET9","index":"0.000003235328626359"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003240628198198"},{"denom":"ASSET1","index":"0.000027504329283847"},{"denom":"ASSET10","index":"0.000021940320319100"},{"denom":"ASSET11","index":"0.000027329345632586"},{"denom":"ASSET12","index":"0.000026051323397008"},{"denom":"ASSET13","index":"0.000008583813762496"},{"denom":"ASSET14","index":"0.000025085743554439"},{"denom":"ASSET15","index":"0.000019763439018939"},{"denom":"ASSET16","index":"0.000012202670980955"},{"denom":"ASSET17","index":"0.000009573761377605"},{"denom":"ASSET18","index":"0.000003959875003044"},{"denom":"ASSET2","index":"0.000008327243811102"},{"denom":"ASSET3","index":"0.000002312908746824"},{"denom":"ASSET4","index":"0.000022299606884078"},{"denom":"ASSET5","index":"0.000001802093087045"},{"denom":"ASSET6","index":"0.000007275447910852"},{"denom":"ASSET7","index":"0.000011427132859276"},{"denom":"ASSET8","index":"0.000015602768933976"},{"denom":"ASSET9","index":"0.000006623309483786"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001570100817458"},{"denom":"ASSET1","index":"0.000013089401919768"},{"denom":"ASSET10","index":"0.000009119446705996"},{"denom":"ASSET11","index":"0.000012662761138201"},{"denom":"ASSET12","index":"0.000011403229713207"},{"denom":"ASSET13","index":"0.000003924467777503"},{"denom":"ASSET14","index":"0.000011828301962489"},{"denom":"ASSET15","index":"0.000008457526081653"},{"denom":"ASSET16","index":"0.000005896112859965"},{"denom":"ASSET17","index":"0.000004187981201412"},{"denom":"ASSET18","index":"0.000001993604534455"},{"denom":"ASSET2","index":"0.000003863295018381"},{"denom":"ASSET3","index":"0.000001129343245325"},{"denom":"ASSET4","index":"0.000010637785958043"},{"denom":"ASSET5","index":"0.000000876809547412"},{"denom":"ASSET6","index":"0.000003569979481054"},{"denom":"ASSET7","index":"0.000005467903546113"},{"denom":"ASSET8","index":"0.000007135253365252"},{"denom":"ASSET9","index":"0.000003082165940365"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003152920186871"},{"denom":"ASSET1","index":"0.000026760622644749"},{"denom":"ASSET10","index":"0.000021403995558307"},{"denom":"ASSET11","index":"0.000026604821287493"},{"denom":"ASSET12","index":"0.000025390105019040"},{"denom":"ASSET13","index":"0.000008358570294936"},{"denom":"ASSET14","index":"0.000024411618525071"},{"denom":"ASSET15","index":"0.000019270968708391"},{"denom":"ASSET16","index":"0.000011868219590271"},{"denom":"ASSET17","index":"0.000009330682788205"},{"denom":"ASSET18","index":"0.000003846613833157"},{"denom":"ASSET2","index":"0.000008107095494272"},{"denom":"ASSET3","index":"0.000002249072663818"},{"denom":"ASSET4","index":"0.000021694789218154"},{"denom":"ASSET5","index":"0.000001752328837510"},{"denom":"ASSET6","index":"0.000007072706136469"},{"denom":"ASSET7","index":"0.000011115912260277"},{"denom":"ASSET8","index":"0.000015194187602297"},{"denom":"ASSET9","index":"0.000006447849146068"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001655272585709"},{"denom":"ASSET1","index":"0.000013804891217292"},{"denom":"ASSET10","index":"0.000009617831976915"},{"denom":"ASSET11","index":"0.000013354722791997"},{"denom":"ASSET12","index":"0.000012025575872058"},{"denom":"ASSET13","index":"0.000004138592201887"},{"denom":"ASSET14","index":"0.000012474922822124"},{"denom":"ASSET15","index":"0.000008919578032571"},{"denom":"ASSET16","index":"0.000006218567480803"},{"denom":"ASSET17","index":"0.000004416250829168"},{"denom":"ASSET18","index":"0.000002103798060547"},{"denom":"ASSET2","index":"0.000004074517134053"},{"denom":"ASSET3","index":"0.000001191960556756"},{"denom":"ASSET4","index":"0.000011218887197534"},{"denom":"ASSET5","index":"0.000000924981107448"},{"denom":"ASSET6","index":"0.000003765642448085"},{"denom":"ASSET7","index":"0.000005766756105051"},{"denom":"ASSET8","index":"0.000007525534569569"},{"denom":"ASSET9","index":"0.000003250577479728"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003218229550028"},{"denom":"ASSET1","index":"0.000027301798081180"},{"denom":"ASSET10","index":"0.000021745417841688"},{"denom":"ASSET11","index":"0.000027119412726222"},{"denom":"ASSET12","index":"0.000025834540696398"},{"denom":"ASSET13","index":"0.000008516471999212"},{"denom":"ASSET14","index":"0.000024897496810197"},{"denom":"ASSET15","index":"0.000019595694306931"},{"denom":"ASSET16","index":"0.000012114595919920"},{"denom":"ASSET17","index":"0.000009493460517354"},{"denom":"ASSET18","index":"0.000003932937797970"},{"denom":"ASSET2","index":"0.000008264095290285"},{"denom":"ASSET3","index":"0.000002297232512411"},{"denom":"ASSET4","index":"0.000022135581489268"},{"denom":"ASSET5","index":"0.000001789675045728"},{"denom":"ASSET6","index":"0.000007223884768794"},{"denom":"ASSET7","index":"0.000011342725097550"},{"denom":"ASSET8","index":"0.000015481678980085"},{"denom":"ASSET9","index":"0.000006573861400446"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001621688869515"},{"denom":"ASSET1","index":"0.000013520143478358"},{"denom":"ASSET10","index":"0.000009419470546393"},{"denom":"ASSET11","index":"0.000013079418684764"},{"denom":"ASSET12","index":"0.000011778054243646"},{"denom":"ASSET13","index":"0.000004053107355591"},{"denom":"ASSET14","index":"0.000012218035825109"},{"denom":"ASSET15","index":"0.000008735715386011"},{"denom":"ASSET16","index":"0.000006090623412316"},{"denom":"ASSET17","index":"0.000004325494601547"},{"denom":"ASSET18","index":"0.000002060555632782"},{"denom":"ASSET2","index":"0.000003991049142665"},{"denom":"ASSET3","index":"0.000001167586257565"},{"denom":"ASSET4","index":"0.000010987648142487"},{"denom":"ASSET5","index":"0.000000905975587506"},{"denom":"ASSET6","index":"0.000003688190199343"},{"denom":"ASSET7","index":"0.000005648412194460"},{"denom":"ASSET8","index":"0.000007370434701640"},{"denom":"ASSET9","index":"0.000003183549162496"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003224207736427"},{"denom":"ASSET1","index":"0.000027358045975387"},{"denom":"ASSET10","index":"0.000021853454393362"},{"denom":"ASSET11","index":"0.000027191663823691"},{"denom":"ASSET12","index":"0.000025935625558190"},{"denom":"ASSET13","index":"0.000008541293337334"},{"denom":"ASSET14","index":"0.000024954691173737"},{"denom":"ASSET15","index":"0.000019681390400685"},{"denom":"ASSET16","index":"0.000012135703886829"},{"denom":"ASSET17","index":"0.000009530848033034"},{"denom":"ASSET18","index":"0.000003936224347496"},{"denom":"ASSET2","index":"0.000008286598878032"},{"denom":"ASSET3","index":"0.000002301038846536"},{"denom":"ASSET4","index":"0.000022179933336345"},{"denom":"ASSET5","index":"0.000001792519798769"},{"denom":"ASSET6","index":"0.000007234068845872"},{"denom":"ASSET7","index":"0.000011365474292791"},{"denom":"ASSET8","index":"0.000015527655320242"},{"denom":"ASSET9","index":"0.000006590765495457"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001684197417987"},{"denom":"ASSET1","index":"0.000014041270025306"},{"denom":"ASSET10","index":"0.000009782380002809"},{"denom":"ASSET11","index":"0.000013583439347888"},{"denom":"ASSET12","index":"0.000012231725730520"},{"denom":"ASSET13","index":"0.000004209525615418"},{"denom":"ASSET14","index":"0.000012688588478388"},{"denom":"ASSET15","index":"0.000009072403677468"},{"denom":"ASSET16","index":"0.000006325419612958"},{"denom":"ASSET17","index":"0.000004492161044183"},{"denom":"ASSET18","index":"0.000002139608271529"},{"denom":"ASSET2","index":"0.000004144674335530"},{"denom":"ASSET3","index":"0.000001212331762086"},{"denom":"ASSET4","index":"0.000011410921471639"},{"denom":"ASSET5","index":"0.000000940827523152"},{"denom":"ASSET6","index":"0.000003830097231595"},{"denom":"ASSET7","index":"0.000005866137041214"},{"denom":"ASSET8","index":"0.000007654386885887"},{"denom":"ASSET9","index":"0.000003305963379963"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003193080094990"},{"denom":"ASSET1","index":"0.000027069824276969"},{"denom":"ASSET10","index":"0.000021489349079139"},{"denom":"ASSET11","index":"0.000026870184080824"},{"denom":"ASSET12","index":"0.000025561356340007"},{"denom":"ASSET13","index":"0.000008435097288603"},{"denom":"ASSET14","index":"0.000024680442306089"},{"denom":"ASSET15","index":"0.000019377704768171"},{"denom":"ASSET16","index":"0.000012016988086595"},{"denom":"ASSET17","index":"0.000009392966467546"},{"denom":"ASSET18","index":"0.000003905368596850"},{"denom":"ASSET2","index":"0.000008189075060838"},{"denom":"ASSET3","index":"0.000002279664955012"},{"denom":"ASSET4","index":"0.000021948593995488"},{"denom":"ASSET5","index":"0.000001775351671947"},{"denom":"ASSET6","index":"0.000007168631437760"},{"denom":"ASSET7","index":"0.000011248752159293"},{"denom":"ASSET8","index":"0.000015334459676317"},{"denom":"ASSET9","index":"0.000006513651901550"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001677613648548"},{"denom":"ASSET1","index":"0.000013997394471820"},{"denom":"ASSET10","index":"0.000009752554992736"},{"denom":"ASSET11","index":"0.000013541183096442"},{"denom":"ASSET12","index":"0.000012193285851007"},{"denom":"ASSET13","index":"0.000004195070965406"},{"denom":"ASSET14","index":"0.000012649497226385"},{"denom":"ASSET15","index":"0.000009043353672830"},{"denom":"ASSET16","index":"0.000006306085420563"},{"denom":"ASSET17","index":"0.000004477092542912"},{"denom":"ASSET18","index":"0.000002131751335856"},{"denom":"ASSET2","index":"0.000004130786635239"},{"denom":"ASSET3","index":"0.000001208960144751"},{"denom":"ASSET4","index":"0.000011376252751467"},{"denom":"ASSET5","index":"0.000000937307007594"},{"denom":"ASSET6","index":"0.000003817659736684"},{"denom":"ASSET7","index":"0.000005847800357116"},{"denom":"ASSET8","index":"0.000007631172097229"},{"denom":"ASSET9","index":"0.000003295090343070"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003316222748087"},{"denom":"ASSET1","index":"0.000028147075207200"},{"denom":"ASSET10","index":"0.000022466702115272"},{"denom":"ASSET11","index":"0.000027971336509453"},{"denom":"ASSET12","index":"0.000026669877578580"},{"denom":"ASSET13","index":"0.000008784355829882"},{"denom":"ASSET14","index":"0.000025672864554615"},{"denom":"ASSET15","index":"0.000020235356040284"},{"denom":"ASSET16","index":"0.000012487172511964"},{"denom":"ASSET17","index":"0.000009799807931023"},{"denom":"ASSET18","index":"0.000004049727438870"},{"denom":"ASSET2","index":"0.000008522892941853"},{"denom":"ASSET3","index":"0.000002368075218536"},{"denom":"ASSET4","index":"0.000022820717384594"},{"denom":"ASSET5","index":"0.000001843591257654"},{"denom":"ASSET6","index":"0.000007443165294976"},{"denom":"ASSET7","index":"0.000011693499621126"},{"denom":"ASSET8","index":"0.000015972009373807"},{"denom":"ASSET9","index":"0.000006779069609364"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001520550536467"},{"denom":"ASSET1","index":"0.000012675827554874"},{"denom":"ASSET10","index":"0.000008831388003026"},{"denom":"ASSET11","index":"0.000012262725604616"},{"denom":"ASSET12","index":"0.000011042474271843"},{"denom":"ASSET13","index":"0.000003800233070086"},{"denom":"ASSET14","index":"0.000011455195131741"},{"denom":"ASSET15","index":"0.000008190012927118"},{"denom":"ASSET16","index":"0.000005710257954490"},{"denom":"ASSET17","index":"0.000004055182520937"},{"denom":"ASSET18","index":"0.000001931747034924"},{"denom":"ASSET2","index":"0.000003741926245004"},{"denom":"ASSET3","index":"0.000001094491513968"},{"denom":"ASSET4","index":"0.000010301253521611"},{"denom":"ASSET5","index":"0.000000849450412477"},{"denom":"ASSET6","index":"0.000003457632836431"},{"denom":"ASSET7","index":"0.000005295631642792"},{"denom":"ASSET8","index":"0.000006910311498182"},{"denom":"ASSET9","index":"0.000002984699699651"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003047858420945"},{"denom":"ASSET1","index":"0.000025863853767953"},{"denom":"ASSET10","index":"0.000020681482671570"},{"denom":"ASSET11","index":"0.000025712271525236"},{"denom":"ASSET12","index":"0.000024535470175220"},{"denom":"ASSET13","index":"0.000008077733573885"},{"denom":"ASSET14","index":"0.000023593590000343"},{"denom":"ASSET15","index":"0.000018621561303244"},{"denom":"ASSET16","index":"0.000011471343089677"},{"denom":"ASSET17","index":"0.000009016132124589"},{"denom":"ASSET18","index":"0.000003719208275283"},{"denom":"ASSET2","index":"0.000007835789085827"},{"denom":"ASSET3","index":"0.000002174729135607"},{"denom":"ASSET4","index":"0.000020967814383093"},{"denom":"ASSET5","index":"0.000001694402278429"},{"denom":"ASSET6","index":"0.000006836893759575"},{"denom":"ASSET7","index":"0.000010744095518390"},{"denom":"ASSET8","index":"0.000014684305897471"},{"denom":"ASSET9","index":"0.000006231971052532"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001765508823557"},{"denom":"ASSET1","index":"0.000014724618911480"},{"denom":"ASSET10","index":"0.000010258363403154"},{"denom":"ASSET11","index":"0.000014244524406828"},{"denom":"ASSET12","index":"0.000012826610887714"},{"denom":"ASSET13","index":"0.000004413772058893"},{"denom":"ASSET14","index":"0.000013305845007949"},{"denom":"ASSET15","index":"0.000009513270498085"},{"denom":"ASSET16","index":"0.000006632703470176"},{"denom":"ASSET17","index":"0.000004710604682736"},{"denom":"ASSET18","index":"0.000002243882559375"},{"denom":"ASSET2","index":"0.000004346662074372"},{"denom":"ASSET3","index":"0.000001271648168235"},{"denom":"ASSET4","index":"0.000011966226470776"},{"denom":"ASSET5","index":"0.000000986860926228"},{"denom":"ASSET6","index":"0.000004016274458267"},{"denom":"ASSET7","index":"0.000006150888196691"},{"denom":"ASSET8","index":"0.000008026526225616"},{"denom":"ASSET9","index":"0.000003466488815844"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003365151784209"},{"denom":"ASSET1","index":"0.000028538337865727"},{"denom":"ASSET10","index":"0.000022670552359626"},{"denom":"ASSET11","index":"0.000028331786642422"},{"denom":"ASSET12","index":"0.000026959391418936"},{"denom":"ASSET13","index":"0.000008894072871450"},{"denom":"ASSET14","index":"0.000026020188745878"},{"denom":"ASSET15","index":"0.000020439828986765"},{"denom":"ASSET16","index":"0.000012667128947757"},{"denom":"ASSET17","index":"0.000009907060013179"},{"denom":"ASSET18","index":"0.000004116201786219"},{"denom":"ASSET2","index":"0.000008634485522558"},{"denom":"ASSET3","index":"0.000002403102945281"},{"denom":"ASSET4","index":"0.000023139017263426"},{"denom":"ASSET5","index":"0.000001871649891727"},{"denom":"ASSET6","index":"0.000007555863827839"},{"denom":"ASSET7","index":"0.000011857581945748"},{"denom":"ASSET8","index":"0.000016169532559731"},{"denom":"ASSET9","index":"0.000006867789268222"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001833509758465"},{"denom":"ASSET1","index":"0.000015308139656127"},{"denom":"ASSET10","index":"0.000010661025831945"},{"denom":"ASSET11","index":"0.000014808091540182"},{"denom":"ASSET12","index":"0.000013334616425197"},{"denom":"ASSET13","index":"0.000004587108050268"},{"denom":"ASSET14","index":"0.000013827997232930"},{"denom":"ASSET15","index":"0.000009887618079284"},{"denom":"ASSET16","index":"0.000006893996691827"},{"denom":"ASSET17","index":"0.000004893804228047"},{"denom":"ASSET18","index":"0.000002326890566197"},{"denom":"ASSET2","index":"0.000004513767659929"},{"denom":"ASSET3","index":"0.000001320127026095"},{"denom":"ASSET4","index":"0.000012434529816496"},{"denom":"ASSET5","index":"0.000001020098156528"},{"denom":"ASSET6","index":"0.000004173734941087"},{"denom":"ASSET7","index":"0.000006393948575882"},{"denom":"ASSET8","index":"0.000008340802573961"},{"denom":"ASSET9","index":"0.000003600346434803"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003461123478470"},{"denom":"ASSET1","index":"0.000029368181297786"},{"denom":"ASSET10","index":"0.000023294808028239"},{"denom":"ASSET11","index":"0.000029147392384169"},{"denom":"ASSET12","index":"0.000027719461688447"},{"denom":"ASSET13","index":"0.000009147542663388"},{"denom":"ASSET14","index":"0.000026768604990580"},{"denom":"ASSET15","index":"0.000021008846141082"},{"denom":"ASSET16","index":"0.000013035302068339"},{"denom":"ASSET17","index":"0.000010182949549387"},{"denom":"ASSET18","index":"0.000004232564951180"},{"denom":"ASSET2","index":"0.000008877642147806"},{"denom":"ASSET3","index":"0.000002471921418528"},{"denom":"ASSET4","index":"0.000023806252184245"},{"denom":"ASSET5","index":"0.000001920199705662"},{"denom":"ASSET6","index":"0.000007776538212319"},{"denom":"ASSET7","index":"0.000012202060569359"},{"denom":"ASSET8","index":"0.000016628688342614"},{"denom":"ASSET9","index":"0.000007061722298848"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001580229076001"},{"denom":"ASSET1","index":"0.000013178675425859"},{"denom":"ASSET10","index":"0.000009181488308837"},{"denom":"ASSET11","index":"0.000012749045790152"},{"denom":"ASSET12","index":"0.000011480356468073"},{"denom":"ASSET13","index":"0.000003950572690002"},{"denom":"ASSET14","index":"0.000011909209196663"},{"denom":"ASSET15","index":"0.000008514902002442"},{"denom":"ASSET16","index":"0.000005936347281082"},{"denom":"ASSET17","index":"0.000004216274924019"},{"denom":"ASSET18","index":"0.000002008304897474"},{"denom":"ASSET2","index":"0.000003889973934875"},{"denom":"ASSET3","index":"0.000001137392019304"},{"denom":"ASSET4","index":"0.000010709664607998"},{"denom":"ASSET5","index":"0.000000883343392042"},{"denom":"ASSET6","index":"0.000003594749230410"},{"denom":"ASSET7","index":"0.000005505163831141"},{"denom":"ASSET8","index":"0.000007184060111002"},{"denom":"ASSET9","index":"0.000003102967025342"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003136420796654"},{"denom":"ASSET1","index":"0.000026617535879560"},{"denom":"ASSET10","index":"0.000021257162201233"},{"denom":"ASSET11","index":"0.000026454281403244"},{"denom":"ASSET12","index":"0.000025229520616223"},{"denom":"ASSET13","index":"0.000008309311482354"},{"denom":"ASSET14","index":"0.000024278363089230"},{"denom":"ASSET15","index":"0.000019144672836670"},{"denom":"ASSET16","index":"0.000011806881934189"},{"denom":"ASSET17","index":"0.000009271795054357"},{"denom":"ASSET18","index":"0.000003829937127836"},{"denom":"ASSET2","index":"0.000008061315465971"},{"denom":"ASSET3","index":"0.000002238409344787"},{"denom":"ASSET4","index":"0.000021579173085678"},{"denom":"ASSET5","index":"0.000001744155749232"},{"denom":"ASSET6","index":"0.000007037998659171"},{"denom":"ASSET7","index":"0.000011056982942661"},{"denom":"ASSET8","index":"0.000015105683491420"},{"denom":"ASSET9","index":"0.000006411626899884"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001065673750407"},{"denom":"ASSET1","index":"0.000008885137524612"},{"denom":"ASSET10","index":"0.000006190162379117"},{"denom":"ASSET11","index":"0.000008595321581390"},{"denom":"ASSET12","index":"0.000007740138401991"},{"denom":"ASSET13","index":"0.000002663662498568"},{"denom":"ASSET14","index":"0.000008029258508615"},{"denom":"ASSET15","index":"0.000005740999854868"},{"denom":"ASSET16","index":"0.000004002452113836"},{"denom":"ASSET17","index":"0.000002842492504350"},{"denom":"ASSET18","index":"0.000001354098020432"},{"denom":"ASSET2","index":"0.000002622608139264"},{"denom":"ASSET3","index":"0.000000767159849705"},{"denom":"ASSET4","index":"0.000007220696381306"},{"denom":"ASSET5","index":"0.000000595288209907"},{"denom":"ASSET6","index":"0.000002423598872130"},{"denom":"ASSET7","index":"0.000003711940334016"},{"denom":"ASSET8","index":"0.000004843718561268"},{"denom":"ASSET9","index":"0.000002092032733005"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000002559869929403"},{"denom":"ASSET1","index":"0.000021787096732684"},{"denom":"ASSET10","index":"0.000017783238471081"},{"denom":"ASSET11","index":"0.000021752938768967"},{"denom":"ASSET12","index":"0.000020940235345308"},{"denom":"ASSET13","index":"0.000006848308161575"},{"denom":"ASSET14","index":"0.000019904298850841"},{"denom":"ASSET15","index":"0.000015946274018453"},{"denom":"ASSET16","index":"0.000009638424477568"},{"denom":"ASSET17","index":"0.000007695902028378"},{"denom":"ASSET18","index":"0.000003102977872608"},{"denom":"ASSET2","index":"0.000006627591716064"},{"denom":"ASSET3","index":"0.000001824087350341"},{"denom":"ASSET4","index":"0.000017655906837434"},{"denom":"ASSET5","index":"0.000001421889695470"},{"denom":"ASSET6","index":"0.000005729615091854"},{"denom":"ASSET7","index":"0.000009042175373173"},{"denom":"ASSET8","index":"0.000012449153729005"},{"denom":"ASSET9","index":"0.000005268661072858"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001663945626017"},{"denom":"ASSET1","index":"0.000013874870096624"},{"denom":"ASSET10","index":"0.000009666844154779"},{"denom":"ASSET11","index":"0.000013422526194886"},{"denom":"ASSET12","index":"0.000012086742376498"},{"denom":"ASSET13","index":"0.000004159391889779"},{"denom":"ASSET14","index":"0.000012538614102973"},{"denom":"ASSET15","index":"0.000008964719539034"},{"denom":"ASSET16","index":"0.000006250183953344"},{"denom":"ASSET17","index":"0.000004438919645342"},{"denom":"ASSET18","index":"0.000002114400826704"},{"denom":"ASSET2","index":"0.000004095648229305"},{"denom":"ASSET3","index":"0.000001197908641659"},{"denom":"ASSET4","index":"0.000011275545275051"},{"denom":"ASSET5","index":"0.000000929713092403"},{"denom":"ASSET6","index":"0.000003784956906399"},{"denom":"ASSET7","index":"0.000005796423525818"},{"denom":"ASSET8","index":"0.000007563775534382"},{"denom":"ASSET9","index":"0.000003266980643136"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003299045378029"},{"denom":"ASSET1","index":"0.000027992490930804"},{"denom":"ASSET10","index":"0.000022352284005938"},{"denom":"ASSET11","index":"0.000027819914533732"},{"denom":"ASSET12","index":"0.000026530494002155"},{"denom":"ASSET13","index":"0.000008738242797579"},{"denom":"ASSET14","index":"0.000025532401567106"},{"denom":"ASSET15","index":"0.000020131602968729"},{"denom":"ASSET16","index":"0.000012417136212826"},{"denom":"ASSET17","index":"0.000009749421325842"},{"denom":"ASSET18","index":"0.000004027997856345"},{"denom":"ASSET2","index":"0.000008477931503293"},{"denom":"ASSET3","index":"0.000002354450357881"},{"denom":"ASSET4","index":"0.000022693933657862"},{"denom":"ASSET5","index":"0.000001834114741991"},{"denom":"ASSET6","index":"0.000007402245947993"},{"denom":"ASSET7","index":"0.000011628988518089"},{"denom":"ASSET8","index":"0.000015885667960333"},{"denom":"ASSET9","index":"0.000006742956926982"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001554670726054"},{"denom":"ASSET1","index":"0.000012963415617374"},{"denom":"ASSET10","index":"0.000009031685079156"},{"denom":"ASSET11","index":"0.000012540799003679"},{"denom":"ASSET12","index":"0.000011293255065955"},{"denom":"ASSET13","index":"0.000003886042255656"},{"denom":"ASSET14","index":"0.000011715237120170"},{"denom":"ASSET15","index":"0.000008376185136293"},{"denom":"ASSET16","index":"0.000005839850894644"},{"denom":"ASSET17","index":"0.000004147480761425"},{"denom":"ASSET18","index":"0.000001975383661309"},{"denom":"ASSET2","index":"0.000003826393664534"},{"denom":"ASSET3","index":"0.000001119362922759"},{"denom":"ASSET4","index":"0.000010534956487329"},{"denom":"ASSET5","index":"0.000000868711928150"},{"denom":"ASSET6","index":"0.000003536399982164"},{"denom":"ASSET7","index":"0.000005415965161990"},{"denom":"ASSET8","index":"0.000007067088929007"},{"denom":"ASSET9","index":"0.000003052231098907"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003157426180098"},{"denom":"ASSET1","index":"0.000026803913890418"},{"denom":"ASSET10","index":"0.000021467927303389"},{"denom":"ASSET11","index":"0.000026655124661377"},{"denom":"ASSET12","index":"0.000025453388278707"},{"denom":"ASSET13","index":"0.000008375182650914"},{"denom":"ASSET14","index":"0.000024453809207757"},{"denom":"ASSET15","index":"0.000019323681821282"},{"denom":"ASSET16","index":"0.000011885939188892"},{"denom":"ASSET17","index":"0.000009353763879690"},{"denom":"ASSET18","index":"0.000003851457527173"},{"denom":"ASSET2","index":"0.000008122633355733"},{"denom":"ASSET3","index":"0.000002252845423920"},{"denom":"ASSET4","index":"0.000021728796023940"},{"denom":"ASSET5","index":"0.000001755342604855"},{"denom":"ASSET6","index":"0.000007082922688985"},{"denom":"ASSET7","index":"0.000011133765978354"},{"denom":"ASSET8","index":"0.000015225414484063"},{"denom":"ASSET9","index":"0.000006459804222065"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001578706846766"},{"denom":"ASSET1","index":"0.000013164667632738"},{"denom":"ASSET10","index":"0.000009171819989970"},{"denom":"ASSET11","index":"0.000012734981690366"},{"denom":"ASSET12","index":"0.000011467468005207"},{"denom":"ASSET13","index":"0.000003946168668528"},{"denom":"ASSET14","index":"0.000011895957050803"},{"denom":"ASSET15","index":"0.000008505148486066"},{"denom":"ASSET16","index":"0.000005930623522158"},{"denom":"ASSET17","index":"0.000004211879752669"},{"denom":"ASSET18","index":"0.000002005998995588"},{"denom":"ASSET2","index":"0.000003886323829757"},{"denom":"ASSET3","index":"0.000001135855039864"},{"denom":"ASSET4","index":"0.000010697863378618"},{"denom":"ASSET5","index":"0.000000882112923477"},{"denom":"ASSET6","index":"0.000003590690326231"},{"denom":"ASSET7","index":"0.000005499740683011"},{"denom":"ASSET8","index":"0.000007176593065360"},{"denom":"ASSET9","index":"0.000003098765751537"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003185213515607"},{"denom":"ASSET1","index":"0.000027035699090666"},{"denom":"ASSET10","index":"0.000021635640181728"},{"denom":"ASSET11","index":"0.000026880669357351"},{"denom":"ASSET12","index":"0.000025658872180332"},{"denom":"ASSET13","index":"0.000008444958797633"},{"denom":"ASSET14","index":"0.000024662649108986"},{"denom":"ASSET15","index":"0.000019476753279332"},{"denom":"ASSET16","index":"0.000011989846651744"},{"denom":"ASSET17","index":"0.000009429633404312"},{"denom":"ASSET18","index":"0.000003886090392826"},{"denom":"ASSET2","index":"0.000008191890279929"},{"denom":"ASSET3","index":"0.000002271981699175"},{"denom":"ASSET4","index":"0.000021916623044014"},{"denom":"ASSET5","index":"0.000001770727550439"},{"denom":"ASSET6","index":"0.000007144791673859"},{"denom":"ASSET7","index":"0.000011230376410345"},{"denom":"ASSET8","index":"0.000015353061978158"},{"denom":"ASSET9","index":"0.000006513931773648"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001736464555496"},{"denom":"ASSET1","index":"0.000014486324003877"},{"denom":"ASSET10","index":"0.000010092542477093"},{"denom":"ASSET11","index":"0.000014014496766071"},{"denom":"ASSET12","index":"0.000012620063107870"},{"denom":"ASSET13","index":"0.000004342915393341"},{"denom":"ASSET14","index":"0.000013091890345676"},{"denom":"ASSET15","index":"0.000009359368553661"},{"denom":"ASSET16","index":"0.000006524897117620"},{"denom":"ASSET17","index":"0.000004634080157191"},{"denom":"ASSET18","index":"0.000002206537788701"},{"denom":"ASSET2","index":"0.000004276263218483"},{"denom":"ASSET3","index":"0.000001250605280877"},{"denom":"ASSET4","index":"0.000011772878885340"},{"denom":"ASSET5","index":"0.000000969964544635"},{"denom":"ASSET6","index":"0.000003951772367204"},{"denom":"ASSET7","index":"0.000006051315875212"},{"denom":"ASSET8","index":"0.000007896528716001"},{"denom":"ASSET9","index":"0.000003409784945337"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003356675502673"},{"denom":"ASSET1","index":"0.000028477076245214"},{"denom":"ASSET10","index":"0.000022663760086849"},{"denom":"ASSET11","index":"0.000028282539274294"},{"denom":"ASSET12","index":"0.000026934248109484"},{"denom":"ASSET13","index":"0.000008880550781135"},{"denom":"ASSET14","index":"0.000025969128454053"},{"denom":"ASSET15","index":"0.000020425731449718"},{"denom":"ASSET16","index":"0.000012636600959200"},{"denom":"ASSET17","index":"0.000009896936242996"},{"denom":"ASSET18","index":"0.000004102733083140"},{"denom":"ASSET2","index":"0.000008619316582261"},{"denom":"ASSET3","index":"0.000002396767404444"},{"denom":"ASSET4","index":"0.000023088672429632"},{"denom":"ASSET5","index":"0.000001866260713425"},{"denom":"ASSET6","index":"0.000007536521735823"},{"denom":"ASSET7","index":"0.000011831316132227"},{"denom":"ASSET8","index":"0.000016143846449802"},{"denom":"ASSET9","index":"0.000006854365607618"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001432199402946"},{"denom":"ASSET1","index":"0.000011943338809449"},{"denom":"ASSET10","index":"0.000008321234131428"},{"denom":"ASSET11","index":"0.000011554338026882"},{"denom":"ASSET12","index":"0.000010404248756685"},{"denom":"ASSET13","index":"0.000003580160245814"},{"denom":"ASSET14","index":"0.000010793249539252"},{"denom":"ASSET15","index":"0.000007717099003024"},{"denom":"ASSET16","index":"0.000005380388215223"},{"denom":"ASSET17","index":"0.000003821002469456"},{"denom":"ASSET18","index":"0.000001819847139312"},{"denom":"ASSET2","index":"0.000003525361874705"},{"denom":"ASSET3","index":"0.000001031021204577"},{"denom":"ASSET4","index":"0.000009706076917365"},{"denom":"ASSET5","index":"0.000000800326827437"},{"denom":"ASSET6","index":"0.000003258135250159"},{"denom":"ASSET7","index":"0.000004989357863356"},{"denom":"ASSET8","index":"0.000006510858315517"},{"denom":"ASSET9","index":"0.000002812306527182"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000002962853679956"},{"denom":"ASSET1","index":"0.000025162993314326"},{"denom":"ASSET10","index":"0.000020199688926412"},{"denom":"ASSET11","index":"0.000025035647772320"},{"denom":"ASSET12","index":"0.000023929456511577"},{"denom":"ASSET13","index":"0.000007867725037604"},{"denom":"ASSET14","index":"0.000022960507028012"},{"denom":"ASSET15","index":"0.000018173489333858"},{"denom":"ASSET16","index":"0.000011155286879957"},{"denom":"ASSET17","index":"0.000008793607250882"},{"denom":"ASSET18","index":"0.000003611579051495"},{"denom":"ASSET2","index":"0.000007628670547867"},{"denom":"ASSET3","index":"0.000002114031306235"},{"denom":"ASSET4","index":"0.000020398130246320"},{"denom":"ASSET5","index":"0.000001647096325587"},{"denom":"ASSET6","index":"0.000006645213242757"},{"denom":"ASSET7","index":"0.000010450616802650"},{"denom":"ASSET8","index":"0.000014303332598966"},{"denom":"ASSET9","index":"0.000006067112886031"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001597673370668"},{"denom":"ASSET1","index":"0.000013327099930964"},{"denom":"ASSET10","index":"0.000009285285696821"},{"denom":"ASSET11","index":"0.000012892979142852"},{"denom":"ASSET12","index":"0.000011609669101507"},{"denom":"ASSET13","index":"0.000003995544306884"},{"denom":"ASSET14","index":"0.000012043789889618"},{"denom":"ASSET15","index":"0.000008610289110917"},{"denom":"ASSET16","index":"0.000006002842621820"},{"denom":"ASSET17","index":"0.000004263637708946"},{"denom":"ASSET18","index":"0.000002030433278566"},{"denom":"ASSET2","index":"0.000003934304697275"},{"denom":"ASSET3","index":"0.000001149943780421"},{"denom":"ASSET4","index":"0.000010829884739162"},{"denom":"ASSET5","index":"0.000000892737420067"},{"denom":"ASSET6","index":"0.000003634911050302"},{"denom":"ASSET7","index":"0.000005567360953495"},{"denom":"ASSET8","index":"0.000007264378579749"},{"denom":"ASSET9","index":"0.000003138189772368"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003135234009226"},{"denom":"ASSET1","index":"0.000026602125077525"},{"denom":"ASSET10","index":"0.000021213712135644"},{"denom":"ASSET11","index":"0.000026430841190504"},{"denom":"ASSET12","index":"0.000025191219856579"},{"denom":"ASSET13","index":"0.000008300995957475"},{"denom":"ASSET14","index":"0.000024262534835813"},{"denom":"ASSET15","index":"0.000019110376679732"},{"denom":"ASSET16","index":"0.000011801461546978"},{"denom":"ASSET17","index":"0.000009257538829689"},{"denom":"ASSET18","index":"0.000003829421505073"},{"denom":"ASSET2","index":"0.000008055136326188"},{"denom":"ASSET3","index":"0.000002237228869924"},{"denom":"ASSET4","index":"0.000021566736915931"},{"denom":"ASSET5","index":"0.000001743257901616"},{"denom":"ASSET6","index":"0.000007036288319926"},{"denom":"ASSET7","index":"0.000011051703047857"},{"denom":"ASSET8","index":"0.000015089589803941"},{"denom":"ASSET9","index":"0.000006406386950018"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001689516061942"},{"denom":"ASSET1","index":"0.000014086551658080"},{"denom":"ASSET10","index":"0.000009813816295422"},{"denom":"ASSET11","index":"0.000013627312671286"},{"denom":"ASSET12","index":"0.000012271349136594"},{"denom":"ASSET13","index":"0.000004223185893030"},{"denom":"ASSET14","index":"0.000012729983861563"},{"denom":"ASSET15","index":"0.000009101391604066"},{"denom":"ASSET16","index":"0.000006345353421478"},{"denom":"ASSET17","index":"0.000004506584688828"},{"denom":"ASSET18","index":"0.000002146942263262"},{"denom":"ASSET2","index":"0.000004157925615959"},{"denom":"ASSET3","index":"0.000001216379053179"},{"denom":"ASSET4","index":"0.000011447740269489"},{"denom":"ASSET5","index":"0.000000943856970227"},{"denom":"ASSET6","index":"0.000003842500943451"},{"denom":"ASSET7","index":"0.000005884905911035"},{"denom":"ASSET8","index":"0.000007678959268655"},{"denom":"ASSET9","index":"0.000003316793155937"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003297864217859"},{"denom":"ASSET1","index":"0.000027973253972789"},{"denom":"ASSET10","index":"0.000022291630953866"},{"denom":"ASSET11","index":"0.000027789008146512"},{"denom":"ASSET12","index":"0.000026479178332828"},{"denom":"ASSET13","index":"0.000008727103479255"},{"denom":"ASSET14","index":"0.000025511286037616"},{"denom":"ASSET15","index":"0.000020085740117730"},{"denom":"ASSET16","index":"0.000012411485442612"},{"denom":"ASSET17","index":"0.000009730550155880"},{"denom":"ASSET18","index":"0.000004028926705548"},{"denom":"ASSET2","index":"0.000008468714781887"},{"denom":"ASSET3","index":"0.000002353891879987"},{"denom":"ASSET4","index":"0.000022679492169342"},{"denom":"ASSET5","index":"0.000001833514119464"},{"denom":"ASSET6","index":"0.000007400677249018"},{"denom":"ASSET7","index":"0.000011621769805761"},{"denom":"ASSET8","index":"0.000015864980999233"},{"denom":"ASSET9","index":"0.000006736116007098"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001411859688057"},{"denom":"ASSET1","index":"0.000011770485537623"},{"denom":"ASSET10","index":"0.000008200497469250"},{"denom":"ASSET11","index":"0.000011386615852852"},{"denom":"ASSET12","index":"0.000010253874969484"},{"denom":"ASSET13","index":"0.000003528347966974"},{"denom":"ASSET14","index":"0.000010637094027671"},{"denom":"ASSET15","index":"0.000007605174144562"},{"denom":"ASSET16","index":"0.000005302606662519"},{"denom":"ASSET17","index":"0.000003765826670265"},{"denom":"ASSET18","index":"0.000001793777493075"},{"denom":"ASSET2","index":"0.000003474345960472"},{"denom":"ASSET3","index":"0.000001016278724767"},{"denom":"ASSET4","index":"0.000009565512043233"},{"denom":"ASSET5","index":"0.000000788559420242"},{"denom":"ASSET6","index":"0.000003210842193807"},{"denom":"ASSET7","index":"0.000004917435724579"},{"denom":"ASSET8","index":"0.000006416479374940"},{"denom":"ASSET9","index":"0.000002771018622781"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000002930820438736"},{"denom":"ASSET1","index":"0.000024889799880283"},{"denom":"ASSET10","index":"0.000019988623694797"},{"denom":"ASSET11","index":"0.000024765615752571"},{"denom":"ASSET12","index":"0.000023676022623299"},{"denom":"ASSET13","index":"0.000007783195940338"},{"denom":"ASSET14","index":"0.000022712072914709"},{"denom":"ASSET15","index":"0.000017982209004670"},{"denom":"ASSET16","index":"0.000011033267632466"},{"denom":"ASSET17","index":"0.000008700651286884"},{"denom":"ASSET18","index":"0.000003571624768330"},{"denom":"ASSET2","index":"0.000007546215495169"},{"denom":"ASSET3","index":"0.000002090977414753"},{"denom":"ASSET4","index":"0.000020176663420937"},{"denom":"ASSET5","index":"0.000001628342560149"},{"denom":"ASSET6","index":"0.000006572371850885"},{"denom":"ASSET7","index":"0.000010337273058537"},{"denom":"ASSET8","index":"0.000014149515747938"},{"denom":"ASSET9","index":"0.000006000707920121"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001726304213109"},{"denom":"ASSET1","index":"0.000014431903221591"},{"denom":"ASSET10","index":"0.000010055058078201"},{"denom":"ASSET11","index":"0.000013959161452463"},{"denom":"ASSET12","index":"0.000012572806376704"},{"denom":"ASSET13","index":"0.000004323728090679"},{"denom":"ASSET14","index":"0.000013040236440562"},{"denom":"ASSET15","index":"0.000009322042750788"},{"denom":"ASSET16","index":"0.000006501527251832"},{"denom":"ASSET17","index":"0.000004615871880590"},{"denom":"ASSET18","index":"0.000002199045982237"},{"denom":"ASSET2","index":"0.000004259987627426"},{"denom":"ASSET3","index":"0.000001242939033438"},{"denom":"ASSET4","index":"0.000011728245238599"},{"denom":"ASSET5","index":"0.000000966730359341"},{"denom":"ASSET6","index":"0.000003935973605888"},{"denom":"ASSET7","index":"0.000006028785482704"},{"denom":"ASSET8","index":"0.000007866635506506"},{"denom":"ASSET9","index":"0.000003394179668236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003313075721980"},{"denom":"ASSET1","index":"0.000028138029356789"},{"denom":"ASSET10","index":"0.000022370607880245"},{"denom":"ASSET11","index":"0.000027937207217164"},{"denom":"ASSET12","index":"0.000026595598409551"},{"denom":"ASSET13","index":"0.000008769097729958"},{"denom":"ASSET14","index":"0.000025655242037122"},{"denom":"ASSET15","index":"0.000020162686714325"},{"denom":"ASSET16","index":"0.000012488922131836"},{"denom":"ASSET17","index":"0.000009772018779266"},{"denom":"ASSET18","index":"0.000004056016110298"},{"denom":"ASSET2","index":"0.000008514325121927"},{"denom":"ASSET3","index":"0.000002365037757716"},{"denom":"ASSET4","index":"0.000022813272666626"},{"denom":"ASSET5","index":"0.000001844445619129"},{"denom":"ASSET6","index":"0.000007446834645040"},{"denom":"ASSET7","index":"0.000011690909413493"},{"denom":"ASSET8","index":"0.000015945057917181"},{"denom":"ASSET9","index":"0.000006769080892636"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001630255611072"},{"denom":"ASSET1","index":"0.000013593541268721"},{"denom":"ASSET10","index":"0.000009470169531707"},{"denom":"ASSET11","index":"0.000013149994246609"},{"denom":"ASSET12","index":"0.000011841383661505"},{"denom":"ASSET13","index":"0.000004074904678306"},{"denom":"ASSET14","index":"0.000012284196334242"},{"denom":"ASSET15","index":"0.000008782818517308"},{"denom":"ASSET16","index":"0.000006123739432762"},{"denom":"ASSET17","index":"0.000004348816994942"},{"denom":"ASSET18","index":"0.000002071599585061"},{"denom":"ASSET2","index":"0.000004012484981486"},{"denom":"ASSET3","index":"0.000001173490300222"},{"denom":"ASSET4","index":"0.000011046817638451"},{"denom":"ASSET5","index":"0.000000910593224203"},{"denom":"ASSET6","index":"0.000003707729991128"},{"denom":"ASSET7","index":"0.000005678723711902"},{"denom":"ASSET8","index":"0.000007410319536635"},{"denom":"ASSET9","index":"0.000003200294573447"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003344718004914"},{"denom":"ASSET1","index":"0.000028399683918161"},{"denom":"ASSET10","index":"0.000022773943545696"},{"denom":"ASSET11","index":"0.000028249525692452"},{"denom":"ASSET12","index":"0.000026989510465266"},{"denom":"ASSET13","index":"0.000008877216029957"},{"denom":"ASSET14","index":"0.000025911788013611"},{"denom":"ASSET15","index":"0.000020494299775586"},{"denom":"ASSET16","index":"0.000012591463658113"},{"denom":"ASSET17","index":"0.000009918208342143"},{"denom":"ASSET18","index":"0.000004078542450859"},{"denom":"ASSET2","index":"0.000008608606683653"},{"denom":"ASSET3","index":"0.000002386103437058"},{"denom":"ASSET4","index":"0.000023022167148602"},{"denom":"ASSET5","index":"0.000001858883946943"},{"denom":"ASSET6","index":"0.000007501347044310"},{"denom":"ASSET7","index":"0.000011795380538461"},{"denom":"ASSET8","index":"0.000016137954986293"},{"denom":"ASSET9","index":"0.000006845854741756"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001401914217082"},{"denom":"ASSET1","index":"0.000011691084141249"},{"denom":"ASSET10","index":"0.000008144816837289"},{"denom":"ASSET11","index":"0.000011309282624399"},{"denom":"ASSET12","index":"0.000010184195671197"},{"denom":"ASSET13","index":"0.000003504785542706"},{"denom":"ASSET14","index":"0.000010565150621491"},{"denom":"ASSET15","index":"0.000007553913381055"},{"denom":"ASSET16","index":"0.000005266490546178"},{"denom":"ASSET17","index":"0.000003740131045332"},{"denom":"ASSET18","index":"0.000001781176034264"},{"denom":"ASSET2","index":"0.000003450605283109"},{"denom":"ASSET3","index":"0.000001009107335001"},{"denom":"ASSET4","index":"0.000009501016460336"},{"denom":"ASSET5","index":"0.000000783074064494"},{"denom":"ASSET6","index":"0.000003189016217240"},{"denom":"ASSET7","index":"0.000004883842462771"},{"denom":"ASSET8","index":"0.000006372953035143"},{"denom":"ASSET9","index":"0.000002752187874236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000002824624853437"},{"denom":"ASSET1","index":"0.000023976113690517"},{"denom":"ASSET10","index":"0.000019183481330878"},{"denom":"ASSET11","index":"0.000023837782846342"},{"denom":"ASSET12","index":"0.000022753084719682"},{"denom":"ASSET13","index":"0.000007489057952554"},{"denom":"ASSET14","index":"0.000021872315483076"},{"denom":"ASSET15","index":"0.000017271123733000"},{"denom":"ASSET16","index":"0.000010633084765839"},{"denom":"ASSET17","index":"0.000008361522972460"},{"denom":"ASSET18","index":"0.000003446219629870"},{"denom":"ASSET2","index":"0.000007263651822688"},{"denom":"ASSET3","index":"0.000002015414858276"},{"denom":"ASSET4","index":"0.000019437236646346"},{"denom":"ASSET5","index":"0.000001569802896992"},{"denom":"ASSET6","index":"0.000006336500403946"},{"denom":"ASSET7","index":"0.000009959182045961"},{"denom":"ASSET8","index":"0.000013614498977085"},{"denom":"ASSET9","index":"0.000005776799011181"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001454934724421"},{"denom":"ASSET1","index":"0.000012138554241533"},{"denom":"ASSET10","index":"0.000008457231031836"},{"denom":"ASSET11","index":"0.000011742676653726"},{"denom":"ASSET12","index":"0.000010575345305063"},{"denom":"ASSET13","index":"0.000003639028595615"},{"denom":"ASSET14","index":"0.000010969531108307"},{"denom":"ASSET15","index":"0.000007843113235366"},{"denom":"ASSET16","index":"0.000005467847708521"},{"denom":"ASSET17","index":"0.000003882645572727"},{"denom":"ASSET18","index":"0.000001849120527665"},{"denom":"ASSET2","index":"0.000003583199705027"},{"denom":"ASSET3","index":"0.000001047214644670"},{"denom":"ASSET4","index":"0.000009864795788485"},{"denom":"ASSET5","index":"0.000000813748374938"},{"denom":"ASSET6","index":"0.000003310822390339"},{"denom":"ASSET7","index":"0.000005070278336150"},{"denom":"ASSET8","index":"0.000006616569426988"},{"denom":"ASSET9","index":"0.000002857424127380"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003026822568793"},{"denom":"ASSET1","index":"0.000025710421285725"},{"denom":"ASSET10","index":"0.000020652297735472"},{"denom":"ASSET11","index":"0.000025583400849235"},{"denom":"ASSET12","index":"0.000024460820755928"},{"denom":"ASSET13","index":"0.000008041083722059"},{"denom":"ASSET14","index":"0.000023461074878675"},{"denom":"ASSET15","index":"0.000018578170233019"},{"denom":"ASSET16","index":"0.000011396689804799"},{"denom":"ASSET17","index":"0.000008988134494295"},{"denom":"ASSET18","index":"0.000003688816665807"},{"denom":"ASSET2","index":"0.000007796110853756"},{"denom":"ASSET3","index":"0.000002159003644915"},{"denom":"ASSET4","index":"0.000020841789260406"},{"denom":"ASSET5","index":"0.000001683251281734"},{"denom":"ASSET6","index":"0.000006788484398340"},{"denom":"ASSET7","index":"0.000010677121165375"},{"denom":"ASSET8","index":"0.000014616905179383"},{"denom":"ASSET9","index":"0.000006199084273401"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001547699786520"},{"denom":"ASSET1","index":"0.000012908880828127"},{"denom":"ASSET10","index":"0.000008993933542043"},{"denom":"ASSET11","index":"0.000012488059147042"},{"denom":"ASSET12","index":"0.000011245681057538"},{"denom":"ASSET13","index":"0.000003869751640144"},{"denom":"ASSET14","index":"0.000011665498390936"},{"denom":"ASSET15","index":"0.000008340103197445"},{"denom":"ASSET16","index":"0.000005815173110936"},{"denom":"ASSET17","index":"0.000004129877691221"},{"denom":"ASSET18","index":"0.000001966512772230"},{"denom":"ASSET2","index":"0.000003810495126579"},{"denom":"ASSET3","index":"0.000001114825933185"},{"denom":"ASSET4","index":"0.000010490411596498"},{"denom":"ASSET5","index":"0.000000864743358984"},{"denom":"ASSET6","index":"0.000003521242992563"},{"denom":"ASSET7","index":"0.000005392342734476"},{"denom":"ASSET8","index":"0.000007036459899001"},{"denom":"ASSET9","index":"0.000003039156102537"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003086703561215"},{"denom":"ASSET1","index":"0.000026199550261878"},{"denom":"ASSET10","index":"0.000020936384793003"},{"denom":"ASSET11","index":"0.000026042194398185"},{"denom":"ASSET12","index":"0.000024843424443974"},{"denom":"ASSET13","index":"0.000008180415813801"},{"denom":"ASSET14","index":"0.000023898307142718"},{"denom":"ASSET15","index":"0.000018852934413068"},{"denom":"ASSET16","index":"0.000011621232923996"},{"denom":"ASSET17","index":"0.000009129550402498"},{"denom":"ASSET18","index":"0.000003767892160935"},{"denom":"ASSET2","index":"0.000007936188126371"},{"denom":"ASSET3","index":"0.000002203575710986"},{"denom":"ASSET4","index":"0.000021240180347210"},{"denom":"ASSET5","index":"0.000001716192200569"},{"denom":"ASSET6","index":"0.000006926674957775"},{"denom":"ASSET7","index":"0.000010883333770048"},{"denom":"ASSET8","index":"0.000014871024805414"},{"denom":"ASSET9","index":"0.000006311583255107"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001511232509129"},{"denom":"ASSET1","index":"0.000012598757210652"},{"denom":"ASSET10","index":"0.000008777665278232"},{"denom":"ASSET11","index":"0.000012187849575766"},{"denom":"ASSET12","index":"0.000010975073643675"},{"denom":"ASSET13","index":"0.000003776959255615"},{"denom":"ASSET14","index":"0.000011385233267090"},{"denom":"ASSET15","index":"0.000008140359504707"},{"denom":"ASSET16","index":"0.000005675412369706"},{"denom":"ASSET17","index":"0.000004030784481533"},{"denom":"ASSET18","index":"0.000001920145446758"},{"denom":"ASSET2","index":"0.000003719113035170"},{"denom":"ASSET3","index":"0.000001087858016388"},{"denom":"ASSET4","index":"0.000010238531681628"},{"denom":"ASSET5","index":"0.000000844504951067"},{"denom":"ASSET6","index":"0.000003436614036185"},{"denom":"ASSET7","index":"0.000005263507386191"},{"denom":"ASSET8","index":"0.000006867991992072"},{"denom":"ASSET9","index":"0.000002966364157912"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003050294937135"},{"denom":"ASSET1","index":"0.000025887230915803"},{"denom":"ASSET10","index":"0.000020718160619670"},{"denom":"ASSET11","index":"0.000025739685005463"},{"denom":"ASSET12","index":"0.000024570727404900"},{"denom":"ASSET13","index":"0.000008086966483560"},{"denom":"ASSET14","index":"0.000023616194455668"},{"denom":"ASSET15","index":"0.000018651338246959"},{"denom":"ASSET16","index":"0.000011480437826441"},{"denom":"ASSET17","index":"0.000009029688158762"},{"denom":"ASSET18","index":"0.000003721440260869"},{"denom":"ASSET2","index":"0.000007844134626406"},{"denom":"ASSET3","index":"0.000002176540273945"},{"denom":"ASSET4","index":"0.000020986445628896"},{"denom":"ASSET5","index":"0.000001695800268231"},{"denom":"ASSET6","index":"0.000006841569437153"},{"denom":"ASSET7","index":"0.000010753447417762"},{"denom":"ASSET8","index":"0.000014701309289649"},{"denom":"ASSET9","index":"0.000006238283490477"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001535139489204"},{"denom":"ASSET1","index":"0.000012800845981431"},{"denom":"ASSET10","index":"0.000008918122145344"},{"denom":"ASSET11","index":"0.000012383184798277"},{"denom":"ASSET12","index":"0.000011151318949088"},{"denom":"ASSET13","index":"0.000003837555421617"},{"denom":"ASSET14","index":"0.000011567806926671"},{"denom":"ASSET15","index":"0.000008270512670342"},{"denom":"ASSET16","index":"0.000005766305379776"},{"denom":"ASSET17","index":"0.000004095074044376"},{"denom":"ASSET18","index":"0.000001950454261216"},{"denom":"ASSET2","index":"0.000003778308540299"},{"denom":"ASSET3","index":"0.000001105159647558"},{"denom":"ASSET4","index":"0.000010402813795010"},{"denom":"ASSET5","index":"0.000000857613272150"},{"denom":"ASSET6","index":"0.000003491459778273"},{"denom":"ASSET7","index":"0.000005347470991052"},{"denom":"ASSET8","index":"0.000006978226734264"},{"denom":"ASSET9","index":"0.000003013965111016"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000002944371933765"},{"denom":"ASSET1","index":"0.000024968433937291"},{"denom":"ASSET10","index":"0.000019851368221906"},{"denom":"ASSET11","index":"0.000024791952485266"},{"denom":"ASSET12","index":"0.000023600048189968"},{"denom":"ASSET13","index":"0.000007784111470281"},{"denom":"ASSET14","index":"0.000022766914870589"},{"denom":"ASSET15","index":"0.000017894900322998"},{"denom":"ASSET16","index":"0.000011081662183182"},{"denom":"ASSET17","index":"0.000008672317440622"},{"denom":"ASSET18","index":"0.000003599691097086"},{"denom":"ASSET2","index":"0.000007555380586873"},{"denom":"ASSET3","index":"0.000002101847815188"},{"denom":"ASSET4","index":"0.000020244169178497"},{"denom":"ASSET5","index":"0.000001637098640985"},{"denom":"ASSET6","index":"0.000006609166185649"},{"denom":"ASSET7","index":"0.000010374399402552"},{"denom":"ASSET8","index":"0.000014150620453773"},{"denom":"ASSET9","index":"0.000006009906313007"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001449310882227"},{"denom":"ASSET1","index":"0.000012082282763787"},{"denom":"ASSET10","index":"0.000008417588941675"},{"denom":"ASSET11","index":"0.000011688148164511"},{"denom":"ASSET12","index":"0.000010525234539176"},{"denom":"ASSET13","index":"0.000003621923721366"},{"denom":"ASSET14","index":"0.000010918286351091"},{"denom":"ASSET15","index":"0.000007806355476589"},{"denom":"ASSET16","index":"0.000005442630668295"},{"denom":"ASSET17","index":"0.000003865550877512"},{"denom":"ASSET18","index":"0.000001841279906781"},{"denom":"ASSET2","index":"0.000003566701565973"},{"denom":"ASSET3","index":"0.000001043265621984"},{"denom":"ASSET4","index":"0.000009818715786353"},{"denom":"ASSET5","index":"0.000000809924945764"},{"denom":"ASSET6","index":"0.000003295463332131"},{"denom":"ASSET7","index":"0.000005047413281659"},{"denom":"ASSET8","index":"0.000006586595514820"},{"denom":"ASSET9","index":"0.000002844482396421"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000002938303361264"},{"denom":"ASSET1","index":"0.000024939884544734"},{"denom":"ASSET10","index":"0.000019970621943114"},{"denom":"ASSET11","index":"0.000024800280810198"},{"denom":"ASSET12","index":"0.000023679745396670"},{"denom":"ASSET13","index":"0.000007792253675830"},{"denom":"ASSET14","index":"0.000022752532795075"},{"denom":"ASSET15","index":"0.000017976341528508"},{"denom":"ASSET16","index":"0.000011059313296089"},{"denom":"ASSET17","index":"0.000008702160495382"},{"denom":"ASSET18","index":"0.000003584018468858"},{"denom":"ASSET2","index":"0.000007557839698908"},{"denom":"ASSET3","index":"0.000002096442663552"},{"denom":"ASSET4","index":"0.000020217858094708"},{"denom":"ASSET5","index":"0.000001633684136995"},{"denom":"ASSET6","index":"0.000006589976909255"},{"denom":"ASSET7","index":"0.000010359339015905"},{"denom":"ASSET8","index":"0.000014165755580726"},{"denom":"ASSET9","index":"0.000006010291774725"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001731982701050"},{"denom":"ASSET1","index":"0.000014440617081118"},{"denom":"ASSET10","index":"0.000010060714066040"},{"denom":"ASSET11","index":"0.000013969585405988"},{"denom":"ASSET12","index":"0.000012579542501729"},{"denom":"ASSET13","index":"0.000004329188348588"},{"denom":"ASSET14","index":"0.000013049805772821"},{"denom":"ASSET15","index":"0.000009329961826155"},{"denom":"ASSET16","index":"0.000006505308583448"},{"denom":"ASSET17","index":"0.000004619645074851"},{"denom":"ASSET18","index":"0.000002200709164068"},{"denom":"ASSET2","index":"0.000004262337197306"},{"denom":"ASSET3","index":"0.000001247119753241"},{"denom":"ASSET4","index":"0.000011735066464260"},{"denom":"ASSET5","index":"0.000000967420683506"},{"denom":"ASSET6","index":"0.000003938839097420"},{"denom":"ASSET7","index":"0.000006032740100243"},{"denom":"ASSET8","index":"0.000007872299366576"},{"denom":"ASSET9","index":"0.000003400187866969"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003329715418659"},{"denom":"ASSET1","index":"0.000028238028843607"},{"denom":"ASSET10","index":"0.000022458342297172"},{"denom":"ASSET11","index":"0.000028040237741643"},{"denom":"ASSET12","index":"0.000026695793846360"},{"denom":"ASSET13","index":"0.000008804253880653"},{"denom":"ASSET14","index":"0.000025748953032298"},{"denom":"ASSET15","index":"0.000020243324641083"},{"denom":"ASSET16","index":"0.000012532507824147"},{"denom":"ASSET17","index":"0.000009809802042254"},{"denom":"ASSET18","index":"0.000004070975493464"},{"denom":"ASSET2","index":"0.000008545109234155"},{"denom":"ASSET3","index":"0.000002377197518329"},{"denom":"ASSET4","index":"0.000022894451839245"},{"denom":"ASSET5","index":"0.000001851122407848"},{"denom":"ASSET6","index":"0.000007473999475476"},{"denom":"ASSET7","index":"0.000011732969702935"},{"denom":"ASSET8","index":"0.000016005536556726"},{"denom":"ASSET9","index":"0.000006797137295338"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001649988907243"},{"denom":"ASSET1","index":"0.000013756519537767"},{"denom":"ASSET10","index":"0.000009584361794534"},{"denom":"ASSET11","index":"0.000013307506163009"},{"denom":"ASSET12","index":"0.000011983307415229"},{"denom":"ASSET13","index":"0.000004124070634826"},{"denom":"ASSET14","index":"0.000012431118612277"},{"denom":"ASSET15","index":"0.000008888300900330"},{"denom":"ASSET16","index":"0.000006196625007203"},{"denom":"ASSET17","index":"0.000004401172597026"},{"denom":"ASSET18","index":"0.000002096597926581"},{"denom":"ASSET2","index":"0.000004060355216185"},{"denom":"ASSET3","index":"0.000001187751577673"},{"denom":"ASSET4","index":"0.000011179050527108"},{"denom":"ASSET5","index":"0.000000922070303720"},{"denom":"ASSET6","index":"0.000003752597722375"},{"denom":"ASSET7","index":"0.000005747010543590"},{"denom":"ASSET8","index":"0.000007499184556200"},{"denom":"ASSET9","index":"0.000003238666751267"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003269082759145"},{"denom":"ASSET1","index":"0.000027736662456421"},{"denom":"ASSET10","index":"0.000022145815740722"},{"denom":"ASSET11","index":"0.000027564157079872"},{"denom":"ASSET12","index":"0.000026286254396013"},{"denom":"ASSET13","index":"0.000008658548128401"},{"denom":"ASSET14","index":"0.000025298253418871"},{"denom":"ASSET15","index":"0.000019946084058089"},{"denom":"ASSET16","index":"0.000012303266096103"},{"denom":"ASSET17","index":"0.000009659898104260"},{"denom":"ASSET18","index":"0.000003991565584036"},{"denom":"ASSET2","index":"0.000008399501371576"},{"denom":"ASSET3","index":"0.000002333103515211"},{"denom":"ASSET4","index":"0.000022486071398850"},{"denom":"ASSET5","index":"0.000001817550334619"},{"denom":"ASSET6","index":"0.000007334517845971"},{"denom":"ASSET7","index":"0.000011522603065826"},{"denom":"ASSET8","index":"0.000015739883934035"},{"denom":"ASSET9","index":"0.000006680430297789"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001707974867576"},{"denom":"ASSET1","index":"0.000014238090744503"},{"denom":"ASSET10","index":"0.000009920037235236"},{"denom":"ASSET11","index":"0.000013773690453356"},{"denom":"ASSET12","index":"0.000012403461252069"},{"denom":"ASSET13","index":"0.000004268385028930"},{"denom":"ASSET14","index":"0.000012866619831208"},{"denom":"ASSET15","index":"0.000009199844270355"},{"denom":"ASSET16","index":"0.000006414063379473"},{"denom":"ASSET17","index":"0.000004555220502875"},{"denom":"ASSET18","index":"0.000002169891734707"},{"denom":"ASSET2","index":"0.000004203195148489"},{"denom":"ASSET3","index":"0.000001229294888332"},{"denom":"ASSET4","index":"0.000011570893350426"},{"denom":"ASSET5","index":"0.000000954255678468"},{"denom":"ASSET6","index":"0.000003884075162326"},{"denom":"ASSET7","index":"0.000005948421376317"},{"denom":"ASSET8","index":"0.000007761941764609"},{"denom":"ASSET9","index":"0.000003352622422724"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003075387603983"},{"denom":"ASSET1","index":"0.000026047450678709"},{"denom":"ASSET10","index":"0.000020531243448578"},{"denom":"ASSET11","index":"0.000025816927992783"},{"denom":"ASSET12","index":"0.000024485469945303"},{"denom":"ASSET13","index":"0.000008098391373250"},{"denom":"ASSET14","index":"0.000023735883509134"},{"denom":"ASSET15","index":"0.000018540774078871"},{"denom":"ASSET16","index":"0.000011572711306393"},{"denom":"ASSET17","index":"0.000008997644319689"},{"denom":"ASSET18","index":"0.000003770348288081"},{"denom":"ASSET2","index":"0.000007868945206789"},{"denom":"ASSET3","index":"0.000002196489262864"},{"denom":"ASSET4","index":"0.000021122354693053"},{"denom":"ASSET5","index":"0.000001710501624761"},{"denom":"ASSET6","index":"0.000006909892735753"},{"denom":"ASSET7","index":"0.000010827333344051"},{"denom":"ASSET8","index":"0.000014723239896475"},{"denom":"ASSET9","index":"0.000006260042064096"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001779156074987"},{"denom":"ASSET1","index":"0.000014834764457923"},{"denom":"ASSET10","index":"0.000010335215703318"},{"denom":"ASSET11","index":"0.000014351450406057"},{"denom":"ASSET12","index":"0.000012923397473821"},{"denom":"ASSET13","index":"0.000004447014618532"},{"denom":"ASSET14","index":"0.000013405835956753"},{"denom":"ASSET15","index":"0.000009584853126417"},{"denom":"ASSET16","index":"0.000006682342108415"},{"denom":"ASSET17","index":"0.000004745583625211"},{"denom":"ASSET18","index":"0.000002260718988984"},{"denom":"ASSET2","index":"0.000004378720241638"},{"denom":"ASSET3","index":"0.000001280957351233"},{"denom":"ASSET4","index":"0.000012055708659691"},{"denom":"ASSET5","index":"0.000000993770740704"},{"denom":"ASSET6","index":"0.000004046879615447"},{"denom":"ASSET7","index":"0.000006197276918679"},{"denom":"ASSET8","index":"0.000008086754679418"},{"denom":"ASSET9","index":"0.000003492644479883"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003478645419875"},{"denom":"ASSET1","index":"0.000029510728520321"},{"denom":"ASSET10","index":"0.000023521700007579"},{"denom":"ASSET11","index":"0.000029317721838376"},{"denom":"ASSET12","index":"0.000027938200533330"},{"denom":"ASSET13","index":"0.000009206643656085"},{"denom":"ASSET14","index":"0.000026913511393693"},{"denom":"ASSET15","index":"0.000021192735957156"},{"denom":"ASSET16","index":"0.000013092928863665"},{"denom":"ASSET17","index":"0.000010265835619821"},{"denom":"ASSET18","index":"0.000004249633310572"},{"denom":"ASSET2","index":"0.000008933634051769"},{"denom":"ASSET3","index":"0.000002482776919113"},{"denom":"ASSET4","index":"0.000023925662277258"},{"denom":"ASSET5","index":"0.000001933519521756"},{"denom":"ASSET6","index":"0.000007806757132876"},{"denom":"ASSET7","index":"0.000012260200744601"},{"denom":"ASSET8","index":"0.000016737737824425"},{"denom":"ASSET9","index":"0.000007106044722519"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001752700098923"},{"denom":"ASSET1","index":"0.000014612940709519"},{"denom":"ASSET10","index":"0.000010180696541309"},{"denom":"ASSET11","index":"0.000014136053678762"},{"denom":"ASSET12","index":"0.000012730078503378"},{"denom":"ASSET13","index":"0.000004380628160175"},{"denom":"ASSET14","index":"0.000013205843447004"},{"denom":"ASSET15","index":"0.000009441241121853"},{"denom":"ASSET16","index":"0.000006583285198706"},{"denom":"ASSET17","index":"0.000004674614988548"},{"denom":"ASSET18","index":"0.000002226220868286"},{"denom":"ASSET2","index":"0.000004313302932304"},{"denom":"ASSET3","index":"0.000001261225935460"},{"denom":"ASSET4","index":"0.000011875048109410"},{"denom":"ASSET5","index":"0.000000979582065531"},{"denom":"ASSET6","index":"0.000003985653489996"},{"denom":"ASSET7","index":"0.000006105276080818"},{"denom":"ASSET8","index":"0.000007965696544335"},{"denom":"ASSET9","index":"0.000003440319144236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003327512121722"},{"denom":"ASSET1","index":"0.000028211822531533"},{"denom":"ASSET10","index":"0.000022399629444355"},{"denom":"ASSET11","index":"0.000028004032167971"},{"denom":"ASSET12","index":"0.000026643127370344"},{"denom":"ASSET13","index":"0.000008791339050068"},{"denom":"ASSET14","index":"0.000025722152469956"},{"denom":"ASSET15","index":"0.000020197596080044"},{"denom":"ASSET16","index":"0.000012523737733641"},{"denom":"ASSET17","index":"0.000009790102863953"},{"denom":"ASSET18","index":"0.000004069245825383"},{"denom":"ASSET2","index":"0.000008534453115749"},{"denom":"ASSET3","index":"0.000002375171252372"},{"denom":"ASSET4","index":"0.000022873545881432"},{"denom":"ASSET5","index":"0.000001850500835715"},{"denom":"ASSET6","index":"0.000007470212303630"},{"denom":"ASSET7","index":"0.000011723166108277"},{"denom":"ASSET8","index":"0.000015981595788329"},{"denom":"ASSET9","index":"0.000006788341225254"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001434713876400"},{"denom":"ASSET1","index":"0.000011974044460331"},{"denom":"ASSET10","index":"0.000008340728508476"},{"denom":"ASSET11","index":"0.000011582406348125"},{"denom":"ASSET12","index":"0.000010430757641934"},{"denom":"ASSET13","index":"0.000003588723493535"},{"denom":"ASSET14","index":"0.000010820456951604"},{"denom":"ASSET15","index":"0.000007735822117345"},{"denom":"ASSET16","index":"0.000005393748654249"},{"denom":"ASSET17","index":"0.000003829135007959"},{"denom":"ASSET18","index":"0.000001824413186071"},{"denom":"ASSET2","index":"0.000003534437022536"},{"denom":"ASSET3","index":"0.000001033381751515"},{"denom":"ASSET4","index":"0.000009730849926555"},{"denom":"ASSET5","index":"0.000000802664249770"},{"denom":"ASSET6","index":"0.000003264943470077"},{"denom":"ASSET7","index":"0.000005002110542043"},{"denom":"ASSET8","index":"0.000006526009335083"},{"denom":"ASSET9","index":"0.000002819018886872"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000002895048613815"},{"denom":"ASSET1","index":"0.000024589366099895"},{"denom":"ASSET10","index":"0.000019676065498265"},{"denom":"ASSET11","index":"0.000024447379266412"},{"denom":"ASSET12","index":"0.000023337478265694"},{"denom":"ASSET13","index":"0.000007679998629802"},{"denom":"ASSET14","index":"0.000022431328797509"},{"denom":"ASSET15","index":"0.000017714358679290"},{"denom":"ASSET16","index":"0.000010904445776568"},{"denom":"ASSET17","index":"0.000008574179211920"},{"denom":"ASSET18","index":"0.000003534399202209"},{"denom":"ASSET2","index":"0.000007450371795821"},{"denom":"ASSET3","index":"0.000002066219984895"},{"denom":"ASSET4","index":"0.000019933989143940"},{"denom":"ASSET5","index":"0.000001610899827710"},{"denom":"ASSET6","index":"0.000006497050827728"},{"denom":"ASSET7","index":"0.000010213894093182"},{"denom":"ASSET8","index":"0.000013962110633776"},{"denom":"ASSET9","index":"0.000005925048173997"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001401536005232"},{"denom":"ASSET1","index":"0.000011690786017211"},{"denom":"ASSET10","index":"0.000008143726832164"},{"denom":"ASSET11","index":"0.000011307987636928"},{"denom":"ASSET12","index":"0.000010184289165772"},{"denom":"ASSET13","index":"0.000003503840013080"},{"denom":"ASSET14","index":"0.000010564000462344"},{"denom":"ASSET15","index":"0.000007554093843178"},{"denom":"ASSET16","index":"0.000005266564812612"},{"denom":"ASSET17","index":"0.000003738458375190"},{"denom":"ASSET18","index":"0.000001781247301804"},{"denom":"ASSET2","index":"0.000003448272506265"},{"denom":"ASSET3","index":"0.000001009476373813"},{"denom":"ASSET4","index":"0.000009498956581716"},{"denom":"ASSET5","index":"0.000000781032179127"},{"denom":"ASSET6","index":"0.000003188957474460"},{"denom":"ASSET7","index":"0.000004883766432329"},{"denom":"ASSET8","index":"0.000006371740781496"},{"denom":"ASSET9","index":"0.000002750591587361"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003071913026336"},{"denom":"ASSET1","index":"0.000026115211920195"},{"denom":"ASSET10","index":"0.000021104918039272"},{"denom":"ASSET11","index":"0.000026018207650283"},{"denom":"ASSET12","index":"0.000024942011742431"},{"denom":"ASSET13","index":"0.000008182453133262"},{"denom":"ASSET14","index":"0.000023839798810024"},{"denom":"ASSET15","index":"0.000018963275072170"},{"denom":"ASSET16","index":"0.000011567273660047"},{"denom":"ASSET17","index":"0.000009164652819502"},{"denom":"ASSET18","index":"0.000003735860972186"},{"denom":"ASSET2","index":"0.000007925194415041"},{"denom":"ASSET3","index":"0.000002190810612048"},{"denom":"ASSET4","index":"0.000021165118890878"},{"denom":"ASSET5","index":"0.000001704606606646"},{"denom":"ASSET6","index":"0.000006884812645629"},{"denom":"ASSET7","index":"0.000010842612570084"},{"denom":"ASSET8","index":"0.000014874699612932"},{"denom":"ASSET9","index":"0.000006301602876980"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001534549585700"},{"denom":"ASSET1","index":"0.000012795681230217"},{"denom":"ASSET10","index":"0.000008914897664776"},{"denom":"ASSET11","index":"0.000012378406858633"},{"denom":"ASSET12","index":"0.000011146809898878"},{"denom":"ASSET13","index":"0.000003835934265229"},{"denom":"ASSET14","index":"0.000011563204872419"},{"denom":"ASSET15","index":"0.000008267660704848"},{"denom":"ASSET16","index":"0.000005764014475342"},{"denom":"ASSET17","index":"0.000004093597891939"},{"denom":"ASSET18","index":"0.000001950065161198"},{"denom":"ASSET2","index":"0.000003777014596322"},{"denom":"ASSET3","index":"0.000001104963641508"},{"denom":"ASSET4","index":"0.000010398442163960"},{"denom":"ASSET5","index":"0.000000857413092297"},{"denom":"ASSET6","index":"0.000003490330834180"},{"denom":"ASSET7","index":"0.000005345421006692"},{"denom":"ASSET8","index":"0.000006975385280099"},{"denom":"ASSET9","index":"0.000003012817696624"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003034954909236"},{"denom":"ASSET1","index":"0.000025752158165977"},{"denom":"ASSET10","index":"0.000020556858138008"},{"denom":"ASSET11","index":"0.000025591676311293"},{"denom":"ASSET12","index":"0.000024402528250789"},{"denom":"ASSET13","index":"0.000008038375291107"},{"denom":"ASSET14","index":"0.000023488313497799"},{"denom":"ASSET15","index":"0.000018516037809802"},{"denom":"ASSET16","index":"0.000011423945454084"},{"denom":"ASSET17","index":"0.000008967524527402"},{"denom":"ASSET18","index":"0.000003706330058793"},{"denom":"ASSET2","index":"0.000007798931182527"},{"denom":"ASSET3","index":"0.000002166419358500"},{"denom":"ASSET4","index":"0.000020877722621984"},{"denom":"ASSET5","index":"0.000001687498984799"},{"denom":"ASSET6","index":"0.000006810207932767"},{"denom":"ASSET7","index":"0.000010698180555138"},{"denom":"ASSET8","index":"0.000014612921845389"},{"denom":"ASSET9","index":"0.000006203015740356"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001658482037183"},{"denom":"ASSET1","index":"0.000013862588923046"},{"denom":"ASSET10","index":"0.000009655943522610"},{"denom":"ASSET11","index":"0.000013408077810815"},{"denom":"ASSET12","index":"0.000012073555821711"},{"denom":"ASSET13","index":"0.000004153457929856"},{"denom":"ASSET14","index":"0.000012528066933942"},{"denom":"ASSET15","index":"0.000008954835955871"},{"denom":"ASSET16","index":"0.000006242274956279"},{"denom":"ASSET17","index":"0.000004433900956551"},{"denom":"ASSET18","index":"0.000002112993149414"},{"denom":"ASSET2","index":"0.000004090600010079"},{"denom":"ASSET3","index":"0.000001194300475756"},{"denom":"ASSET4","index":"0.000011266073313811"},{"denom":"ASSET5","index":"0.000000928363122855"},{"denom":"ASSET6","index":"0.000003781145635794"},{"denom":"ASSET7","index":"0.000005787763844048"},{"denom":"ASSET8","index":"0.000007557456046990"},{"denom":"ASSET9","index":"0.000003263776603787"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003188277912377"},{"denom":"ASSET1","index":"0.000027072180177666"},{"denom":"ASSET10","index":"0.000021525590492702"},{"denom":"ASSET11","index":"0.000026879695640981"},{"denom":"ASSET12","index":"0.000025588321740665"},{"denom":"ASSET13","index":"0.000008437670891103"},{"denom":"ASSET14","index":"0.000024686413843557"},{"denom":"ASSET15","index":"0.000019403734038796"},{"denom":"ASSET16","index":"0.000012012351193227"},{"denom":"ASSET17","index":"0.000009402991763462"},{"denom":"ASSET18","index":"0.000003903246578743"},{"denom":"ASSET2","index":"0.000008191237466303"},{"denom":"ASSET3","index":"0.000002276140738265"},{"denom":"ASSET4","index":"0.000021950324608304"},{"denom":"ASSET5","index":"0.000001774065663090"},{"denom":"ASSET6","index":"0.000007165524818145"},{"denom":"ASSET7","index":"0.000011244820309610"},{"denom":"ASSET8","index":"0.000015343724796373"},{"denom":"ASSET9","index":"0.000006516357987660"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001453411320498"},{"denom":"ASSET1","index":"0.000012118137400313"},{"denom":"ASSET10","index":"0.000008442891188019"},{"denom":"ASSET11","index":"0.000011723343510399"},{"denom":"ASSET12","index":"0.000010556870017106"},{"denom":"ASSET13","index":"0.000003632917795231"},{"denom":"ASSET14","index":"0.000010951256903010"},{"denom":"ASSET15","index":"0.000007829943148627"},{"denom":"ASSET16","index":"0.000005459144789091"},{"denom":"ASSET17","index":"0.000003877120201363"},{"denom":"ASSET18","index":"0.000001846984198382"},{"denom":"ASSET2","index":"0.000003577158245830"},{"denom":"ASSET3","index":"0.000001046407310278"},{"denom":"ASSET4","index":"0.000009848276035312"},{"denom":"ASSET5","index":"0.000000811973000390"},{"denom":"ASSET6","index":"0.000003305686571013"},{"denom":"ASSET7","index":"0.000005062722883136"},{"denom":"ASSET8","index":"0.000006606082089893"},{"denom":"ASSET9","index":"0.000002853098111648"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000002979919393708"},{"denom":"ASSET1","index":"0.000025298333716476"},{"denom":"ASSET10","index":"0.000020286143685892"},{"denom":"ASSET11","index":"0.000025164674259360"},{"denom":"ASSET12","index":"0.000024041723171534"},{"denom":"ASSET13","index":"0.000007907785176595"},{"denom":"ASSET14","index":"0.000023082402053339"},{"denom":"ASSET15","index":"0.000018255332392862"},{"denom":"ASSET16","index":"0.000011216675450010"},{"denom":"ASSET17","index":"0.000008835128154455"},{"denom":"ASSET18","index":"0.000003633337151635"},{"denom":"ASSET2","index":"0.000007668586747858"},{"denom":"ASSET3","index":"0.000002126085354033"},{"denom":"ASSET4","index":"0.000020508686269066"},{"denom":"ASSET5","index":"0.000001656307666438"},{"denom":"ASSET6","index":"0.000006683025235204"},{"denom":"ASSET7","index":"0.000010507859389263"},{"denom":"ASSET8","index":"0.000014375637436113"},{"denom":"ASSET9","index":"0.000006098257618497"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001779729226299"},{"denom":"ASSET1","index":"0.000014840802182142"},{"denom":"ASSET10","index":"0.000010337989986643"},{"denom":"ASSET11","index":"0.000014356968690293"},{"denom":"ASSET12","index":"0.000012927350131463"},{"denom":"ASSET13","index":"0.000004449323065747"},{"denom":"ASSET14","index":"0.000013411183623312"},{"denom":"ASSET15","index":"0.000009589142170113"},{"denom":"ASSET16","index":"0.000006683709894939"},{"denom":"ASSET17","index":"0.000004745944603463"},{"denom":"ASSET18","index":"0.000002261131394068"},{"denom":"ASSET2","index":"0.000004378814667437"},{"denom":"ASSET3","index":"0.000001281307789972"},{"denom":"ASSET4","index":"0.000012059367435030"},{"denom":"ASSET5","index":"0.000000994411548574"},{"denom":"ASSET6","index":"0.000004048154592606"},{"denom":"ASSET7","index":"0.000006199876403090"},{"denom":"ASSET8","index":"0.000008089015212973"},{"denom":"ASSET9","index":"0.000003493812702447"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003433377044021"},{"denom":"ASSET1","index":"0.000029119719093870"},{"denom":"ASSET10","index":"0.000023168779363922"},{"denom":"ASSET11","index":"0.000028918871222836"},{"denom":"ASSET12","index":"0.000027536680421684"},{"denom":"ASSET13","index":"0.000009079853140421"},{"denom":"ASSET14","index":"0.000026553415276013"},{"denom":"ASSET15","index":"0.000020883272198610"},{"denom":"ASSET16","index":"0.000012920460029656"},{"denom":"ASSET17","index":"0.000010116347697920"},{"denom":"ASSET18","index":"0.000004196183907349"},{"denom":"ASSET2","index":"0.000008810148159861"},{"denom":"ASSET3","index":"0.000002451192479374"},{"denom":"ASSET4","index":"0.000023608026429735"},{"denom":"ASSET5","index":"0.000001908186346512"},{"denom":"ASSET6","index":"0.000007706415634871"},{"denom":"ASSET7","index":"0.000012098308533034"},{"denom":"ASSET8","index":"0.000016505861275643"},{"denom":"ASSET9","index":"0.000007009790471677"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001595670533734"},{"denom":"ASSET1","index":"0.000013304245337308"},{"denom":"ASSET10","index":"0.000009268754359880"},{"denom":"ASSET11","index":"0.000012870227612725"},{"denom":"ASSET12","index":"0.000011589729681675"},{"denom":"ASSET13","index":"0.000003988302473145"},{"denom":"ASSET14","index":"0.000012022582258004"},{"denom":"ASSET15","index":"0.000008595881243245"},{"denom":"ASSET16","index":"0.000005992940044003"},{"denom":"ASSET17","index":"0.000004256286571545"},{"denom":"ASSET18","index":"0.000002027357961809"},{"denom":"ASSET2","index":"0.000003927132189815"},{"denom":"ASSET3","index":"0.000001148836178358"},{"denom":"ASSET4","index":"0.000010811993222188"},{"denom":"ASSET5","index":"0.000000891338414244"},{"denom":"ASSET6","index":"0.000003628854236813"},{"denom":"ASSET7","index":"0.000005557757171166"},{"denom":"ASSET8","index":"0.000007252465306483"},{"denom":"ASSET9","index":"0.000003132501080646"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003118409098775"},{"denom":"ASSET1","index":"0.000026454243753489"},{"denom":"ASSET10","index":"0.000021084585905412"},{"denom":"ASSET11","index":"0.000026280950742513"},{"denom":"ASSET12","index":"0.000025043390497745"},{"denom":"ASSET13","index":"0.000008253298424938"},{"denom":"ASSET14","index":"0.000024125697910719"},{"denom":"ASSET15","index":"0.000018997425080839"},{"denom":"ASSET16","index":"0.000011737294217995"},{"denom":"ASSET17","index":"0.000009202973625129"},{"denom":"ASSET18","index":"0.000003809493270778"},{"denom":"ASSET2","index":"0.000008008868325931"},{"denom":"ASSET3","index":"0.000002225819587877"},{"denom":"ASSET4","index":"0.000021447702379813"},{"denom":"ASSET5","index":"0.000001733713847172"},{"denom":"ASSET6","index":"0.000006998355968525"},{"denom":"ASSET7","index":"0.000010990481127196"},{"denom":"ASSET8","index":"0.000015003824321723"},{"denom":"ASSET9","index":"0.000006370091157596"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001536288093705"},{"denom":"ASSET1","index":"0.000012808796131863"},{"denom":"ASSET10","index":"0.000008924322337818"},{"denom":"ASSET11","index":"0.000012391382492026"},{"denom":"ASSET12","index":"0.000011158327625467"},{"denom":"ASSET13","index":"0.000003840018305497"},{"denom":"ASSET14","index":"0.000011575273312793"},{"denom":"ASSET15","index":"0.000008276208110044"},{"denom":"ASSET16","index":"0.000005770322413488"},{"denom":"ASSET17","index":"0.000004097860139074"},{"denom":"ASSET18","index":"0.000001951829923499"},{"denom":"ASSET2","index":"0.000003781056289108"},{"denom":"ASSET3","index":"0.000001105771783560"},{"denom":"ASSET4","index":"0.000010409603607822"},{"denom":"ASSET5","index":"0.000000858224905226"},{"denom":"ASSET6","index":"0.000003494201399847"},{"denom":"ASSET7","index":"0.000005351036963607"},{"denom":"ASSET8","index":"0.000006982787369562"},{"denom":"ASSET9","index":"0.000003015953933577"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003103831608428"},{"denom":"ASSET1","index":"0.000026343132935309"},{"denom":"ASSET10","index":"0.000021085436521682"},{"denom":"ASSET11","index":"0.000026194005406126"},{"denom":"ASSET12","index":"0.000025005394550642"},{"denom":"ASSET13","index":"0.000008229918727938"},{"denom":"ASSET14","index":"0.000024032248358707"},{"denom":"ASSET15","index":"0.000018981699828973"},{"denom":"ASSET16","index":"0.000011682673521897"},{"denom":"ASSET17","index":"0.000009189132473525"},{"denom":"ASSET18","index":"0.000003786361913516"},{"denom":"ASSET2","index":"0.000007982150766688"},{"denom":"ASSET3","index":"0.000002214601198569"},{"denom":"ASSET4","index":"0.000021356131094847"},{"denom":"ASSET5","index":"0.000001725369734459"},{"denom":"ASSET6","index":"0.000006962131899100"},{"denom":"ASSET7","index":"0.000010942547729288"},{"denom":"ASSET8","index":"0.000014960973970884"},{"denom":"ASSET9","index":"0.000006348281537724"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001156201861882"},{"denom":"ASSET1","index":"0.000009641528249827"},{"denom":"ASSET10","index":"0.000006717693720376"},{"denom":"ASSET11","index":"0.000009327193051790"},{"denom":"ASSET12","index":"0.000008399128436016"},{"denom":"ASSET13","index":"0.000002890504654704"},{"denom":"ASSET14","index":"0.000008712888981039"},{"denom":"ASSET15","index":"0.000006229813312455"},{"denom":"ASSET16","index":"0.000004343227471224"},{"denom":"ASSET17","index":"0.000003084737373052"},{"denom":"ASSET18","index":"0.000001469387753892"},{"denom":"ASSET2","index":"0.000002846256372714"},{"denom":"ASSET3","index":"0.000000832672215639"},{"denom":"ASSET4","index":"0.000007835393830396"},{"denom":"ASSET5","index":"0.000000645909986459"},{"denom":"ASSET6","index":"0.000002630186839877"},{"denom":"ASSET7","index":"0.000004027742967162"},{"denom":"ASSET8","index":"0.000005256351108664"},{"denom":"ASSET9","index":"0.000002269879400812"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000002648545180722"},{"denom":"ASSET1","index":"0.000022528915692996"},{"denom":"ASSET10","index":"0.000018297756458480"},{"denom":"ASSET11","index":"0.000022469822082599"},{"denom":"ASSET12","index":"0.000021584227648624"},{"denom":"ASSET13","index":"0.000007070243338634"},{"denom":"ASSET14","index":"0.000020574684608302"},{"denom":"ASSET15","index":"0.000016423497937791"},{"denom":"ASSET16","index":"0.000009972839292196"},{"denom":"ASSET17","index":"0.000007932645550822"},{"denom":"ASSET18","index":"0.000003216131666673"},{"denom":"ASSET2","index":"0.000006846442901912"},{"denom":"ASSET3","index":"0.000001888119307859"},{"denom":"ASSET4","index":"0.000018258669735553"},{"denom":"ASSET5","index":"0.000001471345302008"},{"denom":"ASSET6","index":"0.000005932348598922"},{"denom":"ASSET7","index":"0.000009352074075404"},{"denom":"ASSET8","index":"0.000012853047191550"},{"denom":"ASSET9","index":"0.000005442948627063"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001638829976996"},{"denom":"ASSET1","index":"0.000013663699511091"},{"denom":"ASSET10","index":"0.000009519748943981"},{"denom":"ASSET11","index":"0.000013218199388741"},{"denom":"ASSET12","index":"0.000011902774883924"},{"denom":"ASSET13","index":"0.000004095984811686"},{"denom":"ASSET14","index":"0.000012347548252404"},{"denom":"ASSET15","index":"0.000008827879259679"},{"denom":"ASSET16","index":"0.000006154878525580"},{"denom":"ASSET17","index":"0.000004371424528441"},{"denom":"ASSET18","index":"0.000002082149837736"},{"denom":"ASSET2","index":"0.000004033483978861"},{"denom":"ASSET3","index":"0.000001179521531115"},{"denom":"ASSET4","index":"0.000011104072380722"},{"denom":"ASSET5","index":"0.000000915709876282"},{"denom":"ASSET6","index":"0.000003726793845693"},{"denom":"ASSET7","index":"0.000005707924895490"},{"denom":"ASSET8","index":"0.000007448500414296"},{"denom":"ASSET9","index":"0.000003217339382778"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003133427860009"},{"denom":"ASSET1","index":"0.000026571363581284"},{"denom":"ASSET10","index":"0.000021118003104150"},{"denom":"ASSET11","index":"0.000026381510155653"},{"denom":"ASSET12","index":"0.000025108485590780"},{"denom":"ASSET13","index":"0.000008282355352591"},{"denom":"ASSET14","index":"0.000024227637307493"},{"denom":"ASSET15","index":"0.000019037535386694"},{"denom":"ASSET16","index":"0.000011793447009555"},{"denom":"ASSET17","index":"0.000009226841180516"},{"denom":"ASSET18","index":"0.000003831770888939"},{"denom":"ASSET2","index":"0.000008040278303534"},{"denom":"ASSET3","index":"0.000002236402387063"},{"denom":"ASSET4","index":"0.000021543810534784"},{"denom":"ASSET5","index":"0.000001742508705183"},{"denom":"ASSET6","index":"0.000007033989161296"},{"denom":"ASSET7","index":"0.000011040340871930"},{"denom":"ASSET8","index":"0.000015056795520064"},{"denom":"ASSET9","index":"0.000006395464292965"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001556422065682"},{"denom":"ASSET1","index":"0.000012975233747354"},{"denom":"ASSET10","index":"0.000009039925804131"},{"denom":"ASSET11","index":"0.000012551842294036"},{"denom":"ASSET12","index":"0.000011303196313064"},{"denom":"ASSET13","index":"0.000003889859143149"},{"denom":"ASSET14","index":"0.000011725391745328"},{"denom":"ASSET15","index":"0.000008383310245172"},{"denom":"ASSET16","index":"0.000005844954893688"},{"denom":"ASSET17","index":"0.000004150990406731"},{"denom":"ASSET18","index":"0.000001977421476890"},{"denom":"ASSET2","index":"0.000003830058090421"},{"denom":"ASSET3","index":"0.000001120273054448"},{"denom":"ASSET4","index":"0.000010544520290781"},{"denom":"ASSET5","index":"0.000000869507306673"},{"denom":"ASSET6","index":"0.000003539424974160"},{"denom":"ASSET7","index":"0.000005420766093000"},{"denom":"ASSET8","index":"0.000007073268516732"},{"denom":"ASSET9","index":"0.000003055036447059"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003102345998156"},{"denom":"ASSET1","index":"0.000026324295521459"},{"denom":"ASSET10","index":"0.000021034709957123"},{"denom":"ASSET11","index":"0.000026165624152899"},{"denom":"ASSET12","index":"0.000024960753498443"},{"denom":"ASSET13","index":"0.000008219480216908"},{"denom":"ASSET14","index":"0.000024012126304297"},{"denom":"ASSET15","index":"0.000018942125813395"},{"denom":"ASSET16","index":"0.000011676379885795"},{"denom":"ASSET17","index":"0.000009172744202097"},{"denom":"ASSET18","index":"0.000003786686743681"},{"denom":"ASSET2","index":"0.000007973892542195"},{"denom":"ASSET3","index":"0.000002213622154517"},{"denom":"ASSET4","index":"0.000021341514997764"},{"denom":"ASSET5","index":"0.000001724677267981"},{"denom":"ASSET6","index":"0.000006959760131783"},{"denom":"ASSET7","index":"0.000010935767858794"},{"denom":"ASSET8","index":"0.000014942141973689"},{"denom":"ASSET9","index":"0.000006341977499472"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001602535700795"},{"denom":"ASSET1","index":"0.000013360208994045"},{"denom":"ASSET10","index":"0.000009307956057468"},{"denom":"ASSET11","index":"0.000012924500245282"},{"denom":"ASSET12","index":"0.000011638378499862"},{"denom":"ASSET13","index":"0.000004005127453862"},{"denom":"ASSET14","index":"0.000012073279383206"},{"denom":"ASSET15","index":"0.000008632311279566"},{"denom":"ASSET16","index":"0.000006018597363935"},{"denom":"ASSET17","index":"0.000004274146638048"},{"denom":"ASSET18","index":"0.000002036090141777"},{"denom":"ASSET2","index":"0.000003943729682095"},{"denom":"ASSET3","index":"0.000001153631816872"},{"denom":"ASSET4","index":"0.000010857441929150"},{"denom":"ASSET5","index":"0.000000895384171592"},{"denom":"ASSET6","index":"0.000003644280900498"},{"denom":"ASSET7","index":"0.000005581542172809"},{"denom":"ASSET8","index":"0.000007283176031543"},{"denom":"ASSET9","index":"0.000003145827937606"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003144114236048"},{"denom":"ASSET1","index":"0.000026672683120621"},{"denom":"ASSET10","index":"0.000021269722635007"},{"denom":"ASSET11","index":"0.000026500587720899"},{"denom":"ASSET12","index":"0.000025258297912053"},{"denom":"ASSET13","index":"0.000008323039503604"},{"denom":"ASSET14","index":"0.000024326015412045"},{"denom":"ASSET15","index":"0.000019162234595686"},{"denom":"ASSET16","index":"0.000011833945147558"},{"denom":"ASSET17","index":"0.000009281867675434"},{"denom":"ASSET18","index":"0.000003840349431676"},{"denom":"ASSET2","index":"0.000008076055447193"},{"denom":"ASSET3","index":"0.000002244145529651"},{"denom":"ASSET4","index":"0.000021624555086447"},{"denom":"ASSET5","index":"0.000001748086313596"},{"denom":"ASSET6","index":"0.000007055400333314"},{"denom":"ASSET7","index":"0.000011081362186058"},{"denom":"ASSET8","index":"0.000015130336137492"},{"denom":"ASSET9","index":"0.000006423586371910"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001633811359009"},{"denom":"ASSET1","index":"0.000013620164108551"},{"denom":"ASSET10","index":"0.000009487838038290"},{"denom":"ASSET11","index":"0.000013174776703502"},{"denom":"ASSET12","index":"0.000011864685946211"},{"denom":"ASSET13","index":"0.000004082355776036"},{"denom":"ASSET14","index":"0.000012307900729772"},{"denom":"ASSET15","index":"0.000008799117026580"},{"denom":"ASSET16","index":"0.000006135483082238"},{"denom":"ASSET17","index":"0.000004356106083529"},{"denom":"ASSET18","index":"0.000002074853521082"},{"denom":"ASSET2","index":"0.000004019349752882"},{"denom":"ASSET3","index":"0.000001175388225032"},{"denom":"ASSET4","index":"0.000011067333860098"},{"denom":"ASSET5","index":"0.000000912501024979"},{"denom":"ASSET6","index":"0.000003715182744556"},{"denom":"ASSET7","index":"0.000005690095677188"},{"denom":"ASSET8","index":"0.000007423847624648"},{"denom":"ASSET9","index":"0.000003206789316354"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003109600829404"},{"denom":"ASSET1","index":"0.000026362702045617"},{"denom":"ASSET10","index":"0.000020937844947102"},{"denom":"ASSET11","index":"0.000026169598808926"},{"denom":"ASSET12","index":"0.000024901798461360"},{"denom":"ASSET13","index":"0.000008215149609138"},{"denom":"ASSET14","index":"0.000024035954930107"},{"denom":"ASSET15","index":"0.000018878331344314"},{"denom":"ASSET16","index":"0.000011701775976010"},{"denom":"ASSET17","index":"0.000009149505282332"},{"denom":"ASSET18","index":"0.000003801954966508"},{"denom":"ASSET2","index":"0.000007974718303805"},{"denom":"ASSET3","index":"0.000002219037761573"},{"denom":"ASSET4","index":"0.000021373555319687"},{"denom":"ASSET5","index":"0.000001728657323000"},{"denom":"ASSET6","index":"0.000006980294033305"},{"denom":"ASSET7","index":"0.000010954522542925"},{"denom":"ASSET8","index":"0.000014935013269095"},{"denom":"ASSET9","index":"0.000006344057182602"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001356454583190"},{"denom":"ASSET1","index":"0.000011307707773056"},{"denom":"ASSET10","index":"0.000007878355411964"},{"denom":"ASSET11","index":"0.000010938987301217"},{"denom":"ASSET12","index":"0.000009850463994830"},{"denom":"ASSET13","index":"0.000003389876593037"},{"denom":"ASSET14","index":"0.000010218764511690"},{"denom":"ASSET15","index":"0.000007305956775156"},{"denom":"ASSET16","index":"0.000005094053899100"},{"denom":"ASSET17","index":"0.000003617492191826"},{"denom":"ASSET18","index":"0.000001723075280133"},{"denom":"ASSET2","index":"0.000003337802175602"},{"denom":"ASSET3","index":"0.000000976395326909"},{"denom":"ASSET4","index":"0.000009189454857387"},{"denom":"ASSET5","index":"0.000000758018737665"},{"denom":"ASSET6","index":"0.000003084569323074"},{"denom":"ASSET7","index":"0.000004724073562323"},{"denom":"ASSET8","index":"0.000006164519141376"},{"denom":"ASSET9","index":"0.000002662514568862"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000002920257070141"},{"denom":"ASSET1","index":"0.000024811653868653"},{"denom":"ASSET10","index":"0.000020012294768332"},{"denom":"ASSET11","index":"0.000024710629923001"},{"denom":"ASSET12","index":"0.000023666550441425"},{"denom":"ASSET13","index":"0.000007769918885884"},{"denom":"ASSET14","index":"0.000022647790193256"},{"denom":"ASSET15","index":"0.000017987461600930"},{"denom":"ASSET16","index":"0.000010993196459757"},{"denom":"ASSET17","index":"0.000008697266331114"},{"denom":"ASSET18","index":"0.000003553540715950"},{"denom":"ASSET2","index":"0.000007529733395993"},{"denom":"ASSET3","index":"0.000002082581454906"},{"denom":"ASSET4","index":"0.000020111524804667"},{"denom":"ASSET5","index":"0.000001623122955496"},{"denom":"ASSET6","index":"0.000006544727800067"},{"denom":"ASSET7","index":"0.000010303065547743"},{"denom":"ASSET8","index":"0.000014124873274804"},{"denom":"ASSET9","index":"0.000005987532811110"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001730803097805"},{"denom":"ASSET1","index":"0.000014429128492036"},{"denom":"ASSET10","index":"0.000010053081326419"},{"denom":"ASSET11","index":"0.000013956042311970"},{"denom":"ASSET12","index":"0.000012568515161896"},{"denom":"ASSET13","index":"0.000004324123072683"},{"denom":"ASSET14","index":"0.000013038716670133"},{"denom":"ASSET15","index":"0.000009320374681681"},{"denom":"ASSET16","index":"0.000006499165632259"},{"denom":"ASSET17","index":"0.000004615474927481"},{"denom":"ASSET18","index":"0.000002198119934213"},{"denom":"ASSET2","index":"0.000004257775620601"},{"denom":"ASSET3","index":"0.000001243293558590"},{"denom":"ASSET4","index":"0.000011726190987631"},{"denom":"ASSET5","index":"0.000000966365062941"},{"denom":"ASSET6","index":"0.000003934692375677"},{"denom":"ASSET7","index":"0.000006026079452192"},{"denom":"ASSET8","index":"0.000007863615407695"},{"denom":"ASSET9","index":"0.000003395258743528"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003241945367060"},{"denom":"ASSET1","index":"0.000027480716546724"},{"denom":"ASSET10","index":"0.000021780901079221"},{"denom":"ASSET11","index":"0.000027265989011084"},{"denom":"ASSET12","index":"0.000025921947969478"},{"denom":"ASSET13","index":"0.000008556984130745"},{"denom":"ASSET14","index":"0.000025051754134356"},{"denom":"ASSET15","index":"0.000019643848931612"},{"denom":"ASSET16","index":"0.000012200322352703"},{"denom":"ASSET17","index":"0.000009524928673174"},{"denom":"ASSET18","index":"0.000003966981346299"},{"denom":"ASSET2","index":"0.000008309018225650"},{"denom":"ASSET3","index":"0.000002312540225621"},{"denom":"ASSET4","index":"0.000022282443818183"},{"denom":"ASSET5","index":"0.000001802193647755"},{"denom":"ASSET6","index":"0.000007278646216530"},{"denom":"ASSET7","index":"0.000011418356902196"},{"denom":"ASSET8","index":"0.000015557459098515"},{"denom":"ASSET9","index":"0.000006608754258977"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001631665384825"},{"denom":"ASSET1","index":"0.000013602742609312"},{"denom":"ASSET10","index":"0.000009477179623123"},{"denom":"ASSET11","index":"0.000013159027954757"},{"denom":"ASSET12","index":"0.000011849393704263"},{"denom":"ASSET13","index":"0.000004077627053980"},{"denom":"ASSET14","index":"0.000012292493795584"},{"denom":"ASSET15","index":"0.000008788868801652"},{"denom":"ASSET16","index":"0.000006127810000788"},{"denom":"ASSET17","index":"0.000004351722256101"},{"denom":"ASSET18","index":"0.000002072921786447"},{"denom":"ASSET2","index":"0.000004015556167401"},{"denom":"ASSET3","index":"0.000001174430339134"},{"denom":"ASSET4","index":"0.000011054148880171"},{"denom":"ASSET5","index":"0.000000911397275215"},{"denom":"ASSET6","index":"0.000003710118240373"},{"denom":"ASSET7","index":"0.000005682866219766"},{"denom":"ASSET8","index":"0.000007415319974879"},{"denom":"ASSET9","index":"0.000003202489009539"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003079719434352"},{"denom":"ASSET1","index":"0.000026105925494605"},{"denom":"ASSET10","index":"0.000020711970439773"},{"denom":"ASSET11","index":"0.000025910008103106"},{"denom":"ASSET12","index":"0.000024641613628664"},{"denom":"ASSET13","index":"0.000008133110770201"},{"denom":"ASSET14","index":"0.000023800542954419"},{"denom":"ASSET15","index":"0.000018678884312278"},{"denom":"ASSET16","index":"0.000011589749383737"},{"denom":"ASSET17","index":"0.000009055208366452"},{"denom":"ASSET18","index":"0.000003767697278786"},{"denom":"ASSET2","index":"0.000007896757003962"},{"denom":"ASSET3","index":"0.000002198611212202"},{"denom":"ASSET4","index":"0.000021166859181475"},{"denom":"ASSET5","index":"0.000001712166144109"},{"denom":"ASSET6","index":"0.000006913910929446"},{"denom":"ASSET7","index":"0.000010848237821893"},{"denom":"ASSET8","index":"0.000014785764472138"},{"denom":"ASSET9","index":"0.000006281127943464"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001520990142264"},{"denom":"ASSET1","index":"0.000012680102108631"},{"denom":"ASSET10","index":"0.000008834326429376"},{"denom":"ASSET11","index":"0.000012266893306329"},{"denom":"ASSET12","index":"0.000011046354389007"},{"denom":"ASSET13","index":"0.000003801591675587"},{"denom":"ASSET14","index":"0.000011458856247250"},{"denom":"ASSET15","index":"0.000008193128168148"},{"denom":"ASSET16","index":"0.000005712107994187"},{"denom":"ASSET17","index":"0.000004056798480773"},{"denom":"ASSET18","index":"0.000001932431584420"},{"denom":"ASSET2","index":"0.000003743268790745"},{"denom":"ASSET3","index":"0.000001095056346905"},{"denom":"ASSET4","index":"0.000010304770071444"},{"denom":"ASSET5","index":"0.000000849746758541"},{"denom":"ASSET6","index":"0.000003459077279153"},{"denom":"ASSET7","index":"0.000005297485303768"},{"denom":"ASSET8","index":"0.000006912499005837"},{"denom":"ASSET9","index":"0.000002985778231863"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003063170165442"},{"denom":"ASSET1","index":"0.000025996358951928"},{"denom":"ASSET10","index":"0.000020799618544072"},{"denom":"ASSET11","index":"0.000025846936295403"},{"denom":"ASSET12","index":"0.000024670295822131"},{"denom":"ASSET13","index":"0.000008120644896033"},{"denom":"ASSET14","index":"0.000023715222729701"},{"denom":"ASSET15","index":"0.000018725986369791"},{"denom":"ASSET16","index":"0.000011529047312284"},{"denom":"ASSET17","index":"0.000009065966880203"},{"denom":"ASSET18","index":"0.000003737409049681"},{"denom":"ASSET2","index":"0.000007876841198043"},{"denom":"ASSET3","index":"0.000002185992003768"},{"denom":"ASSET4","index":"0.000021074917159843"},{"denom":"ASSET5","index":"0.000001702800306431"},{"denom":"ASSET6","index":"0.000006871093729972"},{"denom":"ASSET7","index":"0.000010798830402478"},{"denom":"ASSET8","index":"0.000014762015379742"},{"denom":"ASSET9","index":"0.000006264517424621"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001519669987195"},{"denom":"ASSET1","index":"0.000012676623405048"},{"denom":"ASSET10","index":"0.000008831600766261"},{"denom":"ASSET11","index":"0.000012262448940742"},{"denom":"ASSET12","index":"0.000011042591812037"},{"denom":"ASSET13","index":"0.000003799690110356"},{"denom":"ASSET14","index":"0.000011454705706870"},{"denom":"ASSET15","index":"0.000008189733375059"},{"denom":"ASSET16","index":"0.000005709838012905"},{"denom":"ASSET17","index":"0.000004055200725152"},{"denom":"ASSET18","index":"0.000001931783882027"},{"denom":"ASSET2","index":"0.000003741994165079"},{"denom":"ASSET3","index":"0.000001094162390780"},{"denom":"ASSET4","index":"0.000010301817086076"},{"denom":"ASSET5","index":"0.000000848954623355"},{"denom":"ASSET6","index":"0.000003457635577645"},{"denom":"ASSET7","index":"0.000005295663548598"},{"denom":"ASSET8","index":"0.000006910119731604"},{"denom":"ASSET9","index":"0.000002984734883325"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003051401969864"},{"denom":"ASSET1","index":"0.000025903543471827"},{"denom":"ASSET10","index":"0.000020717104247015"},{"denom":"ASSET11","index":"0.000025751820078700"},{"denom":"ASSET12","index":"0.000024575704795191"},{"denom":"ASSET13","index":"0.000008089460542782"},{"denom":"ASSET14","index":"0.000023629519286555"},{"denom":"ASSET15","index":"0.000018652475785738"},{"denom":"ASSET16","index":"0.000011487598582804"},{"denom":"ASSET17","index":"0.000009031027466449"},{"denom":"ASSET18","index":"0.000003724432134289"},{"denom":"ASSET2","index":"0.000007847588407204"},{"denom":"ASSET3","index":"0.000002177732310384"},{"denom":"ASSET4","index":"0.000021000151540181"},{"denom":"ASSET5","index":"0.000001696165098739"},{"denom":"ASSET6","index":"0.000006846477479182"},{"denom":"ASSET7","index":"0.000010760324594985"},{"denom":"ASSET8","index":"0.000014706911787677"},{"denom":"ASSET9","index":"0.000006241583848480"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001392192847149"},{"denom":"ASSET1","index":"0.000011611450847386"},{"denom":"ASSET10","index":"0.000008088781067478"},{"denom":"ASSET11","index":"0.000011231761889073"},{"denom":"ASSET12","index":"0.000010115195100551"},{"denom":"ASSET13","index":"0.000003480482117873"},{"denom":"ASSET14","index":"0.000010492071548062"},{"denom":"ASSET15","index":"0.000007502372565194"},{"denom":"ASSET16","index":"0.000005229863836918"},{"denom":"ASSET17","index":"0.000003713920514466"},{"denom":"ASSET18","index":"0.000001769069294661"},{"denom":"ASSET2","index":"0.000003427044412629"},{"denom":"ASSET3","index":"0.000001002660101028"},{"denom":"ASSET4","index":"0.000009435973741790"},{"denom":"ASSET5","index":"0.000000777659236842"},{"denom":"ASSET6","index":"0.000003166887163415"},{"denom":"ASSET7","index":"0.000004850174878604"},{"denom":"ASSET8","index":"0.000006329555560626"},{"denom":"ASSET9","index":"0.000002733760499857"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000002834261839987"},{"denom":"ASSET1","index":"0.000024063735726127"},{"denom":"ASSET10","index":"0.000019278012414561"},{"denom":"ASSET11","index":"0.000023930766794440"},{"denom":"ASSET12","index":"0.000022855511266190"},{"denom":"ASSET13","index":"0.000007519422832827"},{"denom":"ASSET14","index":"0.000021953268691937"},{"denom":"ASSET15","index":"0.000017352048046781"},{"denom":"ASSET16","index":"0.000010669562284438"},{"denom":"ASSET17","index":"0.000008398158415340"},{"denom":"ASSET18","index":"0.000003456710779118"},{"denom":"ASSET2","index":"0.000007292324829772"},{"denom":"ASSET3","index":"0.000002022818722752"},{"denom":"ASSET4","index":"0.000019507505991506"},{"denom":"ASSET5","index":"0.000001575196067099"},{"denom":"ASSET6","index":"0.000006357416996111"},{"denom":"ASSET7","index":"0.000009994574317511"},{"denom":"ASSET8","index":"0.000013669954492341"},{"denom":"ASSET9","index":"0.000005799591528398"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001553840185331"},{"denom":"ASSET1","index":"0.000012958259817171"},{"denom":"ASSET10","index":"0.000009028099224953"},{"denom":"ASSET11","index":"0.000012533831248030"},{"denom":"ASSET12","index":"0.000011286922457332"},{"denom":"ASSET13","index":"0.000003884600463327"},{"denom":"ASSET14","index":"0.000011708953124953"},{"denom":"ASSET15","index":"0.000008371074208317"},{"denom":"ASSET16","index":"0.000005836492301072"},{"denom":"ASSET17","index":"0.000004143573827548"},{"denom":"ASSET18","index":"0.000001973472951431"},{"denom":"ASSET2","index":"0.000003824652925312"},{"denom":"ASSET3","index":"0.000001117422108587"},{"denom":"ASSET4","index":"0.000010529185576831"},{"denom":"ASSET5","index":"0.000000868040350447"},{"denom":"ASSET6","index":"0.000003534506841323"},{"denom":"ASSET7","index":"0.000005412063731931"},{"denom":"ASSET8","index":"0.000007064217879605"},{"denom":"ASSET9","index":"0.000003050130734168"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000002875427361068"},{"denom":"ASSET1","index":"0.000024372739255487"},{"denom":"ASSET10","index":"0.000019284464921318"},{"denom":"ASSET11","index":"0.000024174413552556"},{"denom":"ASSET12","index":"0.000022964657814992"},{"denom":"ASSET13","index":"0.000007586106071195"},{"denom":"ASSET14","index":"0.000022214775035212"},{"denom":"ASSET15","index":"0.000017399266119679"},{"denom":"ASSET16","index":"0.000010822432031544"},{"denom":"ASSET17","index":"0.000008437405253940"},{"denom":"ASSET18","index":"0.000003520101477575"},{"denom":"ASSET2","index":"0.000007366931162610"},{"denom":"ASSET3","index":"0.000002051556015935"},{"denom":"ASSET4","index":"0.000019761188522524"},{"denom":"ASSET5","index":"0.000001598363223465"},{"denom":"ASSET6","index":"0.000006458982880806"},{"denom":"ASSET7","index":"0.000010127316932433"},{"denom":"ASSET8","index":"0.000013792105044122"},{"denom":"ASSET9","index":"0.000005859963066840"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001468329025254"},{"denom":"ASSET1","index":"0.000012248466172689"},{"denom":"ASSET10","index":"0.000008533242661533"},{"denom":"ASSET11","index":"0.000011849890220686"},{"denom":"ASSET12","index":"0.000010670683647662"},{"denom":"ASSET13","index":"0.000003671855143322"},{"denom":"ASSET14","index":"0.000011069259599665"},{"denom":"ASSET15","index":"0.000007913694549611"},{"denom":"ASSET16","index":"0.000005518108516848"},{"denom":"ASSET17","index":"0.000003917609227717"},{"denom":"ASSET18","index":"0.000001866904977257"},{"denom":"ASSET2","index":"0.000003616095813249"},{"denom":"ASSET3","index":"0.000001057362111013"},{"denom":"ASSET4","index":"0.000009954072998206"},{"denom":"ASSET5","index":"0.000000819868668110"},{"denom":"ASSET6","index":"0.000003341429483630"},{"denom":"ASSET7","index":"0.000005117467404472"},{"denom":"ASSET8","index":"0.000006676663486141"},{"denom":"ASSET9","index":"0.000002882963880808"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000002995432004660"},{"denom":"ASSET1","index":"0.000025434255671185"},{"denom":"ASSET10","index":"0.000020381248485322"},{"denom":"ASSET11","index":"0.000025297016742096"},{"denom":"ASSET12","index":"0.000024161457271020"},{"denom":"ASSET13","index":"0.000007948725545453"},{"denom":"ASSET14","index":"0.000023205881885085"},{"denom":"ASSET15","index":"0.000018343715148864"},{"denom":"ASSET16","index":"0.000011277889207663"},{"denom":"ASSET17","index":"0.000008877556775335"},{"denom":"ASSET18","index":"0.000003654253802028"},{"denom":"ASSET2","index":"0.000007709102798424"},{"denom":"ASSET3","index":"0.000002137627884226"},{"denom":"ASSET4","index":"0.000020618696770430"},{"denom":"ASSET5","index":"0.000001664440090804"},{"denom":"ASSET6","index":"0.000006720260763181"},{"denom":"ASSET7","index":"0.000010565171316359"},{"denom":"ASSET8","index":"0.000014449121165534"},{"denom":"ASSET9","index":"0.000006129217088192"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001484659776814"},{"denom":"ASSET1","index":"0.000012377911876883"},{"denom":"ASSET10","index":"0.000008623797972416"},{"denom":"ASSET11","index":"0.000011974339842928"},{"denom":"ASSET12","index":"0.000010782780641408"},{"denom":"ASSET13","index":"0.000003710691597017"},{"denom":"ASSET14","index":"0.000011185714112019"},{"denom":"ASSET15","index":"0.000007997367331102"},{"denom":"ASSET16","index":"0.000005575935127370"},{"denom":"ASSET17","index":"0.000003959731301514"},{"denom":"ASSET18","index":"0.000001886316120734"},{"denom":"ASSET2","index":"0.000003653859459324"},{"denom":"ASSET3","index":"0.000001068955039306"},{"denom":"ASSET4","index":"0.000010059288371675"},{"denom":"ASSET5","index":"0.000000829493784981"},{"denom":"ASSET6","index":"0.000003376084404307"},{"denom":"ASSET7","index":"0.000005171085966725"},{"denom":"ASSET8","index":"0.000006747698865199"},{"denom":"ASSET9","index":"0.000002914403105969"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000002967027008461"},{"denom":"ASSET1","index":"0.000025180120058697"},{"denom":"ASSET10","index":"0.000020126919929476"},{"denom":"ASSET11","index":"0.000025029678796477"},{"denom":"ASSET12","index":"0.000023880507059092"},{"denom":"ASSET13","index":"0.000007862872062626"},{"denom":"ASSET14","index":"0.000022968832134984"},{"denom":"ASSET15","index":"0.000018123195207046"},{"denom":"ASSET16","index":"0.000011168095360491"},{"denom":"ASSET17","index":"0.000008775186029853"},{"denom":"ASSET18","index":"0.000003621217117579"},{"denom":"ASSET2","index":"0.000007627534970337"},{"denom":"ASSET3","index":"0.000002117298518473"},{"denom":"ASSET4","index":"0.000020413769751333"},{"denom":"ASSET5","index":"0.000001649183760435"},{"denom":"ASSET6","index":"0.000006656038319196"},{"denom":"ASSET7","index":"0.000010459966878994"},{"denom":"ASSET8","index":"0.000014293861494285"},{"denom":"ASSET9","index":"0.000006066597621916"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001508631993599"},{"denom":"ASSET1","index":"0.000012578103553994"},{"denom":"ASSET10","index":"0.000008763023138279"},{"denom":"ASSET11","index":"0.000012169014387632"},{"denom":"ASSET12","index":"0.000010956555546150"},{"denom":"ASSET13","index":"0.000003770654442897"},{"denom":"ASSET14","index":"0.000011367495794714"},{"denom":"ASSET15","index":"0.000008126250861227"},{"denom":"ASSET16","index":"0.000005666162616450"},{"denom":"ASSET17","index":"0.000004024252704398"},{"denom":"ASSET18","index":"0.000001915870077761"},{"denom":"ASSET2","index":"0.000003713270894674"},{"denom":"ASSET3","index":"0.000001084734169631"},{"denom":"ASSET4","index":"0.000010221675912459"},{"denom":"ASSET5","index":"0.000000842242401334"},{"denom":"ASSET6","index":"0.000003430055317962"},{"denom":"ASSET7","index":"0.000005255222367887"},{"denom":"ASSET8","index":"0.000006856408471522"},{"denom":"ASSET9","index":"0.000002961731521176"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000002968383248598"},{"denom":"ASSET1","index":"0.000025185581850199"},{"denom":"ASSET10","index":"0.000020091193699906"},{"denom":"ASSET11","index":"0.000025026167595767"},{"denom":"ASSET12","index":"0.000023854952987524"},{"denom":"ASSET13","index":"0.000007859725566891"},{"denom":"ASSET14","index":"0.000022971118914045"},{"denom":"ASSET15","index":"0.000018098517255117"},{"denom":"ASSET16","index":"0.000011173004258039"},{"denom":"ASSET17","index":"0.000008766603022733"},{"denom":"ASSET18","index":"0.000003624559740525"},{"denom":"ASSET2","index":"0.000007626317523237"},{"denom":"ASSET3","index":"0.000002117313008939"},{"denom":"ASSET4","index":"0.000020418576076670"},{"denom":"ASSET5","index":"0.000001649450966157"},{"denom":"ASSET6","index":"0.000006660362585584"},{"denom":"ASSET7","index":"0.000010463779822658"},{"denom":"ASSET8","index":"0.000014287735496216"},{"denom":"ASSET9","index":"0.000006065360072421"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001603618851190"},{"denom":"ASSET1","index":"0.000013373450792115"},{"denom":"ASSET10","index":"0.000009317368604669"},{"denom":"ASSET11","index":"0.000012937408123124"},{"denom":"ASSET12","index":"0.000011650307554501"},{"denom":"ASSET13","index":"0.000004008493774333"},{"denom":"ASSET14","index":"0.000012085243516211"},{"denom":"ASSET15","index":"0.000008640063748266"},{"denom":"ASSET16","index":"0.000006023807734317"},{"denom":"ASSET17","index":"0.000004278530351069"},{"denom":"ASSET18","index":"0.000002037448105618"},{"denom":"ASSET2","index":"0.000003947624873839"},{"denom":"ASSET3","index":"0.000001154295694818"},{"denom":"ASSET4","index":"0.000010867865506336"},{"denom":"ASSET5","index":"0.000000896432898181"},{"denom":"ASSET6","index":"0.000003647707200497"},{"denom":"ASSET7","index":"0.000005586658358043"},{"denom":"ASSET8","index":"0.000007289880864586"},{"denom":"ASSET9","index":"0.000003148582216449"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003259379166935"},{"denom":"ASSET1","index":"0.000027669546155668"},{"denom":"ASSET10","index":"0.000022163157427920"},{"denom":"ASSET11","index":"0.000027516665793422"},{"denom":"ASSET12","index":"0.000026276569409586"},{"denom":"ASSET13","index":"0.000008645229164029"},{"denom":"ASSET14","index":"0.000025243382728696"},{"denom":"ASSET15","index":"0.000019947981783747"},{"denom":"ASSET16","index":"0.000012268920188963"},{"denom":"ASSET17","index":"0.000009656339783182"},{"denom":"ASSET18","index":"0.000003975233530089"},{"denom":"ASSET2","index":"0.000008385350610200"},{"denom":"ASSET3","index":"0.000002325230588439"},{"denom":"ASSET4","index":"0.000022430515898086"},{"denom":"ASSET5","index":"0.000001812256369527"},{"denom":"ASSET6","index":"0.000007311001085881"},{"denom":"ASSET7","index":"0.000011492885803011"},{"denom":"ASSET8","index":"0.000015716897251793"},{"denom":"ASSET9","index":"0.000006668589151432"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001669758803356"},{"denom":"ASSET1","index":"0.000013919924903508"},{"denom":"ASSET10","index":"0.000009698114015232"},{"denom":"ASSET11","index":"0.000013466332119255"},{"denom":"ASSET12","index":"0.000012126099781115"},{"denom":"ASSET13","index":"0.000004173211661392"},{"denom":"ASSET14","index":"0.000012579297449702"},{"denom":"ASSET15","index":"0.000008994017898909"},{"denom":"ASSET16","index":"0.000006270880730729"},{"denom":"ASSET17","index":"0.000004453348668392"},{"denom":"ASSET18","index":"0.000002121376009280"},{"denom":"ASSET2","index":"0.000004109202923545"},{"denom":"ASSET3","index":"0.000001201941855137"},{"denom":"ASSET4","index":"0.000011312556625386"},{"denom":"ASSET5","index":"0.000000932868086778"},{"denom":"ASSET6","index":"0.000003797061547622"},{"denom":"ASSET7","index":"0.000005815312368147"},{"denom":"ASSET8","index":"0.000007588591475923"},{"denom":"ASSET9","index":"0.000003277484447193"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003314119794923"},{"denom":"ASSET1","index":"0.000028119315186385"},{"denom":"ASSET10","index":"0.000022456877991933"},{"denom":"ASSET11","index":"0.000027947185249485"},{"denom":"ASSET12","index":"0.000026653541530161"},{"denom":"ASSET13","index":"0.000008778725953540"},{"denom":"ASSET14","index":"0.000025648491290636"},{"denom":"ASSET15","index":"0.000020225495910600"},{"denom":"ASSET16","index":"0.000012473684612014"},{"denom":"ASSET17","index":"0.000009794866581105"},{"denom":"ASSET18","index":"0.000004045992889163"},{"denom":"ASSET2","index":"0.000008517017325485"},{"denom":"ASSET3","index":"0.000002365208974685"},{"denom":"ASSET4","index":"0.000022797013251164"},{"denom":"ASSET5","index":"0.000001842432416817"},{"denom":"ASSET6","index":"0.000007435560259585"},{"denom":"ASSET7","index":"0.000011681616070006"},{"denom":"ASSET8","index":"0.000015958852395270"},{"denom":"ASSET9","index":"0.000006773561992828"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001334597814253"},{"denom":"ASSET1","index":"0.000011126876577448"},{"denom":"ASSET10","index":"0.000007751884027943"},{"denom":"ASSET11","index":"0.000010763759508328"},{"denom":"ASSET12","index":"0.000009692944381721"},{"denom":"ASSET13","index":"0.000003335543967388"},{"denom":"ASSET14","index":"0.000010055110882597"},{"denom":"ASSET15","index":"0.000007189147627631"},{"denom":"ASSET16","index":"0.000005012346349398"},{"denom":"ASSET17","index":"0.000003559878072918"},{"denom":"ASSET18","index":"0.000001695813746885"},{"denom":"ASSET2","index":"0.000003284213282225"},{"denom":"ASSET3","index":"0.000000960549210329"},{"denom":"ASSET4","index":"0.000009042280418860"},{"denom":"ASSET5","index":"0.000000745720787237"},{"denom":"ASSET6","index":"0.000003035164402357"},{"denom":"ASSET7","index":"0.000004648278712034"},{"denom":"ASSET8","index":"0.000006065575963495"},{"denom":"ASSET9","index":"0.000002619766079830"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000002933404194828"},{"denom":"ASSET1","index":"0.000024932632498194"},{"denom":"ASSET10","index":"0.000020157113753706"},{"denom":"ASSET11","index":"0.000024842878528839"},{"denom":"ASSET12","index":"0.000023817726072485"},{"denom":"ASSET13","index":"0.000007813243799971"},{"denom":"ASSET14","index":"0.000022761898108549"},{"denom":"ASSET15","index":"0.000018109267957138"},{"denom":"ASSET16","index":"0.000011043189892304"},{"denom":"ASSET17","index":"0.000008753164046701"},{"denom":"ASSET18","index":"0.000003567063844603"},{"denom":"ASSET2","index":"0.000007569762146700"},{"denom":"ASSET3","index":"0.000002091389836038"},{"denom":"ASSET4","index":"0.000020208488830330"},{"denom":"ASSET5","index":"0.000001630166870108"},{"denom":"ASSET6","index":"0.000006572642272968"},{"denom":"ASSET7","index":"0.000010351822041320"},{"denom":"ASSET8","index":"0.000014203644477234"},{"denom":"ASSET9","index":"0.000006019030096188"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001655550281073"},{"denom":"ASSET1","index":"0.000013803766186213"},{"denom":"ASSET10","index":"0.000009616885369480"},{"denom":"ASSET11","index":"0.000013353770421464"},{"denom":"ASSET12","index":"0.000012024654915933"},{"denom":"ASSET13","index":"0.000004138458266908"},{"denom":"ASSET14","index":"0.000012474650680682"},{"denom":"ASSET15","index":"0.000008918932754767"},{"denom":"ASSET16","index":"0.000006218123294721"},{"denom":"ASSET17","index":"0.000004415635621077"},{"denom":"ASSET18","index":"0.000002103876302725"},{"denom":"ASSET2","index":"0.000004075008029207"},{"denom":"ASSET3","index":"0.000001191361699996"},{"denom":"ASSET4","index":"0.000011218168999888"},{"denom":"ASSET5","index":"0.000000925037675960"},{"denom":"ASSET6","index":"0.000003765270684639"},{"denom":"ASSET7","index":"0.000005766457786874"},{"denom":"ASSET8","index":"0.000007524697268437"},{"denom":"ASSET9","index":"0.000003250154939091"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003215122291080"},{"denom":"ASSET1","index":"0.000027271082473775"},{"denom":"ASSET10","index":"0.000021717714787675"},{"denom":"ASSET11","index":"0.000027088129911249"},{"denom":"ASSET12","index":"0.000025803190697535"},{"denom":"ASSET13","index":"0.000008506451165719"},{"denom":"ASSET14","index":"0.000024869823256717"},{"denom":"ASSET15","index":"0.000019571375436743"},{"denom":"ASSET16","index":"0.000012101015548893"},{"denom":"ASSET17","index":"0.000009481514658039"},{"denom":"ASSET18","index":"0.000003929002426467"},{"denom":"ASSET2","index":"0.000008255375778501"},{"denom":"ASSET3","index":"0.000002294279906946"},{"denom":"ASSET4","index":"0.000022110354928469"},{"denom":"ASSET5","index":"0.000001787716273475"},{"denom":"ASSET6","index":"0.000007215985074700"},{"denom":"ASSET7","index":"0.000011330188741735"},{"denom":"ASSET8","index":"0.000015463524362026"},{"denom":"ASSET9","index":"0.000006565858639552"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001631513498845"},{"denom":"ASSET1","index":"0.000013601788709515"},{"denom":"ASSET10","index":"0.000009476711328689"},{"denom":"ASSET11","index":"0.000013158178840821"},{"denom":"ASSET12","index":"0.000011848922966954"},{"denom":"ASSET13","index":"0.000004077884841603"},{"denom":"ASSET14","index":"0.000012291633930140"},{"denom":"ASSET15","index":"0.000008788599161546"},{"denom":"ASSET16","index":"0.000006127389402135"},{"denom":"ASSET17","index":"0.000004351601569095"},{"denom":"ASSET18","index":"0.000002072876103766"},{"denom":"ASSET2","index":"0.000004014961455973"},{"denom":"ASSET3","index":"0.000001174420047516"},{"denom":"ASSET4","index":"0.000011053841044239"},{"denom":"ASSET5","index":"0.000000911490186131"},{"denom":"ASSET6","index":"0.000003710232488420"},{"denom":"ASSET7","index":"0.000005682431175178"},{"denom":"ASSET8","index":"0.000007415071543785"},{"denom":"ASSET9","index":"0.000003202800328586"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003159157648171"},{"denom":"ASSET1","index":"0.000026793811254639"},{"denom":"ASSET10","index":"0.000021330257270132"},{"denom":"ASSET11","index":"0.000026611245447042"},{"denom":"ASSET12","index":"0.000025345616114893"},{"denom":"ASSET13","index":"0.000008356504281369"},{"denom":"ASSET14","index":"0.000024433401122602"},{"denom":"ASSET15","index":"0.000019223209713353"},{"denom":"ASSET16","index":"0.000011890026449509"},{"denom":"ASSET17","index":"0.000009313941892173"},{"denom":"ASSET18","index":"0.000003860849124980"},{"denom":"ASSET2","index":"0.000008109777269158"},{"denom":"ASSET3","index":"0.000002255070941538"},{"denom":"ASSET4","index":"0.000021723391251034"},{"denom":"ASSET5","index":"0.000001756486235957"},{"denom":"ASSET6","index":"0.000007090574282328"},{"denom":"ASSET7","index":"0.000011132530538444"},{"denom":"ASSET8","index":"0.000015191323807650"},{"denom":"ASSET9","index":"0.000006450832118924"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001649724724935"},{"denom":"ASSET1","index":"0.000013753740147655"},{"denom":"ASSET10","index":"0.000009582563441278"},{"denom":"ASSET11","index":"0.000013305204895691"},{"denom":"ASSET12","index":"0.000011981321923304"},{"denom":"ASSET13","index":"0.000004123306127916"},{"denom":"ASSET14","index":"0.000012429052627730"},{"denom":"ASSET15","index":"0.000008886629821639"},{"denom":"ASSET16","index":"0.000006195820583626"},{"denom":"ASSET17","index":"0.000004400070480698"},{"denom":"ASSET18","index":"0.000002096248608056"},{"denom":"ASSET2","index":"0.000004060149146250"},{"denom":"ASSET3","index":"0.000001187512164840"},{"denom":"ASSET4","index":"0.000011177176659918"},{"denom":"ASSET5","index":"0.000000921609203810"},{"denom":"ASSET6","index":"0.000003751605165751"},{"denom":"ASSET7","index":"0.000005746078510357"},{"denom":"ASSET8","index":"0.000007497578498742"},{"denom":"ASSET9","index":"0.000003238303837047"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003253063831874"},{"denom":"ASSET1","index":"0.000027597326034286"},{"denom":"ASSET10","index":"0.000022021617243178"},{"denom":"ASSET11","index":"0.000027423138617092"},{"denom":"ASSET12","index":"0.000026144931484859"},{"denom":"ASSET13","index":"0.000008613299773809"},{"denom":"ASSET14","index":"0.000025170855267573"},{"denom":"ASSET15","index":"0.000019836826910831"},{"denom":"ASSET16","index":"0.000012243184702458"},{"denom":"ASSET17","index":"0.000009607701845932"},{"denom":"ASSET18","index":"0.000003972764374377"},{"denom":"ASSET2","index":"0.000008357484440725"},{"denom":"ASSET3","index":"0.000002321502734814"},{"denom":"ASSET4","index":"0.000022373906168402"},{"denom":"ASSET5","index":"0.000001808481766797"},{"denom":"ASSET6","index":"0.000007298802623853"},{"denom":"ASSET7","index":"0.000011465220726545"},{"denom":"ASSET8","index":"0.000015658035812384"},{"denom":"ASSET9","index":"0.000006646717011605"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001698975992122"},{"denom":"ASSET1","index":"0.000014167905922226"},{"denom":"ASSET10","index":"0.000009870625403756"},{"denom":"ASSET11","index":"0.000013705415046027"},{"denom":"ASSET12","index":"0.000012342129737421"},{"denom":"ASSET13","index":"0.000004247439980305"},{"denom":"ASSET14","index":"0.000012803154715439"},{"denom":"ASSET15","index":"0.000009153801193103"},{"denom":"ASSET16","index":"0.000006381787732272"},{"denom":"ASSET17","index":"0.000004532557176567"},{"denom":"ASSET18","index":"0.000002159268021049"},{"denom":"ASSET2","index":"0.000004182207511237"},{"denom":"ASSET3","index":"0.000001223292032291"},{"denom":"ASSET4","index":"0.000011513897264989"},{"denom":"ASSET5","index":"0.000000949169072389"},{"denom":"ASSET6","index":"0.000003864840554987"},{"denom":"ASSET7","index":"0.000005918563906982"},{"denom":"ASSET8","index":"0.000007723084568158"},{"denom":"ASSET9","index":"0.000003335651311539"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003402845442317"},{"denom":"ASSET1","index":"0.000028880571174740"},{"denom":"ASSET10","index":"0.000023090578471272"},{"denom":"ASSET11","index":"0.000028709364204549"},{"denom":"ASSET12","index":"0.000027394626213612"},{"denom":"ASSET13","index":"0.000009019217107214"},{"denom":"ASSET14","index":"0.000026344557012563"},{"denom":"ASSET15","index":"0.000020791017438004"},{"denom":"ASSET16","index":"0.000012808886991708"},{"denom":"ASSET17","index":"0.000010066951390727"},{"denom":"ASSET18","index":"0.000004153478710890"},{"denom":"ASSET2","index":"0.000008748954704305"},{"denom":"ASSET3","index":"0.000002428490976730"},{"denom":"ASSET4","index":"0.000023413646091842"},{"denom":"ASSET5","index":"0.000001891364101695"},{"denom":"ASSET6","index":"0.000007634563338572"},{"denom":"ASSET7","index":"0.000011996876612297"},{"denom":"ASSET8","index":"0.000016395615103037"},{"denom":"ASSET9","index":"0.000006958318142576"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001515088644413"},{"denom":"ASSET1","index":"0.000012634136557163"},{"denom":"ASSET10","index":"0.000008802109028204"},{"denom":"ASSET11","index":"0.000012222352143486"},{"denom":"ASSET12","index":"0.000011006111259210"},{"denom":"ASSET13","index":"0.000003787721611031"},{"denom":"ASSET14","index":"0.000011417895672887"},{"denom":"ASSET15","index":"0.000008163582563959"},{"denom":"ASSET16","index":"0.000005691138594924"},{"denom":"ASSET17","index":"0.000004042263453241"},{"denom":"ASSET18","index":"0.000001925135571111"},{"denom":"ASSET2","index":"0.000003729515797284"},{"denom":"ASSET3","index":"0.000001091141821893"},{"denom":"ASSET4","index":"0.000010267679293757"},{"denom":"ASSET5","index":"0.000000846156158061"},{"denom":"ASSET6","index":"0.000003446305419945"},{"denom":"ASSET7","index":"0.000005278485437758"},{"denom":"ASSET8","index":"0.000006887398378958"},{"denom":"ASSET9","index":"0.000002974577705544"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003029367235848"},{"denom":"ASSET1","index":"0.000025709657584098"},{"denom":"ASSET10","index":"0.000020551027857005"},{"denom":"ASSET11","index":"0.000025556791271547"},{"denom":"ASSET12","index":"0.000024383546484064"},{"denom":"ASSET13","index":"0.000008028643187417"},{"denom":"ASSET14","index":"0.000023452409013233"},{"denom":"ASSET15","index":"0.000018505869963369"},{"denom":"ASSET16","index":"0.000011403028825829"},{"denom":"ASSET17","index":"0.000008960765854271"},{"denom":"ASSET18","index":"0.000003697390743305"},{"denom":"ASSET2","index":"0.000007788410102575"},{"denom":"ASSET3","index":"0.000002162278160249"},{"denom":"ASSET4","index":"0.000020843149904241"},{"denom":"ASSET5","index":"0.000001683795445220"},{"denom":"ASSET6","index":"0.000006796548728457"},{"denom":"ASSET7","index":"0.000010680301627557"},{"denom":"ASSET8","index":"0.000014594997949332"},{"denom":"ASSET9","index":"0.000006193949682941"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001650481631660"},{"denom":"ASSET1","index":"0.000013760556046882"},{"denom":"ASSET10","index":"0.000009587067899364"},{"denom":"ASSET11","index":"0.000013312100857594"},{"denom":"ASSET12","index":"0.000011987552175177"},{"denom":"ASSET13","index":"0.000004125311926918"},{"denom":"ASSET14","index":"0.000012435412596309"},{"denom":"ASSET15","index":"0.000008891189157367"},{"denom":"ASSET16","index":"0.000006198673717177"},{"denom":"ASSET17","index":"0.000004402473887406"},{"denom":"ASSET18","index":"0.000002097152516481"},{"denom":"ASSET2","index":"0.000004062266502429"},{"denom":"ASSET3","index":"0.000001188346774796"},{"denom":"ASSET4","index":"0.000011182830860714"},{"denom":"ASSET5","index":"0.000000921890641108"},{"denom":"ASSET6","index":"0.000003753581829697"},{"denom":"ASSET7","index":"0.000005749028991578"},{"denom":"ASSET8","index":"0.000007501810745994"},{"denom":"ASSET9","index":"0.000003239702143299"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003205609047354"},{"denom":"ASSET1","index":"0.000027188537481167"},{"denom":"ASSET10","index":"0.000021652723818266"},{"denom":"ASSET11","index":"0.000027005979418132"},{"denom":"ASSET12","index":"0.000025725923481940"},{"denom":"ASSET13","index":"0.000008480657418555"},{"denom":"ASSET14","index":"0.000024794508770079"},{"denom":"ASSET15","index":"0.000019512596409105"},{"denom":"ASSET16","index":"0.000012064653878282"},{"denom":"ASSET17","index":"0.000009453813052143"},{"denom":"ASSET18","index":"0.000003917117707327"},{"denom":"ASSET2","index":"0.000008230459966291"},{"denom":"ASSET3","index":"0.000002288306334262"},{"denom":"ASSET4","index":"0.000022043298344156"},{"denom":"ASSET5","index":"0.000001782083734802"},{"denom":"ASSET6","index":"0.000007194354204475"},{"denom":"ASSET7","index":"0.000011296497588433"},{"denom":"ASSET8","index":"0.000015417282169744"},{"denom":"ASSET9","index":"0.000006545936928299"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001428935211366"},{"denom":"ASSET1","index":"0.000011914564237659"},{"denom":"ASSET10","index":"0.000008301159777028"},{"denom":"ASSET11","index":"0.000011525978642480"},{"denom":"ASSET12","index":"0.000010379209562159"},{"denom":"ASSET13","index":"0.000003571896453874"},{"denom":"ASSET14","index":"0.000010767353582799"},{"denom":"ASSET15","index":"0.000007698410529959"},{"denom":"ASSET16","index":"0.000005367338533420"},{"denom":"ASSET17","index":"0.000003811671429081"},{"denom":"ASSET18","index":"0.000001815754508385"},{"denom":"ASSET2","index":"0.000003517141210917"},{"denom":"ASSET3","index":"0.000001028868678146"},{"denom":"ASSET4","index":"0.000009682846512616"},{"denom":"ASSET5","index":"0.000000798366768278"},{"denom":"ASSET6","index":"0.000003249988614231"},{"denom":"ASSET7","index":"0.000004977428214621"},{"denom":"ASSET8","index":"0.000006495119908522"},{"denom":"ASSET9","index":"0.000002805323052474"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003075918064869"},{"denom":"ASSET1","index":"0.000026136551234120"},{"denom":"ASSET10","index":"0.000021080163895542"},{"denom":"ASSET11","index":"0.000026029570124972"},{"denom":"ASSET12","index":"0.000024929671095533"},{"denom":"ASSET13","index":"0.000008184754658215"},{"denom":"ASSET14","index":"0.000023857159923959"},{"denom":"ASSET15","index":"0.000018947606922173"},{"denom":"ASSET16","index":"0.000011579925359638"},{"denom":"ASSET17","index":"0.000009161388302193"},{"denom":"ASSET18","index":"0.000003743573486430"},{"denom":"ASSET2","index":"0.000007931762150876"},{"denom":"ASSET3","index":"0.000002193704696765"},{"denom":"ASSET4","index":"0.000021185602196482"},{"denom":"ASSET5","index":"0.000001709259314500"},{"denom":"ASSET6","index":"0.000006893942979866"},{"denom":"ASSET7","index":"0.000010853088527538"},{"denom":"ASSET8","index":"0.000014878712124324"},{"denom":"ASSET9","index":"0.000006307130542486"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001556917620519"},{"denom":"ASSET1","index":"0.000012983455297040"},{"denom":"ASSET10","index":"0.000009045452282177"},{"denom":"ASSET11","index":"0.000012560119972943"},{"denom":"ASSET12","index":"0.000011310507230547"},{"denom":"ASSET13","index":"0.000003892294051298"},{"denom":"ASSET14","index":"0.000011733139339821"},{"denom":"ASSET15","index":"0.000008388649636483"},{"denom":"ASSET16","index":"0.000005848637691896"},{"denom":"ASSET17","index":"0.000004153889965857"},{"denom":"ASSET18","index":"0.000001978846514969"},{"denom":"ASSET2","index":"0.000003832520791251"},{"denom":"ASSET3","index":"0.000001120924429588"},{"denom":"ASSET4","index":"0.000010551035220538"},{"denom":"ASSET5","index":"0.000000869876737390"},{"denom":"ASSET6","index":"0.000003541389854081"},{"denom":"ASSET7","index":"0.000005423895938150"},{"denom":"ASSET8","index":"0.000007077857204393"},{"denom":"ASSET9","index":"0.000003056874840288"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003155948059833"},{"denom":"ASSET1","index":"0.000026789841893667"},{"denom":"ASSET10","index":"0.000021451154188244"},{"denom":"ASSET11","index":"0.000026640130662201"},{"denom":"ASSET12","index":"0.000025435769508540"},{"denom":"ASSET13","index":"0.000008370086775831"},{"denom":"ASSET14","index":"0.000024440800445484"},{"denom":"ASSET15","index":"0.000019309084443140"},{"denom":"ASSET16","index":"0.000011879786354964"},{"denom":"ASSET17","index":"0.000009347672781307"},{"denom":"ASSET18","index":"0.000003850232310781"},{"denom":"ASSET2","index":"0.000008118311447694"},{"denom":"ASSET3","index":"0.000002251791235916"},{"denom":"ASSET4","index":"0.000021717604836949"},{"denom":"ASSET5","index":"0.000001754185821919"},{"denom":"ASSET6","index":"0.000007079049104243"},{"denom":"ASSET7","index":"0.000011127710678967"},{"denom":"ASSET8","index":"0.000015216376583965"},{"denom":"ASSET9","index":"0.000006456241851980"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001629017625409"},{"denom":"ASSET1","index":"0.000013583500814952"},{"denom":"ASSET10","index":"0.000009463617777698"},{"denom":"ASSET11","index":"0.000013140742178302"},{"denom":"ASSET12","index":"0.000011833351109704"},{"denom":"ASSET13","index":"0.000004072544063523"},{"denom":"ASSET14","index":"0.000012276109746354"},{"denom":"ASSET15","index":"0.000008777202658616"},{"denom":"ASSET16","index":"0.000006119258515961"},{"denom":"ASSET17","index":"0.000004345439323848"},{"denom":"ASSET18","index":"0.000002070383939302"},{"denom":"ASSET2","index":"0.000004009889539469"},{"denom":"ASSET3","index":"0.000001172335761192"},{"denom":"ASSET4","index":"0.000011039727138351"},{"denom":"ASSET5","index":"0.000000910579082921"},{"denom":"ASSET6","index":"0.000003704970855739"},{"denom":"ASSET7","index":"0.000005675107556554"},{"denom":"ASSET8","index":"0.000007404372420450"},{"denom":"ASSET9","index":"0.000003198165372278"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003300821213878"},{"denom":"ASSET1","index":"0.000028019420341436"},{"denom":"ASSET10","index":"0.000022435320069293"},{"denom":"ASSET11","index":"0.000027862926397945"},{"denom":"ASSET12","index":"0.000026603097941410"},{"denom":"ASSET13","index":"0.000008754572034100"},{"denom":"ASSET14","index":"0.000025562969906661"},{"denom":"ASSET15","index":"0.000020195785636702"},{"denom":"ASSET16","index":"0.000012425527462944"},{"denom":"ASSET17","index":"0.000009776022796414"},{"denom":"ASSET18","index":"0.000004027118689751"},{"denom":"ASSET2","index":"0.000008490998812362"},{"denom":"ASSET3","index":"0.000002354733406852"},{"denom":"ASSET4","index":"0.000022715681634045"},{"denom":"ASSET5","index":"0.000001835160700580"},{"denom":"ASSET6","index":"0.000007403741836767"},{"denom":"ASSET7","index":"0.000011639103500846"},{"denom":"ASSET8","index":"0.000015914079386056"},{"denom":"ASSET9","index":"0.000006752470475547"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001599876133405"},{"denom":"ASSET1","index":"0.000013345434681176"},{"denom":"ASSET10","index":"0.000009297530322905"},{"denom":"ASSET11","index":"0.000012909953167223"},{"denom":"ASSET12","index":"0.000011625282701060"},{"denom":"ASSET13","index":"0.000004000208763886"},{"denom":"ASSET14","index":"0.000012059727354266"},{"denom":"ASSET15","index":"0.000008622533976277"},{"denom":"ASSET16","index":"0.000006011718614052"},{"denom":"ASSET17","index":"0.000004268755697491"},{"denom":"ASSET18","index":"0.000002033283925863"},{"denom":"ASSET2","index":"0.000003939033979783"},{"denom":"ASSET3","index":"0.000001151952290481"},{"denom":"ASSET4","index":"0.000010845563418934"},{"denom":"ASSET5","index":"0.000000893773964352"},{"denom":"ASSET6","index":"0.000003640418084501"},{"denom":"ASSET7","index":"0.000005575200239351"},{"denom":"ASSET8","index":"0.000007274615004517"},{"denom":"ASSET9","index":"0.000003141688064949"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003205518103121"},{"denom":"ASSET1","index":"0.000027209804037075"},{"denom":"ASSET10","index":"0.000021755111918776"},{"denom":"ASSET11","index":"0.000027048910570117"},{"denom":"ASSET12","index":"0.000025809934262776"},{"denom":"ASSET13","index":"0.000008496852467218"},{"denom":"ASSET14","index":"0.000024820667393427"},{"denom":"ASSET15","index":"0.000019589132093549"},{"denom":"ASSET16","index":"0.000012068310128279"},{"denom":"ASSET17","index":"0.000009484236214143"},{"denom":"ASSET18","index":"0.000003912244660385"},{"denom":"ASSET2","index":"0.000008242746790311"},{"denom":"ASSET3","index":"0.000002287536756020"},{"denom":"ASSET4","index":"0.000022059248469095"},{"denom":"ASSET5","index":"0.000001781848402938"},{"denom":"ASSET6","index":"0.000007192715838846"},{"denom":"ASSET7","index":"0.000011303047666497"},{"denom":"ASSET8","index":"0.000015447099928639"},{"denom":"ASSET9","index":"0.000006555210966575"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001693699328345"},{"denom":"ASSET1","index":"0.000014121235265065"},{"denom":"ASSET10","index":"0.000009838380374958"},{"denom":"ASSET11","index":"0.000013660499756586"},{"denom":"ASSET12","index":"0.000012301569616423"},{"denom":"ASSET13","index":"0.000004233563721295"},{"denom":"ASSET14","index":"0.000012760935925768"},{"denom":"ASSET15","index":"0.000009123658427184"},{"denom":"ASSET16","index":"0.000006361299175013"},{"denom":"ASSET17","index":"0.000004517672541531"},{"denom":"ASSET18","index":"0.000002151696438556"},{"denom":"ASSET2","index":"0.000004168526762446"},{"denom":"ASSET3","index":"0.000001219271828530"},{"denom":"ASSET4","index":"0.000011475942538822"},{"denom":"ASSET5","index":"0.000000946116601363"},{"denom":"ASSET6","index":"0.000003852241762569"},{"denom":"ASSET7","index":"0.000005899194467400"},{"denom":"ASSET8","index":"0.000007698322129037"},{"denom":"ASSET9","index":"0.000003325100096108"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003374964488748"},{"denom":"ASSET1","index":"0.000028642371697541"},{"denom":"ASSET10","index":"0.000022886358038922"},{"denom":"ASSET11","index":"0.000028469467846578"},{"denom":"ASSET12","index":"0.000027158021136678"},{"denom":"ASSET13","index":"0.000008943216545101"},{"denom":"ASSET14","index":"0.000026126056006670"},{"denom":"ASSET15","index":"0.000020609372613995"},{"denom":"ASSET16","index":"0.000012704733728960"},{"denom":"ASSET17","index":"0.000009980025667275"},{"denom":"ASSET18","index":"0.000004119620826099"},{"denom":"ASSET2","index":"0.000008675935346246"},{"denom":"ASSET3","index":"0.000002408702445844"},{"denom":"ASSET4","index":"0.000023220763838917"},{"denom":"ASSET5","index":"0.000001876440105393"},{"denom":"ASSET6","index":"0.000007572949563502"},{"denom":"ASSET7","index":"0.000011897934490553"},{"denom":"ASSET8","index":"0.000016258236310419"},{"denom":"ASSET9","index":"0.000006900426530312"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001608105877482"},{"denom":"ASSET1","index":"0.000013418457239972"},{"denom":"ASSET10","index":"0.000009349233819318"},{"denom":"ASSET11","index":"0.000012981594753349"},{"denom":"ASSET12","index":"0.000011689837573077"},{"denom":"ASSET13","index":"0.000004022147721664"},{"denom":"ASSET14","index":"0.000012126700059700"},{"denom":"ASSET15","index":"0.000008669460725910"},{"denom":"ASSET16","index":"0.000006044519750254"},{"denom":"ASSET17","index":"0.000004293303747844"},{"denom":"ASSET18","index":"0.000002044968364105"},{"denom":"ASSET2","index":"0.000003960007798998"},{"denom":"ASSET3","index":"0.000001158062195142"},{"denom":"ASSET4","index":"0.000010904614913932"},{"denom":"ASSET5","index":"0.000000898204336720"},{"denom":"ASSET6","index":"0.000003660606353425"},{"denom":"ASSET7","index":"0.000005605774235672"},{"denom":"ASSET8","index":"0.000007313680595011"},{"denom":"ASSET9","index":"0.000003159720916176"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003138779820137"},{"denom":"ASSET1","index":"0.000026638851971456"},{"denom":"ASSET10","index":"0.000021228354320839"},{"denom":"ASSET11","index":"0.000026463611656062"},{"denom":"ASSET12","index":"0.000025215335343685"},{"denom":"ASSET13","index":"0.000008309803474369"},{"denom":"ASSET14","index":"0.000024294710395367"},{"denom":"ASSET15","index":"0.000019126240972581"},{"denom":"ASSET16","index":"0.000011819368577720"},{"denom":"ASSET17","index":"0.000009266335892783"},{"denom":"ASSET18","index":"0.000003836527514127"},{"denom":"ASSET2","index":"0.000008063422586049"},{"denom":"ASSET3","index":"0.000002240662109326"},{"denom":"ASSET4","index":"0.000021597223596640"},{"denom":"ASSET5","index":"0.000001744975814867"},{"denom":"ASSET6","index":"0.000007047692266012"},{"denom":"ASSET7","index":"0.000011067413421526"},{"denom":"ASSET8","index":"0.000015106336478322"},{"denom":"ASSET9","index":"0.000006414890297355"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001636130781121"},{"denom":"ASSET1","index":"0.000013651986161797"},{"denom":"ASSET10","index":"0.000009511743354655"},{"denom":"ASSET11","index":"0.000013205516575762"},{"denom":"ASSET12","index":"0.000011891065744828"},{"denom":"ASSET13","index":"0.000004093100055822"},{"denom":"ASSET14","index":"0.000012337535330862"},{"denom":"ASSET15","index":"0.000008821240702961"},{"denom":"ASSET16","index":"0.000006147969392790"},{"denom":"ASSET17","index":"0.000004367637254688"},{"denom":"ASSET18","index":"0.000002079827264137"},{"denom":"ASSET2","index":"0.000004029318686389"},{"denom":"ASSET3","index":"0.000001178568783011"},{"denom":"ASSET4","index":"0.000011095185178418"},{"denom":"ASSET5","index":"0.000000915123996220"},{"denom":"ASSET6","index":"0.000003724277354315"},{"denom":"ASSET7","index":"0.000005701499806755"},{"denom":"ASSET8","index":"0.000007440235399574"},{"denom":"ASSET9","index":"0.000003214026398847"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003135138573804"},{"denom":"ASSET1","index":"0.000026601246250396"},{"denom":"ASSET10","index":"0.000021147351718785"},{"denom":"ASSET11","index":"0.000026411423528042"},{"denom":"ASSET12","index":"0.000025139747174388"},{"denom":"ASSET13","index":"0.000008292603180789"},{"denom":"ASSET14","index":"0.000024256405788980"},{"denom":"ASSET15","index":"0.000019064302195638"},{"denom":"ASSET16","index":"0.000011804656377100"},{"denom":"ASSET17","index":"0.000009238224400983"},{"denom":"ASSET18","index":"0.000003834531376561"},{"denom":"ASSET2","index":"0.000008049169006780"},{"denom":"ASSET3","index":"0.000002239375819558"},{"denom":"ASSET4","index":"0.000021568278304468"},{"denom":"ASSET5","index":"0.000001743998311515"},{"denom":"ASSET6","index":"0.000007041675703373"},{"denom":"ASSET7","index":"0.000011051161098588"},{"denom":"ASSET8","index":"0.000015073103234225"},{"denom":"ASSET9","index":"0.000006402150772125"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001682560247115"},{"denom":"ASSET1","index":"0.000014026482890055"},{"denom":"ASSET10","index":"0.000009772411969975"},{"denom":"ASSET11","index":"0.000013568579422963"},{"denom":"ASSET12","index":"0.000012218368466479"},{"denom":"ASSET13","index":"0.000004205057792371"},{"denom":"ASSET14","index":"0.000012675600520863"},{"denom":"ASSET15","index":"0.000009062728737253"},{"denom":"ASSET16","index":"0.000006318664998244"},{"denom":"ASSET17","index":"0.000004487051129876"},{"denom":"ASSET18","index":"0.000002137778063373"},{"denom":"ASSET2","index":"0.000004140602172369"},{"denom":"ASSET3","index":"0.000001211228525856"},{"denom":"ASSET4","index":"0.000011398573549589"},{"denom":"ASSET5","index":"0.000000939977791684"},{"denom":"ASSET6","index":"0.000003825709612155"},{"denom":"ASSET7","index":"0.000005859418705735"},{"denom":"ASSET8","index":"0.000007646047922643"},{"denom":"ASSET9","index":"0.000003302679112354"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003237426875283"},{"denom":"ASSET1","index":"0.000027451710154634"},{"denom":"ASSET10","index":"0.000021835512998164"},{"denom":"ASSET11","index":"0.000027259736654219"},{"denom":"ASSET12","index":"0.000025953768913429"},{"denom":"ASSET13","index":"0.000008559484494503"},{"denom":"ASSET14","index":"0.000025032165857410"},{"denom":"ASSET15","index":"0.000019681806512765"},{"denom":"ASSET16","index":"0.000012183244440341"},{"denom":"ASSET17","index":"0.000009537367134186"},{"denom":"ASSET18","index":"0.000003957397976948"},{"denom":"ASSET2","index":"0.000008307936552813"},{"denom":"ASSET3","index":"0.000002310954839376"},{"denom":"ASSET4","index":"0.000022256988295109"},{"denom":"ASSET5","index":"0.000001799896462688"},{"denom":"ASSET6","index":"0.000007265619632425"},{"denom":"ASSET7","index":"0.000011405823532836"},{"denom":"ASSET8","index":"0.000015559935461923"},{"denom":"ASSET9","index":"0.000006608212131764"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001576738934866"},{"denom":"ASSET1","index":"0.000013143695761043"},{"denom":"ASSET10","index":"0.000009157699733702"},{"denom":"ASSET11","index":"0.000012715663698192"},{"denom":"ASSET12","index":"0.000011450067913139"},{"denom":"ASSET13","index":"0.000003940585946017"},{"denom":"ASSET14","index":"0.000011878099975991"},{"denom":"ASSET15","index":"0.000008492526135047"},{"denom":"ASSET16","index":"0.000005920970048209"},{"denom":"ASSET17","index":"0.000004204637159643"},{"denom":"ASSET18","index":"0.000002003089142854"},{"denom":"ASSET2","index":"0.000003880039170918"},{"denom":"ASSET3","index":"0.000001134411105672"},{"denom":"ASSET4","index":"0.000010681460240357"},{"denom":"ASSET5","index":"0.000000880451021229"},{"denom":"ASSET6","index":"0.000003584873642311"},{"denom":"ASSET7","index":"0.000005491256130493"},{"denom":"ASSET8","index":"0.000007165542647463"},{"denom":"ASSET9","index":"0.000003094612949497"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003150995592381"},{"denom":"ASSET1","index":"0.000026735906318713"},{"denom":"ASSET10","index":"0.000021370928366269"},{"denom":"ASSET11","index":"0.000026577057751538"},{"denom":"ASSET12","index":"0.000025356196217934"},{"denom":"ASSET13","index":"0.000008349049177946"},{"denom":"ASSET14","index":"0.000024388519635576"},{"denom":"ASSET15","index":"0.000019243917228958"},{"denom":"ASSET16","index":"0.000011858566692713"},{"denom":"ASSET17","index":"0.000009317567603522"},{"denom":"ASSET18","index":"0.000003845362315572"},{"denom":"ASSET2","index":"0.000008099062572798"},{"denom":"ASSET3","index":"0.000002247710476517"},{"denom":"ASSET4","index":"0.000021674805285583"},{"denom":"ASSET5","index":"0.000001751018453776"},{"denom":"ASSET6","index":"0.000007067532365991"},{"denom":"ASSET7","index":"0.000011106766164564"},{"denom":"ASSET8","index":"0.000015177641578730"},{"denom":"ASSET9","index":"0.000006441123951375"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001735896630597"},{"denom":"ASSET1","index":"0.000014474259966527"},{"denom":"ASSET10","index":"0.000010084408758147"},{"denom":"ASSET11","index":"0.000014002239606889"},{"denom":"ASSET12","index":"0.000012609068112910"},{"denom":"ASSET13","index":"0.000004339122939062"},{"denom":"ASSET14","index":"0.000013079851197687"},{"denom":"ASSET15","index":"0.000009351942040176"},{"denom":"ASSET16","index":"0.000006520438519776"},{"denom":"ASSET17","index":"0.000004630501168930"},{"denom":"ASSET18","index":"0.000002205442440512"},{"denom":"ASSET2","index":"0.000004272310096544"},{"denom":"ASSET3","index":"0.000001249647610052"},{"denom":"ASSET4","index":"0.000011762772107687"},{"denom":"ASSET5","index":"0.000000970023491367"},{"denom":"ASSET6","index":"0.000003948144082847"},{"denom":"ASSET7","index":"0.000006046562247845"},{"denom":"ASSET8","index":"0.000007890101791387"},{"denom":"ASSET9","index":"0.000003408073605830"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003300304206809"},{"denom":"ASSET1","index":"0.000027981868665615"},{"denom":"ASSET10","index":"0.000022221493016134"},{"denom":"ASSET11","index":"0.000027777532118325"},{"denom":"ASSET12","index":"0.000026428557640091"},{"denom":"ASSET13","index":"0.000008720047886627"},{"denom":"ASSET14","index":"0.000025512138164618"},{"denom":"ASSET15","index":"0.000020036362120252"},{"denom":"ASSET16","index":"0.000012421157074829"},{"denom":"ASSET17","index":"0.000009711490167791"},{"denom":"ASSET18","index":"0.000004036282970136"},{"denom":"ASSET2","index":"0.000008465189250700"},{"denom":"ASSET3","index":"0.000002356240815614"},{"denom":"ASSET4","index":"0.000022687774056492"},{"denom":"ASSET5","index":"0.000001835200922241"},{"denom":"ASSET6","index":"0.000007409270759323"},{"denom":"ASSET7","index":"0.000011627060915230"},{"denom":"ASSET8","index":"0.000015852235873304"},{"denom":"ASSET9","index":"0.000006733690564218"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001726734301691"},{"denom":"ASSET1","index":"0.000014395988805148"},{"denom":"ASSET10","index":"0.000010029746380297"},{"denom":"ASSET11","index":"0.000013926529312304"},{"denom":"ASSET12","index":"0.000012540835608608"},{"denom":"ASSET13","index":"0.000004315874534955"},{"denom":"ASSET14","index":"0.000013009526126035"},{"denom":"ASSET15","index":"0.000009301526659210"},{"denom":"ASSET16","index":"0.000006485154189852"},{"denom":"ASSET17","index":"0.000004605778267637"},{"denom":"ASSET18","index":"0.000002193886868281"},{"denom":"ASSET2","index":"0.000004249742648985"},{"denom":"ASSET3","index":"0.000001243048763609"},{"denom":"ASSET4","index":"0.000011699192013329"},{"denom":"ASSET5","index":"0.000000964679662201"},{"denom":"ASSET6","index":"0.000003926772973318"},{"denom":"ASSET7","index":"0.000006014156746171"},{"denom":"ASSET8","index":"0.000007847778630999"},{"denom":"ASSET9","index":"0.000003389643643667"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003383074331503"},{"denom":"ASSET1","index":"0.000028697774885580"},{"denom":"ASSET10","index":"0.000022880621123289"},{"denom":"ASSET11","index":"0.000028511966470743"},{"denom":"ASSET12","index":"0.000027173358086556"},{"denom":"ASSET13","index":"0.000008954537947194"},{"denom":"ASSET14","index":"0.000026172910691250"},{"denom":"ASSET15","index":"0.000020614154391480"},{"denom":"ASSET16","index":"0.000012732692592075"},{"denom":"ASSET17","index":"0.000009985655741818"},{"denom":"ASSET18","index":"0.000004132359094826"},{"denom":"ASSET2","index":"0.000008689052893949"},{"denom":"ASSET3","index":"0.000002414485946546"},{"denom":"ASSET4","index":"0.000023266612079392"},{"denom":"ASSET5","index":"0.000001880944791026"},{"denom":"ASSET6","index":"0.000007591453768301"},{"denom":"ASSET7","index":"0.000011922604903868"},{"denom":"ASSET8","index":"0.000016278329144958"},{"denom":"ASSET9","index":"0.000006911169878531"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001436232590899"},{"denom":"ASSET1","index":"0.000011976183987962"},{"denom":"ASSET10","index":"0.000008344549248442"},{"denom":"ASSET11","index":"0.000011585862202045"},{"denom":"ASSET12","index":"0.000010432581326504"},{"denom":"ASSET13","index":"0.000003589949888597"},{"denom":"ASSET14","index":"0.000010822903112421"},{"denom":"ASSET15","index":"0.000007738224144105"},{"denom":"ASSET16","index":"0.000005395030251301"},{"denom":"ASSET17","index":"0.000003831216753031"},{"denom":"ASSET18","index":"0.000001825291199515"},{"denom":"ASSET2","index":"0.000003535633264667"},{"denom":"ASSET3","index":"0.000001033279031975"},{"denom":"ASSET4","index":"0.000009732781101914"},{"denom":"ASSET5","index":"0.000000802117585946"},{"denom":"ASSET6","index":"0.000003266576499617"},{"denom":"ASSET7","index":"0.000005003445288083"},{"denom":"ASSET8","index":"0.000006528100290032"},{"denom":"ASSET9","index":"0.000002819411735168"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003006064648013"},{"denom":"ASSET1","index":"0.000025531157590212"},{"denom":"ASSET10","index":"0.000020524407173472"},{"denom":"ASSET11","index":"0.000025409258384489"},{"denom":"ASSET12","index":"0.000024300714605646"},{"denom":"ASSET13","index":"0.000007986286383048"},{"denom":"ASSET14","index":"0.000023298685931189"},{"denom":"ASSET15","index":"0.000018459726056254"},{"denom":"ASSET16","index":"0.000011316095008653"},{"denom":"ASSET17","index":"0.000008930145684163"},{"denom":"ASSET18","index":"0.000003662445744281"},{"denom":"ASSET2","index":"0.000007743120539446"},{"denom":"ASSET3","index":"0.000002143639104141"},{"denom":"ASSET4","index":"0.000020695936675740"},{"denom":"ASSET5","index":"0.000001670457298921"},{"denom":"ASSET6","index":"0.000006739935351518"},{"denom":"ASSET7","index":"0.000010603283023237"},{"denom":"ASSET8","index":"0.000014518439118465"},{"denom":"ASSET9","index":"0.000006156725809403"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001476546163568"},{"denom":"ASSET1","index":"0.000012315891963405"},{"denom":"ASSET10","index":"0.000008580298213179"},{"denom":"ASSET11","index":"0.000011914434711559"},{"denom":"ASSET12","index":"0.000010728207916557"},{"denom":"ASSET13","index":"0.000003691365408921"},{"denom":"ASSET14","index":"0.000011129665168403"},{"denom":"ASSET15","index":"0.000007957699254808"},{"denom":"ASSET16","index":"0.000005547821683700"},{"denom":"ASSET17","index":"0.000003939724556249"},{"denom":"ASSET18","index":"0.000001876869355381"},{"denom":"ASSET2","index":"0.000003635796467281"},{"denom":"ASSET3","index":"0.000001062614251355"},{"denom":"ASSET4","index":"0.000010009213855342"},{"denom":"ASSET5","index":"0.000000825595704361"},{"denom":"ASSET6","index":"0.000003359085819117"},{"denom":"ASSET7","index":"0.000005145230371820"},{"denom":"ASSET8","index":"0.000006713635398099"},{"denom":"ASSET9","index":"0.000002899791505564"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000002611689387046"},{"denom":"ASSET1","index":"0.000022118950462866"},{"denom":"ASSET10","index":"0.000017388824351878"},{"denom":"ASSET11","index":"0.000021911701626113"},{"denom":"ASSET12","index":"0.000020757567192719"},{"denom":"ASSET13","index":"0.000006870825151743"},{"denom":"ASSET14","index":"0.000020152250667519"},{"denom":"ASSET15","index":"0.000015711809347683"},{"denom":"ASSET16","index":"0.000009830001439303"},{"denom":"ASSET17","index":"0.000007627368499381"},{"denom":"ASSET18","index":"0.000003205559295774"},{"denom":"ASSET2","index":"0.000006678615536452"},{"denom":"ASSET3","index":"0.000001865584989735"},{"denom":"ASSET4","index":"0.000017938012267073"},{"denom":"ASSET5","index":"0.000001453547274796"},{"denom":"ASSET6","index":"0.000005870892100855"},{"denom":"ASSET7","index":"0.000009195154067126"},{"denom":"ASSET8","index":"0.000012492245582088"},{"denom":"ASSET9","index":"0.000005313335607946"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000000860911540335"},{"denom":"ASSET1","index":"0.000007178593209511"},{"denom":"ASSET10","index":"0.000005001581264509"},{"denom":"ASSET11","index":"0.000006944753046495"},{"denom":"ASSET12","index":"0.000006253725385275"},{"denom":"ASSET13","index":"0.000002152029021603"},{"denom":"ASSET14","index":"0.000006487065889823"},{"denom":"ASSET15","index":"0.000004638329558286"},{"denom":"ASSET16","index":"0.000003233789604786"},{"denom":"ASSET17","index":"0.000002296430318850"},{"denom":"ASSET18","index":"0.000001093752386415"},{"denom":"ASSET2","index":"0.000002119051562716"},{"denom":"ASSET3","index":"0.000000619576500299"},{"denom":"ASSET4","index":"0.000005834012272169"},{"denom":"ASSET5","index":"0.000000481171104668"},{"denom":"ASSET6","index":"0.000001958161536025"},{"denom":"ASSET7","index":"0.000002998950124834"},{"denom":"ASSET8","index":"0.000003913325121242"},{"denom":"ASSET9","index":"0.000001690344597186"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000002357406510396"},{"denom":"ASSET1","index":"0.000020099972826550"},{"denom":"ASSET10","index":"0.000016611857270119"},{"denom":"ASSET11","index":"0.000020122040980663"},{"denom":"ASSET12","index":"0.000019473664705632"},{"denom":"ASSET13","index":"0.000006342954228467"},{"denom":"ASSET14","index":"0.000018379978414574"},{"denom":"ASSET15","index":"0.000014858739059306"},{"denom":"ASSET16","index":"0.000008878274052948"},{"denom":"ASSET17","index":"0.000007156982288871"},{"denom":"ASSET18","index":"0.000002845018303307"},{"denom":"ASSET2","index":"0.000006129987919866"},{"denom":"ASSET3","index":"0.000001678183905493"},{"denom":"ASSET4","index":"0.000016284739258605"},{"denom":"ASSET5","index":"0.000001308892339296"},{"denom":"ASSET6","index":"0.000005269046474537"},{"denom":"ASSET7","index":"0.000008337197620164"},{"denom":"ASSET8","index":"0.000011530009666752"},{"denom":"ASSET9","index":"0.000004871853664260"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001198976216272"},{"denom":"ASSET1","index":"0.000010001315625623"},{"denom":"ASSET10","index":"0.000006967712250892"},{"denom":"ASSET11","index":"0.000009674322112094"},{"denom":"ASSET12","index":"0.000008711677656379"},{"denom":"ASSET13","index":"0.000002997949876371"},{"denom":"ASSET14","index":"0.000009037652498526"},{"denom":"ASSET15","index":"0.000006461432574183"},{"denom":"ASSET16","index":"0.000004504564849919"},{"denom":"ASSET17","index":"0.000003199646809949"},{"denom":"ASSET18","index":"0.000001523932387037"},{"denom":"ASSET2","index":"0.000002952109664194"},{"denom":"ASSET3","index":"0.000000862814660308"},{"denom":"ASSET4","index":"0.000008126960283277"},{"denom":"ASSET5","index":"0.000000670285769165"},{"denom":"ASSET6","index":"0.000002728001960218"},{"denom":"ASSET7","index":"0.000004177571336390"},{"denom":"ASSET8","index":"0.000005451929234909"},{"denom":"ASSET9","index":"0.000002354149563130"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000002792091306062"},{"denom":"ASSET1","index":"0.000023760392481519"},{"denom":"ASSET10","index":"0.000019330735214415"},{"denom":"ASSET11","index":"0.000023705763948043"},{"denom":"ASSET12","index":"0.000022788595153270"},{"denom":"ASSET13","index":"0.000007460432475948"},{"denom":"ASSET14","index":"0.000021701401606991"},{"denom":"ASSET15","index":"0.000017344296121870"},{"denom":"ASSET16","index":"0.000010515175863945"},{"denom":"ASSET17","index":"0.000008375559402161"},{"denom":"ASSET18","index":"0.000003388923471278"},{"denom":"ASSET2","index":"0.000007222909907971"},{"denom":"ASSET3","index":"0.000001989926471838"},{"denom":"ASSET4","index":"0.000019255294602933"},{"denom":"ASSET5","index":"0.000001551437823125"},{"denom":"ASSET6","index":"0.000006253588147261"},{"denom":"ASSET7","index":"0.000009862028954195"},{"denom":"ASSET8","index":"0.000013562244421912"},{"denom":"ASSET9","index":"0.000005741841810541"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001507638919625"},{"denom":"ASSET1","index":"0.000012569401049902"},{"denom":"ASSET10","index":"0.000008757228353136"},{"denom":"ASSET11","index":"0.000012160184771718"},{"denom":"ASSET12","index":"0.000010949766096248"},{"denom":"ASSET13","index":"0.000003769097299062"},{"denom":"ASSET14","index":"0.000011358982374432"},{"denom":"ASSET15","index":"0.000008124020006893"},{"denom":"ASSET16","index":"0.000005660107258249"},{"denom":"ASSET17","index":"0.000004018934605743"},{"denom":"ASSET18","index":"0.000001912547658039"},{"denom":"ASSET2","index":"0.000003708791742277"},{"denom":"ASSET3","index":"0.000001085500022130"},{"denom":"ASSET4","index":"0.000010217484335287"},{"denom":"ASSET5","index":"0.000000839970255220"},{"denom":"ASSET6","index":"0.000003428801657204"},{"denom":"ASSET7","index":"0.000005250890980065"},{"denom":"ASSET8","index":"0.000006853295774638"},{"denom":"ASSET9","index":"0.000002959279822235"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003131246414749"},{"denom":"ASSET1","index":"0.000026589761836242"},{"denom":"ASSET10","index":"0.000021355242603721"},{"denom":"ASSET11","index":"0.000026458316408852"},{"denom":"ASSET12","index":"0.000025293988029420"},{"denom":"ASSET13","index":"0.000008316673174883"},{"denom":"ASSET14","index":"0.000024263343459355"},{"denom":"ASSET15","index":"0.000019213959771091"},{"denom":"ASSET16","index":"0.000011784585795875"},{"denom":"ASSET17","index":"0.000009292893547134"},{"denom":"ASSET18","index":"0.000003813004198036"},{"denom":"ASSET2","index":"0.000008060944762894"},{"denom":"ASSET3","index":"0.000002234070199415"},{"denom":"ASSET4","index":"0.000021557233504015"},{"denom":"ASSET5","index":"0.000001738116490695"},{"denom":"ASSET6","index":"0.000007021386599103"},{"denom":"ASSET7","index":"0.000011043212117572"},{"denom":"ASSET8","index":"0.000015117900391662"},{"denom":"ASSET9","index":"0.000006411442995536"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001538667310820"},{"denom":"ASSET1","index":"0.000012827917927858"},{"denom":"ASSET10","index":"0.000008937244372687"},{"denom":"ASSET11","index":"0.000012409488429871"},{"denom":"ASSET12","index":"0.000011174685151587"},{"denom":"ASSET13","index":"0.000003845530209513"},{"denom":"ASSET14","index":"0.000011592355937882"},{"denom":"ASSET15","index":"0.000008288166520415"},{"denom":"ASSET16","index":"0.000005778727600031"},{"denom":"ASSET17","index":"0.000004103871540546"},{"denom":"ASSET18","index":"0.000001954820673732"},{"denom":"ASSET2","index":"0.000003786730053405"},{"denom":"ASSET3","index":"0.000001107719069920"},{"denom":"ASSET4","index":"0.000010424698644316"},{"denom":"ASSET5","index":"0.000000859620346726"},{"denom":"ASSET6","index":"0.000003499178322240"},{"denom":"ASSET7","index":"0.000005359160034507"},{"denom":"ASSET8","index":"0.000006993045662639"},{"denom":"ASSET9","index":"0.000003020431244761"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003070496060295"},{"denom":"ASSET1","index":"0.000026054009108675"},{"denom":"ASSET10","index":"0.000020821706468932"},{"denom":"ASSET11","index":"0.000025897661631707"},{"denom":"ASSET12","index":"0.000024706407518076"},{"denom":"ASSET13","index":"0.000008135385272267"},{"denom":"ASSET14","index":"0.000023765921524780"},{"denom":"ASSET15","index":"0.000018749935123185"},{"denom":"ASSET16","index":"0.000011556337558875"},{"denom":"ASSET17","index":"0.000009079232430047"},{"denom":"ASSET18","index":"0.000003747682066764"},{"denom":"ASSET2","index":"0.000007892419371659"},{"denom":"ASSET3","index":"0.000002191201298955"},{"denom":"ASSET4","index":"0.000021122052487200"},{"denom":"ASSET5","index":"0.000001706992646915"},{"denom":"ASSET6","index":"0.000006888142834266"},{"denom":"ASSET7","index":"0.000010823268476718"},{"denom":"ASSET8","index":"0.000014789657857476"},{"denom":"ASSET9","index":"0.000006276911852268"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001679222100186"},{"denom":"ASSET1","index":"0.000013999028794594"},{"denom":"ASSET10","index":"0.000009753438641601"},{"denom":"ASSET11","index":"0.000013542280383343"},{"denom":"ASSET12","index":"0.000012194769233410"},{"denom":"ASSET13","index":"0.000004196505199295"},{"denom":"ASSET14","index":"0.000012650484277214"},{"denom":"ASSET15","index":"0.000009045065257184"},{"denom":"ASSET16","index":"0.000006306124840851"},{"denom":"ASSET17","index":"0.000004478614512126"},{"denom":"ASSET18","index":"0.000002133387092820"},{"denom":"ASSET2","index":"0.000004132436417626"},{"denom":"ASSET3","index":"0.000001208523228411"},{"denom":"ASSET4","index":"0.000011376342215965"},{"denom":"ASSET5","index":"0.000000938297641211"},{"denom":"ASSET6","index":"0.000003818809397684"},{"denom":"ASSET7","index":"0.000005848343062154"},{"denom":"ASSET8","index":"0.000007631418590690"},{"denom":"ASSET9","index":"0.000003295925469872"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003295755498274"},{"denom":"ASSET1","index":"0.000027960125957180"},{"denom":"ASSET10","index":"0.000022298091456525"},{"denom":"ASSET11","index":"0.000027779779629540"},{"denom":"ASSET12","index":"0.000026478335493542"},{"denom":"ASSET13","index":"0.000008724566942758"},{"denom":"ASSET14","index":"0.000025500389224880"},{"denom":"ASSET15","index":"0.000020088119547171"},{"denom":"ASSET16","index":"0.000012404652968467"},{"denom":"ASSET17","index":"0.000009730254100732"},{"denom":"ASSET18","index":"0.000004025857251145"},{"denom":"ASSET2","index":"0.000008465992991141"},{"denom":"ASSET3","index":"0.000002352288079447"},{"denom":"ASSET4","index":"0.000022667879187178"},{"denom":"ASSET5","index":"0.000001832649164275"},{"denom":"ASSET6","index":"0.000007396215489940"},{"denom":"ASSET7","index":"0.000011616026271508"},{"denom":"ASSET8","index":"0.000015861127767022"},{"denom":"ASSET9","index":"0.000006733269226830"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001488486853561"},{"denom":"ASSET1","index":"0.000012409943784184"},{"denom":"ASSET10","index":"0.000008645838046025"},{"denom":"ASSET11","index":"0.000012005445379346"},{"denom":"ASSET12","index":"0.000010810451131374"},{"denom":"ASSET13","index":"0.000003720376180879"},{"denom":"ASSET14","index":"0.000011214949536212"},{"denom":"ASSET15","index":"0.000008018487089665"},{"denom":"ASSET16","index":"0.000005590655707614"},{"denom":"ASSET17","index":"0.000003970139229188"},{"denom":"ASSET18","index":"0.000001891303352350"},{"denom":"ASSET2","index":"0.000003663191375205"},{"denom":"ASSET3","index":"0.000001071374153354"},{"denom":"ASSET4","index":"0.000010085549624159"},{"denom":"ASSET5","index":"0.000000831702541340"},{"denom":"ASSET6","index":"0.000003384835924059"},{"denom":"ASSET7","index":"0.000005184475396726"},{"denom":"ASSET8","index":"0.000006765467082995"},{"denom":"ASSET9","index":"0.000002921470807498"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003140601357292"},{"denom":"ASSET1","index":"0.000026678854887219"},{"denom":"ASSET10","index":"0.000021467437308134"},{"denom":"ASSET11","index":"0.000026557150856893"},{"denom":"ASSET12","index":"0.000025409189778577"},{"denom":"ASSET13","index":"0.000008348678217638"},{"denom":"ASSET14","index":"0.000024348515645151"},{"denom":"ASSET15","index":"0.000019305257093893"},{"denom":"ASSET16","index":"0.000011824039078448"},{"denom":"ASSET17","index":"0.000009337874135725"},{"denom":"ASSET18","index":"0.000003825021517438"},{"denom":"ASSET2","index":"0.000008092644314938"},{"denom":"ASSET3","index":"0.000002240059115813"},{"denom":"ASSET4","index":"0.000021626536887159"},{"denom":"ASSET5","index":"0.000001745574888449"},{"denom":"ASSET6","index":"0.000007040920669072"},{"denom":"ASSET7","index":"0.000011079696231301"},{"denom":"ASSET8","index":"0.000015176664815864"},{"denom":"ASSET9","index":"0.000006434669973810"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001385039568420"},{"denom":"ASSET1","index":"0.000011547928050470"},{"denom":"ASSET10","index":"0.000008045290512347"},{"denom":"ASSET11","index":"0.000011171268467624"},{"denom":"ASSET12","index":"0.000010059084660007"},{"denom":"ASSET13","index":"0.000003461116009305"},{"denom":"ASSET14","index":"0.000010435744242853"},{"denom":"ASSET15","index":"0.000007461023285412"},{"denom":"ASSET16","index":"0.000005202054396163"},{"denom":"ASSET17","index":"0.000003694427456948"},{"denom":"ASSET18","index":"0.000001759721935608"},{"denom":"ASSET2","index":"0.000003408719794369"},{"denom":"ASSET3","index":"0.000000996516691625"},{"denom":"ASSET4","index":"0.000009383865512804"},{"denom":"ASSET5","index":"0.000000774079930102"},{"denom":"ASSET6","index":"0.000003149704543173"},{"denom":"ASSET7","index":"0.000004824406205487"},{"denom":"ASSET8","index":"0.000006294466047200"},{"denom":"ASSET9","index":"0.000002718671529731"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000002978674281858"},{"denom":"ASSET1","index":"0.000025310372422717"},{"denom":"ASSET10","index":"0.000020411345436720"},{"denom":"ASSET11","index":"0.000025206262983954"},{"denom":"ASSET12","index":"0.000024139567910062"},{"denom":"ASSET13","index":"0.000007924745788344"},{"denom":"ASSET14","index":"0.000023102636423037"},{"denom":"ASSET15","index":"0.000018346974201526"},{"denom":"ASSET16","index":"0.000011213830154915"},{"denom":"ASSET17","index":"0.000008871351161454"},{"denom":"ASSET18","index":"0.000003625142276595"},{"denom":"ASSET2","index":"0.000007680838181843"},{"denom":"ASSET3","index":"0.000002123796319816"},{"denom":"ASSET4","index":"0.000020514843977806"},{"denom":"ASSET5","index":"0.000001655567492872"},{"denom":"ASSET6","index":"0.000006676037052519"},{"denom":"ASSET7","index":"0.000010510115662832"},{"denom":"ASSET8","index":"0.000014407133239162"},{"denom":"ASSET9","index":"0.000006107008804836"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001563741356289"},{"denom":"ASSET1","index":"0.000013036816883138"},{"denom":"ASSET10","index":"0.000009082880828100"},{"denom":"ASSET11","index":"0.000012611783735587"},{"denom":"ASSET12","index":"0.000011356772924286"},{"denom":"ASSET13","index":"0.000003908472310400"},{"denom":"ASSET14","index":"0.000011781101207579"},{"denom":"ASSET15","index":"0.000008423480314776"},{"denom":"ASSET16","index":"0.000005872928997340"},{"denom":"ASSET17","index":"0.000004170681814362"},{"denom":"ASSET18","index":"0.000001986659911066"},{"denom":"ASSET2","index":"0.000003848558848473"},{"denom":"ASSET3","index":"0.000001125668219966"},{"denom":"ASSET4","index":"0.000010594814661429"},{"denom":"ASSET5","index":"0.000000873679247744"},{"denom":"ASSET6","index":"0.000003556392613548"},{"denom":"ASSET7","index":"0.000005446486121273"},{"denom":"ASSET8","index":"0.000007106793880903"},{"denom":"ASSET9","index":"0.000003069683843425"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003115193601728"},{"denom":"ASSET1","index":"0.000026433576226141"},{"denom":"ASSET10","index":"0.000021120836274624"},{"denom":"ASSET11","index":"0.000026274076149270"},{"denom":"ASSET12","index":"0.000025063206789151"},{"denom":"ASSET13","index":"0.000008253838888439"},{"denom":"ASSET14","index":"0.000024111622086359"},{"denom":"ASSET15","index":"0.000019020166052921"},{"denom":"ASSET16","index":"0.000011725264187843"},{"denom":"ASSET17","index":"0.000009210335248597"},{"denom":"ASSET18","index":"0.000003802618681808"},{"denom":"ASSET2","index":"0.000008007094168018"},{"denom":"ASSET3","index":"0.000002223045227271"},{"denom":"ASSET4","index":"0.000021430343290469"},{"denom":"ASSET5","index":"0.000001731871182363"},{"denom":"ASSET6","index":"0.000006989160352022"},{"denom":"ASSET7","index":"0.000010981276608696"},{"denom":"ASSET8","index":"0.000015004007461071"},{"denom":"ASSET9","index":"0.000006368316319391"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001688791638136"},{"denom":"ASSET1","index":"0.000014080258863939"},{"denom":"ASSET10","index":"0.000009809129194434"},{"denom":"ASSET11","index":"0.000013620783833550"},{"denom":"ASSET12","index":"0.000012265553395360"},{"denom":"ASSET13","index":"0.000004220322334414"},{"denom":"ASSET14","index":"0.000012723923918464"},{"denom":"ASSET15","index":"0.000009096721995874"},{"denom":"ASSET16","index":"0.000006342080828109"},{"denom":"ASSET17","index":"0.000004504180706554"},{"denom":"ASSET18","index":"0.000002144953146672"},{"denom":"ASSET2","index":"0.000004156260911908"},{"denom":"ASSET3","index":"0.000001214958013048"},{"denom":"ASSET4","index":"0.000011442695468341"},{"denom":"ASSET5","index":"0.000000943249221039"},{"denom":"ASSET6","index":"0.000003840371828516"},{"denom":"ASSET7","index":"0.000005881501290436"},{"denom":"ASSET8","index":"0.000007675221120608"},{"denom":"ASSET9","index":"0.000003314626361051"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003342989987813"},{"denom":"ASSET1","index":"0.000028363859076608"},{"denom":"ASSET10","index":"0.000022643596968544"},{"denom":"ASSET11","index":"0.000028187678804911"},{"denom":"ASSET12","index":"0.000026879157824253"},{"denom":"ASSET13","index":"0.000008853292918908"},{"denom":"ASSET14","index":"0.000025870927331183"},{"denom":"ASSET15","index":"0.000020395094195043"},{"denom":"ASSET16","index":"0.000012581780801373"},{"denom":"ASSET17","index":"0.000009877287329505"},{"denom":"ASSET18","index":"0.000004080927248291"},{"denom":"ASSET2","index":"0.000008590241612281"},{"denom":"ASSET3","index":"0.000002384972961476"},{"denom":"ASSET4","index":"0.000022995501297970"},{"denom":"ASSET5","index":"0.000001858071035633"},{"denom":"ASSET6","index":"0.000007500418590266"},{"denom":"ASSET7","index":"0.000011782462758670"},{"denom":"ASSET8","index":"0.000016095075530395"},{"denom":"ASSET9","index":"0.000006831506736707"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001571496317510"},{"denom":"ASSET1","index":"0.000013101483241955"},{"denom":"ASSET10","index":"0.000009127906315185"},{"denom":"ASSET11","index":"0.000012674221268720"},{"denom":"ASSET12","index":"0.000011413128948859"},{"denom":"ASSET13","index":"0.000003927726401627"},{"denom":"ASSET14","index":"0.000011839579408375"},{"denom":"ASSET15","index":"0.000008464899606481"},{"denom":"ASSET16","index":"0.000005901733523932"},{"denom":"ASSET17","index":"0.000004191468360414"},{"denom":"ASSET18","index":"0.000001996729506447"},{"denom":"ASSET2","index":"0.000003867268629536"},{"denom":"ASSET3","index":"0.000001131250124766"},{"denom":"ASSET4","index":"0.000010647059997798"},{"denom":"ASSET5","index":"0.000000878057844331"},{"denom":"ASSET6","index":"0.000003573906419993"},{"denom":"ASSET7","index":"0.000005473254280118"},{"denom":"ASSET8","index":"0.000007142132243950"},{"denom":"ASSET9","index":"0.000003084563647228"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003113134051861"},{"denom":"ASSET1","index":"0.000026415094552464"},{"denom":"ASSET10","index":"0.000021090707465492"},{"denom":"ASSET11","index":"0.000026251548228726"},{"denom":"ASSET12","index":"0.000025034408517114"},{"denom":"ASSET13","index":"0.000008245703890405"},{"denom":"ASSET14","index":"0.000024093200316600"},{"denom":"ASSET15","index":"0.000018995578271326"},{"denom":"ASSET16","index":"0.000011717396138812"},{"denom":"ASSET17","index":"0.000009199501798709"},{"denom":"ASSET18","index":"0.000003801350346824"},{"denom":"ASSET2","index":"0.000007999912620195"},{"denom":"ASSET3","index":"0.000002221641081089"},{"denom":"ASSET4","index":"0.000021415082747190"},{"denom":"ASSET5","index":"0.000001730738444371"},{"denom":"ASSET6","index":"0.000006985361363625"},{"denom":"ASSET7","index":"0.000010973556930807"},{"denom":"ASSET8","index":"0.000014990236718633"},{"denom":"ASSET9","index":"0.000006362695679170"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001486431692511"},{"denom":"ASSET1","index":"0.000012397696164316"},{"denom":"ASSET10","index":"0.000008637613387551"},{"denom":"ASSET11","index":"0.000011993186507636"},{"denom":"ASSET12","index":"0.000010799842650204"},{"denom":"ASSET13","index":"0.000003716482933529"},{"denom":"ASSET14","index":"0.000011203544902380"},{"denom":"ASSET15","index":"0.000008010260087670"},{"denom":"ASSET16","index":"0.000005584816956599"},{"denom":"ASSET17","index":"0.000003965970925374"},{"denom":"ASSET18","index":"0.000001889326540182"},{"denom":"ASSET2","index":"0.000003659157213720"},{"denom":"ASSET3","index":"0.000001070618372770"},{"denom":"ASSET4","index":"0.000010074793405297"},{"denom":"ASSET5","index":"0.000000830819234978"},{"denom":"ASSET6","index":"0.000003381410064224"},{"denom":"ASSET7","index":"0.000005179499895414"},{"denom":"ASSET8","index":"0.000006757975701421"},{"denom":"ASSET9","index":"0.000002918767283230"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003023961266495"},{"denom":"ASSET1","index":"0.000025674667559579"},{"denom":"ASSET10","index":"0.000020567435721356"},{"denom":"ASSET11","index":"0.000025532965784321"},{"denom":"ASSET12","index":"0.000024383768132692"},{"denom":"ASSET13","index":"0.000008022807352722"},{"denom":"ASSET14","index":"0.000023423766496233"},{"denom":"ASSET15","index":"0.000018512228577533"},{"denom":"ASSET16","index":"0.000011384524743973"},{"denom":"ASSET17","index":"0.000008960010456843"},{"denom":"ASSET18","index":"0.000003688974211121"},{"denom":"ASSET2","index":"0.000007780619396113"},{"denom":"ASSET3","index":"0.000002157718690670"},{"denom":"ASSET4","index":"0.000020813357966886"},{"denom":"ASSET5","index":"0.000001681323481152"},{"denom":"ASSET6","index":"0.000006783427048921"},{"denom":"ASSET7","index":"0.000010664665966441"},{"denom":"ASSET8","index":"0.000014584270248941"},{"denom":"ASSET9","index":"0.000006187655866052"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001789525520762"},{"denom":"ASSET1","index":"0.000014923544215299"},{"denom":"ASSET10","index":"0.000010397506905977"},{"denom":"ASSET11","index":"0.000014436898494348"},{"denom":"ASSET12","index":"0.000013000171779235"},{"denom":"ASSET13","index":"0.000004474200642702"},{"denom":"ASSET14","index":"0.000013486043818595"},{"denom":"ASSET15","index":"0.000009642393672833"},{"denom":"ASSET16","index":"0.000006722519347127"},{"denom":"ASSET17","index":"0.000004774389100140"},{"denom":"ASSET18","index":"0.000002273850196939"},{"denom":"ASSET2","index":"0.000004405342981073"},{"denom":"ASSET3","index":"0.000001288179849576"},{"denom":"ASSET4","index":"0.000012128232625798"},{"denom":"ASSET5","index":"0.000001000370297599"},{"denom":"ASSET6","index":"0.000004071112533615"},{"denom":"ASSET7","index":"0.000006234326262993"},{"denom":"ASSET8","index":"0.000008135261932908"},{"denom":"ASSET9","index":"0.000003514061787852"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003488279034648"},{"denom":"ASSET1","index":"0.000029592208548275"},{"denom":"ASSET10","index":"0.000023577626976592"},{"denom":"ASSET11","index":"0.000029395914355993"},{"denom":"ASSET12","index":"0.000028007798530295"},{"denom":"ASSET13","index":"0.000009231498766276"},{"denom":"ASSET14","index":"0.000026986732997785"},{"denom":"ASSET15","index":"0.000021244630549189"},{"denom":"ASSET16","index":"0.000013129960095172"},{"denom":"ASSET17","index":"0.000010292381952670"},{"denom":"ASSET18","index":"0.000004261641431672"},{"denom":"ASSET2","index":"0.000008958343988321"},{"denom":"ASSET3","index":"0.000002489657102823"},{"denom":"ASSET4","index":"0.000023991917258738"},{"denom":"ASSET5","index":"0.000001939742890351"},{"denom":"ASSET6","index":"0.000007829259808535"},{"denom":"ASSET7","index":"0.000012294264842111"},{"denom":"ASSET8","index":"0.000016782088113605"},{"denom":"ASSET9","index":"0.000007125719490615"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001504632489095"},{"denom":"ASSET1","index":"0.000012543084148708"},{"denom":"ASSET10","index":"0.000008738830231438"},{"denom":"ASSET11","index":"0.000012134501498699"},{"denom":"ASSET12","index":"0.000010926897843985"},{"denom":"ASSET13","index":"0.000003760573206331"},{"denom":"ASSET14","index":"0.000011335480493994"},{"denom":"ASSET15","index":"0.000008104451906425"},{"denom":"ASSET16","index":"0.000005650267962622"},{"denom":"ASSET17","index":"0.000004012577307899"},{"denom":"ASSET18","index":"0.000001911199106291"},{"denom":"ASSET2","index":"0.000003702780265705"},{"denom":"ASSET3","index":"0.000001083281631273"},{"denom":"ASSET4","index":"0.000010193733911157"},{"denom":"ASSET5","index":"0.000000840685682831"},{"denom":"ASSET6","index":"0.000003421207682886"},{"denom":"ASSET7","index":"0.000005240341290738"},{"denom":"ASSET8","index":"0.000006837711289210"},{"denom":"ASSET9","index":"0.000002953488070376"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003015423229771"},{"denom":"ASSET1","index":"0.000025588098096649"},{"denom":"ASSET10","index":"0.000020460473772645"},{"denom":"ASSET11","index":"0.000025438043766359"},{"denom":"ASSET12","index":"0.000024273358860204"},{"denom":"ASSET13","index":"0.000007991752317173"},{"denom":"ASSET14","index":"0.000023342063892494"},{"denom":"ASSET15","index":"0.000018422728556898"},{"denom":"ASSET16","index":"0.000011348811151398"},{"denom":"ASSET17","index":"0.000008919790197810"},{"denom":"ASSET18","index":"0.000003679502338318"},{"denom":"ASSET2","index":"0.000007752126098631"},{"denom":"ASSET3","index":"0.000002151933074669"},{"denom":"ASSET4","index":"0.000020744635257959"},{"denom":"ASSET5","index":"0.000001676458472807"},{"denom":"ASSET6","index":"0.000006763790928604"},{"denom":"ASSET7","index":"0.000010629564741383"},{"denom":"ASSET8","index":"0.000014527278079751"},{"denom":"ASSET9","index":"0.000006165283413682"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001790270882045"},{"denom":"ASSET1","index":"0.000014924962381265"},{"denom":"ASSET10","index":"0.000010398687848362"},{"denom":"ASSET11","index":"0.000014438353512768"},{"denom":"ASSET12","index":"0.000013001639266884"},{"denom":"ASSET13","index":"0.000004474427888377"},{"denom":"ASSET14","index":"0.000013487623477013"},{"denom":"ASSET15","index":"0.000009643475881721"},{"denom":"ASSET16","index":"0.000006723198012370"},{"denom":"ASSET17","index":"0.000004774888563278"},{"denom":"ASSET18","index":"0.000002274381117071"},{"denom":"ASSET2","index":"0.000004405715467922"},{"denom":"ASSET3","index":"0.000001288670212721"},{"denom":"ASSET4","index":"0.000012129616185469"},{"denom":"ASSET5","index":"0.000001000078046809"},{"denom":"ASSET6","index":"0.000004071523241162"},{"denom":"ASSET7","index":"0.000006235339827137"},{"denom":"ASSET8","index":"0.000008136175240279"},{"denom":"ASSET9","index":"0.000003514327977106"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003452635056994"},{"denom":"ASSET1","index":"0.000029280443630050"},{"denom":"ASSET10","index":"0.000023297581891953"},{"denom":"ASSET11","index":"0.000029078046899152"},{"denom":"ASSET12","index":"0.000027688393753974"},{"denom":"ASSET13","index":"0.000009130247174920"},{"denom":"ASSET14","index":"0.000026700258191979"},{"denom":"ASSET15","index":"0.000020998119885469"},{"denom":"ASSET16","index":"0.000012993858989816"},{"denom":"ASSET17","index":"0.000010174919177657"},{"denom":"ASSET18","index":"0.000004220034662939"},{"denom":"ASSET2","index":"0.000008861755768133"},{"denom":"ASSET3","index":"0.000002464736347038"},{"denom":"ASSET4","index":"0.000023740327943060"},{"denom":"ASSET5","index":"0.000001919615043943"},{"denom":"ASSET6","index":"0.000007749671229698"},{"denom":"ASSET7","index":"0.000012165961282812"},{"denom":"ASSET8","index":"0.000016598407083950"},{"denom":"ASSET9","index":"0.000007048985746822"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001835550145227"},{"denom":"ASSET1","index":"0.000015324623289081"},{"denom":"ASSET10","index":"0.000010676536631006"},{"denom":"ASSET11","index":"0.000014825027987456"},{"denom":"ASSET12","index":"0.000013348446318211"},{"denom":"ASSET13","index":"0.000004592576069005"},{"denom":"ASSET14","index":"0.000013848041619836"},{"denom":"ASSET15","index":"0.000009899388384035"},{"denom":"ASSET16","index":"0.000006901816574290"},{"denom":"ASSET17","index":"0.000004903435367793"},{"denom":"ASSET18","index":"0.000002335145446851"},{"denom":"ASSET2","index":"0.000004522262656184"},{"denom":"ASSET3","index":"0.000001321152019851"},{"denom":"ASSET4","index":"0.000012452875481226"},{"denom":"ASSET5","index":"0.000001025095544814"},{"denom":"ASSET6","index":"0.000004178097003954"},{"denom":"ASSET7","index":"0.000006402221272666"},{"denom":"ASSET8","index":"0.000008352493301969"},{"denom":"ASSET9","index":"0.000003608188289508"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003336473275634"},{"denom":"ASSET1","index":"0.000028284037775138"},{"denom":"ASSET10","index":"0.000022321061137243"},{"denom":"ASSET11","index":"0.000028041053149272"},{"denom":"ASSET12","index":"0.000026607048139233"},{"denom":"ASSET13","index":"0.000008795774551756"},{"denom":"ASSET14","index":"0.000025776026947277"},{"denom":"ASSET15","index":"0.000020150006768141"},{"denom":"ASSET16","index":"0.000012562977954735"},{"denom":"ASSET17","index":"0.000009778271060189"},{"denom":"ASSET18","index":"0.000004091528532498"},{"denom":"ASSET2","index":"0.000008544798017437"},{"denom":"ASSET3","index":"0.000002382883485470"},{"denom":"ASSET4","index":"0.000022934405116164"},{"denom":"ASSET5","index":"0.000001855148612588"},{"denom":"ASSET6","index":"0.000007498692848558"},{"denom":"ASSET7","index":"0.000011756140274513"},{"denom":"ASSET8","index":"0.000015991743254740"},{"denom":"ASSET9","index":"0.000006799136288961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001764742979644"},{"denom":"ASSET1","index":"0.000014715413525055"},{"denom":"ASSET10","index":"0.000010252344388411"},{"denom":"ASSET11","index":"0.000014235671854472"},{"denom":"ASSET12","index":"0.000012819403806098"},{"denom":"ASSET13","index":"0.000004411268809023"},{"denom":"ASSET14","index":"0.000013298556836595"},{"denom":"ASSET15","index":"0.000009507714678855"},{"denom":"ASSET16","index":"0.000006629264655353"},{"denom":"ASSET17","index":"0.000004707943412672"},{"denom":"ASSET18","index":"0.000002242718729968"},{"denom":"ASSET2","index":"0.000004343575199063"},{"denom":"ASSET3","index":"0.000001270873946982"},{"denom":"ASSET4","index":"0.000011958811999481"},{"denom":"ASSET5","index":"0.000000985972145064"},{"denom":"ASSET6","index":"0.000004013936750564"},{"denom":"ASSET7","index":"0.000006147757064510"},{"denom":"ASSET8","index":"0.000008021987100262"},{"denom":"ASSET9","index":"0.000003464735549761"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003371223111771"},{"denom":"ASSET1","index":"0.000028586584995448"},{"denom":"ASSET10","index":"0.000022716281614844"},{"denom":"ASSET11","index":"0.000028381809067472"},{"denom":"ASSET12","index":"0.000027011101270499"},{"denom":"ASSET13","index":"0.000008910504058238"},{"denom":"ASSET14","index":"0.000026065694327630"},{"denom":"ASSET15","index":"0.000020479714095343"},{"denom":"ASSET16","index":"0.000012688778091614"},{"denom":"ASSET17","index":"0.000009925875585388"},{"denom":"ASSET18","index":"0.000004122881217339"},{"denom":"ASSET2","index":"0.000008649339803247"},{"denom":"ASSET3","index":"0.000002407313457267"},{"denom":"ASSET4","index":"0.000023177863483423"},{"denom":"ASSET5","index":"0.000001874397047373"},{"denom":"ASSET6","index":"0.000007568278053481"},{"denom":"ASSET7","index":"0.000011878402488901"},{"denom":"ASSET8","index":"0.000016198768839280"},{"denom":"ASSET9","index":"0.000006880150170591"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001519402004985"},{"denom":"ASSET1","index":"0.000012669186594649"},{"denom":"ASSET10","index":"0.000008826466179926"},{"denom":"ASSET11","index":"0.000012255973562605"},{"denom":"ASSET12","index":"0.000011036700348729"},{"denom":"ASSET13","index":"0.000003798237040326"},{"denom":"ASSET14","index":"0.000011448841492233"},{"denom":"ASSET15","index":"0.000008185476833202"},{"denom":"ASSET16","index":"0.000005707270529482"},{"denom":"ASSET17","index":"0.000004053346512768"},{"denom":"ASSET18","index":"0.000001930471259949"},{"denom":"ASSET2","index":"0.000003739819114914"},{"denom":"ASSET3","index":"0.000001093862254735"},{"denom":"ASSET4","index":"0.000010296025367816"},{"denom":"ASSET5","index":"0.000000848935723420"},{"denom":"ASSET6","index":"0.000003455768651901"},{"denom":"ASSET7","index":"0.000005292985608899"},{"denom":"ASSET8","index":"0.000006906177861104"},{"denom":"ASSET9","index":"0.000002983065805906"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003090388166914"},{"denom":"ASSET1","index":"0.000026235396530584"},{"denom":"ASSET10","index":"0.000021016328726441"},{"denom":"ASSET11","index":"0.000026091077525301"},{"denom":"ASSET12","index":"0.000024916432469284"},{"denom":"ASSET13","index":"0.000008198423394567"},{"denom":"ASSET14","index":"0.000023935350029219"},{"denom":"ASSET15","index":"0.000018916111125702"},{"denom":"ASSET16","index":"0.000011633439861257"},{"denom":"ASSET17","index":"0.000009156707623184"},{"denom":"ASSET18","index":"0.000003769226369030"},{"denom":"ASSET2","index":"0.000007950992094695"},{"denom":"ASSET3","index":"0.000002205065882760"},{"denom":"ASSET4","index":"0.000021268551776440"},{"denom":"ASSET5","index":"0.000001717872208784"},{"denom":"ASSET6","index":"0.000006931889619894"},{"denom":"ASSET7","index":"0.000010897757198785"},{"denom":"ASSET8","index":"0.000014903243728132"},{"denom":"ASSET9","index":"0.000006323427167640"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001518878942956"},{"denom":"ASSET1","index":"0.000012665267621292"},{"denom":"ASSET10","index":"0.000008823986077449"},{"denom":"ASSET11","index":"0.000012252067733139"},{"denom":"ASSET12","index":"0.000011032961258059"},{"denom":"ASSET13","index":"0.000003796959064490"},{"denom":"ASSET14","index":"0.000011445207974612"},{"denom":"ASSET15","index":"0.000008182978177143"},{"denom":"ASSET16","index":"0.000005705208605625"},{"denom":"ASSET17","index":"0.000004051932467214"},{"denom":"ASSET18","index":"0.000001930172487911"},{"denom":"ASSET2","index":"0.000003738815596953"},{"denom":"ASSET3","index":"0.000001093764409816"},{"denom":"ASSET4","index":"0.000010292823511460"},{"denom":"ASSET5","index":"0.000000848799308881"},{"denom":"ASSET6","index":"0.000003454770460461"},{"denom":"ASSET7","index":"0.000005291055545873"},{"denom":"ASSET8","index":"0.000006904298477127"},{"denom":"ASSET9","index":"0.000002981997347372"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003032310940473"},{"denom":"ASSET1","index":"0.000025733484746235"},{"denom":"ASSET10","index":"0.000020566326171769"},{"denom":"ASSET11","index":"0.000025579130700492"},{"denom":"ASSET12","index":"0.000024402998631681"},{"denom":"ASSET13","index":"0.000008035434808363"},{"denom":"ASSET14","index":"0.000023473377840860"},{"denom":"ASSET15","index":"0.000018519821992016"},{"denom":"ASSET16","index":"0.000011413808805814"},{"denom":"ASSET17","index":"0.000008967671528488"},{"denom":"ASSET18","index":"0.000003701450923042"},{"denom":"ASSET2","index":"0.000007795399667781"},{"denom":"ASSET3","index":"0.000002164126947351"},{"denom":"ASSET4","index":"0.000020862528644023"},{"denom":"ASSET5","index":"0.000001685967393794"},{"denom":"ASSET6","index":"0.000006803442800114"},{"denom":"ASSET7","index":"0.000010689840259007"},{"denom":"ASSET8","index":"0.000014607710652032"},{"denom":"ASSET9","index":"0.000006199747658625"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001387661284101"},{"denom":"ASSET1","index":"0.000011573014587468"},{"denom":"ASSET10","index":"0.000008062929395432"},{"denom":"ASSET11","index":"0.000011195232526081"},{"denom":"ASSET12","index":"0.000010081345808669"},{"denom":"ASSET13","index":"0.000003469153210252"},{"denom":"ASSET14","index":"0.000010458456853962"},{"denom":"ASSET15","index":"0.000007477132344649"},{"denom":"ASSET16","index":"0.000005213124040705"},{"denom":"ASSET17","index":"0.000003702666811251"},{"denom":"ASSET18","index":"0.000001763430297203"},{"denom":"ASSET2","index":"0.000003416142938760"},{"denom":"ASSET3","index":"0.000000999142965196"},{"denom":"ASSET4","index":"0.000009404961585085"},{"denom":"ASSET5","index":"0.000000775694605619"},{"denom":"ASSET6","index":"0.000003156459710063"},{"denom":"ASSET7","index":"0.000004834670963223"},{"denom":"ASSET8","index":"0.000006308893323556"},{"denom":"ASSET9","index":"0.000002724996361089"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000002847838387483"},{"denom":"ASSET1","index":"0.000024182680336096"},{"denom":"ASSET10","index":"0.000019393227963423"},{"denom":"ASSET11","index":"0.000024054653395269"},{"denom":"ASSET12","index":"0.000022982316432831"},{"denom":"ASSET13","index":"0.000007558836235579"},{"denom":"ASSET14","index":"0.000022064079622497"},{"denom":"ASSET15","index":"0.000017450899901336"},{"denom":"ASSET16","index":"0.000010721434414440"},{"denom":"ASSET17","index":"0.000008446187739031"},{"denom":"ASSET18","index":"0.000003472449339717"},{"denom":"ASSET2","index":"0.000007330038539196"},{"denom":"ASSET3","index":"0.000002031951160271"},{"denom":"ASSET4","index":"0.000019603371773062"},{"denom":"ASSET5","index":"0.000001583403578691"},{"denom":"ASSET6","index":"0.000006387295602350"},{"denom":"ASSET7","index":"0.000010043914419286"},{"denom":"ASSET8","index":"0.000013741733556815"},{"denom":"ASSET9","index":"0.000005829813216311"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001740203165372"},{"denom":"ASSET1","index":"0.000014506985633466"},{"denom":"ASSET10","index":"0.000010106727386233"},{"denom":"ASSET11","index":"0.000014033828203465"},{"denom":"ASSET12","index":"0.000012637643303754"},{"denom":"ASSET13","index":"0.000004348390877948"},{"denom":"ASSET14","index":"0.000013109742216014"},{"denom":"ASSET15","index":"0.000009373174592071"},{"denom":"ASSET16","index":"0.000006535288529808"},{"denom":"ASSET17","index":"0.000004640541774324"},{"denom":"ASSET18","index":"0.000002210185042151"},{"denom":"ASSET2","index":"0.000004281704260297"},{"denom":"ASSET3","index":"0.000001252226487004"},{"denom":"ASSET4","index":"0.000011789770593618"},{"denom":"ASSET5","index":"0.000000971719285773"},{"denom":"ASSET6","index":"0.000003956739313965"},{"denom":"ASSET7","index":"0.000006060014064326"},{"denom":"ASSET8","index":"0.000007908186039228"},{"denom":"ASSET9","index":"0.000003415836748573"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003351161845380"},{"denom":"ASSET1","index":"0.000028416485386018"},{"denom":"ASSET10","index":"0.000022605276372189"},{"denom":"ASSET11","index":"0.000028218825237526"},{"denom":"ASSET12","index":"0.000026868556551399"},{"denom":"ASSET13","index":"0.000008859853422879"},{"denom":"ASSET14","index":"0.000025912194276628"},{"denom":"ASSET15","index":"0.000020375555431981"},{"denom":"ASSET16","index":"0.000012611404420708"},{"denom":"ASSET17","index":"0.000009873044520717"},{"denom":"ASSET18","index":"0.000004095473642305"},{"denom":"ASSET2","index":"0.000008599384819082"},{"denom":"ASSET3","index":"0.000002391571176633"},{"denom":"ASSET4","index":"0.000023040021162794"},{"denom":"ASSET5","index":"0.000001862805125681"},{"denom":"ASSET6","index":"0.000007520693553142"},{"denom":"ASSET7","index":"0.000011806544930596"},{"denom":"ASSET8","index":"0.000016107343127742"},{"denom":"ASSET9","index":"0.000006840485865179"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001711866379191"},{"denom":"ASSET1","index":"0.000014286095556473"},{"denom":"ASSET10","index":"0.000009953932372868"},{"denom":"ASSET11","index":"0.000013820467901333"},{"denom":"ASSET12","index":"0.000012444127332464"},{"denom":"ASSET13","index":"0.000004281948436482"},{"denom":"ASSET14","index":"0.000012909754987604"},{"denom":"ASSET15","index":"0.000009230383516596"},{"denom":"ASSET16","index":"0.000006434335097252"},{"denom":"ASSET17","index":"0.000004569541988186"},{"denom":"ASSET18","index":"0.000002177494034331"},{"denom":"ASSET2","index":"0.000004215756269820"},{"denom":"ASSET3","index":"0.000001232543793017"},{"denom":"ASSET4","index":"0.000011608736539419"},{"denom":"ASSET5","index":"0.000000956362683841"},{"denom":"ASSET6","index":"0.000003896207879038"},{"denom":"ASSET7","index":"0.000005968707442112"},{"denom":"ASSET8","index":"0.000007787850781065"},{"denom":"ASSET9","index":"0.000003362105568731"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003408995344605"},{"denom":"ASSET1","index":"0.000028940875589883"},{"denom":"ASSET10","index":"0.000023121939135123"},{"denom":"ASSET11","index":"0.000028765460883304"},{"denom":"ASSET12","index":"0.000027437813762181"},{"denom":"ASSET13","index":"0.000009035078182388"},{"denom":"ASSET14","index":"0.000026397840013038"},{"denom":"ASSET15","index":"0.000020822021063845"},{"denom":"ASSET16","index":"0.000012835900360827"},{"denom":"ASSET17","index":"0.000010082289518918"},{"denom":"ASSET18","index":"0.000004163537456367"},{"denom":"ASSET2","index":"0.000008764373535196"},{"denom":"ASSET3","index":"0.000002432999591430"},{"denom":"ASSET4","index":"0.000023461370966582"},{"denom":"ASSET5","index":"0.000001895172356369"},{"denom":"ASSET6","index":"0.000007651446569151"},{"denom":"ASSET7","index":"0.000012022926111771"},{"denom":"ASSET8","index":"0.000016426068411072"},{"denom":"ASSET9","index":"0.000006969965423669"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001459800105667"},{"denom":"ASSET1","index":"0.000012176396665923"},{"denom":"ASSET10","index":"0.000008484162206626"},{"denom":"ASSET11","index":"0.000011779823335110"},{"denom":"ASSET12","index":"0.000010607197020722"},{"denom":"ASSET13","index":"0.000003650070053435"},{"denom":"ASSET14","index":"0.000011003770351536"},{"denom":"ASSET15","index":"0.000007867650218206"},{"denom":"ASSET16","index":"0.000005484791497715"},{"denom":"ASSET17","index":"0.000003895079438851"},{"denom":"ASSET18","index":"0.000001855233857943"},{"denom":"ASSET2","index":"0.000003594230705131"},{"denom":"ASSET3","index":"0.000001050691410948"},{"denom":"ASSET4","index":"0.000009896100013746"},{"denom":"ASSET5","index":"0.000000815938232363"},{"denom":"ASSET6","index":"0.000003321871434831"},{"denom":"ASSET7","index":"0.000005087078588365"},{"denom":"ASSET8","index":"0.000006638044976977"},{"denom":"ASSET9","index":"0.000002867179598640"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000002975317591563"},{"denom":"ASSET1","index":"0.000025265738469637"},{"denom":"ASSET10","index":"0.000020245724387946"},{"denom":"ASSET11","index":"0.000025128558675417"},{"denom":"ASSET12","index":"0.000023998925764885"},{"denom":"ASSET13","index":"0.000007895668684136"},{"denom":"ASSET14","index":"0.000023051238668493"},{"denom":"ASSET15","index":"0.000018221178423268"},{"denom":"ASSET16","index":"0.000011202197653725"},{"denom":"ASSET17","index":"0.000008818540737002"},{"denom":"ASSET18","index":"0.000003629428323701"},{"denom":"ASSET2","index":"0.000007657107369447"},{"denom":"ASSET3","index":"0.000002122660280404"},{"denom":"ASSET4","index":"0.000020482509156357"},{"denom":"ASSET5","index":"0.000001654309607539"},{"denom":"ASSET6","index":"0.000006675356935536"},{"denom":"ASSET7","index":"0.000010494215679887"},{"denom":"ASSET8","index":"0.000014353927855523"},{"denom":"ASSET9","index":"0.000006089535217587"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001617402557586"},{"denom":"ASSET1","index":"0.000013485147451276"},{"denom":"ASSET10","index":"0.000009395521488362"},{"denom":"ASSET11","index":"0.000013045402724081"},{"denom":"ASSET12","index":"0.000011747619504798"},{"denom":"ASSET13","index":"0.000004042433845849"},{"denom":"ASSET14","index":"0.000012186291683878"},{"denom":"ASSET15","index":"0.000008713380887153"},{"denom":"ASSET16","index":"0.000006074912523982"},{"denom":"ASSET17","index":"0.000004313788518972"},{"denom":"ASSET18","index":"0.000002055002188551"},{"denom":"ASSET2","index":"0.000003980226055173"},{"denom":"ASSET3","index":"0.000001163714704894"},{"denom":"ASSET4","index":"0.000010959296640193"},{"denom":"ASSET5","index":"0.000000903085512923"},{"denom":"ASSET6","index":"0.000003677767486712"},{"denom":"ASSET7","index":"0.000005633022700557"},{"denom":"ASSET8","index":"0.000007351244780963"},{"denom":"ASSET9","index":"0.000003174742420725"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003091273620954"},{"denom":"ASSET1","index":"0.000026212594205506"},{"denom":"ASSET10","index":"0.000020831747389799"},{"denom":"ASSET11","index":"0.000026024829344923"},{"denom":"ASSET12","index":"0.000024768925461013"},{"denom":"ASSET13","index":"0.000008170539761157"},{"denom":"ASSET14","index":"0.000023900540063840"},{"denom":"ASSET15","index":"0.000018780610027247"},{"denom":"ASSET16","index":"0.000011634658240098"},{"denom":"ASSET17","index":"0.000009101405984603"},{"denom":"ASSET18","index":"0.000003780149264156"},{"denom":"ASSET2","index":"0.000007930960667726"},{"denom":"ASSET3","index":"0.000002206123035767"},{"denom":"ASSET4","index":"0.000021253166889363"},{"denom":"ASSET5","index":"0.000001718500807532"},{"denom":"ASSET6","index":"0.000006939076737962"},{"denom":"ASSET7","index":"0.000010891166816552"},{"denom":"ASSET8","index":"0.000014853628574871"},{"denom":"ASSET9","index":"0.000006308302102729"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001496654334782"},{"denom":"ASSET1","index":"0.000012477377024436"},{"denom":"ASSET10","index":"0.000008693096469902"},{"denom":"ASSET11","index":"0.000012070207597683"},{"denom":"ASSET12","index":"0.000010869145414891"},{"denom":"ASSET13","index":"0.000003740467488528"},{"denom":"ASSET14","index":"0.000011275146493218"},{"denom":"ASSET15","index":"0.000008061604145195"},{"denom":"ASSET16","index":"0.000005620924281527"},{"denom":"ASSET17","index":"0.000003991662400298"},{"denom":"ASSET18","index":"0.000001901487064682"},{"denom":"ASSET2","index":"0.000003683218415613"},{"denom":"ASSET3","index":"0.000001077217249546"},{"denom":"ASSET4","index":"0.000010139511822330"},{"denom":"ASSET5","index":"0.000000835953299404"},{"denom":"ASSET6","index":"0.000003403398967385"},{"denom":"ASSET7","index":"0.000005212586506346"},{"denom":"ASSET8","index":"0.000006801540366848"},{"denom":"ASSET9","index":"0.000002937812119289"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003012098530886"},{"denom":"ASSET1","index":"0.000025562058034330"},{"denom":"ASSET10","index":"0.000020450222858637"},{"denom":"ASSET11","index":"0.000025414193224582"},{"denom":"ASSET12","index":"0.000024256065084933"},{"denom":"ASSET13","index":"0.000007984561416691"},{"denom":"ASSET14","index":"0.000023318358139730"},{"denom":"ASSET15","index":"0.000018411259079989"},{"denom":"ASSET16","index":"0.000011336678183578"},{"denom":"ASSET17","index":"0.000008913774138499"},{"denom":"ASSET18","index":"0.000003674960609183"},{"denom":"ASSET2","index":"0.000007744948932800"},{"denom":"ASSET3","index":"0.000002148867969989"},{"denom":"ASSET4","index":"0.000020722540912428"},{"denom":"ASSET5","index":"0.000001674229864542"},{"denom":"ASSET6","index":"0.000006756080138401"},{"denom":"ASSET7","index":"0.000010618450136599"},{"denom":"ASSET8","index":"0.000014514789998911"},{"denom":"ASSET9","index":"0.000006159565713194"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001470615438656"},{"denom":"ASSET1","index":"0.000012263141624205"},{"denom":"ASSET10","index":"0.000008543710077270"},{"denom":"ASSET11","index":"0.000011863435889596"},{"denom":"ASSET12","index":"0.000010682701378752"},{"denom":"ASSET13","index":"0.000003676538596641"},{"denom":"ASSET14","index":"0.000011081935762259"},{"denom":"ASSET15","index":"0.000007923412026863"},{"denom":"ASSET16","index":"0.000005524234917004"},{"denom":"ASSET17","index":"0.000003923055223056"},{"denom":"ASSET18","index":"0.000001868907119959"},{"denom":"ASSET2","index":"0.000003619976464385"},{"denom":"ASSET3","index":"0.000001058654575392"},{"denom":"ASSET4","index":"0.000009965776352407"},{"denom":"ASSET5","index":"0.000000822036322121"},{"denom":"ASSET6","index":"0.000003345178771841"},{"denom":"ASSET7","index":"0.000005123115129088"},{"denom":"ASSET8","index":"0.000006685172681558"},{"denom":"ASSET9","index":"0.000002887496851669"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000002995147819628"},{"denom":"ASSET1","index":"0.000025426980115999"},{"denom":"ASSET10","index":"0.000020372034738960"},{"denom":"ASSET11","index":"0.000025287989623967"},{"denom":"ASSET12","index":"0.000024150599022202"},{"denom":"ASSET13","index":"0.000007946076587902"},{"denom":"ASSET14","index":"0.000023198024872944"},{"denom":"ASSET15","index":"0.000018335727027304"},{"denom":"ASSET16","index":"0.000011274635486105"},{"denom":"ASSET17","index":"0.000008875015361763"},{"denom":"ASSET18","index":"0.000003653177061349"},{"denom":"ASSET2","index":"0.000007706361997735"},{"denom":"ASSET3","index":"0.000002137037997503"},{"denom":"ASSET4","index":"0.000020612735071168"},{"denom":"ASSET5","index":"0.000001665450131859"},{"denom":"ASSET6","index":"0.000006718182222688"},{"denom":"ASSET7","index":"0.000010561635089256"},{"denom":"ASSET8","index":"0.000014445035982826"},{"denom":"ASSET9","index":"0.000006128513210961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001778581753434"},{"denom":"ASSET1","index":"0.000014888315804569"},{"denom":"ASSET10","index":"0.000010370885153828"},{"denom":"ASSET11","index":"0.000014404007158094"},{"denom":"ASSET12","index":"0.000012967781516823"},{"denom":"ASSET13","index":"0.000004458979607201"},{"denom":"ASSET14","index":"0.000013452090163298"},{"denom":"ASSET15","index":"0.000009619371736884"},{"denom":"ASSET16","index":"0.000006705169708956"},{"denom":"ASSET17","index":"0.000004759584973979"},{"denom":"ASSET18","index":"0.000002262890399909"},{"denom":"ASSET2","index":"0.000004392178414584"},{"denom":"ASSET3","index":"0.000001285922957882"},{"denom":"ASSET4","index":"0.000012099366012799"},{"denom":"ASSET5","index":"0.000000993667740182"},{"denom":"ASSET6","index":"0.000004058172451498"},{"denom":"ASSET7","index":"0.000006220861062481"},{"denom":"ASSET8","index":"0.000008116344902996"},{"denom":"ASSET9","index":"0.000003507062612406"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003356752793751"},{"denom":"ASSET1","index":"0.000028516406305775"},{"denom":"ASSET10","index":"0.000022616173055400"},{"denom":"ASSET11","index":"0.000028302061322789"},{"denom":"ASSET12","index":"0.000026910491325102"},{"denom":"ASSET13","index":"0.000008878873421079"},{"denom":"ASSET14","index":"0.000025995251505598"},{"denom":"ASSET15","index":"0.000020398635157595"},{"denom":"ASSET16","index":"0.000012658071469071"},{"denom":"ASSET17","index":"0.000009885849877285"},{"denom":"ASSET18","index":"0.000004110010202724"},{"denom":"ASSET2","index":"0.000008622285743228"},{"denom":"ASSET3","index":"0.000002402314047495"},{"denom":"ASSET4","index":"0.000023121698220749"},{"denom":"ASSET5","index":"0.000001866482592061"},{"denom":"ASSET6","index":"0.000007549939309511"},{"denom":"ASSET7","index":"0.000011851024307599"},{"denom":"ASSET8","index":"0.000016149793693754"},{"denom":"ASSET9","index":"0.000006862325287189"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001604942959288"},{"denom":"ASSET1","index":"0.000013380628695124"},{"denom":"ASSET10","index":"0.000009322365613635"},{"denom":"ASSET11","index":"0.000012944148427984"},{"denom":"ASSET12","index":"0.000011656280789193"},{"denom":"ASSET13","index":"0.000004011353995308"},{"denom":"ASSET14","index":"0.000012091757653420"},{"denom":"ASSET15","index":"0.000008645319498111"},{"denom":"ASSET16","index":"0.000006027692148913"},{"denom":"ASSET17","index":"0.000004280767677439"},{"denom":"ASSET18","index":"0.000002039165569874"},{"denom":"ASSET2","index":"0.000003949895566889"},{"denom":"ASSET3","index":"0.000001155418454280"},{"denom":"ASSET4","index":"0.000010873877367808"},{"denom":"ASSET5","index":"0.000000896791353463"},{"denom":"ASSET6","index":"0.000003649878095912"},{"denom":"ASSET7","index":"0.000005589957628131"},{"denom":"ASSET8","index":"0.000007294237475803"},{"denom":"ASSET9","index":"0.000003150685146712"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003200268554223"},{"denom":"ASSET1","index":"0.000027155061035589"},{"denom":"ASSET10","index":"0.000021699312128992"},{"denom":"ASSET11","index":"0.000026991580254755"},{"denom":"ASSET12","index":"0.000025748970079650"},{"denom":"ASSET13","index":"0.000008479073830121"},{"denom":"ASSET14","index":"0.000024769827936089"},{"denom":"ASSET15","index":"0.000019540730612944"},{"denom":"ASSET16","index":"0.000012044995213579"},{"denom":"ASSET17","index":"0.000009462424001901"},{"denom":"ASSET18","index":"0.000003906197580725"},{"denom":"ASSET2","index":"0.000008225756082433"},{"denom":"ASSET3","index":"0.000002283784004254"},{"denom":"ASSET4","index":"0.000022014648589339"},{"denom":"ASSET5","index":"0.000001779311895342"},{"denom":"ASSET6","index":"0.000007179475362032"},{"denom":"ASSET7","index":"0.000011280598785262"},{"denom":"ASSET8","index":"0.000015413911362487"},{"denom":"ASSET9","index":"0.000006542247148589"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001620184629837"},{"denom":"ASSET1","index":"0.000013508113244239"},{"denom":"ASSET10","index":"0.000009411159415052"},{"denom":"ASSET11","index":"0.000013068550109883"},{"denom":"ASSET12","index":"0.000011766766981214"},{"denom":"ASSET13","index":"0.000004049052718392"},{"denom":"ASSET14","index":"0.000012206330115570"},{"denom":"ASSET15","index":"0.000008726455301921"},{"denom":"ASSET16","index":"0.000006083441070987"},{"denom":"ASSET17","index":"0.000004319553108765"},{"denom":"ASSET18","index":"0.000002056930051793"},{"denom":"ASSET2","index":"0.000003987063045598"},{"denom":"ASSET3","index":"0.000001166532933482"},{"denom":"ASSET4","index":"0.000010977807509294"},{"denom":"ASSET5","index":"0.000000904485680309"},{"denom":"ASSET6","index":"0.000003682750106429"},{"denom":"ASSET7","index":"0.000005643877936631"},{"denom":"ASSET8","index":"0.000007362682500458"},{"denom":"ASSET9","index":"0.000003178379586880"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003154859072778"},{"denom":"ASSET1","index":"0.000026759958230198"},{"denom":"ASSET10","index":"0.000021318547828682"},{"denom":"ASSET11","index":"0.000026582778956839"},{"denom":"ASSET12","index":"0.000025324795995745"},{"denom":"ASSET13","index":"0.000008347309163095"},{"denom":"ASSET14","index":"0.000024403216779648"},{"denom":"ASSET15","index":"0.000019208461119321"},{"denom":"ASSET16","index":"0.000011872154646602"},{"denom":"ASSET17","index":"0.000009304429323264"},{"denom":"ASSET18","index":"0.000003853154066825"},{"denom":"ASSET2","index":"0.000008100524497579"},{"denom":"ASSET3","index":"0.000002251942800438"},{"denom":"ASSET4","index":"0.000021695917087147"},{"denom":"ASSET5","index":"0.000001753374642360"},{"denom":"ASSET6","index":"0.000007078305954632"},{"denom":"ASSET7","index":"0.000011118481739065"},{"denom":"ASSET8","index":"0.000015174129529137"},{"denom":"ASSET9","index":"0.000006441283498998"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001565910537906"},{"denom":"ASSET1","index":"0.000013053983025959"},{"denom":"ASSET10","index":"0.000009094819386579"},{"denom":"ASSET11","index":"0.000012628414118813"},{"denom":"ASSET12","index":"0.000011371841840295"},{"denom":"ASSET13","index":"0.000003913403541838"},{"denom":"ASSET14","index":"0.000011796953146466"},{"denom":"ASSET15","index":"0.000008434501179040"},{"denom":"ASSET16","index":"0.000005880630135191"},{"denom":"ASSET17","index":"0.000004176066501732"},{"denom":"ASSET18","index":"0.000001989191440174"},{"denom":"ASSET2","index":"0.000003853457814057"},{"denom":"ASSET3","index":"0.000001127071202473"},{"denom":"ASSET4","index":"0.000010608563413286"},{"denom":"ASSET5","index":"0.000000874933065013"},{"denom":"ASSET6","index":"0.000003561050790760"},{"denom":"ASSET7","index":"0.000005453688425119"},{"denom":"ASSET8","index":"0.000007116152768840"},{"denom":"ASSET9","index":"0.000003073705751932"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003066618221533"},{"denom":"ASSET1","index":"0.000026018563142658"},{"denom":"ASSET10","index":"0.000020743763118655"},{"denom":"ASSET11","index":"0.000025849025514444"},{"denom":"ASSET12","index":"0.000024635604575072"},{"denom":"ASSET13","index":"0.000008118261811936"},{"denom":"ASSET14","index":"0.000023728777879609"},{"denom":"ASSET15","index":"0.000018689177197382"},{"denom":"ASSET16","index":"0.000011544003668418"},{"denom":"ASSET17","index":"0.000009052167825210"},{"denom":"ASSET18","index":"0.000003745930402733"},{"denom":"ASSET2","index":"0.000007877080459743"},{"denom":"ASSET3","index":"0.000002188594145460"},{"denom":"ASSET4","index":"0.000021094338825720"},{"denom":"ASSET5","index":"0.000001705356613908"},{"denom":"ASSET6","index":"0.000006882744986340"},{"denom":"ASSET7","index":"0.000010809249072439"},{"denom":"ASSET8","index":"0.000014757775472241"},{"denom":"ASSET9","index":"0.000006264987011427"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001616793771814"},{"denom":"ASSET1","index":"0.000013481664806896"},{"denom":"ASSET10","index":"0.000009392973001731"},{"denom":"ASSET11","index":"0.000013042136425966"},{"denom":"ASSET12","index":"0.000011745108533466"},{"denom":"ASSET13","index":"0.000004041984429535"},{"denom":"ASSET14","index":"0.000012183439289380"},{"denom":"ASSET15","index":"0.000008710326742521"},{"denom":"ASSET16","index":"0.000006073156456940"},{"denom":"ASSET17","index":"0.000004312647683187"},{"denom":"ASSET18","index":"0.000002053926902712"},{"denom":"ASSET2","index":"0.000003979707928695"},{"denom":"ASSET3","index":"0.000001164091515706"},{"denom":"ASSET4","index":"0.000010955873647818"},{"denom":"ASSET5","index":"0.000000903009262183"},{"denom":"ASSET6","index":"0.000003677906424623"},{"denom":"ASSET7","index":"0.000005632430450993"},{"denom":"ASSET8","index":"0.000007349824724165"},{"denom":"ASSET9","index":"0.000003173706292820"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003010548827117"},{"denom":"ASSET1","index":"0.000025517681435823"},{"denom":"ASSET10","index":"0.000020207909525991"},{"denom":"ASSET11","index":"0.000025316824190850"},{"denom":"ASSET12","index":"0.000024059273468565"},{"denom":"ASSET13","index":"0.000007945703994160"},{"denom":"ASSET14","index":"0.000023261456497592"},{"denom":"ASSET15","index":"0.000018230653165683"},{"denom":"ASSET16","index":"0.000011330852554208"},{"denom":"ASSET17","index":"0.000008840468160143"},{"denom":"ASSET18","index":"0.000003685449036638"},{"denom":"ASSET2","index":"0.000007715875534239"},{"denom":"ASSET3","index":"0.000002150116713749"},{"denom":"ASSET4","index":"0.000020690763011385"},{"denom":"ASSET5","index":"0.000001674170167376"},{"denom":"ASSET6","index":"0.000006761947340508"},{"denom":"ASSET7","index":"0.000010605047135869"},{"denom":"ASSET8","index":"0.000014444866674878"},{"denom":"ASSET9","index":"0.000006137206230949"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001598496813351"},{"denom":"ASSET1","index":"0.000013327209301876"},{"denom":"ASSET10","index":"0.000009285082513510"},{"denom":"ASSET11","index":"0.000012892549064690"},{"denom":"ASSET12","index":"0.000011609910099638"},{"denom":"ASSET13","index":"0.000003995530641827"},{"denom":"ASSET14","index":"0.000012043503249499"},{"denom":"ASSET15","index":"0.000008611039019674"},{"denom":"ASSET16","index":"0.000006003788988106"},{"denom":"ASSET17","index":"0.000004263725256261"},{"denom":"ASSET18","index":"0.000002031022875886"},{"denom":"ASSET2","index":"0.000003933995272733"},{"denom":"ASSET3","index":"0.000001150675832486"},{"denom":"ASSET4","index":"0.000010830580656369"},{"denom":"ASSET5","index":"0.000000893152091305"},{"denom":"ASSET6","index":"0.000003635566517414"},{"denom":"ASSET7","index":"0.000005567705967820"},{"denom":"ASSET8","index":"0.000007265086206652"},{"denom":"ASSET9","index":"0.000003137948128033"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003202417698287"},{"denom":"ASSET1","index":"0.000027176874960756"},{"denom":"ASSET10","index":"0.000021729724210241"},{"denom":"ASSET11","index":"0.000027016578438308"},{"denom":"ASSET12","index":"0.000025779554956391"},{"denom":"ASSET13","index":"0.000008487649506725"},{"denom":"ASSET14","index":"0.000024790682929963"},{"denom":"ASSET15","index":"0.000019565798539307"},{"denom":"ASSET16","index":"0.000012053877846841"},{"denom":"ASSET17","index":"0.000009473617164606"},{"denom":"ASSET18","index":"0.000003908301251667"},{"denom":"ASSET2","index":"0.000008233254558201"},{"denom":"ASSET3","index":"0.000002285025567503"},{"denom":"ASSET4","index":"0.000022032200437673"},{"denom":"ASSET5","index":"0.000001780306156687"},{"denom":"ASSET6","index":"0.000007184182778940"},{"denom":"ASSET7","index":"0.000011289430429576"},{"denom":"ASSET8","index":"0.000015429251463912"},{"denom":"ASSET9","index":"0.000006548040900334"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001349258766758"},{"denom":"ASSET1","index":"0.000011264433664868"},{"denom":"ASSET10","index":"0.000007848225297969"},{"denom":"ASSET11","index":"0.000010895650990484"},{"denom":"ASSET12","index":"0.000009811385762205"},{"denom":"ASSET13","index":"0.000003376459336127"},{"denom":"ASSET14","index":"0.000010177960157102"},{"denom":"ASSET15","index":"0.000007278489190238"},{"denom":"ASSET16","index":"0.000005074626261883"},{"denom":"ASSET17","index":"0.000003603912123322"},{"denom":"ASSET18","index":"0.000001715833161655"},{"denom":"ASSET2","index":"0.000003323460628431"},{"denom":"ASSET3","index":"0.000000971642974425"},{"denom":"ASSET4","index":"0.000009153318474981"},{"denom":"ASSET5","index":"0.000000753023305179"},{"denom":"ASSET6","index":"0.000003071716766875"},{"denom":"ASSET7","index":"0.000004705843587499"},{"denom":"ASSET8","index":"0.000006139016974776"},{"denom":"ASSET9","index":"0.000002652143664283"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000002874619638549"},{"denom":"ASSET1","index":"0.000024442633186143"},{"denom":"ASSET10","index":"0.000019689737510784"},{"denom":"ASSET11","index":"0.000024334399718263"},{"denom":"ASSET12","index":"0.000023294058494145"},{"denom":"ASSET13","index":"0.000007650065286478"},{"denom":"ASSET14","index":"0.000022306974942610"},{"denom":"ASSET15","index":"0.000017702453996022"},{"denom":"ASSET16","index":"0.000010830667352685"},{"denom":"ASSET17","index":"0.000008561334956642"},{"denom":"ASSET18","index":"0.000003501743239949"},{"denom":"ASSET2","index":"0.000007413384379561"},{"denom":"ASSET3","index":"0.000002050775894848"},{"denom":"ASSET4","index":"0.000019811877393900"},{"denom":"ASSET5","index":"0.000001596563839644"},{"denom":"ASSET6","index":"0.000006447875450380"},{"denom":"ASSET7","index":"0.000010149425285061"},{"denom":"ASSET8","index":"0.000013906577801610"},{"denom":"ASSET9","index":"0.000005896530335304"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001744355646452"},{"denom":"ASSET1","index":"0.000014544558741461"},{"denom":"ASSET10","index":"0.000010133244841823"},{"denom":"ASSET11","index":"0.000014070651242217"},{"denom":"ASSET12","index":"0.000012670295178174"},{"denom":"ASSET13","index":"0.000004360461787457"},{"denom":"ASSET14","index":"0.000013143775348745"},{"denom":"ASSET15","index":"0.000009397812194213"},{"denom":"ASSET16","index":"0.000006552230555377"},{"denom":"ASSET17","index":"0.000004653181929010"},{"denom":"ASSET18","index":"0.000002216553831001"},{"denom":"ASSET2","index":"0.000004293371185670"},{"denom":"ASSET3","index":"0.000001255918972299"},{"denom":"ASSET4","index":"0.000011819911117312"},{"denom":"ASSET5","index":"0.000000974736704938"},{"denom":"ASSET6","index":"0.000003967319407560"},{"denom":"ASSET7","index":"0.000006076186412764"},{"denom":"ASSET8","index":"0.000007929083542361"},{"denom":"ASSET9","index":"0.000003424611991834"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003377008276018"},{"denom":"ASSET1","index":"0.000028642142456639"},{"denom":"ASSET10","index":"0.000022800592191853"},{"denom":"ASSET11","index":"0.000028447577997463"},{"denom":"ASSET12","index":"0.000027093635853923"},{"denom":"ASSET13","index":"0.000008933092474106"},{"denom":"ASSET14","index":"0.000026119259559896"},{"denom":"ASSET15","index":"0.000020548756595198"},{"denom":"ASSET16","index":"0.000012710670192565"},{"denom":"ASSET17","index":"0.000009956402105067"},{"denom":"ASSET18","index":"0.000004127475104327"},{"denom":"ASSET2","index":"0.000008669602227225"},{"denom":"ASSET3","index":"0.000002410895003349"},{"denom":"ASSET4","index":"0.000023222264254358"},{"denom":"ASSET5","index":"0.000001877874241403"},{"denom":"ASSET6","index":"0.000007579654674160"},{"denom":"ASSET7","index":"0.000011900488798179"},{"denom":"ASSET8","index":"0.000016239324105118"},{"denom":"ASSET9","index":"0.000006895771583569"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001546168277317"},{"denom":"ASSET1","index":"0.000012892123182452"},{"denom":"ASSET10","index":"0.000008982377260299"},{"denom":"ASSET11","index":"0.000012472337191477"},{"denom":"ASSET12","index":"0.000011231230783378"},{"denom":"ASSET13","index":"0.000003864117010091"},{"denom":"ASSET14","index":"0.000011651016774353"},{"denom":"ASSET15","index":"0.000008329231976204"},{"denom":"ASSET16","index":"0.000005807908663952"},{"denom":"ASSET17","index":"0.000004124853650448"},{"denom":"ASSET18","index":"0.000001964650585090"},{"denom":"ASSET2","index":"0.000003805451266010"},{"denom":"ASSET3","index":"0.000001113345454324"},{"denom":"ASSET4","index":"0.000010477701892746"},{"denom":"ASSET5","index":"0.000000863038279582"},{"denom":"ASSET6","index":"0.000003516033595214"},{"denom":"ASSET7","index":"0.000005385515306574"},{"denom":"ASSET8","index":"0.000007028156140823"},{"denom":"ASSET9","index":"0.000003034974493755"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003044385892570"},{"denom":"ASSET1","index":"0.000025830014188245"},{"denom":"ASSET10","index":"0.000020607856539150"},{"denom":"ASSET11","index":"0.000025666657138152"},{"denom":"ASSET12","index":"0.000024468008636658"},{"denom":"ASSET13","index":"0.000008060303383676"},{"denom":"ASSET14","index":"0.000023559408638801"},{"denom":"ASSET15","index":"0.000018562848593971"},{"denom":"ASSET16","index":"0.000011459854746185"},{"denom":"ASSET17","index":"0.000008991538648143"},{"denom":"ASSET18","index":"0.000003718456390600"},{"denom":"ASSET2","index":"0.000007821717005664"},{"denom":"ASSET3","index":"0.000002173111618200"},{"denom":"ASSET4","index":"0.000020942104557307"},{"denom":"ASSET5","index":"0.000001691598021351"},{"denom":"ASSET6","index":"0.000006831113312915"},{"denom":"ASSET7","index":"0.000010730587410374"},{"denom":"ASSET8","index":"0.000014654605067850"},{"denom":"ASSET9","index":"0.000006220578615076"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001387821916020"},{"denom":"ASSET1","index":"0.000011588015182905"},{"denom":"ASSET10","index":"0.000008073788013584"},{"denom":"ASSET11","index":"0.000011209789038410"},{"denom":"ASSET12","index":"0.000010095957715252"},{"denom":"ASSET13","index":"0.000003472532948668"},{"denom":"ASSET14","index":"0.000010471205701129"},{"denom":"ASSET15","index":"0.000007487090765824"},{"denom":"ASSET16","index":"0.000005220712057474"},{"denom":"ASSET17","index":"0.000003707807479495"},{"denom":"ASSET18","index":"0.000001766048060515"},{"denom":"ASSET2","index":"0.000003418926093543"},{"denom":"ASSET3","index":"0.000001000661295671"},{"denom":"ASSET4","index":"0.000009416937550333"},{"denom":"ASSET5","index":"0.000000774321240698"},{"denom":"ASSET6","index":"0.000003159826293771"},{"denom":"ASSET7","index":"0.000004839507754361"},{"denom":"ASSET8","index":"0.000006316674428923"},{"denom":"ASSET9","index":"0.000002727993294151"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000002956721491824"},{"denom":"ASSET1","index":"0.000025136116728129"},{"denom":"ASSET10","index":"0.000020247681325291"},{"denom":"ASSET11","index":"0.000025026479369709"},{"denom":"ASSET12","index":"0.000023957412844230"},{"denom":"ASSET13","index":"0.000007866588644670"},{"denom":"ASSET14","index":"0.000022940688787988"},{"denom":"ASSET15","index":"0.000018203641219753"},{"denom":"ASSET16","index":"0.000011138902531601"},{"denom":"ASSET17","index":"0.000008803888891481"},{"denom":"ASSET18","index":"0.000003602115317706"},{"denom":"ASSET2","index":"0.000007623974866010"},{"denom":"ASSET3","index":"0.000002110544057177"},{"denom":"ASSET4","index":"0.000020374365248917"},{"denom":"ASSET5","index":"0.000001641905652861"},{"denom":"ASSET6","index":"0.000006630874494768"},{"denom":"ASSET7","index":"0.000010436528568948"},{"denom":"ASSET8","index":"0.000014302572224422"},{"denom":"ASSET9","index":"0.000006063325997423"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001500850379058"},{"denom":"ASSET1","index":"0.000012511793460183"},{"denom":"ASSET10","index":"0.000008717304800227"},{"denom":"ASSET11","index":"0.000012103632089176"},{"denom":"ASSET12","index":"0.000010899320696303"},{"denom":"ASSET13","index":"0.000003750781099635"},{"denom":"ASSET14","index":"0.000011306809643305"},{"denom":"ASSET15","index":"0.000008083881387560"},{"denom":"ASSET16","index":"0.000005636258009526"},{"denom":"ASSET17","index":"0.000004002940101492"},{"denom":"ASSET18","index":"0.000001906322054045"},{"denom":"ASSET2","index":"0.000003692952635209"},{"denom":"ASSET3","index":"0.000001079912951956"},{"denom":"ASSET4","index":"0.000010167723378913"},{"denom":"ASSET5","index":"0.000000838512734178"},{"denom":"ASSET6","index":"0.000003412551825143"},{"denom":"ASSET7","index":"0.000005226751790509"},{"denom":"ASSET8","index":"0.000006820396682251"},{"denom":"ASSET9","index":"0.000002945889565704"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003004514310835"},{"denom":"ASSET1","index":"0.000025497942224476"},{"denom":"ASSET10","index":"0.000020385999177782"},{"denom":"ASSET11","index":"0.000025346802479017"},{"denom":"ASSET12","index":"0.000024185328023735"},{"denom":"ASSET13","index":"0.000007962788555043"},{"denom":"ASSET14","index":"0.000023259189454501"},{"denom":"ASSET15","index":"0.000018355567065709"},{"denom":"ASSET16","index":"0.000011309092459120"},{"denom":"ASSET17","index":"0.000008887662321727"},{"denom":"ASSET18","index":"0.000003666570499762"},{"denom":"ASSET2","index":"0.000007723995884874"},{"denom":"ASSET3","index":"0.000002143405494402"},{"denom":"ASSET4","index":"0.000020670641097733"},{"denom":"ASSET5","index":"0.000001670336124344"},{"denom":"ASSET6","index":"0.000006739845385808"},{"denom":"ASSET7","index":"0.000010591422556410"},{"denom":"ASSET8","index":"0.000014475095162856"},{"denom":"ASSET9","index":"0.000006143360978771"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001507842106347"},{"denom":"ASSET1","index":"0.000012572313391156"},{"denom":"ASSET10","index":"0.000008759356679472"},{"denom":"ASSET11","index":"0.000012162445176153"},{"denom":"ASSET12","index":"0.000010952151629736"},{"denom":"ASSET13","index":"0.000003769211161813"},{"denom":"ASSET14","index":"0.000011361231636633"},{"denom":"ASSET15","index":"0.000008123272738112"},{"denom":"ASSET16","index":"0.000005663669344042"},{"denom":"ASSET17","index":"0.000004022225963767"},{"denom":"ASSET18","index":"0.000001916133905138"},{"denom":"ASSET2","index":"0.000003711277866039"},{"denom":"ASSET3","index":"0.000001085756665704"},{"denom":"ASSET4","index":"0.000010217147571101"},{"denom":"ASSET5","index":"0.000000842594465073"},{"denom":"ASSET6","index":"0.000003429493468225"},{"denom":"ASSET7","index":"0.000005252224712828"},{"denom":"ASSET8","index":"0.000006853863583762"},{"denom":"ASSET9","index":"0.000002960115541236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003064659144392"},{"denom":"ASSET1","index":"0.000026014545525120"},{"denom":"ASSET10","index":"0.000020837902255895"},{"denom":"ASSET11","index":"0.000025870951889592"},{"denom":"ASSET12","index":"0.000024704995690840"},{"denom":"ASSET13","index":"0.000008129050348807"},{"denom":"ASSET14","index":"0.000023733606076391"},{"denom":"ASSET15","index":"0.000018755969892396"},{"denom":"ASSET16","index":"0.000011535737727926"},{"denom":"ASSET17","index":"0.000009078938038909"},{"denom":"ASSET18","index":"0.000003738223548700"},{"denom":"ASSET2","index":"0.000007883998416280"},{"denom":"ASSET3","index":"0.000002186926046113"},{"denom":"ASSET4","index":"0.000021089316501471"},{"denom":"ASSET5","index":"0.000001703791082418"},{"denom":"ASSET6","index":"0.000006873778950624"},{"denom":"ASSET7","index":"0.000010805665377904"},{"denom":"ASSET8","index":"0.000014777724141198"},{"denom":"ASSET9","index":"0.000006269886019705"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001016570122529"},{"denom":"ASSET1","index":"0.000008477171470527"},{"denom":"ASSET10","index":"0.000005906463519680"},{"denom":"ASSET11","index":"0.000008200989896911"},{"denom":"ASSET12","index":"0.000007384774710599"},{"denom":"ASSET13","index":"0.000002541117067960"},{"denom":"ASSET14","index":"0.000007660956284215"},{"denom":"ASSET15","index":"0.000005477395717812"},{"denom":"ASSET16","index":"0.000003819073322661"},{"denom":"ASSET17","index":"0.000002711881121289"},{"denom":"ASSET18","index":"0.000001291518742692"},{"denom":"ASSET2","index":"0.000002502279034170"},{"denom":"ASSET3","index":"0.000000731757874738"},{"denom":"ASSET4","index":"0.000006889127422234"},{"denom":"ASSET5","index":"0.000000567775065403"},{"denom":"ASSET6","index":"0.000002312404202309"},{"denom":"ASSET7","index":"0.000003541658795591"},{"denom":"ASSET8","index":"0.000004621109544256"},{"denom":"ASSET9","index":"0.000001996151641449"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000002499545170163"},{"denom":"ASSET1","index":"0.000021282413071401"},{"denom":"ASSET10","index":"0.000017412808765385"},{"denom":"ASSET11","index":"0.000021259874812403"},{"denom":"ASSET12","index":"0.000020486111882687"},{"denom":"ASSET13","index":"0.000006694303381301"},{"denom":"ASSET14","index":"0.000019446986985139"},{"denom":"ASSET15","index":"0.000015606004703242"},{"denom":"ASSET16","index":"0.000009412782427040"},{"denom":"ASSET17","index":"0.000007528963649123"},{"denom":"ASSET18","index":"0.000003027066879988"},{"denom":"ASSET2","index":"0.000006477094521478"},{"denom":"ASSET3","index":"0.000001780578331809"},{"denom":"ASSET4","index":"0.000017246051064985"},{"denom":"ASSET5","index":"0.000001387924123500"},{"denom":"ASSET6","index":"0.000005593713918003"},{"denom":"ASSET7","index":"0.000008831780754063"},{"denom":"ASSET8","index":"0.000012169406160300"},{"denom":"ASSET9","index":"0.000005149034362400"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001552339226368"},{"denom":"ASSET1","index":"0.000012948480372324"},{"denom":"ASSET10","index":"0.000009021431734191"},{"denom":"ASSET11","index":"0.000012526515146109"},{"denom":"ASSET12","index":"0.000011279099696349"},{"denom":"ASSET13","index":"0.000003880848065920"},{"denom":"ASSET14","index":"0.000011701064922564"},{"denom":"ASSET15","index":"0.000008365383608761"},{"denom":"ASSET16","index":"0.000005830512213323"},{"denom":"ASSET17","index":"0.000004142651308462"},{"denom":"ASSET18","index":"0.000001971224414436"},{"denom":"ASSET2","index":"0.000003822327341117"},{"denom":"ASSET3","index":"0.000001118053847563"},{"denom":"ASSET4","index":"0.000010521410312050"},{"denom":"ASSET5","index":"0.000000865490719463"},{"denom":"ASSET6","index":"0.000003529723717099"},{"denom":"ASSET7","index":"0.000005408546987108"},{"denom":"ASSET8","index":"0.000007056367396050"},{"denom":"ASSET9","index":"0.000003046157727933"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003043964098015"},{"denom":"ASSET1","index":"0.000025828331615061"},{"denom":"ASSET10","index":"0.000020594675215425"},{"denom":"ASSET11","index":"0.000025661520704142"},{"denom":"ASSET12","index":"0.000024456429429906"},{"denom":"ASSET13","index":"0.000008058244190043"},{"denom":"ASSET14","index":"0.000023555461855486"},{"denom":"ASSET15","index":"0.000018552812657155"},{"denom":"ASSET16","index":"0.000011456604402492"},{"denom":"ASSET17","index":"0.000008987560143691"},{"denom":"ASSET18","index":"0.000003716794339222"},{"denom":"ASSET2","index":"0.000007820148034807"},{"denom":"ASSET3","index":"0.000002173135080244"},{"denom":"ASSET4","index":"0.000020938599170426"},{"denom":"ASSET5","index":"0.000001690207511083"},{"denom":"ASSET6","index":"0.000006829800145738"},{"denom":"ASSET7","index":"0.000010729300481432"},{"denom":"ASSET8","index":"0.000014648719853803"},{"denom":"ASSET9","index":"0.000006217447736766"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000000977108719668"},{"denom":"ASSET1","index":"0.000008146517162771"},{"denom":"ASSET10","index":"0.000005675852121603"},{"denom":"ASSET11","index":"0.000007881108738917"},{"denom":"ASSET12","index":"0.000007096716963958"},{"denom":"ASSET13","index":"0.000002441926549413"},{"denom":"ASSET14","index":"0.000007362125387813"},{"denom":"ASSET15","index":"0.000005263370239944"},{"denom":"ASSET16","index":"0.000003670074447059"},{"denom":"ASSET17","index":"0.000002605905002368"},{"denom":"ASSET18","index":"0.000001241671893765"},{"denom":"ASSET2","index":"0.000002404735560083"},{"denom":"ASSET3","index":"0.000000703247798239"},{"denom":"ASSET4","index":"0.000006620841350486"},{"denom":"ASSET5","index":"0.000000546031343344"},{"denom":"ASSET6","index":"0.000002222161612464"},{"denom":"ASSET7","index":"0.000003402975523689"},{"denom":"ASSET8","index":"0.000004440942225898"},{"denom":"ASSET9","index":"0.000001917871699764"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000002320380931676"},{"denom":"ASSET1","index":"0.000019748951316256"},{"denom":"ASSET10","index":"0.000016101172379351"},{"denom":"ASSET11","index":"0.000019714000020718"},{"denom":"ASSET12","index":"0.000018967805559844"},{"denom":"ASSET13","index":"0.000006204998608741"},{"denom":"ASSET14","index":"0.000018041457784230"},{"denom":"ASSET15","index":"0.000014440911570898"},{"denom":"ASSET16","index":"0.000008738221404310"},{"denom":"ASSET17","index":"0.000006970584758543"},{"denom":"ASSET18","index":"0.000002814127990287"},{"denom":"ASSET2","index":"0.000006006105656449"},{"denom":"ASSET3","index":"0.000001653724297068"},{"denom":"ASSET4","index":"0.000016005284799403"},{"denom":"ASSET5","index":"0.000001288969102308"},{"denom":"ASSET6","index":"0.000005195185892122"},{"denom":"ASSET7","index":"0.000008196101819524"},{"denom":"ASSET8","index":"0.000011280171312915"},{"denom":"ASSET9","index":"0.000004774394171461"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001745798220012"},{"denom":"ASSET1","index":"0.000014553743296829"},{"denom":"ASSET10","index":"0.000010139438249561"},{"denom":"ASSET11","index":"0.000014079320164724"},{"denom":"ASSET12","index":"0.000012678243118663"},{"denom":"ASSET13","index":"0.000004363016060013"},{"denom":"ASSET14","index":"0.000013152173087429"},{"denom":"ASSET15","index":"0.000009403145384454"},{"denom":"ASSET16","index":"0.000006556113428486"},{"denom":"ASSET17","index":"0.000004655955083371"},{"denom":"ASSET18","index":"0.000002217755535422"},{"denom":"ASSET2","index":"0.000004295945845911"},{"denom":"ASSET3","index":"0.000001256580187737"},{"denom":"ASSET4","index":"0.000011827536358912"},{"denom":"ASSET5","index":"0.000000975477084515"},{"denom":"ASSET6","index":"0.000003969964878841"},{"denom":"ASSET7","index":"0.000006080210806364"},{"denom":"ASSET8","index":"0.000007934011797614"},{"denom":"ASSET9","index":"0.000003426498879278"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003342998947188"},{"denom":"ASSET1","index":"0.000028345782457833"},{"denom":"ASSET10","index":"0.000022532322238539"},{"denom":"ASSET11","index":"0.000028144588841629"},{"denom":"ASSET12","index":"0.000026788988923046"},{"denom":"ASSET13","index":"0.000008836278349189"},{"denom":"ASSET14","index":"0.000025846526421467"},{"denom":"ASSET15","index":"0.000020312521464953"},{"denom":"ASSET16","index":"0.000012581099317360"},{"denom":"ASSET17","index":"0.000009844015126225"},{"denom":"ASSET18","index":"0.000004087085525414"},{"denom":"ASSET2","index":"0.000008577030596387"},{"denom":"ASSET3","index":"0.000002386540105172"},{"denom":"ASSET4","index":"0.000022982635628207"},{"denom":"ASSET5","index":"0.000001858980311097"},{"denom":"ASSET6","index":"0.000007503977785171"},{"denom":"ASSET7","index":"0.000011778054778213"},{"denom":"ASSET8","index":"0.000016064148587518"},{"denom":"ASSET9","index":"0.000006822246648031"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001535240763659"},{"denom":"ASSET1","index":"0.000012802535686671"},{"denom":"ASSET10","index":"0.000008918976928097"},{"denom":"ASSET11","index":"0.000012384847277788"},{"denom":"ASSET12","index":"0.000011152366284839"},{"denom":"ASSET13","index":"0.000003838101909148"},{"denom":"ASSET14","index":"0.000011569197017318"},{"denom":"ASSET15","index":"0.000008271431242866"},{"denom":"ASSET16","index":"0.000005767016142371"},{"denom":"ASSET17","index":"0.000004095404830432"},{"denom":"ASSET18","index":"0.000001951213819735"},{"denom":"ASSET2","index":"0.000003778922237253"},{"denom":"ASSET3","index":"0.000001105544885116"},{"denom":"ASSET4","index":"0.000010403614783903"},{"denom":"ASSET5","index":"0.000000857676404279"},{"denom":"ASSET6","index":"0.000003491600641819"},{"denom":"ASSET7","index":"0.000005348470057083"},{"denom":"ASSET8","index":"0.000006978912901618"},{"denom":"ASSET9","index":"0.000003013874884636"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003086246918243"},{"denom":"ASSET1","index":"0.000026194228204796"},{"denom":"ASSET10","index":"0.000020951998769875"},{"denom":"ASSET11","index":"0.000026042273492864"},{"denom":"ASSET12","index":"0.000024853724280460"},{"denom":"ASSET13","index":"0.000008181454895403"},{"denom":"ASSET14","index":"0.000023895275980533"},{"denom":"ASSET15","index":"0.000018864347888264"},{"denom":"ASSET16","index":"0.000011616907749245"},{"denom":"ASSET17","index":"0.000009133094250657"},{"denom":"ASSET18","index":"0.000003766346411006"},{"denom":"ASSET2","index":"0.000007935833032906"},{"denom":"ASSET3","index":"0.000002202232138461"},{"denom":"ASSET4","index":"0.000021234941701767"},{"denom":"ASSET5","index":"0.000001715417631736"},{"denom":"ASSET6","index":"0.000006923101305069"},{"denom":"ASSET7","index":"0.000010881195638563"},{"denom":"ASSET8","index":"0.000014873239564067"},{"denom":"ASSET9","index":"0.000006310901439146"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001694764141112"},{"denom":"ASSET1","index":"0.000014130580032100"},{"denom":"ASSET10","index":"0.000009844524497723"},{"denom":"ASSET11","index":"0.000013669508873851"},{"denom":"ASSET12","index":"0.000012309527666765"},{"denom":"ASSET13","index":"0.000004236016804025"},{"denom":"ASSET14","index":"0.000012769407426673"},{"denom":"ASSET15","index":"0.000009129685492685"},{"denom":"ASSET16","index":"0.000006365641339869"},{"denom":"ASSET17","index":"0.000004520761007698"},{"denom":"ASSET18","index":"0.000002153452502679"},{"denom":"ASSET2","index":"0.000004171085594400"},{"denom":"ASSET3","index":"0.000001219991901933"},{"denom":"ASSET4","index":"0.000011483292916774"},{"denom":"ASSET5","index":"0.000000947161681676"},{"denom":"ASSET6","index":"0.000003854173635500"},{"denom":"ASSET7","index":"0.000005903378783277"},{"denom":"ASSET8","index":"0.000007702985978462"},{"denom":"ASSET9","index":"0.000003326979869284"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003333609736915"},{"denom":"ASSET1","index":"0.000028281729059652"},{"denom":"ASSET10","index":"0.000022560289398652"},{"denom":"ASSET11","index":"0.000028101042421314"},{"denom":"ASSET12","index":"0.000026787599659919"},{"denom":"ASSET13","index":"0.000008826015241086"},{"denom":"ASSET14","index":"0.000025794402991537"},{"denom":"ASSET15","index":"0.000020323143219667"},{"denom":"ASSET16","index":"0.000012547562311789"},{"denom":"ASSET17","index":"0.000009844220733470"},{"denom":"ASSET18","index":"0.000004071528772633"},{"denom":"ASSET2","index":"0.000008563776406339"},{"denom":"ASSET3","index":"0.000002379222276435"},{"denom":"ASSET4","index":"0.000022929058250150"},{"denom":"ASSET5","index":"0.000001853699834530"},{"denom":"ASSET6","index":"0.000007480326246914"},{"denom":"ASSET7","index":"0.000011749530638760"},{"denom":"ASSET8","index":"0.000016044906214881"},{"denom":"ASSET9","index":"0.000006811209452101"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001763265776240"},{"denom":"ASSET1","index":"0.000014701143889842"},{"denom":"ASSET10","index":"0.000010242267715158"},{"denom":"ASSET11","index":"0.000014221824092125"},{"denom":"ASSET12","index":"0.000012807154532407"},{"denom":"ASSET13","index":"0.000004407037513175"},{"denom":"ASSET14","index":"0.000013285723045174"},{"denom":"ASSET15","index":"0.000009498495615253"},{"denom":"ASSET16","index":"0.000006622576828953"},{"denom":"ASSET17","index":"0.000004703043783239"},{"denom":"ASSET18","index":"0.000002240331719108"},{"denom":"ASSET2","index":"0.000004339421867729"},{"denom":"ASSET3","index":"0.000001269671564485"},{"denom":"ASSET4","index":"0.000011947684550294"},{"denom":"ASSET5","index":"0.000000984934568662"},{"denom":"ASSET6","index":"0.000004010359059893"},{"denom":"ASSET7","index":"0.000006141754461338"},{"denom":"ASSET8","index":"0.000008013956555240"},{"denom":"ASSET9","index":"0.000003461169761882"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003372790294110"},{"denom":"ASSET1","index":"0.000028600279733511"},{"denom":"ASSET10","index":"0.000022731421090197"},{"denom":"ASSET11","index":"0.000028396190348540"},{"denom":"ASSET12","index":"0.000027027392524280"},{"denom":"ASSET13","index":"0.000008915082315276"},{"denom":"ASSET14","index":"0.000026078776667620"},{"denom":"ASSET15","index":"0.000020492230414373"},{"denom":"ASSET16","index":"0.000012694274413467"},{"denom":"ASSET17","index":"0.000009931274832025"},{"denom":"ASSET18","index":"0.000004123939856338"},{"denom":"ASSET2","index":"0.000008653658587521"},{"denom":"ASSET3","index":"0.000002407864000528"},{"denom":"ASSET4","index":"0.000023189126720885"},{"denom":"ASSET5","index":"0.000001875419633234"},{"denom":"ASSET6","index":"0.000007571725921487"},{"denom":"ASSET7","index":"0.000011883748947250"},{"denom":"ASSET8","index":"0.000016207221904670"},{"denom":"ASSET9","index":"0.000006883201227023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001453309126336"},{"denom":"ASSET1","index":"0.000012116886392617"},{"denom":"ASSET10","index":"0.000008441923956558"},{"denom":"ASSET11","index":"0.000011721955689254"},{"denom":"ASSET12","index":"0.000010555542874101"},{"denom":"ASSET13","index":"0.000003632376264868"},{"denom":"ASSET14","index":"0.000010950025301978"},{"denom":"ASSET15","index":"0.000007829131366891"},{"denom":"ASSET16","index":"0.000005458650595742"},{"denom":"ASSET17","index":"0.000003876686404859"},{"denom":"ASSET18","index":"0.000001846446727754"},{"denom":"ASSET2","index":"0.000003576790104576"},{"denom":"ASSET3","index":"0.000001046274984845"},{"denom":"ASSET4","index":"0.000009847267605868"},{"denom":"ASSET5","index":"0.000000812275181037"},{"denom":"ASSET6","index":"0.000003305135159925"},{"denom":"ASSET7","index":"0.000005061926790434"},{"denom":"ASSET8","index":"0.000006605339289501"},{"denom":"ASSET9","index":"0.000002852825194325"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000002846126280344"},{"denom":"ASSET1","index":"0.000024142729904188"},{"denom":"ASSET10","index":"0.000019247649074564"},{"denom":"ASSET11","index":"0.000023985879136349"},{"denom":"ASSET12","index":"0.000022859091275790"},{"denom":"ASSET13","index":"0.000007532792628817"},{"denom":"ASSET14","index":"0.000022018595952129"},{"denom":"ASSET15","index":"0.000017341431925331"},{"denom":"ASSET16","index":"0.000010711928951149"},{"denom":"ASSET17","index":"0.000008400535387767"},{"denom":"ASSET18","index":"0.000003476353193421"},{"denom":"ASSET2","index":"0.000007309791035362"},{"denom":"ASSET3","index":"0.000002031285314481"},{"denom":"ASSET4","index":"0.000019573873127075"},{"denom":"ASSET5","index":"0.000001582650339951"},{"denom":"ASSET6","index":"0.000006386635795582"},{"denom":"ASSET7","index":"0.000010030235680714"},{"denom":"ASSET8","index":"0.000013694243666513"},{"denom":"ASSET9","index":"0.000005813799926422"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001542334439671"},{"denom":"ASSET1","index":"0.000012860022908304"},{"denom":"ASSET10","index":"0.000008959505058412"},{"denom":"ASSET11","index":"0.000012440701863130"},{"denom":"ASSET12","index":"0.000011202637482986"},{"denom":"ASSET13","index":"0.000003855293405849"},{"denom":"ASSET14","index":"0.000011621234937056"},{"denom":"ASSET15","index":"0.000008308996655285"},{"denom":"ASSET16","index":"0.000005793070384239"},{"denom":"ASSET17","index":"0.000004114339021332"},{"denom":"ASSET18","index":"0.000001959846507084"},{"denom":"ASSET2","index":"0.000003796320730815"},{"denom":"ASSET3","index":"0.000001110350550164"},{"denom":"ASSET4","index":"0.000010450826325201"},{"denom":"ASSET5","index":"0.000000861797005699"},{"denom":"ASSET6","index":"0.000003507969675592"},{"denom":"ASSET7","index":"0.000005372663952407"},{"denom":"ASSET8","index":"0.000007010512417899"},{"denom":"ASSET9","index":"0.000003027866977623"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003036454064443"},{"denom":"ASSET1","index":"0.000025762443856573"},{"denom":"ASSET10","index":"0.000020552854458451"},{"denom":"ASSET11","index":"0.000025598594042577"},{"denom":"ASSET12","index":"0.000024403233064712"},{"denom":"ASSET13","index":"0.000008040226829205"},{"denom":"ASSET14","index":"0.000023496526683137"},{"denom":"ASSET15","index":"0.000018514610345002"},{"denom":"ASSET16","index":"0.000011429420030088"},{"denom":"ASSET17","index":"0.000008967792958730"},{"denom":"ASSET18","index":"0.000003708688180539"},{"denom":"ASSET2","index":"0.000007801450355100"},{"denom":"ASSET3","index":"0.000002167197324698"},{"denom":"ASSET4","index":"0.000020886439041228"},{"denom":"ASSET5","index":"0.000001688395026424"},{"denom":"ASSET6","index":"0.000006814112030993"},{"denom":"ASSET7","index":"0.000010703097412338"},{"denom":"ASSET8","index":"0.000014616213118562"},{"denom":"ASSET9","index":"0.000006204650488693"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001802604811891"},{"denom":"ASSET1","index":"0.000015041134377282"},{"denom":"ASSET10","index":"0.000010478421042795"},{"denom":"ASSET11","index":"0.000014549893343095"},{"denom":"ASSET12","index":"0.000013101148598203"},{"denom":"ASSET13","index":"0.000004508593559534"},{"denom":"ASSET14","index":"0.000013592389632390"},{"denom":"ASSET15","index":"0.000009716581133843"},{"denom":"ASSET16","index":"0.000006773297988330"},{"denom":"ASSET17","index":"0.000004812496911192"},{"denom":"ASSET18","index":"0.000002289682786467"},{"denom":"ASSET2","index":"0.000004437821546134"},{"denom":"ASSET3","index":"0.000001298874598869"},{"denom":"ASSET4","index":"0.000012222743020122"},{"denom":"ASSET5","index":"0.000001007460426045"},{"denom":"ASSET6","index":"0.000004100613717582"},{"denom":"ASSET7","index":"0.000006282056954143"},{"denom":"ASSET8","index":"0.000008197064375552"},{"denom":"ASSET9","index":"0.000003538600669994"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003500919125422"},{"denom":"ASSET1","index":"0.000029708744113596"},{"denom":"ASSET10","index":"0.000023658219501850"},{"denom":"ASSET11","index":"0.000029508250092955"},{"denom":"ASSET12","index":"0.000028107871580940"},{"denom":"ASSET13","index":"0.000009266072102552"},{"denom":"ASSET14","index":"0.000027092614384257"},{"denom":"ASSET15","index":"0.000021318431245277"},{"denom":"ASSET16","index":"0.000013180724612002"},{"denom":"ASSET17","index":"0.000010330094773179"},{"denom":"ASSET18","index":"0.000004277644880979"},{"denom":"ASSET2","index":"0.000008990842831989"},{"denom":"ASSET3","index":"0.000002500335792843"},{"denom":"ASSET4","index":"0.000024086210482120"},{"denom":"ASSET5","index":"0.000001946754653173"},{"denom":"ASSET6","index":"0.000007858889858659"},{"denom":"ASSET7","index":"0.000012341576470869"},{"denom":"ASSET8","index":"0.000016843078118646"},{"denom":"ASSET9","index":"0.000007150129263591"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001563811170888"},{"denom":"ASSET1","index":"0.000013038374863878"},{"denom":"ASSET10","index":"0.000009083864212622"},{"denom":"ASSET11","index":"0.000012612362006834"},{"denom":"ASSET12","index":"0.000011358137819015"},{"denom":"ASSET13","index":"0.000003908204905926"},{"denom":"ASSET14","index":"0.000011781504633469"},{"denom":"ASSET15","index":"0.000008423676586333"},{"denom":"ASSET16","index":"0.000005872891529250"},{"denom":"ASSET17","index":"0.000004170163122369"},{"denom":"ASSET18","index":"0.000001987177985342"},{"denom":"ASSET2","index":"0.000003848668947643"},{"denom":"ASSET3","index":"0.000001125891122188"},{"denom":"ASSET4","index":"0.000010596077552999"},{"denom":"ASSET5","index":"0.000000873194054811"},{"denom":"ASSET6","index":"0.000003556281241411"},{"denom":"ASSET7","index":"0.000005446878672206"},{"denom":"ASSET8","index":"0.000007107270397641"},{"denom":"ASSET9","index":"0.000003069409404789"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003311345528520"},{"denom":"ASSET1","index":"0.000028134750769747"},{"denom":"ASSET10","index":"0.000022648872120201"},{"denom":"ASSET11","index":"0.000028007957662740"},{"denom":"ASSET12","index":"0.000026803793052874"},{"denom":"ASSET13","index":"0.000008804941803873"},{"denom":"ASSET14","index":"0.000025676450668466"},{"denom":"ASSET15","index":"0.000020365161363483"},{"denom":"ASSET16","index":"0.000012467103206876"},{"denom":"ASSET17","index":"0.000009848512066991"},{"denom":"ASSET18","index":"0.000004032794375330"},{"denom":"ASSET2","index":"0.000008534928074651"},{"denom":"ASSET3","index":"0.000002362590241163"},{"denom":"ASSET4","index":"0.000022806063702805"},{"denom":"ASSET5","index":"0.000001840254083448"},{"denom":"ASSET6","index":"0.000007424521355960"},{"denom":"ASSET7","index":"0.000011683846998076"},{"denom":"ASSET8","index":"0.000016006498096466"},{"denom":"ASSET9","index":"0.000006786333067798"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001600184479142"},{"denom":"ASSET1","index":"0.000013342157474081"},{"denom":"ASSET10","index":"0.000009295060662992"},{"denom":"ASSET11","index":"0.000012907134644369"},{"denom":"ASSET12","index":"0.000011622469236023"},{"denom":"ASSET13","index":"0.000003999732516397"},{"denom":"ASSET14","index":"0.000012056763384279"},{"denom":"ASSET15","index":"0.000008620301633991"},{"denom":"ASSET16","index":"0.000006010164655719"},{"denom":"ASSET17","index":"0.000004268615973958"},{"denom":"ASSET18","index":"0.000002033021264483"},{"denom":"ASSET2","index":"0.000003938523274026"},{"denom":"ASSET3","index":"0.000001152045383207"},{"denom":"ASSET4","index":"0.000010842780077243"},{"denom":"ASSET5","index":"0.000000894092147498"},{"denom":"ASSET6","index":"0.000003639035195279"},{"denom":"ASSET7","index":"0.000005573684463094"},{"denom":"ASSET8","index":"0.000007272969620361"},{"denom":"ASSET9","index":"0.000003141345760282"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003037978324998"},{"denom":"ASSET1","index":"0.000025756345113171"},{"denom":"ASSET10","index":"0.000020449699671521"},{"denom":"ASSET11","index":"0.000025567125107120"},{"denom":"ASSET12","index":"0.000024323299608917"},{"denom":"ASSET13","index":"0.000008026089638757"},{"denom":"ASSET14","index":"0.000023482777870484"},{"denom":"ASSET15","index":"0.000018439819094125"},{"denom":"ASSET16","index":"0.000011433094032389"},{"denom":"ASSET17","index":"0.000008938487942114"},{"denom":"ASSET18","index":"0.000003715472889790"},{"denom":"ASSET2","index":"0.000007791978720736"},{"denom":"ASSET3","index":"0.000002168844641333"},{"denom":"ASSET4","index":"0.000020883291069830"},{"denom":"ASSET5","index":"0.000001689134510364"},{"denom":"ASSET6","index":"0.000006819968009550"},{"denom":"ASSET7","index":"0.000010702337477897"},{"denom":"ASSET8","index":"0.000014590947163921"},{"denom":"ASSET9","index":"0.000006197850437110"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001732863553160"},{"denom":"ASSET1","index":"0.000014476512568697"},{"denom":"ASSET10","index":"0.000010084697727409"},{"denom":"ASSET11","index":"0.000014004946421444"},{"denom":"ASSET12","index":"0.000012607292539223"},{"denom":"ASSET13","index":"0.000004334999642824"},{"denom":"ASSET14","index":"0.000013078858686476"},{"denom":"ASSET15","index":"0.000009351781667220"},{"denom":"ASSET16","index":"0.000006516703263852"},{"denom":"ASSET17","index":"0.000004630438674838"},{"denom":"ASSET18","index":"0.000002204429700414"},{"denom":"ASSET2","index":"0.000004272502924514"},{"denom":"ASSET3","index":"0.000001249934366214"},{"denom":"ASSET4","index":"0.000011760746082105"},{"denom":"ASSET5","index":"0.000000965858373893"},{"denom":"ASSET6","index":"0.000003948656293267"},{"denom":"ASSET7","index":"0.000006045137116599"},{"denom":"ASSET8","index":"0.000007891631066688"},{"denom":"ASSET9","index":"0.000003403230388010"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003203314564743"},{"denom":"ASSET1","index":"0.000027174750089688"},{"denom":"ASSET10","index":"0.000021494761442080"},{"denom":"ASSET11","index":"0.000026954579685264"},{"denom":"ASSET12","index":"0.000025598519259277"},{"denom":"ASSET13","index":"0.000008453363478510"},{"denom":"ASSET14","index":"0.000024766008219885"},{"denom":"ASSET15","index":"0.000019395989679368"},{"denom":"ASSET16","index":"0.000012063312986412"},{"denom":"ASSET17","index":"0.000009406957788586"},{"denom":"ASSET18","index":"0.000003925664786352"},{"denom":"ASSET2","index":"0.000008214094571203"},{"denom":"ASSET3","index":"0.000002289770772075"},{"denom":"ASSET4","index":"0.000022031271429646"},{"denom":"ASSET5","index":"0.000001779377444361"},{"denom":"ASSET6","index":"0.000007202120906665"},{"denom":"ASSET7","index":"0.000011290805949933"},{"denom":"ASSET8","index":"0.000015376618183469"},{"denom":"ASSET9","index":"0.000006529467958809"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001687731873143"},{"denom":"ASSET1","index":"0.000014069560961171"},{"denom":"ASSET10","index":"0.000009802495056563"},{"denom":"ASSET11","index":"0.000013610740912442"},{"denom":"ASSET12","index":"0.000012256373563096"},{"denom":"ASSET13","index":"0.000004217751625940"},{"denom":"ASSET14","index":"0.000012714404583367"},{"denom":"ASSET15","index":"0.000009090791386823"},{"denom":"ASSET16","index":"0.000006338265608675"},{"denom":"ASSET17","index":"0.000004501407356839"},{"denom":"ASSET18","index":"0.000002144184836496"},{"denom":"ASSET2","index":"0.000004153051292327"},{"denom":"ASSET3","index":"0.000001214709312157"},{"denom":"ASSET4","index":"0.000011433811394910"},{"denom":"ASSET5","index":"0.000000942889008137"},{"denom":"ASSET6","index":"0.000003837834423079"},{"denom":"ASSET7","index":"0.000005877867503028"},{"denom":"ASSET8","index":"0.000007669751132718"},{"denom":"ASSET9","index":"0.000003312735983819"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003310751488522"},{"denom":"ASSET1","index":"0.000028084250149300"},{"denom":"ASSET10","index":"0.000022395324527460"},{"denom":"ASSET11","index":"0.000027902986790638"},{"denom":"ASSET12","index":"0.000026594787286768"},{"denom":"ASSET13","index":"0.000008763085936534"},{"denom":"ASSET14","index":"0.000025613920456358"},{"denom":"ASSET15","index":"0.000020176020856033"},{"denom":"ASSET16","index":"0.000012460451689171"},{"denom":"ASSET17","index":"0.000009773335616478"},{"denom":"ASSET18","index":"0.000004043661907525"},{"denom":"ASSET2","index":"0.000008503271494062"},{"denom":"ASSET3","index":"0.000002362859659779"},{"denom":"ASSET4","index":"0.000022769116693783"},{"denom":"ASSET5","index":"0.000001840413908887"},{"denom":"ASSET6","index":"0.000007429033260494"},{"denom":"ASSET7","index":"0.000011667535172652"},{"denom":"ASSET8","index":"0.000015931047386954"},{"denom":"ASSET9","index":"0.000006763232815972"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001411639939639"},{"denom":"ASSET1","index":"0.000011770559134781"},{"denom":"ASSET10","index":"0.000008200405560598"},{"denom":"ASSET11","index":"0.000011386782830640"},{"denom":"ASSET12","index":"0.000010253700018254"},{"denom":"ASSET13","index":"0.000003528795747429"},{"denom":"ASSET14","index":"0.000010636868119061"},{"denom":"ASSET15","index":"0.000007604974496011"},{"denom":"ASSET16","index":"0.000005302316671163"},{"denom":"ASSET17","index":"0.000003765386844594"},{"denom":"ASSET18","index":"0.000001793591633776"},{"denom":"ASSET2","index":"0.000003474665650649"},{"denom":"ASSET3","index":"0.000001016307772140"},{"denom":"ASSET4","index":"0.000009565822046806"},{"denom":"ASSET5","index":"0.000000788839724994"},{"denom":"ASSET6","index":"0.000003210705403426"},{"denom":"ASSET7","index":"0.000004917323960353"},{"denom":"ASSET8","index":"0.000006416545180176"},{"denom":"ASSET9","index":"0.000002771582595835"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000002915106026686"},{"denom":"ASSET1","index":"0.000024751938975568"},{"denom":"ASSET10","index":"0.000019864528416862"},{"denom":"ASSET11","index":"0.000024625253839727"},{"denom":"ASSET12","index":"0.000023534700266806"},{"denom":"ASSET13","index":"0.000007739190454504"},{"denom":"ASSET14","index":"0.000022584902384729"},{"denom":"ASSET15","index":"0.000017872912229645"},{"denom":"ASSET16","index":"0.000010972881933217"},{"denom":"ASSET17","index":"0.000008648586457086"},{"denom":"ASSET18","index":"0.000003552999450219"},{"denom":"ASSET2","index":"0.000007504215303421"},{"denom":"ASSET3","index":"0.000002079538758775"},{"denom":"ASSET4","index":"0.000020065180146540"},{"denom":"ASSET5","index":"0.000001620267199228"},{"denom":"ASSET6","index":"0.000006536798446662"},{"denom":"ASSET7","index":"0.000010280222742310"},{"denom":"ASSET8","index":"0.000014068743113537"},{"denom":"ASSET9","index":"0.000005967789042866"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001670929391506"},{"denom":"ASSET1","index":"0.000013946161101263"},{"denom":"ASSET10","index":"0.000009716355120388"},{"denom":"ASSET11","index":"0.000013489421488305"},{"denom":"ASSET12","index":"0.000012147571569489"},{"denom":"ASSET13","index":"0.000004178741924768"},{"denom":"ASSET14","index":"0.000012601474290441"},{"denom":"ASSET15","index":"0.000009009969010905"},{"denom":"ASSET16","index":"0.000006280878901179"},{"denom":"ASSET17","index":"0.000004459594233357"},{"denom":"ASSET18","index":"0.000002124832112458"},{"denom":"ASSET2","index":"0.000004116330300637"},{"denom":"ASSET3","index":"0.000001202842210524"},{"denom":"ASSET4","index":"0.000011333383563781"},{"denom":"ASSET5","index":"0.000000933337469958"},{"denom":"ASSET6","index":"0.000003804272179982"},{"denom":"ASSET7","index":"0.000005824139288221"},{"denom":"ASSET8","index":"0.000007600033683947"},{"denom":"ASSET9","index":"0.000003282284050887"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003306866574231"},{"denom":"ASSET1","index":"0.000028073670524533"},{"denom":"ASSET10","index":"0.000022410378668975"},{"denom":"ASSET11","index":"0.000027896117796052"},{"denom":"ASSET12","index":"0.000026601615360568"},{"denom":"ASSET13","index":"0.000008760019105133"},{"denom":"ASSET14","index":"0.000025604072816608"},{"denom":"ASSET15","index":"0.000020183975077340"},{"denom":"ASSET16","index":"0.000012452378452775"},{"denom":"ASSET17","index":"0.000009773941069454"},{"denom":"ASSET18","index":"0.000004038323507821"},{"denom":"ASSET2","index":"0.000008501686860316"},{"denom":"ASSET3","index":"0.000002358773872569"},{"denom":"ASSET4","index":"0.000022758821093429"},{"denom":"ASSET5","index":"0.000001837837668790"},{"denom":"ASSET6","index":"0.000007423905647148"},{"denom":"ASSET7","index":"0.000011659308440973"},{"denom":"ASSET8","index":"0.000015926660063085"},{"denom":"ASSET9","index":"0.000006759875068056"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001598361255475"},{"denom":"ASSET1","index":"0.000013324868720531"},{"denom":"ASSET10","index":"0.000009283863630055"},{"denom":"ASSET11","index":"0.000012890721875256"},{"denom":"ASSET12","index":"0.000011607749807828"},{"denom":"ASSET13","index":"0.000003994929715268"},{"denom":"ASSET14","index":"0.000012041896653103"},{"denom":"ASSET15","index":"0.000008609605674538"},{"denom":"ASSET16","index":"0.000006002777756047"},{"denom":"ASSET17","index":"0.000004262945630213"},{"denom":"ASSET18","index":"0.000002030561253910"},{"denom":"ASSET2","index":"0.000003933279565341"},{"denom":"ASSET3","index":"0.000001150586482321"},{"denom":"ASSET4","index":"0.000010829011071909"},{"denom":"ASSET5","index":"0.000000892953750521"},{"denom":"ASSET6","index":"0.000003634763049905"},{"denom":"ASSET7","index":"0.000005566684063932"},{"denom":"ASSET8","index":"0.000007263685559290"},{"denom":"ASSET9","index":"0.000003137668156809"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003119961272076"},{"denom":"ASSET1","index":"0.000026462428012801"},{"denom":"ASSET10","index":"0.000021088828135750"},{"denom":"ASSET11","index":"0.000026288818556387"},{"denom":"ASSET12","index":"0.000025049012446876"},{"denom":"ASSET13","index":"0.000008256026418292"},{"denom":"ASSET14","index":"0.000024133914778951"},{"denom":"ASSET15","index":"0.000019001193386697"},{"denom":"ASSET16","index":"0.000011741691861213"},{"denom":"ASSET17","index":"0.000009205139483526"},{"denom":"ASSET18","index":"0.000003811157018018"},{"denom":"ASSET2","index":"0.000008011229275486"},{"denom":"ASSET3","index":"0.000002226652147557"},{"denom":"ASSET4","index":"0.000021454928269907"},{"denom":"ASSET5","index":"0.000001734689929917"},{"denom":"ASSET6","index":"0.000007001091110949"},{"denom":"ASSET7","index":"0.000010994186615549"},{"denom":"ASSET8","index":"0.000015007966738007"},{"denom":"ASSET9","index":"0.000006372340046203"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001543375593884"},{"denom":"ASSET1","index":"0.000012871309378663"},{"denom":"ASSET10","index":"0.000008967332198598"},{"denom":"ASSET11","index":"0.000012451619524186"},{"denom":"ASSET12","index":"0.000011213472915376"},{"denom":"ASSET13","index":"0.000003858438984711"},{"denom":"ASSET14","index":"0.000011631932007817"},{"denom":"ASSET15","index":"0.000008316259081242"},{"denom":"ASSET16","index":"0.000005798119954378"},{"denom":"ASSET17","index":"0.000004118129774432"},{"denom":"ASSET18","index":"0.000001961834686325"},{"denom":"ASSET2","index":"0.000003799362406955"},{"denom":"ASSET3","index":"0.000001111378119041"},{"denom":"ASSET4","index":"0.000010460246548983"},{"denom":"ASSET5","index":"0.000000862764187650"},{"denom":"ASSET6","index":"0.000003511364090393"},{"denom":"ASSET7","index":"0.000005377199337864"},{"denom":"ASSET8","index":"0.000007016574370602"},{"denom":"ASSET9","index":"0.000003030136134086"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003061984062566"},{"denom":"ASSET1","index":"0.000025984754387841"},{"denom":"ASSET10","index":"0.000020750278468036"},{"denom":"ASSET11","index":"0.000025825260107338"},{"denom":"ASSET12","index":"0.000024630365005548"},{"denom":"ASSET13","index":"0.000008111503841622"},{"denom":"ASSET14","index":"0.000023701848593669"},{"denom":"ASSET15","index":"0.000018689068915475"},{"denom":"ASSET16","index":"0.000011526541772952"},{"denom":"ASSET17","index":"0.000009050861170220"},{"denom":"ASSET18","index":"0.000003739265665267"},{"denom":"ASSET2","index":"0.000007869809789784"},{"denom":"ASSET3","index":"0.000002185113944095"},{"denom":"ASSET4","index":"0.000021066477214749"},{"denom":"ASSET5","index":"0.000001702392649313"},{"denom":"ASSET6","index":"0.000006871251000760"},{"denom":"ASSET7","index":"0.000010794622225013"},{"denom":"ASSET8","index":"0.000014746923085504"},{"denom":"ASSET9","index":"0.000006258895459680"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001745217677213"},{"denom":"ASSET1","index":"0.000014553842410819"},{"denom":"ASSET10","index":"0.000010139729507131"},{"denom":"ASSET11","index":"0.000014078681363843"},{"denom":"ASSET12","index":"0.000012678362515121"},{"denom":"ASSET13","index":"0.000004362304066790"},{"denom":"ASSET14","index":"0.000013152043309614"},{"denom":"ASSET15","index":"0.000009402563770700"},{"denom":"ASSET16","index":"0.000006556038246289"},{"denom":"ASSET17","index":"0.000004655394058383"},{"denom":"ASSET18","index":"0.000002217418219224"},{"denom":"ASSET2","index":"0.000004295692705065"},{"denom":"ASSET3","index":"0.000001256734357891"},{"denom":"ASSET4","index":"0.000011827217337515"},{"denom":"ASSET5","index":"0.000000975486386160"},{"denom":"ASSET6","index":"0.000003970037158850"},{"denom":"ASSET7","index":"0.000006079396946830"},{"denom":"ASSET8","index":"0.000007932673055287"},{"denom":"ASSET9","index":"0.000003426784497665"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003296605577903"},{"denom":"ASSET1","index":"0.000027950980635352"},{"denom":"ASSET10","index":"0.000022177590033485"},{"denom":"ASSET11","index":"0.000027741245317152"},{"denom":"ASSET12","index":"0.000026384837371861"},{"denom":"ASSET13","index":"0.000008707523198290"},{"denom":"ASSET14","index":"0.000025482773879389"},{"denom":"ASSET15","index":"0.000019999205716580"},{"denom":"ASSET16","index":"0.000012408342313410"},{"denom":"ASSET17","index":"0.000009694954350389"},{"denom":"ASSET18","index":"0.000004033447725414"},{"denom":"ASSET2","index":"0.000008454290496983"},{"denom":"ASSET3","index":"0.000002354114882033"},{"denom":"ASSET4","index":"0.000022662624820802"},{"denom":"ASSET5","index":"0.000001833709311257"},{"denom":"ASSET6","index":"0.000007402928859239"},{"denom":"ASSET7","index":"0.000011614131087351"},{"denom":"ASSET8","index":"0.000015829970625061"},{"denom":"ASSET9","index":"0.000006725199056296"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001696105704481"},{"denom":"ASSET1","index":"0.000014140754037071"},{"denom":"ASSET10","index":"0.000009851931515387"},{"denom":"ASSET11","index":"0.000013679695806241"},{"denom":"ASSET12","index":"0.000012318593050331"},{"denom":"ASSET13","index":"0.000004239283286244"},{"denom":"ASSET14","index":"0.000012779160793682"},{"denom":"ASSET15","index":"0.000009136800770120"},{"denom":"ASSET16","index":"0.000006369960897657"},{"denom":"ASSET17","index":"0.000004523766024416"},{"denom":"ASSET18","index":"0.000002155201985393"},{"denom":"ASSET2","index":"0.000004174048451456"},{"denom":"ASSET3","index":"0.000001220823336742"},{"denom":"ASSET4","index":"0.000011492121647193"},{"denom":"ASSET5","index":"0.000000947621810601"},{"denom":"ASSET6","index":"0.000003857193539630"},{"denom":"ASSET7","index":"0.000005907431204387"},{"denom":"ASSET8","index":"0.000007708991716984"},{"denom":"ASSET9","index":"0.000003329429011573"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003278023650839"},{"denom":"ASSET1","index":"0.000027801084973989"},{"denom":"ASSET10","index":"0.000022126343818190"},{"denom":"ASSET11","index":"0.000027610641458424"},{"denom":"ASSET12","index":"0.000026294522151225"},{"denom":"ASSET13","index":"0.000008669795972838"},{"denom":"ASSET14","index":"0.000025352034708572"},{"denom":"ASSET15","index":"0.000019941753748345"},{"denom":"ASSET16","index":"0.000012337408081897"},{"denom":"ASSET17","index":"0.000009662232510971"},{"denom":"ASSET18","index":"0.000004006663612522"},{"denom":"ASSET2","index":"0.000008414274009770"},{"denom":"ASSET3","index":"0.000002339697370568"},{"denom":"ASSET4","index":"0.000022540556466857"},{"denom":"ASSET5","index":"0.000001822656991491"},{"denom":"ASSET6","index":"0.000007357334263189"},{"denom":"ASSET7","index":"0.000011551068960203"},{"denom":"ASSET8","index":"0.000015761386047857"},{"denom":"ASSET9","index":"0.000006692834331509"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001139195115521"},{"denom":"ASSET1","index":"0.000009496890331931"},{"denom":"ASSET10","index":"0.000006616523219856"},{"denom":"ASSET11","index":"0.000009187371854639"},{"denom":"ASSET12","index":"0.000008273091178185"},{"denom":"ASSET13","index":"0.000002846943294505"},{"denom":"ASSET14","index":"0.000008582261490710"},{"denom":"ASSET15","index":"0.000006136055842283"},{"denom":"ASSET16","index":"0.000004278248649000"},{"denom":"ASSET17","index":"0.000003038433916001"},{"denom":"ASSET18","index":"0.000001447320933748"},{"denom":"ASSET2","index":"0.000002803422698710"},{"denom":"ASSET3","index":"0.000000819928024772"},{"denom":"ASSET4","index":"0.000007718116540611"},{"denom":"ASSET5","index":"0.000000636445192901"},{"denom":"ASSET6","index":"0.000002590694026466"},{"denom":"ASSET7","index":"0.000003967685677409"},{"denom":"ASSET8","index":"0.000005177210075735"},{"denom":"ASSET9","index":"0.000002236262294314"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000002735257365218"},{"denom":"ASSET1","index":"0.000023278157661741"},{"denom":"ASSET10","index":"0.000018999615823078"},{"denom":"ASSET11","index":"0.000023241706683585"},{"denom":"ASSET12","index":"0.000022372793234045"},{"denom":"ASSET13","index":"0.000007316911351959"},{"denom":"ASSET14","index":"0.000021266506066871"},{"denom":"ASSET15","index":"0.000017036720297506"},{"denom":"ASSET16","index":"0.000010298479660409"},{"denom":"ASSET17","index":"0.000008222611745720"},{"denom":"ASSET18","index":"0.000003315370510511"},{"denom":"ASSET2","index":"0.000007081336162231"},{"denom":"ASSET3","index":"0.000001948923871674"},{"denom":"ASSET4","index":"0.000018864412124408"},{"denom":"ASSET5","index":"0.000001519377842401"},{"denom":"ASSET6","index":"0.000006121992555640"},{"denom":"ASSET7","index":"0.000009661272655042"},{"denom":"ASSET8","index":"0.000013300968175029"},{"denom":"ASSET9","index":"0.000005629514833023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001583959364947"},{"denom":"ASSET1","index":"0.000013443347430705"},{"denom":"ASSET10","index":"0.000009381913161610"},{"denom":"ASSET11","index":"0.000012996589661105"},{"denom":"ASSET12","index":"0.000011696930694994"},{"denom":"ASSET13","index":"0.000004020819926404"},{"denom":"ASSET14","index":"0.000012143688464595"},{"denom":"ASSET15","index":"0.000008691469335864"},{"denom":"ASSET16","index":"0.000006051537060952"},{"denom":"ASSET17","index":"0.000004305120325241"},{"denom":"ASSET18","index":"0.000002030717134548"},{"denom":"ASSET2","index":"0.000003939591241022"},{"denom":"ASSET3","index":"0.000001137201595347"},{"denom":"ASSET4","index":"0.000010925258183866"},{"denom":"ASSET5","index":"0.000000893515539201"},{"denom":"ASSET6","index":"0.000003655290842186"},{"denom":"ASSET7","index":"0.000005604779291351"},{"denom":"ASSET8","index":"0.000007310581684371"},{"denom":"ASSET9","index":"0.000003167918729894"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003310378542013"},{"denom":"ASSET1","index":"0.000028352771206955"},{"denom":"ASSET10","index":"0.000022778987578468"},{"denom":"ASSET11","index":"0.000028201706998458"},{"denom":"ASSET12","index":"0.000026949790221900"},{"denom":"ASSET13","index":"0.000008856641706946"},{"denom":"ASSET14","index":"0.000025865717784540"},{"denom":"ASSET15","index":"0.000020483790155485"},{"denom":"ASSET16","index":"0.000012564495758376"},{"denom":"ASSET17","index":"0.000009912517491786"},{"denom":"ASSET18","index":"0.000004051289802086"},{"denom":"ASSET2","index":"0.000008567503486413"},{"denom":"ASSET3","index":"0.000002358477605528"},{"denom":"ASSET4","index":"0.000022984011222606"},{"denom":"ASSET5","index":"0.000001848359330263"},{"denom":"ASSET6","index":"0.000007474666006436"},{"denom":"ASSET7","index":"0.000011763521743703"},{"denom":"ASSET8","index":"0.000016098224703406"},{"denom":"ASSET9","index":"0.000006837907042961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001549911588522"},{"denom":"ASSET1","index":"0.000012922257740418"},{"denom":"ASSET10","index":"0.000009003081854783"},{"denom":"ASSET11","index":"0.000012500946332712"},{"denom":"ASSET12","index":"0.000011256607989023"},{"denom":"ASSET13","index":"0.000003873860414458"},{"denom":"ASSET14","index":"0.000011677307025497"},{"denom":"ASSET15","index":"0.000008349069378868"},{"denom":"ASSET16","index":"0.000005821200932633"},{"denom":"ASSET17","index":"0.000004134118188113"},{"denom":"ASSET18","index":"0.000001969385882532"},{"denom":"ASSET2","index":"0.000003814460404941"},{"denom":"ASSET3","index":"0.000001115740384942"},{"denom":"ASSET4","index":"0.000010501554259806"},{"denom":"ASSET5","index":"0.000000865892922233"},{"denom":"ASSET6","index":"0.000003524808812143"},{"denom":"ASSET7","index":"0.000005398664782463"},{"denom":"ASSET8","index":"0.000007044106283197"},{"denom":"ASSET9","index":"0.000003042260281224"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003086330633608"},{"denom":"ASSET1","index":"0.000026187842720704"},{"denom":"ASSET10","index":"0.000020922921087024"},{"denom":"ASSET11","index":"0.000026029396638226"},{"denom":"ASSET12","index":"0.000024828709288325"},{"denom":"ASSET13","index":"0.000008176601230700"},{"denom":"ASSET14","index":"0.000023887113573615"},{"denom":"ASSET15","index":"0.000018841856891118"},{"denom":"ASSET16","index":"0.000011616230118922"},{"denom":"ASSET17","index":"0.000009124242236202"},{"denom":"ASSET18","index":"0.000003767471049721"},{"denom":"ASSET2","index":"0.000007932284099147"},{"denom":"ASSET3","index":"0.000002202458257762"},{"denom":"ASSET4","index":"0.000021230824628511"},{"denom":"ASSET5","index":"0.000001715648257347"},{"denom":"ASSET6","index":"0.000006923830152599"},{"denom":"ASSET7","index":"0.000010879262909104"},{"denom":"ASSET8","index":"0.000014863870027497"},{"denom":"ASSET9","index":"0.000006308409915314"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001535524830156"},{"denom":"ASSET1","index":"0.000012804491333161"},{"denom":"ASSET10","index":"0.000008921035499248"},{"denom":"ASSET11","index":"0.000012386713938596"},{"denom":"ASSET12","index":"0.000011154325740380"},{"denom":"ASSET13","index":"0.000003838812075390"},{"denom":"ASSET14","index":"0.000011571000819920"},{"denom":"ASSET15","index":"0.000008272874264409"},{"denom":"ASSET16","index":"0.000005767863369556"},{"denom":"ASSET17","index":"0.000004096202633783"},{"denom":"ASSET18","index":"0.000001951097594671"},{"denom":"ASSET2","index":"0.000003779838221540"},{"denom":"ASSET3","index":"0.000001105621970313"},{"denom":"ASSET4","index":"0.000010405853838244"},{"denom":"ASSET5","index":"0.000000858152247148"},{"denom":"ASSET6","index":"0.000003492685157466"},{"denom":"ASSET7","index":"0.000005348983659966"},{"denom":"ASSET8","index":"0.000006980409897318"},{"denom":"ASSET9","index":"0.000003014831594025"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003051773960929"},{"denom":"ASSET1","index":"0.000025898629359040"},{"denom":"ASSET10","index":"0.000020686863907037"},{"denom":"ASSET11","index":"0.000025740096441319"},{"denom":"ASSET12","index":"0.000024551000542772"},{"denom":"ASSET13","index":"0.000008085532012369"},{"denom":"ASSET14","index":"0.000023622558405526"},{"denom":"ASSET15","index":"0.000018629920308839"},{"denom":"ASSET16","index":"0.000011487540137638"},{"denom":"ASSET17","index":"0.000009021847693812"},{"denom":"ASSET18","index":"0.000003725572559942"},{"denom":"ASSET2","index":"0.000007844221178735"},{"denom":"ASSET3","index":"0.000002178252359768"},{"denom":"ASSET4","index":"0.000020996168979716"},{"denom":"ASSET5","index":"0.000001697004218389"},{"denom":"ASSET6","index":"0.000006847583721256"},{"denom":"ASSET7","index":"0.000010758483833946"},{"denom":"ASSET8","index":"0.000014699172267780"},{"denom":"ASSET9","index":"0.000006238834616461"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001813824295534"},{"denom":"ASSET1","index":"0.000015126179984122"},{"denom":"ASSET10","index":"0.000010538420488017"},{"denom":"ASSET11","index":"0.000014633035948465"},{"denom":"ASSET12","index":"0.000013177247733614"},{"denom":"ASSET13","index":"0.000004534560738834"},{"denom":"ASSET14","index":"0.000013669547344553"},{"denom":"ASSET15","index":"0.000009773371692973"},{"denom":"ASSET16","index":"0.000006813663054312"},{"denom":"ASSET17","index":"0.000004839398062246"},{"denom":"ASSET18","index":"0.000002305279481754"},{"denom":"ASSET2","index":"0.000004465317911910"},{"denom":"ASSET3","index":"0.000001306325039660"},{"denom":"ASSET4","index":"0.000012293135053249"},{"denom":"ASSET5","index":"0.000001013309662309"},{"denom":"ASSET6","index":"0.000004125859175036"},{"denom":"ASSET7","index":"0.000006318830169217"},{"denom":"ASSET8","index":"0.000008245807377042"},{"denom":"ASSET9","index":"0.000003561783463017"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003452880861936"},{"denom":"ASSET1","index":"0.000029278299049117"},{"denom":"ASSET10","index":"0.000023254773922096"},{"denom":"ASSET11","index":"0.000029065569213605"},{"denom":"ASSET12","index":"0.000027656204711461"},{"denom":"ASSET13","index":"0.000009124518140406"},{"denom":"ASSET14","index":"0.000026695142606829"},{"denom":"ASSET15","index":"0.000020967476611979"},{"denom":"ASSET16","index":"0.000012995878924798"},{"denom":"ASSET17","index":"0.000010163149632422"},{"denom":"ASSET18","index":"0.000004223627093961"},{"denom":"ASSET2","index":"0.000008858348919255"},{"denom":"ASSET3","index":"0.000002465420318230"},{"denom":"ASSET4","index":"0.000023739200929128"},{"denom":"ASSET5","index":"0.000001919695214447"},{"denom":"ASSET6","index":"0.000007752150153146"},{"denom":"ASSET7","index":"0.000012165597276913"},{"denom":"ASSET8","index":"0.000016587849042771"},{"denom":"ASSET9","index":"0.000007046182609545"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001444852701297"},{"denom":"ASSET1","index":"0.000012048934466992"},{"denom":"ASSET10","index":"0.000008394653008080"},{"denom":"ASSET11","index":"0.000011656844181701"},{"denom":"ASSET12","index":"0.000010496256937239"},{"denom":"ASSET13","index":"0.000003612131753243"},{"denom":"ASSET14","index":"0.000010888347222530"},{"denom":"ASSET15","index":"0.000007784952614452"},{"denom":"ASSET16","index":"0.000005427509774140"},{"denom":"ASSET17","index":"0.000003854247504410"},{"denom":"ASSET18","index":"0.000001835962760875"},{"denom":"ASSET2","index":"0.000003556258887589"},{"denom":"ASSET3","index":"0.000001040019481734"},{"denom":"ASSET4","index":"0.000009792454875142"},{"denom":"ASSET5","index":"0.000000807705987699"},{"denom":"ASSET6","index":"0.000003286696816452"},{"denom":"ASSET7","index":"0.000005033459037423"},{"denom":"ASSET8","index":"0.000006568492504337"},{"denom":"ASSET9","index":"0.000002836773214080"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000002868026198866"},{"denom":"ASSET1","index":"0.000024339331661302"},{"denom":"ASSET10","index":"0.000019438063504597"},{"denom":"ASSET11","index":"0.000024190729344646"},{"denom":"ASSET12","index":"0.000023070632234294"},{"denom":"ASSET13","index":"0.000007598221307181"},{"denom":"ASSET14","index":"0.000022200415230506"},{"denom":"ASSET15","index":"0.000017506414948675"},{"denom":"ASSET16","index":"0.000010796282691537"},{"denom":"ASSET17","index":"0.000008477235924619"},{"denom":"ASSET18","index":"0.000003501529899130"},{"denom":"ASSET2","index":"0.000007371086117521"},{"denom":"ASSET3","index":"0.000002046801194740"},{"denom":"ASSET4","index":"0.000019732782799148"},{"denom":"ASSET5","index":"0.000001595074946946"},{"denom":"ASSET6","index":"0.000006435625489467"},{"denom":"ASSET7","index":"0.000010111140720407"},{"denom":"ASSET8","index":"0.000013813490690156"},{"denom":"ASSET9","index":"0.000005862589992841"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001655416114862"},{"denom":"ASSET1","index":"0.000013800538848519"},{"denom":"ASSET10","index":"0.000009615249134678"},{"denom":"ASSET11","index":"0.000013350879623065"},{"denom":"ASSET12","index":"0.000012022439267096"},{"denom":"ASSET13","index":"0.000004137189147657"},{"denom":"ASSET14","index":"0.000012471558036751"},{"denom":"ASSET15","index":"0.000008916980241305"},{"denom":"ASSET16","index":"0.000006216863065381"},{"denom":"ASSET17","index":"0.000004414983428766"},{"denom":"ASSET18","index":"0.000002102913517117"},{"denom":"ASSET2","index":"0.000004073955819077"},{"denom":"ASSET3","index":"0.000001191705038613"},{"denom":"ASSET4","index":"0.000011215538757958"},{"denom":"ASSET5","index":"0.000000924719873500"},{"denom":"ASSET6","index":"0.000003764274645778"},{"denom":"ASSET7","index":"0.000005765582472528"},{"denom":"ASSET8","index":"0.000007523144733557"},{"denom":"ASSET9","index":"0.000003249220268545"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003262792429801"},{"denom":"ASSET1","index":"0.000027679878715890"},{"denom":"ASSET10","index":"0.000022086570261210"},{"denom":"ASSET11","index":"0.000027505267384149"},{"denom":"ASSET12","index":"0.000026222420015979"},{"denom":"ASSET13","index":"0.000008638975204347"},{"denom":"ASSET14","index":"0.000025246236428505"},{"denom":"ASSET15","index":"0.000019895354512471"},{"denom":"ASSET16","index":"0.000012279836462442"},{"denom":"ASSET17","index":"0.000009636125515167"},{"denom":"ASSET18","index":"0.000003984145752232"},{"denom":"ASSET2","index":"0.000008382344169353"},{"denom":"ASSET3","index":"0.000002328549799735"},{"denom":"ASSET4","index":"0.000022441247538096"},{"denom":"ASSET5","index":"0.000001813932132265"},{"denom":"ASSET6","index":"0.000007320527694069"},{"denom":"ASSET7","index":"0.000011499571173317"},{"denom":"ASSET8","index":"0.000015704553099640"},{"denom":"ASSET9","index":"0.000006666608399750"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001676736923170"},{"denom":"ASSET1","index":"0.000013985463602132"},{"denom":"ASSET10","index":"0.000009743339709608"},{"denom":"ASSET11","index":"0.000013528824721587"},{"denom":"ASSET12","index":"0.000012182509640070"},{"denom":"ASSET13","index":"0.000004192868462713"},{"denom":"ASSET14","index":"0.000012638122365828"},{"denom":"ASSET15","index":"0.000009036319060854"},{"denom":"ASSET16","index":"0.000006299564241947"},{"denom":"ASSET17","index":"0.000004474034874554"},{"denom":"ASSET18","index":"0.000002131323494140"},{"denom":"ASSET2","index":"0.000004128220711085"},{"denom":"ASSET3","index":"0.000001207784185172"},{"denom":"ASSET4","index":"0.000011365690429028"},{"denom":"ASSET5","index":"0.000000936879321208"},{"denom":"ASSET6","index":"0.000003814217346036"},{"denom":"ASSET7","index":"0.000005841899206614"},{"denom":"ASSET8","index":"0.000007623303918134"},{"denom":"ASSET9","index":"0.000003292930713863"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003296156578493"},{"denom":"ASSET1","index":"0.000027968412540894"},{"denom":"ASSET10","index":"0.000022307812536905"},{"denom":"ASSET11","index":"0.000027788867279184"},{"denom":"ASSET12","index":"0.000026488589695468"},{"denom":"ASSET13","index":"0.000008728285856057"},{"denom":"ASSET14","index":"0.000025508064125070"},{"denom":"ASSET15","index":"0.000020096610749334"},{"denom":"ASSET16","index":"0.000012407784704791"},{"denom":"ASSET17","index":"0.000009734180928237"},{"denom":"ASSET18","index":"0.000004026678592252"},{"denom":"ASSET2","index":"0.000008468774984810"},{"denom":"ASSET3","index":"0.000002353220293961"},{"denom":"ASSET4","index":"0.000022675279511256"},{"denom":"ASSET5","index":"0.000001832728492238"},{"denom":"ASSET6","index":"0.000007397034942132"},{"denom":"ASSET7","index":"0.000011618881320506"},{"denom":"ASSET8","index":"0.000015866042832442"},{"denom":"ASSET9","index":"0.000006735898552490"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001687654189845"},{"denom":"ASSET1","index":"0.000014079752531439"},{"denom":"ASSET10","index":"0.000009809029374167"},{"denom":"ASSET11","index":"0.000013620990639222"},{"denom":"ASSET12","index":"0.000012264971552184"},{"denom":"ASSET13","index":"0.000004220977891851"},{"denom":"ASSET14","index":"0.000012723733444402"},{"denom":"ASSET15","index":"0.000009097856320367"},{"denom":"ASSET16","index":"0.000006341600132585"},{"denom":"ASSET17","index":"0.000004504710146476"},{"denom":"ASSET18","index":"0.000002144573664825"},{"denom":"ASSET2","index":"0.000004156493288528"},{"denom":"ASSET3","index":"0.000001215995376963"},{"denom":"ASSET4","index":"0.000011441411046878"},{"denom":"ASSET5","index":"0.000000943317625765"},{"denom":"ASSET6","index":"0.000003839597523622"},{"denom":"ASSET7","index":"0.000005880995823129"},{"denom":"ASSET8","index":"0.000007675510212768"},{"denom":"ASSET9","index":"0.000003314508610843"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003237925740153"},{"denom":"ASSET1","index":"0.000027468087048908"},{"denom":"ASSET10","index":"0.000021838560142362"},{"denom":"ASSET11","index":"0.000027274223261348"},{"denom":"ASSET12","index":"0.000025962125103579"},{"denom":"ASSET13","index":"0.000008562973508850"},{"denom":"ASSET14","index":"0.000025046299162567"},{"denom":"ASSET15","index":"0.000019687604125947"},{"denom":"ASSET16","index":"0.000012189946370622"},{"denom":"ASSET17","index":"0.000009540519193028"},{"denom":"ASSET18","index":"0.000003959057055270"},{"denom":"ASSET2","index":"0.000008312511220651"},{"denom":"ASSET3","index":"0.000002312646079660"},{"denom":"ASSET4","index":"0.000022269978905361"},{"denom":"ASSET5","index":"0.000001800462011039"},{"denom":"ASSET6","index":"0.000007270233858279"},{"denom":"ASSET7","index":"0.000011411601588483"},{"denom":"ASSET8","index":"0.000015567552190875"},{"denom":"ASSET9","index":"0.000006610637099613"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001700269946448"},{"denom":"ASSET1","index":"0.000014175647296985"},{"denom":"ASSET10","index":"0.000009876508679424"},{"denom":"ASSET11","index":"0.000013714231996791"},{"denom":"ASSET12","index":"0.000012349169664489"},{"denom":"ASSET13","index":"0.000004249665204630"},{"denom":"ASSET14","index":"0.000012810584964683"},{"denom":"ASSET15","index":"0.000009159649022667"},{"denom":"ASSET16","index":"0.000006386108914062"},{"denom":"ASSET17","index":"0.000004535399405845"},{"denom":"ASSET18","index":"0.000002160675585153"},{"denom":"ASSET2","index":"0.000004184037207885"},{"denom":"ASSET3","index":"0.000001223709723928"},{"denom":"ASSET4","index":"0.000011520237582522"},{"denom":"ASSET5","index":"0.000000950091460574"},{"denom":"ASSET6","index":"0.000003867003500531"},{"denom":"ASSET7","index":"0.000005922674290891"},{"denom":"ASSET8","index":"0.000007727949032131"},{"denom":"ASSET9","index":"0.000003337940880615"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003224934301433"},{"denom":"ASSET1","index":"0.000027341438894536"},{"denom":"ASSET10","index":"0.000021706571274337"},{"denom":"ASSET11","index":"0.000027141091242061"},{"denom":"ASSET12","index":"0.000025819235056226"},{"denom":"ASSET13","index":"0.000008520116782966"},{"denom":"ASSET14","index":"0.000024928444433519"},{"denom":"ASSET15","index":"0.000019573794936329"},{"denom":"ASSET16","index":"0.000012137286393349"},{"denom":"ASSET17","index":"0.000009487995483061"},{"denom":"ASSET18","index":"0.000003945309126507"},{"denom":"ASSET2","index":"0.000008271045740629"},{"denom":"ASSET3","index":"0.000002302032616683"},{"denom":"ASSET4","index":"0.000022168721917699"},{"denom":"ASSET5","index":"0.000001793343624246"},{"denom":"ASSET6","index":"0.000007240378309003"},{"denom":"ASSET7","index":"0.000011361888746536"},{"denom":"ASSET8","index":"0.000015488944629697"},{"denom":"ASSET9","index":"0.000006579500326985"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001505652349479"},{"denom":"ASSET1","index":"0.000012557843622987"},{"denom":"ASSET10","index":"0.000008748308836028"},{"denom":"ASSET11","index":"0.000012147743761261"},{"denom":"ASSET12","index":"0.000010939413811534"},{"denom":"ASSET13","index":"0.000003764130873697"},{"denom":"ASSET14","index":"0.000011348049030896"},{"denom":"ASSET15","index":"0.000008114118692716"},{"denom":"ASSET16","index":"0.000005656448807088"},{"denom":"ASSET17","index":"0.000004017514002549"},{"denom":"ASSET18","index":"0.000001912822926478"},{"denom":"ASSET2","index":"0.000003707009821528"},{"denom":"ASSET3","index":"0.000001083835348847"},{"denom":"ASSET4","index":"0.000010205627987517"},{"denom":"ASSET5","index":"0.000000840704716538"},{"denom":"ASSET6","index":"0.000003424333845410"},{"denom":"ASSET7","index":"0.000005246348945363"},{"denom":"ASSET8","index":"0.000006845738406093"},{"denom":"ASSET9","index":"0.000002955648289152"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000002959758868257"},{"denom":"ASSET1","index":"0.000025116229265451"},{"denom":"ASSET10","index":"0.000020033024535037"},{"denom":"ASSET11","index":"0.000024955202637112"},{"denom":"ASSET12","index":"0.000023787913163340"},{"denom":"ASSET13","index":"0.000007837044315100"},{"denom":"ASSET14","index":"0.000022906603767748"},{"denom":"ASSET15","index":"0.000018047329062837"},{"denom":"ASSET16","index":"0.000011142428291313"},{"denom":"ASSET17","index":"0.000008741414303940"},{"denom":"ASSET18","index":"0.000003614587489816"},{"denom":"ASSET2","index":"0.000007605147442913"},{"denom":"ASSET3","index":"0.000002112677625393"},{"denom":"ASSET4","index":"0.000020363145786569"},{"denom":"ASSET5","index":"0.000001645239564154"},{"denom":"ASSET6","index":"0.000006641765641459"},{"denom":"ASSET7","index":"0.000010434431181702"},{"denom":"ASSET8","index":"0.000014248591155217"},{"denom":"ASSET9","index":"0.000006047835874095"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001815877519749"},{"denom":"ASSET1","index":"0.000015137138459046"},{"denom":"ASSET10","index":"0.000010545739718907"},{"denom":"ASSET11","index":"0.000014644907422941"},{"denom":"ASSET12","index":"0.000013186828093302"},{"denom":"ASSET13","index":"0.000004537625601742"},{"denom":"ASSET14","index":"0.000013679059129408"},{"denom":"ASSET15","index":"0.000009780506595550"},{"denom":"ASSET16","index":"0.000006818847588397"},{"denom":"ASSET17","index":"0.000004841650653454"},{"denom":"ASSET18","index":"0.000002306040358223"},{"denom":"ASSET2","index":"0.000004467306882298"},{"denom":"ASSET3","index":"0.000001307100902598"},{"denom":"ASSET4","index":"0.000012301639507366"},{"denom":"ASSET5","index":"0.000001013416839040"},{"denom":"ASSET6","index":"0.000004128122470864"},{"denom":"ASSET7","index":"0.000006324548354661"},{"denom":"ASSET8","index":"0.000008252108546467"},{"denom":"ASSET9","index":"0.000003563504517685"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003468946703322"},{"denom":"ASSET1","index":"0.000029412495408176"},{"denom":"ASSET10","index":"0.000023372734593498"},{"denom":"ASSET11","index":"0.000029203218600002"},{"denom":"ASSET12","index":"0.000027792166579196"},{"denom":"ASSET13","index":"0.000009167641990636"},{"denom":"ASSET14","index":"0.000026818252104650"},{"denom":"ASSET15","index":"0.000021072198152383"},{"denom":"ASSET16","index":"0.000013054905852031"},{"denom":"ASSET17","index":"0.000010211457984650"},{"denom":"ASSET18","index":"0.000004240878207320"},{"denom":"ASSET2","index":"0.000008898543974195"},{"denom":"ASSET3","index":"0.000002476460623897"},{"denom":"ASSET4","index":"0.000023847831794350"},{"denom":"ASSET5","index":"0.000001927880642719"},{"denom":"ASSET6","index":"0.000007785977685579"},{"denom":"ASSET7","index":"0.000012222326144679"},{"denom":"ASSET8","index":"0.000016667230515151"},{"denom":"ASSET9","index":"0.000007078301868557"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001541968050995"},{"denom":"ASSET1","index":"0.000012857487907975"},{"denom":"ASSET10","index":"0.000008957704485900"},{"denom":"ASSET11","index":"0.000012438763825161"},{"denom":"ASSET12","index":"0.000011200869215257"},{"denom":"ASSET13","index":"0.000003854089325736"},{"denom":"ASSET14","index":"0.000011619593298070"},{"denom":"ASSET15","index":"0.000008307186714386"},{"denom":"ASSET16","index":"0.000005792349812251"},{"denom":"ASSET17","index":"0.000004113299472240"},{"denom":"ASSET18","index":"0.000001959030530305"},{"denom":"ASSET2","index":"0.000003795102401372"},{"denom":"ASSET3","index":"0.000001109951140156"},{"denom":"ASSET4","index":"0.000010448993630046"},{"denom":"ASSET5","index":"0.000000861541416423"},{"denom":"ASSET6","index":"0.000003506814193562"},{"denom":"ASSET7","index":"0.000005371133324183"},{"denom":"ASSET8","index":"0.000007009474378365"},{"denom":"ASSET9","index":"0.000003027441582881"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003053196756625"},{"denom":"ASSET1","index":"0.000025905581999278"},{"denom":"ASSET10","index":"0.000020682143152818"},{"denom":"ASSET11","index":"0.000025745380902198"},{"denom":"ASSET12","index":"0.000024550499550641"},{"denom":"ASSET13","index":"0.000008086239198545"},{"denom":"ASSET14","index":"0.000023629161089906"},{"denom":"ASSET15","index":"0.000018628151539367"},{"denom":"ASSET16","index":"0.000011492271696690"},{"denom":"ASSET17","index":"0.000009021688715966"},{"denom":"ASSET18","index":"0.000003727673632537"},{"denom":"ASSET2","index":"0.000007845443656426"},{"denom":"ASSET3","index":"0.000002178852781858"},{"denom":"ASSET4","index":"0.000021002318737231"},{"denom":"ASSET5","index":"0.000001697417622442"},{"denom":"ASSET6","index":"0.000006850319017638"},{"denom":"ASSET7","index":"0.000010761758840612"},{"denom":"ASSET8","index":"0.000014701087498525"},{"denom":"ASSET9","index":"0.000006240132889304"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001327266579501"},{"denom":"ASSET1","index":"0.000011071143497688"},{"denom":"ASSET10","index":"0.000007713614824674"},{"denom":"ASSET11","index":"0.000010710668391289"},{"denom":"ASSET12","index":"0.000009644435509525"},{"denom":"ASSET13","index":"0.000003318857014090"},{"denom":"ASSET14","index":"0.000010004910615924"},{"denom":"ASSET15","index":"0.000007152875770275"},{"denom":"ASSET16","index":"0.000004987262870528"},{"denom":"ASSET17","index":"0.000003541219052903"},{"denom":"ASSET18","index":"0.000001686360555224"},{"denom":"ASSET2","index":"0.000003267755179083"},{"denom":"ASSET3","index":"0.000000955742427695"},{"denom":"ASSET4","index":"0.000008998066353223"},{"denom":"ASSET5","index":"0.000000741667172936"},{"denom":"ASSET6","index":"0.000003019151657428"},{"denom":"ASSET7","index":"0.000004625406633453"},{"denom":"ASSET8","index":"0.000006035541053505"},{"denom":"ASSET9","index":"0.000002606193585346"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000002827520151011"},{"denom":"ASSET1","index":"0.000024027878888002"},{"denom":"ASSET10","index":"0.000019355847170480"},{"denom":"ASSET11","index":"0.000023924401086085"},{"denom":"ASSET12","index":"0.000022900407365256"},{"denom":"ASSET13","index":"0.000007521399074311"},{"denom":"ASSET14","index":"0.000021930603354990"},{"denom":"ASSET15","index":"0.000017401215805238"},{"denom":"ASSET16","index":"0.000010647310435771"},{"denom":"ASSET17","index":"0.000008415007538097"},{"denom":"ASSET18","index":"0.000003442593620109"},{"denom":"ASSET2","index":"0.000007289635767836"},{"denom":"ASSET3","index":"0.000002016810506595"},{"denom":"ASSET4","index":"0.000019477449509443"},{"denom":"ASSET5","index":"0.000001571692130579"},{"denom":"ASSET6","index":"0.000006339251488002"},{"denom":"ASSET7","index":"0.000009978075244424"},{"denom":"ASSET8","index":"0.000013673195599374"},{"denom":"ASSET9","index":"0.000005796522499795"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001571435631869"},{"denom":"ASSET1","index":"0.000013104175099655"},{"denom":"ASSET10","index":"0.000009129715488355"},{"denom":"ASSET11","index":"0.000012677036600848"},{"denom":"ASSET12","index":"0.000011415350365342"},{"denom":"ASSET13","index":"0.000003928095848150"},{"denom":"ASSET14","index":"0.000011841502401104"},{"denom":"ASSET15","index":"0.000008466812321615"},{"denom":"ASSET16","index":"0.000005902994865728"},{"denom":"ASSET17","index":"0.000004192467944409"},{"denom":"ASSET18","index":"0.000001996601204585"},{"denom":"ASSET2","index":"0.000003867921602360"},{"denom":"ASSET3","index":"0.000001131473113468"},{"denom":"ASSET4","index":"0.000010648868578800"},{"denom":"ASSET5","index":"0.000000877952110712"},{"denom":"ASSET6","index":"0.000003573955614728"},{"denom":"ASSET7","index":"0.000005473883440830"},{"denom":"ASSET8","index":"0.000007142978914228"},{"denom":"ASSET9","index":"0.000003084669944040"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003141123056438"},{"denom":"ASSET1","index":"0.000026662100889972"},{"denom":"ASSET10","index":"0.000021312054987248"},{"denom":"ASSET11","index":"0.000026503481745319"},{"denom":"ASSET12","index":"0.000025286293002787"},{"denom":"ASSET13","index":"0.000008324908472884"},{"denom":"ASSET14","index":"0.000024319980387721"},{"denom":"ASSET15","index":"0.000019190708128374"},{"denom":"ASSET16","index":"0.000011824997422058"},{"denom":"ASSET17","index":"0.000009292034078872"},{"denom":"ASSET18","index":"0.000003834040785154"},{"denom":"ASSET2","index":"0.000008076003481032"},{"denom":"ASSET3","index":"0.000002241608843356"},{"denom":"ASSET4","index":"0.000021614431804298"},{"denom":"ASSET5","index":"0.000001746420421862"},{"denom":"ASSET6","index":"0.000007047828859327"},{"denom":"ASSET7","index":"0.000011075197168484"},{"denom":"ASSET8","index":"0.000015134882092008"},{"denom":"ASSET9","index":"0.000006422749115253"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[{"denom":"ASSET0","index":"0.000001554974273829"},{"denom":"ASSET1","index":"0.000012964145980643"},{"denom":"ASSET10","index":"0.000009032293690170"},{"denom":"ASSET11","index":"0.000012541598623624"},{"denom":"ASSET12","index":"0.000011293609918011"},{"denom":"ASSET13","index":"0.000003886649549954"},{"denom":"ASSET14","index":"0.000011715371140412"},{"denom":"ASSET15","index":"0.000008376264351692"},{"denom":"ASSET16","index":"0.000005840194074962"},{"denom":"ASSET17","index":"0.000004147646243034"},{"denom":"ASSET18","index":"0.000001975556294303"},{"denom":"ASSET2","index":"0.000003826903319009"},{"denom":"ASSET3","index":"0.000001119455695618"},{"denom":"ASSET4","index":"0.000010535776146539"},{"denom":"ASSET5","index":"0.000000869071819878"},{"denom":"ASSET6","index":"0.000003536426577765"},{"denom":"ASSET7","index":"0.000005416074448708"},{"denom":"ASSET8","index":"0.000007067350213206"},{"denom":"ASSET9","index":"0.000003052560720565"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[{"denom":"ASSET0","index":"0.000003054120352223"},{"denom":"ASSET1","index":"0.000025909289170716"},{"denom":"ASSET10","index":"0.000020664041936079"},{"denom":"ASSET11","index":"0.000025743066158465"},{"denom":"ASSET12","index":"0.000024537849095602"},{"denom":"ASSET13","index":"0.000008085297309351"},{"denom":"ASSET14","index":"0.000023630023251940"},{"denom":"ASSET15","index":"0.000018615490114349"},{"denom":"ASSET16","index":"0.000011495216270003"},{"denom":"ASSET17","index":"0.000009017197770141"},{"denom":"ASSET18","index":"0.000003730110182262"},{"denom":"ASSET2","index":"0.000007845299155388"},{"denom":"ASSET3","index":"0.000002179886924088"},{"denom":"ASSET4","index":"0.000021005968780047"},{"denom":"ASSET5","index":"0.000001698230665763"},{"denom":"ASSET6","index":"0.000006853367473041"},{"denom":"ASSET7","index":"0.000010764057351149"},{"denom":"ASSET8","index":"0.000014698116791571"},{"denom":"ASSET9","index":"0.000006239964640655"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590571253465806","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061590006245897379","reward_histories":[]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET7","snapshot":{"prev_reward_weight":"0.061589441243512108","reward_histories":[]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001587610635106"},{"denom":"ASSET1","index":"0.000013244938725362"},{"denom":"ASSET10","index":"0.000009227311812032"},{"denom":"ASSET11","index":"0.000012812935831455"},{"denom":"ASSET12","index":"0.000011538527294432"},{"denom":"ASSET13","index":"0.000003970376596809"},{"denom":"ASSET14","index":"0.000011969180179294"},{"denom":"ASSET15","index":"0.000008557707326477"},{"denom":"ASSET16","index":"0.000005967039972082"},{"denom":"ASSET17","index":"0.000004237678387413"},{"denom":"ASSET18","index":"0.000002018263519969"},{"denom":"ASSET2","index":"0.000003909626189853"},{"denom":"ASSET3","index":"0.000001143457659809"},{"denom":"ASSET4","index":"0.000010763622103487"},{"denom":"ASSET5","index":"0.000000886955941552"},{"denom":"ASSET6","index":"0.000003612624200292"},{"denom":"ASSET7","index":"0.000005533687069132"},{"denom":"ASSET8","index":"0.000007219848364411"},{"denom":"ASSET9","index":"0.000003118520890387"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003152887181228"},{"denom":"ASSET1","index":"0.000026760532918289"},{"denom":"ASSET10","index":"0.000021371603424459"},{"denom":"ASSET11","index":"0.000026596151859305"},{"denom":"ASSET12","index":"0.000025366346961436"},{"denom":"ASSET13","index":"0.000008353980761099"},{"denom":"ASSET14","index":"0.000024408754798213"},{"denom":"ASSET15","index":"0.000019248058608344"},{"denom":"ASSET16","index":"0.000011870971278696"},{"denom":"ASSET17","index":"0.000009321801721671"},{"denom":"ASSET18","index":"0.000003850124607081"},{"denom":"ASSET2","index":"0.000008105134387478"},{"denom":"ASSET3","index":"0.000002250596051831"},{"denom":"ASSET4","index":"0.000021694971342643"},{"denom":"ASSET5","index":"0.000001752750611640"},{"denom":"ASSET6","index":"0.000007075802880646"},{"denom":"ASSET7","index":"0.000011117440314842"},{"denom":"ASSET8","index":"0.000015186957305377"},{"denom":"ASSET9","index":"0.000006446159830056"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001450981944084"},{"denom":"ASSET1","index":"0.000012097851501865"},{"denom":"ASSET10","index":"0.000008428524260541"},{"denom":"ASSET11","index":"0.000011703479004578"},{"denom":"ASSET12","index":"0.000010538773481717"},{"denom":"ASSET13","index":"0.000003626563958485"},{"denom":"ASSET14","index":"0.000010932552044520"},{"denom":"ASSET15","index":"0.000007816771742159"},{"denom":"ASSET16","index":"0.000005449942823954"},{"denom":"ASSET17","index":"0.000003870671031354"},{"denom":"ASSET18","index":"0.000001843572637920"},{"denom":"ASSET2","index":"0.000003571328051486"},{"denom":"ASSET3","index":"0.000001044730757120"},{"denom":"ASSET4","index":"0.000009831991445917"},{"denom":"ASSET5","index":"0.000000810720570477"},{"denom":"ASSET6","index":"0.000003299899992359"},{"denom":"ASSET7","index":"0.000005054382457699"},{"denom":"ASSET8","index":"0.000006595048508847"},{"denom":"ASSET9","index":"0.000002848509784621"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000002831039632868"},{"denom":"ASSET1","index":"0.000024014703977493"},{"denom":"ASSET10","index":"0.000019136467933987"},{"denom":"ASSET11","index":"0.000023856136612857"},{"denom":"ASSET12","index":"0.000022731094165303"},{"denom":"ASSET13","index":"0.000007491812146677"},{"denom":"ASSET14","index":"0.000021900750691559"},{"denom":"ASSET15","index":"0.000017242457090593"},{"denom":"ASSET16","index":"0.000010655585625623"},{"denom":"ASSET17","index":"0.000008353141870908"},{"denom":"ASSET18","index":"0.000003458892129556"},{"denom":"ASSET2","index":"0.000007270317321266"},{"denom":"ASSET3","index":"0.000002020551075646"},{"denom":"ASSET4","index":"0.000019470118745656"},{"denom":"ASSET5","index":"0.000001574098937698"},{"denom":"ASSET6","index":"0.000006353413461243"},{"denom":"ASSET7","index":"0.000009977493764026"},{"denom":"ASSET8","index":"0.000013619759476676"},{"denom":"ASSET9","index":"0.000005782490697784"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001596167964962"},{"denom":"ASSET1","index":"0.000013307648687747"},{"denom":"ASSET10","index":"0.000009271254138767"},{"denom":"ASSET11","index":"0.000012873344596610"},{"denom":"ASSET12","index":"0.000011592750107942"},{"denom":"ASSET13","index":"0.000003989527201016"},{"denom":"ASSET14","index":"0.000012025715131995"},{"denom":"ASSET15","index":"0.000008598149750858"},{"denom":"ASSET16","index":"0.000005994556982506"},{"denom":"ASSET17","index":"0.000004257340617956"},{"denom":"ASSET18","index":"0.000002028240277625"},{"denom":"ASSET2","index":"0.000003928376470814"},{"denom":"ASSET3","index":"0.000001148919558672"},{"denom":"ASSET4","index":"0.000010814752131731"},{"denom":"ASSET5","index":"0.000000891818678410"},{"denom":"ASSET6","index":"0.000003630210866621"},{"denom":"ASSET7","index":"0.000005559360179979"},{"denom":"ASSET8","index":"0.000007254619109209"},{"denom":"ASSET9","index":"0.000003133416978198"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003160678210357"},{"denom":"ASSET1","index":"0.000026816731621709"},{"denom":"ASSET10","index":"0.000021409695697867"},{"denom":"ASSET11","index":"0.000026650151208928"},{"denom":"ASSET12","index":"0.000025413985003091"},{"denom":"ASSET13","index":"0.000008371194471357"},{"denom":"ASSET14","index":"0.000024459575922385"},{"denom":"ASSET15","index":"0.000019283728762326"},{"denom":"ASSET16","index":"0.000011895729224726"},{"denom":"ASSET17","index":"0.000009339186085895"},{"denom":"ASSET18","index":"0.000003859320220004"},{"denom":"ASSET2","index":"0.000008121656282140"},{"denom":"ASSET3","index":"0.000002255587694637"},{"denom":"ASSET4","index":"0.000021740936259308"},{"denom":"ASSET5","index":"0.000001757304707579"},{"denom":"ASSET6","index":"0.000007091577992612"},{"denom":"ASSET7","index":"0.000011140302591406"},{"denom":"ASSET8","index":"0.000015217956063596"},{"denom":"ASSET9","index":"0.000006459479788296"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001539653287763"},{"denom":"ASSET1","index":"0.000012837628062054"},{"denom":"ASSET10","index":"0.000008944076712630"},{"denom":"ASSET11","index":"0.000012418678362380"},{"denom":"ASSET12","index":"0.000011182855597091"},{"denom":"ASSET13","index":"0.000003848344731893"},{"denom":"ASSET14","index":"0.000011600753980079"},{"denom":"ASSET15","index":"0.000008294363000211"},{"denom":"ASSET16","index":"0.000005782767435536"},{"denom":"ASSET17","index":"0.000004106968636837"},{"denom":"ASSET18","index":"0.000001956500354065"},{"denom":"ASSET2","index":"0.000003789470997435"},{"denom":"ASSET3","index":"0.000001108613446191"},{"denom":"ASSET4","index":"0.000010432741141086"},{"denom":"ASSET5","index":"0.000000860502708115"},{"denom":"ASSET6","index":"0.000003501935883605"},{"denom":"ASSET7","index":"0.000005362766419174"},{"denom":"ASSET8","index":"0.000006998089525433"},{"denom":"ASSET9","index":"0.000003022535474442"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003102081054533"},{"denom":"ASSET1","index":"0.000026328097047411"},{"denom":"ASSET10","index":"0.000021065731925672"},{"denom":"ASSET11","index":"0.000026176422512857"},{"denom":"ASSET12","index":"0.000024984864029023"},{"denom":"ASSET13","index":"0.000008223750690350"},{"denom":"ASSET14","index":"0.000024017391771060"},{"denom":"ASSET15","index":"0.000018965095888316"},{"denom":"ASSET16","index":"0.000011675661088751"},{"denom":"ASSET17","index":"0.000009181817821335"},{"denom":"ASSET18","index":"0.000003784851704842"},{"denom":"ASSET2","index":"0.000007977007181168"},{"denom":"ASSET3","index":"0.000002213531006169"},{"denom":"ASSET4","index":"0.000021343717572048"},{"denom":"ASSET5","index":"0.000001724500934679"},{"denom":"ASSET6","index":"0.000006958604580417"},{"denom":"ASSET7","index":"0.000010936011139136"},{"denom":"ASSET8","index":"0.000014950117004491"},{"denom":"ASSET9","index":"0.000006344046059941"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001722784092424"},{"denom":"ASSET1","index":"0.000014376047839207"},{"denom":"ASSET10","index":"0.000010014727915911"},{"denom":"ASSET11","index":"0.000013905627425621"},{"denom":"ASSET12","index":"0.000012523636788373"},{"denom":"ASSET13","index":"0.000004309050988454"},{"denom":"ASSET14","index":"0.000012989875687172"},{"denom":"ASSET15","index":"0.000009287144342897"},{"denom":"ASSET16","index":"0.000006475075648346"},{"denom":"ASSET17","index":"0.000004597575508787"},{"denom":"ASSET18","index":"0.000002191113748617"},{"denom":"ASSET2","index":"0.000004242146751855"},{"denom":"ASSET3","index":"0.000001239819134475"},{"denom":"ASSET4","index":"0.000011683152316098"},{"denom":"ASSET5","index":"0.000000961748401110"},{"denom":"ASSET6","index":"0.000003920170113222"},{"denom":"ASSET7","index":"0.000006004655234759"},{"denom":"ASSET8","index":"0.000007836158711656"},{"denom":"ASSET9","index":"0.000003384936220430"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003308323901116"},{"denom":"ASSET1","index":"0.000028066718381779"},{"denom":"ASSET10","index":"0.000022316311421496"},{"denom":"ASSET11","index":"0.000027867424204892"},{"denom":"ASSET12","index":"0.000026530665881565"},{"denom":"ASSET13","index":"0.000008749579510737"},{"denom":"ASSET14","index":"0.000025590688346390"},{"denom":"ASSET15","index":"0.000020116135001180"},{"denom":"ASSET16","index":"0.000012455644018572"},{"denom":"ASSET17","index":"0.000009747635771928"},{"denom":"ASSET18","index":"0.000004046709206696"},{"denom":"ASSET2","index":"0.000008491843085820"},{"denom":"ASSET3","index":"0.000002361259343526"},{"denom":"ASSET4","index":"0.000022756236881458"},{"denom":"ASSET5","index":"0.000001838827056256"},{"denom":"ASSET6","index":"0.000007428217086977"},{"denom":"ASSET7","index":"0.000011660835649526"},{"denom":"ASSET8","index":"0.000015906513514404"},{"denom":"ASSET9","index":"0.000006755948018281"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001677980890787"},{"denom":"ASSET1","index":"0.000013990275877081"},{"denom":"ASSET10","index":"0.000009746835585844"},{"denom":"ASSET11","index":"0.000013534047272362"},{"denom":"ASSET12","index":"0.000012187401487418"},{"denom":"ASSET13","index":"0.000004194217559326"},{"denom":"ASSET14","index":"0.000012642160756856"},{"denom":"ASSET15","index":"0.000009039350648091"},{"denom":"ASSET16","index":"0.000006301979019776"},{"denom":"ASSET17","index":"0.000004475595265619"},{"denom":"ASSET18","index":"0.000002132005492585"},{"denom":"ASSET2","index":"0.000004129566806967"},{"denom":"ASSET3","index":"0.000001207793600899"},{"denom":"ASSET4","index":"0.000011368981735957"},{"denom":"ASSET5","index":"0.000000937435909214"},{"denom":"ASSET6","index":"0.000003815863724495"},{"denom":"ASSET7","index":"0.000005844281079776"},{"denom":"ASSET8","index":"0.000007626584775507"},{"denom":"ASSET9","index":"0.000003293515032135"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003299297789724"},{"denom":"ASSET1","index":"0.000027989603079017"},{"denom":"ASSET10","index":"0.000022326156077139"},{"denom":"ASSET11","index":"0.000027810817552502"},{"denom":"ASSET12","index":"0.000026510364756940"},{"denom":"ASSET13","index":"0.000008734817330461"},{"denom":"ASSET14","index":"0.000025527438517331"},{"denom":"ASSET15","index":"0.000020112836713905"},{"denom":"ASSET16","index":"0.000012417417558556"},{"denom":"ASSET17","index":"0.000009741881197111"},{"denom":"ASSET18","index":"0.000004029624902086"},{"denom":"ASSET2","index":"0.000008475129511821"},{"denom":"ASSET3","index":"0.000002354634361983"},{"denom":"ASSET4","index":"0.000022691681830907"},{"denom":"ASSET5","index":"0.000001834207215432"},{"denom":"ASSET6","index":"0.000007402948949368"},{"denom":"ASSET7","index":"0.000011627814435586"},{"denom":"ASSET8","index":"0.000015878876786083"},{"denom":"ASSET9","index":"0.000006740310437402"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001570026110869"},{"denom":"ASSET1","index":"0.000013093495665706"},{"denom":"ASSET10","index":"0.000009121814411369"},{"denom":"ASSET11","index":"0.000012665871768525"},{"denom":"ASSET12","index":"0.000011405375746022"},{"denom":"ASSET13","index":"0.000003924443730811"},{"denom":"ASSET14","index":"0.000011831756550478"},{"denom":"ASSET15","index":"0.000008459245989284"},{"denom":"ASSET16","index":"0.000005898474977098"},{"denom":"ASSET17","index":"0.000004187979388376"},{"denom":"ASSET18","index":"0.000001995163822601"},{"denom":"ASSET2","index":"0.000003864775280042"},{"denom":"ASSET3","index":"0.000001129971286445"},{"denom":"ASSET4","index":"0.000010639630627815"},{"denom":"ASSET5","index":"0.000000877623463400"},{"denom":"ASSET6","index":"0.000003571405397092"},{"denom":"ASSET7","index":"0.000005469607987193"},{"denom":"ASSET8","index":"0.000007137838423287"},{"denom":"ASSET9","index":"0.000003082869956418"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003142586597057"},{"denom":"ASSET1","index":"0.000026671940208455"},{"denom":"ASSET10","index":"0.000021322845581004"},{"denom":"ASSET11","index":"0.000026513185667064"},{"denom":"ASSET12","index":"0.000025297681895631"},{"denom":"ASSET13","index":"0.000008328263582513"},{"denom":"ASSET14","index":"0.000024329302916923"},{"denom":"ASSET15","index":"0.000019199384187435"},{"denom":"ASSET16","index":"0.000011829863063918"},{"denom":"ASSET17","index":"0.000009295955073087"},{"denom":"ASSET18","index":"0.000003835509513951"},{"denom":"ASSET2","index":"0.000008079410847125"},{"denom":"ASSET3","index":"0.000002242309830967"},{"denom":"ASSET4","index":"0.000021622076491366"},{"denom":"ASSET5","index":"0.000001747112267207"},{"denom":"ASSET6","index":"0.000007050444762949"},{"denom":"ASSET7","index":"0.000011079003337441"},{"denom":"ASSET8","index":"0.000015142122511204"},{"denom":"ASSET9","index":"0.000006425848418438"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001808467589320"},{"denom":"ASSET1","index":"0.000015078627759778"},{"denom":"ASSET10","index":"0.000010504031371633"},{"denom":"ASSET11","index":"0.000014586692317421"},{"denom":"ASSET12","index":"0.000013135079536696"},{"denom":"ASSET13","index":"0.000004520160908868"},{"denom":"ASSET14","index":"0.000013624998850191"},{"denom":"ASSET15","index":"0.000009741934661752"},{"denom":"ASSET16","index":"0.000006792338136474"},{"denom":"ASSET17","index":"0.000004822580238185"},{"denom":"ASSET18","index":"0.000002296370773952"},{"denom":"ASSET2","index":"0.000004449596398694"},{"denom":"ASSET3","index":"0.000001300403116066"},{"denom":"ASSET4","index":"0.000012254031223951"},{"denom":"ASSET5","index":"0.000001010080559921"},{"denom":"ASSET6","index":"0.000004112902878720"},{"denom":"ASSET7","index":"0.000006298386565256"},{"denom":"ASSET8","index":"0.000008219757370854"},{"denom":"ASSET9","index":"0.000003550402926189"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003309574221953"},{"denom":"ASSET1","index":"0.000028041386020893"},{"denom":"ASSET10","index":"0.000022151472675705"},{"denom":"ASSET11","index":"0.000027806413413432"},{"denom":"ASSET12","index":"0.000026397319662942"},{"denom":"ASSET13","index":"0.000008723998941637"},{"denom":"ASSET14","index":"0.000025556208464743"},{"denom":"ASSET15","index":"0.000019995491235522"},{"denom":"ASSET16","index":"0.000012454763771642"},{"denom":"ASSET17","index":"0.000009698403814011"},{"denom":"ASSET18","index":"0.000004053515914738"},{"denom":"ASSET2","index":"0.000008473190716338"},{"denom":"ASSET3","index":"0.000002361530218445"},{"denom":"ASSET4","index":"0.000022738669483779"},{"denom":"ASSET5","index":"0.000001840125976242"},{"denom":"ASSET6","index":"0.000007434008870747"},{"denom":"ASSET7","index":"0.000011653935721338"},{"denom":"ASSET8","index":"0.000015861166565423"},{"denom":"ASSET9","index":"0.000006742103174023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001541663174382"},{"denom":"ASSET1","index":"0.000012852134347969"},{"denom":"ASSET10","index":"0.000008953505358908"},{"denom":"ASSET11","index":"0.000012432624080325"},{"denom":"ASSET12","index":"0.000011194846435509"},{"denom":"ASSET13","index":"0.000003852675567517"},{"denom":"ASSET14","index":"0.000011614356703153"},{"denom":"ASSET15","index":"0.000008302745615107"},{"denom":"ASSET16","index":"0.000005788648746115"},{"denom":"ASSET17","index":"0.000004110607675539"},{"denom":"ASSET18","index":"0.000001958208705152"},{"denom":"ASSET2","index":"0.000003793380830041"},{"denom":"ASSET3","index":"0.000001108811590805"},{"denom":"ASSET4","index":"0.000010443285637998"},{"denom":"ASSET5","index":"0.000000861256061842"},{"denom":"ASSET6","index":"0.000003505801353281"},{"denom":"ASSET7","index":"0.000005369138478471"},{"denom":"ASSET8","index":"0.000007005673232815"},{"denom":"ASSET9","index":"0.000003025513979724"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003039218640043"},{"denom":"ASSET1","index":"0.000025782167100542"},{"denom":"ASSET10","index":"0.000020571830356487"},{"denom":"ASSET11","index":"0.000025618833387376"},{"denom":"ASSET12","index":"0.000024423552320522"},{"denom":"ASSET13","index":"0.000008046369560384"},{"denom":"ASSET14","index":"0.000023515194162679"},{"denom":"ASSET15","index":"0.000018530055863607"},{"denom":"ASSET16","index":"0.000011436803083329"},{"denom":"ASSET17","index":"0.000008974370950503"},{"denom":"ASSET18","index":"0.000003710743638587"},{"denom":"ASSET2","index":"0.000007806913274081"},{"denom":"ASSET3","index":"0.000002167934051431"},{"denom":"ASSET4","index":"0.000020901035076857"},{"denom":"ASSET5","index":"0.000001689640060433"},{"denom":"ASSET6","index":"0.000006819038075969"},{"denom":"ASSET7","index":"0.000010710838619674"},{"denom":"ASSET8","index":"0.000014627524271874"},{"denom":"ASSET9","index":"0.000006209166066794"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001647112085871"},{"denom":"ASSET1","index":"0.000013744257107488"},{"denom":"ASSET10","index":"0.000009576415679235"},{"denom":"ASSET11","index":"0.000013296650962579"},{"denom":"ASSET12","index":"0.000011973464376313"},{"denom":"ASSET13","index":"0.000004120724991946"},{"denom":"ASSET14","index":"0.000012421070521222"},{"denom":"ASSET15","index":"0.000008879485058873"},{"denom":"ASSET16","index":"0.000006191885004573"},{"denom":"ASSET17","index":"0.000004397534055245"},{"denom":"ASSET18","index":"0.000002094718230780"},{"denom":"ASSET2","index":"0.000004055939892025"},{"denom":"ASSET3","index":"0.000001185763647039"},{"denom":"ASSET4","index":"0.000011170521774262"},{"denom":"ASSET5","index":"0.000000920733692817"},{"denom":"ASSET6","index":"0.000003749683056035"},{"denom":"ASSET7","index":"0.000005742315674818"},{"denom":"ASSET8","index":"0.000007491513372686"},{"denom":"ASSET9","index":"0.000003235328626359"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003240628198198"},{"denom":"ASSET1","index":"0.000027504329283847"},{"denom":"ASSET10","index":"0.000021940320319100"},{"denom":"ASSET11","index":"0.000027329345632586"},{"denom":"ASSET12","index":"0.000026051323397008"},{"denom":"ASSET13","index":"0.000008583813762496"},{"denom":"ASSET14","index":"0.000025085743554439"},{"denom":"ASSET15","index":"0.000019763439018939"},{"denom":"ASSET16","index":"0.000012202670980955"},{"denom":"ASSET17","index":"0.000009573761377605"},{"denom":"ASSET18","index":"0.000003959875003044"},{"denom":"ASSET2","index":"0.000008327243811102"},{"denom":"ASSET3","index":"0.000002312908746824"},{"denom":"ASSET4","index":"0.000022299606884078"},{"denom":"ASSET5","index":"0.000001802093087045"},{"denom":"ASSET6","index":"0.000007275447910852"},{"denom":"ASSET7","index":"0.000011427132859276"},{"denom":"ASSET8","index":"0.000015602768933976"},{"denom":"ASSET9","index":"0.000006623309483786"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001570100817458"},{"denom":"ASSET1","index":"0.000013089401919768"},{"denom":"ASSET10","index":"0.000009119446705996"},{"denom":"ASSET11","index":"0.000012662761138201"},{"denom":"ASSET12","index":"0.000011403229713207"},{"denom":"ASSET13","index":"0.000003924467777503"},{"denom":"ASSET14","index":"0.000011828301962489"},{"denom":"ASSET15","index":"0.000008457526081653"},{"denom":"ASSET16","index":"0.000005896112859965"},{"denom":"ASSET17","index":"0.000004187981201412"},{"denom":"ASSET18","index":"0.000001993604534455"},{"denom":"ASSET2","index":"0.000003863295018381"},{"denom":"ASSET3","index":"0.000001129343245325"},{"denom":"ASSET4","index":"0.000010637785958043"},{"denom":"ASSET5","index":"0.000000876809547412"},{"denom":"ASSET6","index":"0.000003569979481054"},{"denom":"ASSET7","index":"0.000005467903546113"},{"denom":"ASSET8","index":"0.000007135253365252"},{"denom":"ASSET9","index":"0.000003082165940365"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003152920186871"},{"denom":"ASSET1","index":"0.000026760622644749"},{"denom":"ASSET10","index":"0.000021403995558307"},{"denom":"ASSET11","index":"0.000026604821287493"},{"denom":"ASSET12","index":"0.000025390105019040"},{"denom":"ASSET13","index":"0.000008358570294936"},{"denom":"ASSET14","index":"0.000024411618525071"},{"denom":"ASSET15","index":"0.000019270968708391"},{"denom":"ASSET16","index":"0.000011868219590271"},{"denom":"ASSET17","index":"0.000009330682788205"},{"denom":"ASSET18","index":"0.000003846613833157"},{"denom":"ASSET2","index":"0.000008107095494272"},{"denom":"ASSET3","index":"0.000002249072663818"},{"denom":"ASSET4","index":"0.000021694789218154"},{"denom":"ASSET5","index":"0.000001752328837510"},{"denom":"ASSET6","index":"0.000007072706136469"},{"denom":"ASSET7","index":"0.000011115912260277"},{"denom":"ASSET8","index":"0.000015194187602297"},{"denom":"ASSET9","index":"0.000006447849146068"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001655272585709"},{"denom":"ASSET1","index":"0.000013804891217292"},{"denom":"ASSET10","index":"0.000009617831976915"},{"denom":"ASSET11","index":"0.000013354722791997"},{"denom":"ASSET12","index":"0.000012025575872058"},{"denom":"ASSET13","index":"0.000004138592201887"},{"denom":"ASSET14","index":"0.000012474922822124"},{"denom":"ASSET15","index":"0.000008919578032571"},{"denom":"ASSET16","index":"0.000006218567480803"},{"denom":"ASSET17","index":"0.000004416250829168"},{"denom":"ASSET18","index":"0.000002103798060547"},{"denom":"ASSET2","index":"0.000004074517134053"},{"denom":"ASSET3","index":"0.000001191960556756"},{"denom":"ASSET4","index":"0.000011218887197534"},{"denom":"ASSET5","index":"0.000000924981107448"},{"denom":"ASSET6","index":"0.000003765642448085"},{"denom":"ASSET7","index":"0.000005766756105051"},{"denom":"ASSET8","index":"0.000007525534569569"},{"denom":"ASSET9","index":"0.000003250577479728"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003218229550028"},{"denom":"ASSET1","index":"0.000027301798081180"},{"denom":"ASSET10","index":"0.000021745417841688"},{"denom":"ASSET11","index":"0.000027119412726222"},{"denom":"ASSET12","index":"0.000025834540696398"},{"denom":"ASSET13","index":"0.000008516471999212"},{"denom":"ASSET14","index":"0.000024897496810197"},{"denom":"ASSET15","index":"0.000019595694306931"},{"denom":"ASSET16","index":"0.000012114595919920"},{"denom":"ASSET17","index":"0.000009493460517354"},{"denom":"ASSET18","index":"0.000003932937797970"},{"denom":"ASSET2","index":"0.000008264095290285"},{"denom":"ASSET3","index":"0.000002297232512411"},{"denom":"ASSET4","index":"0.000022135581489268"},{"denom":"ASSET5","index":"0.000001789675045728"},{"denom":"ASSET6","index":"0.000007223884768794"},{"denom":"ASSET7","index":"0.000011342725097550"},{"denom":"ASSET8","index":"0.000015481678980085"},{"denom":"ASSET9","index":"0.000006573861400446"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001621688869515"},{"denom":"ASSET1","index":"0.000013520143478358"},{"denom":"ASSET10","index":"0.000009419470546393"},{"denom":"ASSET11","index":"0.000013079418684764"},{"denom":"ASSET12","index":"0.000011778054243646"},{"denom":"ASSET13","index":"0.000004053107355591"},{"denom":"ASSET14","index":"0.000012218035825109"},{"denom":"ASSET15","index":"0.000008735715386011"},{"denom":"ASSET16","index":"0.000006090623412316"},{"denom":"ASSET17","index":"0.000004325494601547"},{"denom":"ASSET18","index":"0.000002060555632782"},{"denom":"ASSET2","index":"0.000003991049142665"},{"denom":"ASSET3","index":"0.000001167586257565"},{"denom":"ASSET4","index":"0.000010987648142487"},{"denom":"ASSET5","index":"0.000000905975587506"},{"denom":"ASSET6","index":"0.000003688190199343"},{"denom":"ASSET7","index":"0.000005648412194460"},{"denom":"ASSET8","index":"0.000007370434701640"},{"denom":"ASSET9","index":"0.000003183549162496"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003224207736427"},{"denom":"ASSET1","index":"0.000027358045975387"},{"denom":"ASSET10","index":"0.000021853454393362"},{"denom":"ASSET11","index":"0.000027191663823691"},{"denom":"ASSET12","index":"0.000025935625558190"},{"denom":"ASSET13","index":"0.000008541293337334"},{"denom":"ASSET14","index":"0.000024954691173737"},{"denom":"ASSET15","index":"0.000019681390400685"},{"denom":"ASSET16","index":"0.000012135703886829"},{"denom":"ASSET17","index":"0.000009530848033034"},{"denom":"ASSET18","index":"0.000003936224347496"},{"denom":"ASSET2","index":"0.000008286598878032"},{"denom":"ASSET3","index":"0.000002301038846536"},{"denom":"ASSET4","index":"0.000022179933336345"},{"denom":"ASSET5","index":"0.000001792519798769"},{"denom":"ASSET6","index":"0.000007234068845872"},{"denom":"ASSET7","index":"0.000011365474292791"},{"denom":"ASSET8","index":"0.000015527655320242"},{"denom":"ASSET9","index":"0.000006590765495457"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001684197417987"},{"denom":"ASSET1","index":"0.000014041270025306"},{"denom":"ASSET10","index":"0.000009782380002809"},{"denom":"ASSET11","index":"0.000013583439347888"},{"denom":"ASSET12","index":"0.000012231725730520"},{"denom":"ASSET13","index":"0.000004209525615418"},{"denom":"ASSET14","index":"0.000012688588478388"},{"denom":"ASSET15","index":"0.000009072403677468"},{"denom":"ASSET16","index":"0.000006325419612958"},{"denom":"ASSET17","index":"0.000004492161044183"},{"denom":"ASSET18","index":"0.000002139608271529"},{"denom":"ASSET2","index":"0.000004144674335530"},{"denom":"ASSET3","index":"0.000001212331762086"},{"denom":"ASSET4","index":"0.000011410921471639"},{"denom":"ASSET5","index":"0.000000940827523152"},{"denom":"ASSET6","index":"0.000003830097231595"},{"denom":"ASSET7","index":"0.000005866137041214"},{"denom":"ASSET8","index":"0.000007654386885887"},{"denom":"ASSET9","index":"0.000003305963379963"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003193080094990"},{"denom":"ASSET1","index":"0.000027069824276969"},{"denom":"ASSET10","index":"0.000021489349079139"},{"denom":"ASSET11","index":"0.000026870184080824"},{"denom":"ASSET12","index":"0.000025561356340007"},{"denom":"ASSET13","index":"0.000008435097288603"},{"denom":"ASSET14","index":"0.000024680442306089"},{"denom":"ASSET15","index":"0.000019377704768171"},{"denom":"ASSET16","index":"0.000012016988086595"},{"denom":"ASSET17","index":"0.000009392966467546"},{"denom":"ASSET18","index":"0.000003905368596850"},{"denom":"ASSET2","index":"0.000008189075060838"},{"denom":"ASSET3","index":"0.000002279664955012"},{"denom":"ASSET4","index":"0.000021948593995488"},{"denom":"ASSET5","index":"0.000001775351671947"},{"denom":"ASSET6","index":"0.000007168631437760"},{"denom":"ASSET7","index":"0.000011248752159293"},{"denom":"ASSET8","index":"0.000015334459676317"},{"denom":"ASSET9","index":"0.000006513651901550"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001677613648548"},{"denom":"ASSET1","index":"0.000013997394471820"},{"denom":"ASSET10","index":"0.000009752554992736"},{"denom":"ASSET11","index":"0.000013541183096442"},{"denom":"ASSET12","index":"0.000012193285851007"},{"denom":"ASSET13","index":"0.000004195070965406"},{"denom":"ASSET14","index":"0.000012649497226385"},{"denom":"ASSET15","index":"0.000009043353672830"},{"denom":"ASSET16","index":"0.000006306085420563"},{"denom":"ASSET17","index":"0.000004477092542912"},{"denom":"ASSET18","index":"0.000002131751335856"},{"denom":"ASSET2","index":"0.000004130786635239"},{"denom":"ASSET3","index":"0.000001208960144751"},{"denom":"ASSET4","index":"0.000011376252751467"},{"denom":"ASSET5","index":"0.000000937307007594"},{"denom":"ASSET6","index":"0.000003817659736684"},{"denom":"ASSET7","index":"0.000005847800357116"},{"denom":"ASSET8","index":"0.000007631172097229"},{"denom":"ASSET9","index":"0.000003295090343070"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003316222748087"},{"denom":"ASSET1","index":"0.000028147075207200"},{"denom":"ASSET10","index":"0.000022466702115272"},{"denom":"ASSET11","index":"0.000027971336509453"},{"denom":"ASSET12","index":"0.000026669877578580"},{"denom":"ASSET13","index":"0.000008784355829882"},{"denom":"ASSET14","index":"0.000025672864554615"},{"denom":"ASSET15","index":"0.000020235356040284"},{"denom":"ASSET16","index":"0.000012487172511964"},{"denom":"ASSET17","index":"0.000009799807931023"},{"denom":"ASSET18","index":"0.000004049727438870"},{"denom":"ASSET2","index":"0.000008522892941853"},{"denom":"ASSET3","index":"0.000002368075218536"},{"denom":"ASSET4","index":"0.000022820717384594"},{"denom":"ASSET5","index":"0.000001843591257654"},{"denom":"ASSET6","index":"0.000007443165294976"},{"denom":"ASSET7","index":"0.000011693499621126"},{"denom":"ASSET8","index":"0.000015972009373807"},{"denom":"ASSET9","index":"0.000006779069609364"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001520550536467"},{"denom":"ASSET1","index":"0.000012675827554874"},{"denom":"ASSET10","index":"0.000008831388003026"},{"denom":"ASSET11","index":"0.000012262725604616"},{"denom":"ASSET12","index":"0.000011042474271843"},{"denom":"ASSET13","index":"0.000003800233070086"},{"denom":"ASSET14","index":"0.000011455195131741"},{"denom":"ASSET15","index":"0.000008190012927118"},{"denom":"ASSET16","index":"0.000005710257954490"},{"denom":"ASSET17","index":"0.000004055182520937"},{"denom":"ASSET18","index":"0.000001931747034924"},{"denom":"ASSET2","index":"0.000003741926245004"},{"denom":"ASSET3","index":"0.000001094491513968"},{"denom":"ASSET4","index":"0.000010301253521611"},{"denom":"ASSET5","index":"0.000000849450412477"},{"denom":"ASSET6","index":"0.000003457632836431"},{"denom":"ASSET7","index":"0.000005295631642792"},{"denom":"ASSET8","index":"0.000006910311498182"},{"denom":"ASSET9","index":"0.000002984699699651"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003047858420945"},{"denom":"ASSET1","index":"0.000025863853767953"},{"denom":"ASSET10","index":"0.000020681482671570"},{"denom":"ASSET11","index":"0.000025712271525236"},{"denom":"ASSET12","index":"0.000024535470175220"},{"denom":"ASSET13","index":"0.000008077733573885"},{"denom":"ASSET14","index":"0.000023593590000343"},{"denom":"ASSET15","index":"0.000018621561303244"},{"denom":"ASSET16","index":"0.000011471343089677"},{"denom":"ASSET17","index":"0.000009016132124589"},{"denom":"ASSET18","index":"0.000003719208275283"},{"denom":"ASSET2","index":"0.000007835789085827"},{"denom":"ASSET3","index":"0.000002174729135607"},{"denom":"ASSET4","index":"0.000020967814383093"},{"denom":"ASSET5","index":"0.000001694402278429"},{"denom":"ASSET6","index":"0.000006836893759575"},{"denom":"ASSET7","index":"0.000010744095518390"},{"denom":"ASSET8","index":"0.000014684305897471"},{"denom":"ASSET9","index":"0.000006231971052532"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001765508823557"},{"denom":"ASSET1","index":"0.000014724618911480"},{"denom":"ASSET10","index":"0.000010258363403154"},{"denom":"ASSET11","index":"0.000014244524406828"},{"denom":"ASSET12","index":"0.000012826610887714"},{"denom":"ASSET13","index":"0.000004413772058893"},{"denom":"ASSET14","index":"0.000013305845007949"},{"denom":"ASSET15","index":"0.000009513270498085"},{"denom":"ASSET16","index":"0.000006632703470176"},{"denom":"ASSET17","index":"0.000004710604682736"},{"denom":"ASSET18","index":"0.000002243882559375"},{"denom":"ASSET2","index":"0.000004346662074372"},{"denom":"ASSET3","index":"0.000001271648168235"},{"denom":"ASSET4","index":"0.000011966226470776"},{"denom":"ASSET5","index":"0.000000986860926228"},{"denom":"ASSET6","index":"0.000004016274458267"},{"denom":"ASSET7","index":"0.000006150888196691"},{"denom":"ASSET8","index":"0.000008026526225616"},{"denom":"ASSET9","index":"0.000003466488815844"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003365151784209"},{"denom":"ASSET1","index":"0.000028538337865727"},{"denom":"ASSET10","index":"0.000022670552359626"},{"denom":"ASSET11","index":"0.000028331786642422"},{"denom":"ASSET12","index":"0.000026959391418936"},{"denom":"ASSET13","index":"0.000008894072871450"},{"denom":"ASSET14","index":"0.000026020188745878"},{"denom":"ASSET15","index":"0.000020439828986765"},{"denom":"ASSET16","index":"0.000012667128947757"},{"denom":"ASSET17","index":"0.000009907060013179"},{"denom":"ASSET18","index":"0.000004116201786219"},{"denom":"ASSET2","index":"0.000008634485522558"},{"denom":"ASSET3","index":"0.000002403102945281"},{"denom":"ASSET4","index":"0.000023139017263426"},{"denom":"ASSET5","index":"0.000001871649891727"},{"denom":"ASSET6","index":"0.000007555863827839"},{"denom":"ASSET7","index":"0.000011857581945748"},{"denom":"ASSET8","index":"0.000016169532559731"},{"denom":"ASSET9","index":"0.000006867789268222"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001833509758465"},{"denom":"ASSET1","index":"0.000015308139656127"},{"denom":"ASSET10","index":"0.000010661025831945"},{"denom":"ASSET11","index":"0.000014808091540182"},{"denom":"ASSET12","index":"0.000013334616425197"},{"denom":"ASSET13","index":"0.000004587108050268"},{"denom":"ASSET14","index":"0.000013827997232930"},{"denom":"ASSET15","index":"0.000009887618079284"},{"denom":"ASSET16","index":"0.000006893996691827"},{"denom":"ASSET17","index":"0.000004893804228047"},{"denom":"ASSET18","index":"0.000002326890566197"},{"denom":"ASSET2","index":"0.000004513767659929"},{"denom":"ASSET3","index":"0.000001320127026095"},{"denom":"ASSET4","index":"0.000012434529816496"},{"denom":"ASSET5","index":"0.000001020098156528"},{"denom":"ASSET6","index":"0.000004173734941087"},{"denom":"ASSET7","index":"0.000006393948575882"},{"denom":"ASSET8","index":"0.000008340802573961"},{"denom":"ASSET9","index":"0.000003600346434803"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003461123478470"},{"denom":"ASSET1","index":"0.000029368181297786"},{"denom":"ASSET10","index":"0.000023294808028239"},{"denom":"ASSET11","index":"0.000029147392384169"},{"denom":"ASSET12","index":"0.000027719461688447"},{"denom":"ASSET13","index":"0.000009147542663388"},{"denom":"ASSET14","index":"0.000026768604990580"},{"denom":"ASSET15","index":"0.000021008846141082"},{"denom":"ASSET16","index":"0.000013035302068339"},{"denom":"ASSET17","index":"0.000010182949549387"},{"denom":"ASSET18","index":"0.000004232564951180"},{"denom":"ASSET2","index":"0.000008877642147806"},{"denom":"ASSET3","index":"0.000002471921418528"},{"denom":"ASSET4","index":"0.000023806252184245"},{"denom":"ASSET5","index":"0.000001920199705662"},{"denom":"ASSET6","index":"0.000007776538212319"},{"denom":"ASSET7","index":"0.000012202060569359"},{"denom":"ASSET8","index":"0.000016628688342614"},{"denom":"ASSET9","index":"0.000007061722298848"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001580229076001"},{"denom":"ASSET1","index":"0.000013178675425859"},{"denom":"ASSET10","index":"0.000009181488308837"},{"denom":"ASSET11","index":"0.000012749045790152"},{"denom":"ASSET12","index":"0.000011480356468073"},{"denom":"ASSET13","index":"0.000003950572690002"},{"denom":"ASSET14","index":"0.000011909209196663"},{"denom":"ASSET15","index":"0.000008514902002442"},{"denom":"ASSET16","index":"0.000005936347281082"},{"denom":"ASSET17","index":"0.000004216274924019"},{"denom":"ASSET18","index":"0.000002008304897474"},{"denom":"ASSET2","index":"0.000003889973934875"},{"denom":"ASSET3","index":"0.000001137392019304"},{"denom":"ASSET4","index":"0.000010709664607998"},{"denom":"ASSET5","index":"0.000000883343392042"},{"denom":"ASSET6","index":"0.000003594749230410"},{"denom":"ASSET7","index":"0.000005505163831141"},{"denom":"ASSET8","index":"0.000007184060111002"},{"denom":"ASSET9","index":"0.000003102967025342"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003136420796654"},{"denom":"ASSET1","index":"0.000026617535879560"},{"denom":"ASSET10","index":"0.000021257162201233"},{"denom":"ASSET11","index":"0.000026454281403244"},{"denom":"ASSET12","index":"0.000025229520616223"},{"denom":"ASSET13","index":"0.000008309311482354"},{"denom":"ASSET14","index":"0.000024278363089230"},{"denom":"ASSET15","index":"0.000019144672836670"},{"denom":"ASSET16","index":"0.000011806881934189"},{"denom":"ASSET17","index":"0.000009271795054357"},{"denom":"ASSET18","index":"0.000003829937127836"},{"denom":"ASSET2","index":"0.000008061315465971"},{"denom":"ASSET3","index":"0.000002238409344787"},{"denom":"ASSET4","index":"0.000021579173085678"},{"denom":"ASSET5","index":"0.000001744155749232"},{"denom":"ASSET6","index":"0.000007037998659171"},{"denom":"ASSET7","index":"0.000011056982942661"},{"denom":"ASSET8","index":"0.000015105683491420"},{"denom":"ASSET9","index":"0.000006411626899884"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001065673750407"},{"denom":"ASSET1","index":"0.000008885137524612"},{"denom":"ASSET10","index":"0.000006190162379117"},{"denom":"ASSET11","index":"0.000008595321581390"},{"denom":"ASSET12","index":"0.000007740138401991"},{"denom":"ASSET13","index":"0.000002663662498568"},{"denom":"ASSET14","index":"0.000008029258508615"},{"denom":"ASSET15","index":"0.000005740999854868"},{"denom":"ASSET16","index":"0.000004002452113836"},{"denom":"ASSET17","index":"0.000002842492504350"},{"denom":"ASSET18","index":"0.000001354098020432"},{"denom":"ASSET2","index":"0.000002622608139264"},{"denom":"ASSET3","index":"0.000000767159849705"},{"denom":"ASSET4","index":"0.000007220696381306"},{"denom":"ASSET5","index":"0.000000595288209907"},{"denom":"ASSET6","index":"0.000002423598872130"},{"denom":"ASSET7","index":"0.000003711940334016"},{"denom":"ASSET8","index":"0.000004843718561268"},{"denom":"ASSET9","index":"0.000002092032733005"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000002559869929403"},{"denom":"ASSET1","index":"0.000021787096732684"},{"denom":"ASSET10","index":"0.000017783238471081"},{"denom":"ASSET11","index":"0.000021752938768967"},{"denom":"ASSET12","index":"0.000020940235345308"},{"denom":"ASSET13","index":"0.000006848308161575"},{"denom":"ASSET14","index":"0.000019904298850841"},{"denom":"ASSET15","index":"0.000015946274018453"},{"denom":"ASSET16","index":"0.000009638424477568"},{"denom":"ASSET17","index":"0.000007695902028378"},{"denom":"ASSET18","index":"0.000003102977872608"},{"denom":"ASSET2","index":"0.000006627591716064"},{"denom":"ASSET3","index":"0.000001824087350341"},{"denom":"ASSET4","index":"0.000017655906837434"},{"denom":"ASSET5","index":"0.000001421889695470"},{"denom":"ASSET6","index":"0.000005729615091854"},{"denom":"ASSET7","index":"0.000009042175373173"},{"denom":"ASSET8","index":"0.000012449153729005"},{"denom":"ASSET9","index":"0.000005268661072858"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001663945626017"},{"denom":"ASSET1","index":"0.000013874870096624"},{"denom":"ASSET10","index":"0.000009666844154779"},{"denom":"ASSET11","index":"0.000013422526194886"},{"denom":"ASSET12","index":"0.000012086742376498"},{"denom":"ASSET13","index":"0.000004159391889779"},{"denom":"ASSET14","index":"0.000012538614102973"},{"denom":"ASSET15","index":"0.000008964719539034"},{"denom":"ASSET16","index":"0.000006250183953344"},{"denom":"ASSET17","index":"0.000004438919645342"},{"denom":"ASSET18","index":"0.000002114400826704"},{"denom":"ASSET2","index":"0.000004095648229305"},{"denom":"ASSET3","index":"0.000001197908641659"},{"denom":"ASSET4","index":"0.000011275545275051"},{"denom":"ASSET5","index":"0.000000929713092403"},{"denom":"ASSET6","index":"0.000003784956906399"},{"denom":"ASSET7","index":"0.000005796423525818"},{"denom":"ASSET8","index":"0.000007563775534382"},{"denom":"ASSET9","index":"0.000003266980643136"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003299045378029"},{"denom":"ASSET1","index":"0.000027992490930804"},{"denom":"ASSET10","index":"0.000022352284005938"},{"denom":"ASSET11","index":"0.000027819914533732"},{"denom":"ASSET12","index":"0.000026530494002155"},{"denom":"ASSET13","index":"0.000008738242797579"},{"denom":"ASSET14","index":"0.000025532401567106"},{"denom":"ASSET15","index":"0.000020131602968729"},{"denom":"ASSET16","index":"0.000012417136212826"},{"denom":"ASSET17","index":"0.000009749421325842"},{"denom":"ASSET18","index":"0.000004027997856345"},{"denom":"ASSET2","index":"0.000008477931503293"},{"denom":"ASSET3","index":"0.000002354450357881"},{"denom":"ASSET4","index":"0.000022693933657862"},{"denom":"ASSET5","index":"0.000001834114741991"},{"denom":"ASSET6","index":"0.000007402245947993"},{"denom":"ASSET7","index":"0.000011628988518089"},{"denom":"ASSET8","index":"0.000015885667960333"},{"denom":"ASSET9","index":"0.000006742956926982"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001554670726054"},{"denom":"ASSET1","index":"0.000012963415617374"},{"denom":"ASSET10","index":"0.000009031685079156"},{"denom":"ASSET11","index":"0.000012540799003679"},{"denom":"ASSET12","index":"0.000011293255065955"},{"denom":"ASSET13","index":"0.000003886042255656"},{"denom":"ASSET14","index":"0.000011715237120170"},{"denom":"ASSET15","index":"0.000008376185136293"},{"denom":"ASSET16","index":"0.000005839850894644"},{"denom":"ASSET17","index":"0.000004147480761425"},{"denom":"ASSET18","index":"0.000001975383661309"},{"denom":"ASSET2","index":"0.000003826393664534"},{"denom":"ASSET3","index":"0.000001119362922759"},{"denom":"ASSET4","index":"0.000010534956487329"},{"denom":"ASSET5","index":"0.000000868711928150"},{"denom":"ASSET6","index":"0.000003536399982164"},{"denom":"ASSET7","index":"0.000005415965161990"},{"denom":"ASSET8","index":"0.000007067088929007"},{"denom":"ASSET9","index":"0.000003052231098907"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003157426180098"},{"denom":"ASSET1","index":"0.000026803913890418"},{"denom":"ASSET10","index":"0.000021467927303389"},{"denom":"ASSET11","index":"0.000026655124661377"},{"denom":"ASSET12","index":"0.000025453388278707"},{"denom":"ASSET13","index":"0.000008375182650914"},{"denom":"ASSET14","index":"0.000024453809207757"},{"denom":"ASSET15","index":"0.000019323681821282"},{"denom":"ASSET16","index":"0.000011885939188892"},{"denom":"ASSET17","index":"0.000009353763879690"},{"denom":"ASSET18","index":"0.000003851457527173"},{"denom":"ASSET2","index":"0.000008122633355733"},{"denom":"ASSET3","index":"0.000002252845423920"},{"denom":"ASSET4","index":"0.000021728796023940"},{"denom":"ASSET5","index":"0.000001755342604855"},{"denom":"ASSET6","index":"0.000007082922688985"},{"denom":"ASSET7","index":"0.000011133765978354"},{"denom":"ASSET8","index":"0.000015225414484063"},{"denom":"ASSET9","index":"0.000006459804222065"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001578706846766"},{"denom":"ASSET1","index":"0.000013164667632738"},{"denom":"ASSET10","index":"0.000009171819989970"},{"denom":"ASSET11","index":"0.000012734981690366"},{"denom":"ASSET12","index":"0.000011467468005207"},{"denom":"ASSET13","index":"0.000003946168668528"},{"denom":"ASSET14","index":"0.000011895957050803"},{"denom":"ASSET15","index":"0.000008505148486066"},{"denom":"ASSET16","index":"0.000005930623522158"},{"denom":"ASSET17","index":"0.000004211879752669"},{"denom":"ASSET18","index":"0.000002005998995588"},{"denom":"ASSET2","index":"0.000003886323829757"},{"denom":"ASSET3","index":"0.000001135855039864"},{"denom":"ASSET4","index":"0.000010697863378618"},{"denom":"ASSET5","index":"0.000000882112923477"},{"denom":"ASSET6","index":"0.000003590690326231"},{"denom":"ASSET7","index":"0.000005499740683011"},{"denom":"ASSET8","index":"0.000007176593065360"},{"denom":"ASSET9","index":"0.000003098765751537"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003185213515607"},{"denom":"ASSET1","index":"0.000027035699090666"},{"denom":"ASSET10","index":"0.000021635640181728"},{"denom":"ASSET11","index":"0.000026880669357351"},{"denom":"ASSET12","index":"0.000025658872180332"},{"denom":"ASSET13","index":"0.000008444958797633"},{"denom":"ASSET14","index":"0.000024662649108986"},{"denom":"ASSET15","index":"0.000019476753279332"},{"denom":"ASSET16","index":"0.000011989846651744"},{"denom":"ASSET17","index":"0.000009429633404312"},{"denom":"ASSET18","index":"0.000003886090392826"},{"denom":"ASSET2","index":"0.000008191890279929"},{"denom":"ASSET3","index":"0.000002271981699175"},{"denom":"ASSET4","index":"0.000021916623044014"},{"denom":"ASSET5","index":"0.000001770727550439"},{"denom":"ASSET6","index":"0.000007144791673859"},{"denom":"ASSET7","index":"0.000011230376410345"},{"denom":"ASSET8","index":"0.000015353061978158"},{"denom":"ASSET9","index":"0.000006513931773648"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001736464555496"},{"denom":"ASSET1","index":"0.000014486324003877"},{"denom":"ASSET10","index":"0.000010092542477093"},{"denom":"ASSET11","index":"0.000014014496766071"},{"denom":"ASSET12","index":"0.000012620063107870"},{"denom":"ASSET13","index":"0.000004342915393341"},{"denom":"ASSET14","index":"0.000013091890345676"},{"denom":"ASSET15","index":"0.000009359368553661"},{"denom":"ASSET16","index":"0.000006524897117620"},{"denom":"ASSET17","index":"0.000004634080157191"},{"denom":"ASSET18","index":"0.000002206537788701"},{"denom":"ASSET2","index":"0.000004276263218483"},{"denom":"ASSET3","index":"0.000001250605280877"},{"denom":"ASSET4","index":"0.000011772878885340"},{"denom":"ASSET5","index":"0.000000969964544635"},{"denom":"ASSET6","index":"0.000003951772367204"},{"denom":"ASSET7","index":"0.000006051315875212"},{"denom":"ASSET8","index":"0.000007896528716001"},{"denom":"ASSET9","index":"0.000003409784945337"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003356675502673"},{"denom":"ASSET1","index":"0.000028477076245214"},{"denom":"ASSET10","index":"0.000022663760086849"},{"denom":"ASSET11","index":"0.000028282539274294"},{"denom":"ASSET12","index":"0.000026934248109484"},{"denom":"ASSET13","index":"0.000008880550781135"},{"denom":"ASSET14","index":"0.000025969128454053"},{"denom":"ASSET15","index":"0.000020425731449718"},{"denom":"ASSET16","index":"0.000012636600959200"},{"denom":"ASSET17","index":"0.000009896936242996"},{"denom":"ASSET18","index":"0.000004102733083140"},{"denom":"ASSET2","index":"0.000008619316582261"},{"denom":"ASSET3","index":"0.000002396767404444"},{"denom":"ASSET4","index":"0.000023088672429632"},{"denom":"ASSET5","index":"0.000001866260713425"},{"denom":"ASSET6","index":"0.000007536521735823"},{"denom":"ASSET7","index":"0.000011831316132227"},{"denom":"ASSET8","index":"0.000016143846449802"},{"denom":"ASSET9","index":"0.000006854365607618"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001432199402946"},{"denom":"ASSET1","index":"0.000011943338809449"},{"denom":"ASSET10","index":"0.000008321234131428"},{"denom":"ASSET11","index":"0.000011554338026882"},{"denom":"ASSET12","index":"0.000010404248756685"},{"denom":"ASSET13","index":"0.000003580160245814"},{"denom":"ASSET14","index":"0.000010793249539252"},{"denom":"ASSET15","index":"0.000007717099003024"},{"denom":"ASSET16","index":"0.000005380388215223"},{"denom":"ASSET17","index":"0.000003821002469456"},{"denom":"ASSET18","index":"0.000001819847139312"},{"denom":"ASSET2","index":"0.000003525361874705"},{"denom":"ASSET3","index":"0.000001031021204577"},{"denom":"ASSET4","index":"0.000009706076917365"},{"denom":"ASSET5","index":"0.000000800326827437"},{"denom":"ASSET6","index":"0.000003258135250159"},{"denom":"ASSET7","index":"0.000004989357863356"},{"denom":"ASSET8","index":"0.000006510858315517"},{"denom":"ASSET9","index":"0.000002812306527182"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000002962853679956"},{"denom":"ASSET1","index":"0.000025162993314326"},{"denom":"ASSET10","index":"0.000020199688926412"},{"denom":"ASSET11","index":"0.000025035647772320"},{"denom":"ASSET12","index":"0.000023929456511577"},{"denom":"ASSET13","index":"0.000007867725037604"},{"denom":"ASSET14","index":"0.000022960507028012"},{"denom":"ASSET15","index":"0.000018173489333858"},{"denom":"ASSET16","index":"0.000011155286879957"},{"denom":"ASSET17","index":"0.000008793607250882"},{"denom":"ASSET18","index":"0.000003611579051495"},{"denom":"ASSET2","index":"0.000007628670547867"},{"denom":"ASSET3","index":"0.000002114031306235"},{"denom":"ASSET4","index":"0.000020398130246320"},{"denom":"ASSET5","index":"0.000001647096325587"},{"denom":"ASSET6","index":"0.000006645213242757"},{"denom":"ASSET7","index":"0.000010450616802650"},{"denom":"ASSET8","index":"0.000014303332598966"},{"denom":"ASSET9","index":"0.000006067112886031"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001597673370668"},{"denom":"ASSET1","index":"0.000013327099930964"},{"denom":"ASSET10","index":"0.000009285285696821"},{"denom":"ASSET11","index":"0.000012892979142852"},{"denom":"ASSET12","index":"0.000011609669101507"},{"denom":"ASSET13","index":"0.000003995544306884"},{"denom":"ASSET14","index":"0.000012043789889618"},{"denom":"ASSET15","index":"0.000008610289110917"},{"denom":"ASSET16","index":"0.000006002842621820"},{"denom":"ASSET17","index":"0.000004263637708946"},{"denom":"ASSET18","index":"0.000002030433278566"},{"denom":"ASSET2","index":"0.000003934304697275"},{"denom":"ASSET3","index":"0.000001149943780421"},{"denom":"ASSET4","index":"0.000010829884739162"},{"denom":"ASSET5","index":"0.000000892737420067"},{"denom":"ASSET6","index":"0.000003634911050302"},{"denom":"ASSET7","index":"0.000005567360953495"},{"denom":"ASSET8","index":"0.000007264378579749"},{"denom":"ASSET9","index":"0.000003138189772368"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003135234009226"},{"denom":"ASSET1","index":"0.000026602125077525"},{"denom":"ASSET10","index":"0.000021213712135644"},{"denom":"ASSET11","index":"0.000026430841190504"},{"denom":"ASSET12","index":"0.000025191219856579"},{"denom":"ASSET13","index":"0.000008300995957475"},{"denom":"ASSET14","index":"0.000024262534835813"},{"denom":"ASSET15","index":"0.000019110376679732"},{"denom":"ASSET16","index":"0.000011801461546978"},{"denom":"ASSET17","index":"0.000009257538829689"},{"denom":"ASSET18","index":"0.000003829421505073"},{"denom":"ASSET2","index":"0.000008055136326188"},{"denom":"ASSET3","index":"0.000002237228869924"},{"denom":"ASSET4","index":"0.000021566736915931"},{"denom":"ASSET5","index":"0.000001743257901616"},{"denom":"ASSET6","index":"0.000007036288319926"},{"denom":"ASSET7","index":"0.000011051703047857"},{"denom":"ASSET8","index":"0.000015089589803941"},{"denom":"ASSET9","index":"0.000006406386950018"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001689516061942"},{"denom":"ASSET1","index":"0.000014086551658080"},{"denom":"ASSET10","index":"0.000009813816295422"},{"denom":"ASSET11","index":"0.000013627312671286"},{"denom":"ASSET12","index":"0.000012271349136594"},{"denom":"ASSET13","index":"0.000004223185893030"},{"denom":"ASSET14","index":"0.000012729983861563"},{"denom":"ASSET15","index":"0.000009101391604066"},{"denom":"ASSET16","index":"0.000006345353421478"},{"denom":"ASSET17","index":"0.000004506584688828"},{"denom":"ASSET18","index":"0.000002146942263262"},{"denom":"ASSET2","index":"0.000004157925615959"},{"denom":"ASSET3","index":"0.000001216379053179"},{"denom":"ASSET4","index":"0.000011447740269489"},{"denom":"ASSET5","index":"0.000000943856970227"},{"denom":"ASSET6","index":"0.000003842500943451"},{"denom":"ASSET7","index":"0.000005884905911035"},{"denom":"ASSET8","index":"0.000007678959268655"},{"denom":"ASSET9","index":"0.000003316793155937"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003297864217859"},{"denom":"ASSET1","index":"0.000027973253972789"},{"denom":"ASSET10","index":"0.000022291630953866"},{"denom":"ASSET11","index":"0.000027789008146512"},{"denom":"ASSET12","index":"0.000026479178332828"},{"denom":"ASSET13","index":"0.000008727103479255"},{"denom":"ASSET14","index":"0.000025511286037616"},{"denom":"ASSET15","index":"0.000020085740117730"},{"denom":"ASSET16","index":"0.000012411485442612"},{"denom":"ASSET17","index":"0.000009730550155880"},{"denom":"ASSET18","index":"0.000004028926705548"},{"denom":"ASSET2","index":"0.000008468714781887"},{"denom":"ASSET3","index":"0.000002353891879987"},{"denom":"ASSET4","index":"0.000022679492169342"},{"denom":"ASSET5","index":"0.000001833514119464"},{"denom":"ASSET6","index":"0.000007400677249018"},{"denom":"ASSET7","index":"0.000011621769805761"},{"denom":"ASSET8","index":"0.000015864980999233"},{"denom":"ASSET9","index":"0.000006736116007098"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001411859688057"},{"denom":"ASSET1","index":"0.000011770485537623"},{"denom":"ASSET10","index":"0.000008200497469250"},{"denom":"ASSET11","index":"0.000011386615852852"},{"denom":"ASSET12","index":"0.000010253874969484"},{"denom":"ASSET13","index":"0.000003528347966974"},{"denom":"ASSET14","index":"0.000010637094027671"},{"denom":"ASSET15","index":"0.000007605174144562"},{"denom":"ASSET16","index":"0.000005302606662519"},{"denom":"ASSET17","index":"0.000003765826670265"},{"denom":"ASSET18","index":"0.000001793777493075"},{"denom":"ASSET2","index":"0.000003474345960472"},{"denom":"ASSET3","index":"0.000001016278724767"},{"denom":"ASSET4","index":"0.000009565512043233"},{"denom":"ASSET5","index":"0.000000788559420242"},{"denom":"ASSET6","index":"0.000003210842193807"},{"denom":"ASSET7","index":"0.000004917435724579"},{"denom":"ASSET8","index":"0.000006416479374940"},{"denom":"ASSET9","index":"0.000002771018622781"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000002930820438736"},{"denom":"ASSET1","index":"0.000024889799880283"},{"denom":"ASSET10","index":"0.000019988623694797"},{"denom":"ASSET11","index":"0.000024765615752571"},{"denom":"ASSET12","index":"0.000023676022623299"},{"denom":"ASSET13","index":"0.000007783195940338"},{"denom":"ASSET14","index":"0.000022712072914709"},{"denom":"ASSET15","index":"0.000017982209004670"},{"denom":"ASSET16","index":"0.000011033267632466"},{"denom":"ASSET17","index":"0.000008700651286884"},{"denom":"ASSET18","index":"0.000003571624768330"},{"denom":"ASSET2","index":"0.000007546215495169"},{"denom":"ASSET3","index":"0.000002090977414753"},{"denom":"ASSET4","index":"0.000020176663420937"},{"denom":"ASSET5","index":"0.000001628342560149"},{"denom":"ASSET6","index":"0.000006572371850885"},{"denom":"ASSET7","index":"0.000010337273058537"},{"denom":"ASSET8","index":"0.000014149515747938"},{"denom":"ASSET9","index":"0.000006000707920121"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001726304213109"},{"denom":"ASSET1","index":"0.000014431903221591"},{"denom":"ASSET10","index":"0.000010055058078201"},{"denom":"ASSET11","index":"0.000013959161452463"},{"denom":"ASSET12","index":"0.000012572806376704"},{"denom":"ASSET13","index":"0.000004323728090679"},{"denom":"ASSET14","index":"0.000013040236440562"},{"denom":"ASSET15","index":"0.000009322042750788"},{"denom":"ASSET16","index":"0.000006501527251832"},{"denom":"ASSET17","index":"0.000004615871880590"},{"denom":"ASSET18","index":"0.000002199045982237"},{"denom":"ASSET2","index":"0.000004259987627426"},{"denom":"ASSET3","index":"0.000001242939033438"},{"denom":"ASSET4","index":"0.000011728245238599"},{"denom":"ASSET5","index":"0.000000966730359341"},{"denom":"ASSET6","index":"0.000003935973605888"},{"denom":"ASSET7","index":"0.000006028785482704"},{"denom":"ASSET8","index":"0.000007866635506506"},{"denom":"ASSET9","index":"0.000003394179668236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003313075721980"},{"denom":"ASSET1","index":"0.000028138029356789"},{"denom":"ASSET10","index":"0.000022370607880245"},{"denom":"ASSET11","index":"0.000027937207217164"},{"denom":"ASSET12","index":"0.000026595598409551"},{"denom":"ASSET13","index":"0.000008769097729958"},{"denom":"ASSET14","index":"0.000025655242037122"},{"denom":"ASSET15","index":"0.000020162686714325"},{"denom":"ASSET16","index":"0.000012488922131836"},{"denom":"ASSET17","index":"0.000009772018779266"},{"denom":"ASSET18","index":"0.000004056016110298"},{"denom":"ASSET2","index":"0.000008514325121927"},{"denom":"ASSET3","index":"0.000002365037757716"},{"denom":"ASSET4","index":"0.000022813272666626"},{"denom":"ASSET5","index":"0.000001844445619129"},{"denom":"ASSET6","index":"0.000007446834645040"},{"denom":"ASSET7","index":"0.000011690909413493"},{"denom":"ASSET8","index":"0.000015945057917181"},{"denom":"ASSET9","index":"0.000006769080892636"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001630255611072"},{"denom":"ASSET1","index":"0.000013593541268721"},{"denom":"ASSET10","index":"0.000009470169531707"},{"denom":"ASSET11","index":"0.000013149994246609"},{"denom":"ASSET12","index":"0.000011841383661505"},{"denom":"ASSET13","index":"0.000004074904678306"},{"denom":"ASSET14","index":"0.000012284196334242"},{"denom":"ASSET15","index":"0.000008782818517308"},{"denom":"ASSET16","index":"0.000006123739432762"},{"denom":"ASSET17","index":"0.000004348816994942"},{"denom":"ASSET18","index":"0.000002071599585061"},{"denom":"ASSET2","index":"0.000004012484981486"},{"denom":"ASSET3","index":"0.000001173490300222"},{"denom":"ASSET4","index":"0.000011046817638451"},{"denom":"ASSET5","index":"0.000000910593224203"},{"denom":"ASSET6","index":"0.000003707729991128"},{"denom":"ASSET7","index":"0.000005678723711902"},{"denom":"ASSET8","index":"0.000007410319536635"},{"denom":"ASSET9","index":"0.000003200294573447"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003344718004914"},{"denom":"ASSET1","index":"0.000028399683918161"},{"denom":"ASSET10","index":"0.000022773943545696"},{"denom":"ASSET11","index":"0.000028249525692452"},{"denom":"ASSET12","index":"0.000026989510465266"},{"denom":"ASSET13","index":"0.000008877216029957"},{"denom":"ASSET14","index":"0.000025911788013611"},{"denom":"ASSET15","index":"0.000020494299775586"},{"denom":"ASSET16","index":"0.000012591463658113"},{"denom":"ASSET17","index":"0.000009918208342143"},{"denom":"ASSET18","index":"0.000004078542450859"},{"denom":"ASSET2","index":"0.000008608606683653"},{"denom":"ASSET3","index":"0.000002386103437058"},{"denom":"ASSET4","index":"0.000023022167148602"},{"denom":"ASSET5","index":"0.000001858883946943"},{"denom":"ASSET6","index":"0.000007501347044310"},{"denom":"ASSET7","index":"0.000011795380538461"},{"denom":"ASSET8","index":"0.000016137954986293"},{"denom":"ASSET9","index":"0.000006845854741756"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001401914217082"},{"denom":"ASSET1","index":"0.000011691084141249"},{"denom":"ASSET10","index":"0.000008144816837289"},{"denom":"ASSET11","index":"0.000011309282624399"},{"denom":"ASSET12","index":"0.000010184195671197"},{"denom":"ASSET13","index":"0.000003504785542706"},{"denom":"ASSET14","index":"0.000010565150621491"},{"denom":"ASSET15","index":"0.000007553913381055"},{"denom":"ASSET16","index":"0.000005266490546178"},{"denom":"ASSET17","index":"0.000003740131045332"},{"denom":"ASSET18","index":"0.000001781176034264"},{"denom":"ASSET2","index":"0.000003450605283109"},{"denom":"ASSET3","index":"0.000001009107335001"},{"denom":"ASSET4","index":"0.000009501016460336"},{"denom":"ASSET5","index":"0.000000783074064494"},{"denom":"ASSET6","index":"0.000003189016217240"},{"denom":"ASSET7","index":"0.000004883842462771"},{"denom":"ASSET8","index":"0.000006372953035143"},{"denom":"ASSET9","index":"0.000002752187874236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000002824624853437"},{"denom":"ASSET1","index":"0.000023976113690517"},{"denom":"ASSET10","index":"0.000019183481330878"},{"denom":"ASSET11","index":"0.000023837782846342"},{"denom":"ASSET12","index":"0.000022753084719682"},{"denom":"ASSET13","index":"0.000007489057952554"},{"denom":"ASSET14","index":"0.000021872315483076"},{"denom":"ASSET15","index":"0.000017271123733000"},{"denom":"ASSET16","index":"0.000010633084765839"},{"denom":"ASSET17","index":"0.000008361522972460"},{"denom":"ASSET18","index":"0.000003446219629870"},{"denom":"ASSET2","index":"0.000007263651822688"},{"denom":"ASSET3","index":"0.000002015414858276"},{"denom":"ASSET4","index":"0.000019437236646346"},{"denom":"ASSET5","index":"0.000001569802896992"},{"denom":"ASSET6","index":"0.000006336500403946"},{"denom":"ASSET7","index":"0.000009959182045961"},{"denom":"ASSET8","index":"0.000013614498977085"},{"denom":"ASSET9","index":"0.000005776799011181"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001454934724421"},{"denom":"ASSET1","index":"0.000012138554241533"},{"denom":"ASSET10","index":"0.000008457231031836"},{"denom":"ASSET11","index":"0.000011742676653726"},{"denom":"ASSET12","index":"0.000010575345305063"},{"denom":"ASSET13","index":"0.000003639028595615"},{"denom":"ASSET14","index":"0.000010969531108307"},{"denom":"ASSET15","index":"0.000007843113235366"},{"denom":"ASSET16","index":"0.000005467847708521"},{"denom":"ASSET17","index":"0.000003882645572727"},{"denom":"ASSET18","index":"0.000001849120527665"},{"denom":"ASSET2","index":"0.000003583199705027"},{"denom":"ASSET3","index":"0.000001047214644670"},{"denom":"ASSET4","index":"0.000009864795788485"},{"denom":"ASSET5","index":"0.000000813748374938"},{"denom":"ASSET6","index":"0.000003310822390339"},{"denom":"ASSET7","index":"0.000005070278336150"},{"denom":"ASSET8","index":"0.000006616569426988"},{"denom":"ASSET9","index":"0.000002857424127380"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003026822568793"},{"denom":"ASSET1","index":"0.000025710421285725"},{"denom":"ASSET10","index":"0.000020652297735472"},{"denom":"ASSET11","index":"0.000025583400849235"},{"denom":"ASSET12","index":"0.000024460820755928"},{"denom":"ASSET13","index":"0.000008041083722059"},{"denom":"ASSET14","index":"0.000023461074878675"},{"denom":"ASSET15","index":"0.000018578170233019"},{"denom":"ASSET16","index":"0.000011396689804799"},{"denom":"ASSET17","index":"0.000008988134494295"},{"denom":"ASSET18","index":"0.000003688816665807"},{"denom":"ASSET2","index":"0.000007796110853756"},{"denom":"ASSET3","index":"0.000002159003644915"},{"denom":"ASSET4","index":"0.000020841789260406"},{"denom":"ASSET5","index":"0.000001683251281734"},{"denom":"ASSET6","index":"0.000006788484398340"},{"denom":"ASSET7","index":"0.000010677121165375"},{"denom":"ASSET8","index":"0.000014616905179383"},{"denom":"ASSET9","index":"0.000006199084273401"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001547699786520"},{"denom":"ASSET1","index":"0.000012908880828127"},{"denom":"ASSET10","index":"0.000008993933542043"},{"denom":"ASSET11","index":"0.000012488059147042"},{"denom":"ASSET12","index":"0.000011245681057538"},{"denom":"ASSET13","index":"0.000003869751640144"},{"denom":"ASSET14","index":"0.000011665498390936"},{"denom":"ASSET15","index":"0.000008340103197445"},{"denom":"ASSET16","index":"0.000005815173110936"},{"denom":"ASSET17","index":"0.000004129877691221"},{"denom":"ASSET18","index":"0.000001966512772230"},{"denom":"ASSET2","index":"0.000003810495126579"},{"denom":"ASSET3","index":"0.000001114825933185"},{"denom":"ASSET4","index":"0.000010490411596498"},{"denom":"ASSET5","index":"0.000000864743358984"},{"denom":"ASSET6","index":"0.000003521242992563"},{"denom":"ASSET7","index":"0.000005392342734476"},{"denom":"ASSET8","index":"0.000007036459899001"},{"denom":"ASSET9","index":"0.000003039156102537"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003086703561215"},{"denom":"ASSET1","index":"0.000026199550261878"},{"denom":"ASSET10","index":"0.000020936384793003"},{"denom":"ASSET11","index":"0.000026042194398185"},{"denom":"ASSET12","index":"0.000024843424443974"},{"denom":"ASSET13","index":"0.000008180415813801"},{"denom":"ASSET14","index":"0.000023898307142718"},{"denom":"ASSET15","index":"0.000018852934413068"},{"denom":"ASSET16","index":"0.000011621232923996"},{"denom":"ASSET17","index":"0.000009129550402498"},{"denom":"ASSET18","index":"0.000003767892160935"},{"denom":"ASSET2","index":"0.000007936188126371"},{"denom":"ASSET3","index":"0.000002203575710986"},{"denom":"ASSET4","index":"0.000021240180347210"},{"denom":"ASSET5","index":"0.000001716192200569"},{"denom":"ASSET6","index":"0.000006926674957775"},{"denom":"ASSET7","index":"0.000010883333770048"},{"denom":"ASSET8","index":"0.000014871024805414"},{"denom":"ASSET9","index":"0.000006311583255107"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001511232509129"},{"denom":"ASSET1","index":"0.000012598757210652"},{"denom":"ASSET10","index":"0.000008777665278232"},{"denom":"ASSET11","index":"0.000012187849575766"},{"denom":"ASSET12","index":"0.000010975073643675"},{"denom":"ASSET13","index":"0.000003776959255615"},{"denom":"ASSET14","index":"0.000011385233267090"},{"denom":"ASSET15","index":"0.000008140359504707"},{"denom":"ASSET16","index":"0.000005675412369706"},{"denom":"ASSET17","index":"0.000004030784481533"},{"denom":"ASSET18","index":"0.000001920145446758"},{"denom":"ASSET2","index":"0.000003719113035170"},{"denom":"ASSET3","index":"0.000001087858016388"},{"denom":"ASSET4","index":"0.000010238531681628"},{"denom":"ASSET5","index":"0.000000844504951067"},{"denom":"ASSET6","index":"0.000003436614036185"},{"denom":"ASSET7","index":"0.000005263507386191"},{"denom":"ASSET8","index":"0.000006867991992072"},{"denom":"ASSET9","index":"0.000002966364157912"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003050294937135"},{"denom":"ASSET1","index":"0.000025887230915803"},{"denom":"ASSET10","index":"0.000020718160619670"},{"denom":"ASSET11","index":"0.000025739685005463"},{"denom":"ASSET12","index":"0.000024570727404900"},{"denom":"ASSET13","index":"0.000008086966483560"},{"denom":"ASSET14","index":"0.000023616194455668"},{"denom":"ASSET15","index":"0.000018651338246959"},{"denom":"ASSET16","index":"0.000011480437826441"},{"denom":"ASSET17","index":"0.000009029688158762"},{"denom":"ASSET18","index":"0.000003721440260869"},{"denom":"ASSET2","index":"0.000007844134626406"},{"denom":"ASSET3","index":"0.000002176540273945"},{"denom":"ASSET4","index":"0.000020986445628896"},{"denom":"ASSET5","index":"0.000001695800268231"},{"denom":"ASSET6","index":"0.000006841569437153"},{"denom":"ASSET7","index":"0.000010753447417762"},{"denom":"ASSET8","index":"0.000014701309289649"},{"denom":"ASSET9","index":"0.000006238283490477"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001535139489204"},{"denom":"ASSET1","index":"0.000012800845981431"},{"denom":"ASSET10","index":"0.000008918122145344"},{"denom":"ASSET11","index":"0.000012383184798277"},{"denom":"ASSET12","index":"0.000011151318949088"},{"denom":"ASSET13","index":"0.000003837555421617"},{"denom":"ASSET14","index":"0.000011567806926671"},{"denom":"ASSET15","index":"0.000008270512670342"},{"denom":"ASSET16","index":"0.000005766305379776"},{"denom":"ASSET17","index":"0.000004095074044376"},{"denom":"ASSET18","index":"0.000001950454261216"},{"denom":"ASSET2","index":"0.000003778308540299"},{"denom":"ASSET3","index":"0.000001105159647558"},{"denom":"ASSET4","index":"0.000010402813795010"},{"denom":"ASSET5","index":"0.000000857613272150"},{"denom":"ASSET6","index":"0.000003491459778273"},{"denom":"ASSET7","index":"0.000005347470991052"},{"denom":"ASSET8","index":"0.000006978226734264"},{"denom":"ASSET9","index":"0.000003013965111016"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000002944371933765"},{"denom":"ASSET1","index":"0.000024968433937291"},{"denom":"ASSET10","index":"0.000019851368221906"},{"denom":"ASSET11","index":"0.000024791952485266"},{"denom":"ASSET12","index":"0.000023600048189968"},{"denom":"ASSET13","index":"0.000007784111470281"},{"denom":"ASSET14","index":"0.000022766914870589"},{"denom":"ASSET15","index":"0.000017894900322998"},{"denom":"ASSET16","index":"0.000011081662183182"},{"denom":"ASSET17","index":"0.000008672317440622"},{"denom":"ASSET18","index":"0.000003599691097086"},{"denom":"ASSET2","index":"0.000007555380586873"},{"denom":"ASSET3","index":"0.000002101847815188"},{"denom":"ASSET4","index":"0.000020244169178497"},{"denom":"ASSET5","index":"0.000001637098640985"},{"denom":"ASSET6","index":"0.000006609166185649"},{"denom":"ASSET7","index":"0.000010374399402552"},{"denom":"ASSET8","index":"0.000014150620453773"},{"denom":"ASSET9","index":"0.000006009906313007"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001449310882227"},{"denom":"ASSET1","index":"0.000012082282763787"},{"denom":"ASSET10","index":"0.000008417588941675"},{"denom":"ASSET11","index":"0.000011688148164511"},{"denom":"ASSET12","index":"0.000010525234539176"},{"denom":"ASSET13","index":"0.000003621923721366"},{"denom":"ASSET14","index":"0.000010918286351091"},{"denom":"ASSET15","index":"0.000007806355476589"},{"denom":"ASSET16","index":"0.000005442630668295"},{"denom":"ASSET17","index":"0.000003865550877512"},{"denom":"ASSET18","index":"0.000001841279906781"},{"denom":"ASSET2","index":"0.000003566701565973"},{"denom":"ASSET3","index":"0.000001043265621984"},{"denom":"ASSET4","index":"0.000009818715786353"},{"denom":"ASSET5","index":"0.000000809924945764"},{"denom":"ASSET6","index":"0.000003295463332131"},{"denom":"ASSET7","index":"0.000005047413281659"},{"denom":"ASSET8","index":"0.000006586595514820"},{"denom":"ASSET9","index":"0.000002844482396421"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000002938303361264"},{"denom":"ASSET1","index":"0.000024939884544734"},{"denom":"ASSET10","index":"0.000019970621943114"},{"denom":"ASSET11","index":"0.000024800280810198"},{"denom":"ASSET12","index":"0.000023679745396670"},{"denom":"ASSET13","index":"0.000007792253675830"},{"denom":"ASSET14","index":"0.000022752532795075"},{"denom":"ASSET15","index":"0.000017976341528508"},{"denom":"ASSET16","index":"0.000011059313296089"},{"denom":"ASSET17","index":"0.000008702160495382"},{"denom":"ASSET18","index":"0.000003584018468858"},{"denom":"ASSET2","index":"0.000007557839698908"},{"denom":"ASSET3","index":"0.000002096442663552"},{"denom":"ASSET4","index":"0.000020217858094708"},{"denom":"ASSET5","index":"0.000001633684136995"},{"denom":"ASSET6","index":"0.000006589976909255"},{"denom":"ASSET7","index":"0.000010359339015905"},{"denom":"ASSET8","index":"0.000014165755580726"},{"denom":"ASSET9","index":"0.000006010291774725"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001731982701050"},{"denom":"ASSET1","index":"0.000014440617081118"},{"denom":"ASSET10","index":"0.000010060714066040"},{"denom":"ASSET11","index":"0.000013969585405988"},{"denom":"ASSET12","index":"0.000012579542501729"},{"denom":"ASSET13","index":"0.000004329188348588"},{"denom":"ASSET14","index":"0.000013049805772821"},{"denom":"ASSET15","index":"0.000009329961826155"},{"denom":"ASSET16","index":"0.000006505308583448"},{"denom":"ASSET17","index":"0.000004619645074851"},{"denom":"ASSET18","index":"0.000002200709164068"},{"denom":"ASSET2","index":"0.000004262337197306"},{"denom":"ASSET3","index":"0.000001247119753241"},{"denom":"ASSET4","index":"0.000011735066464260"},{"denom":"ASSET5","index":"0.000000967420683506"},{"denom":"ASSET6","index":"0.000003938839097420"},{"denom":"ASSET7","index":"0.000006032740100243"},{"denom":"ASSET8","index":"0.000007872299366576"},{"denom":"ASSET9","index":"0.000003400187866969"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003329715418659"},{"denom":"ASSET1","index":"0.000028238028843607"},{"denom":"ASSET10","index":"0.000022458342297172"},{"denom":"ASSET11","index":"0.000028040237741643"},{"denom":"ASSET12","index":"0.000026695793846360"},{"denom":"ASSET13","index":"0.000008804253880653"},{"denom":"ASSET14","index":"0.000025748953032298"},{"denom":"ASSET15","index":"0.000020243324641083"},{"denom":"ASSET16","index":"0.000012532507824147"},{"denom":"ASSET17","index":"0.000009809802042254"},{"denom":"ASSET18","index":"0.000004070975493464"},{"denom":"ASSET2","index":"0.000008545109234155"},{"denom":"ASSET3","index":"0.000002377197518329"},{"denom":"ASSET4","index":"0.000022894451839245"},{"denom":"ASSET5","index":"0.000001851122407848"},{"denom":"ASSET6","index":"0.000007473999475476"},{"denom":"ASSET7","index":"0.000011732969702935"},{"denom":"ASSET8","index":"0.000016005536556726"},{"denom":"ASSET9","index":"0.000006797137295338"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001649988907243"},{"denom":"ASSET1","index":"0.000013756519537767"},{"denom":"ASSET10","index":"0.000009584361794534"},{"denom":"ASSET11","index":"0.000013307506163009"},{"denom":"ASSET12","index":"0.000011983307415229"},{"denom":"ASSET13","index":"0.000004124070634826"},{"denom":"ASSET14","index":"0.000012431118612277"},{"denom":"ASSET15","index":"0.000008888300900330"},{"denom":"ASSET16","index":"0.000006196625007203"},{"denom":"ASSET17","index":"0.000004401172597026"},{"denom":"ASSET18","index":"0.000002096597926581"},{"denom":"ASSET2","index":"0.000004060355216185"},{"denom":"ASSET3","index":"0.000001187751577673"},{"denom":"ASSET4","index":"0.000011179050527108"},{"denom":"ASSET5","index":"0.000000922070303720"},{"denom":"ASSET6","index":"0.000003752597722375"},{"denom":"ASSET7","index":"0.000005747010543590"},{"denom":"ASSET8","index":"0.000007499184556200"},{"denom":"ASSET9","index":"0.000003238666751267"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003269082759145"},{"denom":"ASSET1","index":"0.000027736662456421"},{"denom":"ASSET10","index":"0.000022145815740722"},{"denom":"ASSET11","index":"0.000027564157079872"},{"denom":"ASSET12","index":"0.000026286254396013"},{"denom":"ASSET13","index":"0.000008658548128401"},{"denom":"ASSET14","index":"0.000025298253418871"},{"denom":"ASSET15","index":"0.000019946084058089"},{"denom":"ASSET16","index":"0.000012303266096103"},{"denom":"ASSET17","index":"0.000009659898104260"},{"denom":"ASSET18","index":"0.000003991565584036"},{"denom":"ASSET2","index":"0.000008399501371576"},{"denom":"ASSET3","index":"0.000002333103515211"},{"denom":"ASSET4","index":"0.000022486071398850"},{"denom":"ASSET5","index":"0.000001817550334619"},{"denom":"ASSET6","index":"0.000007334517845971"},{"denom":"ASSET7","index":"0.000011522603065826"},{"denom":"ASSET8","index":"0.000015739883934035"},{"denom":"ASSET9","index":"0.000006680430297789"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001707974867576"},{"denom":"ASSET1","index":"0.000014238090744503"},{"denom":"ASSET10","index":"0.000009920037235236"},{"denom":"ASSET11","index":"0.000013773690453356"},{"denom":"ASSET12","index":"0.000012403461252069"},{"denom":"ASSET13","index":"0.000004268385028930"},{"denom":"ASSET14","index":"0.000012866619831208"},{"denom":"ASSET15","index":"0.000009199844270355"},{"denom":"ASSET16","index":"0.000006414063379473"},{"denom":"ASSET17","index":"0.000004555220502875"},{"denom":"ASSET18","index":"0.000002169891734707"},{"denom":"ASSET2","index":"0.000004203195148489"},{"denom":"ASSET3","index":"0.000001229294888332"},{"denom":"ASSET4","index":"0.000011570893350426"},{"denom":"ASSET5","index":"0.000000954255678468"},{"denom":"ASSET6","index":"0.000003884075162326"},{"denom":"ASSET7","index":"0.000005948421376317"},{"denom":"ASSET8","index":"0.000007761941764609"},{"denom":"ASSET9","index":"0.000003352622422724"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003075387603983"},{"denom":"ASSET1","index":"0.000026047450678709"},{"denom":"ASSET10","index":"0.000020531243448578"},{"denom":"ASSET11","index":"0.000025816927992783"},{"denom":"ASSET12","index":"0.000024485469945303"},{"denom":"ASSET13","index":"0.000008098391373250"},{"denom":"ASSET14","index":"0.000023735883509134"},{"denom":"ASSET15","index":"0.000018540774078871"},{"denom":"ASSET16","index":"0.000011572711306393"},{"denom":"ASSET17","index":"0.000008997644319689"},{"denom":"ASSET18","index":"0.000003770348288081"},{"denom":"ASSET2","index":"0.000007868945206789"},{"denom":"ASSET3","index":"0.000002196489262864"},{"denom":"ASSET4","index":"0.000021122354693053"},{"denom":"ASSET5","index":"0.000001710501624761"},{"denom":"ASSET6","index":"0.000006909892735753"},{"denom":"ASSET7","index":"0.000010827333344051"},{"denom":"ASSET8","index":"0.000014723239896475"},{"denom":"ASSET9","index":"0.000006260042064096"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001779156074987"},{"denom":"ASSET1","index":"0.000014834764457923"},{"denom":"ASSET10","index":"0.000010335215703318"},{"denom":"ASSET11","index":"0.000014351450406057"},{"denom":"ASSET12","index":"0.000012923397473821"},{"denom":"ASSET13","index":"0.000004447014618532"},{"denom":"ASSET14","index":"0.000013405835956753"},{"denom":"ASSET15","index":"0.000009584853126417"},{"denom":"ASSET16","index":"0.000006682342108415"},{"denom":"ASSET17","index":"0.000004745583625211"},{"denom":"ASSET18","index":"0.000002260718988984"},{"denom":"ASSET2","index":"0.000004378720241638"},{"denom":"ASSET3","index":"0.000001280957351233"},{"denom":"ASSET4","index":"0.000012055708659691"},{"denom":"ASSET5","index":"0.000000993770740704"},{"denom":"ASSET6","index":"0.000004046879615447"},{"denom":"ASSET7","index":"0.000006197276918679"},{"denom":"ASSET8","index":"0.000008086754679418"},{"denom":"ASSET9","index":"0.000003492644479883"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003478645419875"},{"denom":"ASSET1","index":"0.000029510728520321"},{"denom":"ASSET10","index":"0.000023521700007579"},{"denom":"ASSET11","index":"0.000029317721838376"},{"denom":"ASSET12","index":"0.000027938200533330"},{"denom":"ASSET13","index":"0.000009206643656085"},{"denom":"ASSET14","index":"0.000026913511393693"},{"denom":"ASSET15","index":"0.000021192735957156"},{"denom":"ASSET16","index":"0.000013092928863665"},{"denom":"ASSET17","index":"0.000010265835619821"},{"denom":"ASSET18","index":"0.000004249633310572"},{"denom":"ASSET2","index":"0.000008933634051769"},{"denom":"ASSET3","index":"0.000002482776919113"},{"denom":"ASSET4","index":"0.000023925662277258"},{"denom":"ASSET5","index":"0.000001933519521756"},{"denom":"ASSET6","index":"0.000007806757132876"},{"denom":"ASSET7","index":"0.000012260200744601"},{"denom":"ASSET8","index":"0.000016737737824425"},{"denom":"ASSET9","index":"0.000007106044722519"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001752700098923"},{"denom":"ASSET1","index":"0.000014612940709519"},{"denom":"ASSET10","index":"0.000010180696541309"},{"denom":"ASSET11","index":"0.000014136053678762"},{"denom":"ASSET12","index":"0.000012730078503378"},{"denom":"ASSET13","index":"0.000004380628160175"},{"denom":"ASSET14","index":"0.000013205843447004"},{"denom":"ASSET15","index":"0.000009441241121853"},{"denom":"ASSET16","index":"0.000006583285198706"},{"denom":"ASSET17","index":"0.000004674614988548"},{"denom":"ASSET18","index":"0.000002226220868286"},{"denom":"ASSET2","index":"0.000004313302932304"},{"denom":"ASSET3","index":"0.000001261225935460"},{"denom":"ASSET4","index":"0.000011875048109410"},{"denom":"ASSET5","index":"0.000000979582065531"},{"denom":"ASSET6","index":"0.000003985653489996"},{"denom":"ASSET7","index":"0.000006105276080818"},{"denom":"ASSET8","index":"0.000007965696544335"},{"denom":"ASSET9","index":"0.000003440319144236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003327512121722"},{"denom":"ASSET1","index":"0.000028211822531533"},{"denom":"ASSET10","index":"0.000022399629444355"},{"denom":"ASSET11","index":"0.000028004032167971"},{"denom":"ASSET12","index":"0.000026643127370344"},{"denom":"ASSET13","index":"0.000008791339050068"},{"denom":"ASSET14","index":"0.000025722152469956"},{"denom":"ASSET15","index":"0.000020197596080044"},{"denom":"ASSET16","index":"0.000012523737733641"},{"denom":"ASSET17","index":"0.000009790102863953"},{"denom":"ASSET18","index":"0.000004069245825383"},{"denom":"ASSET2","index":"0.000008534453115749"},{"denom":"ASSET3","index":"0.000002375171252372"},{"denom":"ASSET4","index":"0.000022873545881432"},{"denom":"ASSET5","index":"0.000001850500835715"},{"denom":"ASSET6","index":"0.000007470212303630"},{"denom":"ASSET7","index":"0.000011723166108277"},{"denom":"ASSET8","index":"0.000015981595788329"},{"denom":"ASSET9","index":"0.000006788341225254"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001434713876400"},{"denom":"ASSET1","index":"0.000011974044460331"},{"denom":"ASSET10","index":"0.000008340728508476"},{"denom":"ASSET11","index":"0.000011582406348125"},{"denom":"ASSET12","index":"0.000010430757641934"},{"denom":"ASSET13","index":"0.000003588723493535"},{"denom":"ASSET14","index":"0.000010820456951604"},{"denom":"ASSET15","index":"0.000007735822117345"},{"denom":"ASSET16","index":"0.000005393748654249"},{"denom":"ASSET17","index":"0.000003829135007959"},{"denom":"ASSET18","index":"0.000001824413186071"},{"denom":"ASSET2","index":"0.000003534437022536"},{"denom":"ASSET3","index":"0.000001033381751515"},{"denom":"ASSET4","index":"0.000009730849926555"},{"denom":"ASSET5","index":"0.000000802664249770"},{"denom":"ASSET6","index":"0.000003264943470077"},{"denom":"ASSET7","index":"0.000005002110542043"},{"denom":"ASSET8","index":"0.000006526009335083"},{"denom":"ASSET9","index":"0.000002819018886872"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000002895048613815"},{"denom":"ASSET1","index":"0.000024589366099895"},{"denom":"ASSET10","index":"0.000019676065498265"},{"denom":"ASSET11","index":"0.000024447379266412"},{"denom":"ASSET12","index":"0.000023337478265694"},{"denom":"ASSET13","index":"0.000007679998629802"},{"denom":"ASSET14","index":"0.000022431328797509"},{"denom":"ASSET15","index":"0.000017714358679290"},{"denom":"ASSET16","index":"0.000010904445776568"},{"denom":"ASSET17","index":"0.000008574179211920"},{"denom":"ASSET18","index":"0.000003534399202209"},{"denom":"ASSET2","index":"0.000007450371795821"},{"denom":"ASSET3","index":"0.000002066219984895"},{"denom":"ASSET4","index":"0.000019933989143940"},{"denom":"ASSET5","index":"0.000001610899827710"},{"denom":"ASSET6","index":"0.000006497050827728"},{"denom":"ASSET7","index":"0.000010213894093182"},{"denom":"ASSET8","index":"0.000013962110633776"},{"denom":"ASSET9","index":"0.000005925048173997"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001401536005232"},{"denom":"ASSET1","index":"0.000011690786017211"},{"denom":"ASSET10","index":"0.000008143726832164"},{"denom":"ASSET11","index":"0.000011307987636928"},{"denom":"ASSET12","index":"0.000010184289165772"},{"denom":"ASSET13","index":"0.000003503840013080"},{"denom":"ASSET14","index":"0.000010564000462344"},{"denom":"ASSET15","index":"0.000007554093843178"},{"denom":"ASSET16","index":"0.000005266564812612"},{"denom":"ASSET17","index":"0.000003738458375190"},{"denom":"ASSET18","index":"0.000001781247301804"},{"denom":"ASSET2","index":"0.000003448272506265"},{"denom":"ASSET3","index":"0.000001009476373813"},{"denom":"ASSET4","index":"0.000009498956581716"},{"denom":"ASSET5","index":"0.000000781032179127"},{"denom":"ASSET6","index":"0.000003188957474460"},{"denom":"ASSET7","index":"0.000004883766432329"},{"denom":"ASSET8","index":"0.000006371740781496"},{"denom":"ASSET9","index":"0.000002750591587361"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003071913026336"},{"denom":"ASSET1","index":"0.000026115211920195"},{"denom":"ASSET10","index":"0.000021104918039272"},{"denom":"ASSET11","index":"0.000026018207650283"},{"denom":"ASSET12","index":"0.000024942011742431"},{"denom":"ASSET13","index":"0.000008182453133262"},{"denom":"ASSET14","index":"0.000023839798810024"},{"denom":"ASSET15","index":"0.000018963275072170"},{"denom":"ASSET16","index":"0.000011567273660047"},{"denom":"ASSET17","index":"0.000009164652819502"},{"denom":"ASSET18","index":"0.000003735860972186"},{"denom":"ASSET2","index":"0.000007925194415041"},{"denom":"ASSET3","index":"0.000002190810612048"},{"denom":"ASSET4","index":"0.000021165118890878"},{"denom":"ASSET5","index":"0.000001704606606646"},{"denom":"ASSET6","index":"0.000006884812645629"},{"denom":"ASSET7","index":"0.000010842612570084"},{"denom":"ASSET8","index":"0.000014874699612932"},{"denom":"ASSET9","index":"0.000006301602876980"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001534549585700"},{"denom":"ASSET1","index":"0.000012795681230217"},{"denom":"ASSET10","index":"0.000008914897664776"},{"denom":"ASSET11","index":"0.000012378406858633"},{"denom":"ASSET12","index":"0.000011146809898878"},{"denom":"ASSET13","index":"0.000003835934265229"},{"denom":"ASSET14","index":"0.000011563204872419"},{"denom":"ASSET15","index":"0.000008267660704848"},{"denom":"ASSET16","index":"0.000005764014475342"},{"denom":"ASSET17","index":"0.000004093597891939"},{"denom":"ASSET18","index":"0.000001950065161198"},{"denom":"ASSET2","index":"0.000003777014596322"},{"denom":"ASSET3","index":"0.000001104963641508"},{"denom":"ASSET4","index":"0.000010398442163960"},{"denom":"ASSET5","index":"0.000000857413092297"},{"denom":"ASSET6","index":"0.000003490330834180"},{"denom":"ASSET7","index":"0.000005345421006692"},{"denom":"ASSET8","index":"0.000006975385280099"},{"denom":"ASSET9","index":"0.000003012817696624"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003034954909236"},{"denom":"ASSET1","index":"0.000025752158165977"},{"denom":"ASSET10","index":"0.000020556858138008"},{"denom":"ASSET11","index":"0.000025591676311293"},{"denom":"ASSET12","index":"0.000024402528250789"},{"denom":"ASSET13","index":"0.000008038375291107"},{"denom":"ASSET14","index":"0.000023488313497799"},{"denom":"ASSET15","index":"0.000018516037809802"},{"denom":"ASSET16","index":"0.000011423945454084"},{"denom":"ASSET17","index":"0.000008967524527402"},{"denom":"ASSET18","index":"0.000003706330058793"},{"denom":"ASSET2","index":"0.000007798931182527"},{"denom":"ASSET3","index":"0.000002166419358500"},{"denom":"ASSET4","index":"0.000020877722621984"},{"denom":"ASSET5","index":"0.000001687498984799"},{"denom":"ASSET6","index":"0.000006810207932767"},{"denom":"ASSET7","index":"0.000010698180555138"},{"denom":"ASSET8","index":"0.000014612921845389"},{"denom":"ASSET9","index":"0.000006203015740356"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001658482037183"},{"denom":"ASSET1","index":"0.000013862588923046"},{"denom":"ASSET10","index":"0.000009655943522610"},{"denom":"ASSET11","index":"0.000013408077810815"},{"denom":"ASSET12","index":"0.000012073555821711"},{"denom":"ASSET13","index":"0.000004153457929856"},{"denom":"ASSET14","index":"0.000012528066933942"},{"denom":"ASSET15","index":"0.000008954835955871"},{"denom":"ASSET16","index":"0.000006242274956279"},{"denom":"ASSET17","index":"0.000004433900956551"},{"denom":"ASSET18","index":"0.000002112993149414"},{"denom":"ASSET2","index":"0.000004090600010079"},{"denom":"ASSET3","index":"0.000001194300475756"},{"denom":"ASSET4","index":"0.000011266073313811"},{"denom":"ASSET5","index":"0.000000928363122855"},{"denom":"ASSET6","index":"0.000003781145635794"},{"denom":"ASSET7","index":"0.000005787763844048"},{"denom":"ASSET8","index":"0.000007557456046990"},{"denom":"ASSET9","index":"0.000003263776603787"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003188277912377"},{"denom":"ASSET1","index":"0.000027072180177666"},{"denom":"ASSET10","index":"0.000021525590492702"},{"denom":"ASSET11","index":"0.000026879695640981"},{"denom":"ASSET12","index":"0.000025588321740665"},{"denom":"ASSET13","index":"0.000008437670891103"},{"denom":"ASSET14","index":"0.000024686413843557"},{"denom":"ASSET15","index":"0.000019403734038796"},{"denom":"ASSET16","index":"0.000012012351193227"},{"denom":"ASSET17","index":"0.000009402991763462"},{"denom":"ASSET18","index":"0.000003903246578743"},{"denom":"ASSET2","index":"0.000008191237466303"},{"denom":"ASSET3","index":"0.000002276140738265"},{"denom":"ASSET4","index":"0.000021950324608304"},{"denom":"ASSET5","index":"0.000001774065663090"},{"denom":"ASSET6","index":"0.000007165524818145"},{"denom":"ASSET7","index":"0.000011244820309610"},{"denom":"ASSET8","index":"0.000015343724796373"},{"denom":"ASSET9","index":"0.000006516357987660"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001453411320498"},{"denom":"ASSET1","index":"0.000012118137400313"},{"denom":"ASSET10","index":"0.000008442891188019"},{"denom":"ASSET11","index":"0.000011723343510399"},{"denom":"ASSET12","index":"0.000010556870017106"},{"denom":"ASSET13","index":"0.000003632917795231"},{"denom":"ASSET14","index":"0.000010951256903010"},{"denom":"ASSET15","index":"0.000007829943148627"},{"denom":"ASSET16","index":"0.000005459144789091"},{"denom":"ASSET17","index":"0.000003877120201363"},{"denom":"ASSET18","index":"0.000001846984198382"},{"denom":"ASSET2","index":"0.000003577158245830"},{"denom":"ASSET3","index":"0.000001046407310278"},{"denom":"ASSET4","index":"0.000009848276035312"},{"denom":"ASSET5","index":"0.000000811973000390"},{"denom":"ASSET6","index":"0.000003305686571013"},{"denom":"ASSET7","index":"0.000005062722883136"},{"denom":"ASSET8","index":"0.000006606082089893"},{"denom":"ASSET9","index":"0.000002853098111648"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000002979919393708"},{"denom":"ASSET1","index":"0.000025298333716476"},{"denom":"ASSET10","index":"0.000020286143685892"},{"denom":"ASSET11","index":"0.000025164674259360"},{"denom":"ASSET12","index":"0.000024041723171534"},{"denom":"ASSET13","index":"0.000007907785176595"},{"denom":"ASSET14","index":"0.000023082402053339"},{"denom":"ASSET15","index":"0.000018255332392862"},{"denom":"ASSET16","index":"0.000011216675450010"},{"denom":"ASSET17","index":"0.000008835128154455"},{"denom":"ASSET18","index":"0.000003633337151635"},{"denom":"ASSET2","index":"0.000007668586747858"},{"denom":"ASSET3","index":"0.000002126085354033"},{"denom":"ASSET4","index":"0.000020508686269066"},{"denom":"ASSET5","index":"0.000001656307666438"},{"denom":"ASSET6","index":"0.000006683025235204"},{"denom":"ASSET7","index":"0.000010507859389263"},{"denom":"ASSET8","index":"0.000014375637436113"},{"denom":"ASSET9","index":"0.000006098257618497"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001779729226299"},{"denom":"ASSET1","index":"0.000014840802182142"},{"denom":"ASSET10","index":"0.000010337989986643"},{"denom":"ASSET11","index":"0.000014356968690293"},{"denom":"ASSET12","index":"0.000012927350131463"},{"denom":"ASSET13","index":"0.000004449323065747"},{"denom":"ASSET14","index":"0.000013411183623312"},{"denom":"ASSET15","index":"0.000009589142170113"},{"denom":"ASSET16","index":"0.000006683709894939"},{"denom":"ASSET17","index":"0.000004745944603463"},{"denom":"ASSET18","index":"0.000002261131394068"},{"denom":"ASSET2","index":"0.000004378814667437"},{"denom":"ASSET3","index":"0.000001281307789972"},{"denom":"ASSET4","index":"0.000012059367435030"},{"denom":"ASSET5","index":"0.000000994411548574"},{"denom":"ASSET6","index":"0.000004048154592606"},{"denom":"ASSET7","index":"0.000006199876403090"},{"denom":"ASSET8","index":"0.000008089015212973"},{"denom":"ASSET9","index":"0.000003493812702447"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003433377044021"},{"denom":"ASSET1","index":"0.000029119719093870"},{"denom":"ASSET10","index":"0.000023168779363922"},{"denom":"ASSET11","index":"0.000028918871222836"},{"denom":"ASSET12","index":"0.000027536680421684"},{"denom":"ASSET13","index":"0.000009079853140421"},{"denom":"ASSET14","index":"0.000026553415276013"},{"denom":"ASSET15","index":"0.000020883272198610"},{"denom":"ASSET16","index":"0.000012920460029656"},{"denom":"ASSET17","index":"0.000010116347697920"},{"denom":"ASSET18","index":"0.000004196183907349"},{"denom":"ASSET2","index":"0.000008810148159861"},{"denom":"ASSET3","index":"0.000002451192479374"},{"denom":"ASSET4","index":"0.000023608026429735"},{"denom":"ASSET5","index":"0.000001908186346512"},{"denom":"ASSET6","index":"0.000007706415634871"},{"denom":"ASSET7","index":"0.000012098308533034"},{"denom":"ASSET8","index":"0.000016505861275643"},{"denom":"ASSET9","index":"0.000007009790471677"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001595670533734"},{"denom":"ASSET1","index":"0.000013304245337308"},{"denom":"ASSET10","index":"0.000009268754359880"},{"denom":"ASSET11","index":"0.000012870227612725"},{"denom":"ASSET12","index":"0.000011589729681675"},{"denom":"ASSET13","index":"0.000003988302473145"},{"denom":"ASSET14","index":"0.000012022582258004"},{"denom":"ASSET15","index":"0.000008595881243245"},{"denom":"ASSET16","index":"0.000005992940044003"},{"denom":"ASSET17","index":"0.000004256286571545"},{"denom":"ASSET18","index":"0.000002027357961809"},{"denom":"ASSET2","index":"0.000003927132189815"},{"denom":"ASSET3","index":"0.000001148836178358"},{"denom":"ASSET4","index":"0.000010811993222188"},{"denom":"ASSET5","index":"0.000000891338414244"},{"denom":"ASSET6","index":"0.000003628854236813"},{"denom":"ASSET7","index":"0.000005557757171166"},{"denom":"ASSET8","index":"0.000007252465306483"},{"denom":"ASSET9","index":"0.000003132501080646"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003118409098775"},{"denom":"ASSET1","index":"0.000026454243753489"},{"denom":"ASSET10","index":"0.000021084585905412"},{"denom":"ASSET11","index":"0.000026280950742513"},{"denom":"ASSET12","index":"0.000025043390497745"},{"denom":"ASSET13","index":"0.000008253298424938"},{"denom":"ASSET14","index":"0.000024125697910719"},{"denom":"ASSET15","index":"0.000018997425080839"},{"denom":"ASSET16","index":"0.000011737294217995"},{"denom":"ASSET17","index":"0.000009202973625129"},{"denom":"ASSET18","index":"0.000003809493270778"},{"denom":"ASSET2","index":"0.000008008868325931"},{"denom":"ASSET3","index":"0.000002225819587877"},{"denom":"ASSET4","index":"0.000021447702379813"},{"denom":"ASSET5","index":"0.000001733713847172"},{"denom":"ASSET6","index":"0.000006998355968525"},{"denom":"ASSET7","index":"0.000010990481127196"},{"denom":"ASSET8","index":"0.000015003824321723"},{"denom":"ASSET9","index":"0.000006370091157596"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001536288093705"},{"denom":"ASSET1","index":"0.000012808796131863"},{"denom":"ASSET10","index":"0.000008924322337818"},{"denom":"ASSET11","index":"0.000012391382492026"},{"denom":"ASSET12","index":"0.000011158327625467"},{"denom":"ASSET13","index":"0.000003840018305497"},{"denom":"ASSET14","index":"0.000011575273312793"},{"denom":"ASSET15","index":"0.000008276208110044"},{"denom":"ASSET16","index":"0.000005770322413488"},{"denom":"ASSET17","index":"0.000004097860139074"},{"denom":"ASSET18","index":"0.000001951829923499"},{"denom":"ASSET2","index":"0.000003781056289108"},{"denom":"ASSET3","index":"0.000001105771783560"},{"denom":"ASSET4","index":"0.000010409603607822"},{"denom":"ASSET5","index":"0.000000858224905226"},{"denom":"ASSET6","index":"0.000003494201399847"},{"denom":"ASSET7","index":"0.000005351036963607"},{"denom":"ASSET8","index":"0.000006982787369562"},{"denom":"ASSET9","index":"0.000003015953933577"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003103831608428"},{"denom":"ASSET1","index":"0.000026343132935309"},{"denom":"ASSET10","index":"0.000021085436521682"},{"denom":"ASSET11","index":"0.000026194005406126"},{"denom":"ASSET12","index":"0.000025005394550642"},{"denom":"ASSET13","index":"0.000008229918727938"},{"denom":"ASSET14","index":"0.000024032248358707"},{"denom":"ASSET15","index":"0.000018981699828973"},{"denom":"ASSET16","index":"0.000011682673521897"},{"denom":"ASSET17","index":"0.000009189132473525"},{"denom":"ASSET18","index":"0.000003786361913516"},{"denom":"ASSET2","index":"0.000007982150766688"},{"denom":"ASSET3","index":"0.000002214601198569"},{"denom":"ASSET4","index":"0.000021356131094847"},{"denom":"ASSET5","index":"0.000001725369734459"},{"denom":"ASSET6","index":"0.000006962131899100"},{"denom":"ASSET7","index":"0.000010942547729288"},{"denom":"ASSET8","index":"0.000014960973970884"},{"denom":"ASSET9","index":"0.000006348281537724"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001156201861882"},{"denom":"ASSET1","index":"0.000009641528249827"},{"denom":"ASSET10","index":"0.000006717693720376"},{"denom":"ASSET11","index":"0.000009327193051790"},{"denom":"ASSET12","index":"0.000008399128436016"},{"denom":"ASSET13","index":"0.000002890504654704"},{"denom":"ASSET14","index":"0.000008712888981039"},{"denom":"ASSET15","index":"0.000006229813312455"},{"denom":"ASSET16","index":"0.000004343227471224"},{"denom":"ASSET17","index":"0.000003084737373052"},{"denom":"ASSET18","index":"0.000001469387753892"},{"denom":"ASSET2","index":"0.000002846256372714"},{"denom":"ASSET3","index":"0.000000832672215639"},{"denom":"ASSET4","index":"0.000007835393830396"},{"denom":"ASSET5","index":"0.000000645909986459"},{"denom":"ASSET6","index":"0.000002630186839877"},{"denom":"ASSET7","index":"0.000004027742967162"},{"denom":"ASSET8","index":"0.000005256351108664"},{"denom":"ASSET9","index":"0.000002269879400812"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000002648545180722"},{"denom":"ASSET1","index":"0.000022528915692996"},{"denom":"ASSET10","index":"0.000018297756458480"},{"denom":"ASSET11","index":"0.000022469822082599"},{"denom":"ASSET12","index":"0.000021584227648624"},{"denom":"ASSET13","index":"0.000007070243338634"},{"denom":"ASSET14","index":"0.000020574684608302"},{"denom":"ASSET15","index":"0.000016423497937791"},{"denom":"ASSET16","index":"0.000009972839292196"},{"denom":"ASSET17","index":"0.000007932645550822"},{"denom":"ASSET18","index":"0.000003216131666673"},{"denom":"ASSET2","index":"0.000006846442901912"},{"denom":"ASSET3","index":"0.000001888119307859"},{"denom":"ASSET4","index":"0.000018258669735553"},{"denom":"ASSET5","index":"0.000001471345302008"},{"denom":"ASSET6","index":"0.000005932348598922"},{"denom":"ASSET7","index":"0.000009352074075404"},{"denom":"ASSET8","index":"0.000012853047191550"},{"denom":"ASSET9","index":"0.000005442948627063"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001638829976996"},{"denom":"ASSET1","index":"0.000013663699511091"},{"denom":"ASSET10","index":"0.000009519748943981"},{"denom":"ASSET11","index":"0.000013218199388741"},{"denom":"ASSET12","index":"0.000011902774883924"},{"denom":"ASSET13","index":"0.000004095984811686"},{"denom":"ASSET14","index":"0.000012347548252404"},{"denom":"ASSET15","index":"0.000008827879259679"},{"denom":"ASSET16","index":"0.000006154878525580"},{"denom":"ASSET17","index":"0.000004371424528441"},{"denom":"ASSET18","index":"0.000002082149837736"},{"denom":"ASSET2","index":"0.000004033483978861"},{"denom":"ASSET3","index":"0.000001179521531115"},{"denom":"ASSET4","index":"0.000011104072380722"},{"denom":"ASSET5","index":"0.000000915709876282"},{"denom":"ASSET6","index":"0.000003726793845693"},{"denom":"ASSET7","index":"0.000005707924895490"},{"denom":"ASSET8","index":"0.000007448500414296"},{"denom":"ASSET9","index":"0.000003217339382778"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003133427860009"},{"denom":"ASSET1","index":"0.000026571363581284"},{"denom":"ASSET10","index":"0.000021118003104150"},{"denom":"ASSET11","index":"0.000026381510155653"},{"denom":"ASSET12","index":"0.000025108485590780"},{"denom":"ASSET13","index":"0.000008282355352591"},{"denom":"ASSET14","index":"0.000024227637307493"},{"denom":"ASSET15","index":"0.000019037535386694"},{"denom":"ASSET16","index":"0.000011793447009555"},{"denom":"ASSET17","index":"0.000009226841180516"},{"denom":"ASSET18","index":"0.000003831770888939"},{"denom":"ASSET2","index":"0.000008040278303534"},{"denom":"ASSET3","index":"0.000002236402387063"},{"denom":"ASSET4","index":"0.000021543810534784"},{"denom":"ASSET5","index":"0.000001742508705183"},{"denom":"ASSET6","index":"0.000007033989161296"},{"denom":"ASSET7","index":"0.000011040340871930"},{"denom":"ASSET8","index":"0.000015056795520064"},{"denom":"ASSET9","index":"0.000006395464292965"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001556422065682"},{"denom":"ASSET1","index":"0.000012975233747354"},{"denom":"ASSET10","index":"0.000009039925804131"},{"denom":"ASSET11","index":"0.000012551842294036"},{"denom":"ASSET12","index":"0.000011303196313064"},{"denom":"ASSET13","index":"0.000003889859143149"},{"denom":"ASSET14","index":"0.000011725391745328"},{"denom":"ASSET15","index":"0.000008383310245172"},{"denom":"ASSET16","index":"0.000005844954893688"},{"denom":"ASSET17","index":"0.000004150990406731"},{"denom":"ASSET18","index":"0.000001977421476890"},{"denom":"ASSET2","index":"0.000003830058090421"},{"denom":"ASSET3","index":"0.000001120273054448"},{"denom":"ASSET4","index":"0.000010544520290781"},{"denom":"ASSET5","index":"0.000000869507306673"},{"denom":"ASSET6","index":"0.000003539424974160"},{"denom":"ASSET7","index":"0.000005420766093000"},{"denom":"ASSET8","index":"0.000007073268516732"},{"denom":"ASSET9","index":"0.000003055036447059"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003102345998156"},{"denom":"ASSET1","index":"0.000026324295521459"},{"denom":"ASSET10","index":"0.000021034709957123"},{"denom":"ASSET11","index":"0.000026165624152899"},{"denom":"ASSET12","index":"0.000024960753498443"},{"denom":"ASSET13","index":"0.000008219480216908"},{"denom":"ASSET14","index":"0.000024012126304297"},{"denom":"ASSET15","index":"0.000018942125813395"},{"denom":"ASSET16","index":"0.000011676379885795"},{"denom":"ASSET17","index":"0.000009172744202097"},{"denom":"ASSET18","index":"0.000003786686743681"},{"denom":"ASSET2","index":"0.000007973892542195"},{"denom":"ASSET3","index":"0.000002213622154517"},{"denom":"ASSET4","index":"0.000021341514997764"},{"denom":"ASSET5","index":"0.000001724677267981"},{"denom":"ASSET6","index":"0.000006959760131783"},{"denom":"ASSET7","index":"0.000010935767858794"},{"denom":"ASSET8","index":"0.000014942141973689"},{"denom":"ASSET9","index":"0.000006341977499472"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001602535700795"},{"denom":"ASSET1","index":"0.000013360208994045"},{"denom":"ASSET10","index":"0.000009307956057468"},{"denom":"ASSET11","index":"0.000012924500245282"},{"denom":"ASSET12","index":"0.000011638378499862"},{"denom":"ASSET13","index":"0.000004005127453862"},{"denom":"ASSET14","index":"0.000012073279383206"},{"denom":"ASSET15","index":"0.000008632311279566"},{"denom":"ASSET16","index":"0.000006018597363935"},{"denom":"ASSET17","index":"0.000004274146638048"},{"denom":"ASSET18","index":"0.000002036090141777"},{"denom":"ASSET2","index":"0.000003943729682095"},{"denom":"ASSET3","index":"0.000001153631816872"},{"denom":"ASSET4","index":"0.000010857441929150"},{"denom":"ASSET5","index":"0.000000895384171592"},{"denom":"ASSET6","index":"0.000003644280900498"},{"denom":"ASSET7","index":"0.000005581542172809"},{"denom":"ASSET8","index":"0.000007283176031543"},{"denom":"ASSET9","index":"0.000003145827937606"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003144114236048"},{"denom":"ASSET1","index":"0.000026672683120621"},{"denom":"ASSET10","index":"0.000021269722635007"},{"denom":"ASSET11","index":"0.000026500587720899"},{"denom":"ASSET12","index":"0.000025258297912053"},{"denom":"ASSET13","index":"0.000008323039503604"},{"denom":"ASSET14","index":"0.000024326015412045"},{"denom":"ASSET15","index":"0.000019162234595686"},{"denom":"ASSET16","index":"0.000011833945147558"},{"denom":"ASSET17","index":"0.000009281867675434"},{"denom":"ASSET18","index":"0.000003840349431676"},{"denom":"ASSET2","index":"0.000008076055447193"},{"denom":"ASSET3","index":"0.000002244145529651"},{"denom":"ASSET4","index":"0.000021624555086447"},{"denom":"ASSET5","index":"0.000001748086313596"},{"denom":"ASSET6","index":"0.000007055400333314"},{"denom":"ASSET7","index":"0.000011081362186058"},{"denom":"ASSET8","index":"0.000015130336137492"},{"denom":"ASSET9","index":"0.000006423586371910"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001633811359009"},{"denom":"ASSET1","index":"0.000013620164108551"},{"denom":"ASSET10","index":"0.000009487838038290"},{"denom":"ASSET11","index":"0.000013174776703502"},{"denom":"ASSET12","index":"0.000011864685946211"},{"denom":"ASSET13","index":"0.000004082355776036"},{"denom":"ASSET14","index":"0.000012307900729772"},{"denom":"ASSET15","index":"0.000008799117026580"},{"denom":"ASSET16","index":"0.000006135483082238"},{"denom":"ASSET17","index":"0.000004356106083529"},{"denom":"ASSET18","index":"0.000002074853521082"},{"denom":"ASSET2","index":"0.000004019349752882"},{"denom":"ASSET3","index":"0.000001175388225032"},{"denom":"ASSET4","index":"0.000011067333860098"},{"denom":"ASSET5","index":"0.000000912501024979"},{"denom":"ASSET6","index":"0.000003715182744556"},{"denom":"ASSET7","index":"0.000005690095677188"},{"denom":"ASSET8","index":"0.000007423847624648"},{"denom":"ASSET9","index":"0.000003206789316354"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003109600829404"},{"denom":"ASSET1","index":"0.000026362702045617"},{"denom":"ASSET10","index":"0.000020937844947102"},{"denom":"ASSET11","index":"0.000026169598808926"},{"denom":"ASSET12","index":"0.000024901798461360"},{"denom":"ASSET13","index":"0.000008215149609138"},{"denom":"ASSET14","index":"0.000024035954930107"},{"denom":"ASSET15","index":"0.000018878331344314"},{"denom":"ASSET16","index":"0.000011701775976010"},{"denom":"ASSET17","index":"0.000009149505282332"},{"denom":"ASSET18","index":"0.000003801954966508"},{"denom":"ASSET2","index":"0.000007974718303805"},{"denom":"ASSET3","index":"0.000002219037761573"},{"denom":"ASSET4","index":"0.000021373555319687"},{"denom":"ASSET5","index":"0.000001728657323000"},{"denom":"ASSET6","index":"0.000006980294033305"},{"denom":"ASSET7","index":"0.000010954522542925"},{"denom":"ASSET8","index":"0.000014935013269095"},{"denom":"ASSET9","index":"0.000006344057182602"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001356454583190"},{"denom":"ASSET1","index":"0.000011307707773056"},{"denom":"ASSET10","index":"0.000007878355411964"},{"denom":"ASSET11","index":"0.000010938987301217"},{"denom":"ASSET12","index":"0.000009850463994830"},{"denom":"ASSET13","index":"0.000003389876593037"},{"denom":"ASSET14","index":"0.000010218764511690"},{"denom":"ASSET15","index":"0.000007305956775156"},{"denom":"ASSET16","index":"0.000005094053899100"},{"denom":"ASSET17","index":"0.000003617492191826"},{"denom":"ASSET18","index":"0.000001723075280133"},{"denom":"ASSET2","index":"0.000003337802175602"},{"denom":"ASSET3","index":"0.000000976395326909"},{"denom":"ASSET4","index":"0.000009189454857387"},{"denom":"ASSET5","index":"0.000000758018737665"},{"denom":"ASSET6","index":"0.000003084569323074"},{"denom":"ASSET7","index":"0.000004724073562323"},{"denom":"ASSET8","index":"0.000006164519141376"},{"denom":"ASSET9","index":"0.000002662514568862"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000002920257070141"},{"denom":"ASSET1","index":"0.000024811653868653"},{"denom":"ASSET10","index":"0.000020012294768332"},{"denom":"ASSET11","index":"0.000024710629923001"},{"denom":"ASSET12","index":"0.000023666550441425"},{"denom":"ASSET13","index":"0.000007769918885884"},{"denom":"ASSET14","index":"0.000022647790193256"},{"denom":"ASSET15","index":"0.000017987461600930"},{"denom":"ASSET16","index":"0.000010993196459757"},{"denom":"ASSET17","index":"0.000008697266331114"},{"denom":"ASSET18","index":"0.000003553540715950"},{"denom":"ASSET2","index":"0.000007529733395993"},{"denom":"ASSET3","index":"0.000002082581454906"},{"denom":"ASSET4","index":"0.000020111524804667"},{"denom":"ASSET5","index":"0.000001623122955496"},{"denom":"ASSET6","index":"0.000006544727800067"},{"denom":"ASSET7","index":"0.000010303065547743"},{"denom":"ASSET8","index":"0.000014124873274804"},{"denom":"ASSET9","index":"0.000005987532811110"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001730803097805"},{"denom":"ASSET1","index":"0.000014429128492036"},{"denom":"ASSET10","index":"0.000010053081326419"},{"denom":"ASSET11","index":"0.000013956042311970"},{"denom":"ASSET12","index":"0.000012568515161896"},{"denom":"ASSET13","index":"0.000004324123072683"},{"denom":"ASSET14","index":"0.000013038716670133"},{"denom":"ASSET15","index":"0.000009320374681681"},{"denom":"ASSET16","index":"0.000006499165632259"},{"denom":"ASSET17","index":"0.000004615474927481"},{"denom":"ASSET18","index":"0.000002198119934213"},{"denom":"ASSET2","index":"0.000004257775620601"},{"denom":"ASSET3","index":"0.000001243293558590"},{"denom":"ASSET4","index":"0.000011726190987631"},{"denom":"ASSET5","index":"0.000000966365062941"},{"denom":"ASSET6","index":"0.000003934692375677"},{"denom":"ASSET7","index":"0.000006026079452192"},{"denom":"ASSET8","index":"0.000007863615407695"},{"denom":"ASSET9","index":"0.000003395258743528"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003241945367060"},{"denom":"ASSET1","index":"0.000027480716546724"},{"denom":"ASSET10","index":"0.000021780901079221"},{"denom":"ASSET11","index":"0.000027265989011084"},{"denom":"ASSET12","index":"0.000025921947969478"},{"denom":"ASSET13","index":"0.000008556984130745"},{"denom":"ASSET14","index":"0.000025051754134356"},{"denom":"ASSET15","index":"0.000019643848931612"},{"denom":"ASSET16","index":"0.000012200322352703"},{"denom":"ASSET17","index":"0.000009524928673174"},{"denom":"ASSET18","index":"0.000003966981346299"},{"denom":"ASSET2","index":"0.000008309018225650"},{"denom":"ASSET3","index":"0.000002312540225621"},{"denom":"ASSET4","index":"0.000022282443818183"},{"denom":"ASSET5","index":"0.000001802193647755"},{"denom":"ASSET6","index":"0.000007278646216530"},{"denom":"ASSET7","index":"0.000011418356902196"},{"denom":"ASSET8","index":"0.000015557459098515"},{"denom":"ASSET9","index":"0.000006608754258977"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001631665384825"},{"denom":"ASSET1","index":"0.000013602742609312"},{"denom":"ASSET10","index":"0.000009477179623123"},{"denom":"ASSET11","index":"0.000013159027954757"},{"denom":"ASSET12","index":"0.000011849393704263"},{"denom":"ASSET13","index":"0.000004077627053980"},{"denom":"ASSET14","index":"0.000012292493795584"},{"denom":"ASSET15","index":"0.000008788868801652"},{"denom":"ASSET16","index":"0.000006127810000788"},{"denom":"ASSET17","index":"0.000004351722256101"},{"denom":"ASSET18","index":"0.000002072921786447"},{"denom":"ASSET2","index":"0.000004015556167401"},{"denom":"ASSET3","index":"0.000001174430339134"},{"denom":"ASSET4","index":"0.000011054148880171"},{"denom":"ASSET5","index":"0.000000911397275215"},{"denom":"ASSET6","index":"0.000003710118240373"},{"denom":"ASSET7","index":"0.000005682866219766"},{"denom":"ASSET8","index":"0.000007415319974879"},{"denom":"ASSET9","index":"0.000003202489009539"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003079719434352"},{"denom":"ASSET1","index":"0.000026105925494605"},{"denom":"ASSET10","index":"0.000020711970439773"},{"denom":"ASSET11","index":"0.000025910008103106"},{"denom":"ASSET12","index":"0.000024641613628664"},{"denom":"ASSET13","index":"0.000008133110770201"},{"denom":"ASSET14","index":"0.000023800542954419"},{"denom":"ASSET15","index":"0.000018678884312278"},{"denom":"ASSET16","index":"0.000011589749383737"},{"denom":"ASSET17","index":"0.000009055208366452"},{"denom":"ASSET18","index":"0.000003767697278786"},{"denom":"ASSET2","index":"0.000007896757003962"},{"denom":"ASSET3","index":"0.000002198611212202"},{"denom":"ASSET4","index":"0.000021166859181475"},{"denom":"ASSET5","index":"0.000001712166144109"},{"denom":"ASSET6","index":"0.000006913910929446"},{"denom":"ASSET7","index":"0.000010848237821893"},{"denom":"ASSET8","index":"0.000014785764472138"},{"denom":"ASSET9","index":"0.000006281127943464"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001520990142264"},{"denom":"ASSET1","index":"0.000012680102108631"},{"denom":"ASSET10","index":"0.000008834326429376"},{"denom":"ASSET11","index":"0.000012266893306329"},{"denom":"ASSET12","index":"0.000011046354389007"},{"denom":"ASSET13","index":"0.000003801591675587"},{"denom":"ASSET14","index":"0.000011458856247250"},{"denom":"ASSET15","index":"0.000008193128168148"},{"denom":"ASSET16","index":"0.000005712107994187"},{"denom":"ASSET17","index":"0.000004056798480773"},{"denom":"ASSET18","index":"0.000001932431584420"},{"denom":"ASSET2","index":"0.000003743268790745"},{"denom":"ASSET3","index":"0.000001095056346905"},{"denom":"ASSET4","index":"0.000010304770071444"},{"denom":"ASSET5","index":"0.000000849746758541"},{"denom":"ASSET6","index":"0.000003459077279153"},{"denom":"ASSET7","index":"0.000005297485303768"},{"denom":"ASSET8","index":"0.000006912499005837"},{"denom":"ASSET9","index":"0.000002985778231863"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003063170165442"},{"denom":"ASSET1","index":"0.000025996358951928"},{"denom":"ASSET10","index":"0.000020799618544072"},{"denom":"ASSET11","index":"0.000025846936295403"},{"denom":"ASSET12","index":"0.000024670295822131"},{"denom":"ASSET13","index":"0.000008120644896033"},{"denom":"ASSET14","index":"0.000023715222729701"},{"denom":"ASSET15","index":"0.000018725986369791"},{"denom":"ASSET16","index":"0.000011529047312284"},{"denom":"ASSET17","index":"0.000009065966880203"},{"denom":"ASSET18","index":"0.000003737409049681"},{"denom":"ASSET2","index":"0.000007876841198043"},{"denom":"ASSET3","index":"0.000002185992003768"},{"denom":"ASSET4","index":"0.000021074917159843"},{"denom":"ASSET5","index":"0.000001702800306431"},{"denom":"ASSET6","index":"0.000006871093729972"},{"denom":"ASSET7","index":"0.000010798830402478"},{"denom":"ASSET8","index":"0.000014762015379742"},{"denom":"ASSET9","index":"0.000006264517424621"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001519669987195"},{"denom":"ASSET1","index":"0.000012676623405048"},{"denom":"ASSET10","index":"0.000008831600766261"},{"denom":"ASSET11","index":"0.000012262448940742"},{"denom":"ASSET12","index":"0.000011042591812037"},{"denom":"ASSET13","index":"0.000003799690110356"},{"denom":"ASSET14","index":"0.000011454705706870"},{"denom":"ASSET15","index":"0.000008189733375059"},{"denom":"ASSET16","index":"0.000005709838012905"},{"denom":"ASSET17","index":"0.000004055200725152"},{"denom":"ASSET18","index":"0.000001931783882027"},{"denom":"ASSET2","index":"0.000003741994165079"},{"denom":"ASSET3","index":"0.000001094162390780"},{"denom":"ASSET4","index":"0.000010301817086076"},{"denom":"ASSET5","index":"0.000000848954623355"},{"denom":"ASSET6","index":"0.000003457635577645"},{"denom":"ASSET7","index":"0.000005295663548598"},{"denom":"ASSET8","index":"0.000006910119731604"},{"denom":"ASSET9","index":"0.000002984734883325"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003051401969864"},{"denom":"ASSET1","index":"0.000025903543471827"},{"denom":"ASSET10","index":"0.000020717104247015"},{"denom":"ASSET11","index":"0.000025751820078700"},{"denom":"ASSET12","index":"0.000024575704795191"},{"denom":"ASSET13","index":"0.000008089460542782"},{"denom":"ASSET14","index":"0.000023629519286555"},{"denom":"ASSET15","index":"0.000018652475785738"},{"denom":"ASSET16","index":"0.000011487598582804"},{"denom":"ASSET17","index":"0.000009031027466449"},{"denom":"ASSET18","index":"0.000003724432134289"},{"denom":"ASSET2","index":"0.000007847588407204"},{"denom":"ASSET3","index":"0.000002177732310384"},{"denom":"ASSET4","index":"0.000021000151540181"},{"denom":"ASSET5","index":"0.000001696165098739"},{"denom":"ASSET6","index":"0.000006846477479182"},{"denom":"ASSET7","index":"0.000010760324594985"},{"denom":"ASSET8","index":"0.000014706911787677"},{"denom":"ASSET9","index":"0.000006241583848480"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001392192847149"},{"denom":"ASSET1","index":"0.000011611450847386"},{"denom":"ASSET10","index":"0.000008088781067478"},{"denom":"ASSET11","index":"0.000011231761889073"},{"denom":"ASSET12","index":"0.000010115195100551"},{"denom":"ASSET13","index":"0.000003480482117873"},{"denom":"ASSET14","index":"0.000010492071548062"},{"denom":"ASSET15","index":"0.000007502372565194"},{"denom":"ASSET16","index":"0.000005229863836918"},{"denom":"ASSET17","index":"0.000003713920514466"},{"denom":"ASSET18","index":"0.000001769069294661"},{"denom":"ASSET2","index":"0.000003427044412629"},{"denom":"ASSET3","index":"0.000001002660101028"},{"denom":"ASSET4","index":"0.000009435973741790"},{"denom":"ASSET5","index":"0.000000777659236842"},{"denom":"ASSET6","index":"0.000003166887163415"},{"denom":"ASSET7","index":"0.000004850174878604"},{"denom":"ASSET8","index":"0.000006329555560626"},{"denom":"ASSET9","index":"0.000002733760499857"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000002834261839987"},{"denom":"ASSET1","index":"0.000024063735726127"},{"denom":"ASSET10","index":"0.000019278012414561"},{"denom":"ASSET11","index":"0.000023930766794440"},{"denom":"ASSET12","index":"0.000022855511266190"},{"denom":"ASSET13","index":"0.000007519422832827"},{"denom":"ASSET14","index":"0.000021953268691937"},{"denom":"ASSET15","index":"0.000017352048046781"},{"denom":"ASSET16","index":"0.000010669562284438"},{"denom":"ASSET17","index":"0.000008398158415340"},{"denom":"ASSET18","index":"0.000003456710779118"},{"denom":"ASSET2","index":"0.000007292324829772"},{"denom":"ASSET3","index":"0.000002022818722752"},{"denom":"ASSET4","index":"0.000019507505991506"},{"denom":"ASSET5","index":"0.000001575196067099"},{"denom":"ASSET6","index":"0.000006357416996111"},{"denom":"ASSET7","index":"0.000009994574317511"},{"denom":"ASSET8","index":"0.000013669954492341"},{"denom":"ASSET9","index":"0.000005799591528398"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001553840185331"},{"denom":"ASSET1","index":"0.000012958259817171"},{"denom":"ASSET10","index":"0.000009028099224953"},{"denom":"ASSET11","index":"0.000012533831248030"},{"denom":"ASSET12","index":"0.000011286922457332"},{"denom":"ASSET13","index":"0.000003884600463327"},{"denom":"ASSET14","index":"0.000011708953124953"},{"denom":"ASSET15","index":"0.000008371074208317"},{"denom":"ASSET16","index":"0.000005836492301072"},{"denom":"ASSET17","index":"0.000004143573827548"},{"denom":"ASSET18","index":"0.000001973472951431"},{"denom":"ASSET2","index":"0.000003824652925312"},{"denom":"ASSET3","index":"0.000001117422108587"},{"denom":"ASSET4","index":"0.000010529185576831"},{"denom":"ASSET5","index":"0.000000868040350447"},{"denom":"ASSET6","index":"0.000003534506841323"},{"denom":"ASSET7","index":"0.000005412063731931"},{"denom":"ASSET8","index":"0.000007064217879605"},{"denom":"ASSET9","index":"0.000003050130734168"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000002875427361068"},{"denom":"ASSET1","index":"0.000024372739255487"},{"denom":"ASSET10","index":"0.000019284464921318"},{"denom":"ASSET11","index":"0.000024174413552556"},{"denom":"ASSET12","index":"0.000022964657814992"},{"denom":"ASSET13","index":"0.000007586106071195"},{"denom":"ASSET14","index":"0.000022214775035212"},{"denom":"ASSET15","index":"0.000017399266119679"},{"denom":"ASSET16","index":"0.000010822432031544"},{"denom":"ASSET17","index":"0.000008437405253940"},{"denom":"ASSET18","index":"0.000003520101477575"},{"denom":"ASSET2","index":"0.000007366931162610"},{"denom":"ASSET3","index":"0.000002051556015935"},{"denom":"ASSET4","index":"0.000019761188522524"},{"denom":"ASSET5","index":"0.000001598363223465"},{"denom":"ASSET6","index":"0.000006458982880806"},{"denom":"ASSET7","index":"0.000010127316932433"},{"denom":"ASSET8","index":"0.000013792105044122"},{"denom":"ASSET9","index":"0.000005859963066840"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001468329025254"},{"denom":"ASSET1","index":"0.000012248466172689"},{"denom":"ASSET10","index":"0.000008533242661533"},{"denom":"ASSET11","index":"0.000011849890220686"},{"denom":"ASSET12","index":"0.000010670683647662"},{"denom":"ASSET13","index":"0.000003671855143322"},{"denom":"ASSET14","index":"0.000011069259599665"},{"denom":"ASSET15","index":"0.000007913694549611"},{"denom":"ASSET16","index":"0.000005518108516848"},{"denom":"ASSET17","index":"0.000003917609227717"},{"denom":"ASSET18","index":"0.000001866904977257"},{"denom":"ASSET2","index":"0.000003616095813249"},{"denom":"ASSET3","index":"0.000001057362111013"},{"denom":"ASSET4","index":"0.000009954072998206"},{"denom":"ASSET5","index":"0.000000819868668110"},{"denom":"ASSET6","index":"0.000003341429483630"},{"denom":"ASSET7","index":"0.000005117467404472"},{"denom":"ASSET8","index":"0.000006676663486141"},{"denom":"ASSET9","index":"0.000002882963880808"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000002995432004660"},{"denom":"ASSET1","index":"0.000025434255671185"},{"denom":"ASSET10","index":"0.000020381248485322"},{"denom":"ASSET11","index":"0.000025297016742096"},{"denom":"ASSET12","index":"0.000024161457271020"},{"denom":"ASSET13","index":"0.000007948725545453"},{"denom":"ASSET14","index":"0.000023205881885085"},{"denom":"ASSET15","index":"0.000018343715148864"},{"denom":"ASSET16","index":"0.000011277889207663"},{"denom":"ASSET17","index":"0.000008877556775335"},{"denom":"ASSET18","index":"0.000003654253802028"},{"denom":"ASSET2","index":"0.000007709102798424"},{"denom":"ASSET3","index":"0.000002137627884226"},{"denom":"ASSET4","index":"0.000020618696770430"},{"denom":"ASSET5","index":"0.000001664440090804"},{"denom":"ASSET6","index":"0.000006720260763181"},{"denom":"ASSET7","index":"0.000010565171316359"},{"denom":"ASSET8","index":"0.000014449121165534"},{"denom":"ASSET9","index":"0.000006129217088192"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001484659776814"},{"denom":"ASSET1","index":"0.000012377911876883"},{"denom":"ASSET10","index":"0.000008623797972416"},{"denom":"ASSET11","index":"0.000011974339842928"},{"denom":"ASSET12","index":"0.000010782780641408"},{"denom":"ASSET13","index":"0.000003710691597017"},{"denom":"ASSET14","index":"0.000011185714112019"},{"denom":"ASSET15","index":"0.000007997367331102"},{"denom":"ASSET16","index":"0.000005575935127370"},{"denom":"ASSET17","index":"0.000003959731301514"},{"denom":"ASSET18","index":"0.000001886316120734"},{"denom":"ASSET2","index":"0.000003653859459324"},{"denom":"ASSET3","index":"0.000001068955039306"},{"denom":"ASSET4","index":"0.000010059288371675"},{"denom":"ASSET5","index":"0.000000829493784981"},{"denom":"ASSET6","index":"0.000003376084404307"},{"denom":"ASSET7","index":"0.000005171085966725"},{"denom":"ASSET8","index":"0.000006747698865199"},{"denom":"ASSET9","index":"0.000002914403105969"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000002967027008461"},{"denom":"ASSET1","index":"0.000025180120058697"},{"denom":"ASSET10","index":"0.000020126919929476"},{"denom":"ASSET11","index":"0.000025029678796477"},{"denom":"ASSET12","index":"0.000023880507059092"},{"denom":"ASSET13","index":"0.000007862872062626"},{"denom":"ASSET14","index":"0.000022968832134984"},{"denom":"ASSET15","index":"0.000018123195207046"},{"denom":"ASSET16","index":"0.000011168095360491"},{"denom":"ASSET17","index":"0.000008775186029853"},{"denom":"ASSET18","index":"0.000003621217117579"},{"denom":"ASSET2","index":"0.000007627534970337"},{"denom":"ASSET3","index":"0.000002117298518473"},{"denom":"ASSET4","index":"0.000020413769751333"},{"denom":"ASSET5","index":"0.000001649183760435"},{"denom":"ASSET6","index":"0.000006656038319196"},{"denom":"ASSET7","index":"0.000010459966878994"},{"denom":"ASSET8","index":"0.000014293861494285"},{"denom":"ASSET9","index":"0.000006066597621916"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001508631993599"},{"denom":"ASSET1","index":"0.000012578103553994"},{"denom":"ASSET10","index":"0.000008763023138279"},{"denom":"ASSET11","index":"0.000012169014387632"},{"denom":"ASSET12","index":"0.000010956555546150"},{"denom":"ASSET13","index":"0.000003770654442897"},{"denom":"ASSET14","index":"0.000011367495794714"},{"denom":"ASSET15","index":"0.000008126250861227"},{"denom":"ASSET16","index":"0.000005666162616450"},{"denom":"ASSET17","index":"0.000004024252704398"},{"denom":"ASSET18","index":"0.000001915870077761"},{"denom":"ASSET2","index":"0.000003713270894674"},{"denom":"ASSET3","index":"0.000001084734169631"},{"denom":"ASSET4","index":"0.000010221675912459"},{"denom":"ASSET5","index":"0.000000842242401334"},{"denom":"ASSET6","index":"0.000003430055317962"},{"denom":"ASSET7","index":"0.000005255222367887"},{"denom":"ASSET8","index":"0.000006856408471522"},{"denom":"ASSET9","index":"0.000002961731521176"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000002968383248598"},{"denom":"ASSET1","index":"0.000025185581850199"},{"denom":"ASSET10","index":"0.000020091193699906"},{"denom":"ASSET11","index":"0.000025026167595767"},{"denom":"ASSET12","index":"0.000023854952987524"},{"denom":"ASSET13","index":"0.000007859725566891"},{"denom":"ASSET14","index":"0.000022971118914045"},{"denom":"ASSET15","index":"0.000018098517255117"},{"denom":"ASSET16","index":"0.000011173004258039"},{"denom":"ASSET17","index":"0.000008766603022733"},{"denom":"ASSET18","index":"0.000003624559740525"},{"denom":"ASSET2","index":"0.000007626317523237"},{"denom":"ASSET3","index":"0.000002117313008939"},{"denom":"ASSET4","index":"0.000020418576076670"},{"denom":"ASSET5","index":"0.000001649450966157"},{"denom":"ASSET6","index":"0.000006660362585584"},{"denom":"ASSET7","index":"0.000010463779822658"},{"denom":"ASSET8","index":"0.000014287735496216"},{"denom":"ASSET9","index":"0.000006065360072421"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001603618851190"},{"denom":"ASSET1","index":"0.000013373450792115"},{"denom":"ASSET10","index":"0.000009317368604669"},{"denom":"ASSET11","index":"0.000012937408123124"},{"denom":"ASSET12","index":"0.000011650307554501"},{"denom":"ASSET13","index":"0.000004008493774333"},{"denom":"ASSET14","index":"0.000012085243516211"},{"denom":"ASSET15","index":"0.000008640063748266"},{"denom":"ASSET16","index":"0.000006023807734317"},{"denom":"ASSET17","index":"0.000004278530351069"},{"denom":"ASSET18","index":"0.000002037448105618"},{"denom":"ASSET2","index":"0.000003947624873839"},{"denom":"ASSET3","index":"0.000001154295694818"},{"denom":"ASSET4","index":"0.000010867865506336"},{"denom":"ASSET5","index":"0.000000896432898181"},{"denom":"ASSET6","index":"0.000003647707200497"},{"denom":"ASSET7","index":"0.000005586658358043"},{"denom":"ASSET8","index":"0.000007289880864586"},{"denom":"ASSET9","index":"0.000003148582216449"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003259379166935"},{"denom":"ASSET1","index":"0.000027669546155668"},{"denom":"ASSET10","index":"0.000022163157427920"},{"denom":"ASSET11","index":"0.000027516665793422"},{"denom":"ASSET12","index":"0.000026276569409586"},{"denom":"ASSET13","index":"0.000008645229164029"},{"denom":"ASSET14","index":"0.000025243382728696"},{"denom":"ASSET15","index":"0.000019947981783747"},{"denom":"ASSET16","index":"0.000012268920188963"},{"denom":"ASSET17","index":"0.000009656339783182"},{"denom":"ASSET18","index":"0.000003975233530089"},{"denom":"ASSET2","index":"0.000008385350610200"},{"denom":"ASSET3","index":"0.000002325230588439"},{"denom":"ASSET4","index":"0.000022430515898086"},{"denom":"ASSET5","index":"0.000001812256369527"},{"denom":"ASSET6","index":"0.000007311001085881"},{"denom":"ASSET7","index":"0.000011492885803011"},{"denom":"ASSET8","index":"0.000015716897251793"},{"denom":"ASSET9","index":"0.000006668589151432"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001669758803356"},{"denom":"ASSET1","index":"0.000013919924903508"},{"denom":"ASSET10","index":"0.000009698114015232"},{"denom":"ASSET11","index":"0.000013466332119255"},{"denom":"ASSET12","index":"0.000012126099781115"},{"denom":"ASSET13","index":"0.000004173211661392"},{"denom":"ASSET14","index":"0.000012579297449702"},{"denom":"ASSET15","index":"0.000008994017898909"},{"denom":"ASSET16","index":"0.000006270880730729"},{"denom":"ASSET17","index":"0.000004453348668392"},{"denom":"ASSET18","index":"0.000002121376009280"},{"denom":"ASSET2","index":"0.000004109202923545"},{"denom":"ASSET3","index":"0.000001201941855137"},{"denom":"ASSET4","index":"0.000011312556625386"},{"denom":"ASSET5","index":"0.000000932868086778"},{"denom":"ASSET6","index":"0.000003797061547622"},{"denom":"ASSET7","index":"0.000005815312368147"},{"denom":"ASSET8","index":"0.000007588591475923"},{"denom":"ASSET9","index":"0.000003277484447193"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003314119794923"},{"denom":"ASSET1","index":"0.000028119315186385"},{"denom":"ASSET10","index":"0.000022456877991933"},{"denom":"ASSET11","index":"0.000027947185249485"},{"denom":"ASSET12","index":"0.000026653541530161"},{"denom":"ASSET13","index":"0.000008778725953540"},{"denom":"ASSET14","index":"0.000025648491290636"},{"denom":"ASSET15","index":"0.000020225495910600"},{"denom":"ASSET16","index":"0.000012473684612014"},{"denom":"ASSET17","index":"0.000009794866581105"},{"denom":"ASSET18","index":"0.000004045992889163"},{"denom":"ASSET2","index":"0.000008517017325485"},{"denom":"ASSET3","index":"0.000002365208974685"},{"denom":"ASSET4","index":"0.000022797013251164"},{"denom":"ASSET5","index":"0.000001842432416817"},{"denom":"ASSET6","index":"0.000007435560259585"},{"denom":"ASSET7","index":"0.000011681616070006"},{"denom":"ASSET8","index":"0.000015958852395270"},{"denom":"ASSET9","index":"0.000006773561992828"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001334597814253"},{"denom":"ASSET1","index":"0.000011126876577448"},{"denom":"ASSET10","index":"0.000007751884027943"},{"denom":"ASSET11","index":"0.000010763759508328"},{"denom":"ASSET12","index":"0.000009692944381721"},{"denom":"ASSET13","index":"0.000003335543967388"},{"denom":"ASSET14","index":"0.000010055110882597"},{"denom":"ASSET15","index":"0.000007189147627631"},{"denom":"ASSET16","index":"0.000005012346349398"},{"denom":"ASSET17","index":"0.000003559878072918"},{"denom":"ASSET18","index":"0.000001695813746885"},{"denom":"ASSET2","index":"0.000003284213282225"},{"denom":"ASSET3","index":"0.000000960549210329"},{"denom":"ASSET4","index":"0.000009042280418860"},{"denom":"ASSET5","index":"0.000000745720787237"},{"denom":"ASSET6","index":"0.000003035164402357"},{"denom":"ASSET7","index":"0.000004648278712034"},{"denom":"ASSET8","index":"0.000006065575963495"},{"denom":"ASSET9","index":"0.000002619766079830"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000002933404194828"},{"denom":"ASSET1","index":"0.000024932632498194"},{"denom":"ASSET10","index":"0.000020157113753706"},{"denom":"ASSET11","index":"0.000024842878528839"},{"denom":"ASSET12","index":"0.000023817726072485"},{"denom":"ASSET13","index":"0.000007813243799971"},{"denom":"ASSET14","index":"0.000022761898108549"},{"denom":"ASSET15","index":"0.000018109267957138"},{"denom":"ASSET16","index":"0.000011043189892304"},{"denom":"ASSET17","index":"0.000008753164046701"},{"denom":"ASSET18","index":"0.000003567063844603"},{"denom":"ASSET2","index":"0.000007569762146700"},{"denom":"ASSET3","index":"0.000002091389836038"},{"denom":"ASSET4","index":"0.000020208488830330"},{"denom":"ASSET5","index":"0.000001630166870108"},{"denom":"ASSET6","index":"0.000006572642272968"},{"denom":"ASSET7","index":"0.000010351822041320"},{"denom":"ASSET8","index":"0.000014203644477234"},{"denom":"ASSET9","index":"0.000006019030096188"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001655550281073"},{"denom":"ASSET1","index":"0.000013803766186213"},{"denom":"ASSET10","index":"0.000009616885369480"},{"denom":"ASSET11","index":"0.000013353770421464"},{"denom":"ASSET12","index":"0.000012024654915933"},{"denom":"ASSET13","index":"0.000004138458266908"},{"denom":"ASSET14","index":"0.000012474650680682"},{"denom":"ASSET15","index":"0.000008918932754767"},{"denom":"ASSET16","index":"0.000006218123294721"},{"denom":"ASSET17","index":"0.000004415635621077"},{"denom":"ASSET18","index":"0.000002103876302725"},{"denom":"ASSET2","index":"0.000004075008029207"},{"denom":"ASSET3","index":"0.000001191361699996"},{"denom":"ASSET4","index":"0.000011218168999888"},{"denom":"ASSET5","index":"0.000000925037675960"},{"denom":"ASSET6","index":"0.000003765270684639"},{"denom":"ASSET7","index":"0.000005766457786874"},{"denom":"ASSET8","index":"0.000007524697268437"},{"denom":"ASSET9","index":"0.000003250154939091"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003215122291080"},{"denom":"ASSET1","index":"0.000027271082473775"},{"denom":"ASSET10","index":"0.000021717714787675"},{"denom":"ASSET11","index":"0.000027088129911249"},{"denom":"ASSET12","index":"0.000025803190697535"},{"denom":"ASSET13","index":"0.000008506451165719"},{"denom":"ASSET14","index":"0.000024869823256717"},{"denom":"ASSET15","index":"0.000019571375436743"},{"denom":"ASSET16","index":"0.000012101015548893"},{"denom":"ASSET17","index":"0.000009481514658039"},{"denom":"ASSET18","index":"0.000003929002426467"},{"denom":"ASSET2","index":"0.000008255375778501"},{"denom":"ASSET3","index":"0.000002294279906946"},{"denom":"ASSET4","index":"0.000022110354928469"},{"denom":"ASSET5","index":"0.000001787716273475"},{"denom":"ASSET6","index":"0.000007215985074700"},{"denom":"ASSET7","index":"0.000011330188741735"},{"denom":"ASSET8","index":"0.000015463524362026"},{"denom":"ASSET9","index":"0.000006565858639552"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001631513498845"},{"denom":"ASSET1","index":"0.000013601788709515"},{"denom":"ASSET10","index":"0.000009476711328689"},{"denom":"ASSET11","index":"0.000013158178840821"},{"denom":"ASSET12","index":"0.000011848922966954"},{"denom":"ASSET13","index":"0.000004077884841603"},{"denom":"ASSET14","index":"0.000012291633930140"},{"denom":"ASSET15","index":"0.000008788599161546"},{"denom":"ASSET16","index":"0.000006127389402135"},{"denom":"ASSET17","index":"0.000004351601569095"},{"denom":"ASSET18","index":"0.000002072876103766"},{"denom":"ASSET2","index":"0.000004014961455973"},{"denom":"ASSET3","index":"0.000001174420047516"},{"denom":"ASSET4","index":"0.000011053841044239"},{"denom":"ASSET5","index":"0.000000911490186131"},{"denom":"ASSET6","index":"0.000003710232488420"},{"denom":"ASSET7","index":"0.000005682431175178"},{"denom":"ASSET8","index":"0.000007415071543785"},{"denom":"ASSET9","index":"0.000003202800328586"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003159157648171"},{"denom":"ASSET1","index":"0.000026793811254639"},{"denom":"ASSET10","index":"0.000021330257270132"},{"denom":"ASSET11","index":"0.000026611245447042"},{"denom":"ASSET12","index":"0.000025345616114893"},{"denom":"ASSET13","index":"0.000008356504281369"},{"denom":"ASSET14","index":"0.000024433401122602"},{"denom":"ASSET15","index":"0.000019223209713353"},{"denom":"ASSET16","index":"0.000011890026449509"},{"denom":"ASSET17","index":"0.000009313941892173"},{"denom":"ASSET18","index":"0.000003860849124980"},{"denom":"ASSET2","index":"0.000008109777269158"},{"denom":"ASSET3","index":"0.000002255070941538"},{"denom":"ASSET4","index":"0.000021723391251034"},{"denom":"ASSET5","index":"0.000001756486235957"},{"denom":"ASSET6","index":"0.000007090574282328"},{"denom":"ASSET7","index":"0.000011132530538444"},{"denom":"ASSET8","index":"0.000015191323807650"},{"denom":"ASSET9","index":"0.000006450832118924"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001649724724935"},{"denom":"ASSET1","index":"0.000013753740147655"},{"denom":"ASSET10","index":"0.000009582563441278"},{"denom":"ASSET11","index":"0.000013305204895691"},{"denom":"ASSET12","index":"0.000011981321923304"},{"denom":"ASSET13","index":"0.000004123306127916"},{"denom":"ASSET14","index":"0.000012429052627730"},{"denom":"ASSET15","index":"0.000008886629821639"},{"denom":"ASSET16","index":"0.000006195820583626"},{"denom":"ASSET17","index":"0.000004400070480698"},{"denom":"ASSET18","index":"0.000002096248608056"},{"denom":"ASSET2","index":"0.000004060149146250"},{"denom":"ASSET3","index":"0.000001187512164840"},{"denom":"ASSET4","index":"0.000011177176659918"},{"denom":"ASSET5","index":"0.000000921609203810"},{"denom":"ASSET6","index":"0.000003751605165751"},{"denom":"ASSET7","index":"0.000005746078510357"},{"denom":"ASSET8","index":"0.000007497578498742"},{"denom":"ASSET9","index":"0.000003238303837047"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003253063831874"},{"denom":"ASSET1","index":"0.000027597326034286"},{"denom":"ASSET10","index":"0.000022021617243178"},{"denom":"ASSET11","index":"0.000027423138617092"},{"denom":"ASSET12","index":"0.000026144931484859"},{"denom":"ASSET13","index":"0.000008613299773809"},{"denom":"ASSET14","index":"0.000025170855267573"},{"denom":"ASSET15","index":"0.000019836826910831"},{"denom":"ASSET16","index":"0.000012243184702458"},{"denom":"ASSET17","index":"0.000009607701845932"},{"denom":"ASSET18","index":"0.000003972764374377"},{"denom":"ASSET2","index":"0.000008357484440725"},{"denom":"ASSET3","index":"0.000002321502734814"},{"denom":"ASSET4","index":"0.000022373906168402"},{"denom":"ASSET5","index":"0.000001808481766797"},{"denom":"ASSET6","index":"0.000007298802623853"},{"denom":"ASSET7","index":"0.000011465220726545"},{"denom":"ASSET8","index":"0.000015658035812384"},{"denom":"ASSET9","index":"0.000006646717011605"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001698975992122"},{"denom":"ASSET1","index":"0.000014167905922226"},{"denom":"ASSET10","index":"0.000009870625403756"},{"denom":"ASSET11","index":"0.000013705415046027"},{"denom":"ASSET12","index":"0.000012342129737421"},{"denom":"ASSET13","index":"0.000004247439980305"},{"denom":"ASSET14","index":"0.000012803154715439"},{"denom":"ASSET15","index":"0.000009153801193103"},{"denom":"ASSET16","index":"0.000006381787732272"},{"denom":"ASSET17","index":"0.000004532557176567"},{"denom":"ASSET18","index":"0.000002159268021049"},{"denom":"ASSET2","index":"0.000004182207511237"},{"denom":"ASSET3","index":"0.000001223292032291"},{"denom":"ASSET4","index":"0.000011513897264989"},{"denom":"ASSET5","index":"0.000000949169072389"},{"denom":"ASSET6","index":"0.000003864840554987"},{"denom":"ASSET7","index":"0.000005918563906982"},{"denom":"ASSET8","index":"0.000007723084568158"},{"denom":"ASSET9","index":"0.000003335651311539"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003402845442317"},{"denom":"ASSET1","index":"0.000028880571174740"},{"denom":"ASSET10","index":"0.000023090578471272"},{"denom":"ASSET11","index":"0.000028709364204549"},{"denom":"ASSET12","index":"0.000027394626213612"},{"denom":"ASSET13","index":"0.000009019217107214"},{"denom":"ASSET14","index":"0.000026344557012563"},{"denom":"ASSET15","index":"0.000020791017438004"},{"denom":"ASSET16","index":"0.000012808886991708"},{"denom":"ASSET17","index":"0.000010066951390727"},{"denom":"ASSET18","index":"0.000004153478710890"},{"denom":"ASSET2","index":"0.000008748954704305"},{"denom":"ASSET3","index":"0.000002428490976730"},{"denom":"ASSET4","index":"0.000023413646091842"},{"denom":"ASSET5","index":"0.000001891364101695"},{"denom":"ASSET6","index":"0.000007634563338572"},{"denom":"ASSET7","index":"0.000011996876612297"},{"denom":"ASSET8","index":"0.000016395615103037"},{"denom":"ASSET9","index":"0.000006958318142576"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001515088644413"},{"denom":"ASSET1","index":"0.000012634136557163"},{"denom":"ASSET10","index":"0.000008802109028204"},{"denom":"ASSET11","index":"0.000012222352143486"},{"denom":"ASSET12","index":"0.000011006111259210"},{"denom":"ASSET13","index":"0.000003787721611031"},{"denom":"ASSET14","index":"0.000011417895672887"},{"denom":"ASSET15","index":"0.000008163582563959"},{"denom":"ASSET16","index":"0.000005691138594924"},{"denom":"ASSET17","index":"0.000004042263453241"},{"denom":"ASSET18","index":"0.000001925135571111"},{"denom":"ASSET2","index":"0.000003729515797284"},{"denom":"ASSET3","index":"0.000001091141821893"},{"denom":"ASSET4","index":"0.000010267679293757"},{"denom":"ASSET5","index":"0.000000846156158061"},{"denom":"ASSET6","index":"0.000003446305419945"},{"denom":"ASSET7","index":"0.000005278485437758"},{"denom":"ASSET8","index":"0.000006887398378958"},{"denom":"ASSET9","index":"0.000002974577705544"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003029367235848"},{"denom":"ASSET1","index":"0.000025709657584098"},{"denom":"ASSET10","index":"0.000020551027857005"},{"denom":"ASSET11","index":"0.000025556791271547"},{"denom":"ASSET12","index":"0.000024383546484064"},{"denom":"ASSET13","index":"0.000008028643187417"},{"denom":"ASSET14","index":"0.000023452409013233"},{"denom":"ASSET15","index":"0.000018505869963369"},{"denom":"ASSET16","index":"0.000011403028825829"},{"denom":"ASSET17","index":"0.000008960765854271"},{"denom":"ASSET18","index":"0.000003697390743305"},{"denom":"ASSET2","index":"0.000007788410102575"},{"denom":"ASSET3","index":"0.000002162278160249"},{"denom":"ASSET4","index":"0.000020843149904241"},{"denom":"ASSET5","index":"0.000001683795445220"},{"denom":"ASSET6","index":"0.000006796548728457"},{"denom":"ASSET7","index":"0.000010680301627557"},{"denom":"ASSET8","index":"0.000014594997949332"},{"denom":"ASSET9","index":"0.000006193949682941"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001650481631660"},{"denom":"ASSET1","index":"0.000013760556046882"},{"denom":"ASSET10","index":"0.000009587067899364"},{"denom":"ASSET11","index":"0.000013312100857594"},{"denom":"ASSET12","index":"0.000011987552175177"},{"denom":"ASSET13","index":"0.000004125311926918"},{"denom":"ASSET14","index":"0.000012435412596309"},{"denom":"ASSET15","index":"0.000008891189157367"},{"denom":"ASSET16","index":"0.000006198673717177"},{"denom":"ASSET17","index":"0.000004402473887406"},{"denom":"ASSET18","index":"0.000002097152516481"},{"denom":"ASSET2","index":"0.000004062266502429"},{"denom":"ASSET3","index":"0.000001188346774796"},{"denom":"ASSET4","index":"0.000011182830860714"},{"denom":"ASSET5","index":"0.000000921890641108"},{"denom":"ASSET6","index":"0.000003753581829697"},{"denom":"ASSET7","index":"0.000005749028991578"},{"denom":"ASSET8","index":"0.000007501810745994"},{"denom":"ASSET9","index":"0.000003239702143299"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003205609047354"},{"denom":"ASSET1","index":"0.000027188537481167"},{"denom":"ASSET10","index":"0.000021652723818266"},{"denom":"ASSET11","index":"0.000027005979418132"},{"denom":"ASSET12","index":"0.000025725923481940"},{"denom":"ASSET13","index":"0.000008480657418555"},{"denom":"ASSET14","index":"0.000024794508770079"},{"denom":"ASSET15","index":"0.000019512596409105"},{"denom":"ASSET16","index":"0.000012064653878282"},{"denom":"ASSET17","index":"0.000009453813052143"},{"denom":"ASSET18","index":"0.000003917117707327"},{"denom":"ASSET2","index":"0.000008230459966291"},{"denom":"ASSET3","index":"0.000002288306334262"},{"denom":"ASSET4","index":"0.000022043298344156"},{"denom":"ASSET5","index":"0.000001782083734802"},{"denom":"ASSET6","index":"0.000007194354204475"},{"denom":"ASSET7","index":"0.000011296497588433"},{"denom":"ASSET8","index":"0.000015417282169744"},{"denom":"ASSET9","index":"0.000006545936928299"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001428935211366"},{"denom":"ASSET1","index":"0.000011914564237659"},{"denom":"ASSET10","index":"0.000008301159777028"},{"denom":"ASSET11","index":"0.000011525978642480"},{"denom":"ASSET12","index":"0.000010379209562159"},{"denom":"ASSET13","index":"0.000003571896453874"},{"denom":"ASSET14","index":"0.000010767353582799"},{"denom":"ASSET15","index":"0.000007698410529959"},{"denom":"ASSET16","index":"0.000005367338533420"},{"denom":"ASSET17","index":"0.000003811671429081"},{"denom":"ASSET18","index":"0.000001815754508385"},{"denom":"ASSET2","index":"0.000003517141210917"},{"denom":"ASSET3","index":"0.000001028868678146"},{"denom":"ASSET4","index":"0.000009682846512616"},{"denom":"ASSET5","index":"0.000000798366768278"},{"denom":"ASSET6","index":"0.000003249988614231"},{"denom":"ASSET7","index":"0.000004977428214621"},{"denom":"ASSET8","index":"0.000006495119908522"},{"denom":"ASSET9","index":"0.000002805323052474"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003075918064869"},{"denom":"ASSET1","index":"0.000026136551234120"},{"denom":"ASSET10","index":"0.000021080163895542"},{"denom":"ASSET11","index":"0.000026029570124972"},{"denom":"ASSET12","index":"0.000024929671095533"},{"denom":"ASSET13","index":"0.000008184754658215"},{"denom":"ASSET14","index":"0.000023857159923959"},{"denom":"ASSET15","index":"0.000018947606922173"},{"denom":"ASSET16","index":"0.000011579925359638"},{"denom":"ASSET17","index":"0.000009161388302193"},{"denom":"ASSET18","index":"0.000003743573486430"},{"denom":"ASSET2","index":"0.000007931762150876"},{"denom":"ASSET3","index":"0.000002193704696765"},{"denom":"ASSET4","index":"0.000021185602196482"},{"denom":"ASSET5","index":"0.000001709259314500"},{"denom":"ASSET6","index":"0.000006893942979866"},{"denom":"ASSET7","index":"0.000010853088527538"},{"denom":"ASSET8","index":"0.000014878712124324"},{"denom":"ASSET9","index":"0.000006307130542486"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001556917620519"},{"denom":"ASSET1","index":"0.000012983455297040"},{"denom":"ASSET10","index":"0.000009045452282177"},{"denom":"ASSET11","index":"0.000012560119972943"},{"denom":"ASSET12","index":"0.000011310507230547"},{"denom":"ASSET13","index":"0.000003892294051298"},{"denom":"ASSET14","index":"0.000011733139339821"},{"denom":"ASSET15","index":"0.000008388649636483"},{"denom":"ASSET16","index":"0.000005848637691896"},{"denom":"ASSET17","index":"0.000004153889965857"},{"denom":"ASSET18","index":"0.000001978846514969"},{"denom":"ASSET2","index":"0.000003832520791251"},{"denom":"ASSET3","index":"0.000001120924429588"},{"denom":"ASSET4","index":"0.000010551035220538"},{"denom":"ASSET5","index":"0.000000869876737390"},{"denom":"ASSET6","index":"0.000003541389854081"},{"denom":"ASSET7","index":"0.000005423895938150"},{"denom":"ASSET8","index":"0.000007077857204393"},{"denom":"ASSET9","index":"0.000003056874840288"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003155948059833"},{"denom":"ASSET1","index":"0.000026789841893667"},{"denom":"ASSET10","index":"0.000021451154188244"},{"denom":"ASSET11","index":"0.000026640130662201"},{"denom":"ASSET12","index":"0.000025435769508540"},{"denom":"ASSET13","index":"0.000008370086775831"},{"denom":"ASSET14","index":"0.000024440800445484"},{"denom":"ASSET15","index":"0.000019309084443140"},{"denom":"ASSET16","index":"0.000011879786354964"},{"denom":"ASSET17","index":"0.000009347672781307"},{"denom":"ASSET18","index":"0.000003850232310781"},{"denom":"ASSET2","index":"0.000008118311447694"},{"denom":"ASSET3","index":"0.000002251791235916"},{"denom":"ASSET4","index":"0.000021717604836949"},{"denom":"ASSET5","index":"0.000001754185821919"},{"denom":"ASSET6","index":"0.000007079049104243"},{"denom":"ASSET7","index":"0.000011127710678967"},{"denom":"ASSET8","index":"0.000015216376583965"},{"denom":"ASSET9","index":"0.000006456241851980"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001629017625409"},{"denom":"ASSET1","index":"0.000013583500814952"},{"denom":"ASSET10","index":"0.000009463617777698"},{"denom":"ASSET11","index":"0.000013140742178302"},{"denom":"ASSET12","index":"0.000011833351109704"},{"denom":"ASSET13","index":"0.000004072544063523"},{"denom":"ASSET14","index":"0.000012276109746354"},{"denom":"ASSET15","index":"0.000008777202658616"},{"denom":"ASSET16","index":"0.000006119258515961"},{"denom":"ASSET17","index":"0.000004345439323848"},{"denom":"ASSET18","index":"0.000002070383939302"},{"denom":"ASSET2","index":"0.000004009889539469"},{"denom":"ASSET3","index":"0.000001172335761192"},{"denom":"ASSET4","index":"0.000011039727138351"},{"denom":"ASSET5","index":"0.000000910579082921"},{"denom":"ASSET6","index":"0.000003704970855739"},{"denom":"ASSET7","index":"0.000005675107556554"},{"denom":"ASSET8","index":"0.000007404372420450"},{"denom":"ASSET9","index":"0.000003198165372278"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003300821213878"},{"denom":"ASSET1","index":"0.000028019420341436"},{"denom":"ASSET10","index":"0.000022435320069293"},{"denom":"ASSET11","index":"0.000027862926397945"},{"denom":"ASSET12","index":"0.000026603097941410"},{"denom":"ASSET13","index":"0.000008754572034100"},{"denom":"ASSET14","index":"0.000025562969906661"},{"denom":"ASSET15","index":"0.000020195785636702"},{"denom":"ASSET16","index":"0.000012425527462944"},{"denom":"ASSET17","index":"0.000009776022796414"},{"denom":"ASSET18","index":"0.000004027118689751"},{"denom":"ASSET2","index":"0.000008490998812362"},{"denom":"ASSET3","index":"0.000002354733406852"},{"denom":"ASSET4","index":"0.000022715681634045"},{"denom":"ASSET5","index":"0.000001835160700580"},{"denom":"ASSET6","index":"0.000007403741836767"},{"denom":"ASSET7","index":"0.000011639103500846"},{"denom":"ASSET8","index":"0.000015914079386056"},{"denom":"ASSET9","index":"0.000006752470475547"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001599876133405"},{"denom":"ASSET1","index":"0.000013345434681176"},{"denom":"ASSET10","index":"0.000009297530322905"},{"denom":"ASSET11","index":"0.000012909953167223"},{"denom":"ASSET12","index":"0.000011625282701060"},{"denom":"ASSET13","index":"0.000004000208763886"},{"denom":"ASSET14","index":"0.000012059727354266"},{"denom":"ASSET15","index":"0.000008622533976277"},{"denom":"ASSET16","index":"0.000006011718614052"},{"denom":"ASSET17","index":"0.000004268755697491"},{"denom":"ASSET18","index":"0.000002033283925863"},{"denom":"ASSET2","index":"0.000003939033979783"},{"denom":"ASSET3","index":"0.000001151952290481"},{"denom":"ASSET4","index":"0.000010845563418934"},{"denom":"ASSET5","index":"0.000000893773964352"},{"denom":"ASSET6","index":"0.000003640418084501"},{"denom":"ASSET7","index":"0.000005575200239351"},{"denom":"ASSET8","index":"0.000007274615004517"},{"denom":"ASSET9","index":"0.000003141688064949"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003205518103121"},{"denom":"ASSET1","index":"0.000027209804037075"},{"denom":"ASSET10","index":"0.000021755111918776"},{"denom":"ASSET11","index":"0.000027048910570117"},{"denom":"ASSET12","index":"0.000025809934262776"},{"denom":"ASSET13","index":"0.000008496852467218"},{"denom":"ASSET14","index":"0.000024820667393427"},{"denom":"ASSET15","index":"0.000019589132093549"},{"denom":"ASSET16","index":"0.000012068310128279"},{"denom":"ASSET17","index":"0.000009484236214143"},{"denom":"ASSET18","index":"0.000003912244660385"},{"denom":"ASSET2","index":"0.000008242746790311"},{"denom":"ASSET3","index":"0.000002287536756020"},{"denom":"ASSET4","index":"0.000022059248469095"},{"denom":"ASSET5","index":"0.000001781848402938"},{"denom":"ASSET6","index":"0.000007192715838846"},{"denom":"ASSET7","index":"0.000011303047666497"},{"denom":"ASSET8","index":"0.000015447099928639"},{"denom":"ASSET9","index":"0.000006555210966575"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001693699328345"},{"denom":"ASSET1","index":"0.000014121235265065"},{"denom":"ASSET10","index":"0.000009838380374958"},{"denom":"ASSET11","index":"0.000013660499756586"},{"denom":"ASSET12","index":"0.000012301569616423"},{"denom":"ASSET13","index":"0.000004233563721295"},{"denom":"ASSET14","index":"0.000012760935925768"},{"denom":"ASSET15","index":"0.000009123658427184"},{"denom":"ASSET16","index":"0.000006361299175013"},{"denom":"ASSET17","index":"0.000004517672541531"},{"denom":"ASSET18","index":"0.000002151696438556"},{"denom":"ASSET2","index":"0.000004168526762446"},{"denom":"ASSET3","index":"0.000001219271828530"},{"denom":"ASSET4","index":"0.000011475942538822"},{"denom":"ASSET5","index":"0.000000946116601363"},{"denom":"ASSET6","index":"0.000003852241762569"},{"denom":"ASSET7","index":"0.000005899194467400"},{"denom":"ASSET8","index":"0.000007698322129037"},{"denom":"ASSET9","index":"0.000003325100096108"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003374964488748"},{"denom":"ASSET1","index":"0.000028642371697541"},{"denom":"ASSET10","index":"0.000022886358038922"},{"denom":"ASSET11","index":"0.000028469467846578"},{"denom":"ASSET12","index":"0.000027158021136678"},{"denom":"ASSET13","index":"0.000008943216545101"},{"denom":"ASSET14","index":"0.000026126056006670"},{"denom":"ASSET15","index":"0.000020609372613995"},{"denom":"ASSET16","index":"0.000012704733728960"},{"denom":"ASSET17","index":"0.000009980025667275"},{"denom":"ASSET18","index":"0.000004119620826099"},{"denom":"ASSET2","index":"0.000008675935346246"},{"denom":"ASSET3","index":"0.000002408702445844"},{"denom":"ASSET4","index":"0.000023220763838917"},{"denom":"ASSET5","index":"0.000001876440105393"},{"denom":"ASSET6","index":"0.000007572949563502"},{"denom":"ASSET7","index":"0.000011897934490553"},{"denom":"ASSET8","index":"0.000016258236310419"},{"denom":"ASSET9","index":"0.000006900426530312"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001608105877482"},{"denom":"ASSET1","index":"0.000013418457239972"},{"denom":"ASSET10","index":"0.000009349233819318"},{"denom":"ASSET11","index":"0.000012981594753349"},{"denom":"ASSET12","index":"0.000011689837573077"},{"denom":"ASSET13","index":"0.000004022147721664"},{"denom":"ASSET14","index":"0.000012126700059700"},{"denom":"ASSET15","index":"0.000008669460725910"},{"denom":"ASSET16","index":"0.000006044519750254"},{"denom":"ASSET17","index":"0.000004293303747844"},{"denom":"ASSET18","index":"0.000002044968364105"},{"denom":"ASSET2","index":"0.000003960007798998"},{"denom":"ASSET3","index":"0.000001158062195142"},{"denom":"ASSET4","index":"0.000010904614913932"},{"denom":"ASSET5","index":"0.000000898204336720"},{"denom":"ASSET6","index":"0.000003660606353425"},{"denom":"ASSET7","index":"0.000005605774235672"},{"denom":"ASSET8","index":"0.000007313680595011"},{"denom":"ASSET9","index":"0.000003159720916176"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003138779820137"},{"denom":"ASSET1","index":"0.000026638851971456"},{"denom":"ASSET10","index":"0.000021228354320839"},{"denom":"ASSET11","index":"0.000026463611656062"},{"denom":"ASSET12","index":"0.000025215335343685"},{"denom":"ASSET13","index":"0.000008309803474369"},{"denom":"ASSET14","index":"0.000024294710395367"},{"denom":"ASSET15","index":"0.000019126240972581"},{"denom":"ASSET16","index":"0.000011819368577720"},{"denom":"ASSET17","index":"0.000009266335892783"},{"denom":"ASSET18","index":"0.000003836527514127"},{"denom":"ASSET2","index":"0.000008063422586049"},{"denom":"ASSET3","index":"0.000002240662109326"},{"denom":"ASSET4","index":"0.000021597223596640"},{"denom":"ASSET5","index":"0.000001744975814867"},{"denom":"ASSET6","index":"0.000007047692266012"},{"denom":"ASSET7","index":"0.000011067413421526"},{"denom":"ASSET8","index":"0.000015106336478322"},{"denom":"ASSET9","index":"0.000006414890297355"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001636130781121"},{"denom":"ASSET1","index":"0.000013651986161797"},{"denom":"ASSET10","index":"0.000009511743354655"},{"denom":"ASSET11","index":"0.000013205516575762"},{"denom":"ASSET12","index":"0.000011891065744828"},{"denom":"ASSET13","index":"0.000004093100055822"},{"denom":"ASSET14","index":"0.000012337535330862"},{"denom":"ASSET15","index":"0.000008821240702961"},{"denom":"ASSET16","index":"0.000006147969392790"},{"denom":"ASSET17","index":"0.000004367637254688"},{"denom":"ASSET18","index":"0.000002079827264137"},{"denom":"ASSET2","index":"0.000004029318686389"},{"denom":"ASSET3","index":"0.000001178568783011"},{"denom":"ASSET4","index":"0.000011095185178418"},{"denom":"ASSET5","index":"0.000000915123996220"},{"denom":"ASSET6","index":"0.000003724277354315"},{"denom":"ASSET7","index":"0.000005701499806755"},{"denom":"ASSET8","index":"0.000007440235399574"},{"denom":"ASSET9","index":"0.000003214026398847"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003135138573804"},{"denom":"ASSET1","index":"0.000026601246250396"},{"denom":"ASSET10","index":"0.000021147351718785"},{"denom":"ASSET11","index":"0.000026411423528042"},{"denom":"ASSET12","index":"0.000025139747174388"},{"denom":"ASSET13","index":"0.000008292603180789"},{"denom":"ASSET14","index":"0.000024256405788980"},{"denom":"ASSET15","index":"0.000019064302195638"},{"denom":"ASSET16","index":"0.000011804656377100"},{"denom":"ASSET17","index":"0.000009238224400983"},{"denom":"ASSET18","index":"0.000003834531376561"},{"denom":"ASSET2","index":"0.000008049169006780"},{"denom":"ASSET3","index":"0.000002239375819558"},{"denom":"ASSET4","index":"0.000021568278304468"},{"denom":"ASSET5","index":"0.000001743998311515"},{"denom":"ASSET6","index":"0.000007041675703373"},{"denom":"ASSET7","index":"0.000011051161098588"},{"denom":"ASSET8","index":"0.000015073103234225"},{"denom":"ASSET9","index":"0.000006402150772125"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001682560247115"},{"denom":"ASSET1","index":"0.000014026482890055"},{"denom":"ASSET10","index":"0.000009772411969975"},{"denom":"ASSET11","index":"0.000013568579422963"},{"denom":"ASSET12","index":"0.000012218368466479"},{"denom":"ASSET13","index":"0.000004205057792371"},{"denom":"ASSET14","index":"0.000012675600520863"},{"denom":"ASSET15","index":"0.000009062728737253"},{"denom":"ASSET16","index":"0.000006318664998244"},{"denom":"ASSET17","index":"0.000004487051129876"},{"denom":"ASSET18","index":"0.000002137778063373"},{"denom":"ASSET2","index":"0.000004140602172369"},{"denom":"ASSET3","index":"0.000001211228525856"},{"denom":"ASSET4","index":"0.000011398573549589"},{"denom":"ASSET5","index":"0.000000939977791684"},{"denom":"ASSET6","index":"0.000003825709612155"},{"denom":"ASSET7","index":"0.000005859418705735"},{"denom":"ASSET8","index":"0.000007646047922643"},{"denom":"ASSET9","index":"0.000003302679112354"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003237426875283"},{"denom":"ASSET1","index":"0.000027451710154634"},{"denom":"ASSET10","index":"0.000021835512998164"},{"denom":"ASSET11","index":"0.000027259736654219"},{"denom":"ASSET12","index":"0.000025953768913429"},{"denom":"ASSET13","index":"0.000008559484494503"},{"denom":"ASSET14","index":"0.000025032165857410"},{"denom":"ASSET15","index":"0.000019681806512765"},{"denom":"ASSET16","index":"0.000012183244440341"},{"denom":"ASSET17","index":"0.000009537367134186"},{"denom":"ASSET18","index":"0.000003957397976948"},{"denom":"ASSET2","index":"0.000008307936552813"},{"denom":"ASSET3","index":"0.000002310954839376"},{"denom":"ASSET4","index":"0.000022256988295109"},{"denom":"ASSET5","index":"0.000001799896462688"},{"denom":"ASSET6","index":"0.000007265619632425"},{"denom":"ASSET7","index":"0.000011405823532836"},{"denom":"ASSET8","index":"0.000015559935461923"},{"denom":"ASSET9","index":"0.000006608212131764"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001576738934866"},{"denom":"ASSET1","index":"0.000013143695761043"},{"denom":"ASSET10","index":"0.000009157699733702"},{"denom":"ASSET11","index":"0.000012715663698192"},{"denom":"ASSET12","index":"0.000011450067913139"},{"denom":"ASSET13","index":"0.000003940585946017"},{"denom":"ASSET14","index":"0.000011878099975991"},{"denom":"ASSET15","index":"0.000008492526135047"},{"denom":"ASSET16","index":"0.000005920970048209"},{"denom":"ASSET17","index":"0.000004204637159643"},{"denom":"ASSET18","index":"0.000002003089142854"},{"denom":"ASSET2","index":"0.000003880039170918"},{"denom":"ASSET3","index":"0.000001134411105672"},{"denom":"ASSET4","index":"0.000010681460240357"},{"denom":"ASSET5","index":"0.000000880451021229"},{"denom":"ASSET6","index":"0.000003584873642311"},{"denom":"ASSET7","index":"0.000005491256130493"},{"denom":"ASSET8","index":"0.000007165542647463"},{"denom":"ASSET9","index":"0.000003094612949497"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003150995592381"},{"denom":"ASSET1","index":"0.000026735906318713"},{"denom":"ASSET10","index":"0.000021370928366269"},{"denom":"ASSET11","index":"0.000026577057751538"},{"denom":"ASSET12","index":"0.000025356196217934"},{"denom":"ASSET13","index":"0.000008349049177946"},{"denom":"ASSET14","index":"0.000024388519635576"},{"denom":"ASSET15","index":"0.000019243917228958"},{"denom":"ASSET16","index":"0.000011858566692713"},{"denom":"ASSET17","index":"0.000009317567603522"},{"denom":"ASSET18","index":"0.000003845362315572"},{"denom":"ASSET2","index":"0.000008099062572798"},{"denom":"ASSET3","index":"0.000002247710476517"},{"denom":"ASSET4","index":"0.000021674805285583"},{"denom":"ASSET5","index":"0.000001751018453776"},{"denom":"ASSET6","index":"0.000007067532365991"},{"denom":"ASSET7","index":"0.000011106766164564"},{"denom":"ASSET8","index":"0.000015177641578730"},{"denom":"ASSET9","index":"0.000006441123951375"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001735896630597"},{"denom":"ASSET1","index":"0.000014474259966527"},{"denom":"ASSET10","index":"0.000010084408758147"},{"denom":"ASSET11","index":"0.000014002239606889"},{"denom":"ASSET12","index":"0.000012609068112910"},{"denom":"ASSET13","index":"0.000004339122939062"},{"denom":"ASSET14","index":"0.000013079851197687"},{"denom":"ASSET15","index":"0.000009351942040176"},{"denom":"ASSET16","index":"0.000006520438519776"},{"denom":"ASSET17","index":"0.000004630501168930"},{"denom":"ASSET18","index":"0.000002205442440512"},{"denom":"ASSET2","index":"0.000004272310096544"},{"denom":"ASSET3","index":"0.000001249647610052"},{"denom":"ASSET4","index":"0.000011762772107687"},{"denom":"ASSET5","index":"0.000000970023491367"},{"denom":"ASSET6","index":"0.000003948144082847"},{"denom":"ASSET7","index":"0.000006046562247845"},{"denom":"ASSET8","index":"0.000007890101791387"},{"denom":"ASSET9","index":"0.000003408073605830"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003300304206809"},{"denom":"ASSET1","index":"0.000027981868665615"},{"denom":"ASSET10","index":"0.000022221493016134"},{"denom":"ASSET11","index":"0.000027777532118325"},{"denom":"ASSET12","index":"0.000026428557640091"},{"denom":"ASSET13","index":"0.000008720047886627"},{"denom":"ASSET14","index":"0.000025512138164618"},{"denom":"ASSET15","index":"0.000020036362120252"},{"denom":"ASSET16","index":"0.000012421157074829"},{"denom":"ASSET17","index":"0.000009711490167791"},{"denom":"ASSET18","index":"0.000004036282970136"},{"denom":"ASSET2","index":"0.000008465189250700"},{"denom":"ASSET3","index":"0.000002356240815614"},{"denom":"ASSET4","index":"0.000022687774056492"},{"denom":"ASSET5","index":"0.000001835200922241"},{"denom":"ASSET6","index":"0.000007409270759323"},{"denom":"ASSET7","index":"0.000011627060915230"},{"denom":"ASSET8","index":"0.000015852235873304"},{"denom":"ASSET9","index":"0.000006733690564218"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001726734301691"},{"denom":"ASSET1","index":"0.000014395988805148"},{"denom":"ASSET10","index":"0.000010029746380297"},{"denom":"ASSET11","index":"0.000013926529312304"},{"denom":"ASSET12","index":"0.000012540835608608"},{"denom":"ASSET13","index":"0.000004315874534955"},{"denom":"ASSET14","index":"0.000013009526126035"},{"denom":"ASSET15","index":"0.000009301526659210"},{"denom":"ASSET16","index":"0.000006485154189852"},{"denom":"ASSET17","index":"0.000004605778267637"},{"denom":"ASSET18","index":"0.000002193886868281"},{"denom":"ASSET2","index":"0.000004249742648985"},{"denom":"ASSET3","index":"0.000001243048763609"},{"denom":"ASSET4","index":"0.000011699192013329"},{"denom":"ASSET5","index":"0.000000964679662201"},{"denom":"ASSET6","index":"0.000003926772973318"},{"denom":"ASSET7","index":"0.000006014156746171"},{"denom":"ASSET8","index":"0.000007847778630999"},{"denom":"ASSET9","index":"0.000003389643643667"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003383074331503"},{"denom":"ASSET1","index":"0.000028697774885580"},{"denom":"ASSET10","index":"0.000022880621123289"},{"denom":"ASSET11","index":"0.000028511966470743"},{"denom":"ASSET12","index":"0.000027173358086556"},{"denom":"ASSET13","index":"0.000008954537947194"},{"denom":"ASSET14","index":"0.000026172910691250"},{"denom":"ASSET15","index":"0.000020614154391480"},{"denom":"ASSET16","index":"0.000012732692592075"},{"denom":"ASSET17","index":"0.000009985655741818"},{"denom":"ASSET18","index":"0.000004132359094826"},{"denom":"ASSET2","index":"0.000008689052893949"},{"denom":"ASSET3","index":"0.000002414485946546"},{"denom":"ASSET4","index":"0.000023266612079392"},{"denom":"ASSET5","index":"0.000001880944791026"},{"denom":"ASSET6","index":"0.000007591453768301"},{"denom":"ASSET7","index":"0.000011922604903868"},{"denom":"ASSET8","index":"0.000016278329144958"},{"denom":"ASSET9","index":"0.000006911169878531"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001436232590899"},{"denom":"ASSET1","index":"0.000011976183987962"},{"denom":"ASSET10","index":"0.000008344549248442"},{"denom":"ASSET11","index":"0.000011585862202045"},{"denom":"ASSET12","index":"0.000010432581326504"},{"denom":"ASSET13","index":"0.000003589949888597"},{"denom":"ASSET14","index":"0.000010822903112421"},{"denom":"ASSET15","index":"0.000007738224144105"},{"denom":"ASSET16","index":"0.000005395030251301"},{"denom":"ASSET17","index":"0.000003831216753031"},{"denom":"ASSET18","index":"0.000001825291199515"},{"denom":"ASSET2","index":"0.000003535633264667"},{"denom":"ASSET3","index":"0.000001033279031975"},{"denom":"ASSET4","index":"0.000009732781101914"},{"denom":"ASSET5","index":"0.000000802117585946"},{"denom":"ASSET6","index":"0.000003266576499617"},{"denom":"ASSET7","index":"0.000005003445288083"},{"denom":"ASSET8","index":"0.000006528100290032"},{"denom":"ASSET9","index":"0.000002819411735168"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003006064648013"},{"denom":"ASSET1","index":"0.000025531157590212"},{"denom":"ASSET10","index":"0.000020524407173472"},{"denom":"ASSET11","index":"0.000025409258384489"},{"denom":"ASSET12","index":"0.000024300714605646"},{"denom":"ASSET13","index":"0.000007986286383048"},{"denom":"ASSET14","index":"0.000023298685931189"},{"denom":"ASSET15","index":"0.000018459726056254"},{"denom":"ASSET16","index":"0.000011316095008653"},{"denom":"ASSET17","index":"0.000008930145684163"},{"denom":"ASSET18","index":"0.000003662445744281"},{"denom":"ASSET2","index":"0.000007743120539446"},{"denom":"ASSET3","index":"0.000002143639104141"},{"denom":"ASSET4","index":"0.000020695936675740"},{"denom":"ASSET5","index":"0.000001670457298921"},{"denom":"ASSET6","index":"0.000006739935351518"},{"denom":"ASSET7","index":"0.000010603283023237"},{"denom":"ASSET8","index":"0.000014518439118465"},{"denom":"ASSET9","index":"0.000006156725809403"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001476546163568"},{"denom":"ASSET1","index":"0.000012315891963405"},{"denom":"ASSET10","index":"0.000008580298213179"},{"denom":"ASSET11","index":"0.000011914434711559"},{"denom":"ASSET12","index":"0.000010728207916557"},{"denom":"ASSET13","index":"0.000003691365408921"},{"denom":"ASSET14","index":"0.000011129665168403"},{"denom":"ASSET15","index":"0.000007957699254808"},{"denom":"ASSET16","index":"0.000005547821683700"},{"denom":"ASSET17","index":"0.000003939724556249"},{"denom":"ASSET18","index":"0.000001876869355381"},{"denom":"ASSET2","index":"0.000003635796467281"},{"denom":"ASSET3","index":"0.000001062614251355"},{"denom":"ASSET4","index":"0.000010009213855342"},{"denom":"ASSET5","index":"0.000000825595704361"},{"denom":"ASSET6","index":"0.000003359085819117"},{"denom":"ASSET7","index":"0.000005145230371820"},{"denom":"ASSET8","index":"0.000006713635398099"},{"denom":"ASSET9","index":"0.000002899791505564"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000002611689387046"},{"denom":"ASSET1","index":"0.000022118950462866"},{"denom":"ASSET10","index":"0.000017388824351878"},{"denom":"ASSET11","index":"0.000021911701626113"},{"denom":"ASSET12","index":"0.000020757567192719"},{"denom":"ASSET13","index":"0.000006870825151743"},{"denom":"ASSET14","index":"0.000020152250667519"},{"denom":"ASSET15","index":"0.000015711809347683"},{"denom":"ASSET16","index":"0.000009830001439303"},{"denom":"ASSET17","index":"0.000007627368499381"},{"denom":"ASSET18","index":"0.000003205559295774"},{"denom":"ASSET2","index":"0.000006678615536452"},{"denom":"ASSET3","index":"0.000001865584989735"},{"denom":"ASSET4","index":"0.000017938012267073"},{"denom":"ASSET5","index":"0.000001453547274796"},{"denom":"ASSET6","index":"0.000005870892100855"},{"denom":"ASSET7","index":"0.000009195154067126"},{"denom":"ASSET8","index":"0.000012492245582088"},{"denom":"ASSET9","index":"0.000005313335607946"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000000860911540335"},{"denom":"ASSET1","index":"0.000007178593209511"},{"denom":"ASSET10","index":"0.000005001581264509"},{"denom":"ASSET11","index":"0.000006944753046495"},{"denom":"ASSET12","index":"0.000006253725385275"},{"denom":"ASSET13","index":"0.000002152029021603"},{"denom":"ASSET14","index":"0.000006487065889823"},{"denom":"ASSET15","index":"0.000004638329558286"},{"denom":"ASSET16","index":"0.000003233789604786"},{"denom":"ASSET17","index":"0.000002296430318850"},{"denom":"ASSET18","index":"0.000001093752386415"},{"denom":"ASSET2","index":"0.000002119051562716"},{"denom":"ASSET3","index":"0.000000619576500299"},{"denom":"ASSET4","index":"0.000005834012272169"},{"denom":"ASSET5","index":"0.000000481171104668"},{"denom":"ASSET6","index":"0.000001958161536025"},{"denom":"ASSET7","index":"0.000002998950124834"},{"denom":"ASSET8","index":"0.000003913325121242"},{"denom":"ASSET9","index":"0.000001690344597186"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000002357406510396"},{"denom":"ASSET1","index":"0.000020099972826550"},{"denom":"ASSET10","index":"0.000016611857270119"},{"denom":"ASSET11","index":"0.000020122040980663"},{"denom":"ASSET12","index":"0.000019473664705632"},{"denom":"ASSET13","index":"0.000006342954228467"},{"denom":"ASSET14","index":"0.000018379978414574"},{"denom":"ASSET15","index":"0.000014858739059306"},{"denom":"ASSET16","index":"0.000008878274052948"},{"denom":"ASSET17","index":"0.000007156982288871"},{"denom":"ASSET18","index":"0.000002845018303307"},{"denom":"ASSET2","index":"0.000006129987919866"},{"denom":"ASSET3","index":"0.000001678183905493"},{"denom":"ASSET4","index":"0.000016284739258605"},{"denom":"ASSET5","index":"0.000001308892339296"},{"denom":"ASSET6","index":"0.000005269046474537"},{"denom":"ASSET7","index":"0.000008337197620164"},{"denom":"ASSET8","index":"0.000011530009666752"},{"denom":"ASSET9","index":"0.000004871853664260"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001198976216272"},{"denom":"ASSET1","index":"0.000010001315625623"},{"denom":"ASSET10","index":"0.000006967712250892"},{"denom":"ASSET11","index":"0.000009674322112094"},{"denom":"ASSET12","index":"0.000008711677656379"},{"denom":"ASSET13","index":"0.000002997949876371"},{"denom":"ASSET14","index":"0.000009037652498526"},{"denom":"ASSET15","index":"0.000006461432574183"},{"denom":"ASSET16","index":"0.000004504564849919"},{"denom":"ASSET17","index":"0.000003199646809949"},{"denom":"ASSET18","index":"0.000001523932387037"},{"denom":"ASSET2","index":"0.000002952109664194"},{"denom":"ASSET3","index":"0.000000862814660308"},{"denom":"ASSET4","index":"0.000008126960283277"},{"denom":"ASSET5","index":"0.000000670285769165"},{"denom":"ASSET6","index":"0.000002728001960218"},{"denom":"ASSET7","index":"0.000004177571336390"},{"denom":"ASSET8","index":"0.000005451929234909"},{"denom":"ASSET9","index":"0.000002354149563130"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000002792091306062"},{"denom":"ASSET1","index":"0.000023760392481519"},{"denom":"ASSET10","index":"0.000019330735214415"},{"denom":"ASSET11","index":"0.000023705763948043"},{"denom":"ASSET12","index":"0.000022788595153270"},{"denom":"ASSET13","index":"0.000007460432475948"},{"denom":"ASSET14","index":"0.000021701401606991"},{"denom":"ASSET15","index":"0.000017344296121870"},{"denom":"ASSET16","index":"0.000010515175863945"},{"denom":"ASSET17","index":"0.000008375559402161"},{"denom":"ASSET18","index":"0.000003388923471278"},{"denom":"ASSET2","index":"0.000007222909907971"},{"denom":"ASSET3","index":"0.000001989926471838"},{"denom":"ASSET4","index":"0.000019255294602933"},{"denom":"ASSET5","index":"0.000001551437823125"},{"denom":"ASSET6","index":"0.000006253588147261"},{"denom":"ASSET7","index":"0.000009862028954195"},{"denom":"ASSET8","index":"0.000013562244421912"},{"denom":"ASSET9","index":"0.000005741841810541"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001507638919625"},{"denom":"ASSET1","index":"0.000012569401049902"},{"denom":"ASSET10","index":"0.000008757228353136"},{"denom":"ASSET11","index":"0.000012160184771718"},{"denom":"ASSET12","index":"0.000010949766096248"},{"denom":"ASSET13","index":"0.000003769097299062"},{"denom":"ASSET14","index":"0.000011358982374432"},{"denom":"ASSET15","index":"0.000008124020006893"},{"denom":"ASSET16","index":"0.000005660107258249"},{"denom":"ASSET17","index":"0.000004018934605743"},{"denom":"ASSET18","index":"0.000001912547658039"},{"denom":"ASSET2","index":"0.000003708791742277"},{"denom":"ASSET3","index":"0.000001085500022130"},{"denom":"ASSET4","index":"0.000010217484335287"},{"denom":"ASSET5","index":"0.000000839970255220"},{"denom":"ASSET6","index":"0.000003428801657204"},{"denom":"ASSET7","index":"0.000005250890980065"},{"denom":"ASSET8","index":"0.000006853295774638"},{"denom":"ASSET9","index":"0.000002959279822235"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003131246414749"},{"denom":"ASSET1","index":"0.000026589761836242"},{"denom":"ASSET10","index":"0.000021355242603721"},{"denom":"ASSET11","index":"0.000026458316408852"},{"denom":"ASSET12","index":"0.000025293988029420"},{"denom":"ASSET13","index":"0.000008316673174883"},{"denom":"ASSET14","index":"0.000024263343459355"},{"denom":"ASSET15","index":"0.000019213959771091"},{"denom":"ASSET16","index":"0.000011784585795875"},{"denom":"ASSET17","index":"0.000009292893547134"},{"denom":"ASSET18","index":"0.000003813004198036"},{"denom":"ASSET2","index":"0.000008060944762894"},{"denom":"ASSET3","index":"0.000002234070199415"},{"denom":"ASSET4","index":"0.000021557233504015"},{"denom":"ASSET5","index":"0.000001738116490695"},{"denom":"ASSET6","index":"0.000007021386599103"},{"denom":"ASSET7","index":"0.000011043212117572"},{"denom":"ASSET8","index":"0.000015117900391662"},{"denom":"ASSET9","index":"0.000006411442995536"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001538667310820"},{"denom":"ASSET1","index":"0.000012827917927858"},{"denom":"ASSET10","index":"0.000008937244372687"},{"denom":"ASSET11","index":"0.000012409488429871"},{"denom":"ASSET12","index":"0.000011174685151587"},{"denom":"ASSET13","index":"0.000003845530209513"},{"denom":"ASSET14","index":"0.000011592355937882"},{"denom":"ASSET15","index":"0.000008288166520415"},{"denom":"ASSET16","index":"0.000005778727600031"},{"denom":"ASSET17","index":"0.000004103871540546"},{"denom":"ASSET18","index":"0.000001954820673732"},{"denom":"ASSET2","index":"0.000003786730053405"},{"denom":"ASSET3","index":"0.000001107719069920"},{"denom":"ASSET4","index":"0.000010424698644316"},{"denom":"ASSET5","index":"0.000000859620346726"},{"denom":"ASSET6","index":"0.000003499178322240"},{"denom":"ASSET7","index":"0.000005359160034507"},{"denom":"ASSET8","index":"0.000006993045662639"},{"denom":"ASSET9","index":"0.000003020431244761"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003070496060295"},{"denom":"ASSET1","index":"0.000026054009108675"},{"denom":"ASSET10","index":"0.000020821706468932"},{"denom":"ASSET11","index":"0.000025897661631707"},{"denom":"ASSET12","index":"0.000024706407518076"},{"denom":"ASSET13","index":"0.000008135385272267"},{"denom":"ASSET14","index":"0.000023765921524780"},{"denom":"ASSET15","index":"0.000018749935123185"},{"denom":"ASSET16","index":"0.000011556337558875"},{"denom":"ASSET17","index":"0.000009079232430047"},{"denom":"ASSET18","index":"0.000003747682066764"},{"denom":"ASSET2","index":"0.000007892419371659"},{"denom":"ASSET3","index":"0.000002191201298955"},{"denom":"ASSET4","index":"0.000021122052487200"},{"denom":"ASSET5","index":"0.000001706992646915"},{"denom":"ASSET6","index":"0.000006888142834266"},{"denom":"ASSET7","index":"0.000010823268476718"},{"denom":"ASSET8","index":"0.000014789657857476"},{"denom":"ASSET9","index":"0.000006276911852268"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001679222100186"},{"denom":"ASSET1","index":"0.000013999028794594"},{"denom":"ASSET10","index":"0.000009753438641601"},{"denom":"ASSET11","index":"0.000013542280383343"},{"denom":"ASSET12","index":"0.000012194769233410"},{"denom":"ASSET13","index":"0.000004196505199295"},{"denom":"ASSET14","index":"0.000012650484277214"},{"denom":"ASSET15","index":"0.000009045065257184"},{"denom":"ASSET16","index":"0.000006306124840851"},{"denom":"ASSET17","index":"0.000004478614512126"},{"denom":"ASSET18","index":"0.000002133387092820"},{"denom":"ASSET2","index":"0.000004132436417626"},{"denom":"ASSET3","index":"0.000001208523228411"},{"denom":"ASSET4","index":"0.000011376342215965"},{"denom":"ASSET5","index":"0.000000938297641211"},{"denom":"ASSET6","index":"0.000003818809397684"},{"denom":"ASSET7","index":"0.000005848343062154"},{"denom":"ASSET8","index":"0.000007631418590690"},{"denom":"ASSET9","index":"0.000003295925469872"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003295755498274"},{"denom":"ASSET1","index":"0.000027960125957180"},{"denom":"ASSET10","index":"0.000022298091456525"},{"denom":"ASSET11","index":"0.000027779779629540"},{"denom":"ASSET12","index":"0.000026478335493542"},{"denom":"ASSET13","index":"0.000008724566942758"},{"denom":"ASSET14","index":"0.000025500389224880"},{"denom":"ASSET15","index":"0.000020088119547171"},{"denom":"ASSET16","index":"0.000012404652968467"},{"denom":"ASSET17","index":"0.000009730254100732"},{"denom":"ASSET18","index":"0.000004025857251145"},{"denom":"ASSET2","index":"0.000008465992991141"},{"denom":"ASSET3","index":"0.000002352288079447"},{"denom":"ASSET4","index":"0.000022667879187178"},{"denom":"ASSET5","index":"0.000001832649164275"},{"denom":"ASSET6","index":"0.000007396215489940"},{"denom":"ASSET7","index":"0.000011616026271508"},{"denom":"ASSET8","index":"0.000015861127767022"},{"denom":"ASSET9","index":"0.000006733269226830"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001488486853561"},{"denom":"ASSET1","index":"0.000012409943784184"},{"denom":"ASSET10","index":"0.000008645838046025"},{"denom":"ASSET11","index":"0.000012005445379346"},{"denom":"ASSET12","index":"0.000010810451131374"},{"denom":"ASSET13","index":"0.000003720376180879"},{"denom":"ASSET14","index":"0.000011214949536212"},{"denom":"ASSET15","index":"0.000008018487089665"},{"denom":"ASSET16","index":"0.000005590655707614"},{"denom":"ASSET17","index":"0.000003970139229188"},{"denom":"ASSET18","index":"0.000001891303352350"},{"denom":"ASSET2","index":"0.000003663191375205"},{"denom":"ASSET3","index":"0.000001071374153354"},{"denom":"ASSET4","index":"0.000010085549624159"},{"denom":"ASSET5","index":"0.000000831702541340"},{"denom":"ASSET6","index":"0.000003384835924059"},{"denom":"ASSET7","index":"0.000005184475396726"},{"denom":"ASSET8","index":"0.000006765467082995"},{"denom":"ASSET9","index":"0.000002921470807498"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003140601357292"},{"denom":"ASSET1","index":"0.000026678854887219"},{"denom":"ASSET10","index":"0.000021467437308134"},{"denom":"ASSET11","index":"0.000026557150856893"},{"denom":"ASSET12","index":"0.000025409189778577"},{"denom":"ASSET13","index":"0.000008348678217638"},{"denom":"ASSET14","index":"0.000024348515645151"},{"denom":"ASSET15","index":"0.000019305257093893"},{"denom":"ASSET16","index":"0.000011824039078448"},{"denom":"ASSET17","index":"0.000009337874135725"},{"denom":"ASSET18","index":"0.000003825021517438"},{"denom":"ASSET2","index":"0.000008092644314938"},{"denom":"ASSET3","index":"0.000002240059115813"},{"denom":"ASSET4","index":"0.000021626536887159"},{"denom":"ASSET5","index":"0.000001745574888449"},{"denom":"ASSET6","index":"0.000007040920669072"},{"denom":"ASSET7","index":"0.000011079696231301"},{"denom":"ASSET8","index":"0.000015176664815864"},{"denom":"ASSET9","index":"0.000006434669973810"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001385039568420"},{"denom":"ASSET1","index":"0.000011547928050470"},{"denom":"ASSET10","index":"0.000008045290512347"},{"denom":"ASSET11","index":"0.000011171268467624"},{"denom":"ASSET12","index":"0.000010059084660007"},{"denom":"ASSET13","index":"0.000003461116009305"},{"denom":"ASSET14","index":"0.000010435744242853"},{"denom":"ASSET15","index":"0.000007461023285412"},{"denom":"ASSET16","index":"0.000005202054396163"},{"denom":"ASSET17","index":"0.000003694427456948"},{"denom":"ASSET18","index":"0.000001759721935608"},{"denom":"ASSET2","index":"0.000003408719794369"},{"denom":"ASSET3","index":"0.000000996516691625"},{"denom":"ASSET4","index":"0.000009383865512804"},{"denom":"ASSET5","index":"0.000000774079930102"},{"denom":"ASSET6","index":"0.000003149704543173"},{"denom":"ASSET7","index":"0.000004824406205487"},{"denom":"ASSET8","index":"0.000006294466047200"},{"denom":"ASSET9","index":"0.000002718671529731"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000002978674281858"},{"denom":"ASSET1","index":"0.000025310372422717"},{"denom":"ASSET10","index":"0.000020411345436720"},{"denom":"ASSET11","index":"0.000025206262983954"},{"denom":"ASSET12","index":"0.000024139567910062"},{"denom":"ASSET13","index":"0.000007924745788344"},{"denom":"ASSET14","index":"0.000023102636423037"},{"denom":"ASSET15","index":"0.000018346974201526"},{"denom":"ASSET16","index":"0.000011213830154915"},{"denom":"ASSET17","index":"0.000008871351161454"},{"denom":"ASSET18","index":"0.000003625142276595"},{"denom":"ASSET2","index":"0.000007680838181843"},{"denom":"ASSET3","index":"0.000002123796319816"},{"denom":"ASSET4","index":"0.000020514843977806"},{"denom":"ASSET5","index":"0.000001655567492872"},{"denom":"ASSET6","index":"0.000006676037052519"},{"denom":"ASSET7","index":"0.000010510115662832"},{"denom":"ASSET8","index":"0.000014407133239162"},{"denom":"ASSET9","index":"0.000006107008804836"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001563741356289"},{"denom":"ASSET1","index":"0.000013036816883138"},{"denom":"ASSET10","index":"0.000009082880828100"},{"denom":"ASSET11","index":"0.000012611783735587"},{"denom":"ASSET12","index":"0.000011356772924286"},{"denom":"ASSET13","index":"0.000003908472310400"},{"denom":"ASSET14","index":"0.000011781101207579"},{"denom":"ASSET15","index":"0.000008423480314776"},{"denom":"ASSET16","index":"0.000005872928997340"},{"denom":"ASSET17","index":"0.000004170681814362"},{"denom":"ASSET18","index":"0.000001986659911066"},{"denom":"ASSET2","index":"0.000003848558848473"},{"denom":"ASSET3","index":"0.000001125668219966"},{"denom":"ASSET4","index":"0.000010594814661429"},{"denom":"ASSET5","index":"0.000000873679247744"},{"denom":"ASSET6","index":"0.000003556392613548"},{"denom":"ASSET7","index":"0.000005446486121273"},{"denom":"ASSET8","index":"0.000007106793880903"},{"denom":"ASSET9","index":"0.000003069683843425"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003115193601728"},{"denom":"ASSET1","index":"0.000026433576226141"},{"denom":"ASSET10","index":"0.000021120836274624"},{"denom":"ASSET11","index":"0.000026274076149270"},{"denom":"ASSET12","index":"0.000025063206789151"},{"denom":"ASSET13","index":"0.000008253838888439"},{"denom":"ASSET14","index":"0.000024111622086359"},{"denom":"ASSET15","index":"0.000019020166052921"},{"denom":"ASSET16","index":"0.000011725264187843"},{"denom":"ASSET17","index":"0.000009210335248597"},{"denom":"ASSET18","index":"0.000003802618681808"},{"denom":"ASSET2","index":"0.000008007094168018"},{"denom":"ASSET3","index":"0.000002223045227271"},{"denom":"ASSET4","index":"0.000021430343290469"},{"denom":"ASSET5","index":"0.000001731871182363"},{"denom":"ASSET6","index":"0.000006989160352022"},{"denom":"ASSET7","index":"0.000010981276608696"},{"denom":"ASSET8","index":"0.000015004007461071"},{"denom":"ASSET9","index":"0.000006368316319391"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001688791638136"},{"denom":"ASSET1","index":"0.000014080258863939"},{"denom":"ASSET10","index":"0.000009809129194434"},{"denom":"ASSET11","index":"0.000013620783833550"},{"denom":"ASSET12","index":"0.000012265553395360"},{"denom":"ASSET13","index":"0.000004220322334414"},{"denom":"ASSET14","index":"0.000012723923918464"},{"denom":"ASSET15","index":"0.000009096721995874"},{"denom":"ASSET16","index":"0.000006342080828109"},{"denom":"ASSET17","index":"0.000004504180706554"},{"denom":"ASSET18","index":"0.000002144953146672"},{"denom":"ASSET2","index":"0.000004156260911908"},{"denom":"ASSET3","index":"0.000001214958013048"},{"denom":"ASSET4","index":"0.000011442695468341"},{"denom":"ASSET5","index":"0.000000943249221039"},{"denom":"ASSET6","index":"0.000003840371828516"},{"denom":"ASSET7","index":"0.000005881501290436"},{"denom":"ASSET8","index":"0.000007675221120608"},{"denom":"ASSET9","index":"0.000003314626361051"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003342989987813"},{"denom":"ASSET1","index":"0.000028363859076608"},{"denom":"ASSET10","index":"0.000022643596968544"},{"denom":"ASSET11","index":"0.000028187678804911"},{"denom":"ASSET12","index":"0.000026879157824253"},{"denom":"ASSET13","index":"0.000008853292918908"},{"denom":"ASSET14","index":"0.000025870927331183"},{"denom":"ASSET15","index":"0.000020395094195043"},{"denom":"ASSET16","index":"0.000012581780801373"},{"denom":"ASSET17","index":"0.000009877287329505"},{"denom":"ASSET18","index":"0.000004080927248291"},{"denom":"ASSET2","index":"0.000008590241612281"},{"denom":"ASSET3","index":"0.000002384972961476"},{"denom":"ASSET4","index":"0.000022995501297970"},{"denom":"ASSET5","index":"0.000001858071035633"},{"denom":"ASSET6","index":"0.000007500418590266"},{"denom":"ASSET7","index":"0.000011782462758670"},{"denom":"ASSET8","index":"0.000016095075530395"},{"denom":"ASSET9","index":"0.000006831506736707"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001571496317510"},{"denom":"ASSET1","index":"0.000013101483241955"},{"denom":"ASSET10","index":"0.000009127906315185"},{"denom":"ASSET11","index":"0.000012674221268720"},{"denom":"ASSET12","index":"0.000011413128948859"},{"denom":"ASSET13","index":"0.000003927726401627"},{"denom":"ASSET14","index":"0.000011839579408375"},{"denom":"ASSET15","index":"0.000008464899606481"},{"denom":"ASSET16","index":"0.000005901733523932"},{"denom":"ASSET17","index":"0.000004191468360414"},{"denom":"ASSET18","index":"0.000001996729506447"},{"denom":"ASSET2","index":"0.000003867268629536"},{"denom":"ASSET3","index":"0.000001131250124766"},{"denom":"ASSET4","index":"0.000010647059997798"},{"denom":"ASSET5","index":"0.000000878057844331"},{"denom":"ASSET6","index":"0.000003573906419993"},{"denom":"ASSET7","index":"0.000005473254280118"},{"denom":"ASSET8","index":"0.000007142132243950"},{"denom":"ASSET9","index":"0.000003084563647228"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003113134051861"},{"denom":"ASSET1","index":"0.000026415094552464"},{"denom":"ASSET10","index":"0.000021090707465492"},{"denom":"ASSET11","index":"0.000026251548228726"},{"denom":"ASSET12","index":"0.000025034408517114"},{"denom":"ASSET13","index":"0.000008245703890405"},{"denom":"ASSET14","index":"0.000024093200316600"},{"denom":"ASSET15","index":"0.000018995578271326"},{"denom":"ASSET16","index":"0.000011717396138812"},{"denom":"ASSET17","index":"0.000009199501798709"},{"denom":"ASSET18","index":"0.000003801350346824"},{"denom":"ASSET2","index":"0.000007999912620195"},{"denom":"ASSET3","index":"0.000002221641081089"},{"denom":"ASSET4","index":"0.000021415082747190"},{"denom":"ASSET5","index":"0.000001730738444371"},{"denom":"ASSET6","index":"0.000006985361363625"},{"denom":"ASSET7","index":"0.000010973556930807"},{"denom":"ASSET8","index":"0.000014990236718633"},{"denom":"ASSET9","index":"0.000006362695679170"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001486431692511"},{"denom":"ASSET1","index":"0.000012397696164316"},{"denom":"ASSET10","index":"0.000008637613387551"},{"denom":"ASSET11","index":"0.000011993186507636"},{"denom":"ASSET12","index":"0.000010799842650204"},{"denom":"ASSET13","index":"0.000003716482933529"},{"denom":"ASSET14","index":"0.000011203544902380"},{"denom":"ASSET15","index":"0.000008010260087670"},{"denom":"ASSET16","index":"0.000005584816956599"},{"denom":"ASSET17","index":"0.000003965970925374"},{"denom":"ASSET18","index":"0.000001889326540182"},{"denom":"ASSET2","index":"0.000003659157213720"},{"denom":"ASSET3","index":"0.000001070618372770"},{"denom":"ASSET4","index":"0.000010074793405297"},{"denom":"ASSET5","index":"0.000000830819234978"},{"denom":"ASSET6","index":"0.000003381410064224"},{"denom":"ASSET7","index":"0.000005179499895414"},{"denom":"ASSET8","index":"0.000006757975701421"},{"denom":"ASSET9","index":"0.000002918767283230"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003023961266495"},{"denom":"ASSET1","index":"0.000025674667559579"},{"denom":"ASSET10","index":"0.000020567435721356"},{"denom":"ASSET11","index":"0.000025532965784321"},{"denom":"ASSET12","index":"0.000024383768132692"},{"denom":"ASSET13","index":"0.000008022807352722"},{"denom":"ASSET14","index":"0.000023423766496233"},{"denom":"ASSET15","index":"0.000018512228577533"},{"denom":"ASSET16","index":"0.000011384524743973"},{"denom":"ASSET17","index":"0.000008960010456843"},{"denom":"ASSET18","index":"0.000003688974211121"},{"denom":"ASSET2","index":"0.000007780619396113"},{"denom":"ASSET3","index":"0.000002157718690670"},{"denom":"ASSET4","index":"0.000020813357966886"},{"denom":"ASSET5","index":"0.000001681323481152"},{"denom":"ASSET6","index":"0.000006783427048921"},{"denom":"ASSET7","index":"0.000010664665966441"},{"denom":"ASSET8","index":"0.000014584270248941"},{"denom":"ASSET9","index":"0.000006187655866052"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001789525520762"},{"denom":"ASSET1","index":"0.000014923544215299"},{"denom":"ASSET10","index":"0.000010397506905977"},{"denom":"ASSET11","index":"0.000014436898494348"},{"denom":"ASSET12","index":"0.000013000171779235"},{"denom":"ASSET13","index":"0.000004474200642702"},{"denom":"ASSET14","index":"0.000013486043818595"},{"denom":"ASSET15","index":"0.000009642393672833"},{"denom":"ASSET16","index":"0.000006722519347127"},{"denom":"ASSET17","index":"0.000004774389100140"},{"denom":"ASSET18","index":"0.000002273850196939"},{"denom":"ASSET2","index":"0.000004405342981073"},{"denom":"ASSET3","index":"0.000001288179849576"},{"denom":"ASSET4","index":"0.000012128232625798"},{"denom":"ASSET5","index":"0.000001000370297599"},{"denom":"ASSET6","index":"0.000004071112533615"},{"denom":"ASSET7","index":"0.000006234326262993"},{"denom":"ASSET8","index":"0.000008135261932908"},{"denom":"ASSET9","index":"0.000003514061787852"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003488279034648"},{"denom":"ASSET1","index":"0.000029592208548275"},{"denom":"ASSET10","index":"0.000023577626976592"},{"denom":"ASSET11","index":"0.000029395914355993"},{"denom":"ASSET12","index":"0.000028007798530295"},{"denom":"ASSET13","index":"0.000009231498766276"},{"denom":"ASSET14","index":"0.000026986732997785"},{"denom":"ASSET15","index":"0.000021244630549189"},{"denom":"ASSET16","index":"0.000013129960095172"},{"denom":"ASSET17","index":"0.000010292381952670"},{"denom":"ASSET18","index":"0.000004261641431672"},{"denom":"ASSET2","index":"0.000008958343988321"},{"denom":"ASSET3","index":"0.000002489657102823"},{"denom":"ASSET4","index":"0.000023991917258738"},{"denom":"ASSET5","index":"0.000001939742890351"},{"denom":"ASSET6","index":"0.000007829259808535"},{"denom":"ASSET7","index":"0.000012294264842111"},{"denom":"ASSET8","index":"0.000016782088113605"},{"denom":"ASSET9","index":"0.000007125719490615"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001504632489095"},{"denom":"ASSET1","index":"0.000012543084148708"},{"denom":"ASSET10","index":"0.000008738830231438"},{"denom":"ASSET11","index":"0.000012134501498699"},{"denom":"ASSET12","index":"0.000010926897843985"},{"denom":"ASSET13","index":"0.000003760573206331"},{"denom":"ASSET14","index":"0.000011335480493994"},{"denom":"ASSET15","index":"0.000008104451906425"},{"denom":"ASSET16","index":"0.000005650267962622"},{"denom":"ASSET17","index":"0.000004012577307899"},{"denom":"ASSET18","index":"0.000001911199106291"},{"denom":"ASSET2","index":"0.000003702780265705"},{"denom":"ASSET3","index":"0.000001083281631273"},{"denom":"ASSET4","index":"0.000010193733911157"},{"denom":"ASSET5","index":"0.000000840685682831"},{"denom":"ASSET6","index":"0.000003421207682886"},{"denom":"ASSET7","index":"0.000005240341290738"},{"denom":"ASSET8","index":"0.000006837711289210"},{"denom":"ASSET9","index":"0.000002953488070376"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003015423229771"},{"denom":"ASSET1","index":"0.000025588098096649"},{"denom":"ASSET10","index":"0.000020460473772645"},{"denom":"ASSET11","index":"0.000025438043766359"},{"denom":"ASSET12","index":"0.000024273358860204"},{"denom":"ASSET13","index":"0.000007991752317173"},{"denom":"ASSET14","index":"0.000023342063892494"},{"denom":"ASSET15","index":"0.000018422728556898"},{"denom":"ASSET16","index":"0.000011348811151398"},{"denom":"ASSET17","index":"0.000008919790197810"},{"denom":"ASSET18","index":"0.000003679502338318"},{"denom":"ASSET2","index":"0.000007752126098631"},{"denom":"ASSET3","index":"0.000002151933074669"},{"denom":"ASSET4","index":"0.000020744635257959"},{"denom":"ASSET5","index":"0.000001676458472807"},{"denom":"ASSET6","index":"0.000006763790928604"},{"denom":"ASSET7","index":"0.000010629564741383"},{"denom":"ASSET8","index":"0.000014527278079751"},{"denom":"ASSET9","index":"0.000006165283413682"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001790270882045"},{"denom":"ASSET1","index":"0.000014924962381265"},{"denom":"ASSET10","index":"0.000010398687848362"},{"denom":"ASSET11","index":"0.000014438353512768"},{"denom":"ASSET12","index":"0.000013001639266884"},{"denom":"ASSET13","index":"0.000004474427888377"},{"denom":"ASSET14","index":"0.000013487623477013"},{"denom":"ASSET15","index":"0.000009643475881721"},{"denom":"ASSET16","index":"0.000006723198012370"},{"denom":"ASSET17","index":"0.000004774888563278"},{"denom":"ASSET18","index":"0.000002274381117071"},{"denom":"ASSET2","index":"0.000004405715467922"},{"denom":"ASSET3","index":"0.000001288670212721"},{"denom":"ASSET4","index":"0.000012129616185469"},{"denom":"ASSET5","index":"0.000001000078046809"},{"denom":"ASSET6","index":"0.000004071523241162"},{"denom":"ASSET7","index":"0.000006235339827137"},{"denom":"ASSET8","index":"0.000008136175240279"},{"denom":"ASSET9","index":"0.000003514327977106"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003452635056994"},{"denom":"ASSET1","index":"0.000029280443630050"},{"denom":"ASSET10","index":"0.000023297581891953"},{"denom":"ASSET11","index":"0.000029078046899152"},{"denom":"ASSET12","index":"0.000027688393753974"},{"denom":"ASSET13","index":"0.000009130247174920"},{"denom":"ASSET14","index":"0.000026700258191979"},{"denom":"ASSET15","index":"0.000020998119885469"},{"denom":"ASSET16","index":"0.000012993858989816"},{"denom":"ASSET17","index":"0.000010174919177657"},{"denom":"ASSET18","index":"0.000004220034662939"},{"denom":"ASSET2","index":"0.000008861755768133"},{"denom":"ASSET3","index":"0.000002464736347038"},{"denom":"ASSET4","index":"0.000023740327943060"},{"denom":"ASSET5","index":"0.000001919615043943"},{"denom":"ASSET6","index":"0.000007749671229698"},{"denom":"ASSET7","index":"0.000012165961282812"},{"denom":"ASSET8","index":"0.000016598407083950"},{"denom":"ASSET9","index":"0.000007048985746822"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001835550145227"},{"denom":"ASSET1","index":"0.000015324623289081"},{"denom":"ASSET10","index":"0.000010676536631006"},{"denom":"ASSET11","index":"0.000014825027987456"},{"denom":"ASSET12","index":"0.000013348446318211"},{"denom":"ASSET13","index":"0.000004592576069005"},{"denom":"ASSET14","index":"0.000013848041619836"},{"denom":"ASSET15","index":"0.000009899388384035"},{"denom":"ASSET16","index":"0.000006901816574290"},{"denom":"ASSET17","index":"0.000004903435367793"},{"denom":"ASSET18","index":"0.000002335145446851"},{"denom":"ASSET2","index":"0.000004522262656184"},{"denom":"ASSET3","index":"0.000001321152019851"},{"denom":"ASSET4","index":"0.000012452875481226"},{"denom":"ASSET5","index":"0.000001025095544814"},{"denom":"ASSET6","index":"0.000004178097003954"},{"denom":"ASSET7","index":"0.000006402221272666"},{"denom":"ASSET8","index":"0.000008352493301969"},{"denom":"ASSET9","index":"0.000003608188289508"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003336473275634"},{"denom":"ASSET1","index":"0.000028284037775138"},{"denom":"ASSET10","index":"0.000022321061137243"},{"denom":"ASSET11","index":"0.000028041053149272"},{"denom":"ASSET12","index":"0.000026607048139233"},{"denom":"ASSET13","index":"0.000008795774551756"},{"denom":"ASSET14","index":"0.000025776026947277"},{"denom":"ASSET15","index":"0.000020150006768141"},{"denom":"ASSET16","index":"0.000012562977954735"},{"denom":"ASSET17","index":"0.000009778271060189"},{"denom":"ASSET18","index":"0.000004091528532498"},{"denom":"ASSET2","index":"0.000008544798017437"},{"denom":"ASSET3","index":"0.000002382883485470"},{"denom":"ASSET4","index":"0.000022934405116164"},{"denom":"ASSET5","index":"0.000001855148612588"},{"denom":"ASSET6","index":"0.000007498692848558"},{"denom":"ASSET7","index":"0.000011756140274513"},{"denom":"ASSET8","index":"0.000015991743254740"},{"denom":"ASSET9","index":"0.000006799136288961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001764742979644"},{"denom":"ASSET1","index":"0.000014715413525055"},{"denom":"ASSET10","index":"0.000010252344388411"},{"denom":"ASSET11","index":"0.000014235671854472"},{"denom":"ASSET12","index":"0.000012819403806098"},{"denom":"ASSET13","index":"0.000004411268809023"},{"denom":"ASSET14","index":"0.000013298556836595"},{"denom":"ASSET15","index":"0.000009507714678855"},{"denom":"ASSET16","index":"0.000006629264655353"},{"denom":"ASSET17","index":"0.000004707943412672"},{"denom":"ASSET18","index":"0.000002242718729968"},{"denom":"ASSET2","index":"0.000004343575199063"},{"denom":"ASSET3","index":"0.000001270873946982"},{"denom":"ASSET4","index":"0.000011958811999481"},{"denom":"ASSET5","index":"0.000000985972145064"},{"denom":"ASSET6","index":"0.000004013936750564"},{"denom":"ASSET7","index":"0.000006147757064510"},{"denom":"ASSET8","index":"0.000008021987100262"},{"denom":"ASSET9","index":"0.000003464735549761"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003371223111771"},{"denom":"ASSET1","index":"0.000028586584995448"},{"denom":"ASSET10","index":"0.000022716281614844"},{"denom":"ASSET11","index":"0.000028381809067472"},{"denom":"ASSET12","index":"0.000027011101270499"},{"denom":"ASSET13","index":"0.000008910504058238"},{"denom":"ASSET14","index":"0.000026065694327630"},{"denom":"ASSET15","index":"0.000020479714095343"},{"denom":"ASSET16","index":"0.000012688778091614"},{"denom":"ASSET17","index":"0.000009925875585388"},{"denom":"ASSET18","index":"0.000004122881217339"},{"denom":"ASSET2","index":"0.000008649339803247"},{"denom":"ASSET3","index":"0.000002407313457267"},{"denom":"ASSET4","index":"0.000023177863483423"},{"denom":"ASSET5","index":"0.000001874397047373"},{"denom":"ASSET6","index":"0.000007568278053481"},{"denom":"ASSET7","index":"0.000011878402488901"},{"denom":"ASSET8","index":"0.000016198768839280"},{"denom":"ASSET9","index":"0.000006880150170591"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001519402004985"},{"denom":"ASSET1","index":"0.000012669186594649"},{"denom":"ASSET10","index":"0.000008826466179926"},{"denom":"ASSET11","index":"0.000012255973562605"},{"denom":"ASSET12","index":"0.000011036700348729"},{"denom":"ASSET13","index":"0.000003798237040326"},{"denom":"ASSET14","index":"0.000011448841492233"},{"denom":"ASSET15","index":"0.000008185476833202"},{"denom":"ASSET16","index":"0.000005707270529482"},{"denom":"ASSET17","index":"0.000004053346512768"},{"denom":"ASSET18","index":"0.000001930471259949"},{"denom":"ASSET2","index":"0.000003739819114914"},{"denom":"ASSET3","index":"0.000001093862254735"},{"denom":"ASSET4","index":"0.000010296025367816"},{"denom":"ASSET5","index":"0.000000848935723420"},{"denom":"ASSET6","index":"0.000003455768651901"},{"denom":"ASSET7","index":"0.000005292985608899"},{"denom":"ASSET8","index":"0.000006906177861104"},{"denom":"ASSET9","index":"0.000002983065805906"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003090388166914"},{"denom":"ASSET1","index":"0.000026235396530584"},{"denom":"ASSET10","index":"0.000021016328726441"},{"denom":"ASSET11","index":"0.000026091077525301"},{"denom":"ASSET12","index":"0.000024916432469284"},{"denom":"ASSET13","index":"0.000008198423394567"},{"denom":"ASSET14","index":"0.000023935350029219"},{"denom":"ASSET15","index":"0.000018916111125702"},{"denom":"ASSET16","index":"0.000011633439861257"},{"denom":"ASSET17","index":"0.000009156707623184"},{"denom":"ASSET18","index":"0.000003769226369030"},{"denom":"ASSET2","index":"0.000007950992094695"},{"denom":"ASSET3","index":"0.000002205065882760"},{"denom":"ASSET4","index":"0.000021268551776440"},{"denom":"ASSET5","index":"0.000001717872208784"},{"denom":"ASSET6","index":"0.000006931889619894"},{"denom":"ASSET7","index":"0.000010897757198785"},{"denom":"ASSET8","index":"0.000014903243728132"},{"denom":"ASSET9","index":"0.000006323427167640"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001518878942956"},{"denom":"ASSET1","index":"0.000012665267621292"},{"denom":"ASSET10","index":"0.000008823986077449"},{"denom":"ASSET11","index":"0.000012252067733139"},{"denom":"ASSET12","index":"0.000011032961258059"},{"denom":"ASSET13","index":"0.000003796959064490"},{"denom":"ASSET14","index":"0.000011445207974612"},{"denom":"ASSET15","index":"0.000008182978177143"},{"denom":"ASSET16","index":"0.000005705208605625"},{"denom":"ASSET17","index":"0.000004051932467214"},{"denom":"ASSET18","index":"0.000001930172487911"},{"denom":"ASSET2","index":"0.000003738815596953"},{"denom":"ASSET3","index":"0.000001093764409816"},{"denom":"ASSET4","index":"0.000010292823511460"},{"denom":"ASSET5","index":"0.000000848799308881"},{"denom":"ASSET6","index":"0.000003454770460461"},{"denom":"ASSET7","index":"0.000005291055545873"},{"denom":"ASSET8","index":"0.000006904298477127"},{"denom":"ASSET9","index":"0.000002981997347372"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003032310940473"},{"denom":"ASSET1","index":"0.000025733484746235"},{"denom":"ASSET10","index":"0.000020566326171769"},{"denom":"ASSET11","index":"0.000025579130700492"},{"denom":"ASSET12","index":"0.000024402998631681"},{"denom":"ASSET13","index":"0.000008035434808363"},{"denom":"ASSET14","index":"0.000023473377840860"},{"denom":"ASSET15","index":"0.000018519821992016"},{"denom":"ASSET16","index":"0.000011413808805814"},{"denom":"ASSET17","index":"0.000008967671528488"},{"denom":"ASSET18","index":"0.000003701450923042"},{"denom":"ASSET2","index":"0.000007795399667781"},{"denom":"ASSET3","index":"0.000002164126947351"},{"denom":"ASSET4","index":"0.000020862528644023"},{"denom":"ASSET5","index":"0.000001685967393794"},{"denom":"ASSET6","index":"0.000006803442800114"},{"denom":"ASSET7","index":"0.000010689840259007"},{"denom":"ASSET8","index":"0.000014607710652032"},{"denom":"ASSET9","index":"0.000006199747658625"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001387661284101"},{"denom":"ASSET1","index":"0.000011573014587468"},{"denom":"ASSET10","index":"0.000008062929395432"},{"denom":"ASSET11","index":"0.000011195232526081"},{"denom":"ASSET12","index":"0.000010081345808669"},{"denom":"ASSET13","index":"0.000003469153210252"},{"denom":"ASSET14","index":"0.000010458456853962"},{"denom":"ASSET15","index":"0.000007477132344649"},{"denom":"ASSET16","index":"0.000005213124040705"},{"denom":"ASSET17","index":"0.000003702666811251"},{"denom":"ASSET18","index":"0.000001763430297203"},{"denom":"ASSET2","index":"0.000003416142938760"},{"denom":"ASSET3","index":"0.000000999142965196"},{"denom":"ASSET4","index":"0.000009404961585085"},{"denom":"ASSET5","index":"0.000000775694605619"},{"denom":"ASSET6","index":"0.000003156459710063"},{"denom":"ASSET7","index":"0.000004834670963223"},{"denom":"ASSET8","index":"0.000006308893323556"},{"denom":"ASSET9","index":"0.000002724996361089"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000002847838387483"},{"denom":"ASSET1","index":"0.000024182680336096"},{"denom":"ASSET10","index":"0.000019393227963423"},{"denom":"ASSET11","index":"0.000024054653395269"},{"denom":"ASSET12","index":"0.000022982316432831"},{"denom":"ASSET13","index":"0.000007558836235579"},{"denom":"ASSET14","index":"0.000022064079622497"},{"denom":"ASSET15","index":"0.000017450899901336"},{"denom":"ASSET16","index":"0.000010721434414440"},{"denom":"ASSET17","index":"0.000008446187739031"},{"denom":"ASSET18","index":"0.000003472449339717"},{"denom":"ASSET2","index":"0.000007330038539196"},{"denom":"ASSET3","index":"0.000002031951160271"},{"denom":"ASSET4","index":"0.000019603371773062"},{"denom":"ASSET5","index":"0.000001583403578691"},{"denom":"ASSET6","index":"0.000006387295602350"},{"denom":"ASSET7","index":"0.000010043914419286"},{"denom":"ASSET8","index":"0.000013741733556815"},{"denom":"ASSET9","index":"0.000005829813216311"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001740203165372"},{"denom":"ASSET1","index":"0.000014506985633466"},{"denom":"ASSET10","index":"0.000010106727386233"},{"denom":"ASSET11","index":"0.000014033828203465"},{"denom":"ASSET12","index":"0.000012637643303754"},{"denom":"ASSET13","index":"0.000004348390877948"},{"denom":"ASSET14","index":"0.000013109742216014"},{"denom":"ASSET15","index":"0.000009373174592071"},{"denom":"ASSET16","index":"0.000006535288529808"},{"denom":"ASSET17","index":"0.000004640541774324"},{"denom":"ASSET18","index":"0.000002210185042151"},{"denom":"ASSET2","index":"0.000004281704260297"},{"denom":"ASSET3","index":"0.000001252226487004"},{"denom":"ASSET4","index":"0.000011789770593618"},{"denom":"ASSET5","index":"0.000000971719285773"},{"denom":"ASSET6","index":"0.000003956739313965"},{"denom":"ASSET7","index":"0.000006060014064326"},{"denom":"ASSET8","index":"0.000007908186039228"},{"denom":"ASSET9","index":"0.000003415836748573"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003351161845380"},{"denom":"ASSET1","index":"0.000028416485386018"},{"denom":"ASSET10","index":"0.000022605276372189"},{"denom":"ASSET11","index":"0.000028218825237526"},{"denom":"ASSET12","index":"0.000026868556551399"},{"denom":"ASSET13","index":"0.000008859853422879"},{"denom":"ASSET14","index":"0.000025912194276628"},{"denom":"ASSET15","index":"0.000020375555431981"},{"denom":"ASSET16","index":"0.000012611404420708"},{"denom":"ASSET17","index":"0.000009873044520717"},{"denom":"ASSET18","index":"0.000004095473642305"},{"denom":"ASSET2","index":"0.000008599384819082"},{"denom":"ASSET3","index":"0.000002391571176633"},{"denom":"ASSET4","index":"0.000023040021162794"},{"denom":"ASSET5","index":"0.000001862805125681"},{"denom":"ASSET6","index":"0.000007520693553142"},{"denom":"ASSET7","index":"0.000011806544930596"},{"denom":"ASSET8","index":"0.000016107343127742"},{"denom":"ASSET9","index":"0.000006840485865179"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001711866379191"},{"denom":"ASSET1","index":"0.000014286095556473"},{"denom":"ASSET10","index":"0.000009953932372868"},{"denom":"ASSET11","index":"0.000013820467901333"},{"denom":"ASSET12","index":"0.000012444127332464"},{"denom":"ASSET13","index":"0.000004281948436482"},{"denom":"ASSET14","index":"0.000012909754987604"},{"denom":"ASSET15","index":"0.000009230383516596"},{"denom":"ASSET16","index":"0.000006434335097252"},{"denom":"ASSET17","index":"0.000004569541988186"},{"denom":"ASSET18","index":"0.000002177494034331"},{"denom":"ASSET2","index":"0.000004215756269820"},{"denom":"ASSET3","index":"0.000001232543793017"},{"denom":"ASSET4","index":"0.000011608736539419"},{"denom":"ASSET5","index":"0.000000956362683841"},{"denom":"ASSET6","index":"0.000003896207879038"},{"denom":"ASSET7","index":"0.000005968707442112"},{"denom":"ASSET8","index":"0.000007787850781065"},{"denom":"ASSET9","index":"0.000003362105568731"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003408995344605"},{"denom":"ASSET1","index":"0.000028940875589883"},{"denom":"ASSET10","index":"0.000023121939135123"},{"denom":"ASSET11","index":"0.000028765460883304"},{"denom":"ASSET12","index":"0.000027437813762181"},{"denom":"ASSET13","index":"0.000009035078182388"},{"denom":"ASSET14","index":"0.000026397840013038"},{"denom":"ASSET15","index":"0.000020822021063845"},{"denom":"ASSET16","index":"0.000012835900360827"},{"denom":"ASSET17","index":"0.000010082289518918"},{"denom":"ASSET18","index":"0.000004163537456367"},{"denom":"ASSET2","index":"0.000008764373535196"},{"denom":"ASSET3","index":"0.000002432999591430"},{"denom":"ASSET4","index":"0.000023461370966582"},{"denom":"ASSET5","index":"0.000001895172356369"},{"denom":"ASSET6","index":"0.000007651446569151"},{"denom":"ASSET7","index":"0.000012022926111771"},{"denom":"ASSET8","index":"0.000016426068411072"},{"denom":"ASSET9","index":"0.000006969965423669"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001459800105667"},{"denom":"ASSET1","index":"0.000012176396665923"},{"denom":"ASSET10","index":"0.000008484162206626"},{"denom":"ASSET11","index":"0.000011779823335110"},{"denom":"ASSET12","index":"0.000010607197020722"},{"denom":"ASSET13","index":"0.000003650070053435"},{"denom":"ASSET14","index":"0.000011003770351536"},{"denom":"ASSET15","index":"0.000007867650218206"},{"denom":"ASSET16","index":"0.000005484791497715"},{"denom":"ASSET17","index":"0.000003895079438851"},{"denom":"ASSET18","index":"0.000001855233857943"},{"denom":"ASSET2","index":"0.000003594230705131"},{"denom":"ASSET3","index":"0.000001050691410948"},{"denom":"ASSET4","index":"0.000009896100013746"},{"denom":"ASSET5","index":"0.000000815938232363"},{"denom":"ASSET6","index":"0.000003321871434831"},{"denom":"ASSET7","index":"0.000005087078588365"},{"denom":"ASSET8","index":"0.000006638044976977"},{"denom":"ASSET9","index":"0.000002867179598640"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000002975317591563"},{"denom":"ASSET1","index":"0.000025265738469637"},{"denom":"ASSET10","index":"0.000020245724387946"},{"denom":"ASSET11","index":"0.000025128558675417"},{"denom":"ASSET12","index":"0.000023998925764885"},{"denom":"ASSET13","index":"0.000007895668684136"},{"denom":"ASSET14","index":"0.000023051238668493"},{"denom":"ASSET15","index":"0.000018221178423268"},{"denom":"ASSET16","index":"0.000011202197653725"},{"denom":"ASSET17","index":"0.000008818540737002"},{"denom":"ASSET18","index":"0.000003629428323701"},{"denom":"ASSET2","index":"0.000007657107369447"},{"denom":"ASSET3","index":"0.000002122660280404"},{"denom":"ASSET4","index":"0.000020482509156357"},{"denom":"ASSET5","index":"0.000001654309607539"},{"denom":"ASSET6","index":"0.000006675356935536"},{"denom":"ASSET7","index":"0.000010494215679887"},{"denom":"ASSET8","index":"0.000014353927855523"},{"denom":"ASSET9","index":"0.000006089535217587"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001617402557586"},{"denom":"ASSET1","index":"0.000013485147451276"},{"denom":"ASSET10","index":"0.000009395521488362"},{"denom":"ASSET11","index":"0.000013045402724081"},{"denom":"ASSET12","index":"0.000011747619504798"},{"denom":"ASSET13","index":"0.000004042433845849"},{"denom":"ASSET14","index":"0.000012186291683878"},{"denom":"ASSET15","index":"0.000008713380887153"},{"denom":"ASSET16","index":"0.000006074912523982"},{"denom":"ASSET17","index":"0.000004313788518972"},{"denom":"ASSET18","index":"0.000002055002188551"},{"denom":"ASSET2","index":"0.000003980226055173"},{"denom":"ASSET3","index":"0.000001163714704894"},{"denom":"ASSET4","index":"0.000010959296640193"},{"denom":"ASSET5","index":"0.000000903085512923"},{"denom":"ASSET6","index":"0.000003677767486712"},{"denom":"ASSET7","index":"0.000005633022700557"},{"denom":"ASSET8","index":"0.000007351244780963"},{"denom":"ASSET9","index":"0.000003174742420725"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003091273620954"},{"denom":"ASSET1","index":"0.000026212594205506"},{"denom":"ASSET10","index":"0.000020831747389799"},{"denom":"ASSET11","index":"0.000026024829344923"},{"denom":"ASSET12","index":"0.000024768925461013"},{"denom":"ASSET13","index":"0.000008170539761157"},{"denom":"ASSET14","index":"0.000023900540063840"},{"denom":"ASSET15","index":"0.000018780610027247"},{"denom":"ASSET16","index":"0.000011634658240098"},{"denom":"ASSET17","index":"0.000009101405984603"},{"denom":"ASSET18","index":"0.000003780149264156"},{"denom":"ASSET2","index":"0.000007930960667726"},{"denom":"ASSET3","index":"0.000002206123035767"},{"denom":"ASSET4","index":"0.000021253166889363"},{"denom":"ASSET5","index":"0.000001718500807532"},{"denom":"ASSET6","index":"0.000006939076737962"},{"denom":"ASSET7","index":"0.000010891166816552"},{"denom":"ASSET8","index":"0.000014853628574871"},{"denom":"ASSET9","index":"0.000006308302102729"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001496654334782"},{"denom":"ASSET1","index":"0.000012477377024436"},{"denom":"ASSET10","index":"0.000008693096469902"},{"denom":"ASSET11","index":"0.000012070207597683"},{"denom":"ASSET12","index":"0.000010869145414891"},{"denom":"ASSET13","index":"0.000003740467488528"},{"denom":"ASSET14","index":"0.000011275146493218"},{"denom":"ASSET15","index":"0.000008061604145195"},{"denom":"ASSET16","index":"0.000005620924281527"},{"denom":"ASSET17","index":"0.000003991662400298"},{"denom":"ASSET18","index":"0.000001901487064682"},{"denom":"ASSET2","index":"0.000003683218415613"},{"denom":"ASSET3","index":"0.000001077217249546"},{"denom":"ASSET4","index":"0.000010139511822330"},{"denom":"ASSET5","index":"0.000000835953299404"},{"denom":"ASSET6","index":"0.000003403398967385"},{"denom":"ASSET7","index":"0.000005212586506346"},{"denom":"ASSET8","index":"0.000006801540366848"},{"denom":"ASSET9","index":"0.000002937812119289"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003012098530886"},{"denom":"ASSET1","index":"0.000025562058034330"},{"denom":"ASSET10","index":"0.000020450222858637"},{"denom":"ASSET11","index":"0.000025414193224582"},{"denom":"ASSET12","index":"0.000024256065084933"},{"denom":"ASSET13","index":"0.000007984561416691"},{"denom":"ASSET14","index":"0.000023318358139730"},{"denom":"ASSET15","index":"0.000018411259079989"},{"denom":"ASSET16","index":"0.000011336678183578"},{"denom":"ASSET17","index":"0.000008913774138499"},{"denom":"ASSET18","index":"0.000003674960609183"},{"denom":"ASSET2","index":"0.000007744948932800"},{"denom":"ASSET3","index":"0.000002148867969989"},{"denom":"ASSET4","index":"0.000020722540912428"},{"denom":"ASSET5","index":"0.000001674229864542"},{"denom":"ASSET6","index":"0.000006756080138401"},{"denom":"ASSET7","index":"0.000010618450136599"},{"denom":"ASSET8","index":"0.000014514789998911"},{"denom":"ASSET9","index":"0.000006159565713194"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001470615438656"},{"denom":"ASSET1","index":"0.000012263141624205"},{"denom":"ASSET10","index":"0.000008543710077270"},{"denom":"ASSET11","index":"0.000011863435889596"},{"denom":"ASSET12","index":"0.000010682701378752"},{"denom":"ASSET13","index":"0.000003676538596641"},{"denom":"ASSET14","index":"0.000011081935762259"},{"denom":"ASSET15","index":"0.000007923412026863"},{"denom":"ASSET16","index":"0.000005524234917004"},{"denom":"ASSET17","index":"0.000003923055223056"},{"denom":"ASSET18","index":"0.000001868907119959"},{"denom":"ASSET2","index":"0.000003619976464385"},{"denom":"ASSET3","index":"0.000001058654575392"},{"denom":"ASSET4","index":"0.000009965776352407"},{"denom":"ASSET5","index":"0.000000822036322121"},{"denom":"ASSET6","index":"0.000003345178771841"},{"denom":"ASSET7","index":"0.000005123115129088"},{"denom":"ASSET8","index":"0.000006685172681558"},{"denom":"ASSET9","index":"0.000002887496851669"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000002995147819628"},{"denom":"ASSET1","index":"0.000025426980115999"},{"denom":"ASSET10","index":"0.000020372034738960"},{"denom":"ASSET11","index":"0.000025287989623967"},{"denom":"ASSET12","index":"0.000024150599022202"},{"denom":"ASSET13","index":"0.000007946076587902"},{"denom":"ASSET14","index":"0.000023198024872944"},{"denom":"ASSET15","index":"0.000018335727027304"},{"denom":"ASSET16","index":"0.000011274635486105"},{"denom":"ASSET17","index":"0.000008875015361763"},{"denom":"ASSET18","index":"0.000003653177061349"},{"denom":"ASSET2","index":"0.000007706361997735"},{"denom":"ASSET3","index":"0.000002137037997503"},{"denom":"ASSET4","index":"0.000020612735071168"},{"denom":"ASSET5","index":"0.000001665450131859"},{"denom":"ASSET6","index":"0.000006718182222688"},{"denom":"ASSET7","index":"0.000010561635089256"},{"denom":"ASSET8","index":"0.000014445035982826"},{"denom":"ASSET9","index":"0.000006128513210961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001778581753434"},{"denom":"ASSET1","index":"0.000014888315804569"},{"denom":"ASSET10","index":"0.000010370885153828"},{"denom":"ASSET11","index":"0.000014404007158094"},{"denom":"ASSET12","index":"0.000012967781516823"},{"denom":"ASSET13","index":"0.000004458979607201"},{"denom":"ASSET14","index":"0.000013452090163298"},{"denom":"ASSET15","index":"0.000009619371736884"},{"denom":"ASSET16","index":"0.000006705169708956"},{"denom":"ASSET17","index":"0.000004759584973979"},{"denom":"ASSET18","index":"0.000002262890399909"},{"denom":"ASSET2","index":"0.000004392178414584"},{"denom":"ASSET3","index":"0.000001285922957882"},{"denom":"ASSET4","index":"0.000012099366012799"},{"denom":"ASSET5","index":"0.000000993667740182"},{"denom":"ASSET6","index":"0.000004058172451498"},{"denom":"ASSET7","index":"0.000006220861062481"},{"denom":"ASSET8","index":"0.000008116344902996"},{"denom":"ASSET9","index":"0.000003507062612406"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003356752793751"},{"denom":"ASSET1","index":"0.000028516406305775"},{"denom":"ASSET10","index":"0.000022616173055400"},{"denom":"ASSET11","index":"0.000028302061322789"},{"denom":"ASSET12","index":"0.000026910491325102"},{"denom":"ASSET13","index":"0.000008878873421079"},{"denom":"ASSET14","index":"0.000025995251505598"},{"denom":"ASSET15","index":"0.000020398635157595"},{"denom":"ASSET16","index":"0.000012658071469071"},{"denom":"ASSET17","index":"0.000009885849877285"},{"denom":"ASSET18","index":"0.000004110010202724"},{"denom":"ASSET2","index":"0.000008622285743228"},{"denom":"ASSET3","index":"0.000002402314047495"},{"denom":"ASSET4","index":"0.000023121698220749"},{"denom":"ASSET5","index":"0.000001866482592061"},{"denom":"ASSET6","index":"0.000007549939309511"},{"denom":"ASSET7","index":"0.000011851024307599"},{"denom":"ASSET8","index":"0.000016149793693754"},{"denom":"ASSET9","index":"0.000006862325287189"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001604942959288"},{"denom":"ASSET1","index":"0.000013380628695124"},{"denom":"ASSET10","index":"0.000009322365613635"},{"denom":"ASSET11","index":"0.000012944148427984"},{"denom":"ASSET12","index":"0.000011656280789193"},{"denom":"ASSET13","index":"0.000004011353995308"},{"denom":"ASSET14","index":"0.000012091757653420"},{"denom":"ASSET15","index":"0.000008645319498111"},{"denom":"ASSET16","index":"0.000006027692148913"},{"denom":"ASSET17","index":"0.000004280767677439"},{"denom":"ASSET18","index":"0.000002039165569874"},{"denom":"ASSET2","index":"0.000003949895566889"},{"denom":"ASSET3","index":"0.000001155418454280"},{"denom":"ASSET4","index":"0.000010873877367808"},{"denom":"ASSET5","index":"0.000000896791353463"},{"denom":"ASSET6","index":"0.000003649878095912"},{"denom":"ASSET7","index":"0.000005589957628131"},{"denom":"ASSET8","index":"0.000007294237475803"},{"denom":"ASSET9","index":"0.000003150685146712"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003200268554223"},{"denom":"ASSET1","index":"0.000027155061035589"},{"denom":"ASSET10","index":"0.000021699312128992"},{"denom":"ASSET11","index":"0.000026991580254755"},{"denom":"ASSET12","index":"0.000025748970079650"},{"denom":"ASSET13","index":"0.000008479073830121"},{"denom":"ASSET14","index":"0.000024769827936089"},{"denom":"ASSET15","index":"0.000019540730612944"},{"denom":"ASSET16","index":"0.000012044995213579"},{"denom":"ASSET17","index":"0.000009462424001901"},{"denom":"ASSET18","index":"0.000003906197580725"},{"denom":"ASSET2","index":"0.000008225756082433"},{"denom":"ASSET3","index":"0.000002283784004254"},{"denom":"ASSET4","index":"0.000022014648589339"},{"denom":"ASSET5","index":"0.000001779311895342"},{"denom":"ASSET6","index":"0.000007179475362032"},{"denom":"ASSET7","index":"0.000011280598785262"},{"denom":"ASSET8","index":"0.000015413911362487"},{"denom":"ASSET9","index":"0.000006542247148589"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001620184629837"},{"denom":"ASSET1","index":"0.000013508113244239"},{"denom":"ASSET10","index":"0.000009411159415052"},{"denom":"ASSET11","index":"0.000013068550109883"},{"denom":"ASSET12","index":"0.000011766766981214"},{"denom":"ASSET13","index":"0.000004049052718392"},{"denom":"ASSET14","index":"0.000012206330115570"},{"denom":"ASSET15","index":"0.000008726455301921"},{"denom":"ASSET16","index":"0.000006083441070987"},{"denom":"ASSET17","index":"0.000004319553108765"},{"denom":"ASSET18","index":"0.000002056930051793"},{"denom":"ASSET2","index":"0.000003987063045598"},{"denom":"ASSET3","index":"0.000001166532933482"},{"denom":"ASSET4","index":"0.000010977807509294"},{"denom":"ASSET5","index":"0.000000904485680309"},{"denom":"ASSET6","index":"0.000003682750106429"},{"denom":"ASSET7","index":"0.000005643877936631"},{"denom":"ASSET8","index":"0.000007362682500458"},{"denom":"ASSET9","index":"0.000003178379586880"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003154859072778"},{"denom":"ASSET1","index":"0.000026759958230198"},{"denom":"ASSET10","index":"0.000021318547828682"},{"denom":"ASSET11","index":"0.000026582778956839"},{"denom":"ASSET12","index":"0.000025324795995745"},{"denom":"ASSET13","index":"0.000008347309163095"},{"denom":"ASSET14","index":"0.000024403216779648"},{"denom":"ASSET15","index":"0.000019208461119321"},{"denom":"ASSET16","index":"0.000011872154646602"},{"denom":"ASSET17","index":"0.000009304429323264"},{"denom":"ASSET18","index":"0.000003853154066825"},{"denom":"ASSET2","index":"0.000008100524497579"},{"denom":"ASSET3","index":"0.000002251942800438"},{"denom":"ASSET4","index":"0.000021695917087147"},{"denom":"ASSET5","index":"0.000001753374642360"},{"denom":"ASSET6","index":"0.000007078305954632"},{"denom":"ASSET7","index":"0.000011118481739065"},{"denom":"ASSET8","index":"0.000015174129529137"},{"denom":"ASSET9","index":"0.000006441283498998"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001565910537906"},{"denom":"ASSET1","index":"0.000013053983025959"},{"denom":"ASSET10","index":"0.000009094819386579"},{"denom":"ASSET11","index":"0.000012628414118813"},{"denom":"ASSET12","index":"0.000011371841840295"},{"denom":"ASSET13","index":"0.000003913403541838"},{"denom":"ASSET14","index":"0.000011796953146466"},{"denom":"ASSET15","index":"0.000008434501179040"},{"denom":"ASSET16","index":"0.000005880630135191"},{"denom":"ASSET17","index":"0.000004176066501732"},{"denom":"ASSET18","index":"0.000001989191440174"},{"denom":"ASSET2","index":"0.000003853457814057"},{"denom":"ASSET3","index":"0.000001127071202473"},{"denom":"ASSET4","index":"0.000010608563413286"},{"denom":"ASSET5","index":"0.000000874933065013"},{"denom":"ASSET6","index":"0.000003561050790760"},{"denom":"ASSET7","index":"0.000005453688425119"},{"denom":"ASSET8","index":"0.000007116152768840"},{"denom":"ASSET9","index":"0.000003073705751932"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003066618221533"},{"denom":"ASSET1","index":"0.000026018563142658"},{"denom":"ASSET10","index":"0.000020743763118655"},{"denom":"ASSET11","index":"0.000025849025514444"},{"denom":"ASSET12","index":"0.000024635604575072"},{"denom":"ASSET13","index":"0.000008118261811936"},{"denom":"ASSET14","index":"0.000023728777879609"},{"denom":"ASSET15","index":"0.000018689177197382"},{"denom":"ASSET16","index":"0.000011544003668418"},{"denom":"ASSET17","index":"0.000009052167825210"},{"denom":"ASSET18","index":"0.000003745930402733"},{"denom":"ASSET2","index":"0.000007877080459743"},{"denom":"ASSET3","index":"0.000002188594145460"},{"denom":"ASSET4","index":"0.000021094338825720"},{"denom":"ASSET5","index":"0.000001705356613908"},{"denom":"ASSET6","index":"0.000006882744986340"},{"denom":"ASSET7","index":"0.000010809249072439"},{"denom":"ASSET8","index":"0.000014757775472241"},{"denom":"ASSET9","index":"0.000006264987011427"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001616793771814"},{"denom":"ASSET1","index":"0.000013481664806896"},{"denom":"ASSET10","index":"0.000009392973001731"},{"denom":"ASSET11","index":"0.000013042136425966"},{"denom":"ASSET12","index":"0.000011745108533466"},{"denom":"ASSET13","index":"0.000004041984429535"},{"denom":"ASSET14","index":"0.000012183439289380"},{"denom":"ASSET15","index":"0.000008710326742521"},{"denom":"ASSET16","index":"0.000006073156456940"},{"denom":"ASSET17","index":"0.000004312647683187"},{"denom":"ASSET18","index":"0.000002053926902712"},{"denom":"ASSET2","index":"0.000003979707928695"},{"denom":"ASSET3","index":"0.000001164091515706"},{"denom":"ASSET4","index":"0.000010955873647818"},{"denom":"ASSET5","index":"0.000000903009262183"},{"denom":"ASSET6","index":"0.000003677906424623"},{"denom":"ASSET7","index":"0.000005632430450993"},{"denom":"ASSET8","index":"0.000007349824724165"},{"denom":"ASSET9","index":"0.000003173706292820"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003010548827117"},{"denom":"ASSET1","index":"0.000025517681435823"},{"denom":"ASSET10","index":"0.000020207909525991"},{"denom":"ASSET11","index":"0.000025316824190850"},{"denom":"ASSET12","index":"0.000024059273468565"},{"denom":"ASSET13","index":"0.000007945703994160"},{"denom":"ASSET14","index":"0.000023261456497592"},{"denom":"ASSET15","index":"0.000018230653165683"},{"denom":"ASSET16","index":"0.000011330852554208"},{"denom":"ASSET17","index":"0.000008840468160143"},{"denom":"ASSET18","index":"0.000003685449036638"},{"denom":"ASSET2","index":"0.000007715875534239"},{"denom":"ASSET3","index":"0.000002150116713749"},{"denom":"ASSET4","index":"0.000020690763011385"},{"denom":"ASSET5","index":"0.000001674170167376"},{"denom":"ASSET6","index":"0.000006761947340508"},{"denom":"ASSET7","index":"0.000010605047135869"},{"denom":"ASSET8","index":"0.000014444866674878"},{"denom":"ASSET9","index":"0.000006137206230949"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001598496813351"},{"denom":"ASSET1","index":"0.000013327209301876"},{"denom":"ASSET10","index":"0.000009285082513510"},{"denom":"ASSET11","index":"0.000012892549064690"},{"denom":"ASSET12","index":"0.000011609910099638"},{"denom":"ASSET13","index":"0.000003995530641827"},{"denom":"ASSET14","index":"0.000012043503249499"},{"denom":"ASSET15","index":"0.000008611039019674"},{"denom":"ASSET16","index":"0.000006003788988106"},{"denom":"ASSET17","index":"0.000004263725256261"},{"denom":"ASSET18","index":"0.000002031022875886"},{"denom":"ASSET2","index":"0.000003933995272733"},{"denom":"ASSET3","index":"0.000001150675832486"},{"denom":"ASSET4","index":"0.000010830580656369"},{"denom":"ASSET5","index":"0.000000893152091305"},{"denom":"ASSET6","index":"0.000003635566517414"},{"denom":"ASSET7","index":"0.000005567705967820"},{"denom":"ASSET8","index":"0.000007265086206652"},{"denom":"ASSET9","index":"0.000003137948128033"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003202417698287"},{"denom":"ASSET1","index":"0.000027176874960756"},{"denom":"ASSET10","index":"0.000021729724210241"},{"denom":"ASSET11","index":"0.000027016578438308"},{"denom":"ASSET12","index":"0.000025779554956391"},{"denom":"ASSET13","index":"0.000008487649506725"},{"denom":"ASSET14","index":"0.000024790682929963"},{"denom":"ASSET15","index":"0.000019565798539307"},{"denom":"ASSET16","index":"0.000012053877846841"},{"denom":"ASSET17","index":"0.000009473617164606"},{"denom":"ASSET18","index":"0.000003908301251667"},{"denom":"ASSET2","index":"0.000008233254558201"},{"denom":"ASSET3","index":"0.000002285025567503"},{"denom":"ASSET4","index":"0.000022032200437673"},{"denom":"ASSET5","index":"0.000001780306156687"},{"denom":"ASSET6","index":"0.000007184182778940"},{"denom":"ASSET7","index":"0.000011289430429576"},{"denom":"ASSET8","index":"0.000015429251463912"},{"denom":"ASSET9","index":"0.000006548040900334"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001349258766758"},{"denom":"ASSET1","index":"0.000011264433664868"},{"denom":"ASSET10","index":"0.000007848225297969"},{"denom":"ASSET11","index":"0.000010895650990484"},{"denom":"ASSET12","index":"0.000009811385762205"},{"denom":"ASSET13","index":"0.000003376459336127"},{"denom":"ASSET14","index":"0.000010177960157102"},{"denom":"ASSET15","index":"0.000007278489190238"},{"denom":"ASSET16","index":"0.000005074626261883"},{"denom":"ASSET17","index":"0.000003603912123322"},{"denom":"ASSET18","index":"0.000001715833161655"},{"denom":"ASSET2","index":"0.000003323460628431"},{"denom":"ASSET3","index":"0.000000971642974425"},{"denom":"ASSET4","index":"0.000009153318474981"},{"denom":"ASSET5","index":"0.000000753023305179"},{"denom":"ASSET6","index":"0.000003071716766875"},{"denom":"ASSET7","index":"0.000004705843587499"},{"denom":"ASSET8","index":"0.000006139016974776"},{"denom":"ASSET9","index":"0.000002652143664283"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000002874619638549"},{"denom":"ASSET1","index":"0.000024442633186143"},{"denom":"ASSET10","index":"0.000019689737510784"},{"denom":"ASSET11","index":"0.000024334399718263"},{"denom":"ASSET12","index":"0.000023294058494145"},{"denom":"ASSET13","index":"0.000007650065286478"},{"denom":"ASSET14","index":"0.000022306974942610"},{"denom":"ASSET15","index":"0.000017702453996022"},{"denom":"ASSET16","index":"0.000010830667352685"},{"denom":"ASSET17","index":"0.000008561334956642"},{"denom":"ASSET18","index":"0.000003501743239949"},{"denom":"ASSET2","index":"0.000007413384379561"},{"denom":"ASSET3","index":"0.000002050775894848"},{"denom":"ASSET4","index":"0.000019811877393900"},{"denom":"ASSET5","index":"0.000001596563839644"},{"denom":"ASSET6","index":"0.000006447875450380"},{"denom":"ASSET7","index":"0.000010149425285061"},{"denom":"ASSET8","index":"0.000013906577801610"},{"denom":"ASSET9","index":"0.000005896530335304"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001744355646452"},{"denom":"ASSET1","index":"0.000014544558741461"},{"denom":"ASSET10","index":"0.000010133244841823"},{"denom":"ASSET11","index":"0.000014070651242217"},{"denom":"ASSET12","index":"0.000012670295178174"},{"denom":"ASSET13","index":"0.000004360461787457"},{"denom":"ASSET14","index":"0.000013143775348745"},{"denom":"ASSET15","index":"0.000009397812194213"},{"denom":"ASSET16","index":"0.000006552230555377"},{"denom":"ASSET17","index":"0.000004653181929010"},{"denom":"ASSET18","index":"0.000002216553831001"},{"denom":"ASSET2","index":"0.000004293371185670"},{"denom":"ASSET3","index":"0.000001255918972299"},{"denom":"ASSET4","index":"0.000011819911117312"},{"denom":"ASSET5","index":"0.000000974736704938"},{"denom":"ASSET6","index":"0.000003967319407560"},{"denom":"ASSET7","index":"0.000006076186412764"},{"denom":"ASSET8","index":"0.000007929083542361"},{"denom":"ASSET9","index":"0.000003424611991834"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003377008276018"},{"denom":"ASSET1","index":"0.000028642142456639"},{"denom":"ASSET10","index":"0.000022800592191853"},{"denom":"ASSET11","index":"0.000028447577997463"},{"denom":"ASSET12","index":"0.000027093635853923"},{"denom":"ASSET13","index":"0.000008933092474106"},{"denom":"ASSET14","index":"0.000026119259559896"},{"denom":"ASSET15","index":"0.000020548756595198"},{"denom":"ASSET16","index":"0.000012710670192565"},{"denom":"ASSET17","index":"0.000009956402105067"},{"denom":"ASSET18","index":"0.000004127475104327"},{"denom":"ASSET2","index":"0.000008669602227225"},{"denom":"ASSET3","index":"0.000002410895003349"},{"denom":"ASSET4","index":"0.000023222264254358"},{"denom":"ASSET5","index":"0.000001877874241403"},{"denom":"ASSET6","index":"0.000007579654674160"},{"denom":"ASSET7","index":"0.000011900488798179"},{"denom":"ASSET8","index":"0.000016239324105118"},{"denom":"ASSET9","index":"0.000006895771583569"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001546168277317"},{"denom":"ASSET1","index":"0.000012892123182452"},{"denom":"ASSET10","index":"0.000008982377260299"},{"denom":"ASSET11","index":"0.000012472337191477"},{"denom":"ASSET12","index":"0.000011231230783378"},{"denom":"ASSET13","index":"0.000003864117010091"},{"denom":"ASSET14","index":"0.000011651016774353"},{"denom":"ASSET15","index":"0.000008329231976204"},{"denom":"ASSET16","index":"0.000005807908663952"},{"denom":"ASSET17","index":"0.000004124853650448"},{"denom":"ASSET18","index":"0.000001964650585090"},{"denom":"ASSET2","index":"0.000003805451266010"},{"denom":"ASSET3","index":"0.000001113345454324"},{"denom":"ASSET4","index":"0.000010477701892746"},{"denom":"ASSET5","index":"0.000000863038279582"},{"denom":"ASSET6","index":"0.000003516033595214"},{"denom":"ASSET7","index":"0.000005385515306574"},{"denom":"ASSET8","index":"0.000007028156140823"},{"denom":"ASSET9","index":"0.000003034974493755"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003044385892570"},{"denom":"ASSET1","index":"0.000025830014188245"},{"denom":"ASSET10","index":"0.000020607856539150"},{"denom":"ASSET11","index":"0.000025666657138152"},{"denom":"ASSET12","index":"0.000024468008636658"},{"denom":"ASSET13","index":"0.000008060303383676"},{"denom":"ASSET14","index":"0.000023559408638801"},{"denom":"ASSET15","index":"0.000018562848593971"},{"denom":"ASSET16","index":"0.000011459854746185"},{"denom":"ASSET17","index":"0.000008991538648143"},{"denom":"ASSET18","index":"0.000003718456390600"},{"denom":"ASSET2","index":"0.000007821717005664"},{"denom":"ASSET3","index":"0.000002173111618200"},{"denom":"ASSET4","index":"0.000020942104557307"},{"denom":"ASSET5","index":"0.000001691598021351"},{"denom":"ASSET6","index":"0.000006831113312915"},{"denom":"ASSET7","index":"0.000010730587410374"},{"denom":"ASSET8","index":"0.000014654605067850"},{"denom":"ASSET9","index":"0.000006220578615076"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001387821916020"},{"denom":"ASSET1","index":"0.000011588015182905"},{"denom":"ASSET10","index":"0.000008073788013584"},{"denom":"ASSET11","index":"0.000011209789038410"},{"denom":"ASSET12","index":"0.000010095957715252"},{"denom":"ASSET13","index":"0.000003472532948668"},{"denom":"ASSET14","index":"0.000010471205701129"},{"denom":"ASSET15","index":"0.000007487090765824"},{"denom":"ASSET16","index":"0.000005220712057474"},{"denom":"ASSET17","index":"0.000003707807479495"},{"denom":"ASSET18","index":"0.000001766048060515"},{"denom":"ASSET2","index":"0.000003418926093543"},{"denom":"ASSET3","index":"0.000001000661295671"},{"denom":"ASSET4","index":"0.000009416937550333"},{"denom":"ASSET5","index":"0.000000774321240698"},{"denom":"ASSET6","index":"0.000003159826293771"},{"denom":"ASSET7","index":"0.000004839507754361"},{"denom":"ASSET8","index":"0.000006316674428923"},{"denom":"ASSET9","index":"0.000002727993294151"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000002956721491824"},{"denom":"ASSET1","index":"0.000025136116728129"},{"denom":"ASSET10","index":"0.000020247681325291"},{"denom":"ASSET11","index":"0.000025026479369709"},{"denom":"ASSET12","index":"0.000023957412844230"},{"denom":"ASSET13","index":"0.000007866588644670"},{"denom":"ASSET14","index":"0.000022940688787988"},{"denom":"ASSET15","index":"0.000018203641219753"},{"denom":"ASSET16","index":"0.000011138902531601"},{"denom":"ASSET17","index":"0.000008803888891481"},{"denom":"ASSET18","index":"0.000003602115317706"},{"denom":"ASSET2","index":"0.000007623974866010"},{"denom":"ASSET3","index":"0.000002110544057177"},{"denom":"ASSET4","index":"0.000020374365248917"},{"denom":"ASSET5","index":"0.000001641905652861"},{"denom":"ASSET6","index":"0.000006630874494768"},{"denom":"ASSET7","index":"0.000010436528568948"},{"denom":"ASSET8","index":"0.000014302572224422"},{"denom":"ASSET9","index":"0.000006063325997423"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001500850379058"},{"denom":"ASSET1","index":"0.000012511793460183"},{"denom":"ASSET10","index":"0.000008717304800227"},{"denom":"ASSET11","index":"0.000012103632089176"},{"denom":"ASSET12","index":"0.000010899320696303"},{"denom":"ASSET13","index":"0.000003750781099635"},{"denom":"ASSET14","index":"0.000011306809643305"},{"denom":"ASSET15","index":"0.000008083881387560"},{"denom":"ASSET16","index":"0.000005636258009526"},{"denom":"ASSET17","index":"0.000004002940101492"},{"denom":"ASSET18","index":"0.000001906322054045"},{"denom":"ASSET2","index":"0.000003692952635209"},{"denom":"ASSET3","index":"0.000001079912951956"},{"denom":"ASSET4","index":"0.000010167723378913"},{"denom":"ASSET5","index":"0.000000838512734178"},{"denom":"ASSET6","index":"0.000003412551825143"},{"denom":"ASSET7","index":"0.000005226751790509"},{"denom":"ASSET8","index":"0.000006820396682251"},{"denom":"ASSET9","index":"0.000002945889565704"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003004514310835"},{"denom":"ASSET1","index":"0.000025497942224476"},{"denom":"ASSET10","index":"0.000020385999177782"},{"denom":"ASSET11","index":"0.000025346802479017"},{"denom":"ASSET12","index":"0.000024185328023735"},{"denom":"ASSET13","index":"0.000007962788555043"},{"denom":"ASSET14","index":"0.000023259189454501"},{"denom":"ASSET15","index":"0.000018355567065709"},{"denom":"ASSET16","index":"0.000011309092459120"},{"denom":"ASSET17","index":"0.000008887662321727"},{"denom":"ASSET18","index":"0.000003666570499762"},{"denom":"ASSET2","index":"0.000007723995884874"},{"denom":"ASSET3","index":"0.000002143405494402"},{"denom":"ASSET4","index":"0.000020670641097733"},{"denom":"ASSET5","index":"0.000001670336124344"},{"denom":"ASSET6","index":"0.000006739845385808"},{"denom":"ASSET7","index":"0.000010591422556410"},{"denom":"ASSET8","index":"0.000014475095162856"},{"denom":"ASSET9","index":"0.000006143360978771"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001507842106347"},{"denom":"ASSET1","index":"0.000012572313391156"},{"denom":"ASSET10","index":"0.000008759356679472"},{"denom":"ASSET11","index":"0.000012162445176153"},{"denom":"ASSET12","index":"0.000010952151629736"},{"denom":"ASSET13","index":"0.000003769211161813"},{"denom":"ASSET14","index":"0.000011361231636633"},{"denom":"ASSET15","index":"0.000008123272738112"},{"denom":"ASSET16","index":"0.000005663669344042"},{"denom":"ASSET17","index":"0.000004022225963767"},{"denom":"ASSET18","index":"0.000001916133905138"},{"denom":"ASSET2","index":"0.000003711277866039"},{"denom":"ASSET3","index":"0.000001085756665704"},{"denom":"ASSET4","index":"0.000010217147571101"},{"denom":"ASSET5","index":"0.000000842594465073"},{"denom":"ASSET6","index":"0.000003429493468225"},{"denom":"ASSET7","index":"0.000005252224712828"},{"denom":"ASSET8","index":"0.000006853863583762"},{"denom":"ASSET9","index":"0.000002960115541236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003064659144392"},{"denom":"ASSET1","index":"0.000026014545525120"},{"denom":"ASSET10","index":"0.000020837902255895"},{"denom":"ASSET11","index":"0.000025870951889592"},{"denom":"ASSET12","index":"0.000024704995690840"},{"denom":"ASSET13","index":"0.000008129050348807"},{"denom":"ASSET14","index":"0.000023733606076391"},{"denom":"ASSET15","index":"0.000018755969892396"},{"denom":"ASSET16","index":"0.000011535737727926"},{"denom":"ASSET17","index":"0.000009078938038909"},{"denom":"ASSET18","index":"0.000003738223548700"},{"denom":"ASSET2","index":"0.000007883998416280"},{"denom":"ASSET3","index":"0.000002186926046113"},{"denom":"ASSET4","index":"0.000021089316501471"},{"denom":"ASSET5","index":"0.000001703791082418"},{"denom":"ASSET6","index":"0.000006873778950624"},{"denom":"ASSET7","index":"0.000010805665377904"},{"denom":"ASSET8","index":"0.000014777724141198"},{"denom":"ASSET9","index":"0.000006269886019705"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001016570122529"},{"denom":"ASSET1","index":"0.000008477171470527"},{"denom":"ASSET10","index":"0.000005906463519680"},{"denom":"ASSET11","index":"0.000008200989896911"},{"denom":"ASSET12","index":"0.000007384774710599"},{"denom":"ASSET13","index":"0.000002541117067960"},{"denom":"ASSET14","index":"0.000007660956284215"},{"denom":"ASSET15","index":"0.000005477395717812"},{"denom":"ASSET16","index":"0.000003819073322661"},{"denom":"ASSET17","index":"0.000002711881121289"},{"denom":"ASSET18","index":"0.000001291518742692"},{"denom":"ASSET2","index":"0.000002502279034170"},{"denom":"ASSET3","index":"0.000000731757874738"},{"denom":"ASSET4","index":"0.000006889127422234"},{"denom":"ASSET5","index":"0.000000567775065403"},{"denom":"ASSET6","index":"0.000002312404202309"},{"denom":"ASSET7","index":"0.000003541658795591"},{"denom":"ASSET8","index":"0.000004621109544256"},{"denom":"ASSET9","index":"0.000001996151641449"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000002499545170163"},{"denom":"ASSET1","index":"0.000021282413071401"},{"denom":"ASSET10","index":"0.000017412808765385"},{"denom":"ASSET11","index":"0.000021259874812403"},{"denom":"ASSET12","index":"0.000020486111882687"},{"denom":"ASSET13","index":"0.000006694303381301"},{"denom":"ASSET14","index":"0.000019446986985139"},{"denom":"ASSET15","index":"0.000015606004703242"},{"denom":"ASSET16","index":"0.000009412782427040"},{"denom":"ASSET17","index":"0.000007528963649123"},{"denom":"ASSET18","index":"0.000003027066879988"},{"denom":"ASSET2","index":"0.000006477094521478"},{"denom":"ASSET3","index":"0.000001780578331809"},{"denom":"ASSET4","index":"0.000017246051064985"},{"denom":"ASSET5","index":"0.000001387924123500"},{"denom":"ASSET6","index":"0.000005593713918003"},{"denom":"ASSET7","index":"0.000008831780754063"},{"denom":"ASSET8","index":"0.000012169406160300"},{"denom":"ASSET9","index":"0.000005149034362400"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001552339226368"},{"denom":"ASSET1","index":"0.000012948480372324"},{"denom":"ASSET10","index":"0.000009021431734191"},{"denom":"ASSET11","index":"0.000012526515146109"},{"denom":"ASSET12","index":"0.000011279099696349"},{"denom":"ASSET13","index":"0.000003880848065920"},{"denom":"ASSET14","index":"0.000011701064922564"},{"denom":"ASSET15","index":"0.000008365383608761"},{"denom":"ASSET16","index":"0.000005830512213323"},{"denom":"ASSET17","index":"0.000004142651308462"},{"denom":"ASSET18","index":"0.000001971224414436"},{"denom":"ASSET2","index":"0.000003822327341117"},{"denom":"ASSET3","index":"0.000001118053847563"},{"denom":"ASSET4","index":"0.000010521410312050"},{"denom":"ASSET5","index":"0.000000865490719463"},{"denom":"ASSET6","index":"0.000003529723717099"},{"denom":"ASSET7","index":"0.000005408546987108"},{"denom":"ASSET8","index":"0.000007056367396050"},{"denom":"ASSET9","index":"0.000003046157727933"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003043964098015"},{"denom":"ASSET1","index":"0.000025828331615061"},{"denom":"ASSET10","index":"0.000020594675215425"},{"denom":"ASSET11","index":"0.000025661520704142"},{"denom":"ASSET12","index":"0.000024456429429906"},{"denom":"ASSET13","index":"0.000008058244190043"},{"denom":"ASSET14","index":"0.000023555461855486"},{"denom":"ASSET15","index":"0.000018552812657155"},{"denom":"ASSET16","index":"0.000011456604402492"},{"denom":"ASSET17","index":"0.000008987560143691"},{"denom":"ASSET18","index":"0.000003716794339222"},{"denom":"ASSET2","index":"0.000007820148034807"},{"denom":"ASSET3","index":"0.000002173135080244"},{"denom":"ASSET4","index":"0.000020938599170426"},{"denom":"ASSET5","index":"0.000001690207511083"},{"denom":"ASSET6","index":"0.000006829800145738"},{"denom":"ASSET7","index":"0.000010729300481432"},{"denom":"ASSET8","index":"0.000014648719853803"},{"denom":"ASSET9","index":"0.000006217447736766"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000000977108719668"},{"denom":"ASSET1","index":"0.000008146517162771"},{"denom":"ASSET10","index":"0.000005675852121603"},{"denom":"ASSET11","index":"0.000007881108738917"},{"denom":"ASSET12","index":"0.000007096716963958"},{"denom":"ASSET13","index":"0.000002441926549413"},{"denom":"ASSET14","index":"0.000007362125387813"},{"denom":"ASSET15","index":"0.000005263370239944"},{"denom":"ASSET16","index":"0.000003670074447059"},{"denom":"ASSET17","index":"0.000002605905002368"},{"denom":"ASSET18","index":"0.000001241671893765"},{"denom":"ASSET2","index":"0.000002404735560083"},{"denom":"ASSET3","index":"0.000000703247798239"},{"denom":"ASSET4","index":"0.000006620841350486"},{"denom":"ASSET5","index":"0.000000546031343344"},{"denom":"ASSET6","index":"0.000002222161612464"},{"denom":"ASSET7","index":"0.000003402975523689"},{"denom":"ASSET8","index":"0.000004440942225898"},{"denom":"ASSET9","index":"0.000001917871699764"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000002320380931676"},{"denom":"ASSET1","index":"0.000019748951316256"},{"denom":"ASSET10","index":"0.000016101172379351"},{"denom":"ASSET11","index":"0.000019714000020718"},{"denom":"ASSET12","index":"0.000018967805559844"},{"denom":"ASSET13","index":"0.000006204998608741"},{"denom":"ASSET14","index":"0.000018041457784230"},{"denom":"ASSET15","index":"0.000014440911570898"},{"denom":"ASSET16","index":"0.000008738221404310"},{"denom":"ASSET17","index":"0.000006970584758543"},{"denom":"ASSET18","index":"0.000002814127990287"},{"denom":"ASSET2","index":"0.000006006105656449"},{"denom":"ASSET3","index":"0.000001653724297068"},{"denom":"ASSET4","index":"0.000016005284799403"},{"denom":"ASSET5","index":"0.000001288969102308"},{"denom":"ASSET6","index":"0.000005195185892122"},{"denom":"ASSET7","index":"0.000008196101819524"},{"denom":"ASSET8","index":"0.000011280171312915"},{"denom":"ASSET9","index":"0.000004774394171461"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001745798220012"},{"denom":"ASSET1","index":"0.000014553743296829"},{"denom":"ASSET10","index":"0.000010139438249561"},{"denom":"ASSET11","index":"0.000014079320164724"},{"denom":"ASSET12","index":"0.000012678243118663"},{"denom":"ASSET13","index":"0.000004363016060013"},{"denom":"ASSET14","index":"0.000013152173087429"},{"denom":"ASSET15","index":"0.000009403145384454"},{"denom":"ASSET16","index":"0.000006556113428486"},{"denom":"ASSET17","index":"0.000004655955083371"},{"denom":"ASSET18","index":"0.000002217755535422"},{"denom":"ASSET2","index":"0.000004295945845911"},{"denom":"ASSET3","index":"0.000001256580187737"},{"denom":"ASSET4","index":"0.000011827536358912"},{"denom":"ASSET5","index":"0.000000975477084515"},{"denom":"ASSET6","index":"0.000003969964878841"},{"denom":"ASSET7","index":"0.000006080210806364"},{"denom":"ASSET8","index":"0.000007934011797614"},{"denom":"ASSET9","index":"0.000003426498879278"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003342998947188"},{"denom":"ASSET1","index":"0.000028345782457833"},{"denom":"ASSET10","index":"0.000022532322238539"},{"denom":"ASSET11","index":"0.000028144588841629"},{"denom":"ASSET12","index":"0.000026788988923046"},{"denom":"ASSET13","index":"0.000008836278349189"},{"denom":"ASSET14","index":"0.000025846526421467"},{"denom":"ASSET15","index":"0.000020312521464953"},{"denom":"ASSET16","index":"0.000012581099317360"},{"denom":"ASSET17","index":"0.000009844015126225"},{"denom":"ASSET18","index":"0.000004087085525414"},{"denom":"ASSET2","index":"0.000008577030596387"},{"denom":"ASSET3","index":"0.000002386540105172"},{"denom":"ASSET4","index":"0.000022982635628207"},{"denom":"ASSET5","index":"0.000001858980311097"},{"denom":"ASSET6","index":"0.000007503977785171"},{"denom":"ASSET7","index":"0.000011778054778213"},{"denom":"ASSET8","index":"0.000016064148587518"},{"denom":"ASSET9","index":"0.000006822246648031"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001535240763659"},{"denom":"ASSET1","index":"0.000012802535686671"},{"denom":"ASSET10","index":"0.000008918976928097"},{"denom":"ASSET11","index":"0.000012384847277788"},{"denom":"ASSET12","index":"0.000011152366284839"},{"denom":"ASSET13","index":"0.000003838101909148"},{"denom":"ASSET14","index":"0.000011569197017318"},{"denom":"ASSET15","index":"0.000008271431242866"},{"denom":"ASSET16","index":"0.000005767016142371"},{"denom":"ASSET17","index":"0.000004095404830432"},{"denom":"ASSET18","index":"0.000001951213819735"},{"denom":"ASSET2","index":"0.000003778922237253"},{"denom":"ASSET3","index":"0.000001105544885116"},{"denom":"ASSET4","index":"0.000010403614783903"},{"denom":"ASSET5","index":"0.000000857676404279"},{"denom":"ASSET6","index":"0.000003491600641819"},{"denom":"ASSET7","index":"0.000005348470057083"},{"denom":"ASSET8","index":"0.000006978912901618"},{"denom":"ASSET9","index":"0.000003013874884636"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003086246918243"},{"denom":"ASSET1","index":"0.000026194228204796"},{"denom":"ASSET10","index":"0.000020951998769875"},{"denom":"ASSET11","index":"0.000026042273492864"},{"denom":"ASSET12","index":"0.000024853724280460"},{"denom":"ASSET13","index":"0.000008181454895403"},{"denom":"ASSET14","index":"0.000023895275980533"},{"denom":"ASSET15","index":"0.000018864347888264"},{"denom":"ASSET16","index":"0.000011616907749245"},{"denom":"ASSET17","index":"0.000009133094250657"},{"denom":"ASSET18","index":"0.000003766346411006"},{"denom":"ASSET2","index":"0.000007935833032906"},{"denom":"ASSET3","index":"0.000002202232138461"},{"denom":"ASSET4","index":"0.000021234941701767"},{"denom":"ASSET5","index":"0.000001715417631736"},{"denom":"ASSET6","index":"0.000006923101305069"},{"denom":"ASSET7","index":"0.000010881195638563"},{"denom":"ASSET8","index":"0.000014873239564067"},{"denom":"ASSET9","index":"0.000006310901439146"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001694764141112"},{"denom":"ASSET1","index":"0.000014130580032100"},{"denom":"ASSET10","index":"0.000009844524497723"},{"denom":"ASSET11","index":"0.000013669508873851"},{"denom":"ASSET12","index":"0.000012309527666765"},{"denom":"ASSET13","index":"0.000004236016804025"},{"denom":"ASSET14","index":"0.000012769407426673"},{"denom":"ASSET15","index":"0.000009129685492685"},{"denom":"ASSET16","index":"0.000006365641339869"},{"denom":"ASSET17","index":"0.000004520761007698"},{"denom":"ASSET18","index":"0.000002153452502679"},{"denom":"ASSET2","index":"0.000004171085594400"},{"denom":"ASSET3","index":"0.000001219991901933"},{"denom":"ASSET4","index":"0.000011483292916774"},{"denom":"ASSET5","index":"0.000000947161681676"},{"denom":"ASSET6","index":"0.000003854173635500"},{"denom":"ASSET7","index":"0.000005903378783277"},{"denom":"ASSET8","index":"0.000007702985978462"},{"denom":"ASSET9","index":"0.000003326979869284"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003333609736915"},{"denom":"ASSET1","index":"0.000028281729059652"},{"denom":"ASSET10","index":"0.000022560289398652"},{"denom":"ASSET11","index":"0.000028101042421314"},{"denom":"ASSET12","index":"0.000026787599659919"},{"denom":"ASSET13","index":"0.000008826015241086"},{"denom":"ASSET14","index":"0.000025794402991537"},{"denom":"ASSET15","index":"0.000020323143219667"},{"denom":"ASSET16","index":"0.000012547562311789"},{"denom":"ASSET17","index":"0.000009844220733470"},{"denom":"ASSET18","index":"0.000004071528772633"},{"denom":"ASSET2","index":"0.000008563776406339"},{"denom":"ASSET3","index":"0.000002379222276435"},{"denom":"ASSET4","index":"0.000022929058250150"},{"denom":"ASSET5","index":"0.000001853699834530"},{"denom":"ASSET6","index":"0.000007480326246914"},{"denom":"ASSET7","index":"0.000011749530638760"},{"denom":"ASSET8","index":"0.000016044906214881"},{"denom":"ASSET9","index":"0.000006811209452101"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001763265776240"},{"denom":"ASSET1","index":"0.000014701143889842"},{"denom":"ASSET10","index":"0.000010242267715158"},{"denom":"ASSET11","index":"0.000014221824092125"},{"denom":"ASSET12","index":"0.000012807154532407"},{"denom":"ASSET13","index":"0.000004407037513175"},{"denom":"ASSET14","index":"0.000013285723045174"},{"denom":"ASSET15","index":"0.000009498495615253"},{"denom":"ASSET16","index":"0.000006622576828953"},{"denom":"ASSET17","index":"0.000004703043783239"},{"denom":"ASSET18","index":"0.000002240331719108"},{"denom":"ASSET2","index":"0.000004339421867729"},{"denom":"ASSET3","index":"0.000001269671564485"},{"denom":"ASSET4","index":"0.000011947684550294"},{"denom":"ASSET5","index":"0.000000984934568662"},{"denom":"ASSET6","index":"0.000004010359059893"},{"denom":"ASSET7","index":"0.000006141754461338"},{"denom":"ASSET8","index":"0.000008013956555240"},{"denom":"ASSET9","index":"0.000003461169761882"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003372790294110"},{"denom":"ASSET1","index":"0.000028600279733511"},{"denom":"ASSET10","index":"0.000022731421090197"},{"denom":"ASSET11","index":"0.000028396190348540"},{"denom":"ASSET12","index":"0.000027027392524280"},{"denom":"ASSET13","index":"0.000008915082315276"},{"denom":"ASSET14","index":"0.000026078776667620"},{"denom":"ASSET15","index":"0.000020492230414373"},{"denom":"ASSET16","index":"0.000012694274413467"},{"denom":"ASSET17","index":"0.000009931274832025"},{"denom":"ASSET18","index":"0.000004123939856338"},{"denom":"ASSET2","index":"0.000008653658587521"},{"denom":"ASSET3","index":"0.000002407864000528"},{"denom":"ASSET4","index":"0.000023189126720885"},{"denom":"ASSET5","index":"0.000001875419633234"},{"denom":"ASSET6","index":"0.000007571725921487"},{"denom":"ASSET7","index":"0.000011883748947250"},{"denom":"ASSET8","index":"0.000016207221904670"},{"denom":"ASSET9","index":"0.000006883201227023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001453309126336"},{"denom":"ASSET1","index":"0.000012116886392617"},{"denom":"ASSET10","index":"0.000008441923956558"},{"denom":"ASSET11","index":"0.000011721955689254"},{"denom":"ASSET12","index":"0.000010555542874101"},{"denom":"ASSET13","index":"0.000003632376264868"},{"denom":"ASSET14","index":"0.000010950025301978"},{"denom":"ASSET15","index":"0.000007829131366891"},{"denom":"ASSET16","index":"0.000005458650595742"},{"denom":"ASSET17","index":"0.000003876686404859"},{"denom":"ASSET18","index":"0.000001846446727754"},{"denom":"ASSET2","index":"0.000003576790104576"},{"denom":"ASSET3","index":"0.000001046274984845"},{"denom":"ASSET4","index":"0.000009847267605868"},{"denom":"ASSET5","index":"0.000000812275181037"},{"denom":"ASSET6","index":"0.000003305135159925"},{"denom":"ASSET7","index":"0.000005061926790434"},{"denom":"ASSET8","index":"0.000006605339289501"},{"denom":"ASSET9","index":"0.000002852825194325"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000002846126280344"},{"denom":"ASSET1","index":"0.000024142729904188"},{"denom":"ASSET10","index":"0.000019247649074564"},{"denom":"ASSET11","index":"0.000023985879136349"},{"denom":"ASSET12","index":"0.000022859091275790"},{"denom":"ASSET13","index":"0.000007532792628817"},{"denom":"ASSET14","index":"0.000022018595952129"},{"denom":"ASSET15","index":"0.000017341431925331"},{"denom":"ASSET16","index":"0.000010711928951149"},{"denom":"ASSET17","index":"0.000008400535387767"},{"denom":"ASSET18","index":"0.000003476353193421"},{"denom":"ASSET2","index":"0.000007309791035362"},{"denom":"ASSET3","index":"0.000002031285314481"},{"denom":"ASSET4","index":"0.000019573873127075"},{"denom":"ASSET5","index":"0.000001582650339951"},{"denom":"ASSET6","index":"0.000006386635795582"},{"denom":"ASSET7","index":"0.000010030235680714"},{"denom":"ASSET8","index":"0.000013694243666513"},{"denom":"ASSET9","index":"0.000005813799926422"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001542334439671"},{"denom":"ASSET1","index":"0.000012860022908304"},{"denom":"ASSET10","index":"0.000008959505058412"},{"denom":"ASSET11","index":"0.000012440701863130"},{"denom":"ASSET12","index":"0.000011202637482986"},{"denom":"ASSET13","index":"0.000003855293405849"},{"denom":"ASSET14","index":"0.000011621234937056"},{"denom":"ASSET15","index":"0.000008308996655285"},{"denom":"ASSET16","index":"0.000005793070384239"},{"denom":"ASSET17","index":"0.000004114339021332"},{"denom":"ASSET18","index":"0.000001959846507084"},{"denom":"ASSET2","index":"0.000003796320730815"},{"denom":"ASSET3","index":"0.000001110350550164"},{"denom":"ASSET4","index":"0.000010450826325201"},{"denom":"ASSET5","index":"0.000000861797005699"},{"denom":"ASSET6","index":"0.000003507969675592"},{"denom":"ASSET7","index":"0.000005372663952407"},{"denom":"ASSET8","index":"0.000007010512417899"},{"denom":"ASSET9","index":"0.000003027866977623"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003036454064443"},{"denom":"ASSET1","index":"0.000025762443856573"},{"denom":"ASSET10","index":"0.000020552854458451"},{"denom":"ASSET11","index":"0.000025598594042577"},{"denom":"ASSET12","index":"0.000024403233064712"},{"denom":"ASSET13","index":"0.000008040226829205"},{"denom":"ASSET14","index":"0.000023496526683137"},{"denom":"ASSET15","index":"0.000018514610345002"},{"denom":"ASSET16","index":"0.000011429420030088"},{"denom":"ASSET17","index":"0.000008967792958730"},{"denom":"ASSET18","index":"0.000003708688180539"},{"denom":"ASSET2","index":"0.000007801450355100"},{"denom":"ASSET3","index":"0.000002167197324698"},{"denom":"ASSET4","index":"0.000020886439041228"},{"denom":"ASSET5","index":"0.000001688395026424"},{"denom":"ASSET6","index":"0.000006814112030993"},{"denom":"ASSET7","index":"0.000010703097412338"},{"denom":"ASSET8","index":"0.000014616213118562"},{"denom":"ASSET9","index":"0.000006204650488693"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001802604811891"},{"denom":"ASSET1","index":"0.000015041134377282"},{"denom":"ASSET10","index":"0.000010478421042795"},{"denom":"ASSET11","index":"0.000014549893343095"},{"denom":"ASSET12","index":"0.000013101148598203"},{"denom":"ASSET13","index":"0.000004508593559534"},{"denom":"ASSET14","index":"0.000013592389632390"},{"denom":"ASSET15","index":"0.000009716581133843"},{"denom":"ASSET16","index":"0.000006773297988330"},{"denom":"ASSET17","index":"0.000004812496911192"},{"denom":"ASSET18","index":"0.000002289682786467"},{"denom":"ASSET2","index":"0.000004437821546134"},{"denom":"ASSET3","index":"0.000001298874598869"},{"denom":"ASSET4","index":"0.000012222743020122"},{"denom":"ASSET5","index":"0.000001007460426045"},{"denom":"ASSET6","index":"0.000004100613717582"},{"denom":"ASSET7","index":"0.000006282056954143"},{"denom":"ASSET8","index":"0.000008197064375552"},{"denom":"ASSET9","index":"0.000003538600669994"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003500919125422"},{"denom":"ASSET1","index":"0.000029708744113596"},{"denom":"ASSET10","index":"0.000023658219501850"},{"denom":"ASSET11","index":"0.000029508250092955"},{"denom":"ASSET12","index":"0.000028107871580940"},{"denom":"ASSET13","index":"0.000009266072102552"},{"denom":"ASSET14","index":"0.000027092614384257"},{"denom":"ASSET15","index":"0.000021318431245277"},{"denom":"ASSET16","index":"0.000013180724612002"},{"denom":"ASSET17","index":"0.000010330094773179"},{"denom":"ASSET18","index":"0.000004277644880979"},{"denom":"ASSET2","index":"0.000008990842831989"},{"denom":"ASSET3","index":"0.000002500335792843"},{"denom":"ASSET4","index":"0.000024086210482120"},{"denom":"ASSET5","index":"0.000001946754653173"},{"denom":"ASSET6","index":"0.000007858889858659"},{"denom":"ASSET7","index":"0.000012341576470869"},{"denom":"ASSET8","index":"0.000016843078118646"},{"denom":"ASSET9","index":"0.000007150129263591"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001563811170888"},{"denom":"ASSET1","index":"0.000013038374863878"},{"denom":"ASSET10","index":"0.000009083864212622"},{"denom":"ASSET11","index":"0.000012612362006834"},{"denom":"ASSET12","index":"0.000011358137819015"},{"denom":"ASSET13","index":"0.000003908204905926"},{"denom":"ASSET14","index":"0.000011781504633469"},{"denom":"ASSET15","index":"0.000008423676586333"},{"denom":"ASSET16","index":"0.000005872891529250"},{"denom":"ASSET17","index":"0.000004170163122369"},{"denom":"ASSET18","index":"0.000001987177985342"},{"denom":"ASSET2","index":"0.000003848668947643"},{"denom":"ASSET3","index":"0.000001125891122188"},{"denom":"ASSET4","index":"0.000010596077552999"},{"denom":"ASSET5","index":"0.000000873194054811"},{"denom":"ASSET6","index":"0.000003556281241411"},{"denom":"ASSET7","index":"0.000005446878672206"},{"denom":"ASSET8","index":"0.000007107270397641"},{"denom":"ASSET9","index":"0.000003069409404789"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003311345528520"},{"denom":"ASSET1","index":"0.000028134750769747"},{"denom":"ASSET10","index":"0.000022648872120201"},{"denom":"ASSET11","index":"0.000028007957662740"},{"denom":"ASSET12","index":"0.000026803793052874"},{"denom":"ASSET13","index":"0.000008804941803873"},{"denom":"ASSET14","index":"0.000025676450668466"},{"denom":"ASSET15","index":"0.000020365161363483"},{"denom":"ASSET16","index":"0.000012467103206876"},{"denom":"ASSET17","index":"0.000009848512066991"},{"denom":"ASSET18","index":"0.000004032794375330"},{"denom":"ASSET2","index":"0.000008534928074651"},{"denom":"ASSET3","index":"0.000002362590241163"},{"denom":"ASSET4","index":"0.000022806063702805"},{"denom":"ASSET5","index":"0.000001840254083448"},{"denom":"ASSET6","index":"0.000007424521355960"},{"denom":"ASSET7","index":"0.000011683846998076"},{"denom":"ASSET8","index":"0.000016006498096466"},{"denom":"ASSET9","index":"0.000006786333067798"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001600184479142"},{"denom":"ASSET1","index":"0.000013342157474081"},{"denom":"ASSET10","index":"0.000009295060662992"},{"denom":"ASSET11","index":"0.000012907134644369"},{"denom":"ASSET12","index":"0.000011622469236023"},{"denom":"ASSET13","index":"0.000003999732516397"},{"denom":"ASSET14","index":"0.000012056763384279"},{"denom":"ASSET15","index":"0.000008620301633991"},{"denom":"ASSET16","index":"0.000006010164655719"},{"denom":"ASSET17","index":"0.000004268615973958"},{"denom":"ASSET18","index":"0.000002033021264483"},{"denom":"ASSET2","index":"0.000003938523274026"},{"denom":"ASSET3","index":"0.000001152045383207"},{"denom":"ASSET4","index":"0.000010842780077243"},{"denom":"ASSET5","index":"0.000000894092147498"},{"denom":"ASSET6","index":"0.000003639035195279"},{"denom":"ASSET7","index":"0.000005573684463094"},{"denom":"ASSET8","index":"0.000007272969620361"},{"denom":"ASSET9","index":"0.000003141345760282"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003037978324998"},{"denom":"ASSET1","index":"0.000025756345113171"},{"denom":"ASSET10","index":"0.000020449699671521"},{"denom":"ASSET11","index":"0.000025567125107120"},{"denom":"ASSET12","index":"0.000024323299608917"},{"denom":"ASSET13","index":"0.000008026089638757"},{"denom":"ASSET14","index":"0.000023482777870484"},{"denom":"ASSET15","index":"0.000018439819094125"},{"denom":"ASSET16","index":"0.000011433094032389"},{"denom":"ASSET17","index":"0.000008938487942114"},{"denom":"ASSET18","index":"0.000003715472889790"},{"denom":"ASSET2","index":"0.000007791978720736"},{"denom":"ASSET3","index":"0.000002168844641333"},{"denom":"ASSET4","index":"0.000020883291069830"},{"denom":"ASSET5","index":"0.000001689134510364"},{"denom":"ASSET6","index":"0.000006819968009550"},{"denom":"ASSET7","index":"0.000010702337477897"},{"denom":"ASSET8","index":"0.000014590947163921"},{"denom":"ASSET9","index":"0.000006197850437110"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001732863553160"},{"denom":"ASSET1","index":"0.000014476512568697"},{"denom":"ASSET10","index":"0.000010084697727409"},{"denom":"ASSET11","index":"0.000014004946421444"},{"denom":"ASSET12","index":"0.000012607292539223"},{"denom":"ASSET13","index":"0.000004334999642824"},{"denom":"ASSET14","index":"0.000013078858686476"},{"denom":"ASSET15","index":"0.000009351781667220"},{"denom":"ASSET16","index":"0.000006516703263852"},{"denom":"ASSET17","index":"0.000004630438674838"},{"denom":"ASSET18","index":"0.000002204429700414"},{"denom":"ASSET2","index":"0.000004272502924514"},{"denom":"ASSET3","index":"0.000001249934366214"},{"denom":"ASSET4","index":"0.000011760746082105"},{"denom":"ASSET5","index":"0.000000965858373893"},{"denom":"ASSET6","index":"0.000003948656293267"},{"denom":"ASSET7","index":"0.000006045137116599"},{"denom":"ASSET8","index":"0.000007891631066688"},{"denom":"ASSET9","index":"0.000003403230388010"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003203314564743"},{"denom":"ASSET1","index":"0.000027174750089688"},{"denom":"ASSET10","index":"0.000021494761442080"},{"denom":"ASSET11","index":"0.000026954579685264"},{"denom":"ASSET12","index":"0.000025598519259277"},{"denom":"ASSET13","index":"0.000008453363478510"},{"denom":"ASSET14","index":"0.000024766008219885"},{"denom":"ASSET15","index":"0.000019395989679368"},{"denom":"ASSET16","index":"0.000012063312986412"},{"denom":"ASSET17","index":"0.000009406957788586"},{"denom":"ASSET18","index":"0.000003925664786352"},{"denom":"ASSET2","index":"0.000008214094571203"},{"denom":"ASSET3","index":"0.000002289770772075"},{"denom":"ASSET4","index":"0.000022031271429646"},{"denom":"ASSET5","index":"0.000001779377444361"},{"denom":"ASSET6","index":"0.000007202120906665"},{"denom":"ASSET7","index":"0.000011290805949933"},{"denom":"ASSET8","index":"0.000015376618183469"},{"denom":"ASSET9","index":"0.000006529467958809"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001687731873143"},{"denom":"ASSET1","index":"0.000014069560961171"},{"denom":"ASSET10","index":"0.000009802495056563"},{"denom":"ASSET11","index":"0.000013610740912442"},{"denom":"ASSET12","index":"0.000012256373563096"},{"denom":"ASSET13","index":"0.000004217751625940"},{"denom":"ASSET14","index":"0.000012714404583367"},{"denom":"ASSET15","index":"0.000009090791386823"},{"denom":"ASSET16","index":"0.000006338265608675"},{"denom":"ASSET17","index":"0.000004501407356839"},{"denom":"ASSET18","index":"0.000002144184836496"},{"denom":"ASSET2","index":"0.000004153051292327"},{"denom":"ASSET3","index":"0.000001214709312157"},{"denom":"ASSET4","index":"0.000011433811394910"},{"denom":"ASSET5","index":"0.000000942889008137"},{"denom":"ASSET6","index":"0.000003837834423079"},{"denom":"ASSET7","index":"0.000005877867503028"},{"denom":"ASSET8","index":"0.000007669751132718"},{"denom":"ASSET9","index":"0.000003312735983819"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003310751488522"},{"denom":"ASSET1","index":"0.000028084250149300"},{"denom":"ASSET10","index":"0.000022395324527460"},{"denom":"ASSET11","index":"0.000027902986790638"},{"denom":"ASSET12","index":"0.000026594787286768"},{"denom":"ASSET13","index":"0.000008763085936534"},{"denom":"ASSET14","index":"0.000025613920456358"},{"denom":"ASSET15","index":"0.000020176020856033"},{"denom":"ASSET16","index":"0.000012460451689171"},{"denom":"ASSET17","index":"0.000009773335616478"},{"denom":"ASSET18","index":"0.000004043661907525"},{"denom":"ASSET2","index":"0.000008503271494062"},{"denom":"ASSET3","index":"0.000002362859659779"},{"denom":"ASSET4","index":"0.000022769116693783"},{"denom":"ASSET5","index":"0.000001840413908887"},{"denom":"ASSET6","index":"0.000007429033260494"},{"denom":"ASSET7","index":"0.000011667535172652"},{"denom":"ASSET8","index":"0.000015931047386954"},{"denom":"ASSET9","index":"0.000006763232815972"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001411639939639"},{"denom":"ASSET1","index":"0.000011770559134781"},{"denom":"ASSET10","index":"0.000008200405560598"},{"denom":"ASSET11","index":"0.000011386782830640"},{"denom":"ASSET12","index":"0.000010253700018254"},{"denom":"ASSET13","index":"0.000003528795747429"},{"denom":"ASSET14","index":"0.000010636868119061"},{"denom":"ASSET15","index":"0.000007604974496011"},{"denom":"ASSET16","index":"0.000005302316671163"},{"denom":"ASSET17","index":"0.000003765386844594"},{"denom":"ASSET18","index":"0.000001793591633776"},{"denom":"ASSET2","index":"0.000003474665650649"},{"denom":"ASSET3","index":"0.000001016307772140"},{"denom":"ASSET4","index":"0.000009565822046806"},{"denom":"ASSET5","index":"0.000000788839724994"},{"denom":"ASSET6","index":"0.000003210705403426"},{"denom":"ASSET7","index":"0.000004917323960353"},{"denom":"ASSET8","index":"0.000006416545180176"},{"denom":"ASSET9","index":"0.000002771582595835"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000002915106026686"},{"denom":"ASSET1","index":"0.000024751938975568"},{"denom":"ASSET10","index":"0.000019864528416862"},{"denom":"ASSET11","index":"0.000024625253839727"},{"denom":"ASSET12","index":"0.000023534700266806"},{"denom":"ASSET13","index":"0.000007739190454504"},{"denom":"ASSET14","index":"0.000022584902384729"},{"denom":"ASSET15","index":"0.000017872912229645"},{"denom":"ASSET16","index":"0.000010972881933217"},{"denom":"ASSET17","index":"0.000008648586457086"},{"denom":"ASSET18","index":"0.000003552999450219"},{"denom":"ASSET2","index":"0.000007504215303421"},{"denom":"ASSET3","index":"0.000002079538758775"},{"denom":"ASSET4","index":"0.000020065180146540"},{"denom":"ASSET5","index":"0.000001620267199228"},{"denom":"ASSET6","index":"0.000006536798446662"},{"denom":"ASSET7","index":"0.000010280222742310"},{"denom":"ASSET8","index":"0.000014068743113537"},{"denom":"ASSET9","index":"0.000005967789042866"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001670929391506"},{"denom":"ASSET1","index":"0.000013946161101263"},{"denom":"ASSET10","index":"0.000009716355120388"},{"denom":"ASSET11","index":"0.000013489421488305"},{"denom":"ASSET12","index":"0.000012147571569489"},{"denom":"ASSET13","index":"0.000004178741924768"},{"denom":"ASSET14","index":"0.000012601474290441"},{"denom":"ASSET15","index":"0.000009009969010905"},{"denom":"ASSET16","index":"0.000006280878901179"},{"denom":"ASSET17","index":"0.000004459594233357"},{"denom":"ASSET18","index":"0.000002124832112458"},{"denom":"ASSET2","index":"0.000004116330300637"},{"denom":"ASSET3","index":"0.000001202842210524"},{"denom":"ASSET4","index":"0.000011333383563781"},{"denom":"ASSET5","index":"0.000000933337469958"},{"denom":"ASSET6","index":"0.000003804272179982"},{"denom":"ASSET7","index":"0.000005824139288221"},{"denom":"ASSET8","index":"0.000007600033683947"},{"denom":"ASSET9","index":"0.000003282284050887"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003306866574231"},{"denom":"ASSET1","index":"0.000028073670524533"},{"denom":"ASSET10","index":"0.000022410378668975"},{"denom":"ASSET11","index":"0.000027896117796052"},{"denom":"ASSET12","index":"0.000026601615360568"},{"denom":"ASSET13","index":"0.000008760019105133"},{"denom":"ASSET14","index":"0.000025604072816608"},{"denom":"ASSET15","index":"0.000020183975077340"},{"denom":"ASSET16","index":"0.000012452378452775"},{"denom":"ASSET17","index":"0.000009773941069454"},{"denom":"ASSET18","index":"0.000004038323507821"},{"denom":"ASSET2","index":"0.000008501686860316"},{"denom":"ASSET3","index":"0.000002358773872569"},{"denom":"ASSET4","index":"0.000022758821093429"},{"denom":"ASSET5","index":"0.000001837837668790"},{"denom":"ASSET6","index":"0.000007423905647148"},{"denom":"ASSET7","index":"0.000011659308440973"},{"denom":"ASSET8","index":"0.000015926660063085"},{"denom":"ASSET9","index":"0.000006759875068056"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001598361255475"},{"denom":"ASSET1","index":"0.000013324868720531"},{"denom":"ASSET10","index":"0.000009283863630055"},{"denom":"ASSET11","index":"0.000012890721875256"},{"denom":"ASSET12","index":"0.000011607749807828"},{"denom":"ASSET13","index":"0.000003994929715268"},{"denom":"ASSET14","index":"0.000012041896653103"},{"denom":"ASSET15","index":"0.000008609605674538"},{"denom":"ASSET16","index":"0.000006002777756047"},{"denom":"ASSET17","index":"0.000004262945630213"},{"denom":"ASSET18","index":"0.000002030561253910"},{"denom":"ASSET2","index":"0.000003933279565341"},{"denom":"ASSET3","index":"0.000001150586482321"},{"denom":"ASSET4","index":"0.000010829011071909"},{"denom":"ASSET5","index":"0.000000892953750521"},{"denom":"ASSET6","index":"0.000003634763049905"},{"denom":"ASSET7","index":"0.000005566684063932"},{"denom":"ASSET8","index":"0.000007263685559290"},{"denom":"ASSET9","index":"0.000003137668156809"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003119961272076"},{"denom":"ASSET1","index":"0.000026462428012801"},{"denom":"ASSET10","index":"0.000021088828135750"},{"denom":"ASSET11","index":"0.000026288818556387"},{"denom":"ASSET12","index":"0.000025049012446876"},{"denom":"ASSET13","index":"0.000008256026418292"},{"denom":"ASSET14","index":"0.000024133914778951"},{"denom":"ASSET15","index":"0.000019001193386697"},{"denom":"ASSET16","index":"0.000011741691861213"},{"denom":"ASSET17","index":"0.000009205139483526"},{"denom":"ASSET18","index":"0.000003811157018018"},{"denom":"ASSET2","index":"0.000008011229275486"},{"denom":"ASSET3","index":"0.000002226652147557"},{"denom":"ASSET4","index":"0.000021454928269907"},{"denom":"ASSET5","index":"0.000001734689929917"},{"denom":"ASSET6","index":"0.000007001091110949"},{"denom":"ASSET7","index":"0.000010994186615549"},{"denom":"ASSET8","index":"0.000015007966738007"},{"denom":"ASSET9","index":"0.000006372340046203"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001543375593884"},{"denom":"ASSET1","index":"0.000012871309378663"},{"denom":"ASSET10","index":"0.000008967332198598"},{"denom":"ASSET11","index":"0.000012451619524186"},{"denom":"ASSET12","index":"0.000011213472915376"},{"denom":"ASSET13","index":"0.000003858438984711"},{"denom":"ASSET14","index":"0.000011631932007817"},{"denom":"ASSET15","index":"0.000008316259081242"},{"denom":"ASSET16","index":"0.000005798119954378"},{"denom":"ASSET17","index":"0.000004118129774432"},{"denom":"ASSET18","index":"0.000001961834686325"},{"denom":"ASSET2","index":"0.000003799362406955"},{"denom":"ASSET3","index":"0.000001111378119041"},{"denom":"ASSET4","index":"0.000010460246548983"},{"denom":"ASSET5","index":"0.000000862764187650"},{"denom":"ASSET6","index":"0.000003511364090393"},{"denom":"ASSET7","index":"0.000005377199337864"},{"denom":"ASSET8","index":"0.000007016574370602"},{"denom":"ASSET9","index":"0.000003030136134086"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003061984062566"},{"denom":"ASSET1","index":"0.000025984754387841"},{"denom":"ASSET10","index":"0.000020750278468036"},{"denom":"ASSET11","index":"0.000025825260107338"},{"denom":"ASSET12","index":"0.000024630365005548"},{"denom":"ASSET13","index":"0.000008111503841622"},{"denom":"ASSET14","index":"0.000023701848593669"},{"denom":"ASSET15","index":"0.000018689068915475"},{"denom":"ASSET16","index":"0.000011526541772952"},{"denom":"ASSET17","index":"0.000009050861170220"},{"denom":"ASSET18","index":"0.000003739265665267"},{"denom":"ASSET2","index":"0.000007869809789784"},{"denom":"ASSET3","index":"0.000002185113944095"},{"denom":"ASSET4","index":"0.000021066477214749"},{"denom":"ASSET5","index":"0.000001702392649313"},{"denom":"ASSET6","index":"0.000006871251000760"},{"denom":"ASSET7","index":"0.000010794622225013"},{"denom":"ASSET8","index":"0.000014746923085504"},{"denom":"ASSET9","index":"0.000006258895459680"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001745217677213"},{"denom":"ASSET1","index":"0.000014553842410819"},{"denom":"ASSET10","index":"0.000010139729507131"},{"denom":"ASSET11","index":"0.000014078681363843"},{"denom":"ASSET12","index":"0.000012678362515121"},{"denom":"ASSET13","index":"0.000004362304066790"},{"denom":"ASSET14","index":"0.000013152043309614"},{"denom":"ASSET15","index":"0.000009402563770700"},{"denom":"ASSET16","index":"0.000006556038246289"},{"denom":"ASSET17","index":"0.000004655394058383"},{"denom":"ASSET18","index":"0.000002217418219224"},{"denom":"ASSET2","index":"0.000004295692705065"},{"denom":"ASSET3","index":"0.000001256734357891"},{"denom":"ASSET4","index":"0.000011827217337515"},{"denom":"ASSET5","index":"0.000000975486386160"},{"denom":"ASSET6","index":"0.000003970037158850"},{"denom":"ASSET7","index":"0.000006079396946830"},{"denom":"ASSET8","index":"0.000007932673055287"},{"denom":"ASSET9","index":"0.000003426784497665"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003296605577903"},{"denom":"ASSET1","index":"0.000027950980635352"},{"denom":"ASSET10","index":"0.000022177590033485"},{"denom":"ASSET11","index":"0.000027741245317152"},{"denom":"ASSET12","index":"0.000026384837371861"},{"denom":"ASSET13","index":"0.000008707523198290"},{"denom":"ASSET14","index":"0.000025482773879389"},{"denom":"ASSET15","index":"0.000019999205716580"},{"denom":"ASSET16","index":"0.000012408342313410"},{"denom":"ASSET17","index":"0.000009694954350389"},{"denom":"ASSET18","index":"0.000004033447725414"},{"denom":"ASSET2","index":"0.000008454290496983"},{"denom":"ASSET3","index":"0.000002354114882033"},{"denom":"ASSET4","index":"0.000022662624820802"},{"denom":"ASSET5","index":"0.000001833709311257"},{"denom":"ASSET6","index":"0.000007402928859239"},{"denom":"ASSET7","index":"0.000011614131087351"},{"denom":"ASSET8","index":"0.000015829970625061"},{"denom":"ASSET9","index":"0.000006725199056296"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001696105704481"},{"denom":"ASSET1","index":"0.000014140754037071"},{"denom":"ASSET10","index":"0.000009851931515387"},{"denom":"ASSET11","index":"0.000013679695806241"},{"denom":"ASSET12","index":"0.000012318593050331"},{"denom":"ASSET13","index":"0.000004239283286244"},{"denom":"ASSET14","index":"0.000012779160793682"},{"denom":"ASSET15","index":"0.000009136800770120"},{"denom":"ASSET16","index":"0.000006369960897657"},{"denom":"ASSET17","index":"0.000004523766024416"},{"denom":"ASSET18","index":"0.000002155201985393"},{"denom":"ASSET2","index":"0.000004174048451456"},{"denom":"ASSET3","index":"0.000001220823336742"},{"denom":"ASSET4","index":"0.000011492121647193"},{"denom":"ASSET5","index":"0.000000947621810601"},{"denom":"ASSET6","index":"0.000003857193539630"},{"denom":"ASSET7","index":"0.000005907431204387"},{"denom":"ASSET8","index":"0.000007708991716984"},{"denom":"ASSET9","index":"0.000003329429011573"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003278023650839"},{"denom":"ASSET1","index":"0.000027801084973989"},{"denom":"ASSET10","index":"0.000022126343818190"},{"denom":"ASSET11","index":"0.000027610641458424"},{"denom":"ASSET12","index":"0.000026294522151225"},{"denom":"ASSET13","index":"0.000008669795972838"},{"denom":"ASSET14","index":"0.000025352034708572"},{"denom":"ASSET15","index":"0.000019941753748345"},{"denom":"ASSET16","index":"0.000012337408081897"},{"denom":"ASSET17","index":"0.000009662232510971"},{"denom":"ASSET18","index":"0.000004006663612522"},{"denom":"ASSET2","index":"0.000008414274009770"},{"denom":"ASSET3","index":"0.000002339697370568"},{"denom":"ASSET4","index":"0.000022540556466857"},{"denom":"ASSET5","index":"0.000001822656991491"},{"denom":"ASSET6","index":"0.000007357334263189"},{"denom":"ASSET7","index":"0.000011551068960203"},{"denom":"ASSET8","index":"0.000015761386047857"},{"denom":"ASSET9","index":"0.000006692834331509"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001139195115521"},{"denom":"ASSET1","index":"0.000009496890331931"},{"denom":"ASSET10","index":"0.000006616523219856"},{"denom":"ASSET11","index":"0.000009187371854639"},{"denom":"ASSET12","index":"0.000008273091178185"},{"denom":"ASSET13","index":"0.000002846943294505"},{"denom":"ASSET14","index":"0.000008582261490710"},{"denom":"ASSET15","index":"0.000006136055842283"},{"denom":"ASSET16","index":"0.000004278248649000"},{"denom":"ASSET17","index":"0.000003038433916001"},{"denom":"ASSET18","index":"0.000001447320933748"},{"denom":"ASSET2","index":"0.000002803422698710"},{"denom":"ASSET3","index":"0.000000819928024772"},{"denom":"ASSET4","index":"0.000007718116540611"},{"denom":"ASSET5","index":"0.000000636445192901"},{"denom":"ASSET6","index":"0.000002590694026466"},{"denom":"ASSET7","index":"0.000003967685677409"},{"denom":"ASSET8","index":"0.000005177210075735"},{"denom":"ASSET9","index":"0.000002236262294314"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000002735257365218"},{"denom":"ASSET1","index":"0.000023278157661741"},{"denom":"ASSET10","index":"0.000018999615823078"},{"denom":"ASSET11","index":"0.000023241706683585"},{"denom":"ASSET12","index":"0.000022372793234045"},{"denom":"ASSET13","index":"0.000007316911351959"},{"denom":"ASSET14","index":"0.000021266506066871"},{"denom":"ASSET15","index":"0.000017036720297506"},{"denom":"ASSET16","index":"0.000010298479660409"},{"denom":"ASSET17","index":"0.000008222611745720"},{"denom":"ASSET18","index":"0.000003315370510511"},{"denom":"ASSET2","index":"0.000007081336162231"},{"denom":"ASSET3","index":"0.000001948923871674"},{"denom":"ASSET4","index":"0.000018864412124408"},{"denom":"ASSET5","index":"0.000001519377842401"},{"denom":"ASSET6","index":"0.000006121992555640"},{"denom":"ASSET7","index":"0.000009661272655042"},{"denom":"ASSET8","index":"0.000013300968175029"},{"denom":"ASSET9","index":"0.000005629514833023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001583959364947"},{"denom":"ASSET1","index":"0.000013443347430705"},{"denom":"ASSET10","index":"0.000009381913161610"},{"denom":"ASSET11","index":"0.000012996589661105"},{"denom":"ASSET12","index":"0.000011696930694994"},{"denom":"ASSET13","index":"0.000004020819926404"},{"denom":"ASSET14","index":"0.000012143688464595"},{"denom":"ASSET15","index":"0.000008691469335864"},{"denom":"ASSET16","index":"0.000006051537060952"},{"denom":"ASSET17","index":"0.000004305120325241"},{"denom":"ASSET18","index":"0.000002030717134548"},{"denom":"ASSET2","index":"0.000003939591241022"},{"denom":"ASSET3","index":"0.000001137201595347"},{"denom":"ASSET4","index":"0.000010925258183866"},{"denom":"ASSET5","index":"0.000000893515539201"},{"denom":"ASSET6","index":"0.000003655290842186"},{"denom":"ASSET7","index":"0.000005604779291351"},{"denom":"ASSET8","index":"0.000007310581684371"},{"denom":"ASSET9","index":"0.000003167918729894"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003310378542013"},{"denom":"ASSET1","index":"0.000028352771206955"},{"denom":"ASSET10","index":"0.000022778987578468"},{"denom":"ASSET11","index":"0.000028201706998458"},{"denom":"ASSET12","index":"0.000026949790221900"},{"denom":"ASSET13","index":"0.000008856641706946"},{"denom":"ASSET14","index":"0.000025865717784540"},{"denom":"ASSET15","index":"0.000020483790155485"},{"denom":"ASSET16","index":"0.000012564495758376"},{"denom":"ASSET17","index":"0.000009912517491786"},{"denom":"ASSET18","index":"0.000004051289802086"},{"denom":"ASSET2","index":"0.000008567503486413"},{"denom":"ASSET3","index":"0.000002358477605528"},{"denom":"ASSET4","index":"0.000022984011222606"},{"denom":"ASSET5","index":"0.000001848359330263"},{"denom":"ASSET6","index":"0.000007474666006436"},{"denom":"ASSET7","index":"0.000011763521743703"},{"denom":"ASSET8","index":"0.000016098224703406"},{"denom":"ASSET9","index":"0.000006837907042961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001549911588522"},{"denom":"ASSET1","index":"0.000012922257740418"},{"denom":"ASSET10","index":"0.000009003081854783"},{"denom":"ASSET11","index":"0.000012500946332712"},{"denom":"ASSET12","index":"0.000011256607989023"},{"denom":"ASSET13","index":"0.000003873860414458"},{"denom":"ASSET14","index":"0.000011677307025497"},{"denom":"ASSET15","index":"0.000008349069378868"},{"denom":"ASSET16","index":"0.000005821200932633"},{"denom":"ASSET17","index":"0.000004134118188113"},{"denom":"ASSET18","index":"0.000001969385882532"},{"denom":"ASSET2","index":"0.000003814460404941"},{"denom":"ASSET3","index":"0.000001115740384942"},{"denom":"ASSET4","index":"0.000010501554259806"},{"denom":"ASSET5","index":"0.000000865892922233"},{"denom":"ASSET6","index":"0.000003524808812143"},{"denom":"ASSET7","index":"0.000005398664782463"},{"denom":"ASSET8","index":"0.000007044106283197"},{"denom":"ASSET9","index":"0.000003042260281224"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003086330633608"},{"denom":"ASSET1","index":"0.000026187842720704"},{"denom":"ASSET10","index":"0.000020922921087024"},{"denom":"ASSET11","index":"0.000026029396638226"},{"denom":"ASSET12","index":"0.000024828709288325"},{"denom":"ASSET13","index":"0.000008176601230700"},{"denom":"ASSET14","index":"0.000023887113573615"},{"denom":"ASSET15","index":"0.000018841856891118"},{"denom":"ASSET16","index":"0.000011616230118922"},{"denom":"ASSET17","index":"0.000009124242236202"},{"denom":"ASSET18","index":"0.000003767471049721"},{"denom":"ASSET2","index":"0.000007932284099147"},{"denom":"ASSET3","index":"0.000002202458257762"},{"denom":"ASSET4","index":"0.000021230824628511"},{"denom":"ASSET5","index":"0.000001715648257347"},{"denom":"ASSET6","index":"0.000006923830152599"},{"denom":"ASSET7","index":"0.000010879262909104"},{"denom":"ASSET8","index":"0.000014863870027497"},{"denom":"ASSET9","index":"0.000006308409915314"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001535524830156"},{"denom":"ASSET1","index":"0.000012804491333161"},{"denom":"ASSET10","index":"0.000008921035499248"},{"denom":"ASSET11","index":"0.000012386713938596"},{"denom":"ASSET12","index":"0.000011154325740380"},{"denom":"ASSET13","index":"0.000003838812075390"},{"denom":"ASSET14","index":"0.000011571000819920"},{"denom":"ASSET15","index":"0.000008272874264409"},{"denom":"ASSET16","index":"0.000005767863369556"},{"denom":"ASSET17","index":"0.000004096202633783"},{"denom":"ASSET18","index":"0.000001951097594671"},{"denom":"ASSET2","index":"0.000003779838221540"},{"denom":"ASSET3","index":"0.000001105621970313"},{"denom":"ASSET4","index":"0.000010405853838244"},{"denom":"ASSET5","index":"0.000000858152247148"},{"denom":"ASSET6","index":"0.000003492685157466"},{"denom":"ASSET7","index":"0.000005348983659966"},{"denom":"ASSET8","index":"0.000006980409897318"},{"denom":"ASSET9","index":"0.000003014831594025"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003051773960929"},{"denom":"ASSET1","index":"0.000025898629359040"},{"denom":"ASSET10","index":"0.000020686863907037"},{"denom":"ASSET11","index":"0.000025740096441319"},{"denom":"ASSET12","index":"0.000024551000542772"},{"denom":"ASSET13","index":"0.000008085532012369"},{"denom":"ASSET14","index":"0.000023622558405526"},{"denom":"ASSET15","index":"0.000018629920308839"},{"denom":"ASSET16","index":"0.000011487540137638"},{"denom":"ASSET17","index":"0.000009021847693812"},{"denom":"ASSET18","index":"0.000003725572559942"},{"denom":"ASSET2","index":"0.000007844221178735"},{"denom":"ASSET3","index":"0.000002178252359768"},{"denom":"ASSET4","index":"0.000020996168979716"},{"denom":"ASSET5","index":"0.000001697004218389"},{"denom":"ASSET6","index":"0.000006847583721256"},{"denom":"ASSET7","index":"0.000010758483833946"},{"denom":"ASSET8","index":"0.000014699172267780"},{"denom":"ASSET9","index":"0.000006238834616461"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001813824295534"},{"denom":"ASSET1","index":"0.000015126179984122"},{"denom":"ASSET10","index":"0.000010538420488017"},{"denom":"ASSET11","index":"0.000014633035948465"},{"denom":"ASSET12","index":"0.000013177247733614"},{"denom":"ASSET13","index":"0.000004534560738834"},{"denom":"ASSET14","index":"0.000013669547344553"},{"denom":"ASSET15","index":"0.000009773371692973"},{"denom":"ASSET16","index":"0.000006813663054312"},{"denom":"ASSET17","index":"0.000004839398062246"},{"denom":"ASSET18","index":"0.000002305279481754"},{"denom":"ASSET2","index":"0.000004465317911910"},{"denom":"ASSET3","index":"0.000001306325039660"},{"denom":"ASSET4","index":"0.000012293135053249"},{"denom":"ASSET5","index":"0.000001013309662309"},{"denom":"ASSET6","index":"0.000004125859175036"},{"denom":"ASSET7","index":"0.000006318830169217"},{"denom":"ASSET8","index":"0.000008245807377042"},{"denom":"ASSET9","index":"0.000003561783463017"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003452880861936"},{"denom":"ASSET1","index":"0.000029278299049117"},{"denom":"ASSET10","index":"0.000023254773922096"},{"denom":"ASSET11","index":"0.000029065569213605"},{"denom":"ASSET12","index":"0.000027656204711461"},{"denom":"ASSET13","index":"0.000009124518140406"},{"denom":"ASSET14","index":"0.000026695142606829"},{"denom":"ASSET15","index":"0.000020967476611979"},{"denom":"ASSET16","index":"0.000012995878924798"},{"denom":"ASSET17","index":"0.000010163149632422"},{"denom":"ASSET18","index":"0.000004223627093961"},{"denom":"ASSET2","index":"0.000008858348919255"},{"denom":"ASSET3","index":"0.000002465420318230"},{"denom":"ASSET4","index":"0.000023739200929128"},{"denom":"ASSET5","index":"0.000001919695214447"},{"denom":"ASSET6","index":"0.000007752150153146"},{"denom":"ASSET7","index":"0.000012165597276913"},{"denom":"ASSET8","index":"0.000016587849042771"},{"denom":"ASSET9","index":"0.000007046182609545"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001444852701297"},{"denom":"ASSET1","index":"0.000012048934466992"},{"denom":"ASSET10","index":"0.000008394653008080"},{"denom":"ASSET11","index":"0.000011656844181701"},{"denom":"ASSET12","index":"0.000010496256937239"},{"denom":"ASSET13","index":"0.000003612131753243"},{"denom":"ASSET14","index":"0.000010888347222530"},{"denom":"ASSET15","index":"0.000007784952614452"},{"denom":"ASSET16","index":"0.000005427509774140"},{"denom":"ASSET17","index":"0.000003854247504410"},{"denom":"ASSET18","index":"0.000001835962760875"},{"denom":"ASSET2","index":"0.000003556258887589"},{"denom":"ASSET3","index":"0.000001040019481734"},{"denom":"ASSET4","index":"0.000009792454875142"},{"denom":"ASSET5","index":"0.000000807705987699"},{"denom":"ASSET6","index":"0.000003286696816452"},{"denom":"ASSET7","index":"0.000005033459037423"},{"denom":"ASSET8","index":"0.000006568492504337"},{"denom":"ASSET9","index":"0.000002836773214080"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000002868026198866"},{"denom":"ASSET1","index":"0.000024339331661302"},{"denom":"ASSET10","index":"0.000019438063504597"},{"denom":"ASSET11","index":"0.000024190729344646"},{"denom":"ASSET12","index":"0.000023070632234294"},{"denom":"ASSET13","index":"0.000007598221307181"},{"denom":"ASSET14","index":"0.000022200415230506"},{"denom":"ASSET15","index":"0.000017506414948675"},{"denom":"ASSET16","index":"0.000010796282691537"},{"denom":"ASSET17","index":"0.000008477235924619"},{"denom":"ASSET18","index":"0.000003501529899130"},{"denom":"ASSET2","index":"0.000007371086117521"},{"denom":"ASSET3","index":"0.000002046801194740"},{"denom":"ASSET4","index":"0.000019732782799148"},{"denom":"ASSET5","index":"0.000001595074946946"},{"denom":"ASSET6","index":"0.000006435625489467"},{"denom":"ASSET7","index":"0.000010111140720407"},{"denom":"ASSET8","index":"0.000013813490690156"},{"denom":"ASSET9","index":"0.000005862589992841"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001655416114862"},{"denom":"ASSET1","index":"0.000013800538848519"},{"denom":"ASSET10","index":"0.000009615249134678"},{"denom":"ASSET11","index":"0.000013350879623065"},{"denom":"ASSET12","index":"0.000012022439267096"},{"denom":"ASSET13","index":"0.000004137189147657"},{"denom":"ASSET14","index":"0.000012471558036751"},{"denom":"ASSET15","index":"0.000008916980241305"},{"denom":"ASSET16","index":"0.000006216863065381"},{"denom":"ASSET17","index":"0.000004414983428766"},{"denom":"ASSET18","index":"0.000002102913517117"},{"denom":"ASSET2","index":"0.000004073955819077"},{"denom":"ASSET3","index":"0.000001191705038613"},{"denom":"ASSET4","index":"0.000011215538757958"},{"denom":"ASSET5","index":"0.000000924719873500"},{"denom":"ASSET6","index":"0.000003764274645778"},{"denom":"ASSET7","index":"0.000005765582472528"},{"denom":"ASSET8","index":"0.000007523144733557"},{"denom":"ASSET9","index":"0.000003249220268545"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003262792429801"},{"denom":"ASSET1","index":"0.000027679878715890"},{"denom":"ASSET10","index":"0.000022086570261210"},{"denom":"ASSET11","index":"0.000027505267384149"},{"denom":"ASSET12","index":"0.000026222420015979"},{"denom":"ASSET13","index":"0.000008638975204347"},{"denom":"ASSET14","index":"0.000025246236428505"},{"denom":"ASSET15","index":"0.000019895354512471"},{"denom":"ASSET16","index":"0.000012279836462442"},{"denom":"ASSET17","index":"0.000009636125515167"},{"denom":"ASSET18","index":"0.000003984145752232"},{"denom":"ASSET2","index":"0.000008382344169353"},{"denom":"ASSET3","index":"0.000002328549799735"},{"denom":"ASSET4","index":"0.000022441247538096"},{"denom":"ASSET5","index":"0.000001813932132265"},{"denom":"ASSET6","index":"0.000007320527694069"},{"denom":"ASSET7","index":"0.000011499571173317"},{"denom":"ASSET8","index":"0.000015704553099640"},{"denom":"ASSET9","index":"0.000006666608399750"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001676736923170"},{"denom":"ASSET1","index":"0.000013985463602132"},{"denom":"ASSET10","index":"0.000009743339709608"},{"denom":"ASSET11","index":"0.000013528824721587"},{"denom":"ASSET12","index":"0.000012182509640070"},{"denom":"ASSET13","index":"0.000004192868462713"},{"denom":"ASSET14","index":"0.000012638122365828"},{"denom":"ASSET15","index":"0.000009036319060854"},{"denom":"ASSET16","index":"0.000006299564241947"},{"denom":"ASSET17","index":"0.000004474034874554"},{"denom":"ASSET18","index":"0.000002131323494140"},{"denom":"ASSET2","index":"0.000004128220711085"},{"denom":"ASSET3","index":"0.000001207784185172"},{"denom":"ASSET4","index":"0.000011365690429028"},{"denom":"ASSET5","index":"0.000000936879321208"},{"denom":"ASSET6","index":"0.000003814217346036"},{"denom":"ASSET7","index":"0.000005841899206614"},{"denom":"ASSET8","index":"0.000007623303918134"},{"denom":"ASSET9","index":"0.000003292930713863"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003296156578493"},{"denom":"ASSET1","index":"0.000027968412540894"},{"denom":"ASSET10","index":"0.000022307812536905"},{"denom":"ASSET11","index":"0.000027788867279184"},{"denom":"ASSET12","index":"0.000026488589695468"},{"denom":"ASSET13","index":"0.000008728285856057"},{"denom":"ASSET14","index":"0.000025508064125070"},{"denom":"ASSET15","index":"0.000020096610749334"},{"denom":"ASSET16","index":"0.000012407784704791"},{"denom":"ASSET17","index":"0.000009734180928237"},{"denom":"ASSET18","index":"0.000004026678592252"},{"denom":"ASSET2","index":"0.000008468774984810"},{"denom":"ASSET3","index":"0.000002353220293961"},{"denom":"ASSET4","index":"0.000022675279511256"},{"denom":"ASSET5","index":"0.000001832728492238"},{"denom":"ASSET6","index":"0.000007397034942132"},{"denom":"ASSET7","index":"0.000011618881320506"},{"denom":"ASSET8","index":"0.000015866042832442"},{"denom":"ASSET9","index":"0.000006735898552490"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001687654189845"},{"denom":"ASSET1","index":"0.000014079752531439"},{"denom":"ASSET10","index":"0.000009809029374167"},{"denom":"ASSET11","index":"0.000013620990639222"},{"denom":"ASSET12","index":"0.000012264971552184"},{"denom":"ASSET13","index":"0.000004220977891851"},{"denom":"ASSET14","index":"0.000012723733444402"},{"denom":"ASSET15","index":"0.000009097856320367"},{"denom":"ASSET16","index":"0.000006341600132585"},{"denom":"ASSET17","index":"0.000004504710146476"},{"denom":"ASSET18","index":"0.000002144573664825"},{"denom":"ASSET2","index":"0.000004156493288528"},{"denom":"ASSET3","index":"0.000001215995376963"},{"denom":"ASSET4","index":"0.000011441411046878"},{"denom":"ASSET5","index":"0.000000943317625765"},{"denom":"ASSET6","index":"0.000003839597523622"},{"denom":"ASSET7","index":"0.000005880995823129"},{"denom":"ASSET8","index":"0.000007675510212768"},{"denom":"ASSET9","index":"0.000003314508610843"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003237925740153"},{"denom":"ASSET1","index":"0.000027468087048908"},{"denom":"ASSET10","index":"0.000021838560142362"},{"denom":"ASSET11","index":"0.000027274223261348"},{"denom":"ASSET12","index":"0.000025962125103579"},{"denom":"ASSET13","index":"0.000008562973508850"},{"denom":"ASSET14","index":"0.000025046299162567"},{"denom":"ASSET15","index":"0.000019687604125947"},{"denom":"ASSET16","index":"0.000012189946370622"},{"denom":"ASSET17","index":"0.000009540519193028"},{"denom":"ASSET18","index":"0.000003959057055270"},{"denom":"ASSET2","index":"0.000008312511220651"},{"denom":"ASSET3","index":"0.000002312646079660"},{"denom":"ASSET4","index":"0.000022269978905361"},{"denom":"ASSET5","index":"0.000001800462011039"},{"denom":"ASSET6","index":"0.000007270233858279"},{"denom":"ASSET7","index":"0.000011411601588483"},{"denom":"ASSET8","index":"0.000015567552190875"},{"denom":"ASSET9","index":"0.000006610637099613"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001700269946448"},{"denom":"ASSET1","index":"0.000014175647296985"},{"denom":"ASSET10","index":"0.000009876508679424"},{"denom":"ASSET11","index":"0.000013714231996791"},{"denom":"ASSET12","index":"0.000012349169664489"},{"denom":"ASSET13","index":"0.000004249665204630"},{"denom":"ASSET14","index":"0.000012810584964683"},{"denom":"ASSET15","index":"0.000009159649022667"},{"denom":"ASSET16","index":"0.000006386108914062"},{"denom":"ASSET17","index":"0.000004535399405845"},{"denom":"ASSET18","index":"0.000002160675585153"},{"denom":"ASSET2","index":"0.000004184037207885"},{"denom":"ASSET3","index":"0.000001223709723928"},{"denom":"ASSET4","index":"0.000011520237582522"},{"denom":"ASSET5","index":"0.000000950091460574"},{"denom":"ASSET6","index":"0.000003867003500531"},{"denom":"ASSET7","index":"0.000005922674290891"},{"denom":"ASSET8","index":"0.000007727949032131"},{"denom":"ASSET9","index":"0.000003337940880615"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003224934301433"},{"denom":"ASSET1","index":"0.000027341438894536"},{"denom":"ASSET10","index":"0.000021706571274337"},{"denom":"ASSET11","index":"0.000027141091242061"},{"denom":"ASSET12","index":"0.000025819235056226"},{"denom":"ASSET13","index":"0.000008520116782966"},{"denom":"ASSET14","index":"0.000024928444433519"},{"denom":"ASSET15","index":"0.000019573794936329"},{"denom":"ASSET16","index":"0.000012137286393349"},{"denom":"ASSET17","index":"0.000009487995483061"},{"denom":"ASSET18","index":"0.000003945309126507"},{"denom":"ASSET2","index":"0.000008271045740629"},{"denom":"ASSET3","index":"0.000002302032616683"},{"denom":"ASSET4","index":"0.000022168721917699"},{"denom":"ASSET5","index":"0.000001793343624246"},{"denom":"ASSET6","index":"0.000007240378309003"},{"denom":"ASSET7","index":"0.000011361888746536"},{"denom":"ASSET8","index":"0.000015488944629697"},{"denom":"ASSET9","index":"0.000006579500326985"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001505652349479"},{"denom":"ASSET1","index":"0.000012557843622987"},{"denom":"ASSET10","index":"0.000008748308836028"},{"denom":"ASSET11","index":"0.000012147743761261"},{"denom":"ASSET12","index":"0.000010939413811534"},{"denom":"ASSET13","index":"0.000003764130873697"},{"denom":"ASSET14","index":"0.000011348049030896"},{"denom":"ASSET15","index":"0.000008114118692716"},{"denom":"ASSET16","index":"0.000005656448807088"},{"denom":"ASSET17","index":"0.000004017514002549"},{"denom":"ASSET18","index":"0.000001912822926478"},{"denom":"ASSET2","index":"0.000003707009821528"},{"denom":"ASSET3","index":"0.000001083835348847"},{"denom":"ASSET4","index":"0.000010205627987517"},{"denom":"ASSET5","index":"0.000000840704716538"},{"denom":"ASSET6","index":"0.000003424333845410"},{"denom":"ASSET7","index":"0.000005246348945363"},{"denom":"ASSET8","index":"0.000006845738406093"},{"denom":"ASSET9","index":"0.000002955648289152"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000002959758868257"},{"denom":"ASSET1","index":"0.000025116229265451"},{"denom":"ASSET10","index":"0.000020033024535037"},{"denom":"ASSET11","index":"0.000024955202637112"},{"denom":"ASSET12","index":"0.000023787913163340"},{"denom":"ASSET13","index":"0.000007837044315100"},{"denom":"ASSET14","index":"0.000022906603767748"},{"denom":"ASSET15","index":"0.000018047329062837"},{"denom":"ASSET16","index":"0.000011142428291313"},{"denom":"ASSET17","index":"0.000008741414303940"},{"denom":"ASSET18","index":"0.000003614587489816"},{"denom":"ASSET2","index":"0.000007605147442913"},{"denom":"ASSET3","index":"0.000002112677625393"},{"denom":"ASSET4","index":"0.000020363145786569"},{"denom":"ASSET5","index":"0.000001645239564154"},{"denom":"ASSET6","index":"0.000006641765641459"},{"denom":"ASSET7","index":"0.000010434431181702"},{"denom":"ASSET8","index":"0.000014248591155217"},{"denom":"ASSET9","index":"0.000006047835874095"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001815877519749"},{"denom":"ASSET1","index":"0.000015137138459046"},{"denom":"ASSET10","index":"0.000010545739718907"},{"denom":"ASSET11","index":"0.000014644907422941"},{"denom":"ASSET12","index":"0.000013186828093302"},{"denom":"ASSET13","index":"0.000004537625601742"},{"denom":"ASSET14","index":"0.000013679059129408"},{"denom":"ASSET15","index":"0.000009780506595550"},{"denom":"ASSET16","index":"0.000006818847588397"},{"denom":"ASSET17","index":"0.000004841650653454"},{"denom":"ASSET18","index":"0.000002306040358223"},{"denom":"ASSET2","index":"0.000004467306882298"},{"denom":"ASSET3","index":"0.000001307100902598"},{"denom":"ASSET4","index":"0.000012301639507366"},{"denom":"ASSET5","index":"0.000001013416839040"},{"denom":"ASSET6","index":"0.000004128122470864"},{"denom":"ASSET7","index":"0.000006324548354661"},{"denom":"ASSET8","index":"0.000008252108546467"},{"denom":"ASSET9","index":"0.000003563504517685"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003468946703322"},{"denom":"ASSET1","index":"0.000029412495408176"},{"denom":"ASSET10","index":"0.000023372734593498"},{"denom":"ASSET11","index":"0.000029203218600002"},{"denom":"ASSET12","index":"0.000027792166579196"},{"denom":"ASSET13","index":"0.000009167641990636"},{"denom":"ASSET14","index":"0.000026818252104650"},{"denom":"ASSET15","index":"0.000021072198152383"},{"denom":"ASSET16","index":"0.000013054905852031"},{"denom":"ASSET17","index":"0.000010211457984650"},{"denom":"ASSET18","index":"0.000004240878207320"},{"denom":"ASSET2","index":"0.000008898543974195"},{"denom":"ASSET3","index":"0.000002476460623897"},{"denom":"ASSET4","index":"0.000023847831794350"},{"denom":"ASSET5","index":"0.000001927880642719"},{"denom":"ASSET6","index":"0.000007785977685579"},{"denom":"ASSET7","index":"0.000012222326144679"},{"denom":"ASSET8","index":"0.000016667230515151"},{"denom":"ASSET9","index":"0.000007078301868557"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001541968050995"},{"denom":"ASSET1","index":"0.000012857487907975"},{"denom":"ASSET10","index":"0.000008957704485900"},{"denom":"ASSET11","index":"0.000012438763825161"},{"denom":"ASSET12","index":"0.000011200869215257"},{"denom":"ASSET13","index":"0.000003854089325736"},{"denom":"ASSET14","index":"0.000011619593298070"},{"denom":"ASSET15","index":"0.000008307186714386"},{"denom":"ASSET16","index":"0.000005792349812251"},{"denom":"ASSET17","index":"0.000004113299472240"},{"denom":"ASSET18","index":"0.000001959030530305"},{"denom":"ASSET2","index":"0.000003795102401372"},{"denom":"ASSET3","index":"0.000001109951140156"},{"denom":"ASSET4","index":"0.000010448993630046"},{"denom":"ASSET5","index":"0.000000861541416423"},{"denom":"ASSET6","index":"0.000003506814193562"},{"denom":"ASSET7","index":"0.000005371133324183"},{"denom":"ASSET8","index":"0.000007009474378365"},{"denom":"ASSET9","index":"0.000003027441582881"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003053196756625"},{"denom":"ASSET1","index":"0.000025905581999278"},{"denom":"ASSET10","index":"0.000020682143152818"},{"denom":"ASSET11","index":"0.000025745380902198"},{"denom":"ASSET12","index":"0.000024550499550641"},{"denom":"ASSET13","index":"0.000008086239198545"},{"denom":"ASSET14","index":"0.000023629161089906"},{"denom":"ASSET15","index":"0.000018628151539367"},{"denom":"ASSET16","index":"0.000011492271696690"},{"denom":"ASSET17","index":"0.000009021688715966"},{"denom":"ASSET18","index":"0.000003727673632537"},{"denom":"ASSET2","index":"0.000007845443656426"},{"denom":"ASSET3","index":"0.000002178852781858"},{"denom":"ASSET4","index":"0.000021002318737231"},{"denom":"ASSET5","index":"0.000001697417622442"},{"denom":"ASSET6","index":"0.000006850319017638"},{"denom":"ASSET7","index":"0.000010761758840612"},{"denom":"ASSET8","index":"0.000014701087498525"},{"denom":"ASSET9","index":"0.000006240132889304"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001327266579501"},{"denom":"ASSET1","index":"0.000011071143497688"},{"denom":"ASSET10","index":"0.000007713614824674"},{"denom":"ASSET11","index":"0.000010710668391289"},{"denom":"ASSET12","index":"0.000009644435509525"},{"denom":"ASSET13","index":"0.000003318857014090"},{"denom":"ASSET14","index":"0.000010004910615924"},{"denom":"ASSET15","index":"0.000007152875770275"},{"denom":"ASSET16","index":"0.000004987262870528"},{"denom":"ASSET17","index":"0.000003541219052903"},{"denom":"ASSET18","index":"0.000001686360555224"},{"denom":"ASSET2","index":"0.000003267755179083"},{"denom":"ASSET3","index":"0.000000955742427695"},{"denom":"ASSET4","index":"0.000008998066353223"},{"denom":"ASSET5","index":"0.000000741667172936"},{"denom":"ASSET6","index":"0.000003019151657428"},{"denom":"ASSET7","index":"0.000004625406633453"},{"denom":"ASSET8","index":"0.000006035541053505"},{"denom":"ASSET9","index":"0.000002606193585346"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000002827520151011"},{"denom":"ASSET1","index":"0.000024027878888002"},{"denom":"ASSET10","index":"0.000019355847170480"},{"denom":"ASSET11","index":"0.000023924401086085"},{"denom":"ASSET12","index":"0.000022900407365256"},{"denom":"ASSET13","index":"0.000007521399074311"},{"denom":"ASSET14","index":"0.000021930603354990"},{"denom":"ASSET15","index":"0.000017401215805238"},{"denom":"ASSET16","index":"0.000010647310435771"},{"denom":"ASSET17","index":"0.000008415007538097"},{"denom":"ASSET18","index":"0.000003442593620109"},{"denom":"ASSET2","index":"0.000007289635767836"},{"denom":"ASSET3","index":"0.000002016810506595"},{"denom":"ASSET4","index":"0.000019477449509443"},{"denom":"ASSET5","index":"0.000001571692130579"},{"denom":"ASSET6","index":"0.000006339251488002"},{"denom":"ASSET7","index":"0.000009978075244424"},{"denom":"ASSET8","index":"0.000013673195599374"},{"denom":"ASSET9","index":"0.000005796522499795"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001571435631869"},{"denom":"ASSET1","index":"0.000013104175099655"},{"denom":"ASSET10","index":"0.000009129715488355"},{"denom":"ASSET11","index":"0.000012677036600848"},{"denom":"ASSET12","index":"0.000011415350365342"},{"denom":"ASSET13","index":"0.000003928095848150"},{"denom":"ASSET14","index":"0.000011841502401104"},{"denom":"ASSET15","index":"0.000008466812321615"},{"denom":"ASSET16","index":"0.000005902994865728"},{"denom":"ASSET17","index":"0.000004192467944409"},{"denom":"ASSET18","index":"0.000001996601204585"},{"denom":"ASSET2","index":"0.000003867921602360"},{"denom":"ASSET3","index":"0.000001131473113468"},{"denom":"ASSET4","index":"0.000010648868578800"},{"denom":"ASSET5","index":"0.000000877952110712"},{"denom":"ASSET6","index":"0.000003573955614728"},{"denom":"ASSET7","index":"0.000005473883440830"},{"denom":"ASSET8","index":"0.000007142978914228"},{"denom":"ASSET9","index":"0.000003084669944040"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003141123056438"},{"denom":"ASSET1","index":"0.000026662100889972"},{"denom":"ASSET10","index":"0.000021312054987248"},{"denom":"ASSET11","index":"0.000026503481745319"},{"denom":"ASSET12","index":"0.000025286293002787"},{"denom":"ASSET13","index":"0.000008324908472884"},{"denom":"ASSET14","index":"0.000024319980387721"},{"denom":"ASSET15","index":"0.000019190708128374"},{"denom":"ASSET16","index":"0.000011824997422058"},{"denom":"ASSET17","index":"0.000009292034078872"},{"denom":"ASSET18","index":"0.000003834040785154"},{"denom":"ASSET2","index":"0.000008076003481032"},{"denom":"ASSET3","index":"0.000002241608843356"},{"denom":"ASSET4","index":"0.000021614431804298"},{"denom":"ASSET5","index":"0.000001746420421862"},{"denom":"ASSET6","index":"0.000007047828859327"},{"denom":"ASSET7","index":"0.000011075197168484"},{"denom":"ASSET8","index":"0.000015134882092008"},{"denom":"ASSET9","index":"0.000006422749115253"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[{"denom":"ASSET0","index":"0.000001554974273829"},{"denom":"ASSET1","index":"0.000012964145980643"},{"denom":"ASSET10","index":"0.000009032293690170"},{"denom":"ASSET11","index":"0.000012541598623624"},{"denom":"ASSET12","index":"0.000011293609918011"},{"denom":"ASSET13","index":"0.000003886649549954"},{"denom":"ASSET14","index":"0.000011715371140412"},{"denom":"ASSET15","index":"0.000008376264351692"},{"denom":"ASSET16","index":"0.000005840194074962"},{"denom":"ASSET17","index":"0.000004147646243034"},{"denom":"ASSET18","index":"0.000001975556294303"},{"denom":"ASSET2","index":"0.000003826903319009"},{"denom":"ASSET3","index":"0.000001119455695618"},{"denom":"ASSET4","index":"0.000010535776146539"},{"denom":"ASSET5","index":"0.000000869071819878"},{"denom":"ASSET6","index":"0.000003536426577765"},{"denom":"ASSET7","index":"0.000005416074448708"},{"denom":"ASSET8","index":"0.000007067350213206"},{"denom":"ASSET9","index":"0.000003052560720565"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[{"denom":"ASSET0","index":"0.000003054120352223"},{"denom":"ASSET1","index":"0.000025909289170716"},{"denom":"ASSET10","index":"0.000020664041936079"},{"denom":"ASSET11","index":"0.000025743066158465"},{"denom":"ASSET12","index":"0.000024537849095602"},{"denom":"ASSET13","index":"0.000008085297309351"},{"denom":"ASSET14","index":"0.000023630023251940"},{"denom":"ASSET15","index":"0.000018615490114349"},{"denom":"ASSET16","index":"0.000011495216270003"},{"denom":"ASSET17","index":"0.000009017197770141"},{"denom":"ASSET18","index":"0.000003730110182262"},{"denom":"ASSET2","index":"0.000007845299155388"},{"denom":"ASSET3","index":"0.000002179886924088"},{"denom":"ASSET4","index":"0.000021005968780047"},{"denom":"ASSET5","index":"0.000001698230665763"},{"denom":"ASSET6","index":"0.000006853367473041"},{"denom":"ASSET7","index":"0.000010764057351149"},{"denom":"ASSET8","index":"0.000014698116791571"},{"denom":"ASSET9","index":"0.000006239964640655"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424653413712695078","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424651963502857288","reward_histories":[]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET8","snapshot":{"prev_reward_weight":"0.424650513297972028","reward_histories":[]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001587610635106"},{"denom":"ASSET1","index":"0.000013244938725362"},{"denom":"ASSET10","index":"0.000009227311812032"},{"denom":"ASSET11","index":"0.000012812935831455"},{"denom":"ASSET12","index":"0.000011538527294432"},{"denom":"ASSET13","index":"0.000003970376596809"},{"denom":"ASSET14","index":"0.000011969180179294"},{"denom":"ASSET15","index":"0.000008557707326477"},{"denom":"ASSET16","index":"0.000005967039972082"},{"denom":"ASSET17","index":"0.000004237678387413"},{"denom":"ASSET18","index":"0.000002018263519969"},{"denom":"ASSET2","index":"0.000003909626189853"},{"denom":"ASSET3","index":"0.000001143457659809"},{"denom":"ASSET4","index":"0.000010763622103487"},{"denom":"ASSET5","index":"0.000000886955941552"},{"denom":"ASSET6","index":"0.000003612624200292"},{"denom":"ASSET7","index":"0.000005533687069132"},{"denom":"ASSET8","index":"0.000007219848364411"},{"denom":"ASSET9","index":"0.000003118520890387"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003152887181228"},{"denom":"ASSET1","index":"0.000026760532918289"},{"denom":"ASSET10","index":"0.000021371603424459"},{"denom":"ASSET11","index":"0.000026596151859305"},{"denom":"ASSET12","index":"0.000025366346961436"},{"denom":"ASSET13","index":"0.000008353980761099"},{"denom":"ASSET14","index":"0.000024408754798213"},{"denom":"ASSET15","index":"0.000019248058608344"},{"denom":"ASSET16","index":"0.000011870971278696"},{"denom":"ASSET17","index":"0.000009321801721671"},{"denom":"ASSET18","index":"0.000003850124607081"},{"denom":"ASSET2","index":"0.000008105134387478"},{"denom":"ASSET3","index":"0.000002250596051831"},{"denom":"ASSET4","index":"0.000021694971342643"},{"denom":"ASSET5","index":"0.000001752750611640"},{"denom":"ASSET6","index":"0.000007075802880646"},{"denom":"ASSET7","index":"0.000011117440314842"},{"denom":"ASSET8","index":"0.000015186957305377"},{"denom":"ASSET9","index":"0.000006446159830056"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001450981944084"},{"denom":"ASSET1","index":"0.000012097851501865"},{"denom":"ASSET10","index":"0.000008428524260541"},{"denom":"ASSET11","index":"0.000011703479004578"},{"denom":"ASSET12","index":"0.000010538773481717"},{"denom":"ASSET13","index":"0.000003626563958485"},{"denom":"ASSET14","index":"0.000010932552044520"},{"denom":"ASSET15","index":"0.000007816771742159"},{"denom":"ASSET16","index":"0.000005449942823954"},{"denom":"ASSET17","index":"0.000003870671031354"},{"denom":"ASSET18","index":"0.000001843572637920"},{"denom":"ASSET2","index":"0.000003571328051486"},{"denom":"ASSET3","index":"0.000001044730757120"},{"denom":"ASSET4","index":"0.000009831991445917"},{"denom":"ASSET5","index":"0.000000810720570477"},{"denom":"ASSET6","index":"0.000003299899992359"},{"denom":"ASSET7","index":"0.000005054382457699"},{"denom":"ASSET8","index":"0.000006595048508847"},{"denom":"ASSET9","index":"0.000002848509784621"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000002831039632868"},{"denom":"ASSET1","index":"0.000024014703977493"},{"denom":"ASSET10","index":"0.000019136467933987"},{"denom":"ASSET11","index":"0.000023856136612857"},{"denom":"ASSET12","index":"0.000022731094165303"},{"denom":"ASSET13","index":"0.000007491812146677"},{"denom":"ASSET14","index":"0.000021900750691559"},{"denom":"ASSET15","index":"0.000017242457090593"},{"denom":"ASSET16","index":"0.000010655585625623"},{"denom":"ASSET17","index":"0.000008353141870908"},{"denom":"ASSET18","index":"0.000003458892129556"},{"denom":"ASSET2","index":"0.000007270317321266"},{"denom":"ASSET3","index":"0.000002020551075646"},{"denom":"ASSET4","index":"0.000019470118745656"},{"denom":"ASSET5","index":"0.000001574098937698"},{"denom":"ASSET6","index":"0.000006353413461243"},{"denom":"ASSET7","index":"0.000009977493764026"},{"denom":"ASSET8","index":"0.000013619759476676"},{"denom":"ASSET9","index":"0.000005782490697784"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001596167964962"},{"denom":"ASSET1","index":"0.000013307648687747"},{"denom":"ASSET10","index":"0.000009271254138767"},{"denom":"ASSET11","index":"0.000012873344596610"},{"denom":"ASSET12","index":"0.000011592750107942"},{"denom":"ASSET13","index":"0.000003989527201016"},{"denom":"ASSET14","index":"0.000012025715131995"},{"denom":"ASSET15","index":"0.000008598149750858"},{"denom":"ASSET16","index":"0.000005994556982506"},{"denom":"ASSET17","index":"0.000004257340617956"},{"denom":"ASSET18","index":"0.000002028240277625"},{"denom":"ASSET2","index":"0.000003928376470814"},{"denom":"ASSET3","index":"0.000001148919558672"},{"denom":"ASSET4","index":"0.000010814752131731"},{"denom":"ASSET5","index":"0.000000891818678410"},{"denom":"ASSET6","index":"0.000003630210866621"},{"denom":"ASSET7","index":"0.000005559360179979"},{"denom":"ASSET8","index":"0.000007254619109209"},{"denom":"ASSET9","index":"0.000003133416978198"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003160678210357"},{"denom":"ASSET1","index":"0.000026816731621709"},{"denom":"ASSET10","index":"0.000021409695697867"},{"denom":"ASSET11","index":"0.000026650151208928"},{"denom":"ASSET12","index":"0.000025413985003091"},{"denom":"ASSET13","index":"0.000008371194471357"},{"denom":"ASSET14","index":"0.000024459575922385"},{"denom":"ASSET15","index":"0.000019283728762326"},{"denom":"ASSET16","index":"0.000011895729224726"},{"denom":"ASSET17","index":"0.000009339186085895"},{"denom":"ASSET18","index":"0.000003859320220004"},{"denom":"ASSET2","index":"0.000008121656282140"},{"denom":"ASSET3","index":"0.000002255587694637"},{"denom":"ASSET4","index":"0.000021740936259308"},{"denom":"ASSET5","index":"0.000001757304707579"},{"denom":"ASSET6","index":"0.000007091577992612"},{"denom":"ASSET7","index":"0.000011140302591406"},{"denom":"ASSET8","index":"0.000015217956063596"},{"denom":"ASSET9","index":"0.000006459479788296"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001539653287763"},{"denom":"ASSET1","index":"0.000012837628062054"},{"denom":"ASSET10","index":"0.000008944076712630"},{"denom":"ASSET11","index":"0.000012418678362380"},{"denom":"ASSET12","index":"0.000011182855597091"},{"denom":"ASSET13","index":"0.000003848344731893"},{"denom":"ASSET14","index":"0.000011600753980079"},{"denom":"ASSET15","index":"0.000008294363000211"},{"denom":"ASSET16","index":"0.000005782767435536"},{"denom":"ASSET17","index":"0.000004106968636837"},{"denom":"ASSET18","index":"0.000001956500354065"},{"denom":"ASSET2","index":"0.000003789470997435"},{"denom":"ASSET3","index":"0.000001108613446191"},{"denom":"ASSET4","index":"0.000010432741141086"},{"denom":"ASSET5","index":"0.000000860502708115"},{"denom":"ASSET6","index":"0.000003501935883605"},{"denom":"ASSET7","index":"0.000005362766419174"},{"denom":"ASSET8","index":"0.000006998089525433"},{"denom":"ASSET9","index":"0.000003022535474442"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003102081054533"},{"denom":"ASSET1","index":"0.000026328097047411"},{"denom":"ASSET10","index":"0.000021065731925672"},{"denom":"ASSET11","index":"0.000026176422512857"},{"denom":"ASSET12","index":"0.000024984864029023"},{"denom":"ASSET13","index":"0.000008223750690350"},{"denom":"ASSET14","index":"0.000024017391771060"},{"denom":"ASSET15","index":"0.000018965095888316"},{"denom":"ASSET16","index":"0.000011675661088751"},{"denom":"ASSET17","index":"0.000009181817821335"},{"denom":"ASSET18","index":"0.000003784851704842"},{"denom":"ASSET2","index":"0.000007977007181168"},{"denom":"ASSET3","index":"0.000002213531006169"},{"denom":"ASSET4","index":"0.000021343717572048"},{"denom":"ASSET5","index":"0.000001724500934679"},{"denom":"ASSET6","index":"0.000006958604580417"},{"denom":"ASSET7","index":"0.000010936011139136"},{"denom":"ASSET8","index":"0.000014950117004491"},{"denom":"ASSET9","index":"0.000006344046059941"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001722784092424"},{"denom":"ASSET1","index":"0.000014376047839207"},{"denom":"ASSET10","index":"0.000010014727915911"},{"denom":"ASSET11","index":"0.000013905627425621"},{"denom":"ASSET12","index":"0.000012523636788373"},{"denom":"ASSET13","index":"0.000004309050988454"},{"denom":"ASSET14","index":"0.000012989875687172"},{"denom":"ASSET15","index":"0.000009287144342897"},{"denom":"ASSET16","index":"0.000006475075648346"},{"denom":"ASSET17","index":"0.000004597575508787"},{"denom":"ASSET18","index":"0.000002191113748617"},{"denom":"ASSET2","index":"0.000004242146751855"},{"denom":"ASSET3","index":"0.000001239819134475"},{"denom":"ASSET4","index":"0.000011683152316098"},{"denom":"ASSET5","index":"0.000000961748401110"},{"denom":"ASSET6","index":"0.000003920170113222"},{"denom":"ASSET7","index":"0.000006004655234759"},{"denom":"ASSET8","index":"0.000007836158711656"},{"denom":"ASSET9","index":"0.000003384936220430"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003308323901116"},{"denom":"ASSET1","index":"0.000028066718381779"},{"denom":"ASSET10","index":"0.000022316311421496"},{"denom":"ASSET11","index":"0.000027867424204892"},{"denom":"ASSET12","index":"0.000026530665881565"},{"denom":"ASSET13","index":"0.000008749579510737"},{"denom":"ASSET14","index":"0.000025590688346390"},{"denom":"ASSET15","index":"0.000020116135001180"},{"denom":"ASSET16","index":"0.000012455644018572"},{"denom":"ASSET17","index":"0.000009747635771928"},{"denom":"ASSET18","index":"0.000004046709206696"},{"denom":"ASSET2","index":"0.000008491843085820"},{"denom":"ASSET3","index":"0.000002361259343526"},{"denom":"ASSET4","index":"0.000022756236881458"},{"denom":"ASSET5","index":"0.000001838827056256"},{"denom":"ASSET6","index":"0.000007428217086977"},{"denom":"ASSET7","index":"0.000011660835649526"},{"denom":"ASSET8","index":"0.000015906513514404"},{"denom":"ASSET9","index":"0.000006755948018281"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001677980890787"},{"denom":"ASSET1","index":"0.000013990275877081"},{"denom":"ASSET10","index":"0.000009746835585844"},{"denom":"ASSET11","index":"0.000013534047272362"},{"denom":"ASSET12","index":"0.000012187401487418"},{"denom":"ASSET13","index":"0.000004194217559326"},{"denom":"ASSET14","index":"0.000012642160756856"},{"denom":"ASSET15","index":"0.000009039350648091"},{"denom":"ASSET16","index":"0.000006301979019776"},{"denom":"ASSET17","index":"0.000004475595265619"},{"denom":"ASSET18","index":"0.000002132005492585"},{"denom":"ASSET2","index":"0.000004129566806967"},{"denom":"ASSET3","index":"0.000001207793600899"},{"denom":"ASSET4","index":"0.000011368981735957"},{"denom":"ASSET5","index":"0.000000937435909214"},{"denom":"ASSET6","index":"0.000003815863724495"},{"denom":"ASSET7","index":"0.000005844281079776"},{"denom":"ASSET8","index":"0.000007626584775507"},{"denom":"ASSET9","index":"0.000003293515032135"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003299297789724"},{"denom":"ASSET1","index":"0.000027989603079017"},{"denom":"ASSET10","index":"0.000022326156077139"},{"denom":"ASSET11","index":"0.000027810817552502"},{"denom":"ASSET12","index":"0.000026510364756940"},{"denom":"ASSET13","index":"0.000008734817330461"},{"denom":"ASSET14","index":"0.000025527438517331"},{"denom":"ASSET15","index":"0.000020112836713905"},{"denom":"ASSET16","index":"0.000012417417558556"},{"denom":"ASSET17","index":"0.000009741881197111"},{"denom":"ASSET18","index":"0.000004029624902086"},{"denom":"ASSET2","index":"0.000008475129511821"},{"denom":"ASSET3","index":"0.000002354634361983"},{"denom":"ASSET4","index":"0.000022691681830907"},{"denom":"ASSET5","index":"0.000001834207215432"},{"denom":"ASSET6","index":"0.000007402948949368"},{"denom":"ASSET7","index":"0.000011627814435586"},{"denom":"ASSET8","index":"0.000015878876786083"},{"denom":"ASSET9","index":"0.000006740310437402"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001570026110869"},{"denom":"ASSET1","index":"0.000013093495665706"},{"denom":"ASSET10","index":"0.000009121814411369"},{"denom":"ASSET11","index":"0.000012665871768525"},{"denom":"ASSET12","index":"0.000011405375746022"},{"denom":"ASSET13","index":"0.000003924443730811"},{"denom":"ASSET14","index":"0.000011831756550478"},{"denom":"ASSET15","index":"0.000008459245989284"},{"denom":"ASSET16","index":"0.000005898474977098"},{"denom":"ASSET17","index":"0.000004187979388376"},{"denom":"ASSET18","index":"0.000001995163822601"},{"denom":"ASSET2","index":"0.000003864775280042"},{"denom":"ASSET3","index":"0.000001129971286445"},{"denom":"ASSET4","index":"0.000010639630627815"},{"denom":"ASSET5","index":"0.000000877623463400"},{"denom":"ASSET6","index":"0.000003571405397092"},{"denom":"ASSET7","index":"0.000005469607987193"},{"denom":"ASSET8","index":"0.000007137838423287"},{"denom":"ASSET9","index":"0.000003082869956418"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003142586597057"},{"denom":"ASSET1","index":"0.000026671940208455"},{"denom":"ASSET10","index":"0.000021322845581004"},{"denom":"ASSET11","index":"0.000026513185667064"},{"denom":"ASSET12","index":"0.000025297681895631"},{"denom":"ASSET13","index":"0.000008328263582513"},{"denom":"ASSET14","index":"0.000024329302916923"},{"denom":"ASSET15","index":"0.000019199384187435"},{"denom":"ASSET16","index":"0.000011829863063918"},{"denom":"ASSET17","index":"0.000009295955073087"},{"denom":"ASSET18","index":"0.000003835509513951"},{"denom":"ASSET2","index":"0.000008079410847125"},{"denom":"ASSET3","index":"0.000002242309830967"},{"denom":"ASSET4","index":"0.000021622076491366"},{"denom":"ASSET5","index":"0.000001747112267207"},{"denom":"ASSET6","index":"0.000007050444762949"},{"denom":"ASSET7","index":"0.000011079003337441"},{"denom":"ASSET8","index":"0.000015142122511204"},{"denom":"ASSET9","index":"0.000006425848418438"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001808467589320"},{"denom":"ASSET1","index":"0.000015078627759778"},{"denom":"ASSET10","index":"0.000010504031371633"},{"denom":"ASSET11","index":"0.000014586692317421"},{"denom":"ASSET12","index":"0.000013135079536696"},{"denom":"ASSET13","index":"0.000004520160908868"},{"denom":"ASSET14","index":"0.000013624998850191"},{"denom":"ASSET15","index":"0.000009741934661752"},{"denom":"ASSET16","index":"0.000006792338136474"},{"denom":"ASSET17","index":"0.000004822580238185"},{"denom":"ASSET18","index":"0.000002296370773952"},{"denom":"ASSET2","index":"0.000004449596398694"},{"denom":"ASSET3","index":"0.000001300403116066"},{"denom":"ASSET4","index":"0.000012254031223951"},{"denom":"ASSET5","index":"0.000001010080559921"},{"denom":"ASSET6","index":"0.000004112902878720"},{"denom":"ASSET7","index":"0.000006298386565256"},{"denom":"ASSET8","index":"0.000008219757370854"},{"denom":"ASSET9","index":"0.000003550402926189"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003309574221953"},{"denom":"ASSET1","index":"0.000028041386020893"},{"denom":"ASSET10","index":"0.000022151472675705"},{"denom":"ASSET11","index":"0.000027806413413432"},{"denom":"ASSET12","index":"0.000026397319662942"},{"denom":"ASSET13","index":"0.000008723998941637"},{"denom":"ASSET14","index":"0.000025556208464743"},{"denom":"ASSET15","index":"0.000019995491235522"},{"denom":"ASSET16","index":"0.000012454763771642"},{"denom":"ASSET17","index":"0.000009698403814011"},{"denom":"ASSET18","index":"0.000004053515914738"},{"denom":"ASSET2","index":"0.000008473190716338"},{"denom":"ASSET3","index":"0.000002361530218445"},{"denom":"ASSET4","index":"0.000022738669483779"},{"denom":"ASSET5","index":"0.000001840125976242"},{"denom":"ASSET6","index":"0.000007434008870747"},{"denom":"ASSET7","index":"0.000011653935721338"},{"denom":"ASSET8","index":"0.000015861166565423"},{"denom":"ASSET9","index":"0.000006742103174023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001541663174382"},{"denom":"ASSET1","index":"0.000012852134347969"},{"denom":"ASSET10","index":"0.000008953505358908"},{"denom":"ASSET11","index":"0.000012432624080325"},{"denom":"ASSET12","index":"0.000011194846435509"},{"denom":"ASSET13","index":"0.000003852675567517"},{"denom":"ASSET14","index":"0.000011614356703153"},{"denom":"ASSET15","index":"0.000008302745615107"},{"denom":"ASSET16","index":"0.000005788648746115"},{"denom":"ASSET17","index":"0.000004110607675539"},{"denom":"ASSET18","index":"0.000001958208705152"},{"denom":"ASSET2","index":"0.000003793380830041"},{"denom":"ASSET3","index":"0.000001108811590805"},{"denom":"ASSET4","index":"0.000010443285637998"},{"denom":"ASSET5","index":"0.000000861256061842"},{"denom":"ASSET6","index":"0.000003505801353281"},{"denom":"ASSET7","index":"0.000005369138478471"},{"denom":"ASSET8","index":"0.000007005673232815"},{"denom":"ASSET9","index":"0.000003025513979724"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003039218640043"},{"denom":"ASSET1","index":"0.000025782167100542"},{"denom":"ASSET10","index":"0.000020571830356487"},{"denom":"ASSET11","index":"0.000025618833387376"},{"denom":"ASSET12","index":"0.000024423552320522"},{"denom":"ASSET13","index":"0.000008046369560384"},{"denom":"ASSET14","index":"0.000023515194162679"},{"denom":"ASSET15","index":"0.000018530055863607"},{"denom":"ASSET16","index":"0.000011436803083329"},{"denom":"ASSET17","index":"0.000008974370950503"},{"denom":"ASSET18","index":"0.000003710743638587"},{"denom":"ASSET2","index":"0.000007806913274081"},{"denom":"ASSET3","index":"0.000002167934051431"},{"denom":"ASSET4","index":"0.000020901035076857"},{"denom":"ASSET5","index":"0.000001689640060433"},{"denom":"ASSET6","index":"0.000006819038075969"},{"denom":"ASSET7","index":"0.000010710838619674"},{"denom":"ASSET8","index":"0.000014627524271874"},{"denom":"ASSET9","index":"0.000006209166066794"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001647112085871"},{"denom":"ASSET1","index":"0.000013744257107488"},{"denom":"ASSET10","index":"0.000009576415679235"},{"denom":"ASSET11","index":"0.000013296650962579"},{"denom":"ASSET12","index":"0.000011973464376313"},{"denom":"ASSET13","index":"0.000004120724991946"},{"denom":"ASSET14","index":"0.000012421070521222"},{"denom":"ASSET15","index":"0.000008879485058873"},{"denom":"ASSET16","index":"0.000006191885004573"},{"denom":"ASSET17","index":"0.000004397534055245"},{"denom":"ASSET18","index":"0.000002094718230780"},{"denom":"ASSET2","index":"0.000004055939892025"},{"denom":"ASSET3","index":"0.000001185763647039"},{"denom":"ASSET4","index":"0.000011170521774262"},{"denom":"ASSET5","index":"0.000000920733692817"},{"denom":"ASSET6","index":"0.000003749683056035"},{"denom":"ASSET7","index":"0.000005742315674818"},{"denom":"ASSET8","index":"0.000007491513372686"},{"denom":"ASSET9","index":"0.000003235328626359"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003240628198198"},{"denom":"ASSET1","index":"0.000027504329283847"},{"denom":"ASSET10","index":"0.000021940320319100"},{"denom":"ASSET11","index":"0.000027329345632586"},{"denom":"ASSET12","index":"0.000026051323397008"},{"denom":"ASSET13","index":"0.000008583813762496"},{"denom":"ASSET14","index":"0.000025085743554439"},{"denom":"ASSET15","index":"0.000019763439018939"},{"denom":"ASSET16","index":"0.000012202670980955"},{"denom":"ASSET17","index":"0.000009573761377605"},{"denom":"ASSET18","index":"0.000003959875003044"},{"denom":"ASSET2","index":"0.000008327243811102"},{"denom":"ASSET3","index":"0.000002312908746824"},{"denom":"ASSET4","index":"0.000022299606884078"},{"denom":"ASSET5","index":"0.000001802093087045"},{"denom":"ASSET6","index":"0.000007275447910852"},{"denom":"ASSET7","index":"0.000011427132859276"},{"denom":"ASSET8","index":"0.000015602768933976"},{"denom":"ASSET9","index":"0.000006623309483786"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001570100817458"},{"denom":"ASSET1","index":"0.000013089401919768"},{"denom":"ASSET10","index":"0.000009119446705996"},{"denom":"ASSET11","index":"0.000012662761138201"},{"denom":"ASSET12","index":"0.000011403229713207"},{"denom":"ASSET13","index":"0.000003924467777503"},{"denom":"ASSET14","index":"0.000011828301962489"},{"denom":"ASSET15","index":"0.000008457526081653"},{"denom":"ASSET16","index":"0.000005896112859965"},{"denom":"ASSET17","index":"0.000004187981201412"},{"denom":"ASSET18","index":"0.000001993604534455"},{"denom":"ASSET2","index":"0.000003863295018381"},{"denom":"ASSET3","index":"0.000001129343245325"},{"denom":"ASSET4","index":"0.000010637785958043"},{"denom":"ASSET5","index":"0.000000876809547412"},{"denom":"ASSET6","index":"0.000003569979481054"},{"denom":"ASSET7","index":"0.000005467903546113"},{"denom":"ASSET8","index":"0.000007135253365252"},{"denom":"ASSET9","index":"0.000003082165940365"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003152920186871"},{"denom":"ASSET1","index":"0.000026760622644749"},{"denom":"ASSET10","index":"0.000021403995558307"},{"denom":"ASSET11","index":"0.000026604821287493"},{"denom":"ASSET12","index":"0.000025390105019040"},{"denom":"ASSET13","index":"0.000008358570294936"},{"denom":"ASSET14","index":"0.000024411618525071"},{"denom":"ASSET15","index":"0.000019270968708391"},{"denom":"ASSET16","index":"0.000011868219590271"},{"denom":"ASSET17","index":"0.000009330682788205"},{"denom":"ASSET18","index":"0.000003846613833157"},{"denom":"ASSET2","index":"0.000008107095494272"},{"denom":"ASSET3","index":"0.000002249072663818"},{"denom":"ASSET4","index":"0.000021694789218154"},{"denom":"ASSET5","index":"0.000001752328837510"},{"denom":"ASSET6","index":"0.000007072706136469"},{"denom":"ASSET7","index":"0.000011115912260277"},{"denom":"ASSET8","index":"0.000015194187602297"},{"denom":"ASSET9","index":"0.000006447849146068"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001655272585709"},{"denom":"ASSET1","index":"0.000013804891217292"},{"denom":"ASSET10","index":"0.000009617831976915"},{"denom":"ASSET11","index":"0.000013354722791997"},{"denom":"ASSET12","index":"0.000012025575872058"},{"denom":"ASSET13","index":"0.000004138592201887"},{"denom":"ASSET14","index":"0.000012474922822124"},{"denom":"ASSET15","index":"0.000008919578032571"},{"denom":"ASSET16","index":"0.000006218567480803"},{"denom":"ASSET17","index":"0.000004416250829168"},{"denom":"ASSET18","index":"0.000002103798060547"},{"denom":"ASSET2","index":"0.000004074517134053"},{"denom":"ASSET3","index":"0.000001191960556756"},{"denom":"ASSET4","index":"0.000011218887197534"},{"denom":"ASSET5","index":"0.000000924981107448"},{"denom":"ASSET6","index":"0.000003765642448085"},{"denom":"ASSET7","index":"0.000005766756105051"},{"denom":"ASSET8","index":"0.000007525534569569"},{"denom":"ASSET9","index":"0.000003250577479728"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003218229550028"},{"denom":"ASSET1","index":"0.000027301798081180"},{"denom":"ASSET10","index":"0.000021745417841688"},{"denom":"ASSET11","index":"0.000027119412726222"},{"denom":"ASSET12","index":"0.000025834540696398"},{"denom":"ASSET13","index":"0.000008516471999212"},{"denom":"ASSET14","index":"0.000024897496810197"},{"denom":"ASSET15","index":"0.000019595694306931"},{"denom":"ASSET16","index":"0.000012114595919920"},{"denom":"ASSET17","index":"0.000009493460517354"},{"denom":"ASSET18","index":"0.000003932937797970"},{"denom":"ASSET2","index":"0.000008264095290285"},{"denom":"ASSET3","index":"0.000002297232512411"},{"denom":"ASSET4","index":"0.000022135581489268"},{"denom":"ASSET5","index":"0.000001789675045728"},{"denom":"ASSET6","index":"0.000007223884768794"},{"denom":"ASSET7","index":"0.000011342725097550"},{"denom":"ASSET8","index":"0.000015481678980085"},{"denom":"ASSET9","index":"0.000006573861400446"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001621688869515"},{"denom":"ASSET1","index":"0.000013520143478358"},{"denom":"ASSET10","index":"0.000009419470546393"},{"denom":"ASSET11","index":"0.000013079418684764"},{"denom":"ASSET12","index":"0.000011778054243646"},{"denom":"ASSET13","index":"0.000004053107355591"},{"denom":"ASSET14","index":"0.000012218035825109"},{"denom":"ASSET15","index":"0.000008735715386011"},{"denom":"ASSET16","index":"0.000006090623412316"},{"denom":"ASSET17","index":"0.000004325494601547"},{"denom":"ASSET18","index":"0.000002060555632782"},{"denom":"ASSET2","index":"0.000003991049142665"},{"denom":"ASSET3","index":"0.000001167586257565"},{"denom":"ASSET4","index":"0.000010987648142487"},{"denom":"ASSET5","index":"0.000000905975587506"},{"denom":"ASSET6","index":"0.000003688190199343"},{"denom":"ASSET7","index":"0.000005648412194460"},{"denom":"ASSET8","index":"0.000007370434701640"},{"denom":"ASSET9","index":"0.000003183549162496"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003224207736427"},{"denom":"ASSET1","index":"0.000027358045975387"},{"denom":"ASSET10","index":"0.000021853454393362"},{"denom":"ASSET11","index":"0.000027191663823691"},{"denom":"ASSET12","index":"0.000025935625558190"},{"denom":"ASSET13","index":"0.000008541293337334"},{"denom":"ASSET14","index":"0.000024954691173737"},{"denom":"ASSET15","index":"0.000019681390400685"},{"denom":"ASSET16","index":"0.000012135703886829"},{"denom":"ASSET17","index":"0.000009530848033034"},{"denom":"ASSET18","index":"0.000003936224347496"},{"denom":"ASSET2","index":"0.000008286598878032"},{"denom":"ASSET3","index":"0.000002301038846536"},{"denom":"ASSET4","index":"0.000022179933336345"},{"denom":"ASSET5","index":"0.000001792519798769"},{"denom":"ASSET6","index":"0.000007234068845872"},{"denom":"ASSET7","index":"0.000011365474292791"},{"denom":"ASSET8","index":"0.000015527655320242"},{"denom":"ASSET9","index":"0.000006590765495457"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001684197417987"},{"denom":"ASSET1","index":"0.000014041270025306"},{"denom":"ASSET10","index":"0.000009782380002809"},{"denom":"ASSET11","index":"0.000013583439347888"},{"denom":"ASSET12","index":"0.000012231725730520"},{"denom":"ASSET13","index":"0.000004209525615418"},{"denom":"ASSET14","index":"0.000012688588478388"},{"denom":"ASSET15","index":"0.000009072403677468"},{"denom":"ASSET16","index":"0.000006325419612958"},{"denom":"ASSET17","index":"0.000004492161044183"},{"denom":"ASSET18","index":"0.000002139608271529"},{"denom":"ASSET2","index":"0.000004144674335530"},{"denom":"ASSET3","index":"0.000001212331762086"},{"denom":"ASSET4","index":"0.000011410921471639"},{"denom":"ASSET5","index":"0.000000940827523152"},{"denom":"ASSET6","index":"0.000003830097231595"},{"denom":"ASSET7","index":"0.000005866137041214"},{"denom":"ASSET8","index":"0.000007654386885887"},{"denom":"ASSET9","index":"0.000003305963379963"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003193080094990"},{"denom":"ASSET1","index":"0.000027069824276969"},{"denom":"ASSET10","index":"0.000021489349079139"},{"denom":"ASSET11","index":"0.000026870184080824"},{"denom":"ASSET12","index":"0.000025561356340007"},{"denom":"ASSET13","index":"0.000008435097288603"},{"denom":"ASSET14","index":"0.000024680442306089"},{"denom":"ASSET15","index":"0.000019377704768171"},{"denom":"ASSET16","index":"0.000012016988086595"},{"denom":"ASSET17","index":"0.000009392966467546"},{"denom":"ASSET18","index":"0.000003905368596850"},{"denom":"ASSET2","index":"0.000008189075060838"},{"denom":"ASSET3","index":"0.000002279664955012"},{"denom":"ASSET4","index":"0.000021948593995488"},{"denom":"ASSET5","index":"0.000001775351671947"},{"denom":"ASSET6","index":"0.000007168631437760"},{"denom":"ASSET7","index":"0.000011248752159293"},{"denom":"ASSET8","index":"0.000015334459676317"},{"denom":"ASSET9","index":"0.000006513651901550"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001677613648548"},{"denom":"ASSET1","index":"0.000013997394471820"},{"denom":"ASSET10","index":"0.000009752554992736"},{"denom":"ASSET11","index":"0.000013541183096442"},{"denom":"ASSET12","index":"0.000012193285851007"},{"denom":"ASSET13","index":"0.000004195070965406"},{"denom":"ASSET14","index":"0.000012649497226385"},{"denom":"ASSET15","index":"0.000009043353672830"},{"denom":"ASSET16","index":"0.000006306085420563"},{"denom":"ASSET17","index":"0.000004477092542912"},{"denom":"ASSET18","index":"0.000002131751335856"},{"denom":"ASSET2","index":"0.000004130786635239"},{"denom":"ASSET3","index":"0.000001208960144751"},{"denom":"ASSET4","index":"0.000011376252751467"},{"denom":"ASSET5","index":"0.000000937307007594"},{"denom":"ASSET6","index":"0.000003817659736684"},{"denom":"ASSET7","index":"0.000005847800357116"},{"denom":"ASSET8","index":"0.000007631172097229"},{"denom":"ASSET9","index":"0.000003295090343070"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003316222748087"},{"denom":"ASSET1","index":"0.000028147075207200"},{"denom":"ASSET10","index":"0.000022466702115272"},{"denom":"ASSET11","index":"0.000027971336509453"},{"denom":"ASSET12","index":"0.000026669877578580"},{"denom":"ASSET13","index":"0.000008784355829882"},{"denom":"ASSET14","index":"0.000025672864554615"},{"denom":"ASSET15","index":"0.000020235356040284"},{"denom":"ASSET16","index":"0.000012487172511964"},{"denom":"ASSET17","index":"0.000009799807931023"},{"denom":"ASSET18","index":"0.000004049727438870"},{"denom":"ASSET2","index":"0.000008522892941853"},{"denom":"ASSET3","index":"0.000002368075218536"},{"denom":"ASSET4","index":"0.000022820717384594"},{"denom":"ASSET5","index":"0.000001843591257654"},{"denom":"ASSET6","index":"0.000007443165294976"},{"denom":"ASSET7","index":"0.000011693499621126"},{"denom":"ASSET8","index":"0.000015972009373807"},{"denom":"ASSET9","index":"0.000006779069609364"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001520550536467"},{"denom":"ASSET1","index":"0.000012675827554874"},{"denom":"ASSET10","index":"0.000008831388003026"},{"denom":"ASSET11","index":"0.000012262725604616"},{"denom":"ASSET12","index":"0.000011042474271843"},{"denom":"ASSET13","index":"0.000003800233070086"},{"denom":"ASSET14","index":"0.000011455195131741"},{"denom":"ASSET15","index":"0.000008190012927118"},{"denom":"ASSET16","index":"0.000005710257954490"},{"denom":"ASSET17","index":"0.000004055182520937"},{"denom":"ASSET18","index":"0.000001931747034924"},{"denom":"ASSET2","index":"0.000003741926245004"},{"denom":"ASSET3","index":"0.000001094491513968"},{"denom":"ASSET4","index":"0.000010301253521611"},{"denom":"ASSET5","index":"0.000000849450412477"},{"denom":"ASSET6","index":"0.000003457632836431"},{"denom":"ASSET7","index":"0.000005295631642792"},{"denom":"ASSET8","index":"0.000006910311498182"},{"denom":"ASSET9","index":"0.000002984699699651"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003047858420945"},{"denom":"ASSET1","index":"0.000025863853767953"},{"denom":"ASSET10","index":"0.000020681482671570"},{"denom":"ASSET11","index":"0.000025712271525236"},{"denom":"ASSET12","index":"0.000024535470175220"},{"denom":"ASSET13","index":"0.000008077733573885"},{"denom":"ASSET14","index":"0.000023593590000343"},{"denom":"ASSET15","index":"0.000018621561303244"},{"denom":"ASSET16","index":"0.000011471343089677"},{"denom":"ASSET17","index":"0.000009016132124589"},{"denom":"ASSET18","index":"0.000003719208275283"},{"denom":"ASSET2","index":"0.000007835789085827"},{"denom":"ASSET3","index":"0.000002174729135607"},{"denom":"ASSET4","index":"0.000020967814383093"},{"denom":"ASSET5","index":"0.000001694402278429"},{"denom":"ASSET6","index":"0.000006836893759575"},{"denom":"ASSET7","index":"0.000010744095518390"},{"denom":"ASSET8","index":"0.000014684305897471"},{"denom":"ASSET9","index":"0.000006231971052532"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001765508823557"},{"denom":"ASSET1","index":"0.000014724618911480"},{"denom":"ASSET10","index":"0.000010258363403154"},{"denom":"ASSET11","index":"0.000014244524406828"},{"denom":"ASSET12","index":"0.000012826610887714"},{"denom":"ASSET13","index":"0.000004413772058893"},{"denom":"ASSET14","index":"0.000013305845007949"},{"denom":"ASSET15","index":"0.000009513270498085"},{"denom":"ASSET16","index":"0.000006632703470176"},{"denom":"ASSET17","index":"0.000004710604682736"},{"denom":"ASSET18","index":"0.000002243882559375"},{"denom":"ASSET2","index":"0.000004346662074372"},{"denom":"ASSET3","index":"0.000001271648168235"},{"denom":"ASSET4","index":"0.000011966226470776"},{"denom":"ASSET5","index":"0.000000986860926228"},{"denom":"ASSET6","index":"0.000004016274458267"},{"denom":"ASSET7","index":"0.000006150888196691"},{"denom":"ASSET8","index":"0.000008026526225616"},{"denom":"ASSET9","index":"0.000003466488815844"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003365151784209"},{"denom":"ASSET1","index":"0.000028538337865727"},{"denom":"ASSET10","index":"0.000022670552359626"},{"denom":"ASSET11","index":"0.000028331786642422"},{"denom":"ASSET12","index":"0.000026959391418936"},{"denom":"ASSET13","index":"0.000008894072871450"},{"denom":"ASSET14","index":"0.000026020188745878"},{"denom":"ASSET15","index":"0.000020439828986765"},{"denom":"ASSET16","index":"0.000012667128947757"},{"denom":"ASSET17","index":"0.000009907060013179"},{"denom":"ASSET18","index":"0.000004116201786219"},{"denom":"ASSET2","index":"0.000008634485522558"},{"denom":"ASSET3","index":"0.000002403102945281"},{"denom":"ASSET4","index":"0.000023139017263426"},{"denom":"ASSET5","index":"0.000001871649891727"},{"denom":"ASSET6","index":"0.000007555863827839"},{"denom":"ASSET7","index":"0.000011857581945748"},{"denom":"ASSET8","index":"0.000016169532559731"},{"denom":"ASSET9","index":"0.000006867789268222"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001833509758465"},{"denom":"ASSET1","index":"0.000015308139656127"},{"denom":"ASSET10","index":"0.000010661025831945"},{"denom":"ASSET11","index":"0.000014808091540182"},{"denom":"ASSET12","index":"0.000013334616425197"},{"denom":"ASSET13","index":"0.000004587108050268"},{"denom":"ASSET14","index":"0.000013827997232930"},{"denom":"ASSET15","index":"0.000009887618079284"},{"denom":"ASSET16","index":"0.000006893996691827"},{"denom":"ASSET17","index":"0.000004893804228047"},{"denom":"ASSET18","index":"0.000002326890566197"},{"denom":"ASSET2","index":"0.000004513767659929"},{"denom":"ASSET3","index":"0.000001320127026095"},{"denom":"ASSET4","index":"0.000012434529816496"},{"denom":"ASSET5","index":"0.000001020098156528"},{"denom":"ASSET6","index":"0.000004173734941087"},{"denom":"ASSET7","index":"0.000006393948575882"},{"denom":"ASSET8","index":"0.000008340802573961"},{"denom":"ASSET9","index":"0.000003600346434803"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003461123478470"},{"denom":"ASSET1","index":"0.000029368181297786"},{"denom":"ASSET10","index":"0.000023294808028239"},{"denom":"ASSET11","index":"0.000029147392384169"},{"denom":"ASSET12","index":"0.000027719461688447"},{"denom":"ASSET13","index":"0.000009147542663388"},{"denom":"ASSET14","index":"0.000026768604990580"},{"denom":"ASSET15","index":"0.000021008846141082"},{"denom":"ASSET16","index":"0.000013035302068339"},{"denom":"ASSET17","index":"0.000010182949549387"},{"denom":"ASSET18","index":"0.000004232564951180"},{"denom":"ASSET2","index":"0.000008877642147806"},{"denom":"ASSET3","index":"0.000002471921418528"},{"denom":"ASSET4","index":"0.000023806252184245"},{"denom":"ASSET5","index":"0.000001920199705662"},{"denom":"ASSET6","index":"0.000007776538212319"},{"denom":"ASSET7","index":"0.000012202060569359"},{"denom":"ASSET8","index":"0.000016628688342614"},{"denom":"ASSET9","index":"0.000007061722298848"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001580229076001"},{"denom":"ASSET1","index":"0.000013178675425859"},{"denom":"ASSET10","index":"0.000009181488308837"},{"denom":"ASSET11","index":"0.000012749045790152"},{"denom":"ASSET12","index":"0.000011480356468073"},{"denom":"ASSET13","index":"0.000003950572690002"},{"denom":"ASSET14","index":"0.000011909209196663"},{"denom":"ASSET15","index":"0.000008514902002442"},{"denom":"ASSET16","index":"0.000005936347281082"},{"denom":"ASSET17","index":"0.000004216274924019"},{"denom":"ASSET18","index":"0.000002008304897474"},{"denom":"ASSET2","index":"0.000003889973934875"},{"denom":"ASSET3","index":"0.000001137392019304"},{"denom":"ASSET4","index":"0.000010709664607998"},{"denom":"ASSET5","index":"0.000000883343392042"},{"denom":"ASSET6","index":"0.000003594749230410"},{"denom":"ASSET7","index":"0.000005505163831141"},{"denom":"ASSET8","index":"0.000007184060111002"},{"denom":"ASSET9","index":"0.000003102967025342"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003136420796654"},{"denom":"ASSET1","index":"0.000026617535879560"},{"denom":"ASSET10","index":"0.000021257162201233"},{"denom":"ASSET11","index":"0.000026454281403244"},{"denom":"ASSET12","index":"0.000025229520616223"},{"denom":"ASSET13","index":"0.000008309311482354"},{"denom":"ASSET14","index":"0.000024278363089230"},{"denom":"ASSET15","index":"0.000019144672836670"},{"denom":"ASSET16","index":"0.000011806881934189"},{"denom":"ASSET17","index":"0.000009271795054357"},{"denom":"ASSET18","index":"0.000003829937127836"},{"denom":"ASSET2","index":"0.000008061315465971"},{"denom":"ASSET3","index":"0.000002238409344787"},{"denom":"ASSET4","index":"0.000021579173085678"},{"denom":"ASSET5","index":"0.000001744155749232"},{"denom":"ASSET6","index":"0.000007037998659171"},{"denom":"ASSET7","index":"0.000011056982942661"},{"denom":"ASSET8","index":"0.000015105683491420"},{"denom":"ASSET9","index":"0.000006411626899884"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001065673750407"},{"denom":"ASSET1","index":"0.000008885137524612"},{"denom":"ASSET10","index":"0.000006190162379117"},{"denom":"ASSET11","index":"0.000008595321581390"},{"denom":"ASSET12","index":"0.000007740138401991"},{"denom":"ASSET13","index":"0.000002663662498568"},{"denom":"ASSET14","index":"0.000008029258508615"},{"denom":"ASSET15","index":"0.000005740999854868"},{"denom":"ASSET16","index":"0.000004002452113836"},{"denom":"ASSET17","index":"0.000002842492504350"},{"denom":"ASSET18","index":"0.000001354098020432"},{"denom":"ASSET2","index":"0.000002622608139264"},{"denom":"ASSET3","index":"0.000000767159849705"},{"denom":"ASSET4","index":"0.000007220696381306"},{"denom":"ASSET5","index":"0.000000595288209907"},{"denom":"ASSET6","index":"0.000002423598872130"},{"denom":"ASSET7","index":"0.000003711940334016"},{"denom":"ASSET8","index":"0.000004843718561268"},{"denom":"ASSET9","index":"0.000002092032733005"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000002559869929403"},{"denom":"ASSET1","index":"0.000021787096732684"},{"denom":"ASSET10","index":"0.000017783238471081"},{"denom":"ASSET11","index":"0.000021752938768967"},{"denom":"ASSET12","index":"0.000020940235345308"},{"denom":"ASSET13","index":"0.000006848308161575"},{"denom":"ASSET14","index":"0.000019904298850841"},{"denom":"ASSET15","index":"0.000015946274018453"},{"denom":"ASSET16","index":"0.000009638424477568"},{"denom":"ASSET17","index":"0.000007695902028378"},{"denom":"ASSET18","index":"0.000003102977872608"},{"denom":"ASSET2","index":"0.000006627591716064"},{"denom":"ASSET3","index":"0.000001824087350341"},{"denom":"ASSET4","index":"0.000017655906837434"},{"denom":"ASSET5","index":"0.000001421889695470"},{"denom":"ASSET6","index":"0.000005729615091854"},{"denom":"ASSET7","index":"0.000009042175373173"},{"denom":"ASSET8","index":"0.000012449153729005"},{"denom":"ASSET9","index":"0.000005268661072858"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001663945626017"},{"denom":"ASSET1","index":"0.000013874870096624"},{"denom":"ASSET10","index":"0.000009666844154779"},{"denom":"ASSET11","index":"0.000013422526194886"},{"denom":"ASSET12","index":"0.000012086742376498"},{"denom":"ASSET13","index":"0.000004159391889779"},{"denom":"ASSET14","index":"0.000012538614102973"},{"denom":"ASSET15","index":"0.000008964719539034"},{"denom":"ASSET16","index":"0.000006250183953344"},{"denom":"ASSET17","index":"0.000004438919645342"},{"denom":"ASSET18","index":"0.000002114400826704"},{"denom":"ASSET2","index":"0.000004095648229305"},{"denom":"ASSET3","index":"0.000001197908641659"},{"denom":"ASSET4","index":"0.000011275545275051"},{"denom":"ASSET5","index":"0.000000929713092403"},{"denom":"ASSET6","index":"0.000003784956906399"},{"denom":"ASSET7","index":"0.000005796423525818"},{"denom":"ASSET8","index":"0.000007563775534382"},{"denom":"ASSET9","index":"0.000003266980643136"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003299045378029"},{"denom":"ASSET1","index":"0.000027992490930804"},{"denom":"ASSET10","index":"0.000022352284005938"},{"denom":"ASSET11","index":"0.000027819914533732"},{"denom":"ASSET12","index":"0.000026530494002155"},{"denom":"ASSET13","index":"0.000008738242797579"},{"denom":"ASSET14","index":"0.000025532401567106"},{"denom":"ASSET15","index":"0.000020131602968729"},{"denom":"ASSET16","index":"0.000012417136212826"},{"denom":"ASSET17","index":"0.000009749421325842"},{"denom":"ASSET18","index":"0.000004027997856345"},{"denom":"ASSET2","index":"0.000008477931503293"},{"denom":"ASSET3","index":"0.000002354450357881"},{"denom":"ASSET4","index":"0.000022693933657862"},{"denom":"ASSET5","index":"0.000001834114741991"},{"denom":"ASSET6","index":"0.000007402245947993"},{"denom":"ASSET7","index":"0.000011628988518089"},{"denom":"ASSET8","index":"0.000015885667960333"},{"denom":"ASSET9","index":"0.000006742956926982"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001554670726054"},{"denom":"ASSET1","index":"0.000012963415617374"},{"denom":"ASSET10","index":"0.000009031685079156"},{"denom":"ASSET11","index":"0.000012540799003679"},{"denom":"ASSET12","index":"0.000011293255065955"},{"denom":"ASSET13","index":"0.000003886042255656"},{"denom":"ASSET14","index":"0.000011715237120170"},{"denom":"ASSET15","index":"0.000008376185136293"},{"denom":"ASSET16","index":"0.000005839850894644"},{"denom":"ASSET17","index":"0.000004147480761425"},{"denom":"ASSET18","index":"0.000001975383661309"},{"denom":"ASSET2","index":"0.000003826393664534"},{"denom":"ASSET3","index":"0.000001119362922759"},{"denom":"ASSET4","index":"0.000010534956487329"},{"denom":"ASSET5","index":"0.000000868711928150"},{"denom":"ASSET6","index":"0.000003536399982164"},{"denom":"ASSET7","index":"0.000005415965161990"},{"denom":"ASSET8","index":"0.000007067088929007"},{"denom":"ASSET9","index":"0.000003052231098907"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003157426180098"},{"denom":"ASSET1","index":"0.000026803913890418"},{"denom":"ASSET10","index":"0.000021467927303389"},{"denom":"ASSET11","index":"0.000026655124661377"},{"denom":"ASSET12","index":"0.000025453388278707"},{"denom":"ASSET13","index":"0.000008375182650914"},{"denom":"ASSET14","index":"0.000024453809207757"},{"denom":"ASSET15","index":"0.000019323681821282"},{"denom":"ASSET16","index":"0.000011885939188892"},{"denom":"ASSET17","index":"0.000009353763879690"},{"denom":"ASSET18","index":"0.000003851457527173"},{"denom":"ASSET2","index":"0.000008122633355733"},{"denom":"ASSET3","index":"0.000002252845423920"},{"denom":"ASSET4","index":"0.000021728796023940"},{"denom":"ASSET5","index":"0.000001755342604855"},{"denom":"ASSET6","index":"0.000007082922688985"},{"denom":"ASSET7","index":"0.000011133765978354"},{"denom":"ASSET8","index":"0.000015225414484063"},{"denom":"ASSET9","index":"0.000006459804222065"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001578706846766"},{"denom":"ASSET1","index":"0.000013164667632738"},{"denom":"ASSET10","index":"0.000009171819989970"},{"denom":"ASSET11","index":"0.000012734981690366"},{"denom":"ASSET12","index":"0.000011467468005207"},{"denom":"ASSET13","index":"0.000003946168668528"},{"denom":"ASSET14","index":"0.000011895957050803"},{"denom":"ASSET15","index":"0.000008505148486066"},{"denom":"ASSET16","index":"0.000005930623522158"},{"denom":"ASSET17","index":"0.000004211879752669"},{"denom":"ASSET18","index":"0.000002005998995588"},{"denom":"ASSET2","index":"0.000003886323829757"},{"denom":"ASSET3","index":"0.000001135855039864"},{"denom":"ASSET4","index":"0.000010697863378618"},{"denom":"ASSET5","index":"0.000000882112923477"},{"denom":"ASSET6","index":"0.000003590690326231"},{"denom":"ASSET7","index":"0.000005499740683011"},{"denom":"ASSET8","index":"0.000007176593065360"},{"denom":"ASSET9","index":"0.000003098765751537"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003185213515607"},{"denom":"ASSET1","index":"0.000027035699090666"},{"denom":"ASSET10","index":"0.000021635640181728"},{"denom":"ASSET11","index":"0.000026880669357351"},{"denom":"ASSET12","index":"0.000025658872180332"},{"denom":"ASSET13","index":"0.000008444958797633"},{"denom":"ASSET14","index":"0.000024662649108986"},{"denom":"ASSET15","index":"0.000019476753279332"},{"denom":"ASSET16","index":"0.000011989846651744"},{"denom":"ASSET17","index":"0.000009429633404312"},{"denom":"ASSET18","index":"0.000003886090392826"},{"denom":"ASSET2","index":"0.000008191890279929"},{"denom":"ASSET3","index":"0.000002271981699175"},{"denom":"ASSET4","index":"0.000021916623044014"},{"denom":"ASSET5","index":"0.000001770727550439"},{"denom":"ASSET6","index":"0.000007144791673859"},{"denom":"ASSET7","index":"0.000011230376410345"},{"denom":"ASSET8","index":"0.000015353061978158"},{"denom":"ASSET9","index":"0.000006513931773648"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001736464555496"},{"denom":"ASSET1","index":"0.000014486324003877"},{"denom":"ASSET10","index":"0.000010092542477093"},{"denom":"ASSET11","index":"0.000014014496766071"},{"denom":"ASSET12","index":"0.000012620063107870"},{"denom":"ASSET13","index":"0.000004342915393341"},{"denom":"ASSET14","index":"0.000013091890345676"},{"denom":"ASSET15","index":"0.000009359368553661"},{"denom":"ASSET16","index":"0.000006524897117620"},{"denom":"ASSET17","index":"0.000004634080157191"},{"denom":"ASSET18","index":"0.000002206537788701"},{"denom":"ASSET2","index":"0.000004276263218483"},{"denom":"ASSET3","index":"0.000001250605280877"},{"denom":"ASSET4","index":"0.000011772878885340"},{"denom":"ASSET5","index":"0.000000969964544635"},{"denom":"ASSET6","index":"0.000003951772367204"},{"denom":"ASSET7","index":"0.000006051315875212"},{"denom":"ASSET8","index":"0.000007896528716001"},{"denom":"ASSET9","index":"0.000003409784945337"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003356675502673"},{"denom":"ASSET1","index":"0.000028477076245214"},{"denom":"ASSET10","index":"0.000022663760086849"},{"denom":"ASSET11","index":"0.000028282539274294"},{"denom":"ASSET12","index":"0.000026934248109484"},{"denom":"ASSET13","index":"0.000008880550781135"},{"denom":"ASSET14","index":"0.000025969128454053"},{"denom":"ASSET15","index":"0.000020425731449718"},{"denom":"ASSET16","index":"0.000012636600959200"},{"denom":"ASSET17","index":"0.000009896936242996"},{"denom":"ASSET18","index":"0.000004102733083140"},{"denom":"ASSET2","index":"0.000008619316582261"},{"denom":"ASSET3","index":"0.000002396767404444"},{"denom":"ASSET4","index":"0.000023088672429632"},{"denom":"ASSET5","index":"0.000001866260713425"},{"denom":"ASSET6","index":"0.000007536521735823"},{"denom":"ASSET7","index":"0.000011831316132227"},{"denom":"ASSET8","index":"0.000016143846449802"},{"denom":"ASSET9","index":"0.000006854365607618"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001432199402946"},{"denom":"ASSET1","index":"0.000011943338809449"},{"denom":"ASSET10","index":"0.000008321234131428"},{"denom":"ASSET11","index":"0.000011554338026882"},{"denom":"ASSET12","index":"0.000010404248756685"},{"denom":"ASSET13","index":"0.000003580160245814"},{"denom":"ASSET14","index":"0.000010793249539252"},{"denom":"ASSET15","index":"0.000007717099003024"},{"denom":"ASSET16","index":"0.000005380388215223"},{"denom":"ASSET17","index":"0.000003821002469456"},{"denom":"ASSET18","index":"0.000001819847139312"},{"denom":"ASSET2","index":"0.000003525361874705"},{"denom":"ASSET3","index":"0.000001031021204577"},{"denom":"ASSET4","index":"0.000009706076917365"},{"denom":"ASSET5","index":"0.000000800326827437"},{"denom":"ASSET6","index":"0.000003258135250159"},{"denom":"ASSET7","index":"0.000004989357863356"},{"denom":"ASSET8","index":"0.000006510858315517"},{"denom":"ASSET9","index":"0.000002812306527182"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000002962853679956"},{"denom":"ASSET1","index":"0.000025162993314326"},{"denom":"ASSET10","index":"0.000020199688926412"},{"denom":"ASSET11","index":"0.000025035647772320"},{"denom":"ASSET12","index":"0.000023929456511577"},{"denom":"ASSET13","index":"0.000007867725037604"},{"denom":"ASSET14","index":"0.000022960507028012"},{"denom":"ASSET15","index":"0.000018173489333858"},{"denom":"ASSET16","index":"0.000011155286879957"},{"denom":"ASSET17","index":"0.000008793607250882"},{"denom":"ASSET18","index":"0.000003611579051495"},{"denom":"ASSET2","index":"0.000007628670547867"},{"denom":"ASSET3","index":"0.000002114031306235"},{"denom":"ASSET4","index":"0.000020398130246320"},{"denom":"ASSET5","index":"0.000001647096325587"},{"denom":"ASSET6","index":"0.000006645213242757"},{"denom":"ASSET7","index":"0.000010450616802650"},{"denom":"ASSET8","index":"0.000014303332598966"},{"denom":"ASSET9","index":"0.000006067112886031"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001597673370668"},{"denom":"ASSET1","index":"0.000013327099930964"},{"denom":"ASSET10","index":"0.000009285285696821"},{"denom":"ASSET11","index":"0.000012892979142852"},{"denom":"ASSET12","index":"0.000011609669101507"},{"denom":"ASSET13","index":"0.000003995544306884"},{"denom":"ASSET14","index":"0.000012043789889618"},{"denom":"ASSET15","index":"0.000008610289110917"},{"denom":"ASSET16","index":"0.000006002842621820"},{"denom":"ASSET17","index":"0.000004263637708946"},{"denom":"ASSET18","index":"0.000002030433278566"},{"denom":"ASSET2","index":"0.000003934304697275"},{"denom":"ASSET3","index":"0.000001149943780421"},{"denom":"ASSET4","index":"0.000010829884739162"},{"denom":"ASSET5","index":"0.000000892737420067"},{"denom":"ASSET6","index":"0.000003634911050302"},{"denom":"ASSET7","index":"0.000005567360953495"},{"denom":"ASSET8","index":"0.000007264378579749"},{"denom":"ASSET9","index":"0.000003138189772368"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003135234009226"},{"denom":"ASSET1","index":"0.000026602125077525"},{"denom":"ASSET10","index":"0.000021213712135644"},{"denom":"ASSET11","index":"0.000026430841190504"},{"denom":"ASSET12","index":"0.000025191219856579"},{"denom":"ASSET13","index":"0.000008300995957475"},{"denom":"ASSET14","index":"0.000024262534835813"},{"denom":"ASSET15","index":"0.000019110376679732"},{"denom":"ASSET16","index":"0.000011801461546978"},{"denom":"ASSET17","index":"0.000009257538829689"},{"denom":"ASSET18","index":"0.000003829421505073"},{"denom":"ASSET2","index":"0.000008055136326188"},{"denom":"ASSET3","index":"0.000002237228869924"},{"denom":"ASSET4","index":"0.000021566736915931"},{"denom":"ASSET5","index":"0.000001743257901616"},{"denom":"ASSET6","index":"0.000007036288319926"},{"denom":"ASSET7","index":"0.000011051703047857"},{"denom":"ASSET8","index":"0.000015089589803941"},{"denom":"ASSET9","index":"0.000006406386950018"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001689516061942"},{"denom":"ASSET1","index":"0.000014086551658080"},{"denom":"ASSET10","index":"0.000009813816295422"},{"denom":"ASSET11","index":"0.000013627312671286"},{"denom":"ASSET12","index":"0.000012271349136594"},{"denom":"ASSET13","index":"0.000004223185893030"},{"denom":"ASSET14","index":"0.000012729983861563"},{"denom":"ASSET15","index":"0.000009101391604066"},{"denom":"ASSET16","index":"0.000006345353421478"},{"denom":"ASSET17","index":"0.000004506584688828"},{"denom":"ASSET18","index":"0.000002146942263262"},{"denom":"ASSET2","index":"0.000004157925615959"},{"denom":"ASSET3","index":"0.000001216379053179"},{"denom":"ASSET4","index":"0.000011447740269489"},{"denom":"ASSET5","index":"0.000000943856970227"},{"denom":"ASSET6","index":"0.000003842500943451"},{"denom":"ASSET7","index":"0.000005884905911035"},{"denom":"ASSET8","index":"0.000007678959268655"},{"denom":"ASSET9","index":"0.000003316793155937"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003297864217859"},{"denom":"ASSET1","index":"0.000027973253972789"},{"denom":"ASSET10","index":"0.000022291630953866"},{"denom":"ASSET11","index":"0.000027789008146512"},{"denom":"ASSET12","index":"0.000026479178332828"},{"denom":"ASSET13","index":"0.000008727103479255"},{"denom":"ASSET14","index":"0.000025511286037616"},{"denom":"ASSET15","index":"0.000020085740117730"},{"denom":"ASSET16","index":"0.000012411485442612"},{"denom":"ASSET17","index":"0.000009730550155880"},{"denom":"ASSET18","index":"0.000004028926705548"},{"denom":"ASSET2","index":"0.000008468714781887"},{"denom":"ASSET3","index":"0.000002353891879987"},{"denom":"ASSET4","index":"0.000022679492169342"},{"denom":"ASSET5","index":"0.000001833514119464"},{"denom":"ASSET6","index":"0.000007400677249018"},{"denom":"ASSET7","index":"0.000011621769805761"},{"denom":"ASSET8","index":"0.000015864980999233"},{"denom":"ASSET9","index":"0.000006736116007098"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001411859688057"},{"denom":"ASSET1","index":"0.000011770485537623"},{"denom":"ASSET10","index":"0.000008200497469250"},{"denom":"ASSET11","index":"0.000011386615852852"},{"denom":"ASSET12","index":"0.000010253874969484"},{"denom":"ASSET13","index":"0.000003528347966974"},{"denom":"ASSET14","index":"0.000010637094027671"},{"denom":"ASSET15","index":"0.000007605174144562"},{"denom":"ASSET16","index":"0.000005302606662519"},{"denom":"ASSET17","index":"0.000003765826670265"},{"denom":"ASSET18","index":"0.000001793777493075"},{"denom":"ASSET2","index":"0.000003474345960472"},{"denom":"ASSET3","index":"0.000001016278724767"},{"denom":"ASSET4","index":"0.000009565512043233"},{"denom":"ASSET5","index":"0.000000788559420242"},{"denom":"ASSET6","index":"0.000003210842193807"},{"denom":"ASSET7","index":"0.000004917435724579"},{"denom":"ASSET8","index":"0.000006416479374940"},{"denom":"ASSET9","index":"0.000002771018622781"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000002930820438736"},{"denom":"ASSET1","index":"0.000024889799880283"},{"denom":"ASSET10","index":"0.000019988623694797"},{"denom":"ASSET11","index":"0.000024765615752571"},{"denom":"ASSET12","index":"0.000023676022623299"},{"denom":"ASSET13","index":"0.000007783195940338"},{"denom":"ASSET14","index":"0.000022712072914709"},{"denom":"ASSET15","index":"0.000017982209004670"},{"denom":"ASSET16","index":"0.000011033267632466"},{"denom":"ASSET17","index":"0.000008700651286884"},{"denom":"ASSET18","index":"0.000003571624768330"},{"denom":"ASSET2","index":"0.000007546215495169"},{"denom":"ASSET3","index":"0.000002090977414753"},{"denom":"ASSET4","index":"0.000020176663420937"},{"denom":"ASSET5","index":"0.000001628342560149"},{"denom":"ASSET6","index":"0.000006572371850885"},{"denom":"ASSET7","index":"0.000010337273058537"},{"denom":"ASSET8","index":"0.000014149515747938"},{"denom":"ASSET9","index":"0.000006000707920121"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001726304213109"},{"denom":"ASSET1","index":"0.000014431903221591"},{"denom":"ASSET10","index":"0.000010055058078201"},{"denom":"ASSET11","index":"0.000013959161452463"},{"denom":"ASSET12","index":"0.000012572806376704"},{"denom":"ASSET13","index":"0.000004323728090679"},{"denom":"ASSET14","index":"0.000013040236440562"},{"denom":"ASSET15","index":"0.000009322042750788"},{"denom":"ASSET16","index":"0.000006501527251832"},{"denom":"ASSET17","index":"0.000004615871880590"},{"denom":"ASSET18","index":"0.000002199045982237"},{"denom":"ASSET2","index":"0.000004259987627426"},{"denom":"ASSET3","index":"0.000001242939033438"},{"denom":"ASSET4","index":"0.000011728245238599"},{"denom":"ASSET5","index":"0.000000966730359341"},{"denom":"ASSET6","index":"0.000003935973605888"},{"denom":"ASSET7","index":"0.000006028785482704"},{"denom":"ASSET8","index":"0.000007866635506506"},{"denom":"ASSET9","index":"0.000003394179668236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003313075721980"},{"denom":"ASSET1","index":"0.000028138029356789"},{"denom":"ASSET10","index":"0.000022370607880245"},{"denom":"ASSET11","index":"0.000027937207217164"},{"denom":"ASSET12","index":"0.000026595598409551"},{"denom":"ASSET13","index":"0.000008769097729958"},{"denom":"ASSET14","index":"0.000025655242037122"},{"denom":"ASSET15","index":"0.000020162686714325"},{"denom":"ASSET16","index":"0.000012488922131836"},{"denom":"ASSET17","index":"0.000009772018779266"},{"denom":"ASSET18","index":"0.000004056016110298"},{"denom":"ASSET2","index":"0.000008514325121927"},{"denom":"ASSET3","index":"0.000002365037757716"},{"denom":"ASSET4","index":"0.000022813272666626"},{"denom":"ASSET5","index":"0.000001844445619129"},{"denom":"ASSET6","index":"0.000007446834645040"},{"denom":"ASSET7","index":"0.000011690909413493"},{"denom":"ASSET8","index":"0.000015945057917181"},{"denom":"ASSET9","index":"0.000006769080892636"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001630255611072"},{"denom":"ASSET1","index":"0.000013593541268721"},{"denom":"ASSET10","index":"0.000009470169531707"},{"denom":"ASSET11","index":"0.000013149994246609"},{"denom":"ASSET12","index":"0.000011841383661505"},{"denom":"ASSET13","index":"0.000004074904678306"},{"denom":"ASSET14","index":"0.000012284196334242"},{"denom":"ASSET15","index":"0.000008782818517308"},{"denom":"ASSET16","index":"0.000006123739432762"},{"denom":"ASSET17","index":"0.000004348816994942"},{"denom":"ASSET18","index":"0.000002071599585061"},{"denom":"ASSET2","index":"0.000004012484981486"},{"denom":"ASSET3","index":"0.000001173490300222"},{"denom":"ASSET4","index":"0.000011046817638451"},{"denom":"ASSET5","index":"0.000000910593224203"},{"denom":"ASSET6","index":"0.000003707729991128"},{"denom":"ASSET7","index":"0.000005678723711902"},{"denom":"ASSET8","index":"0.000007410319536635"},{"denom":"ASSET9","index":"0.000003200294573447"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003344718004914"},{"denom":"ASSET1","index":"0.000028399683918161"},{"denom":"ASSET10","index":"0.000022773943545696"},{"denom":"ASSET11","index":"0.000028249525692452"},{"denom":"ASSET12","index":"0.000026989510465266"},{"denom":"ASSET13","index":"0.000008877216029957"},{"denom":"ASSET14","index":"0.000025911788013611"},{"denom":"ASSET15","index":"0.000020494299775586"},{"denom":"ASSET16","index":"0.000012591463658113"},{"denom":"ASSET17","index":"0.000009918208342143"},{"denom":"ASSET18","index":"0.000004078542450859"},{"denom":"ASSET2","index":"0.000008608606683653"},{"denom":"ASSET3","index":"0.000002386103437058"},{"denom":"ASSET4","index":"0.000023022167148602"},{"denom":"ASSET5","index":"0.000001858883946943"},{"denom":"ASSET6","index":"0.000007501347044310"},{"denom":"ASSET7","index":"0.000011795380538461"},{"denom":"ASSET8","index":"0.000016137954986293"},{"denom":"ASSET9","index":"0.000006845854741756"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001401914217082"},{"denom":"ASSET1","index":"0.000011691084141249"},{"denom":"ASSET10","index":"0.000008144816837289"},{"denom":"ASSET11","index":"0.000011309282624399"},{"denom":"ASSET12","index":"0.000010184195671197"},{"denom":"ASSET13","index":"0.000003504785542706"},{"denom":"ASSET14","index":"0.000010565150621491"},{"denom":"ASSET15","index":"0.000007553913381055"},{"denom":"ASSET16","index":"0.000005266490546178"},{"denom":"ASSET17","index":"0.000003740131045332"},{"denom":"ASSET18","index":"0.000001781176034264"},{"denom":"ASSET2","index":"0.000003450605283109"},{"denom":"ASSET3","index":"0.000001009107335001"},{"denom":"ASSET4","index":"0.000009501016460336"},{"denom":"ASSET5","index":"0.000000783074064494"},{"denom":"ASSET6","index":"0.000003189016217240"},{"denom":"ASSET7","index":"0.000004883842462771"},{"denom":"ASSET8","index":"0.000006372953035143"},{"denom":"ASSET9","index":"0.000002752187874236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000002824624853437"},{"denom":"ASSET1","index":"0.000023976113690517"},{"denom":"ASSET10","index":"0.000019183481330878"},{"denom":"ASSET11","index":"0.000023837782846342"},{"denom":"ASSET12","index":"0.000022753084719682"},{"denom":"ASSET13","index":"0.000007489057952554"},{"denom":"ASSET14","index":"0.000021872315483076"},{"denom":"ASSET15","index":"0.000017271123733000"},{"denom":"ASSET16","index":"0.000010633084765839"},{"denom":"ASSET17","index":"0.000008361522972460"},{"denom":"ASSET18","index":"0.000003446219629870"},{"denom":"ASSET2","index":"0.000007263651822688"},{"denom":"ASSET3","index":"0.000002015414858276"},{"denom":"ASSET4","index":"0.000019437236646346"},{"denom":"ASSET5","index":"0.000001569802896992"},{"denom":"ASSET6","index":"0.000006336500403946"},{"denom":"ASSET7","index":"0.000009959182045961"},{"denom":"ASSET8","index":"0.000013614498977085"},{"denom":"ASSET9","index":"0.000005776799011181"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001454934724421"},{"denom":"ASSET1","index":"0.000012138554241533"},{"denom":"ASSET10","index":"0.000008457231031836"},{"denom":"ASSET11","index":"0.000011742676653726"},{"denom":"ASSET12","index":"0.000010575345305063"},{"denom":"ASSET13","index":"0.000003639028595615"},{"denom":"ASSET14","index":"0.000010969531108307"},{"denom":"ASSET15","index":"0.000007843113235366"},{"denom":"ASSET16","index":"0.000005467847708521"},{"denom":"ASSET17","index":"0.000003882645572727"},{"denom":"ASSET18","index":"0.000001849120527665"},{"denom":"ASSET2","index":"0.000003583199705027"},{"denom":"ASSET3","index":"0.000001047214644670"},{"denom":"ASSET4","index":"0.000009864795788485"},{"denom":"ASSET5","index":"0.000000813748374938"},{"denom":"ASSET6","index":"0.000003310822390339"},{"denom":"ASSET7","index":"0.000005070278336150"},{"denom":"ASSET8","index":"0.000006616569426988"},{"denom":"ASSET9","index":"0.000002857424127380"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003026822568793"},{"denom":"ASSET1","index":"0.000025710421285725"},{"denom":"ASSET10","index":"0.000020652297735472"},{"denom":"ASSET11","index":"0.000025583400849235"},{"denom":"ASSET12","index":"0.000024460820755928"},{"denom":"ASSET13","index":"0.000008041083722059"},{"denom":"ASSET14","index":"0.000023461074878675"},{"denom":"ASSET15","index":"0.000018578170233019"},{"denom":"ASSET16","index":"0.000011396689804799"},{"denom":"ASSET17","index":"0.000008988134494295"},{"denom":"ASSET18","index":"0.000003688816665807"},{"denom":"ASSET2","index":"0.000007796110853756"},{"denom":"ASSET3","index":"0.000002159003644915"},{"denom":"ASSET4","index":"0.000020841789260406"},{"denom":"ASSET5","index":"0.000001683251281734"},{"denom":"ASSET6","index":"0.000006788484398340"},{"denom":"ASSET7","index":"0.000010677121165375"},{"denom":"ASSET8","index":"0.000014616905179383"},{"denom":"ASSET9","index":"0.000006199084273401"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001547699786520"},{"denom":"ASSET1","index":"0.000012908880828127"},{"denom":"ASSET10","index":"0.000008993933542043"},{"denom":"ASSET11","index":"0.000012488059147042"},{"denom":"ASSET12","index":"0.000011245681057538"},{"denom":"ASSET13","index":"0.000003869751640144"},{"denom":"ASSET14","index":"0.000011665498390936"},{"denom":"ASSET15","index":"0.000008340103197445"},{"denom":"ASSET16","index":"0.000005815173110936"},{"denom":"ASSET17","index":"0.000004129877691221"},{"denom":"ASSET18","index":"0.000001966512772230"},{"denom":"ASSET2","index":"0.000003810495126579"},{"denom":"ASSET3","index":"0.000001114825933185"},{"denom":"ASSET4","index":"0.000010490411596498"},{"denom":"ASSET5","index":"0.000000864743358984"},{"denom":"ASSET6","index":"0.000003521242992563"},{"denom":"ASSET7","index":"0.000005392342734476"},{"denom":"ASSET8","index":"0.000007036459899001"},{"denom":"ASSET9","index":"0.000003039156102537"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003086703561215"},{"denom":"ASSET1","index":"0.000026199550261878"},{"denom":"ASSET10","index":"0.000020936384793003"},{"denom":"ASSET11","index":"0.000026042194398185"},{"denom":"ASSET12","index":"0.000024843424443974"},{"denom":"ASSET13","index":"0.000008180415813801"},{"denom":"ASSET14","index":"0.000023898307142718"},{"denom":"ASSET15","index":"0.000018852934413068"},{"denom":"ASSET16","index":"0.000011621232923996"},{"denom":"ASSET17","index":"0.000009129550402498"},{"denom":"ASSET18","index":"0.000003767892160935"},{"denom":"ASSET2","index":"0.000007936188126371"},{"denom":"ASSET3","index":"0.000002203575710986"},{"denom":"ASSET4","index":"0.000021240180347210"},{"denom":"ASSET5","index":"0.000001716192200569"},{"denom":"ASSET6","index":"0.000006926674957775"},{"denom":"ASSET7","index":"0.000010883333770048"},{"denom":"ASSET8","index":"0.000014871024805414"},{"denom":"ASSET9","index":"0.000006311583255107"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001511232509129"},{"denom":"ASSET1","index":"0.000012598757210652"},{"denom":"ASSET10","index":"0.000008777665278232"},{"denom":"ASSET11","index":"0.000012187849575766"},{"denom":"ASSET12","index":"0.000010975073643675"},{"denom":"ASSET13","index":"0.000003776959255615"},{"denom":"ASSET14","index":"0.000011385233267090"},{"denom":"ASSET15","index":"0.000008140359504707"},{"denom":"ASSET16","index":"0.000005675412369706"},{"denom":"ASSET17","index":"0.000004030784481533"},{"denom":"ASSET18","index":"0.000001920145446758"},{"denom":"ASSET2","index":"0.000003719113035170"},{"denom":"ASSET3","index":"0.000001087858016388"},{"denom":"ASSET4","index":"0.000010238531681628"},{"denom":"ASSET5","index":"0.000000844504951067"},{"denom":"ASSET6","index":"0.000003436614036185"},{"denom":"ASSET7","index":"0.000005263507386191"},{"denom":"ASSET8","index":"0.000006867991992072"},{"denom":"ASSET9","index":"0.000002966364157912"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003050294937135"},{"denom":"ASSET1","index":"0.000025887230915803"},{"denom":"ASSET10","index":"0.000020718160619670"},{"denom":"ASSET11","index":"0.000025739685005463"},{"denom":"ASSET12","index":"0.000024570727404900"},{"denom":"ASSET13","index":"0.000008086966483560"},{"denom":"ASSET14","index":"0.000023616194455668"},{"denom":"ASSET15","index":"0.000018651338246959"},{"denom":"ASSET16","index":"0.000011480437826441"},{"denom":"ASSET17","index":"0.000009029688158762"},{"denom":"ASSET18","index":"0.000003721440260869"},{"denom":"ASSET2","index":"0.000007844134626406"},{"denom":"ASSET3","index":"0.000002176540273945"},{"denom":"ASSET4","index":"0.000020986445628896"},{"denom":"ASSET5","index":"0.000001695800268231"},{"denom":"ASSET6","index":"0.000006841569437153"},{"denom":"ASSET7","index":"0.000010753447417762"},{"denom":"ASSET8","index":"0.000014701309289649"},{"denom":"ASSET9","index":"0.000006238283490477"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001535139489204"},{"denom":"ASSET1","index":"0.000012800845981431"},{"denom":"ASSET10","index":"0.000008918122145344"},{"denom":"ASSET11","index":"0.000012383184798277"},{"denom":"ASSET12","index":"0.000011151318949088"},{"denom":"ASSET13","index":"0.000003837555421617"},{"denom":"ASSET14","index":"0.000011567806926671"},{"denom":"ASSET15","index":"0.000008270512670342"},{"denom":"ASSET16","index":"0.000005766305379776"},{"denom":"ASSET17","index":"0.000004095074044376"},{"denom":"ASSET18","index":"0.000001950454261216"},{"denom":"ASSET2","index":"0.000003778308540299"},{"denom":"ASSET3","index":"0.000001105159647558"},{"denom":"ASSET4","index":"0.000010402813795010"},{"denom":"ASSET5","index":"0.000000857613272150"},{"denom":"ASSET6","index":"0.000003491459778273"},{"denom":"ASSET7","index":"0.000005347470991052"},{"denom":"ASSET8","index":"0.000006978226734264"},{"denom":"ASSET9","index":"0.000003013965111016"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000002944371933765"},{"denom":"ASSET1","index":"0.000024968433937291"},{"denom":"ASSET10","index":"0.000019851368221906"},{"denom":"ASSET11","index":"0.000024791952485266"},{"denom":"ASSET12","index":"0.000023600048189968"},{"denom":"ASSET13","index":"0.000007784111470281"},{"denom":"ASSET14","index":"0.000022766914870589"},{"denom":"ASSET15","index":"0.000017894900322998"},{"denom":"ASSET16","index":"0.000011081662183182"},{"denom":"ASSET17","index":"0.000008672317440622"},{"denom":"ASSET18","index":"0.000003599691097086"},{"denom":"ASSET2","index":"0.000007555380586873"},{"denom":"ASSET3","index":"0.000002101847815188"},{"denom":"ASSET4","index":"0.000020244169178497"},{"denom":"ASSET5","index":"0.000001637098640985"},{"denom":"ASSET6","index":"0.000006609166185649"},{"denom":"ASSET7","index":"0.000010374399402552"},{"denom":"ASSET8","index":"0.000014150620453773"},{"denom":"ASSET9","index":"0.000006009906313007"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001449310882227"},{"denom":"ASSET1","index":"0.000012082282763787"},{"denom":"ASSET10","index":"0.000008417588941675"},{"denom":"ASSET11","index":"0.000011688148164511"},{"denom":"ASSET12","index":"0.000010525234539176"},{"denom":"ASSET13","index":"0.000003621923721366"},{"denom":"ASSET14","index":"0.000010918286351091"},{"denom":"ASSET15","index":"0.000007806355476589"},{"denom":"ASSET16","index":"0.000005442630668295"},{"denom":"ASSET17","index":"0.000003865550877512"},{"denom":"ASSET18","index":"0.000001841279906781"},{"denom":"ASSET2","index":"0.000003566701565973"},{"denom":"ASSET3","index":"0.000001043265621984"},{"denom":"ASSET4","index":"0.000009818715786353"},{"denom":"ASSET5","index":"0.000000809924945764"},{"denom":"ASSET6","index":"0.000003295463332131"},{"denom":"ASSET7","index":"0.000005047413281659"},{"denom":"ASSET8","index":"0.000006586595514820"},{"denom":"ASSET9","index":"0.000002844482396421"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000002938303361264"},{"denom":"ASSET1","index":"0.000024939884544734"},{"denom":"ASSET10","index":"0.000019970621943114"},{"denom":"ASSET11","index":"0.000024800280810198"},{"denom":"ASSET12","index":"0.000023679745396670"},{"denom":"ASSET13","index":"0.000007792253675830"},{"denom":"ASSET14","index":"0.000022752532795075"},{"denom":"ASSET15","index":"0.000017976341528508"},{"denom":"ASSET16","index":"0.000011059313296089"},{"denom":"ASSET17","index":"0.000008702160495382"},{"denom":"ASSET18","index":"0.000003584018468858"},{"denom":"ASSET2","index":"0.000007557839698908"},{"denom":"ASSET3","index":"0.000002096442663552"},{"denom":"ASSET4","index":"0.000020217858094708"},{"denom":"ASSET5","index":"0.000001633684136995"},{"denom":"ASSET6","index":"0.000006589976909255"},{"denom":"ASSET7","index":"0.000010359339015905"},{"denom":"ASSET8","index":"0.000014165755580726"},{"denom":"ASSET9","index":"0.000006010291774725"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001731982701050"},{"denom":"ASSET1","index":"0.000014440617081118"},{"denom":"ASSET10","index":"0.000010060714066040"},{"denom":"ASSET11","index":"0.000013969585405988"},{"denom":"ASSET12","index":"0.000012579542501729"},{"denom":"ASSET13","index":"0.000004329188348588"},{"denom":"ASSET14","index":"0.000013049805772821"},{"denom":"ASSET15","index":"0.000009329961826155"},{"denom":"ASSET16","index":"0.000006505308583448"},{"denom":"ASSET17","index":"0.000004619645074851"},{"denom":"ASSET18","index":"0.000002200709164068"},{"denom":"ASSET2","index":"0.000004262337197306"},{"denom":"ASSET3","index":"0.000001247119753241"},{"denom":"ASSET4","index":"0.000011735066464260"},{"denom":"ASSET5","index":"0.000000967420683506"},{"denom":"ASSET6","index":"0.000003938839097420"},{"denom":"ASSET7","index":"0.000006032740100243"},{"denom":"ASSET8","index":"0.000007872299366576"},{"denom":"ASSET9","index":"0.000003400187866969"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003329715418659"},{"denom":"ASSET1","index":"0.000028238028843607"},{"denom":"ASSET10","index":"0.000022458342297172"},{"denom":"ASSET11","index":"0.000028040237741643"},{"denom":"ASSET12","index":"0.000026695793846360"},{"denom":"ASSET13","index":"0.000008804253880653"},{"denom":"ASSET14","index":"0.000025748953032298"},{"denom":"ASSET15","index":"0.000020243324641083"},{"denom":"ASSET16","index":"0.000012532507824147"},{"denom":"ASSET17","index":"0.000009809802042254"},{"denom":"ASSET18","index":"0.000004070975493464"},{"denom":"ASSET2","index":"0.000008545109234155"},{"denom":"ASSET3","index":"0.000002377197518329"},{"denom":"ASSET4","index":"0.000022894451839245"},{"denom":"ASSET5","index":"0.000001851122407848"},{"denom":"ASSET6","index":"0.000007473999475476"},{"denom":"ASSET7","index":"0.000011732969702935"},{"denom":"ASSET8","index":"0.000016005536556726"},{"denom":"ASSET9","index":"0.000006797137295338"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001649988907243"},{"denom":"ASSET1","index":"0.000013756519537767"},{"denom":"ASSET10","index":"0.000009584361794534"},{"denom":"ASSET11","index":"0.000013307506163009"},{"denom":"ASSET12","index":"0.000011983307415229"},{"denom":"ASSET13","index":"0.000004124070634826"},{"denom":"ASSET14","index":"0.000012431118612277"},{"denom":"ASSET15","index":"0.000008888300900330"},{"denom":"ASSET16","index":"0.000006196625007203"},{"denom":"ASSET17","index":"0.000004401172597026"},{"denom":"ASSET18","index":"0.000002096597926581"},{"denom":"ASSET2","index":"0.000004060355216185"},{"denom":"ASSET3","index":"0.000001187751577673"},{"denom":"ASSET4","index":"0.000011179050527108"},{"denom":"ASSET5","index":"0.000000922070303720"},{"denom":"ASSET6","index":"0.000003752597722375"},{"denom":"ASSET7","index":"0.000005747010543590"},{"denom":"ASSET8","index":"0.000007499184556200"},{"denom":"ASSET9","index":"0.000003238666751267"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003269082759145"},{"denom":"ASSET1","index":"0.000027736662456421"},{"denom":"ASSET10","index":"0.000022145815740722"},{"denom":"ASSET11","index":"0.000027564157079872"},{"denom":"ASSET12","index":"0.000026286254396013"},{"denom":"ASSET13","index":"0.000008658548128401"},{"denom":"ASSET14","index":"0.000025298253418871"},{"denom":"ASSET15","index":"0.000019946084058089"},{"denom":"ASSET16","index":"0.000012303266096103"},{"denom":"ASSET17","index":"0.000009659898104260"},{"denom":"ASSET18","index":"0.000003991565584036"},{"denom":"ASSET2","index":"0.000008399501371576"},{"denom":"ASSET3","index":"0.000002333103515211"},{"denom":"ASSET4","index":"0.000022486071398850"},{"denom":"ASSET5","index":"0.000001817550334619"},{"denom":"ASSET6","index":"0.000007334517845971"},{"denom":"ASSET7","index":"0.000011522603065826"},{"denom":"ASSET8","index":"0.000015739883934035"},{"denom":"ASSET9","index":"0.000006680430297789"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001707974867576"},{"denom":"ASSET1","index":"0.000014238090744503"},{"denom":"ASSET10","index":"0.000009920037235236"},{"denom":"ASSET11","index":"0.000013773690453356"},{"denom":"ASSET12","index":"0.000012403461252069"},{"denom":"ASSET13","index":"0.000004268385028930"},{"denom":"ASSET14","index":"0.000012866619831208"},{"denom":"ASSET15","index":"0.000009199844270355"},{"denom":"ASSET16","index":"0.000006414063379473"},{"denom":"ASSET17","index":"0.000004555220502875"},{"denom":"ASSET18","index":"0.000002169891734707"},{"denom":"ASSET2","index":"0.000004203195148489"},{"denom":"ASSET3","index":"0.000001229294888332"},{"denom":"ASSET4","index":"0.000011570893350426"},{"denom":"ASSET5","index":"0.000000954255678468"},{"denom":"ASSET6","index":"0.000003884075162326"},{"denom":"ASSET7","index":"0.000005948421376317"},{"denom":"ASSET8","index":"0.000007761941764609"},{"denom":"ASSET9","index":"0.000003352622422724"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003075387603983"},{"denom":"ASSET1","index":"0.000026047450678709"},{"denom":"ASSET10","index":"0.000020531243448578"},{"denom":"ASSET11","index":"0.000025816927992783"},{"denom":"ASSET12","index":"0.000024485469945303"},{"denom":"ASSET13","index":"0.000008098391373250"},{"denom":"ASSET14","index":"0.000023735883509134"},{"denom":"ASSET15","index":"0.000018540774078871"},{"denom":"ASSET16","index":"0.000011572711306393"},{"denom":"ASSET17","index":"0.000008997644319689"},{"denom":"ASSET18","index":"0.000003770348288081"},{"denom":"ASSET2","index":"0.000007868945206789"},{"denom":"ASSET3","index":"0.000002196489262864"},{"denom":"ASSET4","index":"0.000021122354693053"},{"denom":"ASSET5","index":"0.000001710501624761"},{"denom":"ASSET6","index":"0.000006909892735753"},{"denom":"ASSET7","index":"0.000010827333344051"},{"denom":"ASSET8","index":"0.000014723239896475"},{"denom":"ASSET9","index":"0.000006260042064096"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001779156074987"},{"denom":"ASSET1","index":"0.000014834764457923"},{"denom":"ASSET10","index":"0.000010335215703318"},{"denom":"ASSET11","index":"0.000014351450406057"},{"denom":"ASSET12","index":"0.000012923397473821"},{"denom":"ASSET13","index":"0.000004447014618532"},{"denom":"ASSET14","index":"0.000013405835956753"},{"denom":"ASSET15","index":"0.000009584853126417"},{"denom":"ASSET16","index":"0.000006682342108415"},{"denom":"ASSET17","index":"0.000004745583625211"},{"denom":"ASSET18","index":"0.000002260718988984"},{"denom":"ASSET2","index":"0.000004378720241638"},{"denom":"ASSET3","index":"0.000001280957351233"},{"denom":"ASSET4","index":"0.000012055708659691"},{"denom":"ASSET5","index":"0.000000993770740704"},{"denom":"ASSET6","index":"0.000004046879615447"},{"denom":"ASSET7","index":"0.000006197276918679"},{"denom":"ASSET8","index":"0.000008086754679418"},{"denom":"ASSET9","index":"0.000003492644479883"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003478645419875"},{"denom":"ASSET1","index":"0.000029510728520321"},{"denom":"ASSET10","index":"0.000023521700007579"},{"denom":"ASSET11","index":"0.000029317721838376"},{"denom":"ASSET12","index":"0.000027938200533330"},{"denom":"ASSET13","index":"0.000009206643656085"},{"denom":"ASSET14","index":"0.000026913511393693"},{"denom":"ASSET15","index":"0.000021192735957156"},{"denom":"ASSET16","index":"0.000013092928863665"},{"denom":"ASSET17","index":"0.000010265835619821"},{"denom":"ASSET18","index":"0.000004249633310572"},{"denom":"ASSET2","index":"0.000008933634051769"},{"denom":"ASSET3","index":"0.000002482776919113"},{"denom":"ASSET4","index":"0.000023925662277258"},{"denom":"ASSET5","index":"0.000001933519521756"},{"denom":"ASSET6","index":"0.000007806757132876"},{"denom":"ASSET7","index":"0.000012260200744601"},{"denom":"ASSET8","index":"0.000016737737824425"},{"denom":"ASSET9","index":"0.000007106044722519"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001752700098923"},{"denom":"ASSET1","index":"0.000014612940709519"},{"denom":"ASSET10","index":"0.000010180696541309"},{"denom":"ASSET11","index":"0.000014136053678762"},{"denom":"ASSET12","index":"0.000012730078503378"},{"denom":"ASSET13","index":"0.000004380628160175"},{"denom":"ASSET14","index":"0.000013205843447004"},{"denom":"ASSET15","index":"0.000009441241121853"},{"denom":"ASSET16","index":"0.000006583285198706"},{"denom":"ASSET17","index":"0.000004674614988548"},{"denom":"ASSET18","index":"0.000002226220868286"},{"denom":"ASSET2","index":"0.000004313302932304"},{"denom":"ASSET3","index":"0.000001261225935460"},{"denom":"ASSET4","index":"0.000011875048109410"},{"denom":"ASSET5","index":"0.000000979582065531"},{"denom":"ASSET6","index":"0.000003985653489996"},{"denom":"ASSET7","index":"0.000006105276080818"},{"denom":"ASSET8","index":"0.000007965696544335"},{"denom":"ASSET9","index":"0.000003440319144236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003327512121722"},{"denom":"ASSET1","index":"0.000028211822531533"},{"denom":"ASSET10","index":"0.000022399629444355"},{"denom":"ASSET11","index":"0.000028004032167971"},{"denom":"ASSET12","index":"0.000026643127370344"},{"denom":"ASSET13","index":"0.000008791339050068"},{"denom":"ASSET14","index":"0.000025722152469956"},{"denom":"ASSET15","index":"0.000020197596080044"},{"denom":"ASSET16","index":"0.000012523737733641"},{"denom":"ASSET17","index":"0.000009790102863953"},{"denom":"ASSET18","index":"0.000004069245825383"},{"denom":"ASSET2","index":"0.000008534453115749"},{"denom":"ASSET3","index":"0.000002375171252372"},{"denom":"ASSET4","index":"0.000022873545881432"},{"denom":"ASSET5","index":"0.000001850500835715"},{"denom":"ASSET6","index":"0.000007470212303630"},{"denom":"ASSET7","index":"0.000011723166108277"},{"denom":"ASSET8","index":"0.000015981595788329"},{"denom":"ASSET9","index":"0.000006788341225254"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001434713876400"},{"denom":"ASSET1","index":"0.000011974044460331"},{"denom":"ASSET10","index":"0.000008340728508476"},{"denom":"ASSET11","index":"0.000011582406348125"},{"denom":"ASSET12","index":"0.000010430757641934"},{"denom":"ASSET13","index":"0.000003588723493535"},{"denom":"ASSET14","index":"0.000010820456951604"},{"denom":"ASSET15","index":"0.000007735822117345"},{"denom":"ASSET16","index":"0.000005393748654249"},{"denom":"ASSET17","index":"0.000003829135007959"},{"denom":"ASSET18","index":"0.000001824413186071"},{"denom":"ASSET2","index":"0.000003534437022536"},{"denom":"ASSET3","index":"0.000001033381751515"},{"denom":"ASSET4","index":"0.000009730849926555"},{"denom":"ASSET5","index":"0.000000802664249770"},{"denom":"ASSET6","index":"0.000003264943470077"},{"denom":"ASSET7","index":"0.000005002110542043"},{"denom":"ASSET8","index":"0.000006526009335083"},{"denom":"ASSET9","index":"0.000002819018886872"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000002895048613815"},{"denom":"ASSET1","index":"0.000024589366099895"},{"denom":"ASSET10","index":"0.000019676065498265"},{"denom":"ASSET11","index":"0.000024447379266412"},{"denom":"ASSET12","index":"0.000023337478265694"},{"denom":"ASSET13","index":"0.000007679998629802"},{"denom":"ASSET14","index":"0.000022431328797509"},{"denom":"ASSET15","index":"0.000017714358679290"},{"denom":"ASSET16","index":"0.000010904445776568"},{"denom":"ASSET17","index":"0.000008574179211920"},{"denom":"ASSET18","index":"0.000003534399202209"},{"denom":"ASSET2","index":"0.000007450371795821"},{"denom":"ASSET3","index":"0.000002066219984895"},{"denom":"ASSET4","index":"0.000019933989143940"},{"denom":"ASSET5","index":"0.000001610899827710"},{"denom":"ASSET6","index":"0.000006497050827728"},{"denom":"ASSET7","index":"0.000010213894093182"},{"denom":"ASSET8","index":"0.000013962110633776"},{"denom":"ASSET9","index":"0.000005925048173997"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001401536005232"},{"denom":"ASSET1","index":"0.000011690786017211"},{"denom":"ASSET10","index":"0.000008143726832164"},{"denom":"ASSET11","index":"0.000011307987636928"},{"denom":"ASSET12","index":"0.000010184289165772"},{"denom":"ASSET13","index":"0.000003503840013080"},{"denom":"ASSET14","index":"0.000010564000462344"},{"denom":"ASSET15","index":"0.000007554093843178"},{"denom":"ASSET16","index":"0.000005266564812612"},{"denom":"ASSET17","index":"0.000003738458375190"},{"denom":"ASSET18","index":"0.000001781247301804"},{"denom":"ASSET2","index":"0.000003448272506265"},{"denom":"ASSET3","index":"0.000001009476373813"},{"denom":"ASSET4","index":"0.000009498956581716"},{"denom":"ASSET5","index":"0.000000781032179127"},{"denom":"ASSET6","index":"0.000003188957474460"},{"denom":"ASSET7","index":"0.000004883766432329"},{"denom":"ASSET8","index":"0.000006371740781496"},{"denom":"ASSET9","index":"0.000002750591587361"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003071913026336"},{"denom":"ASSET1","index":"0.000026115211920195"},{"denom":"ASSET10","index":"0.000021104918039272"},{"denom":"ASSET11","index":"0.000026018207650283"},{"denom":"ASSET12","index":"0.000024942011742431"},{"denom":"ASSET13","index":"0.000008182453133262"},{"denom":"ASSET14","index":"0.000023839798810024"},{"denom":"ASSET15","index":"0.000018963275072170"},{"denom":"ASSET16","index":"0.000011567273660047"},{"denom":"ASSET17","index":"0.000009164652819502"},{"denom":"ASSET18","index":"0.000003735860972186"},{"denom":"ASSET2","index":"0.000007925194415041"},{"denom":"ASSET3","index":"0.000002190810612048"},{"denom":"ASSET4","index":"0.000021165118890878"},{"denom":"ASSET5","index":"0.000001704606606646"},{"denom":"ASSET6","index":"0.000006884812645629"},{"denom":"ASSET7","index":"0.000010842612570084"},{"denom":"ASSET8","index":"0.000014874699612932"},{"denom":"ASSET9","index":"0.000006301602876980"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001534549585700"},{"denom":"ASSET1","index":"0.000012795681230217"},{"denom":"ASSET10","index":"0.000008914897664776"},{"denom":"ASSET11","index":"0.000012378406858633"},{"denom":"ASSET12","index":"0.000011146809898878"},{"denom":"ASSET13","index":"0.000003835934265229"},{"denom":"ASSET14","index":"0.000011563204872419"},{"denom":"ASSET15","index":"0.000008267660704848"},{"denom":"ASSET16","index":"0.000005764014475342"},{"denom":"ASSET17","index":"0.000004093597891939"},{"denom":"ASSET18","index":"0.000001950065161198"},{"denom":"ASSET2","index":"0.000003777014596322"},{"denom":"ASSET3","index":"0.000001104963641508"},{"denom":"ASSET4","index":"0.000010398442163960"},{"denom":"ASSET5","index":"0.000000857413092297"},{"denom":"ASSET6","index":"0.000003490330834180"},{"denom":"ASSET7","index":"0.000005345421006692"},{"denom":"ASSET8","index":"0.000006975385280099"},{"denom":"ASSET9","index":"0.000003012817696624"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003034954909236"},{"denom":"ASSET1","index":"0.000025752158165977"},{"denom":"ASSET10","index":"0.000020556858138008"},{"denom":"ASSET11","index":"0.000025591676311293"},{"denom":"ASSET12","index":"0.000024402528250789"},{"denom":"ASSET13","index":"0.000008038375291107"},{"denom":"ASSET14","index":"0.000023488313497799"},{"denom":"ASSET15","index":"0.000018516037809802"},{"denom":"ASSET16","index":"0.000011423945454084"},{"denom":"ASSET17","index":"0.000008967524527402"},{"denom":"ASSET18","index":"0.000003706330058793"},{"denom":"ASSET2","index":"0.000007798931182527"},{"denom":"ASSET3","index":"0.000002166419358500"},{"denom":"ASSET4","index":"0.000020877722621984"},{"denom":"ASSET5","index":"0.000001687498984799"},{"denom":"ASSET6","index":"0.000006810207932767"},{"denom":"ASSET7","index":"0.000010698180555138"},{"denom":"ASSET8","index":"0.000014612921845389"},{"denom":"ASSET9","index":"0.000006203015740356"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001658482037183"},{"denom":"ASSET1","index":"0.000013862588923046"},{"denom":"ASSET10","index":"0.000009655943522610"},{"denom":"ASSET11","index":"0.000013408077810815"},{"denom":"ASSET12","index":"0.000012073555821711"},{"denom":"ASSET13","index":"0.000004153457929856"},{"denom":"ASSET14","index":"0.000012528066933942"},{"denom":"ASSET15","index":"0.000008954835955871"},{"denom":"ASSET16","index":"0.000006242274956279"},{"denom":"ASSET17","index":"0.000004433900956551"},{"denom":"ASSET18","index":"0.000002112993149414"},{"denom":"ASSET2","index":"0.000004090600010079"},{"denom":"ASSET3","index":"0.000001194300475756"},{"denom":"ASSET4","index":"0.000011266073313811"},{"denom":"ASSET5","index":"0.000000928363122855"},{"denom":"ASSET6","index":"0.000003781145635794"},{"denom":"ASSET7","index":"0.000005787763844048"},{"denom":"ASSET8","index":"0.000007557456046990"},{"denom":"ASSET9","index":"0.000003263776603787"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003188277912377"},{"denom":"ASSET1","index":"0.000027072180177666"},{"denom":"ASSET10","index":"0.000021525590492702"},{"denom":"ASSET11","index":"0.000026879695640981"},{"denom":"ASSET12","index":"0.000025588321740665"},{"denom":"ASSET13","index":"0.000008437670891103"},{"denom":"ASSET14","index":"0.000024686413843557"},{"denom":"ASSET15","index":"0.000019403734038796"},{"denom":"ASSET16","index":"0.000012012351193227"},{"denom":"ASSET17","index":"0.000009402991763462"},{"denom":"ASSET18","index":"0.000003903246578743"},{"denom":"ASSET2","index":"0.000008191237466303"},{"denom":"ASSET3","index":"0.000002276140738265"},{"denom":"ASSET4","index":"0.000021950324608304"},{"denom":"ASSET5","index":"0.000001774065663090"},{"denom":"ASSET6","index":"0.000007165524818145"},{"denom":"ASSET7","index":"0.000011244820309610"},{"denom":"ASSET8","index":"0.000015343724796373"},{"denom":"ASSET9","index":"0.000006516357987660"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001453411320498"},{"denom":"ASSET1","index":"0.000012118137400313"},{"denom":"ASSET10","index":"0.000008442891188019"},{"denom":"ASSET11","index":"0.000011723343510399"},{"denom":"ASSET12","index":"0.000010556870017106"},{"denom":"ASSET13","index":"0.000003632917795231"},{"denom":"ASSET14","index":"0.000010951256903010"},{"denom":"ASSET15","index":"0.000007829943148627"},{"denom":"ASSET16","index":"0.000005459144789091"},{"denom":"ASSET17","index":"0.000003877120201363"},{"denom":"ASSET18","index":"0.000001846984198382"},{"denom":"ASSET2","index":"0.000003577158245830"},{"denom":"ASSET3","index":"0.000001046407310278"},{"denom":"ASSET4","index":"0.000009848276035312"},{"denom":"ASSET5","index":"0.000000811973000390"},{"denom":"ASSET6","index":"0.000003305686571013"},{"denom":"ASSET7","index":"0.000005062722883136"},{"denom":"ASSET8","index":"0.000006606082089893"},{"denom":"ASSET9","index":"0.000002853098111648"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000002979919393708"},{"denom":"ASSET1","index":"0.000025298333716476"},{"denom":"ASSET10","index":"0.000020286143685892"},{"denom":"ASSET11","index":"0.000025164674259360"},{"denom":"ASSET12","index":"0.000024041723171534"},{"denom":"ASSET13","index":"0.000007907785176595"},{"denom":"ASSET14","index":"0.000023082402053339"},{"denom":"ASSET15","index":"0.000018255332392862"},{"denom":"ASSET16","index":"0.000011216675450010"},{"denom":"ASSET17","index":"0.000008835128154455"},{"denom":"ASSET18","index":"0.000003633337151635"},{"denom":"ASSET2","index":"0.000007668586747858"},{"denom":"ASSET3","index":"0.000002126085354033"},{"denom":"ASSET4","index":"0.000020508686269066"},{"denom":"ASSET5","index":"0.000001656307666438"},{"denom":"ASSET6","index":"0.000006683025235204"},{"denom":"ASSET7","index":"0.000010507859389263"},{"denom":"ASSET8","index":"0.000014375637436113"},{"denom":"ASSET9","index":"0.000006098257618497"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001779729226299"},{"denom":"ASSET1","index":"0.000014840802182142"},{"denom":"ASSET10","index":"0.000010337989986643"},{"denom":"ASSET11","index":"0.000014356968690293"},{"denom":"ASSET12","index":"0.000012927350131463"},{"denom":"ASSET13","index":"0.000004449323065747"},{"denom":"ASSET14","index":"0.000013411183623312"},{"denom":"ASSET15","index":"0.000009589142170113"},{"denom":"ASSET16","index":"0.000006683709894939"},{"denom":"ASSET17","index":"0.000004745944603463"},{"denom":"ASSET18","index":"0.000002261131394068"},{"denom":"ASSET2","index":"0.000004378814667437"},{"denom":"ASSET3","index":"0.000001281307789972"},{"denom":"ASSET4","index":"0.000012059367435030"},{"denom":"ASSET5","index":"0.000000994411548574"},{"denom":"ASSET6","index":"0.000004048154592606"},{"denom":"ASSET7","index":"0.000006199876403090"},{"denom":"ASSET8","index":"0.000008089015212973"},{"denom":"ASSET9","index":"0.000003493812702447"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003433377044021"},{"denom":"ASSET1","index":"0.000029119719093870"},{"denom":"ASSET10","index":"0.000023168779363922"},{"denom":"ASSET11","index":"0.000028918871222836"},{"denom":"ASSET12","index":"0.000027536680421684"},{"denom":"ASSET13","index":"0.000009079853140421"},{"denom":"ASSET14","index":"0.000026553415276013"},{"denom":"ASSET15","index":"0.000020883272198610"},{"denom":"ASSET16","index":"0.000012920460029656"},{"denom":"ASSET17","index":"0.000010116347697920"},{"denom":"ASSET18","index":"0.000004196183907349"},{"denom":"ASSET2","index":"0.000008810148159861"},{"denom":"ASSET3","index":"0.000002451192479374"},{"denom":"ASSET4","index":"0.000023608026429735"},{"denom":"ASSET5","index":"0.000001908186346512"},{"denom":"ASSET6","index":"0.000007706415634871"},{"denom":"ASSET7","index":"0.000012098308533034"},{"denom":"ASSET8","index":"0.000016505861275643"},{"denom":"ASSET9","index":"0.000007009790471677"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001595670533734"},{"denom":"ASSET1","index":"0.000013304245337308"},{"denom":"ASSET10","index":"0.000009268754359880"},{"denom":"ASSET11","index":"0.000012870227612725"},{"denom":"ASSET12","index":"0.000011589729681675"},{"denom":"ASSET13","index":"0.000003988302473145"},{"denom":"ASSET14","index":"0.000012022582258004"},{"denom":"ASSET15","index":"0.000008595881243245"},{"denom":"ASSET16","index":"0.000005992940044003"},{"denom":"ASSET17","index":"0.000004256286571545"},{"denom":"ASSET18","index":"0.000002027357961809"},{"denom":"ASSET2","index":"0.000003927132189815"},{"denom":"ASSET3","index":"0.000001148836178358"},{"denom":"ASSET4","index":"0.000010811993222188"},{"denom":"ASSET5","index":"0.000000891338414244"},{"denom":"ASSET6","index":"0.000003628854236813"},{"denom":"ASSET7","index":"0.000005557757171166"},{"denom":"ASSET8","index":"0.000007252465306483"},{"denom":"ASSET9","index":"0.000003132501080646"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003118409098775"},{"denom":"ASSET1","index":"0.000026454243753489"},{"denom":"ASSET10","index":"0.000021084585905412"},{"denom":"ASSET11","index":"0.000026280950742513"},{"denom":"ASSET12","index":"0.000025043390497745"},{"denom":"ASSET13","index":"0.000008253298424938"},{"denom":"ASSET14","index":"0.000024125697910719"},{"denom":"ASSET15","index":"0.000018997425080839"},{"denom":"ASSET16","index":"0.000011737294217995"},{"denom":"ASSET17","index":"0.000009202973625129"},{"denom":"ASSET18","index":"0.000003809493270778"},{"denom":"ASSET2","index":"0.000008008868325931"},{"denom":"ASSET3","index":"0.000002225819587877"},{"denom":"ASSET4","index":"0.000021447702379813"},{"denom":"ASSET5","index":"0.000001733713847172"},{"denom":"ASSET6","index":"0.000006998355968525"},{"denom":"ASSET7","index":"0.000010990481127196"},{"denom":"ASSET8","index":"0.000015003824321723"},{"denom":"ASSET9","index":"0.000006370091157596"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001536288093705"},{"denom":"ASSET1","index":"0.000012808796131863"},{"denom":"ASSET10","index":"0.000008924322337818"},{"denom":"ASSET11","index":"0.000012391382492026"},{"denom":"ASSET12","index":"0.000011158327625467"},{"denom":"ASSET13","index":"0.000003840018305497"},{"denom":"ASSET14","index":"0.000011575273312793"},{"denom":"ASSET15","index":"0.000008276208110044"},{"denom":"ASSET16","index":"0.000005770322413488"},{"denom":"ASSET17","index":"0.000004097860139074"},{"denom":"ASSET18","index":"0.000001951829923499"},{"denom":"ASSET2","index":"0.000003781056289108"},{"denom":"ASSET3","index":"0.000001105771783560"},{"denom":"ASSET4","index":"0.000010409603607822"},{"denom":"ASSET5","index":"0.000000858224905226"},{"denom":"ASSET6","index":"0.000003494201399847"},{"denom":"ASSET7","index":"0.000005351036963607"},{"denom":"ASSET8","index":"0.000006982787369562"},{"denom":"ASSET9","index":"0.000003015953933577"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003103831608428"},{"denom":"ASSET1","index":"0.000026343132935309"},{"denom":"ASSET10","index":"0.000021085436521682"},{"denom":"ASSET11","index":"0.000026194005406126"},{"denom":"ASSET12","index":"0.000025005394550642"},{"denom":"ASSET13","index":"0.000008229918727938"},{"denom":"ASSET14","index":"0.000024032248358707"},{"denom":"ASSET15","index":"0.000018981699828973"},{"denom":"ASSET16","index":"0.000011682673521897"},{"denom":"ASSET17","index":"0.000009189132473525"},{"denom":"ASSET18","index":"0.000003786361913516"},{"denom":"ASSET2","index":"0.000007982150766688"},{"denom":"ASSET3","index":"0.000002214601198569"},{"denom":"ASSET4","index":"0.000021356131094847"},{"denom":"ASSET5","index":"0.000001725369734459"},{"denom":"ASSET6","index":"0.000006962131899100"},{"denom":"ASSET7","index":"0.000010942547729288"},{"denom":"ASSET8","index":"0.000014960973970884"},{"denom":"ASSET9","index":"0.000006348281537724"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001156201861882"},{"denom":"ASSET1","index":"0.000009641528249827"},{"denom":"ASSET10","index":"0.000006717693720376"},{"denom":"ASSET11","index":"0.000009327193051790"},{"denom":"ASSET12","index":"0.000008399128436016"},{"denom":"ASSET13","index":"0.000002890504654704"},{"denom":"ASSET14","index":"0.000008712888981039"},{"denom":"ASSET15","index":"0.000006229813312455"},{"denom":"ASSET16","index":"0.000004343227471224"},{"denom":"ASSET17","index":"0.000003084737373052"},{"denom":"ASSET18","index":"0.000001469387753892"},{"denom":"ASSET2","index":"0.000002846256372714"},{"denom":"ASSET3","index":"0.000000832672215639"},{"denom":"ASSET4","index":"0.000007835393830396"},{"denom":"ASSET5","index":"0.000000645909986459"},{"denom":"ASSET6","index":"0.000002630186839877"},{"denom":"ASSET7","index":"0.000004027742967162"},{"denom":"ASSET8","index":"0.000005256351108664"},{"denom":"ASSET9","index":"0.000002269879400812"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000002648545180722"},{"denom":"ASSET1","index":"0.000022528915692996"},{"denom":"ASSET10","index":"0.000018297756458480"},{"denom":"ASSET11","index":"0.000022469822082599"},{"denom":"ASSET12","index":"0.000021584227648624"},{"denom":"ASSET13","index":"0.000007070243338634"},{"denom":"ASSET14","index":"0.000020574684608302"},{"denom":"ASSET15","index":"0.000016423497937791"},{"denom":"ASSET16","index":"0.000009972839292196"},{"denom":"ASSET17","index":"0.000007932645550822"},{"denom":"ASSET18","index":"0.000003216131666673"},{"denom":"ASSET2","index":"0.000006846442901912"},{"denom":"ASSET3","index":"0.000001888119307859"},{"denom":"ASSET4","index":"0.000018258669735553"},{"denom":"ASSET5","index":"0.000001471345302008"},{"denom":"ASSET6","index":"0.000005932348598922"},{"denom":"ASSET7","index":"0.000009352074075404"},{"denom":"ASSET8","index":"0.000012853047191550"},{"denom":"ASSET9","index":"0.000005442948627063"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001638829976996"},{"denom":"ASSET1","index":"0.000013663699511091"},{"denom":"ASSET10","index":"0.000009519748943981"},{"denom":"ASSET11","index":"0.000013218199388741"},{"denom":"ASSET12","index":"0.000011902774883924"},{"denom":"ASSET13","index":"0.000004095984811686"},{"denom":"ASSET14","index":"0.000012347548252404"},{"denom":"ASSET15","index":"0.000008827879259679"},{"denom":"ASSET16","index":"0.000006154878525580"},{"denom":"ASSET17","index":"0.000004371424528441"},{"denom":"ASSET18","index":"0.000002082149837736"},{"denom":"ASSET2","index":"0.000004033483978861"},{"denom":"ASSET3","index":"0.000001179521531115"},{"denom":"ASSET4","index":"0.000011104072380722"},{"denom":"ASSET5","index":"0.000000915709876282"},{"denom":"ASSET6","index":"0.000003726793845693"},{"denom":"ASSET7","index":"0.000005707924895490"},{"denom":"ASSET8","index":"0.000007448500414296"},{"denom":"ASSET9","index":"0.000003217339382778"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003133427860009"},{"denom":"ASSET1","index":"0.000026571363581284"},{"denom":"ASSET10","index":"0.000021118003104150"},{"denom":"ASSET11","index":"0.000026381510155653"},{"denom":"ASSET12","index":"0.000025108485590780"},{"denom":"ASSET13","index":"0.000008282355352591"},{"denom":"ASSET14","index":"0.000024227637307493"},{"denom":"ASSET15","index":"0.000019037535386694"},{"denom":"ASSET16","index":"0.000011793447009555"},{"denom":"ASSET17","index":"0.000009226841180516"},{"denom":"ASSET18","index":"0.000003831770888939"},{"denom":"ASSET2","index":"0.000008040278303534"},{"denom":"ASSET3","index":"0.000002236402387063"},{"denom":"ASSET4","index":"0.000021543810534784"},{"denom":"ASSET5","index":"0.000001742508705183"},{"denom":"ASSET6","index":"0.000007033989161296"},{"denom":"ASSET7","index":"0.000011040340871930"},{"denom":"ASSET8","index":"0.000015056795520064"},{"denom":"ASSET9","index":"0.000006395464292965"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001556422065682"},{"denom":"ASSET1","index":"0.000012975233747354"},{"denom":"ASSET10","index":"0.000009039925804131"},{"denom":"ASSET11","index":"0.000012551842294036"},{"denom":"ASSET12","index":"0.000011303196313064"},{"denom":"ASSET13","index":"0.000003889859143149"},{"denom":"ASSET14","index":"0.000011725391745328"},{"denom":"ASSET15","index":"0.000008383310245172"},{"denom":"ASSET16","index":"0.000005844954893688"},{"denom":"ASSET17","index":"0.000004150990406731"},{"denom":"ASSET18","index":"0.000001977421476890"},{"denom":"ASSET2","index":"0.000003830058090421"},{"denom":"ASSET3","index":"0.000001120273054448"},{"denom":"ASSET4","index":"0.000010544520290781"},{"denom":"ASSET5","index":"0.000000869507306673"},{"denom":"ASSET6","index":"0.000003539424974160"},{"denom":"ASSET7","index":"0.000005420766093000"},{"denom":"ASSET8","index":"0.000007073268516732"},{"denom":"ASSET9","index":"0.000003055036447059"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003102345998156"},{"denom":"ASSET1","index":"0.000026324295521459"},{"denom":"ASSET10","index":"0.000021034709957123"},{"denom":"ASSET11","index":"0.000026165624152899"},{"denom":"ASSET12","index":"0.000024960753498443"},{"denom":"ASSET13","index":"0.000008219480216908"},{"denom":"ASSET14","index":"0.000024012126304297"},{"denom":"ASSET15","index":"0.000018942125813395"},{"denom":"ASSET16","index":"0.000011676379885795"},{"denom":"ASSET17","index":"0.000009172744202097"},{"denom":"ASSET18","index":"0.000003786686743681"},{"denom":"ASSET2","index":"0.000007973892542195"},{"denom":"ASSET3","index":"0.000002213622154517"},{"denom":"ASSET4","index":"0.000021341514997764"},{"denom":"ASSET5","index":"0.000001724677267981"},{"denom":"ASSET6","index":"0.000006959760131783"},{"denom":"ASSET7","index":"0.000010935767858794"},{"denom":"ASSET8","index":"0.000014942141973689"},{"denom":"ASSET9","index":"0.000006341977499472"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001602535700795"},{"denom":"ASSET1","index":"0.000013360208994045"},{"denom":"ASSET10","index":"0.000009307956057468"},{"denom":"ASSET11","index":"0.000012924500245282"},{"denom":"ASSET12","index":"0.000011638378499862"},{"denom":"ASSET13","index":"0.000004005127453862"},{"denom":"ASSET14","index":"0.000012073279383206"},{"denom":"ASSET15","index":"0.000008632311279566"},{"denom":"ASSET16","index":"0.000006018597363935"},{"denom":"ASSET17","index":"0.000004274146638048"},{"denom":"ASSET18","index":"0.000002036090141777"},{"denom":"ASSET2","index":"0.000003943729682095"},{"denom":"ASSET3","index":"0.000001153631816872"},{"denom":"ASSET4","index":"0.000010857441929150"},{"denom":"ASSET5","index":"0.000000895384171592"},{"denom":"ASSET6","index":"0.000003644280900498"},{"denom":"ASSET7","index":"0.000005581542172809"},{"denom":"ASSET8","index":"0.000007283176031543"},{"denom":"ASSET9","index":"0.000003145827937606"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003144114236048"},{"denom":"ASSET1","index":"0.000026672683120621"},{"denom":"ASSET10","index":"0.000021269722635007"},{"denom":"ASSET11","index":"0.000026500587720899"},{"denom":"ASSET12","index":"0.000025258297912053"},{"denom":"ASSET13","index":"0.000008323039503604"},{"denom":"ASSET14","index":"0.000024326015412045"},{"denom":"ASSET15","index":"0.000019162234595686"},{"denom":"ASSET16","index":"0.000011833945147558"},{"denom":"ASSET17","index":"0.000009281867675434"},{"denom":"ASSET18","index":"0.000003840349431676"},{"denom":"ASSET2","index":"0.000008076055447193"},{"denom":"ASSET3","index":"0.000002244145529651"},{"denom":"ASSET4","index":"0.000021624555086447"},{"denom":"ASSET5","index":"0.000001748086313596"},{"denom":"ASSET6","index":"0.000007055400333314"},{"denom":"ASSET7","index":"0.000011081362186058"},{"denom":"ASSET8","index":"0.000015130336137492"},{"denom":"ASSET9","index":"0.000006423586371910"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001633811359009"},{"denom":"ASSET1","index":"0.000013620164108551"},{"denom":"ASSET10","index":"0.000009487838038290"},{"denom":"ASSET11","index":"0.000013174776703502"},{"denom":"ASSET12","index":"0.000011864685946211"},{"denom":"ASSET13","index":"0.000004082355776036"},{"denom":"ASSET14","index":"0.000012307900729772"},{"denom":"ASSET15","index":"0.000008799117026580"},{"denom":"ASSET16","index":"0.000006135483082238"},{"denom":"ASSET17","index":"0.000004356106083529"},{"denom":"ASSET18","index":"0.000002074853521082"},{"denom":"ASSET2","index":"0.000004019349752882"},{"denom":"ASSET3","index":"0.000001175388225032"},{"denom":"ASSET4","index":"0.000011067333860098"},{"denom":"ASSET5","index":"0.000000912501024979"},{"denom":"ASSET6","index":"0.000003715182744556"},{"denom":"ASSET7","index":"0.000005690095677188"},{"denom":"ASSET8","index":"0.000007423847624648"},{"denom":"ASSET9","index":"0.000003206789316354"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003109600829404"},{"denom":"ASSET1","index":"0.000026362702045617"},{"denom":"ASSET10","index":"0.000020937844947102"},{"denom":"ASSET11","index":"0.000026169598808926"},{"denom":"ASSET12","index":"0.000024901798461360"},{"denom":"ASSET13","index":"0.000008215149609138"},{"denom":"ASSET14","index":"0.000024035954930107"},{"denom":"ASSET15","index":"0.000018878331344314"},{"denom":"ASSET16","index":"0.000011701775976010"},{"denom":"ASSET17","index":"0.000009149505282332"},{"denom":"ASSET18","index":"0.000003801954966508"},{"denom":"ASSET2","index":"0.000007974718303805"},{"denom":"ASSET3","index":"0.000002219037761573"},{"denom":"ASSET4","index":"0.000021373555319687"},{"denom":"ASSET5","index":"0.000001728657323000"},{"denom":"ASSET6","index":"0.000006980294033305"},{"denom":"ASSET7","index":"0.000010954522542925"},{"denom":"ASSET8","index":"0.000014935013269095"},{"denom":"ASSET9","index":"0.000006344057182602"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001356454583190"},{"denom":"ASSET1","index":"0.000011307707773056"},{"denom":"ASSET10","index":"0.000007878355411964"},{"denom":"ASSET11","index":"0.000010938987301217"},{"denom":"ASSET12","index":"0.000009850463994830"},{"denom":"ASSET13","index":"0.000003389876593037"},{"denom":"ASSET14","index":"0.000010218764511690"},{"denom":"ASSET15","index":"0.000007305956775156"},{"denom":"ASSET16","index":"0.000005094053899100"},{"denom":"ASSET17","index":"0.000003617492191826"},{"denom":"ASSET18","index":"0.000001723075280133"},{"denom":"ASSET2","index":"0.000003337802175602"},{"denom":"ASSET3","index":"0.000000976395326909"},{"denom":"ASSET4","index":"0.000009189454857387"},{"denom":"ASSET5","index":"0.000000758018737665"},{"denom":"ASSET6","index":"0.000003084569323074"},{"denom":"ASSET7","index":"0.000004724073562323"},{"denom":"ASSET8","index":"0.000006164519141376"},{"denom":"ASSET9","index":"0.000002662514568862"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000002920257070141"},{"denom":"ASSET1","index":"0.000024811653868653"},{"denom":"ASSET10","index":"0.000020012294768332"},{"denom":"ASSET11","index":"0.000024710629923001"},{"denom":"ASSET12","index":"0.000023666550441425"},{"denom":"ASSET13","index":"0.000007769918885884"},{"denom":"ASSET14","index":"0.000022647790193256"},{"denom":"ASSET15","index":"0.000017987461600930"},{"denom":"ASSET16","index":"0.000010993196459757"},{"denom":"ASSET17","index":"0.000008697266331114"},{"denom":"ASSET18","index":"0.000003553540715950"},{"denom":"ASSET2","index":"0.000007529733395993"},{"denom":"ASSET3","index":"0.000002082581454906"},{"denom":"ASSET4","index":"0.000020111524804667"},{"denom":"ASSET5","index":"0.000001623122955496"},{"denom":"ASSET6","index":"0.000006544727800067"},{"denom":"ASSET7","index":"0.000010303065547743"},{"denom":"ASSET8","index":"0.000014124873274804"},{"denom":"ASSET9","index":"0.000005987532811110"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001730803097805"},{"denom":"ASSET1","index":"0.000014429128492036"},{"denom":"ASSET10","index":"0.000010053081326419"},{"denom":"ASSET11","index":"0.000013956042311970"},{"denom":"ASSET12","index":"0.000012568515161896"},{"denom":"ASSET13","index":"0.000004324123072683"},{"denom":"ASSET14","index":"0.000013038716670133"},{"denom":"ASSET15","index":"0.000009320374681681"},{"denom":"ASSET16","index":"0.000006499165632259"},{"denom":"ASSET17","index":"0.000004615474927481"},{"denom":"ASSET18","index":"0.000002198119934213"},{"denom":"ASSET2","index":"0.000004257775620601"},{"denom":"ASSET3","index":"0.000001243293558590"},{"denom":"ASSET4","index":"0.000011726190987631"},{"denom":"ASSET5","index":"0.000000966365062941"},{"denom":"ASSET6","index":"0.000003934692375677"},{"denom":"ASSET7","index":"0.000006026079452192"},{"denom":"ASSET8","index":"0.000007863615407695"},{"denom":"ASSET9","index":"0.000003395258743528"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003241945367060"},{"denom":"ASSET1","index":"0.000027480716546724"},{"denom":"ASSET10","index":"0.000021780901079221"},{"denom":"ASSET11","index":"0.000027265989011084"},{"denom":"ASSET12","index":"0.000025921947969478"},{"denom":"ASSET13","index":"0.000008556984130745"},{"denom":"ASSET14","index":"0.000025051754134356"},{"denom":"ASSET15","index":"0.000019643848931612"},{"denom":"ASSET16","index":"0.000012200322352703"},{"denom":"ASSET17","index":"0.000009524928673174"},{"denom":"ASSET18","index":"0.000003966981346299"},{"denom":"ASSET2","index":"0.000008309018225650"},{"denom":"ASSET3","index":"0.000002312540225621"},{"denom":"ASSET4","index":"0.000022282443818183"},{"denom":"ASSET5","index":"0.000001802193647755"},{"denom":"ASSET6","index":"0.000007278646216530"},{"denom":"ASSET7","index":"0.000011418356902196"},{"denom":"ASSET8","index":"0.000015557459098515"},{"denom":"ASSET9","index":"0.000006608754258977"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001631665384825"},{"denom":"ASSET1","index":"0.000013602742609312"},{"denom":"ASSET10","index":"0.000009477179623123"},{"denom":"ASSET11","index":"0.000013159027954757"},{"denom":"ASSET12","index":"0.000011849393704263"},{"denom":"ASSET13","index":"0.000004077627053980"},{"denom":"ASSET14","index":"0.000012292493795584"},{"denom":"ASSET15","index":"0.000008788868801652"},{"denom":"ASSET16","index":"0.000006127810000788"},{"denom":"ASSET17","index":"0.000004351722256101"},{"denom":"ASSET18","index":"0.000002072921786447"},{"denom":"ASSET2","index":"0.000004015556167401"},{"denom":"ASSET3","index":"0.000001174430339134"},{"denom":"ASSET4","index":"0.000011054148880171"},{"denom":"ASSET5","index":"0.000000911397275215"},{"denom":"ASSET6","index":"0.000003710118240373"},{"denom":"ASSET7","index":"0.000005682866219766"},{"denom":"ASSET8","index":"0.000007415319974879"},{"denom":"ASSET9","index":"0.000003202489009539"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003079719434352"},{"denom":"ASSET1","index":"0.000026105925494605"},{"denom":"ASSET10","index":"0.000020711970439773"},{"denom":"ASSET11","index":"0.000025910008103106"},{"denom":"ASSET12","index":"0.000024641613628664"},{"denom":"ASSET13","index":"0.000008133110770201"},{"denom":"ASSET14","index":"0.000023800542954419"},{"denom":"ASSET15","index":"0.000018678884312278"},{"denom":"ASSET16","index":"0.000011589749383737"},{"denom":"ASSET17","index":"0.000009055208366452"},{"denom":"ASSET18","index":"0.000003767697278786"},{"denom":"ASSET2","index":"0.000007896757003962"},{"denom":"ASSET3","index":"0.000002198611212202"},{"denom":"ASSET4","index":"0.000021166859181475"},{"denom":"ASSET5","index":"0.000001712166144109"},{"denom":"ASSET6","index":"0.000006913910929446"},{"denom":"ASSET7","index":"0.000010848237821893"},{"denom":"ASSET8","index":"0.000014785764472138"},{"denom":"ASSET9","index":"0.000006281127943464"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001520990142264"},{"denom":"ASSET1","index":"0.000012680102108631"},{"denom":"ASSET10","index":"0.000008834326429376"},{"denom":"ASSET11","index":"0.000012266893306329"},{"denom":"ASSET12","index":"0.000011046354389007"},{"denom":"ASSET13","index":"0.000003801591675587"},{"denom":"ASSET14","index":"0.000011458856247250"},{"denom":"ASSET15","index":"0.000008193128168148"},{"denom":"ASSET16","index":"0.000005712107994187"},{"denom":"ASSET17","index":"0.000004056798480773"},{"denom":"ASSET18","index":"0.000001932431584420"},{"denom":"ASSET2","index":"0.000003743268790745"},{"denom":"ASSET3","index":"0.000001095056346905"},{"denom":"ASSET4","index":"0.000010304770071444"},{"denom":"ASSET5","index":"0.000000849746758541"},{"denom":"ASSET6","index":"0.000003459077279153"},{"denom":"ASSET7","index":"0.000005297485303768"},{"denom":"ASSET8","index":"0.000006912499005837"},{"denom":"ASSET9","index":"0.000002985778231863"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003063170165442"},{"denom":"ASSET1","index":"0.000025996358951928"},{"denom":"ASSET10","index":"0.000020799618544072"},{"denom":"ASSET11","index":"0.000025846936295403"},{"denom":"ASSET12","index":"0.000024670295822131"},{"denom":"ASSET13","index":"0.000008120644896033"},{"denom":"ASSET14","index":"0.000023715222729701"},{"denom":"ASSET15","index":"0.000018725986369791"},{"denom":"ASSET16","index":"0.000011529047312284"},{"denom":"ASSET17","index":"0.000009065966880203"},{"denom":"ASSET18","index":"0.000003737409049681"},{"denom":"ASSET2","index":"0.000007876841198043"},{"denom":"ASSET3","index":"0.000002185992003768"},{"denom":"ASSET4","index":"0.000021074917159843"},{"denom":"ASSET5","index":"0.000001702800306431"},{"denom":"ASSET6","index":"0.000006871093729972"},{"denom":"ASSET7","index":"0.000010798830402478"},{"denom":"ASSET8","index":"0.000014762015379742"},{"denom":"ASSET9","index":"0.000006264517424621"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001519669987195"},{"denom":"ASSET1","index":"0.000012676623405048"},{"denom":"ASSET10","index":"0.000008831600766261"},{"denom":"ASSET11","index":"0.000012262448940742"},{"denom":"ASSET12","index":"0.000011042591812037"},{"denom":"ASSET13","index":"0.000003799690110356"},{"denom":"ASSET14","index":"0.000011454705706870"},{"denom":"ASSET15","index":"0.000008189733375059"},{"denom":"ASSET16","index":"0.000005709838012905"},{"denom":"ASSET17","index":"0.000004055200725152"},{"denom":"ASSET18","index":"0.000001931783882027"},{"denom":"ASSET2","index":"0.000003741994165079"},{"denom":"ASSET3","index":"0.000001094162390780"},{"denom":"ASSET4","index":"0.000010301817086076"},{"denom":"ASSET5","index":"0.000000848954623355"},{"denom":"ASSET6","index":"0.000003457635577645"},{"denom":"ASSET7","index":"0.000005295663548598"},{"denom":"ASSET8","index":"0.000006910119731604"},{"denom":"ASSET9","index":"0.000002984734883325"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003051401969864"},{"denom":"ASSET1","index":"0.000025903543471827"},{"denom":"ASSET10","index":"0.000020717104247015"},{"denom":"ASSET11","index":"0.000025751820078700"},{"denom":"ASSET12","index":"0.000024575704795191"},{"denom":"ASSET13","index":"0.000008089460542782"},{"denom":"ASSET14","index":"0.000023629519286555"},{"denom":"ASSET15","index":"0.000018652475785738"},{"denom":"ASSET16","index":"0.000011487598582804"},{"denom":"ASSET17","index":"0.000009031027466449"},{"denom":"ASSET18","index":"0.000003724432134289"},{"denom":"ASSET2","index":"0.000007847588407204"},{"denom":"ASSET3","index":"0.000002177732310384"},{"denom":"ASSET4","index":"0.000021000151540181"},{"denom":"ASSET5","index":"0.000001696165098739"},{"denom":"ASSET6","index":"0.000006846477479182"},{"denom":"ASSET7","index":"0.000010760324594985"},{"denom":"ASSET8","index":"0.000014706911787677"},{"denom":"ASSET9","index":"0.000006241583848480"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001392192847149"},{"denom":"ASSET1","index":"0.000011611450847386"},{"denom":"ASSET10","index":"0.000008088781067478"},{"denom":"ASSET11","index":"0.000011231761889073"},{"denom":"ASSET12","index":"0.000010115195100551"},{"denom":"ASSET13","index":"0.000003480482117873"},{"denom":"ASSET14","index":"0.000010492071548062"},{"denom":"ASSET15","index":"0.000007502372565194"},{"denom":"ASSET16","index":"0.000005229863836918"},{"denom":"ASSET17","index":"0.000003713920514466"},{"denom":"ASSET18","index":"0.000001769069294661"},{"denom":"ASSET2","index":"0.000003427044412629"},{"denom":"ASSET3","index":"0.000001002660101028"},{"denom":"ASSET4","index":"0.000009435973741790"},{"denom":"ASSET5","index":"0.000000777659236842"},{"denom":"ASSET6","index":"0.000003166887163415"},{"denom":"ASSET7","index":"0.000004850174878604"},{"denom":"ASSET8","index":"0.000006329555560626"},{"denom":"ASSET9","index":"0.000002733760499857"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000002834261839987"},{"denom":"ASSET1","index":"0.000024063735726127"},{"denom":"ASSET10","index":"0.000019278012414561"},{"denom":"ASSET11","index":"0.000023930766794440"},{"denom":"ASSET12","index":"0.000022855511266190"},{"denom":"ASSET13","index":"0.000007519422832827"},{"denom":"ASSET14","index":"0.000021953268691937"},{"denom":"ASSET15","index":"0.000017352048046781"},{"denom":"ASSET16","index":"0.000010669562284438"},{"denom":"ASSET17","index":"0.000008398158415340"},{"denom":"ASSET18","index":"0.000003456710779118"},{"denom":"ASSET2","index":"0.000007292324829772"},{"denom":"ASSET3","index":"0.000002022818722752"},{"denom":"ASSET4","index":"0.000019507505991506"},{"denom":"ASSET5","index":"0.000001575196067099"},{"denom":"ASSET6","index":"0.000006357416996111"},{"denom":"ASSET7","index":"0.000009994574317511"},{"denom":"ASSET8","index":"0.000013669954492341"},{"denom":"ASSET9","index":"0.000005799591528398"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001553840185331"},{"denom":"ASSET1","index":"0.000012958259817171"},{"denom":"ASSET10","index":"0.000009028099224953"},{"denom":"ASSET11","index":"0.000012533831248030"},{"denom":"ASSET12","index":"0.000011286922457332"},{"denom":"ASSET13","index":"0.000003884600463327"},{"denom":"ASSET14","index":"0.000011708953124953"},{"denom":"ASSET15","index":"0.000008371074208317"},{"denom":"ASSET16","index":"0.000005836492301072"},{"denom":"ASSET17","index":"0.000004143573827548"},{"denom":"ASSET18","index":"0.000001973472951431"},{"denom":"ASSET2","index":"0.000003824652925312"},{"denom":"ASSET3","index":"0.000001117422108587"},{"denom":"ASSET4","index":"0.000010529185576831"},{"denom":"ASSET5","index":"0.000000868040350447"},{"denom":"ASSET6","index":"0.000003534506841323"},{"denom":"ASSET7","index":"0.000005412063731931"},{"denom":"ASSET8","index":"0.000007064217879605"},{"denom":"ASSET9","index":"0.000003050130734168"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000002875427361068"},{"denom":"ASSET1","index":"0.000024372739255487"},{"denom":"ASSET10","index":"0.000019284464921318"},{"denom":"ASSET11","index":"0.000024174413552556"},{"denom":"ASSET12","index":"0.000022964657814992"},{"denom":"ASSET13","index":"0.000007586106071195"},{"denom":"ASSET14","index":"0.000022214775035212"},{"denom":"ASSET15","index":"0.000017399266119679"},{"denom":"ASSET16","index":"0.000010822432031544"},{"denom":"ASSET17","index":"0.000008437405253940"},{"denom":"ASSET18","index":"0.000003520101477575"},{"denom":"ASSET2","index":"0.000007366931162610"},{"denom":"ASSET3","index":"0.000002051556015935"},{"denom":"ASSET4","index":"0.000019761188522524"},{"denom":"ASSET5","index":"0.000001598363223465"},{"denom":"ASSET6","index":"0.000006458982880806"},{"denom":"ASSET7","index":"0.000010127316932433"},{"denom":"ASSET8","index":"0.000013792105044122"},{"denom":"ASSET9","index":"0.000005859963066840"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001468329025254"},{"denom":"ASSET1","index":"0.000012248466172689"},{"denom":"ASSET10","index":"0.000008533242661533"},{"denom":"ASSET11","index":"0.000011849890220686"},{"denom":"ASSET12","index":"0.000010670683647662"},{"denom":"ASSET13","index":"0.000003671855143322"},{"denom":"ASSET14","index":"0.000011069259599665"},{"denom":"ASSET15","index":"0.000007913694549611"},{"denom":"ASSET16","index":"0.000005518108516848"},{"denom":"ASSET17","index":"0.000003917609227717"},{"denom":"ASSET18","index":"0.000001866904977257"},{"denom":"ASSET2","index":"0.000003616095813249"},{"denom":"ASSET3","index":"0.000001057362111013"},{"denom":"ASSET4","index":"0.000009954072998206"},{"denom":"ASSET5","index":"0.000000819868668110"},{"denom":"ASSET6","index":"0.000003341429483630"},{"denom":"ASSET7","index":"0.000005117467404472"},{"denom":"ASSET8","index":"0.000006676663486141"},{"denom":"ASSET9","index":"0.000002882963880808"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000002995432004660"},{"denom":"ASSET1","index":"0.000025434255671185"},{"denom":"ASSET10","index":"0.000020381248485322"},{"denom":"ASSET11","index":"0.000025297016742096"},{"denom":"ASSET12","index":"0.000024161457271020"},{"denom":"ASSET13","index":"0.000007948725545453"},{"denom":"ASSET14","index":"0.000023205881885085"},{"denom":"ASSET15","index":"0.000018343715148864"},{"denom":"ASSET16","index":"0.000011277889207663"},{"denom":"ASSET17","index":"0.000008877556775335"},{"denom":"ASSET18","index":"0.000003654253802028"},{"denom":"ASSET2","index":"0.000007709102798424"},{"denom":"ASSET3","index":"0.000002137627884226"},{"denom":"ASSET4","index":"0.000020618696770430"},{"denom":"ASSET5","index":"0.000001664440090804"},{"denom":"ASSET6","index":"0.000006720260763181"},{"denom":"ASSET7","index":"0.000010565171316359"},{"denom":"ASSET8","index":"0.000014449121165534"},{"denom":"ASSET9","index":"0.000006129217088192"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001484659776814"},{"denom":"ASSET1","index":"0.000012377911876883"},{"denom":"ASSET10","index":"0.000008623797972416"},{"denom":"ASSET11","index":"0.000011974339842928"},{"denom":"ASSET12","index":"0.000010782780641408"},{"denom":"ASSET13","index":"0.000003710691597017"},{"denom":"ASSET14","index":"0.000011185714112019"},{"denom":"ASSET15","index":"0.000007997367331102"},{"denom":"ASSET16","index":"0.000005575935127370"},{"denom":"ASSET17","index":"0.000003959731301514"},{"denom":"ASSET18","index":"0.000001886316120734"},{"denom":"ASSET2","index":"0.000003653859459324"},{"denom":"ASSET3","index":"0.000001068955039306"},{"denom":"ASSET4","index":"0.000010059288371675"},{"denom":"ASSET5","index":"0.000000829493784981"},{"denom":"ASSET6","index":"0.000003376084404307"},{"denom":"ASSET7","index":"0.000005171085966725"},{"denom":"ASSET8","index":"0.000006747698865199"},{"denom":"ASSET9","index":"0.000002914403105969"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000002967027008461"},{"denom":"ASSET1","index":"0.000025180120058697"},{"denom":"ASSET10","index":"0.000020126919929476"},{"denom":"ASSET11","index":"0.000025029678796477"},{"denom":"ASSET12","index":"0.000023880507059092"},{"denom":"ASSET13","index":"0.000007862872062626"},{"denom":"ASSET14","index":"0.000022968832134984"},{"denom":"ASSET15","index":"0.000018123195207046"},{"denom":"ASSET16","index":"0.000011168095360491"},{"denom":"ASSET17","index":"0.000008775186029853"},{"denom":"ASSET18","index":"0.000003621217117579"},{"denom":"ASSET2","index":"0.000007627534970337"},{"denom":"ASSET3","index":"0.000002117298518473"},{"denom":"ASSET4","index":"0.000020413769751333"},{"denom":"ASSET5","index":"0.000001649183760435"},{"denom":"ASSET6","index":"0.000006656038319196"},{"denom":"ASSET7","index":"0.000010459966878994"},{"denom":"ASSET8","index":"0.000014293861494285"},{"denom":"ASSET9","index":"0.000006066597621916"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001508631993599"},{"denom":"ASSET1","index":"0.000012578103553994"},{"denom":"ASSET10","index":"0.000008763023138279"},{"denom":"ASSET11","index":"0.000012169014387632"},{"denom":"ASSET12","index":"0.000010956555546150"},{"denom":"ASSET13","index":"0.000003770654442897"},{"denom":"ASSET14","index":"0.000011367495794714"},{"denom":"ASSET15","index":"0.000008126250861227"},{"denom":"ASSET16","index":"0.000005666162616450"},{"denom":"ASSET17","index":"0.000004024252704398"},{"denom":"ASSET18","index":"0.000001915870077761"},{"denom":"ASSET2","index":"0.000003713270894674"},{"denom":"ASSET3","index":"0.000001084734169631"},{"denom":"ASSET4","index":"0.000010221675912459"},{"denom":"ASSET5","index":"0.000000842242401334"},{"denom":"ASSET6","index":"0.000003430055317962"},{"denom":"ASSET7","index":"0.000005255222367887"},{"denom":"ASSET8","index":"0.000006856408471522"},{"denom":"ASSET9","index":"0.000002961731521176"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000002968383248598"},{"denom":"ASSET1","index":"0.000025185581850199"},{"denom":"ASSET10","index":"0.000020091193699906"},{"denom":"ASSET11","index":"0.000025026167595767"},{"denom":"ASSET12","index":"0.000023854952987524"},{"denom":"ASSET13","index":"0.000007859725566891"},{"denom":"ASSET14","index":"0.000022971118914045"},{"denom":"ASSET15","index":"0.000018098517255117"},{"denom":"ASSET16","index":"0.000011173004258039"},{"denom":"ASSET17","index":"0.000008766603022733"},{"denom":"ASSET18","index":"0.000003624559740525"},{"denom":"ASSET2","index":"0.000007626317523237"},{"denom":"ASSET3","index":"0.000002117313008939"},{"denom":"ASSET4","index":"0.000020418576076670"},{"denom":"ASSET5","index":"0.000001649450966157"},{"denom":"ASSET6","index":"0.000006660362585584"},{"denom":"ASSET7","index":"0.000010463779822658"},{"denom":"ASSET8","index":"0.000014287735496216"},{"denom":"ASSET9","index":"0.000006065360072421"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001603618851190"},{"denom":"ASSET1","index":"0.000013373450792115"},{"denom":"ASSET10","index":"0.000009317368604669"},{"denom":"ASSET11","index":"0.000012937408123124"},{"denom":"ASSET12","index":"0.000011650307554501"},{"denom":"ASSET13","index":"0.000004008493774333"},{"denom":"ASSET14","index":"0.000012085243516211"},{"denom":"ASSET15","index":"0.000008640063748266"},{"denom":"ASSET16","index":"0.000006023807734317"},{"denom":"ASSET17","index":"0.000004278530351069"},{"denom":"ASSET18","index":"0.000002037448105618"},{"denom":"ASSET2","index":"0.000003947624873839"},{"denom":"ASSET3","index":"0.000001154295694818"},{"denom":"ASSET4","index":"0.000010867865506336"},{"denom":"ASSET5","index":"0.000000896432898181"},{"denom":"ASSET6","index":"0.000003647707200497"},{"denom":"ASSET7","index":"0.000005586658358043"},{"denom":"ASSET8","index":"0.000007289880864586"},{"denom":"ASSET9","index":"0.000003148582216449"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003259379166935"},{"denom":"ASSET1","index":"0.000027669546155668"},{"denom":"ASSET10","index":"0.000022163157427920"},{"denom":"ASSET11","index":"0.000027516665793422"},{"denom":"ASSET12","index":"0.000026276569409586"},{"denom":"ASSET13","index":"0.000008645229164029"},{"denom":"ASSET14","index":"0.000025243382728696"},{"denom":"ASSET15","index":"0.000019947981783747"},{"denom":"ASSET16","index":"0.000012268920188963"},{"denom":"ASSET17","index":"0.000009656339783182"},{"denom":"ASSET18","index":"0.000003975233530089"},{"denom":"ASSET2","index":"0.000008385350610200"},{"denom":"ASSET3","index":"0.000002325230588439"},{"denom":"ASSET4","index":"0.000022430515898086"},{"denom":"ASSET5","index":"0.000001812256369527"},{"denom":"ASSET6","index":"0.000007311001085881"},{"denom":"ASSET7","index":"0.000011492885803011"},{"denom":"ASSET8","index":"0.000015716897251793"},{"denom":"ASSET9","index":"0.000006668589151432"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001669758803356"},{"denom":"ASSET1","index":"0.000013919924903508"},{"denom":"ASSET10","index":"0.000009698114015232"},{"denom":"ASSET11","index":"0.000013466332119255"},{"denom":"ASSET12","index":"0.000012126099781115"},{"denom":"ASSET13","index":"0.000004173211661392"},{"denom":"ASSET14","index":"0.000012579297449702"},{"denom":"ASSET15","index":"0.000008994017898909"},{"denom":"ASSET16","index":"0.000006270880730729"},{"denom":"ASSET17","index":"0.000004453348668392"},{"denom":"ASSET18","index":"0.000002121376009280"},{"denom":"ASSET2","index":"0.000004109202923545"},{"denom":"ASSET3","index":"0.000001201941855137"},{"denom":"ASSET4","index":"0.000011312556625386"},{"denom":"ASSET5","index":"0.000000932868086778"},{"denom":"ASSET6","index":"0.000003797061547622"},{"denom":"ASSET7","index":"0.000005815312368147"},{"denom":"ASSET8","index":"0.000007588591475923"},{"denom":"ASSET9","index":"0.000003277484447193"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003314119794923"},{"denom":"ASSET1","index":"0.000028119315186385"},{"denom":"ASSET10","index":"0.000022456877991933"},{"denom":"ASSET11","index":"0.000027947185249485"},{"denom":"ASSET12","index":"0.000026653541530161"},{"denom":"ASSET13","index":"0.000008778725953540"},{"denom":"ASSET14","index":"0.000025648491290636"},{"denom":"ASSET15","index":"0.000020225495910600"},{"denom":"ASSET16","index":"0.000012473684612014"},{"denom":"ASSET17","index":"0.000009794866581105"},{"denom":"ASSET18","index":"0.000004045992889163"},{"denom":"ASSET2","index":"0.000008517017325485"},{"denom":"ASSET3","index":"0.000002365208974685"},{"denom":"ASSET4","index":"0.000022797013251164"},{"denom":"ASSET5","index":"0.000001842432416817"},{"denom":"ASSET6","index":"0.000007435560259585"},{"denom":"ASSET7","index":"0.000011681616070006"},{"denom":"ASSET8","index":"0.000015958852395270"},{"denom":"ASSET9","index":"0.000006773561992828"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001334597814253"},{"denom":"ASSET1","index":"0.000011126876577448"},{"denom":"ASSET10","index":"0.000007751884027943"},{"denom":"ASSET11","index":"0.000010763759508328"},{"denom":"ASSET12","index":"0.000009692944381721"},{"denom":"ASSET13","index":"0.000003335543967388"},{"denom":"ASSET14","index":"0.000010055110882597"},{"denom":"ASSET15","index":"0.000007189147627631"},{"denom":"ASSET16","index":"0.000005012346349398"},{"denom":"ASSET17","index":"0.000003559878072918"},{"denom":"ASSET18","index":"0.000001695813746885"},{"denom":"ASSET2","index":"0.000003284213282225"},{"denom":"ASSET3","index":"0.000000960549210329"},{"denom":"ASSET4","index":"0.000009042280418860"},{"denom":"ASSET5","index":"0.000000745720787237"},{"denom":"ASSET6","index":"0.000003035164402357"},{"denom":"ASSET7","index":"0.000004648278712034"},{"denom":"ASSET8","index":"0.000006065575963495"},{"denom":"ASSET9","index":"0.000002619766079830"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000002933404194828"},{"denom":"ASSET1","index":"0.000024932632498194"},{"denom":"ASSET10","index":"0.000020157113753706"},{"denom":"ASSET11","index":"0.000024842878528839"},{"denom":"ASSET12","index":"0.000023817726072485"},{"denom":"ASSET13","index":"0.000007813243799971"},{"denom":"ASSET14","index":"0.000022761898108549"},{"denom":"ASSET15","index":"0.000018109267957138"},{"denom":"ASSET16","index":"0.000011043189892304"},{"denom":"ASSET17","index":"0.000008753164046701"},{"denom":"ASSET18","index":"0.000003567063844603"},{"denom":"ASSET2","index":"0.000007569762146700"},{"denom":"ASSET3","index":"0.000002091389836038"},{"denom":"ASSET4","index":"0.000020208488830330"},{"denom":"ASSET5","index":"0.000001630166870108"},{"denom":"ASSET6","index":"0.000006572642272968"},{"denom":"ASSET7","index":"0.000010351822041320"},{"denom":"ASSET8","index":"0.000014203644477234"},{"denom":"ASSET9","index":"0.000006019030096188"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001655550281073"},{"denom":"ASSET1","index":"0.000013803766186213"},{"denom":"ASSET10","index":"0.000009616885369480"},{"denom":"ASSET11","index":"0.000013353770421464"},{"denom":"ASSET12","index":"0.000012024654915933"},{"denom":"ASSET13","index":"0.000004138458266908"},{"denom":"ASSET14","index":"0.000012474650680682"},{"denom":"ASSET15","index":"0.000008918932754767"},{"denom":"ASSET16","index":"0.000006218123294721"},{"denom":"ASSET17","index":"0.000004415635621077"},{"denom":"ASSET18","index":"0.000002103876302725"},{"denom":"ASSET2","index":"0.000004075008029207"},{"denom":"ASSET3","index":"0.000001191361699996"},{"denom":"ASSET4","index":"0.000011218168999888"},{"denom":"ASSET5","index":"0.000000925037675960"},{"denom":"ASSET6","index":"0.000003765270684639"},{"denom":"ASSET7","index":"0.000005766457786874"},{"denom":"ASSET8","index":"0.000007524697268437"},{"denom":"ASSET9","index":"0.000003250154939091"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003215122291080"},{"denom":"ASSET1","index":"0.000027271082473775"},{"denom":"ASSET10","index":"0.000021717714787675"},{"denom":"ASSET11","index":"0.000027088129911249"},{"denom":"ASSET12","index":"0.000025803190697535"},{"denom":"ASSET13","index":"0.000008506451165719"},{"denom":"ASSET14","index":"0.000024869823256717"},{"denom":"ASSET15","index":"0.000019571375436743"},{"denom":"ASSET16","index":"0.000012101015548893"},{"denom":"ASSET17","index":"0.000009481514658039"},{"denom":"ASSET18","index":"0.000003929002426467"},{"denom":"ASSET2","index":"0.000008255375778501"},{"denom":"ASSET3","index":"0.000002294279906946"},{"denom":"ASSET4","index":"0.000022110354928469"},{"denom":"ASSET5","index":"0.000001787716273475"},{"denom":"ASSET6","index":"0.000007215985074700"},{"denom":"ASSET7","index":"0.000011330188741735"},{"denom":"ASSET8","index":"0.000015463524362026"},{"denom":"ASSET9","index":"0.000006565858639552"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001631513498845"},{"denom":"ASSET1","index":"0.000013601788709515"},{"denom":"ASSET10","index":"0.000009476711328689"},{"denom":"ASSET11","index":"0.000013158178840821"},{"denom":"ASSET12","index":"0.000011848922966954"},{"denom":"ASSET13","index":"0.000004077884841603"},{"denom":"ASSET14","index":"0.000012291633930140"},{"denom":"ASSET15","index":"0.000008788599161546"},{"denom":"ASSET16","index":"0.000006127389402135"},{"denom":"ASSET17","index":"0.000004351601569095"},{"denom":"ASSET18","index":"0.000002072876103766"},{"denom":"ASSET2","index":"0.000004014961455973"},{"denom":"ASSET3","index":"0.000001174420047516"},{"denom":"ASSET4","index":"0.000011053841044239"},{"denom":"ASSET5","index":"0.000000911490186131"},{"denom":"ASSET6","index":"0.000003710232488420"},{"denom":"ASSET7","index":"0.000005682431175178"},{"denom":"ASSET8","index":"0.000007415071543785"},{"denom":"ASSET9","index":"0.000003202800328586"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003159157648171"},{"denom":"ASSET1","index":"0.000026793811254639"},{"denom":"ASSET10","index":"0.000021330257270132"},{"denom":"ASSET11","index":"0.000026611245447042"},{"denom":"ASSET12","index":"0.000025345616114893"},{"denom":"ASSET13","index":"0.000008356504281369"},{"denom":"ASSET14","index":"0.000024433401122602"},{"denom":"ASSET15","index":"0.000019223209713353"},{"denom":"ASSET16","index":"0.000011890026449509"},{"denom":"ASSET17","index":"0.000009313941892173"},{"denom":"ASSET18","index":"0.000003860849124980"},{"denom":"ASSET2","index":"0.000008109777269158"},{"denom":"ASSET3","index":"0.000002255070941538"},{"denom":"ASSET4","index":"0.000021723391251034"},{"denom":"ASSET5","index":"0.000001756486235957"},{"denom":"ASSET6","index":"0.000007090574282328"},{"denom":"ASSET7","index":"0.000011132530538444"},{"denom":"ASSET8","index":"0.000015191323807650"},{"denom":"ASSET9","index":"0.000006450832118924"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001649724724935"},{"denom":"ASSET1","index":"0.000013753740147655"},{"denom":"ASSET10","index":"0.000009582563441278"},{"denom":"ASSET11","index":"0.000013305204895691"},{"denom":"ASSET12","index":"0.000011981321923304"},{"denom":"ASSET13","index":"0.000004123306127916"},{"denom":"ASSET14","index":"0.000012429052627730"},{"denom":"ASSET15","index":"0.000008886629821639"},{"denom":"ASSET16","index":"0.000006195820583626"},{"denom":"ASSET17","index":"0.000004400070480698"},{"denom":"ASSET18","index":"0.000002096248608056"},{"denom":"ASSET2","index":"0.000004060149146250"},{"denom":"ASSET3","index":"0.000001187512164840"},{"denom":"ASSET4","index":"0.000011177176659918"},{"denom":"ASSET5","index":"0.000000921609203810"},{"denom":"ASSET6","index":"0.000003751605165751"},{"denom":"ASSET7","index":"0.000005746078510357"},{"denom":"ASSET8","index":"0.000007497578498742"},{"denom":"ASSET9","index":"0.000003238303837047"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003253063831874"},{"denom":"ASSET1","index":"0.000027597326034286"},{"denom":"ASSET10","index":"0.000022021617243178"},{"denom":"ASSET11","index":"0.000027423138617092"},{"denom":"ASSET12","index":"0.000026144931484859"},{"denom":"ASSET13","index":"0.000008613299773809"},{"denom":"ASSET14","index":"0.000025170855267573"},{"denom":"ASSET15","index":"0.000019836826910831"},{"denom":"ASSET16","index":"0.000012243184702458"},{"denom":"ASSET17","index":"0.000009607701845932"},{"denom":"ASSET18","index":"0.000003972764374377"},{"denom":"ASSET2","index":"0.000008357484440725"},{"denom":"ASSET3","index":"0.000002321502734814"},{"denom":"ASSET4","index":"0.000022373906168402"},{"denom":"ASSET5","index":"0.000001808481766797"},{"denom":"ASSET6","index":"0.000007298802623853"},{"denom":"ASSET7","index":"0.000011465220726545"},{"denom":"ASSET8","index":"0.000015658035812384"},{"denom":"ASSET9","index":"0.000006646717011605"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001698975992122"},{"denom":"ASSET1","index":"0.000014167905922226"},{"denom":"ASSET10","index":"0.000009870625403756"},{"denom":"ASSET11","index":"0.000013705415046027"},{"denom":"ASSET12","index":"0.000012342129737421"},{"denom":"ASSET13","index":"0.000004247439980305"},{"denom":"ASSET14","index":"0.000012803154715439"},{"denom":"ASSET15","index":"0.000009153801193103"},{"denom":"ASSET16","index":"0.000006381787732272"},{"denom":"ASSET17","index":"0.000004532557176567"},{"denom":"ASSET18","index":"0.000002159268021049"},{"denom":"ASSET2","index":"0.000004182207511237"},{"denom":"ASSET3","index":"0.000001223292032291"},{"denom":"ASSET4","index":"0.000011513897264989"},{"denom":"ASSET5","index":"0.000000949169072389"},{"denom":"ASSET6","index":"0.000003864840554987"},{"denom":"ASSET7","index":"0.000005918563906982"},{"denom":"ASSET8","index":"0.000007723084568158"},{"denom":"ASSET9","index":"0.000003335651311539"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003402845442317"},{"denom":"ASSET1","index":"0.000028880571174740"},{"denom":"ASSET10","index":"0.000023090578471272"},{"denom":"ASSET11","index":"0.000028709364204549"},{"denom":"ASSET12","index":"0.000027394626213612"},{"denom":"ASSET13","index":"0.000009019217107214"},{"denom":"ASSET14","index":"0.000026344557012563"},{"denom":"ASSET15","index":"0.000020791017438004"},{"denom":"ASSET16","index":"0.000012808886991708"},{"denom":"ASSET17","index":"0.000010066951390727"},{"denom":"ASSET18","index":"0.000004153478710890"},{"denom":"ASSET2","index":"0.000008748954704305"},{"denom":"ASSET3","index":"0.000002428490976730"},{"denom":"ASSET4","index":"0.000023413646091842"},{"denom":"ASSET5","index":"0.000001891364101695"},{"denom":"ASSET6","index":"0.000007634563338572"},{"denom":"ASSET7","index":"0.000011996876612297"},{"denom":"ASSET8","index":"0.000016395615103037"},{"denom":"ASSET9","index":"0.000006958318142576"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001515088644413"},{"denom":"ASSET1","index":"0.000012634136557163"},{"denom":"ASSET10","index":"0.000008802109028204"},{"denom":"ASSET11","index":"0.000012222352143486"},{"denom":"ASSET12","index":"0.000011006111259210"},{"denom":"ASSET13","index":"0.000003787721611031"},{"denom":"ASSET14","index":"0.000011417895672887"},{"denom":"ASSET15","index":"0.000008163582563959"},{"denom":"ASSET16","index":"0.000005691138594924"},{"denom":"ASSET17","index":"0.000004042263453241"},{"denom":"ASSET18","index":"0.000001925135571111"},{"denom":"ASSET2","index":"0.000003729515797284"},{"denom":"ASSET3","index":"0.000001091141821893"},{"denom":"ASSET4","index":"0.000010267679293757"},{"denom":"ASSET5","index":"0.000000846156158061"},{"denom":"ASSET6","index":"0.000003446305419945"},{"denom":"ASSET7","index":"0.000005278485437758"},{"denom":"ASSET8","index":"0.000006887398378958"},{"denom":"ASSET9","index":"0.000002974577705544"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003029367235848"},{"denom":"ASSET1","index":"0.000025709657584098"},{"denom":"ASSET10","index":"0.000020551027857005"},{"denom":"ASSET11","index":"0.000025556791271547"},{"denom":"ASSET12","index":"0.000024383546484064"},{"denom":"ASSET13","index":"0.000008028643187417"},{"denom":"ASSET14","index":"0.000023452409013233"},{"denom":"ASSET15","index":"0.000018505869963369"},{"denom":"ASSET16","index":"0.000011403028825829"},{"denom":"ASSET17","index":"0.000008960765854271"},{"denom":"ASSET18","index":"0.000003697390743305"},{"denom":"ASSET2","index":"0.000007788410102575"},{"denom":"ASSET3","index":"0.000002162278160249"},{"denom":"ASSET4","index":"0.000020843149904241"},{"denom":"ASSET5","index":"0.000001683795445220"},{"denom":"ASSET6","index":"0.000006796548728457"},{"denom":"ASSET7","index":"0.000010680301627557"},{"denom":"ASSET8","index":"0.000014594997949332"},{"denom":"ASSET9","index":"0.000006193949682941"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001650481631660"},{"denom":"ASSET1","index":"0.000013760556046882"},{"denom":"ASSET10","index":"0.000009587067899364"},{"denom":"ASSET11","index":"0.000013312100857594"},{"denom":"ASSET12","index":"0.000011987552175177"},{"denom":"ASSET13","index":"0.000004125311926918"},{"denom":"ASSET14","index":"0.000012435412596309"},{"denom":"ASSET15","index":"0.000008891189157367"},{"denom":"ASSET16","index":"0.000006198673717177"},{"denom":"ASSET17","index":"0.000004402473887406"},{"denom":"ASSET18","index":"0.000002097152516481"},{"denom":"ASSET2","index":"0.000004062266502429"},{"denom":"ASSET3","index":"0.000001188346774796"},{"denom":"ASSET4","index":"0.000011182830860714"},{"denom":"ASSET5","index":"0.000000921890641108"},{"denom":"ASSET6","index":"0.000003753581829697"},{"denom":"ASSET7","index":"0.000005749028991578"},{"denom":"ASSET8","index":"0.000007501810745994"},{"denom":"ASSET9","index":"0.000003239702143299"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003205609047354"},{"denom":"ASSET1","index":"0.000027188537481167"},{"denom":"ASSET10","index":"0.000021652723818266"},{"denom":"ASSET11","index":"0.000027005979418132"},{"denom":"ASSET12","index":"0.000025725923481940"},{"denom":"ASSET13","index":"0.000008480657418555"},{"denom":"ASSET14","index":"0.000024794508770079"},{"denom":"ASSET15","index":"0.000019512596409105"},{"denom":"ASSET16","index":"0.000012064653878282"},{"denom":"ASSET17","index":"0.000009453813052143"},{"denom":"ASSET18","index":"0.000003917117707327"},{"denom":"ASSET2","index":"0.000008230459966291"},{"denom":"ASSET3","index":"0.000002288306334262"},{"denom":"ASSET4","index":"0.000022043298344156"},{"denom":"ASSET5","index":"0.000001782083734802"},{"denom":"ASSET6","index":"0.000007194354204475"},{"denom":"ASSET7","index":"0.000011296497588433"},{"denom":"ASSET8","index":"0.000015417282169744"},{"denom":"ASSET9","index":"0.000006545936928299"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001428935211366"},{"denom":"ASSET1","index":"0.000011914564237659"},{"denom":"ASSET10","index":"0.000008301159777028"},{"denom":"ASSET11","index":"0.000011525978642480"},{"denom":"ASSET12","index":"0.000010379209562159"},{"denom":"ASSET13","index":"0.000003571896453874"},{"denom":"ASSET14","index":"0.000010767353582799"},{"denom":"ASSET15","index":"0.000007698410529959"},{"denom":"ASSET16","index":"0.000005367338533420"},{"denom":"ASSET17","index":"0.000003811671429081"},{"denom":"ASSET18","index":"0.000001815754508385"},{"denom":"ASSET2","index":"0.000003517141210917"},{"denom":"ASSET3","index":"0.000001028868678146"},{"denom":"ASSET4","index":"0.000009682846512616"},{"denom":"ASSET5","index":"0.000000798366768278"},{"denom":"ASSET6","index":"0.000003249988614231"},{"denom":"ASSET7","index":"0.000004977428214621"},{"denom":"ASSET8","index":"0.000006495119908522"},{"denom":"ASSET9","index":"0.000002805323052474"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003075918064869"},{"denom":"ASSET1","index":"0.000026136551234120"},{"denom":"ASSET10","index":"0.000021080163895542"},{"denom":"ASSET11","index":"0.000026029570124972"},{"denom":"ASSET12","index":"0.000024929671095533"},{"denom":"ASSET13","index":"0.000008184754658215"},{"denom":"ASSET14","index":"0.000023857159923959"},{"denom":"ASSET15","index":"0.000018947606922173"},{"denom":"ASSET16","index":"0.000011579925359638"},{"denom":"ASSET17","index":"0.000009161388302193"},{"denom":"ASSET18","index":"0.000003743573486430"},{"denom":"ASSET2","index":"0.000007931762150876"},{"denom":"ASSET3","index":"0.000002193704696765"},{"denom":"ASSET4","index":"0.000021185602196482"},{"denom":"ASSET5","index":"0.000001709259314500"},{"denom":"ASSET6","index":"0.000006893942979866"},{"denom":"ASSET7","index":"0.000010853088527538"},{"denom":"ASSET8","index":"0.000014878712124324"},{"denom":"ASSET9","index":"0.000006307130542486"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001556917620519"},{"denom":"ASSET1","index":"0.000012983455297040"},{"denom":"ASSET10","index":"0.000009045452282177"},{"denom":"ASSET11","index":"0.000012560119972943"},{"denom":"ASSET12","index":"0.000011310507230547"},{"denom":"ASSET13","index":"0.000003892294051298"},{"denom":"ASSET14","index":"0.000011733139339821"},{"denom":"ASSET15","index":"0.000008388649636483"},{"denom":"ASSET16","index":"0.000005848637691896"},{"denom":"ASSET17","index":"0.000004153889965857"},{"denom":"ASSET18","index":"0.000001978846514969"},{"denom":"ASSET2","index":"0.000003832520791251"},{"denom":"ASSET3","index":"0.000001120924429588"},{"denom":"ASSET4","index":"0.000010551035220538"},{"denom":"ASSET5","index":"0.000000869876737390"},{"denom":"ASSET6","index":"0.000003541389854081"},{"denom":"ASSET7","index":"0.000005423895938150"},{"denom":"ASSET8","index":"0.000007077857204393"},{"denom":"ASSET9","index":"0.000003056874840288"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003155948059833"},{"denom":"ASSET1","index":"0.000026789841893667"},{"denom":"ASSET10","index":"0.000021451154188244"},{"denom":"ASSET11","index":"0.000026640130662201"},{"denom":"ASSET12","index":"0.000025435769508540"},{"denom":"ASSET13","index":"0.000008370086775831"},{"denom":"ASSET14","index":"0.000024440800445484"},{"denom":"ASSET15","index":"0.000019309084443140"},{"denom":"ASSET16","index":"0.000011879786354964"},{"denom":"ASSET17","index":"0.000009347672781307"},{"denom":"ASSET18","index":"0.000003850232310781"},{"denom":"ASSET2","index":"0.000008118311447694"},{"denom":"ASSET3","index":"0.000002251791235916"},{"denom":"ASSET4","index":"0.000021717604836949"},{"denom":"ASSET5","index":"0.000001754185821919"},{"denom":"ASSET6","index":"0.000007079049104243"},{"denom":"ASSET7","index":"0.000011127710678967"},{"denom":"ASSET8","index":"0.000015216376583965"},{"denom":"ASSET9","index":"0.000006456241851980"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001629017625409"},{"denom":"ASSET1","index":"0.000013583500814952"},{"denom":"ASSET10","index":"0.000009463617777698"},{"denom":"ASSET11","index":"0.000013140742178302"},{"denom":"ASSET12","index":"0.000011833351109704"},{"denom":"ASSET13","index":"0.000004072544063523"},{"denom":"ASSET14","index":"0.000012276109746354"},{"denom":"ASSET15","index":"0.000008777202658616"},{"denom":"ASSET16","index":"0.000006119258515961"},{"denom":"ASSET17","index":"0.000004345439323848"},{"denom":"ASSET18","index":"0.000002070383939302"},{"denom":"ASSET2","index":"0.000004009889539469"},{"denom":"ASSET3","index":"0.000001172335761192"},{"denom":"ASSET4","index":"0.000011039727138351"},{"denom":"ASSET5","index":"0.000000910579082921"},{"denom":"ASSET6","index":"0.000003704970855739"},{"denom":"ASSET7","index":"0.000005675107556554"},{"denom":"ASSET8","index":"0.000007404372420450"},{"denom":"ASSET9","index":"0.000003198165372278"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003300821213878"},{"denom":"ASSET1","index":"0.000028019420341436"},{"denom":"ASSET10","index":"0.000022435320069293"},{"denom":"ASSET11","index":"0.000027862926397945"},{"denom":"ASSET12","index":"0.000026603097941410"},{"denom":"ASSET13","index":"0.000008754572034100"},{"denom":"ASSET14","index":"0.000025562969906661"},{"denom":"ASSET15","index":"0.000020195785636702"},{"denom":"ASSET16","index":"0.000012425527462944"},{"denom":"ASSET17","index":"0.000009776022796414"},{"denom":"ASSET18","index":"0.000004027118689751"},{"denom":"ASSET2","index":"0.000008490998812362"},{"denom":"ASSET3","index":"0.000002354733406852"},{"denom":"ASSET4","index":"0.000022715681634045"},{"denom":"ASSET5","index":"0.000001835160700580"},{"denom":"ASSET6","index":"0.000007403741836767"},{"denom":"ASSET7","index":"0.000011639103500846"},{"denom":"ASSET8","index":"0.000015914079386056"},{"denom":"ASSET9","index":"0.000006752470475547"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001599876133405"},{"denom":"ASSET1","index":"0.000013345434681176"},{"denom":"ASSET10","index":"0.000009297530322905"},{"denom":"ASSET11","index":"0.000012909953167223"},{"denom":"ASSET12","index":"0.000011625282701060"},{"denom":"ASSET13","index":"0.000004000208763886"},{"denom":"ASSET14","index":"0.000012059727354266"},{"denom":"ASSET15","index":"0.000008622533976277"},{"denom":"ASSET16","index":"0.000006011718614052"},{"denom":"ASSET17","index":"0.000004268755697491"},{"denom":"ASSET18","index":"0.000002033283925863"},{"denom":"ASSET2","index":"0.000003939033979783"},{"denom":"ASSET3","index":"0.000001151952290481"},{"denom":"ASSET4","index":"0.000010845563418934"},{"denom":"ASSET5","index":"0.000000893773964352"},{"denom":"ASSET6","index":"0.000003640418084501"},{"denom":"ASSET7","index":"0.000005575200239351"},{"denom":"ASSET8","index":"0.000007274615004517"},{"denom":"ASSET9","index":"0.000003141688064949"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003205518103121"},{"denom":"ASSET1","index":"0.000027209804037075"},{"denom":"ASSET10","index":"0.000021755111918776"},{"denom":"ASSET11","index":"0.000027048910570117"},{"denom":"ASSET12","index":"0.000025809934262776"},{"denom":"ASSET13","index":"0.000008496852467218"},{"denom":"ASSET14","index":"0.000024820667393427"},{"denom":"ASSET15","index":"0.000019589132093549"},{"denom":"ASSET16","index":"0.000012068310128279"},{"denom":"ASSET17","index":"0.000009484236214143"},{"denom":"ASSET18","index":"0.000003912244660385"},{"denom":"ASSET2","index":"0.000008242746790311"},{"denom":"ASSET3","index":"0.000002287536756020"},{"denom":"ASSET4","index":"0.000022059248469095"},{"denom":"ASSET5","index":"0.000001781848402938"},{"denom":"ASSET6","index":"0.000007192715838846"},{"denom":"ASSET7","index":"0.000011303047666497"},{"denom":"ASSET8","index":"0.000015447099928639"},{"denom":"ASSET9","index":"0.000006555210966575"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001693699328345"},{"denom":"ASSET1","index":"0.000014121235265065"},{"denom":"ASSET10","index":"0.000009838380374958"},{"denom":"ASSET11","index":"0.000013660499756586"},{"denom":"ASSET12","index":"0.000012301569616423"},{"denom":"ASSET13","index":"0.000004233563721295"},{"denom":"ASSET14","index":"0.000012760935925768"},{"denom":"ASSET15","index":"0.000009123658427184"},{"denom":"ASSET16","index":"0.000006361299175013"},{"denom":"ASSET17","index":"0.000004517672541531"},{"denom":"ASSET18","index":"0.000002151696438556"},{"denom":"ASSET2","index":"0.000004168526762446"},{"denom":"ASSET3","index":"0.000001219271828530"},{"denom":"ASSET4","index":"0.000011475942538822"},{"denom":"ASSET5","index":"0.000000946116601363"},{"denom":"ASSET6","index":"0.000003852241762569"},{"denom":"ASSET7","index":"0.000005899194467400"},{"denom":"ASSET8","index":"0.000007698322129037"},{"denom":"ASSET9","index":"0.000003325100096108"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003374964488748"},{"denom":"ASSET1","index":"0.000028642371697541"},{"denom":"ASSET10","index":"0.000022886358038922"},{"denom":"ASSET11","index":"0.000028469467846578"},{"denom":"ASSET12","index":"0.000027158021136678"},{"denom":"ASSET13","index":"0.000008943216545101"},{"denom":"ASSET14","index":"0.000026126056006670"},{"denom":"ASSET15","index":"0.000020609372613995"},{"denom":"ASSET16","index":"0.000012704733728960"},{"denom":"ASSET17","index":"0.000009980025667275"},{"denom":"ASSET18","index":"0.000004119620826099"},{"denom":"ASSET2","index":"0.000008675935346246"},{"denom":"ASSET3","index":"0.000002408702445844"},{"denom":"ASSET4","index":"0.000023220763838917"},{"denom":"ASSET5","index":"0.000001876440105393"},{"denom":"ASSET6","index":"0.000007572949563502"},{"denom":"ASSET7","index":"0.000011897934490553"},{"denom":"ASSET8","index":"0.000016258236310419"},{"denom":"ASSET9","index":"0.000006900426530312"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001608105877482"},{"denom":"ASSET1","index":"0.000013418457239972"},{"denom":"ASSET10","index":"0.000009349233819318"},{"denom":"ASSET11","index":"0.000012981594753349"},{"denom":"ASSET12","index":"0.000011689837573077"},{"denom":"ASSET13","index":"0.000004022147721664"},{"denom":"ASSET14","index":"0.000012126700059700"},{"denom":"ASSET15","index":"0.000008669460725910"},{"denom":"ASSET16","index":"0.000006044519750254"},{"denom":"ASSET17","index":"0.000004293303747844"},{"denom":"ASSET18","index":"0.000002044968364105"},{"denom":"ASSET2","index":"0.000003960007798998"},{"denom":"ASSET3","index":"0.000001158062195142"},{"denom":"ASSET4","index":"0.000010904614913932"},{"denom":"ASSET5","index":"0.000000898204336720"},{"denom":"ASSET6","index":"0.000003660606353425"},{"denom":"ASSET7","index":"0.000005605774235672"},{"denom":"ASSET8","index":"0.000007313680595011"},{"denom":"ASSET9","index":"0.000003159720916176"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003138779820137"},{"denom":"ASSET1","index":"0.000026638851971456"},{"denom":"ASSET10","index":"0.000021228354320839"},{"denom":"ASSET11","index":"0.000026463611656062"},{"denom":"ASSET12","index":"0.000025215335343685"},{"denom":"ASSET13","index":"0.000008309803474369"},{"denom":"ASSET14","index":"0.000024294710395367"},{"denom":"ASSET15","index":"0.000019126240972581"},{"denom":"ASSET16","index":"0.000011819368577720"},{"denom":"ASSET17","index":"0.000009266335892783"},{"denom":"ASSET18","index":"0.000003836527514127"},{"denom":"ASSET2","index":"0.000008063422586049"},{"denom":"ASSET3","index":"0.000002240662109326"},{"denom":"ASSET4","index":"0.000021597223596640"},{"denom":"ASSET5","index":"0.000001744975814867"},{"denom":"ASSET6","index":"0.000007047692266012"},{"denom":"ASSET7","index":"0.000011067413421526"},{"denom":"ASSET8","index":"0.000015106336478322"},{"denom":"ASSET9","index":"0.000006414890297355"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001636130781121"},{"denom":"ASSET1","index":"0.000013651986161797"},{"denom":"ASSET10","index":"0.000009511743354655"},{"denom":"ASSET11","index":"0.000013205516575762"},{"denom":"ASSET12","index":"0.000011891065744828"},{"denom":"ASSET13","index":"0.000004093100055822"},{"denom":"ASSET14","index":"0.000012337535330862"},{"denom":"ASSET15","index":"0.000008821240702961"},{"denom":"ASSET16","index":"0.000006147969392790"},{"denom":"ASSET17","index":"0.000004367637254688"},{"denom":"ASSET18","index":"0.000002079827264137"},{"denom":"ASSET2","index":"0.000004029318686389"},{"denom":"ASSET3","index":"0.000001178568783011"},{"denom":"ASSET4","index":"0.000011095185178418"},{"denom":"ASSET5","index":"0.000000915123996220"},{"denom":"ASSET6","index":"0.000003724277354315"},{"denom":"ASSET7","index":"0.000005701499806755"},{"denom":"ASSET8","index":"0.000007440235399574"},{"denom":"ASSET9","index":"0.000003214026398847"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003135138573804"},{"denom":"ASSET1","index":"0.000026601246250396"},{"denom":"ASSET10","index":"0.000021147351718785"},{"denom":"ASSET11","index":"0.000026411423528042"},{"denom":"ASSET12","index":"0.000025139747174388"},{"denom":"ASSET13","index":"0.000008292603180789"},{"denom":"ASSET14","index":"0.000024256405788980"},{"denom":"ASSET15","index":"0.000019064302195638"},{"denom":"ASSET16","index":"0.000011804656377100"},{"denom":"ASSET17","index":"0.000009238224400983"},{"denom":"ASSET18","index":"0.000003834531376561"},{"denom":"ASSET2","index":"0.000008049169006780"},{"denom":"ASSET3","index":"0.000002239375819558"},{"denom":"ASSET4","index":"0.000021568278304468"},{"denom":"ASSET5","index":"0.000001743998311515"},{"denom":"ASSET6","index":"0.000007041675703373"},{"denom":"ASSET7","index":"0.000011051161098588"},{"denom":"ASSET8","index":"0.000015073103234225"},{"denom":"ASSET9","index":"0.000006402150772125"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001682560247115"},{"denom":"ASSET1","index":"0.000014026482890055"},{"denom":"ASSET10","index":"0.000009772411969975"},{"denom":"ASSET11","index":"0.000013568579422963"},{"denom":"ASSET12","index":"0.000012218368466479"},{"denom":"ASSET13","index":"0.000004205057792371"},{"denom":"ASSET14","index":"0.000012675600520863"},{"denom":"ASSET15","index":"0.000009062728737253"},{"denom":"ASSET16","index":"0.000006318664998244"},{"denom":"ASSET17","index":"0.000004487051129876"},{"denom":"ASSET18","index":"0.000002137778063373"},{"denom":"ASSET2","index":"0.000004140602172369"},{"denom":"ASSET3","index":"0.000001211228525856"},{"denom":"ASSET4","index":"0.000011398573549589"},{"denom":"ASSET5","index":"0.000000939977791684"},{"denom":"ASSET6","index":"0.000003825709612155"},{"denom":"ASSET7","index":"0.000005859418705735"},{"denom":"ASSET8","index":"0.000007646047922643"},{"denom":"ASSET9","index":"0.000003302679112354"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003237426875283"},{"denom":"ASSET1","index":"0.000027451710154634"},{"denom":"ASSET10","index":"0.000021835512998164"},{"denom":"ASSET11","index":"0.000027259736654219"},{"denom":"ASSET12","index":"0.000025953768913429"},{"denom":"ASSET13","index":"0.000008559484494503"},{"denom":"ASSET14","index":"0.000025032165857410"},{"denom":"ASSET15","index":"0.000019681806512765"},{"denom":"ASSET16","index":"0.000012183244440341"},{"denom":"ASSET17","index":"0.000009537367134186"},{"denom":"ASSET18","index":"0.000003957397976948"},{"denom":"ASSET2","index":"0.000008307936552813"},{"denom":"ASSET3","index":"0.000002310954839376"},{"denom":"ASSET4","index":"0.000022256988295109"},{"denom":"ASSET5","index":"0.000001799896462688"},{"denom":"ASSET6","index":"0.000007265619632425"},{"denom":"ASSET7","index":"0.000011405823532836"},{"denom":"ASSET8","index":"0.000015559935461923"},{"denom":"ASSET9","index":"0.000006608212131764"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001576738934866"},{"denom":"ASSET1","index":"0.000013143695761043"},{"denom":"ASSET10","index":"0.000009157699733702"},{"denom":"ASSET11","index":"0.000012715663698192"},{"denom":"ASSET12","index":"0.000011450067913139"},{"denom":"ASSET13","index":"0.000003940585946017"},{"denom":"ASSET14","index":"0.000011878099975991"},{"denom":"ASSET15","index":"0.000008492526135047"},{"denom":"ASSET16","index":"0.000005920970048209"},{"denom":"ASSET17","index":"0.000004204637159643"},{"denom":"ASSET18","index":"0.000002003089142854"},{"denom":"ASSET2","index":"0.000003880039170918"},{"denom":"ASSET3","index":"0.000001134411105672"},{"denom":"ASSET4","index":"0.000010681460240357"},{"denom":"ASSET5","index":"0.000000880451021229"},{"denom":"ASSET6","index":"0.000003584873642311"},{"denom":"ASSET7","index":"0.000005491256130493"},{"denom":"ASSET8","index":"0.000007165542647463"},{"denom":"ASSET9","index":"0.000003094612949497"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003150995592381"},{"denom":"ASSET1","index":"0.000026735906318713"},{"denom":"ASSET10","index":"0.000021370928366269"},{"denom":"ASSET11","index":"0.000026577057751538"},{"denom":"ASSET12","index":"0.000025356196217934"},{"denom":"ASSET13","index":"0.000008349049177946"},{"denom":"ASSET14","index":"0.000024388519635576"},{"denom":"ASSET15","index":"0.000019243917228958"},{"denom":"ASSET16","index":"0.000011858566692713"},{"denom":"ASSET17","index":"0.000009317567603522"},{"denom":"ASSET18","index":"0.000003845362315572"},{"denom":"ASSET2","index":"0.000008099062572798"},{"denom":"ASSET3","index":"0.000002247710476517"},{"denom":"ASSET4","index":"0.000021674805285583"},{"denom":"ASSET5","index":"0.000001751018453776"},{"denom":"ASSET6","index":"0.000007067532365991"},{"denom":"ASSET7","index":"0.000011106766164564"},{"denom":"ASSET8","index":"0.000015177641578730"},{"denom":"ASSET9","index":"0.000006441123951375"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001735896630597"},{"denom":"ASSET1","index":"0.000014474259966527"},{"denom":"ASSET10","index":"0.000010084408758147"},{"denom":"ASSET11","index":"0.000014002239606889"},{"denom":"ASSET12","index":"0.000012609068112910"},{"denom":"ASSET13","index":"0.000004339122939062"},{"denom":"ASSET14","index":"0.000013079851197687"},{"denom":"ASSET15","index":"0.000009351942040176"},{"denom":"ASSET16","index":"0.000006520438519776"},{"denom":"ASSET17","index":"0.000004630501168930"},{"denom":"ASSET18","index":"0.000002205442440512"},{"denom":"ASSET2","index":"0.000004272310096544"},{"denom":"ASSET3","index":"0.000001249647610052"},{"denom":"ASSET4","index":"0.000011762772107687"},{"denom":"ASSET5","index":"0.000000970023491367"},{"denom":"ASSET6","index":"0.000003948144082847"},{"denom":"ASSET7","index":"0.000006046562247845"},{"denom":"ASSET8","index":"0.000007890101791387"},{"denom":"ASSET9","index":"0.000003408073605830"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003300304206809"},{"denom":"ASSET1","index":"0.000027981868665615"},{"denom":"ASSET10","index":"0.000022221493016134"},{"denom":"ASSET11","index":"0.000027777532118325"},{"denom":"ASSET12","index":"0.000026428557640091"},{"denom":"ASSET13","index":"0.000008720047886627"},{"denom":"ASSET14","index":"0.000025512138164618"},{"denom":"ASSET15","index":"0.000020036362120252"},{"denom":"ASSET16","index":"0.000012421157074829"},{"denom":"ASSET17","index":"0.000009711490167791"},{"denom":"ASSET18","index":"0.000004036282970136"},{"denom":"ASSET2","index":"0.000008465189250700"},{"denom":"ASSET3","index":"0.000002356240815614"},{"denom":"ASSET4","index":"0.000022687774056492"},{"denom":"ASSET5","index":"0.000001835200922241"},{"denom":"ASSET6","index":"0.000007409270759323"},{"denom":"ASSET7","index":"0.000011627060915230"},{"denom":"ASSET8","index":"0.000015852235873304"},{"denom":"ASSET9","index":"0.000006733690564218"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001726734301691"},{"denom":"ASSET1","index":"0.000014395988805148"},{"denom":"ASSET10","index":"0.000010029746380297"},{"denom":"ASSET11","index":"0.000013926529312304"},{"denom":"ASSET12","index":"0.000012540835608608"},{"denom":"ASSET13","index":"0.000004315874534955"},{"denom":"ASSET14","index":"0.000013009526126035"},{"denom":"ASSET15","index":"0.000009301526659210"},{"denom":"ASSET16","index":"0.000006485154189852"},{"denom":"ASSET17","index":"0.000004605778267637"},{"denom":"ASSET18","index":"0.000002193886868281"},{"denom":"ASSET2","index":"0.000004249742648985"},{"denom":"ASSET3","index":"0.000001243048763609"},{"denom":"ASSET4","index":"0.000011699192013329"},{"denom":"ASSET5","index":"0.000000964679662201"},{"denom":"ASSET6","index":"0.000003926772973318"},{"denom":"ASSET7","index":"0.000006014156746171"},{"denom":"ASSET8","index":"0.000007847778630999"},{"denom":"ASSET9","index":"0.000003389643643667"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003383074331503"},{"denom":"ASSET1","index":"0.000028697774885580"},{"denom":"ASSET10","index":"0.000022880621123289"},{"denom":"ASSET11","index":"0.000028511966470743"},{"denom":"ASSET12","index":"0.000027173358086556"},{"denom":"ASSET13","index":"0.000008954537947194"},{"denom":"ASSET14","index":"0.000026172910691250"},{"denom":"ASSET15","index":"0.000020614154391480"},{"denom":"ASSET16","index":"0.000012732692592075"},{"denom":"ASSET17","index":"0.000009985655741818"},{"denom":"ASSET18","index":"0.000004132359094826"},{"denom":"ASSET2","index":"0.000008689052893949"},{"denom":"ASSET3","index":"0.000002414485946546"},{"denom":"ASSET4","index":"0.000023266612079392"},{"denom":"ASSET5","index":"0.000001880944791026"},{"denom":"ASSET6","index":"0.000007591453768301"},{"denom":"ASSET7","index":"0.000011922604903868"},{"denom":"ASSET8","index":"0.000016278329144958"},{"denom":"ASSET9","index":"0.000006911169878531"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001436232590899"},{"denom":"ASSET1","index":"0.000011976183987962"},{"denom":"ASSET10","index":"0.000008344549248442"},{"denom":"ASSET11","index":"0.000011585862202045"},{"denom":"ASSET12","index":"0.000010432581326504"},{"denom":"ASSET13","index":"0.000003589949888597"},{"denom":"ASSET14","index":"0.000010822903112421"},{"denom":"ASSET15","index":"0.000007738224144105"},{"denom":"ASSET16","index":"0.000005395030251301"},{"denom":"ASSET17","index":"0.000003831216753031"},{"denom":"ASSET18","index":"0.000001825291199515"},{"denom":"ASSET2","index":"0.000003535633264667"},{"denom":"ASSET3","index":"0.000001033279031975"},{"denom":"ASSET4","index":"0.000009732781101914"},{"denom":"ASSET5","index":"0.000000802117585946"},{"denom":"ASSET6","index":"0.000003266576499617"},{"denom":"ASSET7","index":"0.000005003445288083"},{"denom":"ASSET8","index":"0.000006528100290032"},{"denom":"ASSET9","index":"0.000002819411735168"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003006064648013"},{"denom":"ASSET1","index":"0.000025531157590212"},{"denom":"ASSET10","index":"0.000020524407173472"},{"denom":"ASSET11","index":"0.000025409258384489"},{"denom":"ASSET12","index":"0.000024300714605646"},{"denom":"ASSET13","index":"0.000007986286383048"},{"denom":"ASSET14","index":"0.000023298685931189"},{"denom":"ASSET15","index":"0.000018459726056254"},{"denom":"ASSET16","index":"0.000011316095008653"},{"denom":"ASSET17","index":"0.000008930145684163"},{"denom":"ASSET18","index":"0.000003662445744281"},{"denom":"ASSET2","index":"0.000007743120539446"},{"denom":"ASSET3","index":"0.000002143639104141"},{"denom":"ASSET4","index":"0.000020695936675740"},{"denom":"ASSET5","index":"0.000001670457298921"},{"denom":"ASSET6","index":"0.000006739935351518"},{"denom":"ASSET7","index":"0.000010603283023237"},{"denom":"ASSET8","index":"0.000014518439118465"},{"denom":"ASSET9","index":"0.000006156725809403"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001476546163568"},{"denom":"ASSET1","index":"0.000012315891963405"},{"denom":"ASSET10","index":"0.000008580298213179"},{"denom":"ASSET11","index":"0.000011914434711559"},{"denom":"ASSET12","index":"0.000010728207916557"},{"denom":"ASSET13","index":"0.000003691365408921"},{"denom":"ASSET14","index":"0.000011129665168403"},{"denom":"ASSET15","index":"0.000007957699254808"},{"denom":"ASSET16","index":"0.000005547821683700"},{"denom":"ASSET17","index":"0.000003939724556249"},{"denom":"ASSET18","index":"0.000001876869355381"},{"denom":"ASSET2","index":"0.000003635796467281"},{"denom":"ASSET3","index":"0.000001062614251355"},{"denom":"ASSET4","index":"0.000010009213855342"},{"denom":"ASSET5","index":"0.000000825595704361"},{"denom":"ASSET6","index":"0.000003359085819117"},{"denom":"ASSET7","index":"0.000005145230371820"},{"denom":"ASSET8","index":"0.000006713635398099"},{"denom":"ASSET9","index":"0.000002899791505564"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000002611689387046"},{"denom":"ASSET1","index":"0.000022118950462866"},{"denom":"ASSET10","index":"0.000017388824351878"},{"denom":"ASSET11","index":"0.000021911701626113"},{"denom":"ASSET12","index":"0.000020757567192719"},{"denom":"ASSET13","index":"0.000006870825151743"},{"denom":"ASSET14","index":"0.000020152250667519"},{"denom":"ASSET15","index":"0.000015711809347683"},{"denom":"ASSET16","index":"0.000009830001439303"},{"denom":"ASSET17","index":"0.000007627368499381"},{"denom":"ASSET18","index":"0.000003205559295774"},{"denom":"ASSET2","index":"0.000006678615536452"},{"denom":"ASSET3","index":"0.000001865584989735"},{"denom":"ASSET4","index":"0.000017938012267073"},{"denom":"ASSET5","index":"0.000001453547274796"},{"denom":"ASSET6","index":"0.000005870892100855"},{"denom":"ASSET7","index":"0.000009195154067126"},{"denom":"ASSET8","index":"0.000012492245582088"},{"denom":"ASSET9","index":"0.000005313335607946"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000000860911540335"},{"denom":"ASSET1","index":"0.000007178593209511"},{"denom":"ASSET10","index":"0.000005001581264509"},{"denom":"ASSET11","index":"0.000006944753046495"},{"denom":"ASSET12","index":"0.000006253725385275"},{"denom":"ASSET13","index":"0.000002152029021603"},{"denom":"ASSET14","index":"0.000006487065889823"},{"denom":"ASSET15","index":"0.000004638329558286"},{"denom":"ASSET16","index":"0.000003233789604786"},{"denom":"ASSET17","index":"0.000002296430318850"},{"denom":"ASSET18","index":"0.000001093752386415"},{"denom":"ASSET2","index":"0.000002119051562716"},{"denom":"ASSET3","index":"0.000000619576500299"},{"denom":"ASSET4","index":"0.000005834012272169"},{"denom":"ASSET5","index":"0.000000481171104668"},{"denom":"ASSET6","index":"0.000001958161536025"},{"denom":"ASSET7","index":"0.000002998950124834"},{"denom":"ASSET8","index":"0.000003913325121242"},{"denom":"ASSET9","index":"0.000001690344597186"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000002357406510396"},{"denom":"ASSET1","index":"0.000020099972826550"},{"denom":"ASSET10","index":"0.000016611857270119"},{"denom":"ASSET11","index":"0.000020122040980663"},{"denom":"ASSET12","index":"0.000019473664705632"},{"denom":"ASSET13","index":"0.000006342954228467"},{"denom":"ASSET14","index":"0.000018379978414574"},{"denom":"ASSET15","index":"0.000014858739059306"},{"denom":"ASSET16","index":"0.000008878274052948"},{"denom":"ASSET17","index":"0.000007156982288871"},{"denom":"ASSET18","index":"0.000002845018303307"},{"denom":"ASSET2","index":"0.000006129987919866"},{"denom":"ASSET3","index":"0.000001678183905493"},{"denom":"ASSET4","index":"0.000016284739258605"},{"denom":"ASSET5","index":"0.000001308892339296"},{"denom":"ASSET6","index":"0.000005269046474537"},{"denom":"ASSET7","index":"0.000008337197620164"},{"denom":"ASSET8","index":"0.000011530009666752"},{"denom":"ASSET9","index":"0.000004871853664260"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001198976216272"},{"denom":"ASSET1","index":"0.000010001315625623"},{"denom":"ASSET10","index":"0.000006967712250892"},{"denom":"ASSET11","index":"0.000009674322112094"},{"denom":"ASSET12","index":"0.000008711677656379"},{"denom":"ASSET13","index":"0.000002997949876371"},{"denom":"ASSET14","index":"0.000009037652498526"},{"denom":"ASSET15","index":"0.000006461432574183"},{"denom":"ASSET16","index":"0.000004504564849919"},{"denom":"ASSET17","index":"0.000003199646809949"},{"denom":"ASSET18","index":"0.000001523932387037"},{"denom":"ASSET2","index":"0.000002952109664194"},{"denom":"ASSET3","index":"0.000000862814660308"},{"denom":"ASSET4","index":"0.000008126960283277"},{"denom":"ASSET5","index":"0.000000670285769165"},{"denom":"ASSET6","index":"0.000002728001960218"},{"denom":"ASSET7","index":"0.000004177571336390"},{"denom":"ASSET8","index":"0.000005451929234909"},{"denom":"ASSET9","index":"0.000002354149563130"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000002792091306062"},{"denom":"ASSET1","index":"0.000023760392481519"},{"denom":"ASSET10","index":"0.000019330735214415"},{"denom":"ASSET11","index":"0.000023705763948043"},{"denom":"ASSET12","index":"0.000022788595153270"},{"denom":"ASSET13","index":"0.000007460432475948"},{"denom":"ASSET14","index":"0.000021701401606991"},{"denom":"ASSET15","index":"0.000017344296121870"},{"denom":"ASSET16","index":"0.000010515175863945"},{"denom":"ASSET17","index":"0.000008375559402161"},{"denom":"ASSET18","index":"0.000003388923471278"},{"denom":"ASSET2","index":"0.000007222909907971"},{"denom":"ASSET3","index":"0.000001989926471838"},{"denom":"ASSET4","index":"0.000019255294602933"},{"denom":"ASSET5","index":"0.000001551437823125"},{"denom":"ASSET6","index":"0.000006253588147261"},{"denom":"ASSET7","index":"0.000009862028954195"},{"denom":"ASSET8","index":"0.000013562244421912"},{"denom":"ASSET9","index":"0.000005741841810541"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001507638919625"},{"denom":"ASSET1","index":"0.000012569401049902"},{"denom":"ASSET10","index":"0.000008757228353136"},{"denom":"ASSET11","index":"0.000012160184771718"},{"denom":"ASSET12","index":"0.000010949766096248"},{"denom":"ASSET13","index":"0.000003769097299062"},{"denom":"ASSET14","index":"0.000011358982374432"},{"denom":"ASSET15","index":"0.000008124020006893"},{"denom":"ASSET16","index":"0.000005660107258249"},{"denom":"ASSET17","index":"0.000004018934605743"},{"denom":"ASSET18","index":"0.000001912547658039"},{"denom":"ASSET2","index":"0.000003708791742277"},{"denom":"ASSET3","index":"0.000001085500022130"},{"denom":"ASSET4","index":"0.000010217484335287"},{"denom":"ASSET5","index":"0.000000839970255220"},{"denom":"ASSET6","index":"0.000003428801657204"},{"denom":"ASSET7","index":"0.000005250890980065"},{"denom":"ASSET8","index":"0.000006853295774638"},{"denom":"ASSET9","index":"0.000002959279822235"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003131246414749"},{"denom":"ASSET1","index":"0.000026589761836242"},{"denom":"ASSET10","index":"0.000021355242603721"},{"denom":"ASSET11","index":"0.000026458316408852"},{"denom":"ASSET12","index":"0.000025293988029420"},{"denom":"ASSET13","index":"0.000008316673174883"},{"denom":"ASSET14","index":"0.000024263343459355"},{"denom":"ASSET15","index":"0.000019213959771091"},{"denom":"ASSET16","index":"0.000011784585795875"},{"denom":"ASSET17","index":"0.000009292893547134"},{"denom":"ASSET18","index":"0.000003813004198036"},{"denom":"ASSET2","index":"0.000008060944762894"},{"denom":"ASSET3","index":"0.000002234070199415"},{"denom":"ASSET4","index":"0.000021557233504015"},{"denom":"ASSET5","index":"0.000001738116490695"},{"denom":"ASSET6","index":"0.000007021386599103"},{"denom":"ASSET7","index":"0.000011043212117572"},{"denom":"ASSET8","index":"0.000015117900391662"},{"denom":"ASSET9","index":"0.000006411442995536"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001538667310820"},{"denom":"ASSET1","index":"0.000012827917927858"},{"denom":"ASSET10","index":"0.000008937244372687"},{"denom":"ASSET11","index":"0.000012409488429871"},{"denom":"ASSET12","index":"0.000011174685151587"},{"denom":"ASSET13","index":"0.000003845530209513"},{"denom":"ASSET14","index":"0.000011592355937882"},{"denom":"ASSET15","index":"0.000008288166520415"},{"denom":"ASSET16","index":"0.000005778727600031"},{"denom":"ASSET17","index":"0.000004103871540546"},{"denom":"ASSET18","index":"0.000001954820673732"},{"denom":"ASSET2","index":"0.000003786730053405"},{"denom":"ASSET3","index":"0.000001107719069920"},{"denom":"ASSET4","index":"0.000010424698644316"},{"denom":"ASSET5","index":"0.000000859620346726"},{"denom":"ASSET6","index":"0.000003499178322240"},{"denom":"ASSET7","index":"0.000005359160034507"},{"denom":"ASSET8","index":"0.000006993045662639"},{"denom":"ASSET9","index":"0.000003020431244761"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003070496060295"},{"denom":"ASSET1","index":"0.000026054009108675"},{"denom":"ASSET10","index":"0.000020821706468932"},{"denom":"ASSET11","index":"0.000025897661631707"},{"denom":"ASSET12","index":"0.000024706407518076"},{"denom":"ASSET13","index":"0.000008135385272267"},{"denom":"ASSET14","index":"0.000023765921524780"},{"denom":"ASSET15","index":"0.000018749935123185"},{"denom":"ASSET16","index":"0.000011556337558875"},{"denom":"ASSET17","index":"0.000009079232430047"},{"denom":"ASSET18","index":"0.000003747682066764"},{"denom":"ASSET2","index":"0.000007892419371659"},{"denom":"ASSET3","index":"0.000002191201298955"},{"denom":"ASSET4","index":"0.000021122052487200"},{"denom":"ASSET5","index":"0.000001706992646915"},{"denom":"ASSET6","index":"0.000006888142834266"},{"denom":"ASSET7","index":"0.000010823268476718"},{"denom":"ASSET8","index":"0.000014789657857476"},{"denom":"ASSET9","index":"0.000006276911852268"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001679222100186"},{"denom":"ASSET1","index":"0.000013999028794594"},{"denom":"ASSET10","index":"0.000009753438641601"},{"denom":"ASSET11","index":"0.000013542280383343"},{"denom":"ASSET12","index":"0.000012194769233410"},{"denom":"ASSET13","index":"0.000004196505199295"},{"denom":"ASSET14","index":"0.000012650484277214"},{"denom":"ASSET15","index":"0.000009045065257184"},{"denom":"ASSET16","index":"0.000006306124840851"},{"denom":"ASSET17","index":"0.000004478614512126"},{"denom":"ASSET18","index":"0.000002133387092820"},{"denom":"ASSET2","index":"0.000004132436417626"},{"denom":"ASSET3","index":"0.000001208523228411"},{"denom":"ASSET4","index":"0.000011376342215965"},{"denom":"ASSET5","index":"0.000000938297641211"},{"denom":"ASSET6","index":"0.000003818809397684"},{"denom":"ASSET7","index":"0.000005848343062154"},{"denom":"ASSET8","index":"0.000007631418590690"},{"denom":"ASSET9","index":"0.000003295925469872"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003295755498274"},{"denom":"ASSET1","index":"0.000027960125957180"},{"denom":"ASSET10","index":"0.000022298091456525"},{"denom":"ASSET11","index":"0.000027779779629540"},{"denom":"ASSET12","index":"0.000026478335493542"},{"denom":"ASSET13","index":"0.000008724566942758"},{"denom":"ASSET14","index":"0.000025500389224880"},{"denom":"ASSET15","index":"0.000020088119547171"},{"denom":"ASSET16","index":"0.000012404652968467"},{"denom":"ASSET17","index":"0.000009730254100732"},{"denom":"ASSET18","index":"0.000004025857251145"},{"denom":"ASSET2","index":"0.000008465992991141"},{"denom":"ASSET3","index":"0.000002352288079447"},{"denom":"ASSET4","index":"0.000022667879187178"},{"denom":"ASSET5","index":"0.000001832649164275"},{"denom":"ASSET6","index":"0.000007396215489940"},{"denom":"ASSET7","index":"0.000011616026271508"},{"denom":"ASSET8","index":"0.000015861127767022"},{"denom":"ASSET9","index":"0.000006733269226830"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001488486853561"},{"denom":"ASSET1","index":"0.000012409943784184"},{"denom":"ASSET10","index":"0.000008645838046025"},{"denom":"ASSET11","index":"0.000012005445379346"},{"denom":"ASSET12","index":"0.000010810451131374"},{"denom":"ASSET13","index":"0.000003720376180879"},{"denom":"ASSET14","index":"0.000011214949536212"},{"denom":"ASSET15","index":"0.000008018487089665"},{"denom":"ASSET16","index":"0.000005590655707614"},{"denom":"ASSET17","index":"0.000003970139229188"},{"denom":"ASSET18","index":"0.000001891303352350"},{"denom":"ASSET2","index":"0.000003663191375205"},{"denom":"ASSET3","index":"0.000001071374153354"},{"denom":"ASSET4","index":"0.000010085549624159"},{"denom":"ASSET5","index":"0.000000831702541340"},{"denom":"ASSET6","index":"0.000003384835924059"},{"denom":"ASSET7","index":"0.000005184475396726"},{"denom":"ASSET8","index":"0.000006765467082995"},{"denom":"ASSET9","index":"0.000002921470807498"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003140601357292"},{"denom":"ASSET1","index":"0.000026678854887219"},{"denom":"ASSET10","index":"0.000021467437308134"},{"denom":"ASSET11","index":"0.000026557150856893"},{"denom":"ASSET12","index":"0.000025409189778577"},{"denom":"ASSET13","index":"0.000008348678217638"},{"denom":"ASSET14","index":"0.000024348515645151"},{"denom":"ASSET15","index":"0.000019305257093893"},{"denom":"ASSET16","index":"0.000011824039078448"},{"denom":"ASSET17","index":"0.000009337874135725"},{"denom":"ASSET18","index":"0.000003825021517438"},{"denom":"ASSET2","index":"0.000008092644314938"},{"denom":"ASSET3","index":"0.000002240059115813"},{"denom":"ASSET4","index":"0.000021626536887159"},{"denom":"ASSET5","index":"0.000001745574888449"},{"denom":"ASSET6","index":"0.000007040920669072"},{"denom":"ASSET7","index":"0.000011079696231301"},{"denom":"ASSET8","index":"0.000015176664815864"},{"denom":"ASSET9","index":"0.000006434669973810"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001385039568420"},{"denom":"ASSET1","index":"0.000011547928050470"},{"denom":"ASSET10","index":"0.000008045290512347"},{"denom":"ASSET11","index":"0.000011171268467624"},{"denom":"ASSET12","index":"0.000010059084660007"},{"denom":"ASSET13","index":"0.000003461116009305"},{"denom":"ASSET14","index":"0.000010435744242853"},{"denom":"ASSET15","index":"0.000007461023285412"},{"denom":"ASSET16","index":"0.000005202054396163"},{"denom":"ASSET17","index":"0.000003694427456948"},{"denom":"ASSET18","index":"0.000001759721935608"},{"denom":"ASSET2","index":"0.000003408719794369"},{"denom":"ASSET3","index":"0.000000996516691625"},{"denom":"ASSET4","index":"0.000009383865512804"},{"denom":"ASSET5","index":"0.000000774079930102"},{"denom":"ASSET6","index":"0.000003149704543173"},{"denom":"ASSET7","index":"0.000004824406205487"},{"denom":"ASSET8","index":"0.000006294466047200"},{"denom":"ASSET9","index":"0.000002718671529731"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000002978674281858"},{"denom":"ASSET1","index":"0.000025310372422717"},{"denom":"ASSET10","index":"0.000020411345436720"},{"denom":"ASSET11","index":"0.000025206262983954"},{"denom":"ASSET12","index":"0.000024139567910062"},{"denom":"ASSET13","index":"0.000007924745788344"},{"denom":"ASSET14","index":"0.000023102636423037"},{"denom":"ASSET15","index":"0.000018346974201526"},{"denom":"ASSET16","index":"0.000011213830154915"},{"denom":"ASSET17","index":"0.000008871351161454"},{"denom":"ASSET18","index":"0.000003625142276595"},{"denom":"ASSET2","index":"0.000007680838181843"},{"denom":"ASSET3","index":"0.000002123796319816"},{"denom":"ASSET4","index":"0.000020514843977806"},{"denom":"ASSET5","index":"0.000001655567492872"},{"denom":"ASSET6","index":"0.000006676037052519"},{"denom":"ASSET7","index":"0.000010510115662832"},{"denom":"ASSET8","index":"0.000014407133239162"},{"denom":"ASSET9","index":"0.000006107008804836"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001563741356289"},{"denom":"ASSET1","index":"0.000013036816883138"},{"denom":"ASSET10","index":"0.000009082880828100"},{"denom":"ASSET11","index":"0.000012611783735587"},{"denom":"ASSET12","index":"0.000011356772924286"},{"denom":"ASSET13","index":"0.000003908472310400"},{"denom":"ASSET14","index":"0.000011781101207579"},{"denom":"ASSET15","index":"0.000008423480314776"},{"denom":"ASSET16","index":"0.000005872928997340"},{"denom":"ASSET17","index":"0.000004170681814362"},{"denom":"ASSET18","index":"0.000001986659911066"},{"denom":"ASSET2","index":"0.000003848558848473"},{"denom":"ASSET3","index":"0.000001125668219966"},{"denom":"ASSET4","index":"0.000010594814661429"},{"denom":"ASSET5","index":"0.000000873679247744"},{"denom":"ASSET6","index":"0.000003556392613548"},{"denom":"ASSET7","index":"0.000005446486121273"},{"denom":"ASSET8","index":"0.000007106793880903"},{"denom":"ASSET9","index":"0.000003069683843425"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003115193601728"},{"denom":"ASSET1","index":"0.000026433576226141"},{"denom":"ASSET10","index":"0.000021120836274624"},{"denom":"ASSET11","index":"0.000026274076149270"},{"denom":"ASSET12","index":"0.000025063206789151"},{"denom":"ASSET13","index":"0.000008253838888439"},{"denom":"ASSET14","index":"0.000024111622086359"},{"denom":"ASSET15","index":"0.000019020166052921"},{"denom":"ASSET16","index":"0.000011725264187843"},{"denom":"ASSET17","index":"0.000009210335248597"},{"denom":"ASSET18","index":"0.000003802618681808"},{"denom":"ASSET2","index":"0.000008007094168018"},{"denom":"ASSET3","index":"0.000002223045227271"},{"denom":"ASSET4","index":"0.000021430343290469"},{"denom":"ASSET5","index":"0.000001731871182363"},{"denom":"ASSET6","index":"0.000006989160352022"},{"denom":"ASSET7","index":"0.000010981276608696"},{"denom":"ASSET8","index":"0.000015004007461071"},{"denom":"ASSET9","index":"0.000006368316319391"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001688791638136"},{"denom":"ASSET1","index":"0.000014080258863939"},{"denom":"ASSET10","index":"0.000009809129194434"},{"denom":"ASSET11","index":"0.000013620783833550"},{"denom":"ASSET12","index":"0.000012265553395360"},{"denom":"ASSET13","index":"0.000004220322334414"},{"denom":"ASSET14","index":"0.000012723923918464"},{"denom":"ASSET15","index":"0.000009096721995874"},{"denom":"ASSET16","index":"0.000006342080828109"},{"denom":"ASSET17","index":"0.000004504180706554"},{"denom":"ASSET18","index":"0.000002144953146672"},{"denom":"ASSET2","index":"0.000004156260911908"},{"denom":"ASSET3","index":"0.000001214958013048"},{"denom":"ASSET4","index":"0.000011442695468341"},{"denom":"ASSET5","index":"0.000000943249221039"},{"denom":"ASSET6","index":"0.000003840371828516"},{"denom":"ASSET7","index":"0.000005881501290436"},{"denom":"ASSET8","index":"0.000007675221120608"},{"denom":"ASSET9","index":"0.000003314626361051"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003342989987813"},{"denom":"ASSET1","index":"0.000028363859076608"},{"denom":"ASSET10","index":"0.000022643596968544"},{"denom":"ASSET11","index":"0.000028187678804911"},{"denom":"ASSET12","index":"0.000026879157824253"},{"denom":"ASSET13","index":"0.000008853292918908"},{"denom":"ASSET14","index":"0.000025870927331183"},{"denom":"ASSET15","index":"0.000020395094195043"},{"denom":"ASSET16","index":"0.000012581780801373"},{"denom":"ASSET17","index":"0.000009877287329505"},{"denom":"ASSET18","index":"0.000004080927248291"},{"denom":"ASSET2","index":"0.000008590241612281"},{"denom":"ASSET3","index":"0.000002384972961476"},{"denom":"ASSET4","index":"0.000022995501297970"},{"denom":"ASSET5","index":"0.000001858071035633"},{"denom":"ASSET6","index":"0.000007500418590266"},{"denom":"ASSET7","index":"0.000011782462758670"},{"denom":"ASSET8","index":"0.000016095075530395"},{"denom":"ASSET9","index":"0.000006831506736707"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001571496317510"},{"denom":"ASSET1","index":"0.000013101483241955"},{"denom":"ASSET10","index":"0.000009127906315185"},{"denom":"ASSET11","index":"0.000012674221268720"},{"denom":"ASSET12","index":"0.000011413128948859"},{"denom":"ASSET13","index":"0.000003927726401627"},{"denom":"ASSET14","index":"0.000011839579408375"},{"denom":"ASSET15","index":"0.000008464899606481"},{"denom":"ASSET16","index":"0.000005901733523932"},{"denom":"ASSET17","index":"0.000004191468360414"},{"denom":"ASSET18","index":"0.000001996729506447"},{"denom":"ASSET2","index":"0.000003867268629536"},{"denom":"ASSET3","index":"0.000001131250124766"},{"denom":"ASSET4","index":"0.000010647059997798"},{"denom":"ASSET5","index":"0.000000878057844331"},{"denom":"ASSET6","index":"0.000003573906419993"},{"denom":"ASSET7","index":"0.000005473254280118"},{"denom":"ASSET8","index":"0.000007142132243950"},{"denom":"ASSET9","index":"0.000003084563647228"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003113134051861"},{"denom":"ASSET1","index":"0.000026415094552464"},{"denom":"ASSET10","index":"0.000021090707465492"},{"denom":"ASSET11","index":"0.000026251548228726"},{"denom":"ASSET12","index":"0.000025034408517114"},{"denom":"ASSET13","index":"0.000008245703890405"},{"denom":"ASSET14","index":"0.000024093200316600"},{"denom":"ASSET15","index":"0.000018995578271326"},{"denom":"ASSET16","index":"0.000011717396138812"},{"denom":"ASSET17","index":"0.000009199501798709"},{"denom":"ASSET18","index":"0.000003801350346824"},{"denom":"ASSET2","index":"0.000007999912620195"},{"denom":"ASSET3","index":"0.000002221641081089"},{"denom":"ASSET4","index":"0.000021415082747190"},{"denom":"ASSET5","index":"0.000001730738444371"},{"denom":"ASSET6","index":"0.000006985361363625"},{"denom":"ASSET7","index":"0.000010973556930807"},{"denom":"ASSET8","index":"0.000014990236718633"},{"denom":"ASSET9","index":"0.000006362695679170"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001486431692511"},{"denom":"ASSET1","index":"0.000012397696164316"},{"denom":"ASSET10","index":"0.000008637613387551"},{"denom":"ASSET11","index":"0.000011993186507636"},{"denom":"ASSET12","index":"0.000010799842650204"},{"denom":"ASSET13","index":"0.000003716482933529"},{"denom":"ASSET14","index":"0.000011203544902380"},{"denom":"ASSET15","index":"0.000008010260087670"},{"denom":"ASSET16","index":"0.000005584816956599"},{"denom":"ASSET17","index":"0.000003965970925374"},{"denom":"ASSET18","index":"0.000001889326540182"},{"denom":"ASSET2","index":"0.000003659157213720"},{"denom":"ASSET3","index":"0.000001070618372770"},{"denom":"ASSET4","index":"0.000010074793405297"},{"denom":"ASSET5","index":"0.000000830819234978"},{"denom":"ASSET6","index":"0.000003381410064224"},{"denom":"ASSET7","index":"0.000005179499895414"},{"denom":"ASSET8","index":"0.000006757975701421"},{"denom":"ASSET9","index":"0.000002918767283230"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003023961266495"},{"denom":"ASSET1","index":"0.000025674667559579"},{"denom":"ASSET10","index":"0.000020567435721356"},{"denom":"ASSET11","index":"0.000025532965784321"},{"denom":"ASSET12","index":"0.000024383768132692"},{"denom":"ASSET13","index":"0.000008022807352722"},{"denom":"ASSET14","index":"0.000023423766496233"},{"denom":"ASSET15","index":"0.000018512228577533"},{"denom":"ASSET16","index":"0.000011384524743973"},{"denom":"ASSET17","index":"0.000008960010456843"},{"denom":"ASSET18","index":"0.000003688974211121"},{"denom":"ASSET2","index":"0.000007780619396113"},{"denom":"ASSET3","index":"0.000002157718690670"},{"denom":"ASSET4","index":"0.000020813357966886"},{"denom":"ASSET5","index":"0.000001681323481152"},{"denom":"ASSET6","index":"0.000006783427048921"},{"denom":"ASSET7","index":"0.000010664665966441"},{"denom":"ASSET8","index":"0.000014584270248941"},{"denom":"ASSET9","index":"0.000006187655866052"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001789525520762"},{"denom":"ASSET1","index":"0.000014923544215299"},{"denom":"ASSET10","index":"0.000010397506905977"},{"denom":"ASSET11","index":"0.000014436898494348"},{"denom":"ASSET12","index":"0.000013000171779235"},{"denom":"ASSET13","index":"0.000004474200642702"},{"denom":"ASSET14","index":"0.000013486043818595"},{"denom":"ASSET15","index":"0.000009642393672833"},{"denom":"ASSET16","index":"0.000006722519347127"},{"denom":"ASSET17","index":"0.000004774389100140"},{"denom":"ASSET18","index":"0.000002273850196939"},{"denom":"ASSET2","index":"0.000004405342981073"},{"denom":"ASSET3","index":"0.000001288179849576"},{"denom":"ASSET4","index":"0.000012128232625798"},{"denom":"ASSET5","index":"0.000001000370297599"},{"denom":"ASSET6","index":"0.000004071112533615"},{"denom":"ASSET7","index":"0.000006234326262993"},{"denom":"ASSET8","index":"0.000008135261932908"},{"denom":"ASSET9","index":"0.000003514061787852"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003488279034648"},{"denom":"ASSET1","index":"0.000029592208548275"},{"denom":"ASSET10","index":"0.000023577626976592"},{"denom":"ASSET11","index":"0.000029395914355993"},{"denom":"ASSET12","index":"0.000028007798530295"},{"denom":"ASSET13","index":"0.000009231498766276"},{"denom":"ASSET14","index":"0.000026986732997785"},{"denom":"ASSET15","index":"0.000021244630549189"},{"denom":"ASSET16","index":"0.000013129960095172"},{"denom":"ASSET17","index":"0.000010292381952670"},{"denom":"ASSET18","index":"0.000004261641431672"},{"denom":"ASSET2","index":"0.000008958343988321"},{"denom":"ASSET3","index":"0.000002489657102823"},{"denom":"ASSET4","index":"0.000023991917258738"},{"denom":"ASSET5","index":"0.000001939742890351"},{"denom":"ASSET6","index":"0.000007829259808535"},{"denom":"ASSET7","index":"0.000012294264842111"},{"denom":"ASSET8","index":"0.000016782088113605"},{"denom":"ASSET9","index":"0.000007125719490615"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001504632489095"},{"denom":"ASSET1","index":"0.000012543084148708"},{"denom":"ASSET10","index":"0.000008738830231438"},{"denom":"ASSET11","index":"0.000012134501498699"},{"denom":"ASSET12","index":"0.000010926897843985"},{"denom":"ASSET13","index":"0.000003760573206331"},{"denom":"ASSET14","index":"0.000011335480493994"},{"denom":"ASSET15","index":"0.000008104451906425"},{"denom":"ASSET16","index":"0.000005650267962622"},{"denom":"ASSET17","index":"0.000004012577307899"},{"denom":"ASSET18","index":"0.000001911199106291"},{"denom":"ASSET2","index":"0.000003702780265705"},{"denom":"ASSET3","index":"0.000001083281631273"},{"denom":"ASSET4","index":"0.000010193733911157"},{"denom":"ASSET5","index":"0.000000840685682831"},{"denom":"ASSET6","index":"0.000003421207682886"},{"denom":"ASSET7","index":"0.000005240341290738"},{"denom":"ASSET8","index":"0.000006837711289210"},{"denom":"ASSET9","index":"0.000002953488070376"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003015423229771"},{"denom":"ASSET1","index":"0.000025588098096649"},{"denom":"ASSET10","index":"0.000020460473772645"},{"denom":"ASSET11","index":"0.000025438043766359"},{"denom":"ASSET12","index":"0.000024273358860204"},{"denom":"ASSET13","index":"0.000007991752317173"},{"denom":"ASSET14","index":"0.000023342063892494"},{"denom":"ASSET15","index":"0.000018422728556898"},{"denom":"ASSET16","index":"0.000011348811151398"},{"denom":"ASSET17","index":"0.000008919790197810"},{"denom":"ASSET18","index":"0.000003679502338318"},{"denom":"ASSET2","index":"0.000007752126098631"},{"denom":"ASSET3","index":"0.000002151933074669"},{"denom":"ASSET4","index":"0.000020744635257959"},{"denom":"ASSET5","index":"0.000001676458472807"},{"denom":"ASSET6","index":"0.000006763790928604"},{"denom":"ASSET7","index":"0.000010629564741383"},{"denom":"ASSET8","index":"0.000014527278079751"},{"denom":"ASSET9","index":"0.000006165283413682"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001790270882045"},{"denom":"ASSET1","index":"0.000014924962381265"},{"denom":"ASSET10","index":"0.000010398687848362"},{"denom":"ASSET11","index":"0.000014438353512768"},{"denom":"ASSET12","index":"0.000013001639266884"},{"denom":"ASSET13","index":"0.000004474427888377"},{"denom":"ASSET14","index":"0.000013487623477013"},{"denom":"ASSET15","index":"0.000009643475881721"},{"denom":"ASSET16","index":"0.000006723198012370"},{"denom":"ASSET17","index":"0.000004774888563278"},{"denom":"ASSET18","index":"0.000002274381117071"},{"denom":"ASSET2","index":"0.000004405715467922"},{"denom":"ASSET3","index":"0.000001288670212721"},{"denom":"ASSET4","index":"0.000012129616185469"},{"denom":"ASSET5","index":"0.000001000078046809"},{"denom":"ASSET6","index":"0.000004071523241162"},{"denom":"ASSET7","index":"0.000006235339827137"},{"denom":"ASSET8","index":"0.000008136175240279"},{"denom":"ASSET9","index":"0.000003514327977106"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003452635056994"},{"denom":"ASSET1","index":"0.000029280443630050"},{"denom":"ASSET10","index":"0.000023297581891953"},{"denom":"ASSET11","index":"0.000029078046899152"},{"denom":"ASSET12","index":"0.000027688393753974"},{"denom":"ASSET13","index":"0.000009130247174920"},{"denom":"ASSET14","index":"0.000026700258191979"},{"denom":"ASSET15","index":"0.000020998119885469"},{"denom":"ASSET16","index":"0.000012993858989816"},{"denom":"ASSET17","index":"0.000010174919177657"},{"denom":"ASSET18","index":"0.000004220034662939"},{"denom":"ASSET2","index":"0.000008861755768133"},{"denom":"ASSET3","index":"0.000002464736347038"},{"denom":"ASSET4","index":"0.000023740327943060"},{"denom":"ASSET5","index":"0.000001919615043943"},{"denom":"ASSET6","index":"0.000007749671229698"},{"denom":"ASSET7","index":"0.000012165961282812"},{"denom":"ASSET8","index":"0.000016598407083950"},{"denom":"ASSET9","index":"0.000007048985746822"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001835550145227"},{"denom":"ASSET1","index":"0.000015324623289081"},{"denom":"ASSET10","index":"0.000010676536631006"},{"denom":"ASSET11","index":"0.000014825027987456"},{"denom":"ASSET12","index":"0.000013348446318211"},{"denom":"ASSET13","index":"0.000004592576069005"},{"denom":"ASSET14","index":"0.000013848041619836"},{"denom":"ASSET15","index":"0.000009899388384035"},{"denom":"ASSET16","index":"0.000006901816574290"},{"denom":"ASSET17","index":"0.000004903435367793"},{"denom":"ASSET18","index":"0.000002335145446851"},{"denom":"ASSET2","index":"0.000004522262656184"},{"denom":"ASSET3","index":"0.000001321152019851"},{"denom":"ASSET4","index":"0.000012452875481226"},{"denom":"ASSET5","index":"0.000001025095544814"},{"denom":"ASSET6","index":"0.000004178097003954"},{"denom":"ASSET7","index":"0.000006402221272666"},{"denom":"ASSET8","index":"0.000008352493301969"},{"denom":"ASSET9","index":"0.000003608188289508"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003336473275634"},{"denom":"ASSET1","index":"0.000028284037775138"},{"denom":"ASSET10","index":"0.000022321061137243"},{"denom":"ASSET11","index":"0.000028041053149272"},{"denom":"ASSET12","index":"0.000026607048139233"},{"denom":"ASSET13","index":"0.000008795774551756"},{"denom":"ASSET14","index":"0.000025776026947277"},{"denom":"ASSET15","index":"0.000020150006768141"},{"denom":"ASSET16","index":"0.000012562977954735"},{"denom":"ASSET17","index":"0.000009778271060189"},{"denom":"ASSET18","index":"0.000004091528532498"},{"denom":"ASSET2","index":"0.000008544798017437"},{"denom":"ASSET3","index":"0.000002382883485470"},{"denom":"ASSET4","index":"0.000022934405116164"},{"denom":"ASSET5","index":"0.000001855148612588"},{"denom":"ASSET6","index":"0.000007498692848558"},{"denom":"ASSET7","index":"0.000011756140274513"},{"denom":"ASSET8","index":"0.000015991743254740"},{"denom":"ASSET9","index":"0.000006799136288961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001764742979644"},{"denom":"ASSET1","index":"0.000014715413525055"},{"denom":"ASSET10","index":"0.000010252344388411"},{"denom":"ASSET11","index":"0.000014235671854472"},{"denom":"ASSET12","index":"0.000012819403806098"},{"denom":"ASSET13","index":"0.000004411268809023"},{"denom":"ASSET14","index":"0.000013298556836595"},{"denom":"ASSET15","index":"0.000009507714678855"},{"denom":"ASSET16","index":"0.000006629264655353"},{"denom":"ASSET17","index":"0.000004707943412672"},{"denom":"ASSET18","index":"0.000002242718729968"},{"denom":"ASSET2","index":"0.000004343575199063"},{"denom":"ASSET3","index":"0.000001270873946982"},{"denom":"ASSET4","index":"0.000011958811999481"},{"denom":"ASSET5","index":"0.000000985972145064"},{"denom":"ASSET6","index":"0.000004013936750564"},{"denom":"ASSET7","index":"0.000006147757064510"},{"denom":"ASSET8","index":"0.000008021987100262"},{"denom":"ASSET9","index":"0.000003464735549761"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003371223111771"},{"denom":"ASSET1","index":"0.000028586584995448"},{"denom":"ASSET10","index":"0.000022716281614844"},{"denom":"ASSET11","index":"0.000028381809067472"},{"denom":"ASSET12","index":"0.000027011101270499"},{"denom":"ASSET13","index":"0.000008910504058238"},{"denom":"ASSET14","index":"0.000026065694327630"},{"denom":"ASSET15","index":"0.000020479714095343"},{"denom":"ASSET16","index":"0.000012688778091614"},{"denom":"ASSET17","index":"0.000009925875585388"},{"denom":"ASSET18","index":"0.000004122881217339"},{"denom":"ASSET2","index":"0.000008649339803247"},{"denom":"ASSET3","index":"0.000002407313457267"},{"denom":"ASSET4","index":"0.000023177863483423"},{"denom":"ASSET5","index":"0.000001874397047373"},{"denom":"ASSET6","index":"0.000007568278053481"},{"denom":"ASSET7","index":"0.000011878402488901"},{"denom":"ASSET8","index":"0.000016198768839280"},{"denom":"ASSET9","index":"0.000006880150170591"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001519402004985"},{"denom":"ASSET1","index":"0.000012669186594649"},{"denom":"ASSET10","index":"0.000008826466179926"},{"denom":"ASSET11","index":"0.000012255973562605"},{"denom":"ASSET12","index":"0.000011036700348729"},{"denom":"ASSET13","index":"0.000003798237040326"},{"denom":"ASSET14","index":"0.000011448841492233"},{"denom":"ASSET15","index":"0.000008185476833202"},{"denom":"ASSET16","index":"0.000005707270529482"},{"denom":"ASSET17","index":"0.000004053346512768"},{"denom":"ASSET18","index":"0.000001930471259949"},{"denom":"ASSET2","index":"0.000003739819114914"},{"denom":"ASSET3","index":"0.000001093862254735"},{"denom":"ASSET4","index":"0.000010296025367816"},{"denom":"ASSET5","index":"0.000000848935723420"},{"denom":"ASSET6","index":"0.000003455768651901"},{"denom":"ASSET7","index":"0.000005292985608899"},{"denom":"ASSET8","index":"0.000006906177861104"},{"denom":"ASSET9","index":"0.000002983065805906"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003090388166914"},{"denom":"ASSET1","index":"0.000026235396530584"},{"denom":"ASSET10","index":"0.000021016328726441"},{"denom":"ASSET11","index":"0.000026091077525301"},{"denom":"ASSET12","index":"0.000024916432469284"},{"denom":"ASSET13","index":"0.000008198423394567"},{"denom":"ASSET14","index":"0.000023935350029219"},{"denom":"ASSET15","index":"0.000018916111125702"},{"denom":"ASSET16","index":"0.000011633439861257"},{"denom":"ASSET17","index":"0.000009156707623184"},{"denom":"ASSET18","index":"0.000003769226369030"},{"denom":"ASSET2","index":"0.000007950992094695"},{"denom":"ASSET3","index":"0.000002205065882760"},{"denom":"ASSET4","index":"0.000021268551776440"},{"denom":"ASSET5","index":"0.000001717872208784"},{"denom":"ASSET6","index":"0.000006931889619894"},{"denom":"ASSET7","index":"0.000010897757198785"},{"denom":"ASSET8","index":"0.000014903243728132"},{"denom":"ASSET9","index":"0.000006323427167640"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001518878942956"},{"denom":"ASSET1","index":"0.000012665267621292"},{"denom":"ASSET10","index":"0.000008823986077449"},{"denom":"ASSET11","index":"0.000012252067733139"},{"denom":"ASSET12","index":"0.000011032961258059"},{"denom":"ASSET13","index":"0.000003796959064490"},{"denom":"ASSET14","index":"0.000011445207974612"},{"denom":"ASSET15","index":"0.000008182978177143"},{"denom":"ASSET16","index":"0.000005705208605625"},{"denom":"ASSET17","index":"0.000004051932467214"},{"denom":"ASSET18","index":"0.000001930172487911"},{"denom":"ASSET2","index":"0.000003738815596953"},{"denom":"ASSET3","index":"0.000001093764409816"},{"denom":"ASSET4","index":"0.000010292823511460"},{"denom":"ASSET5","index":"0.000000848799308881"},{"denom":"ASSET6","index":"0.000003454770460461"},{"denom":"ASSET7","index":"0.000005291055545873"},{"denom":"ASSET8","index":"0.000006904298477127"},{"denom":"ASSET9","index":"0.000002981997347372"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003032310940473"},{"denom":"ASSET1","index":"0.000025733484746235"},{"denom":"ASSET10","index":"0.000020566326171769"},{"denom":"ASSET11","index":"0.000025579130700492"},{"denom":"ASSET12","index":"0.000024402998631681"},{"denom":"ASSET13","index":"0.000008035434808363"},{"denom":"ASSET14","index":"0.000023473377840860"},{"denom":"ASSET15","index":"0.000018519821992016"},{"denom":"ASSET16","index":"0.000011413808805814"},{"denom":"ASSET17","index":"0.000008967671528488"},{"denom":"ASSET18","index":"0.000003701450923042"},{"denom":"ASSET2","index":"0.000007795399667781"},{"denom":"ASSET3","index":"0.000002164126947351"},{"denom":"ASSET4","index":"0.000020862528644023"},{"denom":"ASSET5","index":"0.000001685967393794"},{"denom":"ASSET6","index":"0.000006803442800114"},{"denom":"ASSET7","index":"0.000010689840259007"},{"denom":"ASSET8","index":"0.000014607710652032"},{"denom":"ASSET9","index":"0.000006199747658625"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001387661284101"},{"denom":"ASSET1","index":"0.000011573014587468"},{"denom":"ASSET10","index":"0.000008062929395432"},{"denom":"ASSET11","index":"0.000011195232526081"},{"denom":"ASSET12","index":"0.000010081345808669"},{"denom":"ASSET13","index":"0.000003469153210252"},{"denom":"ASSET14","index":"0.000010458456853962"},{"denom":"ASSET15","index":"0.000007477132344649"},{"denom":"ASSET16","index":"0.000005213124040705"},{"denom":"ASSET17","index":"0.000003702666811251"},{"denom":"ASSET18","index":"0.000001763430297203"},{"denom":"ASSET2","index":"0.000003416142938760"},{"denom":"ASSET3","index":"0.000000999142965196"},{"denom":"ASSET4","index":"0.000009404961585085"},{"denom":"ASSET5","index":"0.000000775694605619"},{"denom":"ASSET6","index":"0.000003156459710063"},{"denom":"ASSET7","index":"0.000004834670963223"},{"denom":"ASSET8","index":"0.000006308893323556"},{"denom":"ASSET9","index":"0.000002724996361089"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000002847838387483"},{"denom":"ASSET1","index":"0.000024182680336096"},{"denom":"ASSET10","index":"0.000019393227963423"},{"denom":"ASSET11","index":"0.000024054653395269"},{"denom":"ASSET12","index":"0.000022982316432831"},{"denom":"ASSET13","index":"0.000007558836235579"},{"denom":"ASSET14","index":"0.000022064079622497"},{"denom":"ASSET15","index":"0.000017450899901336"},{"denom":"ASSET16","index":"0.000010721434414440"},{"denom":"ASSET17","index":"0.000008446187739031"},{"denom":"ASSET18","index":"0.000003472449339717"},{"denom":"ASSET2","index":"0.000007330038539196"},{"denom":"ASSET3","index":"0.000002031951160271"},{"denom":"ASSET4","index":"0.000019603371773062"},{"denom":"ASSET5","index":"0.000001583403578691"},{"denom":"ASSET6","index":"0.000006387295602350"},{"denom":"ASSET7","index":"0.000010043914419286"},{"denom":"ASSET8","index":"0.000013741733556815"},{"denom":"ASSET9","index":"0.000005829813216311"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001740203165372"},{"denom":"ASSET1","index":"0.000014506985633466"},{"denom":"ASSET10","index":"0.000010106727386233"},{"denom":"ASSET11","index":"0.000014033828203465"},{"denom":"ASSET12","index":"0.000012637643303754"},{"denom":"ASSET13","index":"0.000004348390877948"},{"denom":"ASSET14","index":"0.000013109742216014"},{"denom":"ASSET15","index":"0.000009373174592071"},{"denom":"ASSET16","index":"0.000006535288529808"},{"denom":"ASSET17","index":"0.000004640541774324"},{"denom":"ASSET18","index":"0.000002210185042151"},{"denom":"ASSET2","index":"0.000004281704260297"},{"denom":"ASSET3","index":"0.000001252226487004"},{"denom":"ASSET4","index":"0.000011789770593618"},{"denom":"ASSET5","index":"0.000000971719285773"},{"denom":"ASSET6","index":"0.000003956739313965"},{"denom":"ASSET7","index":"0.000006060014064326"},{"denom":"ASSET8","index":"0.000007908186039228"},{"denom":"ASSET9","index":"0.000003415836748573"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003351161845380"},{"denom":"ASSET1","index":"0.000028416485386018"},{"denom":"ASSET10","index":"0.000022605276372189"},{"denom":"ASSET11","index":"0.000028218825237526"},{"denom":"ASSET12","index":"0.000026868556551399"},{"denom":"ASSET13","index":"0.000008859853422879"},{"denom":"ASSET14","index":"0.000025912194276628"},{"denom":"ASSET15","index":"0.000020375555431981"},{"denom":"ASSET16","index":"0.000012611404420708"},{"denom":"ASSET17","index":"0.000009873044520717"},{"denom":"ASSET18","index":"0.000004095473642305"},{"denom":"ASSET2","index":"0.000008599384819082"},{"denom":"ASSET3","index":"0.000002391571176633"},{"denom":"ASSET4","index":"0.000023040021162794"},{"denom":"ASSET5","index":"0.000001862805125681"},{"denom":"ASSET6","index":"0.000007520693553142"},{"denom":"ASSET7","index":"0.000011806544930596"},{"denom":"ASSET8","index":"0.000016107343127742"},{"denom":"ASSET9","index":"0.000006840485865179"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001711866379191"},{"denom":"ASSET1","index":"0.000014286095556473"},{"denom":"ASSET10","index":"0.000009953932372868"},{"denom":"ASSET11","index":"0.000013820467901333"},{"denom":"ASSET12","index":"0.000012444127332464"},{"denom":"ASSET13","index":"0.000004281948436482"},{"denom":"ASSET14","index":"0.000012909754987604"},{"denom":"ASSET15","index":"0.000009230383516596"},{"denom":"ASSET16","index":"0.000006434335097252"},{"denom":"ASSET17","index":"0.000004569541988186"},{"denom":"ASSET18","index":"0.000002177494034331"},{"denom":"ASSET2","index":"0.000004215756269820"},{"denom":"ASSET3","index":"0.000001232543793017"},{"denom":"ASSET4","index":"0.000011608736539419"},{"denom":"ASSET5","index":"0.000000956362683841"},{"denom":"ASSET6","index":"0.000003896207879038"},{"denom":"ASSET7","index":"0.000005968707442112"},{"denom":"ASSET8","index":"0.000007787850781065"},{"denom":"ASSET9","index":"0.000003362105568731"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003408995344605"},{"denom":"ASSET1","index":"0.000028940875589883"},{"denom":"ASSET10","index":"0.000023121939135123"},{"denom":"ASSET11","index":"0.000028765460883304"},{"denom":"ASSET12","index":"0.000027437813762181"},{"denom":"ASSET13","index":"0.000009035078182388"},{"denom":"ASSET14","index":"0.000026397840013038"},{"denom":"ASSET15","index":"0.000020822021063845"},{"denom":"ASSET16","index":"0.000012835900360827"},{"denom":"ASSET17","index":"0.000010082289518918"},{"denom":"ASSET18","index":"0.000004163537456367"},{"denom":"ASSET2","index":"0.000008764373535196"},{"denom":"ASSET3","index":"0.000002432999591430"},{"denom":"ASSET4","index":"0.000023461370966582"},{"denom":"ASSET5","index":"0.000001895172356369"},{"denom":"ASSET6","index":"0.000007651446569151"},{"denom":"ASSET7","index":"0.000012022926111771"},{"denom":"ASSET8","index":"0.000016426068411072"},{"denom":"ASSET9","index":"0.000006969965423669"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001459800105667"},{"denom":"ASSET1","index":"0.000012176396665923"},{"denom":"ASSET10","index":"0.000008484162206626"},{"denom":"ASSET11","index":"0.000011779823335110"},{"denom":"ASSET12","index":"0.000010607197020722"},{"denom":"ASSET13","index":"0.000003650070053435"},{"denom":"ASSET14","index":"0.000011003770351536"},{"denom":"ASSET15","index":"0.000007867650218206"},{"denom":"ASSET16","index":"0.000005484791497715"},{"denom":"ASSET17","index":"0.000003895079438851"},{"denom":"ASSET18","index":"0.000001855233857943"},{"denom":"ASSET2","index":"0.000003594230705131"},{"denom":"ASSET3","index":"0.000001050691410948"},{"denom":"ASSET4","index":"0.000009896100013746"},{"denom":"ASSET5","index":"0.000000815938232363"},{"denom":"ASSET6","index":"0.000003321871434831"},{"denom":"ASSET7","index":"0.000005087078588365"},{"denom":"ASSET8","index":"0.000006638044976977"},{"denom":"ASSET9","index":"0.000002867179598640"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000002975317591563"},{"denom":"ASSET1","index":"0.000025265738469637"},{"denom":"ASSET10","index":"0.000020245724387946"},{"denom":"ASSET11","index":"0.000025128558675417"},{"denom":"ASSET12","index":"0.000023998925764885"},{"denom":"ASSET13","index":"0.000007895668684136"},{"denom":"ASSET14","index":"0.000023051238668493"},{"denom":"ASSET15","index":"0.000018221178423268"},{"denom":"ASSET16","index":"0.000011202197653725"},{"denom":"ASSET17","index":"0.000008818540737002"},{"denom":"ASSET18","index":"0.000003629428323701"},{"denom":"ASSET2","index":"0.000007657107369447"},{"denom":"ASSET3","index":"0.000002122660280404"},{"denom":"ASSET4","index":"0.000020482509156357"},{"denom":"ASSET5","index":"0.000001654309607539"},{"denom":"ASSET6","index":"0.000006675356935536"},{"denom":"ASSET7","index":"0.000010494215679887"},{"denom":"ASSET8","index":"0.000014353927855523"},{"denom":"ASSET9","index":"0.000006089535217587"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001617402557586"},{"denom":"ASSET1","index":"0.000013485147451276"},{"denom":"ASSET10","index":"0.000009395521488362"},{"denom":"ASSET11","index":"0.000013045402724081"},{"denom":"ASSET12","index":"0.000011747619504798"},{"denom":"ASSET13","index":"0.000004042433845849"},{"denom":"ASSET14","index":"0.000012186291683878"},{"denom":"ASSET15","index":"0.000008713380887153"},{"denom":"ASSET16","index":"0.000006074912523982"},{"denom":"ASSET17","index":"0.000004313788518972"},{"denom":"ASSET18","index":"0.000002055002188551"},{"denom":"ASSET2","index":"0.000003980226055173"},{"denom":"ASSET3","index":"0.000001163714704894"},{"denom":"ASSET4","index":"0.000010959296640193"},{"denom":"ASSET5","index":"0.000000903085512923"},{"denom":"ASSET6","index":"0.000003677767486712"},{"denom":"ASSET7","index":"0.000005633022700557"},{"denom":"ASSET8","index":"0.000007351244780963"},{"denom":"ASSET9","index":"0.000003174742420725"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003091273620954"},{"denom":"ASSET1","index":"0.000026212594205506"},{"denom":"ASSET10","index":"0.000020831747389799"},{"denom":"ASSET11","index":"0.000026024829344923"},{"denom":"ASSET12","index":"0.000024768925461013"},{"denom":"ASSET13","index":"0.000008170539761157"},{"denom":"ASSET14","index":"0.000023900540063840"},{"denom":"ASSET15","index":"0.000018780610027247"},{"denom":"ASSET16","index":"0.000011634658240098"},{"denom":"ASSET17","index":"0.000009101405984603"},{"denom":"ASSET18","index":"0.000003780149264156"},{"denom":"ASSET2","index":"0.000007930960667726"},{"denom":"ASSET3","index":"0.000002206123035767"},{"denom":"ASSET4","index":"0.000021253166889363"},{"denom":"ASSET5","index":"0.000001718500807532"},{"denom":"ASSET6","index":"0.000006939076737962"},{"denom":"ASSET7","index":"0.000010891166816552"},{"denom":"ASSET8","index":"0.000014853628574871"},{"denom":"ASSET9","index":"0.000006308302102729"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001496654334782"},{"denom":"ASSET1","index":"0.000012477377024436"},{"denom":"ASSET10","index":"0.000008693096469902"},{"denom":"ASSET11","index":"0.000012070207597683"},{"denom":"ASSET12","index":"0.000010869145414891"},{"denom":"ASSET13","index":"0.000003740467488528"},{"denom":"ASSET14","index":"0.000011275146493218"},{"denom":"ASSET15","index":"0.000008061604145195"},{"denom":"ASSET16","index":"0.000005620924281527"},{"denom":"ASSET17","index":"0.000003991662400298"},{"denom":"ASSET18","index":"0.000001901487064682"},{"denom":"ASSET2","index":"0.000003683218415613"},{"denom":"ASSET3","index":"0.000001077217249546"},{"denom":"ASSET4","index":"0.000010139511822330"},{"denom":"ASSET5","index":"0.000000835953299404"},{"denom":"ASSET6","index":"0.000003403398967385"},{"denom":"ASSET7","index":"0.000005212586506346"},{"denom":"ASSET8","index":"0.000006801540366848"},{"denom":"ASSET9","index":"0.000002937812119289"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003012098530886"},{"denom":"ASSET1","index":"0.000025562058034330"},{"denom":"ASSET10","index":"0.000020450222858637"},{"denom":"ASSET11","index":"0.000025414193224582"},{"denom":"ASSET12","index":"0.000024256065084933"},{"denom":"ASSET13","index":"0.000007984561416691"},{"denom":"ASSET14","index":"0.000023318358139730"},{"denom":"ASSET15","index":"0.000018411259079989"},{"denom":"ASSET16","index":"0.000011336678183578"},{"denom":"ASSET17","index":"0.000008913774138499"},{"denom":"ASSET18","index":"0.000003674960609183"},{"denom":"ASSET2","index":"0.000007744948932800"},{"denom":"ASSET3","index":"0.000002148867969989"},{"denom":"ASSET4","index":"0.000020722540912428"},{"denom":"ASSET5","index":"0.000001674229864542"},{"denom":"ASSET6","index":"0.000006756080138401"},{"denom":"ASSET7","index":"0.000010618450136599"},{"denom":"ASSET8","index":"0.000014514789998911"},{"denom":"ASSET9","index":"0.000006159565713194"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001470615438656"},{"denom":"ASSET1","index":"0.000012263141624205"},{"denom":"ASSET10","index":"0.000008543710077270"},{"denom":"ASSET11","index":"0.000011863435889596"},{"denom":"ASSET12","index":"0.000010682701378752"},{"denom":"ASSET13","index":"0.000003676538596641"},{"denom":"ASSET14","index":"0.000011081935762259"},{"denom":"ASSET15","index":"0.000007923412026863"},{"denom":"ASSET16","index":"0.000005524234917004"},{"denom":"ASSET17","index":"0.000003923055223056"},{"denom":"ASSET18","index":"0.000001868907119959"},{"denom":"ASSET2","index":"0.000003619976464385"},{"denom":"ASSET3","index":"0.000001058654575392"},{"denom":"ASSET4","index":"0.000009965776352407"},{"denom":"ASSET5","index":"0.000000822036322121"},{"denom":"ASSET6","index":"0.000003345178771841"},{"denom":"ASSET7","index":"0.000005123115129088"},{"denom":"ASSET8","index":"0.000006685172681558"},{"denom":"ASSET9","index":"0.000002887496851669"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000002995147819628"},{"denom":"ASSET1","index":"0.000025426980115999"},{"denom":"ASSET10","index":"0.000020372034738960"},{"denom":"ASSET11","index":"0.000025287989623967"},{"denom":"ASSET12","index":"0.000024150599022202"},{"denom":"ASSET13","index":"0.000007946076587902"},{"denom":"ASSET14","index":"0.000023198024872944"},{"denom":"ASSET15","index":"0.000018335727027304"},{"denom":"ASSET16","index":"0.000011274635486105"},{"denom":"ASSET17","index":"0.000008875015361763"},{"denom":"ASSET18","index":"0.000003653177061349"},{"denom":"ASSET2","index":"0.000007706361997735"},{"denom":"ASSET3","index":"0.000002137037997503"},{"denom":"ASSET4","index":"0.000020612735071168"},{"denom":"ASSET5","index":"0.000001665450131859"},{"denom":"ASSET6","index":"0.000006718182222688"},{"denom":"ASSET7","index":"0.000010561635089256"},{"denom":"ASSET8","index":"0.000014445035982826"},{"denom":"ASSET9","index":"0.000006128513210961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001778581753434"},{"denom":"ASSET1","index":"0.000014888315804569"},{"denom":"ASSET10","index":"0.000010370885153828"},{"denom":"ASSET11","index":"0.000014404007158094"},{"denom":"ASSET12","index":"0.000012967781516823"},{"denom":"ASSET13","index":"0.000004458979607201"},{"denom":"ASSET14","index":"0.000013452090163298"},{"denom":"ASSET15","index":"0.000009619371736884"},{"denom":"ASSET16","index":"0.000006705169708956"},{"denom":"ASSET17","index":"0.000004759584973979"},{"denom":"ASSET18","index":"0.000002262890399909"},{"denom":"ASSET2","index":"0.000004392178414584"},{"denom":"ASSET3","index":"0.000001285922957882"},{"denom":"ASSET4","index":"0.000012099366012799"},{"denom":"ASSET5","index":"0.000000993667740182"},{"denom":"ASSET6","index":"0.000004058172451498"},{"denom":"ASSET7","index":"0.000006220861062481"},{"denom":"ASSET8","index":"0.000008116344902996"},{"denom":"ASSET9","index":"0.000003507062612406"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003356752793751"},{"denom":"ASSET1","index":"0.000028516406305775"},{"denom":"ASSET10","index":"0.000022616173055400"},{"denom":"ASSET11","index":"0.000028302061322789"},{"denom":"ASSET12","index":"0.000026910491325102"},{"denom":"ASSET13","index":"0.000008878873421079"},{"denom":"ASSET14","index":"0.000025995251505598"},{"denom":"ASSET15","index":"0.000020398635157595"},{"denom":"ASSET16","index":"0.000012658071469071"},{"denom":"ASSET17","index":"0.000009885849877285"},{"denom":"ASSET18","index":"0.000004110010202724"},{"denom":"ASSET2","index":"0.000008622285743228"},{"denom":"ASSET3","index":"0.000002402314047495"},{"denom":"ASSET4","index":"0.000023121698220749"},{"denom":"ASSET5","index":"0.000001866482592061"},{"denom":"ASSET6","index":"0.000007549939309511"},{"denom":"ASSET7","index":"0.000011851024307599"},{"denom":"ASSET8","index":"0.000016149793693754"},{"denom":"ASSET9","index":"0.000006862325287189"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001604942959288"},{"denom":"ASSET1","index":"0.000013380628695124"},{"denom":"ASSET10","index":"0.000009322365613635"},{"denom":"ASSET11","index":"0.000012944148427984"},{"denom":"ASSET12","index":"0.000011656280789193"},{"denom":"ASSET13","index":"0.000004011353995308"},{"denom":"ASSET14","index":"0.000012091757653420"},{"denom":"ASSET15","index":"0.000008645319498111"},{"denom":"ASSET16","index":"0.000006027692148913"},{"denom":"ASSET17","index":"0.000004280767677439"},{"denom":"ASSET18","index":"0.000002039165569874"},{"denom":"ASSET2","index":"0.000003949895566889"},{"denom":"ASSET3","index":"0.000001155418454280"},{"denom":"ASSET4","index":"0.000010873877367808"},{"denom":"ASSET5","index":"0.000000896791353463"},{"denom":"ASSET6","index":"0.000003649878095912"},{"denom":"ASSET7","index":"0.000005589957628131"},{"denom":"ASSET8","index":"0.000007294237475803"},{"denom":"ASSET9","index":"0.000003150685146712"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003200268554223"},{"denom":"ASSET1","index":"0.000027155061035589"},{"denom":"ASSET10","index":"0.000021699312128992"},{"denom":"ASSET11","index":"0.000026991580254755"},{"denom":"ASSET12","index":"0.000025748970079650"},{"denom":"ASSET13","index":"0.000008479073830121"},{"denom":"ASSET14","index":"0.000024769827936089"},{"denom":"ASSET15","index":"0.000019540730612944"},{"denom":"ASSET16","index":"0.000012044995213579"},{"denom":"ASSET17","index":"0.000009462424001901"},{"denom":"ASSET18","index":"0.000003906197580725"},{"denom":"ASSET2","index":"0.000008225756082433"},{"denom":"ASSET3","index":"0.000002283784004254"},{"denom":"ASSET4","index":"0.000022014648589339"},{"denom":"ASSET5","index":"0.000001779311895342"},{"denom":"ASSET6","index":"0.000007179475362032"},{"denom":"ASSET7","index":"0.000011280598785262"},{"denom":"ASSET8","index":"0.000015413911362487"},{"denom":"ASSET9","index":"0.000006542247148589"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001620184629837"},{"denom":"ASSET1","index":"0.000013508113244239"},{"denom":"ASSET10","index":"0.000009411159415052"},{"denom":"ASSET11","index":"0.000013068550109883"},{"denom":"ASSET12","index":"0.000011766766981214"},{"denom":"ASSET13","index":"0.000004049052718392"},{"denom":"ASSET14","index":"0.000012206330115570"},{"denom":"ASSET15","index":"0.000008726455301921"},{"denom":"ASSET16","index":"0.000006083441070987"},{"denom":"ASSET17","index":"0.000004319553108765"},{"denom":"ASSET18","index":"0.000002056930051793"},{"denom":"ASSET2","index":"0.000003987063045598"},{"denom":"ASSET3","index":"0.000001166532933482"},{"denom":"ASSET4","index":"0.000010977807509294"},{"denom":"ASSET5","index":"0.000000904485680309"},{"denom":"ASSET6","index":"0.000003682750106429"},{"denom":"ASSET7","index":"0.000005643877936631"},{"denom":"ASSET8","index":"0.000007362682500458"},{"denom":"ASSET9","index":"0.000003178379586880"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003154859072778"},{"denom":"ASSET1","index":"0.000026759958230198"},{"denom":"ASSET10","index":"0.000021318547828682"},{"denom":"ASSET11","index":"0.000026582778956839"},{"denom":"ASSET12","index":"0.000025324795995745"},{"denom":"ASSET13","index":"0.000008347309163095"},{"denom":"ASSET14","index":"0.000024403216779648"},{"denom":"ASSET15","index":"0.000019208461119321"},{"denom":"ASSET16","index":"0.000011872154646602"},{"denom":"ASSET17","index":"0.000009304429323264"},{"denom":"ASSET18","index":"0.000003853154066825"},{"denom":"ASSET2","index":"0.000008100524497579"},{"denom":"ASSET3","index":"0.000002251942800438"},{"denom":"ASSET4","index":"0.000021695917087147"},{"denom":"ASSET5","index":"0.000001753374642360"},{"denom":"ASSET6","index":"0.000007078305954632"},{"denom":"ASSET7","index":"0.000011118481739065"},{"denom":"ASSET8","index":"0.000015174129529137"},{"denom":"ASSET9","index":"0.000006441283498998"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001565910537906"},{"denom":"ASSET1","index":"0.000013053983025959"},{"denom":"ASSET10","index":"0.000009094819386579"},{"denom":"ASSET11","index":"0.000012628414118813"},{"denom":"ASSET12","index":"0.000011371841840295"},{"denom":"ASSET13","index":"0.000003913403541838"},{"denom":"ASSET14","index":"0.000011796953146466"},{"denom":"ASSET15","index":"0.000008434501179040"},{"denom":"ASSET16","index":"0.000005880630135191"},{"denom":"ASSET17","index":"0.000004176066501732"},{"denom":"ASSET18","index":"0.000001989191440174"},{"denom":"ASSET2","index":"0.000003853457814057"},{"denom":"ASSET3","index":"0.000001127071202473"},{"denom":"ASSET4","index":"0.000010608563413286"},{"denom":"ASSET5","index":"0.000000874933065013"},{"denom":"ASSET6","index":"0.000003561050790760"},{"denom":"ASSET7","index":"0.000005453688425119"},{"denom":"ASSET8","index":"0.000007116152768840"},{"denom":"ASSET9","index":"0.000003073705751932"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003066618221533"},{"denom":"ASSET1","index":"0.000026018563142658"},{"denom":"ASSET10","index":"0.000020743763118655"},{"denom":"ASSET11","index":"0.000025849025514444"},{"denom":"ASSET12","index":"0.000024635604575072"},{"denom":"ASSET13","index":"0.000008118261811936"},{"denom":"ASSET14","index":"0.000023728777879609"},{"denom":"ASSET15","index":"0.000018689177197382"},{"denom":"ASSET16","index":"0.000011544003668418"},{"denom":"ASSET17","index":"0.000009052167825210"},{"denom":"ASSET18","index":"0.000003745930402733"},{"denom":"ASSET2","index":"0.000007877080459743"},{"denom":"ASSET3","index":"0.000002188594145460"},{"denom":"ASSET4","index":"0.000021094338825720"},{"denom":"ASSET5","index":"0.000001705356613908"},{"denom":"ASSET6","index":"0.000006882744986340"},{"denom":"ASSET7","index":"0.000010809249072439"},{"denom":"ASSET8","index":"0.000014757775472241"},{"denom":"ASSET9","index":"0.000006264987011427"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001616793771814"},{"denom":"ASSET1","index":"0.000013481664806896"},{"denom":"ASSET10","index":"0.000009392973001731"},{"denom":"ASSET11","index":"0.000013042136425966"},{"denom":"ASSET12","index":"0.000011745108533466"},{"denom":"ASSET13","index":"0.000004041984429535"},{"denom":"ASSET14","index":"0.000012183439289380"},{"denom":"ASSET15","index":"0.000008710326742521"},{"denom":"ASSET16","index":"0.000006073156456940"},{"denom":"ASSET17","index":"0.000004312647683187"},{"denom":"ASSET18","index":"0.000002053926902712"},{"denom":"ASSET2","index":"0.000003979707928695"},{"denom":"ASSET3","index":"0.000001164091515706"},{"denom":"ASSET4","index":"0.000010955873647818"},{"denom":"ASSET5","index":"0.000000903009262183"},{"denom":"ASSET6","index":"0.000003677906424623"},{"denom":"ASSET7","index":"0.000005632430450993"},{"denom":"ASSET8","index":"0.000007349824724165"},{"denom":"ASSET9","index":"0.000003173706292820"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003010548827117"},{"denom":"ASSET1","index":"0.000025517681435823"},{"denom":"ASSET10","index":"0.000020207909525991"},{"denom":"ASSET11","index":"0.000025316824190850"},{"denom":"ASSET12","index":"0.000024059273468565"},{"denom":"ASSET13","index":"0.000007945703994160"},{"denom":"ASSET14","index":"0.000023261456497592"},{"denom":"ASSET15","index":"0.000018230653165683"},{"denom":"ASSET16","index":"0.000011330852554208"},{"denom":"ASSET17","index":"0.000008840468160143"},{"denom":"ASSET18","index":"0.000003685449036638"},{"denom":"ASSET2","index":"0.000007715875534239"},{"denom":"ASSET3","index":"0.000002150116713749"},{"denom":"ASSET4","index":"0.000020690763011385"},{"denom":"ASSET5","index":"0.000001674170167376"},{"denom":"ASSET6","index":"0.000006761947340508"},{"denom":"ASSET7","index":"0.000010605047135869"},{"denom":"ASSET8","index":"0.000014444866674878"},{"denom":"ASSET9","index":"0.000006137206230949"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001598496813351"},{"denom":"ASSET1","index":"0.000013327209301876"},{"denom":"ASSET10","index":"0.000009285082513510"},{"denom":"ASSET11","index":"0.000012892549064690"},{"denom":"ASSET12","index":"0.000011609910099638"},{"denom":"ASSET13","index":"0.000003995530641827"},{"denom":"ASSET14","index":"0.000012043503249499"},{"denom":"ASSET15","index":"0.000008611039019674"},{"denom":"ASSET16","index":"0.000006003788988106"},{"denom":"ASSET17","index":"0.000004263725256261"},{"denom":"ASSET18","index":"0.000002031022875886"},{"denom":"ASSET2","index":"0.000003933995272733"},{"denom":"ASSET3","index":"0.000001150675832486"},{"denom":"ASSET4","index":"0.000010830580656369"},{"denom":"ASSET5","index":"0.000000893152091305"},{"denom":"ASSET6","index":"0.000003635566517414"},{"denom":"ASSET7","index":"0.000005567705967820"},{"denom":"ASSET8","index":"0.000007265086206652"},{"denom":"ASSET9","index":"0.000003137948128033"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003202417698287"},{"denom":"ASSET1","index":"0.000027176874960756"},{"denom":"ASSET10","index":"0.000021729724210241"},{"denom":"ASSET11","index":"0.000027016578438308"},{"denom":"ASSET12","index":"0.000025779554956391"},{"denom":"ASSET13","index":"0.000008487649506725"},{"denom":"ASSET14","index":"0.000024790682929963"},{"denom":"ASSET15","index":"0.000019565798539307"},{"denom":"ASSET16","index":"0.000012053877846841"},{"denom":"ASSET17","index":"0.000009473617164606"},{"denom":"ASSET18","index":"0.000003908301251667"},{"denom":"ASSET2","index":"0.000008233254558201"},{"denom":"ASSET3","index":"0.000002285025567503"},{"denom":"ASSET4","index":"0.000022032200437673"},{"denom":"ASSET5","index":"0.000001780306156687"},{"denom":"ASSET6","index":"0.000007184182778940"},{"denom":"ASSET7","index":"0.000011289430429576"},{"denom":"ASSET8","index":"0.000015429251463912"},{"denom":"ASSET9","index":"0.000006548040900334"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001349258766758"},{"denom":"ASSET1","index":"0.000011264433664868"},{"denom":"ASSET10","index":"0.000007848225297969"},{"denom":"ASSET11","index":"0.000010895650990484"},{"denom":"ASSET12","index":"0.000009811385762205"},{"denom":"ASSET13","index":"0.000003376459336127"},{"denom":"ASSET14","index":"0.000010177960157102"},{"denom":"ASSET15","index":"0.000007278489190238"},{"denom":"ASSET16","index":"0.000005074626261883"},{"denom":"ASSET17","index":"0.000003603912123322"},{"denom":"ASSET18","index":"0.000001715833161655"},{"denom":"ASSET2","index":"0.000003323460628431"},{"denom":"ASSET3","index":"0.000000971642974425"},{"denom":"ASSET4","index":"0.000009153318474981"},{"denom":"ASSET5","index":"0.000000753023305179"},{"denom":"ASSET6","index":"0.000003071716766875"},{"denom":"ASSET7","index":"0.000004705843587499"},{"denom":"ASSET8","index":"0.000006139016974776"},{"denom":"ASSET9","index":"0.000002652143664283"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000002874619638549"},{"denom":"ASSET1","index":"0.000024442633186143"},{"denom":"ASSET10","index":"0.000019689737510784"},{"denom":"ASSET11","index":"0.000024334399718263"},{"denom":"ASSET12","index":"0.000023294058494145"},{"denom":"ASSET13","index":"0.000007650065286478"},{"denom":"ASSET14","index":"0.000022306974942610"},{"denom":"ASSET15","index":"0.000017702453996022"},{"denom":"ASSET16","index":"0.000010830667352685"},{"denom":"ASSET17","index":"0.000008561334956642"},{"denom":"ASSET18","index":"0.000003501743239949"},{"denom":"ASSET2","index":"0.000007413384379561"},{"denom":"ASSET3","index":"0.000002050775894848"},{"denom":"ASSET4","index":"0.000019811877393900"},{"denom":"ASSET5","index":"0.000001596563839644"},{"denom":"ASSET6","index":"0.000006447875450380"},{"denom":"ASSET7","index":"0.000010149425285061"},{"denom":"ASSET8","index":"0.000013906577801610"},{"denom":"ASSET9","index":"0.000005896530335304"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001744355646452"},{"denom":"ASSET1","index":"0.000014544558741461"},{"denom":"ASSET10","index":"0.000010133244841823"},{"denom":"ASSET11","index":"0.000014070651242217"},{"denom":"ASSET12","index":"0.000012670295178174"},{"denom":"ASSET13","index":"0.000004360461787457"},{"denom":"ASSET14","index":"0.000013143775348745"},{"denom":"ASSET15","index":"0.000009397812194213"},{"denom":"ASSET16","index":"0.000006552230555377"},{"denom":"ASSET17","index":"0.000004653181929010"},{"denom":"ASSET18","index":"0.000002216553831001"},{"denom":"ASSET2","index":"0.000004293371185670"},{"denom":"ASSET3","index":"0.000001255918972299"},{"denom":"ASSET4","index":"0.000011819911117312"},{"denom":"ASSET5","index":"0.000000974736704938"},{"denom":"ASSET6","index":"0.000003967319407560"},{"denom":"ASSET7","index":"0.000006076186412764"},{"denom":"ASSET8","index":"0.000007929083542361"},{"denom":"ASSET9","index":"0.000003424611991834"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003377008276018"},{"denom":"ASSET1","index":"0.000028642142456639"},{"denom":"ASSET10","index":"0.000022800592191853"},{"denom":"ASSET11","index":"0.000028447577997463"},{"denom":"ASSET12","index":"0.000027093635853923"},{"denom":"ASSET13","index":"0.000008933092474106"},{"denom":"ASSET14","index":"0.000026119259559896"},{"denom":"ASSET15","index":"0.000020548756595198"},{"denom":"ASSET16","index":"0.000012710670192565"},{"denom":"ASSET17","index":"0.000009956402105067"},{"denom":"ASSET18","index":"0.000004127475104327"},{"denom":"ASSET2","index":"0.000008669602227225"},{"denom":"ASSET3","index":"0.000002410895003349"},{"denom":"ASSET4","index":"0.000023222264254358"},{"denom":"ASSET5","index":"0.000001877874241403"},{"denom":"ASSET6","index":"0.000007579654674160"},{"denom":"ASSET7","index":"0.000011900488798179"},{"denom":"ASSET8","index":"0.000016239324105118"},{"denom":"ASSET9","index":"0.000006895771583569"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001546168277317"},{"denom":"ASSET1","index":"0.000012892123182452"},{"denom":"ASSET10","index":"0.000008982377260299"},{"denom":"ASSET11","index":"0.000012472337191477"},{"denom":"ASSET12","index":"0.000011231230783378"},{"denom":"ASSET13","index":"0.000003864117010091"},{"denom":"ASSET14","index":"0.000011651016774353"},{"denom":"ASSET15","index":"0.000008329231976204"},{"denom":"ASSET16","index":"0.000005807908663952"},{"denom":"ASSET17","index":"0.000004124853650448"},{"denom":"ASSET18","index":"0.000001964650585090"},{"denom":"ASSET2","index":"0.000003805451266010"},{"denom":"ASSET3","index":"0.000001113345454324"},{"denom":"ASSET4","index":"0.000010477701892746"},{"denom":"ASSET5","index":"0.000000863038279582"},{"denom":"ASSET6","index":"0.000003516033595214"},{"denom":"ASSET7","index":"0.000005385515306574"},{"denom":"ASSET8","index":"0.000007028156140823"},{"denom":"ASSET9","index":"0.000003034974493755"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003044385892570"},{"denom":"ASSET1","index":"0.000025830014188245"},{"denom":"ASSET10","index":"0.000020607856539150"},{"denom":"ASSET11","index":"0.000025666657138152"},{"denom":"ASSET12","index":"0.000024468008636658"},{"denom":"ASSET13","index":"0.000008060303383676"},{"denom":"ASSET14","index":"0.000023559408638801"},{"denom":"ASSET15","index":"0.000018562848593971"},{"denom":"ASSET16","index":"0.000011459854746185"},{"denom":"ASSET17","index":"0.000008991538648143"},{"denom":"ASSET18","index":"0.000003718456390600"},{"denom":"ASSET2","index":"0.000007821717005664"},{"denom":"ASSET3","index":"0.000002173111618200"},{"denom":"ASSET4","index":"0.000020942104557307"},{"denom":"ASSET5","index":"0.000001691598021351"},{"denom":"ASSET6","index":"0.000006831113312915"},{"denom":"ASSET7","index":"0.000010730587410374"},{"denom":"ASSET8","index":"0.000014654605067850"},{"denom":"ASSET9","index":"0.000006220578615076"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001387821916020"},{"denom":"ASSET1","index":"0.000011588015182905"},{"denom":"ASSET10","index":"0.000008073788013584"},{"denom":"ASSET11","index":"0.000011209789038410"},{"denom":"ASSET12","index":"0.000010095957715252"},{"denom":"ASSET13","index":"0.000003472532948668"},{"denom":"ASSET14","index":"0.000010471205701129"},{"denom":"ASSET15","index":"0.000007487090765824"},{"denom":"ASSET16","index":"0.000005220712057474"},{"denom":"ASSET17","index":"0.000003707807479495"},{"denom":"ASSET18","index":"0.000001766048060515"},{"denom":"ASSET2","index":"0.000003418926093543"},{"denom":"ASSET3","index":"0.000001000661295671"},{"denom":"ASSET4","index":"0.000009416937550333"},{"denom":"ASSET5","index":"0.000000774321240698"},{"denom":"ASSET6","index":"0.000003159826293771"},{"denom":"ASSET7","index":"0.000004839507754361"},{"denom":"ASSET8","index":"0.000006316674428923"},{"denom":"ASSET9","index":"0.000002727993294151"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000002956721491824"},{"denom":"ASSET1","index":"0.000025136116728129"},{"denom":"ASSET10","index":"0.000020247681325291"},{"denom":"ASSET11","index":"0.000025026479369709"},{"denom":"ASSET12","index":"0.000023957412844230"},{"denom":"ASSET13","index":"0.000007866588644670"},{"denom":"ASSET14","index":"0.000022940688787988"},{"denom":"ASSET15","index":"0.000018203641219753"},{"denom":"ASSET16","index":"0.000011138902531601"},{"denom":"ASSET17","index":"0.000008803888891481"},{"denom":"ASSET18","index":"0.000003602115317706"},{"denom":"ASSET2","index":"0.000007623974866010"},{"denom":"ASSET3","index":"0.000002110544057177"},{"denom":"ASSET4","index":"0.000020374365248917"},{"denom":"ASSET5","index":"0.000001641905652861"},{"denom":"ASSET6","index":"0.000006630874494768"},{"denom":"ASSET7","index":"0.000010436528568948"},{"denom":"ASSET8","index":"0.000014302572224422"},{"denom":"ASSET9","index":"0.000006063325997423"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001500850379058"},{"denom":"ASSET1","index":"0.000012511793460183"},{"denom":"ASSET10","index":"0.000008717304800227"},{"denom":"ASSET11","index":"0.000012103632089176"},{"denom":"ASSET12","index":"0.000010899320696303"},{"denom":"ASSET13","index":"0.000003750781099635"},{"denom":"ASSET14","index":"0.000011306809643305"},{"denom":"ASSET15","index":"0.000008083881387560"},{"denom":"ASSET16","index":"0.000005636258009526"},{"denom":"ASSET17","index":"0.000004002940101492"},{"denom":"ASSET18","index":"0.000001906322054045"},{"denom":"ASSET2","index":"0.000003692952635209"},{"denom":"ASSET3","index":"0.000001079912951956"},{"denom":"ASSET4","index":"0.000010167723378913"},{"denom":"ASSET5","index":"0.000000838512734178"},{"denom":"ASSET6","index":"0.000003412551825143"},{"denom":"ASSET7","index":"0.000005226751790509"},{"denom":"ASSET8","index":"0.000006820396682251"},{"denom":"ASSET9","index":"0.000002945889565704"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003004514310835"},{"denom":"ASSET1","index":"0.000025497942224476"},{"denom":"ASSET10","index":"0.000020385999177782"},{"denom":"ASSET11","index":"0.000025346802479017"},{"denom":"ASSET12","index":"0.000024185328023735"},{"denom":"ASSET13","index":"0.000007962788555043"},{"denom":"ASSET14","index":"0.000023259189454501"},{"denom":"ASSET15","index":"0.000018355567065709"},{"denom":"ASSET16","index":"0.000011309092459120"},{"denom":"ASSET17","index":"0.000008887662321727"},{"denom":"ASSET18","index":"0.000003666570499762"},{"denom":"ASSET2","index":"0.000007723995884874"},{"denom":"ASSET3","index":"0.000002143405494402"},{"denom":"ASSET4","index":"0.000020670641097733"},{"denom":"ASSET5","index":"0.000001670336124344"},{"denom":"ASSET6","index":"0.000006739845385808"},{"denom":"ASSET7","index":"0.000010591422556410"},{"denom":"ASSET8","index":"0.000014475095162856"},{"denom":"ASSET9","index":"0.000006143360978771"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001507842106347"},{"denom":"ASSET1","index":"0.000012572313391156"},{"denom":"ASSET10","index":"0.000008759356679472"},{"denom":"ASSET11","index":"0.000012162445176153"},{"denom":"ASSET12","index":"0.000010952151629736"},{"denom":"ASSET13","index":"0.000003769211161813"},{"denom":"ASSET14","index":"0.000011361231636633"},{"denom":"ASSET15","index":"0.000008123272738112"},{"denom":"ASSET16","index":"0.000005663669344042"},{"denom":"ASSET17","index":"0.000004022225963767"},{"denom":"ASSET18","index":"0.000001916133905138"},{"denom":"ASSET2","index":"0.000003711277866039"},{"denom":"ASSET3","index":"0.000001085756665704"},{"denom":"ASSET4","index":"0.000010217147571101"},{"denom":"ASSET5","index":"0.000000842594465073"},{"denom":"ASSET6","index":"0.000003429493468225"},{"denom":"ASSET7","index":"0.000005252224712828"},{"denom":"ASSET8","index":"0.000006853863583762"},{"denom":"ASSET9","index":"0.000002960115541236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003064659144392"},{"denom":"ASSET1","index":"0.000026014545525120"},{"denom":"ASSET10","index":"0.000020837902255895"},{"denom":"ASSET11","index":"0.000025870951889592"},{"denom":"ASSET12","index":"0.000024704995690840"},{"denom":"ASSET13","index":"0.000008129050348807"},{"denom":"ASSET14","index":"0.000023733606076391"},{"denom":"ASSET15","index":"0.000018755969892396"},{"denom":"ASSET16","index":"0.000011535737727926"},{"denom":"ASSET17","index":"0.000009078938038909"},{"denom":"ASSET18","index":"0.000003738223548700"},{"denom":"ASSET2","index":"0.000007883998416280"},{"denom":"ASSET3","index":"0.000002186926046113"},{"denom":"ASSET4","index":"0.000021089316501471"},{"denom":"ASSET5","index":"0.000001703791082418"},{"denom":"ASSET6","index":"0.000006873778950624"},{"denom":"ASSET7","index":"0.000010805665377904"},{"denom":"ASSET8","index":"0.000014777724141198"},{"denom":"ASSET9","index":"0.000006269886019705"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001016570122529"},{"denom":"ASSET1","index":"0.000008477171470527"},{"denom":"ASSET10","index":"0.000005906463519680"},{"denom":"ASSET11","index":"0.000008200989896911"},{"denom":"ASSET12","index":"0.000007384774710599"},{"denom":"ASSET13","index":"0.000002541117067960"},{"denom":"ASSET14","index":"0.000007660956284215"},{"denom":"ASSET15","index":"0.000005477395717812"},{"denom":"ASSET16","index":"0.000003819073322661"},{"denom":"ASSET17","index":"0.000002711881121289"},{"denom":"ASSET18","index":"0.000001291518742692"},{"denom":"ASSET2","index":"0.000002502279034170"},{"denom":"ASSET3","index":"0.000000731757874738"},{"denom":"ASSET4","index":"0.000006889127422234"},{"denom":"ASSET5","index":"0.000000567775065403"},{"denom":"ASSET6","index":"0.000002312404202309"},{"denom":"ASSET7","index":"0.000003541658795591"},{"denom":"ASSET8","index":"0.000004621109544256"},{"denom":"ASSET9","index":"0.000001996151641449"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000002499545170163"},{"denom":"ASSET1","index":"0.000021282413071401"},{"denom":"ASSET10","index":"0.000017412808765385"},{"denom":"ASSET11","index":"0.000021259874812403"},{"denom":"ASSET12","index":"0.000020486111882687"},{"denom":"ASSET13","index":"0.000006694303381301"},{"denom":"ASSET14","index":"0.000019446986985139"},{"denom":"ASSET15","index":"0.000015606004703242"},{"denom":"ASSET16","index":"0.000009412782427040"},{"denom":"ASSET17","index":"0.000007528963649123"},{"denom":"ASSET18","index":"0.000003027066879988"},{"denom":"ASSET2","index":"0.000006477094521478"},{"denom":"ASSET3","index":"0.000001780578331809"},{"denom":"ASSET4","index":"0.000017246051064985"},{"denom":"ASSET5","index":"0.000001387924123500"},{"denom":"ASSET6","index":"0.000005593713918003"},{"denom":"ASSET7","index":"0.000008831780754063"},{"denom":"ASSET8","index":"0.000012169406160300"},{"denom":"ASSET9","index":"0.000005149034362400"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001552339226368"},{"denom":"ASSET1","index":"0.000012948480372324"},{"denom":"ASSET10","index":"0.000009021431734191"},{"denom":"ASSET11","index":"0.000012526515146109"},{"denom":"ASSET12","index":"0.000011279099696349"},{"denom":"ASSET13","index":"0.000003880848065920"},{"denom":"ASSET14","index":"0.000011701064922564"},{"denom":"ASSET15","index":"0.000008365383608761"},{"denom":"ASSET16","index":"0.000005830512213323"},{"denom":"ASSET17","index":"0.000004142651308462"},{"denom":"ASSET18","index":"0.000001971224414436"},{"denom":"ASSET2","index":"0.000003822327341117"},{"denom":"ASSET3","index":"0.000001118053847563"},{"denom":"ASSET4","index":"0.000010521410312050"},{"denom":"ASSET5","index":"0.000000865490719463"},{"denom":"ASSET6","index":"0.000003529723717099"},{"denom":"ASSET7","index":"0.000005408546987108"},{"denom":"ASSET8","index":"0.000007056367396050"},{"denom":"ASSET9","index":"0.000003046157727933"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003043964098015"},{"denom":"ASSET1","index":"0.000025828331615061"},{"denom":"ASSET10","index":"0.000020594675215425"},{"denom":"ASSET11","index":"0.000025661520704142"},{"denom":"ASSET12","index":"0.000024456429429906"},{"denom":"ASSET13","index":"0.000008058244190043"},{"denom":"ASSET14","index":"0.000023555461855486"},{"denom":"ASSET15","index":"0.000018552812657155"},{"denom":"ASSET16","index":"0.000011456604402492"},{"denom":"ASSET17","index":"0.000008987560143691"},{"denom":"ASSET18","index":"0.000003716794339222"},{"denom":"ASSET2","index":"0.000007820148034807"},{"denom":"ASSET3","index":"0.000002173135080244"},{"denom":"ASSET4","index":"0.000020938599170426"},{"denom":"ASSET5","index":"0.000001690207511083"},{"denom":"ASSET6","index":"0.000006829800145738"},{"denom":"ASSET7","index":"0.000010729300481432"},{"denom":"ASSET8","index":"0.000014648719853803"},{"denom":"ASSET9","index":"0.000006217447736766"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000000977108719668"},{"denom":"ASSET1","index":"0.000008146517162771"},{"denom":"ASSET10","index":"0.000005675852121603"},{"denom":"ASSET11","index":"0.000007881108738917"},{"denom":"ASSET12","index":"0.000007096716963958"},{"denom":"ASSET13","index":"0.000002441926549413"},{"denom":"ASSET14","index":"0.000007362125387813"},{"denom":"ASSET15","index":"0.000005263370239944"},{"denom":"ASSET16","index":"0.000003670074447059"},{"denom":"ASSET17","index":"0.000002605905002368"},{"denom":"ASSET18","index":"0.000001241671893765"},{"denom":"ASSET2","index":"0.000002404735560083"},{"denom":"ASSET3","index":"0.000000703247798239"},{"denom":"ASSET4","index":"0.000006620841350486"},{"denom":"ASSET5","index":"0.000000546031343344"},{"denom":"ASSET6","index":"0.000002222161612464"},{"denom":"ASSET7","index":"0.000003402975523689"},{"denom":"ASSET8","index":"0.000004440942225898"},{"denom":"ASSET9","index":"0.000001917871699764"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000002320380931676"},{"denom":"ASSET1","index":"0.000019748951316256"},{"denom":"ASSET10","index":"0.000016101172379351"},{"denom":"ASSET11","index":"0.000019714000020718"},{"denom":"ASSET12","index":"0.000018967805559844"},{"denom":"ASSET13","index":"0.000006204998608741"},{"denom":"ASSET14","index":"0.000018041457784230"},{"denom":"ASSET15","index":"0.000014440911570898"},{"denom":"ASSET16","index":"0.000008738221404310"},{"denom":"ASSET17","index":"0.000006970584758543"},{"denom":"ASSET18","index":"0.000002814127990287"},{"denom":"ASSET2","index":"0.000006006105656449"},{"denom":"ASSET3","index":"0.000001653724297068"},{"denom":"ASSET4","index":"0.000016005284799403"},{"denom":"ASSET5","index":"0.000001288969102308"},{"denom":"ASSET6","index":"0.000005195185892122"},{"denom":"ASSET7","index":"0.000008196101819524"},{"denom":"ASSET8","index":"0.000011280171312915"},{"denom":"ASSET9","index":"0.000004774394171461"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001745798220012"},{"denom":"ASSET1","index":"0.000014553743296829"},{"denom":"ASSET10","index":"0.000010139438249561"},{"denom":"ASSET11","index":"0.000014079320164724"},{"denom":"ASSET12","index":"0.000012678243118663"},{"denom":"ASSET13","index":"0.000004363016060013"},{"denom":"ASSET14","index":"0.000013152173087429"},{"denom":"ASSET15","index":"0.000009403145384454"},{"denom":"ASSET16","index":"0.000006556113428486"},{"denom":"ASSET17","index":"0.000004655955083371"},{"denom":"ASSET18","index":"0.000002217755535422"},{"denom":"ASSET2","index":"0.000004295945845911"},{"denom":"ASSET3","index":"0.000001256580187737"},{"denom":"ASSET4","index":"0.000011827536358912"},{"denom":"ASSET5","index":"0.000000975477084515"},{"denom":"ASSET6","index":"0.000003969964878841"},{"denom":"ASSET7","index":"0.000006080210806364"},{"denom":"ASSET8","index":"0.000007934011797614"},{"denom":"ASSET9","index":"0.000003426498879278"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003342998947188"},{"denom":"ASSET1","index":"0.000028345782457833"},{"denom":"ASSET10","index":"0.000022532322238539"},{"denom":"ASSET11","index":"0.000028144588841629"},{"denom":"ASSET12","index":"0.000026788988923046"},{"denom":"ASSET13","index":"0.000008836278349189"},{"denom":"ASSET14","index":"0.000025846526421467"},{"denom":"ASSET15","index":"0.000020312521464953"},{"denom":"ASSET16","index":"0.000012581099317360"},{"denom":"ASSET17","index":"0.000009844015126225"},{"denom":"ASSET18","index":"0.000004087085525414"},{"denom":"ASSET2","index":"0.000008577030596387"},{"denom":"ASSET3","index":"0.000002386540105172"},{"denom":"ASSET4","index":"0.000022982635628207"},{"denom":"ASSET5","index":"0.000001858980311097"},{"denom":"ASSET6","index":"0.000007503977785171"},{"denom":"ASSET7","index":"0.000011778054778213"},{"denom":"ASSET8","index":"0.000016064148587518"},{"denom":"ASSET9","index":"0.000006822246648031"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001535240763659"},{"denom":"ASSET1","index":"0.000012802535686671"},{"denom":"ASSET10","index":"0.000008918976928097"},{"denom":"ASSET11","index":"0.000012384847277788"},{"denom":"ASSET12","index":"0.000011152366284839"},{"denom":"ASSET13","index":"0.000003838101909148"},{"denom":"ASSET14","index":"0.000011569197017318"},{"denom":"ASSET15","index":"0.000008271431242866"},{"denom":"ASSET16","index":"0.000005767016142371"},{"denom":"ASSET17","index":"0.000004095404830432"},{"denom":"ASSET18","index":"0.000001951213819735"},{"denom":"ASSET2","index":"0.000003778922237253"},{"denom":"ASSET3","index":"0.000001105544885116"},{"denom":"ASSET4","index":"0.000010403614783903"},{"denom":"ASSET5","index":"0.000000857676404279"},{"denom":"ASSET6","index":"0.000003491600641819"},{"denom":"ASSET7","index":"0.000005348470057083"},{"denom":"ASSET8","index":"0.000006978912901618"},{"denom":"ASSET9","index":"0.000003013874884636"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003086246918243"},{"denom":"ASSET1","index":"0.000026194228204796"},{"denom":"ASSET10","index":"0.000020951998769875"},{"denom":"ASSET11","index":"0.000026042273492864"},{"denom":"ASSET12","index":"0.000024853724280460"},{"denom":"ASSET13","index":"0.000008181454895403"},{"denom":"ASSET14","index":"0.000023895275980533"},{"denom":"ASSET15","index":"0.000018864347888264"},{"denom":"ASSET16","index":"0.000011616907749245"},{"denom":"ASSET17","index":"0.000009133094250657"},{"denom":"ASSET18","index":"0.000003766346411006"},{"denom":"ASSET2","index":"0.000007935833032906"},{"denom":"ASSET3","index":"0.000002202232138461"},{"denom":"ASSET4","index":"0.000021234941701767"},{"denom":"ASSET5","index":"0.000001715417631736"},{"denom":"ASSET6","index":"0.000006923101305069"},{"denom":"ASSET7","index":"0.000010881195638563"},{"denom":"ASSET8","index":"0.000014873239564067"},{"denom":"ASSET9","index":"0.000006310901439146"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001694764141112"},{"denom":"ASSET1","index":"0.000014130580032100"},{"denom":"ASSET10","index":"0.000009844524497723"},{"denom":"ASSET11","index":"0.000013669508873851"},{"denom":"ASSET12","index":"0.000012309527666765"},{"denom":"ASSET13","index":"0.000004236016804025"},{"denom":"ASSET14","index":"0.000012769407426673"},{"denom":"ASSET15","index":"0.000009129685492685"},{"denom":"ASSET16","index":"0.000006365641339869"},{"denom":"ASSET17","index":"0.000004520761007698"},{"denom":"ASSET18","index":"0.000002153452502679"},{"denom":"ASSET2","index":"0.000004171085594400"},{"denom":"ASSET3","index":"0.000001219991901933"},{"denom":"ASSET4","index":"0.000011483292916774"},{"denom":"ASSET5","index":"0.000000947161681676"},{"denom":"ASSET6","index":"0.000003854173635500"},{"denom":"ASSET7","index":"0.000005903378783277"},{"denom":"ASSET8","index":"0.000007702985978462"},{"denom":"ASSET9","index":"0.000003326979869284"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003333609736915"},{"denom":"ASSET1","index":"0.000028281729059652"},{"denom":"ASSET10","index":"0.000022560289398652"},{"denom":"ASSET11","index":"0.000028101042421314"},{"denom":"ASSET12","index":"0.000026787599659919"},{"denom":"ASSET13","index":"0.000008826015241086"},{"denom":"ASSET14","index":"0.000025794402991537"},{"denom":"ASSET15","index":"0.000020323143219667"},{"denom":"ASSET16","index":"0.000012547562311789"},{"denom":"ASSET17","index":"0.000009844220733470"},{"denom":"ASSET18","index":"0.000004071528772633"},{"denom":"ASSET2","index":"0.000008563776406339"},{"denom":"ASSET3","index":"0.000002379222276435"},{"denom":"ASSET4","index":"0.000022929058250150"},{"denom":"ASSET5","index":"0.000001853699834530"},{"denom":"ASSET6","index":"0.000007480326246914"},{"denom":"ASSET7","index":"0.000011749530638760"},{"denom":"ASSET8","index":"0.000016044906214881"},{"denom":"ASSET9","index":"0.000006811209452101"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001763265776240"},{"denom":"ASSET1","index":"0.000014701143889842"},{"denom":"ASSET10","index":"0.000010242267715158"},{"denom":"ASSET11","index":"0.000014221824092125"},{"denom":"ASSET12","index":"0.000012807154532407"},{"denom":"ASSET13","index":"0.000004407037513175"},{"denom":"ASSET14","index":"0.000013285723045174"},{"denom":"ASSET15","index":"0.000009498495615253"},{"denom":"ASSET16","index":"0.000006622576828953"},{"denom":"ASSET17","index":"0.000004703043783239"},{"denom":"ASSET18","index":"0.000002240331719108"},{"denom":"ASSET2","index":"0.000004339421867729"},{"denom":"ASSET3","index":"0.000001269671564485"},{"denom":"ASSET4","index":"0.000011947684550294"},{"denom":"ASSET5","index":"0.000000984934568662"},{"denom":"ASSET6","index":"0.000004010359059893"},{"denom":"ASSET7","index":"0.000006141754461338"},{"denom":"ASSET8","index":"0.000008013956555240"},{"denom":"ASSET9","index":"0.000003461169761882"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003372790294110"},{"denom":"ASSET1","index":"0.000028600279733511"},{"denom":"ASSET10","index":"0.000022731421090197"},{"denom":"ASSET11","index":"0.000028396190348540"},{"denom":"ASSET12","index":"0.000027027392524280"},{"denom":"ASSET13","index":"0.000008915082315276"},{"denom":"ASSET14","index":"0.000026078776667620"},{"denom":"ASSET15","index":"0.000020492230414373"},{"denom":"ASSET16","index":"0.000012694274413467"},{"denom":"ASSET17","index":"0.000009931274832025"},{"denom":"ASSET18","index":"0.000004123939856338"},{"denom":"ASSET2","index":"0.000008653658587521"},{"denom":"ASSET3","index":"0.000002407864000528"},{"denom":"ASSET4","index":"0.000023189126720885"},{"denom":"ASSET5","index":"0.000001875419633234"},{"denom":"ASSET6","index":"0.000007571725921487"},{"denom":"ASSET7","index":"0.000011883748947250"},{"denom":"ASSET8","index":"0.000016207221904670"},{"denom":"ASSET9","index":"0.000006883201227023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001453309126336"},{"denom":"ASSET1","index":"0.000012116886392617"},{"denom":"ASSET10","index":"0.000008441923956558"},{"denom":"ASSET11","index":"0.000011721955689254"},{"denom":"ASSET12","index":"0.000010555542874101"},{"denom":"ASSET13","index":"0.000003632376264868"},{"denom":"ASSET14","index":"0.000010950025301978"},{"denom":"ASSET15","index":"0.000007829131366891"},{"denom":"ASSET16","index":"0.000005458650595742"},{"denom":"ASSET17","index":"0.000003876686404859"},{"denom":"ASSET18","index":"0.000001846446727754"},{"denom":"ASSET2","index":"0.000003576790104576"},{"denom":"ASSET3","index":"0.000001046274984845"},{"denom":"ASSET4","index":"0.000009847267605868"},{"denom":"ASSET5","index":"0.000000812275181037"},{"denom":"ASSET6","index":"0.000003305135159925"},{"denom":"ASSET7","index":"0.000005061926790434"},{"denom":"ASSET8","index":"0.000006605339289501"},{"denom":"ASSET9","index":"0.000002852825194325"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000002846126280344"},{"denom":"ASSET1","index":"0.000024142729904188"},{"denom":"ASSET10","index":"0.000019247649074564"},{"denom":"ASSET11","index":"0.000023985879136349"},{"denom":"ASSET12","index":"0.000022859091275790"},{"denom":"ASSET13","index":"0.000007532792628817"},{"denom":"ASSET14","index":"0.000022018595952129"},{"denom":"ASSET15","index":"0.000017341431925331"},{"denom":"ASSET16","index":"0.000010711928951149"},{"denom":"ASSET17","index":"0.000008400535387767"},{"denom":"ASSET18","index":"0.000003476353193421"},{"denom":"ASSET2","index":"0.000007309791035362"},{"denom":"ASSET3","index":"0.000002031285314481"},{"denom":"ASSET4","index":"0.000019573873127075"},{"denom":"ASSET5","index":"0.000001582650339951"},{"denom":"ASSET6","index":"0.000006386635795582"},{"denom":"ASSET7","index":"0.000010030235680714"},{"denom":"ASSET8","index":"0.000013694243666513"},{"denom":"ASSET9","index":"0.000005813799926422"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001542334439671"},{"denom":"ASSET1","index":"0.000012860022908304"},{"denom":"ASSET10","index":"0.000008959505058412"},{"denom":"ASSET11","index":"0.000012440701863130"},{"denom":"ASSET12","index":"0.000011202637482986"},{"denom":"ASSET13","index":"0.000003855293405849"},{"denom":"ASSET14","index":"0.000011621234937056"},{"denom":"ASSET15","index":"0.000008308996655285"},{"denom":"ASSET16","index":"0.000005793070384239"},{"denom":"ASSET17","index":"0.000004114339021332"},{"denom":"ASSET18","index":"0.000001959846507084"},{"denom":"ASSET2","index":"0.000003796320730815"},{"denom":"ASSET3","index":"0.000001110350550164"},{"denom":"ASSET4","index":"0.000010450826325201"},{"denom":"ASSET5","index":"0.000000861797005699"},{"denom":"ASSET6","index":"0.000003507969675592"},{"denom":"ASSET7","index":"0.000005372663952407"},{"denom":"ASSET8","index":"0.000007010512417899"},{"denom":"ASSET9","index":"0.000003027866977623"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003036454064443"},{"denom":"ASSET1","index":"0.000025762443856573"},{"denom":"ASSET10","index":"0.000020552854458451"},{"denom":"ASSET11","index":"0.000025598594042577"},{"denom":"ASSET12","index":"0.000024403233064712"},{"denom":"ASSET13","index":"0.000008040226829205"},{"denom":"ASSET14","index":"0.000023496526683137"},{"denom":"ASSET15","index":"0.000018514610345002"},{"denom":"ASSET16","index":"0.000011429420030088"},{"denom":"ASSET17","index":"0.000008967792958730"},{"denom":"ASSET18","index":"0.000003708688180539"},{"denom":"ASSET2","index":"0.000007801450355100"},{"denom":"ASSET3","index":"0.000002167197324698"},{"denom":"ASSET4","index":"0.000020886439041228"},{"denom":"ASSET5","index":"0.000001688395026424"},{"denom":"ASSET6","index":"0.000006814112030993"},{"denom":"ASSET7","index":"0.000010703097412338"},{"denom":"ASSET8","index":"0.000014616213118562"},{"denom":"ASSET9","index":"0.000006204650488693"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001802604811891"},{"denom":"ASSET1","index":"0.000015041134377282"},{"denom":"ASSET10","index":"0.000010478421042795"},{"denom":"ASSET11","index":"0.000014549893343095"},{"denom":"ASSET12","index":"0.000013101148598203"},{"denom":"ASSET13","index":"0.000004508593559534"},{"denom":"ASSET14","index":"0.000013592389632390"},{"denom":"ASSET15","index":"0.000009716581133843"},{"denom":"ASSET16","index":"0.000006773297988330"},{"denom":"ASSET17","index":"0.000004812496911192"},{"denom":"ASSET18","index":"0.000002289682786467"},{"denom":"ASSET2","index":"0.000004437821546134"},{"denom":"ASSET3","index":"0.000001298874598869"},{"denom":"ASSET4","index":"0.000012222743020122"},{"denom":"ASSET5","index":"0.000001007460426045"},{"denom":"ASSET6","index":"0.000004100613717582"},{"denom":"ASSET7","index":"0.000006282056954143"},{"denom":"ASSET8","index":"0.000008197064375552"},{"denom":"ASSET9","index":"0.000003538600669994"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003500919125422"},{"denom":"ASSET1","index":"0.000029708744113596"},{"denom":"ASSET10","index":"0.000023658219501850"},{"denom":"ASSET11","index":"0.000029508250092955"},{"denom":"ASSET12","index":"0.000028107871580940"},{"denom":"ASSET13","index":"0.000009266072102552"},{"denom":"ASSET14","index":"0.000027092614384257"},{"denom":"ASSET15","index":"0.000021318431245277"},{"denom":"ASSET16","index":"0.000013180724612002"},{"denom":"ASSET17","index":"0.000010330094773179"},{"denom":"ASSET18","index":"0.000004277644880979"},{"denom":"ASSET2","index":"0.000008990842831989"},{"denom":"ASSET3","index":"0.000002500335792843"},{"denom":"ASSET4","index":"0.000024086210482120"},{"denom":"ASSET5","index":"0.000001946754653173"},{"denom":"ASSET6","index":"0.000007858889858659"},{"denom":"ASSET7","index":"0.000012341576470869"},{"denom":"ASSET8","index":"0.000016843078118646"},{"denom":"ASSET9","index":"0.000007150129263591"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001563811170888"},{"denom":"ASSET1","index":"0.000013038374863878"},{"denom":"ASSET10","index":"0.000009083864212622"},{"denom":"ASSET11","index":"0.000012612362006834"},{"denom":"ASSET12","index":"0.000011358137819015"},{"denom":"ASSET13","index":"0.000003908204905926"},{"denom":"ASSET14","index":"0.000011781504633469"},{"denom":"ASSET15","index":"0.000008423676586333"},{"denom":"ASSET16","index":"0.000005872891529250"},{"denom":"ASSET17","index":"0.000004170163122369"},{"denom":"ASSET18","index":"0.000001987177985342"},{"denom":"ASSET2","index":"0.000003848668947643"},{"denom":"ASSET3","index":"0.000001125891122188"},{"denom":"ASSET4","index":"0.000010596077552999"},{"denom":"ASSET5","index":"0.000000873194054811"},{"denom":"ASSET6","index":"0.000003556281241411"},{"denom":"ASSET7","index":"0.000005446878672206"},{"denom":"ASSET8","index":"0.000007107270397641"},{"denom":"ASSET9","index":"0.000003069409404789"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003311345528520"},{"denom":"ASSET1","index":"0.000028134750769747"},{"denom":"ASSET10","index":"0.000022648872120201"},{"denom":"ASSET11","index":"0.000028007957662740"},{"denom":"ASSET12","index":"0.000026803793052874"},{"denom":"ASSET13","index":"0.000008804941803873"},{"denom":"ASSET14","index":"0.000025676450668466"},{"denom":"ASSET15","index":"0.000020365161363483"},{"denom":"ASSET16","index":"0.000012467103206876"},{"denom":"ASSET17","index":"0.000009848512066991"},{"denom":"ASSET18","index":"0.000004032794375330"},{"denom":"ASSET2","index":"0.000008534928074651"},{"denom":"ASSET3","index":"0.000002362590241163"},{"denom":"ASSET4","index":"0.000022806063702805"},{"denom":"ASSET5","index":"0.000001840254083448"},{"denom":"ASSET6","index":"0.000007424521355960"},{"denom":"ASSET7","index":"0.000011683846998076"},{"denom":"ASSET8","index":"0.000016006498096466"},{"denom":"ASSET9","index":"0.000006786333067798"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001600184479142"},{"denom":"ASSET1","index":"0.000013342157474081"},{"denom":"ASSET10","index":"0.000009295060662992"},{"denom":"ASSET11","index":"0.000012907134644369"},{"denom":"ASSET12","index":"0.000011622469236023"},{"denom":"ASSET13","index":"0.000003999732516397"},{"denom":"ASSET14","index":"0.000012056763384279"},{"denom":"ASSET15","index":"0.000008620301633991"},{"denom":"ASSET16","index":"0.000006010164655719"},{"denom":"ASSET17","index":"0.000004268615973958"},{"denom":"ASSET18","index":"0.000002033021264483"},{"denom":"ASSET2","index":"0.000003938523274026"},{"denom":"ASSET3","index":"0.000001152045383207"},{"denom":"ASSET4","index":"0.000010842780077243"},{"denom":"ASSET5","index":"0.000000894092147498"},{"denom":"ASSET6","index":"0.000003639035195279"},{"denom":"ASSET7","index":"0.000005573684463094"},{"denom":"ASSET8","index":"0.000007272969620361"},{"denom":"ASSET9","index":"0.000003141345760282"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003037978324998"},{"denom":"ASSET1","index":"0.000025756345113171"},{"denom":"ASSET10","index":"0.000020449699671521"},{"denom":"ASSET11","index":"0.000025567125107120"},{"denom":"ASSET12","index":"0.000024323299608917"},{"denom":"ASSET13","index":"0.000008026089638757"},{"denom":"ASSET14","index":"0.000023482777870484"},{"denom":"ASSET15","index":"0.000018439819094125"},{"denom":"ASSET16","index":"0.000011433094032389"},{"denom":"ASSET17","index":"0.000008938487942114"},{"denom":"ASSET18","index":"0.000003715472889790"},{"denom":"ASSET2","index":"0.000007791978720736"},{"denom":"ASSET3","index":"0.000002168844641333"},{"denom":"ASSET4","index":"0.000020883291069830"},{"denom":"ASSET5","index":"0.000001689134510364"},{"denom":"ASSET6","index":"0.000006819968009550"},{"denom":"ASSET7","index":"0.000010702337477897"},{"denom":"ASSET8","index":"0.000014590947163921"},{"denom":"ASSET9","index":"0.000006197850437110"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001732863553160"},{"denom":"ASSET1","index":"0.000014476512568697"},{"denom":"ASSET10","index":"0.000010084697727409"},{"denom":"ASSET11","index":"0.000014004946421444"},{"denom":"ASSET12","index":"0.000012607292539223"},{"denom":"ASSET13","index":"0.000004334999642824"},{"denom":"ASSET14","index":"0.000013078858686476"},{"denom":"ASSET15","index":"0.000009351781667220"},{"denom":"ASSET16","index":"0.000006516703263852"},{"denom":"ASSET17","index":"0.000004630438674838"},{"denom":"ASSET18","index":"0.000002204429700414"},{"denom":"ASSET2","index":"0.000004272502924514"},{"denom":"ASSET3","index":"0.000001249934366214"},{"denom":"ASSET4","index":"0.000011760746082105"},{"denom":"ASSET5","index":"0.000000965858373893"},{"denom":"ASSET6","index":"0.000003948656293267"},{"denom":"ASSET7","index":"0.000006045137116599"},{"denom":"ASSET8","index":"0.000007891631066688"},{"denom":"ASSET9","index":"0.000003403230388010"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003203314564743"},{"denom":"ASSET1","index":"0.000027174750089688"},{"denom":"ASSET10","index":"0.000021494761442080"},{"denom":"ASSET11","index":"0.000026954579685264"},{"denom":"ASSET12","index":"0.000025598519259277"},{"denom":"ASSET13","index":"0.000008453363478510"},{"denom":"ASSET14","index":"0.000024766008219885"},{"denom":"ASSET15","index":"0.000019395989679368"},{"denom":"ASSET16","index":"0.000012063312986412"},{"denom":"ASSET17","index":"0.000009406957788586"},{"denom":"ASSET18","index":"0.000003925664786352"},{"denom":"ASSET2","index":"0.000008214094571203"},{"denom":"ASSET3","index":"0.000002289770772075"},{"denom":"ASSET4","index":"0.000022031271429646"},{"denom":"ASSET5","index":"0.000001779377444361"},{"denom":"ASSET6","index":"0.000007202120906665"},{"denom":"ASSET7","index":"0.000011290805949933"},{"denom":"ASSET8","index":"0.000015376618183469"},{"denom":"ASSET9","index":"0.000006529467958809"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001687731873143"},{"denom":"ASSET1","index":"0.000014069560961171"},{"denom":"ASSET10","index":"0.000009802495056563"},{"denom":"ASSET11","index":"0.000013610740912442"},{"denom":"ASSET12","index":"0.000012256373563096"},{"denom":"ASSET13","index":"0.000004217751625940"},{"denom":"ASSET14","index":"0.000012714404583367"},{"denom":"ASSET15","index":"0.000009090791386823"},{"denom":"ASSET16","index":"0.000006338265608675"},{"denom":"ASSET17","index":"0.000004501407356839"},{"denom":"ASSET18","index":"0.000002144184836496"},{"denom":"ASSET2","index":"0.000004153051292327"},{"denom":"ASSET3","index":"0.000001214709312157"},{"denom":"ASSET4","index":"0.000011433811394910"},{"denom":"ASSET5","index":"0.000000942889008137"},{"denom":"ASSET6","index":"0.000003837834423079"},{"denom":"ASSET7","index":"0.000005877867503028"},{"denom":"ASSET8","index":"0.000007669751132718"},{"denom":"ASSET9","index":"0.000003312735983819"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003310751488522"},{"denom":"ASSET1","index":"0.000028084250149300"},{"denom":"ASSET10","index":"0.000022395324527460"},{"denom":"ASSET11","index":"0.000027902986790638"},{"denom":"ASSET12","index":"0.000026594787286768"},{"denom":"ASSET13","index":"0.000008763085936534"},{"denom":"ASSET14","index":"0.000025613920456358"},{"denom":"ASSET15","index":"0.000020176020856033"},{"denom":"ASSET16","index":"0.000012460451689171"},{"denom":"ASSET17","index":"0.000009773335616478"},{"denom":"ASSET18","index":"0.000004043661907525"},{"denom":"ASSET2","index":"0.000008503271494062"},{"denom":"ASSET3","index":"0.000002362859659779"},{"denom":"ASSET4","index":"0.000022769116693783"},{"denom":"ASSET5","index":"0.000001840413908887"},{"denom":"ASSET6","index":"0.000007429033260494"},{"denom":"ASSET7","index":"0.000011667535172652"},{"denom":"ASSET8","index":"0.000015931047386954"},{"denom":"ASSET9","index":"0.000006763232815972"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001411639939639"},{"denom":"ASSET1","index":"0.000011770559134781"},{"denom":"ASSET10","index":"0.000008200405560598"},{"denom":"ASSET11","index":"0.000011386782830640"},{"denom":"ASSET12","index":"0.000010253700018254"},{"denom":"ASSET13","index":"0.000003528795747429"},{"denom":"ASSET14","index":"0.000010636868119061"},{"denom":"ASSET15","index":"0.000007604974496011"},{"denom":"ASSET16","index":"0.000005302316671163"},{"denom":"ASSET17","index":"0.000003765386844594"},{"denom":"ASSET18","index":"0.000001793591633776"},{"denom":"ASSET2","index":"0.000003474665650649"},{"denom":"ASSET3","index":"0.000001016307772140"},{"denom":"ASSET4","index":"0.000009565822046806"},{"denom":"ASSET5","index":"0.000000788839724994"},{"denom":"ASSET6","index":"0.000003210705403426"},{"denom":"ASSET7","index":"0.000004917323960353"},{"denom":"ASSET8","index":"0.000006416545180176"},{"denom":"ASSET9","index":"0.000002771582595835"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000002915106026686"},{"denom":"ASSET1","index":"0.000024751938975568"},{"denom":"ASSET10","index":"0.000019864528416862"},{"denom":"ASSET11","index":"0.000024625253839727"},{"denom":"ASSET12","index":"0.000023534700266806"},{"denom":"ASSET13","index":"0.000007739190454504"},{"denom":"ASSET14","index":"0.000022584902384729"},{"denom":"ASSET15","index":"0.000017872912229645"},{"denom":"ASSET16","index":"0.000010972881933217"},{"denom":"ASSET17","index":"0.000008648586457086"},{"denom":"ASSET18","index":"0.000003552999450219"},{"denom":"ASSET2","index":"0.000007504215303421"},{"denom":"ASSET3","index":"0.000002079538758775"},{"denom":"ASSET4","index":"0.000020065180146540"},{"denom":"ASSET5","index":"0.000001620267199228"},{"denom":"ASSET6","index":"0.000006536798446662"},{"denom":"ASSET7","index":"0.000010280222742310"},{"denom":"ASSET8","index":"0.000014068743113537"},{"denom":"ASSET9","index":"0.000005967789042866"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001670929391506"},{"denom":"ASSET1","index":"0.000013946161101263"},{"denom":"ASSET10","index":"0.000009716355120388"},{"denom":"ASSET11","index":"0.000013489421488305"},{"denom":"ASSET12","index":"0.000012147571569489"},{"denom":"ASSET13","index":"0.000004178741924768"},{"denom":"ASSET14","index":"0.000012601474290441"},{"denom":"ASSET15","index":"0.000009009969010905"},{"denom":"ASSET16","index":"0.000006280878901179"},{"denom":"ASSET17","index":"0.000004459594233357"},{"denom":"ASSET18","index":"0.000002124832112458"},{"denom":"ASSET2","index":"0.000004116330300637"},{"denom":"ASSET3","index":"0.000001202842210524"},{"denom":"ASSET4","index":"0.000011333383563781"},{"denom":"ASSET5","index":"0.000000933337469958"},{"denom":"ASSET6","index":"0.000003804272179982"},{"denom":"ASSET7","index":"0.000005824139288221"},{"denom":"ASSET8","index":"0.000007600033683947"},{"denom":"ASSET9","index":"0.000003282284050887"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003306866574231"},{"denom":"ASSET1","index":"0.000028073670524533"},{"denom":"ASSET10","index":"0.000022410378668975"},{"denom":"ASSET11","index":"0.000027896117796052"},{"denom":"ASSET12","index":"0.000026601615360568"},{"denom":"ASSET13","index":"0.000008760019105133"},{"denom":"ASSET14","index":"0.000025604072816608"},{"denom":"ASSET15","index":"0.000020183975077340"},{"denom":"ASSET16","index":"0.000012452378452775"},{"denom":"ASSET17","index":"0.000009773941069454"},{"denom":"ASSET18","index":"0.000004038323507821"},{"denom":"ASSET2","index":"0.000008501686860316"},{"denom":"ASSET3","index":"0.000002358773872569"},{"denom":"ASSET4","index":"0.000022758821093429"},{"denom":"ASSET5","index":"0.000001837837668790"},{"denom":"ASSET6","index":"0.000007423905647148"},{"denom":"ASSET7","index":"0.000011659308440973"},{"denom":"ASSET8","index":"0.000015926660063085"},{"denom":"ASSET9","index":"0.000006759875068056"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001598361255475"},{"denom":"ASSET1","index":"0.000013324868720531"},{"denom":"ASSET10","index":"0.000009283863630055"},{"denom":"ASSET11","index":"0.000012890721875256"},{"denom":"ASSET12","index":"0.000011607749807828"},{"denom":"ASSET13","index":"0.000003994929715268"},{"denom":"ASSET14","index":"0.000012041896653103"},{"denom":"ASSET15","index":"0.000008609605674538"},{"denom":"ASSET16","index":"0.000006002777756047"},{"denom":"ASSET17","index":"0.000004262945630213"},{"denom":"ASSET18","index":"0.000002030561253910"},{"denom":"ASSET2","index":"0.000003933279565341"},{"denom":"ASSET3","index":"0.000001150586482321"},{"denom":"ASSET4","index":"0.000010829011071909"},{"denom":"ASSET5","index":"0.000000892953750521"},{"denom":"ASSET6","index":"0.000003634763049905"},{"denom":"ASSET7","index":"0.000005566684063932"},{"denom":"ASSET8","index":"0.000007263685559290"},{"denom":"ASSET9","index":"0.000003137668156809"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003119961272076"},{"denom":"ASSET1","index":"0.000026462428012801"},{"denom":"ASSET10","index":"0.000021088828135750"},{"denom":"ASSET11","index":"0.000026288818556387"},{"denom":"ASSET12","index":"0.000025049012446876"},{"denom":"ASSET13","index":"0.000008256026418292"},{"denom":"ASSET14","index":"0.000024133914778951"},{"denom":"ASSET15","index":"0.000019001193386697"},{"denom":"ASSET16","index":"0.000011741691861213"},{"denom":"ASSET17","index":"0.000009205139483526"},{"denom":"ASSET18","index":"0.000003811157018018"},{"denom":"ASSET2","index":"0.000008011229275486"},{"denom":"ASSET3","index":"0.000002226652147557"},{"denom":"ASSET4","index":"0.000021454928269907"},{"denom":"ASSET5","index":"0.000001734689929917"},{"denom":"ASSET6","index":"0.000007001091110949"},{"denom":"ASSET7","index":"0.000010994186615549"},{"denom":"ASSET8","index":"0.000015007966738007"},{"denom":"ASSET9","index":"0.000006372340046203"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001543375593884"},{"denom":"ASSET1","index":"0.000012871309378663"},{"denom":"ASSET10","index":"0.000008967332198598"},{"denom":"ASSET11","index":"0.000012451619524186"},{"denom":"ASSET12","index":"0.000011213472915376"},{"denom":"ASSET13","index":"0.000003858438984711"},{"denom":"ASSET14","index":"0.000011631932007817"},{"denom":"ASSET15","index":"0.000008316259081242"},{"denom":"ASSET16","index":"0.000005798119954378"},{"denom":"ASSET17","index":"0.000004118129774432"},{"denom":"ASSET18","index":"0.000001961834686325"},{"denom":"ASSET2","index":"0.000003799362406955"},{"denom":"ASSET3","index":"0.000001111378119041"},{"denom":"ASSET4","index":"0.000010460246548983"},{"denom":"ASSET5","index":"0.000000862764187650"},{"denom":"ASSET6","index":"0.000003511364090393"},{"denom":"ASSET7","index":"0.000005377199337864"},{"denom":"ASSET8","index":"0.000007016574370602"},{"denom":"ASSET9","index":"0.000003030136134086"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003061984062566"},{"denom":"ASSET1","index":"0.000025984754387841"},{"denom":"ASSET10","index":"0.000020750278468036"},{"denom":"ASSET11","index":"0.000025825260107338"},{"denom":"ASSET12","index":"0.000024630365005548"},{"denom":"ASSET13","index":"0.000008111503841622"},{"denom":"ASSET14","index":"0.000023701848593669"},{"denom":"ASSET15","index":"0.000018689068915475"},{"denom":"ASSET16","index":"0.000011526541772952"},{"denom":"ASSET17","index":"0.000009050861170220"},{"denom":"ASSET18","index":"0.000003739265665267"},{"denom":"ASSET2","index":"0.000007869809789784"},{"denom":"ASSET3","index":"0.000002185113944095"},{"denom":"ASSET4","index":"0.000021066477214749"},{"denom":"ASSET5","index":"0.000001702392649313"},{"denom":"ASSET6","index":"0.000006871251000760"},{"denom":"ASSET7","index":"0.000010794622225013"},{"denom":"ASSET8","index":"0.000014746923085504"},{"denom":"ASSET9","index":"0.000006258895459680"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001745217677213"},{"denom":"ASSET1","index":"0.000014553842410819"},{"denom":"ASSET10","index":"0.000010139729507131"},{"denom":"ASSET11","index":"0.000014078681363843"},{"denom":"ASSET12","index":"0.000012678362515121"},{"denom":"ASSET13","index":"0.000004362304066790"},{"denom":"ASSET14","index":"0.000013152043309614"},{"denom":"ASSET15","index":"0.000009402563770700"},{"denom":"ASSET16","index":"0.000006556038246289"},{"denom":"ASSET17","index":"0.000004655394058383"},{"denom":"ASSET18","index":"0.000002217418219224"},{"denom":"ASSET2","index":"0.000004295692705065"},{"denom":"ASSET3","index":"0.000001256734357891"},{"denom":"ASSET4","index":"0.000011827217337515"},{"denom":"ASSET5","index":"0.000000975486386160"},{"denom":"ASSET6","index":"0.000003970037158850"},{"denom":"ASSET7","index":"0.000006079396946830"},{"denom":"ASSET8","index":"0.000007932673055287"},{"denom":"ASSET9","index":"0.000003426784497665"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003296605577903"},{"denom":"ASSET1","index":"0.000027950980635352"},{"denom":"ASSET10","index":"0.000022177590033485"},{"denom":"ASSET11","index":"0.000027741245317152"},{"denom":"ASSET12","index":"0.000026384837371861"},{"denom":"ASSET13","index":"0.000008707523198290"},{"denom":"ASSET14","index":"0.000025482773879389"},{"denom":"ASSET15","index":"0.000019999205716580"},{"denom":"ASSET16","index":"0.000012408342313410"},{"denom":"ASSET17","index":"0.000009694954350389"},{"denom":"ASSET18","index":"0.000004033447725414"},{"denom":"ASSET2","index":"0.000008454290496983"},{"denom":"ASSET3","index":"0.000002354114882033"},{"denom":"ASSET4","index":"0.000022662624820802"},{"denom":"ASSET5","index":"0.000001833709311257"},{"denom":"ASSET6","index":"0.000007402928859239"},{"denom":"ASSET7","index":"0.000011614131087351"},{"denom":"ASSET8","index":"0.000015829970625061"},{"denom":"ASSET9","index":"0.000006725199056296"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001696105704481"},{"denom":"ASSET1","index":"0.000014140754037071"},{"denom":"ASSET10","index":"0.000009851931515387"},{"denom":"ASSET11","index":"0.000013679695806241"},{"denom":"ASSET12","index":"0.000012318593050331"},{"denom":"ASSET13","index":"0.000004239283286244"},{"denom":"ASSET14","index":"0.000012779160793682"},{"denom":"ASSET15","index":"0.000009136800770120"},{"denom":"ASSET16","index":"0.000006369960897657"},{"denom":"ASSET17","index":"0.000004523766024416"},{"denom":"ASSET18","index":"0.000002155201985393"},{"denom":"ASSET2","index":"0.000004174048451456"},{"denom":"ASSET3","index":"0.000001220823336742"},{"denom":"ASSET4","index":"0.000011492121647193"},{"denom":"ASSET5","index":"0.000000947621810601"},{"denom":"ASSET6","index":"0.000003857193539630"},{"denom":"ASSET7","index":"0.000005907431204387"},{"denom":"ASSET8","index":"0.000007708991716984"},{"denom":"ASSET9","index":"0.000003329429011573"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003278023650839"},{"denom":"ASSET1","index":"0.000027801084973989"},{"denom":"ASSET10","index":"0.000022126343818190"},{"denom":"ASSET11","index":"0.000027610641458424"},{"denom":"ASSET12","index":"0.000026294522151225"},{"denom":"ASSET13","index":"0.000008669795972838"},{"denom":"ASSET14","index":"0.000025352034708572"},{"denom":"ASSET15","index":"0.000019941753748345"},{"denom":"ASSET16","index":"0.000012337408081897"},{"denom":"ASSET17","index":"0.000009662232510971"},{"denom":"ASSET18","index":"0.000004006663612522"},{"denom":"ASSET2","index":"0.000008414274009770"},{"denom":"ASSET3","index":"0.000002339697370568"},{"denom":"ASSET4","index":"0.000022540556466857"},{"denom":"ASSET5","index":"0.000001822656991491"},{"denom":"ASSET6","index":"0.000007357334263189"},{"denom":"ASSET7","index":"0.000011551068960203"},{"denom":"ASSET8","index":"0.000015761386047857"},{"denom":"ASSET9","index":"0.000006692834331509"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001139195115521"},{"denom":"ASSET1","index":"0.000009496890331931"},{"denom":"ASSET10","index":"0.000006616523219856"},{"denom":"ASSET11","index":"0.000009187371854639"},{"denom":"ASSET12","index":"0.000008273091178185"},{"denom":"ASSET13","index":"0.000002846943294505"},{"denom":"ASSET14","index":"0.000008582261490710"},{"denom":"ASSET15","index":"0.000006136055842283"},{"denom":"ASSET16","index":"0.000004278248649000"},{"denom":"ASSET17","index":"0.000003038433916001"},{"denom":"ASSET18","index":"0.000001447320933748"},{"denom":"ASSET2","index":"0.000002803422698710"},{"denom":"ASSET3","index":"0.000000819928024772"},{"denom":"ASSET4","index":"0.000007718116540611"},{"denom":"ASSET5","index":"0.000000636445192901"},{"denom":"ASSET6","index":"0.000002590694026466"},{"denom":"ASSET7","index":"0.000003967685677409"},{"denom":"ASSET8","index":"0.000005177210075735"},{"denom":"ASSET9","index":"0.000002236262294314"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000002735257365218"},{"denom":"ASSET1","index":"0.000023278157661741"},{"denom":"ASSET10","index":"0.000018999615823078"},{"denom":"ASSET11","index":"0.000023241706683585"},{"denom":"ASSET12","index":"0.000022372793234045"},{"denom":"ASSET13","index":"0.000007316911351959"},{"denom":"ASSET14","index":"0.000021266506066871"},{"denom":"ASSET15","index":"0.000017036720297506"},{"denom":"ASSET16","index":"0.000010298479660409"},{"denom":"ASSET17","index":"0.000008222611745720"},{"denom":"ASSET18","index":"0.000003315370510511"},{"denom":"ASSET2","index":"0.000007081336162231"},{"denom":"ASSET3","index":"0.000001948923871674"},{"denom":"ASSET4","index":"0.000018864412124408"},{"denom":"ASSET5","index":"0.000001519377842401"},{"denom":"ASSET6","index":"0.000006121992555640"},{"denom":"ASSET7","index":"0.000009661272655042"},{"denom":"ASSET8","index":"0.000013300968175029"},{"denom":"ASSET9","index":"0.000005629514833023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001583959364947"},{"denom":"ASSET1","index":"0.000013443347430705"},{"denom":"ASSET10","index":"0.000009381913161610"},{"denom":"ASSET11","index":"0.000012996589661105"},{"denom":"ASSET12","index":"0.000011696930694994"},{"denom":"ASSET13","index":"0.000004020819926404"},{"denom":"ASSET14","index":"0.000012143688464595"},{"denom":"ASSET15","index":"0.000008691469335864"},{"denom":"ASSET16","index":"0.000006051537060952"},{"denom":"ASSET17","index":"0.000004305120325241"},{"denom":"ASSET18","index":"0.000002030717134548"},{"denom":"ASSET2","index":"0.000003939591241022"},{"denom":"ASSET3","index":"0.000001137201595347"},{"denom":"ASSET4","index":"0.000010925258183866"},{"denom":"ASSET5","index":"0.000000893515539201"},{"denom":"ASSET6","index":"0.000003655290842186"},{"denom":"ASSET7","index":"0.000005604779291351"},{"denom":"ASSET8","index":"0.000007310581684371"},{"denom":"ASSET9","index":"0.000003167918729894"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003310378542013"},{"denom":"ASSET1","index":"0.000028352771206955"},{"denom":"ASSET10","index":"0.000022778987578468"},{"denom":"ASSET11","index":"0.000028201706998458"},{"denom":"ASSET12","index":"0.000026949790221900"},{"denom":"ASSET13","index":"0.000008856641706946"},{"denom":"ASSET14","index":"0.000025865717784540"},{"denom":"ASSET15","index":"0.000020483790155485"},{"denom":"ASSET16","index":"0.000012564495758376"},{"denom":"ASSET17","index":"0.000009912517491786"},{"denom":"ASSET18","index":"0.000004051289802086"},{"denom":"ASSET2","index":"0.000008567503486413"},{"denom":"ASSET3","index":"0.000002358477605528"},{"denom":"ASSET4","index":"0.000022984011222606"},{"denom":"ASSET5","index":"0.000001848359330263"},{"denom":"ASSET6","index":"0.000007474666006436"},{"denom":"ASSET7","index":"0.000011763521743703"},{"denom":"ASSET8","index":"0.000016098224703406"},{"denom":"ASSET9","index":"0.000006837907042961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001549911588522"},{"denom":"ASSET1","index":"0.000012922257740418"},{"denom":"ASSET10","index":"0.000009003081854783"},{"denom":"ASSET11","index":"0.000012500946332712"},{"denom":"ASSET12","index":"0.000011256607989023"},{"denom":"ASSET13","index":"0.000003873860414458"},{"denom":"ASSET14","index":"0.000011677307025497"},{"denom":"ASSET15","index":"0.000008349069378868"},{"denom":"ASSET16","index":"0.000005821200932633"},{"denom":"ASSET17","index":"0.000004134118188113"},{"denom":"ASSET18","index":"0.000001969385882532"},{"denom":"ASSET2","index":"0.000003814460404941"},{"denom":"ASSET3","index":"0.000001115740384942"},{"denom":"ASSET4","index":"0.000010501554259806"},{"denom":"ASSET5","index":"0.000000865892922233"},{"denom":"ASSET6","index":"0.000003524808812143"},{"denom":"ASSET7","index":"0.000005398664782463"},{"denom":"ASSET8","index":"0.000007044106283197"},{"denom":"ASSET9","index":"0.000003042260281224"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003086330633608"},{"denom":"ASSET1","index":"0.000026187842720704"},{"denom":"ASSET10","index":"0.000020922921087024"},{"denom":"ASSET11","index":"0.000026029396638226"},{"denom":"ASSET12","index":"0.000024828709288325"},{"denom":"ASSET13","index":"0.000008176601230700"},{"denom":"ASSET14","index":"0.000023887113573615"},{"denom":"ASSET15","index":"0.000018841856891118"},{"denom":"ASSET16","index":"0.000011616230118922"},{"denom":"ASSET17","index":"0.000009124242236202"},{"denom":"ASSET18","index":"0.000003767471049721"},{"denom":"ASSET2","index":"0.000007932284099147"},{"denom":"ASSET3","index":"0.000002202458257762"},{"denom":"ASSET4","index":"0.000021230824628511"},{"denom":"ASSET5","index":"0.000001715648257347"},{"denom":"ASSET6","index":"0.000006923830152599"},{"denom":"ASSET7","index":"0.000010879262909104"},{"denom":"ASSET8","index":"0.000014863870027497"},{"denom":"ASSET9","index":"0.000006308409915314"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001535524830156"},{"denom":"ASSET1","index":"0.000012804491333161"},{"denom":"ASSET10","index":"0.000008921035499248"},{"denom":"ASSET11","index":"0.000012386713938596"},{"denom":"ASSET12","index":"0.000011154325740380"},{"denom":"ASSET13","index":"0.000003838812075390"},{"denom":"ASSET14","index":"0.000011571000819920"},{"denom":"ASSET15","index":"0.000008272874264409"},{"denom":"ASSET16","index":"0.000005767863369556"},{"denom":"ASSET17","index":"0.000004096202633783"},{"denom":"ASSET18","index":"0.000001951097594671"},{"denom":"ASSET2","index":"0.000003779838221540"},{"denom":"ASSET3","index":"0.000001105621970313"},{"denom":"ASSET4","index":"0.000010405853838244"},{"denom":"ASSET5","index":"0.000000858152247148"},{"denom":"ASSET6","index":"0.000003492685157466"},{"denom":"ASSET7","index":"0.000005348983659966"},{"denom":"ASSET8","index":"0.000006980409897318"},{"denom":"ASSET9","index":"0.000003014831594025"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003051773960929"},{"denom":"ASSET1","index":"0.000025898629359040"},{"denom":"ASSET10","index":"0.000020686863907037"},{"denom":"ASSET11","index":"0.000025740096441319"},{"denom":"ASSET12","index":"0.000024551000542772"},{"denom":"ASSET13","index":"0.000008085532012369"},{"denom":"ASSET14","index":"0.000023622558405526"},{"denom":"ASSET15","index":"0.000018629920308839"},{"denom":"ASSET16","index":"0.000011487540137638"},{"denom":"ASSET17","index":"0.000009021847693812"},{"denom":"ASSET18","index":"0.000003725572559942"},{"denom":"ASSET2","index":"0.000007844221178735"},{"denom":"ASSET3","index":"0.000002178252359768"},{"denom":"ASSET4","index":"0.000020996168979716"},{"denom":"ASSET5","index":"0.000001697004218389"},{"denom":"ASSET6","index":"0.000006847583721256"},{"denom":"ASSET7","index":"0.000010758483833946"},{"denom":"ASSET8","index":"0.000014699172267780"},{"denom":"ASSET9","index":"0.000006238834616461"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001813824295534"},{"denom":"ASSET1","index":"0.000015126179984122"},{"denom":"ASSET10","index":"0.000010538420488017"},{"denom":"ASSET11","index":"0.000014633035948465"},{"denom":"ASSET12","index":"0.000013177247733614"},{"denom":"ASSET13","index":"0.000004534560738834"},{"denom":"ASSET14","index":"0.000013669547344553"},{"denom":"ASSET15","index":"0.000009773371692973"},{"denom":"ASSET16","index":"0.000006813663054312"},{"denom":"ASSET17","index":"0.000004839398062246"},{"denom":"ASSET18","index":"0.000002305279481754"},{"denom":"ASSET2","index":"0.000004465317911910"},{"denom":"ASSET3","index":"0.000001306325039660"},{"denom":"ASSET4","index":"0.000012293135053249"},{"denom":"ASSET5","index":"0.000001013309662309"},{"denom":"ASSET6","index":"0.000004125859175036"},{"denom":"ASSET7","index":"0.000006318830169217"},{"denom":"ASSET8","index":"0.000008245807377042"},{"denom":"ASSET9","index":"0.000003561783463017"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003452880861936"},{"denom":"ASSET1","index":"0.000029278299049117"},{"denom":"ASSET10","index":"0.000023254773922096"},{"denom":"ASSET11","index":"0.000029065569213605"},{"denom":"ASSET12","index":"0.000027656204711461"},{"denom":"ASSET13","index":"0.000009124518140406"},{"denom":"ASSET14","index":"0.000026695142606829"},{"denom":"ASSET15","index":"0.000020967476611979"},{"denom":"ASSET16","index":"0.000012995878924798"},{"denom":"ASSET17","index":"0.000010163149632422"},{"denom":"ASSET18","index":"0.000004223627093961"},{"denom":"ASSET2","index":"0.000008858348919255"},{"denom":"ASSET3","index":"0.000002465420318230"},{"denom":"ASSET4","index":"0.000023739200929128"},{"denom":"ASSET5","index":"0.000001919695214447"},{"denom":"ASSET6","index":"0.000007752150153146"},{"denom":"ASSET7","index":"0.000012165597276913"},{"denom":"ASSET8","index":"0.000016587849042771"},{"denom":"ASSET9","index":"0.000007046182609545"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001444852701297"},{"denom":"ASSET1","index":"0.000012048934466992"},{"denom":"ASSET10","index":"0.000008394653008080"},{"denom":"ASSET11","index":"0.000011656844181701"},{"denom":"ASSET12","index":"0.000010496256937239"},{"denom":"ASSET13","index":"0.000003612131753243"},{"denom":"ASSET14","index":"0.000010888347222530"},{"denom":"ASSET15","index":"0.000007784952614452"},{"denom":"ASSET16","index":"0.000005427509774140"},{"denom":"ASSET17","index":"0.000003854247504410"},{"denom":"ASSET18","index":"0.000001835962760875"},{"denom":"ASSET2","index":"0.000003556258887589"},{"denom":"ASSET3","index":"0.000001040019481734"},{"denom":"ASSET4","index":"0.000009792454875142"},{"denom":"ASSET5","index":"0.000000807705987699"},{"denom":"ASSET6","index":"0.000003286696816452"},{"denom":"ASSET7","index":"0.000005033459037423"},{"denom":"ASSET8","index":"0.000006568492504337"},{"denom":"ASSET9","index":"0.000002836773214080"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000002868026198866"},{"denom":"ASSET1","index":"0.000024339331661302"},{"denom":"ASSET10","index":"0.000019438063504597"},{"denom":"ASSET11","index":"0.000024190729344646"},{"denom":"ASSET12","index":"0.000023070632234294"},{"denom":"ASSET13","index":"0.000007598221307181"},{"denom":"ASSET14","index":"0.000022200415230506"},{"denom":"ASSET15","index":"0.000017506414948675"},{"denom":"ASSET16","index":"0.000010796282691537"},{"denom":"ASSET17","index":"0.000008477235924619"},{"denom":"ASSET18","index":"0.000003501529899130"},{"denom":"ASSET2","index":"0.000007371086117521"},{"denom":"ASSET3","index":"0.000002046801194740"},{"denom":"ASSET4","index":"0.000019732782799148"},{"denom":"ASSET5","index":"0.000001595074946946"},{"denom":"ASSET6","index":"0.000006435625489467"},{"denom":"ASSET7","index":"0.000010111140720407"},{"denom":"ASSET8","index":"0.000013813490690156"},{"denom":"ASSET9","index":"0.000005862589992841"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001655416114862"},{"denom":"ASSET1","index":"0.000013800538848519"},{"denom":"ASSET10","index":"0.000009615249134678"},{"denom":"ASSET11","index":"0.000013350879623065"},{"denom":"ASSET12","index":"0.000012022439267096"},{"denom":"ASSET13","index":"0.000004137189147657"},{"denom":"ASSET14","index":"0.000012471558036751"},{"denom":"ASSET15","index":"0.000008916980241305"},{"denom":"ASSET16","index":"0.000006216863065381"},{"denom":"ASSET17","index":"0.000004414983428766"},{"denom":"ASSET18","index":"0.000002102913517117"},{"denom":"ASSET2","index":"0.000004073955819077"},{"denom":"ASSET3","index":"0.000001191705038613"},{"denom":"ASSET4","index":"0.000011215538757958"},{"denom":"ASSET5","index":"0.000000924719873500"},{"denom":"ASSET6","index":"0.000003764274645778"},{"denom":"ASSET7","index":"0.000005765582472528"},{"denom":"ASSET8","index":"0.000007523144733557"},{"denom":"ASSET9","index":"0.000003249220268545"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003262792429801"},{"denom":"ASSET1","index":"0.000027679878715890"},{"denom":"ASSET10","index":"0.000022086570261210"},{"denom":"ASSET11","index":"0.000027505267384149"},{"denom":"ASSET12","index":"0.000026222420015979"},{"denom":"ASSET13","index":"0.000008638975204347"},{"denom":"ASSET14","index":"0.000025246236428505"},{"denom":"ASSET15","index":"0.000019895354512471"},{"denom":"ASSET16","index":"0.000012279836462442"},{"denom":"ASSET17","index":"0.000009636125515167"},{"denom":"ASSET18","index":"0.000003984145752232"},{"denom":"ASSET2","index":"0.000008382344169353"},{"denom":"ASSET3","index":"0.000002328549799735"},{"denom":"ASSET4","index":"0.000022441247538096"},{"denom":"ASSET5","index":"0.000001813932132265"},{"denom":"ASSET6","index":"0.000007320527694069"},{"denom":"ASSET7","index":"0.000011499571173317"},{"denom":"ASSET8","index":"0.000015704553099640"},{"denom":"ASSET9","index":"0.000006666608399750"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001676736923170"},{"denom":"ASSET1","index":"0.000013985463602132"},{"denom":"ASSET10","index":"0.000009743339709608"},{"denom":"ASSET11","index":"0.000013528824721587"},{"denom":"ASSET12","index":"0.000012182509640070"},{"denom":"ASSET13","index":"0.000004192868462713"},{"denom":"ASSET14","index":"0.000012638122365828"},{"denom":"ASSET15","index":"0.000009036319060854"},{"denom":"ASSET16","index":"0.000006299564241947"},{"denom":"ASSET17","index":"0.000004474034874554"},{"denom":"ASSET18","index":"0.000002131323494140"},{"denom":"ASSET2","index":"0.000004128220711085"},{"denom":"ASSET3","index":"0.000001207784185172"},{"denom":"ASSET4","index":"0.000011365690429028"},{"denom":"ASSET5","index":"0.000000936879321208"},{"denom":"ASSET6","index":"0.000003814217346036"},{"denom":"ASSET7","index":"0.000005841899206614"},{"denom":"ASSET8","index":"0.000007623303918134"},{"denom":"ASSET9","index":"0.000003292930713863"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003296156578493"},{"denom":"ASSET1","index":"0.000027968412540894"},{"denom":"ASSET10","index":"0.000022307812536905"},{"denom":"ASSET11","index":"0.000027788867279184"},{"denom":"ASSET12","index":"0.000026488589695468"},{"denom":"ASSET13","index":"0.000008728285856057"},{"denom":"ASSET14","index":"0.000025508064125070"},{"denom":"ASSET15","index":"0.000020096610749334"},{"denom":"ASSET16","index":"0.000012407784704791"},{"denom":"ASSET17","index":"0.000009734180928237"},{"denom":"ASSET18","index":"0.000004026678592252"},{"denom":"ASSET2","index":"0.000008468774984810"},{"denom":"ASSET3","index":"0.000002353220293961"},{"denom":"ASSET4","index":"0.000022675279511256"},{"denom":"ASSET5","index":"0.000001832728492238"},{"denom":"ASSET6","index":"0.000007397034942132"},{"denom":"ASSET7","index":"0.000011618881320506"},{"denom":"ASSET8","index":"0.000015866042832442"},{"denom":"ASSET9","index":"0.000006735898552490"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001687654189845"},{"denom":"ASSET1","index":"0.000014079752531439"},{"denom":"ASSET10","index":"0.000009809029374167"},{"denom":"ASSET11","index":"0.000013620990639222"},{"denom":"ASSET12","index":"0.000012264971552184"},{"denom":"ASSET13","index":"0.000004220977891851"},{"denom":"ASSET14","index":"0.000012723733444402"},{"denom":"ASSET15","index":"0.000009097856320367"},{"denom":"ASSET16","index":"0.000006341600132585"},{"denom":"ASSET17","index":"0.000004504710146476"},{"denom":"ASSET18","index":"0.000002144573664825"},{"denom":"ASSET2","index":"0.000004156493288528"},{"denom":"ASSET3","index":"0.000001215995376963"},{"denom":"ASSET4","index":"0.000011441411046878"},{"denom":"ASSET5","index":"0.000000943317625765"},{"denom":"ASSET6","index":"0.000003839597523622"},{"denom":"ASSET7","index":"0.000005880995823129"},{"denom":"ASSET8","index":"0.000007675510212768"},{"denom":"ASSET9","index":"0.000003314508610843"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003237925740153"},{"denom":"ASSET1","index":"0.000027468087048908"},{"denom":"ASSET10","index":"0.000021838560142362"},{"denom":"ASSET11","index":"0.000027274223261348"},{"denom":"ASSET12","index":"0.000025962125103579"},{"denom":"ASSET13","index":"0.000008562973508850"},{"denom":"ASSET14","index":"0.000025046299162567"},{"denom":"ASSET15","index":"0.000019687604125947"},{"denom":"ASSET16","index":"0.000012189946370622"},{"denom":"ASSET17","index":"0.000009540519193028"},{"denom":"ASSET18","index":"0.000003959057055270"},{"denom":"ASSET2","index":"0.000008312511220651"},{"denom":"ASSET3","index":"0.000002312646079660"},{"denom":"ASSET4","index":"0.000022269978905361"},{"denom":"ASSET5","index":"0.000001800462011039"},{"denom":"ASSET6","index":"0.000007270233858279"},{"denom":"ASSET7","index":"0.000011411601588483"},{"denom":"ASSET8","index":"0.000015567552190875"},{"denom":"ASSET9","index":"0.000006610637099613"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001700269946448"},{"denom":"ASSET1","index":"0.000014175647296985"},{"denom":"ASSET10","index":"0.000009876508679424"},{"denom":"ASSET11","index":"0.000013714231996791"},{"denom":"ASSET12","index":"0.000012349169664489"},{"denom":"ASSET13","index":"0.000004249665204630"},{"denom":"ASSET14","index":"0.000012810584964683"},{"denom":"ASSET15","index":"0.000009159649022667"},{"denom":"ASSET16","index":"0.000006386108914062"},{"denom":"ASSET17","index":"0.000004535399405845"},{"denom":"ASSET18","index":"0.000002160675585153"},{"denom":"ASSET2","index":"0.000004184037207885"},{"denom":"ASSET3","index":"0.000001223709723928"},{"denom":"ASSET4","index":"0.000011520237582522"},{"denom":"ASSET5","index":"0.000000950091460574"},{"denom":"ASSET6","index":"0.000003867003500531"},{"denom":"ASSET7","index":"0.000005922674290891"},{"denom":"ASSET8","index":"0.000007727949032131"},{"denom":"ASSET9","index":"0.000003337940880615"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003224934301433"},{"denom":"ASSET1","index":"0.000027341438894536"},{"denom":"ASSET10","index":"0.000021706571274337"},{"denom":"ASSET11","index":"0.000027141091242061"},{"denom":"ASSET12","index":"0.000025819235056226"},{"denom":"ASSET13","index":"0.000008520116782966"},{"denom":"ASSET14","index":"0.000024928444433519"},{"denom":"ASSET15","index":"0.000019573794936329"},{"denom":"ASSET16","index":"0.000012137286393349"},{"denom":"ASSET17","index":"0.000009487995483061"},{"denom":"ASSET18","index":"0.000003945309126507"},{"denom":"ASSET2","index":"0.000008271045740629"},{"denom":"ASSET3","index":"0.000002302032616683"},{"denom":"ASSET4","index":"0.000022168721917699"},{"denom":"ASSET5","index":"0.000001793343624246"},{"denom":"ASSET6","index":"0.000007240378309003"},{"denom":"ASSET7","index":"0.000011361888746536"},{"denom":"ASSET8","index":"0.000015488944629697"},{"denom":"ASSET9","index":"0.000006579500326985"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001505652349479"},{"denom":"ASSET1","index":"0.000012557843622987"},{"denom":"ASSET10","index":"0.000008748308836028"},{"denom":"ASSET11","index":"0.000012147743761261"},{"denom":"ASSET12","index":"0.000010939413811534"},{"denom":"ASSET13","index":"0.000003764130873697"},{"denom":"ASSET14","index":"0.000011348049030896"},{"denom":"ASSET15","index":"0.000008114118692716"},{"denom":"ASSET16","index":"0.000005656448807088"},{"denom":"ASSET17","index":"0.000004017514002549"},{"denom":"ASSET18","index":"0.000001912822926478"},{"denom":"ASSET2","index":"0.000003707009821528"},{"denom":"ASSET3","index":"0.000001083835348847"},{"denom":"ASSET4","index":"0.000010205627987517"},{"denom":"ASSET5","index":"0.000000840704716538"},{"denom":"ASSET6","index":"0.000003424333845410"},{"denom":"ASSET7","index":"0.000005246348945363"},{"denom":"ASSET8","index":"0.000006845738406093"},{"denom":"ASSET9","index":"0.000002955648289152"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000002959758868257"},{"denom":"ASSET1","index":"0.000025116229265451"},{"denom":"ASSET10","index":"0.000020033024535037"},{"denom":"ASSET11","index":"0.000024955202637112"},{"denom":"ASSET12","index":"0.000023787913163340"},{"denom":"ASSET13","index":"0.000007837044315100"},{"denom":"ASSET14","index":"0.000022906603767748"},{"denom":"ASSET15","index":"0.000018047329062837"},{"denom":"ASSET16","index":"0.000011142428291313"},{"denom":"ASSET17","index":"0.000008741414303940"},{"denom":"ASSET18","index":"0.000003614587489816"},{"denom":"ASSET2","index":"0.000007605147442913"},{"denom":"ASSET3","index":"0.000002112677625393"},{"denom":"ASSET4","index":"0.000020363145786569"},{"denom":"ASSET5","index":"0.000001645239564154"},{"denom":"ASSET6","index":"0.000006641765641459"},{"denom":"ASSET7","index":"0.000010434431181702"},{"denom":"ASSET8","index":"0.000014248591155217"},{"denom":"ASSET9","index":"0.000006047835874095"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001815877519749"},{"denom":"ASSET1","index":"0.000015137138459046"},{"denom":"ASSET10","index":"0.000010545739718907"},{"denom":"ASSET11","index":"0.000014644907422941"},{"denom":"ASSET12","index":"0.000013186828093302"},{"denom":"ASSET13","index":"0.000004537625601742"},{"denom":"ASSET14","index":"0.000013679059129408"},{"denom":"ASSET15","index":"0.000009780506595550"},{"denom":"ASSET16","index":"0.000006818847588397"},{"denom":"ASSET17","index":"0.000004841650653454"},{"denom":"ASSET18","index":"0.000002306040358223"},{"denom":"ASSET2","index":"0.000004467306882298"},{"denom":"ASSET3","index":"0.000001307100902598"},{"denom":"ASSET4","index":"0.000012301639507366"},{"denom":"ASSET5","index":"0.000001013416839040"},{"denom":"ASSET6","index":"0.000004128122470864"},{"denom":"ASSET7","index":"0.000006324548354661"},{"denom":"ASSET8","index":"0.000008252108546467"},{"denom":"ASSET9","index":"0.000003563504517685"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003468946703322"},{"denom":"ASSET1","index":"0.000029412495408176"},{"denom":"ASSET10","index":"0.000023372734593498"},{"denom":"ASSET11","index":"0.000029203218600002"},{"denom":"ASSET12","index":"0.000027792166579196"},{"denom":"ASSET13","index":"0.000009167641990636"},{"denom":"ASSET14","index":"0.000026818252104650"},{"denom":"ASSET15","index":"0.000021072198152383"},{"denom":"ASSET16","index":"0.000013054905852031"},{"denom":"ASSET17","index":"0.000010211457984650"},{"denom":"ASSET18","index":"0.000004240878207320"},{"denom":"ASSET2","index":"0.000008898543974195"},{"denom":"ASSET3","index":"0.000002476460623897"},{"denom":"ASSET4","index":"0.000023847831794350"},{"denom":"ASSET5","index":"0.000001927880642719"},{"denom":"ASSET6","index":"0.000007785977685579"},{"denom":"ASSET7","index":"0.000012222326144679"},{"denom":"ASSET8","index":"0.000016667230515151"},{"denom":"ASSET9","index":"0.000007078301868557"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001541968050995"},{"denom":"ASSET1","index":"0.000012857487907975"},{"denom":"ASSET10","index":"0.000008957704485900"},{"denom":"ASSET11","index":"0.000012438763825161"},{"denom":"ASSET12","index":"0.000011200869215257"},{"denom":"ASSET13","index":"0.000003854089325736"},{"denom":"ASSET14","index":"0.000011619593298070"},{"denom":"ASSET15","index":"0.000008307186714386"},{"denom":"ASSET16","index":"0.000005792349812251"},{"denom":"ASSET17","index":"0.000004113299472240"},{"denom":"ASSET18","index":"0.000001959030530305"},{"denom":"ASSET2","index":"0.000003795102401372"},{"denom":"ASSET3","index":"0.000001109951140156"},{"denom":"ASSET4","index":"0.000010448993630046"},{"denom":"ASSET5","index":"0.000000861541416423"},{"denom":"ASSET6","index":"0.000003506814193562"},{"denom":"ASSET7","index":"0.000005371133324183"},{"denom":"ASSET8","index":"0.000007009474378365"},{"denom":"ASSET9","index":"0.000003027441582881"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003053196756625"},{"denom":"ASSET1","index":"0.000025905581999278"},{"denom":"ASSET10","index":"0.000020682143152818"},{"denom":"ASSET11","index":"0.000025745380902198"},{"denom":"ASSET12","index":"0.000024550499550641"},{"denom":"ASSET13","index":"0.000008086239198545"},{"denom":"ASSET14","index":"0.000023629161089906"},{"denom":"ASSET15","index":"0.000018628151539367"},{"denom":"ASSET16","index":"0.000011492271696690"},{"denom":"ASSET17","index":"0.000009021688715966"},{"denom":"ASSET18","index":"0.000003727673632537"},{"denom":"ASSET2","index":"0.000007845443656426"},{"denom":"ASSET3","index":"0.000002178852781858"},{"denom":"ASSET4","index":"0.000021002318737231"},{"denom":"ASSET5","index":"0.000001697417622442"},{"denom":"ASSET6","index":"0.000006850319017638"},{"denom":"ASSET7","index":"0.000010761758840612"},{"denom":"ASSET8","index":"0.000014701087498525"},{"denom":"ASSET9","index":"0.000006240132889304"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001327266579501"},{"denom":"ASSET1","index":"0.000011071143497688"},{"denom":"ASSET10","index":"0.000007713614824674"},{"denom":"ASSET11","index":"0.000010710668391289"},{"denom":"ASSET12","index":"0.000009644435509525"},{"denom":"ASSET13","index":"0.000003318857014090"},{"denom":"ASSET14","index":"0.000010004910615924"},{"denom":"ASSET15","index":"0.000007152875770275"},{"denom":"ASSET16","index":"0.000004987262870528"},{"denom":"ASSET17","index":"0.000003541219052903"},{"denom":"ASSET18","index":"0.000001686360555224"},{"denom":"ASSET2","index":"0.000003267755179083"},{"denom":"ASSET3","index":"0.000000955742427695"},{"denom":"ASSET4","index":"0.000008998066353223"},{"denom":"ASSET5","index":"0.000000741667172936"},{"denom":"ASSET6","index":"0.000003019151657428"},{"denom":"ASSET7","index":"0.000004625406633453"},{"denom":"ASSET8","index":"0.000006035541053505"},{"denom":"ASSET9","index":"0.000002606193585346"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000002827520151011"},{"denom":"ASSET1","index":"0.000024027878888002"},{"denom":"ASSET10","index":"0.000019355847170480"},{"denom":"ASSET11","index":"0.000023924401086085"},{"denom":"ASSET12","index":"0.000022900407365256"},{"denom":"ASSET13","index":"0.000007521399074311"},{"denom":"ASSET14","index":"0.000021930603354990"},{"denom":"ASSET15","index":"0.000017401215805238"},{"denom":"ASSET16","index":"0.000010647310435771"},{"denom":"ASSET17","index":"0.000008415007538097"},{"denom":"ASSET18","index":"0.000003442593620109"},{"denom":"ASSET2","index":"0.000007289635767836"},{"denom":"ASSET3","index":"0.000002016810506595"},{"denom":"ASSET4","index":"0.000019477449509443"},{"denom":"ASSET5","index":"0.000001571692130579"},{"denom":"ASSET6","index":"0.000006339251488002"},{"denom":"ASSET7","index":"0.000009978075244424"},{"denom":"ASSET8","index":"0.000013673195599374"},{"denom":"ASSET9","index":"0.000005796522499795"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001571435631869"},{"denom":"ASSET1","index":"0.000013104175099655"},{"denom":"ASSET10","index":"0.000009129715488355"},{"denom":"ASSET11","index":"0.000012677036600848"},{"denom":"ASSET12","index":"0.000011415350365342"},{"denom":"ASSET13","index":"0.000003928095848150"},{"denom":"ASSET14","index":"0.000011841502401104"},{"denom":"ASSET15","index":"0.000008466812321615"},{"denom":"ASSET16","index":"0.000005902994865728"},{"denom":"ASSET17","index":"0.000004192467944409"},{"denom":"ASSET18","index":"0.000001996601204585"},{"denom":"ASSET2","index":"0.000003867921602360"},{"denom":"ASSET3","index":"0.000001131473113468"},{"denom":"ASSET4","index":"0.000010648868578800"},{"denom":"ASSET5","index":"0.000000877952110712"},{"denom":"ASSET6","index":"0.000003573955614728"},{"denom":"ASSET7","index":"0.000005473883440830"},{"denom":"ASSET8","index":"0.000007142978914228"},{"denom":"ASSET9","index":"0.000003084669944040"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003141123056438"},{"denom":"ASSET1","index":"0.000026662100889972"},{"denom":"ASSET10","index":"0.000021312054987248"},{"denom":"ASSET11","index":"0.000026503481745319"},{"denom":"ASSET12","index":"0.000025286293002787"},{"denom":"ASSET13","index":"0.000008324908472884"},{"denom":"ASSET14","index":"0.000024319980387721"},{"denom":"ASSET15","index":"0.000019190708128374"},{"denom":"ASSET16","index":"0.000011824997422058"},{"denom":"ASSET17","index":"0.000009292034078872"},{"denom":"ASSET18","index":"0.000003834040785154"},{"denom":"ASSET2","index":"0.000008076003481032"},{"denom":"ASSET3","index":"0.000002241608843356"},{"denom":"ASSET4","index":"0.000021614431804298"},{"denom":"ASSET5","index":"0.000001746420421862"},{"denom":"ASSET6","index":"0.000007047828859327"},{"denom":"ASSET7","index":"0.000011075197168484"},{"denom":"ASSET8","index":"0.000015134882092008"},{"denom":"ASSET9","index":"0.000006422749115253"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[{"denom":"ASSET0","index":"0.000001554974273829"},{"denom":"ASSET1","index":"0.000012964145980643"},{"denom":"ASSET10","index":"0.000009032293690170"},{"denom":"ASSET11","index":"0.000012541598623624"},{"denom":"ASSET12","index":"0.000011293609918011"},{"denom":"ASSET13","index":"0.000003886649549954"},{"denom":"ASSET14","index":"0.000011715371140412"},{"denom":"ASSET15","index":"0.000008376264351692"},{"denom":"ASSET16","index":"0.000005840194074962"},{"denom":"ASSET17","index":"0.000004147646243034"},{"denom":"ASSET18","index":"0.000001975556294303"},{"denom":"ASSET2","index":"0.000003826903319009"},{"denom":"ASSET3","index":"0.000001119455695618"},{"denom":"ASSET4","index":"0.000010535776146539"},{"denom":"ASSET5","index":"0.000000869071819878"},{"denom":"ASSET6","index":"0.000003536426577765"},{"denom":"ASSET7","index":"0.000005416074448708"},{"denom":"ASSET8","index":"0.000007067350213206"},{"denom":"ASSET9","index":"0.000003052560720565"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[{"denom":"ASSET0","index":"0.000003054120352223"},{"denom":"ASSET1","index":"0.000025909289170716"},{"denom":"ASSET10","index":"0.000020664041936079"},{"denom":"ASSET11","index":"0.000025743066158465"},{"denom":"ASSET12","index":"0.000024537849095602"},{"denom":"ASSET13","index":"0.000008085297309351"},{"denom":"ASSET14","index":"0.000023630023251940"},{"denom":"ASSET15","index":"0.000018615490114349"},{"denom":"ASSET16","index":"0.000011495216270003"},{"denom":"ASSET17","index":"0.000009017197770141"},{"denom":"ASSET18","index":"0.000003730110182262"},{"denom":"ASSET2","index":"0.000007845299155388"},{"denom":"ASSET3","index":"0.000002179886924088"},{"denom":"ASSET4","index":"0.000021005968780047"},{"denom":"ASSET5","index":"0.000001698230665763"},{"denom":"ASSET6","index":"0.000006853367473041"},{"denom":"ASSET7","index":"0.000010764057351149"},{"denom":"ASSET8","index":"0.000014698116791571"},{"denom":"ASSET9","index":"0.000006239964640655"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055557140642686126","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556797692297863","reward_histories":[]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET11","snapshot":{"prev_reward_weight":"0.055556454744026609","reward_histories":[]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001587610635106"},{"denom":"ASSET1","index":"0.000013244938725362"},{"denom":"ASSET10","index":"0.000009227311812032"},{"denom":"ASSET11","index":"0.000012812935831455"},{"denom":"ASSET12","index":"0.000011538527294432"},{"denom":"ASSET13","index":"0.000003970376596809"},{"denom":"ASSET14","index":"0.000011969180179294"},{"denom":"ASSET15","index":"0.000008557707326477"},{"denom":"ASSET16","index":"0.000005967039972082"},{"denom":"ASSET17","index":"0.000004237678387413"},{"denom":"ASSET18","index":"0.000002018263519969"},{"denom":"ASSET2","index":"0.000003909626189853"},{"denom":"ASSET3","index":"0.000001143457659809"},{"denom":"ASSET4","index":"0.000010763622103487"},{"denom":"ASSET5","index":"0.000000886955941552"},{"denom":"ASSET6","index":"0.000003612624200292"},{"denom":"ASSET7","index":"0.000005533687069132"},{"denom":"ASSET8","index":"0.000007219848364411"},{"denom":"ASSET9","index":"0.000003118520890387"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003152887181228"},{"denom":"ASSET1","index":"0.000026760532918289"},{"denom":"ASSET10","index":"0.000021371603424459"},{"denom":"ASSET11","index":"0.000026596151859305"},{"denom":"ASSET12","index":"0.000025366346961436"},{"denom":"ASSET13","index":"0.000008353980761099"},{"denom":"ASSET14","index":"0.000024408754798213"},{"denom":"ASSET15","index":"0.000019248058608344"},{"denom":"ASSET16","index":"0.000011870971278696"},{"denom":"ASSET17","index":"0.000009321801721671"},{"denom":"ASSET18","index":"0.000003850124607081"},{"denom":"ASSET2","index":"0.000008105134387478"},{"denom":"ASSET3","index":"0.000002250596051831"},{"denom":"ASSET4","index":"0.000021694971342643"},{"denom":"ASSET5","index":"0.000001752750611640"},{"denom":"ASSET6","index":"0.000007075802880646"},{"denom":"ASSET7","index":"0.000011117440314842"},{"denom":"ASSET8","index":"0.000015186957305377"},{"denom":"ASSET9","index":"0.000006446159830056"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001450981944084"},{"denom":"ASSET1","index":"0.000012097851501865"},{"denom":"ASSET10","index":"0.000008428524260541"},{"denom":"ASSET11","index":"0.000011703479004578"},{"denom":"ASSET12","index":"0.000010538773481717"},{"denom":"ASSET13","index":"0.000003626563958485"},{"denom":"ASSET14","index":"0.000010932552044520"},{"denom":"ASSET15","index":"0.000007816771742159"},{"denom":"ASSET16","index":"0.000005449942823954"},{"denom":"ASSET17","index":"0.000003870671031354"},{"denom":"ASSET18","index":"0.000001843572637920"},{"denom":"ASSET2","index":"0.000003571328051486"},{"denom":"ASSET3","index":"0.000001044730757120"},{"denom":"ASSET4","index":"0.000009831991445917"},{"denom":"ASSET5","index":"0.000000810720570477"},{"denom":"ASSET6","index":"0.000003299899992359"},{"denom":"ASSET7","index":"0.000005054382457699"},{"denom":"ASSET8","index":"0.000006595048508847"},{"denom":"ASSET9","index":"0.000002848509784621"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000002831039632868"},{"denom":"ASSET1","index":"0.000024014703977493"},{"denom":"ASSET10","index":"0.000019136467933987"},{"denom":"ASSET11","index":"0.000023856136612857"},{"denom":"ASSET12","index":"0.000022731094165303"},{"denom":"ASSET13","index":"0.000007491812146677"},{"denom":"ASSET14","index":"0.000021900750691559"},{"denom":"ASSET15","index":"0.000017242457090593"},{"denom":"ASSET16","index":"0.000010655585625623"},{"denom":"ASSET17","index":"0.000008353141870908"},{"denom":"ASSET18","index":"0.000003458892129556"},{"denom":"ASSET2","index":"0.000007270317321266"},{"denom":"ASSET3","index":"0.000002020551075646"},{"denom":"ASSET4","index":"0.000019470118745656"},{"denom":"ASSET5","index":"0.000001574098937698"},{"denom":"ASSET6","index":"0.000006353413461243"},{"denom":"ASSET7","index":"0.000009977493764026"},{"denom":"ASSET8","index":"0.000013619759476676"},{"denom":"ASSET9","index":"0.000005782490697784"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001596167964962"},{"denom":"ASSET1","index":"0.000013307648687747"},{"denom":"ASSET10","index":"0.000009271254138767"},{"denom":"ASSET11","index":"0.000012873344596610"},{"denom":"ASSET12","index":"0.000011592750107942"},{"denom":"ASSET13","index":"0.000003989527201016"},{"denom":"ASSET14","index":"0.000012025715131995"},{"denom":"ASSET15","index":"0.000008598149750858"},{"denom":"ASSET16","index":"0.000005994556982506"},{"denom":"ASSET17","index":"0.000004257340617956"},{"denom":"ASSET18","index":"0.000002028240277625"},{"denom":"ASSET2","index":"0.000003928376470814"},{"denom":"ASSET3","index":"0.000001148919558672"},{"denom":"ASSET4","index":"0.000010814752131731"},{"denom":"ASSET5","index":"0.000000891818678410"},{"denom":"ASSET6","index":"0.000003630210866621"},{"denom":"ASSET7","index":"0.000005559360179979"},{"denom":"ASSET8","index":"0.000007254619109209"},{"denom":"ASSET9","index":"0.000003133416978198"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003160678210357"},{"denom":"ASSET1","index":"0.000026816731621709"},{"denom":"ASSET10","index":"0.000021409695697867"},{"denom":"ASSET11","index":"0.000026650151208928"},{"denom":"ASSET12","index":"0.000025413985003091"},{"denom":"ASSET13","index":"0.000008371194471357"},{"denom":"ASSET14","index":"0.000024459575922385"},{"denom":"ASSET15","index":"0.000019283728762326"},{"denom":"ASSET16","index":"0.000011895729224726"},{"denom":"ASSET17","index":"0.000009339186085895"},{"denom":"ASSET18","index":"0.000003859320220004"},{"denom":"ASSET2","index":"0.000008121656282140"},{"denom":"ASSET3","index":"0.000002255587694637"},{"denom":"ASSET4","index":"0.000021740936259308"},{"denom":"ASSET5","index":"0.000001757304707579"},{"denom":"ASSET6","index":"0.000007091577992612"},{"denom":"ASSET7","index":"0.000011140302591406"},{"denom":"ASSET8","index":"0.000015217956063596"},{"denom":"ASSET9","index":"0.000006459479788296"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001539653287763"},{"denom":"ASSET1","index":"0.000012837628062054"},{"denom":"ASSET10","index":"0.000008944076712630"},{"denom":"ASSET11","index":"0.000012418678362380"},{"denom":"ASSET12","index":"0.000011182855597091"},{"denom":"ASSET13","index":"0.000003848344731893"},{"denom":"ASSET14","index":"0.000011600753980079"},{"denom":"ASSET15","index":"0.000008294363000211"},{"denom":"ASSET16","index":"0.000005782767435536"},{"denom":"ASSET17","index":"0.000004106968636837"},{"denom":"ASSET18","index":"0.000001956500354065"},{"denom":"ASSET2","index":"0.000003789470997435"},{"denom":"ASSET3","index":"0.000001108613446191"},{"denom":"ASSET4","index":"0.000010432741141086"},{"denom":"ASSET5","index":"0.000000860502708115"},{"denom":"ASSET6","index":"0.000003501935883605"},{"denom":"ASSET7","index":"0.000005362766419174"},{"denom":"ASSET8","index":"0.000006998089525433"},{"denom":"ASSET9","index":"0.000003022535474442"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003102081054533"},{"denom":"ASSET1","index":"0.000026328097047411"},{"denom":"ASSET10","index":"0.000021065731925672"},{"denom":"ASSET11","index":"0.000026176422512857"},{"denom":"ASSET12","index":"0.000024984864029023"},{"denom":"ASSET13","index":"0.000008223750690350"},{"denom":"ASSET14","index":"0.000024017391771060"},{"denom":"ASSET15","index":"0.000018965095888316"},{"denom":"ASSET16","index":"0.000011675661088751"},{"denom":"ASSET17","index":"0.000009181817821335"},{"denom":"ASSET18","index":"0.000003784851704842"},{"denom":"ASSET2","index":"0.000007977007181168"},{"denom":"ASSET3","index":"0.000002213531006169"},{"denom":"ASSET4","index":"0.000021343717572048"},{"denom":"ASSET5","index":"0.000001724500934679"},{"denom":"ASSET6","index":"0.000006958604580417"},{"denom":"ASSET7","index":"0.000010936011139136"},{"denom":"ASSET8","index":"0.000014950117004491"},{"denom":"ASSET9","index":"0.000006344046059941"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001722784092424"},{"denom":"ASSET1","index":"0.000014376047839207"},{"denom":"ASSET10","index":"0.000010014727915911"},{"denom":"ASSET11","index":"0.000013905627425621"},{"denom":"ASSET12","index":"0.000012523636788373"},{"denom":"ASSET13","index":"0.000004309050988454"},{"denom":"ASSET14","index":"0.000012989875687172"},{"denom":"ASSET15","index":"0.000009287144342897"},{"denom":"ASSET16","index":"0.000006475075648346"},{"denom":"ASSET17","index":"0.000004597575508787"},{"denom":"ASSET18","index":"0.000002191113748617"},{"denom":"ASSET2","index":"0.000004242146751855"},{"denom":"ASSET3","index":"0.000001239819134475"},{"denom":"ASSET4","index":"0.000011683152316098"},{"denom":"ASSET5","index":"0.000000961748401110"},{"denom":"ASSET6","index":"0.000003920170113222"},{"denom":"ASSET7","index":"0.000006004655234759"},{"denom":"ASSET8","index":"0.000007836158711656"},{"denom":"ASSET9","index":"0.000003384936220430"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003308323901116"},{"denom":"ASSET1","index":"0.000028066718381779"},{"denom":"ASSET10","index":"0.000022316311421496"},{"denom":"ASSET11","index":"0.000027867424204892"},{"denom":"ASSET12","index":"0.000026530665881565"},{"denom":"ASSET13","index":"0.000008749579510737"},{"denom":"ASSET14","index":"0.000025590688346390"},{"denom":"ASSET15","index":"0.000020116135001180"},{"denom":"ASSET16","index":"0.000012455644018572"},{"denom":"ASSET17","index":"0.000009747635771928"},{"denom":"ASSET18","index":"0.000004046709206696"},{"denom":"ASSET2","index":"0.000008491843085820"},{"denom":"ASSET3","index":"0.000002361259343526"},{"denom":"ASSET4","index":"0.000022756236881458"},{"denom":"ASSET5","index":"0.000001838827056256"},{"denom":"ASSET6","index":"0.000007428217086977"},{"denom":"ASSET7","index":"0.000011660835649526"},{"denom":"ASSET8","index":"0.000015906513514404"},{"denom":"ASSET9","index":"0.000006755948018281"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001677980890787"},{"denom":"ASSET1","index":"0.000013990275877081"},{"denom":"ASSET10","index":"0.000009746835585844"},{"denom":"ASSET11","index":"0.000013534047272362"},{"denom":"ASSET12","index":"0.000012187401487418"},{"denom":"ASSET13","index":"0.000004194217559326"},{"denom":"ASSET14","index":"0.000012642160756856"},{"denom":"ASSET15","index":"0.000009039350648091"},{"denom":"ASSET16","index":"0.000006301979019776"},{"denom":"ASSET17","index":"0.000004475595265619"},{"denom":"ASSET18","index":"0.000002132005492585"},{"denom":"ASSET2","index":"0.000004129566806967"},{"denom":"ASSET3","index":"0.000001207793600899"},{"denom":"ASSET4","index":"0.000011368981735957"},{"denom":"ASSET5","index":"0.000000937435909214"},{"denom":"ASSET6","index":"0.000003815863724495"},{"denom":"ASSET7","index":"0.000005844281079776"},{"denom":"ASSET8","index":"0.000007626584775507"},{"denom":"ASSET9","index":"0.000003293515032135"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003299297789724"},{"denom":"ASSET1","index":"0.000027989603079017"},{"denom":"ASSET10","index":"0.000022326156077139"},{"denom":"ASSET11","index":"0.000027810817552502"},{"denom":"ASSET12","index":"0.000026510364756940"},{"denom":"ASSET13","index":"0.000008734817330461"},{"denom":"ASSET14","index":"0.000025527438517331"},{"denom":"ASSET15","index":"0.000020112836713905"},{"denom":"ASSET16","index":"0.000012417417558556"},{"denom":"ASSET17","index":"0.000009741881197111"},{"denom":"ASSET18","index":"0.000004029624902086"},{"denom":"ASSET2","index":"0.000008475129511821"},{"denom":"ASSET3","index":"0.000002354634361983"},{"denom":"ASSET4","index":"0.000022691681830907"},{"denom":"ASSET5","index":"0.000001834207215432"},{"denom":"ASSET6","index":"0.000007402948949368"},{"denom":"ASSET7","index":"0.000011627814435586"},{"denom":"ASSET8","index":"0.000015878876786083"},{"denom":"ASSET9","index":"0.000006740310437402"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001570026110869"},{"denom":"ASSET1","index":"0.000013093495665706"},{"denom":"ASSET10","index":"0.000009121814411369"},{"denom":"ASSET11","index":"0.000012665871768525"},{"denom":"ASSET12","index":"0.000011405375746022"},{"denom":"ASSET13","index":"0.000003924443730811"},{"denom":"ASSET14","index":"0.000011831756550478"},{"denom":"ASSET15","index":"0.000008459245989284"},{"denom":"ASSET16","index":"0.000005898474977098"},{"denom":"ASSET17","index":"0.000004187979388376"},{"denom":"ASSET18","index":"0.000001995163822601"},{"denom":"ASSET2","index":"0.000003864775280042"},{"denom":"ASSET3","index":"0.000001129971286445"},{"denom":"ASSET4","index":"0.000010639630627815"},{"denom":"ASSET5","index":"0.000000877623463400"},{"denom":"ASSET6","index":"0.000003571405397092"},{"denom":"ASSET7","index":"0.000005469607987193"},{"denom":"ASSET8","index":"0.000007137838423287"},{"denom":"ASSET9","index":"0.000003082869956418"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003142586597057"},{"denom":"ASSET1","index":"0.000026671940208455"},{"denom":"ASSET10","index":"0.000021322845581004"},{"denom":"ASSET11","index":"0.000026513185667064"},{"denom":"ASSET12","index":"0.000025297681895631"},{"denom":"ASSET13","index":"0.000008328263582513"},{"denom":"ASSET14","index":"0.000024329302916923"},{"denom":"ASSET15","index":"0.000019199384187435"},{"denom":"ASSET16","index":"0.000011829863063918"},{"denom":"ASSET17","index":"0.000009295955073087"},{"denom":"ASSET18","index":"0.000003835509513951"},{"denom":"ASSET2","index":"0.000008079410847125"},{"denom":"ASSET3","index":"0.000002242309830967"},{"denom":"ASSET4","index":"0.000021622076491366"},{"denom":"ASSET5","index":"0.000001747112267207"},{"denom":"ASSET6","index":"0.000007050444762949"},{"denom":"ASSET7","index":"0.000011079003337441"},{"denom":"ASSET8","index":"0.000015142122511204"},{"denom":"ASSET9","index":"0.000006425848418438"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001808467589320"},{"denom":"ASSET1","index":"0.000015078627759778"},{"denom":"ASSET10","index":"0.000010504031371633"},{"denom":"ASSET11","index":"0.000014586692317421"},{"denom":"ASSET12","index":"0.000013135079536696"},{"denom":"ASSET13","index":"0.000004520160908868"},{"denom":"ASSET14","index":"0.000013624998850191"},{"denom":"ASSET15","index":"0.000009741934661752"},{"denom":"ASSET16","index":"0.000006792338136474"},{"denom":"ASSET17","index":"0.000004822580238185"},{"denom":"ASSET18","index":"0.000002296370773952"},{"denom":"ASSET2","index":"0.000004449596398694"},{"denom":"ASSET3","index":"0.000001300403116066"},{"denom":"ASSET4","index":"0.000012254031223951"},{"denom":"ASSET5","index":"0.000001010080559921"},{"denom":"ASSET6","index":"0.000004112902878720"},{"denom":"ASSET7","index":"0.000006298386565256"},{"denom":"ASSET8","index":"0.000008219757370854"},{"denom":"ASSET9","index":"0.000003550402926189"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003309574221953"},{"denom":"ASSET1","index":"0.000028041386020893"},{"denom":"ASSET10","index":"0.000022151472675705"},{"denom":"ASSET11","index":"0.000027806413413432"},{"denom":"ASSET12","index":"0.000026397319662942"},{"denom":"ASSET13","index":"0.000008723998941637"},{"denom":"ASSET14","index":"0.000025556208464743"},{"denom":"ASSET15","index":"0.000019995491235522"},{"denom":"ASSET16","index":"0.000012454763771642"},{"denom":"ASSET17","index":"0.000009698403814011"},{"denom":"ASSET18","index":"0.000004053515914738"},{"denom":"ASSET2","index":"0.000008473190716338"},{"denom":"ASSET3","index":"0.000002361530218445"},{"denom":"ASSET4","index":"0.000022738669483779"},{"denom":"ASSET5","index":"0.000001840125976242"},{"denom":"ASSET6","index":"0.000007434008870747"},{"denom":"ASSET7","index":"0.000011653935721338"},{"denom":"ASSET8","index":"0.000015861166565423"},{"denom":"ASSET9","index":"0.000006742103174023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001541663174382"},{"denom":"ASSET1","index":"0.000012852134347969"},{"denom":"ASSET10","index":"0.000008953505358908"},{"denom":"ASSET11","index":"0.000012432624080325"},{"denom":"ASSET12","index":"0.000011194846435509"},{"denom":"ASSET13","index":"0.000003852675567517"},{"denom":"ASSET14","index":"0.000011614356703153"},{"denom":"ASSET15","index":"0.000008302745615107"},{"denom":"ASSET16","index":"0.000005788648746115"},{"denom":"ASSET17","index":"0.000004110607675539"},{"denom":"ASSET18","index":"0.000001958208705152"},{"denom":"ASSET2","index":"0.000003793380830041"},{"denom":"ASSET3","index":"0.000001108811590805"},{"denom":"ASSET4","index":"0.000010443285637998"},{"denom":"ASSET5","index":"0.000000861256061842"},{"denom":"ASSET6","index":"0.000003505801353281"},{"denom":"ASSET7","index":"0.000005369138478471"},{"denom":"ASSET8","index":"0.000007005673232815"},{"denom":"ASSET9","index":"0.000003025513979724"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003039218640043"},{"denom":"ASSET1","index":"0.000025782167100542"},{"denom":"ASSET10","index":"0.000020571830356487"},{"denom":"ASSET11","index":"0.000025618833387376"},{"denom":"ASSET12","index":"0.000024423552320522"},{"denom":"ASSET13","index":"0.000008046369560384"},{"denom":"ASSET14","index":"0.000023515194162679"},{"denom":"ASSET15","index":"0.000018530055863607"},{"denom":"ASSET16","index":"0.000011436803083329"},{"denom":"ASSET17","index":"0.000008974370950503"},{"denom":"ASSET18","index":"0.000003710743638587"},{"denom":"ASSET2","index":"0.000007806913274081"},{"denom":"ASSET3","index":"0.000002167934051431"},{"denom":"ASSET4","index":"0.000020901035076857"},{"denom":"ASSET5","index":"0.000001689640060433"},{"denom":"ASSET6","index":"0.000006819038075969"},{"denom":"ASSET7","index":"0.000010710838619674"},{"denom":"ASSET8","index":"0.000014627524271874"},{"denom":"ASSET9","index":"0.000006209166066794"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001647112085871"},{"denom":"ASSET1","index":"0.000013744257107488"},{"denom":"ASSET10","index":"0.000009576415679235"},{"denom":"ASSET11","index":"0.000013296650962579"},{"denom":"ASSET12","index":"0.000011973464376313"},{"denom":"ASSET13","index":"0.000004120724991946"},{"denom":"ASSET14","index":"0.000012421070521222"},{"denom":"ASSET15","index":"0.000008879485058873"},{"denom":"ASSET16","index":"0.000006191885004573"},{"denom":"ASSET17","index":"0.000004397534055245"},{"denom":"ASSET18","index":"0.000002094718230780"},{"denom":"ASSET2","index":"0.000004055939892025"},{"denom":"ASSET3","index":"0.000001185763647039"},{"denom":"ASSET4","index":"0.000011170521774262"},{"denom":"ASSET5","index":"0.000000920733692817"},{"denom":"ASSET6","index":"0.000003749683056035"},{"denom":"ASSET7","index":"0.000005742315674818"},{"denom":"ASSET8","index":"0.000007491513372686"},{"denom":"ASSET9","index":"0.000003235328626359"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003240628198198"},{"denom":"ASSET1","index":"0.000027504329283847"},{"denom":"ASSET10","index":"0.000021940320319100"},{"denom":"ASSET11","index":"0.000027329345632586"},{"denom":"ASSET12","index":"0.000026051323397008"},{"denom":"ASSET13","index":"0.000008583813762496"},{"denom":"ASSET14","index":"0.000025085743554439"},{"denom":"ASSET15","index":"0.000019763439018939"},{"denom":"ASSET16","index":"0.000012202670980955"},{"denom":"ASSET17","index":"0.000009573761377605"},{"denom":"ASSET18","index":"0.000003959875003044"},{"denom":"ASSET2","index":"0.000008327243811102"},{"denom":"ASSET3","index":"0.000002312908746824"},{"denom":"ASSET4","index":"0.000022299606884078"},{"denom":"ASSET5","index":"0.000001802093087045"},{"denom":"ASSET6","index":"0.000007275447910852"},{"denom":"ASSET7","index":"0.000011427132859276"},{"denom":"ASSET8","index":"0.000015602768933976"},{"denom":"ASSET9","index":"0.000006623309483786"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001570100817458"},{"denom":"ASSET1","index":"0.000013089401919768"},{"denom":"ASSET10","index":"0.000009119446705996"},{"denom":"ASSET11","index":"0.000012662761138201"},{"denom":"ASSET12","index":"0.000011403229713207"},{"denom":"ASSET13","index":"0.000003924467777503"},{"denom":"ASSET14","index":"0.000011828301962489"},{"denom":"ASSET15","index":"0.000008457526081653"},{"denom":"ASSET16","index":"0.000005896112859965"},{"denom":"ASSET17","index":"0.000004187981201412"},{"denom":"ASSET18","index":"0.000001993604534455"},{"denom":"ASSET2","index":"0.000003863295018381"},{"denom":"ASSET3","index":"0.000001129343245325"},{"denom":"ASSET4","index":"0.000010637785958043"},{"denom":"ASSET5","index":"0.000000876809547412"},{"denom":"ASSET6","index":"0.000003569979481054"},{"denom":"ASSET7","index":"0.000005467903546113"},{"denom":"ASSET8","index":"0.000007135253365252"},{"denom":"ASSET9","index":"0.000003082165940365"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003152920186871"},{"denom":"ASSET1","index":"0.000026760622644749"},{"denom":"ASSET10","index":"0.000021403995558307"},{"denom":"ASSET11","index":"0.000026604821287493"},{"denom":"ASSET12","index":"0.000025390105019040"},{"denom":"ASSET13","index":"0.000008358570294936"},{"denom":"ASSET14","index":"0.000024411618525071"},{"denom":"ASSET15","index":"0.000019270968708391"},{"denom":"ASSET16","index":"0.000011868219590271"},{"denom":"ASSET17","index":"0.000009330682788205"},{"denom":"ASSET18","index":"0.000003846613833157"},{"denom":"ASSET2","index":"0.000008107095494272"},{"denom":"ASSET3","index":"0.000002249072663818"},{"denom":"ASSET4","index":"0.000021694789218154"},{"denom":"ASSET5","index":"0.000001752328837510"},{"denom":"ASSET6","index":"0.000007072706136469"},{"denom":"ASSET7","index":"0.000011115912260277"},{"denom":"ASSET8","index":"0.000015194187602297"},{"denom":"ASSET9","index":"0.000006447849146068"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001655272585709"},{"denom":"ASSET1","index":"0.000013804891217292"},{"denom":"ASSET10","index":"0.000009617831976915"},{"denom":"ASSET11","index":"0.000013354722791997"},{"denom":"ASSET12","index":"0.000012025575872058"},{"denom":"ASSET13","index":"0.000004138592201887"},{"denom":"ASSET14","index":"0.000012474922822124"},{"denom":"ASSET15","index":"0.000008919578032571"},{"denom":"ASSET16","index":"0.000006218567480803"},{"denom":"ASSET17","index":"0.000004416250829168"},{"denom":"ASSET18","index":"0.000002103798060547"},{"denom":"ASSET2","index":"0.000004074517134053"},{"denom":"ASSET3","index":"0.000001191960556756"},{"denom":"ASSET4","index":"0.000011218887197534"},{"denom":"ASSET5","index":"0.000000924981107448"},{"denom":"ASSET6","index":"0.000003765642448085"},{"denom":"ASSET7","index":"0.000005766756105051"},{"denom":"ASSET8","index":"0.000007525534569569"},{"denom":"ASSET9","index":"0.000003250577479728"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003218229550028"},{"denom":"ASSET1","index":"0.000027301798081180"},{"denom":"ASSET10","index":"0.000021745417841688"},{"denom":"ASSET11","index":"0.000027119412726222"},{"denom":"ASSET12","index":"0.000025834540696398"},{"denom":"ASSET13","index":"0.000008516471999212"},{"denom":"ASSET14","index":"0.000024897496810197"},{"denom":"ASSET15","index":"0.000019595694306931"},{"denom":"ASSET16","index":"0.000012114595919920"},{"denom":"ASSET17","index":"0.000009493460517354"},{"denom":"ASSET18","index":"0.000003932937797970"},{"denom":"ASSET2","index":"0.000008264095290285"},{"denom":"ASSET3","index":"0.000002297232512411"},{"denom":"ASSET4","index":"0.000022135581489268"},{"denom":"ASSET5","index":"0.000001789675045728"},{"denom":"ASSET6","index":"0.000007223884768794"},{"denom":"ASSET7","index":"0.000011342725097550"},{"denom":"ASSET8","index":"0.000015481678980085"},{"denom":"ASSET9","index":"0.000006573861400446"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001621688869515"},{"denom":"ASSET1","index":"0.000013520143478358"},{"denom":"ASSET10","index":"0.000009419470546393"},{"denom":"ASSET11","index":"0.000013079418684764"},{"denom":"ASSET12","index":"0.000011778054243646"},{"denom":"ASSET13","index":"0.000004053107355591"},{"denom":"ASSET14","index":"0.000012218035825109"},{"denom":"ASSET15","index":"0.000008735715386011"},{"denom":"ASSET16","index":"0.000006090623412316"},{"denom":"ASSET17","index":"0.000004325494601547"},{"denom":"ASSET18","index":"0.000002060555632782"},{"denom":"ASSET2","index":"0.000003991049142665"},{"denom":"ASSET3","index":"0.000001167586257565"},{"denom":"ASSET4","index":"0.000010987648142487"},{"denom":"ASSET5","index":"0.000000905975587506"},{"denom":"ASSET6","index":"0.000003688190199343"},{"denom":"ASSET7","index":"0.000005648412194460"},{"denom":"ASSET8","index":"0.000007370434701640"},{"denom":"ASSET9","index":"0.000003183549162496"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003224207736427"},{"denom":"ASSET1","index":"0.000027358045975387"},{"denom":"ASSET10","index":"0.000021853454393362"},{"denom":"ASSET11","index":"0.000027191663823691"},{"denom":"ASSET12","index":"0.000025935625558190"},{"denom":"ASSET13","index":"0.000008541293337334"},{"denom":"ASSET14","index":"0.000024954691173737"},{"denom":"ASSET15","index":"0.000019681390400685"},{"denom":"ASSET16","index":"0.000012135703886829"},{"denom":"ASSET17","index":"0.000009530848033034"},{"denom":"ASSET18","index":"0.000003936224347496"},{"denom":"ASSET2","index":"0.000008286598878032"},{"denom":"ASSET3","index":"0.000002301038846536"},{"denom":"ASSET4","index":"0.000022179933336345"},{"denom":"ASSET5","index":"0.000001792519798769"},{"denom":"ASSET6","index":"0.000007234068845872"},{"denom":"ASSET7","index":"0.000011365474292791"},{"denom":"ASSET8","index":"0.000015527655320242"},{"denom":"ASSET9","index":"0.000006590765495457"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001684197417987"},{"denom":"ASSET1","index":"0.000014041270025306"},{"denom":"ASSET10","index":"0.000009782380002809"},{"denom":"ASSET11","index":"0.000013583439347888"},{"denom":"ASSET12","index":"0.000012231725730520"},{"denom":"ASSET13","index":"0.000004209525615418"},{"denom":"ASSET14","index":"0.000012688588478388"},{"denom":"ASSET15","index":"0.000009072403677468"},{"denom":"ASSET16","index":"0.000006325419612958"},{"denom":"ASSET17","index":"0.000004492161044183"},{"denom":"ASSET18","index":"0.000002139608271529"},{"denom":"ASSET2","index":"0.000004144674335530"},{"denom":"ASSET3","index":"0.000001212331762086"},{"denom":"ASSET4","index":"0.000011410921471639"},{"denom":"ASSET5","index":"0.000000940827523152"},{"denom":"ASSET6","index":"0.000003830097231595"},{"denom":"ASSET7","index":"0.000005866137041214"},{"denom":"ASSET8","index":"0.000007654386885887"},{"denom":"ASSET9","index":"0.000003305963379963"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003193080094990"},{"denom":"ASSET1","index":"0.000027069824276969"},{"denom":"ASSET10","index":"0.000021489349079139"},{"denom":"ASSET11","index":"0.000026870184080824"},{"denom":"ASSET12","index":"0.000025561356340007"},{"denom":"ASSET13","index":"0.000008435097288603"},{"denom":"ASSET14","index":"0.000024680442306089"},{"denom":"ASSET15","index":"0.000019377704768171"},{"denom":"ASSET16","index":"0.000012016988086595"},{"denom":"ASSET17","index":"0.000009392966467546"},{"denom":"ASSET18","index":"0.000003905368596850"},{"denom":"ASSET2","index":"0.000008189075060838"},{"denom":"ASSET3","index":"0.000002279664955012"},{"denom":"ASSET4","index":"0.000021948593995488"},{"denom":"ASSET5","index":"0.000001775351671947"},{"denom":"ASSET6","index":"0.000007168631437760"},{"denom":"ASSET7","index":"0.000011248752159293"},{"denom":"ASSET8","index":"0.000015334459676317"},{"denom":"ASSET9","index":"0.000006513651901550"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001677613648548"},{"denom":"ASSET1","index":"0.000013997394471820"},{"denom":"ASSET10","index":"0.000009752554992736"},{"denom":"ASSET11","index":"0.000013541183096442"},{"denom":"ASSET12","index":"0.000012193285851007"},{"denom":"ASSET13","index":"0.000004195070965406"},{"denom":"ASSET14","index":"0.000012649497226385"},{"denom":"ASSET15","index":"0.000009043353672830"},{"denom":"ASSET16","index":"0.000006306085420563"},{"denom":"ASSET17","index":"0.000004477092542912"},{"denom":"ASSET18","index":"0.000002131751335856"},{"denom":"ASSET2","index":"0.000004130786635239"},{"denom":"ASSET3","index":"0.000001208960144751"},{"denom":"ASSET4","index":"0.000011376252751467"},{"denom":"ASSET5","index":"0.000000937307007594"},{"denom":"ASSET6","index":"0.000003817659736684"},{"denom":"ASSET7","index":"0.000005847800357116"},{"denom":"ASSET8","index":"0.000007631172097229"},{"denom":"ASSET9","index":"0.000003295090343070"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003316222748087"},{"denom":"ASSET1","index":"0.000028147075207200"},{"denom":"ASSET10","index":"0.000022466702115272"},{"denom":"ASSET11","index":"0.000027971336509453"},{"denom":"ASSET12","index":"0.000026669877578580"},{"denom":"ASSET13","index":"0.000008784355829882"},{"denom":"ASSET14","index":"0.000025672864554615"},{"denom":"ASSET15","index":"0.000020235356040284"},{"denom":"ASSET16","index":"0.000012487172511964"},{"denom":"ASSET17","index":"0.000009799807931023"},{"denom":"ASSET18","index":"0.000004049727438870"},{"denom":"ASSET2","index":"0.000008522892941853"},{"denom":"ASSET3","index":"0.000002368075218536"},{"denom":"ASSET4","index":"0.000022820717384594"},{"denom":"ASSET5","index":"0.000001843591257654"},{"denom":"ASSET6","index":"0.000007443165294976"},{"denom":"ASSET7","index":"0.000011693499621126"},{"denom":"ASSET8","index":"0.000015972009373807"},{"denom":"ASSET9","index":"0.000006779069609364"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001520550536467"},{"denom":"ASSET1","index":"0.000012675827554874"},{"denom":"ASSET10","index":"0.000008831388003026"},{"denom":"ASSET11","index":"0.000012262725604616"},{"denom":"ASSET12","index":"0.000011042474271843"},{"denom":"ASSET13","index":"0.000003800233070086"},{"denom":"ASSET14","index":"0.000011455195131741"},{"denom":"ASSET15","index":"0.000008190012927118"},{"denom":"ASSET16","index":"0.000005710257954490"},{"denom":"ASSET17","index":"0.000004055182520937"},{"denom":"ASSET18","index":"0.000001931747034924"},{"denom":"ASSET2","index":"0.000003741926245004"},{"denom":"ASSET3","index":"0.000001094491513968"},{"denom":"ASSET4","index":"0.000010301253521611"},{"denom":"ASSET5","index":"0.000000849450412477"},{"denom":"ASSET6","index":"0.000003457632836431"},{"denom":"ASSET7","index":"0.000005295631642792"},{"denom":"ASSET8","index":"0.000006910311498182"},{"denom":"ASSET9","index":"0.000002984699699651"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003047858420945"},{"denom":"ASSET1","index":"0.000025863853767953"},{"denom":"ASSET10","index":"0.000020681482671570"},{"denom":"ASSET11","index":"0.000025712271525236"},{"denom":"ASSET12","index":"0.000024535470175220"},{"denom":"ASSET13","index":"0.000008077733573885"},{"denom":"ASSET14","index":"0.000023593590000343"},{"denom":"ASSET15","index":"0.000018621561303244"},{"denom":"ASSET16","index":"0.000011471343089677"},{"denom":"ASSET17","index":"0.000009016132124589"},{"denom":"ASSET18","index":"0.000003719208275283"},{"denom":"ASSET2","index":"0.000007835789085827"},{"denom":"ASSET3","index":"0.000002174729135607"},{"denom":"ASSET4","index":"0.000020967814383093"},{"denom":"ASSET5","index":"0.000001694402278429"},{"denom":"ASSET6","index":"0.000006836893759575"},{"denom":"ASSET7","index":"0.000010744095518390"},{"denom":"ASSET8","index":"0.000014684305897471"},{"denom":"ASSET9","index":"0.000006231971052532"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001765508823557"},{"denom":"ASSET1","index":"0.000014724618911480"},{"denom":"ASSET10","index":"0.000010258363403154"},{"denom":"ASSET11","index":"0.000014244524406828"},{"denom":"ASSET12","index":"0.000012826610887714"},{"denom":"ASSET13","index":"0.000004413772058893"},{"denom":"ASSET14","index":"0.000013305845007949"},{"denom":"ASSET15","index":"0.000009513270498085"},{"denom":"ASSET16","index":"0.000006632703470176"},{"denom":"ASSET17","index":"0.000004710604682736"},{"denom":"ASSET18","index":"0.000002243882559375"},{"denom":"ASSET2","index":"0.000004346662074372"},{"denom":"ASSET3","index":"0.000001271648168235"},{"denom":"ASSET4","index":"0.000011966226470776"},{"denom":"ASSET5","index":"0.000000986860926228"},{"denom":"ASSET6","index":"0.000004016274458267"},{"denom":"ASSET7","index":"0.000006150888196691"},{"denom":"ASSET8","index":"0.000008026526225616"},{"denom":"ASSET9","index":"0.000003466488815844"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003365151784209"},{"denom":"ASSET1","index":"0.000028538337865727"},{"denom":"ASSET10","index":"0.000022670552359626"},{"denom":"ASSET11","index":"0.000028331786642422"},{"denom":"ASSET12","index":"0.000026959391418936"},{"denom":"ASSET13","index":"0.000008894072871450"},{"denom":"ASSET14","index":"0.000026020188745878"},{"denom":"ASSET15","index":"0.000020439828986765"},{"denom":"ASSET16","index":"0.000012667128947757"},{"denom":"ASSET17","index":"0.000009907060013179"},{"denom":"ASSET18","index":"0.000004116201786219"},{"denom":"ASSET2","index":"0.000008634485522558"},{"denom":"ASSET3","index":"0.000002403102945281"},{"denom":"ASSET4","index":"0.000023139017263426"},{"denom":"ASSET5","index":"0.000001871649891727"},{"denom":"ASSET6","index":"0.000007555863827839"},{"denom":"ASSET7","index":"0.000011857581945748"},{"denom":"ASSET8","index":"0.000016169532559731"},{"denom":"ASSET9","index":"0.000006867789268222"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001833509758465"},{"denom":"ASSET1","index":"0.000015308139656127"},{"denom":"ASSET10","index":"0.000010661025831945"},{"denom":"ASSET11","index":"0.000014808091540182"},{"denom":"ASSET12","index":"0.000013334616425197"},{"denom":"ASSET13","index":"0.000004587108050268"},{"denom":"ASSET14","index":"0.000013827997232930"},{"denom":"ASSET15","index":"0.000009887618079284"},{"denom":"ASSET16","index":"0.000006893996691827"},{"denom":"ASSET17","index":"0.000004893804228047"},{"denom":"ASSET18","index":"0.000002326890566197"},{"denom":"ASSET2","index":"0.000004513767659929"},{"denom":"ASSET3","index":"0.000001320127026095"},{"denom":"ASSET4","index":"0.000012434529816496"},{"denom":"ASSET5","index":"0.000001020098156528"},{"denom":"ASSET6","index":"0.000004173734941087"},{"denom":"ASSET7","index":"0.000006393948575882"},{"denom":"ASSET8","index":"0.000008340802573961"},{"denom":"ASSET9","index":"0.000003600346434803"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003461123478470"},{"denom":"ASSET1","index":"0.000029368181297786"},{"denom":"ASSET10","index":"0.000023294808028239"},{"denom":"ASSET11","index":"0.000029147392384169"},{"denom":"ASSET12","index":"0.000027719461688447"},{"denom":"ASSET13","index":"0.000009147542663388"},{"denom":"ASSET14","index":"0.000026768604990580"},{"denom":"ASSET15","index":"0.000021008846141082"},{"denom":"ASSET16","index":"0.000013035302068339"},{"denom":"ASSET17","index":"0.000010182949549387"},{"denom":"ASSET18","index":"0.000004232564951180"},{"denom":"ASSET2","index":"0.000008877642147806"},{"denom":"ASSET3","index":"0.000002471921418528"},{"denom":"ASSET4","index":"0.000023806252184245"},{"denom":"ASSET5","index":"0.000001920199705662"},{"denom":"ASSET6","index":"0.000007776538212319"},{"denom":"ASSET7","index":"0.000012202060569359"},{"denom":"ASSET8","index":"0.000016628688342614"},{"denom":"ASSET9","index":"0.000007061722298848"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001580229076001"},{"denom":"ASSET1","index":"0.000013178675425859"},{"denom":"ASSET10","index":"0.000009181488308837"},{"denom":"ASSET11","index":"0.000012749045790152"},{"denom":"ASSET12","index":"0.000011480356468073"},{"denom":"ASSET13","index":"0.000003950572690002"},{"denom":"ASSET14","index":"0.000011909209196663"},{"denom":"ASSET15","index":"0.000008514902002442"},{"denom":"ASSET16","index":"0.000005936347281082"},{"denom":"ASSET17","index":"0.000004216274924019"},{"denom":"ASSET18","index":"0.000002008304897474"},{"denom":"ASSET2","index":"0.000003889973934875"},{"denom":"ASSET3","index":"0.000001137392019304"},{"denom":"ASSET4","index":"0.000010709664607998"},{"denom":"ASSET5","index":"0.000000883343392042"},{"denom":"ASSET6","index":"0.000003594749230410"},{"denom":"ASSET7","index":"0.000005505163831141"},{"denom":"ASSET8","index":"0.000007184060111002"},{"denom":"ASSET9","index":"0.000003102967025342"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003136420796654"},{"denom":"ASSET1","index":"0.000026617535879560"},{"denom":"ASSET10","index":"0.000021257162201233"},{"denom":"ASSET11","index":"0.000026454281403244"},{"denom":"ASSET12","index":"0.000025229520616223"},{"denom":"ASSET13","index":"0.000008309311482354"},{"denom":"ASSET14","index":"0.000024278363089230"},{"denom":"ASSET15","index":"0.000019144672836670"},{"denom":"ASSET16","index":"0.000011806881934189"},{"denom":"ASSET17","index":"0.000009271795054357"},{"denom":"ASSET18","index":"0.000003829937127836"},{"denom":"ASSET2","index":"0.000008061315465971"},{"denom":"ASSET3","index":"0.000002238409344787"},{"denom":"ASSET4","index":"0.000021579173085678"},{"denom":"ASSET5","index":"0.000001744155749232"},{"denom":"ASSET6","index":"0.000007037998659171"},{"denom":"ASSET7","index":"0.000011056982942661"},{"denom":"ASSET8","index":"0.000015105683491420"},{"denom":"ASSET9","index":"0.000006411626899884"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001065673750407"},{"denom":"ASSET1","index":"0.000008885137524612"},{"denom":"ASSET10","index":"0.000006190162379117"},{"denom":"ASSET11","index":"0.000008595321581390"},{"denom":"ASSET12","index":"0.000007740138401991"},{"denom":"ASSET13","index":"0.000002663662498568"},{"denom":"ASSET14","index":"0.000008029258508615"},{"denom":"ASSET15","index":"0.000005740999854868"},{"denom":"ASSET16","index":"0.000004002452113836"},{"denom":"ASSET17","index":"0.000002842492504350"},{"denom":"ASSET18","index":"0.000001354098020432"},{"denom":"ASSET2","index":"0.000002622608139264"},{"denom":"ASSET3","index":"0.000000767159849705"},{"denom":"ASSET4","index":"0.000007220696381306"},{"denom":"ASSET5","index":"0.000000595288209907"},{"denom":"ASSET6","index":"0.000002423598872130"},{"denom":"ASSET7","index":"0.000003711940334016"},{"denom":"ASSET8","index":"0.000004843718561268"},{"denom":"ASSET9","index":"0.000002092032733005"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000002559869929403"},{"denom":"ASSET1","index":"0.000021787096732684"},{"denom":"ASSET10","index":"0.000017783238471081"},{"denom":"ASSET11","index":"0.000021752938768967"},{"denom":"ASSET12","index":"0.000020940235345308"},{"denom":"ASSET13","index":"0.000006848308161575"},{"denom":"ASSET14","index":"0.000019904298850841"},{"denom":"ASSET15","index":"0.000015946274018453"},{"denom":"ASSET16","index":"0.000009638424477568"},{"denom":"ASSET17","index":"0.000007695902028378"},{"denom":"ASSET18","index":"0.000003102977872608"},{"denom":"ASSET2","index":"0.000006627591716064"},{"denom":"ASSET3","index":"0.000001824087350341"},{"denom":"ASSET4","index":"0.000017655906837434"},{"denom":"ASSET5","index":"0.000001421889695470"},{"denom":"ASSET6","index":"0.000005729615091854"},{"denom":"ASSET7","index":"0.000009042175373173"},{"denom":"ASSET8","index":"0.000012449153729005"},{"denom":"ASSET9","index":"0.000005268661072858"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001663945626017"},{"denom":"ASSET1","index":"0.000013874870096624"},{"denom":"ASSET10","index":"0.000009666844154779"},{"denom":"ASSET11","index":"0.000013422526194886"},{"denom":"ASSET12","index":"0.000012086742376498"},{"denom":"ASSET13","index":"0.000004159391889779"},{"denom":"ASSET14","index":"0.000012538614102973"},{"denom":"ASSET15","index":"0.000008964719539034"},{"denom":"ASSET16","index":"0.000006250183953344"},{"denom":"ASSET17","index":"0.000004438919645342"},{"denom":"ASSET18","index":"0.000002114400826704"},{"denom":"ASSET2","index":"0.000004095648229305"},{"denom":"ASSET3","index":"0.000001197908641659"},{"denom":"ASSET4","index":"0.000011275545275051"},{"denom":"ASSET5","index":"0.000000929713092403"},{"denom":"ASSET6","index":"0.000003784956906399"},{"denom":"ASSET7","index":"0.000005796423525818"},{"denom":"ASSET8","index":"0.000007563775534382"},{"denom":"ASSET9","index":"0.000003266980643136"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003299045378029"},{"denom":"ASSET1","index":"0.000027992490930804"},{"denom":"ASSET10","index":"0.000022352284005938"},{"denom":"ASSET11","index":"0.000027819914533732"},{"denom":"ASSET12","index":"0.000026530494002155"},{"denom":"ASSET13","index":"0.000008738242797579"},{"denom":"ASSET14","index":"0.000025532401567106"},{"denom":"ASSET15","index":"0.000020131602968729"},{"denom":"ASSET16","index":"0.000012417136212826"},{"denom":"ASSET17","index":"0.000009749421325842"},{"denom":"ASSET18","index":"0.000004027997856345"},{"denom":"ASSET2","index":"0.000008477931503293"},{"denom":"ASSET3","index":"0.000002354450357881"},{"denom":"ASSET4","index":"0.000022693933657862"},{"denom":"ASSET5","index":"0.000001834114741991"},{"denom":"ASSET6","index":"0.000007402245947993"},{"denom":"ASSET7","index":"0.000011628988518089"},{"denom":"ASSET8","index":"0.000015885667960333"},{"denom":"ASSET9","index":"0.000006742956926982"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001554670726054"},{"denom":"ASSET1","index":"0.000012963415617374"},{"denom":"ASSET10","index":"0.000009031685079156"},{"denom":"ASSET11","index":"0.000012540799003679"},{"denom":"ASSET12","index":"0.000011293255065955"},{"denom":"ASSET13","index":"0.000003886042255656"},{"denom":"ASSET14","index":"0.000011715237120170"},{"denom":"ASSET15","index":"0.000008376185136293"},{"denom":"ASSET16","index":"0.000005839850894644"},{"denom":"ASSET17","index":"0.000004147480761425"},{"denom":"ASSET18","index":"0.000001975383661309"},{"denom":"ASSET2","index":"0.000003826393664534"},{"denom":"ASSET3","index":"0.000001119362922759"},{"denom":"ASSET4","index":"0.000010534956487329"},{"denom":"ASSET5","index":"0.000000868711928150"},{"denom":"ASSET6","index":"0.000003536399982164"},{"denom":"ASSET7","index":"0.000005415965161990"},{"denom":"ASSET8","index":"0.000007067088929007"},{"denom":"ASSET9","index":"0.000003052231098907"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003157426180098"},{"denom":"ASSET1","index":"0.000026803913890418"},{"denom":"ASSET10","index":"0.000021467927303389"},{"denom":"ASSET11","index":"0.000026655124661377"},{"denom":"ASSET12","index":"0.000025453388278707"},{"denom":"ASSET13","index":"0.000008375182650914"},{"denom":"ASSET14","index":"0.000024453809207757"},{"denom":"ASSET15","index":"0.000019323681821282"},{"denom":"ASSET16","index":"0.000011885939188892"},{"denom":"ASSET17","index":"0.000009353763879690"},{"denom":"ASSET18","index":"0.000003851457527173"},{"denom":"ASSET2","index":"0.000008122633355733"},{"denom":"ASSET3","index":"0.000002252845423920"},{"denom":"ASSET4","index":"0.000021728796023940"},{"denom":"ASSET5","index":"0.000001755342604855"},{"denom":"ASSET6","index":"0.000007082922688985"},{"denom":"ASSET7","index":"0.000011133765978354"},{"denom":"ASSET8","index":"0.000015225414484063"},{"denom":"ASSET9","index":"0.000006459804222065"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001578706846766"},{"denom":"ASSET1","index":"0.000013164667632738"},{"denom":"ASSET10","index":"0.000009171819989970"},{"denom":"ASSET11","index":"0.000012734981690366"},{"denom":"ASSET12","index":"0.000011467468005207"},{"denom":"ASSET13","index":"0.000003946168668528"},{"denom":"ASSET14","index":"0.000011895957050803"},{"denom":"ASSET15","index":"0.000008505148486066"},{"denom":"ASSET16","index":"0.000005930623522158"},{"denom":"ASSET17","index":"0.000004211879752669"},{"denom":"ASSET18","index":"0.000002005998995588"},{"denom":"ASSET2","index":"0.000003886323829757"},{"denom":"ASSET3","index":"0.000001135855039864"},{"denom":"ASSET4","index":"0.000010697863378618"},{"denom":"ASSET5","index":"0.000000882112923477"},{"denom":"ASSET6","index":"0.000003590690326231"},{"denom":"ASSET7","index":"0.000005499740683011"},{"denom":"ASSET8","index":"0.000007176593065360"},{"denom":"ASSET9","index":"0.000003098765751537"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003185213515607"},{"denom":"ASSET1","index":"0.000027035699090666"},{"denom":"ASSET10","index":"0.000021635640181728"},{"denom":"ASSET11","index":"0.000026880669357351"},{"denom":"ASSET12","index":"0.000025658872180332"},{"denom":"ASSET13","index":"0.000008444958797633"},{"denom":"ASSET14","index":"0.000024662649108986"},{"denom":"ASSET15","index":"0.000019476753279332"},{"denom":"ASSET16","index":"0.000011989846651744"},{"denom":"ASSET17","index":"0.000009429633404312"},{"denom":"ASSET18","index":"0.000003886090392826"},{"denom":"ASSET2","index":"0.000008191890279929"},{"denom":"ASSET3","index":"0.000002271981699175"},{"denom":"ASSET4","index":"0.000021916623044014"},{"denom":"ASSET5","index":"0.000001770727550439"},{"denom":"ASSET6","index":"0.000007144791673859"},{"denom":"ASSET7","index":"0.000011230376410345"},{"denom":"ASSET8","index":"0.000015353061978158"},{"denom":"ASSET9","index":"0.000006513931773648"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001736464555496"},{"denom":"ASSET1","index":"0.000014486324003877"},{"denom":"ASSET10","index":"0.000010092542477093"},{"denom":"ASSET11","index":"0.000014014496766071"},{"denom":"ASSET12","index":"0.000012620063107870"},{"denom":"ASSET13","index":"0.000004342915393341"},{"denom":"ASSET14","index":"0.000013091890345676"},{"denom":"ASSET15","index":"0.000009359368553661"},{"denom":"ASSET16","index":"0.000006524897117620"},{"denom":"ASSET17","index":"0.000004634080157191"},{"denom":"ASSET18","index":"0.000002206537788701"},{"denom":"ASSET2","index":"0.000004276263218483"},{"denom":"ASSET3","index":"0.000001250605280877"},{"denom":"ASSET4","index":"0.000011772878885340"},{"denom":"ASSET5","index":"0.000000969964544635"},{"denom":"ASSET6","index":"0.000003951772367204"},{"denom":"ASSET7","index":"0.000006051315875212"},{"denom":"ASSET8","index":"0.000007896528716001"},{"denom":"ASSET9","index":"0.000003409784945337"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003356675502673"},{"denom":"ASSET1","index":"0.000028477076245214"},{"denom":"ASSET10","index":"0.000022663760086849"},{"denom":"ASSET11","index":"0.000028282539274294"},{"denom":"ASSET12","index":"0.000026934248109484"},{"denom":"ASSET13","index":"0.000008880550781135"},{"denom":"ASSET14","index":"0.000025969128454053"},{"denom":"ASSET15","index":"0.000020425731449718"},{"denom":"ASSET16","index":"0.000012636600959200"},{"denom":"ASSET17","index":"0.000009896936242996"},{"denom":"ASSET18","index":"0.000004102733083140"},{"denom":"ASSET2","index":"0.000008619316582261"},{"denom":"ASSET3","index":"0.000002396767404444"},{"denom":"ASSET4","index":"0.000023088672429632"},{"denom":"ASSET5","index":"0.000001866260713425"},{"denom":"ASSET6","index":"0.000007536521735823"},{"denom":"ASSET7","index":"0.000011831316132227"},{"denom":"ASSET8","index":"0.000016143846449802"},{"denom":"ASSET9","index":"0.000006854365607618"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001432199402946"},{"denom":"ASSET1","index":"0.000011943338809449"},{"denom":"ASSET10","index":"0.000008321234131428"},{"denom":"ASSET11","index":"0.000011554338026882"},{"denom":"ASSET12","index":"0.000010404248756685"},{"denom":"ASSET13","index":"0.000003580160245814"},{"denom":"ASSET14","index":"0.000010793249539252"},{"denom":"ASSET15","index":"0.000007717099003024"},{"denom":"ASSET16","index":"0.000005380388215223"},{"denom":"ASSET17","index":"0.000003821002469456"},{"denom":"ASSET18","index":"0.000001819847139312"},{"denom":"ASSET2","index":"0.000003525361874705"},{"denom":"ASSET3","index":"0.000001031021204577"},{"denom":"ASSET4","index":"0.000009706076917365"},{"denom":"ASSET5","index":"0.000000800326827437"},{"denom":"ASSET6","index":"0.000003258135250159"},{"denom":"ASSET7","index":"0.000004989357863356"},{"denom":"ASSET8","index":"0.000006510858315517"},{"denom":"ASSET9","index":"0.000002812306527182"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000002962853679956"},{"denom":"ASSET1","index":"0.000025162993314326"},{"denom":"ASSET10","index":"0.000020199688926412"},{"denom":"ASSET11","index":"0.000025035647772320"},{"denom":"ASSET12","index":"0.000023929456511577"},{"denom":"ASSET13","index":"0.000007867725037604"},{"denom":"ASSET14","index":"0.000022960507028012"},{"denom":"ASSET15","index":"0.000018173489333858"},{"denom":"ASSET16","index":"0.000011155286879957"},{"denom":"ASSET17","index":"0.000008793607250882"},{"denom":"ASSET18","index":"0.000003611579051495"},{"denom":"ASSET2","index":"0.000007628670547867"},{"denom":"ASSET3","index":"0.000002114031306235"},{"denom":"ASSET4","index":"0.000020398130246320"},{"denom":"ASSET5","index":"0.000001647096325587"},{"denom":"ASSET6","index":"0.000006645213242757"},{"denom":"ASSET7","index":"0.000010450616802650"},{"denom":"ASSET8","index":"0.000014303332598966"},{"denom":"ASSET9","index":"0.000006067112886031"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001597673370668"},{"denom":"ASSET1","index":"0.000013327099930964"},{"denom":"ASSET10","index":"0.000009285285696821"},{"denom":"ASSET11","index":"0.000012892979142852"},{"denom":"ASSET12","index":"0.000011609669101507"},{"denom":"ASSET13","index":"0.000003995544306884"},{"denom":"ASSET14","index":"0.000012043789889618"},{"denom":"ASSET15","index":"0.000008610289110917"},{"denom":"ASSET16","index":"0.000006002842621820"},{"denom":"ASSET17","index":"0.000004263637708946"},{"denom":"ASSET18","index":"0.000002030433278566"},{"denom":"ASSET2","index":"0.000003934304697275"},{"denom":"ASSET3","index":"0.000001149943780421"},{"denom":"ASSET4","index":"0.000010829884739162"},{"denom":"ASSET5","index":"0.000000892737420067"},{"denom":"ASSET6","index":"0.000003634911050302"},{"denom":"ASSET7","index":"0.000005567360953495"},{"denom":"ASSET8","index":"0.000007264378579749"},{"denom":"ASSET9","index":"0.000003138189772368"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003135234009226"},{"denom":"ASSET1","index":"0.000026602125077525"},{"denom":"ASSET10","index":"0.000021213712135644"},{"denom":"ASSET11","index":"0.000026430841190504"},{"denom":"ASSET12","index":"0.000025191219856579"},{"denom":"ASSET13","index":"0.000008300995957475"},{"denom":"ASSET14","index":"0.000024262534835813"},{"denom":"ASSET15","index":"0.000019110376679732"},{"denom":"ASSET16","index":"0.000011801461546978"},{"denom":"ASSET17","index":"0.000009257538829689"},{"denom":"ASSET18","index":"0.000003829421505073"},{"denom":"ASSET2","index":"0.000008055136326188"},{"denom":"ASSET3","index":"0.000002237228869924"},{"denom":"ASSET4","index":"0.000021566736915931"},{"denom":"ASSET5","index":"0.000001743257901616"},{"denom":"ASSET6","index":"0.000007036288319926"},{"denom":"ASSET7","index":"0.000011051703047857"},{"denom":"ASSET8","index":"0.000015089589803941"},{"denom":"ASSET9","index":"0.000006406386950018"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001689516061942"},{"denom":"ASSET1","index":"0.000014086551658080"},{"denom":"ASSET10","index":"0.000009813816295422"},{"denom":"ASSET11","index":"0.000013627312671286"},{"denom":"ASSET12","index":"0.000012271349136594"},{"denom":"ASSET13","index":"0.000004223185893030"},{"denom":"ASSET14","index":"0.000012729983861563"},{"denom":"ASSET15","index":"0.000009101391604066"},{"denom":"ASSET16","index":"0.000006345353421478"},{"denom":"ASSET17","index":"0.000004506584688828"},{"denom":"ASSET18","index":"0.000002146942263262"},{"denom":"ASSET2","index":"0.000004157925615959"},{"denom":"ASSET3","index":"0.000001216379053179"},{"denom":"ASSET4","index":"0.000011447740269489"},{"denom":"ASSET5","index":"0.000000943856970227"},{"denom":"ASSET6","index":"0.000003842500943451"},{"denom":"ASSET7","index":"0.000005884905911035"},{"denom":"ASSET8","index":"0.000007678959268655"},{"denom":"ASSET9","index":"0.000003316793155937"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003297864217859"},{"denom":"ASSET1","index":"0.000027973253972789"},{"denom":"ASSET10","index":"0.000022291630953866"},{"denom":"ASSET11","index":"0.000027789008146512"},{"denom":"ASSET12","index":"0.000026479178332828"},{"denom":"ASSET13","index":"0.000008727103479255"},{"denom":"ASSET14","index":"0.000025511286037616"},{"denom":"ASSET15","index":"0.000020085740117730"},{"denom":"ASSET16","index":"0.000012411485442612"},{"denom":"ASSET17","index":"0.000009730550155880"},{"denom":"ASSET18","index":"0.000004028926705548"},{"denom":"ASSET2","index":"0.000008468714781887"},{"denom":"ASSET3","index":"0.000002353891879987"},{"denom":"ASSET4","index":"0.000022679492169342"},{"denom":"ASSET5","index":"0.000001833514119464"},{"denom":"ASSET6","index":"0.000007400677249018"},{"denom":"ASSET7","index":"0.000011621769805761"},{"denom":"ASSET8","index":"0.000015864980999233"},{"denom":"ASSET9","index":"0.000006736116007098"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001411859688057"},{"denom":"ASSET1","index":"0.000011770485537623"},{"denom":"ASSET10","index":"0.000008200497469250"},{"denom":"ASSET11","index":"0.000011386615852852"},{"denom":"ASSET12","index":"0.000010253874969484"},{"denom":"ASSET13","index":"0.000003528347966974"},{"denom":"ASSET14","index":"0.000010637094027671"},{"denom":"ASSET15","index":"0.000007605174144562"},{"denom":"ASSET16","index":"0.000005302606662519"},{"denom":"ASSET17","index":"0.000003765826670265"},{"denom":"ASSET18","index":"0.000001793777493075"},{"denom":"ASSET2","index":"0.000003474345960472"},{"denom":"ASSET3","index":"0.000001016278724767"},{"denom":"ASSET4","index":"0.000009565512043233"},{"denom":"ASSET5","index":"0.000000788559420242"},{"denom":"ASSET6","index":"0.000003210842193807"},{"denom":"ASSET7","index":"0.000004917435724579"},{"denom":"ASSET8","index":"0.000006416479374940"},{"denom":"ASSET9","index":"0.000002771018622781"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000002930820438736"},{"denom":"ASSET1","index":"0.000024889799880283"},{"denom":"ASSET10","index":"0.000019988623694797"},{"denom":"ASSET11","index":"0.000024765615752571"},{"denom":"ASSET12","index":"0.000023676022623299"},{"denom":"ASSET13","index":"0.000007783195940338"},{"denom":"ASSET14","index":"0.000022712072914709"},{"denom":"ASSET15","index":"0.000017982209004670"},{"denom":"ASSET16","index":"0.000011033267632466"},{"denom":"ASSET17","index":"0.000008700651286884"},{"denom":"ASSET18","index":"0.000003571624768330"},{"denom":"ASSET2","index":"0.000007546215495169"},{"denom":"ASSET3","index":"0.000002090977414753"},{"denom":"ASSET4","index":"0.000020176663420937"},{"denom":"ASSET5","index":"0.000001628342560149"},{"denom":"ASSET6","index":"0.000006572371850885"},{"denom":"ASSET7","index":"0.000010337273058537"},{"denom":"ASSET8","index":"0.000014149515747938"},{"denom":"ASSET9","index":"0.000006000707920121"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001726304213109"},{"denom":"ASSET1","index":"0.000014431903221591"},{"denom":"ASSET10","index":"0.000010055058078201"},{"denom":"ASSET11","index":"0.000013959161452463"},{"denom":"ASSET12","index":"0.000012572806376704"},{"denom":"ASSET13","index":"0.000004323728090679"},{"denom":"ASSET14","index":"0.000013040236440562"},{"denom":"ASSET15","index":"0.000009322042750788"},{"denom":"ASSET16","index":"0.000006501527251832"},{"denom":"ASSET17","index":"0.000004615871880590"},{"denom":"ASSET18","index":"0.000002199045982237"},{"denom":"ASSET2","index":"0.000004259987627426"},{"denom":"ASSET3","index":"0.000001242939033438"},{"denom":"ASSET4","index":"0.000011728245238599"},{"denom":"ASSET5","index":"0.000000966730359341"},{"denom":"ASSET6","index":"0.000003935973605888"},{"denom":"ASSET7","index":"0.000006028785482704"},{"denom":"ASSET8","index":"0.000007866635506506"},{"denom":"ASSET9","index":"0.000003394179668236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003313075721980"},{"denom":"ASSET1","index":"0.000028138029356789"},{"denom":"ASSET10","index":"0.000022370607880245"},{"denom":"ASSET11","index":"0.000027937207217164"},{"denom":"ASSET12","index":"0.000026595598409551"},{"denom":"ASSET13","index":"0.000008769097729958"},{"denom":"ASSET14","index":"0.000025655242037122"},{"denom":"ASSET15","index":"0.000020162686714325"},{"denom":"ASSET16","index":"0.000012488922131836"},{"denom":"ASSET17","index":"0.000009772018779266"},{"denom":"ASSET18","index":"0.000004056016110298"},{"denom":"ASSET2","index":"0.000008514325121927"},{"denom":"ASSET3","index":"0.000002365037757716"},{"denom":"ASSET4","index":"0.000022813272666626"},{"denom":"ASSET5","index":"0.000001844445619129"},{"denom":"ASSET6","index":"0.000007446834645040"},{"denom":"ASSET7","index":"0.000011690909413493"},{"denom":"ASSET8","index":"0.000015945057917181"},{"denom":"ASSET9","index":"0.000006769080892636"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001630255611072"},{"denom":"ASSET1","index":"0.000013593541268721"},{"denom":"ASSET10","index":"0.000009470169531707"},{"denom":"ASSET11","index":"0.000013149994246609"},{"denom":"ASSET12","index":"0.000011841383661505"},{"denom":"ASSET13","index":"0.000004074904678306"},{"denom":"ASSET14","index":"0.000012284196334242"},{"denom":"ASSET15","index":"0.000008782818517308"},{"denom":"ASSET16","index":"0.000006123739432762"},{"denom":"ASSET17","index":"0.000004348816994942"},{"denom":"ASSET18","index":"0.000002071599585061"},{"denom":"ASSET2","index":"0.000004012484981486"},{"denom":"ASSET3","index":"0.000001173490300222"},{"denom":"ASSET4","index":"0.000011046817638451"},{"denom":"ASSET5","index":"0.000000910593224203"},{"denom":"ASSET6","index":"0.000003707729991128"},{"denom":"ASSET7","index":"0.000005678723711902"},{"denom":"ASSET8","index":"0.000007410319536635"},{"denom":"ASSET9","index":"0.000003200294573447"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003344718004914"},{"denom":"ASSET1","index":"0.000028399683918161"},{"denom":"ASSET10","index":"0.000022773943545696"},{"denom":"ASSET11","index":"0.000028249525692452"},{"denom":"ASSET12","index":"0.000026989510465266"},{"denom":"ASSET13","index":"0.000008877216029957"},{"denom":"ASSET14","index":"0.000025911788013611"},{"denom":"ASSET15","index":"0.000020494299775586"},{"denom":"ASSET16","index":"0.000012591463658113"},{"denom":"ASSET17","index":"0.000009918208342143"},{"denom":"ASSET18","index":"0.000004078542450859"},{"denom":"ASSET2","index":"0.000008608606683653"},{"denom":"ASSET3","index":"0.000002386103437058"},{"denom":"ASSET4","index":"0.000023022167148602"},{"denom":"ASSET5","index":"0.000001858883946943"},{"denom":"ASSET6","index":"0.000007501347044310"},{"denom":"ASSET7","index":"0.000011795380538461"},{"denom":"ASSET8","index":"0.000016137954986293"},{"denom":"ASSET9","index":"0.000006845854741756"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001401914217082"},{"denom":"ASSET1","index":"0.000011691084141249"},{"denom":"ASSET10","index":"0.000008144816837289"},{"denom":"ASSET11","index":"0.000011309282624399"},{"denom":"ASSET12","index":"0.000010184195671197"},{"denom":"ASSET13","index":"0.000003504785542706"},{"denom":"ASSET14","index":"0.000010565150621491"},{"denom":"ASSET15","index":"0.000007553913381055"},{"denom":"ASSET16","index":"0.000005266490546178"},{"denom":"ASSET17","index":"0.000003740131045332"},{"denom":"ASSET18","index":"0.000001781176034264"},{"denom":"ASSET2","index":"0.000003450605283109"},{"denom":"ASSET3","index":"0.000001009107335001"},{"denom":"ASSET4","index":"0.000009501016460336"},{"denom":"ASSET5","index":"0.000000783074064494"},{"denom":"ASSET6","index":"0.000003189016217240"},{"denom":"ASSET7","index":"0.000004883842462771"},{"denom":"ASSET8","index":"0.000006372953035143"},{"denom":"ASSET9","index":"0.000002752187874236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000002824624853437"},{"denom":"ASSET1","index":"0.000023976113690517"},{"denom":"ASSET10","index":"0.000019183481330878"},{"denom":"ASSET11","index":"0.000023837782846342"},{"denom":"ASSET12","index":"0.000022753084719682"},{"denom":"ASSET13","index":"0.000007489057952554"},{"denom":"ASSET14","index":"0.000021872315483076"},{"denom":"ASSET15","index":"0.000017271123733000"},{"denom":"ASSET16","index":"0.000010633084765839"},{"denom":"ASSET17","index":"0.000008361522972460"},{"denom":"ASSET18","index":"0.000003446219629870"},{"denom":"ASSET2","index":"0.000007263651822688"},{"denom":"ASSET3","index":"0.000002015414858276"},{"denom":"ASSET4","index":"0.000019437236646346"},{"denom":"ASSET5","index":"0.000001569802896992"},{"denom":"ASSET6","index":"0.000006336500403946"},{"denom":"ASSET7","index":"0.000009959182045961"},{"denom":"ASSET8","index":"0.000013614498977085"},{"denom":"ASSET9","index":"0.000005776799011181"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001454934724421"},{"denom":"ASSET1","index":"0.000012138554241533"},{"denom":"ASSET10","index":"0.000008457231031836"},{"denom":"ASSET11","index":"0.000011742676653726"},{"denom":"ASSET12","index":"0.000010575345305063"},{"denom":"ASSET13","index":"0.000003639028595615"},{"denom":"ASSET14","index":"0.000010969531108307"},{"denom":"ASSET15","index":"0.000007843113235366"},{"denom":"ASSET16","index":"0.000005467847708521"},{"denom":"ASSET17","index":"0.000003882645572727"},{"denom":"ASSET18","index":"0.000001849120527665"},{"denom":"ASSET2","index":"0.000003583199705027"},{"denom":"ASSET3","index":"0.000001047214644670"},{"denom":"ASSET4","index":"0.000009864795788485"},{"denom":"ASSET5","index":"0.000000813748374938"},{"denom":"ASSET6","index":"0.000003310822390339"},{"denom":"ASSET7","index":"0.000005070278336150"},{"denom":"ASSET8","index":"0.000006616569426988"},{"denom":"ASSET9","index":"0.000002857424127380"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003026822568793"},{"denom":"ASSET1","index":"0.000025710421285725"},{"denom":"ASSET10","index":"0.000020652297735472"},{"denom":"ASSET11","index":"0.000025583400849235"},{"denom":"ASSET12","index":"0.000024460820755928"},{"denom":"ASSET13","index":"0.000008041083722059"},{"denom":"ASSET14","index":"0.000023461074878675"},{"denom":"ASSET15","index":"0.000018578170233019"},{"denom":"ASSET16","index":"0.000011396689804799"},{"denom":"ASSET17","index":"0.000008988134494295"},{"denom":"ASSET18","index":"0.000003688816665807"},{"denom":"ASSET2","index":"0.000007796110853756"},{"denom":"ASSET3","index":"0.000002159003644915"},{"denom":"ASSET4","index":"0.000020841789260406"},{"denom":"ASSET5","index":"0.000001683251281734"},{"denom":"ASSET6","index":"0.000006788484398340"},{"denom":"ASSET7","index":"0.000010677121165375"},{"denom":"ASSET8","index":"0.000014616905179383"},{"denom":"ASSET9","index":"0.000006199084273401"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001547699786520"},{"denom":"ASSET1","index":"0.000012908880828127"},{"denom":"ASSET10","index":"0.000008993933542043"},{"denom":"ASSET11","index":"0.000012488059147042"},{"denom":"ASSET12","index":"0.000011245681057538"},{"denom":"ASSET13","index":"0.000003869751640144"},{"denom":"ASSET14","index":"0.000011665498390936"},{"denom":"ASSET15","index":"0.000008340103197445"},{"denom":"ASSET16","index":"0.000005815173110936"},{"denom":"ASSET17","index":"0.000004129877691221"},{"denom":"ASSET18","index":"0.000001966512772230"},{"denom":"ASSET2","index":"0.000003810495126579"},{"denom":"ASSET3","index":"0.000001114825933185"},{"denom":"ASSET4","index":"0.000010490411596498"},{"denom":"ASSET5","index":"0.000000864743358984"},{"denom":"ASSET6","index":"0.000003521242992563"},{"denom":"ASSET7","index":"0.000005392342734476"},{"denom":"ASSET8","index":"0.000007036459899001"},{"denom":"ASSET9","index":"0.000003039156102537"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003086703561215"},{"denom":"ASSET1","index":"0.000026199550261878"},{"denom":"ASSET10","index":"0.000020936384793003"},{"denom":"ASSET11","index":"0.000026042194398185"},{"denom":"ASSET12","index":"0.000024843424443974"},{"denom":"ASSET13","index":"0.000008180415813801"},{"denom":"ASSET14","index":"0.000023898307142718"},{"denom":"ASSET15","index":"0.000018852934413068"},{"denom":"ASSET16","index":"0.000011621232923996"},{"denom":"ASSET17","index":"0.000009129550402498"},{"denom":"ASSET18","index":"0.000003767892160935"},{"denom":"ASSET2","index":"0.000007936188126371"},{"denom":"ASSET3","index":"0.000002203575710986"},{"denom":"ASSET4","index":"0.000021240180347210"},{"denom":"ASSET5","index":"0.000001716192200569"},{"denom":"ASSET6","index":"0.000006926674957775"},{"denom":"ASSET7","index":"0.000010883333770048"},{"denom":"ASSET8","index":"0.000014871024805414"},{"denom":"ASSET9","index":"0.000006311583255107"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001511232509129"},{"denom":"ASSET1","index":"0.000012598757210652"},{"denom":"ASSET10","index":"0.000008777665278232"},{"denom":"ASSET11","index":"0.000012187849575766"},{"denom":"ASSET12","index":"0.000010975073643675"},{"denom":"ASSET13","index":"0.000003776959255615"},{"denom":"ASSET14","index":"0.000011385233267090"},{"denom":"ASSET15","index":"0.000008140359504707"},{"denom":"ASSET16","index":"0.000005675412369706"},{"denom":"ASSET17","index":"0.000004030784481533"},{"denom":"ASSET18","index":"0.000001920145446758"},{"denom":"ASSET2","index":"0.000003719113035170"},{"denom":"ASSET3","index":"0.000001087858016388"},{"denom":"ASSET4","index":"0.000010238531681628"},{"denom":"ASSET5","index":"0.000000844504951067"},{"denom":"ASSET6","index":"0.000003436614036185"},{"denom":"ASSET7","index":"0.000005263507386191"},{"denom":"ASSET8","index":"0.000006867991992072"},{"denom":"ASSET9","index":"0.000002966364157912"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003050294937135"},{"denom":"ASSET1","index":"0.000025887230915803"},{"denom":"ASSET10","index":"0.000020718160619670"},{"denom":"ASSET11","index":"0.000025739685005463"},{"denom":"ASSET12","index":"0.000024570727404900"},{"denom":"ASSET13","index":"0.000008086966483560"},{"denom":"ASSET14","index":"0.000023616194455668"},{"denom":"ASSET15","index":"0.000018651338246959"},{"denom":"ASSET16","index":"0.000011480437826441"},{"denom":"ASSET17","index":"0.000009029688158762"},{"denom":"ASSET18","index":"0.000003721440260869"},{"denom":"ASSET2","index":"0.000007844134626406"},{"denom":"ASSET3","index":"0.000002176540273945"},{"denom":"ASSET4","index":"0.000020986445628896"},{"denom":"ASSET5","index":"0.000001695800268231"},{"denom":"ASSET6","index":"0.000006841569437153"},{"denom":"ASSET7","index":"0.000010753447417762"},{"denom":"ASSET8","index":"0.000014701309289649"},{"denom":"ASSET9","index":"0.000006238283490477"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001535139489204"},{"denom":"ASSET1","index":"0.000012800845981431"},{"denom":"ASSET10","index":"0.000008918122145344"},{"denom":"ASSET11","index":"0.000012383184798277"},{"denom":"ASSET12","index":"0.000011151318949088"},{"denom":"ASSET13","index":"0.000003837555421617"},{"denom":"ASSET14","index":"0.000011567806926671"},{"denom":"ASSET15","index":"0.000008270512670342"},{"denom":"ASSET16","index":"0.000005766305379776"},{"denom":"ASSET17","index":"0.000004095074044376"},{"denom":"ASSET18","index":"0.000001950454261216"},{"denom":"ASSET2","index":"0.000003778308540299"},{"denom":"ASSET3","index":"0.000001105159647558"},{"denom":"ASSET4","index":"0.000010402813795010"},{"denom":"ASSET5","index":"0.000000857613272150"},{"denom":"ASSET6","index":"0.000003491459778273"},{"denom":"ASSET7","index":"0.000005347470991052"},{"denom":"ASSET8","index":"0.000006978226734264"},{"denom":"ASSET9","index":"0.000003013965111016"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000002944371933765"},{"denom":"ASSET1","index":"0.000024968433937291"},{"denom":"ASSET10","index":"0.000019851368221906"},{"denom":"ASSET11","index":"0.000024791952485266"},{"denom":"ASSET12","index":"0.000023600048189968"},{"denom":"ASSET13","index":"0.000007784111470281"},{"denom":"ASSET14","index":"0.000022766914870589"},{"denom":"ASSET15","index":"0.000017894900322998"},{"denom":"ASSET16","index":"0.000011081662183182"},{"denom":"ASSET17","index":"0.000008672317440622"},{"denom":"ASSET18","index":"0.000003599691097086"},{"denom":"ASSET2","index":"0.000007555380586873"},{"denom":"ASSET3","index":"0.000002101847815188"},{"denom":"ASSET4","index":"0.000020244169178497"},{"denom":"ASSET5","index":"0.000001637098640985"},{"denom":"ASSET6","index":"0.000006609166185649"},{"denom":"ASSET7","index":"0.000010374399402552"},{"denom":"ASSET8","index":"0.000014150620453773"},{"denom":"ASSET9","index":"0.000006009906313007"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001449310882227"},{"denom":"ASSET1","index":"0.000012082282763787"},{"denom":"ASSET10","index":"0.000008417588941675"},{"denom":"ASSET11","index":"0.000011688148164511"},{"denom":"ASSET12","index":"0.000010525234539176"},{"denom":"ASSET13","index":"0.000003621923721366"},{"denom":"ASSET14","index":"0.000010918286351091"},{"denom":"ASSET15","index":"0.000007806355476589"},{"denom":"ASSET16","index":"0.000005442630668295"},{"denom":"ASSET17","index":"0.000003865550877512"},{"denom":"ASSET18","index":"0.000001841279906781"},{"denom":"ASSET2","index":"0.000003566701565973"},{"denom":"ASSET3","index":"0.000001043265621984"},{"denom":"ASSET4","index":"0.000009818715786353"},{"denom":"ASSET5","index":"0.000000809924945764"},{"denom":"ASSET6","index":"0.000003295463332131"},{"denom":"ASSET7","index":"0.000005047413281659"},{"denom":"ASSET8","index":"0.000006586595514820"},{"denom":"ASSET9","index":"0.000002844482396421"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000002938303361264"},{"denom":"ASSET1","index":"0.000024939884544734"},{"denom":"ASSET10","index":"0.000019970621943114"},{"denom":"ASSET11","index":"0.000024800280810198"},{"denom":"ASSET12","index":"0.000023679745396670"},{"denom":"ASSET13","index":"0.000007792253675830"},{"denom":"ASSET14","index":"0.000022752532795075"},{"denom":"ASSET15","index":"0.000017976341528508"},{"denom":"ASSET16","index":"0.000011059313296089"},{"denom":"ASSET17","index":"0.000008702160495382"},{"denom":"ASSET18","index":"0.000003584018468858"},{"denom":"ASSET2","index":"0.000007557839698908"},{"denom":"ASSET3","index":"0.000002096442663552"},{"denom":"ASSET4","index":"0.000020217858094708"},{"denom":"ASSET5","index":"0.000001633684136995"},{"denom":"ASSET6","index":"0.000006589976909255"},{"denom":"ASSET7","index":"0.000010359339015905"},{"denom":"ASSET8","index":"0.000014165755580726"},{"denom":"ASSET9","index":"0.000006010291774725"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001731982701050"},{"denom":"ASSET1","index":"0.000014440617081118"},{"denom":"ASSET10","index":"0.000010060714066040"},{"denom":"ASSET11","index":"0.000013969585405988"},{"denom":"ASSET12","index":"0.000012579542501729"},{"denom":"ASSET13","index":"0.000004329188348588"},{"denom":"ASSET14","index":"0.000013049805772821"},{"denom":"ASSET15","index":"0.000009329961826155"},{"denom":"ASSET16","index":"0.000006505308583448"},{"denom":"ASSET17","index":"0.000004619645074851"},{"denom":"ASSET18","index":"0.000002200709164068"},{"denom":"ASSET2","index":"0.000004262337197306"},{"denom":"ASSET3","index":"0.000001247119753241"},{"denom":"ASSET4","index":"0.000011735066464260"},{"denom":"ASSET5","index":"0.000000967420683506"},{"denom":"ASSET6","index":"0.000003938839097420"},{"denom":"ASSET7","index":"0.000006032740100243"},{"denom":"ASSET8","index":"0.000007872299366576"},{"denom":"ASSET9","index":"0.000003400187866969"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003329715418659"},{"denom":"ASSET1","index":"0.000028238028843607"},{"denom":"ASSET10","index":"0.000022458342297172"},{"denom":"ASSET11","index":"0.000028040237741643"},{"denom":"ASSET12","index":"0.000026695793846360"},{"denom":"ASSET13","index":"0.000008804253880653"},{"denom":"ASSET14","index":"0.000025748953032298"},{"denom":"ASSET15","index":"0.000020243324641083"},{"denom":"ASSET16","index":"0.000012532507824147"},{"denom":"ASSET17","index":"0.000009809802042254"},{"denom":"ASSET18","index":"0.000004070975493464"},{"denom":"ASSET2","index":"0.000008545109234155"},{"denom":"ASSET3","index":"0.000002377197518329"},{"denom":"ASSET4","index":"0.000022894451839245"},{"denom":"ASSET5","index":"0.000001851122407848"},{"denom":"ASSET6","index":"0.000007473999475476"},{"denom":"ASSET7","index":"0.000011732969702935"},{"denom":"ASSET8","index":"0.000016005536556726"},{"denom":"ASSET9","index":"0.000006797137295338"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001649988907243"},{"denom":"ASSET1","index":"0.000013756519537767"},{"denom":"ASSET10","index":"0.000009584361794534"},{"denom":"ASSET11","index":"0.000013307506163009"},{"denom":"ASSET12","index":"0.000011983307415229"},{"denom":"ASSET13","index":"0.000004124070634826"},{"denom":"ASSET14","index":"0.000012431118612277"},{"denom":"ASSET15","index":"0.000008888300900330"},{"denom":"ASSET16","index":"0.000006196625007203"},{"denom":"ASSET17","index":"0.000004401172597026"},{"denom":"ASSET18","index":"0.000002096597926581"},{"denom":"ASSET2","index":"0.000004060355216185"},{"denom":"ASSET3","index":"0.000001187751577673"},{"denom":"ASSET4","index":"0.000011179050527108"},{"denom":"ASSET5","index":"0.000000922070303720"},{"denom":"ASSET6","index":"0.000003752597722375"},{"denom":"ASSET7","index":"0.000005747010543590"},{"denom":"ASSET8","index":"0.000007499184556200"},{"denom":"ASSET9","index":"0.000003238666751267"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003269082759145"},{"denom":"ASSET1","index":"0.000027736662456421"},{"denom":"ASSET10","index":"0.000022145815740722"},{"denom":"ASSET11","index":"0.000027564157079872"},{"denom":"ASSET12","index":"0.000026286254396013"},{"denom":"ASSET13","index":"0.000008658548128401"},{"denom":"ASSET14","index":"0.000025298253418871"},{"denom":"ASSET15","index":"0.000019946084058089"},{"denom":"ASSET16","index":"0.000012303266096103"},{"denom":"ASSET17","index":"0.000009659898104260"},{"denom":"ASSET18","index":"0.000003991565584036"},{"denom":"ASSET2","index":"0.000008399501371576"},{"denom":"ASSET3","index":"0.000002333103515211"},{"denom":"ASSET4","index":"0.000022486071398850"},{"denom":"ASSET5","index":"0.000001817550334619"},{"denom":"ASSET6","index":"0.000007334517845971"},{"denom":"ASSET7","index":"0.000011522603065826"},{"denom":"ASSET8","index":"0.000015739883934035"},{"denom":"ASSET9","index":"0.000006680430297789"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001707974867576"},{"denom":"ASSET1","index":"0.000014238090744503"},{"denom":"ASSET10","index":"0.000009920037235236"},{"denom":"ASSET11","index":"0.000013773690453356"},{"denom":"ASSET12","index":"0.000012403461252069"},{"denom":"ASSET13","index":"0.000004268385028930"},{"denom":"ASSET14","index":"0.000012866619831208"},{"denom":"ASSET15","index":"0.000009199844270355"},{"denom":"ASSET16","index":"0.000006414063379473"},{"denom":"ASSET17","index":"0.000004555220502875"},{"denom":"ASSET18","index":"0.000002169891734707"},{"denom":"ASSET2","index":"0.000004203195148489"},{"denom":"ASSET3","index":"0.000001229294888332"},{"denom":"ASSET4","index":"0.000011570893350426"},{"denom":"ASSET5","index":"0.000000954255678468"},{"denom":"ASSET6","index":"0.000003884075162326"},{"denom":"ASSET7","index":"0.000005948421376317"},{"denom":"ASSET8","index":"0.000007761941764609"},{"denom":"ASSET9","index":"0.000003352622422724"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003075387603983"},{"denom":"ASSET1","index":"0.000026047450678709"},{"denom":"ASSET10","index":"0.000020531243448578"},{"denom":"ASSET11","index":"0.000025816927992783"},{"denom":"ASSET12","index":"0.000024485469945303"},{"denom":"ASSET13","index":"0.000008098391373250"},{"denom":"ASSET14","index":"0.000023735883509134"},{"denom":"ASSET15","index":"0.000018540774078871"},{"denom":"ASSET16","index":"0.000011572711306393"},{"denom":"ASSET17","index":"0.000008997644319689"},{"denom":"ASSET18","index":"0.000003770348288081"},{"denom":"ASSET2","index":"0.000007868945206789"},{"denom":"ASSET3","index":"0.000002196489262864"},{"denom":"ASSET4","index":"0.000021122354693053"},{"denom":"ASSET5","index":"0.000001710501624761"},{"denom":"ASSET6","index":"0.000006909892735753"},{"denom":"ASSET7","index":"0.000010827333344051"},{"denom":"ASSET8","index":"0.000014723239896475"},{"denom":"ASSET9","index":"0.000006260042064096"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001779156074987"},{"denom":"ASSET1","index":"0.000014834764457923"},{"denom":"ASSET10","index":"0.000010335215703318"},{"denom":"ASSET11","index":"0.000014351450406057"},{"denom":"ASSET12","index":"0.000012923397473821"},{"denom":"ASSET13","index":"0.000004447014618532"},{"denom":"ASSET14","index":"0.000013405835956753"},{"denom":"ASSET15","index":"0.000009584853126417"},{"denom":"ASSET16","index":"0.000006682342108415"},{"denom":"ASSET17","index":"0.000004745583625211"},{"denom":"ASSET18","index":"0.000002260718988984"},{"denom":"ASSET2","index":"0.000004378720241638"},{"denom":"ASSET3","index":"0.000001280957351233"},{"denom":"ASSET4","index":"0.000012055708659691"},{"denom":"ASSET5","index":"0.000000993770740704"},{"denom":"ASSET6","index":"0.000004046879615447"},{"denom":"ASSET7","index":"0.000006197276918679"},{"denom":"ASSET8","index":"0.000008086754679418"},{"denom":"ASSET9","index":"0.000003492644479883"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003478645419875"},{"denom":"ASSET1","index":"0.000029510728520321"},{"denom":"ASSET10","index":"0.000023521700007579"},{"denom":"ASSET11","index":"0.000029317721838376"},{"denom":"ASSET12","index":"0.000027938200533330"},{"denom":"ASSET13","index":"0.000009206643656085"},{"denom":"ASSET14","index":"0.000026913511393693"},{"denom":"ASSET15","index":"0.000021192735957156"},{"denom":"ASSET16","index":"0.000013092928863665"},{"denom":"ASSET17","index":"0.000010265835619821"},{"denom":"ASSET18","index":"0.000004249633310572"},{"denom":"ASSET2","index":"0.000008933634051769"},{"denom":"ASSET3","index":"0.000002482776919113"},{"denom":"ASSET4","index":"0.000023925662277258"},{"denom":"ASSET5","index":"0.000001933519521756"},{"denom":"ASSET6","index":"0.000007806757132876"},{"denom":"ASSET7","index":"0.000012260200744601"},{"denom":"ASSET8","index":"0.000016737737824425"},{"denom":"ASSET9","index":"0.000007106044722519"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001752700098923"},{"denom":"ASSET1","index":"0.000014612940709519"},{"denom":"ASSET10","index":"0.000010180696541309"},{"denom":"ASSET11","index":"0.000014136053678762"},{"denom":"ASSET12","index":"0.000012730078503378"},{"denom":"ASSET13","index":"0.000004380628160175"},{"denom":"ASSET14","index":"0.000013205843447004"},{"denom":"ASSET15","index":"0.000009441241121853"},{"denom":"ASSET16","index":"0.000006583285198706"},{"denom":"ASSET17","index":"0.000004674614988548"},{"denom":"ASSET18","index":"0.000002226220868286"},{"denom":"ASSET2","index":"0.000004313302932304"},{"denom":"ASSET3","index":"0.000001261225935460"},{"denom":"ASSET4","index":"0.000011875048109410"},{"denom":"ASSET5","index":"0.000000979582065531"},{"denom":"ASSET6","index":"0.000003985653489996"},{"denom":"ASSET7","index":"0.000006105276080818"},{"denom":"ASSET8","index":"0.000007965696544335"},{"denom":"ASSET9","index":"0.000003440319144236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003327512121722"},{"denom":"ASSET1","index":"0.000028211822531533"},{"denom":"ASSET10","index":"0.000022399629444355"},{"denom":"ASSET11","index":"0.000028004032167971"},{"denom":"ASSET12","index":"0.000026643127370344"},{"denom":"ASSET13","index":"0.000008791339050068"},{"denom":"ASSET14","index":"0.000025722152469956"},{"denom":"ASSET15","index":"0.000020197596080044"},{"denom":"ASSET16","index":"0.000012523737733641"},{"denom":"ASSET17","index":"0.000009790102863953"},{"denom":"ASSET18","index":"0.000004069245825383"},{"denom":"ASSET2","index":"0.000008534453115749"},{"denom":"ASSET3","index":"0.000002375171252372"},{"denom":"ASSET4","index":"0.000022873545881432"},{"denom":"ASSET5","index":"0.000001850500835715"},{"denom":"ASSET6","index":"0.000007470212303630"},{"denom":"ASSET7","index":"0.000011723166108277"},{"denom":"ASSET8","index":"0.000015981595788329"},{"denom":"ASSET9","index":"0.000006788341225254"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001434713876400"},{"denom":"ASSET1","index":"0.000011974044460331"},{"denom":"ASSET10","index":"0.000008340728508476"},{"denom":"ASSET11","index":"0.000011582406348125"},{"denom":"ASSET12","index":"0.000010430757641934"},{"denom":"ASSET13","index":"0.000003588723493535"},{"denom":"ASSET14","index":"0.000010820456951604"},{"denom":"ASSET15","index":"0.000007735822117345"},{"denom":"ASSET16","index":"0.000005393748654249"},{"denom":"ASSET17","index":"0.000003829135007959"},{"denom":"ASSET18","index":"0.000001824413186071"},{"denom":"ASSET2","index":"0.000003534437022536"},{"denom":"ASSET3","index":"0.000001033381751515"},{"denom":"ASSET4","index":"0.000009730849926555"},{"denom":"ASSET5","index":"0.000000802664249770"},{"denom":"ASSET6","index":"0.000003264943470077"},{"denom":"ASSET7","index":"0.000005002110542043"},{"denom":"ASSET8","index":"0.000006526009335083"},{"denom":"ASSET9","index":"0.000002819018886872"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000002895048613815"},{"denom":"ASSET1","index":"0.000024589366099895"},{"denom":"ASSET10","index":"0.000019676065498265"},{"denom":"ASSET11","index":"0.000024447379266412"},{"denom":"ASSET12","index":"0.000023337478265694"},{"denom":"ASSET13","index":"0.000007679998629802"},{"denom":"ASSET14","index":"0.000022431328797509"},{"denom":"ASSET15","index":"0.000017714358679290"},{"denom":"ASSET16","index":"0.000010904445776568"},{"denom":"ASSET17","index":"0.000008574179211920"},{"denom":"ASSET18","index":"0.000003534399202209"},{"denom":"ASSET2","index":"0.000007450371795821"},{"denom":"ASSET3","index":"0.000002066219984895"},{"denom":"ASSET4","index":"0.000019933989143940"},{"denom":"ASSET5","index":"0.000001610899827710"},{"denom":"ASSET6","index":"0.000006497050827728"},{"denom":"ASSET7","index":"0.000010213894093182"},{"denom":"ASSET8","index":"0.000013962110633776"},{"denom":"ASSET9","index":"0.000005925048173997"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001401536005232"},{"denom":"ASSET1","index":"0.000011690786017211"},{"denom":"ASSET10","index":"0.000008143726832164"},{"denom":"ASSET11","index":"0.000011307987636928"},{"denom":"ASSET12","index":"0.000010184289165772"},{"denom":"ASSET13","index":"0.000003503840013080"},{"denom":"ASSET14","index":"0.000010564000462344"},{"denom":"ASSET15","index":"0.000007554093843178"},{"denom":"ASSET16","index":"0.000005266564812612"},{"denom":"ASSET17","index":"0.000003738458375190"},{"denom":"ASSET18","index":"0.000001781247301804"},{"denom":"ASSET2","index":"0.000003448272506265"},{"denom":"ASSET3","index":"0.000001009476373813"},{"denom":"ASSET4","index":"0.000009498956581716"},{"denom":"ASSET5","index":"0.000000781032179127"},{"denom":"ASSET6","index":"0.000003188957474460"},{"denom":"ASSET7","index":"0.000004883766432329"},{"denom":"ASSET8","index":"0.000006371740781496"},{"denom":"ASSET9","index":"0.000002750591587361"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003071913026336"},{"denom":"ASSET1","index":"0.000026115211920195"},{"denom":"ASSET10","index":"0.000021104918039272"},{"denom":"ASSET11","index":"0.000026018207650283"},{"denom":"ASSET12","index":"0.000024942011742431"},{"denom":"ASSET13","index":"0.000008182453133262"},{"denom":"ASSET14","index":"0.000023839798810024"},{"denom":"ASSET15","index":"0.000018963275072170"},{"denom":"ASSET16","index":"0.000011567273660047"},{"denom":"ASSET17","index":"0.000009164652819502"},{"denom":"ASSET18","index":"0.000003735860972186"},{"denom":"ASSET2","index":"0.000007925194415041"},{"denom":"ASSET3","index":"0.000002190810612048"},{"denom":"ASSET4","index":"0.000021165118890878"},{"denom":"ASSET5","index":"0.000001704606606646"},{"denom":"ASSET6","index":"0.000006884812645629"},{"denom":"ASSET7","index":"0.000010842612570084"},{"denom":"ASSET8","index":"0.000014874699612932"},{"denom":"ASSET9","index":"0.000006301602876980"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001534549585700"},{"denom":"ASSET1","index":"0.000012795681230217"},{"denom":"ASSET10","index":"0.000008914897664776"},{"denom":"ASSET11","index":"0.000012378406858633"},{"denom":"ASSET12","index":"0.000011146809898878"},{"denom":"ASSET13","index":"0.000003835934265229"},{"denom":"ASSET14","index":"0.000011563204872419"},{"denom":"ASSET15","index":"0.000008267660704848"},{"denom":"ASSET16","index":"0.000005764014475342"},{"denom":"ASSET17","index":"0.000004093597891939"},{"denom":"ASSET18","index":"0.000001950065161198"},{"denom":"ASSET2","index":"0.000003777014596322"},{"denom":"ASSET3","index":"0.000001104963641508"},{"denom":"ASSET4","index":"0.000010398442163960"},{"denom":"ASSET5","index":"0.000000857413092297"},{"denom":"ASSET6","index":"0.000003490330834180"},{"denom":"ASSET7","index":"0.000005345421006692"},{"denom":"ASSET8","index":"0.000006975385280099"},{"denom":"ASSET9","index":"0.000003012817696624"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003034954909236"},{"denom":"ASSET1","index":"0.000025752158165977"},{"denom":"ASSET10","index":"0.000020556858138008"},{"denom":"ASSET11","index":"0.000025591676311293"},{"denom":"ASSET12","index":"0.000024402528250789"},{"denom":"ASSET13","index":"0.000008038375291107"},{"denom":"ASSET14","index":"0.000023488313497799"},{"denom":"ASSET15","index":"0.000018516037809802"},{"denom":"ASSET16","index":"0.000011423945454084"},{"denom":"ASSET17","index":"0.000008967524527402"},{"denom":"ASSET18","index":"0.000003706330058793"},{"denom":"ASSET2","index":"0.000007798931182527"},{"denom":"ASSET3","index":"0.000002166419358500"},{"denom":"ASSET4","index":"0.000020877722621984"},{"denom":"ASSET5","index":"0.000001687498984799"},{"denom":"ASSET6","index":"0.000006810207932767"},{"denom":"ASSET7","index":"0.000010698180555138"},{"denom":"ASSET8","index":"0.000014612921845389"},{"denom":"ASSET9","index":"0.000006203015740356"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001658482037183"},{"denom":"ASSET1","index":"0.000013862588923046"},{"denom":"ASSET10","index":"0.000009655943522610"},{"denom":"ASSET11","index":"0.000013408077810815"},{"denom":"ASSET12","index":"0.000012073555821711"},{"denom":"ASSET13","index":"0.000004153457929856"},{"denom":"ASSET14","index":"0.000012528066933942"},{"denom":"ASSET15","index":"0.000008954835955871"},{"denom":"ASSET16","index":"0.000006242274956279"},{"denom":"ASSET17","index":"0.000004433900956551"},{"denom":"ASSET18","index":"0.000002112993149414"},{"denom":"ASSET2","index":"0.000004090600010079"},{"denom":"ASSET3","index":"0.000001194300475756"},{"denom":"ASSET4","index":"0.000011266073313811"},{"denom":"ASSET5","index":"0.000000928363122855"},{"denom":"ASSET6","index":"0.000003781145635794"},{"denom":"ASSET7","index":"0.000005787763844048"},{"denom":"ASSET8","index":"0.000007557456046990"},{"denom":"ASSET9","index":"0.000003263776603787"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003188277912377"},{"denom":"ASSET1","index":"0.000027072180177666"},{"denom":"ASSET10","index":"0.000021525590492702"},{"denom":"ASSET11","index":"0.000026879695640981"},{"denom":"ASSET12","index":"0.000025588321740665"},{"denom":"ASSET13","index":"0.000008437670891103"},{"denom":"ASSET14","index":"0.000024686413843557"},{"denom":"ASSET15","index":"0.000019403734038796"},{"denom":"ASSET16","index":"0.000012012351193227"},{"denom":"ASSET17","index":"0.000009402991763462"},{"denom":"ASSET18","index":"0.000003903246578743"},{"denom":"ASSET2","index":"0.000008191237466303"},{"denom":"ASSET3","index":"0.000002276140738265"},{"denom":"ASSET4","index":"0.000021950324608304"},{"denom":"ASSET5","index":"0.000001774065663090"},{"denom":"ASSET6","index":"0.000007165524818145"},{"denom":"ASSET7","index":"0.000011244820309610"},{"denom":"ASSET8","index":"0.000015343724796373"},{"denom":"ASSET9","index":"0.000006516357987660"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001453411320498"},{"denom":"ASSET1","index":"0.000012118137400313"},{"denom":"ASSET10","index":"0.000008442891188019"},{"denom":"ASSET11","index":"0.000011723343510399"},{"denom":"ASSET12","index":"0.000010556870017106"},{"denom":"ASSET13","index":"0.000003632917795231"},{"denom":"ASSET14","index":"0.000010951256903010"},{"denom":"ASSET15","index":"0.000007829943148627"},{"denom":"ASSET16","index":"0.000005459144789091"},{"denom":"ASSET17","index":"0.000003877120201363"},{"denom":"ASSET18","index":"0.000001846984198382"},{"denom":"ASSET2","index":"0.000003577158245830"},{"denom":"ASSET3","index":"0.000001046407310278"},{"denom":"ASSET4","index":"0.000009848276035312"},{"denom":"ASSET5","index":"0.000000811973000390"},{"denom":"ASSET6","index":"0.000003305686571013"},{"denom":"ASSET7","index":"0.000005062722883136"},{"denom":"ASSET8","index":"0.000006606082089893"},{"denom":"ASSET9","index":"0.000002853098111648"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000002979919393708"},{"denom":"ASSET1","index":"0.000025298333716476"},{"denom":"ASSET10","index":"0.000020286143685892"},{"denom":"ASSET11","index":"0.000025164674259360"},{"denom":"ASSET12","index":"0.000024041723171534"},{"denom":"ASSET13","index":"0.000007907785176595"},{"denom":"ASSET14","index":"0.000023082402053339"},{"denom":"ASSET15","index":"0.000018255332392862"},{"denom":"ASSET16","index":"0.000011216675450010"},{"denom":"ASSET17","index":"0.000008835128154455"},{"denom":"ASSET18","index":"0.000003633337151635"},{"denom":"ASSET2","index":"0.000007668586747858"},{"denom":"ASSET3","index":"0.000002126085354033"},{"denom":"ASSET4","index":"0.000020508686269066"},{"denom":"ASSET5","index":"0.000001656307666438"},{"denom":"ASSET6","index":"0.000006683025235204"},{"denom":"ASSET7","index":"0.000010507859389263"},{"denom":"ASSET8","index":"0.000014375637436113"},{"denom":"ASSET9","index":"0.000006098257618497"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001779729226299"},{"denom":"ASSET1","index":"0.000014840802182142"},{"denom":"ASSET10","index":"0.000010337989986643"},{"denom":"ASSET11","index":"0.000014356968690293"},{"denom":"ASSET12","index":"0.000012927350131463"},{"denom":"ASSET13","index":"0.000004449323065747"},{"denom":"ASSET14","index":"0.000013411183623312"},{"denom":"ASSET15","index":"0.000009589142170113"},{"denom":"ASSET16","index":"0.000006683709894939"},{"denom":"ASSET17","index":"0.000004745944603463"},{"denom":"ASSET18","index":"0.000002261131394068"},{"denom":"ASSET2","index":"0.000004378814667437"},{"denom":"ASSET3","index":"0.000001281307789972"},{"denom":"ASSET4","index":"0.000012059367435030"},{"denom":"ASSET5","index":"0.000000994411548574"},{"denom":"ASSET6","index":"0.000004048154592606"},{"denom":"ASSET7","index":"0.000006199876403090"},{"denom":"ASSET8","index":"0.000008089015212973"},{"denom":"ASSET9","index":"0.000003493812702447"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003433377044021"},{"denom":"ASSET1","index":"0.000029119719093870"},{"denom":"ASSET10","index":"0.000023168779363922"},{"denom":"ASSET11","index":"0.000028918871222836"},{"denom":"ASSET12","index":"0.000027536680421684"},{"denom":"ASSET13","index":"0.000009079853140421"},{"denom":"ASSET14","index":"0.000026553415276013"},{"denom":"ASSET15","index":"0.000020883272198610"},{"denom":"ASSET16","index":"0.000012920460029656"},{"denom":"ASSET17","index":"0.000010116347697920"},{"denom":"ASSET18","index":"0.000004196183907349"},{"denom":"ASSET2","index":"0.000008810148159861"},{"denom":"ASSET3","index":"0.000002451192479374"},{"denom":"ASSET4","index":"0.000023608026429735"},{"denom":"ASSET5","index":"0.000001908186346512"},{"denom":"ASSET6","index":"0.000007706415634871"},{"denom":"ASSET7","index":"0.000012098308533034"},{"denom":"ASSET8","index":"0.000016505861275643"},{"denom":"ASSET9","index":"0.000007009790471677"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001595670533734"},{"denom":"ASSET1","index":"0.000013304245337308"},{"denom":"ASSET10","index":"0.000009268754359880"},{"denom":"ASSET11","index":"0.000012870227612725"},{"denom":"ASSET12","index":"0.000011589729681675"},{"denom":"ASSET13","index":"0.000003988302473145"},{"denom":"ASSET14","index":"0.000012022582258004"},{"denom":"ASSET15","index":"0.000008595881243245"},{"denom":"ASSET16","index":"0.000005992940044003"},{"denom":"ASSET17","index":"0.000004256286571545"},{"denom":"ASSET18","index":"0.000002027357961809"},{"denom":"ASSET2","index":"0.000003927132189815"},{"denom":"ASSET3","index":"0.000001148836178358"},{"denom":"ASSET4","index":"0.000010811993222188"},{"denom":"ASSET5","index":"0.000000891338414244"},{"denom":"ASSET6","index":"0.000003628854236813"},{"denom":"ASSET7","index":"0.000005557757171166"},{"denom":"ASSET8","index":"0.000007252465306483"},{"denom":"ASSET9","index":"0.000003132501080646"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003118409098775"},{"denom":"ASSET1","index":"0.000026454243753489"},{"denom":"ASSET10","index":"0.000021084585905412"},{"denom":"ASSET11","index":"0.000026280950742513"},{"denom":"ASSET12","index":"0.000025043390497745"},{"denom":"ASSET13","index":"0.000008253298424938"},{"denom":"ASSET14","index":"0.000024125697910719"},{"denom":"ASSET15","index":"0.000018997425080839"},{"denom":"ASSET16","index":"0.000011737294217995"},{"denom":"ASSET17","index":"0.000009202973625129"},{"denom":"ASSET18","index":"0.000003809493270778"},{"denom":"ASSET2","index":"0.000008008868325931"},{"denom":"ASSET3","index":"0.000002225819587877"},{"denom":"ASSET4","index":"0.000021447702379813"},{"denom":"ASSET5","index":"0.000001733713847172"},{"denom":"ASSET6","index":"0.000006998355968525"},{"denom":"ASSET7","index":"0.000010990481127196"},{"denom":"ASSET8","index":"0.000015003824321723"},{"denom":"ASSET9","index":"0.000006370091157596"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001536288093705"},{"denom":"ASSET1","index":"0.000012808796131863"},{"denom":"ASSET10","index":"0.000008924322337818"},{"denom":"ASSET11","index":"0.000012391382492026"},{"denom":"ASSET12","index":"0.000011158327625467"},{"denom":"ASSET13","index":"0.000003840018305497"},{"denom":"ASSET14","index":"0.000011575273312793"},{"denom":"ASSET15","index":"0.000008276208110044"},{"denom":"ASSET16","index":"0.000005770322413488"},{"denom":"ASSET17","index":"0.000004097860139074"},{"denom":"ASSET18","index":"0.000001951829923499"},{"denom":"ASSET2","index":"0.000003781056289108"},{"denom":"ASSET3","index":"0.000001105771783560"},{"denom":"ASSET4","index":"0.000010409603607822"},{"denom":"ASSET5","index":"0.000000858224905226"},{"denom":"ASSET6","index":"0.000003494201399847"},{"denom":"ASSET7","index":"0.000005351036963607"},{"denom":"ASSET8","index":"0.000006982787369562"},{"denom":"ASSET9","index":"0.000003015953933577"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003103831608428"},{"denom":"ASSET1","index":"0.000026343132935309"},{"denom":"ASSET10","index":"0.000021085436521682"},{"denom":"ASSET11","index":"0.000026194005406126"},{"denom":"ASSET12","index":"0.000025005394550642"},{"denom":"ASSET13","index":"0.000008229918727938"},{"denom":"ASSET14","index":"0.000024032248358707"},{"denom":"ASSET15","index":"0.000018981699828973"},{"denom":"ASSET16","index":"0.000011682673521897"},{"denom":"ASSET17","index":"0.000009189132473525"},{"denom":"ASSET18","index":"0.000003786361913516"},{"denom":"ASSET2","index":"0.000007982150766688"},{"denom":"ASSET3","index":"0.000002214601198569"},{"denom":"ASSET4","index":"0.000021356131094847"},{"denom":"ASSET5","index":"0.000001725369734459"},{"denom":"ASSET6","index":"0.000006962131899100"},{"denom":"ASSET7","index":"0.000010942547729288"},{"denom":"ASSET8","index":"0.000014960973970884"},{"denom":"ASSET9","index":"0.000006348281537724"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001156201861882"},{"denom":"ASSET1","index":"0.000009641528249827"},{"denom":"ASSET10","index":"0.000006717693720376"},{"denom":"ASSET11","index":"0.000009327193051790"},{"denom":"ASSET12","index":"0.000008399128436016"},{"denom":"ASSET13","index":"0.000002890504654704"},{"denom":"ASSET14","index":"0.000008712888981039"},{"denom":"ASSET15","index":"0.000006229813312455"},{"denom":"ASSET16","index":"0.000004343227471224"},{"denom":"ASSET17","index":"0.000003084737373052"},{"denom":"ASSET18","index":"0.000001469387753892"},{"denom":"ASSET2","index":"0.000002846256372714"},{"denom":"ASSET3","index":"0.000000832672215639"},{"denom":"ASSET4","index":"0.000007835393830396"},{"denom":"ASSET5","index":"0.000000645909986459"},{"denom":"ASSET6","index":"0.000002630186839877"},{"denom":"ASSET7","index":"0.000004027742967162"},{"denom":"ASSET8","index":"0.000005256351108664"},{"denom":"ASSET9","index":"0.000002269879400812"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000002648545180722"},{"denom":"ASSET1","index":"0.000022528915692996"},{"denom":"ASSET10","index":"0.000018297756458480"},{"denom":"ASSET11","index":"0.000022469822082599"},{"denom":"ASSET12","index":"0.000021584227648624"},{"denom":"ASSET13","index":"0.000007070243338634"},{"denom":"ASSET14","index":"0.000020574684608302"},{"denom":"ASSET15","index":"0.000016423497937791"},{"denom":"ASSET16","index":"0.000009972839292196"},{"denom":"ASSET17","index":"0.000007932645550822"},{"denom":"ASSET18","index":"0.000003216131666673"},{"denom":"ASSET2","index":"0.000006846442901912"},{"denom":"ASSET3","index":"0.000001888119307859"},{"denom":"ASSET4","index":"0.000018258669735553"},{"denom":"ASSET5","index":"0.000001471345302008"},{"denom":"ASSET6","index":"0.000005932348598922"},{"denom":"ASSET7","index":"0.000009352074075404"},{"denom":"ASSET8","index":"0.000012853047191550"},{"denom":"ASSET9","index":"0.000005442948627063"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001638829976996"},{"denom":"ASSET1","index":"0.000013663699511091"},{"denom":"ASSET10","index":"0.000009519748943981"},{"denom":"ASSET11","index":"0.000013218199388741"},{"denom":"ASSET12","index":"0.000011902774883924"},{"denom":"ASSET13","index":"0.000004095984811686"},{"denom":"ASSET14","index":"0.000012347548252404"},{"denom":"ASSET15","index":"0.000008827879259679"},{"denom":"ASSET16","index":"0.000006154878525580"},{"denom":"ASSET17","index":"0.000004371424528441"},{"denom":"ASSET18","index":"0.000002082149837736"},{"denom":"ASSET2","index":"0.000004033483978861"},{"denom":"ASSET3","index":"0.000001179521531115"},{"denom":"ASSET4","index":"0.000011104072380722"},{"denom":"ASSET5","index":"0.000000915709876282"},{"denom":"ASSET6","index":"0.000003726793845693"},{"denom":"ASSET7","index":"0.000005707924895490"},{"denom":"ASSET8","index":"0.000007448500414296"},{"denom":"ASSET9","index":"0.000003217339382778"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003133427860009"},{"denom":"ASSET1","index":"0.000026571363581284"},{"denom":"ASSET10","index":"0.000021118003104150"},{"denom":"ASSET11","index":"0.000026381510155653"},{"denom":"ASSET12","index":"0.000025108485590780"},{"denom":"ASSET13","index":"0.000008282355352591"},{"denom":"ASSET14","index":"0.000024227637307493"},{"denom":"ASSET15","index":"0.000019037535386694"},{"denom":"ASSET16","index":"0.000011793447009555"},{"denom":"ASSET17","index":"0.000009226841180516"},{"denom":"ASSET18","index":"0.000003831770888939"},{"denom":"ASSET2","index":"0.000008040278303534"},{"denom":"ASSET3","index":"0.000002236402387063"},{"denom":"ASSET4","index":"0.000021543810534784"},{"denom":"ASSET5","index":"0.000001742508705183"},{"denom":"ASSET6","index":"0.000007033989161296"},{"denom":"ASSET7","index":"0.000011040340871930"},{"denom":"ASSET8","index":"0.000015056795520064"},{"denom":"ASSET9","index":"0.000006395464292965"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001556422065682"},{"denom":"ASSET1","index":"0.000012975233747354"},{"denom":"ASSET10","index":"0.000009039925804131"},{"denom":"ASSET11","index":"0.000012551842294036"},{"denom":"ASSET12","index":"0.000011303196313064"},{"denom":"ASSET13","index":"0.000003889859143149"},{"denom":"ASSET14","index":"0.000011725391745328"},{"denom":"ASSET15","index":"0.000008383310245172"},{"denom":"ASSET16","index":"0.000005844954893688"},{"denom":"ASSET17","index":"0.000004150990406731"},{"denom":"ASSET18","index":"0.000001977421476890"},{"denom":"ASSET2","index":"0.000003830058090421"},{"denom":"ASSET3","index":"0.000001120273054448"},{"denom":"ASSET4","index":"0.000010544520290781"},{"denom":"ASSET5","index":"0.000000869507306673"},{"denom":"ASSET6","index":"0.000003539424974160"},{"denom":"ASSET7","index":"0.000005420766093000"},{"denom":"ASSET8","index":"0.000007073268516732"},{"denom":"ASSET9","index":"0.000003055036447059"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003102345998156"},{"denom":"ASSET1","index":"0.000026324295521459"},{"denom":"ASSET10","index":"0.000021034709957123"},{"denom":"ASSET11","index":"0.000026165624152899"},{"denom":"ASSET12","index":"0.000024960753498443"},{"denom":"ASSET13","index":"0.000008219480216908"},{"denom":"ASSET14","index":"0.000024012126304297"},{"denom":"ASSET15","index":"0.000018942125813395"},{"denom":"ASSET16","index":"0.000011676379885795"},{"denom":"ASSET17","index":"0.000009172744202097"},{"denom":"ASSET18","index":"0.000003786686743681"},{"denom":"ASSET2","index":"0.000007973892542195"},{"denom":"ASSET3","index":"0.000002213622154517"},{"denom":"ASSET4","index":"0.000021341514997764"},{"denom":"ASSET5","index":"0.000001724677267981"},{"denom":"ASSET6","index":"0.000006959760131783"},{"denom":"ASSET7","index":"0.000010935767858794"},{"denom":"ASSET8","index":"0.000014942141973689"},{"denom":"ASSET9","index":"0.000006341977499472"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001602535700795"},{"denom":"ASSET1","index":"0.000013360208994045"},{"denom":"ASSET10","index":"0.000009307956057468"},{"denom":"ASSET11","index":"0.000012924500245282"},{"denom":"ASSET12","index":"0.000011638378499862"},{"denom":"ASSET13","index":"0.000004005127453862"},{"denom":"ASSET14","index":"0.000012073279383206"},{"denom":"ASSET15","index":"0.000008632311279566"},{"denom":"ASSET16","index":"0.000006018597363935"},{"denom":"ASSET17","index":"0.000004274146638048"},{"denom":"ASSET18","index":"0.000002036090141777"},{"denom":"ASSET2","index":"0.000003943729682095"},{"denom":"ASSET3","index":"0.000001153631816872"},{"denom":"ASSET4","index":"0.000010857441929150"},{"denom":"ASSET5","index":"0.000000895384171592"},{"denom":"ASSET6","index":"0.000003644280900498"},{"denom":"ASSET7","index":"0.000005581542172809"},{"denom":"ASSET8","index":"0.000007283176031543"},{"denom":"ASSET9","index":"0.000003145827937606"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003144114236048"},{"denom":"ASSET1","index":"0.000026672683120621"},{"denom":"ASSET10","index":"0.000021269722635007"},{"denom":"ASSET11","index":"0.000026500587720899"},{"denom":"ASSET12","index":"0.000025258297912053"},{"denom":"ASSET13","index":"0.000008323039503604"},{"denom":"ASSET14","index":"0.000024326015412045"},{"denom":"ASSET15","index":"0.000019162234595686"},{"denom":"ASSET16","index":"0.000011833945147558"},{"denom":"ASSET17","index":"0.000009281867675434"},{"denom":"ASSET18","index":"0.000003840349431676"},{"denom":"ASSET2","index":"0.000008076055447193"},{"denom":"ASSET3","index":"0.000002244145529651"},{"denom":"ASSET4","index":"0.000021624555086447"},{"denom":"ASSET5","index":"0.000001748086313596"},{"denom":"ASSET6","index":"0.000007055400333314"},{"denom":"ASSET7","index":"0.000011081362186058"},{"denom":"ASSET8","index":"0.000015130336137492"},{"denom":"ASSET9","index":"0.000006423586371910"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001633811359009"},{"denom":"ASSET1","index":"0.000013620164108551"},{"denom":"ASSET10","index":"0.000009487838038290"},{"denom":"ASSET11","index":"0.000013174776703502"},{"denom":"ASSET12","index":"0.000011864685946211"},{"denom":"ASSET13","index":"0.000004082355776036"},{"denom":"ASSET14","index":"0.000012307900729772"},{"denom":"ASSET15","index":"0.000008799117026580"},{"denom":"ASSET16","index":"0.000006135483082238"},{"denom":"ASSET17","index":"0.000004356106083529"},{"denom":"ASSET18","index":"0.000002074853521082"},{"denom":"ASSET2","index":"0.000004019349752882"},{"denom":"ASSET3","index":"0.000001175388225032"},{"denom":"ASSET4","index":"0.000011067333860098"},{"denom":"ASSET5","index":"0.000000912501024979"},{"denom":"ASSET6","index":"0.000003715182744556"},{"denom":"ASSET7","index":"0.000005690095677188"},{"denom":"ASSET8","index":"0.000007423847624648"},{"denom":"ASSET9","index":"0.000003206789316354"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003109600829404"},{"denom":"ASSET1","index":"0.000026362702045617"},{"denom":"ASSET10","index":"0.000020937844947102"},{"denom":"ASSET11","index":"0.000026169598808926"},{"denom":"ASSET12","index":"0.000024901798461360"},{"denom":"ASSET13","index":"0.000008215149609138"},{"denom":"ASSET14","index":"0.000024035954930107"},{"denom":"ASSET15","index":"0.000018878331344314"},{"denom":"ASSET16","index":"0.000011701775976010"},{"denom":"ASSET17","index":"0.000009149505282332"},{"denom":"ASSET18","index":"0.000003801954966508"},{"denom":"ASSET2","index":"0.000007974718303805"},{"denom":"ASSET3","index":"0.000002219037761573"},{"denom":"ASSET4","index":"0.000021373555319687"},{"denom":"ASSET5","index":"0.000001728657323000"},{"denom":"ASSET6","index":"0.000006980294033305"},{"denom":"ASSET7","index":"0.000010954522542925"},{"denom":"ASSET8","index":"0.000014935013269095"},{"denom":"ASSET9","index":"0.000006344057182602"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001356454583190"},{"denom":"ASSET1","index":"0.000011307707773056"},{"denom":"ASSET10","index":"0.000007878355411964"},{"denom":"ASSET11","index":"0.000010938987301217"},{"denom":"ASSET12","index":"0.000009850463994830"},{"denom":"ASSET13","index":"0.000003389876593037"},{"denom":"ASSET14","index":"0.000010218764511690"},{"denom":"ASSET15","index":"0.000007305956775156"},{"denom":"ASSET16","index":"0.000005094053899100"},{"denom":"ASSET17","index":"0.000003617492191826"},{"denom":"ASSET18","index":"0.000001723075280133"},{"denom":"ASSET2","index":"0.000003337802175602"},{"denom":"ASSET3","index":"0.000000976395326909"},{"denom":"ASSET4","index":"0.000009189454857387"},{"denom":"ASSET5","index":"0.000000758018737665"},{"denom":"ASSET6","index":"0.000003084569323074"},{"denom":"ASSET7","index":"0.000004724073562323"},{"denom":"ASSET8","index":"0.000006164519141376"},{"denom":"ASSET9","index":"0.000002662514568862"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000002920257070141"},{"denom":"ASSET1","index":"0.000024811653868653"},{"denom":"ASSET10","index":"0.000020012294768332"},{"denom":"ASSET11","index":"0.000024710629923001"},{"denom":"ASSET12","index":"0.000023666550441425"},{"denom":"ASSET13","index":"0.000007769918885884"},{"denom":"ASSET14","index":"0.000022647790193256"},{"denom":"ASSET15","index":"0.000017987461600930"},{"denom":"ASSET16","index":"0.000010993196459757"},{"denom":"ASSET17","index":"0.000008697266331114"},{"denom":"ASSET18","index":"0.000003553540715950"},{"denom":"ASSET2","index":"0.000007529733395993"},{"denom":"ASSET3","index":"0.000002082581454906"},{"denom":"ASSET4","index":"0.000020111524804667"},{"denom":"ASSET5","index":"0.000001623122955496"},{"denom":"ASSET6","index":"0.000006544727800067"},{"denom":"ASSET7","index":"0.000010303065547743"},{"denom":"ASSET8","index":"0.000014124873274804"},{"denom":"ASSET9","index":"0.000005987532811110"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001730803097805"},{"denom":"ASSET1","index":"0.000014429128492036"},{"denom":"ASSET10","index":"0.000010053081326419"},{"denom":"ASSET11","index":"0.000013956042311970"},{"denom":"ASSET12","index":"0.000012568515161896"},{"denom":"ASSET13","index":"0.000004324123072683"},{"denom":"ASSET14","index":"0.000013038716670133"},{"denom":"ASSET15","index":"0.000009320374681681"},{"denom":"ASSET16","index":"0.000006499165632259"},{"denom":"ASSET17","index":"0.000004615474927481"},{"denom":"ASSET18","index":"0.000002198119934213"},{"denom":"ASSET2","index":"0.000004257775620601"},{"denom":"ASSET3","index":"0.000001243293558590"},{"denom":"ASSET4","index":"0.000011726190987631"},{"denom":"ASSET5","index":"0.000000966365062941"},{"denom":"ASSET6","index":"0.000003934692375677"},{"denom":"ASSET7","index":"0.000006026079452192"},{"denom":"ASSET8","index":"0.000007863615407695"},{"denom":"ASSET9","index":"0.000003395258743528"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003241945367060"},{"denom":"ASSET1","index":"0.000027480716546724"},{"denom":"ASSET10","index":"0.000021780901079221"},{"denom":"ASSET11","index":"0.000027265989011084"},{"denom":"ASSET12","index":"0.000025921947969478"},{"denom":"ASSET13","index":"0.000008556984130745"},{"denom":"ASSET14","index":"0.000025051754134356"},{"denom":"ASSET15","index":"0.000019643848931612"},{"denom":"ASSET16","index":"0.000012200322352703"},{"denom":"ASSET17","index":"0.000009524928673174"},{"denom":"ASSET18","index":"0.000003966981346299"},{"denom":"ASSET2","index":"0.000008309018225650"},{"denom":"ASSET3","index":"0.000002312540225621"},{"denom":"ASSET4","index":"0.000022282443818183"},{"denom":"ASSET5","index":"0.000001802193647755"},{"denom":"ASSET6","index":"0.000007278646216530"},{"denom":"ASSET7","index":"0.000011418356902196"},{"denom":"ASSET8","index":"0.000015557459098515"},{"denom":"ASSET9","index":"0.000006608754258977"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001631665384825"},{"denom":"ASSET1","index":"0.000013602742609312"},{"denom":"ASSET10","index":"0.000009477179623123"},{"denom":"ASSET11","index":"0.000013159027954757"},{"denom":"ASSET12","index":"0.000011849393704263"},{"denom":"ASSET13","index":"0.000004077627053980"},{"denom":"ASSET14","index":"0.000012292493795584"},{"denom":"ASSET15","index":"0.000008788868801652"},{"denom":"ASSET16","index":"0.000006127810000788"},{"denom":"ASSET17","index":"0.000004351722256101"},{"denom":"ASSET18","index":"0.000002072921786447"},{"denom":"ASSET2","index":"0.000004015556167401"},{"denom":"ASSET3","index":"0.000001174430339134"},{"denom":"ASSET4","index":"0.000011054148880171"},{"denom":"ASSET5","index":"0.000000911397275215"},{"denom":"ASSET6","index":"0.000003710118240373"},{"denom":"ASSET7","index":"0.000005682866219766"},{"denom":"ASSET8","index":"0.000007415319974879"},{"denom":"ASSET9","index":"0.000003202489009539"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003079719434352"},{"denom":"ASSET1","index":"0.000026105925494605"},{"denom":"ASSET10","index":"0.000020711970439773"},{"denom":"ASSET11","index":"0.000025910008103106"},{"denom":"ASSET12","index":"0.000024641613628664"},{"denom":"ASSET13","index":"0.000008133110770201"},{"denom":"ASSET14","index":"0.000023800542954419"},{"denom":"ASSET15","index":"0.000018678884312278"},{"denom":"ASSET16","index":"0.000011589749383737"},{"denom":"ASSET17","index":"0.000009055208366452"},{"denom":"ASSET18","index":"0.000003767697278786"},{"denom":"ASSET2","index":"0.000007896757003962"},{"denom":"ASSET3","index":"0.000002198611212202"},{"denom":"ASSET4","index":"0.000021166859181475"},{"denom":"ASSET5","index":"0.000001712166144109"},{"denom":"ASSET6","index":"0.000006913910929446"},{"denom":"ASSET7","index":"0.000010848237821893"},{"denom":"ASSET8","index":"0.000014785764472138"},{"denom":"ASSET9","index":"0.000006281127943464"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001520990142264"},{"denom":"ASSET1","index":"0.000012680102108631"},{"denom":"ASSET10","index":"0.000008834326429376"},{"denom":"ASSET11","index":"0.000012266893306329"},{"denom":"ASSET12","index":"0.000011046354389007"},{"denom":"ASSET13","index":"0.000003801591675587"},{"denom":"ASSET14","index":"0.000011458856247250"},{"denom":"ASSET15","index":"0.000008193128168148"},{"denom":"ASSET16","index":"0.000005712107994187"},{"denom":"ASSET17","index":"0.000004056798480773"},{"denom":"ASSET18","index":"0.000001932431584420"},{"denom":"ASSET2","index":"0.000003743268790745"},{"denom":"ASSET3","index":"0.000001095056346905"},{"denom":"ASSET4","index":"0.000010304770071444"},{"denom":"ASSET5","index":"0.000000849746758541"},{"denom":"ASSET6","index":"0.000003459077279153"},{"denom":"ASSET7","index":"0.000005297485303768"},{"denom":"ASSET8","index":"0.000006912499005837"},{"denom":"ASSET9","index":"0.000002985778231863"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003063170165442"},{"denom":"ASSET1","index":"0.000025996358951928"},{"denom":"ASSET10","index":"0.000020799618544072"},{"denom":"ASSET11","index":"0.000025846936295403"},{"denom":"ASSET12","index":"0.000024670295822131"},{"denom":"ASSET13","index":"0.000008120644896033"},{"denom":"ASSET14","index":"0.000023715222729701"},{"denom":"ASSET15","index":"0.000018725986369791"},{"denom":"ASSET16","index":"0.000011529047312284"},{"denom":"ASSET17","index":"0.000009065966880203"},{"denom":"ASSET18","index":"0.000003737409049681"},{"denom":"ASSET2","index":"0.000007876841198043"},{"denom":"ASSET3","index":"0.000002185992003768"},{"denom":"ASSET4","index":"0.000021074917159843"},{"denom":"ASSET5","index":"0.000001702800306431"},{"denom":"ASSET6","index":"0.000006871093729972"},{"denom":"ASSET7","index":"0.000010798830402478"},{"denom":"ASSET8","index":"0.000014762015379742"},{"denom":"ASSET9","index":"0.000006264517424621"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001519669987195"},{"denom":"ASSET1","index":"0.000012676623405048"},{"denom":"ASSET10","index":"0.000008831600766261"},{"denom":"ASSET11","index":"0.000012262448940742"},{"denom":"ASSET12","index":"0.000011042591812037"},{"denom":"ASSET13","index":"0.000003799690110356"},{"denom":"ASSET14","index":"0.000011454705706870"},{"denom":"ASSET15","index":"0.000008189733375059"},{"denom":"ASSET16","index":"0.000005709838012905"},{"denom":"ASSET17","index":"0.000004055200725152"},{"denom":"ASSET18","index":"0.000001931783882027"},{"denom":"ASSET2","index":"0.000003741994165079"},{"denom":"ASSET3","index":"0.000001094162390780"},{"denom":"ASSET4","index":"0.000010301817086076"},{"denom":"ASSET5","index":"0.000000848954623355"},{"denom":"ASSET6","index":"0.000003457635577645"},{"denom":"ASSET7","index":"0.000005295663548598"},{"denom":"ASSET8","index":"0.000006910119731604"},{"denom":"ASSET9","index":"0.000002984734883325"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003051401969864"},{"denom":"ASSET1","index":"0.000025903543471827"},{"denom":"ASSET10","index":"0.000020717104247015"},{"denom":"ASSET11","index":"0.000025751820078700"},{"denom":"ASSET12","index":"0.000024575704795191"},{"denom":"ASSET13","index":"0.000008089460542782"},{"denom":"ASSET14","index":"0.000023629519286555"},{"denom":"ASSET15","index":"0.000018652475785738"},{"denom":"ASSET16","index":"0.000011487598582804"},{"denom":"ASSET17","index":"0.000009031027466449"},{"denom":"ASSET18","index":"0.000003724432134289"},{"denom":"ASSET2","index":"0.000007847588407204"},{"denom":"ASSET3","index":"0.000002177732310384"},{"denom":"ASSET4","index":"0.000021000151540181"},{"denom":"ASSET5","index":"0.000001696165098739"},{"denom":"ASSET6","index":"0.000006846477479182"},{"denom":"ASSET7","index":"0.000010760324594985"},{"denom":"ASSET8","index":"0.000014706911787677"},{"denom":"ASSET9","index":"0.000006241583848480"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001392192847149"},{"denom":"ASSET1","index":"0.000011611450847386"},{"denom":"ASSET10","index":"0.000008088781067478"},{"denom":"ASSET11","index":"0.000011231761889073"},{"denom":"ASSET12","index":"0.000010115195100551"},{"denom":"ASSET13","index":"0.000003480482117873"},{"denom":"ASSET14","index":"0.000010492071548062"},{"denom":"ASSET15","index":"0.000007502372565194"},{"denom":"ASSET16","index":"0.000005229863836918"},{"denom":"ASSET17","index":"0.000003713920514466"},{"denom":"ASSET18","index":"0.000001769069294661"},{"denom":"ASSET2","index":"0.000003427044412629"},{"denom":"ASSET3","index":"0.000001002660101028"},{"denom":"ASSET4","index":"0.000009435973741790"},{"denom":"ASSET5","index":"0.000000777659236842"},{"denom":"ASSET6","index":"0.000003166887163415"},{"denom":"ASSET7","index":"0.000004850174878604"},{"denom":"ASSET8","index":"0.000006329555560626"},{"denom":"ASSET9","index":"0.000002733760499857"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000002834261839987"},{"denom":"ASSET1","index":"0.000024063735726127"},{"denom":"ASSET10","index":"0.000019278012414561"},{"denom":"ASSET11","index":"0.000023930766794440"},{"denom":"ASSET12","index":"0.000022855511266190"},{"denom":"ASSET13","index":"0.000007519422832827"},{"denom":"ASSET14","index":"0.000021953268691937"},{"denom":"ASSET15","index":"0.000017352048046781"},{"denom":"ASSET16","index":"0.000010669562284438"},{"denom":"ASSET17","index":"0.000008398158415340"},{"denom":"ASSET18","index":"0.000003456710779118"},{"denom":"ASSET2","index":"0.000007292324829772"},{"denom":"ASSET3","index":"0.000002022818722752"},{"denom":"ASSET4","index":"0.000019507505991506"},{"denom":"ASSET5","index":"0.000001575196067099"},{"denom":"ASSET6","index":"0.000006357416996111"},{"denom":"ASSET7","index":"0.000009994574317511"},{"denom":"ASSET8","index":"0.000013669954492341"},{"denom":"ASSET9","index":"0.000005799591528398"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001553840185331"},{"denom":"ASSET1","index":"0.000012958259817171"},{"denom":"ASSET10","index":"0.000009028099224953"},{"denom":"ASSET11","index":"0.000012533831248030"},{"denom":"ASSET12","index":"0.000011286922457332"},{"denom":"ASSET13","index":"0.000003884600463327"},{"denom":"ASSET14","index":"0.000011708953124953"},{"denom":"ASSET15","index":"0.000008371074208317"},{"denom":"ASSET16","index":"0.000005836492301072"},{"denom":"ASSET17","index":"0.000004143573827548"},{"denom":"ASSET18","index":"0.000001973472951431"},{"denom":"ASSET2","index":"0.000003824652925312"},{"denom":"ASSET3","index":"0.000001117422108587"},{"denom":"ASSET4","index":"0.000010529185576831"},{"denom":"ASSET5","index":"0.000000868040350447"},{"denom":"ASSET6","index":"0.000003534506841323"},{"denom":"ASSET7","index":"0.000005412063731931"},{"denom":"ASSET8","index":"0.000007064217879605"},{"denom":"ASSET9","index":"0.000003050130734168"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000002875427361068"},{"denom":"ASSET1","index":"0.000024372739255487"},{"denom":"ASSET10","index":"0.000019284464921318"},{"denom":"ASSET11","index":"0.000024174413552556"},{"denom":"ASSET12","index":"0.000022964657814992"},{"denom":"ASSET13","index":"0.000007586106071195"},{"denom":"ASSET14","index":"0.000022214775035212"},{"denom":"ASSET15","index":"0.000017399266119679"},{"denom":"ASSET16","index":"0.000010822432031544"},{"denom":"ASSET17","index":"0.000008437405253940"},{"denom":"ASSET18","index":"0.000003520101477575"},{"denom":"ASSET2","index":"0.000007366931162610"},{"denom":"ASSET3","index":"0.000002051556015935"},{"denom":"ASSET4","index":"0.000019761188522524"},{"denom":"ASSET5","index":"0.000001598363223465"},{"denom":"ASSET6","index":"0.000006458982880806"},{"denom":"ASSET7","index":"0.000010127316932433"},{"denom":"ASSET8","index":"0.000013792105044122"},{"denom":"ASSET9","index":"0.000005859963066840"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001468329025254"},{"denom":"ASSET1","index":"0.000012248466172689"},{"denom":"ASSET10","index":"0.000008533242661533"},{"denom":"ASSET11","index":"0.000011849890220686"},{"denom":"ASSET12","index":"0.000010670683647662"},{"denom":"ASSET13","index":"0.000003671855143322"},{"denom":"ASSET14","index":"0.000011069259599665"},{"denom":"ASSET15","index":"0.000007913694549611"},{"denom":"ASSET16","index":"0.000005518108516848"},{"denom":"ASSET17","index":"0.000003917609227717"},{"denom":"ASSET18","index":"0.000001866904977257"},{"denom":"ASSET2","index":"0.000003616095813249"},{"denom":"ASSET3","index":"0.000001057362111013"},{"denom":"ASSET4","index":"0.000009954072998206"},{"denom":"ASSET5","index":"0.000000819868668110"},{"denom":"ASSET6","index":"0.000003341429483630"},{"denom":"ASSET7","index":"0.000005117467404472"},{"denom":"ASSET8","index":"0.000006676663486141"},{"denom":"ASSET9","index":"0.000002882963880808"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000002995432004660"},{"denom":"ASSET1","index":"0.000025434255671185"},{"denom":"ASSET10","index":"0.000020381248485322"},{"denom":"ASSET11","index":"0.000025297016742096"},{"denom":"ASSET12","index":"0.000024161457271020"},{"denom":"ASSET13","index":"0.000007948725545453"},{"denom":"ASSET14","index":"0.000023205881885085"},{"denom":"ASSET15","index":"0.000018343715148864"},{"denom":"ASSET16","index":"0.000011277889207663"},{"denom":"ASSET17","index":"0.000008877556775335"},{"denom":"ASSET18","index":"0.000003654253802028"},{"denom":"ASSET2","index":"0.000007709102798424"},{"denom":"ASSET3","index":"0.000002137627884226"},{"denom":"ASSET4","index":"0.000020618696770430"},{"denom":"ASSET5","index":"0.000001664440090804"},{"denom":"ASSET6","index":"0.000006720260763181"},{"denom":"ASSET7","index":"0.000010565171316359"},{"denom":"ASSET8","index":"0.000014449121165534"},{"denom":"ASSET9","index":"0.000006129217088192"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001484659776814"},{"denom":"ASSET1","index":"0.000012377911876883"},{"denom":"ASSET10","index":"0.000008623797972416"},{"denom":"ASSET11","index":"0.000011974339842928"},{"denom":"ASSET12","index":"0.000010782780641408"},{"denom":"ASSET13","index":"0.000003710691597017"},{"denom":"ASSET14","index":"0.000011185714112019"},{"denom":"ASSET15","index":"0.000007997367331102"},{"denom":"ASSET16","index":"0.000005575935127370"},{"denom":"ASSET17","index":"0.000003959731301514"},{"denom":"ASSET18","index":"0.000001886316120734"},{"denom":"ASSET2","index":"0.000003653859459324"},{"denom":"ASSET3","index":"0.000001068955039306"},{"denom":"ASSET4","index":"0.000010059288371675"},{"denom":"ASSET5","index":"0.000000829493784981"},{"denom":"ASSET6","index":"0.000003376084404307"},{"denom":"ASSET7","index":"0.000005171085966725"},{"denom":"ASSET8","index":"0.000006747698865199"},{"denom":"ASSET9","index":"0.000002914403105969"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000002967027008461"},{"denom":"ASSET1","index":"0.000025180120058697"},{"denom":"ASSET10","index":"0.000020126919929476"},{"denom":"ASSET11","index":"0.000025029678796477"},{"denom":"ASSET12","index":"0.000023880507059092"},{"denom":"ASSET13","index":"0.000007862872062626"},{"denom":"ASSET14","index":"0.000022968832134984"},{"denom":"ASSET15","index":"0.000018123195207046"},{"denom":"ASSET16","index":"0.000011168095360491"},{"denom":"ASSET17","index":"0.000008775186029853"},{"denom":"ASSET18","index":"0.000003621217117579"},{"denom":"ASSET2","index":"0.000007627534970337"},{"denom":"ASSET3","index":"0.000002117298518473"},{"denom":"ASSET4","index":"0.000020413769751333"},{"denom":"ASSET5","index":"0.000001649183760435"},{"denom":"ASSET6","index":"0.000006656038319196"},{"denom":"ASSET7","index":"0.000010459966878994"},{"denom":"ASSET8","index":"0.000014293861494285"},{"denom":"ASSET9","index":"0.000006066597621916"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001508631993599"},{"denom":"ASSET1","index":"0.000012578103553994"},{"denom":"ASSET10","index":"0.000008763023138279"},{"denom":"ASSET11","index":"0.000012169014387632"},{"denom":"ASSET12","index":"0.000010956555546150"},{"denom":"ASSET13","index":"0.000003770654442897"},{"denom":"ASSET14","index":"0.000011367495794714"},{"denom":"ASSET15","index":"0.000008126250861227"},{"denom":"ASSET16","index":"0.000005666162616450"},{"denom":"ASSET17","index":"0.000004024252704398"},{"denom":"ASSET18","index":"0.000001915870077761"},{"denom":"ASSET2","index":"0.000003713270894674"},{"denom":"ASSET3","index":"0.000001084734169631"},{"denom":"ASSET4","index":"0.000010221675912459"},{"denom":"ASSET5","index":"0.000000842242401334"},{"denom":"ASSET6","index":"0.000003430055317962"},{"denom":"ASSET7","index":"0.000005255222367887"},{"denom":"ASSET8","index":"0.000006856408471522"},{"denom":"ASSET9","index":"0.000002961731521176"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000002968383248598"},{"denom":"ASSET1","index":"0.000025185581850199"},{"denom":"ASSET10","index":"0.000020091193699906"},{"denom":"ASSET11","index":"0.000025026167595767"},{"denom":"ASSET12","index":"0.000023854952987524"},{"denom":"ASSET13","index":"0.000007859725566891"},{"denom":"ASSET14","index":"0.000022971118914045"},{"denom":"ASSET15","index":"0.000018098517255117"},{"denom":"ASSET16","index":"0.000011173004258039"},{"denom":"ASSET17","index":"0.000008766603022733"},{"denom":"ASSET18","index":"0.000003624559740525"},{"denom":"ASSET2","index":"0.000007626317523237"},{"denom":"ASSET3","index":"0.000002117313008939"},{"denom":"ASSET4","index":"0.000020418576076670"},{"denom":"ASSET5","index":"0.000001649450966157"},{"denom":"ASSET6","index":"0.000006660362585584"},{"denom":"ASSET7","index":"0.000010463779822658"},{"denom":"ASSET8","index":"0.000014287735496216"},{"denom":"ASSET9","index":"0.000006065360072421"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001603618851190"},{"denom":"ASSET1","index":"0.000013373450792115"},{"denom":"ASSET10","index":"0.000009317368604669"},{"denom":"ASSET11","index":"0.000012937408123124"},{"denom":"ASSET12","index":"0.000011650307554501"},{"denom":"ASSET13","index":"0.000004008493774333"},{"denom":"ASSET14","index":"0.000012085243516211"},{"denom":"ASSET15","index":"0.000008640063748266"},{"denom":"ASSET16","index":"0.000006023807734317"},{"denom":"ASSET17","index":"0.000004278530351069"},{"denom":"ASSET18","index":"0.000002037448105618"},{"denom":"ASSET2","index":"0.000003947624873839"},{"denom":"ASSET3","index":"0.000001154295694818"},{"denom":"ASSET4","index":"0.000010867865506336"},{"denom":"ASSET5","index":"0.000000896432898181"},{"denom":"ASSET6","index":"0.000003647707200497"},{"denom":"ASSET7","index":"0.000005586658358043"},{"denom":"ASSET8","index":"0.000007289880864586"},{"denom":"ASSET9","index":"0.000003148582216449"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003259379166935"},{"denom":"ASSET1","index":"0.000027669546155668"},{"denom":"ASSET10","index":"0.000022163157427920"},{"denom":"ASSET11","index":"0.000027516665793422"},{"denom":"ASSET12","index":"0.000026276569409586"},{"denom":"ASSET13","index":"0.000008645229164029"},{"denom":"ASSET14","index":"0.000025243382728696"},{"denom":"ASSET15","index":"0.000019947981783747"},{"denom":"ASSET16","index":"0.000012268920188963"},{"denom":"ASSET17","index":"0.000009656339783182"},{"denom":"ASSET18","index":"0.000003975233530089"},{"denom":"ASSET2","index":"0.000008385350610200"},{"denom":"ASSET3","index":"0.000002325230588439"},{"denom":"ASSET4","index":"0.000022430515898086"},{"denom":"ASSET5","index":"0.000001812256369527"},{"denom":"ASSET6","index":"0.000007311001085881"},{"denom":"ASSET7","index":"0.000011492885803011"},{"denom":"ASSET8","index":"0.000015716897251793"},{"denom":"ASSET9","index":"0.000006668589151432"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001669758803356"},{"denom":"ASSET1","index":"0.000013919924903508"},{"denom":"ASSET10","index":"0.000009698114015232"},{"denom":"ASSET11","index":"0.000013466332119255"},{"denom":"ASSET12","index":"0.000012126099781115"},{"denom":"ASSET13","index":"0.000004173211661392"},{"denom":"ASSET14","index":"0.000012579297449702"},{"denom":"ASSET15","index":"0.000008994017898909"},{"denom":"ASSET16","index":"0.000006270880730729"},{"denom":"ASSET17","index":"0.000004453348668392"},{"denom":"ASSET18","index":"0.000002121376009280"},{"denom":"ASSET2","index":"0.000004109202923545"},{"denom":"ASSET3","index":"0.000001201941855137"},{"denom":"ASSET4","index":"0.000011312556625386"},{"denom":"ASSET5","index":"0.000000932868086778"},{"denom":"ASSET6","index":"0.000003797061547622"},{"denom":"ASSET7","index":"0.000005815312368147"},{"denom":"ASSET8","index":"0.000007588591475923"},{"denom":"ASSET9","index":"0.000003277484447193"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003314119794923"},{"denom":"ASSET1","index":"0.000028119315186385"},{"denom":"ASSET10","index":"0.000022456877991933"},{"denom":"ASSET11","index":"0.000027947185249485"},{"denom":"ASSET12","index":"0.000026653541530161"},{"denom":"ASSET13","index":"0.000008778725953540"},{"denom":"ASSET14","index":"0.000025648491290636"},{"denom":"ASSET15","index":"0.000020225495910600"},{"denom":"ASSET16","index":"0.000012473684612014"},{"denom":"ASSET17","index":"0.000009794866581105"},{"denom":"ASSET18","index":"0.000004045992889163"},{"denom":"ASSET2","index":"0.000008517017325485"},{"denom":"ASSET3","index":"0.000002365208974685"},{"denom":"ASSET4","index":"0.000022797013251164"},{"denom":"ASSET5","index":"0.000001842432416817"},{"denom":"ASSET6","index":"0.000007435560259585"},{"denom":"ASSET7","index":"0.000011681616070006"},{"denom":"ASSET8","index":"0.000015958852395270"},{"denom":"ASSET9","index":"0.000006773561992828"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001334597814253"},{"denom":"ASSET1","index":"0.000011126876577448"},{"denom":"ASSET10","index":"0.000007751884027943"},{"denom":"ASSET11","index":"0.000010763759508328"},{"denom":"ASSET12","index":"0.000009692944381721"},{"denom":"ASSET13","index":"0.000003335543967388"},{"denom":"ASSET14","index":"0.000010055110882597"},{"denom":"ASSET15","index":"0.000007189147627631"},{"denom":"ASSET16","index":"0.000005012346349398"},{"denom":"ASSET17","index":"0.000003559878072918"},{"denom":"ASSET18","index":"0.000001695813746885"},{"denom":"ASSET2","index":"0.000003284213282225"},{"denom":"ASSET3","index":"0.000000960549210329"},{"denom":"ASSET4","index":"0.000009042280418860"},{"denom":"ASSET5","index":"0.000000745720787237"},{"denom":"ASSET6","index":"0.000003035164402357"},{"denom":"ASSET7","index":"0.000004648278712034"},{"denom":"ASSET8","index":"0.000006065575963495"},{"denom":"ASSET9","index":"0.000002619766079830"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000002933404194828"},{"denom":"ASSET1","index":"0.000024932632498194"},{"denom":"ASSET10","index":"0.000020157113753706"},{"denom":"ASSET11","index":"0.000024842878528839"},{"denom":"ASSET12","index":"0.000023817726072485"},{"denom":"ASSET13","index":"0.000007813243799971"},{"denom":"ASSET14","index":"0.000022761898108549"},{"denom":"ASSET15","index":"0.000018109267957138"},{"denom":"ASSET16","index":"0.000011043189892304"},{"denom":"ASSET17","index":"0.000008753164046701"},{"denom":"ASSET18","index":"0.000003567063844603"},{"denom":"ASSET2","index":"0.000007569762146700"},{"denom":"ASSET3","index":"0.000002091389836038"},{"denom":"ASSET4","index":"0.000020208488830330"},{"denom":"ASSET5","index":"0.000001630166870108"},{"denom":"ASSET6","index":"0.000006572642272968"},{"denom":"ASSET7","index":"0.000010351822041320"},{"denom":"ASSET8","index":"0.000014203644477234"},{"denom":"ASSET9","index":"0.000006019030096188"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001655550281073"},{"denom":"ASSET1","index":"0.000013803766186213"},{"denom":"ASSET10","index":"0.000009616885369480"},{"denom":"ASSET11","index":"0.000013353770421464"},{"denom":"ASSET12","index":"0.000012024654915933"},{"denom":"ASSET13","index":"0.000004138458266908"},{"denom":"ASSET14","index":"0.000012474650680682"},{"denom":"ASSET15","index":"0.000008918932754767"},{"denom":"ASSET16","index":"0.000006218123294721"},{"denom":"ASSET17","index":"0.000004415635621077"},{"denom":"ASSET18","index":"0.000002103876302725"},{"denom":"ASSET2","index":"0.000004075008029207"},{"denom":"ASSET3","index":"0.000001191361699996"},{"denom":"ASSET4","index":"0.000011218168999888"},{"denom":"ASSET5","index":"0.000000925037675960"},{"denom":"ASSET6","index":"0.000003765270684639"},{"denom":"ASSET7","index":"0.000005766457786874"},{"denom":"ASSET8","index":"0.000007524697268437"},{"denom":"ASSET9","index":"0.000003250154939091"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003215122291080"},{"denom":"ASSET1","index":"0.000027271082473775"},{"denom":"ASSET10","index":"0.000021717714787675"},{"denom":"ASSET11","index":"0.000027088129911249"},{"denom":"ASSET12","index":"0.000025803190697535"},{"denom":"ASSET13","index":"0.000008506451165719"},{"denom":"ASSET14","index":"0.000024869823256717"},{"denom":"ASSET15","index":"0.000019571375436743"},{"denom":"ASSET16","index":"0.000012101015548893"},{"denom":"ASSET17","index":"0.000009481514658039"},{"denom":"ASSET18","index":"0.000003929002426467"},{"denom":"ASSET2","index":"0.000008255375778501"},{"denom":"ASSET3","index":"0.000002294279906946"},{"denom":"ASSET4","index":"0.000022110354928469"},{"denom":"ASSET5","index":"0.000001787716273475"},{"denom":"ASSET6","index":"0.000007215985074700"},{"denom":"ASSET7","index":"0.000011330188741735"},{"denom":"ASSET8","index":"0.000015463524362026"},{"denom":"ASSET9","index":"0.000006565858639552"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001631513498845"},{"denom":"ASSET1","index":"0.000013601788709515"},{"denom":"ASSET10","index":"0.000009476711328689"},{"denom":"ASSET11","index":"0.000013158178840821"},{"denom":"ASSET12","index":"0.000011848922966954"},{"denom":"ASSET13","index":"0.000004077884841603"},{"denom":"ASSET14","index":"0.000012291633930140"},{"denom":"ASSET15","index":"0.000008788599161546"},{"denom":"ASSET16","index":"0.000006127389402135"},{"denom":"ASSET17","index":"0.000004351601569095"},{"denom":"ASSET18","index":"0.000002072876103766"},{"denom":"ASSET2","index":"0.000004014961455973"},{"denom":"ASSET3","index":"0.000001174420047516"},{"denom":"ASSET4","index":"0.000011053841044239"},{"denom":"ASSET5","index":"0.000000911490186131"},{"denom":"ASSET6","index":"0.000003710232488420"},{"denom":"ASSET7","index":"0.000005682431175178"},{"denom":"ASSET8","index":"0.000007415071543785"},{"denom":"ASSET9","index":"0.000003202800328586"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003159157648171"},{"denom":"ASSET1","index":"0.000026793811254639"},{"denom":"ASSET10","index":"0.000021330257270132"},{"denom":"ASSET11","index":"0.000026611245447042"},{"denom":"ASSET12","index":"0.000025345616114893"},{"denom":"ASSET13","index":"0.000008356504281369"},{"denom":"ASSET14","index":"0.000024433401122602"},{"denom":"ASSET15","index":"0.000019223209713353"},{"denom":"ASSET16","index":"0.000011890026449509"},{"denom":"ASSET17","index":"0.000009313941892173"},{"denom":"ASSET18","index":"0.000003860849124980"},{"denom":"ASSET2","index":"0.000008109777269158"},{"denom":"ASSET3","index":"0.000002255070941538"},{"denom":"ASSET4","index":"0.000021723391251034"},{"denom":"ASSET5","index":"0.000001756486235957"},{"denom":"ASSET6","index":"0.000007090574282328"},{"denom":"ASSET7","index":"0.000011132530538444"},{"denom":"ASSET8","index":"0.000015191323807650"},{"denom":"ASSET9","index":"0.000006450832118924"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001649724724935"},{"denom":"ASSET1","index":"0.000013753740147655"},{"denom":"ASSET10","index":"0.000009582563441278"},{"denom":"ASSET11","index":"0.000013305204895691"},{"denom":"ASSET12","index":"0.000011981321923304"},{"denom":"ASSET13","index":"0.000004123306127916"},{"denom":"ASSET14","index":"0.000012429052627730"},{"denom":"ASSET15","index":"0.000008886629821639"},{"denom":"ASSET16","index":"0.000006195820583626"},{"denom":"ASSET17","index":"0.000004400070480698"},{"denom":"ASSET18","index":"0.000002096248608056"},{"denom":"ASSET2","index":"0.000004060149146250"},{"denom":"ASSET3","index":"0.000001187512164840"},{"denom":"ASSET4","index":"0.000011177176659918"},{"denom":"ASSET5","index":"0.000000921609203810"},{"denom":"ASSET6","index":"0.000003751605165751"},{"denom":"ASSET7","index":"0.000005746078510357"},{"denom":"ASSET8","index":"0.000007497578498742"},{"denom":"ASSET9","index":"0.000003238303837047"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003253063831874"},{"denom":"ASSET1","index":"0.000027597326034286"},{"denom":"ASSET10","index":"0.000022021617243178"},{"denom":"ASSET11","index":"0.000027423138617092"},{"denom":"ASSET12","index":"0.000026144931484859"},{"denom":"ASSET13","index":"0.000008613299773809"},{"denom":"ASSET14","index":"0.000025170855267573"},{"denom":"ASSET15","index":"0.000019836826910831"},{"denom":"ASSET16","index":"0.000012243184702458"},{"denom":"ASSET17","index":"0.000009607701845932"},{"denom":"ASSET18","index":"0.000003972764374377"},{"denom":"ASSET2","index":"0.000008357484440725"},{"denom":"ASSET3","index":"0.000002321502734814"},{"denom":"ASSET4","index":"0.000022373906168402"},{"denom":"ASSET5","index":"0.000001808481766797"},{"denom":"ASSET6","index":"0.000007298802623853"},{"denom":"ASSET7","index":"0.000011465220726545"},{"denom":"ASSET8","index":"0.000015658035812384"},{"denom":"ASSET9","index":"0.000006646717011605"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001698975992122"},{"denom":"ASSET1","index":"0.000014167905922226"},{"denom":"ASSET10","index":"0.000009870625403756"},{"denom":"ASSET11","index":"0.000013705415046027"},{"denom":"ASSET12","index":"0.000012342129737421"},{"denom":"ASSET13","index":"0.000004247439980305"},{"denom":"ASSET14","index":"0.000012803154715439"},{"denom":"ASSET15","index":"0.000009153801193103"},{"denom":"ASSET16","index":"0.000006381787732272"},{"denom":"ASSET17","index":"0.000004532557176567"},{"denom":"ASSET18","index":"0.000002159268021049"},{"denom":"ASSET2","index":"0.000004182207511237"},{"denom":"ASSET3","index":"0.000001223292032291"},{"denom":"ASSET4","index":"0.000011513897264989"},{"denom":"ASSET5","index":"0.000000949169072389"},{"denom":"ASSET6","index":"0.000003864840554987"},{"denom":"ASSET7","index":"0.000005918563906982"},{"denom":"ASSET8","index":"0.000007723084568158"},{"denom":"ASSET9","index":"0.000003335651311539"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003402845442317"},{"denom":"ASSET1","index":"0.000028880571174740"},{"denom":"ASSET10","index":"0.000023090578471272"},{"denom":"ASSET11","index":"0.000028709364204549"},{"denom":"ASSET12","index":"0.000027394626213612"},{"denom":"ASSET13","index":"0.000009019217107214"},{"denom":"ASSET14","index":"0.000026344557012563"},{"denom":"ASSET15","index":"0.000020791017438004"},{"denom":"ASSET16","index":"0.000012808886991708"},{"denom":"ASSET17","index":"0.000010066951390727"},{"denom":"ASSET18","index":"0.000004153478710890"},{"denom":"ASSET2","index":"0.000008748954704305"},{"denom":"ASSET3","index":"0.000002428490976730"},{"denom":"ASSET4","index":"0.000023413646091842"},{"denom":"ASSET5","index":"0.000001891364101695"},{"denom":"ASSET6","index":"0.000007634563338572"},{"denom":"ASSET7","index":"0.000011996876612297"},{"denom":"ASSET8","index":"0.000016395615103037"},{"denom":"ASSET9","index":"0.000006958318142576"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001515088644413"},{"denom":"ASSET1","index":"0.000012634136557163"},{"denom":"ASSET10","index":"0.000008802109028204"},{"denom":"ASSET11","index":"0.000012222352143486"},{"denom":"ASSET12","index":"0.000011006111259210"},{"denom":"ASSET13","index":"0.000003787721611031"},{"denom":"ASSET14","index":"0.000011417895672887"},{"denom":"ASSET15","index":"0.000008163582563959"},{"denom":"ASSET16","index":"0.000005691138594924"},{"denom":"ASSET17","index":"0.000004042263453241"},{"denom":"ASSET18","index":"0.000001925135571111"},{"denom":"ASSET2","index":"0.000003729515797284"},{"denom":"ASSET3","index":"0.000001091141821893"},{"denom":"ASSET4","index":"0.000010267679293757"},{"denom":"ASSET5","index":"0.000000846156158061"},{"denom":"ASSET6","index":"0.000003446305419945"},{"denom":"ASSET7","index":"0.000005278485437758"},{"denom":"ASSET8","index":"0.000006887398378958"},{"denom":"ASSET9","index":"0.000002974577705544"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003029367235848"},{"denom":"ASSET1","index":"0.000025709657584098"},{"denom":"ASSET10","index":"0.000020551027857005"},{"denom":"ASSET11","index":"0.000025556791271547"},{"denom":"ASSET12","index":"0.000024383546484064"},{"denom":"ASSET13","index":"0.000008028643187417"},{"denom":"ASSET14","index":"0.000023452409013233"},{"denom":"ASSET15","index":"0.000018505869963369"},{"denom":"ASSET16","index":"0.000011403028825829"},{"denom":"ASSET17","index":"0.000008960765854271"},{"denom":"ASSET18","index":"0.000003697390743305"},{"denom":"ASSET2","index":"0.000007788410102575"},{"denom":"ASSET3","index":"0.000002162278160249"},{"denom":"ASSET4","index":"0.000020843149904241"},{"denom":"ASSET5","index":"0.000001683795445220"},{"denom":"ASSET6","index":"0.000006796548728457"},{"denom":"ASSET7","index":"0.000010680301627557"},{"denom":"ASSET8","index":"0.000014594997949332"},{"denom":"ASSET9","index":"0.000006193949682941"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001650481631660"},{"denom":"ASSET1","index":"0.000013760556046882"},{"denom":"ASSET10","index":"0.000009587067899364"},{"denom":"ASSET11","index":"0.000013312100857594"},{"denom":"ASSET12","index":"0.000011987552175177"},{"denom":"ASSET13","index":"0.000004125311926918"},{"denom":"ASSET14","index":"0.000012435412596309"},{"denom":"ASSET15","index":"0.000008891189157367"},{"denom":"ASSET16","index":"0.000006198673717177"},{"denom":"ASSET17","index":"0.000004402473887406"},{"denom":"ASSET18","index":"0.000002097152516481"},{"denom":"ASSET2","index":"0.000004062266502429"},{"denom":"ASSET3","index":"0.000001188346774796"},{"denom":"ASSET4","index":"0.000011182830860714"},{"denom":"ASSET5","index":"0.000000921890641108"},{"denom":"ASSET6","index":"0.000003753581829697"},{"denom":"ASSET7","index":"0.000005749028991578"},{"denom":"ASSET8","index":"0.000007501810745994"},{"denom":"ASSET9","index":"0.000003239702143299"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003205609047354"},{"denom":"ASSET1","index":"0.000027188537481167"},{"denom":"ASSET10","index":"0.000021652723818266"},{"denom":"ASSET11","index":"0.000027005979418132"},{"denom":"ASSET12","index":"0.000025725923481940"},{"denom":"ASSET13","index":"0.000008480657418555"},{"denom":"ASSET14","index":"0.000024794508770079"},{"denom":"ASSET15","index":"0.000019512596409105"},{"denom":"ASSET16","index":"0.000012064653878282"},{"denom":"ASSET17","index":"0.000009453813052143"},{"denom":"ASSET18","index":"0.000003917117707327"},{"denom":"ASSET2","index":"0.000008230459966291"},{"denom":"ASSET3","index":"0.000002288306334262"},{"denom":"ASSET4","index":"0.000022043298344156"},{"denom":"ASSET5","index":"0.000001782083734802"},{"denom":"ASSET6","index":"0.000007194354204475"},{"denom":"ASSET7","index":"0.000011296497588433"},{"denom":"ASSET8","index":"0.000015417282169744"},{"denom":"ASSET9","index":"0.000006545936928299"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001428935211366"},{"denom":"ASSET1","index":"0.000011914564237659"},{"denom":"ASSET10","index":"0.000008301159777028"},{"denom":"ASSET11","index":"0.000011525978642480"},{"denom":"ASSET12","index":"0.000010379209562159"},{"denom":"ASSET13","index":"0.000003571896453874"},{"denom":"ASSET14","index":"0.000010767353582799"},{"denom":"ASSET15","index":"0.000007698410529959"},{"denom":"ASSET16","index":"0.000005367338533420"},{"denom":"ASSET17","index":"0.000003811671429081"},{"denom":"ASSET18","index":"0.000001815754508385"},{"denom":"ASSET2","index":"0.000003517141210917"},{"denom":"ASSET3","index":"0.000001028868678146"},{"denom":"ASSET4","index":"0.000009682846512616"},{"denom":"ASSET5","index":"0.000000798366768278"},{"denom":"ASSET6","index":"0.000003249988614231"},{"denom":"ASSET7","index":"0.000004977428214621"},{"denom":"ASSET8","index":"0.000006495119908522"},{"denom":"ASSET9","index":"0.000002805323052474"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003075918064869"},{"denom":"ASSET1","index":"0.000026136551234120"},{"denom":"ASSET10","index":"0.000021080163895542"},{"denom":"ASSET11","index":"0.000026029570124972"},{"denom":"ASSET12","index":"0.000024929671095533"},{"denom":"ASSET13","index":"0.000008184754658215"},{"denom":"ASSET14","index":"0.000023857159923959"},{"denom":"ASSET15","index":"0.000018947606922173"},{"denom":"ASSET16","index":"0.000011579925359638"},{"denom":"ASSET17","index":"0.000009161388302193"},{"denom":"ASSET18","index":"0.000003743573486430"},{"denom":"ASSET2","index":"0.000007931762150876"},{"denom":"ASSET3","index":"0.000002193704696765"},{"denom":"ASSET4","index":"0.000021185602196482"},{"denom":"ASSET5","index":"0.000001709259314500"},{"denom":"ASSET6","index":"0.000006893942979866"},{"denom":"ASSET7","index":"0.000010853088527538"},{"denom":"ASSET8","index":"0.000014878712124324"},{"denom":"ASSET9","index":"0.000006307130542486"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001556917620519"},{"denom":"ASSET1","index":"0.000012983455297040"},{"denom":"ASSET10","index":"0.000009045452282177"},{"denom":"ASSET11","index":"0.000012560119972943"},{"denom":"ASSET12","index":"0.000011310507230547"},{"denom":"ASSET13","index":"0.000003892294051298"},{"denom":"ASSET14","index":"0.000011733139339821"},{"denom":"ASSET15","index":"0.000008388649636483"},{"denom":"ASSET16","index":"0.000005848637691896"},{"denom":"ASSET17","index":"0.000004153889965857"},{"denom":"ASSET18","index":"0.000001978846514969"},{"denom":"ASSET2","index":"0.000003832520791251"},{"denom":"ASSET3","index":"0.000001120924429588"},{"denom":"ASSET4","index":"0.000010551035220538"},{"denom":"ASSET5","index":"0.000000869876737390"},{"denom":"ASSET6","index":"0.000003541389854081"},{"denom":"ASSET7","index":"0.000005423895938150"},{"denom":"ASSET8","index":"0.000007077857204393"},{"denom":"ASSET9","index":"0.000003056874840288"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003155948059833"},{"denom":"ASSET1","index":"0.000026789841893667"},{"denom":"ASSET10","index":"0.000021451154188244"},{"denom":"ASSET11","index":"0.000026640130662201"},{"denom":"ASSET12","index":"0.000025435769508540"},{"denom":"ASSET13","index":"0.000008370086775831"},{"denom":"ASSET14","index":"0.000024440800445484"},{"denom":"ASSET15","index":"0.000019309084443140"},{"denom":"ASSET16","index":"0.000011879786354964"},{"denom":"ASSET17","index":"0.000009347672781307"},{"denom":"ASSET18","index":"0.000003850232310781"},{"denom":"ASSET2","index":"0.000008118311447694"},{"denom":"ASSET3","index":"0.000002251791235916"},{"denom":"ASSET4","index":"0.000021717604836949"},{"denom":"ASSET5","index":"0.000001754185821919"},{"denom":"ASSET6","index":"0.000007079049104243"},{"denom":"ASSET7","index":"0.000011127710678967"},{"denom":"ASSET8","index":"0.000015216376583965"},{"denom":"ASSET9","index":"0.000006456241851980"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001629017625409"},{"denom":"ASSET1","index":"0.000013583500814952"},{"denom":"ASSET10","index":"0.000009463617777698"},{"denom":"ASSET11","index":"0.000013140742178302"},{"denom":"ASSET12","index":"0.000011833351109704"},{"denom":"ASSET13","index":"0.000004072544063523"},{"denom":"ASSET14","index":"0.000012276109746354"},{"denom":"ASSET15","index":"0.000008777202658616"},{"denom":"ASSET16","index":"0.000006119258515961"},{"denom":"ASSET17","index":"0.000004345439323848"},{"denom":"ASSET18","index":"0.000002070383939302"},{"denom":"ASSET2","index":"0.000004009889539469"},{"denom":"ASSET3","index":"0.000001172335761192"},{"denom":"ASSET4","index":"0.000011039727138351"},{"denom":"ASSET5","index":"0.000000910579082921"},{"denom":"ASSET6","index":"0.000003704970855739"},{"denom":"ASSET7","index":"0.000005675107556554"},{"denom":"ASSET8","index":"0.000007404372420450"},{"denom":"ASSET9","index":"0.000003198165372278"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003300821213878"},{"denom":"ASSET1","index":"0.000028019420341436"},{"denom":"ASSET10","index":"0.000022435320069293"},{"denom":"ASSET11","index":"0.000027862926397945"},{"denom":"ASSET12","index":"0.000026603097941410"},{"denom":"ASSET13","index":"0.000008754572034100"},{"denom":"ASSET14","index":"0.000025562969906661"},{"denom":"ASSET15","index":"0.000020195785636702"},{"denom":"ASSET16","index":"0.000012425527462944"},{"denom":"ASSET17","index":"0.000009776022796414"},{"denom":"ASSET18","index":"0.000004027118689751"},{"denom":"ASSET2","index":"0.000008490998812362"},{"denom":"ASSET3","index":"0.000002354733406852"},{"denom":"ASSET4","index":"0.000022715681634045"},{"denom":"ASSET5","index":"0.000001835160700580"},{"denom":"ASSET6","index":"0.000007403741836767"},{"denom":"ASSET7","index":"0.000011639103500846"},{"denom":"ASSET8","index":"0.000015914079386056"},{"denom":"ASSET9","index":"0.000006752470475547"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001599876133405"},{"denom":"ASSET1","index":"0.000013345434681176"},{"denom":"ASSET10","index":"0.000009297530322905"},{"denom":"ASSET11","index":"0.000012909953167223"},{"denom":"ASSET12","index":"0.000011625282701060"},{"denom":"ASSET13","index":"0.000004000208763886"},{"denom":"ASSET14","index":"0.000012059727354266"},{"denom":"ASSET15","index":"0.000008622533976277"},{"denom":"ASSET16","index":"0.000006011718614052"},{"denom":"ASSET17","index":"0.000004268755697491"},{"denom":"ASSET18","index":"0.000002033283925863"},{"denom":"ASSET2","index":"0.000003939033979783"},{"denom":"ASSET3","index":"0.000001151952290481"},{"denom":"ASSET4","index":"0.000010845563418934"},{"denom":"ASSET5","index":"0.000000893773964352"},{"denom":"ASSET6","index":"0.000003640418084501"},{"denom":"ASSET7","index":"0.000005575200239351"},{"denom":"ASSET8","index":"0.000007274615004517"},{"denom":"ASSET9","index":"0.000003141688064949"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003205518103121"},{"denom":"ASSET1","index":"0.000027209804037075"},{"denom":"ASSET10","index":"0.000021755111918776"},{"denom":"ASSET11","index":"0.000027048910570117"},{"denom":"ASSET12","index":"0.000025809934262776"},{"denom":"ASSET13","index":"0.000008496852467218"},{"denom":"ASSET14","index":"0.000024820667393427"},{"denom":"ASSET15","index":"0.000019589132093549"},{"denom":"ASSET16","index":"0.000012068310128279"},{"denom":"ASSET17","index":"0.000009484236214143"},{"denom":"ASSET18","index":"0.000003912244660385"},{"denom":"ASSET2","index":"0.000008242746790311"},{"denom":"ASSET3","index":"0.000002287536756020"},{"denom":"ASSET4","index":"0.000022059248469095"},{"denom":"ASSET5","index":"0.000001781848402938"},{"denom":"ASSET6","index":"0.000007192715838846"},{"denom":"ASSET7","index":"0.000011303047666497"},{"denom":"ASSET8","index":"0.000015447099928639"},{"denom":"ASSET9","index":"0.000006555210966575"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001693699328345"},{"denom":"ASSET1","index":"0.000014121235265065"},{"denom":"ASSET10","index":"0.000009838380374958"},{"denom":"ASSET11","index":"0.000013660499756586"},{"denom":"ASSET12","index":"0.000012301569616423"},{"denom":"ASSET13","index":"0.000004233563721295"},{"denom":"ASSET14","index":"0.000012760935925768"},{"denom":"ASSET15","index":"0.000009123658427184"},{"denom":"ASSET16","index":"0.000006361299175013"},{"denom":"ASSET17","index":"0.000004517672541531"},{"denom":"ASSET18","index":"0.000002151696438556"},{"denom":"ASSET2","index":"0.000004168526762446"},{"denom":"ASSET3","index":"0.000001219271828530"},{"denom":"ASSET4","index":"0.000011475942538822"},{"denom":"ASSET5","index":"0.000000946116601363"},{"denom":"ASSET6","index":"0.000003852241762569"},{"denom":"ASSET7","index":"0.000005899194467400"},{"denom":"ASSET8","index":"0.000007698322129037"},{"denom":"ASSET9","index":"0.000003325100096108"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003374964488748"},{"denom":"ASSET1","index":"0.000028642371697541"},{"denom":"ASSET10","index":"0.000022886358038922"},{"denom":"ASSET11","index":"0.000028469467846578"},{"denom":"ASSET12","index":"0.000027158021136678"},{"denom":"ASSET13","index":"0.000008943216545101"},{"denom":"ASSET14","index":"0.000026126056006670"},{"denom":"ASSET15","index":"0.000020609372613995"},{"denom":"ASSET16","index":"0.000012704733728960"},{"denom":"ASSET17","index":"0.000009980025667275"},{"denom":"ASSET18","index":"0.000004119620826099"},{"denom":"ASSET2","index":"0.000008675935346246"},{"denom":"ASSET3","index":"0.000002408702445844"},{"denom":"ASSET4","index":"0.000023220763838917"},{"denom":"ASSET5","index":"0.000001876440105393"},{"denom":"ASSET6","index":"0.000007572949563502"},{"denom":"ASSET7","index":"0.000011897934490553"},{"denom":"ASSET8","index":"0.000016258236310419"},{"denom":"ASSET9","index":"0.000006900426530312"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001608105877482"},{"denom":"ASSET1","index":"0.000013418457239972"},{"denom":"ASSET10","index":"0.000009349233819318"},{"denom":"ASSET11","index":"0.000012981594753349"},{"denom":"ASSET12","index":"0.000011689837573077"},{"denom":"ASSET13","index":"0.000004022147721664"},{"denom":"ASSET14","index":"0.000012126700059700"},{"denom":"ASSET15","index":"0.000008669460725910"},{"denom":"ASSET16","index":"0.000006044519750254"},{"denom":"ASSET17","index":"0.000004293303747844"},{"denom":"ASSET18","index":"0.000002044968364105"},{"denom":"ASSET2","index":"0.000003960007798998"},{"denom":"ASSET3","index":"0.000001158062195142"},{"denom":"ASSET4","index":"0.000010904614913932"},{"denom":"ASSET5","index":"0.000000898204336720"},{"denom":"ASSET6","index":"0.000003660606353425"},{"denom":"ASSET7","index":"0.000005605774235672"},{"denom":"ASSET8","index":"0.000007313680595011"},{"denom":"ASSET9","index":"0.000003159720916176"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003138779820137"},{"denom":"ASSET1","index":"0.000026638851971456"},{"denom":"ASSET10","index":"0.000021228354320839"},{"denom":"ASSET11","index":"0.000026463611656062"},{"denom":"ASSET12","index":"0.000025215335343685"},{"denom":"ASSET13","index":"0.000008309803474369"},{"denom":"ASSET14","index":"0.000024294710395367"},{"denom":"ASSET15","index":"0.000019126240972581"},{"denom":"ASSET16","index":"0.000011819368577720"},{"denom":"ASSET17","index":"0.000009266335892783"},{"denom":"ASSET18","index":"0.000003836527514127"},{"denom":"ASSET2","index":"0.000008063422586049"},{"denom":"ASSET3","index":"0.000002240662109326"},{"denom":"ASSET4","index":"0.000021597223596640"},{"denom":"ASSET5","index":"0.000001744975814867"},{"denom":"ASSET6","index":"0.000007047692266012"},{"denom":"ASSET7","index":"0.000011067413421526"},{"denom":"ASSET8","index":"0.000015106336478322"},{"denom":"ASSET9","index":"0.000006414890297355"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001636130781121"},{"denom":"ASSET1","index":"0.000013651986161797"},{"denom":"ASSET10","index":"0.000009511743354655"},{"denom":"ASSET11","index":"0.000013205516575762"},{"denom":"ASSET12","index":"0.000011891065744828"},{"denom":"ASSET13","index":"0.000004093100055822"},{"denom":"ASSET14","index":"0.000012337535330862"},{"denom":"ASSET15","index":"0.000008821240702961"},{"denom":"ASSET16","index":"0.000006147969392790"},{"denom":"ASSET17","index":"0.000004367637254688"},{"denom":"ASSET18","index":"0.000002079827264137"},{"denom":"ASSET2","index":"0.000004029318686389"},{"denom":"ASSET3","index":"0.000001178568783011"},{"denom":"ASSET4","index":"0.000011095185178418"},{"denom":"ASSET5","index":"0.000000915123996220"},{"denom":"ASSET6","index":"0.000003724277354315"},{"denom":"ASSET7","index":"0.000005701499806755"},{"denom":"ASSET8","index":"0.000007440235399574"},{"denom":"ASSET9","index":"0.000003214026398847"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003135138573804"},{"denom":"ASSET1","index":"0.000026601246250396"},{"denom":"ASSET10","index":"0.000021147351718785"},{"denom":"ASSET11","index":"0.000026411423528042"},{"denom":"ASSET12","index":"0.000025139747174388"},{"denom":"ASSET13","index":"0.000008292603180789"},{"denom":"ASSET14","index":"0.000024256405788980"},{"denom":"ASSET15","index":"0.000019064302195638"},{"denom":"ASSET16","index":"0.000011804656377100"},{"denom":"ASSET17","index":"0.000009238224400983"},{"denom":"ASSET18","index":"0.000003834531376561"},{"denom":"ASSET2","index":"0.000008049169006780"},{"denom":"ASSET3","index":"0.000002239375819558"},{"denom":"ASSET4","index":"0.000021568278304468"},{"denom":"ASSET5","index":"0.000001743998311515"},{"denom":"ASSET6","index":"0.000007041675703373"},{"denom":"ASSET7","index":"0.000011051161098588"},{"denom":"ASSET8","index":"0.000015073103234225"},{"denom":"ASSET9","index":"0.000006402150772125"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001682560247115"},{"denom":"ASSET1","index":"0.000014026482890055"},{"denom":"ASSET10","index":"0.000009772411969975"},{"denom":"ASSET11","index":"0.000013568579422963"},{"denom":"ASSET12","index":"0.000012218368466479"},{"denom":"ASSET13","index":"0.000004205057792371"},{"denom":"ASSET14","index":"0.000012675600520863"},{"denom":"ASSET15","index":"0.000009062728737253"},{"denom":"ASSET16","index":"0.000006318664998244"},{"denom":"ASSET17","index":"0.000004487051129876"},{"denom":"ASSET18","index":"0.000002137778063373"},{"denom":"ASSET2","index":"0.000004140602172369"},{"denom":"ASSET3","index":"0.000001211228525856"},{"denom":"ASSET4","index":"0.000011398573549589"},{"denom":"ASSET5","index":"0.000000939977791684"},{"denom":"ASSET6","index":"0.000003825709612155"},{"denom":"ASSET7","index":"0.000005859418705735"},{"denom":"ASSET8","index":"0.000007646047922643"},{"denom":"ASSET9","index":"0.000003302679112354"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003237426875283"},{"denom":"ASSET1","index":"0.000027451710154634"},{"denom":"ASSET10","index":"0.000021835512998164"},{"denom":"ASSET11","index":"0.000027259736654219"},{"denom":"ASSET12","index":"0.000025953768913429"},{"denom":"ASSET13","index":"0.000008559484494503"},{"denom":"ASSET14","index":"0.000025032165857410"},{"denom":"ASSET15","index":"0.000019681806512765"},{"denom":"ASSET16","index":"0.000012183244440341"},{"denom":"ASSET17","index":"0.000009537367134186"},{"denom":"ASSET18","index":"0.000003957397976948"},{"denom":"ASSET2","index":"0.000008307936552813"},{"denom":"ASSET3","index":"0.000002310954839376"},{"denom":"ASSET4","index":"0.000022256988295109"},{"denom":"ASSET5","index":"0.000001799896462688"},{"denom":"ASSET6","index":"0.000007265619632425"},{"denom":"ASSET7","index":"0.000011405823532836"},{"denom":"ASSET8","index":"0.000015559935461923"},{"denom":"ASSET9","index":"0.000006608212131764"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001576738934866"},{"denom":"ASSET1","index":"0.000013143695761043"},{"denom":"ASSET10","index":"0.000009157699733702"},{"denom":"ASSET11","index":"0.000012715663698192"},{"denom":"ASSET12","index":"0.000011450067913139"},{"denom":"ASSET13","index":"0.000003940585946017"},{"denom":"ASSET14","index":"0.000011878099975991"},{"denom":"ASSET15","index":"0.000008492526135047"},{"denom":"ASSET16","index":"0.000005920970048209"},{"denom":"ASSET17","index":"0.000004204637159643"},{"denom":"ASSET18","index":"0.000002003089142854"},{"denom":"ASSET2","index":"0.000003880039170918"},{"denom":"ASSET3","index":"0.000001134411105672"},{"denom":"ASSET4","index":"0.000010681460240357"},{"denom":"ASSET5","index":"0.000000880451021229"},{"denom":"ASSET6","index":"0.000003584873642311"},{"denom":"ASSET7","index":"0.000005491256130493"},{"denom":"ASSET8","index":"0.000007165542647463"},{"denom":"ASSET9","index":"0.000003094612949497"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003150995592381"},{"denom":"ASSET1","index":"0.000026735906318713"},{"denom":"ASSET10","index":"0.000021370928366269"},{"denom":"ASSET11","index":"0.000026577057751538"},{"denom":"ASSET12","index":"0.000025356196217934"},{"denom":"ASSET13","index":"0.000008349049177946"},{"denom":"ASSET14","index":"0.000024388519635576"},{"denom":"ASSET15","index":"0.000019243917228958"},{"denom":"ASSET16","index":"0.000011858566692713"},{"denom":"ASSET17","index":"0.000009317567603522"},{"denom":"ASSET18","index":"0.000003845362315572"},{"denom":"ASSET2","index":"0.000008099062572798"},{"denom":"ASSET3","index":"0.000002247710476517"},{"denom":"ASSET4","index":"0.000021674805285583"},{"denom":"ASSET5","index":"0.000001751018453776"},{"denom":"ASSET6","index":"0.000007067532365991"},{"denom":"ASSET7","index":"0.000011106766164564"},{"denom":"ASSET8","index":"0.000015177641578730"},{"denom":"ASSET9","index":"0.000006441123951375"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001735896630597"},{"denom":"ASSET1","index":"0.000014474259966527"},{"denom":"ASSET10","index":"0.000010084408758147"},{"denom":"ASSET11","index":"0.000014002239606889"},{"denom":"ASSET12","index":"0.000012609068112910"},{"denom":"ASSET13","index":"0.000004339122939062"},{"denom":"ASSET14","index":"0.000013079851197687"},{"denom":"ASSET15","index":"0.000009351942040176"},{"denom":"ASSET16","index":"0.000006520438519776"},{"denom":"ASSET17","index":"0.000004630501168930"},{"denom":"ASSET18","index":"0.000002205442440512"},{"denom":"ASSET2","index":"0.000004272310096544"},{"denom":"ASSET3","index":"0.000001249647610052"},{"denom":"ASSET4","index":"0.000011762772107687"},{"denom":"ASSET5","index":"0.000000970023491367"},{"denom":"ASSET6","index":"0.000003948144082847"},{"denom":"ASSET7","index":"0.000006046562247845"},{"denom":"ASSET8","index":"0.000007890101791387"},{"denom":"ASSET9","index":"0.000003408073605830"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003300304206809"},{"denom":"ASSET1","index":"0.000027981868665615"},{"denom":"ASSET10","index":"0.000022221493016134"},{"denom":"ASSET11","index":"0.000027777532118325"},{"denom":"ASSET12","index":"0.000026428557640091"},{"denom":"ASSET13","index":"0.000008720047886627"},{"denom":"ASSET14","index":"0.000025512138164618"},{"denom":"ASSET15","index":"0.000020036362120252"},{"denom":"ASSET16","index":"0.000012421157074829"},{"denom":"ASSET17","index":"0.000009711490167791"},{"denom":"ASSET18","index":"0.000004036282970136"},{"denom":"ASSET2","index":"0.000008465189250700"},{"denom":"ASSET3","index":"0.000002356240815614"},{"denom":"ASSET4","index":"0.000022687774056492"},{"denom":"ASSET5","index":"0.000001835200922241"},{"denom":"ASSET6","index":"0.000007409270759323"},{"denom":"ASSET7","index":"0.000011627060915230"},{"denom":"ASSET8","index":"0.000015852235873304"},{"denom":"ASSET9","index":"0.000006733690564218"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001726734301691"},{"denom":"ASSET1","index":"0.000014395988805148"},{"denom":"ASSET10","index":"0.000010029746380297"},{"denom":"ASSET11","index":"0.000013926529312304"},{"denom":"ASSET12","index":"0.000012540835608608"},{"denom":"ASSET13","index":"0.000004315874534955"},{"denom":"ASSET14","index":"0.000013009526126035"},{"denom":"ASSET15","index":"0.000009301526659210"},{"denom":"ASSET16","index":"0.000006485154189852"},{"denom":"ASSET17","index":"0.000004605778267637"},{"denom":"ASSET18","index":"0.000002193886868281"},{"denom":"ASSET2","index":"0.000004249742648985"},{"denom":"ASSET3","index":"0.000001243048763609"},{"denom":"ASSET4","index":"0.000011699192013329"},{"denom":"ASSET5","index":"0.000000964679662201"},{"denom":"ASSET6","index":"0.000003926772973318"},{"denom":"ASSET7","index":"0.000006014156746171"},{"denom":"ASSET8","index":"0.000007847778630999"},{"denom":"ASSET9","index":"0.000003389643643667"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003383074331503"},{"denom":"ASSET1","index":"0.000028697774885580"},{"denom":"ASSET10","index":"0.000022880621123289"},{"denom":"ASSET11","index":"0.000028511966470743"},{"denom":"ASSET12","index":"0.000027173358086556"},{"denom":"ASSET13","index":"0.000008954537947194"},{"denom":"ASSET14","index":"0.000026172910691250"},{"denom":"ASSET15","index":"0.000020614154391480"},{"denom":"ASSET16","index":"0.000012732692592075"},{"denom":"ASSET17","index":"0.000009985655741818"},{"denom":"ASSET18","index":"0.000004132359094826"},{"denom":"ASSET2","index":"0.000008689052893949"},{"denom":"ASSET3","index":"0.000002414485946546"},{"denom":"ASSET4","index":"0.000023266612079392"},{"denom":"ASSET5","index":"0.000001880944791026"},{"denom":"ASSET6","index":"0.000007591453768301"},{"denom":"ASSET7","index":"0.000011922604903868"},{"denom":"ASSET8","index":"0.000016278329144958"},{"denom":"ASSET9","index":"0.000006911169878531"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001436232590899"},{"denom":"ASSET1","index":"0.000011976183987962"},{"denom":"ASSET10","index":"0.000008344549248442"},{"denom":"ASSET11","index":"0.000011585862202045"},{"denom":"ASSET12","index":"0.000010432581326504"},{"denom":"ASSET13","index":"0.000003589949888597"},{"denom":"ASSET14","index":"0.000010822903112421"},{"denom":"ASSET15","index":"0.000007738224144105"},{"denom":"ASSET16","index":"0.000005395030251301"},{"denom":"ASSET17","index":"0.000003831216753031"},{"denom":"ASSET18","index":"0.000001825291199515"},{"denom":"ASSET2","index":"0.000003535633264667"},{"denom":"ASSET3","index":"0.000001033279031975"},{"denom":"ASSET4","index":"0.000009732781101914"},{"denom":"ASSET5","index":"0.000000802117585946"},{"denom":"ASSET6","index":"0.000003266576499617"},{"denom":"ASSET7","index":"0.000005003445288083"},{"denom":"ASSET8","index":"0.000006528100290032"},{"denom":"ASSET9","index":"0.000002819411735168"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003006064648013"},{"denom":"ASSET1","index":"0.000025531157590212"},{"denom":"ASSET10","index":"0.000020524407173472"},{"denom":"ASSET11","index":"0.000025409258384489"},{"denom":"ASSET12","index":"0.000024300714605646"},{"denom":"ASSET13","index":"0.000007986286383048"},{"denom":"ASSET14","index":"0.000023298685931189"},{"denom":"ASSET15","index":"0.000018459726056254"},{"denom":"ASSET16","index":"0.000011316095008653"},{"denom":"ASSET17","index":"0.000008930145684163"},{"denom":"ASSET18","index":"0.000003662445744281"},{"denom":"ASSET2","index":"0.000007743120539446"},{"denom":"ASSET3","index":"0.000002143639104141"},{"denom":"ASSET4","index":"0.000020695936675740"},{"denom":"ASSET5","index":"0.000001670457298921"},{"denom":"ASSET6","index":"0.000006739935351518"},{"denom":"ASSET7","index":"0.000010603283023237"},{"denom":"ASSET8","index":"0.000014518439118465"},{"denom":"ASSET9","index":"0.000006156725809403"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001476546163568"},{"denom":"ASSET1","index":"0.000012315891963405"},{"denom":"ASSET10","index":"0.000008580298213179"},{"denom":"ASSET11","index":"0.000011914434711559"},{"denom":"ASSET12","index":"0.000010728207916557"},{"denom":"ASSET13","index":"0.000003691365408921"},{"denom":"ASSET14","index":"0.000011129665168403"},{"denom":"ASSET15","index":"0.000007957699254808"},{"denom":"ASSET16","index":"0.000005547821683700"},{"denom":"ASSET17","index":"0.000003939724556249"},{"denom":"ASSET18","index":"0.000001876869355381"},{"denom":"ASSET2","index":"0.000003635796467281"},{"denom":"ASSET3","index":"0.000001062614251355"},{"denom":"ASSET4","index":"0.000010009213855342"},{"denom":"ASSET5","index":"0.000000825595704361"},{"denom":"ASSET6","index":"0.000003359085819117"},{"denom":"ASSET7","index":"0.000005145230371820"},{"denom":"ASSET8","index":"0.000006713635398099"},{"denom":"ASSET9","index":"0.000002899791505564"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000002611689387046"},{"denom":"ASSET1","index":"0.000022118950462866"},{"denom":"ASSET10","index":"0.000017388824351878"},{"denom":"ASSET11","index":"0.000021911701626113"},{"denom":"ASSET12","index":"0.000020757567192719"},{"denom":"ASSET13","index":"0.000006870825151743"},{"denom":"ASSET14","index":"0.000020152250667519"},{"denom":"ASSET15","index":"0.000015711809347683"},{"denom":"ASSET16","index":"0.000009830001439303"},{"denom":"ASSET17","index":"0.000007627368499381"},{"denom":"ASSET18","index":"0.000003205559295774"},{"denom":"ASSET2","index":"0.000006678615536452"},{"denom":"ASSET3","index":"0.000001865584989735"},{"denom":"ASSET4","index":"0.000017938012267073"},{"denom":"ASSET5","index":"0.000001453547274796"},{"denom":"ASSET6","index":"0.000005870892100855"},{"denom":"ASSET7","index":"0.000009195154067126"},{"denom":"ASSET8","index":"0.000012492245582088"},{"denom":"ASSET9","index":"0.000005313335607946"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000000860911540335"},{"denom":"ASSET1","index":"0.000007178593209511"},{"denom":"ASSET10","index":"0.000005001581264509"},{"denom":"ASSET11","index":"0.000006944753046495"},{"denom":"ASSET12","index":"0.000006253725385275"},{"denom":"ASSET13","index":"0.000002152029021603"},{"denom":"ASSET14","index":"0.000006487065889823"},{"denom":"ASSET15","index":"0.000004638329558286"},{"denom":"ASSET16","index":"0.000003233789604786"},{"denom":"ASSET17","index":"0.000002296430318850"},{"denom":"ASSET18","index":"0.000001093752386415"},{"denom":"ASSET2","index":"0.000002119051562716"},{"denom":"ASSET3","index":"0.000000619576500299"},{"denom":"ASSET4","index":"0.000005834012272169"},{"denom":"ASSET5","index":"0.000000481171104668"},{"denom":"ASSET6","index":"0.000001958161536025"},{"denom":"ASSET7","index":"0.000002998950124834"},{"denom":"ASSET8","index":"0.000003913325121242"},{"denom":"ASSET9","index":"0.000001690344597186"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000002357406510396"},{"denom":"ASSET1","index":"0.000020099972826550"},{"denom":"ASSET10","index":"0.000016611857270119"},{"denom":"ASSET11","index":"0.000020122040980663"},{"denom":"ASSET12","index":"0.000019473664705632"},{"denom":"ASSET13","index":"0.000006342954228467"},{"denom":"ASSET14","index":"0.000018379978414574"},{"denom":"ASSET15","index":"0.000014858739059306"},{"denom":"ASSET16","index":"0.000008878274052948"},{"denom":"ASSET17","index":"0.000007156982288871"},{"denom":"ASSET18","index":"0.000002845018303307"},{"denom":"ASSET2","index":"0.000006129987919866"},{"denom":"ASSET3","index":"0.000001678183905493"},{"denom":"ASSET4","index":"0.000016284739258605"},{"denom":"ASSET5","index":"0.000001308892339296"},{"denom":"ASSET6","index":"0.000005269046474537"},{"denom":"ASSET7","index":"0.000008337197620164"},{"denom":"ASSET8","index":"0.000011530009666752"},{"denom":"ASSET9","index":"0.000004871853664260"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001198976216272"},{"denom":"ASSET1","index":"0.000010001315625623"},{"denom":"ASSET10","index":"0.000006967712250892"},{"denom":"ASSET11","index":"0.000009674322112094"},{"denom":"ASSET12","index":"0.000008711677656379"},{"denom":"ASSET13","index":"0.000002997949876371"},{"denom":"ASSET14","index":"0.000009037652498526"},{"denom":"ASSET15","index":"0.000006461432574183"},{"denom":"ASSET16","index":"0.000004504564849919"},{"denom":"ASSET17","index":"0.000003199646809949"},{"denom":"ASSET18","index":"0.000001523932387037"},{"denom":"ASSET2","index":"0.000002952109664194"},{"denom":"ASSET3","index":"0.000000862814660308"},{"denom":"ASSET4","index":"0.000008126960283277"},{"denom":"ASSET5","index":"0.000000670285769165"},{"denom":"ASSET6","index":"0.000002728001960218"},{"denom":"ASSET7","index":"0.000004177571336390"},{"denom":"ASSET8","index":"0.000005451929234909"},{"denom":"ASSET9","index":"0.000002354149563130"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000002792091306062"},{"denom":"ASSET1","index":"0.000023760392481519"},{"denom":"ASSET10","index":"0.000019330735214415"},{"denom":"ASSET11","index":"0.000023705763948043"},{"denom":"ASSET12","index":"0.000022788595153270"},{"denom":"ASSET13","index":"0.000007460432475948"},{"denom":"ASSET14","index":"0.000021701401606991"},{"denom":"ASSET15","index":"0.000017344296121870"},{"denom":"ASSET16","index":"0.000010515175863945"},{"denom":"ASSET17","index":"0.000008375559402161"},{"denom":"ASSET18","index":"0.000003388923471278"},{"denom":"ASSET2","index":"0.000007222909907971"},{"denom":"ASSET3","index":"0.000001989926471838"},{"denom":"ASSET4","index":"0.000019255294602933"},{"denom":"ASSET5","index":"0.000001551437823125"},{"denom":"ASSET6","index":"0.000006253588147261"},{"denom":"ASSET7","index":"0.000009862028954195"},{"denom":"ASSET8","index":"0.000013562244421912"},{"denom":"ASSET9","index":"0.000005741841810541"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001507638919625"},{"denom":"ASSET1","index":"0.000012569401049902"},{"denom":"ASSET10","index":"0.000008757228353136"},{"denom":"ASSET11","index":"0.000012160184771718"},{"denom":"ASSET12","index":"0.000010949766096248"},{"denom":"ASSET13","index":"0.000003769097299062"},{"denom":"ASSET14","index":"0.000011358982374432"},{"denom":"ASSET15","index":"0.000008124020006893"},{"denom":"ASSET16","index":"0.000005660107258249"},{"denom":"ASSET17","index":"0.000004018934605743"},{"denom":"ASSET18","index":"0.000001912547658039"},{"denom":"ASSET2","index":"0.000003708791742277"},{"denom":"ASSET3","index":"0.000001085500022130"},{"denom":"ASSET4","index":"0.000010217484335287"},{"denom":"ASSET5","index":"0.000000839970255220"},{"denom":"ASSET6","index":"0.000003428801657204"},{"denom":"ASSET7","index":"0.000005250890980065"},{"denom":"ASSET8","index":"0.000006853295774638"},{"denom":"ASSET9","index":"0.000002959279822235"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003131246414749"},{"denom":"ASSET1","index":"0.000026589761836242"},{"denom":"ASSET10","index":"0.000021355242603721"},{"denom":"ASSET11","index":"0.000026458316408852"},{"denom":"ASSET12","index":"0.000025293988029420"},{"denom":"ASSET13","index":"0.000008316673174883"},{"denom":"ASSET14","index":"0.000024263343459355"},{"denom":"ASSET15","index":"0.000019213959771091"},{"denom":"ASSET16","index":"0.000011784585795875"},{"denom":"ASSET17","index":"0.000009292893547134"},{"denom":"ASSET18","index":"0.000003813004198036"},{"denom":"ASSET2","index":"0.000008060944762894"},{"denom":"ASSET3","index":"0.000002234070199415"},{"denom":"ASSET4","index":"0.000021557233504015"},{"denom":"ASSET5","index":"0.000001738116490695"},{"denom":"ASSET6","index":"0.000007021386599103"},{"denom":"ASSET7","index":"0.000011043212117572"},{"denom":"ASSET8","index":"0.000015117900391662"},{"denom":"ASSET9","index":"0.000006411442995536"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001538667310820"},{"denom":"ASSET1","index":"0.000012827917927858"},{"denom":"ASSET10","index":"0.000008937244372687"},{"denom":"ASSET11","index":"0.000012409488429871"},{"denom":"ASSET12","index":"0.000011174685151587"},{"denom":"ASSET13","index":"0.000003845530209513"},{"denom":"ASSET14","index":"0.000011592355937882"},{"denom":"ASSET15","index":"0.000008288166520415"},{"denom":"ASSET16","index":"0.000005778727600031"},{"denom":"ASSET17","index":"0.000004103871540546"},{"denom":"ASSET18","index":"0.000001954820673732"},{"denom":"ASSET2","index":"0.000003786730053405"},{"denom":"ASSET3","index":"0.000001107719069920"},{"denom":"ASSET4","index":"0.000010424698644316"},{"denom":"ASSET5","index":"0.000000859620346726"},{"denom":"ASSET6","index":"0.000003499178322240"},{"denom":"ASSET7","index":"0.000005359160034507"},{"denom":"ASSET8","index":"0.000006993045662639"},{"denom":"ASSET9","index":"0.000003020431244761"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003070496060295"},{"denom":"ASSET1","index":"0.000026054009108675"},{"denom":"ASSET10","index":"0.000020821706468932"},{"denom":"ASSET11","index":"0.000025897661631707"},{"denom":"ASSET12","index":"0.000024706407518076"},{"denom":"ASSET13","index":"0.000008135385272267"},{"denom":"ASSET14","index":"0.000023765921524780"},{"denom":"ASSET15","index":"0.000018749935123185"},{"denom":"ASSET16","index":"0.000011556337558875"},{"denom":"ASSET17","index":"0.000009079232430047"},{"denom":"ASSET18","index":"0.000003747682066764"},{"denom":"ASSET2","index":"0.000007892419371659"},{"denom":"ASSET3","index":"0.000002191201298955"},{"denom":"ASSET4","index":"0.000021122052487200"},{"denom":"ASSET5","index":"0.000001706992646915"},{"denom":"ASSET6","index":"0.000006888142834266"},{"denom":"ASSET7","index":"0.000010823268476718"},{"denom":"ASSET8","index":"0.000014789657857476"},{"denom":"ASSET9","index":"0.000006276911852268"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001679222100186"},{"denom":"ASSET1","index":"0.000013999028794594"},{"denom":"ASSET10","index":"0.000009753438641601"},{"denom":"ASSET11","index":"0.000013542280383343"},{"denom":"ASSET12","index":"0.000012194769233410"},{"denom":"ASSET13","index":"0.000004196505199295"},{"denom":"ASSET14","index":"0.000012650484277214"},{"denom":"ASSET15","index":"0.000009045065257184"},{"denom":"ASSET16","index":"0.000006306124840851"},{"denom":"ASSET17","index":"0.000004478614512126"},{"denom":"ASSET18","index":"0.000002133387092820"},{"denom":"ASSET2","index":"0.000004132436417626"},{"denom":"ASSET3","index":"0.000001208523228411"},{"denom":"ASSET4","index":"0.000011376342215965"},{"denom":"ASSET5","index":"0.000000938297641211"},{"denom":"ASSET6","index":"0.000003818809397684"},{"denom":"ASSET7","index":"0.000005848343062154"},{"denom":"ASSET8","index":"0.000007631418590690"},{"denom":"ASSET9","index":"0.000003295925469872"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003295755498274"},{"denom":"ASSET1","index":"0.000027960125957180"},{"denom":"ASSET10","index":"0.000022298091456525"},{"denom":"ASSET11","index":"0.000027779779629540"},{"denom":"ASSET12","index":"0.000026478335493542"},{"denom":"ASSET13","index":"0.000008724566942758"},{"denom":"ASSET14","index":"0.000025500389224880"},{"denom":"ASSET15","index":"0.000020088119547171"},{"denom":"ASSET16","index":"0.000012404652968467"},{"denom":"ASSET17","index":"0.000009730254100732"},{"denom":"ASSET18","index":"0.000004025857251145"},{"denom":"ASSET2","index":"0.000008465992991141"},{"denom":"ASSET3","index":"0.000002352288079447"},{"denom":"ASSET4","index":"0.000022667879187178"},{"denom":"ASSET5","index":"0.000001832649164275"},{"denom":"ASSET6","index":"0.000007396215489940"},{"denom":"ASSET7","index":"0.000011616026271508"},{"denom":"ASSET8","index":"0.000015861127767022"},{"denom":"ASSET9","index":"0.000006733269226830"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001488486853561"},{"denom":"ASSET1","index":"0.000012409943784184"},{"denom":"ASSET10","index":"0.000008645838046025"},{"denom":"ASSET11","index":"0.000012005445379346"},{"denom":"ASSET12","index":"0.000010810451131374"},{"denom":"ASSET13","index":"0.000003720376180879"},{"denom":"ASSET14","index":"0.000011214949536212"},{"denom":"ASSET15","index":"0.000008018487089665"},{"denom":"ASSET16","index":"0.000005590655707614"},{"denom":"ASSET17","index":"0.000003970139229188"},{"denom":"ASSET18","index":"0.000001891303352350"},{"denom":"ASSET2","index":"0.000003663191375205"},{"denom":"ASSET3","index":"0.000001071374153354"},{"denom":"ASSET4","index":"0.000010085549624159"},{"denom":"ASSET5","index":"0.000000831702541340"},{"denom":"ASSET6","index":"0.000003384835924059"},{"denom":"ASSET7","index":"0.000005184475396726"},{"denom":"ASSET8","index":"0.000006765467082995"},{"denom":"ASSET9","index":"0.000002921470807498"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003140601357292"},{"denom":"ASSET1","index":"0.000026678854887219"},{"denom":"ASSET10","index":"0.000021467437308134"},{"denom":"ASSET11","index":"0.000026557150856893"},{"denom":"ASSET12","index":"0.000025409189778577"},{"denom":"ASSET13","index":"0.000008348678217638"},{"denom":"ASSET14","index":"0.000024348515645151"},{"denom":"ASSET15","index":"0.000019305257093893"},{"denom":"ASSET16","index":"0.000011824039078448"},{"denom":"ASSET17","index":"0.000009337874135725"},{"denom":"ASSET18","index":"0.000003825021517438"},{"denom":"ASSET2","index":"0.000008092644314938"},{"denom":"ASSET3","index":"0.000002240059115813"},{"denom":"ASSET4","index":"0.000021626536887159"},{"denom":"ASSET5","index":"0.000001745574888449"},{"denom":"ASSET6","index":"0.000007040920669072"},{"denom":"ASSET7","index":"0.000011079696231301"},{"denom":"ASSET8","index":"0.000015176664815864"},{"denom":"ASSET9","index":"0.000006434669973810"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001385039568420"},{"denom":"ASSET1","index":"0.000011547928050470"},{"denom":"ASSET10","index":"0.000008045290512347"},{"denom":"ASSET11","index":"0.000011171268467624"},{"denom":"ASSET12","index":"0.000010059084660007"},{"denom":"ASSET13","index":"0.000003461116009305"},{"denom":"ASSET14","index":"0.000010435744242853"},{"denom":"ASSET15","index":"0.000007461023285412"},{"denom":"ASSET16","index":"0.000005202054396163"},{"denom":"ASSET17","index":"0.000003694427456948"},{"denom":"ASSET18","index":"0.000001759721935608"},{"denom":"ASSET2","index":"0.000003408719794369"},{"denom":"ASSET3","index":"0.000000996516691625"},{"denom":"ASSET4","index":"0.000009383865512804"},{"denom":"ASSET5","index":"0.000000774079930102"},{"denom":"ASSET6","index":"0.000003149704543173"},{"denom":"ASSET7","index":"0.000004824406205487"},{"denom":"ASSET8","index":"0.000006294466047200"},{"denom":"ASSET9","index":"0.000002718671529731"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000002978674281858"},{"denom":"ASSET1","index":"0.000025310372422717"},{"denom":"ASSET10","index":"0.000020411345436720"},{"denom":"ASSET11","index":"0.000025206262983954"},{"denom":"ASSET12","index":"0.000024139567910062"},{"denom":"ASSET13","index":"0.000007924745788344"},{"denom":"ASSET14","index":"0.000023102636423037"},{"denom":"ASSET15","index":"0.000018346974201526"},{"denom":"ASSET16","index":"0.000011213830154915"},{"denom":"ASSET17","index":"0.000008871351161454"},{"denom":"ASSET18","index":"0.000003625142276595"},{"denom":"ASSET2","index":"0.000007680838181843"},{"denom":"ASSET3","index":"0.000002123796319816"},{"denom":"ASSET4","index":"0.000020514843977806"},{"denom":"ASSET5","index":"0.000001655567492872"},{"denom":"ASSET6","index":"0.000006676037052519"},{"denom":"ASSET7","index":"0.000010510115662832"},{"denom":"ASSET8","index":"0.000014407133239162"},{"denom":"ASSET9","index":"0.000006107008804836"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001563741356289"},{"denom":"ASSET1","index":"0.000013036816883138"},{"denom":"ASSET10","index":"0.000009082880828100"},{"denom":"ASSET11","index":"0.000012611783735587"},{"denom":"ASSET12","index":"0.000011356772924286"},{"denom":"ASSET13","index":"0.000003908472310400"},{"denom":"ASSET14","index":"0.000011781101207579"},{"denom":"ASSET15","index":"0.000008423480314776"},{"denom":"ASSET16","index":"0.000005872928997340"},{"denom":"ASSET17","index":"0.000004170681814362"},{"denom":"ASSET18","index":"0.000001986659911066"},{"denom":"ASSET2","index":"0.000003848558848473"},{"denom":"ASSET3","index":"0.000001125668219966"},{"denom":"ASSET4","index":"0.000010594814661429"},{"denom":"ASSET5","index":"0.000000873679247744"},{"denom":"ASSET6","index":"0.000003556392613548"},{"denom":"ASSET7","index":"0.000005446486121273"},{"denom":"ASSET8","index":"0.000007106793880903"},{"denom":"ASSET9","index":"0.000003069683843425"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003115193601728"},{"denom":"ASSET1","index":"0.000026433576226141"},{"denom":"ASSET10","index":"0.000021120836274624"},{"denom":"ASSET11","index":"0.000026274076149270"},{"denom":"ASSET12","index":"0.000025063206789151"},{"denom":"ASSET13","index":"0.000008253838888439"},{"denom":"ASSET14","index":"0.000024111622086359"},{"denom":"ASSET15","index":"0.000019020166052921"},{"denom":"ASSET16","index":"0.000011725264187843"},{"denom":"ASSET17","index":"0.000009210335248597"},{"denom":"ASSET18","index":"0.000003802618681808"},{"denom":"ASSET2","index":"0.000008007094168018"},{"denom":"ASSET3","index":"0.000002223045227271"},{"denom":"ASSET4","index":"0.000021430343290469"},{"denom":"ASSET5","index":"0.000001731871182363"},{"denom":"ASSET6","index":"0.000006989160352022"},{"denom":"ASSET7","index":"0.000010981276608696"},{"denom":"ASSET8","index":"0.000015004007461071"},{"denom":"ASSET9","index":"0.000006368316319391"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001688791638136"},{"denom":"ASSET1","index":"0.000014080258863939"},{"denom":"ASSET10","index":"0.000009809129194434"},{"denom":"ASSET11","index":"0.000013620783833550"},{"denom":"ASSET12","index":"0.000012265553395360"},{"denom":"ASSET13","index":"0.000004220322334414"},{"denom":"ASSET14","index":"0.000012723923918464"},{"denom":"ASSET15","index":"0.000009096721995874"},{"denom":"ASSET16","index":"0.000006342080828109"},{"denom":"ASSET17","index":"0.000004504180706554"},{"denom":"ASSET18","index":"0.000002144953146672"},{"denom":"ASSET2","index":"0.000004156260911908"},{"denom":"ASSET3","index":"0.000001214958013048"},{"denom":"ASSET4","index":"0.000011442695468341"},{"denom":"ASSET5","index":"0.000000943249221039"},{"denom":"ASSET6","index":"0.000003840371828516"},{"denom":"ASSET7","index":"0.000005881501290436"},{"denom":"ASSET8","index":"0.000007675221120608"},{"denom":"ASSET9","index":"0.000003314626361051"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003342989987813"},{"denom":"ASSET1","index":"0.000028363859076608"},{"denom":"ASSET10","index":"0.000022643596968544"},{"denom":"ASSET11","index":"0.000028187678804911"},{"denom":"ASSET12","index":"0.000026879157824253"},{"denom":"ASSET13","index":"0.000008853292918908"},{"denom":"ASSET14","index":"0.000025870927331183"},{"denom":"ASSET15","index":"0.000020395094195043"},{"denom":"ASSET16","index":"0.000012581780801373"},{"denom":"ASSET17","index":"0.000009877287329505"},{"denom":"ASSET18","index":"0.000004080927248291"},{"denom":"ASSET2","index":"0.000008590241612281"},{"denom":"ASSET3","index":"0.000002384972961476"},{"denom":"ASSET4","index":"0.000022995501297970"},{"denom":"ASSET5","index":"0.000001858071035633"},{"denom":"ASSET6","index":"0.000007500418590266"},{"denom":"ASSET7","index":"0.000011782462758670"},{"denom":"ASSET8","index":"0.000016095075530395"},{"denom":"ASSET9","index":"0.000006831506736707"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001571496317510"},{"denom":"ASSET1","index":"0.000013101483241955"},{"denom":"ASSET10","index":"0.000009127906315185"},{"denom":"ASSET11","index":"0.000012674221268720"},{"denom":"ASSET12","index":"0.000011413128948859"},{"denom":"ASSET13","index":"0.000003927726401627"},{"denom":"ASSET14","index":"0.000011839579408375"},{"denom":"ASSET15","index":"0.000008464899606481"},{"denom":"ASSET16","index":"0.000005901733523932"},{"denom":"ASSET17","index":"0.000004191468360414"},{"denom":"ASSET18","index":"0.000001996729506447"},{"denom":"ASSET2","index":"0.000003867268629536"},{"denom":"ASSET3","index":"0.000001131250124766"},{"denom":"ASSET4","index":"0.000010647059997798"},{"denom":"ASSET5","index":"0.000000878057844331"},{"denom":"ASSET6","index":"0.000003573906419993"},{"denom":"ASSET7","index":"0.000005473254280118"},{"denom":"ASSET8","index":"0.000007142132243950"},{"denom":"ASSET9","index":"0.000003084563647228"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003113134051861"},{"denom":"ASSET1","index":"0.000026415094552464"},{"denom":"ASSET10","index":"0.000021090707465492"},{"denom":"ASSET11","index":"0.000026251548228726"},{"denom":"ASSET12","index":"0.000025034408517114"},{"denom":"ASSET13","index":"0.000008245703890405"},{"denom":"ASSET14","index":"0.000024093200316600"},{"denom":"ASSET15","index":"0.000018995578271326"},{"denom":"ASSET16","index":"0.000011717396138812"},{"denom":"ASSET17","index":"0.000009199501798709"},{"denom":"ASSET18","index":"0.000003801350346824"},{"denom":"ASSET2","index":"0.000007999912620195"},{"denom":"ASSET3","index":"0.000002221641081089"},{"denom":"ASSET4","index":"0.000021415082747190"},{"denom":"ASSET5","index":"0.000001730738444371"},{"denom":"ASSET6","index":"0.000006985361363625"},{"denom":"ASSET7","index":"0.000010973556930807"},{"denom":"ASSET8","index":"0.000014990236718633"},{"denom":"ASSET9","index":"0.000006362695679170"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001486431692511"},{"denom":"ASSET1","index":"0.000012397696164316"},{"denom":"ASSET10","index":"0.000008637613387551"},{"denom":"ASSET11","index":"0.000011993186507636"},{"denom":"ASSET12","index":"0.000010799842650204"},{"denom":"ASSET13","index":"0.000003716482933529"},{"denom":"ASSET14","index":"0.000011203544902380"},{"denom":"ASSET15","index":"0.000008010260087670"},{"denom":"ASSET16","index":"0.000005584816956599"},{"denom":"ASSET17","index":"0.000003965970925374"},{"denom":"ASSET18","index":"0.000001889326540182"},{"denom":"ASSET2","index":"0.000003659157213720"},{"denom":"ASSET3","index":"0.000001070618372770"},{"denom":"ASSET4","index":"0.000010074793405297"},{"denom":"ASSET5","index":"0.000000830819234978"},{"denom":"ASSET6","index":"0.000003381410064224"},{"denom":"ASSET7","index":"0.000005179499895414"},{"denom":"ASSET8","index":"0.000006757975701421"},{"denom":"ASSET9","index":"0.000002918767283230"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003023961266495"},{"denom":"ASSET1","index":"0.000025674667559579"},{"denom":"ASSET10","index":"0.000020567435721356"},{"denom":"ASSET11","index":"0.000025532965784321"},{"denom":"ASSET12","index":"0.000024383768132692"},{"denom":"ASSET13","index":"0.000008022807352722"},{"denom":"ASSET14","index":"0.000023423766496233"},{"denom":"ASSET15","index":"0.000018512228577533"},{"denom":"ASSET16","index":"0.000011384524743973"},{"denom":"ASSET17","index":"0.000008960010456843"},{"denom":"ASSET18","index":"0.000003688974211121"},{"denom":"ASSET2","index":"0.000007780619396113"},{"denom":"ASSET3","index":"0.000002157718690670"},{"denom":"ASSET4","index":"0.000020813357966886"},{"denom":"ASSET5","index":"0.000001681323481152"},{"denom":"ASSET6","index":"0.000006783427048921"},{"denom":"ASSET7","index":"0.000010664665966441"},{"denom":"ASSET8","index":"0.000014584270248941"},{"denom":"ASSET9","index":"0.000006187655866052"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001789525520762"},{"denom":"ASSET1","index":"0.000014923544215299"},{"denom":"ASSET10","index":"0.000010397506905977"},{"denom":"ASSET11","index":"0.000014436898494348"},{"denom":"ASSET12","index":"0.000013000171779235"},{"denom":"ASSET13","index":"0.000004474200642702"},{"denom":"ASSET14","index":"0.000013486043818595"},{"denom":"ASSET15","index":"0.000009642393672833"},{"denom":"ASSET16","index":"0.000006722519347127"},{"denom":"ASSET17","index":"0.000004774389100140"},{"denom":"ASSET18","index":"0.000002273850196939"},{"denom":"ASSET2","index":"0.000004405342981073"},{"denom":"ASSET3","index":"0.000001288179849576"},{"denom":"ASSET4","index":"0.000012128232625798"},{"denom":"ASSET5","index":"0.000001000370297599"},{"denom":"ASSET6","index":"0.000004071112533615"},{"denom":"ASSET7","index":"0.000006234326262993"},{"denom":"ASSET8","index":"0.000008135261932908"},{"denom":"ASSET9","index":"0.000003514061787852"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003488279034648"},{"denom":"ASSET1","index":"0.000029592208548275"},{"denom":"ASSET10","index":"0.000023577626976592"},{"denom":"ASSET11","index":"0.000029395914355993"},{"denom":"ASSET12","index":"0.000028007798530295"},{"denom":"ASSET13","index":"0.000009231498766276"},{"denom":"ASSET14","index":"0.000026986732997785"},{"denom":"ASSET15","index":"0.000021244630549189"},{"denom":"ASSET16","index":"0.000013129960095172"},{"denom":"ASSET17","index":"0.000010292381952670"},{"denom":"ASSET18","index":"0.000004261641431672"},{"denom":"ASSET2","index":"0.000008958343988321"},{"denom":"ASSET3","index":"0.000002489657102823"},{"denom":"ASSET4","index":"0.000023991917258738"},{"denom":"ASSET5","index":"0.000001939742890351"},{"denom":"ASSET6","index":"0.000007829259808535"},{"denom":"ASSET7","index":"0.000012294264842111"},{"denom":"ASSET8","index":"0.000016782088113605"},{"denom":"ASSET9","index":"0.000007125719490615"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001504632489095"},{"denom":"ASSET1","index":"0.000012543084148708"},{"denom":"ASSET10","index":"0.000008738830231438"},{"denom":"ASSET11","index":"0.000012134501498699"},{"denom":"ASSET12","index":"0.000010926897843985"},{"denom":"ASSET13","index":"0.000003760573206331"},{"denom":"ASSET14","index":"0.000011335480493994"},{"denom":"ASSET15","index":"0.000008104451906425"},{"denom":"ASSET16","index":"0.000005650267962622"},{"denom":"ASSET17","index":"0.000004012577307899"},{"denom":"ASSET18","index":"0.000001911199106291"},{"denom":"ASSET2","index":"0.000003702780265705"},{"denom":"ASSET3","index":"0.000001083281631273"},{"denom":"ASSET4","index":"0.000010193733911157"},{"denom":"ASSET5","index":"0.000000840685682831"},{"denom":"ASSET6","index":"0.000003421207682886"},{"denom":"ASSET7","index":"0.000005240341290738"},{"denom":"ASSET8","index":"0.000006837711289210"},{"denom":"ASSET9","index":"0.000002953488070376"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003015423229771"},{"denom":"ASSET1","index":"0.000025588098096649"},{"denom":"ASSET10","index":"0.000020460473772645"},{"denom":"ASSET11","index":"0.000025438043766359"},{"denom":"ASSET12","index":"0.000024273358860204"},{"denom":"ASSET13","index":"0.000007991752317173"},{"denom":"ASSET14","index":"0.000023342063892494"},{"denom":"ASSET15","index":"0.000018422728556898"},{"denom":"ASSET16","index":"0.000011348811151398"},{"denom":"ASSET17","index":"0.000008919790197810"},{"denom":"ASSET18","index":"0.000003679502338318"},{"denom":"ASSET2","index":"0.000007752126098631"},{"denom":"ASSET3","index":"0.000002151933074669"},{"denom":"ASSET4","index":"0.000020744635257959"},{"denom":"ASSET5","index":"0.000001676458472807"},{"denom":"ASSET6","index":"0.000006763790928604"},{"denom":"ASSET7","index":"0.000010629564741383"},{"denom":"ASSET8","index":"0.000014527278079751"},{"denom":"ASSET9","index":"0.000006165283413682"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001790270882045"},{"denom":"ASSET1","index":"0.000014924962381265"},{"denom":"ASSET10","index":"0.000010398687848362"},{"denom":"ASSET11","index":"0.000014438353512768"},{"denom":"ASSET12","index":"0.000013001639266884"},{"denom":"ASSET13","index":"0.000004474427888377"},{"denom":"ASSET14","index":"0.000013487623477013"},{"denom":"ASSET15","index":"0.000009643475881721"},{"denom":"ASSET16","index":"0.000006723198012370"},{"denom":"ASSET17","index":"0.000004774888563278"},{"denom":"ASSET18","index":"0.000002274381117071"},{"denom":"ASSET2","index":"0.000004405715467922"},{"denom":"ASSET3","index":"0.000001288670212721"},{"denom":"ASSET4","index":"0.000012129616185469"},{"denom":"ASSET5","index":"0.000001000078046809"},{"denom":"ASSET6","index":"0.000004071523241162"},{"denom":"ASSET7","index":"0.000006235339827137"},{"denom":"ASSET8","index":"0.000008136175240279"},{"denom":"ASSET9","index":"0.000003514327977106"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003452635056994"},{"denom":"ASSET1","index":"0.000029280443630050"},{"denom":"ASSET10","index":"0.000023297581891953"},{"denom":"ASSET11","index":"0.000029078046899152"},{"denom":"ASSET12","index":"0.000027688393753974"},{"denom":"ASSET13","index":"0.000009130247174920"},{"denom":"ASSET14","index":"0.000026700258191979"},{"denom":"ASSET15","index":"0.000020998119885469"},{"denom":"ASSET16","index":"0.000012993858989816"},{"denom":"ASSET17","index":"0.000010174919177657"},{"denom":"ASSET18","index":"0.000004220034662939"},{"denom":"ASSET2","index":"0.000008861755768133"},{"denom":"ASSET3","index":"0.000002464736347038"},{"denom":"ASSET4","index":"0.000023740327943060"},{"denom":"ASSET5","index":"0.000001919615043943"},{"denom":"ASSET6","index":"0.000007749671229698"},{"denom":"ASSET7","index":"0.000012165961282812"},{"denom":"ASSET8","index":"0.000016598407083950"},{"denom":"ASSET9","index":"0.000007048985746822"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001835550145227"},{"denom":"ASSET1","index":"0.000015324623289081"},{"denom":"ASSET10","index":"0.000010676536631006"},{"denom":"ASSET11","index":"0.000014825027987456"},{"denom":"ASSET12","index":"0.000013348446318211"},{"denom":"ASSET13","index":"0.000004592576069005"},{"denom":"ASSET14","index":"0.000013848041619836"},{"denom":"ASSET15","index":"0.000009899388384035"},{"denom":"ASSET16","index":"0.000006901816574290"},{"denom":"ASSET17","index":"0.000004903435367793"},{"denom":"ASSET18","index":"0.000002335145446851"},{"denom":"ASSET2","index":"0.000004522262656184"},{"denom":"ASSET3","index":"0.000001321152019851"},{"denom":"ASSET4","index":"0.000012452875481226"},{"denom":"ASSET5","index":"0.000001025095544814"},{"denom":"ASSET6","index":"0.000004178097003954"},{"denom":"ASSET7","index":"0.000006402221272666"},{"denom":"ASSET8","index":"0.000008352493301969"},{"denom":"ASSET9","index":"0.000003608188289508"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003336473275634"},{"denom":"ASSET1","index":"0.000028284037775138"},{"denom":"ASSET10","index":"0.000022321061137243"},{"denom":"ASSET11","index":"0.000028041053149272"},{"denom":"ASSET12","index":"0.000026607048139233"},{"denom":"ASSET13","index":"0.000008795774551756"},{"denom":"ASSET14","index":"0.000025776026947277"},{"denom":"ASSET15","index":"0.000020150006768141"},{"denom":"ASSET16","index":"0.000012562977954735"},{"denom":"ASSET17","index":"0.000009778271060189"},{"denom":"ASSET18","index":"0.000004091528532498"},{"denom":"ASSET2","index":"0.000008544798017437"},{"denom":"ASSET3","index":"0.000002382883485470"},{"denom":"ASSET4","index":"0.000022934405116164"},{"denom":"ASSET5","index":"0.000001855148612588"},{"denom":"ASSET6","index":"0.000007498692848558"},{"denom":"ASSET7","index":"0.000011756140274513"},{"denom":"ASSET8","index":"0.000015991743254740"},{"denom":"ASSET9","index":"0.000006799136288961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001764742979644"},{"denom":"ASSET1","index":"0.000014715413525055"},{"denom":"ASSET10","index":"0.000010252344388411"},{"denom":"ASSET11","index":"0.000014235671854472"},{"denom":"ASSET12","index":"0.000012819403806098"},{"denom":"ASSET13","index":"0.000004411268809023"},{"denom":"ASSET14","index":"0.000013298556836595"},{"denom":"ASSET15","index":"0.000009507714678855"},{"denom":"ASSET16","index":"0.000006629264655353"},{"denom":"ASSET17","index":"0.000004707943412672"},{"denom":"ASSET18","index":"0.000002242718729968"},{"denom":"ASSET2","index":"0.000004343575199063"},{"denom":"ASSET3","index":"0.000001270873946982"},{"denom":"ASSET4","index":"0.000011958811999481"},{"denom":"ASSET5","index":"0.000000985972145064"},{"denom":"ASSET6","index":"0.000004013936750564"},{"denom":"ASSET7","index":"0.000006147757064510"},{"denom":"ASSET8","index":"0.000008021987100262"},{"denom":"ASSET9","index":"0.000003464735549761"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003371223111771"},{"denom":"ASSET1","index":"0.000028586584995448"},{"denom":"ASSET10","index":"0.000022716281614844"},{"denom":"ASSET11","index":"0.000028381809067472"},{"denom":"ASSET12","index":"0.000027011101270499"},{"denom":"ASSET13","index":"0.000008910504058238"},{"denom":"ASSET14","index":"0.000026065694327630"},{"denom":"ASSET15","index":"0.000020479714095343"},{"denom":"ASSET16","index":"0.000012688778091614"},{"denom":"ASSET17","index":"0.000009925875585388"},{"denom":"ASSET18","index":"0.000004122881217339"},{"denom":"ASSET2","index":"0.000008649339803247"},{"denom":"ASSET3","index":"0.000002407313457267"},{"denom":"ASSET4","index":"0.000023177863483423"},{"denom":"ASSET5","index":"0.000001874397047373"},{"denom":"ASSET6","index":"0.000007568278053481"},{"denom":"ASSET7","index":"0.000011878402488901"},{"denom":"ASSET8","index":"0.000016198768839280"},{"denom":"ASSET9","index":"0.000006880150170591"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001519402004985"},{"denom":"ASSET1","index":"0.000012669186594649"},{"denom":"ASSET10","index":"0.000008826466179926"},{"denom":"ASSET11","index":"0.000012255973562605"},{"denom":"ASSET12","index":"0.000011036700348729"},{"denom":"ASSET13","index":"0.000003798237040326"},{"denom":"ASSET14","index":"0.000011448841492233"},{"denom":"ASSET15","index":"0.000008185476833202"},{"denom":"ASSET16","index":"0.000005707270529482"},{"denom":"ASSET17","index":"0.000004053346512768"},{"denom":"ASSET18","index":"0.000001930471259949"},{"denom":"ASSET2","index":"0.000003739819114914"},{"denom":"ASSET3","index":"0.000001093862254735"},{"denom":"ASSET4","index":"0.000010296025367816"},{"denom":"ASSET5","index":"0.000000848935723420"},{"denom":"ASSET6","index":"0.000003455768651901"},{"denom":"ASSET7","index":"0.000005292985608899"},{"denom":"ASSET8","index":"0.000006906177861104"},{"denom":"ASSET9","index":"0.000002983065805906"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003090388166914"},{"denom":"ASSET1","index":"0.000026235396530584"},{"denom":"ASSET10","index":"0.000021016328726441"},{"denom":"ASSET11","index":"0.000026091077525301"},{"denom":"ASSET12","index":"0.000024916432469284"},{"denom":"ASSET13","index":"0.000008198423394567"},{"denom":"ASSET14","index":"0.000023935350029219"},{"denom":"ASSET15","index":"0.000018916111125702"},{"denom":"ASSET16","index":"0.000011633439861257"},{"denom":"ASSET17","index":"0.000009156707623184"},{"denom":"ASSET18","index":"0.000003769226369030"},{"denom":"ASSET2","index":"0.000007950992094695"},{"denom":"ASSET3","index":"0.000002205065882760"},{"denom":"ASSET4","index":"0.000021268551776440"},{"denom":"ASSET5","index":"0.000001717872208784"},{"denom":"ASSET6","index":"0.000006931889619894"},{"denom":"ASSET7","index":"0.000010897757198785"},{"denom":"ASSET8","index":"0.000014903243728132"},{"denom":"ASSET9","index":"0.000006323427167640"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001518878942956"},{"denom":"ASSET1","index":"0.000012665267621292"},{"denom":"ASSET10","index":"0.000008823986077449"},{"denom":"ASSET11","index":"0.000012252067733139"},{"denom":"ASSET12","index":"0.000011032961258059"},{"denom":"ASSET13","index":"0.000003796959064490"},{"denom":"ASSET14","index":"0.000011445207974612"},{"denom":"ASSET15","index":"0.000008182978177143"},{"denom":"ASSET16","index":"0.000005705208605625"},{"denom":"ASSET17","index":"0.000004051932467214"},{"denom":"ASSET18","index":"0.000001930172487911"},{"denom":"ASSET2","index":"0.000003738815596953"},{"denom":"ASSET3","index":"0.000001093764409816"},{"denom":"ASSET4","index":"0.000010292823511460"},{"denom":"ASSET5","index":"0.000000848799308881"},{"denom":"ASSET6","index":"0.000003454770460461"},{"denom":"ASSET7","index":"0.000005291055545873"},{"denom":"ASSET8","index":"0.000006904298477127"},{"denom":"ASSET9","index":"0.000002981997347372"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003032310940473"},{"denom":"ASSET1","index":"0.000025733484746235"},{"denom":"ASSET10","index":"0.000020566326171769"},{"denom":"ASSET11","index":"0.000025579130700492"},{"denom":"ASSET12","index":"0.000024402998631681"},{"denom":"ASSET13","index":"0.000008035434808363"},{"denom":"ASSET14","index":"0.000023473377840860"},{"denom":"ASSET15","index":"0.000018519821992016"},{"denom":"ASSET16","index":"0.000011413808805814"},{"denom":"ASSET17","index":"0.000008967671528488"},{"denom":"ASSET18","index":"0.000003701450923042"},{"denom":"ASSET2","index":"0.000007795399667781"},{"denom":"ASSET3","index":"0.000002164126947351"},{"denom":"ASSET4","index":"0.000020862528644023"},{"denom":"ASSET5","index":"0.000001685967393794"},{"denom":"ASSET6","index":"0.000006803442800114"},{"denom":"ASSET7","index":"0.000010689840259007"},{"denom":"ASSET8","index":"0.000014607710652032"},{"denom":"ASSET9","index":"0.000006199747658625"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001387661284101"},{"denom":"ASSET1","index":"0.000011573014587468"},{"denom":"ASSET10","index":"0.000008062929395432"},{"denom":"ASSET11","index":"0.000011195232526081"},{"denom":"ASSET12","index":"0.000010081345808669"},{"denom":"ASSET13","index":"0.000003469153210252"},{"denom":"ASSET14","index":"0.000010458456853962"},{"denom":"ASSET15","index":"0.000007477132344649"},{"denom":"ASSET16","index":"0.000005213124040705"},{"denom":"ASSET17","index":"0.000003702666811251"},{"denom":"ASSET18","index":"0.000001763430297203"},{"denom":"ASSET2","index":"0.000003416142938760"},{"denom":"ASSET3","index":"0.000000999142965196"},{"denom":"ASSET4","index":"0.000009404961585085"},{"denom":"ASSET5","index":"0.000000775694605619"},{"denom":"ASSET6","index":"0.000003156459710063"},{"denom":"ASSET7","index":"0.000004834670963223"},{"denom":"ASSET8","index":"0.000006308893323556"},{"denom":"ASSET9","index":"0.000002724996361089"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000002847838387483"},{"denom":"ASSET1","index":"0.000024182680336096"},{"denom":"ASSET10","index":"0.000019393227963423"},{"denom":"ASSET11","index":"0.000024054653395269"},{"denom":"ASSET12","index":"0.000022982316432831"},{"denom":"ASSET13","index":"0.000007558836235579"},{"denom":"ASSET14","index":"0.000022064079622497"},{"denom":"ASSET15","index":"0.000017450899901336"},{"denom":"ASSET16","index":"0.000010721434414440"},{"denom":"ASSET17","index":"0.000008446187739031"},{"denom":"ASSET18","index":"0.000003472449339717"},{"denom":"ASSET2","index":"0.000007330038539196"},{"denom":"ASSET3","index":"0.000002031951160271"},{"denom":"ASSET4","index":"0.000019603371773062"},{"denom":"ASSET5","index":"0.000001583403578691"},{"denom":"ASSET6","index":"0.000006387295602350"},{"denom":"ASSET7","index":"0.000010043914419286"},{"denom":"ASSET8","index":"0.000013741733556815"},{"denom":"ASSET9","index":"0.000005829813216311"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001740203165372"},{"denom":"ASSET1","index":"0.000014506985633466"},{"denom":"ASSET10","index":"0.000010106727386233"},{"denom":"ASSET11","index":"0.000014033828203465"},{"denom":"ASSET12","index":"0.000012637643303754"},{"denom":"ASSET13","index":"0.000004348390877948"},{"denom":"ASSET14","index":"0.000013109742216014"},{"denom":"ASSET15","index":"0.000009373174592071"},{"denom":"ASSET16","index":"0.000006535288529808"},{"denom":"ASSET17","index":"0.000004640541774324"},{"denom":"ASSET18","index":"0.000002210185042151"},{"denom":"ASSET2","index":"0.000004281704260297"},{"denom":"ASSET3","index":"0.000001252226487004"},{"denom":"ASSET4","index":"0.000011789770593618"},{"denom":"ASSET5","index":"0.000000971719285773"},{"denom":"ASSET6","index":"0.000003956739313965"},{"denom":"ASSET7","index":"0.000006060014064326"},{"denom":"ASSET8","index":"0.000007908186039228"},{"denom":"ASSET9","index":"0.000003415836748573"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003351161845380"},{"denom":"ASSET1","index":"0.000028416485386018"},{"denom":"ASSET10","index":"0.000022605276372189"},{"denom":"ASSET11","index":"0.000028218825237526"},{"denom":"ASSET12","index":"0.000026868556551399"},{"denom":"ASSET13","index":"0.000008859853422879"},{"denom":"ASSET14","index":"0.000025912194276628"},{"denom":"ASSET15","index":"0.000020375555431981"},{"denom":"ASSET16","index":"0.000012611404420708"},{"denom":"ASSET17","index":"0.000009873044520717"},{"denom":"ASSET18","index":"0.000004095473642305"},{"denom":"ASSET2","index":"0.000008599384819082"},{"denom":"ASSET3","index":"0.000002391571176633"},{"denom":"ASSET4","index":"0.000023040021162794"},{"denom":"ASSET5","index":"0.000001862805125681"},{"denom":"ASSET6","index":"0.000007520693553142"},{"denom":"ASSET7","index":"0.000011806544930596"},{"denom":"ASSET8","index":"0.000016107343127742"},{"denom":"ASSET9","index":"0.000006840485865179"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001711866379191"},{"denom":"ASSET1","index":"0.000014286095556473"},{"denom":"ASSET10","index":"0.000009953932372868"},{"denom":"ASSET11","index":"0.000013820467901333"},{"denom":"ASSET12","index":"0.000012444127332464"},{"denom":"ASSET13","index":"0.000004281948436482"},{"denom":"ASSET14","index":"0.000012909754987604"},{"denom":"ASSET15","index":"0.000009230383516596"},{"denom":"ASSET16","index":"0.000006434335097252"},{"denom":"ASSET17","index":"0.000004569541988186"},{"denom":"ASSET18","index":"0.000002177494034331"},{"denom":"ASSET2","index":"0.000004215756269820"},{"denom":"ASSET3","index":"0.000001232543793017"},{"denom":"ASSET4","index":"0.000011608736539419"},{"denom":"ASSET5","index":"0.000000956362683841"},{"denom":"ASSET6","index":"0.000003896207879038"},{"denom":"ASSET7","index":"0.000005968707442112"},{"denom":"ASSET8","index":"0.000007787850781065"},{"denom":"ASSET9","index":"0.000003362105568731"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003408995344605"},{"denom":"ASSET1","index":"0.000028940875589883"},{"denom":"ASSET10","index":"0.000023121939135123"},{"denom":"ASSET11","index":"0.000028765460883304"},{"denom":"ASSET12","index":"0.000027437813762181"},{"denom":"ASSET13","index":"0.000009035078182388"},{"denom":"ASSET14","index":"0.000026397840013038"},{"denom":"ASSET15","index":"0.000020822021063845"},{"denom":"ASSET16","index":"0.000012835900360827"},{"denom":"ASSET17","index":"0.000010082289518918"},{"denom":"ASSET18","index":"0.000004163537456367"},{"denom":"ASSET2","index":"0.000008764373535196"},{"denom":"ASSET3","index":"0.000002432999591430"},{"denom":"ASSET4","index":"0.000023461370966582"},{"denom":"ASSET5","index":"0.000001895172356369"},{"denom":"ASSET6","index":"0.000007651446569151"},{"denom":"ASSET7","index":"0.000012022926111771"},{"denom":"ASSET8","index":"0.000016426068411072"},{"denom":"ASSET9","index":"0.000006969965423669"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001459800105667"},{"denom":"ASSET1","index":"0.000012176396665923"},{"denom":"ASSET10","index":"0.000008484162206626"},{"denom":"ASSET11","index":"0.000011779823335110"},{"denom":"ASSET12","index":"0.000010607197020722"},{"denom":"ASSET13","index":"0.000003650070053435"},{"denom":"ASSET14","index":"0.000011003770351536"},{"denom":"ASSET15","index":"0.000007867650218206"},{"denom":"ASSET16","index":"0.000005484791497715"},{"denom":"ASSET17","index":"0.000003895079438851"},{"denom":"ASSET18","index":"0.000001855233857943"},{"denom":"ASSET2","index":"0.000003594230705131"},{"denom":"ASSET3","index":"0.000001050691410948"},{"denom":"ASSET4","index":"0.000009896100013746"},{"denom":"ASSET5","index":"0.000000815938232363"},{"denom":"ASSET6","index":"0.000003321871434831"},{"denom":"ASSET7","index":"0.000005087078588365"},{"denom":"ASSET8","index":"0.000006638044976977"},{"denom":"ASSET9","index":"0.000002867179598640"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000002975317591563"},{"denom":"ASSET1","index":"0.000025265738469637"},{"denom":"ASSET10","index":"0.000020245724387946"},{"denom":"ASSET11","index":"0.000025128558675417"},{"denom":"ASSET12","index":"0.000023998925764885"},{"denom":"ASSET13","index":"0.000007895668684136"},{"denom":"ASSET14","index":"0.000023051238668493"},{"denom":"ASSET15","index":"0.000018221178423268"},{"denom":"ASSET16","index":"0.000011202197653725"},{"denom":"ASSET17","index":"0.000008818540737002"},{"denom":"ASSET18","index":"0.000003629428323701"},{"denom":"ASSET2","index":"0.000007657107369447"},{"denom":"ASSET3","index":"0.000002122660280404"},{"denom":"ASSET4","index":"0.000020482509156357"},{"denom":"ASSET5","index":"0.000001654309607539"},{"denom":"ASSET6","index":"0.000006675356935536"},{"denom":"ASSET7","index":"0.000010494215679887"},{"denom":"ASSET8","index":"0.000014353927855523"},{"denom":"ASSET9","index":"0.000006089535217587"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001617402557586"},{"denom":"ASSET1","index":"0.000013485147451276"},{"denom":"ASSET10","index":"0.000009395521488362"},{"denom":"ASSET11","index":"0.000013045402724081"},{"denom":"ASSET12","index":"0.000011747619504798"},{"denom":"ASSET13","index":"0.000004042433845849"},{"denom":"ASSET14","index":"0.000012186291683878"},{"denom":"ASSET15","index":"0.000008713380887153"},{"denom":"ASSET16","index":"0.000006074912523982"},{"denom":"ASSET17","index":"0.000004313788518972"},{"denom":"ASSET18","index":"0.000002055002188551"},{"denom":"ASSET2","index":"0.000003980226055173"},{"denom":"ASSET3","index":"0.000001163714704894"},{"denom":"ASSET4","index":"0.000010959296640193"},{"denom":"ASSET5","index":"0.000000903085512923"},{"denom":"ASSET6","index":"0.000003677767486712"},{"denom":"ASSET7","index":"0.000005633022700557"},{"denom":"ASSET8","index":"0.000007351244780963"},{"denom":"ASSET9","index":"0.000003174742420725"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003091273620954"},{"denom":"ASSET1","index":"0.000026212594205506"},{"denom":"ASSET10","index":"0.000020831747389799"},{"denom":"ASSET11","index":"0.000026024829344923"},{"denom":"ASSET12","index":"0.000024768925461013"},{"denom":"ASSET13","index":"0.000008170539761157"},{"denom":"ASSET14","index":"0.000023900540063840"},{"denom":"ASSET15","index":"0.000018780610027247"},{"denom":"ASSET16","index":"0.000011634658240098"},{"denom":"ASSET17","index":"0.000009101405984603"},{"denom":"ASSET18","index":"0.000003780149264156"},{"denom":"ASSET2","index":"0.000007930960667726"},{"denom":"ASSET3","index":"0.000002206123035767"},{"denom":"ASSET4","index":"0.000021253166889363"},{"denom":"ASSET5","index":"0.000001718500807532"},{"denom":"ASSET6","index":"0.000006939076737962"},{"denom":"ASSET7","index":"0.000010891166816552"},{"denom":"ASSET8","index":"0.000014853628574871"},{"denom":"ASSET9","index":"0.000006308302102729"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001496654334782"},{"denom":"ASSET1","index":"0.000012477377024436"},{"denom":"ASSET10","index":"0.000008693096469902"},{"denom":"ASSET11","index":"0.000012070207597683"},{"denom":"ASSET12","index":"0.000010869145414891"},{"denom":"ASSET13","index":"0.000003740467488528"},{"denom":"ASSET14","index":"0.000011275146493218"},{"denom":"ASSET15","index":"0.000008061604145195"},{"denom":"ASSET16","index":"0.000005620924281527"},{"denom":"ASSET17","index":"0.000003991662400298"},{"denom":"ASSET18","index":"0.000001901487064682"},{"denom":"ASSET2","index":"0.000003683218415613"},{"denom":"ASSET3","index":"0.000001077217249546"},{"denom":"ASSET4","index":"0.000010139511822330"},{"denom":"ASSET5","index":"0.000000835953299404"},{"denom":"ASSET6","index":"0.000003403398967385"},{"denom":"ASSET7","index":"0.000005212586506346"},{"denom":"ASSET8","index":"0.000006801540366848"},{"denom":"ASSET9","index":"0.000002937812119289"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003012098530886"},{"denom":"ASSET1","index":"0.000025562058034330"},{"denom":"ASSET10","index":"0.000020450222858637"},{"denom":"ASSET11","index":"0.000025414193224582"},{"denom":"ASSET12","index":"0.000024256065084933"},{"denom":"ASSET13","index":"0.000007984561416691"},{"denom":"ASSET14","index":"0.000023318358139730"},{"denom":"ASSET15","index":"0.000018411259079989"},{"denom":"ASSET16","index":"0.000011336678183578"},{"denom":"ASSET17","index":"0.000008913774138499"},{"denom":"ASSET18","index":"0.000003674960609183"},{"denom":"ASSET2","index":"0.000007744948932800"},{"denom":"ASSET3","index":"0.000002148867969989"},{"denom":"ASSET4","index":"0.000020722540912428"},{"denom":"ASSET5","index":"0.000001674229864542"},{"denom":"ASSET6","index":"0.000006756080138401"},{"denom":"ASSET7","index":"0.000010618450136599"},{"denom":"ASSET8","index":"0.000014514789998911"},{"denom":"ASSET9","index":"0.000006159565713194"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001470615438656"},{"denom":"ASSET1","index":"0.000012263141624205"},{"denom":"ASSET10","index":"0.000008543710077270"},{"denom":"ASSET11","index":"0.000011863435889596"},{"denom":"ASSET12","index":"0.000010682701378752"},{"denom":"ASSET13","index":"0.000003676538596641"},{"denom":"ASSET14","index":"0.000011081935762259"},{"denom":"ASSET15","index":"0.000007923412026863"},{"denom":"ASSET16","index":"0.000005524234917004"},{"denom":"ASSET17","index":"0.000003923055223056"},{"denom":"ASSET18","index":"0.000001868907119959"},{"denom":"ASSET2","index":"0.000003619976464385"},{"denom":"ASSET3","index":"0.000001058654575392"},{"denom":"ASSET4","index":"0.000009965776352407"},{"denom":"ASSET5","index":"0.000000822036322121"},{"denom":"ASSET6","index":"0.000003345178771841"},{"denom":"ASSET7","index":"0.000005123115129088"},{"denom":"ASSET8","index":"0.000006685172681558"},{"denom":"ASSET9","index":"0.000002887496851669"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000002995147819628"},{"denom":"ASSET1","index":"0.000025426980115999"},{"denom":"ASSET10","index":"0.000020372034738960"},{"denom":"ASSET11","index":"0.000025287989623967"},{"denom":"ASSET12","index":"0.000024150599022202"},{"denom":"ASSET13","index":"0.000007946076587902"},{"denom":"ASSET14","index":"0.000023198024872944"},{"denom":"ASSET15","index":"0.000018335727027304"},{"denom":"ASSET16","index":"0.000011274635486105"},{"denom":"ASSET17","index":"0.000008875015361763"},{"denom":"ASSET18","index":"0.000003653177061349"},{"denom":"ASSET2","index":"0.000007706361997735"},{"denom":"ASSET3","index":"0.000002137037997503"},{"denom":"ASSET4","index":"0.000020612735071168"},{"denom":"ASSET5","index":"0.000001665450131859"},{"denom":"ASSET6","index":"0.000006718182222688"},{"denom":"ASSET7","index":"0.000010561635089256"},{"denom":"ASSET8","index":"0.000014445035982826"},{"denom":"ASSET9","index":"0.000006128513210961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001778581753434"},{"denom":"ASSET1","index":"0.000014888315804569"},{"denom":"ASSET10","index":"0.000010370885153828"},{"denom":"ASSET11","index":"0.000014404007158094"},{"denom":"ASSET12","index":"0.000012967781516823"},{"denom":"ASSET13","index":"0.000004458979607201"},{"denom":"ASSET14","index":"0.000013452090163298"},{"denom":"ASSET15","index":"0.000009619371736884"},{"denom":"ASSET16","index":"0.000006705169708956"},{"denom":"ASSET17","index":"0.000004759584973979"},{"denom":"ASSET18","index":"0.000002262890399909"},{"denom":"ASSET2","index":"0.000004392178414584"},{"denom":"ASSET3","index":"0.000001285922957882"},{"denom":"ASSET4","index":"0.000012099366012799"},{"denom":"ASSET5","index":"0.000000993667740182"},{"denom":"ASSET6","index":"0.000004058172451498"},{"denom":"ASSET7","index":"0.000006220861062481"},{"denom":"ASSET8","index":"0.000008116344902996"},{"denom":"ASSET9","index":"0.000003507062612406"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003356752793751"},{"denom":"ASSET1","index":"0.000028516406305775"},{"denom":"ASSET10","index":"0.000022616173055400"},{"denom":"ASSET11","index":"0.000028302061322789"},{"denom":"ASSET12","index":"0.000026910491325102"},{"denom":"ASSET13","index":"0.000008878873421079"},{"denom":"ASSET14","index":"0.000025995251505598"},{"denom":"ASSET15","index":"0.000020398635157595"},{"denom":"ASSET16","index":"0.000012658071469071"},{"denom":"ASSET17","index":"0.000009885849877285"},{"denom":"ASSET18","index":"0.000004110010202724"},{"denom":"ASSET2","index":"0.000008622285743228"},{"denom":"ASSET3","index":"0.000002402314047495"},{"denom":"ASSET4","index":"0.000023121698220749"},{"denom":"ASSET5","index":"0.000001866482592061"},{"denom":"ASSET6","index":"0.000007549939309511"},{"denom":"ASSET7","index":"0.000011851024307599"},{"denom":"ASSET8","index":"0.000016149793693754"},{"denom":"ASSET9","index":"0.000006862325287189"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001604942959288"},{"denom":"ASSET1","index":"0.000013380628695124"},{"denom":"ASSET10","index":"0.000009322365613635"},{"denom":"ASSET11","index":"0.000012944148427984"},{"denom":"ASSET12","index":"0.000011656280789193"},{"denom":"ASSET13","index":"0.000004011353995308"},{"denom":"ASSET14","index":"0.000012091757653420"},{"denom":"ASSET15","index":"0.000008645319498111"},{"denom":"ASSET16","index":"0.000006027692148913"},{"denom":"ASSET17","index":"0.000004280767677439"},{"denom":"ASSET18","index":"0.000002039165569874"},{"denom":"ASSET2","index":"0.000003949895566889"},{"denom":"ASSET3","index":"0.000001155418454280"},{"denom":"ASSET4","index":"0.000010873877367808"},{"denom":"ASSET5","index":"0.000000896791353463"},{"denom":"ASSET6","index":"0.000003649878095912"},{"denom":"ASSET7","index":"0.000005589957628131"},{"denom":"ASSET8","index":"0.000007294237475803"},{"denom":"ASSET9","index":"0.000003150685146712"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003200268554223"},{"denom":"ASSET1","index":"0.000027155061035589"},{"denom":"ASSET10","index":"0.000021699312128992"},{"denom":"ASSET11","index":"0.000026991580254755"},{"denom":"ASSET12","index":"0.000025748970079650"},{"denom":"ASSET13","index":"0.000008479073830121"},{"denom":"ASSET14","index":"0.000024769827936089"},{"denom":"ASSET15","index":"0.000019540730612944"},{"denom":"ASSET16","index":"0.000012044995213579"},{"denom":"ASSET17","index":"0.000009462424001901"},{"denom":"ASSET18","index":"0.000003906197580725"},{"denom":"ASSET2","index":"0.000008225756082433"},{"denom":"ASSET3","index":"0.000002283784004254"},{"denom":"ASSET4","index":"0.000022014648589339"},{"denom":"ASSET5","index":"0.000001779311895342"},{"denom":"ASSET6","index":"0.000007179475362032"},{"denom":"ASSET7","index":"0.000011280598785262"},{"denom":"ASSET8","index":"0.000015413911362487"},{"denom":"ASSET9","index":"0.000006542247148589"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001620184629837"},{"denom":"ASSET1","index":"0.000013508113244239"},{"denom":"ASSET10","index":"0.000009411159415052"},{"denom":"ASSET11","index":"0.000013068550109883"},{"denom":"ASSET12","index":"0.000011766766981214"},{"denom":"ASSET13","index":"0.000004049052718392"},{"denom":"ASSET14","index":"0.000012206330115570"},{"denom":"ASSET15","index":"0.000008726455301921"},{"denom":"ASSET16","index":"0.000006083441070987"},{"denom":"ASSET17","index":"0.000004319553108765"},{"denom":"ASSET18","index":"0.000002056930051793"},{"denom":"ASSET2","index":"0.000003987063045598"},{"denom":"ASSET3","index":"0.000001166532933482"},{"denom":"ASSET4","index":"0.000010977807509294"},{"denom":"ASSET5","index":"0.000000904485680309"},{"denom":"ASSET6","index":"0.000003682750106429"},{"denom":"ASSET7","index":"0.000005643877936631"},{"denom":"ASSET8","index":"0.000007362682500458"},{"denom":"ASSET9","index":"0.000003178379586880"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003154859072778"},{"denom":"ASSET1","index":"0.000026759958230198"},{"denom":"ASSET10","index":"0.000021318547828682"},{"denom":"ASSET11","index":"0.000026582778956839"},{"denom":"ASSET12","index":"0.000025324795995745"},{"denom":"ASSET13","index":"0.000008347309163095"},{"denom":"ASSET14","index":"0.000024403216779648"},{"denom":"ASSET15","index":"0.000019208461119321"},{"denom":"ASSET16","index":"0.000011872154646602"},{"denom":"ASSET17","index":"0.000009304429323264"},{"denom":"ASSET18","index":"0.000003853154066825"},{"denom":"ASSET2","index":"0.000008100524497579"},{"denom":"ASSET3","index":"0.000002251942800438"},{"denom":"ASSET4","index":"0.000021695917087147"},{"denom":"ASSET5","index":"0.000001753374642360"},{"denom":"ASSET6","index":"0.000007078305954632"},{"denom":"ASSET7","index":"0.000011118481739065"},{"denom":"ASSET8","index":"0.000015174129529137"},{"denom":"ASSET9","index":"0.000006441283498998"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001565910537906"},{"denom":"ASSET1","index":"0.000013053983025959"},{"denom":"ASSET10","index":"0.000009094819386579"},{"denom":"ASSET11","index":"0.000012628414118813"},{"denom":"ASSET12","index":"0.000011371841840295"},{"denom":"ASSET13","index":"0.000003913403541838"},{"denom":"ASSET14","index":"0.000011796953146466"},{"denom":"ASSET15","index":"0.000008434501179040"},{"denom":"ASSET16","index":"0.000005880630135191"},{"denom":"ASSET17","index":"0.000004176066501732"},{"denom":"ASSET18","index":"0.000001989191440174"},{"denom":"ASSET2","index":"0.000003853457814057"},{"denom":"ASSET3","index":"0.000001127071202473"},{"denom":"ASSET4","index":"0.000010608563413286"},{"denom":"ASSET5","index":"0.000000874933065013"},{"denom":"ASSET6","index":"0.000003561050790760"},{"denom":"ASSET7","index":"0.000005453688425119"},{"denom":"ASSET8","index":"0.000007116152768840"},{"denom":"ASSET9","index":"0.000003073705751932"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003066618221533"},{"denom":"ASSET1","index":"0.000026018563142658"},{"denom":"ASSET10","index":"0.000020743763118655"},{"denom":"ASSET11","index":"0.000025849025514444"},{"denom":"ASSET12","index":"0.000024635604575072"},{"denom":"ASSET13","index":"0.000008118261811936"},{"denom":"ASSET14","index":"0.000023728777879609"},{"denom":"ASSET15","index":"0.000018689177197382"},{"denom":"ASSET16","index":"0.000011544003668418"},{"denom":"ASSET17","index":"0.000009052167825210"},{"denom":"ASSET18","index":"0.000003745930402733"},{"denom":"ASSET2","index":"0.000007877080459743"},{"denom":"ASSET3","index":"0.000002188594145460"},{"denom":"ASSET4","index":"0.000021094338825720"},{"denom":"ASSET5","index":"0.000001705356613908"},{"denom":"ASSET6","index":"0.000006882744986340"},{"denom":"ASSET7","index":"0.000010809249072439"},{"denom":"ASSET8","index":"0.000014757775472241"},{"denom":"ASSET9","index":"0.000006264987011427"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001616793771814"},{"denom":"ASSET1","index":"0.000013481664806896"},{"denom":"ASSET10","index":"0.000009392973001731"},{"denom":"ASSET11","index":"0.000013042136425966"},{"denom":"ASSET12","index":"0.000011745108533466"},{"denom":"ASSET13","index":"0.000004041984429535"},{"denom":"ASSET14","index":"0.000012183439289380"},{"denom":"ASSET15","index":"0.000008710326742521"},{"denom":"ASSET16","index":"0.000006073156456940"},{"denom":"ASSET17","index":"0.000004312647683187"},{"denom":"ASSET18","index":"0.000002053926902712"},{"denom":"ASSET2","index":"0.000003979707928695"},{"denom":"ASSET3","index":"0.000001164091515706"},{"denom":"ASSET4","index":"0.000010955873647818"},{"denom":"ASSET5","index":"0.000000903009262183"},{"denom":"ASSET6","index":"0.000003677906424623"},{"denom":"ASSET7","index":"0.000005632430450993"},{"denom":"ASSET8","index":"0.000007349824724165"},{"denom":"ASSET9","index":"0.000003173706292820"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003010548827117"},{"denom":"ASSET1","index":"0.000025517681435823"},{"denom":"ASSET10","index":"0.000020207909525991"},{"denom":"ASSET11","index":"0.000025316824190850"},{"denom":"ASSET12","index":"0.000024059273468565"},{"denom":"ASSET13","index":"0.000007945703994160"},{"denom":"ASSET14","index":"0.000023261456497592"},{"denom":"ASSET15","index":"0.000018230653165683"},{"denom":"ASSET16","index":"0.000011330852554208"},{"denom":"ASSET17","index":"0.000008840468160143"},{"denom":"ASSET18","index":"0.000003685449036638"},{"denom":"ASSET2","index":"0.000007715875534239"},{"denom":"ASSET3","index":"0.000002150116713749"},{"denom":"ASSET4","index":"0.000020690763011385"},{"denom":"ASSET5","index":"0.000001674170167376"},{"denom":"ASSET6","index":"0.000006761947340508"},{"denom":"ASSET7","index":"0.000010605047135869"},{"denom":"ASSET8","index":"0.000014444866674878"},{"denom":"ASSET9","index":"0.000006137206230949"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001598496813351"},{"denom":"ASSET1","index":"0.000013327209301876"},{"denom":"ASSET10","index":"0.000009285082513510"},{"denom":"ASSET11","index":"0.000012892549064690"},{"denom":"ASSET12","index":"0.000011609910099638"},{"denom":"ASSET13","index":"0.000003995530641827"},{"denom":"ASSET14","index":"0.000012043503249499"},{"denom":"ASSET15","index":"0.000008611039019674"},{"denom":"ASSET16","index":"0.000006003788988106"},{"denom":"ASSET17","index":"0.000004263725256261"},{"denom":"ASSET18","index":"0.000002031022875886"},{"denom":"ASSET2","index":"0.000003933995272733"},{"denom":"ASSET3","index":"0.000001150675832486"},{"denom":"ASSET4","index":"0.000010830580656369"},{"denom":"ASSET5","index":"0.000000893152091305"},{"denom":"ASSET6","index":"0.000003635566517414"},{"denom":"ASSET7","index":"0.000005567705967820"},{"denom":"ASSET8","index":"0.000007265086206652"},{"denom":"ASSET9","index":"0.000003137948128033"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003202417698287"},{"denom":"ASSET1","index":"0.000027176874960756"},{"denom":"ASSET10","index":"0.000021729724210241"},{"denom":"ASSET11","index":"0.000027016578438308"},{"denom":"ASSET12","index":"0.000025779554956391"},{"denom":"ASSET13","index":"0.000008487649506725"},{"denom":"ASSET14","index":"0.000024790682929963"},{"denom":"ASSET15","index":"0.000019565798539307"},{"denom":"ASSET16","index":"0.000012053877846841"},{"denom":"ASSET17","index":"0.000009473617164606"},{"denom":"ASSET18","index":"0.000003908301251667"},{"denom":"ASSET2","index":"0.000008233254558201"},{"denom":"ASSET3","index":"0.000002285025567503"},{"denom":"ASSET4","index":"0.000022032200437673"},{"denom":"ASSET5","index":"0.000001780306156687"},{"denom":"ASSET6","index":"0.000007184182778940"},{"denom":"ASSET7","index":"0.000011289430429576"},{"denom":"ASSET8","index":"0.000015429251463912"},{"denom":"ASSET9","index":"0.000006548040900334"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001349258766758"},{"denom":"ASSET1","index":"0.000011264433664868"},{"denom":"ASSET10","index":"0.000007848225297969"},{"denom":"ASSET11","index":"0.000010895650990484"},{"denom":"ASSET12","index":"0.000009811385762205"},{"denom":"ASSET13","index":"0.000003376459336127"},{"denom":"ASSET14","index":"0.000010177960157102"},{"denom":"ASSET15","index":"0.000007278489190238"},{"denom":"ASSET16","index":"0.000005074626261883"},{"denom":"ASSET17","index":"0.000003603912123322"},{"denom":"ASSET18","index":"0.000001715833161655"},{"denom":"ASSET2","index":"0.000003323460628431"},{"denom":"ASSET3","index":"0.000000971642974425"},{"denom":"ASSET4","index":"0.000009153318474981"},{"denom":"ASSET5","index":"0.000000753023305179"},{"denom":"ASSET6","index":"0.000003071716766875"},{"denom":"ASSET7","index":"0.000004705843587499"},{"denom":"ASSET8","index":"0.000006139016974776"},{"denom":"ASSET9","index":"0.000002652143664283"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000002874619638549"},{"denom":"ASSET1","index":"0.000024442633186143"},{"denom":"ASSET10","index":"0.000019689737510784"},{"denom":"ASSET11","index":"0.000024334399718263"},{"denom":"ASSET12","index":"0.000023294058494145"},{"denom":"ASSET13","index":"0.000007650065286478"},{"denom":"ASSET14","index":"0.000022306974942610"},{"denom":"ASSET15","index":"0.000017702453996022"},{"denom":"ASSET16","index":"0.000010830667352685"},{"denom":"ASSET17","index":"0.000008561334956642"},{"denom":"ASSET18","index":"0.000003501743239949"},{"denom":"ASSET2","index":"0.000007413384379561"},{"denom":"ASSET3","index":"0.000002050775894848"},{"denom":"ASSET4","index":"0.000019811877393900"},{"denom":"ASSET5","index":"0.000001596563839644"},{"denom":"ASSET6","index":"0.000006447875450380"},{"denom":"ASSET7","index":"0.000010149425285061"},{"denom":"ASSET8","index":"0.000013906577801610"},{"denom":"ASSET9","index":"0.000005896530335304"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001744355646452"},{"denom":"ASSET1","index":"0.000014544558741461"},{"denom":"ASSET10","index":"0.000010133244841823"},{"denom":"ASSET11","index":"0.000014070651242217"},{"denom":"ASSET12","index":"0.000012670295178174"},{"denom":"ASSET13","index":"0.000004360461787457"},{"denom":"ASSET14","index":"0.000013143775348745"},{"denom":"ASSET15","index":"0.000009397812194213"},{"denom":"ASSET16","index":"0.000006552230555377"},{"denom":"ASSET17","index":"0.000004653181929010"},{"denom":"ASSET18","index":"0.000002216553831001"},{"denom":"ASSET2","index":"0.000004293371185670"},{"denom":"ASSET3","index":"0.000001255918972299"},{"denom":"ASSET4","index":"0.000011819911117312"},{"denom":"ASSET5","index":"0.000000974736704938"},{"denom":"ASSET6","index":"0.000003967319407560"},{"denom":"ASSET7","index":"0.000006076186412764"},{"denom":"ASSET8","index":"0.000007929083542361"},{"denom":"ASSET9","index":"0.000003424611991834"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003377008276018"},{"denom":"ASSET1","index":"0.000028642142456639"},{"denom":"ASSET10","index":"0.000022800592191853"},{"denom":"ASSET11","index":"0.000028447577997463"},{"denom":"ASSET12","index":"0.000027093635853923"},{"denom":"ASSET13","index":"0.000008933092474106"},{"denom":"ASSET14","index":"0.000026119259559896"},{"denom":"ASSET15","index":"0.000020548756595198"},{"denom":"ASSET16","index":"0.000012710670192565"},{"denom":"ASSET17","index":"0.000009956402105067"},{"denom":"ASSET18","index":"0.000004127475104327"},{"denom":"ASSET2","index":"0.000008669602227225"},{"denom":"ASSET3","index":"0.000002410895003349"},{"denom":"ASSET4","index":"0.000023222264254358"},{"denom":"ASSET5","index":"0.000001877874241403"},{"denom":"ASSET6","index":"0.000007579654674160"},{"denom":"ASSET7","index":"0.000011900488798179"},{"denom":"ASSET8","index":"0.000016239324105118"},{"denom":"ASSET9","index":"0.000006895771583569"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001546168277317"},{"denom":"ASSET1","index":"0.000012892123182452"},{"denom":"ASSET10","index":"0.000008982377260299"},{"denom":"ASSET11","index":"0.000012472337191477"},{"denom":"ASSET12","index":"0.000011231230783378"},{"denom":"ASSET13","index":"0.000003864117010091"},{"denom":"ASSET14","index":"0.000011651016774353"},{"denom":"ASSET15","index":"0.000008329231976204"},{"denom":"ASSET16","index":"0.000005807908663952"},{"denom":"ASSET17","index":"0.000004124853650448"},{"denom":"ASSET18","index":"0.000001964650585090"},{"denom":"ASSET2","index":"0.000003805451266010"},{"denom":"ASSET3","index":"0.000001113345454324"},{"denom":"ASSET4","index":"0.000010477701892746"},{"denom":"ASSET5","index":"0.000000863038279582"},{"denom":"ASSET6","index":"0.000003516033595214"},{"denom":"ASSET7","index":"0.000005385515306574"},{"denom":"ASSET8","index":"0.000007028156140823"},{"denom":"ASSET9","index":"0.000003034974493755"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003044385892570"},{"denom":"ASSET1","index":"0.000025830014188245"},{"denom":"ASSET10","index":"0.000020607856539150"},{"denom":"ASSET11","index":"0.000025666657138152"},{"denom":"ASSET12","index":"0.000024468008636658"},{"denom":"ASSET13","index":"0.000008060303383676"},{"denom":"ASSET14","index":"0.000023559408638801"},{"denom":"ASSET15","index":"0.000018562848593971"},{"denom":"ASSET16","index":"0.000011459854746185"},{"denom":"ASSET17","index":"0.000008991538648143"},{"denom":"ASSET18","index":"0.000003718456390600"},{"denom":"ASSET2","index":"0.000007821717005664"},{"denom":"ASSET3","index":"0.000002173111618200"},{"denom":"ASSET4","index":"0.000020942104557307"},{"denom":"ASSET5","index":"0.000001691598021351"},{"denom":"ASSET6","index":"0.000006831113312915"},{"denom":"ASSET7","index":"0.000010730587410374"},{"denom":"ASSET8","index":"0.000014654605067850"},{"denom":"ASSET9","index":"0.000006220578615076"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001387821916020"},{"denom":"ASSET1","index":"0.000011588015182905"},{"denom":"ASSET10","index":"0.000008073788013584"},{"denom":"ASSET11","index":"0.000011209789038410"},{"denom":"ASSET12","index":"0.000010095957715252"},{"denom":"ASSET13","index":"0.000003472532948668"},{"denom":"ASSET14","index":"0.000010471205701129"},{"denom":"ASSET15","index":"0.000007487090765824"},{"denom":"ASSET16","index":"0.000005220712057474"},{"denom":"ASSET17","index":"0.000003707807479495"},{"denom":"ASSET18","index":"0.000001766048060515"},{"denom":"ASSET2","index":"0.000003418926093543"},{"denom":"ASSET3","index":"0.000001000661295671"},{"denom":"ASSET4","index":"0.000009416937550333"},{"denom":"ASSET5","index":"0.000000774321240698"},{"denom":"ASSET6","index":"0.000003159826293771"},{"denom":"ASSET7","index":"0.000004839507754361"},{"denom":"ASSET8","index":"0.000006316674428923"},{"denom":"ASSET9","index":"0.000002727993294151"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000002956721491824"},{"denom":"ASSET1","index":"0.000025136116728129"},{"denom":"ASSET10","index":"0.000020247681325291"},{"denom":"ASSET11","index":"0.000025026479369709"},{"denom":"ASSET12","index":"0.000023957412844230"},{"denom":"ASSET13","index":"0.000007866588644670"},{"denom":"ASSET14","index":"0.000022940688787988"},{"denom":"ASSET15","index":"0.000018203641219753"},{"denom":"ASSET16","index":"0.000011138902531601"},{"denom":"ASSET17","index":"0.000008803888891481"},{"denom":"ASSET18","index":"0.000003602115317706"},{"denom":"ASSET2","index":"0.000007623974866010"},{"denom":"ASSET3","index":"0.000002110544057177"},{"denom":"ASSET4","index":"0.000020374365248917"},{"denom":"ASSET5","index":"0.000001641905652861"},{"denom":"ASSET6","index":"0.000006630874494768"},{"denom":"ASSET7","index":"0.000010436528568948"},{"denom":"ASSET8","index":"0.000014302572224422"},{"denom":"ASSET9","index":"0.000006063325997423"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001500850379058"},{"denom":"ASSET1","index":"0.000012511793460183"},{"denom":"ASSET10","index":"0.000008717304800227"},{"denom":"ASSET11","index":"0.000012103632089176"},{"denom":"ASSET12","index":"0.000010899320696303"},{"denom":"ASSET13","index":"0.000003750781099635"},{"denom":"ASSET14","index":"0.000011306809643305"},{"denom":"ASSET15","index":"0.000008083881387560"},{"denom":"ASSET16","index":"0.000005636258009526"},{"denom":"ASSET17","index":"0.000004002940101492"},{"denom":"ASSET18","index":"0.000001906322054045"},{"denom":"ASSET2","index":"0.000003692952635209"},{"denom":"ASSET3","index":"0.000001079912951956"},{"denom":"ASSET4","index":"0.000010167723378913"},{"denom":"ASSET5","index":"0.000000838512734178"},{"denom":"ASSET6","index":"0.000003412551825143"},{"denom":"ASSET7","index":"0.000005226751790509"},{"denom":"ASSET8","index":"0.000006820396682251"},{"denom":"ASSET9","index":"0.000002945889565704"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003004514310835"},{"denom":"ASSET1","index":"0.000025497942224476"},{"denom":"ASSET10","index":"0.000020385999177782"},{"denom":"ASSET11","index":"0.000025346802479017"},{"denom":"ASSET12","index":"0.000024185328023735"},{"denom":"ASSET13","index":"0.000007962788555043"},{"denom":"ASSET14","index":"0.000023259189454501"},{"denom":"ASSET15","index":"0.000018355567065709"},{"denom":"ASSET16","index":"0.000011309092459120"},{"denom":"ASSET17","index":"0.000008887662321727"},{"denom":"ASSET18","index":"0.000003666570499762"},{"denom":"ASSET2","index":"0.000007723995884874"},{"denom":"ASSET3","index":"0.000002143405494402"},{"denom":"ASSET4","index":"0.000020670641097733"},{"denom":"ASSET5","index":"0.000001670336124344"},{"denom":"ASSET6","index":"0.000006739845385808"},{"denom":"ASSET7","index":"0.000010591422556410"},{"denom":"ASSET8","index":"0.000014475095162856"},{"denom":"ASSET9","index":"0.000006143360978771"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001507842106347"},{"denom":"ASSET1","index":"0.000012572313391156"},{"denom":"ASSET10","index":"0.000008759356679472"},{"denom":"ASSET11","index":"0.000012162445176153"},{"denom":"ASSET12","index":"0.000010952151629736"},{"denom":"ASSET13","index":"0.000003769211161813"},{"denom":"ASSET14","index":"0.000011361231636633"},{"denom":"ASSET15","index":"0.000008123272738112"},{"denom":"ASSET16","index":"0.000005663669344042"},{"denom":"ASSET17","index":"0.000004022225963767"},{"denom":"ASSET18","index":"0.000001916133905138"},{"denom":"ASSET2","index":"0.000003711277866039"},{"denom":"ASSET3","index":"0.000001085756665704"},{"denom":"ASSET4","index":"0.000010217147571101"},{"denom":"ASSET5","index":"0.000000842594465073"},{"denom":"ASSET6","index":"0.000003429493468225"},{"denom":"ASSET7","index":"0.000005252224712828"},{"denom":"ASSET8","index":"0.000006853863583762"},{"denom":"ASSET9","index":"0.000002960115541236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003064659144392"},{"denom":"ASSET1","index":"0.000026014545525120"},{"denom":"ASSET10","index":"0.000020837902255895"},{"denom":"ASSET11","index":"0.000025870951889592"},{"denom":"ASSET12","index":"0.000024704995690840"},{"denom":"ASSET13","index":"0.000008129050348807"},{"denom":"ASSET14","index":"0.000023733606076391"},{"denom":"ASSET15","index":"0.000018755969892396"},{"denom":"ASSET16","index":"0.000011535737727926"},{"denom":"ASSET17","index":"0.000009078938038909"},{"denom":"ASSET18","index":"0.000003738223548700"},{"denom":"ASSET2","index":"0.000007883998416280"},{"denom":"ASSET3","index":"0.000002186926046113"},{"denom":"ASSET4","index":"0.000021089316501471"},{"denom":"ASSET5","index":"0.000001703791082418"},{"denom":"ASSET6","index":"0.000006873778950624"},{"denom":"ASSET7","index":"0.000010805665377904"},{"denom":"ASSET8","index":"0.000014777724141198"},{"denom":"ASSET9","index":"0.000006269886019705"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001016570122529"},{"denom":"ASSET1","index":"0.000008477171470527"},{"denom":"ASSET10","index":"0.000005906463519680"},{"denom":"ASSET11","index":"0.000008200989896911"},{"denom":"ASSET12","index":"0.000007384774710599"},{"denom":"ASSET13","index":"0.000002541117067960"},{"denom":"ASSET14","index":"0.000007660956284215"},{"denom":"ASSET15","index":"0.000005477395717812"},{"denom":"ASSET16","index":"0.000003819073322661"},{"denom":"ASSET17","index":"0.000002711881121289"},{"denom":"ASSET18","index":"0.000001291518742692"},{"denom":"ASSET2","index":"0.000002502279034170"},{"denom":"ASSET3","index":"0.000000731757874738"},{"denom":"ASSET4","index":"0.000006889127422234"},{"denom":"ASSET5","index":"0.000000567775065403"},{"denom":"ASSET6","index":"0.000002312404202309"},{"denom":"ASSET7","index":"0.000003541658795591"},{"denom":"ASSET8","index":"0.000004621109544256"},{"denom":"ASSET9","index":"0.000001996151641449"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000002499545170163"},{"denom":"ASSET1","index":"0.000021282413071401"},{"denom":"ASSET10","index":"0.000017412808765385"},{"denom":"ASSET11","index":"0.000021259874812403"},{"denom":"ASSET12","index":"0.000020486111882687"},{"denom":"ASSET13","index":"0.000006694303381301"},{"denom":"ASSET14","index":"0.000019446986985139"},{"denom":"ASSET15","index":"0.000015606004703242"},{"denom":"ASSET16","index":"0.000009412782427040"},{"denom":"ASSET17","index":"0.000007528963649123"},{"denom":"ASSET18","index":"0.000003027066879988"},{"denom":"ASSET2","index":"0.000006477094521478"},{"denom":"ASSET3","index":"0.000001780578331809"},{"denom":"ASSET4","index":"0.000017246051064985"},{"denom":"ASSET5","index":"0.000001387924123500"},{"denom":"ASSET6","index":"0.000005593713918003"},{"denom":"ASSET7","index":"0.000008831780754063"},{"denom":"ASSET8","index":"0.000012169406160300"},{"denom":"ASSET9","index":"0.000005149034362400"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001552339226368"},{"denom":"ASSET1","index":"0.000012948480372324"},{"denom":"ASSET10","index":"0.000009021431734191"},{"denom":"ASSET11","index":"0.000012526515146109"},{"denom":"ASSET12","index":"0.000011279099696349"},{"denom":"ASSET13","index":"0.000003880848065920"},{"denom":"ASSET14","index":"0.000011701064922564"},{"denom":"ASSET15","index":"0.000008365383608761"},{"denom":"ASSET16","index":"0.000005830512213323"},{"denom":"ASSET17","index":"0.000004142651308462"},{"denom":"ASSET18","index":"0.000001971224414436"},{"denom":"ASSET2","index":"0.000003822327341117"},{"denom":"ASSET3","index":"0.000001118053847563"},{"denom":"ASSET4","index":"0.000010521410312050"},{"denom":"ASSET5","index":"0.000000865490719463"},{"denom":"ASSET6","index":"0.000003529723717099"},{"denom":"ASSET7","index":"0.000005408546987108"},{"denom":"ASSET8","index":"0.000007056367396050"},{"denom":"ASSET9","index":"0.000003046157727933"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003043964098015"},{"denom":"ASSET1","index":"0.000025828331615061"},{"denom":"ASSET10","index":"0.000020594675215425"},{"denom":"ASSET11","index":"0.000025661520704142"},{"denom":"ASSET12","index":"0.000024456429429906"},{"denom":"ASSET13","index":"0.000008058244190043"},{"denom":"ASSET14","index":"0.000023555461855486"},{"denom":"ASSET15","index":"0.000018552812657155"},{"denom":"ASSET16","index":"0.000011456604402492"},{"denom":"ASSET17","index":"0.000008987560143691"},{"denom":"ASSET18","index":"0.000003716794339222"},{"denom":"ASSET2","index":"0.000007820148034807"},{"denom":"ASSET3","index":"0.000002173135080244"},{"denom":"ASSET4","index":"0.000020938599170426"},{"denom":"ASSET5","index":"0.000001690207511083"},{"denom":"ASSET6","index":"0.000006829800145738"},{"denom":"ASSET7","index":"0.000010729300481432"},{"denom":"ASSET8","index":"0.000014648719853803"},{"denom":"ASSET9","index":"0.000006217447736766"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000000977108719668"},{"denom":"ASSET1","index":"0.000008146517162771"},{"denom":"ASSET10","index":"0.000005675852121603"},{"denom":"ASSET11","index":"0.000007881108738917"},{"denom":"ASSET12","index":"0.000007096716963958"},{"denom":"ASSET13","index":"0.000002441926549413"},{"denom":"ASSET14","index":"0.000007362125387813"},{"denom":"ASSET15","index":"0.000005263370239944"},{"denom":"ASSET16","index":"0.000003670074447059"},{"denom":"ASSET17","index":"0.000002605905002368"},{"denom":"ASSET18","index":"0.000001241671893765"},{"denom":"ASSET2","index":"0.000002404735560083"},{"denom":"ASSET3","index":"0.000000703247798239"},{"denom":"ASSET4","index":"0.000006620841350486"},{"denom":"ASSET5","index":"0.000000546031343344"},{"denom":"ASSET6","index":"0.000002222161612464"},{"denom":"ASSET7","index":"0.000003402975523689"},{"denom":"ASSET8","index":"0.000004440942225898"},{"denom":"ASSET9","index":"0.000001917871699764"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000002320380931676"},{"denom":"ASSET1","index":"0.000019748951316256"},{"denom":"ASSET10","index":"0.000016101172379351"},{"denom":"ASSET11","index":"0.000019714000020718"},{"denom":"ASSET12","index":"0.000018967805559844"},{"denom":"ASSET13","index":"0.000006204998608741"},{"denom":"ASSET14","index":"0.000018041457784230"},{"denom":"ASSET15","index":"0.000014440911570898"},{"denom":"ASSET16","index":"0.000008738221404310"},{"denom":"ASSET17","index":"0.000006970584758543"},{"denom":"ASSET18","index":"0.000002814127990287"},{"denom":"ASSET2","index":"0.000006006105656449"},{"denom":"ASSET3","index":"0.000001653724297068"},{"denom":"ASSET4","index":"0.000016005284799403"},{"denom":"ASSET5","index":"0.000001288969102308"},{"denom":"ASSET6","index":"0.000005195185892122"},{"denom":"ASSET7","index":"0.000008196101819524"},{"denom":"ASSET8","index":"0.000011280171312915"},{"denom":"ASSET9","index":"0.000004774394171461"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001745798220012"},{"denom":"ASSET1","index":"0.000014553743296829"},{"denom":"ASSET10","index":"0.000010139438249561"},{"denom":"ASSET11","index":"0.000014079320164724"},{"denom":"ASSET12","index":"0.000012678243118663"},{"denom":"ASSET13","index":"0.000004363016060013"},{"denom":"ASSET14","index":"0.000013152173087429"},{"denom":"ASSET15","index":"0.000009403145384454"},{"denom":"ASSET16","index":"0.000006556113428486"},{"denom":"ASSET17","index":"0.000004655955083371"},{"denom":"ASSET18","index":"0.000002217755535422"},{"denom":"ASSET2","index":"0.000004295945845911"},{"denom":"ASSET3","index":"0.000001256580187737"},{"denom":"ASSET4","index":"0.000011827536358912"},{"denom":"ASSET5","index":"0.000000975477084515"},{"denom":"ASSET6","index":"0.000003969964878841"},{"denom":"ASSET7","index":"0.000006080210806364"},{"denom":"ASSET8","index":"0.000007934011797614"},{"denom":"ASSET9","index":"0.000003426498879278"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003342998947188"},{"denom":"ASSET1","index":"0.000028345782457833"},{"denom":"ASSET10","index":"0.000022532322238539"},{"denom":"ASSET11","index":"0.000028144588841629"},{"denom":"ASSET12","index":"0.000026788988923046"},{"denom":"ASSET13","index":"0.000008836278349189"},{"denom":"ASSET14","index":"0.000025846526421467"},{"denom":"ASSET15","index":"0.000020312521464953"},{"denom":"ASSET16","index":"0.000012581099317360"},{"denom":"ASSET17","index":"0.000009844015126225"},{"denom":"ASSET18","index":"0.000004087085525414"},{"denom":"ASSET2","index":"0.000008577030596387"},{"denom":"ASSET3","index":"0.000002386540105172"},{"denom":"ASSET4","index":"0.000022982635628207"},{"denom":"ASSET5","index":"0.000001858980311097"},{"denom":"ASSET6","index":"0.000007503977785171"},{"denom":"ASSET7","index":"0.000011778054778213"},{"denom":"ASSET8","index":"0.000016064148587518"},{"denom":"ASSET9","index":"0.000006822246648031"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001535240763659"},{"denom":"ASSET1","index":"0.000012802535686671"},{"denom":"ASSET10","index":"0.000008918976928097"},{"denom":"ASSET11","index":"0.000012384847277788"},{"denom":"ASSET12","index":"0.000011152366284839"},{"denom":"ASSET13","index":"0.000003838101909148"},{"denom":"ASSET14","index":"0.000011569197017318"},{"denom":"ASSET15","index":"0.000008271431242866"},{"denom":"ASSET16","index":"0.000005767016142371"},{"denom":"ASSET17","index":"0.000004095404830432"},{"denom":"ASSET18","index":"0.000001951213819735"},{"denom":"ASSET2","index":"0.000003778922237253"},{"denom":"ASSET3","index":"0.000001105544885116"},{"denom":"ASSET4","index":"0.000010403614783903"},{"denom":"ASSET5","index":"0.000000857676404279"},{"denom":"ASSET6","index":"0.000003491600641819"},{"denom":"ASSET7","index":"0.000005348470057083"},{"denom":"ASSET8","index":"0.000006978912901618"},{"denom":"ASSET9","index":"0.000003013874884636"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003086246918243"},{"denom":"ASSET1","index":"0.000026194228204796"},{"denom":"ASSET10","index":"0.000020951998769875"},{"denom":"ASSET11","index":"0.000026042273492864"},{"denom":"ASSET12","index":"0.000024853724280460"},{"denom":"ASSET13","index":"0.000008181454895403"},{"denom":"ASSET14","index":"0.000023895275980533"},{"denom":"ASSET15","index":"0.000018864347888264"},{"denom":"ASSET16","index":"0.000011616907749245"},{"denom":"ASSET17","index":"0.000009133094250657"},{"denom":"ASSET18","index":"0.000003766346411006"},{"denom":"ASSET2","index":"0.000007935833032906"},{"denom":"ASSET3","index":"0.000002202232138461"},{"denom":"ASSET4","index":"0.000021234941701767"},{"denom":"ASSET5","index":"0.000001715417631736"},{"denom":"ASSET6","index":"0.000006923101305069"},{"denom":"ASSET7","index":"0.000010881195638563"},{"denom":"ASSET8","index":"0.000014873239564067"},{"denom":"ASSET9","index":"0.000006310901439146"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001694764141112"},{"denom":"ASSET1","index":"0.000014130580032100"},{"denom":"ASSET10","index":"0.000009844524497723"},{"denom":"ASSET11","index":"0.000013669508873851"},{"denom":"ASSET12","index":"0.000012309527666765"},{"denom":"ASSET13","index":"0.000004236016804025"},{"denom":"ASSET14","index":"0.000012769407426673"},{"denom":"ASSET15","index":"0.000009129685492685"},{"denom":"ASSET16","index":"0.000006365641339869"},{"denom":"ASSET17","index":"0.000004520761007698"},{"denom":"ASSET18","index":"0.000002153452502679"},{"denom":"ASSET2","index":"0.000004171085594400"},{"denom":"ASSET3","index":"0.000001219991901933"},{"denom":"ASSET4","index":"0.000011483292916774"},{"denom":"ASSET5","index":"0.000000947161681676"},{"denom":"ASSET6","index":"0.000003854173635500"},{"denom":"ASSET7","index":"0.000005903378783277"},{"denom":"ASSET8","index":"0.000007702985978462"},{"denom":"ASSET9","index":"0.000003326979869284"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003333609736915"},{"denom":"ASSET1","index":"0.000028281729059652"},{"denom":"ASSET10","index":"0.000022560289398652"},{"denom":"ASSET11","index":"0.000028101042421314"},{"denom":"ASSET12","index":"0.000026787599659919"},{"denom":"ASSET13","index":"0.000008826015241086"},{"denom":"ASSET14","index":"0.000025794402991537"},{"denom":"ASSET15","index":"0.000020323143219667"},{"denom":"ASSET16","index":"0.000012547562311789"},{"denom":"ASSET17","index":"0.000009844220733470"},{"denom":"ASSET18","index":"0.000004071528772633"},{"denom":"ASSET2","index":"0.000008563776406339"},{"denom":"ASSET3","index":"0.000002379222276435"},{"denom":"ASSET4","index":"0.000022929058250150"},{"denom":"ASSET5","index":"0.000001853699834530"},{"denom":"ASSET6","index":"0.000007480326246914"},{"denom":"ASSET7","index":"0.000011749530638760"},{"denom":"ASSET8","index":"0.000016044906214881"},{"denom":"ASSET9","index":"0.000006811209452101"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001763265776240"},{"denom":"ASSET1","index":"0.000014701143889842"},{"denom":"ASSET10","index":"0.000010242267715158"},{"denom":"ASSET11","index":"0.000014221824092125"},{"denom":"ASSET12","index":"0.000012807154532407"},{"denom":"ASSET13","index":"0.000004407037513175"},{"denom":"ASSET14","index":"0.000013285723045174"},{"denom":"ASSET15","index":"0.000009498495615253"},{"denom":"ASSET16","index":"0.000006622576828953"},{"denom":"ASSET17","index":"0.000004703043783239"},{"denom":"ASSET18","index":"0.000002240331719108"},{"denom":"ASSET2","index":"0.000004339421867729"},{"denom":"ASSET3","index":"0.000001269671564485"},{"denom":"ASSET4","index":"0.000011947684550294"},{"denom":"ASSET5","index":"0.000000984934568662"},{"denom":"ASSET6","index":"0.000004010359059893"},{"denom":"ASSET7","index":"0.000006141754461338"},{"denom":"ASSET8","index":"0.000008013956555240"},{"denom":"ASSET9","index":"0.000003461169761882"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003372790294110"},{"denom":"ASSET1","index":"0.000028600279733511"},{"denom":"ASSET10","index":"0.000022731421090197"},{"denom":"ASSET11","index":"0.000028396190348540"},{"denom":"ASSET12","index":"0.000027027392524280"},{"denom":"ASSET13","index":"0.000008915082315276"},{"denom":"ASSET14","index":"0.000026078776667620"},{"denom":"ASSET15","index":"0.000020492230414373"},{"denom":"ASSET16","index":"0.000012694274413467"},{"denom":"ASSET17","index":"0.000009931274832025"},{"denom":"ASSET18","index":"0.000004123939856338"},{"denom":"ASSET2","index":"0.000008653658587521"},{"denom":"ASSET3","index":"0.000002407864000528"},{"denom":"ASSET4","index":"0.000023189126720885"},{"denom":"ASSET5","index":"0.000001875419633234"},{"denom":"ASSET6","index":"0.000007571725921487"},{"denom":"ASSET7","index":"0.000011883748947250"},{"denom":"ASSET8","index":"0.000016207221904670"},{"denom":"ASSET9","index":"0.000006883201227023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001453309126336"},{"denom":"ASSET1","index":"0.000012116886392617"},{"denom":"ASSET10","index":"0.000008441923956558"},{"denom":"ASSET11","index":"0.000011721955689254"},{"denom":"ASSET12","index":"0.000010555542874101"},{"denom":"ASSET13","index":"0.000003632376264868"},{"denom":"ASSET14","index":"0.000010950025301978"},{"denom":"ASSET15","index":"0.000007829131366891"},{"denom":"ASSET16","index":"0.000005458650595742"},{"denom":"ASSET17","index":"0.000003876686404859"},{"denom":"ASSET18","index":"0.000001846446727754"},{"denom":"ASSET2","index":"0.000003576790104576"},{"denom":"ASSET3","index":"0.000001046274984845"},{"denom":"ASSET4","index":"0.000009847267605868"},{"denom":"ASSET5","index":"0.000000812275181037"},{"denom":"ASSET6","index":"0.000003305135159925"},{"denom":"ASSET7","index":"0.000005061926790434"},{"denom":"ASSET8","index":"0.000006605339289501"},{"denom":"ASSET9","index":"0.000002852825194325"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000002846126280344"},{"denom":"ASSET1","index":"0.000024142729904188"},{"denom":"ASSET10","index":"0.000019247649074564"},{"denom":"ASSET11","index":"0.000023985879136349"},{"denom":"ASSET12","index":"0.000022859091275790"},{"denom":"ASSET13","index":"0.000007532792628817"},{"denom":"ASSET14","index":"0.000022018595952129"},{"denom":"ASSET15","index":"0.000017341431925331"},{"denom":"ASSET16","index":"0.000010711928951149"},{"denom":"ASSET17","index":"0.000008400535387767"},{"denom":"ASSET18","index":"0.000003476353193421"},{"denom":"ASSET2","index":"0.000007309791035362"},{"denom":"ASSET3","index":"0.000002031285314481"},{"denom":"ASSET4","index":"0.000019573873127075"},{"denom":"ASSET5","index":"0.000001582650339951"},{"denom":"ASSET6","index":"0.000006386635795582"},{"denom":"ASSET7","index":"0.000010030235680714"},{"denom":"ASSET8","index":"0.000013694243666513"},{"denom":"ASSET9","index":"0.000005813799926422"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001542334439671"},{"denom":"ASSET1","index":"0.000012860022908304"},{"denom":"ASSET10","index":"0.000008959505058412"},{"denom":"ASSET11","index":"0.000012440701863130"},{"denom":"ASSET12","index":"0.000011202637482986"},{"denom":"ASSET13","index":"0.000003855293405849"},{"denom":"ASSET14","index":"0.000011621234937056"},{"denom":"ASSET15","index":"0.000008308996655285"},{"denom":"ASSET16","index":"0.000005793070384239"},{"denom":"ASSET17","index":"0.000004114339021332"},{"denom":"ASSET18","index":"0.000001959846507084"},{"denom":"ASSET2","index":"0.000003796320730815"},{"denom":"ASSET3","index":"0.000001110350550164"},{"denom":"ASSET4","index":"0.000010450826325201"},{"denom":"ASSET5","index":"0.000000861797005699"},{"denom":"ASSET6","index":"0.000003507969675592"},{"denom":"ASSET7","index":"0.000005372663952407"},{"denom":"ASSET8","index":"0.000007010512417899"},{"denom":"ASSET9","index":"0.000003027866977623"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003036454064443"},{"denom":"ASSET1","index":"0.000025762443856573"},{"denom":"ASSET10","index":"0.000020552854458451"},{"denom":"ASSET11","index":"0.000025598594042577"},{"denom":"ASSET12","index":"0.000024403233064712"},{"denom":"ASSET13","index":"0.000008040226829205"},{"denom":"ASSET14","index":"0.000023496526683137"},{"denom":"ASSET15","index":"0.000018514610345002"},{"denom":"ASSET16","index":"0.000011429420030088"},{"denom":"ASSET17","index":"0.000008967792958730"},{"denom":"ASSET18","index":"0.000003708688180539"},{"denom":"ASSET2","index":"0.000007801450355100"},{"denom":"ASSET3","index":"0.000002167197324698"},{"denom":"ASSET4","index":"0.000020886439041228"},{"denom":"ASSET5","index":"0.000001688395026424"},{"denom":"ASSET6","index":"0.000006814112030993"},{"denom":"ASSET7","index":"0.000010703097412338"},{"denom":"ASSET8","index":"0.000014616213118562"},{"denom":"ASSET9","index":"0.000006204650488693"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001802604811891"},{"denom":"ASSET1","index":"0.000015041134377282"},{"denom":"ASSET10","index":"0.000010478421042795"},{"denom":"ASSET11","index":"0.000014549893343095"},{"denom":"ASSET12","index":"0.000013101148598203"},{"denom":"ASSET13","index":"0.000004508593559534"},{"denom":"ASSET14","index":"0.000013592389632390"},{"denom":"ASSET15","index":"0.000009716581133843"},{"denom":"ASSET16","index":"0.000006773297988330"},{"denom":"ASSET17","index":"0.000004812496911192"},{"denom":"ASSET18","index":"0.000002289682786467"},{"denom":"ASSET2","index":"0.000004437821546134"},{"denom":"ASSET3","index":"0.000001298874598869"},{"denom":"ASSET4","index":"0.000012222743020122"},{"denom":"ASSET5","index":"0.000001007460426045"},{"denom":"ASSET6","index":"0.000004100613717582"},{"denom":"ASSET7","index":"0.000006282056954143"},{"denom":"ASSET8","index":"0.000008197064375552"},{"denom":"ASSET9","index":"0.000003538600669994"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003500919125422"},{"denom":"ASSET1","index":"0.000029708744113596"},{"denom":"ASSET10","index":"0.000023658219501850"},{"denom":"ASSET11","index":"0.000029508250092955"},{"denom":"ASSET12","index":"0.000028107871580940"},{"denom":"ASSET13","index":"0.000009266072102552"},{"denom":"ASSET14","index":"0.000027092614384257"},{"denom":"ASSET15","index":"0.000021318431245277"},{"denom":"ASSET16","index":"0.000013180724612002"},{"denom":"ASSET17","index":"0.000010330094773179"},{"denom":"ASSET18","index":"0.000004277644880979"},{"denom":"ASSET2","index":"0.000008990842831989"},{"denom":"ASSET3","index":"0.000002500335792843"},{"denom":"ASSET4","index":"0.000024086210482120"},{"denom":"ASSET5","index":"0.000001946754653173"},{"denom":"ASSET6","index":"0.000007858889858659"},{"denom":"ASSET7","index":"0.000012341576470869"},{"denom":"ASSET8","index":"0.000016843078118646"},{"denom":"ASSET9","index":"0.000007150129263591"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001563811170888"},{"denom":"ASSET1","index":"0.000013038374863878"},{"denom":"ASSET10","index":"0.000009083864212622"},{"denom":"ASSET11","index":"0.000012612362006834"},{"denom":"ASSET12","index":"0.000011358137819015"},{"denom":"ASSET13","index":"0.000003908204905926"},{"denom":"ASSET14","index":"0.000011781504633469"},{"denom":"ASSET15","index":"0.000008423676586333"},{"denom":"ASSET16","index":"0.000005872891529250"},{"denom":"ASSET17","index":"0.000004170163122369"},{"denom":"ASSET18","index":"0.000001987177985342"},{"denom":"ASSET2","index":"0.000003848668947643"},{"denom":"ASSET3","index":"0.000001125891122188"},{"denom":"ASSET4","index":"0.000010596077552999"},{"denom":"ASSET5","index":"0.000000873194054811"},{"denom":"ASSET6","index":"0.000003556281241411"},{"denom":"ASSET7","index":"0.000005446878672206"},{"denom":"ASSET8","index":"0.000007107270397641"},{"denom":"ASSET9","index":"0.000003069409404789"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003311345528520"},{"denom":"ASSET1","index":"0.000028134750769747"},{"denom":"ASSET10","index":"0.000022648872120201"},{"denom":"ASSET11","index":"0.000028007957662740"},{"denom":"ASSET12","index":"0.000026803793052874"},{"denom":"ASSET13","index":"0.000008804941803873"},{"denom":"ASSET14","index":"0.000025676450668466"},{"denom":"ASSET15","index":"0.000020365161363483"},{"denom":"ASSET16","index":"0.000012467103206876"},{"denom":"ASSET17","index":"0.000009848512066991"},{"denom":"ASSET18","index":"0.000004032794375330"},{"denom":"ASSET2","index":"0.000008534928074651"},{"denom":"ASSET3","index":"0.000002362590241163"},{"denom":"ASSET4","index":"0.000022806063702805"},{"denom":"ASSET5","index":"0.000001840254083448"},{"denom":"ASSET6","index":"0.000007424521355960"},{"denom":"ASSET7","index":"0.000011683846998076"},{"denom":"ASSET8","index":"0.000016006498096466"},{"denom":"ASSET9","index":"0.000006786333067798"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001600184479142"},{"denom":"ASSET1","index":"0.000013342157474081"},{"denom":"ASSET10","index":"0.000009295060662992"},{"denom":"ASSET11","index":"0.000012907134644369"},{"denom":"ASSET12","index":"0.000011622469236023"},{"denom":"ASSET13","index":"0.000003999732516397"},{"denom":"ASSET14","index":"0.000012056763384279"},{"denom":"ASSET15","index":"0.000008620301633991"},{"denom":"ASSET16","index":"0.000006010164655719"},{"denom":"ASSET17","index":"0.000004268615973958"},{"denom":"ASSET18","index":"0.000002033021264483"},{"denom":"ASSET2","index":"0.000003938523274026"},{"denom":"ASSET3","index":"0.000001152045383207"},{"denom":"ASSET4","index":"0.000010842780077243"},{"denom":"ASSET5","index":"0.000000894092147498"},{"denom":"ASSET6","index":"0.000003639035195279"},{"denom":"ASSET7","index":"0.000005573684463094"},{"denom":"ASSET8","index":"0.000007272969620361"},{"denom":"ASSET9","index":"0.000003141345760282"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003037978324998"},{"denom":"ASSET1","index":"0.000025756345113171"},{"denom":"ASSET10","index":"0.000020449699671521"},{"denom":"ASSET11","index":"0.000025567125107120"},{"denom":"ASSET12","index":"0.000024323299608917"},{"denom":"ASSET13","index":"0.000008026089638757"},{"denom":"ASSET14","index":"0.000023482777870484"},{"denom":"ASSET15","index":"0.000018439819094125"},{"denom":"ASSET16","index":"0.000011433094032389"},{"denom":"ASSET17","index":"0.000008938487942114"},{"denom":"ASSET18","index":"0.000003715472889790"},{"denom":"ASSET2","index":"0.000007791978720736"},{"denom":"ASSET3","index":"0.000002168844641333"},{"denom":"ASSET4","index":"0.000020883291069830"},{"denom":"ASSET5","index":"0.000001689134510364"},{"denom":"ASSET6","index":"0.000006819968009550"},{"denom":"ASSET7","index":"0.000010702337477897"},{"denom":"ASSET8","index":"0.000014590947163921"},{"denom":"ASSET9","index":"0.000006197850437110"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001732863553160"},{"denom":"ASSET1","index":"0.000014476512568697"},{"denom":"ASSET10","index":"0.000010084697727409"},{"denom":"ASSET11","index":"0.000014004946421444"},{"denom":"ASSET12","index":"0.000012607292539223"},{"denom":"ASSET13","index":"0.000004334999642824"},{"denom":"ASSET14","index":"0.000013078858686476"},{"denom":"ASSET15","index":"0.000009351781667220"},{"denom":"ASSET16","index":"0.000006516703263852"},{"denom":"ASSET17","index":"0.000004630438674838"},{"denom":"ASSET18","index":"0.000002204429700414"},{"denom":"ASSET2","index":"0.000004272502924514"},{"denom":"ASSET3","index":"0.000001249934366214"},{"denom":"ASSET4","index":"0.000011760746082105"},{"denom":"ASSET5","index":"0.000000965858373893"},{"denom":"ASSET6","index":"0.000003948656293267"},{"denom":"ASSET7","index":"0.000006045137116599"},{"denom":"ASSET8","index":"0.000007891631066688"},{"denom":"ASSET9","index":"0.000003403230388010"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003203314564743"},{"denom":"ASSET1","index":"0.000027174750089688"},{"denom":"ASSET10","index":"0.000021494761442080"},{"denom":"ASSET11","index":"0.000026954579685264"},{"denom":"ASSET12","index":"0.000025598519259277"},{"denom":"ASSET13","index":"0.000008453363478510"},{"denom":"ASSET14","index":"0.000024766008219885"},{"denom":"ASSET15","index":"0.000019395989679368"},{"denom":"ASSET16","index":"0.000012063312986412"},{"denom":"ASSET17","index":"0.000009406957788586"},{"denom":"ASSET18","index":"0.000003925664786352"},{"denom":"ASSET2","index":"0.000008214094571203"},{"denom":"ASSET3","index":"0.000002289770772075"},{"denom":"ASSET4","index":"0.000022031271429646"},{"denom":"ASSET5","index":"0.000001779377444361"},{"denom":"ASSET6","index":"0.000007202120906665"},{"denom":"ASSET7","index":"0.000011290805949933"},{"denom":"ASSET8","index":"0.000015376618183469"},{"denom":"ASSET9","index":"0.000006529467958809"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001687731873143"},{"denom":"ASSET1","index":"0.000014069560961171"},{"denom":"ASSET10","index":"0.000009802495056563"},{"denom":"ASSET11","index":"0.000013610740912442"},{"denom":"ASSET12","index":"0.000012256373563096"},{"denom":"ASSET13","index":"0.000004217751625940"},{"denom":"ASSET14","index":"0.000012714404583367"},{"denom":"ASSET15","index":"0.000009090791386823"},{"denom":"ASSET16","index":"0.000006338265608675"},{"denom":"ASSET17","index":"0.000004501407356839"},{"denom":"ASSET18","index":"0.000002144184836496"},{"denom":"ASSET2","index":"0.000004153051292327"},{"denom":"ASSET3","index":"0.000001214709312157"},{"denom":"ASSET4","index":"0.000011433811394910"},{"denom":"ASSET5","index":"0.000000942889008137"},{"denom":"ASSET6","index":"0.000003837834423079"},{"denom":"ASSET7","index":"0.000005877867503028"},{"denom":"ASSET8","index":"0.000007669751132718"},{"denom":"ASSET9","index":"0.000003312735983819"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003310751488522"},{"denom":"ASSET1","index":"0.000028084250149300"},{"denom":"ASSET10","index":"0.000022395324527460"},{"denom":"ASSET11","index":"0.000027902986790638"},{"denom":"ASSET12","index":"0.000026594787286768"},{"denom":"ASSET13","index":"0.000008763085936534"},{"denom":"ASSET14","index":"0.000025613920456358"},{"denom":"ASSET15","index":"0.000020176020856033"},{"denom":"ASSET16","index":"0.000012460451689171"},{"denom":"ASSET17","index":"0.000009773335616478"},{"denom":"ASSET18","index":"0.000004043661907525"},{"denom":"ASSET2","index":"0.000008503271494062"},{"denom":"ASSET3","index":"0.000002362859659779"},{"denom":"ASSET4","index":"0.000022769116693783"},{"denom":"ASSET5","index":"0.000001840413908887"},{"denom":"ASSET6","index":"0.000007429033260494"},{"denom":"ASSET7","index":"0.000011667535172652"},{"denom":"ASSET8","index":"0.000015931047386954"},{"denom":"ASSET9","index":"0.000006763232815972"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001411639939639"},{"denom":"ASSET1","index":"0.000011770559134781"},{"denom":"ASSET10","index":"0.000008200405560598"},{"denom":"ASSET11","index":"0.000011386782830640"},{"denom":"ASSET12","index":"0.000010253700018254"},{"denom":"ASSET13","index":"0.000003528795747429"},{"denom":"ASSET14","index":"0.000010636868119061"},{"denom":"ASSET15","index":"0.000007604974496011"},{"denom":"ASSET16","index":"0.000005302316671163"},{"denom":"ASSET17","index":"0.000003765386844594"},{"denom":"ASSET18","index":"0.000001793591633776"},{"denom":"ASSET2","index":"0.000003474665650649"},{"denom":"ASSET3","index":"0.000001016307772140"},{"denom":"ASSET4","index":"0.000009565822046806"},{"denom":"ASSET5","index":"0.000000788839724994"},{"denom":"ASSET6","index":"0.000003210705403426"},{"denom":"ASSET7","index":"0.000004917323960353"},{"denom":"ASSET8","index":"0.000006416545180176"},{"denom":"ASSET9","index":"0.000002771582595835"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000002915106026686"},{"denom":"ASSET1","index":"0.000024751938975568"},{"denom":"ASSET10","index":"0.000019864528416862"},{"denom":"ASSET11","index":"0.000024625253839727"},{"denom":"ASSET12","index":"0.000023534700266806"},{"denom":"ASSET13","index":"0.000007739190454504"},{"denom":"ASSET14","index":"0.000022584902384729"},{"denom":"ASSET15","index":"0.000017872912229645"},{"denom":"ASSET16","index":"0.000010972881933217"},{"denom":"ASSET17","index":"0.000008648586457086"},{"denom":"ASSET18","index":"0.000003552999450219"},{"denom":"ASSET2","index":"0.000007504215303421"},{"denom":"ASSET3","index":"0.000002079538758775"},{"denom":"ASSET4","index":"0.000020065180146540"},{"denom":"ASSET5","index":"0.000001620267199228"},{"denom":"ASSET6","index":"0.000006536798446662"},{"denom":"ASSET7","index":"0.000010280222742310"},{"denom":"ASSET8","index":"0.000014068743113537"},{"denom":"ASSET9","index":"0.000005967789042866"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001670929391506"},{"denom":"ASSET1","index":"0.000013946161101263"},{"denom":"ASSET10","index":"0.000009716355120388"},{"denom":"ASSET11","index":"0.000013489421488305"},{"denom":"ASSET12","index":"0.000012147571569489"},{"denom":"ASSET13","index":"0.000004178741924768"},{"denom":"ASSET14","index":"0.000012601474290441"},{"denom":"ASSET15","index":"0.000009009969010905"},{"denom":"ASSET16","index":"0.000006280878901179"},{"denom":"ASSET17","index":"0.000004459594233357"},{"denom":"ASSET18","index":"0.000002124832112458"},{"denom":"ASSET2","index":"0.000004116330300637"},{"denom":"ASSET3","index":"0.000001202842210524"},{"denom":"ASSET4","index":"0.000011333383563781"},{"denom":"ASSET5","index":"0.000000933337469958"},{"denom":"ASSET6","index":"0.000003804272179982"},{"denom":"ASSET7","index":"0.000005824139288221"},{"denom":"ASSET8","index":"0.000007600033683947"},{"denom":"ASSET9","index":"0.000003282284050887"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003306866574231"},{"denom":"ASSET1","index":"0.000028073670524533"},{"denom":"ASSET10","index":"0.000022410378668975"},{"denom":"ASSET11","index":"0.000027896117796052"},{"denom":"ASSET12","index":"0.000026601615360568"},{"denom":"ASSET13","index":"0.000008760019105133"},{"denom":"ASSET14","index":"0.000025604072816608"},{"denom":"ASSET15","index":"0.000020183975077340"},{"denom":"ASSET16","index":"0.000012452378452775"},{"denom":"ASSET17","index":"0.000009773941069454"},{"denom":"ASSET18","index":"0.000004038323507821"},{"denom":"ASSET2","index":"0.000008501686860316"},{"denom":"ASSET3","index":"0.000002358773872569"},{"denom":"ASSET4","index":"0.000022758821093429"},{"denom":"ASSET5","index":"0.000001837837668790"},{"denom":"ASSET6","index":"0.000007423905647148"},{"denom":"ASSET7","index":"0.000011659308440973"},{"denom":"ASSET8","index":"0.000015926660063085"},{"denom":"ASSET9","index":"0.000006759875068056"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001598361255475"},{"denom":"ASSET1","index":"0.000013324868720531"},{"denom":"ASSET10","index":"0.000009283863630055"},{"denom":"ASSET11","index":"0.000012890721875256"},{"denom":"ASSET12","index":"0.000011607749807828"},{"denom":"ASSET13","index":"0.000003994929715268"},{"denom":"ASSET14","index":"0.000012041896653103"},{"denom":"ASSET15","index":"0.000008609605674538"},{"denom":"ASSET16","index":"0.000006002777756047"},{"denom":"ASSET17","index":"0.000004262945630213"},{"denom":"ASSET18","index":"0.000002030561253910"},{"denom":"ASSET2","index":"0.000003933279565341"},{"denom":"ASSET3","index":"0.000001150586482321"},{"denom":"ASSET4","index":"0.000010829011071909"},{"denom":"ASSET5","index":"0.000000892953750521"},{"denom":"ASSET6","index":"0.000003634763049905"},{"denom":"ASSET7","index":"0.000005566684063932"},{"denom":"ASSET8","index":"0.000007263685559290"},{"denom":"ASSET9","index":"0.000003137668156809"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003119961272076"},{"denom":"ASSET1","index":"0.000026462428012801"},{"denom":"ASSET10","index":"0.000021088828135750"},{"denom":"ASSET11","index":"0.000026288818556387"},{"denom":"ASSET12","index":"0.000025049012446876"},{"denom":"ASSET13","index":"0.000008256026418292"},{"denom":"ASSET14","index":"0.000024133914778951"},{"denom":"ASSET15","index":"0.000019001193386697"},{"denom":"ASSET16","index":"0.000011741691861213"},{"denom":"ASSET17","index":"0.000009205139483526"},{"denom":"ASSET18","index":"0.000003811157018018"},{"denom":"ASSET2","index":"0.000008011229275486"},{"denom":"ASSET3","index":"0.000002226652147557"},{"denom":"ASSET4","index":"0.000021454928269907"},{"denom":"ASSET5","index":"0.000001734689929917"},{"denom":"ASSET6","index":"0.000007001091110949"},{"denom":"ASSET7","index":"0.000010994186615549"},{"denom":"ASSET8","index":"0.000015007966738007"},{"denom":"ASSET9","index":"0.000006372340046203"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001543375593884"},{"denom":"ASSET1","index":"0.000012871309378663"},{"denom":"ASSET10","index":"0.000008967332198598"},{"denom":"ASSET11","index":"0.000012451619524186"},{"denom":"ASSET12","index":"0.000011213472915376"},{"denom":"ASSET13","index":"0.000003858438984711"},{"denom":"ASSET14","index":"0.000011631932007817"},{"denom":"ASSET15","index":"0.000008316259081242"},{"denom":"ASSET16","index":"0.000005798119954378"},{"denom":"ASSET17","index":"0.000004118129774432"},{"denom":"ASSET18","index":"0.000001961834686325"},{"denom":"ASSET2","index":"0.000003799362406955"},{"denom":"ASSET3","index":"0.000001111378119041"},{"denom":"ASSET4","index":"0.000010460246548983"},{"denom":"ASSET5","index":"0.000000862764187650"},{"denom":"ASSET6","index":"0.000003511364090393"},{"denom":"ASSET7","index":"0.000005377199337864"},{"denom":"ASSET8","index":"0.000007016574370602"},{"denom":"ASSET9","index":"0.000003030136134086"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003061984062566"},{"denom":"ASSET1","index":"0.000025984754387841"},{"denom":"ASSET10","index":"0.000020750278468036"},{"denom":"ASSET11","index":"0.000025825260107338"},{"denom":"ASSET12","index":"0.000024630365005548"},{"denom":"ASSET13","index":"0.000008111503841622"},{"denom":"ASSET14","index":"0.000023701848593669"},{"denom":"ASSET15","index":"0.000018689068915475"},{"denom":"ASSET16","index":"0.000011526541772952"},{"denom":"ASSET17","index":"0.000009050861170220"},{"denom":"ASSET18","index":"0.000003739265665267"},{"denom":"ASSET2","index":"0.000007869809789784"},{"denom":"ASSET3","index":"0.000002185113944095"},{"denom":"ASSET4","index":"0.000021066477214749"},{"denom":"ASSET5","index":"0.000001702392649313"},{"denom":"ASSET6","index":"0.000006871251000760"},{"denom":"ASSET7","index":"0.000010794622225013"},{"denom":"ASSET8","index":"0.000014746923085504"},{"denom":"ASSET9","index":"0.000006258895459680"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001745217677213"},{"denom":"ASSET1","index":"0.000014553842410819"},{"denom":"ASSET10","index":"0.000010139729507131"},{"denom":"ASSET11","index":"0.000014078681363843"},{"denom":"ASSET12","index":"0.000012678362515121"},{"denom":"ASSET13","index":"0.000004362304066790"},{"denom":"ASSET14","index":"0.000013152043309614"},{"denom":"ASSET15","index":"0.000009402563770700"},{"denom":"ASSET16","index":"0.000006556038246289"},{"denom":"ASSET17","index":"0.000004655394058383"},{"denom":"ASSET18","index":"0.000002217418219224"},{"denom":"ASSET2","index":"0.000004295692705065"},{"denom":"ASSET3","index":"0.000001256734357891"},{"denom":"ASSET4","index":"0.000011827217337515"},{"denom":"ASSET5","index":"0.000000975486386160"},{"denom":"ASSET6","index":"0.000003970037158850"},{"denom":"ASSET7","index":"0.000006079396946830"},{"denom":"ASSET8","index":"0.000007932673055287"},{"denom":"ASSET9","index":"0.000003426784497665"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003296605577903"},{"denom":"ASSET1","index":"0.000027950980635352"},{"denom":"ASSET10","index":"0.000022177590033485"},{"denom":"ASSET11","index":"0.000027741245317152"},{"denom":"ASSET12","index":"0.000026384837371861"},{"denom":"ASSET13","index":"0.000008707523198290"},{"denom":"ASSET14","index":"0.000025482773879389"},{"denom":"ASSET15","index":"0.000019999205716580"},{"denom":"ASSET16","index":"0.000012408342313410"},{"denom":"ASSET17","index":"0.000009694954350389"},{"denom":"ASSET18","index":"0.000004033447725414"},{"denom":"ASSET2","index":"0.000008454290496983"},{"denom":"ASSET3","index":"0.000002354114882033"},{"denom":"ASSET4","index":"0.000022662624820802"},{"denom":"ASSET5","index":"0.000001833709311257"},{"denom":"ASSET6","index":"0.000007402928859239"},{"denom":"ASSET7","index":"0.000011614131087351"},{"denom":"ASSET8","index":"0.000015829970625061"},{"denom":"ASSET9","index":"0.000006725199056296"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001696105704481"},{"denom":"ASSET1","index":"0.000014140754037071"},{"denom":"ASSET10","index":"0.000009851931515387"},{"denom":"ASSET11","index":"0.000013679695806241"},{"denom":"ASSET12","index":"0.000012318593050331"},{"denom":"ASSET13","index":"0.000004239283286244"},{"denom":"ASSET14","index":"0.000012779160793682"},{"denom":"ASSET15","index":"0.000009136800770120"},{"denom":"ASSET16","index":"0.000006369960897657"},{"denom":"ASSET17","index":"0.000004523766024416"},{"denom":"ASSET18","index":"0.000002155201985393"},{"denom":"ASSET2","index":"0.000004174048451456"},{"denom":"ASSET3","index":"0.000001220823336742"},{"denom":"ASSET4","index":"0.000011492121647193"},{"denom":"ASSET5","index":"0.000000947621810601"},{"denom":"ASSET6","index":"0.000003857193539630"},{"denom":"ASSET7","index":"0.000005907431204387"},{"denom":"ASSET8","index":"0.000007708991716984"},{"denom":"ASSET9","index":"0.000003329429011573"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003278023650839"},{"denom":"ASSET1","index":"0.000027801084973989"},{"denom":"ASSET10","index":"0.000022126343818190"},{"denom":"ASSET11","index":"0.000027610641458424"},{"denom":"ASSET12","index":"0.000026294522151225"},{"denom":"ASSET13","index":"0.000008669795972838"},{"denom":"ASSET14","index":"0.000025352034708572"},{"denom":"ASSET15","index":"0.000019941753748345"},{"denom":"ASSET16","index":"0.000012337408081897"},{"denom":"ASSET17","index":"0.000009662232510971"},{"denom":"ASSET18","index":"0.000004006663612522"},{"denom":"ASSET2","index":"0.000008414274009770"},{"denom":"ASSET3","index":"0.000002339697370568"},{"denom":"ASSET4","index":"0.000022540556466857"},{"denom":"ASSET5","index":"0.000001822656991491"},{"denom":"ASSET6","index":"0.000007357334263189"},{"denom":"ASSET7","index":"0.000011551068960203"},{"denom":"ASSET8","index":"0.000015761386047857"},{"denom":"ASSET9","index":"0.000006692834331509"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001139195115521"},{"denom":"ASSET1","index":"0.000009496890331931"},{"denom":"ASSET10","index":"0.000006616523219856"},{"denom":"ASSET11","index":"0.000009187371854639"},{"denom":"ASSET12","index":"0.000008273091178185"},{"denom":"ASSET13","index":"0.000002846943294505"},{"denom":"ASSET14","index":"0.000008582261490710"},{"denom":"ASSET15","index":"0.000006136055842283"},{"denom":"ASSET16","index":"0.000004278248649000"},{"denom":"ASSET17","index":"0.000003038433916001"},{"denom":"ASSET18","index":"0.000001447320933748"},{"denom":"ASSET2","index":"0.000002803422698710"},{"denom":"ASSET3","index":"0.000000819928024772"},{"denom":"ASSET4","index":"0.000007718116540611"},{"denom":"ASSET5","index":"0.000000636445192901"},{"denom":"ASSET6","index":"0.000002590694026466"},{"denom":"ASSET7","index":"0.000003967685677409"},{"denom":"ASSET8","index":"0.000005177210075735"},{"denom":"ASSET9","index":"0.000002236262294314"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000002735257365218"},{"denom":"ASSET1","index":"0.000023278157661741"},{"denom":"ASSET10","index":"0.000018999615823078"},{"denom":"ASSET11","index":"0.000023241706683585"},{"denom":"ASSET12","index":"0.000022372793234045"},{"denom":"ASSET13","index":"0.000007316911351959"},{"denom":"ASSET14","index":"0.000021266506066871"},{"denom":"ASSET15","index":"0.000017036720297506"},{"denom":"ASSET16","index":"0.000010298479660409"},{"denom":"ASSET17","index":"0.000008222611745720"},{"denom":"ASSET18","index":"0.000003315370510511"},{"denom":"ASSET2","index":"0.000007081336162231"},{"denom":"ASSET3","index":"0.000001948923871674"},{"denom":"ASSET4","index":"0.000018864412124408"},{"denom":"ASSET5","index":"0.000001519377842401"},{"denom":"ASSET6","index":"0.000006121992555640"},{"denom":"ASSET7","index":"0.000009661272655042"},{"denom":"ASSET8","index":"0.000013300968175029"},{"denom":"ASSET9","index":"0.000005629514833023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001583959364947"},{"denom":"ASSET1","index":"0.000013443347430705"},{"denom":"ASSET10","index":"0.000009381913161610"},{"denom":"ASSET11","index":"0.000012996589661105"},{"denom":"ASSET12","index":"0.000011696930694994"},{"denom":"ASSET13","index":"0.000004020819926404"},{"denom":"ASSET14","index":"0.000012143688464595"},{"denom":"ASSET15","index":"0.000008691469335864"},{"denom":"ASSET16","index":"0.000006051537060952"},{"denom":"ASSET17","index":"0.000004305120325241"},{"denom":"ASSET18","index":"0.000002030717134548"},{"denom":"ASSET2","index":"0.000003939591241022"},{"denom":"ASSET3","index":"0.000001137201595347"},{"denom":"ASSET4","index":"0.000010925258183866"},{"denom":"ASSET5","index":"0.000000893515539201"},{"denom":"ASSET6","index":"0.000003655290842186"},{"denom":"ASSET7","index":"0.000005604779291351"},{"denom":"ASSET8","index":"0.000007310581684371"},{"denom":"ASSET9","index":"0.000003167918729894"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003310378542013"},{"denom":"ASSET1","index":"0.000028352771206955"},{"denom":"ASSET10","index":"0.000022778987578468"},{"denom":"ASSET11","index":"0.000028201706998458"},{"denom":"ASSET12","index":"0.000026949790221900"},{"denom":"ASSET13","index":"0.000008856641706946"},{"denom":"ASSET14","index":"0.000025865717784540"},{"denom":"ASSET15","index":"0.000020483790155485"},{"denom":"ASSET16","index":"0.000012564495758376"},{"denom":"ASSET17","index":"0.000009912517491786"},{"denom":"ASSET18","index":"0.000004051289802086"},{"denom":"ASSET2","index":"0.000008567503486413"},{"denom":"ASSET3","index":"0.000002358477605528"},{"denom":"ASSET4","index":"0.000022984011222606"},{"denom":"ASSET5","index":"0.000001848359330263"},{"denom":"ASSET6","index":"0.000007474666006436"},{"denom":"ASSET7","index":"0.000011763521743703"},{"denom":"ASSET8","index":"0.000016098224703406"},{"denom":"ASSET9","index":"0.000006837907042961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001549911588522"},{"denom":"ASSET1","index":"0.000012922257740418"},{"denom":"ASSET10","index":"0.000009003081854783"},{"denom":"ASSET11","index":"0.000012500946332712"},{"denom":"ASSET12","index":"0.000011256607989023"},{"denom":"ASSET13","index":"0.000003873860414458"},{"denom":"ASSET14","index":"0.000011677307025497"},{"denom":"ASSET15","index":"0.000008349069378868"},{"denom":"ASSET16","index":"0.000005821200932633"},{"denom":"ASSET17","index":"0.000004134118188113"},{"denom":"ASSET18","index":"0.000001969385882532"},{"denom":"ASSET2","index":"0.000003814460404941"},{"denom":"ASSET3","index":"0.000001115740384942"},{"denom":"ASSET4","index":"0.000010501554259806"},{"denom":"ASSET5","index":"0.000000865892922233"},{"denom":"ASSET6","index":"0.000003524808812143"},{"denom":"ASSET7","index":"0.000005398664782463"},{"denom":"ASSET8","index":"0.000007044106283197"},{"denom":"ASSET9","index":"0.000003042260281224"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003086330633608"},{"denom":"ASSET1","index":"0.000026187842720704"},{"denom":"ASSET10","index":"0.000020922921087024"},{"denom":"ASSET11","index":"0.000026029396638226"},{"denom":"ASSET12","index":"0.000024828709288325"},{"denom":"ASSET13","index":"0.000008176601230700"},{"denom":"ASSET14","index":"0.000023887113573615"},{"denom":"ASSET15","index":"0.000018841856891118"},{"denom":"ASSET16","index":"0.000011616230118922"},{"denom":"ASSET17","index":"0.000009124242236202"},{"denom":"ASSET18","index":"0.000003767471049721"},{"denom":"ASSET2","index":"0.000007932284099147"},{"denom":"ASSET3","index":"0.000002202458257762"},{"denom":"ASSET4","index":"0.000021230824628511"},{"denom":"ASSET5","index":"0.000001715648257347"},{"denom":"ASSET6","index":"0.000006923830152599"},{"denom":"ASSET7","index":"0.000010879262909104"},{"denom":"ASSET8","index":"0.000014863870027497"},{"denom":"ASSET9","index":"0.000006308409915314"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001535524830156"},{"denom":"ASSET1","index":"0.000012804491333161"},{"denom":"ASSET10","index":"0.000008921035499248"},{"denom":"ASSET11","index":"0.000012386713938596"},{"denom":"ASSET12","index":"0.000011154325740380"},{"denom":"ASSET13","index":"0.000003838812075390"},{"denom":"ASSET14","index":"0.000011571000819920"},{"denom":"ASSET15","index":"0.000008272874264409"},{"denom":"ASSET16","index":"0.000005767863369556"},{"denom":"ASSET17","index":"0.000004096202633783"},{"denom":"ASSET18","index":"0.000001951097594671"},{"denom":"ASSET2","index":"0.000003779838221540"},{"denom":"ASSET3","index":"0.000001105621970313"},{"denom":"ASSET4","index":"0.000010405853838244"},{"denom":"ASSET5","index":"0.000000858152247148"},{"denom":"ASSET6","index":"0.000003492685157466"},{"denom":"ASSET7","index":"0.000005348983659966"},{"denom":"ASSET8","index":"0.000006980409897318"},{"denom":"ASSET9","index":"0.000003014831594025"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003051773960929"},{"denom":"ASSET1","index":"0.000025898629359040"},{"denom":"ASSET10","index":"0.000020686863907037"},{"denom":"ASSET11","index":"0.000025740096441319"},{"denom":"ASSET12","index":"0.000024551000542772"},{"denom":"ASSET13","index":"0.000008085532012369"},{"denom":"ASSET14","index":"0.000023622558405526"},{"denom":"ASSET15","index":"0.000018629920308839"},{"denom":"ASSET16","index":"0.000011487540137638"},{"denom":"ASSET17","index":"0.000009021847693812"},{"denom":"ASSET18","index":"0.000003725572559942"},{"denom":"ASSET2","index":"0.000007844221178735"},{"denom":"ASSET3","index":"0.000002178252359768"},{"denom":"ASSET4","index":"0.000020996168979716"},{"denom":"ASSET5","index":"0.000001697004218389"},{"denom":"ASSET6","index":"0.000006847583721256"},{"denom":"ASSET7","index":"0.000010758483833946"},{"denom":"ASSET8","index":"0.000014699172267780"},{"denom":"ASSET9","index":"0.000006238834616461"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001813824295534"},{"denom":"ASSET1","index":"0.000015126179984122"},{"denom":"ASSET10","index":"0.000010538420488017"},{"denom":"ASSET11","index":"0.000014633035948465"},{"denom":"ASSET12","index":"0.000013177247733614"},{"denom":"ASSET13","index":"0.000004534560738834"},{"denom":"ASSET14","index":"0.000013669547344553"},{"denom":"ASSET15","index":"0.000009773371692973"},{"denom":"ASSET16","index":"0.000006813663054312"},{"denom":"ASSET17","index":"0.000004839398062246"},{"denom":"ASSET18","index":"0.000002305279481754"},{"denom":"ASSET2","index":"0.000004465317911910"},{"denom":"ASSET3","index":"0.000001306325039660"},{"denom":"ASSET4","index":"0.000012293135053249"},{"denom":"ASSET5","index":"0.000001013309662309"},{"denom":"ASSET6","index":"0.000004125859175036"},{"denom":"ASSET7","index":"0.000006318830169217"},{"denom":"ASSET8","index":"0.000008245807377042"},{"denom":"ASSET9","index":"0.000003561783463017"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003452880861936"},{"denom":"ASSET1","index":"0.000029278299049117"},{"denom":"ASSET10","index":"0.000023254773922096"},{"denom":"ASSET11","index":"0.000029065569213605"},{"denom":"ASSET12","index":"0.000027656204711461"},{"denom":"ASSET13","index":"0.000009124518140406"},{"denom":"ASSET14","index":"0.000026695142606829"},{"denom":"ASSET15","index":"0.000020967476611979"},{"denom":"ASSET16","index":"0.000012995878924798"},{"denom":"ASSET17","index":"0.000010163149632422"},{"denom":"ASSET18","index":"0.000004223627093961"},{"denom":"ASSET2","index":"0.000008858348919255"},{"denom":"ASSET3","index":"0.000002465420318230"},{"denom":"ASSET4","index":"0.000023739200929128"},{"denom":"ASSET5","index":"0.000001919695214447"},{"denom":"ASSET6","index":"0.000007752150153146"},{"denom":"ASSET7","index":"0.000012165597276913"},{"denom":"ASSET8","index":"0.000016587849042771"},{"denom":"ASSET9","index":"0.000007046182609545"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001444852701297"},{"denom":"ASSET1","index":"0.000012048934466992"},{"denom":"ASSET10","index":"0.000008394653008080"},{"denom":"ASSET11","index":"0.000011656844181701"},{"denom":"ASSET12","index":"0.000010496256937239"},{"denom":"ASSET13","index":"0.000003612131753243"},{"denom":"ASSET14","index":"0.000010888347222530"},{"denom":"ASSET15","index":"0.000007784952614452"},{"denom":"ASSET16","index":"0.000005427509774140"},{"denom":"ASSET17","index":"0.000003854247504410"},{"denom":"ASSET18","index":"0.000001835962760875"},{"denom":"ASSET2","index":"0.000003556258887589"},{"denom":"ASSET3","index":"0.000001040019481734"},{"denom":"ASSET4","index":"0.000009792454875142"},{"denom":"ASSET5","index":"0.000000807705987699"},{"denom":"ASSET6","index":"0.000003286696816452"},{"denom":"ASSET7","index":"0.000005033459037423"},{"denom":"ASSET8","index":"0.000006568492504337"},{"denom":"ASSET9","index":"0.000002836773214080"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000002868026198866"},{"denom":"ASSET1","index":"0.000024339331661302"},{"denom":"ASSET10","index":"0.000019438063504597"},{"denom":"ASSET11","index":"0.000024190729344646"},{"denom":"ASSET12","index":"0.000023070632234294"},{"denom":"ASSET13","index":"0.000007598221307181"},{"denom":"ASSET14","index":"0.000022200415230506"},{"denom":"ASSET15","index":"0.000017506414948675"},{"denom":"ASSET16","index":"0.000010796282691537"},{"denom":"ASSET17","index":"0.000008477235924619"},{"denom":"ASSET18","index":"0.000003501529899130"},{"denom":"ASSET2","index":"0.000007371086117521"},{"denom":"ASSET3","index":"0.000002046801194740"},{"denom":"ASSET4","index":"0.000019732782799148"},{"denom":"ASSET5","index":"0.000001595074946946"},{"denom":"ASSET6","index":"0.000006435625489467"},{"denom":"ASSET7","index":"0.000010111140720407"},{"denom":"ASSET8","index":"0.000013813490690156"},{"denom":"ASSET9","index":"0.000005862589992841"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001655416114862"},{"denom":"ASSET1","index":"0.000013800538848519"},{"denom":"ASSET10","index":"0.000009615249134678"},{"denom":"ASSET11","index":"0.000013350879623065"},{"denom":"ASSET12","index":"0.000012022439267096"},{"denom":"ASSET13","index":"0.000004137189147657"},{"denom":"ASSET14","index":"0.000012471558036751"},{"denom":"ASSET15","index":"0.000008916980241305"},{"denom":"ASSET16","index":"0.000006216863065381"},{"denom":"ASSET17","index":"0.000004414983428766"},{"denom":"ASSET18","index":"0.000002102913517117"},{"denom":"ASSET2","index":"0.000004073955819077"},{"denom":"ASSET3","index":"0.000001191705038613"},{"denom":"ASSET4","index":"0.000011215538757958"},{"denom":"ASSET5","index":"0.000000924719873500"},{"denom":"ASSET6","index":"0.000003764274645778"},{"denom":"ASSET7","index":"0.000005765582472528"},{"denom":"ASSET8","index":"0.000007523144733557"},{"denom":"ASSET9","index":"0.000003249220268545"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003262792429801"},{"denom":"ASSET1","index":"0.000027679878715890"},{"denom":"ASSET10","index":"0.000022086570261210"},{"denom":"ASSET11","index":"0.000027505267384149"},{"denom":"ASSET12","index":"0.000026222420015979"},{"denom":"ASSET13","index":"0.000008638975204347"},{"denom":"ASSET14","index":"0.000025246236428505"},{"denom":"ASSET15","index":"0.000019895354512471"},{"denom":"ASSET16","index":"0.000012279836462442"},{"denom":"ASSET17","index":"0.000009636125515167"},{"denom":"ASSET18","index":"0.000003984145752232"},{"denom":"ASSET2","index":"0.000008382344169353"},{"denom":"ASSET3","index":"0.000002328549799735"},{"denom":"ASSET4","index":"0.000022441247538096"},{"denom":"ASSET5","index":"0.000001813932132265"},{"denom":"ASSET6","index":"0.000007320527694069"},{"denom":"ASSET7","index":"0.000011499571173317"},{"denom":"ASSET8","index":"0.000015704553099640"},{"denom":"ASSET9","index":"0.000006666608399750"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001676736923170"},{"denom":"ASSET1","index":"0.000013985463602132"},{"denom":"ASSET10","index":"0.000009743339709608"},{"denom":"ASSET11","index":"0.000013528824721587"},{"denom":"ASSET12","index":"0.000012182509640070"},{"denom":"ASSET13","index":"0.000004192868462713"},{"denom":"ASSET14","index":"0.000012638122365828"},{"denom":"ASSET15","index":"0.000009036319060854"},{"denom":"ASSET16","index":"0.000006299564241947"},{"denom":"ASSET17","index":"0.000004474034874554"},{"denom":"ASSET18","index":"0.000002131323494140"},{"denom":"ASSET2","index":"0.000004128220711085"},{"denom":"ASSET3","index":"0.000001207784185172"},{"denom":"ASSET4","index":"0.000011365690429028"},{"denom":"ASSET5","index":"0.000000936879321208"},{"denom":"ASSET6","index":"0.000003814217346036"},{"denom":"ASSET7","index":"0.000005841899206614"},{"denom":"ASSET8","index":"0.000007623303918134"},{"denom":"ASSET9","index":"0.000003292930713863"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003296156578493"},{"denom":"ASSET1","index":"0.000027968412540894"},{"denom":"ASSET10","index":"0.000022307812536905"},{"denom":"ASSET11","index":"0.000027788867279184"},{"denom":"ASSET12","index":"0.000026488589695468"},{"denom":"ASSET13","index":"0.000008728285856057"},{"denom":"ASSET14","index":"0.000025508064125070"},{"denom":"ASSET15","index":"0.000020096610749334"},{"denom":"ASSET16","index":"0.000012407784704791"},{"denom":"ASSET17","index":"0.000009734180928237"},{"denom":"ASSET18","index":"0.000004026678592252"},{"denom":"ASSET2","index":"0.000008468774984810"},{"denom":"ASSET3","index":"0.000002353220293961"},{"denom":"ASSET4","index":"0.000022675279511256"},{"denom":"ASSET5","index":"0.000001832728492238"},{"denom":"ASSET6","index":"0.000007397034942132"},{"denom":"ASSET7","index":"0.000011618881320506"},{"denom":"ASSET8","index":"0.000015866042832442"},{"denom":"ASSET9","index":"0.000006735898552490"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001687654189845"},{"denom":"ASSET1","index":"0.000014079752531439"},{"denom":"ASSET10","index":"0.000009809029374167"},{"denom":"ASSET11","index":"0.000013620990639222"},{"denom":"ASSET12","index":"0.000012264971552184"},{"denom":"ASSET13","index":"0.000004220977891851"},{"denom":"ASSET14","index":"0.000012723733444402"},{"denom":"ASSET15","index":"0.000009097856320367"},{"denom":"ASSET16","index":"0.000006341600132585"},{"denom":"ASSET17","index":"0.000004504710146476"},{"denom":"ASSET18","index":"0.000002144573664825"},{"denom":"ASSET2","index":"0.000004156493288528"},{"denom":"ASSET3","index":"0.000001215995376963"},{"denom":"ASSET4","index":"0.000011441411046878"},{"denom":"ASSET5","index":"0.000000943317625765"},{"denom":"ASSET6","index":"0.000003839597523622"},{"denom":"ASSET7","index":"0.000005880995823129"},{"denom":"ASSET8","index":"0.000007675510212768"},{"denom":"ASSET9","index":"0.000003314508610843"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003237925740153"},{"denom":"ASSET1","index":"0.000027468087048908"},{"denom":"ASSET10","index":"0.000021838560142362"},{"denom":"ASSET11","index":"0.000027274223261348"},{"denom":"ASSET12","index":"0.000025962125103579"},{"denom":"ASSET13","index":"0.000008562973508850"},{"denom":"ASSET14","index":"0.000025046299162567"},{"denom":"ASSET15","index":"0.000019687604125947"},{"denom":"ASSET16","index":"0.000012189946370622"},{"denom":"ASSET17","index":"0.000009540519193028"},{"denom":"ASSET18","index":"0.000003959057055270"},{"denom":"ASSET2","index":"0.000008312511220651"},{"denom":"ASSET3","index":"0.000002312646079660"},{"denom":"ASSET4","index":"0.000022269978905361"},{"denom":"ASSET5","index":"0.000001800462011039"},{"denom":"ASSET6","index":"0.000007270233858279"},{"denom":"ASSET7","index":"0.000011411601588483"},{"denom":"ASSET8","index":"0.000015567552190875"},{"denom":"ASSET9","index":"0.000006610637099613"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001700269946448"},{"denom":"ASSET1","index":"0.000014175647296985"},{"denom":"ASSET10","index":"0.000009876508679424"},{"denom":"ASSET11","index":"0.000013714231996791"},{"denom":"ASSET12","index":"0.000012349169664489"},{"denom":"ASSET13","index":"0.000004249665204630"},{"denom":"ASSET14","index":"0.000012810584964683"},{"denom":"ASSET15","index":"0.000009159649022667"},{"denom":"ASSET16","index":"0.000006386108914062"},{"denom":"ASSET17","index":"0.000004535399405845"},{"denom":"ASSET18","index":"0.000002160675585153"},{"denom":"ASSET2","index":"0.000004184037207885"},{"denom":"ASSET3","index":"0.000001223709723928"},{"denom":"ASSET4","index":"0.000011520237582522"},{"denom":"ASSET5","index":"0.000000950091460574"},{"denom":"ASSET6","index":"0.000003867003500531"},{"denom":"ASSET7","index":"0.000005922674290891"},{"denom":"ASSET8","index":"0.000007727949032131"},{"denom":"ASSET9","index":"0.000003337940880615"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003224934301433"},{"denom":"ASSET1","index":"0.000027341438894536"},{"denom":"ASSET10","index":"0.000021706571274337"},{"denom":"ASSET11","index":"0.000027141091242061"},{"denom":"ASSET12","index":"0.000025819235056226"},{"denom":"ASSET13","index":"0.000008520116782966"},{"denom":"ASSET14","index":"0.000024928444433519"},{"denom":"ASSET15","index":"0.000019573794936329"},{"denom":"ASSET16","index":"0.000012137286393349"},{"denom":"ASSET17","index":"0.000009487995483061"},{"denom":"ASSET18","index":"0.000003945309126507"},{"denom":"ASSET2","index":"0.000008271045740629"},{"denom":"ASSET3","index":"0.000002302032616683"},{"denom":"ASSET4","index":"0.000022168721917699"},{"denom":"ASSET5","index":"0.000001793343624246"},{"denom":"ASSET6","index":"0.000007240378309003"},{"denom":"ASSET7","index":"0.000011361888746536"},{"denom":"ASSET8","index":"0.000015488944629697"},{"denom":"ASSET9","index":"0.000006579500326985"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001505652349479"},{"denom":"ASSET1","index":"0.000012557843622987"},{"denom":"ASSET10","index":"0.000008748308836028"},{"denom":"ASSET11","index":"0.000012147743761261"},{"denom":"ASSET12","index":"0.000010939413811534"},{"denom":"ASSET13","index":"0.000003764130873697"},{"denom":"ASSET14","index":"0.000011348049030896"},{"denom":"ASSET15","index":"0.000008114118692716"},{"denom":"ASSET16","index":"0.000005656448807088"},{"denom":"ASSET17","index":"0.000004017514002549"},{"denom":"ASSET18","index":"0.000001912822926478"},{"denom":"ASSET2","index":"0.000003707009821528"},{"denom":"ASSET3","index":"0.000001083835348847"},{"denom":"ASSET4","index":"0.000010205627987517"},{"denom":"ASSET5","index":"0.000000840704716538"},{"denom":"ASSET6","index":"0.000003424333845410"},{"denom":"ASSET7","index":"0.000005246348945363"},{"denom":"ASSET8","index":"0.000006845738406093"},{"denom":"ASSET9","index":"0.000002955648289152"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000002959758868257"},{"denom":"ASSET1","index":"0.000025116229265451"},{"denom":"ASSET10","index":"0.000020033024535037"},{"denom":"ASSET11","index":"0.000024955202637112"},{"denom":"ASSET12","index":"0.000023787913163340"},{"denom":"ASSET13","index":"0.000007837044315100"},{"denom":"ASSET14","index":"0.000022906603767748"},{"denom":"ASSET15","index":"0.000018047329062837"},{"denom":"ASSET16","index":"0.000011142428291313"},{"denom":"ASSET17","index":"0.000008741414303940"},{"denom":"ASSET18","index":"0.000003614587489816"},{"denom":"ASSET2","index":"0.000007605147442913"},{"denom":"ASSET3","index":"0.000002112677625393"},{"denom":"ASSET4","index":"0.000020363145786569"},{"denom":"ASSET5","index":"0.000001645239564154"},{"denom":"ASSET6","index":"0.000006641765641459"},{"denom":"ASSET7","index":"0.000010434431181702"},{"denom":"ASSET8","index":"0.000014248591155217"},{"denom":"ASSET9","index":"0.000006047835874095"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001815877519749"},{"denom":"ASSET1","index":"0.000015137138459046"},{"denom":"ASSET10","index":"0.000010545739718907"},{"denom":"ASSET11","index":"0.000014644907422941"},{"denom":"ASSET12","index":"0.000013186828093302"},{"denom":"ASSET13","index":"0.000004537625601742"},{"denom":"ASSET14","index":"0.000013679059129408"},{"denom":"ASSET15","index":"0.000009780506595550"},{"denom":"ASSET16","index":"0.000006818847588397"},{"denom":"ASSET17","index":"0.000004841650653454"},{"denom":"ASSET18","index":"0.000002306040358223"},{"denom":"ASSET2","index":"0.000004467306882298"},{"denom":"ASSET3","index":"0.000001307100902598"},{"denom":"ASSET4","index":"0.000012301639507366"},{"denom":"ASSET5","index":"0.000001013416839040"},{"denom":"ASSET6","index":"0.000004128122470864"},{"denom":"ASSET7","index":"0.000006324548354661"},{"denom":"ASSET8","index":"0.000008252108546467"},{"denom":"ASSET9","index":"0.000003563504517685"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003468946703322"},{"denom":"ASSET1","index":"0.000029412495408176"},{"denom":"ASSET10","index":"0.000023372734593498"},{"denom":"ASSET11","index":"0.000029203218600002"},{"denom":"ASSET12","index":"0.000027792166579196"},{"denom":"ASSET13","index":"0.000009167641990636"},{"denom":"ASSET14","index":"0.000026818252104650"},{"denom":"ASSET15","index":"0.000021072198152383"},{"denom":"ASSET16","index":"0.000013054905852031"},{"denom":"ASSET17","index":"0.000010211457984650"},{"denom":"ASSET18","index":"0.000004240878207320"},{"denom":"ASSET2","index":"0.000008898543974195"},{"denom":"ASSET3","index":"0.000002476460623897"},{"denom":"ASSET4","index":"0.000023847831794350"},{"denom":"ASSET5","index":"0.000001927880642719"},{"denom":"ASSET6","index":"0.000007785977685579"},{"denom":"ASSET7","index":"0.000012222326144679"},{"denom":"ASSET8","index":"0.000016667230515151"},{"denom":"ASSET9","index":"0.000007078301868557"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001541968050995"},{"denom":"ASSET1","index":"0.000012857487907975"},{"denom":"ASSET10","index":"0.000008957704485900"},{"denom":"ASSET11","index":"0.000012438763825161"},{"denom":"ASSET12","index":"0.000011200869215257"},{"denom":"ASSET13","index":"0.000003854089325736"},{"denom":"ASSET14","index":"0.000011619593298070"},{"denom":"ASSET15","index":"0.000008307186714386"},{"denom":"ASSET16","index":"0.000005792349812251"},{"denom":"ASSET17","index":"0.000004113299472240"},{"denom":"ASSET18","index":"0.000001959030530305"},{"denom":"ASSET2","index":"0.000003795102401372"},{"denom":"ASSET3","index":"0.000001109951140156"},{"denom":"ASSET4","index":"0.000010448993630046"},{"denom":"ASSET5","index":"0.000000861541416423"},{"denom":"ASSET6","index":"0.000003506814193562"},{"denom":"ASSET7","index":"0.000005371133324183"},{"denom":"ASSET8","index":"0.000007009474378365"},{"denom":"ASSET9","index":"0.000003027441582881"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003053196756625"},{"denom":"ASSET1","index":"0.000025905581999278"},{"denom":"ASSET10","index":"0.000020682143152818"},{"denom":"ASSET11","index":"0.000025745380902198"},{"denom":"ASSET12","index":"0.000024550499550641"},{"denom":"ASSET13","index":"0.000008086239198545"},{"denom":"ASSET14","index":"0.000023629161089906"},{"denom":"ASSET15","index":"0.000018628151539367"},{"denom":"ASSET16","index":"0.000011492271696690"},{"denom":"ASSET17","index":"0.000009021688715966"},{"denom":"ASSET18","index":"0.000003727673632537"},{"denom":"ASSET2","index":"0.000007845443656426"},{"denom":"ASSET3","index":"0.000002178852781858"},{"denom":"ASSET4","index":"0.000021002318737231"},{"denom":"ASSET5","index":"0.000001697417622442"},{"denom":"ASSET6","index":"0.000006850319017638"},{"denom":"ASSET7","index":"0.000010761758840612"},{"denom":"ASSET8","index":"0.000014701087498525"},{"denom":"ASSET9","index":"0.000006240132889304"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001327266579501"},{"denom":"ASSET1","index":"0.000011071143497688"},{"denom":"ASSET10","index":"0.000007713614824674"},{"denom":"ASSET11","index":"0.000010710668391289"},{"denom":"ASSET12","index":"0.000009644435509525"},{"denom":"ASSET13","index":"0.000003318857014090"},{"denom":"ASSET14","index":"0.000010004910615924"},{"denom":"ASSET15","index":"0.000007152875770275"},{"denom":"ASSET16","index":"0.000004987262870528"},{"denom":"ASSET17","index":"0.000003541219052903"},{"denom":"ASSET18","index":"0.000001686360555224"},{"denom":"ASSET2","index":"0.000003267755179083"},{"denom":"ASSET3","index":"0.000000955742427695"},{"denom":"ASSET4","index":"0.000008998066353223"},{"denom":"ASSET5","index":"0.000000741667172936"},{"denom":"ASSET6","index":"0.000003019151657428"},{"denom":"ASSET7","index":"0.000004625406633453"},{"denom":"ASSET8","index":"0.000006035541053505"},{"denom":"ASSET9","index":"0.000002606193585346"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000002827520151011"},{"denom":"ASSET1","index":"0.000024027878888002"},{"denom":"ASSET10","index":"0.000019355847170480"},{"denom":"ASSET11","index":"0.000023924401086085"},{"denom":"ASSET12","index":"0.000022900407365256"},{"denom":"ASSET13","index":"0.000007521399074311"},{"denom":"ASSET14","index":"0.000021930603354990"},{"denom":"ASSET15","index":"0.000017401215805238"},{"denom":"ASSET16","index":"0.000010647310435771"},{"denom":"ASSET17","index":"0.000008415007538097"},{"denom":"ASSET18","index":"0.000003442593620109"},{"denom":"ASSET2","index":"0.000007289635767836"},{"denom":"ASSET3","index":"0.000002016810506595"},{"denom":"ASSET4","index":"0.000019477449509443"},{"denom":"ASSET5","index":"0.000001571692130579"},{"denom":"ASSET6","index":"0.000006339251488002"},{"denom":"ASSET7","index":"0.000009978075244424"},{"denom":"ASSET8","index":"0.000013673195599374"},{"denom":"ASSET9","index":"0.000005796522499795"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001571435631869"},{"denom":"ASSET1","index":"0.000013104175099655"},{"denom":"ASSET10","index":"0.000009129715488355"},{"denom":"ASSET11","index":"0.000012677036600848"},{"denom":"ASSET12","index":"0.000011415350365342"},{"denom":"ASSET13","index":"0.000003928095848150"},{"denom":"ASSET14","index":"0.000011841502401104"},{"denom":"ASSET15","index":"0.000008466812321615"},{"denom":"ASSET16","index":"0.000005902994865728"},{"denom":"ASSET17","index":"0.000004192467944409"},{"denom":"ASSET18","index":"0.000001996601204585"},{"denom":"ASSET2","index":"0.000003867921602360"},{"denom":"ASSET3","index":"0.000001131473113468"},{"denom":"ASSET4","index":"0.000010648868578800"},{"denom":"ASSET5","index":"0.000000877952110712"},{"denom":"ASSET6","index":"0.000003573955614728"},{"denom":"ASSET7","index":"0.000005473883440830"},{"denom":"ASSET8","index":"0.000007142978914228"},{"denom":"ASSET9","index":"0.000003084669944040"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003141123056438"},{"denom":"ASSET1","index":"0.000026662100889972"},{"denom":"ASSET10","index":"0.000021312054987248"},{"denom":"ASSET11","index":"0.000026503481745319"},{"denom":"ASSET12","index":"0.000025286293002787"},{"denom":"ASSET13","index":"0.000008324908472884"},{"denom":"ASSET14","index":"0.000024319980387721"},{"denom":"ASSET15","index":"0.000019190708128374"},{"denom":"ASSET16","index":"0.000011824997422058"},{"denom":"ASSET17","index":"0.000009292034078872"},{"denom":"ASSET18","index":"0.000003834040785154"},{"denom":"ASSET2","index":"0.000008076003481032"},{"denom":"ASSET3","index":"0.000002241608843356"},{"denom":"ASSET4","index":"0.000021614431804298"},{"denom":"ASSET5","index":"0.000001746420421862"},{"denom":"ASSET6","index":"0.000007047828859327"},{"denom":"ASSET7","index":"0.000011075197168484"},{"denom":"ASSET8","index":"0.000015134882092008"},{"denom":"ASSET9","index":"0.000006422749115253"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[{"denom":"ASSET0","index":"0.000001554974273829"},{"denom":"ASSET1","index":"0.000012964145980643"},{"denom":"ASSET10","index":"0.000009032293690170"},{"denom":"ASSET11","index":"0.000012541598623624"},{"denom":"ASSET12","index":"0.000011293609918011"},{"denom":"ASSET13","index":"0.000003886649549954"},{"denom":"ASSET14","index":"0.000011715371140412"},{"denom":"ASSET15","index":"0.000008376264351692"},{"denom":"ASSET16","index":"0.000005840194074962"},{"denom":"ASSET17","index":"0.000004147646243034"},{"denom":"ASSET18","index":"0.000001975556294303"},{"denom":"ASSET2","index":"0.000003826903319009"},{"denom":"ASSET3","index":"0.000001119455695618"},{"denom":"ASSET4","index":"0.000010535776146539"},{"denom":"ASSET5","index":"0.000000869071819878"},{"denom":"ASSET6","index":"0.000003536426577765"},{"denom":"ASSET7","index":"0.000005416074448708"},{"denom":"ASSET8","index":"0.000007067350213206"},{"denom":"ASSET9","index":"0.000003052560720565"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[{"denom":"ASSET0","index":"0.000003054120352223"},{"denom":"ASSET1","index":"0.000025909289170716"},{"denom":"ASSET10","index":"0.000020664041936079"},{"denom":"ASSET11","index":"0.000025743066158465"},{"denom":"ASSET12","index":"0.000024537849095602"},{"denom":"ASSET13","index":"0.000008085297309351"},{"denom":"ASSET14","index":"0.000023630023251940"},{"denom":"ASSET15","index":"0.000018615490114349"},{"denom":"ASSET16","index":"0.000011495216270003"},{"denom":"ASSET17","index":"0.000009017197770141"},{"denom":"ASSET18","index":"0.000003730110182262"},{"denom":"ASSET2","index":"0.000007845299155388"},{"denom":"ASSET3","index":"0.000002179886924088"},{"denom":"ASSET4","index":"0.000021005968780047"},{"denom":"ASSET5","index":"0.000001698230665763"},{"denom":"ASSET6","index":"0.000006853367473041"},{"denom":"ASSET7","index":"0.000010764057351149"},{"denom":"ASSET8","index":"0.000014698116791571"},{"denom":"ASSET9","index":"0.000006239964640655"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917985481599306","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917952765461306","reward_histories":[]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET12","snapshot":{"prev_reward_weight":"0.116917920049332461","reward_histories":[]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001587610635106"},{"denom":"ASSET1","index":"0.000013244938725362"},{"denom":"ASSET10","index":"0.000009227311812032"},{"denom":"ASSET11","index":"0.000012812935831455"},{"denom":"ASSET12","index":"0.000011538527294432"},{"denom":"ASSET13","index":"0.000003970376596809"},{"denom":"ASSET14","index":"0.000011969180179294"},{"denom":"ASSET15","index":"0.000008557707326477"},{"denom":"ASSET16","index":"0.000005967039972082"},{"denom":"ASSET17","index":"0.000004237678387413"},{"denom":"ASSET18","index":"0.000002018263519969"},{"denom":"ASSET2","index":"0.000003909626189853"},{"denom":"ASSET3","index":"0.000001143457659809"},{"denom":"ASSET4","index":"0.000010763622103487"},{"denom":"ASSET5","index":"0.000000886955941552"},{"denom":"ASSET6","index":"0.000003612624200292"},{"denom":"ASSET7","index":"0.000005533687069132"},{"denom":"ASSET8","index":"0.000007219848364411"},{"denom":"ASSET9","index":"0.000003118520890387"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003152887181228"},{"denom":"ASSET1","index":"0.000026760532918289"},{"denom":"ASSET10","index":"0.000021371603424459"},{"denom":"ASSET11","index":"0.000026596151859305"},{"denom":"ASSET12","index":"0.000025366346961436"},{"denom":"ASSET13","index":"0.000008353980761099"},{"denom":"ASSET14","index":"0.000024408754798213"},{"denom":"ASSET15","index":"0.000019248058608344"},{"denom":"ASSET16","index":"0.000011870971278696"},{"denom":"ASSET17","index":"0.000009321801721671"},{"denom":"ASSET18","index":"0.000003850124607081"},{"denom":"ASSET2","index":"0.000008105134387478"},{"denom":"ASSET3","index":"0.000002250596051831"},{"denom":"ASSET4","index":"0.000021694971342643"},{"denom":"ASSET5","index":"0.000001752750611640"},{"denom":"ASSET6","index":"0.000007075802880646"},{"denom":"ASSET7","index":"0.000011117440314842"},{"denom":"ASSET8","index":"0.000015186957305377"},{"denom":"ASSET9","index":"0.000006446159830056"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001450981944084"},{"denom":"ASSET1","index":"0.000012097851501865"},{"denom":"ASSET10","index":"0.000008428524260541"},{"denom":"ASSET11","index":"0.000011703479004578"},{"denom":"ASSET12","index":"0.000010538773481717"},{"denom":"ASSET13","index":"0.000003626563958485"},{"denom":"ASSET14","index":"0.000010932552044520"},{"denom":"ASSET15","index":"0.000007816771742159"},{"denom":"ASSET16","index":"0.000005449942823954"},{"denom":"ASSET17","index":"0.000003870671031354"},{"denom":"ASSET18","index":"0.000001843572637920"},{"denom":"ASSET2","index":"0.000003571328051486"},{"denom":"ASSET3","index":"0.000001044730757120"},{"denom":"ASSET4","index":"0.000009831991445917"},{"denom":"ASSET5","index":"0.000000810720570477"},{"denom":"ASSET6","index":"0.000003299899992359"},{"denom":"ASSET7","index":"0.000005054382457699"},{"denom":"ASSET8","index":"0.000006595048508847"},{"denom":"ASSET9","index":"0.000002848509784621"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000002831039632868"},{"denom":"ASSET1","index":"0.000024014703977493"},{"denom":"ASSET10","index":"0.000019136467933987"},{"denom":"ASSET11","index":"0.000023856136612857"},{"denom":"ASSET12","index":"0.000022731094165303"},{"denom":"ASSET13","index":"0.000007491812146677"},{"denom":"ASSET14","index":"0.000021900750691559"},{"denom":"ASSET15","index":"0.000017242457090593"},{"denom":"ASSET16","index":"0.000010655585625623"},{"denom":"ASSET17","index":"0.000008353141870908"},{"denom":"ASSET18","index":"0.000003458892129556"},{"denom":"ASSET2","index":"0.000007270317321266"},{"denom":"ASSET3","index":"0.000002020551075646"},{"denom":"ASSET4","index":"0.000019470118745656"},{"denom":"ASSET5","index":"0.000001574098937698"},{"denom":"ASSET6","index":"0.000006353413461243"},{"denom":"ASSET7","index":"0.000009977493764026"},{"denom":"ASSET8","index":"0.000013619759476676"},{"denom":"ASSET9","index":"0.000005782490697784"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001596167964962"},{"denom":"ASSET1","index":"0.000013307648687747"},{"denom":"ASSET10","index":"0.000009271254138767"},{"denom":"ASSET11","index":"0.000012873344596610"},{"denom":"ASSET12","index":"0.000011592750107942"},{"denom":"ASSET13","index":"0.000003989527201016"},{"denom":"ASSET14","index":"0.000012025715131995"},{"denom":"ASSET15","index":"0.000008598149750858"},{"denom":"ASSET16","index":"0.000005994556982506"},{"denom":"ASSET17","index":"0.000004257340617956"},{"denom":"ASSET18","index":"0.000002028240277625"},{"denom":"ASSET2","index":"0.000003928376470814"},{"denom":"ASSET3","index":"0.000001148919558672"},{"denom":"ASSET4","index":"0.000010814752131731"},{"denom":"ASSET5","index":"0.000000891818678410"},{"denom":"ASSET6","index":"0.000003630210866621"},{"denom":"ASSET7","index":"0.000005559360179979"},{"denom":"ASSET8","index":"0.000007254619109209"},{"denom":"ASSET9","index":"0.000003133416978198"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003160678210357"},{"denom":"ASSET1","index":"0.000026816731621709"},{"denom":"ASSET10","index":"0.000021409695697867"},{"denom":"ASSET11","index":"0.000026650151208928"},{"denom":"ASSET12","index":"0.000025413985003091"},{"denom":"ASSET13","index":"0.000008371194471357"},{"denom":"ASSET14","index":"0.000024459575922385"},{"denom":"ASSET15","index":"0.000019283728762326"},{"denom":"ASSET16","index":"0.000011895729224726"},{"denom":"ASSET17","index":"0.000009339186085895"},{"denom":"ASSET18","index":"0.000003859320220004"},{"denom":"ASSET2","index":"0.000008121656282140"},{"denom":"ASSET3","index":"0.000002255587694637"},{"denom":"ASSET4","index":"0.000021740936259308"},{"denom":"ASSET5","index":"0.000001757304707579"},{"denom":"ASSET6","index":"0.000007091577992612"},{"denom":"ASSET7","index":"0.000011140302591406"},{"denom":"ASSET8","index":"0.000015217956063596"},{"denom":"ASSET9","index":"0.000006459479788296"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001539653287763"},{"denom":"ASSET1","index":"0.000012837628062054"},{"denom":"ASSET10","index":"0.000008944076712630"},{"denom":"ASSET11","index":"0.000012418678362380"},{"denom":"ASSET12","index":"0.000011182855597091"},{"denom":"ASSET13","index":"0.000003848344731893"},{"denom":"ASSET14","index":"0.000011600753980079"},{"denom":"ASSET15","index":"0.000008294363000211"},{"denom":"ASSET16","index":"0.000005782767435536"},{"denom":"ASSET17","index":"0.000004106968636837"},{"denom":"ASSET18","index":"0.000001956500354065"},{"denom":"ASSET2","index":"0.000003789470997435"},{"denom":"ASSET3","index":"0.000001108613446191"},{"denom":"ASSET4","index":"0.000010432741141086"},{"denom":"ASSET5","index":"0.000000860502708115"},{"denom":"ASSET6","index":"0.000003501935883605"},{"denom":"ASSET7","index":"0.000005362766419174"},{"denom":"ASSET8","index":"0.000006998089525433"},{"denom":"ASSET9","index":"0.000003022535474442"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003102081054533"},{"denom":"ASSET1","index":"0.000026328097047411"},{"denom":"ASSET10","index":"0.000021065731925672"},{"denom":"ASSET11","index":"0.000026176422512857"},{"denom":"ASSET12","index":"0.000024984864029023"},{"denom":"ASSET13","index":"0.000008223750690350"},{"denom":"ASSET14","index":"0.000024017391771060"},{"denom":"ASSET15","index":"0.000018965095888316"},{"denom":"ASSET16","index":"0.000011675661088751"},{"denom":"ASSET17","index":"0.000009181817821335"},{"denom":"ASSET18","index":"0.000003784851704842"},{"denom":"ASSET2","index":"0.000007977007181168"},{"denom":"ASSET3","index":"0.000002213531006169"},{"denom":"ASSET4","index":"0.000021343717572048"},{"denom":"ASSET5","index":"0.000001724500934679"},{"denom":"ASSET6","index":"0.000006958604580417"},{"denom":"ASSET7","index":"0.000010936011139136"},{"denom":"ASSET8","index":"0.000014950117004491"},{"denom":"ASSET9","index":"0.000006344046059941"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001722784092424"},{"denom":"ASSET1","index":"0.000014376047839207"},{"denom":"ASSET10","index":"0.000010014727915911"},{"denom":"ASSET11","index":"0.000013905627425621"},{"denom":"ASSET12","index":"0.000012523636788373"},{"denom":"ASSET13","index":"0.000004309050988454"},{"denom":"ASSET14","index":"0.000012989875687172"},{"denom":"ASSET15","index":"0.000009287144342897"},{"denom":"ASSET16","index":"0.000006475075648346"},{"denom":"ASSET17","index":"0.000004597575508787"},{"denom":"ASSET18","index":"0.000002191113748617"},{"denom":"ASSET2","index":"0.000004242146751855"},{"denom":"ASSET3","index":"0.000001239819134475"},{"denom":"ASSET4","index":"0.000011683152316098"},{"denom":"ASSET5","index":"0.000000961748401110"},{"denom":"ASSET6","index":"0.000003920170113222"},{"denom":"ASSET7","index":"0.000006004655234759"},{"denom":"ASSET8","index":"0.000007836158711656"},{"denom":"ASSET9","index":"0.000003384936220430"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003308323901116"},{"denom":"ASSET1","index":"0.000028066718381779"},{"denom":"ASSET10","index":"0.000022316311421496"},{"denom":"ASSET11","index":"0.000027867424204892"},{"denom":"ASSET12","index":"0.000026530665881565"},{"denom":"ASSET13","index":"0.000008749579510737"},{"denom":"ASSET14","index":"0.000025590688346390"},{"denom":"ASSET15","index":"0.000020116135001180"},{"denom":"ASSET16","index":"0.000012455644018572"},{"denom":"ASSET17","index":"0.000009747635771928"},{"denom":"ASSET18","index":"0.000004046709206696"},{"denom":"ASSET2","index":"0.000008491843085820"},{"denom":"ASSET3","index":"0.000002361259343526"},{"denom":"ASSET4","index":"0.000022756236881458"},{"denom":"ASSET5","index":"0.000001838827056256"},{"denom":"ASSET6","index":"0.000007428217086977"},{"denom":"ASSET7","index":"0.000011660835649526"},{"denom":"ASSET8","index":"0.000015906513514404"},{"denom":"ASSET9","index":"0.000006755948018281"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001677980890787"},{"denom":"ASSET1","index":"0.000013990275877081"},{"denom":"ASSET10","index":"0.000009746835585844"},{"denom":"ASSET11","index":"0.000013534047272362"},{"denom":"ASSET12","index":"0.000012187401487418"},{"denom":"ASSET13","index":"0.000004194217559326"},{"denom":"ASSET14","index":"0.000012642160756856"},{"denom":"ASSET15","index":"0.000009039350648091"},{"denom":"ASSET16","index":"0.000006301979019776"},{"denom":"ASSET17","index":"0.000004475595265619"},{"denom":"ASSET18","index":"0.000002132005492585"},{"denom":"ASSET2","index":"0.000004129566806967"},{"denom":"ASSET3","index":"0.000001207793600899"},{"denom":"ASSET4","index":"0.000011368981735957"},{"denom":"ASSET5","index":"0.000000937435909214"},{"denom":"ASSET6","index":"0.000003815863724495"},{"denom":"ASSET7","index":"0.000005844281079776"},{"denom":"ASSET8","index":"0.000007626584775507"},{"denom":"ASSET9","index":"0.000003293515032135"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003299297789724"},{"denom":"ASSET1","index":"0.000027989603079017"},{"denom":"ASSET10","index":"0.000022326156077139"},{"denom":"ASSET11","index":"0.000027810817552502"},{"denom":"ASSET12","index":"0.000026510364756940"},{"denom":"ASSET13","index":"0.000008734817330461"},{"denom":"ASSET14","index":"0.000025527438517331"},{"denom":"ASSET15","index":"0.000020112836713905"},{"denom":"ASSET16","index":"0.000012417417558556"},{"denom":"ASSET17","index":"0.000009741881197111"},{"denom":"ASSET18","index":"0.000004029624902086"},{"denom":"ASSET2","index":"0.000008475129511821"},{"denom":"ASSET3","index":"0.000002354634361983"},{"denom":"ASSET4","index":"0.000022691681830907"},{"denom":"ASSET5","index":"0.000001834207215432"},{"denom":"ASSET6","index":"0.000007402948949368"},{"denom":"ASSET7","index":"0.000011627814435586"},{"denom":"ASSET8","index":"0.000015878876786083"},{"denom":"ASSET9","index":"0.000006740310437402"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001570026110869"},{"denom":"ASSET1","index":"0.000013093495665706"},{"denom":"ASSET10","index":"0.000009121814411369"},{"denom":"ASSET11","index":"0.000012665871768525"},{"denom":"ASSET12","index":"0.000011405375746022"},{"denom":"ASSET13","index":"0.000003924443730811"},{"denom":"ASSET14","index":"0.000011831756550478"},{"denom":"ASSET15","index":"0.000008459245989284"},{"denom":"ASSET16","index":"0.000005898474977098"},{"denom":"ASSET17","index":"0.000004187979388376"},{"denom":"ASSET18","index":"0.000001995163822601"},{"denom":"ASSET2","index":"0.000003864775280042"},{"denom":"ASSET3","index":"0.000001129971286445"},{"denom":"ASSET4","index":"0.000010639630627815"},{"denom":"ASSET5","index":"0.000000877623463400"},{"denom":"ASSET6","index":"0.000003571405397092"},{"denom":"ASSET7","index":"0.000005469607987193"},{"denom":"ASSET8","index":"0.000007137838423287"},{"denom":"ASSET9","index":"0.000003082869956418"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003142586597057"},{"denom":"ASSET1","index":"0.000026671940208455"},{"denom":"ASSET10","index":"0.000021322845581004"},{"denom":"ASSET11","index":"0.000026513185667064"},{"denom":"ASSET12","index":"0.000025297681895631"},{"denom":"ASSET13","index":"0.000008328263582513"},{"denom":"ASSET14","index":"0.000024329302916923"},{"denom":"ASSET15","index":"0.000019199384187435"},{"denom":"ASSET16","index":"0.000011829863063918"},{"denom":"ASSET17","index":"0.000009295955073087"},{"denom":"ASSET18","index":"0.000003835509513951"},{"denom":"ASSET2","index":"0.000008079410847125"},{"denom":"ASSET3","index":"0.000002242309830967"},{"denom":"ASSET4","index":"0.000021622076491366"},{"denom":"ASSET5","index":"0.000001747112267207"},{"denom":"ASSET6","index":"0.000007050444762949"},{"denom":"ASSET7","index":"0.000011079003337441"},{"denom":"ASSET8","index":"0.000015142122511204"},{"denom":"ASSET9","index":"0.000006425848418438"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001808467589320"},{"denom":"ASSET1","index":"0.000015078627759778"},{"denom":"ASSET10","index":"0.000010504031371633"},{"denom":"ASSET11","index":"0.000014586692317421"},{"denom":"ASSET12","index":"0.000013135079536696"},{"denom":"ASSET13","index":"0.000004520160908868"},{"denom":"ASSET14","index":"0.000013624998850191"},{"denom":"ASSET15","index":"0.000009741934661752"},{"denom":"ASSET16","index":"0.000006792338136474"},{"denom":"ASSET17","index":"0.000004822580238185"},{"denom":"ASSET18","index":"0.000002296370773952"},{"denom":"ASSET2","index":"0.000004449596398694"},{"denom":"ASSET3","index":"0.000001300403116066"},{"denom":"ASSET4","index":"0.000012254031223951"},{"denom":"ASSET5","index":"0.000001010080559921"},{"denom":"ASSET6","index":"0.000004112902878720"},{"denom":"ASSET7","index":"0.000006298386565256"},{"denom":"ASSET8","index":"0.000008219757370854"},{"denom":"ASSET9","index":"0.000003550402926189"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003309574221953"},{"denom":"ASSET1","index":"0.000028041386020893"},{"denom":"ASSET10","index":"0.000022151472675705"},{"denom":"ASSET11","index":"0.000027806413413432"},{"denom":"ASSET12","index":"0.000026397319662942"},{"denom":"ASSET13","index":"0.000008723998941637"},{"denom":"ASSET14","index":"0.000025556208464743"},{"denom":"ASSET15","index":"0.000019995491235522"},{"denom":"ASSET16","index":"0.000012454763771642"},{"denom":"ASSET17","index":"0.000009698403814011"},{"denom":"ASSET18","index":"0.000004053515914738"},{"denom":"ASSET2","index":"0.000008473190716338"},{"denom":"ASSET3","index":"0.000002361530218445"},{"denom":"ASSET4","index":"0.000022738669483779"},{"denom":"ASSET5","index":"0.000001840125976242"},{"denom":"ASSET6","index":"0.000007434008870747"},{"denom":"ASSET7","index":"0.000011653935721338"},{"denom":"ASSET8","index":"0.000015861166565423"},{"denom":"ASSET9","index":"0.000006742103174023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001541663174382"},{"denom":"ASSET1","index":"0.000012852134347969"},{"denom":"ASSET10","index":"0.000008953505358908"},{"denom":"ASSET11","index":"0.000012432624080325"},{"denom":"ASSET12","index":"0.000011194846435509"},{"denom":"ASSET13","index":"0.000003852675567517"},{"denom":"ASSET14","index":"0.000011614356703153"},{"denom":"ASSET15","index":"0.000008302745615107"},{"denom":"ASSET16","index":"0.000005788648746115"},{"denom":"ASSET17","index":"0.000004110607675539"},{"denom":"ASSET18","index":"0.000001958208705152"},{"denom":"ASSET2","index":"0.000003793380830041"},{"denom":"ASSET3","index":"0.000001108811590805"},{"denom":"ASSET4","index":"0.000010443285637998"},{"denom":"ASSET5","index":"0.000000861256061842"},{"denom":"ASSET6","index":"0.000003505801353281"},{"denom":"ASSET7","index":"0.000005369138478471"},{"denom":"ASSET8","index":"0.000007005673232815"},{"denom":"ASSET9","index":"0.000003025513979724"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003039218640043"},{"denom":"ASSET1","index":"0.000025782167100542"},{"denom":"ASSET10","index":"0.000020571830356487"},{"denom":"ASSET11","index":"0.000025618833387376"},{"denom":"ASSET12","index":"0.000024423552320522"},{"denom":"ASSET13","index":"0.000008046369560384"},{"denom":"ASSET14","index":"0.000023515194162679"},{"denom":"ASSET15","index":"0.000018530055863607"},{"denom":"ASSET16","index":"0.000011436803083329"},{"denom":"ASSET17","index":"0.000008974370950503"},{"denom":"ASSET18","index":"0.000003710743638587"},{"denom":"ASSET2","index":"0.000007806913274081"},{"denom":"ASSET3","index":"0.000002167934051431"},{"denom":"ASSET4","index":"0.000020901035076857"},{"denom":"ASSET5","index":"0.000001689640060433"},{"denom":"ASSET6","index":"0.000006819038075969"},{"denom":"ASSET7","index":"0.000010710838619674"},{"denom":"ASSET8","index":"0.000014627524271874"},{"denom":"ASSET9","index":"0.000006209166066794"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001647112085871"},{"denom":"ASSET1","index":"0.000013744257107488"},{"denom":"ASSET10","index":"0.000009576415679235"},{"denom":"ASSET11","index":"0.000013296650962579"},{"denom":"ASSET12","index":"0.000011973464376313"},{"denom":"ASSET13","index":"0.000004120724991946"},{"denom":"ASSET14","index":"0.000012421070521222"},{"denom":"ASSET15","index":"0.000008879485058873"},{"denom":"ASSET16","index":"0.000006191885004573"},{"denom":"ASSET17","index":"0.000004397534055245"},{"denom":"ASSET18","index":"0.000002094718230780"},{"denom":"ASSET2","index":"0.000004055939892025"},{"denom":"ASSET3","index":"0.000001185763647039"},{"denom":"ASSET4","index":"0.000011170521774262"},{"denom":"ASSET5","index":"0.000000920733692817"},{"denom":"ASSET6","index":"0.000003749683056035"},{"denom":"ASSET7","index":"0.000005742315674818"},{"denom":"ASSET8","index":"0.000007491513372686"},{"denom":"ASSET9","index":"0.000003235328626359"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003240628198198"},{"denom":"ASSET1","index":"0.000027504329283847"},{"denom":"ASSET10","index":"0.000021940320319100"},{"denom":"ASSET11","index":"0.000027329345632586"},{"denom":"ASSET12","index":"0.000026051323397008"},{"denom":"ASSET13","index":"0.000008583813762496"},{"denom":"ASSET14","index":"0.000025085743554439"},{"denom":"ASSET15","index":"0.000019763439018939"},{"denom":"ASSET16","index":"0.000012202670980955"},{"denom":"ASSET17","index":"0.000009573761377605"},{"denom":"ASSET18","index":"0.000003959875003044"},{"denom":"ASSET2","index":"0.000008327243811102"},{"denom":"ASSET3","index":"0.000002312908746824"},{"denom":"ASSET4","index":"0.000022299606884078"},{"denom":"ASSET5","index":"0.000001802093087045"},{"denom":"ASSET6","index":"0.000007275447910852"},{"denom":"ASSET7","index":"0.000011427132859276"},{"denom":"ASSET8","index":"0.000015602768933976"},{"denom":"ASSET9","index":"0.000006623309483786"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001570100817458"},{"denom":"ASSET1","index":"0.000013089401919768"},{"denom":"ASSET10","index":"0.000009119446705996"},{"denom":"ASSET11","index":"0.000012662761138201"},{"denom":"ASSET12","index":"0.000011403229713207"},{"denom":"ASSET13","index":"0.000003924467777503"},{"denom":"ASSET14","index":"0.000011828301962489"},{"denom":"ASSET15","index":"0.000008457526081653"},{"denom":"ASSET16","index":"0.000005896112859965"},{"denom":"ASSET17","index":"0.000004187981201412"},{"denom":"ASSET18","index":"0.000001993604534455"},{"denom":"ASSET2","index":"0.000003863295018381"},{"denom":"ASSET3","index":"0.000001129343245325"},{"denom":"ASSET4","index":"0.000010637785958043"},{"denom":"ASSET5","index":"0.000000876809547412"},{"denom":"ASSET6","index":"0.000003569979481054"},{"denom":"ASSET7","index":"0.000005467903546113"},{"denom":"ASSET8","index":"0.000007135253365252"},{"denom":"ASSET9","index":"0.000003082165940365"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003152920186871"},{"denom":"ASSET1","index":"0.000026760622644749"},{"denom":"ASSET10","index":"0.000021403995558307"},{"denom":"ASSET11","index":"0.000026604821287493"},{"denom":"ASSET12","index":"0.000025390105019040"},{"denom":"ASSET13","index":"0.000008358570294936"},{"denom":"ASSET14","index":"0.000024411618525071"},{"denom":"ASSET15","index":"0.000019270968708391"},{"denom":"ASSET16","index":"0.000011868219590271"},{"denom":"ASSET17","index":"0.000009330682788205"},{"denom":"ASSET18","index":"0.000003846613833157"},{"denom":"ASSET2","index":"0.000008107095494272"},{"denom":"ASSET3","index":"0.000002249072663818"},{"denom":"ASSET4","index":"0.000021694789218154"},{"denom":"ASSET5","index":"0.000001752328837510"},{"denom":"ASSET6","index":"0.000007072706136469"},{"denom":"ASSET7","index":"0.000011115912260277"},{"denom":"ASSET8","index":"0.000015194187602297"},{"denom":"ASSET9","index":"0.000006447849146068"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001655272585709"},{"denom":"ASSET1","index":"0.000013804891217292"},{"denom":"ASSET10","index":"0.000009617831976915"},{"denom":"ASSET11","index":"0.000013354722791997"},{"denom":"ASSET12","index":"0.000012025575872058"},{"denom":"ASSET13","index":"0.000004138592201887"},{"denom":"ASSET14","index":"0.000012474922822124"},{"denom":"ASSET15","index":"0.000008919578032571"},{"denom":"ASSET16","index":"0.000006218567480803"},{"denom":"ASSET17","index":"0.000004416250829168"},{"denom":"ASSET18","index":"0.000002103798060547"},{"denom":"ASSET2","index":"0.000004074517134053"},{"denom":"ASSET3","index":"0.000001191960556756"},{"denom":"ASSET4","index":"0.000011218887197534"},{"denom":"ASSET5","index":"0.000000924981107448"},{"denom":"ASSET6","index":"0.000003765642448085"},{"denom":"ASSET7","index":"0.000005766756105051"},{"denom":"ASSET8","index":"0.000007525534569569"},{"denom":"ASSET9","index":"0.000003250577479728"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003218229550028"},{"denom":"ASSET1","index":"0.000027301798081180"},{"denom":"ASSET10","index":"0.000021745417841688"},{"denom":"ASSET11","index":"0.000027119412726222"},{"denom":"ASSET12","index":"0.000025834540696398"},{"denom":"ASSET13","index":"0.000008516471999212"},{"denom":"ASSET14","index":"0.000024897496810197"},{"denom":"ASSET15","index":"0.000019595694306931"},{"denom":"ASSET16","index":"0.000012114595919920"},{"denom":"ASSET17","index":"0.000009493460517354"},{"denom":"ASSET18","index":"0.000003932937797970"},{"denom":"ASSET2","index":"0.000008264095290285"},{"denom":"ASSET3","index":"0.000002297232512411"},{"denom":"ASSET4","index":"0.000022135581489268"},{"denom":"ASSET5","index":"0.000001789675045728"},{"denom":"ASSET6","index":"0.000007223884768794"},{"denom":"ASSET7","index":"0.000011342725097550"},{"denom":"ASSET8","index":"0.000015481678980085"},{"denom":"ASSET9","index":"0.000006573861400446"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001621688869515"},{"denom":"ASSET1","index":"0.000013520143478358"},{"denom":"ASSET10","index":"0.000009419470546393"},{"denom":"ASSET11","index":"0.000013079418684764"},{"denom":"ASSET12","index":"0.000011778054243646"},{"denom":"ASSET13","index":"0.000004053107355591"},{"denom":"ASSET14","index":"0.000012218035825109"},{"denom":"ASSET15","index":"0.000008735715386011"},{"denom":"ASSET16","index":"0.000006090623412316"},{"denom":"ASSET17","index":"0.000004325494601547"},{"denom":"ASSET18","index":"0.000002060555632782"},{"denom":"ASSET2","index":"0.000003991049142665"},{"denom":"ASSET3","index":"0.000001167586257565"},{"denom":"ASSET4","index":"0.000010987648142487"},{"denom":"ASSET5","index":"0.000000905975587506"},{"denom":"ASSET6","index":"0.000003688190199343"},{"denom":"ASSET7","index":"0.000005648412194460"},{"denom":"ASSET8","index":"0.000007370434701640"},{"denom":"ASSET9","index":"0.000003183549162496"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003224207736427"},{"denom":"ASSET1","index":"0.000027358045975387"},{"denom":"ASSET10","index":"0.000021853454393362"},{"denom":"ASSET11","index":"0.000027191663823691"},{"denom":"ASSET12","index":"0.000025935625558190"},{"denom":"ASSET13","index":"0.000008541293337334"},{"denom":"ASSET14","index":"0.000024954691173737"},{"denom":"ASSET15","index":"0.000019681390400685"},{"denom":"ASSET16","index":"0.000012135703886829"},{"denom":"ASSET17","index":"0.000009530848033034"},{"denom":"ASSET18","index":"0.000003936224347496"},{"denom":"ASSET2","index":"0.000008286598878032"},{"denom":"ASSET3","index":"0.000002301038846536"},{"denom":"ASSET4","index":"0.000022179933336345"},{"denom":"ASSET5","index":"0.000001792519798769"},{"denom":"ASSET6","index":"0.000007234068845872"},{"denom":"ASSET7","index":"0.000011365474292791"},{"denom":"ASSET8","index":"0.000015527655320242"},{"denom":"ASSET9","index":"0.000006590765495457"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001684197417987"},{"denom":"ASSET1","index":"0.000014041270025306"},{"denom":"ASSET10","index":"0.000009782380002809"},{"denom":"ASSET11","index":"0.000013583439347888"},{"denom":"ASSET12","index":"0.000012231725730520"},{"denom":"ASSET13","index":"0.000004209525615418"},{"denom":"ASSET14","index":"0.000012688588478388"},{"denom":"ASSET15","index":"0.000009072403677468"},{"denom":"ASSET16","index":"0.000006325419612958"},{"denom":"ASSET17","index":"0.000004492161044183"},{"denom":"ASSET18","index":"0.000002139608271529"},{"denom":"ASSET2","index":"0.000004144674335530"},{"denom":"ASSET3","index":"0.000001212331762086"},{"denom":"ASSET4","index":"0.000011410921471639"},{"denom":"ASSET5","index":"0.000000940827523152"},{"denom":"ASSET6","index":"0.000003830097231595"},{"denom":"ASSET7","index":"0.000005866137041214"},{"denom":"ASSET8","index":"0.000007654386885887"},{"denom":"ASSET9","index":"0.000003305963379963"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003193080094990"},{"denom":"ASSET1","index":"0.000027069824276969"},{"denom":"ASSET10","index":"0.000021489349079139"},{"denom":"ASSET11","index":"0.000026870184080824"},{"denom":"ASSET12","index":"0.000025561356340007"},{"denom":"ASSET13","index":"0.000008435097288603"},{"denom":"ASSET14","index":"0.000024680442306089"},{"denom":"ASSET15","index":"0.000019377704768171"},{"denom":"ASSET16","index":"0.000012016988086595"},{"denom":"ASSET17","index":"0.000009392966467546"},{"denom":"ASSET18","index":"0.000003905368596850"},{"denom":"ASSET2","index":"0.000008189075060838"},{"denom":"ASSET3","index":"0.000002279664955012"},{"denom":"ASSET4","index":"0.000021948593995488"},{"denom":"ASSET5","index":"0.000001775351671947"},{"denom":"ASSET6","index":"0.000007168631437760"},{"denom":"ASSET7","index":"0.000011248752159293"},{"denom":"ASSET8","index":"0.000015334459676317"},{"denom":"ASSET9","index":"0.000006513651901550"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001677613648548"},{"denom":"ASSET1","index":"0.000013997394471820"},{"denom":"ASSET10","index":"0.000009752554992736"},{"denom":"ASSET11","index":"0.000013541183096442"},{"denom":"ASSET12","index":"0.000012193285851007"},{"denom":"ASSET13","index":"0.000004195070965406"},{"denom":"ASSET14","index":"0.000012649497226385"},{"denom":"ASSET15","index":"0.000009043353672830"},{"denom":"ASSET16","index":"0.000006306085420563"},{"denom":"ASSET17","index":"0.000004477092542912"},{"denom":"ASSET18","index":"0.000002131751335856"},{"denom":"ASSET2","index":"0.000004130786635239"},{"denom":"ASSET3","index":"0.000001208960144751"},{"denom":"ASSET4","index":"0.000011376252751467"},{"denom":"ASSET5","index":"0.000000937307007594"},{"denom":"ASSET6","index":"0.000003817659736684"},{"denom":"ASSET7","index":"0.000005847800357116"},{"denom":"ASSET8","index":"0.000007631172097229"},{"denom":"ASSET9","index":"0.000003295090343070"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003316222748087"},{"denom":"ASSET1","index":"0.000028147075207200"},{"denom":"ASSET10","index":"0.000022466702115272"},{"denom":"ASSET11","index":"0.000027971336509453"},{"denom":"ASSET12","index":"0.000026669877578580"},{"denom":"ASSET13","index":"0.000008784355829882"},{"denom":"ASSET14","index":"0.000025672864554615"},{"denom":"ASSET15","index":"0.000020235356040284"},{"denom":"ASSET16","index":"0.000012487172511964"},{"denom":"ASSET17","index":"0.000009799807931023"},{"denom":"ASSET18","index":"0.000004049727438870"},{"denom":"ASSET2","index":"0.000008522892941853"},{"denom":"ASSET3","index":"0.000002368075218536"},{"denom":"ASSET4","index":"0.000022820717384594"},{"denom":"ASSET5","index":"0.000001843591257654"},{"denom":"ASSET6","index":"0.000007443165294976"},{"denom":"ASSET7","index":"0.000011693499621126"},{"denom":"ASSET8","index":"0.000015972009373807"},{"denom":"ASSET9","index":"0.000006779069609364"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001520550536467"},{"denom":"ASSET1","index":"0.000012675827554874"},{"denom":"ASSET10","index":"0.000008831388003026"},{"denom":"ASSET11","index":"0.000012262725604616"},{"denom":"ASSET12","index":"0.000011042474271843"},{"denom":"ASSET13","index":"0.000003800233070086"},{"denom":"ASSET14","index":"0.000011455195131741"},{"denom":"ASSET15","index":"0.000008190012927118"},{"denom":"ASSET16","index":"0.000005710257954490"},{"denom":"ASSET17","index":"0.000004055182520937"},{"denom":"ASSET18","index":"0.000001931747034924"},{"denom":"ASSET2","index":"0.000003741926245004"},{"denom":"ASSET3","index":"0.000001094491513968"},{"denom":"ASSET4","index":"0.000010301253521611"},{"denom":"ASSET5","index":"0.000000849450412477"},{"denom":"ASSET6","index":"0.000003457632836431"},{"denom":"ASSET7","index":"0.000005295631642792"},{"denom":"ASSET8","index":"0.000006910311498182"},{"denom":"ASSET9","index":"0.000002984699699651"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003047858420945"},{"denom":"ASSET1","index":"0.000025863853767953"},{"denom":"ASSET10","index":"0.000020681482671570"},{"denom":"ASSET11","index":"0.000025712271525236"},{"denom":"ASSET12","index":"0.000024535470175220"},{"denom":"ASSET13","index":"0.000008077733573885"},{"denom":"ASSET14","index":"0.000023593590000343"},{"denom":"ASSET15","index":"0.000018621561303244"},{"denom":"ASSET16","index":"0.000011471343089677"},{"denom":"ASSET17","index":"0.000009016132124589"},{"denom":"ASSET18","index":"0.000003719208275283"},{"denom":"ASSET2","index":"0.000007835789085827"},{"denom":"ASSET3","index":"0.000002174729135607"},{"denom":"ASSET4","index":"0.000020967814383093"},{"denom":"ASSET5","index":"0.000001694402278429"},{"denom":"ASSET6","index":"0.000006836893759575"},{"denom":"ASSET7","index":"0.000010744095518390"},{"denom":"ASSET8","index":"0.000014684305897471"},{"denom":"ASSET9","index":"0.000006231971052532"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001765508823557"},{"denom":"ASSET1","index":"0.000014724618911480"},{"denom":"ASSET10","index":"0.000010258363403154"},{"denom":"ASSET11","index":"0.000014244524406828"},{"denom":"ASSET12","index":"0.000012826610887714"},{"denom":"ASSET13","index":"0.000004413772058893"},{"denom":"ASSET14","index":"0.000013305845007949"},{"denom":"ASSET15","index":"0.000009513270498085"},{"denom":"ASSET16","index":"0.000006632703470176"},{"denom":"ASSET17","index":"0.000004710604682736"},{"denom":"ASSET18","index":"0.000002243882559375"},{"denom":"ASSET2","index":"0.000004346662074372"},{"denom":"ASSET3","index":"0.000001271648168235"},{"denom":"ASSET4","index":"0.000011966226470776"},{"denom":"ASSET5","index":"0.000000986860926228"},{"denom":"ASSET6","index":"0.000004016274458267"},{"denom":"ASSET7","index":"0.000006150888196691"},{"denom":"ASSET8","index":"0.000008026526225616"},{"denom":"ASSET9","index":"0.000003466488815844"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003365151784209"},{"denom":"ASSET1","index":"0.000028538337865727"},{"denom":"ASSET10","index":"0.000022670552359626"},{"denom":"ASSET11","index":"0.000028331786642422"},{"denom":"ASSET12","index":"0.000026959391418936"},{"denom":"ASSET13","index":"0.000008894072871450"},{"denom":"ASSET14","index":"0.000026020188745878"},{"denom":"ASSET15","index":"0.000020439828986765"},{"denom":"ASSET16","index":"0.000012667128947757"},{"denom":"ASSET17","index":"0.000009907060013179"},{"denom":"ASSET18","index":"0.000004116201786219"},{"denom":"ASSET2","index":"0.000008634485522558"},{"denom":"ASSET3","index":"0.000002403102945281"},{"denom":"ASSET4","index":"0.000023139017263426"},{"denom":"ASSET5","index":"0.000001871649891727"},{"denom":"ASSET6","index":"0.000007555863827839"},{"denom":"ASSET7","index":"0.000011857581945748"},{"denom":"ASSET8","index":"0.000016169532559731"},{"denom":"ASSET9","index":"0.000006867789268222"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001833509758465"},{"denom":"ASSET1","index":"0.000015308139656127"},{"denom":"ASSET10","index":"0.000010661025831945"},{"denom":"ASSET11","index":"0.000014808091540182"},{"denom":"ASSET12","index":"0.000013334616425197"},{"denom":"ASSET13","index":"0.000004587108050268"},{"denom":"ASSET14","index":"0.000013827997232930"},{"denom":"ASSET15","index":"0.000009887618079284"},{"denom":"ASSET16","index":"0.000006893996691827"},{"denom":"ASSET17","index":"0.000004893804228047"},{"denom":"ASSET18","index":"0.000002326890566197"},{"denom":"ASSET2","index":"0.000004513767659929"},{"denom":"ASSET3","index":"0.000001320127026095"},{"denom":"ASSET4","index":"0.000012434529816496"},{"denom":"ASSET5","index":"0.000001020098156528"},{"denom":"ASSET6","index":"0.000004173734941087"},{"denom":"ASSET7","index":"0.000006393948575882"},{"denom":"ASSET8","index":"0.000008340802573961"},{"denom":"ASSET9","index":"0.000003600346434803"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003461123478470"},{"denom":"ASSET1","index":"0.000029368181297786"},{"denom":"ASSET10","index":"0.000023294808028239"},{"denom":"ASSET11","index":"0.000029147392384169"},{"denom":"ASSET12","index":"0.000027719461688447"},{"denom":"ASSET13","index":"0.000009147542663388"},{"denom":"ASSET14","index":"0.000026768604990580"},{"denom":"ASSET15","index":"0.000021008846141082"},{"denom":"ASSET16","index":"0.000013035302068339"},{"denom":"ASSET17","index":"0.000010182949549387"},{"denom":"ASSET18","index":"0.000004232564951180"},{"denom":"ASSET2","index":"0.000008877642147806"},{"denom":"ASSET3","index":"0.000002471921418528"},{"denom":"ASSET4","index":"0.000023806252184245"},{"denom":"ASSET5","index":"0.000001920199705662"},{"denom":"ASSET6","index":"0.000007776538212319"},{"denom":"ASSET7","index":"0.000012202060569359"},{"denom":"ASSET8","index":"0.000016628688342614"},{"denom":"ASSET9","index":"0.000007061722298848"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001580229076001"},{"denom":"ASSET1","index":"0.000013178675425859"},{"denom":"ASSET10","index":"0.000009181488308837"},{"denom":"ASSET11","index":"0.000012749045790152"},{"denom":"ASSET12","index":"0.000011480356468073"},{"denom":"ASSET13","index":"0.000003950572690002"},{"denom":"ASSET14","index":"0.000011909209196663"},{"denom":"ASSET15","index":"0.000008514902002442"},{"denom":"ASSET16","index":"0.000005936347281082"},{"denom":"ASSET17","index":"0.000004216274924019"},{"denom":"ASSET18","index":"0.000002008304897474"},{"denom":"ASSET2","index":"0.000003889973934875"},{"denom":"ASSET3","index":"0.000001137392019304"},{"denom":"ASSET4","index":"0.000010709664607998"},{"denom":"ASSET5","index":"0.000000883343392042"},{"denom":"ASSET6","index":"0.000003594749230410"},{"denom":"ASSET7","index":"0.000005505163831141"},{"denom":"ASSET8","index":"0.000007184060111002"},{"denom":"ASSET9","index":"0.000003102967025342"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003136420796654"},{"denom":"ASSET1","index":"0.000026617535879560"},{"denom":"ASSET10","index":"0.000021257162201233"},{"denom":"ASSET11","index":"0.000026454281403244"},{"denom":"ASSET12","index":"0.000025229520616223"},{"denom":"ASSET13","index":"0.000008309311482354"},{"denom":"ASSET14","index":"0.000024278363089230"},{"denom":"ASSET15","index":"0.000019144672836670"},{"denom":"ASSET16","index":"0.000011806881934189"},{"denom":"ASSET17","index":"0.000009271795054357"},{"denom":"ASSET18","index":"0.000003829937127836"},{"denom":"ASSET2","index":"0.000008061315465971"},{"denom":"ASSET3","index":"0.000002238409344787"},{"denom":"ASSET4","index":"0.000021579173085678"},{"denom":"ASSET5","index":"0.000001744155749232"},{"denom":"ASSET6","index":"0.000007037998659171"},{"denom":"ASSET7","index":"0.000011056982942661"},{"denom":"ASSET8","index":"0.000015105683491420"},{"denom":"ASSET9","index":"0.000006411626899884"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001065673750407"},{"denom":"ASSET1","index":"0.000008885137524612"},{"denom":"ASSET10","index":"0.000006190162379117"},{"denom":"ASSET11","index":"0.000008595321581390"},{"denom":"ASSET12","index":"0.000007740138401991"},{"denom":"ASSET13","index":"0.000002663662498568"},{"denom":"ASSET14","index":"0.000008029258508615"},{"denom":"ASSET15","index":"0.000005740999854868"},{"denom":"ASSET16","index":"0.000004002452113836"},{"denom":"ASSET17","index":"0.000002842492504350"},{"denom":"ASSET18","index":"0.000001354098020432"},{"denom":"ASSET2","index":"0.000002622608139264"},{"denom":"ASSET3","index":"0.000000767159849705"},{"denom":"ASSET4","index":"0.000007220696381306"},{"denom":"ASSET5","index":"0.000000595288209907"},{"denom":"ASSET6","index":"0.000002423598872130"},{"denom":"ASSET7","index":"0.000003711940334016"},{"denom":"ASSET8","index":"0.000004843718561268"},{"denom":"ASSET9","index":"0.000002092032733005"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000002559869929403"},{"denom":"ASSET1","index":"0.000021787096732684"},{"denom":"ASSET10","index":"0.000017783238471081"},{"denom":"ASSET11","index":"0.000021752938768967"},{"denom":"ASSET12","index":"0.000020940235345308"},{"denom":"ASSET13","index":"0.000006848308161575"},{"denom":"ASSET14","index":"0.000019904298850841"},{"denom":"ASSET15","index":"0.000015946274018453"},{"denom":"ASSET16","index":"0.000009638424477568"},{"denom":"ASSET17","index":"0.000007695902028378"},{"denom":"ASSET18","index":"0.000003102977872608"},{"denom":"ASSET2","index":"0.000006627591716064"},{"denom":"ASSET3","index":"0.000001824087350341"},{"denom":"ASSET4","index":"0.000017655906837434"},{"denom":"ASSET5","index":"0.000001421889695470"},{"denom":"ASSET6","index":"0.000005729615091854"},{"denom":"ASSET7","index":"0.000009042175373173"},{"denom":"ASSET8","index":"0.000012449153729005"},{"denom":"ASSET9","index":"0.000005268661072858"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001663945626017"},{"denom":"ASSET1","index":"0.000013874870096624"},{"denom":"ASSET10","index":"0.000009666844154779"},{"denom":"ASSET11","index":"0.000013422526194886"},{"denom":"ASSET12","index":"0.000012086742376498"},{"denom":"ASSET13","index":"0.000004159391889779"},{"denom":"ASSET14","index":"0.000012538614102973"},{"denom":"ASSET15","index":"0.000008964719539034"},{"denom":"ASSET16","index":"0.000006250183953344"},{"denom":"ASSET17","index":"0.000004438919645342"},{"denom":"ASSET18","index":"0.000002114400826704"},{"denom":"ASSET2","index":"0.000004095648229305"},{"denom":"ASSET3","index":"0.000001197908641659"},{"denom":"ASSET4","index":"0.000011275545275051"},{"denom":"ASSET5","index":"0.000000929713092403"},{"denom":"ASSET6","index":"0.000003784956906399"},{"denom":"ASSET7","index":"0.000005796423525818"},{"denom":"ASSET8","index":"0.000007563775534382"},{"denom":"ASSET9","index":"0.000003266980643136"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003299045378029"},{"denom":"ASSET1","index":"0.000027992490930804"},{"denom":"ASSET10","index":"0.000022352284005938"},{"denom":"ASSET11","index":"0.000027819914533732"},{"denom":"ASSET12","index":"0.000026530494002155"},{"denom":"ASSET13","index":"0.000008738242797579"},{"denom":"ASSET14","index":"0.000025532401567106"},{"denom":"ASSET15","index":"0.000020131602968729"},{"denom":"ASSET16","index":"0.000012417136212826"},{"denom":"ASSET17","index":"0.000009749421325842"},{"denom":"ASSET18","index":"0.000004027997856345"},{"denom":"ASSET2","index":"0.000008477931503293"},{"denom":"ASSET3","index":"0.000002354450357881"},{"denom":"ASSET4","index":"0.000022693933657862"},{"denom":"ASSET5","index":"0.000001834114741991"},{"denom":"ASSET6","index":"0.000007402245947993"},{"denom":"ASSET7","index":"0.000011628988518089"},{"denom":"ASSET8","index":"0.000015885667960333"},{"denom":"ASSET9","index":"0.000006742956926982"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001554670726054"},{"denom":"ASSET1","index":"0.000012963415617374"},{"denom":"ASSET10","index":"0.000009031685079156"},{"denom":"ASSET11","index":"0.000012540799003679"},{"denom":"ASSET12","index":"0.000011293255065955"},{"denom":"ASSET13","index":"0.000003886042255656"},{"denom":"ASSET14","index":"0.000011715237120170"},{"denom":"ASSET15","index":"0.000008376185136293"},{"denom":"ASSET16","index":"0.000005839850894644"},{"denom":"ASSET17","index":"0.000004147480761425"},{"denom":"ASSET18","index":"0.000001975383661309"},{"denom":"ASSET2","index":"0.000003826393664534"},{"denom":"ASSET3","index":"0.000001119362922759"},{"denom":"ASSET4","index":"0.000010534956487329"},{"denom":"ASSET5","index":"0.000000868711928150"},{"denom":"ASSET6","index":"0.000003536399982164"},{"denom":"ASSET7","index":"0.000005415965161990"},{"denom":"ASSET8","index":"0.000007067088929007"},{"denom":"ASSET9","index":"0.000003052231098907"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003157426180098"},{"denom":"ASSET1","index":"0.000026803913890418"},{"denom":"ASSET10","index":"0.000021467927303389"},{"denom":"ASSET11","index":"0.000026655124661377"},{"denom":"ASSET12","index":"0.000025453388278707"},{"denom":"ASSET13","index":"0.000008375182650914"},{"denom":"ASSET14","index":"0.000024453809207757"},{"denom":"ASSET15","index":"0.000019323681821282"},{"denom":"ASSET16","index":"0.000011885939188892"},{"denom":"ASSET17","index":"0.000009353763879690"},{"denom":"ASSET18","index":"0.000003851457527173"},{"denom":"ASSET2","index":"0.000008122633355733"},{"denom":"ASSET3","index":"0.000002252845423920"},{"denom":"ASSET4","index":"0.000021728796023940"},{"denom":"ASSET5","index":"0.000001755342604855"},{"denom":"ASSET6","index":"0.000007082922688985"},{"denom":"ASSET7","index":"0.000011133765978354"},{"denom":"ASSET8","index":"0.000015225414484063"},{"denom":"ASSET9","index":"0.000006459804222065"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001578706846766"},{"denom":"ASSET1","index":"0.000013164667632738"},{"denom":"ASSET10","index":"0.000009171819989970"},{"denom":"ASSET11","index":"0.000012734981690366"},{"denom":"ASSET12","index":"0.000011467468005207"},{"denom":"ASSET13","index":"0.000003946168668528"},{"denom":"ASSET14","index":"0.000011895957050803"},{"denom":"ASSET15","index":"0.000008505148486066"},{"denom":"ASSET16","index":"0.000005930623522158"},{"denom":"ASSET17","index":"0.000004211879752669"},{"denom":"ASSET18","index":"0.000002005998995588"},{"denom":"ASSET2","index":"0.000003886323829757"},{"denom":"ASSET3","index":"0.000001135855039864"},{"denom":"ASSET4","index":"0.000010697863378618"},{"denom":"ASSET5","index":"0.000000882112923477"},{"denom":"ASSET6","index":"0.000003590690326231"},{"denom":"ASSET7","index":"0.000005499740683011"},{"denom":"ASSET8","index":"0.000007176593065360"},{"denom":"ASSET9","index":"0.000003098765751537"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003185213515607"},{"denom":"ASSET1","index":"0.000027035699090666"},{"denom":"ASSET10","index":"0.000021635640181728"},{"denom":"ASSET11","index":"0.000026880669357351"},{"denom":"ASSET12","index":"0.000025658872180332"},{"denom":"ASSET13","index":"0.000008444958797633"},{"denom":"ASSET14","index":"0.000024662649108986"},{"denom":"ASSET15","index":"0.000019476753279332"},{"denom":"ASSET16","index":"0.000011989846651744"},{"denom":"ASSET17","index":"0.000009429633404312"},{"denom":"ASSET18","index":"0.000003886090392826"},{"denom":"ASSET2","index":"0.000008191890279929"},{"denom":"ASSET3","index":"0.000002271981699175"},{"denom":"ASSET4","index":"0.000021916623044014"},{"denom":"ASSET5","index":"0.000001770727550439"},{"denom":"ASSET6","index":"0.000007144791673859"},{"denom":"ASSET7","index":"0.000011230376410345"},{"denom":"ASSET8","index":"0.000015353061978158"},{"denom":"ASSET9","index":"0.000006513931773648"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001736464555496"},{"denom":"ASSET1","index":"0.000014486324003877"},{"denom":"ASSET10","index":"0.000010092542477093"},{"denom":"ASSET11","index":"0.000014014496766071"},{"denom":"ASSET12","index":"0.000012620063107870"},{"denom":"ASSET13","index":"0.000004342915393341"},{"denom":"ASSET14","index":"0.000013091890345676"},{"denom":"ASSET15","index":"0.000009359368553661"},{"denom":"ASSET16","index":"0.000006524897117620"},{"denom":"ASSET17","index":"0.000004634080157191"},{"denom":"ASSET18","index":"0.000002206537788701"},{"denom":"ASSET2","index":"0.000004276263218483"},{"denom":"ASSET3","index":"0.000001250605280877"},{"denom":"ASSET4","index":"0.000011772878885340"},{"denom":"ASSET5","index":"0.000000969964544635"},{"denom":"ASSET6","index":"0.000003951772367204"},{"denom":"ASSET7","index":"0.000006051315875212"},{"denom":"ASSET8","index":"0.000007896528716001"},{"denom":"ASSET9","index":"0.000003409784945337"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003356675502673"},{"denom":"ASSET1","index":"0.000028477076245214"},{"denom":"ASSET10","index":"0.000022663760086849"},{"denom":"ASSET11","index":"0.000028282539274294"},{"denom":"ASSET12","index":"0.000026934248109484"},{"denom":"ASSET13","index":"0.000008880550781135"},{"denom":"ASSET14","index":"0.000025969128454053"},{"denom":"ASSET15","index":"0.000020425731449718"},{"denom":"ASSET16","index":"0.000012636600959200"},{"denom":"ASSET17","index":"0.000009896936242996"},{"denom":"ASSET18","index":"0.000004102733083140"},{"denom":"ASSET2","index":"0.000008619316582261"},{"denom":"ASSET3","index":"0.000002396767404444"},{"denom":"ASSET4","index":"0.000023088672429632"},{"denom":"ASSET5","index":"0.000001866260713425"},{"denom":"ASSET6","index":"0.000007536521735823"},{"denom":"ASSET7","index":"0.000011831316132227"},{"denom":"ASSET8","index":"0.000016143846449802"},{"denom":"ASSET9","index":"0.000006854365607618"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001432199402946"},{"denom":"ASSET1","index":"0.000011943338809449"},{"denom":"ASSET10","index":"0.000008321234131428"},{"denom":"ASSET11","index":"0.000011554338026882"},{"denom":"ASSET12","index":"0.000010404248756685"},{"denom":"ASSET13","index":"0.000003580160245814"},{"denom":"ASSET14","index":"0.000010793249539252"},{"denom":"ASSET15","index":"0.000007717099003024"},{"denom":"ASSET16","index":"0.000005380388215223"},{"denom":"ASSET17","index":"0.000003821002469456"},{"denom":"ASSET18","index":"0.000001819847139312"},{"denom":"ASSET2","index":"0.000003525361874705"},{"denom":"ASSET3","index":"0.000001031021204577"},{"denom":"ASSET4","index":"0.000009706076917365"},{"denom":"ASSET5","index":"0.000000800326827437"},{"denom":"ASSET6","index":"0.000003258135250159"},{"denom":"ASSET7","index":"0.000004989357863356"},{"denom":"ASSET8","index":"0.000006510858315517"},{"denom":"ASSET9","index":"0.000002812306527182"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000002962853679956"},{"denom":"ASSET1","index":"0.000025162993314326"},{"denom":"ASSET10","index":"0.000020199688926412"},{"denom":"ASSET11","index":"0.000025035647772320"},{"denom":"ASSET12","index":"0.000023929456511577"},{"denom":"ASSET13","index":"0.000007867725037604"},{"denom":"ASSET14","index":"0.000022960507028012"},{"denom":"ASSET15","index":"0.000018173489333858"},{"denom":"ASSET16","index":"0.000011155286879957"},{"denom":"ASSET17","index":"0.000008793607250882"},{"denom":"ASSET18","index":"0.000003611579051495"},{"denom":"ASSET2","index":"0.000007628670547867"},{"denom":"ASSET3","index":"0.000002114031306235"},{"denom":"ASSET4","index":"0.000020398130246320"},{"denom":"ASSET5","index":"0.000001647096325587"},{"denom":"ASSET6","index":"0.000006645213242757"},{"denom":"ASSET7","index":"0.000010450616802650"},{"denom":"ASSET8","index":"0.000014303332598966"},{"denom":"ASSET9","index":"0.000006067112886031"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001597673370668"},{"denom":"ASSET1","index":"0.000013327099930964"},{"denom":"ASSET10","index":"0.000009285285696821"},{"denom":"ASSET11","index":"0.000012892979142852"},{"denom":"ASSET12","index":"0.000011609669101507"},{"denom":"ASSET13","index":"0.000003995544306884"},{"denom":"ASSET14","index":"0.000012043789889618"},{"denom":"ASSET15","index":"0.000008610289110917"},{"denom":"ASSET16","index":"0.000006002842621820"},{"denom":"ASSET17","index":"0.000004263637708946"},{"denom":"ASSET18","index":"0.000002030433278566"},{"denom":"ASSET2","index":"0.000003934304697275"},{"denom":"ASSET3","index":"0.000001149943780421"},{"denom":"ASSET4","index":"0.000010829884739162"},{"denom":"ASSET5","index":"0.000000892737420067"},{"denom":"ASSET6","index":"0.000003634911050302"},{"denom":"ASSET7","index":"0.000005567360953495"},{"denom":"ASSET8","index":"0.000007264378579749"},{"denom":"ASSET9","index":"0.000003138189772368"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003135234009226"},{"denom":"ASSET1","index":"0.000026602125077525"},{"denom":"ASSET10","index":"0.000021213712135644"},{"denom":"ASSET11","index":"0.000026430841190504"},{"denom":"ASSET12","index":"0.000025191219856579"},{"denom":"ASSET13","index":"0.000008300995957475"},{"denom":"ASSET14","index":"0.000024262534835813"},{"denom":"ASSET15","index":"0.000019110376679732"},{"denom":"ASSET16","index":"0.000011801461546978"},{"denom":"ASSET17","index":"0.000009257538829689"},{"denom":"ASSET18","index":"0.000003829421505073"},{"denom":"ASSET2","index":"0.000008055136326188"},{"denom":"ASSET3","index":"0.000002237228869924"},{"denom":"ASSET4","index":"0.000021566736915931"},{"denom":"ASSET5","index":"0.000001743257901616"},{"denom":"ASSET6","index":"0.000007036288319926"},{"denom":"ASSET7","index":"0.000011051703047857"},{"denom":"ASSET8","index":"0.000015089589803941"},{"denom":"ASSET9","index":"0.000006406386950018"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001689516061942"},{"denom":"ASSET1","index":"0.000014086551658080"},{"denom":"ASSET10","index":"0.000009813816295422"},{"denom":"ASSET11","index":"0.000013627312671286"},{"denom":"ASSET12","index":"0.000012271349136594"},{"denom":"ASSET13","index":"0.000004223185893030"},{"denom":"ASSET14","index":"0.000012729983861563"},{"denom":"ASSET15","index":"0.000009101391604066"},{"denom":"ASSET16","index":"0.000006345353421478"},{"denom":"ASSET17","index":"0.000004506584688828"},{"denom":"ASSET18","index":"0.000002146942263262"},{"denom":"ASSET2","index":"0.000004157925615959"},{"denom":"ASSET3","index":"0.000001216379053179"},{"denom":"ASSET4","index":"0.000011447740269489"},{"denom":"ASSET5","index":"0.000000943856970227"},{"denom":"ASSET6","index":"0.000003842500943451"},{"denom":"ASSET7","index":"0.000005884905911035"},{"denom":"ASSET8","index":"0.000007678959268655"},{"denom":"ASSET9","index":"0.000003316793155937"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003297864217859"},{"denom":"ASSET1","index":"0.000027973253972789"},{"denom":"ASSET10","index":"0.000022291630953866"},{"denom":"ASSET11","index":"0.000027789008146512"},{"denom":"ASSET12","index":"0.000026479178332828"},{"denom":"ASSET13","index":"0.000008727103479255"},{"denom":"ASSET14","index":"0.000025511286037616"},{"denom":"ASSET15","index":"0.000020085740117730"},{"denom":"ASSET16","index":"0.000012411485442612"},{"denom":"ASSET17","index":"0.000009730550155880"},{"denom":"ASSET18","index":"0.000004028926705548"},{"denom":"ASSET2","index":"0.000008468714781887"},{"denom":"ASSET3","index":"0.000002353891879987"},{"denom":"ASSET4","index":"0.000022679492169342"},{"denom":"ASSET5","index":"0.000001833514119464"},{"denom":"ASSET6","index":"0.000007400677249018"},{"denom":"ASSET7","index":"0.000011621769805761"},{"denom":"ASSET8","index":"0.000015864980999233"},{"denom":"ASSET9","index":"0.000006736116007098"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001411859688057"},{"denom":"ASSET1","index":"0.000011770485537623"},{"denom":"ASSET10","index":"0.000008200497469250"},{"denom":"ASSET11","index":"0.000011386615852852"},{"denom":"ASSET12","index":"0.000010253874969484"},{"denom":"ASSET13","index":"0.000003528347966974"},{"denom":"ASSET14","index":"0.000010637094027671"},{"denom":"ASSET15","index":"0.000007605174144562"},{"denom":"ASSET16","index":"0.000005302606662519"},{"denom":"ASSET17","index":"0.000003765826670265"},{"denom":"ASSET18","index":"0.000001793777493075"},{"denom":"ASSET2","index":"0.000003474345960472"},{"denom":"ASSET3","index":"0.000001016278724767"},{"denom":"ASSET4","index":"0.000009565512043233"},{"denom":"ASSET5","index":"0.000000788559420242"},{"denom":"ASSET6","index":"0.000003210842193807"},{"denom":"ASSET7","index":"0.000004917435724579"},{"denom":"ASSET8","index":"0.000006416479374940"},{"denom":"ASSET9","index":"0.000002771018622781"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000002930820438736"},{"denom":"ASSET1","index":"0.000024889799880283"},{"denom":"ASSET10","index":"0.000019988623694797"},{"denom":"ASSET11","index":"0.000024765615752571"},{"denom":"ASSET12","index":"0.000023676022623299"},{"denom":"ASSET13","index":"0.000007783195940338"},{"denom":"ASSET14","index":"0.000022712072914709"},{"denom":"ASSET15","index":"0.000017982209004670"},{"denom":"ASSET16","index":"0.000011033267632466"},{"denom":"ASSET17","index":"0.000008700651286884"},{"denom":"ASSET18","index":"0.000003571624768330"},{"denom":"ASSET2","index":"0.000007546215495169"},{"denom":"ASSET3","index":"0.000002090977414753"},{"denom":"ASSET4","index":"0.000020176663420937"},{"denom":"ASSET5","index":"0.000001628342560149"},{"denom":"ASSET6","index":"0.000006572371850885"},{"denom":"ASSET7","index":"0.000010337273058537"},{"denom":"ASSET8","index":"0.000014149515747938"},{"denom":"ASSET9","index":"0.000006000707920121"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001726304213109"},{"denom":"ASSET1","index":"0.000014431903221591"},{"denom":"ASSET10","index":"0.000010055058078201"},{"denom":"ASSET11","index":"0.000013959161452463"},{"denom":"ASSET12","index":"0.000012572806376704"},{"denom":"ASSET13","index":"0.000004323728090679"},{"denom":"ASSET14","index":"0.000013040236440562"},{"denom":"ASSET15","index":"0.000009322042750788"},{"denom":"ASSET16","index":"0.000006501527251832"},{"denom":"ASSET17","index":"0.000004615871880590"},{"denom":"ASSET18","index":"0.000002199045982237"},{"denom":"ASSET2","index":"0.000004259987627426"},{"denom":"ASSET3","index":"0.000001242939033438"},{"denom":"ASSET4","index":"0.000011728245238599"},{"denom":"ASSET5","index":"0.000000966730359341"},{"denom":"ASSET6","index":"0.000003935973605888"},{"denom":"ASSET7","index":"0.000006028785482704"},{"denom":"ASSET8","index":"0.000007866635506506"},{"denom":"ASSET9","index":"0.000003394179668236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003313075721980"},{"denom":"ASSET1","index":"0.000028138029356789"},{"denom":"ASSET10","index":"0.000022370607880245"},{"denom":"ASSET11","index":"0.000027937207217164"},{"denom":"ASSET12","index":"0.000026595598409551"},{"denom":"ASSET13","index":"0.000008769097729958"},{"denom":"ASSET14","index":"0.000025655242037122"},{"denom":"ASSET15","index":"0.000020162686714325"},{"denom":"ASSET16","index":"0.000012488922131836"},{"denom":"ASSET17","index":"0.000009772018779266"},{"denom":"ASSET18","index":"0.000004056016110298"},{"denom":"ASSET2","index":"0.000008514325121927"},{"denom":"ASSET3","index":"0.000002365037757716"},{"denom":"ASSET4","index":"0.000022813272666626"},{"denom":"ASSET5","index":"0.000001844445619129"},{"denom":"ASSET6","index":"0.000007446834645040"},{"denom":"ASSET7","index":"0.000011690909413493"},{"denom":"ASSET8","index":"0.000015945057917181"},{"denom":"ASSET9","index":"0.000006769080892636"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001630255611072"},{"denom":"ASSET1","index":"0.000013593541268721"},{"denom":"ASSET10","index":"0.000009470169531707"},{"denom":"ASSET11","index":"0.000013149994246609"},{"denom":"ASSET12","index":"0.000011841383661505"},{"denom":"ASSET13","index":"0.000004074904678306"},{"denom":"ASSET14","index":"0.000012284196334242"},{"denom":"ASSET15","index":"0.000008782818517308"},{"denom":"ASSET16","index":"0.000006123739432762"},{"denom":"ASSET17","index":"0.000004348816994942"},{"denom":"ASSET18","index":"0.000002071599585061"},{"denom":"ASSET2","index":"0.000004012484981486"},{"denom":"ASSET3","index":"0.000001173490300222"},{"denom":"ASSET4","index":"0.000011046817638451"},{"denom":"ASSET5","index":"0.000000910593224203"},{"denom":"ASSET6","index":"0.000003707729991128"},{"denom":"ASSET7","index":"0.000005678723711902"},{"denom":"ASSET8","index":"0.000007410319536635"},{"denom":"ASSET9","index":"0.000003200294573447"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003344718004914"},{"denom":"ASSET1","index":"0.000028399683918161"},{"denom":"ASSET10","index":"0.000022773943545696"},{"denom":"ASSET11","index":"0.000028249525692452"},{"denom":"ASSET12","index":"0.000026989510465266"},{"denom":"ASSET13","index":"0.000008877216029957"},{"denom":"ASSET14","index":"0.000025911788013611"},{"denom":"ASSET15","index":"0.000020494299775586"},{"denom":"ASSET16","index":"0.000012591463658113"},{"denom":"ASSET17","index":"0.000009918208342143"},{"denom":"ASSET18","index":"0.000004078542450859"},{"denom":"ASSET2","index":"0.000008608606683653"},{"denom":"ASSET3","index":"0.000002386103437058"},{"denom":"ASSET4","index":"0.000023022167148602"},{"denom":"ASSET5","index":"0.000001858883946943"},{"denom":"ASSET6","index":"0.000007501347044310"},{"denom":"ASSET7","index":"0.000011795380538461"},{"denom":"ASSET8","index":"0.000016137954986293"},{"denom":"ASSET9","index":"0.000006845854741756"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001401914217082"},{"denom":"ASSET1","index":"0.000011691084141249"},{"denom":"ASSET10","index":"0.000008144816837289"},{"denom":"ASSET11","index":"0.000011309282624399"},{"denom":"ASSET12","index":"0.000010184195671197"},{"denom":"ASSET13","index":"0.000003504785542706"},{"denom":"ASSET14","index":"0.000010565150621491"},{"denom":"ASSET15","index":"0.000007553913381055"},{"denom":"ASSET16","index":"0.000005266490546178"},{"denom":"ASSET17","index":"0.000003740131045332"},{"denom":"ASSET18","index":"0.000001781176034264"},{"denom":"ASSET2","index":"0.000003450605283109"},{"denom":"ASSET3","index":"0.000001009107335001"},{"denom":"ASSET4","index":"0.000009501016460336"},{"denom":"ASSET5","index":"0.000000783074064494"},{"denom":"ASSET6","index":"0.000003189016217240"},{"denom":"ASSET7","index":"0.000004883842462771"},{"denom":"ASSET8","index":"0.000006372953035143"},{"denom":"ASSET9","index":"0.000002752187874236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000002824624853437"},{"denom":"ASSET1","index":"0.000023976113690517"},{"denom":"ASSET10","index":"0.000019183481330878"},{"denom":"ASSET11","index":"0.000023837782846342"},{"denom":"ASSET12","index":"0.000022753084719682"},{"denom":"ASSET13","index":"0.000007489057952554"},{"denom":"ASSET14","index":"0.000021872315483076"},{"denom":"ASSET15","index":"0.000017271123733000"},{"denom":"ASSET16","index":"0.000010633084765839"},{"denom":"ASSET17","index":"0.000008361522972460"},{"denom":"ASSET18","index":"0.000003446219629870"},{"denom":"ASSET2","index":"0.000007263651822688"},{"denom":"ASSET3","index":"0.000002015414858276"},{"denom":"ASSET4","index":"0.000019437236646346"},{"denom":"ASSET5","index":"0.000001569802896992"},{"denom":"ASSET6","index":"0.000006336500403946"},{"denom":"ASSET7","index":"0.000009959182045961"},{"denom":"ASSET8","index":"0.000013614498977085"},{"denom":"ASSET9","index":"0.000005776799011181"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001454934724421"},{"denom":"ASSET1","index":"0.000012138554241533"},{"denom":"ASSET10","index":"0.000008457231031836"},{"denom":"ASSET11","index":"0.000011742676653726"},{"denom":"ASSET12","index":"0.000010575345305063"},{"denom":"ASSET13","index":"0.000003639028595615"},{"denom":"ASSET14","index":"0.000010969531108307"},{"denom":"ASSET15","index":"0.000007843113235366"},{"denom":"ASSET16","index":"0.000005467847708521"},{"denom":"ASSET17","index":"0.000003882645572727"},{"denom":"ASSET18","index":"0.000001849120527665"},{"denom":"ASSET2","index":"0.000003583199705027"},{"denom":"ASSET3","index":"0.000001047214644670"},{"denom":"ASSET4","index":"0.000009864795788485"},{"denom":"ASSET5","index":"0.000000813748374938"},{"denom":"ASSET6","index":"0.000003310822390339"},{"denom":"ASSET7","index":"0.000005070278336150"},{"denom":"ASSET8","index":"0.000006616569426988"},{"denom":"ASSET9","index":"0.000002857424127380"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003026822568793"},{"denom":"ASSET1","index":"0.000025710421285725"},{"denom":"ASSET10","index":"0.000020652297735472"},{"denom":"ASSET11","index":"0.000025583400849235"},{"denom":"ASSET12","index":"0.000024460820755928"},{"denom":"ASSET13","index":"0.000008041083722059"},{"denom":"ASSET14","index":"0.000023461074878675"},{"denom":"ASSET15","index":"0.000018578170233019"},{"denom":"ASSET16","index":"0.000011396689804799"},{"denom":"ASSET17","index":"0.000008988134494295"},{"denom":"ASSET18","index":"0.000003688816665807"},{"denom":"ASSET2","index":"0.000007796110853756"},{"denom":"ASSET3","index":"0.000002159003644915"},{"denom":"ASSET4","index":"0.000020841789260406"},{"denom":"ASSET5","index":"0.000001683251281734"},{"denom":"ASSET6","index":"0.000006788484398340"},{"denom":"ASSET7","index":"0.000010677121165375"},{"denom":"ASSET8","index":"0.000014616905179383"},{"denom":"ASSET9","index":"0.000006199084273401"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001547699786520"},{"denom":"ASSET1","index":"0.000012908880828127"},{"denom":"ASSET10","index":"0.000008993933542043"},{"denom":"ASSET11","index":"0.000012488059147042"},{"denom":"ASSET12","index":"0.000011245681057538"},{"denom":"ASSET13","index":"0.000003869751640144"},{"denom":"ASSET14","index":"0.000011665498390936"},{"denom":"ASSET15","index":"0.000008340103197445"},{"denom":"ASSET16","index":"0.000005815173110936"},{"denom":"ASSET17","index":"0.000004129877691221"},{"denom":"ASSET18","index":"0.000001966512772230"},{"denom":"ASSET2","index":"0.000003810495126579"},{"denom":"ASSET3","index":"0.000001114825933185"},{"denom":"ASSET4","index":"0.000010490411596498"},{"denom":"ASSET5","index":"0.000000864743358984"},{"denom":"ASSET6","index":"0.000003521242992563"},{"denom":"ASSET7","index":"0.000005392342734476"},{"denom":"ASSET8","index":"0.000007036459899001"},{"denom":"ASSET9","index":"0.000003039156102537"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003086703561215"},{"denom":"ASSET1","index":"0.000026199550261878"},{"denom":"ASSET10","index":"0.000020936384793003"},{"denom":"ASSET11","index":"0.000026042194398185"},{"denom":"ASSET12","index":"0.000024843424443974"},{"denom":"ASSET13","index":"0.000008180415813801"},{"denom":"ASSET14","index":"0.000023898307142718"},{"denom":"ASSET15","index":"0.000018852934413068"},{"denom":"ASSET16","index":"0.000011621232923996"},{"denom":"ASSET17","index":"0.000009129550402498"},{"denom":"ASSET18","index":"0.000003767892160935"},{"denom":"ASSET2","index":"0.000007936188126371"},{"denom":"ASSET3","index":"0.000002203575710986"},{"denom":"ASSET4","index":"0.000021240180347210"},{"denom":"ASSET5","index":"0.000001716192200569"},{"denom":"ASSET6","index":"0.000006926674957775"},{"denom":"ASSET7","index":"0.000010883333770048"},{"denom":"ASSET8","index":"0.000014871024805414"},{"denom":"ASSET9","index":"0.000006311583255107"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001511232509129"},{"denom":"ASSET1","index":"0.000012598757210652"},{"denom":"ASSET10","index":"0.000008777665278232"},{"denom":"ASSET11","index":"0.000012187849575766"},{"denom":"ASSET12","index":"0.000010975073643675"},{"denom":"ASSET13","index":"0.000003776959255615"},{"denom":"ASSET14","index":"0.000011385233267090"},{"denom":"ASSET15","index":"0.000008140359504707"},{"denom":"ASSET16","index":"0.000005675412369706"},{"denom":"ASSET17","index":"0.000004030784481533"},{"denom":"ASSET18","index":"0.000001920145446758"},{"denom":"ASSET2","index":"0.000003719113035170"},{"denom":"ASSET3","index":"0.000001087858016388"},{"denom":"ASSET4","index":"0.000010238531681628"},{"denom":"ASSET5","index":"0.000000844504951067"},{"denom":"ASSET6","index":"0.000003436614036185"},{"denom":"ASSET7","index":"0.000005263507386191"},{"denom":"ASSET8","index":"0.000006867991992072"},{"denom":"ASSET9","index":"0.000002966364157912"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003050294937135"},{"denom":"ASSET1","index":"0.000025887230915803"},{"denom":"ASSET10","index":"0.000020718160619670"},{"denom":"ASSET11","index":"0.000025739685005463"},{"denom":"ASSET12","index":"0.000024570727404900"},{"denom":"ASSET13","index":"0.000008086966483560"},{"denom":"ASSET14","index":"0.000023616194455668"},{"denom":"ASSET15","index":"0.000018651338246959"},{"denom":"ASSET16","index":"0.000011480437826441"},{"denom":"ASSET17","index":"0.000009029688158762"},{"denom":"ASSET18","index":"0.000003721440260869"},{"denom":"ASSET2","index":"0.000007844134626406"},{"denom":"ASSET3","index":"0.000002176540273945"},{"denom":"ASSET4","index":"0.000020986445628896"},{"denom":"ASSET5","index":"0.000001695800268231"},{"denom":"ASSET6","index":"0.000006841569437153"},{"denom":"ASSET7","index":"0.000010753447417762"},{"denom":"ASSET8","index":"0.000014701309289649"},{"denom":"ASSET9","index":"0.000006238283490477"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001535139489204"},{"denom":"ASSET1","index":"0.000012800845981431"},{"denom":"ASSET10","index":"0.000008918122145344"},{"denom":"ASSET11","index":"0.000012383184798277"},{"denom":"ASSET12","index":"0.000011151318949088"},{"denom":"ASSET13","index":"0.000003837555421617"},{"denom":"ASSET14","index":"0.000011567806926671"},{"denom":"ASSET15","index":"0.000008270512670342"},{"denom":"ASSET16","index":"0.000005766305379776"},{"denom":"ASSET17","index":"0.000004095074044376"},{"denom":"ASSET18","index":"0.000001950454261216"},{"denom":"ASSET2","index":"0.000003778308540299"},{"denom":"ASSET3","index":"0.000001105159647558"},{"denom":"ASSET4","index":"0.000010402813795010"},{"denom":"ASSET5","index":"0.000000857613272150"},{"denom":"ASSET6","index":"0.000003491459778273"},{"denom":"ASSET7","index":"0.000005347470991052"},{"denom":"ASSET8","index":"0.000006978226734264"},{"denom":"ASSET9","index":"0.000003013965111016"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000002944371933765"},{"denom":"ASSET1","index":"0.000024968433937291"},{"denom":"ASSET10","index":"0.000019851368221906"},{"denom":"ASSET11","index":"0.000024791952485266"},{"denom":"ASSET12","index":"0.000023600048189968"},{"denom":"ASSET13","index":"0.000007784111470281"},{"denom":"ASSET14","index":"0.000022766914870589"},{"denom":"ASSET15","index":"0.000017894900322998"},{"denom":"ASSET16","index":"0.000011081662183182"},{"denom":"ASSET17","index":"0.000008672317440622"},{"denom":"ASSET18","index":"0.000003599691097086"},{"denom":"ASSET2","index":"0.000007555380586873"},{"denom":"ASSET3","index":"0.000002101847815188"},{"denom":"ASSET4","index":"0.000020244169178497"},{"denom":"ASSET5","index":"0.000001637098640985"},{"denom":"ASSET6","index":"0.000006609166185649"},{"denom":"ASSET7","index":"0.000010374399402552"},{"denom":"ASSET8","index":"0.000014150620453773"},{"denom":"ASSET9","index":"0.000006009906313007"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001449310882227"},{"denom":"ASSET1","index":"0.000012082282763787"},{"denom":"ASSET10","index":"0.000008417588941675"},{"denom":"ASSET11","index":"0.000011688148164511"},{"denom":"ASSET12","index":"0.000010525234539176"},{"denom":"ASSET13","index":"0.000003621923721366"},{"denom":"ASSET14","index":"0.000010918286351091"},{"denom":"ASSET15","index":"0.000007806355476589"},{"denom":"ASSET16","index":"0.000005442630668295"},{"denom":"ASSET17","index":"0.000003865550877512"},{"denom":"ASSET18","index":"0.000001841279906781"},{"denom":"ASSET2","index":"0.000003566701565973"},{"denom":"ASSET3","index":"0.000001043265621984"},{"denom":"ASSET4","index":"0.000009818715786353"},{"denom":"ASSET5","index":"0.000000809924945764"},{"denom":"ASSET6","index":"0.000003295463332131"},{"denom":"ASSET7","index":"0.000005047413281659"},{"denom":"ASSET8","index":"0.000006586595514820"},{"denom":"ASSET9","index":"0.000002844482396421"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000002938303361264"},{"denom":"ASSET1","index":"0.000024939884544734"},{"denom":"ASSET10","index":"0.000019970621943114"},{"denom":"ASSET11","index":"0.000024800280810198"},{"denom":"ASSET12","index":"0.000023679745396670"},{"denom":"ASSET13","index":"0.000007792253675830"},{"denom":"ASSET14","index":"0.000022752532795075"},{"denom":"ASSET15","index":"0.000017976341528508"},{"denom":"ASSET16","index":"0.000011059313296089"},{"denom":"ASSET17","index":"0.000008702160495382"},{"denom":"ASSET18","index":"0.000003584018468858"},{"denom":"ASSET2","index":"0.000007557839698908"},{"denom":"ASSET3","index":"0.000002096442663552"},{"denom":"ASSET4","index":"0.000020217858094708"},{"denom":"ASSET5","index":"0.000001633684136995"},{"denom":"ASSET6","index":"0.000006589976909255"},{"denom":"ASSET7","index":"0.000010359339015905"},{"denom":"ASSET8","index":"0.000014165755580726"},{"denom":"ASSET9","index":"0.000006010291774725"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001731982701050"},{"denom":"ASSET1","index":"0.000014440617081118"},{"denom":"ASSET10","index":"0.000010060714066040"},{"denom":"ASSET11","index":"0.000013969585405988"},{"denom":"ASSET12","index":"0.000012579542501729"},{"denom":"ASSET13","index":"0.000004329188348588"},{"denom":"ASSET14","index":"0.000013049805772821"},{"denom":"ASSET15","index":"0.000009329961826155"},{"denom":"ASSET16","index":"0.000006505308583448"},{"denom":"ASSET17","index":"0.000004619645074851"},{"denom":"ASSET18","index":"0.000002200709164068"},{"denom":"ASSET2","index":"0.000004262337197306"},{"denom":"ASSET3","index":"0.000001247119753241"},{"denom":"ASSET4","index":"0.000011735066464260"},{"denom":"ASSET5","index":"0.000000967420683506"},{"denom":"ASSET6","index":"0.000003938839097420"},{"denom":"ASSET7","index":"0.000006032740100243"},{"denom":"ASSET8","index":"0.000007872299366576"},{"denom":"ASSET9","index":"0.000003400187866969"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003329715418659"},{"denom":"ASSET1","index":"0.000028238028843607"},{"denom":"ASSET10","index":"0.000022458342297172"},{"denom":"ASSET11","index":"0.000028040237741643"},{"denom":"ASSET12","index":"0.000026695793846360"},{"denom":"ASSET13","index":"0.000008804253880653"},{"denom":"ASSET14","index":"0.000025748953032298"},{"denom":"ASSET15","index":"0.000020243324641083"},{"denom":"ASSET16","index":"0.000012532507824147"},{"denom":"ASSET17","index":"0.000009809802042254"},{"denom":"ASSET18","index":"0.000004070975493464"},{"denom":"ASSET2","index":"0.000008545109234155"},{"denom":"ASSET3","index":"0.000002377197518329"},{"denom":"ASSET4","index":"0.000022894451839245"},{"denom":"ASSET5","index":"0.000001851122407848"},{"denom":"ASSET6","index":"0.000007473999475476"},{"denom":"ASSET7","index":"0.000011732969702935"},{"denom":"ASSET8","index":"0.000016005536556726"},{"denom":"ASSET9","index":"0.000006797137295338"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001649988907243"},{"denom":"ASSET1","index":"0.000013756519537767"},{"denom":"ASSET10","index":"0.000009584361794534"},{"denom":"ASSET11","index":"0.000013307506163009"},{"denom":"ASSET12","index":"0.000011983307415229"},{"denom":"ASSET13","index":"0.000004124070634826"},{"denom":"ASSET14","index":"0.000012431118612277"},{"denom":"ASSET15","index":"0.000008888300900330"},{"denom":"ASSET16","index":"0.000006196625007203"},{"denom":"ASSET17","index":"0.000004401172597026"},{"denom":"ASSET18","index":"0.000002096597926581"},{"denom":"ASSET2","index":"0.000004060355216185"},{"denom":"ASSET3","index":"0.000001187751577673"},{"denom":"ASSET4","index":"0.000011179050527108"},{"denom":"ASSET5","index":"0.000000922070303720"},{"denom":"ASSET6","index":"0.000003752597722375"},{"denom":"ASSET7","index":"0.000005747010543590"},{"denom":"ASSET8","index":"0.000007499184556200"},{"denom":"ASSET9","index":"0.000003238666751267"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003269082759145"},{"denom":"ASSET1","index":"0.000027736662456421"},{"denom":"ASSET10","index":"0.000022145815740722"},{"denom":"ASSET11","index":"0.000027564157079872"},{"denom":"ASSET12","index":"0.000026286254396013"},{"denom":"ASSET13","index":"0.000008658548128401"},{"denom":"ASSET14","index":"0.000025298253418871"},{"denom":"ASSET15","index":"0.000019946084058089"},{"denom":"ASSET16","index":"0.000012303266096103"},{"denom":"ASSET17","index":"0.000009659898104260"},{"denom":"ASSET18","index":"0.000003991565584036"},{"denom":"ASSET2","index":"0.000008399501371576"},{"denom":"ASSET3","index":"0.000002333103515211"},{"denom":"ASSET4","index":"0.000022486071398850"},{"denom":"ASSET5","index":"0.000001817550334619"},{"denom":"ASSET6","index":"0.000007334517845971"},{"denom":"ASSET7","index":"0.000011522603065826"},{"denom":"ASSET8","index":"0.000015739883934035"},{"denom":"ASSET9","index":"0.000006680430297789"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001707974867576"},{"denom":"ASSET1","index":"0.000014238090744503"},{"denom":"ASSET10","index":"0.000009920037235236"},{"denom":"ASSET11","index":"0.000013773690453356"},{"denom":"ASSET12","index":"0.000012403461252069"},{"denom":"ASSET13","index":"0.000004268385028930"},{"denom":"ASSET14","index":"0.000012866619831208"},{"denom":"ASSET15","index":"0.000009199844270355"},{"denom":"ASSET16","index":"0.000006414063379473"},{"denom":"ASSET17","index":"0.000004555220502875"},{"denom":"ASSET18","index":"0.000002169891734707"},{"denom":"ASSET2","index":"0.000004203195148489"},{"denom":"ASSET3","index":"0.000001229294888332"},{"denom":"ASSET4","index":"0.000011570893350426"},{"denom":"ASSET5","index":"0.000000954255678468"},{"denom":"ASSET6","index":"0.000003884075162326"},{"denom":"ASSET7","index":"0.000005948421376317"},{"denom":"ASSET8","index":"0.000007761941764609"},{"denom":"ASSET9","index":"0.000003352622422724"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003075387603983"},{"denom":"ASSET1","index":"0.000026047450678709"},{"denom":"ASSET10","index":"0.000020531243448578"},{"denom":"ASSET11","index":"0.000025816927992783"},{"denom":"ASSET12","index":"0.000024485469945303"},{"denom":"ASSET13","index":"0.000008098391373250"},{"denom":"ASSET14","index":"0.000023735883509134"},{"denom":"ASSET15","index":"0.000018540774078871"},{"denom":"ASSET16","index":"0.000011572711306393"},{"denom":"ASSET17","index":"0.000008997644319689"},{"denom":"ASSET18","index":"0.000003770348288081"},{"denom":"ASSET2","index":"0.000007868945206789"},{"denom":"ASSET3","index":"0.000002196489262864"},{"denom":"ASSET4","index":"0.000021122354693053"},{"denom":"ASSET5","index":"0.000001710501624761"},{"denom":"ASSET6","index":"0.000006909892735753"},{"denom":"ASSET7","index":"0.000010827333344051"},{"denom":"ASSET8","index":"0.000014723239896475"},{"denom":"ASSET9","index":"0.000006260042064096"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001779156074987"},{"denom":"ASSET1","index":"0.000014834764457923"},{"denom":"ASSET10","index":"0.000010335215703318"},{"denom":"ASSET11","index":"0.000014351450406057"},{"denom":"ASSET12","index":"0.000012923397473821"},{"denom":"ASSET13","index":"0.000004447014618532"},{"denom":"ASSET14","index":"0.000013405835956753"},{"denom":"ASSET15","index":"0.000009584853126417"},{"denom":"ASSET16","index":"0.000006682342108415"},{"denom":"ASSET17","index":"0.000004745583625211"},{"denom":"ASSET18","index":"0.000002260718988984"},{"denom":"ASSET2","index":"0.000004378720241638"},{"denom":"ASSET3","index":"0.000001280957351233"},{"denom":"ASSET4","index":"0.000012055708659691"},{"denom":"ASSET5","index":"0.000000993770740704"},{"denom":"ASSET6","index":"0.000004046879615447"},{"denom":"ASSET7","index":"0.000006197276918679"},{"denom":"ASSET8","index":"0.000008086754679418"},{"denom":"ASSET9","index":"0.000003492644479883"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003478645419875"},{"denom":"ASSET1","index":"0.000029510728520321"},{"denom":"ASSET10","index":"0.000023521700007579"},{"denom":"ASSET11","index":"0.000029317721838376"},{"denom":"ASSET12","index":"0.000027938200533330"},{"denom":"ASSET13","index":"0.000009206643656085"},{"denom":"ASSET14","index":"0.000026913511393693"},{"denom":"ASSET15","index":"0.000021192735957156"},{"denom":"ASSET16","index":"0.000013092928863665"},{"denom":"ASSET17","index":"0.000010265835619821"},{"denom":"ASSET18","index":"0.000004249633310572"},{"denom":"ASSET2","index":"0.000008933634051769"},{"denom":"ASSET3","index":"0.000002482776919113"},{"denom":"ASSET4","index":"0.000023925662277258"},{"denom":"ASSET5","index":"0.000001933519521756"},{"denom":"ASSET6","index":"0.000007806757132876"},{"denom":"ASSET7","index":"0.000012260200744601"},{"denom":"ASSET8","index":"0.000016737737824425"},{"denom":"ASSET9","index":"0.000007106044722519"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001752700098923"},{"denom":"ASSET1","index":"0.000014612940709519"},{"denom":"ASSET10","index":"0.000010180696541309"},{"denom":"ASSET11","index":"0.000014136053678762"},{"denom":"ASSET12","index":"0.000012730078503378"},{"denom":"ASSET13","index":"0.000004380628160175"},{"denom":"ASSET14","index":"0.000013205843447004"},{"denom":"ASSET15","index":"0.000009441241121853"},{"denom":"ASSET16","index":"0.000006583285198706"},{"denom":"ASSET17","index":"0.000004674614988548"},{"denom":"ASSET18","index":"0.000002226220868286"},{"denom":"ASSET2","index":"0.000004313302932304"},{"denom":"ASSET3","index":"0.000001261225935460"},{"denom":"ASSET4","index":"0.000011875048109410"},{"denom":"ASSET5","index":"0.000000979582065531"},{"denom":"ASSET6","index":"0.000003985653489996"},{"denom":"ASSET7","index":"0.000006105276080818"},{"denom":"ASSET8","index":"0.000007965696544335"},{"denom":"ASSET9","index":"0.000003440319144236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003327512121722"},{"denom":"ASSET1","index":"0.000028211822531533"},{"denom":"ASSET10","index":"0.000022399629444355"},{"denom":"ASSET11","index":"0.000028004032167971"},{"denom":"ASSET12","index":"0.000026643127370344"},{"denom":"ASSET13","index":"0.000008791339050068"},{"denom":"ASSET14","index":"0.000025722152469956"},{"denom":"ASSET15","index":"0.000020197596080044"},{"denom":"ASSET16","index":"0.000012523737733641"},{"denom":"ASSET17","index":"0.000009790102863953"},{"denom":"ASSET18","index":"0.000004069245825383"},{"denom":"ASSET2","index":"0.000008534453115749"},{"denom":"ASSET3","index":"0.000002375171252372"},{"denom":"ASSET4","index":"0.000022873545881432"},{"denom":"ASSET5","index":"0.000001850500835715"},{"denom":"ASSET6","index":"0.000007470212303630"},{"denom":"ASSET7","index":"0.000011723166108277"},{"denom":"ASSET8","index":"0.000015981595788329"},{"denom":"ASSET9","index":"0.000006788341225254"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001434713876400"},{"denom":"ASSET1","index":"0.000011974044460331"},{"denom":"ASSET10","index":"0.000008340728508476"},{"denom":"ASSET11","index":"0.000011582406348125"},{"denom":"ASSET12","index":"0.000010430757641934"},{"denom":"ASSET13","index":"0.000003588723493535"},{"denom":"ASSET14","index":"0.000010820456951604"},{"denom":"ASSET15","index":"0.000007735822117345"},{"denom":"ASSET16","index":"0.000005393748654249"},{"denom":"ASSET17","index":"0.000003829135007959"},{"denom":"ASSET18","index":"0.000001824413186071"},{"denom":"ASSET2","index":"0.000003534437022536"},{"denom":"ASSET3","index":"0.000001033381751515"},{"denom":"ASSET4","index":"0.000009730849926555"},{"denom":"ASSET5","index":"0.000000802664249770"},{"denom":"ASSET6","index":"0.000003264943470077"},{"denom":"ASSET7","index":"0.000005002110542043"},{"denom":"ASSET8","index":"0.000006526009335083"},{"denom":"ASSET9","index":"0.000002819018886872"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000002895048613815"},{"denom":"ASSET1","index":"0.000024589366099895"},{"denom":"ASSET10","index":"0.000019676065498265"},{"denom":"ASSET11","index":"0.000024447379266412"},{"denom":"ASSET12","index":"0.000023337478265694"},{"denom":"ASSET13","index":"0.000007679998629802"},{"denom":"ASSET14","index":"0.000022431328797509"},{"denom":"ASSET15","index":"0.000017714358679290"},{"denom":"ASSET16","index":"0.000010904445776568"},{"denom":"ASSET17","index":"0.000008574179211920"},{"denom":"ASSET18","index":"0.000003534399202209"},{"denom":"ASSET2","index":"0.000007450371795821"},{"denom":"ASSET3","index":"0.000002066219984895"},{"denom":"ASSET4","index":"0.000019933989143940"},{"denom":"ASSET5","index":"0.000001610899827710"},{"denom":"ASSET6","index":"0.000006497050827728"},{"denom":"ASSET7","index":"0.000010213894093182"},{"denom":"ASSET8","index":"0.000013962110633776"},{"denom":"ASSET9","index":"0.000005925048173997"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001401536005232"},{"denom":"ASSET1","index":"0.000011690786017211"},{"denom":"ASSET10","index":"0.000008143726832164"},{"denom":"ASSET11","index":"0.000011307987636928"},{"denom":"ASSET12","index":"0.000010184289165772"},{"denom":"ASSET13","index":"0.000003503840013080"},{"denom":"ASSET14","index":"0.000010564000462344"},{"denom":"ASSET15","index":"0.000007554093843178"},{"denom":"ASSET16","index":"0.000005266564812612"},{"denom":"ASSET17","index":"0.000003738458375190"},{"denom":"ASSET18","index":"0.000001781247301804"},{"denom":"ASSET2","index":"0.000003448272506265"},{"denom":"ASSET3","index":"0.000001009476373813"},{"denom":"ASSET4","index":"0.000009498956581716"},{"denom":"ASSET5","index":"0.000000781032179127"},{"denom":"ASSET6","index":"0.000003188957474460"},{"denom":"ASSET7","index":"0.000004883766432329"},{"denom":"ASSET8","index":"0.000006371740781496"},{"denom":"ASSET9","index":"0.000002750591587361"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003071913026336"},{"denom":"ASSET1","index":"0.000026115211920195"},{"denom":"ASSET10","index":"0.000021104918039272"},{"denom":"ASSET11","index":"0.000026018207650283"},{"denom":"ASSET12","index":"0.000024942011742431"},{"denom":"ASSET13","index":"0.000008182453133262"},{"denom":"ASSET14","index":"0.000023839798810024"},{"denom":"ASSET15","index":"0.000018963275072170"},{"denom":"ASSET16","index":"0.000011567273660047"},{"denom":"ASSET17","index":"0.000009164652819502"},{"denom":"ASSET18","index":"0.000003735860972186"},{"denom":"ASSET2","index":"0.000007925194415041"},{"denom":"ASSET3","index":"0.000002190810612048"},{"denom":"ASSET4","index":"0.000021165118890878"},{"denom":"ASSET5","index":"0.000001704606606646"},{"denom":"ASSET6","index":"0.000006884812645629"},{"denom":"ASSET7","index":"0.000010842612570084"},{"denom":"ASSET8","index":"0.000014874699612932"},{"denom":"ASSET9","index":"0.000006301602876980"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001534549585700"},{"denom":"ASSET1","index":"0.000012795681230217"},{"denom":"ASSET10","index":"0.000008914897664776"},{"denom":"ASSET11","index":"0.000012378406858633"},{"denom":"ASSET12","index":"0.000011146809898878"},{"denom":"ASSET13","index":"0.000003835934265229"},{"denom":"ASSET14","index":"0.000011563204872419"},{"denom":"ASSET15","index":"0.000008267660704848"},{"denom":"ASSET16","index":"0.000005764014475342"},{"denom":"ASSET17","index":"0.000004093597891939"},{"denom":"ASSET18","index":"0.000001950065161198"},{"denom":"ASSET2","index":"0.000003777014596322"},{"denom":"ASSET3","index":"0.000001104963641508"},{"denom":"ASSET4","index":"0.000010398442163960"},{"denom":"ASSET5","index":"0.000000857413092297"},{"denom":"ASSET6","index":"0.000003490330834180"},{"denom":"ASSET7","index":"0.000005345421006692"},{"denom":"ASSET8","index":"0.000006975385280099"},{"denom":"ASSET9","index":"0.000003012817696624"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003034954909236"},{"denom":"ASSET1","index":"0.000025752158165977"},{"denom":"ASSET10","index":"0.000020556858138008"},{"denom":"ASSET11","index":"0.000025591676311293"},{"denom":"ASSET12","index":"0.000024402528250789"},{"denom":"ASSET13","index":"0.000008038375291107"},{"denom":"ASSET14","index":"0.000023488313497799"},{"denom":"ASSET15","index":"0.000018516037809802"},{"denom":"ASSET16","index":"0.000011423945454084"},{"denom":"ASSET17","index":"0.000008967524527402"},{"denom":"ASSET18","index":"0.000003706330058793"},{"denom":"ASSET2","index":"0.000007798931182527"},{"denom":"ASSET3","index":"0.000002166419358500"},{"denom":"ASSET4","index":"0.000020877722621984"},{"denom":"ASSET5","index":"0.000001687498984799"},{"denom":"ASSET6","index":"0.000006810207932767"},{"denom":"ASSET7","index":"0.000010698180555138"},{"denom":"ASSET8","index":"0.000014612921845389"},{"denom":"ASSET9","index":"0.000006203015740356"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001658482037183"},{"denom":"ASSET1","index":"0.000013862588923046"},{"denom":"ASSET10","index":"0.000009655943522610"},{"denom":"ASSET11","index":"0.000013408077810815"},{"denom":"ASSET12","index":"0.000012073555821711"},{"denom":"ASSET13","index":"0.000004153457929856"},{"denom":"ASSET14","index":"0.000012528066933942"},{"denom":"ASSET15","index":"0.000008954835955871"},{"denom":"ASSET16","index":"0.000006242274956279"},{"denom":"ASSET17","index":"0.000004433900956551"},{"denom":"ASSET18","index":"0.000002112993149414"},{"denom":"ASSET2","index":"0.000004090600010079"},{"denom":"ASSET3","index":"0.000001194300475756"},{"denom":"ASSET4","index":"0.000011266073313811"},{"denom":"ASSET5","index":"0.000000928363122855"},{"denom":"ASSET6","index":"0.000003781145635794"},{"denom":"ASSET7","index":"0.000005787763844048"},{"denom":"ASSET8","index":"0.000007557456046990"},{"denom":"ASSET9","index":"0.000003263776603787"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003188277912377"},{"denom":"ASSET1","index":"0.000027072180177666"},{"denom":"ASSET10","index":"0.000021525590492702"},{"denom":"ASSET11","index":"0.000026879695640981"},{"denom":"ASSET12","index":"0.000025588321740665"},{"denom":"ASSET13","index":"0.000008437670891103"},{"denom":"ASSET14","index":"0.000024686413843557"},{"denom":"ASSET15","index":"0.000019403734038796"},{"denom":"ASSET16","index":"0.000012012351193227"},{"denom":"ASSET17","index":"0.000009402991763462"},{"denom":"ASSET18","index":"0.000003903246578743"},{"denom":"ASSET2","index":"0.000008191237466303"},{"denom":"ASSET3","index":"0.000002276140738265"},{"denom":"ASSET4","index":"0.000021950324608304"},{"denom":"ASSET5","index":"0.000001774065663090"},{"denom":"ASSET6","index":"0.000007165524818145"},{"denom":"ASSET7","index":"0.000011244820309610"},{"denom":"ASSET8","index":"0.000015343724796373"},{"denom":"ASSET9","index":"0.000006516357987660"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001453411320498"},{"denom":"ASSET1","index":"0.000012118137400313"},{"denom":"ASSET10","index":"0.000008442891188019"},{"denom":"ASSET11","index":"0.000011723343510399"},{"denom":"ASSET12","index":"0.000010556870017106"},{"denom":"ASSET13","index":"0.000003632917795231"},{"denom":"ASSET14","index":"0.000010951256903010"},{"denom":"ASSET15","index":"0.000007829943148627"},{"denom":"ASSET16","index":"0.000005459144789091"},{"denom":"ASSET17","index":"0.000003877120201363"},{"denom":"ASSET18","index":"0.000001846984198382"},{"denom":"ASSET2","index":"0.000003577158245830"},{"denom":"ASSET3","index":"0.000001046407310278"},{"denom":"ASSET4","index":"0.000009848276035312"},{"denom":"ASSET5","index":"0.000000811973000390"},{"denom":"ASSET6","index":"0.000003305686571013"},{"denom":"ASSET7","index":"0.000005062722883136"},{"denom":"ASSET8","index":"0.000006606082089893"},{"denom":"ASSET9","index":"0.000002853098111648"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000002979919393708"},{"denom":"ASSET1","index":"0.000025298333716476"},{"denom":"ASSET10","index":"0.000020286143685892"},{"denom":"ASSET11","index":"0.000025164674259360"},{"denom":"ASSET12","index":"0.000024041723171534"},{"denom":"ASSET13","index":"0.000007907785176595"},{"denom":"ASSET14","index":"0.000023082402053339"},{"denom":"ASSET15","index":"0.000018255332392862"},{"denom":"ASSET16","index":"0.000011216675450010"},{"denom":"ASSET17","index":"0.000008835128154455"},{"denom":"ASSET18","index":"0.000003633337151635"},{"denom":"ASSET2","index":"0.000007668586747858"},{"denom":"ASSET3","index":"0.000002126085354033"},{"denom":"ASSET4","index":"0.000020508686269066"},{"denom":"ASSET5","index":"0.000001656307666438"},{"denom":"ASSET6","index":"0.000006683025235204"},{"denom":"ASSET7","index":"0.000010507859389263"},{"denom":"ASSET8","index":"0.000014375637436113"},{"denom":"ASSET9","index":"0.000006098257618497"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001779729226299"},{"denom":"ASSET1","index":"0.000014840802182142"},{"denom":"ASSET10","index":"0.000010337989986643"},{"denom":"ASSET11","index":"0.000014356968690293"},{"denom":"ASSET12","index":"0.000012927350131463"},{"denom":"ASSET13","index":"0.000004449323065747"},{"denom":"ASSET14","index":"0.000013411183623312"},{"denom":"ASSET15","index":"0.000009589142170113"},{"denom":"ASSET16","index":"0.000006683709894939"},{"denom":"ASSET17","index":"0.000004745944603463"},{"denom":"ASSET18","index":"0.000002261131394068"},{"denom":"ASSET2","index":"0.000004378814667437"},{"denom":"ASSET3","index":"0.000001281307789972"},{"denom":"ASSET4","index":"0.000012059367435030"},{"denom":"ASSET5","index":"0.000000994411548574"},{"denom":"ASSET6","index":"0.000004048154592606"},{"denom":"ASSET7","index":"0.000006199876403090"},{"denom":"ASSET8","index":"0.000008089015212973"},{"denom":"ASSET9","index":"0.000003493812702447"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003433377044021"},{"denom":"ASSET1","index":"0.000029119719093870"},{"denom":"ASSET10","index":"0.000023168779363922"},{"denom":"ASSET11","index":"0.000028918871222836"},{"denom":"ASSET12","index":"0.000027536680421684"},{"denom":"ASSET13","index":"0.000009079853140421"},{"denom":"ASSET14","index":"0.000026553415276013"},{"denom":"ASSET15","index":"0.000020883272198610"},{"denom":"ASSET16","index":"0.000012920460029656"},{"denom":"ASSET17","index":"0.000010116347697920"},{"denom":"ASSET18","index":"0.000004196183907349"},{"denom":"ASSET2","index":"0.000008810148159861"},{"denom":"ASSET3","index":"0.000002451192479374"},{"denom":"ASSET4","index":"0.000023608026429735"},{"denom":"ASSET5","index":"0.000001908186346512"},{"denom":"ASSET6","index":"0.000007706415634871"},{"denom":"ASSET7","index":"0.000012098308533034"},{"denom":"ASSET8","index":"0.000016505861275643"},{"denom":"ASSET9","index":"0.000007009790471677"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001595670533734"},{"denom":"ASSET1","index":"0.000013304245337308"},{"denom":"ASSET10","index":"0.000009268754359880"},{"denom":"ASSET11","index":"0.000012870227612725"},{"denom":"ASSET12","index":"0.000011589729681675"},{"denom":"ASSET13","index":"0.000003988302473145"},{"denom":"ASSET14","index":"0.000012022582258004"},{"denom":"ASSET15","index":"0.000008595881243245"},{"denom":"ASSET16","index":"0.000005992940044003"},{"denom":"ASSET17","index":"0.000004256286571545"},{"denom":"ASSET18","index":"0.000002027357961809"},{"denom":"ASSET2","index":"0.000003927132189815"},{"denom":"ASSET3","index":"0.000001148836178358"},{"denom":"ASSET4","index":"0.000010811993222188"},{"denom":"ASSET5","index":"0.000000891338414244"},{"denom":"ASSET6","index":"0.000003628854236813"},{"denom":"ASSET7","index":"0.000005557757171166"},{"denom":"ASSET8","index":"0.000007252465306483"},{"denom":"ASSET9","index":"0.000003132501080646"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003118409098775"},{"denom":"ASSET1","index":"0.000026454243753489"},{"denom":"ASSET10","index":"0.000021084585905412"},{"denom":"ASSET11","index":"0.000026280950742513"},{"denom":"ASSET12","index":"0.000025043390497745"},{"denom":"ASSET13","index":"0.000008253298424938"},{"denom":"ASSET14","index":"0.000024125697910719"},{"denom":"ASSET15","index":"0.000018997425080839"},{"denom":"ASSET16","index":"0.000011737294217995"},{"denom":"ASSET17","index":"0.000009202973625129"},{"denom":"ASSET18","index":"0.000003809493270778"},{"denom":"ASSET2","index":"0.000008008868325931"},{"denom":"ASSET3","index":"0.000002225819587877"},{"denom":"ASSET4","index":"0.000021447702379813"},{"denom":"ASSET5","index":"0.000001733713847172"},{"denom":"ASSET6","index":"0.000006998355968525"},{"denom":"ASSET7","index":"0.000010990481127196"},{"denom":"ASSET8","index":"0.000015003824321723"},{"denom":"ASSET9","index":"0.000006370091157596"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001536288093705"},{"denom":"ASSET1","index":"0.000012808796131863"},{"denom":"ASSET10","index":"0.000008924322337818"},{"denom":"ASSET11","index":"0.000012391382492026"},{"denom":"ASSET12","index":"0.000011158327625467"},{"denom":"ASSET13","index":"0.000003840018305497"},{"denom":"ASSET14","index":"0.000011575273312793"},{"denom":"ASSET15","index":"0.000008276208110044"},{"denom":"ASSET16","index":"0.000005770322413488"},{"denom":"ASSET17","index":"0.000004097860139074"},{"denom":"ASSET18","index":"0.000001951829923499"},{"denom":"ASSET2","index":"0.000003781056289108"},{"denom":"ASSET3","index":"0.000001105771783560"},{"denom":"ASSET4","index":"0.000010409603607822"},{"denom":"ASSET5","index":"0.000000858224905226"},{"denom":"ASSET6","index":"0.000003494201399847"},{"denom":"ASSET7","index":"0.000005351036963607"},{"denom":"ASSET8","index":"0.000006982787369562"},{"denom":"ASSET9","index":"0.000003015953933577"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003103831608428"},{"denom":"ASSET1","index":"0.000026343132935309"},{"denom":"ASSET10","index":"0.000021085436521682"},{"denom":"ASSET11","index":"0.000026194005406126"},{"denom":"ASSET12","index":"0.000025005394550642"},{"denom":"ASSET13","index":"0.000008229918727938"},{"denom":"ASSET14","index":"0.000024032248358707"},{"denom":"ASSET15","index":"0.000018981699828973"},{"denom":"ASSET16","index":"0.000011682673521897"},{"denom":"ASSET17","index":"0.000009189132473525"},{"denom":"ASSET18","index":"0.000003786361913516"},{"denom":"ASSET2","index":"0.000007982150766688"},{"denom":"ASSET3","index":"0.000002214601198569"},{"denom":"ASSET4","index":"0.000021356131094847"},{"denom":"ASSET5","index":"0.000001725369734459"},{"denom":"ASSET6","index":"0.000006962131899100"},{"denom":"ASSET7","index":"0.000010942547729288"},{"denom":"ASSET8","index":"0.000014960973970884"},{"denom":"ASSET9","index":"0.000006348281537724"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001156201861882"},{"denom":"ASSET1","index":"0.000009641528249827"},{"denom":"ASSET10","index":"0.000006717693720376"},{"denom":"ASSET11","index":"0.000009327193051790"},{"denom":"ASSET12","index":"0.000008399128436016"},{"denom":"ASSET13","index":"0.000002890504654704"},{"denom":"ASSET14","index":"0.000008712888981039"},{"denom":"ASSET15","index":"0.000006229813312455"},{"denom":"ASSET16","index":"0.000004343227471224"},{"denom":"ASSET17","index":"0.000003084737373052"},{"denom":"ASSET18","index":"0.000001469387753892"},{"denom":"ASSET2","index":"0.000002846256372714"},{"denom":"ASSET3","index":"0.000000832672215639"},{"denom":"ASSET4","index":"0.000007835393830396"},{"denom":"ASSET5","index":"0.000000645909986459"},{"denom":"ASSET6","index":"0.000002630186839877"},{"denom":"ASSET7","index":"0.000004027742967162"},{"denom":"ASSET8","index":"0.000005256351108664"},{"denom":"ASSET9","index":"0.000002269879400812"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000002648545180722"},{"denom":"ASSET1","index":"0.000022528915692996"},{"denom":"ASSET10","index":"0.000018297756458480"},{"denom":"ASSET11","index":"0.000022469822082599"},{"denom":"ASSET12","index":"0.000021584227648624"},{"denom":"ASSET13","index":"0.000007070243338634"},{"denom":"ASSET14","index":"0.000020574684608302"},{"denom":"ASSET15","index":"0.000016423497937791"},{"denom":"ASSET16","index":"0.000009972839292196"},{"denom":"ASSET17","index":"0.000007932645550822"},{"denom":"ASSET18","index":"0.000003216131666673"},{"denom":"ASSET2","index":"0.000006846442901912"},{"denom":"ASSET3","index":"0.000001888119307859"},{"denom":"ASSET4","index":"0.000018258669735553"},{"denom":"ASSET5","index":"0.000001471345302008"},{"denom":"ASSET6","index":"0.000005932348598922"},{"denom":"ASSET7","index":"0.000009352074075404"},{"denom":"ASSET8","index":"0.000012853047191550"},{"denom":"ASSET9","index":"0.000005442948627063"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001638829976996"},{"denom":"ASSET1","index":"0.000013663699511091"},{"denom":"ASSET10","index":"0.000009519748943981"},{"denom":"ASSET11","index":"0.000013218199388741"},{"denom":"ASSET12","index":"0.000011902774883924"},{"denom":"ASSET13","index":"0.000004095984811686"},{"denom":"ASSET14","index":"0.000012347548252404"},{"denom":"ASSET15","index":"0.000008827879259679"},{"denom":"ASSET16","index":"0.000006154878525580"},{"denom":"ASSET17","index":"0.000004371424528441"},{"denom":"ASSET18","index":"0.000002082149837736"},{"denom":"ASSET2","index":"0.000004033483978861"},{"denom":"ASSET3","index":"0.000001179521531115"},{"denom":"ASSET4","index":"0.000011104072380722"},{"denom":"ASSET5","index":"0.000000915709876282"},{"denom":"ASSET6","index":"0.000003726793845693"},{"denom":"ASSET7","index":"0.000005707924895490"},{"denom":"ASSET8","index":"0.000007448500414296"},{"denom":"ASSET9","index":"0.000003217339382778"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003133427860009"},{"denom":"ASSET1","index":"0.000026571363581284"},{"denom":"ASSET10","index":"0.000021118003104150"},{"denom":"ASSET11","index":"0.000026381510155653"},{"denom":"ASSET12","index":"0.000025108485590780"},{"denom":"ASSET13","index":"0.000008282355352591"},{"denom":"ASSET14","index":"0.000024227637307493"},{"denom":"ASSET15","index":"0.000019037535386694"},{"denom":"ASSET16","index":"0.000011793447009555"},{"denom":"ASSET17","index":"0.000009226841180516"},{"denom":"ASSET18","index":"0.000003831770888939"},{"denom":"ASSET2","index":"0.000008040278303534"},{"denom":"ASSET3","index":"0.000002236402387063"},{"denom":"ASSET4","index":"0.000021543810534784"},{"denom":"ASSET5","index":"0.000001742508705183"},{"denom":"ASSET6","index":"0.000007033989161296"},{"denom":"ASSET7","index":"0.000011040340871930"},{"denom":"ASSET8","index":"0.000015056795520064"},{"denom":"ASSET9","index":"0.000006395464292965"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001556422065682"},{"denom":"ASSET1","index":"0.000012975233747354"},{"denom":"ASSET10","index":"0.000009039925804131"},{"denom":"ASSET11","index":"0.000012551842294036"},{"denom":"ASSET12","index":"0.000011303196313064"},{"denom":"ASSET13","index":"0.000003889859143149"},{"denom":"ASSET14","index":"0.000011725391745328"},{"denom":"ASSET15","index":"0.000008383310245172"},{"denom":"ASSET16","index":"0.000005844954893688"},{"denom":"ASSET17","index":"0.000004150990406731"},{"denom":"ASSET18","index":"0.000001977421476890"},{"denom":"ASSET2","index":"0.000003830058090421"},{"denom":"ASSET3","index":"0.000001120273054448"},{"denom":"ASSET4","index":"0.000010544520290781"},{"denom":"ASSET5","index":"0.000000869507306673"},{"denom":"ASSET6","index":"0.000003539424974160"},{"denom":"ASSET7","index":"0.000005420766093000"},{"denom":"ASSET8","index":"0.000007073268516732"},{"denom":"ASSET9","index":"0.000003055036447059"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003102345998156"},{"denom":"ASSET1","index":"0.000026324295521459"},{"denom":"ASSET10","index":"0.000021034709957123"},{"denom":"ASSET11","index":"0.000026165624152899"},{"denom":"ASSET12","index":"0.000024960753498443"},{"denom":"ASSET13","index":"0.000008219480216908"},{"denom":"ASSET14","index":"0.000024012126304297"},{"denom":"ASSET15","index":"0.000018942125813395"},{"denom":"ASSET16","index":"0.000011676379885795"},{"denom":"ASSET17","index":"0.000009172744202097"},{"denom":"ASSET18","index":"0.000003786686743681"},{"denom":"ASSET2","index":"0.000007973892542195"},{"denom":"ASSET3","index":"0.000002213622154517"},{"denom":"ASSET4","index":"0.000021341514997764"},{"denom":"ASSET5","index":"0.000001724677267981"},{"denom":"ASSET6","index":"0.000006959760131783"},{"denom":"ASSET7","index":"0.000010935767858794"},{"denom":"ASSET8","index":"0.000014942141973689"},{"denom":"ASSET9","index":"0.000006341977499472"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001602535700795"},{"denom":"ASSET1","index":"0.000013360208994045"},{"denom":"ASSET10","index":"0.000009307956057468"},{"denom":"ASSET11","index":"0.000012924500245282"},{"denom":"ASSET12","index":"0.000011638378499862"},{"denom":"ASSET13","index":"0.000004005127453862"},{"denom":"ASSET14","index":"0.000012073279383206"},{"denom":"ASSET15","index":"0.000008632311279566"},{"denom":"ASSET16","index":"0.000006018597363935"},{"denom":"ASSET17","index":"0.000004274146638048"},{"denom":"ASSET18","index":"0.000002036090141777"},{"denom":"ASSET2","index":"0.000003943729682095"},{"denom":"ASSET3","index":"0.000001153631816872"},{"denom":"ASSET4","index":"0.000010857441929150"},{"denom":"ASSET5","index":"0.000000895384171592"},{"denom":"ASSET6","index":"0.000003644280900498"},{"denom":"ASSET7","index":"0.000005581542172809"},{"denom":"ASSET8","index":"0.000007283176031543"},{"denom":"ASSET9","index":"0.000003145827937606"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003144114236048"},{"denom":"ASSET1","index":"0.000026672683120621"},{"denom":"ASSET10","index":"0.000021269722635007"},{"denom":"ASSET11","index":"0.000026500587720899"},{"denom":"ASSET12","index":"0.000025258297912053"},{"denom":"ASSET13","index":"0.000008323039503604"},{"denom":"ASSET14","index":"0.000024326015412045"},{"denom":"ASSET15","index":"0.000019162234595686"},{"denom":"ASSET16","index":"0.000011833945147558"},{"denom":"ASSET17","index":"0.000009281867675434"},{"denom":"ASSET18","index":"0.000003840349431676"},{"denom":"ASSET2","index":"0.000008076055447193"},{"denom":"ASSET3","index":"0.000002244145529651"},{"denom":"ASSET4","index":"0.000021624555086447"},{"denom":"ASSET5","index":"0.000001748086313596"},{"denom":"ASSET6","index":"0.000007055400333314"},{"denom":"ASSET7","index":"0.000011081362186058"},{"denom":"ASSET8","index":"0.000015130336137492"},{"denom":"ASSET9","index":"0.000006423586371910"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001633811359009"},{"denom":"ASSET1","index":"0.000013620164108551"},{"denom":"ASSET10","index":"0.000009487838038290"},{"denom":"ASSET11","index":"0.000013174776703502"},{"denom":"ASSET12","index":"0.000011864685946211"},{"denom":"ASSET13","index":"0.000004082355776036"},{"denom":"ASSET14","index":"0.000012307900729772"},{"denom":"ASSET15","index":"0.000008799117026580"},{"denom":"ASSET16","index":"0.000006135483082238"},{"denom":"ASSET17","index":"0.000004356106083529"},{"denom":"ASSET18","index":"0.000002074853521082"},{"denom":"ASSET2","index":"0.000004019349752882"},{"denom":"ASSET3","index":"0.000001175388225032"},{"denom":"ASSET4","index":"0.000011067333860098"},{"denom":"ASSET5","index":"0.000000912501024979"},{"denom":"ASSET6","index":"0.000003715182744556"},{"denom":"ASSET7","index":"0.000005690095677188"},{"denom":"ASSET8","index":"0.000007423847624648"},{"denom":"ASSET9","index":"0.000003206789316354"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003109600829404"},{"denom":"ASSET1","index":"0.000026362702045617"},{"denom":"ASSET10","index":"0.000020937844947102"},{"denom":"ASSET11","index":"0.000026169598808926"},{"denom":"ASSET12","index":"0.000024901798461360"},{"denom":"ASSET13","index":"0.000008215149609138"},{"denom":"ASSET14","index":"0.000024035954930107"},{"denom":"ASSET15","index":"0.000018878331344314"},{"denom":"ASSET16","index":"0.000011701775976010"},{"denom":"ASSET17","index":"0.000009149505282332"},{"denom":"ASSET18","index":"0.000003801954966508"},{"denom":"ASSET2","index":"0.000007974718303805"},{"denom":"ASSET3","index":"0.000002219037761573"},{"denom":"ASSET4","index":"0.000021373555319687"},{"denom":"ASSET5","index":"0.000001728657323000"},{"denom":"ASSET6","index":"0.000006980294033305"},{"denom":"ASSET7","index":"0.000010954522542925"},{"denom":"ASSET8","index":"0.000014935013269095"},{"denom":"ASSET9","index":"0.000006344057182602"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001356454583190"},{"denom":"ASSET1","index":"0.000011307707773056"},{"denom":"ASSET10","index":"0.000007878355411964"},{"denom":"ASSET11","index":"0.000010938987301217"},{"denom":"ASSET12","index":"0.000009850463994830"},{"denom":"ASSET13","index":"0.000003389876593037"},{"denom":"ASSET14","index":"0.000010218764511690"},{"denom":"ASSET15","index":"0.000007305956775156"},{"denom":"ASSET16","index":"0.000005094053899100"},{"denom":"ASSET17","index":"0.000003617492191826"},{"denom":"ASSET18","index":"0.000001723075280133"},{"denom":"ASSET2","index":"0.000003337802175602"},{"denom":"ASSET3","index":"0.000000976395326909"},{"denom":"ASSET4","index":"0.000009189454857387"},{"denom":"ASSET5","index":"0.000000758018737665"},{"denom":"ASSET6","index":"0.000003084569323074"},{"denom":"ASSET7","index":"0.000004724073562323"},{"denom":"ASSET8","index":"0.000006164519141376"},{"denom":"ASSET9","index":"0.000002662514568862"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000002920257070141"},{"denom":"ASSET1","index":"0.000024811653868653"},{"denom":"ASSET10","index":"0.000020012294768332"},{"denom":"ASSET11","index":"0.000024710629923001"},{"denom":"ASSET12","index":"0.000023666550441425"},{"denom":"ASSET13","index":"0.000007769918885884"},{"denom":"ASSET14","index":"0.000022647790193256"},{"denom":"ASSET15","index":"0.000017987461600930"},{"denom":"ASSET16","index":"0.000010993196459757"},{"denom":"ASSET17","index":"0.000008697266331114"},{"denom":"ASSET18","index":"0.000003553540715950"},{"denom":"ASSET2","index":"0.000007529733395993"},{"denom":"ASSET3","index":"0.000002082581454906"},{"denom":"ASSET4","index":"0.000020111524804667"},{"denom":"ASSET5","index":"0.000001623122955496"},{"denom":"ASSET6","index":"0.000006544727800067"},{"denom":"ASSET7","index":"0.000010303065547743"},{"denom":"ASSET8","index":"0.000014124873274804"},{"denom":"ASSET9","index":"0.000005987532811110"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001730803097805"},{"denom":"ASSET1","index":"0.000014429128492036"},{"denom":"ASSET10","index":"0.000010053081326419"},{"denom":"ASSET11","index":"0.000013956042311970"},{"denom":"ASSET12","index":"0.000012568515161896"},{"denom":"ASSET13","index":"0.000004324123072683"},{"denom":"ASSET14","index":"0.000013038716670133"},{"denom":"ASSET15","index":"0.000009320374681681"},{"denom":"ASSET16","index":"0.000006499165632259"},{"denom":"ASSET17","index":"0.000004615474927481"},{"denom":"ASSET18","index":"0.000002198119934213"},{"denom":"ASSET2","index":"0.000004257775620601"},{"denom":"ASSET3","index":"0.000001243293558590"},{"denom":"ASSET4","index":"0.000011726190987631"},{"denom":"ASSET5","index":"0.000000966365062941"},{"denom":"ASSET6","index":"0.000003934692375677"},{"denom":"ASSET7","index":"0.000006026079452192"},{"denom":"ASSET8","index":"0.000007863615407695"},{"denom":"ASSET9","index":"0.000003395258743528"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003241945367060"},{"denom":"ASSET1","index":"0.000027480716546724"},{"denom":"ASSET10","index":"0.000021780901079221"},{"denom":"ASSET11","index":"0.000027265989011084"},{"denom":"ASSET12","index":"0.000025921947969478"},{"denom":"ASSET13","index":"0.000008556984130745"},{"denom":"ASSET14","index":"0.000025051754134356"},{"denom":"ASSET15","index":"0.000019643848931612"},{"denom":"ASSET16","index":"0.000012200322352703"},{"denom":"ASSET17","index":"0.000009524928673174"},{"denom":"ASSET18","index":"0.000003966981346299"},{"denom":"ASSET2","index":"0.000008309018225650"},{"denom":"ASSET3","index":"0.000002312540225621"},{"denom":"ASSET4","index":"0.000022282443818183"},{"denom":"ASSET5","index":"0.000001802193647755"},{"denom":"ASSET6","index":"0.000007278646216530"},{"denom":"ASSET7","index":"0.000011418356902196"},{"denom":"ASSET8","index":"0.000015557459098515"},{"denom":"ASSET9","index":"0.000006608754258977"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001631665384825"},{"denom":"ASSET1","index":"0.000013602742609312"},{"denom":"ASSET10","index":"0.000009477179623123"},{"denom":"ASSET11","index":"0.000013159027954757"},{"denom":"ASSET12","index":"0.000011849393704263"},{"denom":"ASSET13","index":"0.000004077627053980"},{"denom":"ASSET14","index":"0.000012292493795584"},{"denom":"ASSET15","index":"0.000008788868801652"},{"denom":"ASSET16","index":"0.000006127810000788"},{"denom":"ASSET17","index":"0.000004351722256101"},{"denom":"ASSET18","index":"0.000002072921786447"},{"denom":"ASSET2","index":"0.000004015556167401"},{"denom":"ASSET3","index":"0.000001174430339134"},{"denom":"ASSET4","index":"0.000011054148880171"},{"denom":"ASSET5","index":"0.000000911397275215"},{"denom":"ASSET6","index":"0.000003710118240373"},{"denom":"ASSET7","index":"0.000005682866219766"},{"denom":"ASSET8","index":"0.000007415319974879"},{"denom":"ASSET9","index":"0.000003202489009539"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003079719434352"},{"denom":"ASSET1","index":"0.000026105925494605"},{"denom":"ASSET10","index":"0.000020711970439773"},{"denom":"ASSET11","index":"0.000025910008103106"},{"denom":"ASSET12","index":"0.000024641613628664"},{"denom":"ASSET13","index":"0.000008133110770201"},{"denom":"ASSET14","index":"0.000023800542954419"},{"denom":"ASSET15","index":"0.000018678884312278"},{"denom":"ASSET16","index":"0.000011589749383737"},{"denom":"ASSET17","index":"0.000009055208366452"},{"denom":"ASSET18","index":"0.000003767697278786"},{"denom":"ASSET2","index":"0.000007896757003962"},{"denom":"ASSET3","index":"0.000002198611212202"},{"denom":"ASSET4","index":"0.000021166859181475"},{"denom":"ASSET5","index":"0.000001712166144109"},{"denom":"ASSET6","index":"0.000006913910929446"},{"denom":"ASSET7","index":"0.000010848237821893"},{"denom":"ASSET8","index":"0.000014785764472138"},{"denom":"ASSET9","index":"0.000006281127943464"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001520990142264"},{"denom":"ASSET1","index":"0.000012680102108631"},{"denom":"ASSET10","index":"0.000008834326429376"},{"denom":"ASSET11","index":"0.000012266893306329"},{"denom":"ASSET12","index":"0.000011046354389007"},{"denom":"ASSET13","index":"0.000003801591675587"},{"denom":"ASSET14","index":"0.000011458856247250"},{"denom":"ASSET15","index":"0.000008193128168148"},{"denom":"ASSET16","index":"0.000005712107994187"},{"denom":"ASSET17","index":"0.000004056798480773"},{"denom":"ASSET18","index":"0.000001932431584420"},{"denom":"ASSET2","index":"0.000003743268790745"},{"denom":"ASSET3","index":"0.000001095056346905"},{"denom":"ASSET4","index":"0.000010304770071444"},{"denom":"ASSET5","index":"0.000000849746758541"},{"denom":"ASSET6","index":"0.000003459077279153"},{"denom":"ASSET7","index":"0.000005297485303768"},{"denom":"ASSET8","index":"0.000006912499005837"},{"denom":"ASSET9","index":"0.000002985778231863"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003063170165442"},{"denom":"ASSET1","index":"0.000025996358951928"},{"denom":"ASSET10","index":"0.000020799618544072"},{"denom":"ASSET11","index":"0.000025846936295403"},{"denom":"ASSET12","index":"0.000024670295822131"},{"denom":"ASSET13","index":"0.000008120644896033"},{"denom":"ASSET14","index":"0.000023715222729701"},{"denom":"ASSET15","index":"0.000018725986369791"},{"denom":"ASSET16","index":"0.000011529047312284"},{"denom":"ASSET17","index":"0.000009065966880203"},{"denom":"ASSET18","index":"0.000003737409049681"},{"denom":"ASSET2","index":"0.000007876841198043"},{"denom":"ASSET3","index":"0.000002185992003768"},{"denom":"ASSET4","index":"0.000021074917159843"},{"denom":"ASSET5","index":"0.000001702800306431"},{"denom":"ASSET6","index":"0.000006871093729972"},{"denom":"ASSET7","index":"0.000010798830402478"},{"denom":"ASSET8","index":"0.000014762015379742"},{"denom":"ASSET9","index":"0.000006264517424621"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001519669987195"},{"denom":"ASSET1","index":"0.000012676623405048"},{"denom":"ASSET10","index":"0.000008831600766261"},{"denom":"ASSET11","index":"0.000012262448940742"},{"denom":"ASSET12","index":"0.000011042591812037"},{"denom":"ASSET13","index":"0.000003799690110356"},{"denom":"ASSET14","index":"0.000011454705706870"},{"denom":"ASSET15","index":"0.000008189733375059"},{"denom":"ASSET16","index":"0.000005709838012905"},{"denom":"ASSET17","index":"0.000004055200725152"},{"denom":"ASSET18","index":"0.000001931783882027"},{"denom":"ASSET2","index":"0.000003741994165079"},{"denom":"ASSET3","index":"0.000001094162390780"},{"denom":"ASSET4","index":"0.000010301817086076"},{"denom":"ASSET5","index":"0.000000848954623355"},{"denom":"ASSET6","index":"0.000003457635577645"},{"denom":"ASSET7","index":"0.000005295663548598"},{"denom":"ASSET8","index":"0.000006910119731604"},{"denom":"ASSET9","index":"0.000002984734883325"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003051401969864"},{"denom":"ASSET1","index":"0.000025903543471827"},{"denom":"ASSET10","index":"0.000020717104247015"},{"denom":"ASSET11","index":"0.000025751820078700"},{"denom":"ASSET12","index":"0.000024575704795191"},{"denom":"ASSET13","index":"0.000008089460542782"},{"denom":"ASSET14","index":"0.000023629519286555"},{"denom":"ASSET15","index":"0.000018652475785738"},{"denom":"ASSET16","index":"0.000011487598582804"},{"denom":"ASSET17","index":"0.000009031027466449"},{"denom":"ASSET18","index":"0.000003724432134289"},{"denom":"ASSET2","index":"0.000007847588407204"},{"denom":"ASSET3","index":"0.000002177732310384"},{"denom":"ASSET4","index":"0.000021000151540181"},{"denom":"ASSET5","index":"0.000001696165098739"},{"denom":"ASSET6","index":"0.000006846477479182"},{"denom":"ASSET7","index":"0.000010760324594985"},{"denom":"ASSET8","index":"0.000014706911787677"},{"denom":"ASSET9","index":"0.000006241583848480"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001392192847149"},{"denom":"ASSET1","index":"0.000011611450847386"},{"denom":"ASSET10","index":"0.000008088781067478"},{"denom":"ASSET11","index":"0.000011231761889073"},{"denom":"ASSET12","index":"0.000010115195100551"},{"denom":"ASSET13","index":"0.000003480482117873"},{"denom":"ASSET14","index":"0.000010492071548062"},{"denom":"ASSET15","index":"0.000007502372565194"},{"denom":"ASSET16","index":"0.000005229863836918"},{"denom":"ASSET17","index":"0.000003713920514466"},{"denom":"ASSET18","index":"0.000001769069294661"},{"denom":"ASSET2","index":"0.000003427044412629"},{"denom":"ASSET3","index":"0.000001002660101028"},{"denom":"ASSET4","index":"0.000009435973741790"},{"denom":"ASSET5","index":"0.000000777659236842"},{"denom":"ASSET6","index":"0.000003166887163415"},{"denom":"ASSET7","index":"0.000004850174878604"},{"denom":"ASSET8","index":"0.000006329555560626"},{"denom":"ASSET9","index":"0.000002733760499857"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000002834261839987"},{"denom":"ASSET1","index":"0.000024063735726127"},{"denom":"ASSET10","index":"0.000019278012414561"},{"denom":"ASSET11","index":"0.000023930766794440"},{"denom":"ASSET12","index":"0.000022855511266190"},{"denom":"ASSET13","index":"0.000007519422832827"},{"denom":"ASSET14","index":"0.000021953268691937"},{"denom":"ASSET15","index":"0.000017352048046781"},{"denom":"ASSET16","index":"0.000010669562284438"},{"denom":"ASSET17","index":"0.000008398158415340"},{"denom":"ASSET18","index":"0.000003456710779118"},{"denom":"ASSET2","index":"0.000007292324829772"},{"denom":"ASSET3","index":"0.000002022818722752"},{"denom":"ASSET4","index":"0.000019507505991506"},{"denom":"ASSET5","index":"0.000001575196067099"},{"denom":"ASSET6","index":"0.000006357416996111"},{"denom":"ASSET7","index":"0.000009994574317511"},{"denom":"ASSET8","index":"0.000013669954492341"},{"denom":"ASSET9","index":"0.000005799591528398"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001553840185331"},{"denom":"ASSET1","index":"0.000012958259817171"},{"denom":"ASSET10","index":"0.000009028099224953"},{"denom":"ASSET11","index":"0.000012533831248030"},{"denom":"ASSET12","index":"0.000011286922457332"},{"denom":"ASSET13","index":"0.000003884600463327"},{"denom":"ASSET14","index":"0.000011708953124953"},{"denom":"ASSET15","index":"0.000008371074208317"},{"denom":"ASSET16","index":"0.000005836492301072"},{"denom":"ASSET17","index":"0.000004143573827548"},{"denom":"ASSET18","index":"0.000001973472951431"},{"denom":"ASSET2","index":"0.000003824652925312"},{"denom":"ASSET3","index":"0.000001117422108587"},{"denom":"ASSET4","index":"0.000010529185576831"},{"denom":"ASSET5","index":"0.000000868040350447"},{"denom":"ASSET6","index":"0.000003534506841323"},{"denom":"ASSET7","index":"0.000005412063731931"},{"denom":"ASSET8","index":"0.000007064217879605"},{"denom":"ASSET9","index":"0.000003050130734168"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000002875427361068"},{"denom":"ASSET1","index":"0.000024372739255487"},{"denom":"ASSET10","index":"0.000019284464921318"},{"denom":"ASSET11","index":"0.000024174413552556"},{"denom":"ASSET12","index":"0.000022964657814992"},{"denom":"ASSET13","index":"0.000007586106071195"},{"denom":"ASSET14","index":"0.000022214775035212"},{"denom":"ASSET15","index":"0.000017399266119679"},{"denom":"ASSET16","index":"0.000010822432031544"},{"denom":"ASSET17","index":"0.000008437405253940"},{"denom":"ASSET18","index":"0.000003520101477575"},{"denom":"ASSET2","index":"0.000007366931162610"},{"denom":"ASSET3","index":"0.000002051556015935"},{"denom":"ASSET4","index":"0.000019761188522524"},{"denom":"ASSET5","index":"0.000001598363223465"},{"denom":"ASSET6","index":"0.000006458982880806"},{"denom":"ASSET7","index":"0.000010127316932433"},{"denom":"ASSET8","index":"0.000013792105044122"},{"denom":"ASSET9","index":"0.000005859963066840"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001468329025254"},{"denom":"ASSET1","index":"0.000012248466172689"},{"denom":"ASSET10","index":"0.000008533242661533"},{"denom":"ASSET11","index":"0.000011849890220686"},{"denom":"ASSET12","index":"0.000010670683647662"},{"denom":"ASSET13","index":"0.000003671855143322"},{"denom":"ASSET14","index":"0.000011069259599665"},{"denom":"ASSET15","index":"0.000007913694549611"},{"denom":"ASSET16","index":"0.000005518108516848"},{"denom":"ASSET17","index":"0.000003917609227717"},{"denom":"ASSET18","index":"0.000001866904977257"},{"denom":"ASSET2","index":"0.000003616095813249"},{"denom":"ASSET3","index":"0.000001057362111013"},{"denom":"ASSET4","index":"0.000009954072998206"},{"denom":"ASSET5","index":"0.000000819868668110"},{"denom":"ASSET6","index":"0.000003341429483630"},{"denom":"ASSET7","index":"0.000005117467404472"},{"denom":"ASSET8","index":"0.000006676663486141"},{"denom":"ASSET9","index":"0.000002882963880808"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000002995432004660"},{"denom":"ASSET1","index":"0.000025434255671185"},{"denom":"ASSET10","index":"0.000020381248485322"},{"denom":"ASSET11","index":"0.000025297016742096"},{"denom":"ASSET12","index":"0.000024161457271020"},{"denom":"ASSET13","index":"0.000007948725545453"},{"denom":"ASSET14","index":"0.000023205881885085"},{"denom":"ASSET15","index":"0.000018343715148864"},{"denom":"ASSET16","index":"0.000011277889207663"},{"denom":"ASSET17","index":"0.000008877556775335"},{"denom":"ASSET18","index":"0.000003654253802028"},{"denom":"ASSET2","index":"0.000007709102798424"},{"denom":"ASSET3","index":"0.000002137627884226"},{"denom":"ASSET4","index":"0.000020618696770430"},{"denom":"ASSET5","index":"0.000001664440090804"},{"denom":"ASSET6","index":"0.000006720260763181"},{"denom":"ASSET7","index":"0.000010565171316359"},{"denom":"ASSET8","index":"0.000014449121165534"},{"denom":"ASSET9","index":"0.000006129217088192"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001484659776814"},{"denom":"ASSET1","index":"0.000012377911876883"},{"denom":"ASSET10","index":"0.000008623797972416"},{"denom":"ASSET11","index":"0.000011974339842928"},{"denom":"ASSET12","index":"0.000010782780641408"},{"denom":"ASSET13","index":"0.000003710691597017"},{"denom":"ASSET14","index":"0.000011185714112019"},{"denom":"ASSET15","index":"0.000007997367331102"},{"denom":"ASSET16","index":"0.000005575935127370"},{"denom":"ASSET17","index":"0.000003959731301514"},{"denom":"ASSET18","index":"0.000001886316120734"},{"denom":"ASSET2","index":"0.000003653859459324"},{"denom":"ASSET3","index":"0.000001068955039306"},{"denom":"ASSET4","index":"0.000010059288371675"},{"denom":"ASSET5","index":"0.000000829493784981"},{"denom":"ASSET6","index":"0.000003376084404307"},{"denom":"ASSET7","index":"0.000005171085966725"},{"denom":"ASSET8","index":"0.000006747698865199"},{"denom":"ASSET9","index":"0.000002914403105969"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000002967027008461"},{"denom":"ASSET1","index":"0.000025180120058697"},{"denom":"ASSET10","index":"0.000020126919929476"},{"denom":"ASSET11","index":"0.000025029678796477"},{"denom":"ASSET12","index":"0.000023880507059092"},{"denom":"ASSET13","index":"0.000007862872062626"},{"denom":"ASSET14","index":"0.000022968832134984"},{"denom":"ASSET15","index":"0.000018123195207046"},{"denom":"ASSET16","index":"0.000011168095360491"},{"denom":"ASSET17","index":"0.000008775186029853"},{"denom":"ASSET18","index":"0.000003621217117579"},{"denom":"ASSET2","index":"0.000007627534970337"},{"denom":"ASSET3","index":"0.000002117298518473"},{"denom":"ASSET4","index":"0.000020413769751333"},{"denom":"ASSET5","index":"0.000001649183760435"},{"denom":"ASSET6","index":"0.000006656038319196"},{"denom":"ASSET7","index":"0.000010459966878994"},{"denom":"ASSET8","index":"0.000014293861494285"},{"denom":"ASSET9","index":"0.000006066597621916"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001508631993599"},{"denom":"ASSET1","index":"0.000012578103553994"},{"denom":"ASSET10","index":"0.000008763023138279"},{"denom":"ASSET11","index":"0.000012169014387632"},{"denom":"ASSET12","index":"0.000010956555546150"},{"denom":"ASSET13","index":"0.000003770654442897"},{"denom":"ASSET14","index":"0.000011367495794714"},{"denom":"ASSET15","index":"0.000008126250861227"},{"denom":"ASSET16","index":"0.000005666162616450"},{"denom":"ASSET17","index":"0.000004024252704398"},{"denom":"ASSET18","index":"0.000001915870077761"},{"denom":"ASSET2","index":"0.000003713270894674"},{"denom":"ASSET3","index":"0.000001084734169631"},{"denom":"ASSET4","index":"0.000010221675912459"},{"denom":"ASSET5","index":"0.000000842242401334"},{"denom":"ASSET6","index":"0.000003430055317962"},{"denom":"ASSET7","index":"0.000005255222367887"},{"denom":"ASSET8","index":"0.000006856408471522"},{"denom":"ASSET9","index":"0.000002961731521176"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000002968383248598"},{"denom":"ASSET1","index":"0.000025185581850199"},{"denom":"ASSET10","index":"0.000020091193699906"},{"denom":"ASSET11","index":"0.000025026167595767"},{"denom":"ASSET12","index":"0.000023854952987524"},{"denom":"ASSET13","index":"0.000007859725566891"},{"denom":"ASSET14","index":"0.000022971118914045"},{"denom":"ASSET15","index":"0.000018098517255117"},{"denom":"ASSET16","index":"0.000011173004258039"},{"denom":"ASSET17","index":"0.000008766603022733"},{"denom":"ASSET18","index":"0.000003624559740525"},{"denom":"ASSET2","index":"0.000007626317523237"},{"denom":"ASSET3","index":"0.000002117313008939"},{"denom":"ASSET4","index":"0.000020418576076670"},{"denom":"ASSET5","index":"0.000001649450966157"},{"denom":"ASSET6","index":"0.000006660362585584"},{"denom":"ASSET7","index":"0.000010463779822658"},{"denom":"ASSET8","index":"0.000014287735496216"},{"denom":"ASSET9","index":"0.000006065360072421"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001603618851190"},{"denom":"ASSET1","index":"0.000013373450792115"},{"denom":"ASSET10","index":"0.000009317368604669"},{"denom":"ASSET11","index":"0.000012937408123124"},{"denom":"ASSET12","index":"0.000011650307554501"},{"denom":"ASSET13","index":"0.000004008493774333"},{"denom":"ASSET14","index":"0.000012085243516211"},{"denom":"ASSET15","index":"0.000008640063748266"},{"denom":"ASSET16","index":"0.000006023807734317"},{"denom":"ASSET17","index":"0.000004278530351069"},{"denom":"ASSET18","index":"0.000002037448105618"},{"denom":"ASSET2","index":"0.000003947624873839"},{"denom":"ASSET3","index":"0.000001154295694818"},{"denom":"ASSET4","index":"0.000010867865506336"},{"denom":"ASSET5","index":"0.000000896432898181"},{"denom":"ASSET6","index":"0.000003647707200497"},{"denom":"ASSET7","index":"0.000005586658358043"},{"denom":"ASSET8","index":"0.000007289880864586"},{"denom":"ASSET9","index":"0.000003148582216449"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003259379166935"},{"denom":"ASSET1","index":"0.000027669546155668"},{"denom":"ASSET10","index":"0.000022163157427920"},{"denom":"ASSET11","index":"0.000027516665793422"},{"denom":"ASSET12","index":"0.000026276569409586"},{"denom":"ASSET13","index":"0.000008645229164029"},{"denom":"ASSET14","index":"0.000025243382728696"},{"denom":"ASSET15","index":"0.000019947981783747"},{"denom":"ASSET16","index":"0.000012268920188963"},{"denom":"ASSET17","index":"0.000009656339783182"},{"denom":"ASSET18","index":"0.000003975233530089"},{"denom":"ASSET2","index":"0.000008385350610200"},{"denom":"ASSET3","index":"0.000002325230588439"},{"denom":"ASSET4","index":"0.000022430515898086"},{"denom":"ASSET5","index":"0.000001812256369527"},{"denom":"ASSET6","index":"0.000007311001085881"},{"denom":"ASSET7","index":"0.000011492885803011"},{"denom":"ASSET8","index":"0.000015716897251793"},{"denom":"ASSET9","index":"0.000006668589151432"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001669758803356"},{"denom":"ASSET1","index":"0.000013919924903508"},{"denom":"ASSET10","index":"0.000009698114015232"},{"denom":"ASSET11","index":"0.000013466332119255"},{"denom":"ASSET12","index":"0.000012126099781115"},{"denom":"ASSET13","index":"0.000004173211661392"},{"denom":"ASSET14","index":"0.000012579297449702"},{"denom":"ASSET15","index":"0.000008994017898909"},{"denom":"ASSET16","index":"0.000006270880730729"},{"denom":"ASSET17","index":"0.000004453348668392"},{"denom":"ASSET18","index":"0.000002121376009280"},{"denom":"ASSET2","index":"0.000004109202923545"},{"denom":"ASSET3","index":"0.000001201941855137"},{"denom":"ASSET4","index":"0.000011312556625386"},{"denom":"ASSET5","index":"0.000000932868086778"},{"denom":"ASSET6","index":"0.000003797061547622"},{"denom":"ASSET7","index":"0.000005815312368147"},{"denom":"ASSET8","index":"0.000007588591475923"},{"denom":"ASSET9","index":"0.000003277484447193"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003314119794923"},{"denom":"ASSET1","index":"0.000028119315186385"},{"denom":"ASSET10","index":"0.000022456877991933"},{"denom":"ASSET11","index":"0.000027947185249485"},{"denom":"ASSET12","index":"0.000026653541530161"},{"denom":"ASSET13","index":"0.000008778725953540"},{"denom":"ASSET14","index":"0.000025648491290636"},{"denom":"ASSET15","index":"0.000020225495910600"},{"denom":"ASSET16","index":"0.000012473684612014"},{"denom":"ASSET17","index":"0.000009794866581105"},{"denom":"ASSET18","index":"0.000004045992889163"},{"denom":"ASSET2","index":"0.000008517017325485"},{"denom":"ASSET3","index":"0.000002365208974685"},{"denom":"ASSET4","index":"0.000022797013251164"},{"denom":"ASSET5","index":"0.000001842432416817"},{"denom":"ASSET6","index":"0.000007435560259585"},{"denom":"ASSET7","index":"0.000011681616070006"},{"denom":"ASSET8","index":"0.000015958852395270"},{"denom":"ASSET9","index":"0.000006773561992828"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001334597814253"},{"denom":"ASSET1","index":"0.000011126876577448"},{"denom":"ASSET10","index":"0.000007751884027943"},{"denom":"ASSET11","index":"0.000010763759508328"},{"denom":"ASSET12","index":"0.000009692944381721"},{"denom":"ASSET13","index":"0.000003335543967388"},{"denom":"ASSET14","index":"0.000010055110882597"},{"denom":"ASSET15","index":"0.000007189147627631"},{"denom":"ASSET16","index":"0.000005012346349398"},{"denom":"ASSET17","index":"0.000003559878072918"},{"denom":"ASSET18","index":"0.000001695813746885"},{"denom":"ASSET2","index":"0.000003284213282225"},{"denom":"ASSET3","index":"0.000000960549210329"},{"denom":"ASSET4","index":"0.000009042280418860"},{"denom":"ASSET5","index":"0.000000745720787237"},{"denom":"ASSET6","index":"0.000003035164402357"},{"denom":"ASSET7","index":"0.000004648278712034"},{"denom":"ASSET8","index":"0.000006065575963495"},{"denom":"ASSET9","index":"0.000002619766079830"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000002933404194828"},{"denom":"ASSET1","index":"0.000024932632498194"},{"denom":"ASSET10","index":"0.000020157113753706"},{"denom":"ASSET11","index":"0.000024842878528839"},{"denom":"ASSET12","index":"0.000023817726072485"},{"denom":"ASSET13","index":"0.000007813243799971"},{"denom":"ASSET14","index":"0.000022761898108549"},{"denom":"ASSET15","index":"0.000018109267957138"},{"denom":"ASSET16","index":"0.000011043189892304"},{"denom":"ASSET17","index":"0.000008753164046701"},{"denom":"ASSET18","index":"0.000003567063844603"},{"denom":"ASSET2","index":"0.000007569762146700"},{"denom":"ASSET3","index":"0.000002091389836038"},{"denom":"ASSET4","index":"0.000020208488830330"},{"denom":"ASSET5","index":"0.000001630166870108"},{"denom":"ASSET6","index":"0.000006572642272968"},{"denom":"ASSET7","index":"0.000010351822041320"},{"denom":"ASSET8","index":"0.000014203644477234"},{"denom":"ASSET9","index":"0.000006019030096188"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001655550281073"},{"denom":"ASSET1","index":"0.000013803766186213"},{"denom":"ASSET10","index":"0.000009616885369480"},{"denom":"ASSET11","index":"0.000013353770421464"},{"denom":"ASSET12","index":"0.000012024654915933"},{"denom":"ASSET13","index":"0.000004138458266908"},{"denom":"ASSET14","index":"0.000012474650680682"},{"denom":"ASSET15","index":"0.000008918932754767"},{"denom":"ASSET16","index":"0.000006218123294721"},{"denom":"ASSET17","index":"0.000004415635621077"},{"denom":"ASSET18","index":"0.000002103876302725"},{"denom":"ASSET2","index":"0.000004075008029207"},{"denom":"ASSET3","index":"0.000001191361699996"},{"denom":"ASSET4","index":"0.000011218168999888"},{"denom":"ASSET5","index":"0.000000925037675960"},{"denom":"ASSET6","index":"0.000003765270684639"},{"denom":"ASSET7","index":"0.000005766457786874"},{"denom":"ASSET8","index":"0.000007524697268437"},{"denom":"ASSET9","index":"0.000003250154939091"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003215122291080"},{"denom":"ASSET1","index":"0.000027271082473775"},{"denom":"ASSET10","index":"0.000021717714787675"},{"denom":"ASSET11","index":"0.000027088129911249"},{"denom":"ASSET12","index":"0.000025803190697535"},{"denom":"ASSET13","index":"0.000008506451165719"},{"denom":"ASSET14","index":"0.000024869823256717"},{"denom":"ASSET15","index":"0.000019571375436743"},{"denom":"ASSET16","index":"0.000012101015548893"},{"denom":"ASSET17","index":"0.000009481514658039"},{"denom":"ASSET18","index":"0.000003929002426467"},{"denom":"ASSET2","index":"0.000008255375778501"},{"denom":"ASSET3","index":"0.000002294279906946"},{"denom":"ASSET4","index":"0.000022110354928469"},{"denom":"ASSET5","index":"0.000001787716273475"},{"denom":"ASSET6","index":"0.000007215985074700"},{"denom":"ASSET7","index":"0.000011330188741735"},{"denom":"ASSET8","index":"0.000015463524362026"},{"denom":"ASSET9","index":"0.000006565858639552"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001631513498845"},{"denom":"ASSET1","index":"0.000013601788709515"},{"denom":"ASSET10","index":"0.000009476711328689"},{"denom":"ASSET11","index":"0.000013158178840821"},{"denom":"ASSET12","index":"0.000011848922966954"},{"denom":"ASSET13","index":"0.000004077884841603"},{"denom":"ASSET14","index":"0.000012291633930140"},{"denom":"ASSET15","index":"0.000008788599161546"},{"denom":"ASSET16","index":"0.000006127389402135"},{"denom":"ASSET17","index":"0.000004351601569095"},{"denom":"ASSET18","index":"0.000002072876103766"},{"denom":"ASSET2","index":"0.000004014961455973"},{"denom":"ASSET3","index":"0.000001174420047516"},{"denom":"ASSET4","index":"0.000011053841044239"},{"denom":"ASSET5","index":"0.000000911490186131"},{"denom":"ASSET6","index":"0.000003710232488420"},{"denom":"ASSET7","index":"0.000005682431175178"},{"denom":"ASSET8","index":"0.000007415071543785"},{"denom":"ASSET9","index":"0.000003202800328586"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003159157648171"},{"denom":"ASSET1","index":"0.000026793811254639"},{"denom":"ASSET10","index":"0.000021330257270132"},{"denom":"ASSET11","index":"0.000026611245447042"},{"denom":"ASSET12","index":"0.000025345616114893"},{"denom":"ASSET13","index":"0.000008356504281369"},{"denom":"ASSET14","index":"0.000024433401122602"},{"denom":"ASSET15","index":"0.000019223209713353"},{"denom":"ASSET16","index":"0.000011890026449509"},{"denom":"ASSET17","index":"0.000009313941892173"},{"denom":"ASSET18","index":"0.000003860849124980"},{"denom":"ASSET2","index":"0.000008109777269158"},{"denom":"ASSET3","index":"0.000002255070941538"},{"denom":"ASSET4","index":"0.000021723391251034"},{"denom":"ASSET5","index":"0.000001756486235957"},{"denom":"ASSET6","index":"0.000007090574282328"},{"denom":"ASSET7","index":"0.000011132530538444"},{"denom":"ASSET8","index":"0.000015191323807650"},{"denom":"ASSET9","index":"0.000006450832118924"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001649724724935"},{"denom":"ASSET1","index":"0.000013753740147655"},{"denom":"ASSET10","index":"0.000009582563441278"},{"denom":"ASSET11","index":"0.000013305204895691"},{"denom":"ASSET12","index":"0.000011981321923304"},{"denom":"ASSET13","index":"0.000004123306127916"},{"denom":"ASSET14","index":"0.000012429052627730"},{"denom":"ASSET15","index":"0.000008886629821639"},{"denom":"ASSET16","index":"0.000006195820583626"},{"denom":"ASSET17","index":"0.000004400070480698"},{"denom":"ASSET18","index":"0.000002096248608056"},{"denom":"ASSET2","index":"0.000004060149146250"},{"denom":"ASSET3","index":"0.000001187512164840"},{"denom":"ASSET4","index":"0.000011177176659918"},{"denom":"ASSET5","index":"0.000000921609203810"},{"denom":"ASSET6","index":"0.000003751605165751"},{"denom":"ASSET7","index":"0.000005746078510357"},{"denom":"ASSET8","index":"0.000007497578498742"},{"denom":"ASSET9","index":"0.000003238303837047"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003253063831874"},{"denom":"ASSET1","index":"0.000027597326034286"},{"denom":"ASSET10","index":"0.000022021617243178"},{"denom":"ASSET11","index":"0.000027423138617092"},{"denom":"ASSET12","index":"0.000026144931484859"},{"denom":"ASSET13","index":"0.000008613299773809"},{"denom":"ASSET14","index":"0.000025170855267573"},{"denom":"ASSET15","index":"0.000019836826910831"},{"denom":"ASSET16","index":"0.000012243184702458"},{"denom":"ASSET17","index":"0.000009607701845932"},{"denom":"ASSET18","index":"0.000003972764374377"},{"denom":"ASSET2","index":"0.000008357484440725"},{"denom":"ASSET3","index":"0.000002321502734814"},{"denom":"ASSET4","index":"0.000022373906168402"},{"denom":"ASSET5","index":"0.000001808481766797"},{"denom":"ASSET6","index":"0.000007298802623853"},{"denom":"ASSET7","index":"0.000011465220726545"},{"denom":"ASSET8","index":"0.000015658035812384"},{"denom":"ASSET9","index":"0.000006646717011605"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001698975992122"},{"denom":"ASSET1","index":"0.000014167905922226"},{"denom":"ASSET10","index":"0.000009870625403756"},{"denom":"ASSET11","index":"0.000013705415046027"},{"denom":"ASSET12","index":"0.000012342129737421"},{"denom":"ASSET13","index":"0.000004247439980305"},{"denom":"ASSET14","index":"0.000012803154715439"},{"denom":"ASSET15","index":"0.000009153801193103"},{"denom":"ASSET16","index":"0.000006381787732272"},{"denom":"ASSET17","index":"0.000004532557176567"},{"denom":"ASSET18","index":"0.000002159268021049"},{"denom":"ASSET2","index":"0.000004182207511237"},{"denom":"ASSET3","index":"0.000001223292032291"},{"denom":"ASSET4","index":"0.000011513897264989"},{"denom":"ASSET5","index":"0.000000949169072389"},{"denom":"ASSET6","index":"0.000003864840554987"},{"denom":"ASSET7","index":"0.000005918563906982"},{"denom":"ASSET8","index":"0.000007723084568158"},{"denom":"ASSET9","index":"0.000003335651311539"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003402845442317"},{"denom":"ASSET1","index":"0.000028880571174740"},{"denom":"ASSET10","index":"0.000023090578471272"},{"denom":"ASSET11","index":"0.000028709364204549"},{"denom":"ASSET12","index":"0.000027394626213612"},{"denom":"ASSET13","index":"0.000009019217107214"},{"denom":"ASSET14","index":"0.000026344557012563"},{"denom":"ASSET15","index":"0.000020791017438004"},{"denom":"ASSET16","index":"0.000012808886991708"},{"denom":"ASSET17","index":"0.000010066951390727"},{"denom":"ASSET18","index":"0.000004153478710890"},{"denom":"ASSET2","index":"0.000008748954704305"},{"denom":"ASSET3","index":"0.000002428490976730"},{"denom":"ASSET4","index":"0.000023413646091842"},{"denom":"ASSET5","index":"0.000001891364101695"},{"denom":"ASSET6","index":"0.000007634563338572"},{"denom":"ASSET7","index":"0.000011996876612297"},{"denom":"ASSET8","index":"0.000016395615103037"},{"denom":"ASSET9","index":"0.000006958318142576"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001515088644413"},{"denom":"ASSET1","index":"0.000012634136557163"},{"denom":"ASSET10","index":"0.000008802109028204"},{"denom":"ASSET11","index":"0.000012222352143486"},{"denom":"ASSET12","index":"0.000011006111259210"},{"denom":"ASSET13","index":"0.000003787721611031"},{"denom":"ASSET14","index":"0.000011417895672887"},{"denom":"ASSET15","index":"0.000008163582563959"},{"denom":"ASSET16","index":"0.000005691138594924"},{"denom":"ASSET17","index":"0.000004042263453241"},{"denom":"ASSET18","index":"0.000001925135571111"},{"denom":"ASSET2","index":"0.000003729515797284"},{"denom":"ASSET3","index":"0.000001091141821893"},{"denom":"ASSET4","index":"0.000010267679293757"},{"denom":"ASSET5","index":"0.000000846156158061"},{"denom":"ASSET6","index":"0.000003446305419945"},{"denom":"ASSET7","index":"0.000005278485437758"},{"denom":"ASSET8","index":"0.000006887398378958"},{"denom":"ASSET9","index":"0.000002974577705544"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003029367235848"},{"denom":"ASSET1","index":"0.000025709657584098"},{"denom":"ASSET10","index":"0.000020551027857005"},{"denom":"ASSET11","index":"0.000025556791271547"},{"denom":"ASSET12","index":"0.000024383546484064"},{"denom":"ASSET13","index":"0.000008028643187417"},{"denom":"ASSET14","index":"0.000023452409013233"},{"denom":"ASSET15","index":"0.000018505869963369"},{"denom":"ASSET16","index":"0.000011403028825829"},{"denom":"ASSET17","index":"0.000008960765854271"},{"denom":"ASSET18","index":"0.000003697390743305"},{"denom":"ASSET2","index":"0.000007788410102575"},{"denom":"ASSET3","index":"0.000002162278160249"},{"denom":"ASSET4","index":"0.000020843149904241"},{"denom":"ASSET5","index":"0.000001683795445220"},{"denom":"ASSET6","index":"0.000006796548728457"},{"denom":"ASSET7","index":"0.000010680301627557"},{"denom":"ASSET8","index":"0.000014594997949332"},{"denom":"ASSET9","index":"0.000006193949682941"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001650481631660"},{"denom":"ASSET1","index":"0.000013760556046882"},{"denom":"ASSET10","index":"0.000009587067899364"},{"denom":"ASSET11","index":"0.000013312100857594"},{"denom":"ASSET12","index":"0.000011987552175177"},{"denom":"ASSET13","index":"0.000004125311926918"},{"denom":"ASSET14","index":"0.000012435412596309"},{"denom":"ASSET15","index":"0.000008891189157367"},{"denom":"ASSET16","index":"0.000006198673717177"},{"denom":"ASSET17","index":"0.000004402473887406"},{"denom":"ASSET18","index":"0.000002097152516481"},{"denom":"ASSET2","index":"0.000004062266502429"},{"denom":"ASSET3","index":"0.000001188346774796"},{"denom":"ASSET4","index":"0.000011182830860714"},{"denom":"ASSET5","index":"0.000000921890641108"},{"denom":"ASSET6","index":"0.000003753581829697"},{"denom":"ASSET7","index":"0.000005749028991578"},{"denom":"ASSET8","index":"0.000007501810745994"},{"denom":"ASSET9","index":"0.000003239702143299"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003205609047354"},{"denom":"ASSET1","index":"0.000027188537481167"},{"denom":"ASSET10","index":"0.000021652723818266"},{"denom":"ASSET11","index":"0.000027005979418132"},{"denom":"ASSET12","index":"0.000025725923481940"},{"denom":"ASSET13","index":"0.000008480657418555"},{"denom":"ASSET14","index":"0.000024794508770079"},{"denom":"ASSET15","index":"0.000019512596409105"},{"denom":"ASSET16","index":"0.000012064653878282"},{"denom":"ASSET17","index":"0.000009453813052143"},{"denom":"ASSET18","index":"0.000003917117707327"},{"denom":"ASSET2","index":"0.000008230459966291"},{"denom":"ASSET3","index":"0.000002288306334262"},{"denom":"ASSET4","index":"0.000022043298344156"},{"denom":"ASSET5","index":"0.000001782083734802"},{"denom":"ASSET6","index":"0.000007194354204475"},{"denom":"ASSET7","index":"0.000011296497588433"},{"denom":"ASSET8","index":"0.000015417282169744"},{"denom":"ASSET9","index":"0.000006545936928299"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001428935211366"},{"denom":"ASSET1","index":"0.000011914564237659"},{"denom":"ASSET10","index":"0.000008301159777028"},{"denom":"ASSET11","index":"0.000011525978642480"},{"denom":"ASSET12","index":"0.000010379209562159"},{"denom":"ASSET13","index":"0.000003571896453874"},{"denom":"ASSET14","index":"0.000010767353582799"},{"denom":"ASSET15","index":"0.000007698410529959"},{"denom":"ASSET16","index":"0.000005367338533420"},{"denom":"ASSET17","index":"0.000003811671429081"},{"denom":"ASSET18","index":"0.000001815754508385"},{"denom":"ASSET2","index":"0.000003517141210917"},{"denom":"ASSET3","index":"0.000001028868678146"},{"denom":"ASSET4","index":"0.000009682846512616"},{"denom":"ASSET5","index":"0.000000798366768278"},{"denom":"ASSET6","index":"0.000003249988614231"},{"denom":"ASSET7","index":"0.000004977428214621"},{"denom":"ASSET8","index":"0.000006495119908522"},{"denom":"ASSET9","index":"0.000002805323052474"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003075918064869"},{"denom":"ASSET1","index":"0.000026136551234120"},{"denom":"ASSET10","index":"0.000021080163895542"},{"denom":"ASSET11","index":"0.000026029570124972"},{"denom":"ASSET12","index":"0.000024929671095533"},{"denom":"ASSET13","index":"0.000008184754658215"},{"denom":"ASSET14","index":"0.000023857159923959"},{"denom":"ASSET15","index":"0.000018947606922173"},{"denom":"ASSET16","index":"0.000011579925359638"},{"denom":"ASSET17","index":"0.000009161388302193"},{"denom":"ASSET18","index":"0.000003743573486430"},{"denom":"ASSET2","index":"0.000007931762150876"},{"denom":"ASSET3","index":"0.000002193704696765"},{"denom":"ASSET4","index":"0.000021185602196482"},{"denom":"ASSET5","index":"0.000001709259314500"},{"denom":"ASSET6","index":"0.000006893942979866"},{"denom":"ASSET7","index":"0.000010853088527538"},{"denom":"ASSET8","index":"0.000014878712124324"},{"denom":"ASSET9","index":"0.000006307130542486"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001556917620519"},{"denom":"ASSET1","index":"0.000012983455297040"},{"denom":"ASSET10","index":"0.000009045452282177"},{"denom":"ASSET11","index":"0.000012560119972943"},{"denom":"ASSET12","index":"0.000011310507230547"},{"denom":"ASSET13","index":"0.000003892294051298"},{"denom":"ASSET14","index":"0.000011733139339821"},{"denom":"ASSET15","index":"0.000008388649636483"},{"denom":"ASSET16","index":"0.000005848637691896"},{"denom":"ASSET17","index":"0.000004153889965857"},{"denom":"ASSET18","index":"0.000001978846514969"},{"denom":"ASSET2","index":"0.000003832520791251"},{"denom":"ASSET3","index":"0.000001120924429588"},{"denom":"ASSET4","index":"0.000010551035220538"},{"denom":"ASSET5","index":"0.000000869876737390"},{"denom":"ASSET6","index":"0.000003541389854081"},{"denom":"ASSET7","index":"0.000005423895938150"},{"denom":"ASSET8","index":"0.000007077857204393"},{"denom":"ASSET9","index":"0.000003056874840288"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003155948059833"},{"denom":"ASSET1","index":"0.000026789841893667"},{"denom":"ASSET10","index":"0.000021451154188244"},{"denom":"ASSET11","index":"0.000026640130662201"},{"denom":"ASSET12","index":"0.000025435769508540"},{"denom":"ASSET13","index":"0.000008370086775831"},{"denom":"ASSET14","index":"0.000024440800445484"},{"denom":"ASSET15","index":"0.000019309084443140"},{"denom":"ASSET16","index":"0.000011879786354964"},{"denom":"ASSET17","index":"0.000009347672781307"},{"denom":"ASSET18","index":"0.000003850232310781"},{"denom":"ASSET2","index":"0.000008118311447694"},{"denom":"ASSET3","index":"0.000002251791235916"},{"denom":"ASSET4","index":"0.000021717604836949"},{"denom":"ASSET5","index":"0.000001754185821919"},{"denom":"ASSET6","index":"0.000007079049104243"},{"denom":"ASSET7","index":"0.000011127710678967"},{"denom":"ASSET8","index":"0.000015216376583965"},{"denom":"ASSET9","index":"0.000006456241851980"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001629017625409"},{"denom":"ASSET1","index":"0.000013583500814952"},{"denom":"ASSET10","index":"0.000009463617777698"},{"denom":"ASSET11","index":"0.000013140742178302"},{"denom":"ASSET12","index":"0.000011833351109704"},{"denom":"ASSET13","index":"0.000004072544063523"},{"denom":"ASSET14","index":"0.000012276109746354"},{"denom":"ASSET15","index":"0.000008777202658616"},{"denom":"ASSET16","index":"0.000006119258515961"},{"denom":"ASSET17","index":"0.000004345439323848"},{"denom":"ASSET18","index":"0.000002070383939302"},{"denom":"ASSET2","index":"0.000004009889539469"},{"denom":"ASSET3","index":"0.000001172335761192"},{"denom":"ASSET4","index":"0.000011039727138351"},{"denom":"ASSET5","index":"0.000000910579082921"},{"denom":"ASSET6","index":"0.000003704970855739"},{"denom":"ASSET7","index":"0.000005675107556554"},{"denom":"ASSET8","index":"0.000007404372420450"},{"denom":"ASSET9","index":"0.000003198165372278"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003300821213878"},{"denom":"ASSET1","index":"0.000028019420341436"},{"denom":"ASSET10","index":"0.000022435320069293"},{"denom":"ASSET11","index":"0.000027862926397945"},{"denom":"ASSET12","index":"0.000026603097941410"},{"denom":"ASSET13","index":"0.000008754572034100"},{"denom":"ASSET14","index":"0.000025562969906661"},{"denom":"ASSET15","index":"0.000020195785636702"},{"denom":"ASSET16","index":"0.000012425527462944"},{"denom":"ASSET17","index":"0.000009776022796414"},{"denom":"ASSET18","index":"0.000004027118689751"},{"denom":"ASSET2","index":"0.000008490998812362"},{"denom":"ASSET3","index":"0.000002354733406852"},{"denom":"ASSET4","index":"0.000022715681634045"},{"denom":"ASSET5","index":"0.000001835160700580"},{"denom":"ASSET6","index":"0.000007403741836767"},{"denom":"ASSET7","index":"0.000011639103500846"},{"denom":"ASSET8","index":"0.000015914079386056"},{"denom":"ASSET9","index":"0.000006752470475547"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001599876133405"},{"denom":"ASSET1","index":"0.000013345434681176"},{"denom":"ASSET10","index":"0.000009297530322905"},{"denom":"ASSET11","index":"0.000012909953167223"},{"denom":"ASSET12","index":"0.000011625282701060"},{"denom":"ASSET13","index":"0.000004000208763886"},{"denom":"ASSET14","index":"0.000012059727354266"},{"denom":"ASSET15","index":"0.000008622533976277"},{"denom":"ASSET16","index":"0.000006011718614052"},{"denom":"ASSET17","index":"0.000004268755697491"},{"denom":"ASSET18","index":"0.000002033283925863"},{"denom":"ASSET2","index":"0.000003939033979783"},{"denom":"ASSET3","index":"0.000001151952290481"},{"denom":"ASSET4","index":"0.000010845563418934"},{"denom":"ASSET5","index":"0.000000893773964352"},{"denom":"ASSET6","index":"0.000003640418084501"},{"denom":"ASSET7","index":"0.000005575200239351"},{"denom":"ASSET8","index":"0.000007274615004517"},{"denom":"ASSET9","index":"0.000003141688064949"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003205518103121"},{"denom":"ASSET1","index":"0.000027209804037075"},{"denom":"ASSET10","index":"0.000021755111918776"},{"denom":"ASSET11","index":"0.000027048910570117"},{"denom":"ASSET12","index":"0.000025809934262776"},{"denom":"ASSET13","index":"0.000008496852467218"},{"denom":"ASSET14","index":"0.000024820667393427"},{"denom":"ASSET15","index":"0.000019589132093549"},{"denom":"ASSET16","index":"0.000012068310128279"},{"denom":"ASSET17","index":"0.000009484236214143"},{"denom":"ASSET18","index":"0.000003912244660385"},{"denom":"ASSET2","index":"0.000008242746790311"},{"denom":"ASSET3","index":"0.000002287536756020"},{"denom":"ASSET4","index":"0.000022059248469095"},{"denom":"ASSET5","index":"0.000001781848402938"},{"denom":"ASSET6","index":"0.000007192715838846"},{"denom":"ASSET7","index":"0.000011303047666497"},{"denom":"ASSET8","index":"0.000015447099928639"},{"denom":"ASSET9","index":"0.000006555210966575"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001693699328345"},{"denom":"ASSET1","index":"0.000014121235265065"},{"denom":"ASSET10","index":"0.000009838380374958"},{"denom":"ASSET11","index":"0.000013660499756586"},{"denom":"ASSET12","index":"0.000012301569616423"},{"denom":"ASSET13","index":"0.000004233563721295"},{"denom":"ASSET14","index":"0.000012760935925768"},{"denom":"ASSET15","index":"0.000009123658427184"},{"denom":"ASSET16","index":"0.000006361299175013"},{"denom":"ASSET17","index":"0.000004517672541531"},{"denom":"ASSET18","index":"0.000002151696438556"},{"denom":"ASSET2","index":"0.000004168526762446"},{"denom":"ASSET3","index":"0.000001219271828530"},{"denom":"ASSET4","index":"0.000011475942538822"},{"denom":"ASSET5","index":"0.000000946116601363"},{"denom":"ASSET6","index":"0.000003852241762569"},{"denom":"ASSET7","index":"0.000005899194467400"},{"denom":"ASSET8","index":"0.000007698322129037"},{"denom":"ASSET9","index":"0.000003325100096108"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003374964488748"},{"denom":"ASSET1","index":"0.000028642371697541"},{"denom":"ASSET10","index":"0.000022886358038922"},{"denom":"ASSET11","index":"0.000028469467846578"},{"denom":"ASSET12","index":"0.000027158021136678"},{"denom":"ASSET13","index":"0.000008943216545101"},{"denom":"ASSET14","index":"0.000026126056006670"},{"denom":"ASSET15","index":"0.000020609372613995"},{"denom":"ASSET16","index":"0.000012704733728960"},{"denom":"ASSET17","index":"0.000009980025667275"},{"denom":"ASSET18","index":"0.000004119620826099"},{"denom":"ASSET2","index":"0.000008675935346246"},{"denom":"ASSET3","index":"0.000002408702445844"},{"denom":"ASSET4","index":"0.000023220763838917"},{"denom":"ASSET5","index":"0.000001876440105393"},{"denom":"ASSET6","index":"0.000007572949563502"},{"denom":"ASSET7","index":"0.000011897934490553"},{"denom":"ASSET8","index":"0.000016258236310419"},{"denom":"ASSET9","index":"0.000006900426530312"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001608105877482"},{"denom":"ASSET1","index":"0.000013418457239972"},{"denom":"ASSET10","index":"0.000009349233819318"},{"denom":"ASSET11","index":"0.000012981594753349"},{"denom":"ASSET12","index":"0.000011689837573077"},{"denom":"ASSET13","index":"0.000004022147721664"},{"denom":"ASSET14","index":"0.000012126700059700"},{"denom":"ASSET15","index":"0.000008669460725910"},{"denom":"ASSET16","index":"0.000006044519750254"},{"denom":"ASSET17","index":"0.000004293303747844"},{"denom":"ASSET18","index":"0.000002044968364105"},{"denom":"ASSET2","index":"0.000003960007798998"},{"denom":"ASSET3","index":"0.000001158062195142"},{"denom":"ASSET4","index":"0.000010904614913932"},{"denom":"ASSET5","index":"0.000000898204336720"},{"denom":"ASSET6","index":"0.000003660606353425"},{"denom":"ASSET7","index":"0.000005605774235672"},{"denom":"ASSET8","index":"0.000007313680595011"},{"denom":"ASSET9","index":"0.000003159720916176"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003138779820137"},{"denom":"ASSET1","index":"0.000026638851971456"},{"denom":"ASSET10","index":"0.000021228354320839"},{"denom":"ASSET11","index":"0.000026463611656062"},{"denom":"ASSET12","index":"0.000025215335343685"},{"denom":"ASSET13","index":"0.000008309803474369"},{"denom":"ASSET14","index":"0.000024294710395367"},{"denom":"ASSET15","index":"0.000019126240972581"},{"denom":"ASSET16","index":"0.000011819368577720"},{"denom":"ASSET17","index":"0.000009266335892783"},{"denom":"ASSET18","index":"0.000003836527514127"},{"denom":"ASSET2","index":"0.000008063422586049"},{"denom":"ASSET3","index":"0.000002240662109326"},{"denom":"ASSET4","index":"0.000021597223596640"},{"denom":"ASSET5","index":"0.000001744975814867"},{"denom":"ASSET6","index":"0.000007047692266012"},{"denom":"ASSET7","index":"0.000011067413421526"},{"denom":"ASSET8","index":"0.000015106336478322"},{"denom":"ASSET9","index":"0.000006414890297355"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001636130781121"},{"denom":"ASSET1","index":"0.000013651986161797"},{"denom":"ASSET10","index":"0.000009511743354655"},{"denom":"ASSET11","index":"0.000013205516575762"},{"denom":"ASSET12","index":"0.000011891065744828"},{"denom":"ASSET13","index":"0.000004093100055822"},{"denom":"ASSET14","index":"0.000012337535330862"},{"denom":"ASSET15","index":"0.000008821240702961"},{"denom":"ASSET16","index":"0.000006147969392790"},{"denom":"ASSET17","index":"0.000004367637254688"},{"denom":"ASSET18","index":"0.000002079827264137"},{"denom":"ASSET2","index":"0.000004029318686389"},{"denom":"ASSET3","index":"0.000001178568783011"},{"denom":"ASSET4","index":"0.000011095185178418"},{"denom":"ASSET5","index":"0.000000915123996220"},{"denom":"ASSET6","index":"0.000003724277354315"},{"denom":"ASSET7","index":"0.000005701499806755"},{"denom":"ASSET8","index":"0.000007440235399574"},{"denom":"ASSET9","index":"0.000003214026398847"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003135138573804"},{"denom":"ASSET1","index":"0.000026601246250396"},{"denom":"ASSET10","index":"0.000021147351718785"},{"denom":"ASSET11","index":"0.000026411423528042"},{"denom":"ASSET12","index":"0.000025139747174388"},{"denom":"ASSET13","index":"0.000008292603180789"},{"denom":"ASSET14","index":"0.000024256405788980"},{"denom":"ASSET15","index":"0.000019064302195638"},{"denom":"ASSET16","index":"0.000011804656377100"},{"denom":"ASSET17","index":"0.000009238224400983"},{"denom":"ASSET18","index":"0.000003834531376561"},{"denom":"ASSET2","index":"0.000008049169006780"},{"denom":"ASSET3","index":"0.000002239375819558"},{"denom":"ASSET4","index":"0.000021568278304468"},{"denom":"ASSET5","index":"0.000001743998311515"},{"denom":"ASSET6","index":"0.000007041675703373"},{"denom":"ASSET7","index":"0.000011051161098588"},{"denom":"ASSET8","index":"0.000015073103234225"},{"denom":"ASSET9","index":"0.000006402150772125"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001682560247115"},{"denom":"ASSET1","index":"0.000014026482890055"},{"denom":"ASSET10","index":"0.000009772411969975"},{"denom":"ASSET11","index":"0.000013568579422963"},{"denom":"ASSET12","index":"0.000012218368466479"},{"denom":"ASSET13","index":"0.000004205057792371"},{"denom":"ASSET14","index":"0.000012675600520863"},{"denom":"ASSET15","index":"0.000009062728737253"},{"denom":"ASSET16","index":"0.000006318664998244"},{"denom":"ASSET17","index":"0.000004487051129876"},{"denom":"ASSET18","index":"0.000002137778063373"},{"denom":"ASSET2","index":"0.000004140602172369"},{"denom":"ASSET3","index":"0.000001211228525856"},{"denom":"ASSET4","index":"0.000011398573549589"},{"denom":"ASSET5","index":"0.000000939977791684"},{"denom":"ASSET6","index":"0.000003825709612155"},{"denom":"ASSET7","index":"0.000005859418705735"},{"denom":"ASSET8","index":"0.000007646047922643"},{"denom":"ASSET9","index":"0.000003302679112354"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003237426875283"},{"denom":"ASSET1","index":"0.000027451710154634"},{"denom":"ASSET10","index":"0.000021835512998164"},{"denom":"ASSET11","index":"0.000027259736654219"},{"denom":"ASSET12","index":"0.000025953768913429"},{"denom":"ASSET13","index":"0.000008559484494503"},{"denom":"ASSET14","index":"0.000025032165857410"},{"denom":"ASSET15","index":"0.000019681806512765"},{"denom":"ASSET16","index":"0.000012183244440341"},{"denom":"ASSET17","index":"0.000009537367134186"},{"denom":"ASSET18","index":"0.000003957397976948"},{"denom":"ASSET2","index":"0.000008307936552813"},{"denom":"ASSET3","index":"0.000002310954839376"},{"denom":"ASSET4","index":"0.000022256988295109"},{"denom":"ASSET5","index":"0.000001799896462688"},{"denom":"ASSET6","index":"0.000007265619632425"},{"denom":"ASSET7","index":"0.000011405823532836"},{"denom":"ASSET8","index":"0.000015559935461923"},{"denom":"ASSET9","index":"0.000006608212131764"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001576738934866"},{"denom":"ASSET1","index":"0.000013143695761043"},{"denom":"ASSET10","index":"0.000009157699733702"},{"denom":"ASSET11","index":"0.000012715663698192"},{"denom":"ASSET12","index":"0.000011450067913139"},{"denom":"ASSET13","index":"0.000003940585946017"},{"denom":"ASSET14","index":"0.000011878099975991"},{"denom":"ASSET15","index":"0.000008492526135047"},{"denom":"ASSET16","index":"0.000005920970048209"},{"denom":"ASSET17","index":"0.000004204637159643"},{"denom":"ASSET18","index":"0.000002003089142854"},{"denom":"ASSET2","index":"0.000003880039170918"},{"denom":"ASSET3","index":"0.000001134411105672"},{"denom":"ASSET4","index":"0.000010681460240357"},{"denom":"ASSET5","index":"0.000000880451021229"},{"denom":"ASSET6","index":"0.000003584873642311"},{"denom":"ASSET7","index":"0.000005491256130493"},{"denom":"ASSET8","index":"0.000007165542647463"},{"denom":"ASSET9","index":"0.000003094612949497"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003150995592381"},{"denom":"ASSET1","index":"0.000026735906318713"},{"denom":"ASSET10","index":"0.000021370928366269"},{"denom":"ASSET11","index":"0.000026577057751538"},{"denom":"ASSET12","index":"0.000025356196217934"},{"denom":"ASSET13","index":"0.000008349049177946"},{"denom":"ASSET14","index":"0.000024388519635576"},{"denom":"ASSET15","index":"0.000019243917228958"},{"denom":"ASSET16","index":"0.000011858566692713"},{"denom":"ASSET17","index":"0.000009317567603522"},{"denom":"ASSET18","index":"0.000003845362315572"},{"denom":"ASSET2","index":"0.000008099062572798"},{"denom":"ASSET3","index":"0.000002247710476517"},{"denom":"ASSET4","index":"0.000021674805285583"},{"denom":"ASSET5","index":"0.000001751018453776"},{"denom":"ASSET6","index":"0.000007067532365991"},{"denom":"ASSET7","index":"0.000011106766164564"},{"denom":"ASSET8","index":"0.000015177641578730"},{"denom":"ASSET9","index":"0.000006441123951375"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001735896630597"},{"denom":"ASSET1","index":"0.000014474259966527"},{"denom":"ASSET10","index":"0.000010084408758147"},{"denom":"ASSET11","index":"0.000014002239606889"},{"denom":"ASSET12","index":"0.000012609068112910"},{"denom":"ASSET13","index":"0.000004339122939062"},{"denom":"ASSET14","index":"0.000013079851197687"},{"denom":"ASSET15","index":"0.000009351942040176"},{"denom":"ASSET16","index":"0.000006520438519776"},{"denom":"ASSET17","index":"0.000004630501168930"},{"denom":"ASSET18","index":"0.000002205442440512"},{"denom":"ASSET2","index":"0.000004272310096544"},{"denom":"ASSET3","index":"0.000001249647610052"},{"denom":"ASSET4","index":"0.000011762772107687"},{"denom":"ASSET5","index":"0.000000970023491367"},{"denom":"ASSET6","index":"0.000003948144082847"},{"denom":"ASSET7","index":"0.000006046562247845"},{"denom":"ASSET8","index":"0.000007890101791387"},{"denom":"ASSET9","index":"0.000003408073605830"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003300304206809"},{"denom":"ASSET1","index":"0.000027981868665615"},{"denom":"ASSET10","index":"0.000022221493016134"},{"denom":"ASSET11","index":"0.000027777532118325"},{"denom":"ASSET12","index":"0.000026428557640091"},{"denom":"ASSET13","index":"0.000008720047886627"},{"denom":"ASSET14","index":"0.000025512138164618"},{"denom":"ASSET15","index":"0.000020036362120252"},{"denom":"ASSET16","index":"0.000012421157074829"},{"denom":"ASSET17","index":"0.000009711490167791"},{"denom":"ASSET18","index":"0.000004036282970136"},{"denom":"ASSET2","index":"0.000008465189250700"},{"denom":"ASSET3","index":"0.000002356240815614"},{"denom":"ASSET4","index":"0.000022687774056492"},{"denom":"ASSET5","index":"0.000001835200922241"},{"denom":"ASSET6","index":"0.000007409270759323"},{"denom":"ASSET7","index":"0.000011627060915230"},{"denom":"ASSET8","index":"0.000015852235873304"},{"denom":"ASSET9","index":"0.000006733690564218"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001726734301691"},{"denom":"ASSET1","index":"0.000014395988805148"},{"denom":"ASSET10","index":"0.000010029746380297"},{"denom":"ASSET11","index":"0.000013926529312304"},{"denom":"ASSET12","index":"0.000012540835608608"},{"denom":"ASSET13","index":"0.000004315874534955"},{"denom":"ASSET14","index":"0.000013009526126035"},{"denom":"ASSET15","index":"0.000009301526659210"},{"denom":"ASSET16","index":"0.000006485154189852"},{"denom":"ASSET17","index":"0.000004605778267637"},{"denom":"ASSET18","index":"0.000002193886868281"},{"denom":"ASSET2","index":"0.000004249742648985"},{"denom":"ASSET3","index":"0.000001243048763609"},{"denom":"ASSET4","index":"0.000011699192013329"},{"denom":"ASSET5","index":"0.000000964679662201"},{"denom":"ASSET6","index":"0.000003926772973318"},{"denom":"ASSET7","index":"0.000006014156746171"},{"denom":"ASSET8","index":"0.000007847778630999"},{"denom":"ASSET9","index":"0.000003389643643667"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003383074331503"},{"denom":"ASSET1","index":"0.000028697774885580"},{"denom":"ASSET10","index":"0.000022880621123289"},{"denom":"ASSET11","index":"0.000028511966470743"},{"denom":"ASSET12","index":"0.000027173358086556"},{"denom":"ASSET13","index":"0.000008954537947194"},{"denom":"ASSET14","index":"0.000026172910691250"},{"denom":"ASSET15","index":"0.000020614154391480"},{"denom":"ASSET16","index":"0.000012732692592075"},{"denom":"ASSET17","index":"0.000009985655741818"},{"denom":"ASSET18","index":"0.000004132359094826"},{"denom":"ASSET2","index":"0.000008689052893949"},{"denom":"ASSET3","index":"0.000002414485946546"},{"denom":"ASSET4","index":"0.000023266612079392"},{"denom":"ASSET5","index":"0.000001880944791026"},{"denom":"ASSET6","index":"0.000007591453768301"},{"denom":"ASSET7","index":"0.000011922604903868"},{"denom":"ASSET8","index":"0.000016278329144958"},{"denom":"ASSET9","index":"0.000006911169878531"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001436232590899"},{"denom":"ASSET1","index":"0.000011976183987962"},{"denom":"ASSET10","index":"0.000008344549248442"},{"denom":"ASSET11","index":"0.000011585862202045"},{"denom":"ASSET12","index":"0.000010432581326504"},{"denom":"ASSET13","index":"0.000003589949888597"},{"denom":"ASSET14","index":"0.000010822903112421"},{"denom":"ASSET15","index":"0.000007738224144105"},{"denom":"ASSET16","index":"0.000005395030251301"},{"denom":"ASSET17","index":"0.000003831216753031"},{"denom":"ASSET18","index":"0.000001825291199515"},{"denom":"ASSET2","index":"0.000003535633264667"},{"denom":"ASSET3","index":"0.000001033279031975"},{"denom":"ASSET4","index":"0.000009732781101914"},{"denom":"ASSET5","index":"0.000000802117585946"},{"denom":"ASSET6","index":"0.000003266576499617"},{"denom":"ASSET7","index":"0.000005003445288083"},{"denom":"ASSET8","index":"0.000006528100290032"},{"denom":"ASSET9","index":"0.000002819411735168"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003006064648013"},{"denom":"ASSET1","index":"0.000025531157590212"},{"denom":"ASSET10","index":"0.000020524407173472"},{"denom":"ASSET11","index":"0.000025409258384489"},{"denom":"ASSET12","index":"0.000024300714605646"},{"denom":"ASSET13","index":"0.000007986286383048"},{"denom":"ASSET14","index":"0.000023298685931189"},{"denom":"ASSET15","index":"0.000018459726056254"},{"denom":"ASSET16","index":"0.000011316095008653"},{"denom":"ASSET17","index":"0.000008930145684163"},{"denom":"ASSET18","index":"0.000003662445744281"},{"denom":"ASSET2","index":"0.000007743120539446"},{"denom":"ASSET3","index":"0.000002143639104141"},{"denom":"ASSET4","index":"0.000020695936675740"},{"denom":"ASSET5","index":"0.000001670457298921"},{"denom":"ASSET6","index":"0.000006739935351518"},{"denom":"ASSET7","index":"0.000010603283023237"},{"denom":"ASSET8","index":"0.000014518439118465"},{"denom":"ASSET9","index":"0.000006156725809403"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001476546163568"},{"denom":"ASSET1","index":"0.000012315891963405"},{"denom":"ASSET10","index":"0.000008580298213179"},{"denom":"ASSET11","index":"0.000011914434711559"},{"denom":"ASSET12","index":"0.000010728207916557"},{"denom":"ASSET13","index":"0.000003691365408921"},{"denom":"ASSET14","index":"0.000011129665168403"},{"denom":"ASSET15","index":"0.000007957699254808"},{"denom":"ASSET16","index":"0.000005547821683700"},{"denom":"ASSET17","index":"0.000003939724556249"},{"denom":"ASSET18","index":"0.000001876869355381"},{"denom":"ASSET2","index":"0.000003635796467281"},{"denom":"ASSET3","index":"0.000001062614251355"},{"denom":"ASSET4","index":"0.000010009213855342"},{"denom":"ASSET5","index":"0.000000825595704361"},{"denom":"ASSET6","index":"0.000003359085819117"},{"denom":"ASSET7","index":"0.000005145230371820"},{"denom":"ASSET8","index":"0.000006713635398099"},{"denom":"ASSET9","index":"0.000002899791505564"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000002611689387046"},{"denom":"ASSET1","index":"0.000022118950462866"},{"denom":"ASSET10","index":"0.000017388824351878"},{"denom":"ASSET11","index":"0.000021911701626113"},{"denom":"ASSET12","index":"0.000020757567192719"},{"denom":"ASSET13","index":"0.000006870825151743"},{"denom":"ASSET14","index":"0.000020152250667519"},{"denom":"ASSET15","index":"0.000015711809347683"},{"denom":"ASSET16","index":"0.000009830001439303"},{"denom":"ASSET17","index":"0.000007627368499381"},{"denom":"ASSET18","index":"0.000003205559295774"},{"denom":"ASSET2","index":"0.000006678615536452"},{"denom":"ASSET3","index":"0.000001865584989735"},{"denom":"ASSET4","index":"0.000017938012267073"},{"denom":"ASSET5","index":"0.000001453547274796"},{"denom":"ASSET6","index":"0.000005870892100855"},{"denom":"ASSET7","index":"0.000009195154067126"},{"denom":"ASSET8","index":"0.000012492245582088"},{"denom":"ASSET9","index":"0.000005313335607946"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000000860911540335"},{"denom":"ASSET1","index":"0.000007178593209511"},{"denom":"ASSET10","index":"0.000005001581264509"},{"denom":"ASSET11","index":"0.000006944753046495"},{"denom":"ASSET12","index":"0.000006253725385275"},{"denom":"ASSET13","index":"0.000002152029021603"},{"denom":"ASSET14","index":"0.000006487065889823"},{"denom":"ASSET15","index":"0.000004638329558286"},{"denom":"ASSET16","index":"0.000003233789604786"},{"denom":"ASSET17","index":"0.000002296430318850"},{"denom":"ASSET18","index":"0.000001093752386415"},{"denom":"ASSET2","index":"0.000002119051562716"},{"denom":"ASSET3","index":"0.000000619576500299"},{"denom":"ASSET4","index":"0.000005834012272169"},{"denom":"ASSET5","index":"0.000000481171104668"},{"denom":"ASSET6","index":"0.000001958161536025"},{"denom":"ASSET7","index":"0.000002998950124834"},{"denom":"ASSET8","index":"0.000003913325121242"},{"denom":"ASSET9","index":"0.000001690344597186"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000002357406510396"},{"denom":"ASSET1","index":"0.000020099972826550"},{"denom":"ASSET10","index":"0.000016611857270119"},{"denom":"ASSET11","index":"0.000020122040980663"},{"denom":"ASSET12","index":"0.000019473664705632"},{"denom":"ASSET13","index":"0.000006342954228467"},{"denom":"ASSET14","index":"0.000018379978414574"},{"denom":"ASSET15","index":"0.000014858739059306"},{"denom":"ASSET16","index":"0.000008878274052948"},{"denom":"ASSET17","index":"0.000007156982288871"},{"denom":"ASSET18","index":"0.000002845018303307"},{"denom":"ASSET2","index":"0.000006129987919866"},{"denom":"ASSET3","index":"0.000001678183905493"},{"denom":"ASSET4","index":"0.000016284739258605"},{"denom":"ASSET5","index":"0.000001308892339296"},{"denom":"ASSET6","index":"0.000005269046474537"},{"denom":"ASSET7","index":"0.000008337197620164"},{"denom":"ASSET8","index":"0.000011530009666752"},{"denom":"ASSET9","index":"0.000004871853664260"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001198976216272"},{"denom":"ASSET1","index":"0.000010001315625623"},{"denom":"ASSET10","index":"0.000006967712250892"},{"denom":"ASSET11","index":"0.000009674322112094"},{"denom":"ASSET12","index":"0.000008711677656379"},{"denom":"ASSET13","index":"0.000002997949876371"},{"denom":"ASSET14","index":"0.000009037652498526"},{"denom":"ASSET15","index":"0.000006461432574183"},{"denom":"ASSET16","index":"0.000004504564849919"},{"denom":"ASSET17","index":"0.000003199646809949"},{"denom":"ASSET18","index":"0.000001523932387037"},{"denom":"ASSET2","index":"0.000002952109664194"},{"denom":"ASSET3","index":"0.000000862814660308"},{"denom":"ASSET4","index":"0.000008126960283277"},{"denom":"ASSET5","index":"0.000000670285769165"},{"denom":"ASSET6","index":"0.000002728001960218"},{"denom":"ASSET7","index":"0.000004177571336390"},{"denom":"ASSET8","index":"0.000005451929234909"},{"denom":"ASSET9","index":"0.000002354149563130"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000002792091306062"},{"denom":"ASSET1","index":"0.000023760392481519"},{"denom":"ASSET10","index":"0.000019330735214415"},{"denom":"ASSET11","index":"0.000023705763948043"},{"denom":"ASSET12","index":"0.000022788595153270"},{"denom":"ASSET13","index":"0.000007460432475948"},{"denom":"ASSET14","index":"0.000021701401606991"},{"denom":"ASSET15","index":"0.000017344296121870"},{"denom":"ASSET16","index":"0.000010515175863945"},{"denom":"ASSET17","index":"0.000008375559402161"},{"denom":"ASSET18","index":"0.000003388923471278"},{"denom":"ASSET2","index":"0.000007222909907971"},{"denom":"ASSET3","index":"0.000001989926471838"},{"denom":"ASSET4","index":"0.000019255294602933"},{"denom":"ASSET5","index":"0.000001551437823125"},{"denom":"ASSET6","index":"0.000006253588147261"},{"denom":"ASSET7","index":"0.000009862028954195"},{"denom":"ASSET8","index":"0.000013562244421912"},{"denom":"ASSET9","index":"0.000005741841810541"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001507638919625"},{"denom":"ASSET1","index":"0.000012569401049902"},{"denom":"ASSET10","index":"0.000008757228353136"},{"denom":"ASSET11","index":"0.000012160184771718"},{"denom":"ASSET12","index":"0.000010949766096248"},{"denom":"ASSET13","index":"0.000003769097299062"},{"denom":"ASSET14","index":"0.000011358982374432"},{"denom":"ASSET15","index":"0.000008124020006893"},{"denom":"ASSET16","index":"0.000005660107258249"},{"denom":"ASSET17","index":"0.000004018934605743"},{"denom":"ASSET18","index":"0.000001912547658039"},{"denom":"ASSET2","index":"0.000003708791742277"},{"denom":"ASSET3","index":"0.000001085500022130"},{"denom":"ASSET4","index":"0.000010217484335287"},{"denom":"ASSET5","index":"0.000000839970255220"},{"denom":"ASSET6","index":"0.000003428801657204"},{"denom":"ASSET7","index":"0.000005250890980065"},{"denom":"ASSET8","index":"0.000006853295774638"},{"denom":"ASSET9","index":"0.000002959279822235"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003131246414749"},{"denom":"ASSET1","index":"0.000026589761836242"},{"denom":"ASSET10","index":"0.000021355242603721"},{"denom":"ASSET11","index":"0.000026458316408852"},{"denom":"ASSET12","index":"0.000025293988029420"},{"denom":"ASSET13","index":"0.000008316673174883"},{"denom":"ASSET14","index":"0.000024263343459355"},{"denom":"ASSET15","index":"0.000019213959771091"},{"denom":"ASSET16","index":"0.000011784585795875"},{"denom":"ASSET17","index":"0.000009292893547134"},{"denom":"ASSET18","index":"0.000003813004198036"},{"denom":"ASSET2","index":"0.000008060944762894"},{"denom":"ASSET3","index":"0.000002234070199415"},{"denom":"ASSET4","index":"0.000021557233504015"},{"denom":"ASSET5","index":"0.000001738116490695"},{"denom":"ASSET6","index":"0.000007021386599103"},{"denom":"ASSET7","index":"0.000011043212117572"},{"denom":"ASSET8","index":"0.000015117900391662"},{"denom":"ASSET9","index":"0.000006411442995536"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001538667310820"},{"denom":"ASSET1","index":"0.000012827917927858"},{"denom":"ASSET10","index":"0.000008937244372687"},{"denom":"ASSET11","index":"0.000012409488429871"},{"denom":"ASSET12","index":"0.000011174685151587"},{"denom":"ASSET13","index":"0.000003845530209513"},{"denom":"ASSET14","index":"0.000011592355937882"},{"denom":"ASSET15","index":"0.000008288166520415"},{"denom":"ASSET16","index":"0.000005778727600031"},{"denom":"ASSET17","index":"0.000004103871540546"},{"denom":"ASSET18","index":"0.000001954820673732"},{"denom":"ASSET2","index":"0.000003786730053405"},{"denom":"ASSET3","index":"0.000001107719069920"},{"denom":"ASSET4","index":"0.000010424698644316"},{"denom":"ASSET5","index":"0.000000859620346726"},{"denom":"ASSET6","index":"0.000003499178322240"},{"denom":"ASSET7","index":"0.000005359160034507"},{"denom":"ASSET8","index":"0.000006993045662639"},{"denom":"ASSET9","index":"0.000003020431244761"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003070496060295"},{"denom":"ASSET1","index":"0.000026054009108675"},{"denom":"ASSET10","index":"0.000020821706468932"},{"denom":"ASSET11","index":"0.000025897661631707"},{"denom":"ASSET12","index":"0.000024706407518076"},{"denom":"ASSET13","index":"0.000008135385272267"},{"denom":"ASSET14","index":"0.000023765921524780"},{"denom":"ASSET15","index":"0.000018749935123185"},{"denom":"ASSET16","index":"0.000011556337558875"},{"denom":"ASSET17","index":"0.000009079232430047"},{"denom":"ASSET18","index":"0.000003747682066764"},{"denom":"ASSET2","index":"0.000007892419371659"},{"denom":"ASSET3","index":"0.000002191201298955"},{"denom":"ASSET4","index":"0.000021122052487200"},{"denom":"ASSET5","index":"0.000001706992646915"},{"denom":"ASSET6","index":"0.000006888142834266"},{"denom":"ASSET7","index":"0.000010823268476718"},{"denom":"ASSET8","index":"0.000014789657857476"},{"denom":"ASSET9","index":"0.000006276911852268"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001679222100186"},{"denom":"ASSET1","index":"0.000013999028794594"},{"denom":"ASSET10","index":"0.000009753438641601"},{"denom":"ASSET11","index":"0.000013542280383343"},{"denom":"ASSET12","index":"0.000012194769233410"},{"denom":"ASSET13","index":"0.000004196505199295"},{"denom":"ASSET14","index":"0.000012650484277214"},{"denom":"ASSET15","index":"0.000009045065257184"},{"denom":"ASSET16","index":"0.000006306124840851"},{"denom":"ASSET17","index":"0.000004478614512126"},{"denom":"ASSET18","index":"0.000002133387092820"},{"denom":"ASSET2","index":"0.000004132436417626"},{"denom":"ASSET3","index":"0.000001208523228411"},{"denom":"ASSET4","index":"0.000011376342215965"},{"denom":"ASSET5","index":"0.000000938297641211"},{"denom":"ASSET6","index":"0.000003818809397684"},{"denom":"ASSET7","index":"0.000005848343062154"},{"denom":"ASSET8","index":"0.000007631418590690"},{"denom":"ASSET9","index":"0.000003295925469872"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003295755498274"},{"denom":"ASSET1","index":"0.000027960125957180"},{"denom":"ASSET10","index":"0.000022298091456525"},{"denom":"ASSET11","index":"0.000027779779629540"},{"denom":"ASSET12","index":"0.000026478335493542"},{"denom":"ASSET13","index":"0.000008724566942758"},{"denom":"ASSET14","index":"0.000025500389224880"},{"denom":"ASSET15","index":"0.000020088119547171"},{"denom":"ASSET16","index":"0.000012404652968467"},{"denom":"ASSET17","index":"0.000009730254100732"},{"denom":"ASSET18","index":"0.000004025857251145"},{"denom":"ASSET2","index":"0.000008465992991141"},{"denom":"ASSET3","index":"0.000002352288079447"},{"denom":"ASSET4","index":"0.000022667879187178"},{"denom":"ASSET5","index":"0.000001832649164275"},{"denom":"ASSET6","index":"0.000007396215489940"},{"denom":"ASSET7","index":"0.000011616026271508"},{"denom":"ASSET8","index":"0.000015861127767022"},{"denom":"ASSET9","index":"0.000006733269226830"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001488486853561"},{"denom":"ASSET1","index":"0.000012409943784184"},{"denom":"ASSET10","index":"0.000008645838046025"},{"denom":"ASSET11","index":"0.000012005445379346"},{"denom":"ASSET12","index":"0.000010810451131374"},{"denom":"ASSET13","index":"0.000003720376180879"},{"denom":"ASSET14","index":"0.000011214949536212"},{"denom":"ASSET15","index":"0.000008018487089665"},{"denom":"ASSET16","index":"0.000005590655707614"},{"denom":"ASSET17","index":"0.000003970139229188"},{"denom":"ASSET18","index":"0.000001891303352350"},{"denom":"ASSET2","index":"0.000003663191375205"},{"denom":"ASSET3","index":"0.000001071374153354"},{"denom":"ASSET4","index":"0.000010085549624159"},{"denom":"ASSET5","index":"0.000000831702541340"},{"denom":"ASSET6","index":"0.000003384835924059"},{"denom":"ASSET7","index":"0.000005184475396726"},{"denom":"ASSET8","index":"0.000006765467082995"},{"denom":"ASSET9","index":"0.000002921470807498"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003140601357292"},{"denom":"ASSET1","index":"0.000026678854887219"},{"denom":"ASSET10","index":"0.000021467437308134"},{"denom":"ASSET11","index":"0.000026557150856893"},{"denom":"ASSET12","index":"0.000025409189778577"},{"denom":"ASSET13","index":"0.000008348678217638"},{"denom":"ASSET14","index":"0.000024348515645151"},{"denom":"ASSET15","index":"0.000019305257093893"},{"denom":"ASSET16","index":"0.000011824039078448"},{"denom":"ASSET17","index":"0.000009337874135725"},{"denom":"ASSET18","index":"0.000003825021517438"},{"denom":"ASSET2","index":"0.000008092644314938"},{"denom":"ASSET3","index":"0.000002240059115813"},{"denom":"ASSET4","index":"0.000021626536887159"},{"denom":"ASSET5","index":"0.000001745574888449"},{"denom":"ASSET6","index":"0.000007040920669072"},{"denom":"ASSET7","index":"0.000011079696231301"},{"denom":"ASSET8","index":"0.000015176664815864"},{"denom":"ASSET9","index":"0.000006434669973810"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001385039568420"},{"denom":"ASSET1","index":"0.000011547928050470"},{"denom":"ASSET10","index":"0.000008045290512347"},{"denom":"ASSET11","index":"0.000011171268467624"},{"denom":"ASSET12","index":"0.000010059084660007"},{"denom":"ASSET13","index":"0.000003461116009305"},{"denom":"ASSET14","index":"0.000010435744242853"},{"denom":"ASSET15","index":"0.000007461023285412"},{"denom":"ASSET16","index":"0.000005202054396163"},{"denom":"ASSET17","index":"0.000003694427456948"},{"denom":"ASSET18","index":"0.000001759721935608"},{"denom":"ASSET2","index":"0.000003408719794369"},{"denom":"ASSET3","index":"0.000000996516691625"},{"denom":"ASSET4","index":"0.000009383865512804"},{"denom":"ASSET5","index":"0.000000774079930102"},{"denom":"ASSET6","index":"0.000003149704543173"},{"denom":"ASSET7","index":"0.000004824406205487"},{"denom":"ASSET8","index":"0.000006294466047200"},{"denom":"ASSET9","index":"0.000002718671529731"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000002978674281858"},{"denom":"ASSET1","index":"0.000025310372422717"},{"denom":"ASSET10","index":"0.000020411345436720"},{"denom":"ASSET11","index":"0.000025206262983954"},{"denom":"ASSET12","index":"0.000024139567910062"},{"denom":"ASSET13","index":"0.000007924745788344"},{"denom":"ASSET14","index":"0.000023102636423037"},{"denom":"ASSET15","index":"0.000018346974201526"},{"denom":"ASSET16","index":"0.000011213830154915"},{"denom":"ASSET17","index":"0.000008871351161454"},{"denom":"ASSET18","index":"0.000003625142276595"},{"denom":"ASSET2","index":"0.000007680838181843"},{"denom":"ASSET3","index":"0.000002123796319816"},{"denom":"ASSET4","index":"0.000020514843977806"},{"denom":"ASSET5","index":"0.000001655567492872"},{"denom":"ASSET6","index":"0.000006676037052519"},{"denom":"ASSET7","index":"0.000010510115662832"},{"denom":"ASSET8","index":"0.000014407133239162"},{"denom":"ASSET9","index":"0.000006107008804836"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001563741356289"},{"denom":"ASSET1","index":"0.000013036816883138"},{"denom":"ASSET10","index":"0.000009082880828100"},{"denom":"ASSET11","index":"0.000012611783735587"},{"denom":"ASSET12","index":"0.000011356772924286"},{"denom":"ASSET13","index":"0.000003908472310400"},{"denom":"ASSET14","index":"0.000011781101207579"},{"denom":"ASSET15","index":"0.000008423480314776"},{"denom":"ASSET16","index":"0.000005872928997340"},{"denom":"ASSET17","index":"0.000004170681814362"},{"denom":"ASSET18","index":"0.000001986659911066"},{"denom":"ASSET2","index":"0.000003848558848473"},{"denom":"ASSET3","index":"0.000001125668219966"},{"denom":"ASSET4","index":"0.000010594814661429"},{"denom":"ASSET5","index":"0.000000873679247744"},{"denom":"ASSET6","index":"0.000003556392613548"},{"denom":"ASSET7","index":"0.000005446486121273"},{"denom":"ASSET8","index":"0.000007106793880903"},{"denom":"ASSET9","index":"0.000003069683843425"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003115193601728"},{"denom":"ASSET1","index":"0.000026433576226141"},{"denom":"ASSET10","index":"0.000021120836274624"},{"denom":"ASSET11","index":"0.000026274076149270"},{"denom":"ASSET12","index":"0.000025063206789151"},{"denom":"ASSET13","index":"0.000008253838888439"},{"denom":"ASSET14","index":"0.000024111622086359"},{"denom":"ASSET15","index":"0.000019020166052921"},{"denom":"ASSET16","index":"0.000011725264187843"},{"denom":"ASSET17","index":"0.000009210335248597"},{"denom":"ASSET18","index":"0.000003802618681808"},{"denom":"ASSET2","index":"0.000008007094168018"},{"denom":"ASSET3","index":"0.000002223045227271"},{"denom":"ASSET4","index":"0.000021430343290469"},{"denom":"ASSET5","index":"0.000001731871182363"},{"denom":"ASSET6","index":"0.000006989160352022"},{"denom":"ASSET7","index":"0.000010981276608696"},{"denom":"ASSET8","index":"0.000015004007461071"},{"denom":"ASSET9","index":"0.000006368316319391"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001688791638136"},{"denom":"ASSET1","index":"0.000014080258863939"},{"denom":"ASSET10","index":"0.000009809129194434"},{"denom":"ASSET11","index":"0.000013620783833550"},{"denom":"ASSET12","index":"0.000012265553395360"},{"denom":"ASSET13","index":"0.000004220322334414"},{"denom":"ASSET14","index":"0.000012723923918464"},{"denom":"ASSET15","index":"0.000009096721995874"},{"denom":"ASSET16","index":"0.000006342080828109"},{"denom":"ASSET17","index":"0.000004504180706554"},{"denom":"ASSET18","index":"0.000002144953146672"},{"denom":"ASSET2","index":"0.000004156260911908"},{"denom":"ASSET3","index":"0.000001214958013048"},{"denom":"ASSET4","index":"0.000011442695468341"},{"denom":"ASSET5","index":"0.000000943249221039"},{"denom":"ASSET6","index":"0.000003840371828516"},{"denom":"ASSET7","index":"0.000005881501290436"},{"denom":"ASSET8","index":"0.000007675221120608"},{"denom":"ASSET9","index":"0.000003314626361051"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003342989987813"},{"denom":"ASSET1","index":"0.000028363859076608"},{"denom":"ASSET10","index":"0.000022643596968544"},{"denom":"ASSET11","index":"0.000028187678804911"},{"denom":"ASSET12","index":"0.000026879157824253"},{"denom":"ASSET13","index":"0.000008853292918908"},{"denom":"ASSET14","index":"0.000025870927331183"},{"denom":"ASSET15","index":"0.000020395094195043"},{"denom":"ASSET16","index":"0.000012581780801373"},{"denom":"ASSET17","index":"0.000009877287329505"},{"denom":"ASSET18","index":"0.000004080927248291"},{"denom":"ASSET2","index":"0.000008590241612281"},{"denom":"ASSET3","index":"0.000002384972961476"},{"denom":"ASSET4","index":"0.000022995501297970"},{"denom":"ASSET5","index":"0.000001858071035633"},{"denom":"ASSET6","index":"0.000007500418590266"},{"denom":"ASSET7","index":"0.000011782462758670"},{"denom":"ASSET8","index":"0.000016095075530395"},{"denom":"ASSET9","index":"0.000006831506736707"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001571496317510"},{"denom":"ASSET1","index":"0.000013101483241955"},{"denom":"ASSET10","index":"0.000009127906315185"},{"denom":"ASSET11","index":"0.000012674221268720"},{"denom":"ASSET12","index":"0.000011413128948859"},{"denom":"ASSET13","index":"0.000003927726401627"},{"denom":"ASSET14","index":"0.000011839579408375"},{"denom":"ASSET15","index":"0.000008464899606481"},{"denom":"ASSET16","index":"0.000005901733523932"},{"denom":"ASSET17","index":"0.000004191468360414"},{"denom":"ASSET18","index":"0.000001996729506447"},{"denom":"ASSET2","index":"0.000003867268629536"},{"denom":"ASSET3","index":"0.000001131250124766"},{"denom":"ASSET4","index":"0.000010647059997798"},{"denom":"ASSET5","index":"0.000000878057844331"},{"denom":"ASSET6","index":"0.000003573906419993"},{"denom":"ASSET7","index":"0.000005473254280118"},{"denom":"ASSET8","index":"0.000007142132243950"},{"denom":"ASSET9","index":"0.000003084563647228"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003113134051861"},{"denom":"ASSET1","index":"0.000026415094552464"},{"denom":"ASSET10","index":"0.000021090707465492"},{"denom":"ASSET11","index":"0.000026251548228726"},{"denom":"ASSET12","index":"0.000025034408517114"},{"denom":"ASSET13","index":"0.000008245703890405"},{"denom":"ASSET14","index":"0.000024093200316600"},{"denom":"ASSET15","index":"0.000018995578271326"},{"denom":"ASSET16","index":"0.000011717396138812"},{"denom":"ASSET17","index":"0.000009199501798709"},{"denom":"ASSET18","index":"0.000003801350346824"},{"denom":"ASSET2","index":"0.000007999912620195"},{"denom":"ASSET3","index":"0.000002221641081089"},{"denom":"ASSET4","index":"0.000021415082747190"},{"denom":"ASSET5","index":"0.000001730738444371"},{"denom":"ASSET6","index":"0.000006985361363625"},{"denom":"ASSET7","index":"0.000010973556930807"},{"denom":"ASSET8","index":"0.000014990236718633"},{"denom":"ASSET9","index":"0.000006362695679170"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001486431692511"},{"denom":"ASSET1","index":"0.000012397696164316"},{"denom":"ASSET10","index":"0.000008637613387551"},{"denom":"ASSET11","index":"0.000011993186507636"},{"denom":"ASSET12","index":"0.000010799842650204"},{"denom":"ASSET13","index":"0.000003716482933529"},{"denom":"ASSET14","index":"0.000011203544902380"},{"denom":"ASSET15","index":"0.000008010260087670"},{"denom":"ASSET16","index":"0.000005584816956599"},{"denom":"ASSET17","index":"0.000003965970925374"},{"denom":"ASSET18","index":"0.000001889326540182"},{"denom":"ASSET2","index":"0.000003659157213720"},{"denom":"ASSET3","index":"0.000001070618372770"},{"denom":"ASSET4","index":"0.000010074793405297"},{"denom":"ASSET5","index":"0.000000830819234978"},{"denom":"ASSET6","index":"0.000003381410064224"},{"denom":"ASSET7","index":"0.000005179499895414"},{"denom":"ASSET8","index":"0.000006757975701421"},{"denom":"ASSET9","index":"0.000002918767283230"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003023961266495"},{"denom":"ASSET1","index":"0.000025674667559579"},{"denom":"ASSET10","index":"0.000020567435721356"},{"denom":"ASSET11","index":"0.000025532965784321"},{"denom":"ASSET12","index":"0.000024383768132692"},{"denom":"ASSET13","index":"0.000008022807352722"},{"denom":"ASSET14","index":"0.000023423766496233"},{"denom":"ASSET15","index":"0.000018512228577533"},{"denom":"ASSET16","index":"0.000011384524743973"},{"denom":"ASSET17","index":"0.000008960010456843"},{"denom":"ASSET18","index":"0.000003688974211121"},{"denom":"ASSET2","index":"0.000007780619396113"},{"denom":"ASSET3","index":"0.000002157718690670"},{"denom":"ASSET4","index":"0.000020813357966886"},{"denom":"ASSET5","index":"0.000001681323481152"},{"denom":"ASSET6","index":"0.000006783427048921"},{"denom":"ASSET7","index":"0.000010664665966441"},{"denom":"ASSET8","index":"0.000014584270248941"},{"denom":"ASSET9","index":"0.000006187655866052"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001789525520762"},{"denom":"ASSET1","index":"0.000014923544215299"},{"denom":"ASSET10","index":"0.000010397506905977"},{"denom":"ASSET11","index":"0.000014436898494348"},{"denom":"ASSET12","index":"0.000013000171779235"},{"denom":"ASSET13","index":"0.000004474200642702"},{"denom":"ASSET14","index":"0.000013486043818595"},{"denom":"ASSET15","index":"0.000009642393672833"},{"denom":"ASSET16","index":"0.000006722519347127"},{"denom":"ASSET17","index":"0.000004774389100140"},{"denom":"ASSET18","index":"0.000002273850196939"},{"denom":"ASSET2","index":"0.000004405342981073"},{"denom":"ASSET3","index":"0.000001288179849576"},{"denom":"ASSET4","index":"0.000012128232625798"},{"denom":"ASSET5","index":"0.000001000370297599"},{"denom":"ASSET6","index":"0.000004071112533615"},{"denom":"ASSET7","index":"0.000006234326262993"},{"denom":"ASSET8","index":"0.000008135261932908"},{"denom":"ASSET9","index":"0.000003514061787852"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003488279034648"},{"denom":"ASSET1","index":"0.000029592208548275"},{"denom":"ASSET10","index":"0.000023577626976592"},{"denom":"ASSET11","index":"0.000029395914355993"},{"denom":"ASSET12","index":"0.000028007798530295"},{"denom":"ASSET13","index":"0.000009231498766276"},{"denom":"ASSET14","index":"0.000026986732997785"},{"denom":"ASSET15","index":"0.000021244630549189"},{"denom":"ASSET16","index":"0.000013129960095172"},{"denom":"ASSET17","index":"0.000010292381952670"},{"denom":"ASSET18","index":"0.000004261641431672"},{"denom":"ASSET2","index":"0.000008958343988321"},{"denom":"ASSET3","index":"0.000002489657102823"},{"denom":"ASSET4","index":"0.000023991917258738"},{"denom":"ASSET5","index":"0.000001939742890351"},{"denom":"ASSET6","index":"0.000007829259808535"},{"denom":"ASSET7","index":"0.000012294264842111"},{"denom":"ASSET8","index":"0.000016782088113605"},{"denom":"ASSET9","index":"0.000007125719490615"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001504632489095"},{"denom":"ASSET1","index":"0.000012543084148708"},{"denom":"ASSET10","index":"0.000008738830231438"},{"denom":"ASSET11","index":"0.000012134501498699"},{"denom":"ASSET12","index":"0.000010926897843985"},{"denom":"ASSET13","index":"0.000003760573206331"},{"denom":"ASSET14","index":"0.000011335480493994"},{"denom":"ASSET15","index":"0.000008104451906425"},{"denom":"ASSET16","index":"0.000005650267962622"},{"denom":"ASSET17","index":"0.000004012577307899"},{"denom":"ASSET18","index":"0.000001911199106291"},{"denom":"ASSET2","index":"0.000003702780265705"},{"denom":"ASSET3","index":"0.000001083281631273"},{"denom":"ASSET4","index":"0.000010193733911157"},{"denom":"ASSET5","index":"0.000000840685682831"},{"denom":"ASSET6","index":"0.000003421207682886"},{"denom":"ASSET7","index":"0.000005240341290738"},{"denom":"ASSET8","index":"0.000006837711289210"},{"denom":"ASSET9","index":"0.000002953488070376"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003015423229771"},{"denom":"ASSET1","index":"0.000025588098096649"},{"denom":"ASSET10","index":"0.000020460473772645"},{"denom":"ASSET11","index":"0.000025438043766359"},{"denom":"ASSET12","index":"0.000024273358860204"},{"denom":"ASSET13","index":"0.000007991752317173"},{"denom":"ASSET14","index":"0.000023342063892494"},{"denom":"ASSET15","index":"0.000018422728556898"},{"denom":"ASSET16","index":"0.000011348811151398"},{"denom":"ASSET17","index":"0.000008919790197810"},{"denom":"ASSET18","index":"0.000003679502338318"},{"denom":"ASSET2","index":"0.000007752126098631"},{"denom":"ASSET3","index":"0.000002151933074669"},{"denom":"ASSET4","index":"0.000020744635257959"},{"denom":"ASSET5","index":"0.000001676458472807"},{"denom":"ASSET6","index":"0.000006763790928604"},{"denom":"ASSET7","index":"0.000010629564741383"},{"denom":"ASSET8","index":"0.000014527278079751"},{"denom":"ASSET9","index":"0.000006165283413682"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001790270882045"},{"denom":"ASSET1","index":"0.000014924962381265"},{"denom":"ASSET10","index":"0.000010398687848362"},{"denom":"ASSET11","index":"0.000014438353512768"},{"denom":"ASSET12","index":"0.000013001639266884"},{"denom":"ASSET13","index":"0.000004474427888377"},{"denom":"ASSET14","index":"0.000013487623477013"},{"denom":"ASSET15","index":"0.000009643475881721"},{"denom":"ASSET16","index":"0.000006723198012370"},{"denom":"ASSET17","index":"0.000004774888563278"},{"denom":"ASSET18","index":"0.000002274381117071"},{"denom":"ASSET2","index":"0.000004405715467922"},{"denom":"ASSET3","index":"0.000001288670212721"},{"denom":"ASSET4","index":"0.000012129616185469"},{"denom":"ASSET5","index":"0.000001000078046809"},{"denom":"ASSET6","index":"0.000004071523241162"},{"denom":"ASSET7","index":"0.000006235339827137"},{"denom":"ASSET8","index":"0.000008136175240279"},{"denom":"ASSET9","index":"0.000003514327977106"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003452635056994"},{"denom":"ASSET1","index":"0.000029280443630050"},{"denom":"ASSET10","index":"0.000023297581891953"},{"denom":"ASSET11","index":"0.000029078046899152"},{"denom":"ASSET12","index":"0.000027688393753974"},{"denom":"ASSET13","index":"0.000009130247174920"},{"denom":"ASSET14","index":"0.000026700258191979"},{"denom":"ASSET15","index":"0.000020998119885469"},{"denom":"ASSET16","index":"0.000012993858989816"},{"denom":"ASSET17","index":"0.000010174919177657"},{"denom":"ASSET18","index":"0.000004220034662939"},{"denom":"ASSET2","index":"0.000008861755768133"},{"denom":"ASSET3","index":"0.000002464736347038"},{"denom":"ASSET4","index":"0.000023740327943060"},{"denom":"ASSET5","index":"0.000001919615043943"},{"denom":"ASSET6","index":"0.000007749671229698"},{"denom":"ASSET7","index":"0.000012165961282812"},{"denom":"ASSET8","index":"0.000016598407083950"},{"denom":"ASSET9","index":"0.000007048985746822"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001835550145227"},{"denom":"ASSET1","index":"0.000015324623289081"},{"denom":"ASSET10","index":"0.000010676536631006"},{"denom":"ASSET11","index":"0.000014825027987456"},{"denom":"ASSET12","index":"0.000013348446318211"},{"denom":"ASSET13","index":"0.000004592576069005"},{"denom":"ASSET14","index":"0.000013848041619836"},{"denom":"ASSET15","index":"0.000009899388384035"},{"denom":"ASSET16","index":"0.000006901816574290"},{"denom":"ASSET17","index":"0.000004903435367793"},{"denom":"ASSET18","index":"0.000002335145446851"},{"denom":"ASSET2","index":"0.000004522262656184"},{"denom":"ASSET3","index":"0.000001321152019851"},{"denom":"ASSET4","index":"0.000012452875481226"},{"denom":"ASSET5","index":"0.000001025095544814"},{"denom":"ASSET6","index":"0.000004178097003954"},{"denom":"ASSET7","index":"0.000006402221272666"},{"denom":"ASSET8","index":"0.000008352493301969"},{"denom":"ASSET9","index":"0.000003608188289508"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003336473275634"},{"denom":"ASSET1","index":"0.000028284037775138"},{"denom":"ASSET10","index":"0.000022321061137243"},{"denom":"ASSET11","index":"0.000028041053149272"},{"denom":"ASSET12","index":"0.000026607048139233"},{"denom":"ASSET13","index":"0.000008795774551756"},{"denom":"ASSET14","index":"0.000025776026947277"},{"denom":"ASSET15","index":"0.000020150006768141"},{"denom":"ASSET16","index":"0.000012562977954735"},{"denom":"ASSET17","index":"0.000009778271060189"},{"denom":"ASSET18","index":"0.000004091528532498"},{"denom":"ASSET2","index":"0.000008544798017437"},{"denom":"ASSET3","index":"0.000002382883485470"},{"denom":"ASSET4","index":"0.000022934405116164"},{"denom":"ASSET5","index":"0.000001855148612588"},{"denom":"ASSET6","index":"0.000007498692848558"},{"denom":"ASSET7","index":"0.000011756140274513"},{"denom":"ASSET8","index":"0.000015991743254740"},{"denom":"ASSET9","index":"0.000006799136288961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001764742979644"},{"denom":"ASSET1","index":"0.000014715413525055"},{"denom":"ASSET10","index":"0.000010252344388411"},{"denom":"ASSET11","index":"0.000014235671854472"},{"denom":"ASSET12","index":"0.000012819403806098"},{"denom":"ASSET13","index":"0.000004411268809023"},{"denom":"ASSET14","index":"0.000013298556836595"},{"denom":"ASSET15","index":"0.000009507714678855"},{"denom":"ASSET16","index":"0.000006629264655353"},{"denom":"ASSET17","index":"0.000004707943412672"},{"denom":"ASSET18","index":"0.000002242718729968"},{"denom":"ASSET2","index":"0.000004343575199063"},{"denom":"ASSET3","index":"0.000001270873946982"},{"denom":"ASSET4","index":"0.000011958811999481"},{"denom":"ASSET5","index":"0.000000985972145064"},{"denom":"ASSET6","index":"0.000004013936750564"},{"denom":"ASSET7","index":"0.000006147757064510"},{"denom":"ASSET8","index":"0.000008021987100262"},{"denom":"ASSET9","index":"0.000003464735549761"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003371223111771"},{"denom":"ASSET1","index":"0.000028586584995448"},{"denom":"ASSET10","index":"0.000022716281614844"},{"denom":"ASSET11","index":"0.000028381809067472"},{"denom":"ASSET12","index":"0.000027011101270499"},{"denom":"ASSET13","index":"0.000008910504058238"},{"denom":"ASSET14","index":"0.000026065694327630"},{"denom":"ASSET15","index":"0.000020479714095343"},{"denom":"ASSET16","index":"0.000012688778091614"},{"denom":"ASSET17","index":"0.000009925875585388"},{"denom":"ASSET18","index":"0.000004122881217339"},{"denom":"ASSET2","index":"0.000008649339803247"},{"denom":"ASSET3","index":"0.000002407313457267"},{"denom":"ASSET4","index":"0.000023177863483423"},{"denom":"ASSET5","index":"0.000001874397047373"},{"denom":"ASSET6","index":"0.000007568278053481"},{"denom":"ASSET7","index":"0.000011878402488901"},{"denom":"ASSET8","index":"0.000016198768839280"},{"denom":"ASSET9","index":"0.000006880150170591"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001519402004985"},{"denom":"ASSET1","index":"0.000012669186594649"},{"denom":"ASSET10","index":"0.000008826466179926"},{"denom":"ASSET11","index":"0.000012255973562605"},{"denom":"ASSET12","index":"0.000011036700348729"},{"denom":"ASSET13","index":"0.000003798237040326"},{"denom":"ASSET14","index":"0.000011448841492233"},{"denom":"ASSET15","index":"0.000008185476833202"},{"denom":"ASSET16","index":"0.000005707270529482"},{"denom":"ASSET17","index":"0.000004053346512768"},{"denom":"ASSET18","index":"0.000001930471259949"},{"denom":"ASSET2","index":"0.000003739819114914"},{"denom":"ASSET3","index":"0.000001093862254735"},{"denom":"ASSET4","index":"0.000010296025367816"},{"denom":"ASSET5","index":"0.000000848935723420"},{"denom":"ASSET6","index":"0.000003455768651901"},{"denom":"ASSET7","index":"0.000005292985608899"},{"denom":"ASSET8","index":"0.000006906177861104"},{"denom":"ASSET9","index":"0.000002983065805906"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003090388166914"},{"denom":"ASSET1","index":"0.000026235396530584"},{"denom":"ASSET10","index":"0.000021016328726441"},{"denom":"ASSET11","index":"0.000026091077525301"},{"denom":"ASSET12","index":"0.000024916432469284"},{"denom":"ASSET13","index":"0.000008198423394567"},{"denom":"ASSET14","index":"0.000023935350029219"},{"denom":"ASSET15","index":"0.000018916111125702"},{"denom":"ASSET16","index":"0.000011633439861257"},{"denom":"ASSET17","index":"0.000009156707623184"},{"denom":"ASSET18","index":"0.000003769226369030"},{"denom":"ASSET2","index":"0.000007950992094695"},{"denom":"ASSET3","index":"0.000002205065882760"},{"denom":"ASSET4","index":"0.000021268551776440"},{"denom":"ASSET5","index":"0.000001717872208784"},{"denom":"ASSET6","index":"0.000006931889619894"},{"denom":"ASSET7","index":"0.000010897757198785"},{"denom":"ASSET8","index":"0.000014903243728132"},{"denom":"ASSET9","index":"0.000006323427167640"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001518878942956"},{"denom":"ASSET1","index":"0.000012665267621292"},{"denom":"ASSET10","index":"0.000008823986077449"},{"denom":"ASSET11","index":"0.000012252067733139"},{"denom":"ASSET12","index":"0.000011032961258059"},{"denom":"ASSET13","index":"0.000003796959064490"},{"denom":"ASSET14","index":"0.000011445207974612"},{"denom":"ASSET15","index":"0.000008182978177143"},{"denom":"ASSET16","index":"0.000005705208605625"},{"denom":"ASSET17","index":"0.000004051932467214"},{"denom":"ASSET18","index":"0.000001930172487911"},{"denom":"ASSET2","index":"0.000003738815596953"},{"denom":"ASSET3","index":"0.000001093764409816"},{"denom":"ASSET4","index":"0.000010292823511460"},{"denom":"ASSET5","index":"0.000000848799308881"},{"denom":"ASSET6","index":"0.000003454770460461"},{"denom":"ASSET7","index":"0.000005291055545873"},{"denom":"ASSET8","index":"0.000006904298477127"},{"denom":"ASSET9","index":"0.000002981997347372"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003032310940473"},{"denom":"ASSET1","index":"0.000025733484746235"},{"denom":"ASSET10","index":"0.000020566326171769"},{"denom":"ASSET11","index":"0.000025579130700492"},{"denom":"ASSET12","index":"0.000024402998631681"},{"denom":"ASSET13","index":"0.000008035434808363"},{"denom":"ASSET14","index":"0.000023473377840860"},{"denom":"ASSET15","index":"0.000018519821992016"},{"denom":"ASSET16","index":"0.000011413808805814"},{"denom":"ASSET17","index":"0.000008967671528488"},{"denom":"ASSET18","index":"0.000003701450923042"},{"denom":"ASSET2","index":"0.000007795399667781"},{"denom":"ASSET3","index":"0.000002164126947351"},{"denom":"ASSET4","index":"0.000020862528644023"},{"denom":"ASSET5","index":"0.000001685967393794"},{"denom":"ASSET6","index":"0.000006803442800114"},{"denom":"ASSET7","index":"0.000010689840259007"},{"denom":"ASSET8","index":"0.000014607710652032"},{"denom":"ASSET9","index":"0.000006199747658625"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001387661284101"},{"denom":"ASSET1","index":"0.000011573014587468"},{"denom":"ASSET10","index":"0.000008062929395432"},{"denom":"ASSET11","index":"0.000011195232526081"},{"denom":"ASSET12","index":"0.000010081345808669"},{"denom":"ASSET13","index":"0.000003469153210252"},{"denom":"ASSET14","index":"0.000010458456853962"},{"denom":"ASSET15","index":"0.000007477132344649"},{"denom":"ASSET16","index":"0.000005213124040705"},{"denom":"ASSET17","index":"0.000003702666811251"},{"denom":"ASSET18","index":"0.000001763430297203"},{"denom":"ASSET2","index":"0.000003416142938760"},{"denom":"ASSET3","index":"0.000000999142965196"},{"denom":"ASSET4","index":"0.000009404961585085"},{"denom":"ASSET5","index":"0.000000775694605619"},{"denom":"ASSET6","index":"0.000003156459710063"},{"denom":"ASSET7","index":"0.000004834670963223"},{"denom":"ASSET8","index":"0.000006308893323556"},{"denom":"ASSET9","index":"0.000002724996361089"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000002847838387483"},{"denom":"ASSET1","index":"0.000024182680336096"},{"denom":"ASSET10","index":"0.000019393227963423"},{"denom":"ASSET11","index":"0.000024054653395269"},{"denom":"ASSET12","index":"0.000022982316432831"},{"denom":"ASSET13","index":"0.000007558836235579"},{"denom":"ASSET14","index":"0.000022064079622497"},{"denom":"ASSET15","index":"0.000017450899901336"},{"denom":"ASSET16","index":"0.000010721434414440"},{"denom":"ASSET17","index":"0.000008446187739031"},{"denom":"ASSET18","index":"0.000003472449339717"},{"denom":"ASSET2","index":"0.000007330038539196"},{"denom":"ASSET3","index":"0.000002031951160271"},{"denom":"ASSET4","index":"0.000019603371773062"},{"denom":"ASSET5","index":"0.000001583403578691"},{"denom":"ASSET6","index":"0.000006387295602350"},{"denom":"ASSET7","index":"0.000010043914419286"},{"denom":"ASSET8","index":"0.000013741733556815"},{"denom":"ASSET9","index":"0.000005829813216311"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001740203165372"},{"denom":"ASSET1","index":"0.000014506985633466"},{"denom":"ASSET10","index":"0.000010106727386233"},{"denom":"ASSET11","index":"0.000014033828203465"},{"denom":"ASSET12","index":"0.000012637643303754"},{"denom":"ASSET13","index":"0.000004348390877948"},{"denom":"ASSET14","index":"0.000013109742216014"},{"denom":"ASSET15","index":"0.000009373174592071"},{"denom":"ASSET16","index":"0.000006535288529808"},{"denom":"ASSET17","index":"0.000004640541774324"},{"denom":"ASSET18","index":"0.000002210185042151"},{"denom":"ASSET2","index":"0.000004281704260297"},{"denom":"ASSET3","index":"0.000001252226487004"},{"denom":"ASSET4","index":"0.000011789770593618"},{"denom":"ASSET5","index":"0.000000971719285773"},{"denom":"ASSET6","index":"0.000003956739313965"},{"denom":"ASSET7","index":"0.000006060014064326"},{"denom":"ASSET8","index":"0.000007908186039228"},{"denom":"ASSET9","index":"0.000003415836748573"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003351161845380"},{"denom":"ASSET1","index":"0.000028416485386018"},{"denom":"ASSET10","index":"0.000022605276372189"},{"denom":"ASSET11","index":"0.000028218825237526"},{"denom":"ASSET12","index":"0.000026868556551399"},{"denom":"ASSET13","index":"0.000008859853422879"},{"denom":"ASSET14","index":"0.000025912194276628"},{"denom":"ASSET15","index":"0.000020375555431981"},{"denom":"ASSET16","index":"0.000012611404420708"},{"denom":"ASSET17","index":"0.000009873044520717"},{"denom":"ASSET18","index":"0.000004095473642305"},{"denom":"ASSET2","index":"0.000008599384819082"},{"denom":"ASSET3","index":"0.000002391571176633"},{"denom":"ASSET4","index":"0.000023040021162794"},{"denom":"ASSET5","index":"0.000001862805125681"},{"denom":"ASSET6","index":"0.000007520693553142"},{"denom":"ASSET7","index":"0.000011806544930596"},{"denom":"ASSET8","index":"0.000016107343127742"},{"denom":"ASSET9","index":"0.000006840485865179"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001711866379191"},{"denom":"ASSET1","index":"0.000014286095556473"},{"denom":"ASSET10","index":"0.000009953932372868"},{"denom":"ASSET11","index":"0.000013820467901333"},{"denom":"ASSET12","index":"0.000012444127332464"},{"denom":"ASSET13","index":"0.000004281948436482"},{"denom":"ASSET14","index":"0.000012909754987604"},{"denom":"ASSET15","index":"0.000009230383516596"},{"denom":"ASSET16","index":"0.000006434335097252"},{"denom":"ASSET17","index":"0.000004569541988186"},{"denom":"ASSET18","index":"0.000002177494034331"},{"denom":"ASSET2","index":"0.000004215756269820"},{"denom":"ASSET3","index":"0.000001232543793017"},{"denom":"ASSET4","index":"0.000011608736539419"},{"denom":"ASSET5","index":"0.000000956362683841"},{"denom":"ASSET6","index":"0.000003896207879038"},{"denom":"ASSET7","index":"0.000005968707442112"},{"denom":"ASSET8","index":"0.000007787850781065"},{"denom":"ASSET9","index":"0.000003362105568731"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003408995344605"},{"denom":"ASSET1","index":"0.000028940875589883"},{"denom":"ASSET10","index":"0.000023121939135123"},{"denom":"ASSET11","index":"0.000028765460883304"},{"denom":"ASSET12","index":"0.000027437813762181"},{"denom":"ASSET13","index":"0.000009035078182388"},{"denom":"ASSET14","index":"0.000026397840013038"},{"denom":"ASSET15","index":"0.000020822021063845"},{"denom":"ASSET16","index":"0.000012835900360827"},{"denom":"ASSET17","index":"0.000010082289518918"},{"denom":"ASSET18","index":"0.000004163537456367"},{"denom":"ASSET2","index":"0.000008764373535196"},{"denom":"ASSET3","index":"0.000002432999591430"},{"denom":"ASSET4","index":"0.000023461370966582"},{"denom":"ASSET5","index":"0.000001895172356369"},{"denom":"ASSET6","index":"0.000007651446569151"},{"denom":"ASSET7","index":"0.000012022926111771"},{"denom":"ASSET8","index":"0.000016426068411072"},{"denom":"ASSET9","index":"0.000006969965423669"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001459800105667"},{"denom":"ASSET1","index":"0.000012176396665923"},{"denom":"ASSET10","index":"0.000008484162206626"},{"denom":"ASSET11","index":"0.000011779823335110"},{"denom":"ASSET12","index":"0.000010607197020722"},{"denom":"ASSET13","index":"0.000003650070053435"},{"denom":"ASSET14","index":"0.000011003770351536"},{"denom":"ASSET15","index":"0.000007867650218206"},{"denom":"ASSET16","index":"0.000005484791497715"},{"denom":"ASSET17","index":"0.000003895079438851"},{"denom":"ASSET18","index":"0.000001855233857943"},{"denom":"ASSET2","index":"0.000003594230705131"},{"denom":"ASSET3","index":"0.000001050691410948"},{"denom":"ASSET4","index":"0.000009896100013746"},{"denom":"ASSET5","index":"0.000000815938232363"},{"denom":"ASSET6","index":"0.000003321871434831"},{"denom":"ASSET7","index":"0.000005087078588365"},{"denom":"ASSET8","index":"0.000006638044976977"},{"denom":"ASSET9","index":"0.000002867179598640"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000002975317591563"},{"denom":"ASSET1","index":"0.000025265738469637"},{"denom":"ASSET10","index":"0.000020245724387946"},{"denom":"ASSET11","index":"0.000025128558675417"},{"denom":"ASSET12","index":"0.000023998925764885"},{"denom":"ASSET13","index":"0.000007895668684136"},{"denom":"ASSET14","index":"0.000023051238668493"},{"denom":"ASSET15","index":"0.000018221178423268"},{"denom":"ASSET16","index":"0.000011202197653725"},{"denom":"ASSET17","index":"0.000008818540737002"},{"denom":"ASSET18","index":"0.000003629428323701"},{"denom":"ASSET2","index":"0.000007657107369447"},{"denom":"ASSET3","index":"0.000002122660280404"},{"denom":"ASSET4","index":"0.000020482509156357"},{"denom":"ASSET5","index":"0.000001654309607539"},{"denom":"ASSET6","index":"0.000006675356935536"},{"denom":"ASSET7","index":"0.000010494215679887"},{"denom":"ASSET8","index":"0.000014353927855523"},{"denom":"ASSET9","index":"0.000006089535217587"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001617402557586"},{"denom":"ASSET1","index":"0.000013485147451276"},{"denom":"ASSET10","index":"0.000009395521488362"},{"denom":"ASSET11","index":"0.000013045402724081"},{"denom":"ASSET12","index":"0.000011747619504798"},{"denom":"ASSET13","index":"0.000004042433845849"},{"denom":"ASSET14","index":"0.000012186291683878"},{"denom":"ASSET15","index":"0.000008713380887153"},{"denom":"ASSET16","index":"0.000006074912523982"},{"denom":"ASSET17","index":"0.000004313788518972"},{"denom":"ASSET18","index":"0.000002055002188551"},{"denom":"ASSET2","index":"0.000003980226055173"},{"denom":"ASSET3","index":"0.000001163714704894"},{"denom":"ASSET4","index":"0.000010959296640193"},{"denom":"ASSET5","index":"0.000000903085512923"},{"denom":"ASSET6","index":"0.000003677767486712"},{"denom":"ASSET7","index":"0.000005633022700557"},{"denom":"ASSET8","index":"0.000007351244780963"},{"denom":"ASSET9","index":"0.000003174742420725"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003091273620954"},{"denom":"ASSET1","index":"0.000026212594205506"},{"denom":"ASSET10","index":"0.000020831747389799"},{"denom":"ASSET11","index":"0.000026024829344923"},{"denom":"ASSET12","index":"0.000024768925461013"},{"denom":"ASSET13","index":"0.000008170539761157"},{"denom":"ASSET14","index":"0.000023900540063840"},{"denom":"ASSET15","index":"0.000018780610027247"},{"denom":"ASSET16","index":"0.000011634658240098"},{"denom":"ASSET17","index":"0.000009101405984603"},{"denom":"ASSET18","index":"0.000003780149264156"},{"denom":"ASSET2","index":"0.000007930960667726"},{"denom":"ASSET3","index":"0.000002206123035767"},{"denom":"ASSET4","index":"0.000021253166889363"},{"denom":"ASSET5","index":"0.000001718500807532"},{"denom":"ASSET6","index":"0.000006939076737962"},{"denom":"ASSET7","index":"0.000010891166816552"},{"denom":"ASSET8","index":"0.000014853628574871"},{"denom":"ASSET9","index":"0.000006308302102729"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001496654334782"},{"denom":"ASSET1","index":"0.000012477377024436"},{"denom":"ASSET10","index":"0.000008693096469902"},{"denom":"ASSET11","index":"0.000012070207597683"},{"denom":"ASSET12","index":"0.000010869145414891"},{"denom":"ASSET13","index":"0.000003740467488528"},{"denom":"ASSET14","index":"0.000011275146493218"},{"denom":"ASSET15","index":"0.000008061604145195"},{"denom":"ASSET16","index":"0.000005620924281527"},{"denom":"ASSET17","index":"0.000003991662400298"},{"denom":"ASSET18","index":"0.000001901487064682"},{"denom":"ASSET2","index":"0.000003683218415613"},{"denom":"ASSET3","index":"0.000001077217249546"},{"denom":"ASSET4","index":"0.000010139511822330"},{"denom":"ASSET5","index":"0.000000835953299404"},{"denom":"ASSET6","index":"0.000003403398967385"},{"denom":"ASSET7","index":"0.000005212586506346"},{"denom":"ASSET8","index":"0.000006801540366848"},{"denom":"ASSET9","index":"0.000002937812119289"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003012098530886"},{"denom":"ASSET1","index":"0.000025562058034330"},{"denom":"ASSET10","index":"0.000020450222858637"},{"denom":"ASSET11","index":"0.000025414193224582"},{"denom":"ASSET12","index":"0.000024256065084933"},{"denom":"ASSET13","index":"0.000007984561416691"},{"denom":"ASSET14","index":"0.000023318358139730"},{"denom":"ASSET15","index":"0.000018411259079989"},{"denom":"ASSET16","index":"0.000011336678183578"},{"denom":"ASSET17","index":"0.000008913774138499"},{"denom":"ASSET18","index":"0.000003674960609183"},{"denom":"ASSET2","index":"0.000007744948932800"},{"denom":"ASSET3","index":"0.000002148867969989"},{"denom":"ASSET4","index":"0.000020722540912428"},{"denom":"ASSET5","index":"0.000001674229864542"},{"denom":"ASSET6","index":"0.000006756080138401"},{"denom":"ASSET7","index":"0.000010618450136599"},{"denom":"ASSET8","index":"0.000014514789998911"},{"denom":"ASSET9","index":"0.000006159565713194"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001470615438656"},{"denom":"ASSET1","index":"0.000012263141624205"},{"denom":"ASSET10","index":"0.000008543710077270"},{"denom":"ASSET11","index":"0.000011863435889596"},{"denom":"ASSET12","index":"0.000010682701378752"},{"denom":"ASSET13","index":"0.000003676538596641"},{"denom":"ASSET14","index":"0.000011081935762259"},{"denom":"ASSET15","index":"0.000007923412026863"},{"denom":"ASSET16","index":"0.000005524234917004"},{"denom":"ASSET17","index":"0.000003923055223056"},{"denom":"ASSET18","index":"0.000001868907119959"},{"denom":"ASSET2","index":"0.000003619976464385"},{"denom":"ASSET3","index":"0.000001058654575392"},{"denom":"ASSET4","index":"0.000009965776352407"},{"denom":"ASSET5","index":"0.000000822036322121"},{"denom":"ASSET6","index":"0.000003345178771841"},{"denom":"ASSET7","index":"0.000005123115129088"},{"denom":"ASSET8","index":"0.000006685172681558"},{"denom":"ASSET9","index":"0.000002887496851669"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000002995147819628"},{"denom":"ASSET1","index":"0.000025426980115999"},{"denom":"ASSET10","index":"0.000020372034738960"},{"denom":"ASSET11","index":"0.000025287989623967"},{"denom":"ASSET12","index":"0.000024150599022202"},{"denom":"ASSET13","index":"0.000007946076587902"},{"denom":"ASSET14","index":"0.000023198024872944"},{"denom":"ASSET15","index":"0.000018335727027304"},{"denom":"ASSET16","index":"0.000011274635486105"},{"denom":"ASSET17","index":"0.000008875015361763"},{"denom":"ASSET18","index":"0.000003653177061349"},{"denom":"ASSET2","index":"0.000007706361997735"},{"denom":"ASSET3","index":"0.000002137037997503"},{"denom":"ASSET4","index":"0.000020612735071168"},{"denom":"ASSET5","index":"0.000001665450131859"},{"denom":"ASSET6","index":"0.000006718182222688"},{"denom":"ASSET7","index":"0.000010561635089256"},{"denom":"ASSET8","index":"0.000014445035982826"},{"denom":"ASSET9","index":"0.000006128513210961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001778581753434"},{"denom":"ASSET1","index":"0.000014888315804569"},{"denom":"ASSET10","index":"0.000010370885153828"},{"denom":"ASSET11","index":"0.000014404007158094"},{"denom":"ASSET12","index":"0.000012967781516823"},{"denom":"ASSET13","index":"0.000004458979607201"},{"denom":"ASSET14","index":"0.000013452090163298"},{"denom":"ASSET15","index":"0.000009619371736884"},{"denom":"ASSET16","index":"0.000006705169708956"},{"denom":"ASSET17","index":"0.000004759584973979"},{"denom":"ASSET18","index":"0.000002262890399909"},{"denom":"ASSET2","index":"0.000004392178414584"},{"denom":"ASSET3","index":"0.000001285922957882"},{"denom":"ASSET4","index":"0.000012099366012799"},{"denom":"ASSET5","index":"0.000000993667740182"},{"denom":"ASSET6","index":"0.000004058172451498"},{"denom":"ASSET7","index":"0.000006220861062481"},{"denom":"ASSET8","index":"0.000008116344902996"},{"denom":"ASSET9","index":"0.000003507062612406"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003356752793751"},{"denom":"ASSET1","index":"0.000028516406305775"},{"denom":"ASSET10","index":"0.000022616173055400"},{"denom":"ASSET11","index":"0.000028302061322789"},{"denom":"ASSET12","index":"0.000026910491325102"},{"denom":"ASSET13","index":"0.000008878873421079"},{"denom":"ASSET14","index":"0.000025995251505598"},{"denom":"ASSET15","index":"0.000020398635157595"},{"denom":"ASSET16","index":"0.000012658071469071"},{"denom":"ASSET17","index":"0.000009885849877285"},{"denom":"ASSET18","index":"0.000004110010202724"},{"denom":"ASSET2","index":"0.000008622285743228"},{"denom":"ASSET3","index":"0.000002402314047495"},{"denom":"ASSET4","index":"0.000023121698220749"},{"denom":"ASSET5","index":"0.000001866482592061"},{"denom":"ASSET6","index":"0.000007549939309511"},{"denom":"ASSET7","index":"0.000011851024307599"},{"denom":"ASSET8","index":"0.000016149793693754"},{"denom":"ASSET9","index":"0.000006862325287189"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001604942959288"},{"denom":"ASSET1","index":"0.000013380628695124"},{"denom":"ASSET10","index":"0.000009322365613635"},{"denom":"ASSET11","index":"0.000012944148427984"},{"denom":"ASSET12","index":"0.000011656280789193"},{"denom":"ASSET13","index":"0.000004011353995308"},{"denom":"ASSET14","index":"0.000012091757653420"},{"denom":"ASSET15","index":"0.000008645319498111"},{"denom":"ASSET16","index":"0.000006027692148913"},{"denom":"ASSET17","index":"0.000004280767677439"},{"denom":"ASSET18","index":"0.000002039165569874"},{"denom":"ASSET2","index":"0.000003949895566889"},{"denom":"ASSET3","index":"0.000001155418454280"},{"denom":"ASSET4","index":"0.000010873877367808"},{"denom":"ASSET5","index":"0.000000896791353463"},{"denom":"ASSET6","index":"0.000003649878095912"},{"denom":"ASSET7","index":"0.000005589957628131"},{"denom":"ASSET8","index":"0.000007294237475803"},{"denom":"ASSET9","index":"0.000003150685146712"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003200268554223"},{"denom":"ASSET1","index":"0.000027155061035589"},{"denom":"ASSET10","index":"0.000021699312128992"},{"denom":"ASSET11","index":"0.000026991580254755"},{"denom":"ASSET12","index":"0.000025748970079650"},{"denom":"ASSET13","index":"0.000008479073830121"},{"denom":"ASSET14","index":"0.000024769827936089"},{"denom":"ASSET15","index":"0.000019540730612944"},{"denom":"ASSET16","index":"0.000012044995213579"},{"denom":"ASSET17","index":"0.000009462424001901"},{"denom":"ASSET18","index":"0.000003906197580725"},{"denom":"ASSET2","index":"0.000008225756082433"},{"denom":"ASSET3","index":"0.000002283784004254"},{"denom":"ASSET4","index":"0.000022014648589339"},{"denom":"ASSET5","index":"0.000001779311895342"},{"denom":"ASSET6","index":"0.000007179475362032"},{"denom":"ASSET7","index":"0.000011280598785262"},{"denom":"ASSET8","index":"0.000015413911362487"},{"denom":"ASSET9","index":"0.000006542247148589"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001620184629837"},{"denom":"ASSET1","index":"0.000013508113244239"},{"denom":"ASSET10","index":"0.000009411159415052"},{"denom":"ASSET11","index":"0.000013068550109883"},{"denom":"ASSET12","index":"0.000011766766981214"},{"denom":"ASSET13","index":"0.000004049052718392"},{"denom":"ASSET14","index":"0.000012206330115570"},{"denom":"ASSET15","index":"0.000008726455301921"},{"denom":"ASSET16","index":"0.000006083441070987"},{"denom":"ASSET17","index":"0.000004319553108765"},{"denom":"ASSET18","index":"0.000002056930051793"},{"denom":"ASSET2","index":"0.000003987063045598"},{"denom":"ASSET3","index":"0.000001166532933482"},{"denom":"ASSET4","index":"0.000010977807509294"},{"denom":"ASSET5","index":"0.000000904485680309"},{"denom":"ASSET6","index":"0.000003682750106429"},{"denom":"ASSET7","index":"0.000005643877936631"},{"denom":"ASSET8","index":"0.000007362682500458"},{"denom":"ASSET9","index":"0.000003178379586880"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003154859072778"},{"denom":"ASSET1","index":"0.000026759958230198"},{"denom":"ASSET10","index":"0.000021318547828682"},{"denom":"ASSET11","index":"0.000026582778956839"},{"denom":"ASSET12","index":"0.000025324795995745"},{"denom":"ASSET13","index":"0.000008347309163095"},{"denom":"ASSET14","index":"0.000024403216779648"},{"denom":"ASSET15","index":"0.000019208461119321"},{"denom":"ASSET16","index":"0.000011872154646602"},{"denom":"ASSET17","index":"0.000009304429323264"},{"denom":"ASSET18","index":"0.000003853154066825"},{"denom":"ASSET2","index":"0.000008100524497579"},{"denom":"ASSET3","index":"0.000002251942800438"},{"denom":"ASSET4","index":"0.000021695917087147"},{"denom":"ASSET5","index":"0.000001753374642360"},{"denom":"ASSET6","index":"0.000007078305954632"},{"denom":"ASSET7","index":"0.000011118481739065"},{"denom":"ASSET8","index":"0.000015174129529137"},{"denom":"ASSET9","index":"0.000006441283498998"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001565910537906"},{"denom":"ASSET1","index":"0.000013053983025959"},{"denom":"ASSET10","index":"0.000009094819386579"},{"denom":"ASSET11","index":"0.000012628414118813"},{"denom":"ASSET12","index":"0.000011371841840295"},{"denom":"ASSET13","index":"0.000003913403541838"},{"denom":"ASSET14","index":"0.000011796953146466"},{"denom":"ASSET15","index":"0.000008434501179040"},{"denom":"ASSET16","index":"0.000005880630135191"},{"denom":"ASSET17","index":"0.000004176066501732"},{"denom":"ASSET18","index":"0.000001989191440174"},{"denom":"ASSET2","index":"0.000003853457814057"},{"denom":"ASSET3","index":"0.000001127071202473"},{"denom":"ASSET4","index":"0.000010608563413286"},{"denom":"ASSET5","index":"0.000000874933065013"},{"denom":"ASSET6","index":"0.000003561050790760"},{"denom":"ASSET7","index":"0.000005453688425119"},{"denom":"ASSET8","index":"0.000007116152768840"},{"denom":"ASSET9","index":"0.000003073705751932"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003066618221533"},{"denom":"ASSET1","index":"0.000026018563142658"},{"denom":"ASSET10","index":"0.000020743763118655"},{"denom":"ASSET11","index":"0.000025849025514444"},{"denom":"ASSET12","index":"0.000024635604575072"},{"denom":"ASSET13","index":"0.000008118261811936"},{"denom":"ASSET14","index":"0.000023728777879609"},{"denom":"ASSET15","index":"0.000018689177197382"},{"denom":"ASSET16","index":"0.000011544003668418"},{"denom":"ASSET17","index":"0.000009052167825210"},{"denom":"ASSET18","index":"0.000003745930402733"},{"denom":"ASSET2","index":"0.000007877080459743"},{"denom":"ASSET3","index":"0.000002188594145460"},{"denom":"ASSET4","index":"0.000021094338825720"},{"denom":"ASSET5","index":"0.000001705356613908"},{"denom":"ASSET6","index":"0.000006882744986340"},{"denom":"ASSET7","index":"0.000010809249072439"},{"denom":"ASSET8","index":"0.000014757775472241"},{"denom":"ASSET9","index":"0.000006264987011427"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001616793771814"},{"denom":"ASSET1","index":"0.000013481664806896"},{"denom":"ASSET10","index":"0.000009392973001731"},{"denom":"ASSET11","index":"0.000013042136425966"},{"denom":"ASSET12","index":"0.000011745108533466"},{"denom":"ASSET13","index":"0.000004041984429535"},{"denom":"ASSET14","index":"0.000012183439289380"},{"denom":"ASSET15","index":"0.000008710326742521"},{"denom":"ASSET16","index":"0.000006073156456940"},{"denom":"ASSET17","index":"0.000004312647683187"},{"denom":"ASSET18","index":"0.000002053926902712"},{"denom":"ASSET2","index":"0.000003979707928695"},{"denom":"ASSET3","index":"0.000001164091515706"},{"denom":"ASSET4","index":"0.000010955873647818"},{"denom":"ASSET5","index":"0.000000903009262183"},{"denom":"ASSET6","index":"0.000003677906424623"},{"denom":"ASSET7","index":"0.000005632430450993"},{"denom":"ASSET8","index":"0.000007349824724165"},{"denom":"ASSET9","index":"0.000003173706292820"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003010548827117"},{"denom":"ASSET1","index":"0.000025517681435823"},{"denom":"ASSET10","index":"0.000020207909525991"},{"denom":"ASSET11","index":"0.000025316824190850"},{"denom":"ASSET12","index":"0.000024059273468565"},{"denom":"ASSET13","index":"0.000007945703994160"},{"denom":"ASSET14","index":"0.000023261456497592"},{"denom":"ASSET15","index":"0.000018230653165683"},{"denom":"ASSET16","index":"0.000011330852554208"},{"denom":"ASSET17","index":"0.000008840468160143"},{"denom":"ASSET18","index":"0.000003685449036638"},{"denom":"ASSET2","index":"0.000007715875534239"},{"denom":"ASSET3","index":"0.000002150116713749"},{"denom":"ASSET4","index":"0.000020690763011385"},{"denom":"ASSET5","index":"0.000001674170167376"},{"denom":"ASSET6","index":"0.000006761947340508"},{"denom":"ASSET7","index":"0.000010605047135869"},{"denom":"ASSET8","index":"0.000014444866674878"},{"denom":"ASSET9","index":"0.000006137206230949"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001598496813351"},{"denom":"ASSET1","index":"0.000013327209301876"},{"denom":"ASSET10","index":"0.000009285082513510"},{"denom":"ASSET11","index":"0.000012892549064690"},{"denom":"ASSET12","index":"0.000011609910099638"},{"denom":"ASSET13","index":"0.000003995530641827"},{"denom":"ASSET14","index":"0.000012043503249499"},{"denom":"ASSET15","index":"0.000008611039019674"},{"denom":"ASSET16","index":"0.000006003788988106"},{"denom":"ASSET17","index":"0.000004263725256261"},{"denom":"ASSET18","index":"0.000002031022875886"},{"denom":"ASSET2","index":"0.000003933995272733"},{"denom":"ASSET3","index":"0.000001150675832486"},{"denom":"ASSET4","index":"0.000010830580656369"},{"denom":"ASSET5","index":"0.000000893152091305"},{"denom":"ASSET6","index":"0.000003635566517414"},{"denom":"ASSET7","index":"0.000005567705967820"},{"denom":"ASSET8","index":"0.000007265086206652"},{"denom":"ASSET9","index":"0.000003137948128033"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003202417698287"},{"denom":"ASSET1","index":"0.000027176874960756"},{"denom":"ASSET10","index":"0.000021729724210241"},{"denom":"ASSET11","index":"0.000027016578438308"},{"denom":"ASSET12","index":"0.000025779554956391"},{"denom":"ASSET13","index":"0.000008487649506725"},{"denom":"ASSET14","index":"0.000024790682929963"},{"denom":"ASSET15","index":"0.000019565798539307"},{"denom":"ASSET16","index":"0.000012053877846841"},{"denom":"ASSET17","index":"0.000009473617164606"},{"denom":"ASSET18","index":"0.000003908301251667"},{"denom":"ASSET2","index":"0.000008233254558201"},{"denom":"ASSET3","index":"0.000002285025567503"},{"denom":"ASSET4","index":"0.000022032200437673"},{"denom":"ASSET5","index":"0.000001780306156687"},{"denom":"ASSET6","index":"0.000007184182778940"},{"denom":"ASSET7","index":"0.000011289430429576"},{"denom":"ASSET8","index":"0.000015429251463912"},{"denom":"ASSET9","index":"0.000006548040900334"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001349258766758"},{"denom":"ASSET1","index":"0.000011264433664868"},{"denom":"ASSET10","index":"0.000007848225297969"},{"denom":"ASSET11","index":"0.000010895650990484"},{"denom":"ASSET12","index":"0.000009811385762205"},{"denom":"ASSET13","index":"0.000003376459336127"},{"denom":"ASSET14","index":"0.000010177960157102"},{"denom":"ASSET15","index":"0.000007278489190238"},{"denom":"ASSET16","index":"0.000005074626261883"},{"denom":"ASSET17","index":"0.000003603912123322"},{"denom":"ASSET18","index":"0.000001715833161655"},{"denom":"ASSET2","index":"0.000003323460628431"},{"denom":"ASSET3","index":"0.000000971642974425"},{"denom":"ASSET4","index":"0.000009153318474981"},{"denom":"ASSET5","index":"0.000000753023305179"},{"denom":"ASSET6","index":"0.000003071716766875"},{"denom":"ASSET7","index":"0.000004705843587499"},{"denom":"ASSET8","index":"0.000006139016974776"},{"denom":"ASSET9","index":"0.000002652143664283"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000002874619638549"},{"denom":"ASSET1","index":"0.000024442633186143"},{"denom":"ASSET10","index":"0.000019689737510784"},{"denom":"ASSET11","index":"0.000024334399718263"},{"denom":"ASSET12","index":"0.000023294058494145"},{"denom":"ASSET13","index":"0.000007650065286478"},{"denom":"ASSET14","index":"0.000022306974942610"},{"denom":"ASSET15","index":"0.000017702453996022"},{"denom":"ASSET16","index":"0.000010830667352685"},{"denom":"ASSET17","index":"0.000008561334956642"},{"denom":"ASSET18","index":"0.000003501743239949"},{"denom":"ASSET2","index":"0.000007413384379561"},{"denom":"ASSET3","index":"0.000002050775894848"},{"denom":"ASSET4","index":"0.000019811877393900"},{"denom":"ASSET5","index":"0.000001596563839644"},{"denom":"ASSET6","index":"0.000006447875450380"},{"denom":"ASSET7","index":"0.000010149425285061"},{"denom":"ASSET8","index":"0.000013906577801610"},{"denom":"ASSET9","index":"0.000005896530335304"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001744355646452"},{"denom":"ASSET1","index":"0.000014544558741461"},{"denom":"ASSET10","index":"0.000010133244841823"},{"denom":"ASSET11","index":"0.000014070651242217"},{"denom":"ASSET12","index":"0.000012670295178174"},{"denom":"ASSET13","index":"0.000004360461787457"},{"denom":"ASSET14","index":"0.000013143775348745"},{"denom":"ASSET15","index":"0.000009397812194213"},{"denom":"ASSET16","index":"0.000006552230555377"},{"denom":"ASSET17","index":"0.000004653181929010"},{"denom":"ASSET18","index":"0.000002216553831001"},{"denom":"ASSET2","index":"0.000004293371185670"},{"denom":"ASSET3","index":"0.000001255918972299"},{"denom":"ASSET4","index":"0.000011819911117312"},{"denom":"ASSET5","index":"0.000000974736704938"},{"denom":"ASSET6","index":"0.000003967319407560"},{"denom":"ASSET7","index":"0.000006076186412764"},{"denom":"ASSET8","index":"0.000007929083542361"},{"denom":"ASSET9","index":"0.000003424611991834"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003377008276018"},{"denom":"ASSET1","index":"0.000028642142456639"},{"denom":"ASSET10","index":"0.000022800592191853"},{"denom":"ASSET11","index":"0.000028447577997463"},{"denom":"ASSET12","index":"0.000027093635853923"},{"denom":"ASSET13","index":"0.000008933092474106"},{"denom":"ASSET14","index":"0.000026119259559896"},{"denom":"ASSET15","index":"0.000020548756595198"},{"denom":"ASSET16","index":"0.000012710670192565"},{"denom":"ASSET17","index":"0.000009956402105067"},{"denom":"ASSET18","index":"0.000004127475104327"},{"denom":"ASSET2","index":"0.000008669602227225"},{"denom":"ASSET3","index":"0.000002410895003349"},{"denom":"ASSET4","index":"0.000023222264254358"},{"denom":"ASSET5","index":"0.000001877874241403"},{"denom":"ASSET6","index":"0.000007579654674160"},{"denom":"ASSET7","index":"0.000011900488798179"},{"denom":"ASSET8","index":"0.000016239324105118"},{"denom":"ASSET9","index":"0.000006895771583569"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001546168277317"},{"denom":"ASSET1","index":"0.000012892123182452"},{"denom":"ASSET10","index":"0.000008982377260299"},{"denom":"ASSET11","index":"0.000012472337191477"},{"denom":"ASSET12","index":"0.000011231230783378"},{"denom":"ASSET13","index":"0.000003864117010091"},{"denom":"ASSET14","index":"0.000011651016774353"},{"denom":"ASSET15","index":"0.000008329231976204"},{"denom":"ASSET16","index":"0.000005807908663952"},{"denom":"ASSET17","index":"0.000004124853650448"},{"denom":"ASSET18","index":"0.000001964650585090"},{"denom":"ASSET2","index":"0.000003805451266010"},{"denom":"ASSET3","index":"0.000001113345454324"},{"denom":"ASSET4","index":"0.000010477701892746"},{"denom":"ASSET5","index":"0.000000863038279582"},{"denom":"ASSET6","index":"0.000003516033595214"},{"denom":"ASSET7","index":"0.000005385515306574"},{"denom":"ASSET8","index":"0.000007028156140823"},{"denom":"ASSET9","index":"0.000003034974493755"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003044385892570"},{"denom":"ASSET1","index":"0.000025830014188245"},{"denom":"ASSET10","index":"0.000020607856539150"},{"denom":"ASSET11","index":"0.000025666657138152"},{"denom":"ASSET12","index":"0.000024468008636658"},{"denom":"ASSET13","index":"0.000008060303383676"},{"denom":"ASSET14","index":"0.000023559408638801"},{"denom":"ASSET15","index":"0.000018562848593971"},{"denom":"ASSET16","index":"0.000011459854746185"},{"denom":"ASSET17","index":"0.000008991538648143"},{"denom":"ASSET18","index":"0.000003718456390600"},{"denom":"ASSET2","index":"0.000007821717005664"},{"denom":"ASSET3","index":"0.000002173111618200"},{"denom":"ASSET4","index":"0.000020942104557307"},{"denom":"ASSET5","index":"0.000001691598021351"},{"denom":"ASSET6","index":"0.000006831113312915"},{"denom":"ASSET7","index":"0.000010730587410374"},{"denom":"ASSET8","index":"0.000014654605067850"},{"denom":"ASSET9","index":"0.000006220578615076"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001387821916020"},{"denom":"ASSET1","index":"0.000011588015182905"},{"denom":"ASSET10","index":"0.000008073788013584"},{"denom":"ASSET11","index":"0.000011209789038410"},{"denom":"ASSET12","index":"0.000010095957715252"},{"denom":"ASSET13","index":"0.000003472532948668"},{"denom":"ASSET14","index":"0.000010471205701129"},{"denom":"ASSET15","index":"0.000007487090765824"},{"denom":"ASSET16","index":"0.000005220712057474"},{"denom":"ASSET17","index":"0.000003707807479495"},{"denom":"ASSET18","index":"0.000001766048060515"},{"denom":"ASSET2","index":"0.000003418926093543"},{"denom":"ASSET3","index":"0.000001000661295671"},{"denom":"ASSET4","index":"0.000009416937550333"},{"denom":"ASSET5","index":"0.000000774321240698"},{"denom":"ASSET6","index":"0.000003159826293771"},{"denom":"ASSET7","index":"0.000004839507754361"},{"denom":"ASSET8","index":"0.000006316674428923"},{"denom":"ASSET9","index":"0.000002727993294151"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000002956721491824"},{"denom":"ASSET1","index":"0.000025136116728129"},{"denom":"ASSET10","index":"0.000020247681325291"},{"denom":"ASSET11","index":"0.000025026479369709"},{"denom":"ASSET12","index":"0.000023957412844230"},{"denom":"ASSET13","index":"0.000007866588644670"},{"denom":"ASSET14","index":"0.000022940688787988"},{"denom":"ASSET15","index":"0.000018203641219753"},{"denom":"ASSET16","index":"0.000011138902531601"},{"denom":"ASSET17","index":"0.000008803888891481"},{"denom":"ASSET18","index":"0.000003602115317706"},{"denom":"ASSET2","index":"0.000007623974866010"},{"denom":"ASSET3","index":"0.000002110544057177"},{"denom":"ASSET4","index":"0.000020374365248917"},{"denom":"ASSET5","index":"0.000001641905652861"},{"denom":"ASSET6","index":"0.000006630874494768"},{"denom":"ASSET7","index":"0.000010436528568948"},{"denom":"ASSET8","index":"0.000014302572224422"},{"denom":"ASSET9","index":"0.000006063325997423"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001500850379058"},{"denom":"ASSET1","index":"0.000012511793460183"},{"denom":"ASSET10","index":"0.000008717304800227"},{"denom":"ASSET11","index":"0.000012103632089176"},{"denom":"ASSET12","index":"0.000010899320696303"},{"denom":"ASSET13","index":"0.000003750781099635"},{"denom":"ASSET14","index":"0.000011306809643305"},{"denom":"ASSET15","index":"0.000008083881387560"},{"denom":"ASSET16","index":"0.000005636258009526"},{"denom":"ASSET17","index":"0.000004002940101492"},{"denom":"ASSET18","index":"0.000001906322054045"},{"denom":"ASSET2","index":"0.000003692952635209"},{"denom":"ASSET3","index":"0.000001079912951956"},{"denom":"ASSET4","index":"0.000010167723378913"},{"denom":"ASSET5","index":"0.000000838512734178"},{"denom":"ASSET6","index":"0.000003412551825143"},{"denom":"ASSET7","index":"0.000005226751790509"},{"denom":"ASSET8","index":"0.000006820396682251"},{"denom":"ASSET9","index":"0.000002945889565704"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003004514310835"},{"denom":"ASSET1","index":"0.000025497942224476"},{"denom":"ASSET10","index":"0.000020385999177782"},{"denom":"ASSET11","index":"0.000025346802479017"},{"denom":"ASSET12","index":"0.000024185328023735"},{"denom":"ASSET13","index":"0.000007962788555043"},{"denom":"ASSET14","index":"0.000023259189454501"},{"denom":"ASSET15","index":"0.000018355567065709"},{"denom":"ASSET16","index":"0.000011309092459120"},{"denom":"ASSET17","index":"0.000008887662321727"},{"denom":"ASSET18","index":"0.000003666570499762"},{"denom":"ASSET2","index":"0.000007723995884874"},{"denom":"ASSET3","index":"0.000002143405494402"},{"denom":"ASSET4","index":"0.000020670641097733"},{"denom":"ASSET5","index":"0.000001670336124344"},{"denom":"ASSET6","index":"0.000006739845385808"},{"denom":"ASSET7","index":"0.000010591422556410"},{"denom":"ASSET8","index":"0.000014475095162856"},{"denom":"ASSET9","index":"0.000006143360978771"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001507842106347"},{"denom":"ASSET1","index":"0.000012572313391156"},{"denom":"ASSET10","index":"0.000008759356679472"},{"denom":"ASSET11","index":"0.000012162445176153"},{"denom":"ASSET12","index":"0.000010952151629736"},{"denom":"ASSET13","index":"0.000003769211161813"},{"denom":"ASSET14","index":"0.000011361231636633"},{"denom":"ASSET15","index":"0.000008123272738112"},{"denom":"ASSET16","index":"0.000005663669344042"},{"denom":"ASSET17","index":"0.000004022225963767"},{"denom":"ASSET18","index":"0.000001916133905138"},{"denom":"ASSET2","index":"0.000003711277866039"},{"denom":"ASSET3","index":"0.000001085756665704"},{"denom":"ASSET4","index":"0.000010217147571101"},{"denom":"ASSET5","index":"0.000000842594465073"},{"denom":"ASSET6","index":"0.000003429493468225"},{"denom":"ASSET7","index":"0.000005252224712828"},{"denom":"ASSET8","index":"0.000006853863583762"},{"denom":"ASSET9","index":"0.000002960115541236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003064659144392"},{"denom":"ASSET1","index":"0.000026014545525120"},{"denom":"ASSET10","index":"0.000020837902255895"},{"denom":"ASSET11","index":"0.000025870951889592"},{"denom":"ASSET12","index":"0.000024704995690840"},{"denom":"ASSET13","index":"0.000008129050348807"},{"denom":"ASSET14","index":"0.000023733606076391"},{"denom":"ASSET15","index":"0.000018755969892396"},{"denom":"ASSET16","index":"0.000011535737727926"},{"denom":"ASSET17","index":"0.000009078938038909"},{"denom":"ASSET18","index":"0.000003738223548700"},{"denom":"ASSET2","index":"0.000007883998416280"},{"denom":"ASSET3","index":"0.000002186926046113"},{"denom":"ASSET4","index":"0.000021089316501471"},{"denom":"ASSET5","index":"0.000001703791082418"},{"denom":"ASSET6","index":"0.000006873778950624"},{"denom":"ASSET7","index":"0.000010805665377904"},{"denom":"ASSET8","index":"0.000014777724141198"},{"denom":"ASSET9","index":"0.000006269886019705"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001016570122529"},{"denom":"ASSET1","index":"0.000008477171470527"},{"denom":"ASSET10","index":"0.000005906463519680"},{"denom":"ASSET11","index":"0.000008200989896911"},{"denom":"ASSET12","index":"0.000007384774710599"},{"denom":"ASSET13","index":"0.000002541117067960"},{"denom":"ASSET14","index":"0.000007660956284215"},{"denom":"ASSET15","index":"0.000005477395717812"},{"denom":"ASSET16","index":"0.000003819073322661"},{"denom":"ASSET17","index":"0.000002711881121289"},{"denom":"ASSET18","index":"0.000001291518742692"},{"denom":"ASSET2","index":"0.000002502279034170"},{"denom":"ASSET3","index":"0.000000731757874738"},{"denom":"ASSET4","index":"0.000006889127422234"},{"denom":"ASSET5","index":"0.000000567775065403"},{"denom":"ASSET6","index":"0.000002312404202309"},{"denom":"ASSET7","index":"0.000003541658795591"},{"denom":"ASSET8","index":"0.000004621109544256"},{"denom":"ASSET9","index":"0.000001996151641449"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000002499545170163"},{"denom":"ASSET1","index":"0.000021282413071401"},{"denom":"ASSET10","index":"0.000017412808765385"},{"denom":"ASSET11","index":"0.000021259874812403"},{"denom":"ASSET12","index":"0.000020486111882687"},{"denom":"ASSET13","index":"0.000006694303381301"},{"denom":"ASSET14","index":"0.000019446986985139"},{"denom":"ASSET15","index":"0.000015606004703242"},{"denom":"ASSET16","index":"0.000009412782427040"},{"denom":"ASSET17","index":"0.000007528963649123"},{"denom":"ASSET18","index":"0.000003027066879988"},{"denom":"ASSET2","index":"0.000006477094521478"},{"denom":"ASSET3","index":"0.000001780578331809"},{"denom":"ASSET4","index":"0.000017246051064985"},{"denom":"ASSET5","index":"0.000001387924123500"},{"denom":"ASSET6","index":"0.000005593713918003"},{"denom":"ASSET7","index":"0.000008831780754063"},{"denom":"ASSET8","index":"0.000012169406160300"},{"denom":"ASSET9","index":"0.000005149034362400"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001552339226368"},{"denom":"ASSET1","index":"0.000012948480372324"},{"denom":"ASSET10","index":"0.000009021431734191"},{"denom":"ASSET11","index":"0.000012526515146109"},{"denom":"ASSET12","index":"0.000011279099696349"},{"denom":"ASSET13","index":"0.000003880848065920"},{"denom":"ASSET14","index":"0.000011701064922564"},{"denom":"ASSET15","index":"0.000008365383608761"},{"denom":"ASSET16","index":"0.000005830512213323"},{"denom":"ASSET17","index":"0.000004142651308462"},{"denom":"ASSET18","index":"0.000001971224414436"},{"denom":"ASSET2","index":"0.000003822327341117"},{"denom":"ASSET3","index":"0.000001118053847563"},{"denom":"ASSET4","index":"0.000010521410312050"},{"denom":"ASSET5","index":"0.000000865490719463"},{"denom":"ASSET6","index":"0.000003529723717099"},{"denom":"ASSET7","index":"0.000005408546987108"},{"denom":"ASSET8","index":"0.000007056367396050"},{"denom":"ASSET9","index":"0.000003046157727933"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003043964098015"},{"denom":"ASSET1","index":"0.000025828331615061"},{"denom":"ASSET10","index":"0.000020594675215425"},{"denom":"ASSET11","index":"0.000025661520704142"},{"denom":"ASSET12","index":"0.000024456429429906"},{"denom":"ASSET13","index":"0.000008058244190043"},{"denom":"ASSET14","index":"0.000023555461855486"},{"denom":"ASSET15","index":"0.000018552812657155"},{"denom":"ASSET16","index":"0.000011456604402492"},{"denom":"ASSET17","index":"0.000008987560143691"},{"denom":"ASSET18","index":"0.000003716794339222"},{"denom":"ASSET2","index":"0.000007820148034807"},{"denom":"ASSET3","index":"0.000002173135080244"},{"denom":"ASSET4","index":"0.000020938599170426"},{"denom":"ASSET5","index":"0.000001690207511083"},{"denom":"ASSET6","index":"0.000006829800145738"},{"denom":"ASSET7","index":"0.000010729300481432"},{"denom":"ASSET8","index":"0.000014648719853803"},{"denom":"ASSET9","index":"0.000006217447736766"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000000977108719668"},{"denom":"ASSET1","index":"0.000008146517162771"},{"denom":"ASSET10","index":"0.000005675852121603"},{"denom":"ASSET11","index":"0.000007881108738917"},{"denom":"ASSET12","index":"0.000007096716963958"},{"denom":"ASSET13","index":"0.000002441926549413"},{"denom":"ASSET14","index":"0.000007362125387813"},{"denom":"ASSET15","index":"0.000005263370239944"},{"denom":"ASSET16","index":"0.000003670074447059"},{"denom":"ASSET17","index":"0.000002605905002368"},{"denom":"ASSET18","index":"0.000001241671893765"},{"denom":"ASSET2","index":"0.000002404735560083"},{"denom":"ASSET3","index":"0.000000703247798239"},{"denom":"ASSET4","index":"0.000006620841350486"},{"denom":"ASSET5","index":"0.000000546031343344"},{"denom":"ASSET6","index":"0.000002222161612464"},{"denom":"ASSET7","index":"0.000003402975523689"},{"denom":"ASSET8","index":"0.000004440942225898"},{"denom":"ASSET9","index":"0.000001917871699764"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000002320380931676"},{"denom":"ASSET1","index":"0.000019748951316256"},{"denom":"ASSET10","index":"0.000016101172379351"},{"denom":"ASSET11","index":"0.000019714000020718"},{"denom":"ASSET12","index":"0.000018967805559844"},{"denom":"ASSET13","index":"0.000006204998608741"},{"denom":"ASSET14","index":"0.000018041457784230"},{"denom":"ASSET15","index":"0.000014440911570898"},{"denom":"ASSET16","index":"0.000008738221404310"},{"denom":"ASSET17","index":"0.000006970584758543"},{"denom":"ASSET18","index":"0.000002814127990287"},{"denom":"ASSET2","index":"0.000006006105656449"},{"denom":"ASSET3","index":"0.000001653724297068"},{"denom":"ASSET4","index":"0.000016005284799403"},{"denom":"ASSET5","index":"0.000001288969102308"},{"denom":"ASSET6","index":"0.000005195185892122"},{"denom":"ASSET7","index":"0.000008196101819524"},{"denom":"ASSET8","index":"0.000011280171312915"},{"denom":"ASSET9","index":"0.000004774394171461"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001745798220012"},{"denom":"ASSET1","index":"0.000014553743296829"},{"denom":"ASSET10","index":"0.000010139438249561"},{"denom":"ASSET11","index":"0.000014079320164724"},{"denom":"ASSET12","index":"0.000012678243118663"},{"denom":"ASSET13","index":"0.000004363016060013"},{"denom":"ASSET14","index":"0.000013152173087429"},{"denom":"ASSET15","index":"0.000009403145384454"},{"denom":"ASSET16","index":"0.000006556113428486"},{"denom":"ASSET17","index":"0.000004655955083371"},{"denom":"ASSET18","index":"0.000002217755535422"},{"denom":"ASSET2","index":"0.000004295945845911"},{"denom":"ASSET3","index":"0.000001256580187737"},{"denom":"ASSET4","index":"0.000011827536358912"},{"denom":"ASSET5","index":"0.000000975477084515"},{"denom":"ASSET6","index":"0.000003969964878841"},{"denom":"ASSET7","index":"0.000006080210806364"},{"denom":"ASSET8","index":"0.000007934011797614"},{"denom":"ASSET9","index":"0.000003426498879278"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003342998947188"},{"denom":"ASSET1","index":"0.000028345782457833"},{"denom":"ASSET10","index":"0.000022532322238539"},{"denom":"ASSET11","index":"0.000028144588841629"},{"denom":"ASSET12","index":"0.000026788988923046"},{"denom":"ASSET13","index":"0.000008836278349189"},{"denom":"ASSET14","index":"0.000025846526421467"},{"denom":"ASSET15","index":"0.000020312521464953"},{"denom":"ASSET16","index":"0.000012581099317360"},{"denom":"ASSET17","index":"0.000009844015126225"},{"denom":"ASSET18","index":"0.000004087085525414"},{"denom":"ASSET2","index":"0.000008577030596387"},{"denom":"ASSET3","index":"0.000002386540105172"},{"denom":"ASSET4","index":"0.000022982635628207"},{"denom":"ASSET5","index":"0.000001858980311097"},{"denom":"ASSET6","index":"0.000007503977785171"},{"denom":"ASSET7","index":"0.000011778054778213"},{"denom":"ASSET8","index":"0.000016064148587518"},{"denom":"ASSET9","index":"0.000006822246648031"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001535240763659"},{"denom":"ASSET1","index":"0.000012802535686671"},{"denom":"ASSET10","index":"0.000008918976928097"},{"denom":"ASSET11","index":"0.000012384847277788"},{"denom":"ASSET12","index":"0.000011152366284839"},{"denom":"ASSET13","index":"0.000003838101909148"},{"denom":"ASSET14","index":"0.000011569197017318"},{"denom":"ASSET15","index":"0.000008271431242866"},{"denom":"ASSET16","index":"0.000005767016142371"},{"denom":"ASSET17","index":"0.000004095404830432"},{"denom":"ASSET18","index":"0.000001951213819735"},{"denom":"ASSET2","index":"0.000003778922237253"},{"denom":"ASSET3","index":"0.000001105544885116"},{"denom":"ASSET4","index":"0.000010403614783903"},{"denom":"ASSET5","index":"0.000000857676404279"},{"denom":"ASSET6","index":"0.000003491600641819"},{"denom":"ASSET7","index":"0.000005348470057083"},{"denom":"ASSET8","index":"0.000006978912901618"},{"denom":"ASSET9","index":"0.000003013874884636"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003086246918243"},{"denom":"ASSET1","index":"0.000026194228204796"},{"denom":"ASSET10","index":"0.000020951998769875"},{"denom":"ASSET11","index":"0.000026042273492864"},{"denom":"ASSET12","index":"0.000024853724280460"},{"denom":"ASSET13","index":"0.000008181454895403"},{"denom":"ASSET14","index":"0.000023895275980533"},{"denom":"ASSET15","index":"0.000018864347888264"},{"denom":"ASSET16","index":"0.000011616907749245"},{"denom":"ASSET17","index":"0.000009133094250657"},{"denom":"ASSET18","index":"0.000003766346411006"},{"denom":"ASSET2","index":"0.000007935833032906"},{"denom":"ASSET3","index":"0.000002202232138461"},{"denom":"ASSET4","index":"0.000021234941701767"},{"denom":"ASSET5","index":"0.000001715417631736"},{"denom":"ASSET6","index":"0.000006923101305069"},{"denom":"ASSET7","index":"0.000010881195638563"},{"denom":"ASSET8","index":"0.000014873239564067"},{"denom":"ASSET9","index":"0.000006310901439146"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001694764141112"},{"denom":"ASSET1","index":"0.000014130580032100"},{"denom":"ASSET10","index":"0.000009844524497723"},{"denom":"ASSET11","index":"0.000013669508873851"},{"denom":"ASSET12","index":"0.000012309527666765"},{"denom":"ASSET13","index":"0.000004236016804025"},{"denom":"ASSET14","index":"0.000012769407426673"},{"denom":"ASSET15","index":"0.000009129685492685"},{"denom":"ASSET16","index":"0.000006365641339869"},{"denom":"ASSET17","index":"0.000004520761007698"},{"denom":"ASSET18","index":"0.000002153452502679"},{"denom":"ASSET2","index":"0.000004171085594400"},{"denom":"ASSET3","index":"0.000001219991901933"},{"denom":"ASSET4","index":"0.000011483292916774"},{"denom":"ASSET5","index":"0.000000947161681676"},{"denom":"ASSET6","index":"0.000003854173635500"},{"denom":"ASSET7","index":"0.000005903378783277"},{"denom":"ASSET8","index":"0.000007702985978462"},{"denom":"ASSET9","index":"0.000003326979869284"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003333609736915"},{"denom":"ASSET1","index":"0.000028281729059652"},{"denom":"ASSET10","index":"0.000022560289398652"},{"denom":"ASSET11","index":"0.000028101042421314"},{"denom":"ASSET12","index":"0.000026787599659919"},{"denom":"ASSET13","index":"0.000008826015241086"},{"denom":"ASSET14","index":"0.000025794402991537"},{"denom":"ASSET15","index":"0.000020323143219667"},{"denom":"ASSET16","index":"0.000012547562311789"},{"denom":"ASSET17","index":"0.000009844220733470"},{"denom":"ASSET18","index":"0.000004071528772633"},{"denom":"ASSET2","index":"0.000008563776406339"},{"denom":"ASSET3","index":"0.000002379222276435"},{"denom":"ASSET4","index":"0.000022929058250150"},{"denom":"ASSET5","index":"0.000001853699834530"},{"denom":"ASSET6","index":"0.000007480326246914"},{"denom":"ASSET7","index":"0.000011749530638760"},{"denom":"ASSET8","index":"0.000016044906214881"},{"denom":"ASSET9","index":"0.000006811209452101"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001763265776240"},{"denom":"ASSET1","index":"0.000014701143889842"},{"denom":"ASSET10","index":"0.000010242267715158"},{"denom":"ASSET11","index":"0.000014221824092125"},{"denom":"ASSET12","index":"0.000012807154532407"},{"denom":"ASSET13","index":"0.000004407037513175"},{"denom":"ASSET14","index":"0.000013285723045174"},{"denom":"ASSET15","index":"0.000009498495615253"},{"denom":"ASSET16","index":"0.000006622576828953"},{"denom":"ASSET17","index":"0.000004703043783239"},{"denom":"ASSET18","index":"0.000002240331719108"},{"denom":"ASSET2","index":"0.000004339421867729"},{"denom":"ASSET3","index":"0.000001269671564485"},{"denom":"ASSET4","index":"0.000011947684550294"},{"denom":"ASSET5","index":"0.000000984934568662"},{"denom":"ASSET6","index":"0.000004010359059893"},{"denom":"ASSET7","index":"0.000006141754461338"},{"denom":"ASSET8","index":"0.000008013956555240"},{"denom":"ASSET9","index":"0.000003461169761882"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003372790294110"},{"denom":"ASSET1","index":"0.000028600279733511"},{"denom":"ASSET10","index":"0.000022731421090197"},{"denom":"ASSET11","index":"0.000028396190348540"},{"denom":"ASSET12","index":"0.000027027392524280"},{"denom":"ASSET13","index":"0.000008915082315276"},{"denom":"ASSET14","index":"0.000026078776667620"},{"denom":"ASSET15","index":"0.000020492230414373"},{"denom":"ASSET16","index":"0.000012694274413467"},{"denom":"ASSET17","index":"0.000009931274832025"},{"denom":"ASSET18","index":"0.000004123939856338"},{"denom":"ASSET2","index":"0.000008653658587521"},{"denom":"ASSET3","index":"0.000002407864000528"},{"denom":"ASSET4","index":"0.000023189126720885"},{"denom":"ASSET5","index":"0.000001875419633234"},{"denom":"ASSET6","index":"0.000007571725921487"},{"denom":"ASSET7","index":"0.000011883748947250"},{"denom":"ASSET8","index":"0.000016207221904670"},{"denom":"ASSET9","index":"0.000006883201227023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001453309126336"},{"denom":"ASSET1","index":"0.000012116886392617"},{"denom":"ASSET10","index":"0.000008441923956558"},{"denom":"ASSET11","index":"0.000011721955689254"},{"denom":"ASSET12","index":"0.000010555542874101"},{"denom":"ASSET13","index":"0.000003632376264868"},{"denom":"ASSET14","index":"0.000010950025301978"},{"denom":"ASSET15","index":"0.000007829131366891"},{"denom":"ASSET16","index":"0.000005458650595742"},{"denom":"ASSET17","index":"0.000003876686404859"},{"denom":"ASSET18","index":"0.000001846446727754"},{"denom":"ASSET2","index":"0.000003576790104576"},{"denom":"ASSET3","index":"0.000001046274984845"},{"denom":"ASSET4","index":"0.000009847267605868"},{"denom":"ASSET5","index":"0.000000812275181037"},{"denom":"ASSET6","index":"0.000003305135159925"},{"denom":"ASSET7","index":"0.000005061926790434"},{"denom":"ASSET8","index":"0.000006605339289501"},{"denom":"ASSET9","index":"0.000002852825194325"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000002846126280344"},{"denom":"ASSET1","index":"0.000024142729904188"},{"denom":"ASSET10","index":"0.000019247649074564"},{"denom":"ASSET11","index":"0.000023985879136349"},{"denom":"ASSET12","index":"0.000022859091275790"},{"denom":"ASSET13","index":"0.000007532792628817"},{"denom":"ASSET14","index":"0.000022018595952129"},{"denom":"ASSET15","index":"0.000017341431925331"},{"denom":"ASSET16","index":"0.000010711928951149"},{"denom":"ASSET17","index":"0.000008400535387767"},{"denom":"ASSET18","index":"0.000003476353193421"},{"denom":"ASSET2","index":"0.000007309791035362"},{"denom":"ASSET3","index":"0.000002031285314481"},{"denom":"ASSET4","index":"0.000019573873127075"},{"denom":"ASSET5","index":"0.000001582650339951"},{"denom":"ASSET6","index":"0.000006386635795582"},{"denom":"ASSET7","index":"0.000010030235680714"},{"denom":"ASSET8","index":"0.000013694243666513"},{"denom":"ASSET9","index":"0.000005813799926422"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001542334439671"},{"denom":"ASSET1","index":"0.000012860022908304"},{"denom":"ASSET10","index":"0.000008959505058412"},{"denom":"ASSET11","index":"0.000012440701863130"},{"denom":"ASSET12","index":"0.000011202637482986"},{"denom":"ASSET13","index":"0.000003855293405849"},{"denom":"ASSET14","index":"0.000011621234937056"},{"denom":"ASSET15","index":"0.000008308996655285"},{"denom":"ASSET16","index":"0.000005793070384239"},{"denom":"ASSET17","index":"0.000004114339021332"},{"denom":"ASSET18","index":"0.000001959846507084"},{"denom":"ASSET2","index":"0.000003796320730815"},{"denom":"ASSET3","index":"0.000001110350550164"},{"denom":"ASSET4","index":"0.000010450826325201"},{"denom":"ASSET5","index":"0.000000861797005699"},{"denom":"ASSET6","index":"0.000003507969675592"},{"denom":"ASSET7","index":"0.000005372663952407"},{"denom":"ASSET8","index":"0.000007010512417899"},{"denom":"ASSET9","index":"0.000003027866977623"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003036454064443"},{"denom":"ASSET1","index":"0.000025762443856573"},{"denom":"ASSET10","index":"0.000020552854458451"},{"denom":"ASSET11","index":"0.000025598594042577"},{"denom":"ASSET12","index":"0.000024403233064712"},{"denom":"ASSET13","index":"0.000008040226829205"},{"denom":"ASSET14","index":"0.000023496526683137"},{"denom":"ASSET15","index":"0.000018514610345002"},{"denom":"ASSET16","index":"0.000011429420030088"},{"denom":"ASSET17","index":"0.000008967792958730"},{"denom":"ASSET18","index":"0.000003708688180539"},{"denom":"ASSET2","index":"0.000007801450355100"},{"denom":"ASSET3","index":"0.000002167197324698"},{"denom":"ASSET4","index":"0.000020886439041228"},{"denom":"ASSET5","index":"0.000001688395026424"},{"denom":"ASSET6","index":"0.000006814112030993"},{"denom":"ASSET7","index":"0.000010703097412338"},{"denom":"ASSET8","index":"0.000014616213118562"},{"denom":"ASSET9","index":"0.000006204650488693"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001802604811891"},{"denom":"ASSET1","index":"0.000015041134377282"},{"denom":"ASSET10","index":"0.000010478421042795"},{"denom":"ASSET11","index":"0.000014549893343095"},{"denom":"ASSET12","index":"0.000013101148598203"},{"denom":"ASSET13","index":"0.000004508593559534"},{"denom":"ASSET14","index":"0.000013592389632390"},{"denom":"ASSET15","index":"0.000009716581133843"},{"denom":"ASSET16","index":"0.000006773297988330"},{"denom":"ASSET17","index":"0.000004812496911192"},{"denom":"ASSET18","index":"0.000002289682786467"},{"denom":"ASSET2","index":"0.000004437821546134"},{"denom":"ASSET3","index":"0.000001298874598869"},{"denom":"ASSET4","index":"0.000012222743020122"},{"denom":"ASSET5","index":"0.000001007460426045"},{"denom":"ASSET6","index":"0.000004100613717582"},{"denom":"ASSET7","index":"0.000006282056954143"},{"denom":"ASSET8","index":"0.000008197064375552"},{"denom":"ASSET9","index":"0.000003538600669994"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003500919125422"},{"denom":"ASSET1","index":"0.000029708744113596"},{"denom":"ASSET10","index":"0.000023658219501850"},{"denom":"ASSET11","index":"0.000029508250092955"},{"denom":"ASSET12","index":"0.000028107871580940"},{"denom":"ASSET13","index":"0.000009266072102552"},{"denom":"ASSET14","index":"0.000027092614384257"},{"denom":"ASSET15","index":"0.000021318431245277"},{"denom":"ASSET16","index":"0.000013180724612002"},{"denom":"ASSET17","index":"0.000010330094773179"},{"denom":"ASSET18","index":"0.000004277644880979"},{"denom":"ASSET2","index":"0.000008990842831989"},{"denom":"ASSET3","index":"0.000002500335792843"},{"denom":"ASSET4","index":"0.000024086210482120"},{"denom":"ASSET5","index":"0.000001946754653173"},{"denom":"ASSET6","index":"0.000007858889858659"},{"denom":"ASSET7","index":"0.000012341576470869"},{"denom":"ASSET8","index":"0.000016843078118646"},{"denom":"ASSET9","index":"0.000007150129263591"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001563811170888"},{"denom":"ASSET1","index":"0.000013038374863878"},{"denom":"ASSET10","index":"0.000009083864212622"},{"denom":"ASSET11","index":"0.000012612362006834"},{"denom":"ASSET12","index":"0.000011358137819015"},{"denom":"ASSET13","index":"0.000003908204905926"},{"denom":"ASSET14","index":"0.000011781504633469"},{"denom":"ASSET15","index":"0.000008423676586333"},{"denom":"ASSET16","index":"0.000005872891529250"},{"denom":"ASSET17","index":"0.000004170163122369"},{"denom":"ASSET18","index":"0.000001987177985342"},{"denom":"ASSET2","index":"0.000003848668947643"},{"denom":"ASSET3","index":"0.000001125891122188"},{"denom":"ASSET4","index":"0.000010596077552999"},{"denom":"ASSET5","index":"0.000000873194054811"},{"denom":"ASSET6","index":"0.000003556281241411"},{"denom":"ASSET7","index":"0.000005446878672206"},{"denom":"ASSET8","index":"0.000007107270397641"},{"denom":"ASSET9","index":"0.000003069409404789"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003311345528520"},{"denom":"ASSET1","index":"0.000028134750769747"},{"denom":"ASSET10","index":"0.000022648872120201"},{"denom":"ASSET11","index":"0.000028007957662740"},{"denom":"ASSET12","index":"0.000026803793052874"},{"denom":"ASSET13","index":"0.000008804941803873"},{"denom":"ASSET14","index":"0.000025676450668466"},{"denom":"ASSET15","index":"0.000020365161363483"},{"denom":"ASSET16","index":"0.000012467103206876"},{"denom":"ASSET17","index":"0.000009848512066991"},{"denom":"ASSET18","index":"0.000004032794375330"},{"denom":"ASSET2","index":"0.000008534928074651"},{"denom":"ASSET3","index":"0.000002362590241163"},{"denom":"ASSET4","index":"0.000022806063702805"},{"denom":"ASSET5","index":"0.000001840254083448"},{"denom":"ASSET6","index":"0.000007424521355960"},{"denom":"ASSET7","index":"0.000011683846998076"},{"denom":"ASSET8","index":"0.000016006498096466"},{"denom":"ASSET9","index":"0.000006786333067798"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001600184479142"},{"denom":"ASSET1","index":"0.000013342157474081"},{"denom":"ASSET10","index":"0.000009295060662992"},{"denom":"ASSET11","index":"0.000012907134644369"},{"denom":"ASSET12","index":"0.000011622469236023"},{"denom":"ASSET13","index":"0.000003999732516397"},{"denom":"ASSET14","index":"0.000012056763384279"},{"denom":"ASSET15","index":"0.000008620301633991"},{"denom":"ASSET16","index":"0.000006010164655719"},{"denom":"ASSET17","index":"0.000004268615973958"},{"denom":"ASSET18","index":"0.000002033021264483"},{"denom":"ASSET2","index":"0.000003938523274026"},{"denom":"ASSET3","index":"0.000001152045383207"},{"denom":"ASSET4","index":"0.000010842780077243"},{"denom":"ASSET5","index":"0.000000894092147498"},{"denom":"ASSET6","index":"0.000003639035195279"},{"denom":"ASSET7","index":"0.000005573684463094"},{"denom":"ASSET8","index":"0.000007272969620361"},{"denom":"ASSET9","index":"0.000003141345760282"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003037978324998"},{"denom":"ASSET1","index":"0.000025756345113171"},{"denom":"ASSET10","index":"0.000020449699671521"},{"denom":"ASSET11","index":"0.000025567125107120"},{"denom":"ASSET12","index":"0.000024323299608917"},{"denom":"ASSET13","index":"0.000008026089638757"},{"denom":"ASSET14","index":"0.000023482777870484"},{"denom":"ASSET15","index":"0.000018439819094125"},{"denom":"ASSET16","index":"0.000011433094032389"},{"denom":"ASSET17","index":"0.000008938487942114"},{"denom":"ASSET18","index":"0.000003715472889790"},{"denom":"ASSET2","index":"0.000007791978720736"},{"denom":"ASSET3","index":"0.000002168844641333"},{"denom":"ASSET4","index":"0.000020883291069830"},{"denom":"ASSET5","index":"0.000001689134510364"},{"denom":"ASSET6","index":"0.000006819968009550"},{"denom":"ASSET7","index":"0.000010702337477897"},{"denom":"ASSET8","index":"0.000014590947163921"},{"denom":"ASSET9","index":"0.000006197850437110"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001732863553160"},{"denom":"ASSET1","index":"0.000014476512568697"},{"denom":"ASSET10","index":"0.000010084697727409"},{"denom":"ASSET11","index":"0.000014004946421444"},{"denom":"ASSET12","index":"0.000012607292539223"},{"denom":"ASSET13","index":"0.000004334999642824"},{"denom":"ASSET14","index":"0.000013078858686476"},{"denom":"ASSET15","index":"0.000009351781667220"},{"denom":"ASSET16","index":"0.000006516703263852"},{"denom":"ASSET17","index":"0.000004630438674838"},{"denom":"ASSET18","index":"0.000002204429700414"},{"denom":"ASSET2","index":"0.000004272502924514"},{"denom":"ASSET3","index":"0.000001249934366214"},{"denom":"ASSET4","index":"0.000011760746082105"},{"denom":"ASSET5","index":"0.000000965858373893"},{"denom":"ASSET6","index":"0.000003948656293267"},{"denom":"ASSET7","index":"0.000006045137116599"},{"denom":"ASSET8","index":"0.000007891631066688"},{"denom":"ASSET9","index":"0.000003403230388010"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003203314564743"},{"denom":"ASSET1","index":"0.000027174750089688"},{"denom":"ASSET10","index":"0.000021494761442080"},{"denom":"ASSET11","index":"0.000026954579685264"},{"denom":"ASSET12","index":"0.000025598519259277"},{"denom":"ASSET13","index":"0.000008453363478510"},{"denom":"ASSET14","index":"0.000024766008219885"},{"denom":"ASSET15","index":"0.000019395989679368"},{"denom":"ASSET16","index":"0.000012063312986412"},{"denom":"ASSET17","index":"0.000009406957788586"},{"denom":"ASSET18","index":"0.000003925664786352"},{"denom":"ASSET2","index":"0.000008214094571203"},{"denom":"ASSET3","index":"0.000002289770772075"},{"denom":"ASSET4","index":"0.000022031271429646"},{"denom":"ASSET5","index":"0.000001779377444361"},{"denom":"ASSET6","index":"0.000007202120906665"},{"denom":"ASSET7","index":"0.000011290805949933"},{"denom":"ASSET8","index":"0.000015376618183469"},{"denom":"ASSET9","index":"0.000006529467958809"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001687731873143"},{"denom":"ASSET1","index":"0.000014069560961171"},{"denom":"ASSET10","index":"0.000009802495056563"},{"denom":"ASSET11","index":"0.000013610740912442"},{"denom":"ASSET12","index":"0.000012256373563096"},{"denom":"ASSET13","index":"0.000004217751625940"},{"denom":"ASSET14","index":"0.000012714404583367"},{"denom":"ASSET15","index":"0.000009090791386823"},{"denom":"ASSET16","index":"0.000006338265608675"},{"denom":"ASSET17","index":"0.000004501407356839"},{"denom":"ASSET18","index":"0.000002144184836496"},{"denom":"ASSET2","index":"0.000004153051292327"},{"denom":"ASSET3","index":"0.000001214709312157"},{"denom":"ASSET4","index":"0.000011433811394910"},{"denom":"ASSET5","index":"0.000000942889008137"},{"denom":"ASSET6","index":"0.000003837834423079"},{"denom":"ASSET7","index":"0.000005877867503028"},{"denom":"ASSET8","index":"0.000007669751132718"},{"denom":"ASSET9","index":"0.000003312735983819"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003310751488522"},{"denom":"ASSET1","index":"0.000028084250149300"},{"denom":"ASSET10","index":"0.000022395324527460"},{"denom":"ASSET11","index":"0.000027902986790638"},{"denom":"ASSET12","index":"0.000026594787286768"},{"denom":"ASSET13","index":"0.000008763085936534"},{"denom":"ASSET14","index":"0.000025613920456358"},{"denom":"ASSET15","index":"0.000020176020856033"},{"denom":"ASSET16","index":"0.000012460451689171"},{"denom":"ASSET17","index":"0.000009773335616478"},{"denom":"ASSET18","index":"0.000004043661907525"},{"denom":"ASSET2","index":"0.000008503271494062"},{"denom":"ASSET3","index":"0.000002362859659779"},{"denom":"ASSET4","index":"0.000022769116693783"},{"denom":"ASSET5","index":"0.000001840413908887"},{"denom":"ASSET6","index":"0.000007429033260494"},{"denom":"ASSET7","index":"0.000011667535172652"},{"denom":"ASSET8","index":"0.000015931047386954"},{"denom":"ASSET9","index":"0.000006763232815972"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001411639939639"},{"denom":"ASSET1","index":"0.000011770559134781"},{"denom":"ASSET10","index":"0.000008200405560598"},{"denom":"ASSET11","index":"0.000011386782830640"},{"denom":"ASSET12","index":"0.000010253700018254"},{"denom":"ASSET13","index":"0.000003528795747429"},{"denom":"ASSET14","index":"0.000010636868119061"},{"denom":"ASSET15","index":"0.000007604974496011"},{"denom":"ASSET16","index":"0.000005302316671163"},{"denom":"ASSET17","index":"0.000003765386844594"},{"denom":"ASSET18","index":"0.000001793591633776"},{"denom":"ASSET2","index":"0.000003474665650649"},{"denom":"ASSET3","index":"0.000001016307772140"},{"denom":"ASSET4","index":"0.000009565822046806"},{"denom":"ASSET5","index":"0.000000788839724994"},{"denom":"ASSET6","index":"0.000003210705403426"},{"denom":"ASSET7","index":"0.000004917323960353"},{"denom":"ASSET8","index":"0.000006416545180176"},{"denom":"ASSET9","index":"0.000002771582595835"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000002915106026686"},{"denom":"ASSET1","index":"0.000024751938975568"},{"denom":"ASSET10","index":"0.000019864528416862"},{"denom":"ASSET11","index":"0.000024625253839727"},{"denom":"ASSET12","index":"0.000023534700266806"},{"denom":"ASSET13","index":"0.000007739190454504"},{"denom":"ASSET14","index":"0.000022584902384729"},{"denom":"ASSET15","index":"0.000017872912229645"},{"denom":"ASSET16","index":"0.000010972881933217"},{"denom":"ASSET17","index":"0.000008648586457086"},{"denom":"ASSET18","index":"0.000003552999450219"},{"denom":"ASSET2","index":"0.000007504215303421"},{"denom":"ASSET3","index":"0.000002079538758775"},{"denom":"ASSET4","index":"0.000020065180146540"},{"denom":"ASSET5","index":"0.000001620267199228"},{"denom":"ASSET6","index":"0.000006536798446662"},{"denom":"ASSET7","index":"0.000010280222742310"},{"denom":"ASSET8","index":"0.000014068743113537"},{"denom":"ASSET9","index":"0.000005967789042866"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001670929391506"},{"denom":"ASSET1","index":"0.000013946161101263"},{"denom":"ASSET10","index":"0.000009716355120388"},{"denom":"ASSET11","index":"0.000013489421488305"},{"denom":"ASSET12","index":"0.000012147571569489"},{"denom":"ASSET13","index":"0.000004178741924768"},{"denom":"ASSET14","index":"0.000012601474290441"},{"denom":"ASSET15","index":"0.000009009969010905"},{"denom":"ASSET16","index":"0.000006280878901179"},{"denom":"ASSET17","index":"0.000004459594233357"},{"denom":"ASSET18","index":"0.000002124832112458"},{"denom":"ASSET2","index":"0.000004116330300637"},{"denom":"ASSET3","index":"0.000001202842210524"},{"denom":"ASSET4","index":"0.000011333383563781"},{"denom":"ASSET5","index":"0.000000933337469958"},{"denom":"ASSET6","index":"0.000003804272179982"},{"denom":"ASSET7","index":"0.000005824139288221"},{"denom":"ASSET8","index":"0.000007600033683947"},{"denom":"ASSET9","index":"0.000003282284050887"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003306866574231"},{"denom":"ASSET1","index":"0.000028073670524533"},{"denom":"ASSET10","index":"0.000022410378668975"},{"denom":"ASSET11","index":"0.000027896117796052"},{"denom":"ASSET12","index":"0.000026601615360568"},{"denom":"ASSET13","index":"0.000008760019105133"},{"denom":"ASSET14","index":"0.000025604072816608"},{"denom":"ASSET15","index":"0.000020183975077340"},{"denom":"ASSET16","index":"0.000012452378452775"},{"denom":"ASSET17","index":"0.000009773941069454"},{"denom":"ASSET18","index":"0.000004038323507821"},{"denom":"ASSET2","index":"0.000008501686860316"},{"denom":"ASSET3","index":"0.000002358773872569"},{"denom":"ASSET4","index":"0.000022758821093429"},{"denom":"ASSET5","index":"0.000001837837668790"},{"denom":"ASSET6","index":"0.000007423905647148"},{"denom":"ASSET7","index":"0.000011659308440973"},{"denom":"ASSET8","index":"0.000015926660063085"},{"denom":"ASSET9","index":"0.000006759875068056"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001598361255475"},{"denom":"ASSET1","index":"0.000013324868720531"},{"denom":"ASSET10","index":"0.000009283863630055"},{"denom":"ASSET11","index":"0.000012890721875256"},{"denom":"ASSET12","index":"0.000011607749807828"},{"denom":"ASSET13","index":"0.000003994929715268"},{"denom":"ASSET14","index":"0.000012041896653103"},{"denom":"ASSET15","index":"0.000008609605674538"},{"denom":"ASSET16","index":"0.000006002777756047"},{"denom":"ASSET17","index":"0.000004262945630213"},{"denom":"ASSET18","index":"0.000002030561253910"},{"denom":"ASSET2","index":"0.000003933279565341"},{"denom":"ASSET3","index":"0.000001150586482321"},{"denom":"ASSET4","index":"0.000010829011071909"},{"denom":"ASSET5","index":"0.000000892953750521"},{"denom":"ASSET6","index":"0.000003634763049905"},{"denom":"ASSET7","index":"0.000005566684063932"},{"denom":"ASSET8","index":"0.000007263685559290"},{"denom":"ASSET9","index":"0.000003137668156809"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003119961272076"},{"denom":"ASSET1","index":"0.000026462428012801"},{"denom":"ASSET10","index":"0.000021088828135750"},{"denom":"ASSET11","index":"0.000026288818556387"},{"denom":"ASSET12","index":"0.000025049012446876"},{"denom":"ASSET13","index":"0.000008256026418292"},{"denom":"ASSET14","index":"0.000024133914778951"},{"denom":"ASSET15","index":"0.000019001193386697"},{"denom":"ASSET16","index":"0.000011741691861213"},{"denom":"ASSET17","index":"0.000009205139483526"},{"denom":"ASSET18","index":"0.000003811157018018"},{"denom":"ASSET2","index":"0.000008011229275486"},{"denom":"ASSET3","index":"0.000002226652147557"},{"denom":"ASSET4","index":"0.000021454928269907"},{"denom":"ASSET5","index":"0.000001734689929917"},{"denom":"ASSET6","index":"0.000007001091110949"},{"denom":"ASSET7","index":"0.000010994186615549"},{"denom":"ASSET8","index":"0.000015007966738007"},{"denom":"ASSET9","index":"0.000006372340046203"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001543375593884"},{"denom":"ASSET1","index":"0.000012871309378663"},{"denom":"ASSET10","index":"0.000008967332198598"},{"denom":"ASSET11","index":"0.000012451619524186"},{"denom":"ASSET12","index":"0.000011213472915376"},{"denom":"ASSET13","index":"0.000003858438984711"},{"denom":"ASSET14","index":"0.000011631932007817"},{"denom":"ASSET15","index":"0.000008316259081242"},{"denom":"ASSET16","index":"0.000005798119954378"},{"denom":"ASSET17","index":"0.000004118129774432"},{"denom":"ASSET18","index":"0.000001961834686325"},{"denom":"ASSET2","index":"0.000003799362406955"},{"denom":"ASSET3","index":"0.000001111378119041"},{"denom":"ASSET4","index":"0.000010460246548983"},{"denom":"ASSET5","index":"0.000000862764187650"},{"denom":"ASSET6","index":"0.000003511364090393"},{"denom":"ASSET7","index":"0.000005377199337864"},{"denom":"ASSET8","index":"0.000007016574370602"},{"denom":"ASSET9","index":"0.000003030136134086"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003061984062566"},{"denom":"ASSET1","index":"0.000025984754387841"},{"denom":"ASSET10","index":"0.000020750278468036"},{"denom":"ASSET11","index":"0.000025825260107338"},{"denom":"ASSET12","index":"0.000024630365005548"},{"denom":"ASSET13","index":"0.000008111503841622"},{"denom":"ASSET14","index":"0.000023701848593669"},{"denom":"ASSET15","index":"0.000018689068915475"},{"denom":"ASSET16","index":"0.000011526541772952"},{"denom":"ASSET17","index":"0.000009050861170220"},{"denom":"ASSET18","index":"0.000003739265665267"},{"denom":"ASSET2","index":"0.000007869809789784"},{"denom":"ASSET3","index":"0.000002185113944095"},{"denom":"ASSET4","index":"0.000021066477214749"},{"denom":"ASSET5","index":"0.000001702392649313"},{"denom":"ASSET6","index":"0.000006871251000760"},{"denom":"ASSET7","index":"0.000010794622225013"},{"denom":"ASSET8","index":"0.000014746923085504"},{"denom":"ASSET9","index":"0.000006258895459680"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001745217677213"},{"denom":"ASSET1","index":"0.000014553842410819"},{"denom":"ASSET10","index":"0.000010139729507131"},{"denom":"ASSET11","index":"0.000014078681363843"},{"denom":"ASSET12","index":"0.000012678362515121"},{"denom":"ASSET13","index":"0.000004362304066790"},{"denom":"ASSET14","index":"0.000013152043309614"},{"denom":"ASSET15","index":"0.000009402563770700"},{"denom":"ASSET16","index":"0.000006556038246289"},{"denom":"ASSET17","index":"0.000004655394058383"},{"denom":"ASSET18","index":"0.000002217418219224"},{"denom":"ASSET2","index":"0.000004295692705065"},{"denom":"ASSET3","index":"0.000001256734357891"},{"denom":"ASSET4","index":"0.000011827217337515"},{"denom":"ASSET5","index":"0.000000975486386160"},{"denom":"ASSET6","index":"0.000003970037158850"},{"denom":"ASSET7","index":"0.000006079396946830"},{"denom":"ASSET8","index":"0.000007932673055287"},{"denom":"ASSET9","index":"0.000003426784497665"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003296605577903"},{"denom":"ASSET1","index":"0.000027950980635352"},{"denom":"ASSET10","index":"0.000022177590033485"},{"denom":"ASSET11","index":"0.000027741245317152"},{"denom":"ASSET12","index":"0.000026384837371861"},{"denom":"ASSET13","index":"0.000008707523198290"},{"denom":"ASSET14","index":"0.000025482773879389"},{"denom":"ASSET15","index":"0.000019999205716580"},{"denom":"ASSET16","index":"0.000012408342313410"},{"denom":"ASSET17","index":"0.000009694954350389"},{"denom":"ASSET18","index":"0.000004033447725414"},{"denom":"ASSET2","index":"0.000008454290496983"},{"denom":"ASSET3","index":"0.000002354114882033"},{"denom":"ASSET4","index":"0.000022662624820802"},{"denom":"ASSET5","index":"0.000001833709311257"},{"denom":"ASSET6","index":"0.000007402928859239"},{"denom":"ASSET7","index":"0.000011614131087351"},{"denom":"ASSET8","index":"0.000015829970625061"},{"denom":"ASSET9","index":"0.000006725199056296"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001696105704481"},{"denom":"ASSET1","index":"0.000014140754037071"},{"denom":"ASSET10","index":"0.000009851931515387"},{"denom":"ASSET11","index":"0.000013679695806241"},{"denom":"ASSET12","index":"0.000012318593050331"},{"denom":"ASSET13","index":"0.000004239283286244"},{"denom":"ASSET14","index":"0.000012779160793682"},{"denom":"ASSET15","index":"0.000009136800770120"},{"denom":"ASSET16","index":"0.000006369960897657"},{"denom":"ASSET17","index":"0.000004523766024416"},{"denom":"ASSET18","index":"0.000002155201985393"},{"denom":"ASSET2","index":"0.000004174048451456"},{"denom":"ASSET3","index":"0.000001220823336742"},{"denom":"ASSET4","index":"0.000011492121647193"},{"denom":"ASSET5","index":"0.000000947621810601"},{"denom":"ASSET6","index":"0.000003857193539630"},{"denom":"ASSET7","index":"0.000005907431204387"},{"denom":"ASSET8","index":"0.000007708991716984"},{"denom":"ASSET9","index":"0.000003329429011573"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003278023650839"},{"denom":"ASSET1","index":"0.000027801084973989"},{"denom":"ASSET10","index":"0.000022126343818190"},{"denom":"ASSET11","index":"0.000027610641458424"},{"denom":"ASSET12","index":"0.000026294522151225"},{"denom":"ASSET13","index":"0.000008669795972838"},{"denom":"ASSET14","index":"0.000025352034708572"},{"denom":"ASSET15","index":"0.000019941753748345"},{"denom":"ASSET16","index":"0.000012337408081897"},{"denom":"ASSET17","index":"0.000009662232510971"},{"denom":"ASSET18","index":"0.000004006663612522"},{"denom":"ASSET2","index":"0.000008414274009770"},{"denom":"ASSET3","index":"0.000002339697370568"},{"denom":"ASSET4","index":"0.000022540556466857"},{"denom":"ASSET5","index":"0.000001822656991491"},{"denom":"ASSET6","index":"0.000007357334263189"},{"denom":"ASSET7","index":"0.000011551068960203"},{"denom":"ASSET8","index":"0.000015761386047857"},{"denom":"ASSET9","index":"0.000006692834331509"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001139195115521"},{"denom":"ASSET1","index":"0.000009496890331931"},{"denom":"ASSET10","index":"0.000006616523219856"},{"denom":"ASSET11","index":"0.000009187371854639"},{"denom":"ASSET12","index":"0.000008273091178185"},{"denom":"ASSET13","index":"0.000002846943294505"},{"denom":"ASSET14","index":"0.000008582261490710"},{"denom":"ASSET15","index":"0.000006136055842283"},{"denom":"ASSET16","index":"0.000004278248649000"},{"denom":"ASSET17","index":"0.000003038433916001"},{"denom":"ASSET18","index":"0.000001447320933748"},{"denom":"ASSET2","index":"0.000002803422698710"},{"denom":"ASSET3","index":"0.000000819928024772"},{"denom":"ASSET4","index":"0.000007718116540611"},{"denom":"ASSET5","index":"0.000000636445192901"},{"denom":"ASSET6","index":"0.000002590694026466"},{"denom":"ASSET7","index":"0.000003967685677409"},{"denom":"ASSET8","index":"0.000005177210075735"},{"denom":"ASSET9","index":"0.000002236262294314"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000002735257365218"},{"denom":"ASSET1","index":"0.000023278157661741"},{"denom":"ASSET10","index":"0.000018999615823078"},{"denom":"ASSET11","index":"0.000023241706683585"},{"denom":"ASSET12","index":"0.000022372793234045"},{"denom":"ASSET13","index":"0.000007316911351959"},{"denom":"ASSET14","index":"0.000021266506066871"},{"denom":"ASSET15","index":"0.000017036720297506"},{"denom":"ASSET16","index":"0.000010298479660409"},{"denom":"ASSET17","index":"0.000008222611745720"},{"denom":"ASSET18","index":"0.000003315370510511"},{"denom":"ASSET2","index":"0.000007081336162231"},{"denom":"ASSET3","index":"0.000001948923871674"},{"denom":"ASSET4","index":"0.000018864412124408"},{"denom":"ASSET5","index":"0.000001519377842401"},{"denom":"ASSET6","index":"0.000006121992555640"},{"denom":"ASSET7","index":"0.000009661272655042"},{"denom":"ASSET8","index":"0.000013300968175029"},{"denom":"ASSET9","index":"0.000005629514833023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001583959364947"},{"denom":"ASSET1","index":"0.000013443347430705"},{"denom":"ASSET10","index":"0.000009381913161610"},{"denom":"ASSET11","index":"0.000012996589661105"},{"denom":"ASSET12","index":"0.000011696930694994"},{"denom":"ASSET13","index":"0.000004020819926404"},{"denom":"ASSET14","index":"0.000012143688464595"},{"denom":"ASSET15","index":"0.000008691469335864"},{"denom":"ASSET16","index":"0.000006051537060952"},{"denom":"ASSET17","index":"0.000004305120325241"},{"denom":"ASSET18","index":"0.000002030717134548"},{"denom":"ASSET2","index":"0.000003939591241022"},{"denom":"ASSET3","index":"0.000001137201595347"},{"denom":"ASSET4","index":"0.000010925258183866"},{"denom":"ASSET5","index":"0.000000893515539201"},{"denom":"ASSET6","index":"0.000003655290842186"},{"denom":"ASSET7","index":"0.000005604779291351"},{"denom":"ASSET8","index":"0.000007310581684371"},{"denom":"ASSET9","index":"0.000003167918729894"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003310378542013"},{"denom":"ASSET1","index":"0.000028352771206955"},{"denom":"ASSET10","index":"0.000022778987578468"},{"denom":"ASSET11","index":"0.000028201706998458"},{"denom":"ASSET12","index":"0.000026949790221900"},{"denom":"ASSET13","index":"0.000008856641706946"},{"denom":"ASSET14","index":"0.000025865717784540"},{"denom":"ASSET15","index":"0.000020483790155485"},{"denom":"ASSET16","index":"0.000012564495758376"},{"denom":"ASSET17","index":"0.000009912517491786"},{"denom":"ASSET18","index":"0.000004051289802086"},{"denom":"ASSET2","index":"0.000008567503486413"},{"denom":"ASSET3","index":"0.000002358477605528"},{"denom":"ASSET4","index":"0.000022984011222606"},{"denom":"ASSET5","index":"0.000001848359330263"},{"denom":"ASSET6","index":"0.000007474666006436"},{"denom":"ASSET7","index":"0.000011763521743703"},{"denom":"ASSET8","index":"0.000016098224703406"},{"denom":"ASSET9","index":"0.000006837907042961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001549911588522"},{"denom":"ASSET1","index":"0.000012922257740418"},{"denom":"ASSET10","index":"0.000009003081854783"},{"denom":"ASSET11","index":"0.000012500946332712"},{"denom":"ASSET12","index":"0.000011256607989023"},{"denom":"ASSET13","index":"0.000003873860414458"},{"denom":"ASSET14","index":"0.000011677307025497"},{"denom":"ASSET15","index":"0.000008349069378868"},{"denom":"ASSET16","index":"0.000005821200932633"},{"denom":"ASSET17","index":"0.000004134118188113"},{"denom":"ASSET18","index":"0.000001969385882532"},{"denom":"ASSET2","index":"0.000003814460404941"},{"denom":"ASSET3","index":"0.000001115740384942"},{"denom":"ASSET4","index":"0.000010501554259806"},{"denom":"ASSET5","index":"0.000000865892922233"},{"denom":"ASSET6","index":"0.000003524808812143"},{"denom":"ASSET7","index":"0.000005398664782463"},{"denom":"ASSET8","index":"0.000007044106283197"},{"denom":"ASSET9","index":"0.000003042260281224"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003086330633608"},{"denom":"ASSET1","index":"0.000026187842720704"},{"denom":"ASSET10","index":"0.000020922921087024"},{"denom":"ASSET11","index":"0.000026029396638226"},{"denom":"ASSET12","index":"0.000024828709288325"},{"denom":"ASSET13","index":"0.000008176601230700"},{"denom":"ASSET14","index":"0.000023887113573615"},{"denom":"ASSET15","index":"0.000018841856891118"},{"denom":"ASSET16","index":"0.000011616230118922"},{"denom":"ASSET17","index":"0.000009124242236202"},{"denom":"ASSET18","index":"0.000003767471049721"},{"denom":"ASSET2","index":"0.000007932284099147"},{"denom":"ASSET3","index":"0.000002202458257762"},{"denom":"ASSET4","index":"0.000021230824628511"},{"denom":"ASSET5","index":"0.000001715648257347"},{"denom":"ASSET6","index":"0.000006923830152599"},{"denom":"ASSET7","index":"0.000010879262909104"},{"denom":"ASSET8","index":"0.000014863870027497"},{"denom":"ASSET9","index":"0.000006308409915314"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001535524830156"},{"denom":"ASSET1","index":"0.000012804491333161"},{"denom":"ASSET10","index":"0.000008921035499248"},{"denom":"ASSET11","index":"0.000012386713938596"},{"denom":"ASSET12","index":"0.000011154325740380"},{"denom":"ASSET13","index":"0.000003838812075390"},{"denom":"ASSET14","index":"0.000011571000819920"},{"denom":"ASSET15","index":"0.000008272874264409"},{"denom":"ASSET16","index":"0.000005767863369556"},{"denom":"ASSET17","index":"0.000004096202633783"},{"denom":"ASSET18","index":"0.000001951097594671"},{"denom":"ASSET2","index":"0.000003779838221540"},{"denom":"ASSET3","index":"0.000001105621970313"},{"denom":"ASSET4","index":"0.000010405853838244"},{"denom":"ASSET5","index":"0.000000858152247148"},{"denom":"ASSET6","index":"0.000003492685157466"},{"denom":"ASSET7","index":"0.000005348983659966"},{"denom":"ASSET8","index":"0.000006980409897318"},{"denom":"ASSET9","index":"0.000003014831594025"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003051773960929"},{"denom":"ASSET1","index":"0.000025898629359040"},{"denom":"ASSET10","index":"0.000020686863907037"},{"denom":"ASSET11","index":"0.000025740096441319"},{"denom":"ASSET12","index":"0.000024551000542772"},{"denom":"ASSET13","index":"0.000008085532012369"},{"denom":"ASSET14","index":"0.000023622558405526"},{"denom":"ASSET15","index":"0.000018629920308839"},{"denom":"ASSET16","index":"0.000011487540137638"},{"denom":"ASSET17","index":"0.000009021847693812"},{"denom":"ASSET18","index":"0.000003725572559942"},{"denom":"ASSET2","index":"0.000007844221178735"},{"denom":"ASSET3","index":"0.000002178252359768"},{"denom":"ASSET4","index":"0.000020996168979716"},{"denom":"ASSET5","index":"0.000001697004218389"},{"denom":"ASSET6","index":"0.000006847583721256"},{"denom":"ASSET7","index":"0.000010758483833946"},{"denom":"ASSET8","index":"0.000014699172267780"},{"denom":"ASSET9","index":"0.000006238834616461"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001813824295534"},{"denom":"ASSET1","index":"0.000015126179984122"},{"denom":"ASSET10","index":"0.000010538420488017"},{"denom":"ASSET11","index":"0.000014633035948465"},{"denom":"ASSET12","index":"0.000013177247733614"},{"denom":"ASSET13","index":"0.000004534560738834"},{"denom":"ASSET14","index":"0.000013669547344553"},{"denom":"ASSET15","index":"0.000009773371692973"},{"denom":"ASSET16","index":"0.000006813663054312"},{"denom":"ASSET17","index":"0.000004839398062246"},{"denom":"ASSET18","index":"0.000002305279481754"},{"denom":"ASSET2","index":"0.000004465317911910"},{"denom":"ASSET3","index":"0.000001306325039660"},{"denom":"ASSET4","index":"0.000012293135053249"},{"denom":"ASSET5","index":"0.000001013309662309"},{"denom":"ASSET6","index":"0.000004125859175036"},{"denom":"ASSET7","index":"0.000006318830169217"},{"denom":"ASSET8","index":"0.000008245807377042"},{"denom":"ASSET9","index":"0.000003561783463017"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003452880861936"},{"denom":"ASSET1","index":"0.000029278299049117"},{"denom":"ASSET10","index":"0.000023254773922096"},{"denom":"ASSET11","index":"0.000029065569213605"},{"denom":"ASSET12","index":"0.000027656204711461"},{"denom":"ASSET13","index":"0.000009124518140406"},{"denom":"ASSET14","index":"0.000026695142606829"},{"denom":"ASSET15","index":"0.000020967476611979"},{"denom":"ASSET16","index":"0.000012995878924798"},{"denom":"ASSET17","index":"0.000010163149632422"},{"denom":"ASSET18","index":"0.000004223627093961"},{"denom":"ASSET2","index":"0.000008858348919255"},{"denom":"ASSET3","index":"0.000002465420318230"},{"denom":"ASSET4","index":"0.000023739200929128"},{"denom":"ASSET5","index":"0.000001919695214447"},{"denom":"ASSET6","index":"0.000007752150153146"},{"denom":"ASSET7","index":"0.000012165597276913"},{"denom":"ASSET8","index":"0.000016587849042771"},{"denom":"ASSET9","index":"0.000007046182609545"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001444852701297"},{"denom":"ASSET1","index":"0.000012048934466992"},{"denom":"ASSET10","index":"0.000008394653008080"},{"denom":"ASSET11","index":"0.000011656844181701"},{"denom":"ASSET12","index":"0.000010496256937239"},{"denom":"ASSET13","index":"0.000003612131753243"},{"denom":"ASSET14","index":"0.000010888347222530"},{"denom":"ASSET15","index":"0.000007784952614452"},{"denom":"ASSET16","index":"0.000005427509774140"},{"denom":"ASSET17","index":"0.000003854247504410"},{"denom":"ASSET18","index":"0.000001835962760875"},{"denom":"ASSET2","index":"0.000003556258887589"},{"denom":"ASSET3","index":"0.000001040019481734"},{"denom":"ASSET4","index":"0.000009792454875142"},{"denom":"ASSET5","index":"0.000000807705987699"},{"denom":"ASSET6","index":"0.000003286696816452"},{"denom":"ASSET7","index":"0.000005033459037423"},{"denom":"ASSET8","index":"0.000006568492504337"},{"denom":"ASSET9","index":"0.000002836773214080"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000002868026198866"},{"denom":"ASSET1","index":"0.000024339331661302"},{"denom":"ASSET10","index":"0.000019438063504597"},{"denom":"ASSET11","index":"0.000024190729344646"},{"denom":"ASSET12","index":"0.000023070632234294"},{"denom":"ASSET13","index":"0.000007598221307181"},{"denom":"ASSET14","index":"0.000022200415230506"},{"denom":"ASSET15","index":"0.000017506414948675"},{"denom":"ASSET16","index":"0.000010796282691537"},{"denom":"ASSET17","index":"0.000008477235924619"},{"denom":"ASSET18","index":"0.000003501529899130"},{"denom":"ASSET2","index":"0.000007371086117521"},{"denom":"ASSET3","index":"0.000002046801194740"},{"denom":"ASSET4","index":"0.000019732782799148"},{"denom":"ASSET5","index":"0.000001595074946946"},{"denom":"ASSET6","index":"0.000006435625489467"},{"denom":"ASSET7","index":"0.000010111140720407"},{"denom":"ASSET8","index":"0.000013813490690156"},{"denom":"ASSET9","index":"0.000005862589992841"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001655416114862"},{"denom":"ASSET1","index":"0.000013800538848519"},{"denom":"ASSET10","index":"0.000009615249134678"},{"denom":"ASSET11","index":"0.000013350879623065"},{"denom":"ASSET12","index":"0.000012022439267096"},{"denom":"ASSET13","index":"0.000004137189147657"},{"denom":"ASSET14","index":"0.000012471558036751"},{"denom":"ASSET15","index":"0.000008916980241305"},{"denom":"ASSET16","index":"0.000006216863065381"},{"denom":"ASSET17","index":"0.000004414983428766"},{"denom":"ASSET18","index":"0.000002102913517117"},{"denom":"ASSET2","index":"0.000004073955819077"},{"denom":"ASSET3","index":"0.000001191705038613"},{"denom":"ASSET4","index":"0.000011215538757958"},{"denom":"ASSET5","index":"0.000000924719873500"},{"denom":"ASSET6","index":"0.000003764274645778"},{"denom":"ASSET7","index":"0.000005765582472528"},{"denom":"ASSET8","index":"0.000007523144733557"},{"denom":"ASSET9","index":"0.000003249220268545"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003262792429801"},{"denom":"ASSET1","index":"0.000027679878715890"},{"denom":"ASSET10","index":"0.000022086570261210"},{"denom":"ASSET11","index":"0.000027505267384149"},{"denom":"ASSET12","index":"0.000026222420015979"},{"denom":"ASSET13","index":"0.000008638975204347"},{"denom":"ASSET14","index":"0.000025246236428505"},{"denom":"ASSET15","index":"0.000019895354512471"},{"denom":"ASSET16","index":"0.000012279836462442"},{"denom":"ASSET17","index":"0.000009636125515167"},{"denom":"ASSET18","index":"0.000003984145752232"},{"denom":"ASSET2","index":"0.000008382344169353"},{"denom":"ASSET3","index":"0.000002328549799735"},{"denom":"ASSET4","index":"0.000022441247538096"},{"denom":"ASSET5","index":"0.000001813932132265"},{"denom":"ASSET6","index":"0.000007320527694069"},{"denom":"ASSET7","index":"0.000011499571173317"},{"denom":"ASSET8","index":"0.000015704553099640"},{"denom":"ASSET9","index":"0.000006666608399750"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001676736923170"},{"denom":"ASSET1","index":"0.000013985463602132"},{"denom":"ASSET10","index":"0.000009743339709608"},{"denom":"ASSET11","index":"0.000013528824721587"},{"denom":"ASSET12","index":"0.000012182509640070"},{"denom":"ASSET13","index":"0.000004192868462713"},{"denom":"ASSET14","index":"0.000012638122365828"},{"denom":"ASSET15","index":"0.000009036319060854"},{"denom":"ASSET16","index":"0.000006299564241947"},{"denom":"ASSET17","index":"0.000004474034874554"},{"denom":"ASSET18","index":"0.000002131323494140"},{"denom":"ASSET2","index":"0.000004128220711085"},{"denom":"ASSET3","index":"0.000001207784185172"},{"denom":"ASSET4","index":"0.000011365690429028"},{"denom":"ASSET5","index":"0.000000936879321208"},{"denom":"ASSET6","index":"0.000003814217346036"},{"denom":"ASSET7","index":"0.000005841899206614"},{"denom":"ASSET8","index":"0.000007623303918134"},{"denom":"ASSET9","index":"0.000003292930713863"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003296156578493"},{"denom":"ASSET1","index":"0.000027968412540894"},{"denom":"ASSET10","index":"0.000022307812536905"},{"denom":"ASSET11","index":"0.000027788867279184"},{"denom":"ASSET12","index":"0.000026488589695468"},{"denom":"ASSET13","index":"0.000008728285856057"},{"denom":"ASSET14","index":"0.000025508064125070"},{"denom":"ASSET15","index":"0.000020096610749334"},{"denom":"ASSET16","index":"0.000012407784704791"},{"denom":"ASSET17","index":"0.000009734180928237"},{"denom":"ASSET18","index":"0.000004026678592252"},{"denom":"ASSET2","index":"0.000008468774984810"},{"denom":"ASSET3","index":"0.000002353220293961"},{"denom":"ASSET4","index":"0.000022675279511256"},{"denom":"ASSET5","index":"0.000001832728492238"},{"denom":"ASSET6","index":"0.000007397034942132"},{"denom":"ASSET7","index":"0.000011618881320506"},{"denom":"ASSET8","index":"0.000015866042832442"},{"denom":"ASSET9","index":"0.000006735898552490"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001687654189845"},{"denom":"ASSET1","index":"0.000014079752531439"},{"denom":"ASSET10","index":"0.000009809029374167"},{"denom":"ASSET11","index":"0.000013620990639222"},{"denom":"ASSET12","index":"0.000012264971552184"},{"denom":"ASSET13","index":"0.000004220977891851"},{"denom":"ASSET14","index":"0.000012723733444402"},{"denom":"ASSET15","index":"0.000009097856320367"},{"denom":"ASSET16","index":"0.000006341600132585"},{"denom":"ASSET17","index":"0.000004504710146476"},{"denom":"ASSET18","index":"0.000002144573664825"},{"denom":"ASSET2","index":"0.000004156493288528"},{"denom":"ASSET3","index":"0.000001215995376963"},{"denom":"ASSET4","index":"0.000011441411046878"},{"denom":"ASSET5","index":"0.000000943317625765"},{"denom":"ASSET6","index":"0.000003839597523622"},{"denom":"ASSET7","index":"0.000005880995823129"},{"denom":"ASSET8","index":"0.000007675510212768"},{"denom":"ASSET9","index":"0.000003314508610843"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003237925740153"},{"denom":"ASSET1","index":"0.000027468087048908"},{"denom":"ASSET10","index":"0.000021838560142362"},{"denom":"ASSET11","index":"0.000027274223261348"},{"denom":"ASSET12","index":"0.000025962125103579"},{"denom":"ASSET13","index":"0.000008562973508850"},{"denom":"ASSET14","index":"0.000025046299162567"},{"denom":"ASSET15","index":"0.000019687604125947"},{"denom":"ASSET16","index":"0.000012189946370622"},{"denom":"ASSET17","index":"0.000009540519193028"},{"denom":"ASSET18","index":"0.000003959057055270"},{"denom":"ASSET2","index":"0.000008312511220651"},{"denom":"ASSET3","index":"0.000002312646079660"},{"denom":"ASSET4","index":"0.000022269978905361"},{"denom":"ASSET5","index":"0.000001800462011039"},{"denom":"ASSET6","index":"0.000007270233858279"},{"denom":"ASSET7","index":"0.000011411601588483"},{"denom":"ASSET8","index":"0.000015567552190875"},{"denom":"ASSET9","index":"0.000006610637099613"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001700269946448"},{"denom":"ASSET1","index":"0.000014175647296985"},{"denom":"ASSET10","index":"0.000009876508679424"},{"denom":"ASSET11","index":"0.000013714231996791"},{"denom":"ASSET12","index":"0.000012349169664489"},{"denom":"ASSET13","index":"0.000004249665204630"},{"denom":"ASSET14","index":"0.000012810584964683"},{"denom":"ASSET15","index":"0.000009159649022667"},{"denom":"ASSET16","index":"0.000006386108914062"},{"denom":"ASSET17","index":"0.000004535399405845"},{"denom":"ASSET18","index":"0.000002160675585153"},{"denom":"ASSET2","index":"0.000004184037207885"},{"denom":"ASSET3","index":"0.000001223709723928"},{"denom":"ASSET4","index":"0.000011520237582522"},{"denom":"ASSET5","index":"0.000000950091460574"},{"denom":"ASSET6","index":"0.000003867003500531"},{"denom":"ASSET7","index":"0.000005922674290891"},{"denom":"ASSET8","index":"0.000007727949032131"},{"denom":"ASSET9","index":"0.000003337940880615"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003224934301433"},{"denom":"ASSET1","index":"0.000027341438894536"},{"denom":"ASSET10","index":"0.000021706571274337"},{"denom":"ASSET11","index":"0.000027141091242061"},{"denom":"ASSET12","index":"0.000025819235056226"},{"denom":"ASSET13","index":"0.000008520116782966"},{"denom":"ASSET14","index":"0.000024928444433519"},{"denom":"ASSET15","index":"0.000019573794936329"},{"denom":"ASSET16","index":"0.000012137286393349"},{"denom":"ASSET17","index":"0.000009487995483061"},{"denom":"ASSET18","index":"0.000003945309126507"},{"denom":"ASSET2","index":"0.000008271045740629"},{"denom":"ASSET3","index":"0.000002302032616683"},{"denom":"ASSET4","index":"0.000022168721917699"},{"denom":"ASSET5","index":"0.000001793343624246"},{"denom":"ASSET6","index":"0.000007240378309003"},{"denom":"ASSET7","index":"0.000011361888746536"},{"denom":"ASSET8","index":"0.000015488944629697"},{"denom":"ASSET9","index":"0.000006579500326985"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001505652349479"},{"denom":"ASSET1","index":"0.000012557843622987"},{"denom":"ASSET10","index":"0.000008748308836028"},{"denom":"ASSET11","index":"0.000012147743761261"},{"denom":"ASSET12","index":"0.000010939413811534"},{"denom":"ASSET13","index":"0.000003764130873697"},{"denom":"ASSET14","index":"0.000011348049030896"},{"denom":"ASSET15","index":"0.000008114118692716"},{"denom":"ASSET16","index":"0.000005656448807088"},{"denom":"ASSET17","index":"0.000004017514002549"},{"denom":"ASSET18","index":"0.000001912822926478"},{"denom":"ASSET2","index":"0.000003707009821528"},{"denom":"ASSET3","index":"0.000001083835348847"},{"denom":"ASSET4","index":"0.000010205627987517"},{"denom":"ASSET5","index":"0.000000840704716538"},{"denom":"ASSET6","index":"0.000003424333845410"},{"denom":"ASSET7","index":"0.000005246348945363"},{"denom":"ASSET8","index":"0.000006845738406093"},{"denom":"ASSET9","index":"0.000002955648289152"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000002959758868257"},{"denom":"ASSET1","index":"0.000025116229265451"},{"denom":"ASSET10","index":"0.000020033024535037"},{"denom":"ASSET11","index":"0.000024955202637112"},{"denom":"ASSET12","index":"0.000023787913163340"},{"denom":"ASSET13","index":"0.000007837044315100"},{"denom":"ASSET14","index":"0.000022906603767748"},{"denom":"ASSET15","index":"0.000018047329062837"},{"denom":"ASSET16","index":"0.000011142428291313"},{"denom":"ASSET17","index":"0.000008741414303940"},{"denom":"ASSET18","index":"0.000003614587489816"},{"denom":"ASSET2","index":"0.000007605147442913"},{"denom":"ASSET3","index":"0.000002112677625393"},{"denom":"ASSET4","index":"0.000020363145786569"},{"denom":"ASSET5","index":"0.000001645239564154"},{"denom":"ASSET6","index":"0.000006641765641459"},{"denom":"ASSET7","index":"0.000010434431181702"},{"denom":"ASSET8","index":"0.000014248591155217"},{"denom":"ASSET9","index":"0.000006047835874095"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001815877519749"},{"denom":"ASSET1","index":"0.000015137138459046"},{"denom":"ASSET10","index":"0.000010545739718907"},{"denom":"ASSET11","index":"0.000014644907422941"},{"denom":"ASSET12","index":"0.000013186828093302"},{"denom":"ASSET13","index":"0.000004537625601742"},{"denom":"ASSET14","index":"0.000013679059129408"},{"denom":"ASSET15","index":"0.000009780506595550"},{"denom":"ASSET16","index":"0.000006818847588397"},{"denom":"ASSET17","index":"0.000004841650653454"},{"denom":"ASSET18","index":"0.000002306040358223"},{"denom":"ASSET2","index":"0.000004467306882298"},{"denom":"ASSET3","index":"0.000001307100902598"},{"denom":"ASSET4","index":"0.000012301639507366"},{"denom":"ASSET5","index":"0.000001013416839040"},{"denom":"ASSET6","index":"0.000004128122470864"},{"denom":"ASSET7","index":"0.000006324548354661"},{"denom":"ASSET8","index":"0.000008252108546467"},{"denom":"ASSET9","index":"0.000003563504517685"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003468946703322"},{"denom":"ASSET1","index":"0.000029412495408176"},{"denom":"ASSET10","index":"0.000023372734593498"},{"denom":"ASSET11","index":"0.000029203218600002"},{"denom":"ASSET12","index":"0.000027792166579196"},{"denom":"ASSET13","index":"0.000009167641990636"},{"denom":"ASSET14","index":"0.000026818252104650"},{"denom":"ASSET15","index":"0.000021072198152383"},{"denom":"ASSET16","index":"0.000013054905852031"},{"denom":"ASSET17","index":"0.000010211457984650"},{"denom":"ASSET18","index":"0.000004240878207320"},{"denom":"ASSET2","index":"0.000008898543974195"},{"denom":"ASSET3","index":"0.000002476460623897"},{"denom":"ASSET4","index":"0.000023847831794350"},{"denom":"ASSET5","index":"0.000001927880642719"},{"denom":"ASSET6","index":"0.000007785977685579"},{"denom":"ASSET7","index":"0.000012222326144679"},{"denom":"ASSET8","index":"0.000016667230515151"},{"denom":"ASSET9","index":"0.000007078301868557"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001541968050995"},{"denom":"ASSET1","index":"0.000012857487907975"},{"denom":"ASSET10","index":"0.000008957704485900"},{"denom":"ASSET11","index":"0.000012438763825161"},{"denom":"ASSET12","index":"0.000011200869215257"},{"denom":"ASSET13","index":"0.000003854089325736"},{"denom":"ASSET14","index":"0.000011619593298070"},{"denom":"ASSET15","index":"0.000008307186714386"},{"denom":"ASSET16","index":"0.000005792349812251"},{"denom":"ASSET17","index":"0.000004113299472240"},{"denom":"ASSET18","index":"0.000001959030530305"},{"denom":"ASSET2","index":"0.000003795102401372"},{"denom":"ASSET3","index":"0.000001109951140156"},{"denom":"ASSET4","index":"0.000010448993630046"},{"denom":"ASSET5","index":"0.000000861541416423"},{"denom":"ASSET6","index":"0.000003506814193562"},{"denom":"ASSET7","index":"0.000005371133324183"},{"denom":"ASSET8","index":"0.000007009474378365"},{"denom":"ASSET9","index":"0.000003027441582881"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003053196756625"},{"denom":"ASSET1","index":"0.000025905581999278"},{"denom":"ASSET10","index":"0.000020682143152818"},{"denom":"ASSET11","index":"0.000025745380902198"},{"denom":"ASSET12","index":"0.000024550499550641"},{"denom":"ASSET13","index":"0.000008086239198545"},{"denom":"ASSET14","index":"0.000023629161089906"},{"denom":"ASSET15","index":"0.000018628151539367"},{"denom":"ASSET16","index":"0.000011492271696690"},{"denom":"ASSET17","index":"0.000009021688715966"},{"denom":"ASSET18","index":"0.000003727673632537"},{"denom":"ASSET2","index":"0.000007845443656426"},{"denom":"ASSET3","index":"0.000002178852781858"},{"denom":"ASSET4","index":"0.000021002318737231"},{"denom":"ASSET5","index":"0.000001697417622442"},{"denom":"ASSET6","index":"0.000006850319017638"},{"denom":"ASSET7","index":"0.000010761758840612"},{"denom":"ASSET8","index":"0.000014701087498525"},{"denom":"ASSET9","index":"0.000006240132889304"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001327266579501"},{"denom":"ASSET1","index":"0.000011071143497688"},{"denom":"ASSET10","index":"0.000007713614824674"},{"denom":"ASSET11","index":"0.000010710668391289"},{"denom":"ASSET12","index":"0.000009644435509525"},{"denom":"ASSET13","index":"0.000003318857014090"},{"denom":"ASSET14","index":"0.000010004910615924"},{"denom":"ASSET15","index":"0.000007152875770275"},{"denom":"ASSET16","index":"0.000004987262870528"},{"denom":"ASSET17","index":"0.000003541219052903"},{"denom":"ASSET18","index":"0.000001686360555224"},{"denom":"ASSET2","index":"0.000003267755179083"},{"denom":"ASSET3","index":"0.000000955742427695"},{"denom":"ASSET4","index":"0.000008998066353223"},{"denom":"ASSET5","index":"0.000000741667172936"},{"denom":"ASSET6","index":"0.000003019151657428"},{"denom":"ASSET7","index":"0.000004625406633453"},{"denom":"ASSET8","index":"0.000006035541053505"},{"denom":"ASSET9","index":"0.000002606193585346"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000002827520151011"},{"denom":"ASSET1","index":"0.000024027878888002"},{"denom":"ASSET10","index":"0.000019355847170480"},{"denom":"ASSET11","index":"0.000023924401086085"},{"denom":"ASSET12","index":"0.000022900407365256"},{"denom":"ASSET13","index":"0.000007521399074311"},{"denom":"ASSET14","index":"0.000021930603354990"},{"denom":"ASSET15","index":"0.000017401215805238"},{"denom":"ASSET16","index":"0.000010647310435771"},{"denom":"ASSET17","index":"0.000008415007538097"},{"denom":"ASSET18","index":"0.000003442593620109"},{"denom":"ASSET2","index":"0.000007289635767836"},{"denom":"ASSET3","index":"0.000002016810506595"},{"denom":"ASSET4","index":"0.000019477449509443"},{"denom":"ASSET5","index":"0.000001571692130579"},{"denom":"ASSET6","index":"0.000006339251488002"},{"denom":"ASSET7","index":"0.000009978075244424"},{"denom":"ASSET8","index":"0.000013673195599374"},{"denom":"ASSET9","index":"0.000005796522499795"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001571435631869"},{"denom":"ASSET1","index":"0.000013104175099655"},{"denom":"ASSET10","index":"0.000009129715488355"},{"denom":"ASSET11","index":"0.000012677036600848"},{"denom":"ASSET12","index":"0.000011415350365342"},{"denom":"ASSET13","index":"0.000003928095848150"},{"denom":"ASSET14","index":"0.000011841502401104"},{"denom":"ASSET15","index":"0.000008466812321615"},{"denom":"ASSET16","index":"0.000005902994865728"},{"denom":"ASSET17","index":"0.000004192467944409"},{"denom":"ASSET18","index":"0.000001996601204585"},{"denom":"ASSET2","index":"0.000003867921602360"},{"denom":"ASSET3","index":"0.000001131473113468"},{"denom":"ASSET4","index":"0.000010648868578800"},{"denom":"ASSET5","index":"0.000000877952110712"},{"denom":"ASSET6","index":"0.000003573955614728"},{"denom":"ASSET7","index":"0.000005473883440830"},{"denom":"ASSET8","index":"0.000007142978914228"},{"denom":"ASSET9","index":"0.000003084669944040"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003141123056438"},{"denom":"ASSET1","index":"0.000026662100889972"},{"denom":"ASSET10","index":"0.000021312054987248"},{"denom":"ASSET11","index":"0.000026503481745319"},{"denom":"ASSET12","index":"0.000025286293002787"},{"denom":"ASSET13","index":"0.000008324908472884"},{"denom":"ASSET14","index":"0.000024319980387721"},{"denom":"ASSET15","index":"0.000019190708128374"},{"denom":"ASSET16","index":"0.000011824997422058"},{"denom":"ASSET17","index":"0.000009292034078872"},{"denom":"ASSET18","index":"0.000003834040785154"},{"denom":"ASSET2","index":"0.000008076003481032"},{"denom":"ASSET3","index":"0.000002241608843356"},{"denom":"ASSET4","index":"0.000021614431804298"},{"denom":"ASSET5","index":"0.000001746420421862"},{"denom":"ASSET6","index":"0.000007047828859327"},{"denom":"ASSET7","index":"0.000011075197168484"},{"denom":"ASSET8","index":"0.000015134882092008"},{"denom":"ASSET9","index":"0.000006422749115253"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[{"denom":"ASSET0","index":"0.000001554974273829"},{"denom":"ASSET1","index":"0.000012964145980643"},{"denom":"ASSET10","index":"0.000009032293690170"},{"denom":"ASSET11","index":"0.000012541598623624"},{"denom":"ASSET12","index":"0.000011293609918011"},{"denom":"ASSET13","index":"0.000003886649549954"},{"denom":"ASSET14","index":"0.000011715371140412"},{"denom":"ASSET15","index":"0.000008376264351692"},{"denom":"ASSET16","index":"0.000005840194074962"},{"denom":"ASSET17","index":"0.000004147646243034"},{"denom":"ASSET18","index":"0.000001975556294303"},{"denom":"ASSET2","index":"0.000003826903319009"},{"denom":"ASSET3","index":"0.000001119455695618"},{"denom":"ASSET4","index":"0.000010535776146539"},{"denom":"ASSET5","index":"0.000000869071819878"},{"denom":"ASSET6","index":"0.000003536426577765"},{"denom":"ASSET7","index":"0.000005416074448708"},{"denom":"ASSET8","index":"0.000007067350213206"},{"denom":"ASSET9","index":"0.000003052560720565"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[{"denom":"ASSET0","index":"0.000003054120352223"},{"denom":"ASSET1","index":"0.000025909289170716"},{"denom":"ASSET10","index":"0.000020664041936079"},{"denom":"ASSET11","index":"0.000025743066158465"},{"denom":"ASSET12","index":"0.000024537849095602"},{"denom":"ASSET13","index":"0.000008085297309351"},{"denom":"ASSET14","index":"0.000023630023251940"},{"denom":"ASSET15","index":"0.000018615490114349"},{"denom":"ASSET16","index":"0.000011495216270003"},{"denom":"ASSET17","index":"0.000009017197770141"},{"denom":"ASSET18","index":"0.000003730110182262"},{"denom":"ASSET2","index":"0.000007845299155388"},{"denom":"ASSET3","index":"0.000002179886924088"},{"denom":"ASSET4","index":"0.000021005968780047"},{"denom":"ASSET5","index":"0.000001698230665763"},{"denom":"ASSET6","index":"0.000006853367473041"},{"denom":"ASSET7","index":"0.000010764057351149"},{"denom":"ASSET8","index":"0.000014698116791571"},{"denom":"ASSET9","index":"0.000006239964640655"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052289230664709808","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288816405838122","reward_histories":[]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET13","snapshot":{"prev_reward_weight":"0.052288402150248382","reward_histories":[]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001587610635106"},{"denom":"ASSET1","index":"0.000013244938725362"},{"denom":"ASSET10","index":"0.000009227311812032"},{"denom":"ASSET11","index":"0.000012812935831455"},{"denom":"ASSET12","index":"0.000011538527294432"},{"denom":"ASSET13","index":"0.000003970376596809"},{"denom":"ASSET14","index":"0.000011969180179294"},{"denom":"ASSET15","index":"0.000008557707326477"},{"denom":"ASSET16","index":"0.000005967039972082"},{"denom":"ASSET17","index":"0.000004237678387413"},{"denom":"ASSET18","index":"0.000002018263519969"},{"denom":"ASSET2","index":"0.000003909626189853"},{"denom":"ASSET3","index":"0.000001143457659809"},{"denom":"ASSET4","index":"0.000010763622103487"},{"denom":"ASSET5","index":"0.000000886955941552"},{"denom":"ASSET6","index":"0.000003612624200292"},{"denom":"ASSET7","index":"0.000005533687069132"},{"denom":"ASSET8","index":"0.000007219848364411"},{"denom":"ASSET9","index":"0.000003118520890387"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003152887181228"},{"denom":"ASSET1","index":"0.000026760532918289"},{"denom":"ASSET10","index":"0.000021371603424459"},{"denom":"ASSET11","index":"0.000026596151859305"},{"denom":"ASSET12","index":"0.000025366346961436"},{"denom":"ASSET13","index":"0.000008353980761099"},{"denom":"ASSET14","index":"0.000024408754798213"},{"denom":"ASSET15","index":"0.000019248058608344"},{"denom":"ASSET16","index":"0.000011870971278696"},{"denom":"ASSET17","index":"0.000009321801721671"},{"denom":"ASSET18","index":"0.000003850124607081"},{"denom":"ASSET2","index":"0.000008105134387478"},{"denom":"ASSET3","index":"0.000002250596051831"},{"denom":"ASSET4","index":"0.000021694971342643"},{"denom":"ASSET5","index":"0.000001752750611640"},{"denom":"ASSET6","index":"0.000007075802880646"},{"denom":"ASSET7","index":"0.000011117440314842"},{"denom":"ASSET8","index":"0.000015186957305377"},{"denom":"ASSET9","index":"0.000006446159830056"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001450981944084"},{"denom":"ASSET1","index":"0.000012097851501865"},{"denom":"ASSET10","index":"0.000008428524260541"},{"denom":"ASSET11","index":"0.000011703479004578"},{"denom":"ASSET12","index":"0.000010538773481717"},{"denom":"ASSET13","index":"0.000003626563958485"},{"denom":"ASSET14","index":"0.000010932552044520"},{"denom":"ASSET15","index":"0.000007816771742159"},{"denom":"ASSET16","index":"0.000005449942823954"},{"denom":"ASSET17","index":"0.000003870671031354"},{"denom":"ASSET18","index":"0.000001843572637920"},{"denom":"ASSET2","index":"0.000003571328051486"},{"denom":"ASSET3","index":"0.000001044730757120"},{"denom":"ASSET4","index":"0.000009831991445917"},{"denom":"ASSET5","index":"0.000000810720570477"},{"denom":"ASSET6","index":"0.000003299899992359"},{"denom":"ASSET7","index":"0.000005054382457699"},{"denom":"ASSET8","index":"0.000006595048508847"},{"denom":"ASSET9","index":"0.000002848509784621"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002831039632868"},{"denom":"ASSET1","index":"0.000024014703977493"},{"denom":"ASSET10","index":"0.000019136467933987"},{"denom":"ASSET11","index":"0.000023856136612857"},{"denom":"ASSET12","index":"0.000022731094165303"},{"denom":"ASSET13","index":"0.000007491812146677"},{"denom":"ASSET14","index":"0.000021900750691559"},{"denom":"ASSET15","index":"0.000017242457090593"},{"denom":"ASSET16","index":"0.000010655585625623"},{"denom":"ASSET17","index":"0.000008353141870908"},{"denom":"ASSET18","index":"0.000003458892129556"},{"denom":"ASSET2","index":"0.000007270317321266"},{"denom":"ASSET3","index":"0.000002020551075646"},{"denom":"ASSET4","index":"0.000019470118745656"},{"denom":"ASSET5","index":"0.000001574098937698"},{"denom":"ASSET6","index":"0.000006353413461243"},{"denom":"ASSET7","index":"0.000009977493764026"},{"denom":"ASSET8","index":"0.000013619759476676"},{"denom":"ASSET9","index":"0.000005782490697784"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001596167964962"},{"denom":"ASSET1","index":"0.000013307648687747"},{"denom":"ASSET10","index":"0.000009271254138767"},{"denom":"ASSET11","index":"0.000012873344596610"},{"denom":"ASSET12","index":"0.000011592750107942"},{"denom":"ASSET13","index":"0.000003989527201016"},{"denom":"ASSET14","index":"0.000012025715131995"},{"denom":"ASSET15","index":"0.000008598149750858"},{"denom":"ASSET16","index":"0.000005994556982506"},{"denom":"ASSET17","index":"0.000004257340617956"},{"denom":"ASSET18","index":"0.000002028240277625"},{"denom":"ASSET2","index":"0.000003928376470814"},{"denom":"ASSET3","index":"0.000001148919558672"},{"denom":"ASSET4","index":"0.000010814752131731"},{"denom":"ASSET5","index":"0.000000891818678410"},{"denom":"ASSET6","index":"0.000003630210866621"},{"denom":"ASSET7","index":"0.000005559360179979"},{"denom":"ASSET8","index":"0.000007254619109209"},{"denom":"ASSET9","index":"0.000003133416978198"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003160678210357"},{"denom":"ASSET1","index":"0.000026816731621709"},{"denom":"ASSET10","index":"0.000021409695697867"},{"denom":"ASSET11","index":"0.000026650151208928"},{"denom":"ASSET12","index":"0.000025413985003091"},{"denom":"ASSET13","index":"0.000008371194471357"},{"denom":"ASSET14","index":"0.000024459575922385"},{"denom":"ASSET15","index":"0.000019283728762326"},{"denom":"ASSET16","index":"0.000011895729224726"},{"denom":"ASSET17","index":"0.000009339186085895"},{"denom":"ASSET18","index":"0.000003859320220004"},{"denom":"ASSET2","index":"0.000008121656282140"},{"denom":"ASSET3","index":"0.000002255587694637"},{"denom":"ASSET4","index":"0.000021740936259308"},{"denom":"ASSET5","index":"0.000001757304707579"},{"denom":"ASSET6","index":"0.000007091577992612"},{"denom":"ASSET7","index":"0.000011140302591406"},{"denom":"ASSET8","index":"0.000015217956063596"},{"denom":"ASSET9","index":"0.000006459479788296"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001539653287763"},{"denom":"ASSET1","index":"0.000012837628062054"},{"denom":"ASSET10","index":"0.000008944076712630"},{"denom":"ASSET11","index":"0.000012418678362380"},{"denom":"ASSET12","index":"0.000011182855597091"},{"denom":"ASSET13","index":"0.000003848344731893"},{"denom":"ASSET14","index":"0.000011600753980079"},{"denom":"ASSET15","index":"0.000008294363000211"},{"denom":"ASSET16","index":"0.000005782767435536"},{"denom":"ASSET17","index":"0.000004106968636837"},{"denom":"ASSET18","index":"0.000001956500354065"},{"denom":"ASSET2","index":"0.000003789470997435"},{"denom":"ASSET3","index":"0.000001108613446191"},{"denom":"ASSET4","index":"0.000010432741141086"},{"denom":"ASSET5","index":"0.000000860502708115"},{"denom":"ASSET6","index":"0.000003501935883605"},{"denom":"ASSET7","index":"0.000005362766419174"},{"denom":"ASSET8","index":"0.000006998089525433"},{"denom":"ASSET9","index":"0.000003022535474442"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003102081054533"},{"denom":"ASSET1","index":"0.000026328097047411"},{"denom":"ASSET10","index":"0.000021065731925672"},{"denom":"ASSET11","index":"0.000026176422512857"},{"denom":"ASSET12","index":"0.000024984864029023"},{"denom":"ASSET13","index":"0.000008223750690350"},{"denom":"ASSET14","index":"0.000024017391771060"},{"denom":"ASSET15","index":"0.000018965095888316"},{"denom":"ASSET16","index":"0.000011675661088751"},{"denom":"ASSET17","index":"0.000009181817821335"},{"denom":"ASSET18","index":"0.000003784851704842"},{"denom":"ASSET2","index":"0.000007977007181168"},{"denom":"ASSET3","index":"0.000002213531006169"},{"denom":"ASSET4","index":"0.000021343717572048"},{"denom":"ASSET5","index":"0.000001724500934679"},{"denom":"ASSET6","index":"0.000006958604580417"},{"denom":"ASSET7","index":"0.000010936011139136"},{"denom":"ASSET8","index":"0.000014950117004491"},{"denom":"ASSET9","index":"0.000006344046059941"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001722784092424"},{"denom":"ASSET1","index":"0.000014376047839207"},{"denom":"ASSET10","index":"0.000010014727915911"},{"denom":"ASSET11","index":"0.000013905627425621"},{"denom":"ASSET12","index":"0.000012523636788373"},{"denom":"ASSET13","index":"0.000004309050988454"},{"denom":"ASSET14","index":"0.000012989875687172"},{"denom":"ASSET15","index":"0.000009287144342897"},{"denom":"ASSET16","index":"0.000006475075648346"},{"denom":"ASSET17","index":"0.000004597575508787"},{"denom":"ASSET18","index":"0.000002191113748617"},{"denom":"ASSET2","index":"0.000004242146751855"},{"denom":"ASSET3","index":"0.000001239819134475"},{"denom":"ASSET4","index":"0.000011683152316098"},{"denom":"ASSET5","index":"0.000000961748401110"},{"denom":"ASSET6","index":"0.000003920170113222"},{"denom":"ASSET7","index":"0.000006004655234759"},{"denom":"ASSET8","index":"0.000007836158711656"},{"denom":"ASSET9","index":"0.000003384936220430"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003308323901116"},{"denom":"ASSET1","index":"0.000028066718381779"},{"denom":"ASSET10","index":"0.000022316311421496"},{"denom":"ASSET11","index":"0.000027867424204892"},{"denom":"ASSET12","index":"0.000026530665881565"},{"denom":"ASSET13","index":"0.000008749579510737"},{"denom":"ASSET14","index":"0.000025590688346390"},{"denom":"ASSET15","index":"0.000020116135001180"},{"denom":"ASSET16","index":"0.000012455644018572"},{"denom":"ASSET17","index":"0.000009747635771928"},{"denom":"ASSET18","index":"0.000004046709206696"},{"denom":"ASSET2","index":"0.000008491843085820"},{"denom":"ASSET3","index":"0.000002361259343526"},{"denom":"ASSET4","index":"0.000022756236881458"},{"denom":"ASSET5","index":"0.000001838827056256"},{"denom":"ASSET6","index":"0.000007428217086977"},{"denom":"ASSET7","index":"0.000011660835649526"},{"denom":"ASSET8","index":"0.000015906513514404"},{"denom":"ASSET9","index":"0.000006755948018281"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001677980890787"},{"denom":"ASSET1","index":"0.000013990275877081"},{"denom":"ASSET10","index":"0.000009746835585844"},{"denom":"ASSET11","index":"0.000013534047272362"},{"denom":"ASSET12","index":"0.000012187401487418"},{"denom":"ASSET13","index":"0.000004194217559326"},{"denom":"ASSET14","index":"0.000012642160756856"},{"denom":"ASSET15","index":"0.000009039350648091"},{"denom":"ASSET16","index":"0.000006301979019776"},{"denom":"ASSET17","index":"0.000004475595265619"},{"denom":"ASSET18","index":"0.000002132005492585"},{"denom":"ASSET2","index":"0.000004129566806967"},{"denom":"ASSET3","index":"0.000001207793600899"},{"denom":"ASSET4","index":"0.000011368981735957"},{"denom":"ASSET5","index":"0.000000937435909214"},{"denom":"ASSET6","index":"0.000003815863724495"},{"denom":"ASSET7","index":"0.000005844281079776"},{"denom":"ASSET8","index":"0.000007626584775507"},{"denom":"ASSET9","index":"0.000003293515032135"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003299297789724"},{"denom":"ASSET1","index":"0.000027989603079017"},{"denom":"ASSET10","index":"0.000022326156077139"},{"denom":"ASSET11","index":"0.000027810817552502"},{"denom":"ASSET12","index":"0.000026510364756940"},{"denom":"ASSET13","index":"0.000008734817330461"},{"denom":"ASSET14","index":"0.000025527438517331"},{"denom":"ASSET15","index":"0.000020112836713905"},{"denom":"ASSET16","index":"0.000012417417558556"},{"denom":"ASSET17","index":"0.000009741881197111"},{"denom":"ASSET18","index":"0.000004029624902086"},{"denom":"ASSET2","index":"0.000008475129511821"},{"denom":"ASSET3","index":"0.000002354634361983"},{"denom":"ASSET4","index":"0.000022691681830907"},{"denom":"ASSET5","index":"0.000001834207215432"},{"denom":"ASSET6","index":"0.000007402948949368"},{"denom":"ASSET7","index":"0.000011627814435586"},{"denom":"ASSET8","index":"0.000015878876786083"},{"denom":"ASSET9","index":"0.000006740310437402"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001570026110869"},{"denom":"ASSET1","index":"0.000013093495665706"},{"denom":"ASSET10","index":"0.000009121814411369"},{"denom":"ASSET11","index":"0.000012665871768525"},{"denom":"ASSET12","index":"0.000011405375746022"},{"denom":"ASSET13","index":"0.000003924443730811"},{"denom":"ASSET14","index":"0.000011831756550478"},{"denom":"ASSET15","index":"0.000008459245989284"},{"denom":"ASSET16","index":"0.000005898474977098"},{"denom":"ASSET17","index":"0.000004187979388376"},{"denom":"ASSET18","index":"0.000001995163822601"},{"denom":"ASSET2","index":"0.000003864775280042"},{"denom":"ASSET3","index":"0.000001129971286445"},{"denom":"ASSET4","index":"0.000010639630627815"},{"denom":"ASSET5","index":"0.000000877623463400"},{"denom":"ASSET6","index":"0.000003571405397092"},{"denom":"ASSET7","index":"0.000005469607987193"},{"denom":"ASSET8","index":"0.000007137838423287"},{"denom":"ASSET9","index":"0.000003082869956418"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003142586597057"},{"denom":"ASSET1","index":"0.000026671940208455"},{"denom":"ASSET10","index":"0.000021322845581004"},{"denom":"ASSET11","index":"0.000026513185667064"},{"denom":"ASSET12","index":"0.000025297681895631"},{"denom":"ASSET13","index":"0.000008328263582513"},{"denom":"ASSET14","index":"0.000024329302916923"},{"denom":"ASSET15","index":"0.000019199384187435"},{"denom":"ASSET16","index":"0.000011829863063918"},{"denom":"ASSET17","index":"0.000009295955073087"},{"denom":"ASSET18","index":"0.000003835509513951"},{"denom":"ASSET2","index":"0.000008079410847125"},{"denom":"ASSET3","index":"0.000002242309830967"},{"denom":"ASSET4","index":"0.000021622076491366"},{"denom":"ASSET5","index":"0.000001747112267207"},{"denom":"ASSET6","index":"0.000007050444762949"},{"denom":"ASSET7","index":"0.000011079003337441"},{"denom":"ASSET8","index":"0.000015142122511204"},{"denom":"ASSET9","index":"0.000006425848418438"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001808467589320"},{"denom":"ASSET1","index":"0.000015078627759778"},{"denom":"ASSET10","index":"0.000010504031371633"},{"denom":"ASSET11","index":"0.000014586692317421"},{"denom":"ASSET12","index":"0.000013135079536696"},{"denom":"ASSET13","index":"0.000004520160908868"},{"denom":"ASSET14","index":"0.000013624998850191"},{"denom":"ASSET15","index":"0.000009741934661752"},{"denom":"ASSET16","index":"0.000006792338136474"},{"denom":"ASSET17","index":"0.000004822580238185"},{"denom":"ASSET18","index":"0.000002296370773952"},{"denom":"ASSET2","index":"0.000004449596398694"},{"denom":"ASSET3","index":"0.000001300403116066"},{"denom":"ASSET4","index":"0.000012254031223951"},{"denom":"ASSET5","index":"0.000001010080559921"},{"denom":"ASSET6","index":"0.000004112902878720"},{"denom":"ASSET7","index":"0.000006298386565256"},{"denom":"ASSET8","index":"0.000008219757370854"},{"denom":"ASSET9","index":"0.000003550402926189"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003309574221953"},{"denom":"ASSET1","index":"0.000028041386020893"},{"denom":"ASSET10","index":"0.000022151472675705"},{"denom":"ASSET11","index":"0.000027806413413432"},{"denom":"ASSET12","index":"0.000026397319662942"},{"denom":"ASSET13","index":"0.000008723998941637"},{"denom":"ASSET14","index":"0.000025556208464743"},{"denom":"ASSET15","index":"0.000019995491235522"},{"denom":"ASSET16","index":"0.000012454763771642"},{"denom":"ASSET17","index":"0.000009698403814011"},{"denom":"ASSET18","index":"0.000004053515914738"},{"denom":"ASSET2","index":"0.000008473190716338"},{"denom":"ASSET3","index":"0.000002361530218445"},{"denom":"ASSET4","index":"0.000022738669483779"},{"denom":"ASSET5","index":"0.000001840125976242"},{"denom":"ASSET6","index":"0.000007434008870747"},{"denom":"ASSET7","index":"0.000011653935721338"},{"denom":"ASSET8","index":"0.000015861166565423"},{"denom":"ASSET9","index":"0.000006742103174023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001541663174382"},{"denom":"ASSET1","index":"0.000012852134347969"},{"denom":"ASSET10","index":"0.000008953505358908"},{"denom":"ASSET11","index":"0.000012432624080325"},{"denom":"ASSET12","index":"0.000011194846435509"},{"denom":"ASSET13","index":"0.000003852675567517"},{"denom":"ASSET14","index":"0.000011614356703153"},{"denom":"ASSET15","index":"0.000008302745615107"},{"denom":"ASSET16","index":"0.000005788648746115"},{"denom":"ASSET17","index":"0.000004110607675539"},{"denom":"ASSET18","index":"0.000001958208705152"},{"denom":"ASSET2","index":"0.000003793380830041"},{"denom":"ASSET3","index":"0.000001108811590805"},{"denom":"ASSET4","index":"0.000010443285637998"},{"denom":"ASSET5","index":"0.000000861256061842"},{"denom":"ASSET6","index":"0.000003505801353281"},{"denom":"ASSET7","index":"0.000005369138478471"},{"denom":"ASSET8","index":"0.000007005673232815"},{"denom":"ASSET9","index":"0.000003025513979724"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003039218640043"},{"denom":"ASSET1","index":"0.000025782167100542"},{"denom":"ASSET10","index":"0.000020571830356487"},{"denom":"ASSET11","index":"0.000025618833387376"},{"denom":"ASSET12","index":"0.000024423552320522"},{"denom":"ASSET13","index":"0.000008046369560384"},{"denom":"ASSET14","index":"0.000023515194162679"},{"denom":"ASSET15","index":"0.000018530055863607"},{"denom":"ASSET16","index":"0.000011436803083329"},{"denom":"ASSET17","index":"0.000008974370950503"},{"denom":"ASSET18","index":"0.000003710743638587"},{"denom":"ASSET2","index":"0.000007806913274081"},{"denom":"ASSET3","index":"0.000002167934051431"},{"denom":"ASSET4","index":"0.000020901035076857"},{"denom":"ASSET5","index":"0.000001689640060433"},{"denom":"ASSET6","index":"0.000006819038075969"},{"denom":"ASSET7","index":"0.000010710838619674"},{"denom":"ASSET8","index":"0.000014627524271874"},{"denom":"ASSET9","index":"0.000006209166066794"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001647112085871"},{"denom":"ASSET1","index":"0.000013744257107488"},{"denom":"ASSET10","index":"0.000009576415679235"},{"denom":"ASSET11","index":"0.000013296650962579"},{"denom":"ASSET12","index":"0.000011973464376313"},{"denom":"ASSET13","index":"0.000004120724991946"},{"denom":"ASSET14","index":"0.000012421070521222"},{"denom":"ASSET15","index":"0.000008879485058873"},{"denom":"ASSET16","index":"0.000006191885004573"},{"denom":"ASSET17","index":"0.000004397534055245"},{"denom":"ASSET18","index":"0.000002094718230780"},{"denom":"ASSET2","index":"0.000004055939892025"},{"denom":"ASSET3","index":"0.000001185763647039"},{"denom":"ASSET4","index":"0.000011170521774262"},{"denom":"ASSET5","index":"0.000000920733692817"},{"denom":"ASSET6","index":"0.000003749683056035"},{"denom":"ASSET7","index":"0.000005742315674818"},{"denom":"ASSET8","index":"0.000007491513372686"},{"denom":"ASSET9","index":"0.000003235328626359"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003240628198198"},{"denom":"ASSET1","index":"0.000027504329283847"},{"denom":"ASSET10","index":"0.000021940320319100"},{"denom":"ASSET11","index":"0.000027329345632586"},{"denom":"ASSET12","index":"0.000026051323397008"},{"denom":"ASSET13","index":"0.000008583813762496"},{"denom":"ASSET14","index":"0.000025085743554439"},{"denom":"ASSET15","index":"0.000019763439018939"},{"denom":"ASSET16","index":"0.000012202670980955"},{"denom":"ASSET17","index":"0.000009573761377605"},{"denom":"ASSET18","index":"0.000003959875003044"},{"denom":"ASSET2","index":"0.000008327243811102"},{"denom":"ASSET3","index":"0.000002312908746824"},{"denom":"ASSET4","index":"0.000022299606884078"},{"denom":"ASSET5","index":"0.000001802093087045"},{"denom":"ASSET6","index":"0.000007275447910852"},{"denom":"ASSET7","index":"0.000011427132859276"},{"denom":"ASSET8","index":"0.000015602768933976"},{"denom":"ASSET9","index":"0.000006623309483786"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001570100817458"},{"denom":"ASSET1","index":"0.000013089401919768"},{"denom":"ASSET10","index":"0.000009119446705996"},{"denom":"ASSET11","index":"0.000012662761138201"},{"denom":"ASSET12","index":"0.000011403229713207"},{"denom":"ASSET13","index":"0.000003924467777503"},{"denom":"ASSET14","index":"0.000011828301962489"},{"denom":"ASSET15","index":"0.000008457526081653"},{"denom":"ASSET16","index":"0.000005896112859965"},{"denom":"ASSET17","index":"0.000004187981201412"},{"denom":"ASSET18","index":"0.000001993604534455"},{"denom":"ASSET2","index":"0.000003863295018381"},{"denom":"ASSET3","index":"0.000001129343245325"},{"denom":"ASSET4","index":"0.000010637785958043"},{"denom":"ASSET5","index":"0.000000876809547412"},{"denom":"ASSET6","index":"0.000003569979481054"},{"denom":"ASSET7","index":"0.000005467903546113"},{"denom":"ASSET8","index":"0.000007135253365252"},{"denom":"ASSET9","index":"0.000003082165940365"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003152920186871"},{"denom":"ASSET1","index":"0.000026760622644749"},{"denom":"ASSET10","index":"0.000021403995558307"},{"denom":"ASSET11","index":"0.000026604821287493"},{"denom":"ASSET12","index":"0.000025390105019040"},{"denom":"ASSET13","index":"0.000008358570294936"},{"denom":"ASSET14","index":"0.000024411618525071"},{"denom":"ASSET15","index":"0.000019270968708391"},{"denom":"ASSET16","index":"0.000011868219590271"},{"denom":"ASSET17","index":"0.000009330682788205"},{"denom":"ASSET18","index":"0.000003846613833157"},{"denom":"ASSET2","index":"0.000008107095494272"},{"denom":"ASSET3","index":"0.000002249072663818"},{"denom":"ASSET4","index":"0.000021694789218154"},{"denom":"ASSET5","index":"0.000001752328837510"},{"denom":"ASSET6","index":"0.000007072706136469"},{"denom":"ASSET7","index":"0.000011115912260277"},{"denom":"ASSET8","index":"0.000015194187602297"},{"denom":"ASSET9","index":"0.000006447849146068"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001655272585709"},{"denom":"ASSET1","index":"0.000013804891217292"},{"denom":"ASSET10","index":"0.000009617831976915"},{"denom":"ASSET11","index":"0.000013354722791997"},{"denom":"ASSET12","index":"0.000012025575872058"},{"denom":"ASSET13","index":"0.000004138592201887"},{"denom":"ASSET14","index":"0.000012474922822124"},{"denom":"ASSET15","index":"0.000008919578032571"},{"denom":"ASSET16","index":"0.000006218567480803"},{"denom":"ASSET17","index":"0.000004416250829168"},{"denom":"ASSET18","index":"0.000002103798060547"},{"denom":"ASSET2","index":"0.000004074517134053"},{"denom":"ASSET3","index":"0.000001191960556756"},{"denom":"ASSET4","index":"0.000011218887197534"},{"denom":"ASSET5","index":"0.000000924981107448"},{"denom":"ASSET6","index":"0.000003765642448085"},{"denom":"ASSET7","index":"0.000005766756105051"},{"denom":"ASSET8","index":"0.000007525534569569"},{"denom":"ASSET9","index":"0.000003250577479728"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003218229550028"},{"denom":"ASSET1","index":"0.000027301798081180"},{"denom":"ASSET10","index":"0.000021745417841688"},{"denom":"ASSET11","index":"0.000027119412726222"},{"denom":"ASSET12","index":"0.000025834540696398"},{"denom":"ASSET13","index":"0.000008516471999212"},{"denom":"ASSET14","index":"0.000024897496810197"},{"denom":"ASSET15","index":"0.000019595694306931"},{"denom":"ASSET16","index":"0.000012114595919920"},{"denom":"ASSET17","index":"0.000009493460517354"},{"denom":"ASSET18","index":"0.000003932937797970"},{"denom":"ASSET2","index":"0.000008264095290285"},{"denom":"ASSET3","index":"0.000002297232512411"},{"denom":"ASSET4","index":"0.000022135581489268"},{"denom":"ASSET5","index":"0.000001789675045728"},{"denom":"ASSET6","index":"0.000007223884768794"},{"denom":"ASSET7","index":"0.000011342725097550"},{"denom":"ASSET8","index":"0.000015481678980085"},{"denom":"ASSET9","index":"0.000006573861400446"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001621688869515"},{"denom":"ASSET1","index":"0.000013520143478358"},{"denom":"ASSET10","index":"0.000009419470546393"},{"denom":"ASSET11","index":"0.000013079418684764"},{"denom":"ASSET12","index":"0.000011778054243646"},{"denom":"ASSET13","index":"0.000004053107355591"},{"denom":"ASSET14","index":"0.000012218035825109"},{"denom":"ASSET15","index":"0.000008735715386011"},{"denom":"ASSET16","index":"0.000006090623412316"},{"denom":"ASSET17","index":"0.000004325494601547"},{"denom":"ASSET18","index":"0.000002060555632782"},{"denom":"ASSET2","index":"0.000003991049142665"},{"denom":"ASSET3","index":"0.000001167586257565"},{"denom":"ASSET4","index":"0.000010987648142487"},{"denom":"ASSET5","index":"0.000000905975587506"},{"denom":"ASSET6","index":"0.000003688190199343"},{"denom":"ASSET7","index":"0.000005648412194460"},{"denom":"ASSET8","index":"0.000007370434701640"},{"denom":"ASSET9","index":"0.000003183549162496"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003224207736427"},{"denom":"ASSET1","index":"0.000027358045975387"},{"denom":"ASSET10","index":"0.000021853454393362"},{"denom":"ASSET11","index":"0.000027191663823691"},{"denom":"ASSET12","index":"0.000025935625558190"},{"denom":"ASSET13","index":"0.000008541293337334"},{"denom":"ASSET14","index":"0.000024954691173737"},{"denom":"ASSET15","index":"0.000019681390400685"},{"denom":"ASSET16","index":"0.000012135703886829"},{"denom":"ASSET17","index":"0.000009530848033034"},{"denom":"ASSET18","index":"0.000003936224347496"},{"denom":"ASSET2","index":"0.000008286598878032"},{"denom":"ASSET3","index":"0.000002301038846536"},{"denom":"ASSET4","index":"0.000022179933336345"},{"denom":"ASSET5","index":"0.000001792519798769"},{"denom":"ASSET6","index":"0.000007234068845872"},{"denom":"ASSET7","index":"0.000011365474292791"},{"denom":"ASSET8","index":"0.000015527655320242"},{"denom":"ASSET9","index":"0.000006590765495457"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001684197417987"},{"denom":"ASSET1","index":"0.000014041270025306"},{"denom":"ASSET10","index":"0.000009782380002809"},{"denom":"ASSET11","index":"0.000013583439347888"},{"denom":"ASSET12","index":"0.000012231725730520"},{"denom":"ASSET13","index":"0.000004209525615418"},{"denom":"ASSET14","index":"0.000012688588478388"},{"denom":"ASSET15","index":"0.000009072403677468"},{"denom":"ASSET16","index":"0.000006325419612958"},{"denom":"ASSET17","index":"0.000004492161044183"},{"denom":"ASSET18","index":"0.000002139608271529"},{"denom":"ASSET2","index":"0.000004144674335530"},{"denom":"ASSET3","index":"0.000001212331762086"},{"denom":"ASSET4","index":"0.000011410921471639"},{"denom":"ASSET5","index":"0.000000940827523152"},{"denom":"ASSET6","index":"0.000003830097231595"},{"denom":"ASSET7","index":"0.000005866137041214"},{"denom":"ASSET8","index":"0.000007654386885887"},{"denom":"ASSET9","index":"0.000003305963379963"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003193080094990"},{"denom":"ASSET1","index":"0.000027069824276969"},{"denom":"ASSET10","index":"0.000021489349079139"},{"denom":"ASSET11","index":"0.000026870184080824"},{"denom":"ASSET12","index":"0.000025561356340007"},{"denom":"ASSET13","index":"0.000008435097288603"},{"denom":"ASSET14","index":"0.000024680442306089"},{"denom":"ASSET15","index":"0.000019377704768171"},{"denom":"ASSET16","index":"0.000012016988086595"},{"denom":"ASSET17","index":"0.000009392966467546"},{"denom":"ASSET18","index":"0.000003905368596850"},{"denom":"ASSET2","index":"0.000008189075060838"},{"denom":"ASSET3","index":"0.000002279664955012"},{"denom":"ASSET4","index":"0.000021948593995488"},{"denom":"ASSET5","index":"0.000001775351671947"},{"denom":"ASSET6","index":"0.000007168631437760"},{"denom":"ASSET7","index":"0.000011248752159293"},{"denom":"ASSET8","index":"0.000015334459676317"},{"denom":"ASSET9","index":"0.000006513651901550"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001677613648548"},{"denom":"ASSET1","index":"0.000013997394471820"},{"denom":"ASSET10","index":"0.000009752554992736"},{"denom":"ASSET11","index":"0.000013541183096442"},{"denom":"ASSET12","index":"0.000012193285851007"},{"denom":"ASSET13","index":"0.000004195070965406"},{"denom":"ASSET14","index":"0.000012649497226385"},{"denom":"ASSET15","index":"0.000009043353672830"},{"denom":"ASSET16","index":"0.000006306085420563"},{"denom":"ASSET17","index":"0.000004477092542912"},{"denom":"ASSET18","index":"0.000002131751335856"},{"denom":"ASSET2","index":"0.000004130786635239"},{"denom":"ASSET3","index":"0.000001208960144751"},{"denom":"ASSET4","index":"0.000011376252751467"},{"denom":"ASSET5","index":"0.000000937307007594"},{"denom":"ASSET6","index":"0.000003817659736684"},{"denom":"ASSET7","index":"0.000005847800357116"},{"denom":"ASSET8","index":"0.000007631172097229"},{"denom":"ASSET9","index":"0.000003295090343070"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003316222748087"},{"denom":"ASSET1","index":"0.000028147075207200"},{"denom":"ASSET10","index":"0.000022466702115272"},{"denom":"ASSET11","index":"0.000027971336509453"},{"denom":"ASSET12","index":"0.000026669877578580"},{"denom":"ASSET13","index":"0.000008784355829882"},{"denom":"ASSET14","index":"0.000025672864554615"},{"denom":"ASSET15","index":"0.000020235356040284"},{"denom":"ASSET16","index":"0.000012487172511964"},{"denom":"ASSET17","index":"0.000009799807931023"},{"denom":"ASSET18","index":"0.000004049727438870"},{"denom":"ASSET2","index":"0.000008522892941853"},{"denom":"ASSET3","index":"0.000002368075218536"},{"denom":"ASSET4","index":"0.000022820717384594"},{"denom":"ASSET5","index":"0.000001843591257654"},{"denom":"ASSET6","index":"0.000007443165294976"},{"denom":"ASSET7","index":"0.000011693499621126"},{"denom":"ASSET8","index":"0.000015972009373807"},{"denom":"ASSET9","index":"0.000006779069609364"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001520550536467"},{"denom":"ASSET1","index":"0.000012675827554874"},{"denom":"ASSET10","index":"0.000008831388003026"},{"denom":"ASSET11","index":"0.000012262725604616"},{"denom":"ASSET12","index":"0.000011042474271843"},{"denom":"ASSET13","index":"0.000003800233070086"},{"denom":"ASSET14","index":"0.000011455195131741"},{"denom":"ASSET15","index":"0.000008190012927118"},{"denom":"ASSET16","index":"0.000005710257954490"},{"denom":"ASSET17","index":"0.000004055182520937"},{"denom":"ASSET18","index":"0.000001931747034924"},{"denom":"ASSET2","index":"0.000003741926245004"},{"denom":"ASSET3","index":"0.000001094491513968"},{"denom":"ASSET4","index":"0.000010301253521611"},{"denom":"ASSET5","index":"0.000000849450412477"},{"denom":"ASSET6","index":"0.000003457632836431"},{"denom":"ASSET7","index":"0.000005295631642792"},{"denom":"ASSET8","index":"0.000006910311498182"},{"denom":"ASSET9","index":"0.000002984699699651"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003047858420945"},{"denom":"ASSET1","index":"0.000025863853767953"},{"denom":"ASSET10","index":"0.000020681482671570"},{"denom":"ASSET11","index":"0.000025712271525236"},{"denom":"ASSET12","index":"0.000024535470175220"},{"denom":"ASSET13","index":"0.000008077733573885"},{"denom":"ASSET14","index":"0.000023593590000343"},{"denom":"ASSET15","index":"0.000018621561303244"},{"denom":"ASSET16","index":"0.000011471343089677"},{"denom":"ASSET17","index":"0.000009016132124589"},{"denom":"ASSET18","index":"0.000003719208275283"},{"denom":"ASSET2","index":"0.000007835789085827"},{"denom":"ASSET3","index":"0.000002174729135607"},{"denom":"ASSET4","index":"0.000020967814383093"},{"denom":"ASSET5","index":"0.000001694402278429"},{"denom":"ASSET6","index":"0.000006836893759575"},{"denom":"ASSET7","index":"0.000010744095518390"},{"denom":"ASSET8","index":"0.000014684305897471"},{"denom":"ASSET9","index":"0.000006231971052532"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001765508823557"},{"denom":"ASSET1","index":"0.000014724618911480"},{"denom":"ASSET10","index":"0.000010258363403154"},{"denom":"ASSET11","index":"0.000014244524406828"},{"denom":"ASSET12","index":"0.000012826610887714"},{"denom":"ASSET13","index":"0.000004413772058893"},{"denom":"ASSET14","index":"0.000013305845007949"},{"denom":"ASSET15","index":"0.000009513270498085"},{"denom":"ASSET16","index":"0.000006632703470176"},{"denom":"ASSET17","index":"0.000004710604682736"},{"denom":"ASSET18","index":"0.000002243882559375"},{"denom":"ASSET2","index":"0.000004346662074372"},{"denom":"ASSET3","index":"0.000001271648168235"},{"denom":"ASSET4","index":"0.000011966226470776"},{"denom":"ASSET5","index":"0.000000986860926228"},{"denom":"ASSET6","index":"0.000004016274458267"},{"denom":"ASSET7","index":"0.000006150888196691"},{"denom":"ASSET8","index":"0.000008026526225616"},{"denom":"ASSET9","index":"0.000003466488815844"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003365151784209"},{"denom":"ASSET1","index":"0.000028538337865727"},{"denom":"ASSET10","index":"0.000022670552359626"},{"denom":"ASSET11","index":"0.000028331786642422"},{"denom":"ASSET12","index":"0.000026959391418936"},{"denom":"ASSET13","index":"0.000008894072871450"},{"denom":"ASSET14","index":"0.000026020188745878"},{"denom":"ASSET15","index":"0.000020439828986765"},{"denom":"ASSET16","index":"0.000012667128947757"},{"denom":"ASSET17","index":"0.000009907060013179"},{"denom":"ASSET18","index":"0.000004116201786219"},{"denom":"ASSET2","index":"0.000008634485522558"},{"denom":"ASSET3","index":"0.000002403102945281"},{"denom":"ASSET4","index":"0.000023139017263426"},{"denom":"ASSET5","index":"0.000001871649891727"},{"denom":"ASSET6","index":"0.000007555863827839"},{"denom":"ASSET7","index":"0.000011857581945748"},{"denom":"ASSET8","index":"0.000016169532559731"},{"denom":"ASSET9","index":"0.000006867789268222"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001833509758465"},{"denom":"ASSET1","index":"0.000015308139656127"},{"denom":"ASSET10","index":"0.000010661025831945"},{"denom":"ASSET11","index":"0.000014808091540182"},{"denom":"ASSET12","index":"0.000013334616425197"},{"denom":"ASSET13","index":"0.000004587108050268"},{"denom":"ASSET14","index":"0.000013827997232930"},{"denom":"ASSET15","index":"0.000009887618079284"},{"denom":"ASSET16","index":"0.000006893996691827"},{"denom":"ASSET17","index":"0.000004893804228047"},{"denom":"ASSET18","index":"0.000002326890566197"},{"denom":"ASSET2","index":"0.000004513767659929"},{"denom":"ASSET3","index":"0.000001320127026095"},{"denom":"ASSET4","index":"0.000012434529816496"},{"denom":"ASSET5","index":"0.000001020098156528"},{"denom":"ASSET6","index":"0.000004173734941087"},{"denom":"ASSET7","index":"0.000006393948575882"},{"denom":"ASSET8","index":"0.000008340802573961"},{"denom":"ASSET9","index":"0.000003600346434803"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003461123478470"},{"denom":"ASSET1","index":"0.000029368181297786"},{"denom":"ASSET10","index":"0.000023294808028239"},{"denom":"ASSET11","index":"0.000029147392384169"},{"denom":"ASSET12","index":"0.000027719461688447"},{"denom":"ASSET13","index":"0.000009147542663388"},{"denom":"ASSET14","index":"0.000026768604990580"},{"denom":"ASSET15","index":"0.000021008846141082"},{"denom":"ASSET16","index":"0.000013035302068339"},{"denom":"ASSET17","index":"0.000010182949549387"},{"denom":"ASSET18","index":"0.000004232564951180"},{"denom":"ASSET2","index":"0.000008877642147806"},{"denom":"ASSET3","index":"0.000002471921418528"},{"denom":"ASSET4","index":"0.000023806252184245"},{"denom":"ASSET5","index":"0.000001920199705662"},{"denom":"ASSET6","index":"0.000007776538212319"},{"denom":"ASSET7","index":"0.000012202060569359"},{"denom":"ASSET8","index":"0.000016628688342614"},{"denom":"ASSET9","index":"0.000007061722298848"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001580229076001"},{"denom":"ASSET1","index":"0.000013178675425859"},{"denom":"ASSET10","index":"0.000009181488308837"},{"denom":"ASSET11","index":"0.000012749045790152"},{"denom":"ASSET12","index":"0.000011480356468073"},{"denom":"ASSET13","index":"0.000003950572690002"},{"denom":"ASSET14","index":"0.000011909209196663"},{"denom":"ASSET15","index":"0.000008514902002442"},{"denom":"ASSET16","index":"0.000005936347281082"},{"denom":"ASSET17","index":"0.000004216274924019"},{"denom":"ASSET18","index":"0.000002008304897474"},{"denom":"ASSET2","index":"0.000003889973934875"},{"denom":"ASSET3","index":"0.000001137392019304"},{"denom":"ASSET4","index":"0.000010709664607998"},{"denom":"ASSET5","index":"0.000000883343392042"},{"denom":"ASSET6","index":"0.000003594749230410"},{"denom":"ASSET7","index":"0.000005505163831141"},{"denom":"ASSET8","index":"0.000007184060111002"},{"denom":"ASSET9","index":"0.000003102967025342"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003136420796654"},{"denom":"ASSET1","index":"0.000026617535879560"},{"denom":"ASSET10","index":"0.000021257162201233"},{"denom":"ASSET11","index":"0.000026454281403244"},{"denom":"ASSET12","index":"0.000025229520616223"},{"denom":"ASSET13","index":"0.000008309311482354"},{"denom":"ASSET14","index":"0.000024278363089230"},{"denom":"ASSET15","index":"0.000019144672836670"},{"denom":"ASSET16","index":"0.000011806881934189"},{"denom":"ASSET17","index":"0.000009271795054357"},{"denom":"ASSET18","index":"0.000003829937127836"},{"denom":"ASSET2","index":"0.000008061315465971"},{"denom":"ASSET3","index":"0.000002238409344787"},{"denom":"ASSET4","index":"0.000021579173085678"},{"denom":"ASSET5","index":"0.000001744155749232"},{"denom":"ASSET6","index":"0.000007037998659171"},{"denom":"ASSET7","index":"0.000011056982942661"},{"denom":"ASSET8","index":"0.000015105683491420"},{"denom":"ASSET9","index":"0.000006411626899884"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001065673750407"},{"denom":"ASSET1","index":"0.000008885137524612"},{"denom":"ASSET10","index":"0.000006190162379117"},{"denom":"ASSET11","index":"0.000008595321581390"},{"denom":"ASSET12","index":"0.000007740138401991"},{"denom":"ASSET13","index":"0.000002663662498568"},{"denom":"ASSET14","index":"0.000008029258508615"},{"denom":"ASSET15","index":"0.000005740999854868"},{"denom":"ASSET16","index":"0.000004002452113836"},{"denom":"ASSET17","index":"0.000002842492504350"},{"denom":"ASSET18","index":"0.000001354098020432"},{"denom":"ASSET2","index":"0.000002622608139264"},{"denom":"ASSET3","index":"0.000000767159849705"},{"denom":"ASSET4","index":"0.000007220696381306"},{"denom":"ASSET5","index":"0.000000595288209907"},{"denom":"ASSET6","index":"0.000002423598872130"},{"denom":"ASSET7","index":"0.000003711940334016"},{"denom":"ASSET8","index":"0.000004843718561268"},{"denom":"ASSET9","index":"0.000002092032733005"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002559869929403"},{"denom":"ASSET1","index":"0.000021787096732684"},{"denom":"ASSET10","index":"0.000017783238471081"},{"denom":"ASSET11","index":"0.000021752938768967"},{"denom":"ASSET12","index":"0.000020940235345308"},{"denom":"ASSET13","index":"0.000006848308161575"},{"denom":"ASSET14","index":"0.000019904298850841"},{"denom":"ASSET15","index":"0.000015946274018453"},{"denom":"ASSET16","index":"0.000009638424477568"},{"denom":"ASSET17","index":"0.000007695902028378"},{"denom":"ASSET18","index":"0.000003102977872608"},{"denom":"ASSET2","index":"0.000006627591716064"},{"denom":"ASSET3","index":"0.000001824087350341"},{"denom":"ASSET4","index":"0.000017655906837434"},{"denom":"ASSET5","index":"0.000001421889695470"},{"denom":"ASSET6","index":"0.000005729615091854"},{"denom":"ASSET7","index":"0.000009042175373173"},{"denom":"ASSET8","index":"0.000012449153729005"},{"denom":"ASSET9","index":"0.000005268661072858"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001663945626017"},{"denom":"ASSET1","index":"0.000013874870096624"},{"denom":"ASSET10","index":"0.000009666844154779"},{"denom":"ASSET11","index":"0.000013422526194886"},{"denom":"ASSET12","index":"0.000012086742376498"},{"denom":"ASSET13","index":"0.000004159391889779"},{"denom":"ASSET14","index":"0.000012538614102973"},{"denom":"ASSET15","index":"0.000008964719539034"},{"denom":"ASSET16","index":"0.000006250183953344"},{"denom":"ASSET17","index":"0.000004438919645342"},{"denom":"ASSET18","index":"0.000002114400826704"},{"denom":"ASSET2","index":"0.000004095648229305"},{"denom":"ASSET3","index":"0.000001197908641659"},{"denom":"ASSET4","index":"0.000011275545275051"},{"denom":"ASSET5","index":"0.000000929713092403"},{"denom":"ASSET6","index":"0.000003784956906399"},{"denom":"ASSET7","index":"0.000005796423525818"},{"denom":"ASSET8","index":"0.000007563775534382"},{"denom":"ASSET9","index":"0.000003266980643136"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003299045378029"},{"denom":"ASSET1","index":"0.000027992490930804"},{"denom":"ASSET10","index":"0.000022352284005938"},{"denom":"ASSET11","index":"0.000027819914533732"},{"denom":"ASSET12","index":"0.000026530494002155"},{"denom":"ASSET13","index":"0.000008738242797579"},{"denom":"ASSET14","index":"0.000025532401567106"},{"denom":"ASSET15","index":"0.000020131602968729"},{"denom":"ASSET16","index":"0.000012417136212826"},{"denom":"ASSET17","index":"0.000009749421325842"},{"denom":"ASSET18","index":"0.000004027997856345"},{"denom":"ASSET2","index":"0.000008477931503293"},{"denom":"ASSET3","index":"0.000002354450357881"},{"denom":"ASSET4","index":"0.000022693933657862"},{"denom":"ASSET5","index":"0.000001834114741991"},{"denom":"ASSET6","index":"0.000007402245947993"},{"denom":"ASSET7","index":"0.000011628988518089"},{"denom":"ASSET8","index":"0.000015885667960333"},{"denom":"ASSET9","index":"0.000006742956926982"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001554670726054"},{"denom":"ASSET1","index":"0.000012963415617374"},{"denom":"ASSET10","index":"0.000009031685079156"},{"denom":"ASSET11","index":"0.000012540799003679"},{"denom":"ASSET12","index":"0.000011293255065955"},{"denom":"ASSET13","index":"0.000003886042255656"},{"denom":"ASSET14","index":"0.000011715237120170"},{"denom":"ASSET15","index":"0.000008376185136293"},{"denom":"ASSET16","index":"0.000005839850894644"},{"denom":"ASSET17","index":"0.000004147480761425"},{"denom":"ASSET18","index":"0.000001975383661309"},{"denom":"ASSET2","index":"0.000003826393664534"},{"denom":"ASSET3","index":"0.000001119362922759"},{"denom":"ASSET4","index":"0.000010534956487329"},{"denom":"ASSET5","index":"0.000000868711928150"},{"denom":"ASSET6","index":"0.000003536399982164"},{"denom":"ASSET7","index":"0.000005415965161990"},{"denom":"ASSET8","index":"0.000007067088929007"},{"denom":"ASSET9","index":"0.000003052231098907"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003157426180098"},{"denom":"ASSET1","index":"0.000026803913890418"},{"denom":"ASSET10","index":"0.000021467927303389"},{"denom":"ASSET11","index":"0.000026655124661377"},{"denom":"ASSET12","index":"0.000025453388278707"},{"denom":"ASSET13","index":"0.000008375182650914"},{"denom":"ASSET14","index":"0.000024453809207757"},{"denom":"ASSET15","index":"0.000019323681821282"},{"denom":"ASSET16","index":"0.000011885939188892"},{"denom":"ASSET17","index":"0.000009353763879690"},{"denom":"ASSET18","index":"0.000003851457527173"},{"denom":"ASSET2","index":"0.000008122633355733"},{"denom":"ASSET3","index":"0.000002252845423920"},{"denom":"ASSET4","index":"0.000021728796023940"},{"denom":"ASSET5","index":"0.000001755342604855"},{"denom":"ASSET6","index":"0.000007082922688985"},{"denom":"ASSET7","index":"0.000011133765978354"},{"denom":"ASSET8","index":"0.000015225414484063"},{"denom":"ASSET9","index":"0.000006459804222065"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001578706846766"},{"denom":"ASSET1","index":"0.000013164667632738"},{"denom":"ASSET10","index":"0.000009171819989970"},{"denom":"ASSET11","index":"0.000012734981690366"},{"denom":"ASSET12","index":"0.000011467468005207"},{"denom":"ASSET13","index":"0.000003946168668528"},{"denom":"ASSET14","index":"0.000011895957050803"},{"denom":"ASSET15","index":"0.000008505148486066"},{"denom":"ASSET16","index":"0.000005930623522158"},{"denom":"ASSET17","index":"0.000004211879752669"},{"denom":"ASSET18","index":"0.000002005998995588"},{"denom":"ASSET2","index":"0.000003886323829757"},{"denom":"ASSET3","index":"0.000001135855039864"},{"denom":"ASSET4","index":"0.000010697863378618"},{"denom":"ASSET5","index":"0.000000882112923477"},{"denom":"ASSET6","index":"0.000003590690326231"},{"denom":"ASSET7","index":"0.000005499740683011"},{"denom":"ASSET8","index":"0.000007176593065360"},{"denom":"ASSET9","index":"0.000003098765751537"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003185213515607"},{"denom":"ASSET1","index":"0.000027035699090666"},{"denom":"ASSET10","index":"0.000021635640181728"},{"denom":"ASSET11","index":"0.000026880669357351"},{"denom":"ASSET12","index":"0.000025658872180332"},{"denom":"ASSET13","index":"0.000008444958797633"},{"denom":"ASSET14","index":"0.000024662649108986"},{"denom":"ASSET15","index":"0.000019476753279332"},{"denom":"ASSET16","index":"0.000011989846651744"},{"denom":"ASSET17","index":"0.000009429633404312"},{"denom":"ASSET18","index":"0.000003886090392826"},{"denom":"ASSET2","index":"0.000008191890279929"},{"denom":"ASSET3","index":"0.000002271981699175"},{"denom":"ASSET4","index":"0.000021916623044014"},{"denom":"ASSET5","index":"0.000001770727550439"},{"denom":"ASSET6","index":"0.000007144791673859"},{"denom":"ASSET7","index":"0.000011230376410345"},{"denom":"ASSET8","index":"0.000015353061978158"},{"denom":"ASSET9","index":"0.000006513931773648"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001736464555496"},{"denom":"ASSET1","index":"0.000014486324003877"},{"denom":"ASSET10","index":"0.000010092542477093"},{"denom":"ASSET11","index":"0.000014014496766071"},{"denom":"ASSET12","index":"0.000012620063107870"},{"denom":"ASSET13","index":"0.000004342915393341"},{"denom":"ASSET14","index":"0.000013091890345676"},{"denom":"ASSET15","index":"0.000009359368553661"},{"denom":"ASSET16","index":"0.000006524897117620"},{"denom":"ASSET17","index":"0.000004634080157191"},{"denom":"ASSET18","index":"0.000002206537788701"},{"denom":"ASSET2","index":"0.000004276263218483"},{"denom":"ASSET3","index":"0.000001250605280877"},{"denom":"ASSET4","index":"0.000011772878885340"},{"denom":"ASSET5","index":"0.000000969964544635"},{"denom":"ASSET6","index":"0.000003951772367204"},{"denom":"ASSET7","index":"0.000006051315875212"},{"denom":"ASSET8","index":"0.000007896528716001"},{"denom":"ASSET9","index":"0.000003409784945337"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003356675502673"},{"denom":"ASSET1","index":"0.000028477076245214"},{"denom":"ASSET10","index":"0.000022663760086849"},{"denom":"ASSET11","index":"0.000028282539274294"},{"denom":"ASSET12","index":"0.000026934248109484"},{"denom":"ASSET13","index":"0.000008880550781135"},{"denom":"ASSET14","index":"0.000025969128454053"},{"denom":"ASSET15","index":"0.000020425731449718"},{"denom":"ASSET16","index":"0.000012636600959200"},{"denom":"ASSET17","index":"0.000009896936242996"},{"denom":"ASSET18","index":"0.000004102733083140"},{"denom":"ASSET2","index":"0.000008619316582261"},{"denom":"ASSET3","index":"0.000002396767404444"},{"denom":"ASSET4","index":"0.000023088672429632"},{"denom":"ASSET5","index":"0.000001866260713425"},{"denom":"ASSET6","index":"0.000007536521735823"},{"denom":"ASSET7","index":"0.000011831316132227"},{"denom":"ASSET8","index":"0.000016143846449802"},{"denom":"ASSET9","index":"0.000006854365607618"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001432199402946"},{"denom":"ASSET1","index":"0.000011943338809449"},{"denom":"ASSET10","index":"0.000008321234131428"},{"denom":"ASSET11","index":"0.000011554338026882"},{"denom":"ASSET12","index":"0.000010404248756685"},{"denom":"ASSET13","index":"0.000003580160245814"},{"denom":"ASSET14","index":"0.000010793249539252"},{"denom":"ASSET15","index":"0.000007717099003024"},{"denom":"ASSET16","index":"0.000005380388215223"},{"denom":"ASSET17","index":"0.000003821002469456"},{"denom":"ASSET18","index":"0.000001819847139312"},{"denom":"ASSET2","index":"0.000003525361874705"},{"denom":"ASSET3","index":"0.000001031021204577"},{"denom":"ASSET4","index":"0.000009706076917365"},{"denom":"ASSET5","index":"0.000000800326827437"},{"denom":"ASSET6","index":"0.000003258135250159"},{"denom":"ASSET7","index":"0.000004989357863356"},{"denom":"ASSET8","index":"0.000006510858315517"},{"denom":"ASSET9","index":"0.000002812306527182"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002962853679956"},{"denom":"ASSET1","index":"0.000025162993314326"},{"denom":"ASSET10","index":"0.000020199688926412"},{"denom":"ASSET11","index":"0.000025035647772320"},{"denom":"ASSET12","index":"0.000023929456511577"},{"denom":"ASSET13","index":"0.000007867725037604"},{"denom":"ASSET14","index":"0.000022960507028012"},{"denom":"ASSET15","index":"0.000018173489333858"},{"denom":"ASSET16","index":"0.000011155286879957"},{"denom":"ASSET17","index":"0.000008793607250882"},{"denom":"ASSET18","index":"0.000003611579051495"},{"denom":"ASSET2","index":"0.000007628670547867"},{"denom":"ASSET3","index":"0.000002114031306235"},{"denom":"ASSET4","index":"0.000020398130246320"},{"denom":"ASSET5","index":"0.000001647096325587"},{"denom":"ASSET6","index":"0.000006645213242757"},{"denom":"ASSET7","index":"0.000010450616802650"},{"denom":"ASSET8","index":"0.000014303332598966"},{"denom":"ASSET9","index":"0.000006067112886031"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001597673370668"},{"denom":"ASSET1","index":"0.000013327099930964"},{"denom":"ASSET10","index":"0.000009285285696821"},{"denom":"ASSET11","index":"0.000012892979142852"},{"denom":"ASSET12","index":"0.000011609669101507"},{"denom":"ASSET13","index":"0.000003995544306884"},{"denom":"ASSET14","index":"0.000012043789889618"},{"denom":"ASSET15","index":"0.000008610289110917"},{"denom":"ASSET16","index":"0.000006002842621820"},{"denom":"ASSET17","index":"0.000004263637708946"},{"denom":"ASSET18","index":"0.000002030433278566"},{"denom":"ASSET2","index":"0.000003934304697275"},{"denom":"ASSET3","index":"0.000001149943780421"},{"denom":"ASSET4","index":"0.000010829884739162"},{"denom":"ASSET5","index":"0.000000892737420067"},{"denom":"ASSET6","index":"0.000003634911050302"},{"denom":"ASSET7","index":"0.000005567360953495"},{"denom":"ASSET8","index":"0.000007264378579749"},{"denom":"ASSET9","index":"0.000003138189772368"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003135234009226"},{"denom":"ASSET1","index":"0.000026602125077525"},{"denom":"ASSET10","index":"0.000021213712135644"},{"denom":"ASSET11","index":"0.000026430841190504"},{"denom":"ASSET12","index":"0.000025191219856579"},{"denom":"ASSET13","index":"0.000008300995957475"},{"denom":"ASSET14","index":"0.000024262534835813"},{"denom":"ASSET15","index":"0.000019110376679732"},{"denom":"ASSET16","index":"0.000011801461546978"},{"denom":"ASSET17","index":"0.000009257538829689"},{"denom":"ASSET18","index":"0.000003829421505073"},{"denom":"ASSET2","index":"0.000008055136326188"},{"denom":"ASSET3","index":"0.000002237228869924"},{"denom":"ASSET4","index":"0.000021566736915931"},{"denom":"ASSET5","index":"0.000001743257901616"},{"denom":"ASSET6","index":"0.000007036288319926"},{"denom":"ASSET7","index":"0.000011051703047857"},{"denom":"ASSET8","index":"0.000015089589803941"},{"denom":"ASSET9","index":"0.000006406386950018"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001689516061942"},{"denom":"ASSET1","index":"0.000014086551658080"},{"denom":"ASSET10","index":"0.000009813816295422"},{"denom":"ASSET11","index":"0.000013627312671286"},{"denom":"ASSET12","index":"0.000012271349136594"},{"denom":"ASSET13","index":"0.000004223185893030"},{"denom":"ASSET14","index":"0.000012729983861563"},{"denom":"ASSET15","index":"0.000009101391604066"},{"denom":"ASSET16","index":"0.000006345353421478"},{"denom":"ASSET17","index":"0.000004506584688828"},{"denom":"ASSET18","index":"0.000002146942263262"},{"denom":"ASSET2","index":"0.000004157925615959"},{"denom":"ASSET3","index":"0.000001216379053179"},{"denom":"ASSET4","index":"0.000011447740269489"},{"denom":"ASSET5","index":"0.000000943856970227"},{"denom":"ASSET6","index":"0.000003842500943451"},{"denom":"ASSET7","index":"0.000005884905911035"},{"denom":"ASSET8","index":"0.000007678959268655"},{"denom":"ASSET9","index":"0.000003316793155937"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003297864217859"},{"denom":"ASSET1","index":"0.000027973253972789"},{"denom":"ASSET10","index":"0.000022291630953866"},{"denom":"ASSET11","index":"0.000027789008146512"},{"denom":"ASSET12","index":"0.000026479178332828"},{"denom":"ASSET13","index":"0.000008727103479255"},{"denom":"ASSET14","index":"0.000025511286037616"},{"denom":"ASSET15","index":"0.000020085740117730"},{"denom":"ASSET16","index":"0.000012411485442612"},{"denom":"ASSET17","index":"0.000009730550155880"},{"denom":"ASSET18","index":"0.000004028926705548"},{"denom":"ASSET2","index":"0.000008468714781887"},{"denom":"ASSET3","index":"0.000002353891879987"},{"denom":"ASSET4","index":"0.000022679492169342"},{"denom":"ASSET5","index":"0.000001833514119464"},{"denom":"ASSET6","index":"0.000007400677249018"},{"denom":"ASSET7","index":"0.000011621769805761"},{"denom":"ASSET8","index":"0.000015864980999233"},{"denom":"ASSET9","index":"0.000006736116007098"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001411859688057"},{"denom":"ASSET1","index":"0.000011770485537623"},{"denom":"ASSET10","index":"0.000008200497469250"},{"denom":"ASSET11","index":"0.000011386615852852"},{"denom":"ASSET12","index":"0.000010253874969484"},{"denom":"ASSET13","index":"0.000003528347966974"},{"denom":"ASSET14","index":"0.000010637094027671"},{"denom":"ASSET15","index":"0.000007605174144562"},{"denom":"ASSET16","index":"0.000005302606662519"},{"denom":"ASSET17","index":"0.000003765826670265"},{"denom":"ASSET18","index":"0.000001793777493075"},{"denom":"ASSET2","index":"0.000003474345960472"},{"denom":"ASSET3","index":"0.000001016278724767"},{"denom":"ASSET4","index":"0.000009565512043233"},{"denom":"ASSET5","index":"0.000000788559420242"},{"denom":"ASSET6","index":"0.000003210842193807"},{"denom":"ASSET7","index":"0.000004917435724579"},{"denom":"ASSET8","index":"0.000006416479374940"},{"denom":"ASSET9","index":"0.000002771018622781"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002930820438736"},{"denom":"ASSET1","index":"0.000024889799880283"},{"denom":"ASSET10","index":"0.000019988623694797"},{"denom":"ASSET11","index":"0.000024765615752571"},{"denom":"ASSET12","index":"0.000023676022623299"},{"denom":"ASSET13","index":"0.000007783195940338"},{"denom":"ASSET14","index":"0.000022712072914709"},{"denom":"ASSET15","index":"0.000017982209004670"},{"denom":"ASSET16","index":"0.000011033267632466"},{"denom":"ASSET17","index":"0.000008700651286884"},{"denom":"ASSET18","index":"0.000003571624768330"},{"denom":"ASSET2","index":"0.000007546215495169"},{"denom":"ASSET3","index":"0.000002090977414753"},{"denom":"ASSET4","index":"0.000020176663420937"},{"denom":"ASSET5","index":"0.000001628342560149"},{"denom":"ASSET6","index":"0.000006572371850885"},{"denom":"ASSET7","index":"0.000010337273058537"},{"denom":"ASSET8","index":"0.000014149515747938"},{"denom":"ASSET9","index":"0.000006000707920121"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001726304213109"},{"denom":"ASSET1","index":"0.000014431903221591"},{"denom":"ASSET10","index":"0.000010055058078201"},{"denom":"ASSET11","index":"0.000013959161452463"},{"denom":"ASSET12","index":"0.000012572806376704"},{"denom":"ASSET13","index":"0.000004323728090679"},{"denom":"ASSET14","index":"0.000013040236440562"},{"denom":"ASSET15","index":"0.000009322042750788"},{"denom":"ASSET16","index":"0.000006501527251832"},{"denom":"ASSET17","index":"0.000004615871880590"},{"denom":"ASSET18","index":"0.000002199045982237"},{"denom":"ASSET2","index":"0.000004259987627426"},{"denom":"ASSET3","index":"0.000001242939033438"},{"denom":"ASSET4","index":"0.000011728245238599"},{"denom":"ASSET5","index":"0.000000966730359341"},{"denom":"ASSET6","index":"0.000003935973605888"},{"denom":"ASSET7","index":"0.000006028785482704"},{"denom":"ASSET8","index":"0.000007866635506506"},{"denom":"ASSET9","index":"0.000003394179668236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003313075721980"},{"denom":"ASSET1","index":"0.000028138029356789"},{"denom":"ASSET10","index":"0.000022370607880245"},{"denom":"ASSET11","index":"0.000027937207217164"},{"denom":"ASSET12","index":"0.000026595598409551"},{"denom":"ASSET13","index":"0.000008769097729958"},{"denom":"ASSET14","index":"0.000025655242037122"},{"denom":"ASSET15","index":"0.000020162686714325"},{"denom":"ASSET16","index":"0.000012488922131836"},{"denom":"ASSET17","index":"0.000009772018779266"},{"denom":"ASSET18","index":"0.000004056016110298"},{"denom":"ASSET2","index":"0.000008514325121927"},{"denom":"ASSET3","index":"0.000002365037757716"},{"denom":"ASSET4","index":"0.000022813272666626"},{"denom":"ASSET5","index":"0.000001844445619129"},{"denom":"ASSET6","index":"0.000007446834645040"},{"denom":"ASSET7","index":"0.000011690909413493"},{"denom":"ASSET8","index":"0.000015945057917181"},{"denom":"ASSET9","index":"0.000006769080892636"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001630255611072"},{"denom":"ASSET1","index":"0.000013593541268721"},{"denom":"ASSET10","index":"0.000009470169531707"},{"denom":"ASSET11","index":"0.000013149994246609"},{"denom":"ASSET12","index":"0.000011841383661505"},{"denom":"ASSET13","index":"0.000004074904678306"},{"denom":"ASSET14","index":"0.000012284196334242"},{"denom":"ASSET15","index":"0.000008782818517308"},{"denom":"ASSET16","index":"0.000006123739432762"},{"denom":"ASSET17","index":"0.000004348816994942"},{"denom":"ASSET18","index":"0.000002071599585061"},{"denom":"ASSET2","index":"0.000004012484981486"},{"denom":"ASSET3","index":"0.000001173490300222"},{"denom":"ASSET4","index":"0.000011046817638451"},{"denom":"ASSET5","index":"0.000000910593224203"},{"denom":"ASSET6","index":"0.000003707729991128"},{"denom":"ASSET7","index":"0.000005678723711902"},{"denom":"ASSET8","index":"0.000007410319536635"},{"denom":"ASSET9","index":"0.000003200294573447"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003344718004914"},{"denom":"ASSET1","index":"0.000028399683918161"},{"denom":"ASSET10","index":"0.000022773943545696"},{"denom":"ASSET11","index":"0.000028249525692452"},{"denom":"ASSET12","index":"0.000026989510465266"},{"denom":"ASSET13","index":"0.000008877216029957"},{"denom":"ASSET14","index":"0.000025911788013611"},{"denom":"ASSET15","index":"0.000020494299775586"},{"denom":"ASSET16","index":"0.000012591463658113"},{"denom":"ASSET17","index":"0.000009918208342143"},{"denom":"ASSET18","index":"0.000004078542450859"},{"denom":"ASSET2","index":"0.000008608606683653"},{"denom":"ASSET3","index":"0.000002386103437058"},{"denom":"ASSET4","index":"0.000023022167148602"},{"denom":"ASSET5","index":"0.000001858883946943"},{"denom":"ASSET6","index":"0.000007501347044310"},{"denom":"ASSET7","index":"0.000011795380538461"},{"denom":"ASSET8","index":"0.000016137954986293"},{"denom":"ASSET9","index":"0.000006845854741756"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001401914217082"},{"denom":"ASSET1","index":"0.000011691084141249"},{"denom":"ASSET10","index":"0.000008144816837289"},{"denom":"ASSET11","index":"0.000011309282624399"},{"denom":"ASSET12","index":"0.000010184195671197"},{"denom":"ASSET13","index":"0.000003504785542706"},{"denom":"ASSET14","index":"0.000010565150621491"},{"denom":"ASSET15","index":"0.000007553913381055"},{"denom":"ASSET16","index":"0.000005266490546178"},{"denom":"ASSET17","index":"0.000003740131045332"},{"denom":"ASSET18","index":"0.000001781176034264"},{"denom":"ASSET2","index":"0.000003450605283109"},{"denom":"ASSET3","index":"0.000001009107335001"},{"denom":"ASSET4","index":"0.000009501016460336"},{"denom":"ASSET5","index":"0.000000783074064494"},{"denom":"ASSET6","index":"0.000003189016217240"},{"denom":"ASSET7","index":"0.000004883842462771"},{"denom":"ASSET8","index":"0.000006372953035143"},{"denom":"ASSET9","index":"0.000002752187874236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002824624853437"},{"denom":"ASSET1","index":"0.000023976113690517"},{"denom":"ASSET10","index":"0.000019183481330878"},{"denom":"ASSET11","index":"0.000023837782846342"},{"denom":"ASSET12","index":"0.000022753084719682"},{"denom":"ASSET13","index":"0.000007489057952554"},{"denom":"ASSET14","index":"0.000021872315483076"},{"denom":"ASSET15","index":"0.000017271123733000"},{"denom":"ASSET16","index":"0.000010633084765839"},{"denom":"ASSET17","index":"0.000008361522972460"},{"denom":"ASSET18","index":"0.000003446219629870"},{"denom":"ASSET2","index":"0.000007263651822688"},{"denom":"ASSET3","index":"0.000002015414858276"},{"denom":"ASSET4","index":"0.000019437236646346"},{"denom":"ASSET5","index":"0.000001569802896992"},{"denom":"ASSET6","index":"0.000006336500403946"},{"denom":"ASSET7","index":"0.000009959182045961"},{"denom":"ASSET8","index":"0.000013614498977085"},{"denom":"ASSET9","index":"0.000005776799011181"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001454934724421"},{"denom":"ASSET1","index":"0.000012138554241533"},{"denom":"ASSET10","index":"0.000008457231031836"},{"denom":"ASSET11","index":"0.000011742676653726"},{"denom":"ASSET12","index":"0.000010575345305063"},{"denom":"ASSET13","index":"0.000003639028595615"},{"denom":"ASSET14","index":"0.000010969531108307"},{"denom":"ASSET15","index":"0.000007843113235366"},{"denom":"ASSET16","index":"0.000005467847708521"},{"denom":"ASSET17","index":"0.000003882645572727"},{"denom":"ASSET18","index":"0.000001849120527665"},{"denom":"ASSET2","index":"0.000003583199705027"},{"denom":"ASSET3","index":"0.000001047214644670"},{"denom":"ASSET4","index":"0.000009864795788485"},{"denom":"ASSET5","index":"0.000000813748374938"},{"denom":"ASSET6","index":"0.000003310822390339"},{"denom":"ASSET7","index":"0.000005070278336150"},{"denom":"ASSET8","index":"0.000006616569426988"},{"denom":"ASSET9","index":"0.000002857424127380"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003026822568793"},{"denom":"ASSET1","index":"0.000025710421285725"},{"denom":"ASSET10","index":"0.000020652297735472"},{"denom":"ASSET11","index":"0.000025583400849235"},{"denom":"ASSET12","index":"0.000024460820755928"},{"denom":"ASSET13","index":"0.000008041083722059"},{"denom":"ASSET14","index":"0.000023461074878675"},{"denom":"ASSET15","index":"0.000018578170233019"},{"denom":"ASSET16","index":"0.000011396689804799"},{"denom":"ASSET17","index":"0.000008988134494295"},{"denom":"ASSET18","index":"0.000003688816665807"},{"denom":"ASSET2","index":"0.000007796110853756"},{"denom":"ASSET3","index":"0.000002159003644915"},{"denom":"ASSET4","index":"0.000020841789260406"},{"denom":"ASSET5","index":"0.000001683251281734"},{"denom":"ASSET6","index":"0.000006788484398340"},{"denom":"ASSET7","index":"0.000010677121165375"},{"denom":"ASSET8","index":"0.000014616905179383"},{"denom":"ASSET9","index":"0.000006199084273401"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001547699786520"},{"denom":"ASSET1","index":"0.000012908880828127"},{"denom":"ASSET10","index":"0.000008993933542043"},{"denom":"ASSET11","index":"0.000012488059147042"},{"denom":"ASSET12","index":"0.000011245681057538"},{"denom":"ASSET13","index":"0.000003869751640144"},{"denom":"ASSET14","index":"0.000011665498390936"},{"denom":"ASSET15","index":"0.000008340103197445"},{"denom":"ASSET16","index":"0.000005815173110936"},{"denom":"ASSET17","index":"0.000004129877691221"},{"denom":"ASSET18","index":"0.000001966512772230"},{"denom":"ASSET2","index":"0.000003810495126579"},{"denom":"ASSET3","index":"0.000001114825933185"},{"denom":"ASSET4","index":"0.000010490411596498"},{"denom":"ASSET5","index":"0.000000864743358984"},{"denom":"ASSET6","index":"0.000003521242992563"},{"denom":"ASSET7","index":"0.000005392342734476"},{"denom":"ASSET8","index":"0.000007036459899001"},{"denom":"ASSET9","index":"0.000003039156102537"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003086703561215"},{"denom":"ASSET1","index":"0.000026199550261878"},{"denom":"ASSET10","index":"0.000020936384793003"},{"denom":"ASSET11","index":"0.000026042194398185"},{"denom":"ASSET12","index":"0.000024843424443974"},{"denom":"ASSET13","index":"0.000008180415813801"},{"denom":"ASSET14","index":"0.000023898307142718"},{"denom":"ASSET15","index":"0.000018852934413068"},{"denom":"ASSET16","index":"0.000011621232923996"},{"denom":"ASSET17","index":"0.000009129550402498"},{"denom":"ASSET18","index":"0.000003767892160935"},{"denom":"ASSET2","index":"0.000007936188126371"},{"denom":"ASSET3","index":"0.000002203575710986"},{"denom":"ASSET4","index":"0.000021240180347210"},{"denom":"ASSET5","index":"0.000001716192200569"},{"denom":"ASSET6","index":"0.000006926674957775"},{"denom":"ASSET7","index":"0.000010883333770048"},{"denom":"ASSET8","index":"0.000014871024805414"},{"denom":"ASSET9","index":"0.000006311583255107"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001511232509129"},{"denom":"ASSET1","index":"0.000012598757210652"},{"denom":"ASSET10","index":"0.000008777665278232"},{"denom":"ASSET11","index":"0.000012187849575766"},{"denom":"ASSET12","index":"0.000010975073643675"},{"denom":"ASSET13","index":"0.000003776959255615"},{"denom":"ASSET14","index":"0.000011385233267090"},{"denom":"ASSET15","index":"0.000008140359504707"},{"denom":"ASSET16","index":"0.000005675412369706"},{"denom":"ASSET17","index":"0.000004030784481533"},{"denom":"ASSET18","index":"0.000001920145446758"},{"denom":"ASSET2","index":"0.000003719113035170"},{"denom":"ASSET3","index":"0.000001087858016388"},{"denom":"ASSET4","index":"0.000010238531681628"},{"denom":"ASSET5","index":"0.000000844504951067"},{"denom":"ASSET6","index":"0.000003436614036185"},{"denom":"ASSET7","index":"0.000005263507386191"},{"denom":"ASSET8","index":"0.000006867991992072"},{"denom":"ASSET9","index":"0.000002966364157912"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003050294937135"},{"denom":"ASSET1","index":"0.000025887230915803"},{"denom":"ASSET10","index":"0.000020718160619670"},{"denom":"ASSET11","index":"0.000025739685005463"},{"denom":"ASSET12","index":"0.000024570727404900"},{"denom":"ASSET13","index":"0.000008086966483560"},{"denom":"ASSET14","index":"0.000023616194455668"},{"denom":"ASSET15","index":"0.000018651338246959"},{"denom":"ASSET16","index":"0.000011480437826441"},{"denom":"ASSET17","index":"0.000009029688158762"},{"denom":"ASSET18","index":"0.000003721440260869"},{"denom":"ASSET2","index":"0.000007844134626406"},{"denom":"ASSET3","index":"0.000002176540273945"},{"denom":"ASSET4","index":"0.000020986445628896"},{"denom":"ASSET5","index":"0.000001695800268231"},{"denom":"ASSET6","index":"0.000006841569437153"},{"denom":"ASSET7","index":"0.000010753447417762"},{"denom":"ASSET8","index":"0.000014701309289649"},{"denom":"ASSET9","index":"0.000006238283490477"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001535139489204"},{"denom":"ASSET1","index":"0.000012800845981431"},{"denom":"ASSET10","index":"0.000008918122145344"},{"denom":"ASSET11","index":"0.000012383184798277"},{"denom":"ASSET12","index":"0.000011151318949088"},{"denom":"ASSET13","index":"0.000003837555421617"},{"denom":"ASSET14","index":"0.000011567806926671"},{"denom":"ASSET15","index":"0.000008270512670342"},{"denom":"ASSET16","index":"0.000005766305379776"},{"denom":"ASSET17","index":"0.000004095074044376"},{"denom":"ASSET18","index":"0.000001950454261216"},{"denom":"ASSET2","index":"0.000003778308540299"},{"denom":"ASSET3","index":"0.000001105159647558"},{"denom":"ASSET4","index":"0.000010402813795010"},{"denom":"ASSET5","index":"0.000000857613272150"},{"denom":"ASSET6","index":"0.000003491459778273"},{"denom":"ASSET7","index":"0.000005347470991052"},{"denom":"ASSET8","index":"0.000006978226734264"},{"denom":"ASSET9","index":"0.000003013965111016"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002944371933765"},{"denom":"ASSET1","index":"0.000024968433937291"},{"denom":"ASSET10","index":"0.000019851368221906"},{"denom":"ASSET11","index":"0.000024791952485266"},{"denom":"ASSET12","index":"0.000023600048189968"},{"denom":"ASSET13","index":"0.000007784111470281"},{"denom":"ASSET14","index":"0.000022766914870589"},{"denom":"ASSET15","index":"0.000017894900322998"},{"denom":"ASSET16","index":"0.000011081662183182"},{"denom":"ASSET17","index":"0.000008672317440622"},{"denom":"ASSET18","index":"0.000003599691097086"},{"denom":"ASSET2","index":"0.000007555380586873"},{"denom":"ASSET3","index":"0.000002101847815188"},{"denom":"ASSET4","index":"0.000020244169178497"},{"denom":"ASSET5","index":"0.000001637098640985"},{"denom":"ASSET6","index":"0.000006609166185649"},{"denom":"ASSET7","index":"0.000010374399402552"},{"denom":"ASSET8","index":"0.000014150620453773"},{"denom":"ASSET9","index":"0.000006009906313007"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001449310882227"},{"denom":"ASSET1","index":"0.000012082282763787"},{"denom":"ASSET10","index":"0.000008417588941675"},{"denom":"ASSET11","index":"0.000011688148164511"},{"denom":"ASSET12","index":"0.000010525234539176"},{"denom":"ASSET13","index":"0.000003621923721366"},{"denom":"ASSET14","index":"0.000010918286351091"},{"denom":"ASSET15","index":"0.000007806355476589"},{"denom":"ASSET16","index":"0.000005442630668295"},{"denom":"ASSET17","index":"0.000003865550877512"},{"denom":"ASSET18","index":"0.000001841279906781"},{"denom":"ASSET2","index":"0.000003566701565973"},{"denom":"ASSET3","index":"0.000001043265621984"},{"denom":"ASSET4","index":"0.000009818715786353"},{"denom":"ASSET5","index":"0.000000809924945764"},{"denom":"ASSET6","index":"0.000003295463332131"},{"denom":"ASSET7","index":"0.000005047413281659"},{"denom":"ASSET8","index":"0.000006586595514820"},{"denom":"ASSET9","index":"0.000002844482396421"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002938303361264"},{"denom":"ASSET1","index":"0.000024939884544734"},{"denom":"ASSET10","index":"0.000019970621943114"},{"denom":"ASSET11","index":"0.000024800280810198"},{"denom":"ASSET12","index":"0.000023679745396670"},{"denom":"ASSET13","index":"0.000007792253675830"},{"denom":"ASSET14","index":"0.000022752532795075"},{"denom":"ASSET15","index":"0.000017976341528508"},{"denom":"ASSET16","index":"0.000011059313296089"},{"denom":"ASSET17","index":"0.000008702160495382"},{"denom":"ASSET18","index":"0.000003584018468858"},{"denom":"ASSET2","index":"0.000007557839698908"},{"denom":"ASSET3","index":"0.000002096442663552"},{"denom":"ASSET4","index":"0.000020217858094708"},{"denom":"ASSET5","index":"0.000001633684136995"},{"denom":"ASSET6","index":"0.000006589976909255"},{"denom":"ASSET7","index":"0.000010359339015905"},{"denom":"ASSET8","index":"0.000014165755580726"},{"denom":"ASSET9","index":"0.000006010291774725"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001731982701050"},{"denom":"ASSET1","index":"0.000014440617081118"},{"denom":"ASSET10","index":"0.000010060714066040"},{"denom":"ASSET11","index":"0.000013969585405988"},{"denom":"ASSET12","index":"0.000012579542501729"},{"denom":"ASSET13","index":"0.000004329188348588"},{"denom":"ASSET14","index":"0.000013049805772821"},{"denom":"ASSET15","index":"0.000009329961826155"},{"denom":"ASSET16","index":"0.000006505308583448"},{"denom":"ASSET17","index":"0.000004619645074851"},{"denom":"ASSET18","index":"0.000002200709164068"},{"denom":"ASSET2","index":"0.000004262337197306"},{"denom":"ASSET3","index":"0.000001247119753241"},{"denom":"ASSET4","index":"0.000011735066464260"},{"denom":"ASSET5","index":"0.000000967420683506"},{"denom":"ASSET6","index":"0.000003938839097420"},{"denom":"ASSET7","index":"0.000006032740100243"},{"denom":"ASSET8","index":"0.000007872299366576"},{"denom":"ASSET9","index":"0.000003400187866969"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003329715418659"},{"denom":"ASSET1","index":"0.000028238028843607"},{"denom":"ASSET10","index":"0.000022458342297172"},{"denom":"ASSET11","index":"0.000028040237741643"},{"denom":"ASSET12","index":"0.000026695793846360"},{"denom":"ASSET13","index":"0.000008804253880653"},{"denom":"ASSET14","index":"0.000025748953032298"},{"denom":"ASSET15","index":"0.000020243324641083"},{"denom":"ASSET16","index":"0.000012532507824147"},{"denom":"ASSET17","index":"0.000009809802042254"},{"denom":"ASSET18","index":"0.000004070975493464"},{"denom":"ASSET2","index":"0.000008545109234155"},{"denom":"ASSET3","index":"0.000002377197518329"},{"denom":"ASSET4","index":"0.000022894451839245"},{"denom":"ASSET5","index":"0.000001851122407848"},{"denom":"ASSET6","index":"0.000007473999475476"},{"denom":"ASSET7","index":"0.000011732969702935"},{"denom":"ASSET8","index":"0.000016005536556726"},{"denom":"ASSET9","index":"0.000006797137295338"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001649988907243"},{"denom":"ASSET1","index":"0.000013756519537767"},{"denom":"ASSET10","index":"0.000009584361794534"},{"denom":"ASSET11","index":"0.000013307506163009"},{"denom":"ASSET12","index":"0.000011983307415229"},{"denom":"ASSET13","index":"0.000004124070634826"},{"denom":"ASSET14","index":"0.000012431118612277"},{"denom":"ASSET15","index":"0.000008888300900330"},{"denom":"ASSET16","index":"0.000006196625007203"},{"denom":"ASSET17","index":"0.000004401172597026"},{"denom":"ASSET18","index":"0.000002096597926581"},{"denom":"ASSET2","index":"0.000004060355216185"},{"denom":"ASSET3","index":"0.000001187751577673"},{"denom":"ASSET4","index":"0.000011179050527108"},{"denom":"ASSET5","index":"0.000000922070303720"},{"denom":"ASSET6","index":"0.000003752597722375"},{"denom":"ASSET7","index":"0.000005747010543590"},{"denom":"ASSET8","index":"0.000007499184556200"},{"denom":"ASSET9","index":"0.000003238666751267"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003269082759145"},{"denom":"ASSET1","index":"0.000027736662456421"},{"denom":"ASSET10","index":"0.000022145815740722"},{"denom":"ASSET11","index":"0.000027564157079872"},{"denom":"ASSET12","index":"0.000026286254396013"},{"denom":"ASSET13","index":"0.000008658548128401"},{"denom":"ASSET14","index":"0.000025298253418871"},{"denom":"ASSET15","index":"0.000019946084058089"},{"denom":"ASSET16","index":"0.000012303266096103"},{"denom":"ASSET17","index":"0.000009659898104260"},{"denom":"ASSET18","index":"0.000003991565584036"},{"denom":"ASSET2","index":"0.000008399501371576"},{"denom":"ASSET3","index":"0.000002333103515211"},{"denom":"ASSET4","index":"0.000022486071398850"},{"denom":"ASSET5","index":"0.000001817550334619"},{"denom":"ASSET6","index":"0.000007334517845971"},{"denom":"ASSET7","index":"0.000011522603065826"},{"denom":"ASSET8","index":"0.000015739883934035"},{"denom":"ASSET9","index":"0.000006680430297789"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001707974867576"},{"denom":"ASSET1","index":"0.000014238090744503"},{"denom":"ASSET10","index":"0.000009920037235236"},{"denom":"ASSET11","index":"0.000013773690453356"},{"denom":"ASSET12","index":"0.000012403461252069"},{"denom":"ASSET13","index":"0.000004268385028930"},{"denom":"ASSET14","index":"0.000012866619831208"},{"denom":"ASSET15","index":"0.000009199844270355"},{"denom":"ASSET16","index":"0.000006414063379473"},{"denom":"ASSET17","index":"0.000004555220502875"},{"denom":"ASSET18","index":"0.000002169891734707"},{"denom":"ASSET2","index":"0.000004203195148489"},{"denom":"ASSET3","index":"0.000001229294888332"},{"denom":"ASSET4","index":"0.000011570893350426"},{"denom":"ASSET5","index":"0.000000954255678468"},{"denom":"ASSET6","index":"0.000003884075162326"},{"denom":"ASSET7","index":"0.000005948421376317"},{"denom":"ASSET8","index":"0.000007761941764609"},{"denom":"ASSET9","index":"0.000003352622422724"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003075387603983"},{"denom":"ASSET1","index":"0.000026047450678709"},{"denom":"ASSET10","index":"0.000020531243448578"},{"denom":"ASSET11","index":"0.000025816927992783"},{"denom":"ASSET12","index":"0.000024485469945303"},{"denom":"ASSET13","index":"0.000008098391373250"},{"denom":"ASSET14","index":"0.000023735883509134"},{"denom":"ASSET15","index":"0.000018540774078871"},{"denom":"ASSET16","index":"0.000011572711306393"},{"denom":"ASSET17","index":"0.000008997644319689"},{"denom":"ASSET18","index":"0.000003770348288081"},{"denom":"ASSET2","index":"0.000007868945206789"},{"denom":"ASSET3","index":"0.000002196489262864"},{"denom":"ASSET4","index":"0.000021122354693053"},{"denom":"ASSET5","index":"0.000001710501624761"},{"denom":"ASSET6","index":"0.000006909892735753"},{"denom":"ASSET7","index":"0.000010827333344051"},{"denom":"ASSET8","index":"0.000014723239896475"},{"denom":"ASSET9","index":"0.000006260042064096"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001779156074987"},{"denom":"ASSET1","index":"0.000014834764457923"},{"denom":"ASSET10","index":"0.000010335215703318"},{"denom":"ASSET11","index":"0.000014351450406057"},{"denom":"ASSET12","index":"0.000012923397473821"},{"denom":"ASSET13","index":"0.000004447014618532"},{"denom":"ASSET14","index":"0.000013405835956753"},{"denom":"ASSET15","index":"0.000009584853126417"},{"denom":"ASSET16","index":"0.000006682342108415"},{"denom":"ASSET17","index":"0.000004745583625211"},{"denom":"ASSET18","index":"0.000002260718988984"},{"denom":"ASSET2","index":"0.000004378720241638"},{"denom":"ASSET3","index":"0.000001280957351233"},{"denom":"ASSET4","index":"0.000012055708659691"},{"denom":"ASSET5","index":"0.000000993770740704"},{"denom":"ASSET6","index":"0.000004046879615447"},{"denom":"ASSET7","index":"0.000006197276918679"},{"denom":"ASSET8","index":"0.000008086754679418"},{"denom":"ASSET9","index":"0.000003492644479883"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003478645419875"},{"denom":"ASSET1","index":"0.000029510728520321"},{"denom":"ASSET10","index":"0.000023521700007579"},{"denom":"ASSET11","index":"0.000029317721838376"},{"denom":"ASSET12","index":"0.000027938200533330"},{"denom":"ASSET13","index":"0.000009206643656085"},{"denom":"ASSET14","index":"0.000026913511393693"},{"denom":"ASSET15","index":"0.000021192735957156"},{"denom":"ASSET16","index":"0.000013092928863665"},{"denom":"ASSET17","index":"0.000010265835619821"},{"denom":"ASSET18","index":"0.000004249633310572"},{"denom":"ASSET2","index":"0.000008933634051769"},{"denom":"ASSET3","index":"0.000002482776919113"},{"denom":"ASSET4","index":"0.000023925662277258"},{"denom":"ASSET5","index":"0.000001933519521756"},{"denom":"ASSET6","index":"0.000007806757132876"},{"denom":"ASSET7","index":"0.000012260200744601"},{"denom":"ASSET8","index":"0.000016737737824425"},{"denom":"ASSET9","index":"0.000007106044722519"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001752700098923"},{"denom":"ASSET1","index":"0.000014612940709519"},{"denom":"ASSET10","index":"0.000010180696541309"},{"denom":"ASSET11","index":"0.000014136053678762"},{"denom":"ASSET12","index":"0.000012730078503378"},{"denom":"ASSET13","index":"0.000004380628160175"},{"denom":"ASSET14","index":"0.000013205843447004"},{"denom":"ASSET15","index":"0.000009441241121853"},{"denom":"ASSET16","index":"0.000006583285198706"},{"denom":"ASSET17","index":"0.000004674614988548"},{"denom":"ASSET18","index":"0.000002226220868286"},{"denom":"ASSET2","index":"0.000004313302932304"},{"denom":"ASSET3","index":"0.000001261225935460"},{"denom":"ASSET4","index":"0.000011875048109410"},{"denom":"ASSET5","index":"0.000000979582065531"},{"denom":"ASSET6","index":"0.000003985653489996"},{"denom":"ASSET7","index":"0.000006105276080818"},{"denom":"ASSET8","index":"0.000007965696544335"},{"denom":"ASSET9","index":"0.000003440319144236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003327512121722"},{"denom":"ASSET1","index":"0.000028211822531533"},{"denom":"ASSET10","index":"0.000022399629444355"},{"denom":"ASSET11","index":"0.000028004032167971"},{"denom":"ASSET12","index":"0.000026643127370344"},{"denom":"ASSET13","index":"0.000008791339050068"},{"denom":"ASSET14","index":"0.000025722152469956"},{"denom":"ASSET15","index":"0.000020197596080044"},{"denom":"ASSET16","index":"0.000012523737733641"},{"denom":"ASSET17","index":"0.000009790102863953"},{"denom":"ASSET18","index":"0.000004069245825383"},{"denom":"ASSET2","index":"0.000008534453115749"},{"denom":"ASSET3","index":"0.000002375171252372"},{"denom":"ASSET4","index":"0.000022873545881432"},{"denom":"ASSET5","index":"0.000001850500835715"},{"denom":"ASSET6","index":"0.000007470212303630"},{"denom":"ASSET7","index":"0.000011723166108277"},{"denom":"ASSET8","index":"0.000015981595788329"},{"denom":"ASSET9","index":"0.000006788341225254"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001434713876400"},{"denom":"ASSET1","index":"0.000011974044460331"},{"denom":"ASSET10","index":"0.000008340728508476"},{"denom":"ASSET11","index":"0.000011582406348125"},{"denom":"ASSET12","index":"0.000010430757641934"},{"denom":"ASSET13","index":"0.000003588723493535"},{"denom":"ASSET14","index":"0.000010820456951604"},{"denom":"ASSET15","index":"0.000007735822117345"},{"denom":"ASSET16","index":"0.000005393748654249"},{"denom":"ASSET17","index":"0.000003829135007959"},{"denom":"ASSET18","index":"0.000001824413186071"},{"denom":"ASSET2","index":"0.000003534437022536"},{"denom":"ASSET3","index":"0.000001033381751515"},{"denom":"ASSET4","index":"0.000009730849926555"},{"denom":"ASSET5","index":"0.000000802664249770"},{"denom":"ASSET6","index":"0.000003264943470077"},{"denom":"ASSET7","index":"0.000005002110542043"},{"denom":"ASSET8","index":"0.000006526009335083"},{"denom":"ASSET9","index":"0.000002819018886872"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002895048613815"},{"denom":"ASSET1","index":"0.000024589366099895"},{"denom":"ASSET10","index":"0.000019676065498265"},{"denom":"ASSET11","index":"0.000024447379266412"},{"denom":"ASSET12","index":"0.000023337478265694"},{"denom":"ASSET13","index":"0.000007679998629802"},{"denom":"ASSET14","index":"0.000022431328797509"},{"denom":"ASSET15","index":"0.000017714358679290"},{"denom":"ASSET16","index":"0.000010904445776568"},{"denom":"ASSET17","index":"0.000008574179211920"},{"denom":"ASSET18","index":"0.000003534399202209"},{"denom":"ASSET2","index":"0.000007450371795821"},{"denom":"ASSET3","index":"0.000002066219984895"},{"denom":"ASSET4","index":"0.000019933989143940"},{"denom":"ASSET5","index":"0.000001610899827710"},{"denom":"ASSET6","index":"0.000006497050827728"},{"denom":"ASSET7","index":"0.000010213894093182"},{"denom":"ASSET8","index":"0.000013962110633776"},{"denom":"ASSET9","index":"0.000005925048173997"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001401536005232"},{"denom":"ASSET1","index":"0.000011690786017211"},{"denom":"ASSET10","index":"0.000008143726832164"},{"denom":"ASSET11","index":"0.000011307987636928"},{"denom":"ASSET12","index":"0.000010184289165772"},{"denom":"ASSET13","index":"0.000003503840013080"},{"denom":"ASSET14","index":"0.000010564000462344"},{"denom":"ASSET15","index":"0.000007554093843178"},{"denom":"ASSET16","index":"0.000005266564812612"},{"denom":"ASSET17","index":"0.000003738458375190"},{"denom":"ASSET18","index":"0.000001781247301804"},{"denom":"ASSET2","index":"0.000003448272506265"},{"denom":"ASSET3","index":"0.000001009476373813"},{"denom":"ASSET4","index":"0.000009498956581716"},{"denom":"ASSET5","index":"0.000000781032179127"},{"denom":"ASSET6","index":"0.000003188957474460"},{"denom":"ASSET7","index":"0.000004883766432329"},{"denom":"ASSET8","index":"0.000006371740781496"},{"denom":"ASSET9","index":"0.000002750591587361"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003071913026336"},{"denom":"ASSET1","index":"0.000026115211920195"},{"denom":"ASSET10","index":"0.000021104918039272"},{"denom":"ASSET11","index":"0.000026018207650283"},{"denom":"ASSET12","index":"0.000024942011742431"},{"denom":"ASSET13","index":"0.000008182453133262"},{"denom":"ASSET14","index":"0.000023839798810024"},{"denom":"ASSET15","index":"0.000018963275072170"},{"denom":"ASSET16","index":"0.000011567273660047"},{"denom":"ASSET17","index":"0.000009164652819502"},{"denom":"ASSET18","index":"0.000003735860972186"},{"denom":"ASSET2","index":"0.000007925194415041"},{"denom":"ASSET3","index":"0.000002190810612048"},{"denom":"ASSET4","index":"0.000021165118890878"},{"denom":"ASSET5","index":"0.000001704606606646"},{"denom":"ASSET6","index":"0.000006884812645629"},{"denom":"ASSET7","index":"0.000010842612570084"},{"denom":"ASSET8","index":"0.000014874699612932"},{"denom":"ASSET9","index":"0.000006301602876980"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001534549585700"},{"denom":"ASSET1","index":"0.000012795681230217"},{"denom":"ASSET10","index":"0.000008914897664776"},{"denom":"ASSET11","index":"0.000012378406858633"},{"denom":"ASSET12","index":"0.000011146809898878"},{"denom":"ASSET13","index":"0.000003835934265229"},{"denom":"ASSET14","index":"0.000011563204872419"},{"denom":"ASSET15","index":"0.000008267660704848"},{"denom":"ASSET16","index":"0.000005764014475342"},{"denom":"ASSET17","index":"0.000004093597891939"},{"denom":"ASSET18","index":"0.000001950065161198"},{"denom":"ASSET2","index":"0.000003777014596322"},{"denom":"ASSET3","index":"0.000001104963641508"},{"denom":"ASSET4","index":"0.000010398442163960"},{"denom":"ASSET5","index":"0.000000857413092297"},{"denom":"ASSET6","index":"0.000003490330834180"},{"denom":"ASSET7","index":"0.000005345421006692"},{"denom":"ASSET8","index":"0.000006975385280099"},{"denom":"ASSET9","index":"0.000003012817696624"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003034954909236"},{"denom":"ASSET1","index":"0.000025752158165977"},{"denom":"ASSET10","index":"0.000020556858138008"},{"denom":"ASSET11","index":"0.000025591676311293"},{"denom":"ASSET12","index":"0.000024402528250789"},{"denom":"ASSET13","index":"0.000008038375291107"},{"denom":"ASSET14","index":"0.000023488313497799"},{"denom":"ASSET15","index":"0.000018516037809802"},{"denom":"ASSET16","index":"0.000011423945454084"},{"denom":"ASSET17","index":"0.000008967524527402"},{"denom":"ASSET18","index":"0.000003706330058793"},{"denom":"ASSET2","index":"0.000007798931182527"},{"denom":"ASSET3","index":"0.000002166419358500"},{"denom":"ASSET4","index":"0.000020877722621984"},{"denom":"ASSET5","index":"0.000001687498984799"},{"denom":"ASSET6","index":"0.000006810207932767"},{"denom":"ASSET7","index":"0.000010698180555138"},{"denom":"ASSET8","index":"0.000014612921845389"},{"denom":"ASSET9","index":"0.000006203015740356"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001658482037183"},{"denom":"ASSET1","index":"0.000013862588923046"},{"denom":"ASSET10","index":"0.000009655943522610"},{"denom":"ASSET11","index":"0.000013408077810815"},{"denom":"ASSET12","index":"0.000012073555821711"},{"denom":"ASSET13","index":"0.000004153457929856"},{"denom":"ASSET14","index":"0.000012528066933942"},{"denom":"ASSET15","index":"0.000008954835955871"},{"denom":"ASSET16","index":"0.000006242274956279"},{"denom":"ASSET17","index":"0.000004433900956551"},{"denom":"ASSET18","index":"0.000002112993149414"},{"denom":"ASSET2","index":"0.000004090600010079"},{"denom":"ASSET3","index":"0.000001194300475756"},{"denom":"ASSET4","index":"0.000011266073313811"},{"denom":"ASSET5","index":"0.000000928363122855"},{"denom":"ASSET6","index":"0.000003781145635794"},{"denom":"ASSET7","index":"0.000005787763844048"},{"denom":"ASSET8","index":"0.000007557456046990"},{"denom":"ASSET9","index":"0.000003263776603787"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003188277912377"},{"denom":"ASSET1","index":"0.000027072180177666"},{"denom":"ASSET10","index":"0.000021525590492702"},{"denom":"ASSET11","index":"0.000026879695640981"},{"denom":"ASSET12","index":"0.000025588321740665"},{"denom":"ASSET13","index":"0.000008437670891103"},{"denom":"ASSET14","index":"0.000024686413843557"},{"denom":"ASSET15","index":"0.000019403734038796"},{"denom":"ASSET16","index":"0.000012012351193227"},{"denom":"ASSET17","index":"0.000009402991763462"},{"denom":"ASSET18","index":"0.000003903246578743"},{"denom":"ASSET2","index":"0.000008191237466303"},{"denom":"ASSET3","index":"0.000002276140738265"},{"denom":"ASSET4","index":"0.000021950324608304"},{"denom":"ASSET5","index":"0.000001774065663090"},{"denom":"ASSET6","index":"0.000007165524818145"},{"denom":"ASSET7","index":"0.000011244820309610"},{"denom":"ASSET8","index":"0.000015343724796373"},{"denom":"ASSET9","index":"0.000006516357987660"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001453411320498"},{"denom":"ASSET1","index":"0.000012118137400313"},{"denom":"ASSET10","index":"0.000008442891188019"},{"denom":"ASSET11","index":"0.000011723343510399"},{"denom":"ASSET12","index":"0.000010556870017106"},{"denom":"ASSET13","index":"0.000003632917795231"},{"denom":"ASSET14","index":"0.000010951256903010"},{"denom":"ASSET15","index":"0.000007829943148627"},{"denom":"ASSET16","index":"0.000005459144789091"},{"denom":"ASSET17","index":"0.000003877120201363"},{"denom":"ASSET18","index":"0.000001846984198382"},{"denom":"ASSET2","index":"0.000003577158245830"},{"denom":"ASSET3","index":"0.000001046407310278"},{"denom":"ASSET4","index":"0.000009848276035312"},{"denom":"ASSET5","index":"0.000000811973000390"},{"denom":"ASSET6","index":"0.000003305686571013"},{"denom":"ASSET7","index":"0.000005062722883136"},{"denom":"ASSET8","index":"0.000006606082089893"},{"denom":"ASSET9","index":"0.000002853098111648"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002979919393708"},{"denom":"ASSET1","index":"0.000025298333716476"},{"denom":"ASSET10","index":"0.000020286143685892"},{"denom":"ASSET11","index":"0.000025164674259360"},{"denom":"ASSET12","index":"0.000024041723171534"},{"denom":"ASSET13","index":"0.000007907785176595"},{"denom":"ASSET14","index":"0.000023082402053339"},{"denom":"ASSET15","index":"0.000018255332392862"},{"denom":"ASSET16","index":"0.000011216675450010"},{"denom":"ASSET17","index":"0.000008835128154455"},{"denom":"ASSET18","index":"0.000003633337151635"},{"denom":"ASSET2","index":"0.000007668586747858"},{"denom":"ASSET3","index":"0.000002126085354033"},{"denom":"ASSET4","index":"0.000020508686269066"},{"denom":"ASSET5","index":"0.000001656307666438"},{"denom":"ASSET6","index":"0.000006683025235204"},{"denom":"ASSET7","index":"0.000010507859389263"},{"denom":"ASSET8","index":"0.000014375637436113"},{"denom":"ASSET9","index":"0.000006098257618497"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001779729226299"},{"denom":"ASSET1","index":"0.000014840802182142"},{"denom":"ASSET10","index":"0.000010337989986643"},{"denom":"ASSET11","index":"0.000014356968690293"},{"denom":"ASSET12","index":"0.000012927350131463"},{"denom":"ASSET13","index":"0.000004449323065747"},{"denom":"ASSET14","index":"0.000013411183623312"},{"denom":"ASSET15","index":"0.000009589142170113"},{"denom":"ASSET16","index":"0.000006683709894939"},{"denom":"ASSET17","index":"0.000004745944603463"},{"denom":"ASSET18","index":"0.000002261131394068"},{"denom":"ASSET2","index":"0.000004378814667437"},{"denom":"ASSET3","index":"0.000001281307789972"},{"denom":"ASSET4","index":"0.000012059367435030"},{"denom":"ASSET5","index":"0.000000994411548574"},{"denom":"ASSET6","index":"0.000004048154592606"},{"denom":"ASSET7","index":"0.000006199876403090"},{"denom":"ASSET8","index":"0.000008089015212973"},{"denom":"ASSET9","index":"0.000003493812702447"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003433377044021"},{"denom":"ASSET1","index":"0.000029119719093870"},{"denom":"ASSET10","index":"0.000023168779363922"},{"denom":"ASSET11","index":"0.000028918871222836"},{"denom":"ASSET12","index":"0.000027536680421684"},{"denom":"ASSET13","index":"0.000009079853140421"},{"denom":"ASSET14","index":"0.000026553415276013"},{"denom":"ASSET15","index":"0.000020883272198610"},{"denom":"ASSET16","index":"0.000012920460029656"},{"denom":"ASSET17","index":"0.000010116347697920"},{"denom":"ASSET18","index":"0.000004196183907349"},{"denom":"ASSET2","index":"0.000008810148159861"},{"denom":"ASSET3","index":"0.000002451192479374"},{"denom":"ASSET4","index":"0.000023608026429735"},{"denom":"ASSET5","index":"0.000001908186346512"},{"denom":"ASSET6","index":"0.000007706415634871"},{"denom":"ASSET7","index":"0.000012098308533034"},{"denom":"ASSET8","index":"0.000016505861275643"},{"denom":"ASSET9","index":"0.000007009790471677"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001595670533734"},{"denom":"ASSET1","index":"0.000013304245337308"},{"denom":"ASSET10","index":"0.000009268754359880"},{"denom":"ASSET11","index":"0.000012870227612725"},{"denom":"ASSET12","index":"0.000011589729681675"},{"denom":"ASSET13","index":"0.000003988302473145"},{"denom":"ASSET14","index":"0.000012022582258004"},{"denom":"ASSET15","index":"0.000008595881243245"},{"denom":"ASSET16","index":"0.000005992940044003"},{"denom":"ASSET17","index":"0.000004256286571545"},{"denom":"ASSET18","index":"0.000002027357961809"},{"denom":"ASSET2","index":"0.000003927132189815"},{"denom":"ASSET3","index":"0.000001148836178358"},{"denom":"ASSET4","index":"0.000010811993222188"},{"denom":"ASSET5","index":"0.000000891338414244"},{"denom":"ASSET6","index":"0.000003628854236813"},{"denom":"ASSET7","index":"0.000005557757171166"},{"denom":"ASSET8","index":"0.000007252465306483"},{"denom":"ASSET9","index":"0.000003132501080646"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003118409098775"},{"denom":"ASSET1","index":"0.000026454243753489"},{"denom":"ASSET10","index":"0.000021084585905412"},{"denom":"ASSET11","index":"0.000026280950742513"},{"denom":"ASSET12","index":"0.000025043390497745"},{"denom":"ASSET13","index":"0.000008253298424938"},{"denom":"ASSET14","index":"0.000024125697910719"},{"denom":"ASSET15","index":"0.000018997425080839"},{"denom":"ASSET16","index":"0.000011737294217995"},{"denom":"ASSET17","index":"0.000009202973625129"},{"denom":"ASSET18","index":"0.000003809493270778"},{"denom":"ASSET2","index":"0.000008008868325931"},{"denom":"ASSET3","index":"0.000002225819587877"},{"denom":"ASSET4","index":"0.000021447702379813"},{"denom":"ASSET5","index":"0.000001733713847172"},{"denom":"ASSET6","index":"0.000006998355968525"},{"denom":"ASSET7","index":"0.000010990481127196"},{"denom":"ASSET8","index":"0.000015003824321723"},{"denom":"ASSET9","index":"0.000006370091157596"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001536288093705"},{"denom":"ASSET1","index":"0.000012808796131863"},{"denom":"ASSET10","index":"0.000008924322337818"},{"denom":"ASSET11","index":"0.000012391382492026"},{"denom":"ASSET12","index":"0.000011158327625467"},{"denom":"ASSET13","index":"0.000003840018305497"},{"denom":"ASSET14","index":"0.000011575273312793"},{"denom":"ASSET15","index":"0.000008276208110044"},{"denom":"ASSET16","index":"0.000005770322413488"},{"denom":"ASSET17","index":"0.000004097860139074"},{"denom":"ASSET18","index":"0.000001951829923499"},{"denom":"ASSET2","index":"0.000003781056289108"},{"denom":"ASSET3","index":"0.000001105771783560"},{"denom":"ASSET4","index":"0.000010409603607822"},{"denom":"ASSET5","index":"0.000000858224905226"},{"denom":"ASSET6","index":"0.000003494201399847"},{"denom":"ASSET7","index":"0.000005351036963607"},{"denom":"ASSET8","index":"0.000006982787369562"},{"denom":"ASSET9","index":"0.000003015953933577"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003103831608428"},{"denom":"ASSET1","index":"0.000026343132935309"},{"denom":"ASSET10","index":"0.000021085436521682"},{"denom":"ASSET11","index":"0.000026194005406126"},{"denom":"ASSET12","index":"0.000025005394550642"},{"denom":"ASSET13","index":"0.000008229918727938"},{"denom":"ASSET14","index":"0.000024032248358707"},{"denom":"ASSET15","index":"0.000018981699828973"},{"denom":"ASSET16","index":"0.000011682673521897"},{"denom":"ASSET17","index":"0.000009189132473525"},{"denom":"ASSET18","index":"0.000003786361913516"},{"denom":"ASSET2","index":"0.000007982150766688"},{"denom":"ASSET3","index":"0.000002214601198569"},{"denom":"ASSET4","index":"0.000021356131094847"},{"denom":"ASSET5","index":"0.000001725369734459"},{"denom":"ASSET6","index":"0.000006962131899100"},{"denom":"ASSET7","index":"0.000010942547729288"},{"denom":"ASSET8","index":"0.000014960973970884"},{"denom":"ASSET9","index":"0.000006348281537724"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001156201861882"},{"denom":"ASSET1","index":"0.000009641528249827"},{"denom":"ASSET10","index":"0.000006717693720376"},{"denom":"ASSET11","index":"0.000009327193051790"},{"denom":"ASSET12","index":"0.000008399128436016"},{"denom":"ASSET13","index":"0.000002890504654704"},{"denom":"ASSET14","index":"0.000008712888981039"},{"denom":"ASSET15","index":"0.000006229813312455"},{"denom":"ASSET16","index":"0.000004343227471224"},{"denom":"ASSET17","index":"0.000003084737373052"},{"denom":"ASSET18","index":"0.000001469387753892"},{"denom":"ASSET2","index":"0.000002846256372714"},{"denom":"ASSET3","index":"0.000000832672215639"},{"denom":"ASSET4","index":"0.000007835393830396"},{"denom":"ASSET5","index":"0.000000645909986459"},{"denom":"ASSET6","index":"0.000002630186839877"},{"denom":"ASSET7","index":"0.000004027742967162"},{"denom":"ASSET8","index":"0.000005256351108664"},{"denom":"ASSET9","index":"0.000002269879400812"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002648545180722"},{"denom":"ASSET1","index":"0.000022528915692996"},{"denom":"ASSET10","index":"0.000018297756458480"},{"denom":"ASSET11","index":"0.000022469822082599"},{"denom":"ASSET12","index":"0.000021584227648624"},{"denom":"ASSET13","index":"0.000007070243338634"},{"denom":"ASSET14","index":"0.000020574684608302"},{"denom":"ASSET15","index":"0.000016423497937791"},{"denom":"ASSET16","index":"0.000009972839292196"},{"denom":"ASSET17","index":"0.000007932645550822"},{"denom":"ASSET18","index":"0.000003216131666673"},{"denom":"ASSET2","index":"0.000006846442901912"},{"denom":"ASSET3","index":"0.000001888119307859"},{"denom":"ASSET4","index":"0.000018258669735553"},{"denom":"ASSET5","index":"0.000001471345302008"},{"denom":"ASSET6","index":"0.000005932348598922"},{"denom":"ASSET7","index":"0.000009352074075404"},{"denom":"ASSET8","index":"0.000012853047191550"},{"denom":"ASSET9","index":"0.000005442948627063"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001638829976996"},{"denom":"ASSET1","index":"0.000013663699511091"},{"denom":"ASSET10","index":"0.000009519748943981"},{"denom":"ASSET11","index":"0.000013218199388741"},{"denom":"ASSET12","index":"0.000011902774883924"},{"denom":"ASSET13","index":"0.000004095984811686"},{"denom":"ASSET14","index":"0.000012347548252404"},{"denom":"ASSET15","index":"0.000008827879259679"},{"denom":"ASSET16","index":"0.000006154878525580"},{"denom":"ASSET17","index":"0.000004371424528441"},{"denom":"ASSET18","index":"0.000002082149837736"},{"denom":"ASSET2","index":"0.000004033483978861"},{"denom":"ASSET3","index":"0.000001179521531115"},{"denom":"ASSET4","index":"0.000011104072380722"},{"denom":"ASSET5","index":"0.000000915709876282"},{"denom":"ASSET6","index":"0.000003726793845693"},{"denom":"ASSET7","index":"0.000005707924895490"},{"denom":"ASSET8","index":"0.000007448500414296"},{"denom":"ASSET9","index":"0.000003217339382778"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003133427860009"},{"denom":"ASSET1","index":"0.000026571363581284"},{"denom":"ASSET10","index":"0.000021118003104150"},{"denom":"ASSET11","index":"0.000026381510155653"},{"denom":"ASSET12","index":"0.000025108485590780"},{"denom":"ASSET13","index":"0.000008282355352591"},{"denom":"ASSET14","index":"0.000024227637307493"},{"denom":"ASSET15","index":"0.000019037535386694"},{"denom":"ASSET16","index":"0.000011793447009555"},{"denom":"ASSET17","index":"0.000009226841180516"},{"denom":"ASSET18","index":"0.000003831770888939"},{"denom":"ASSET2","index":"0.000008040278303534"},{"denom":"ASSET3","index":"0.000002236402387063"},{"denom":"ASSET4","index":"0.000021543810534784"},{"denom":"ASSET5","index":"0.000001742508705183"},{"denom":"ASSET6","index":"0.000007033989161296"},{"denom":"ASSET7","index":"0.000011040340871930"},{"denom":"ASSET8","index":"0.000015056795520064"},{"denom":"ASSET9","index":"0.000006395464292965"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001556422065682"},{"denom":"ASSET1","index":"0.000012975233747354"},{"denom":"ASSET10","index":"0.000009039925804131"},{"denom":"ASSET11","index":"0.000012551842294036"},{"denom":"ASSET12","index":"0.000011303196313064"},{"denom":"ASSET13","index":"0.000003889859143149"},{"denom":"ASSET14","index":"0.000011725391745328"},{"denom":"ASSET15","index":"0.000008383310245172"},{"denom":"ASSET16","index":"0.000005844954893688"},{"denom":"ASSET17","index":"0.000004150990406731"},{"denom":"ASSET18","index":"0.000001977421476890"},{"denom":"ASSET2","index":"0.000003830058090421"},{"denom":"ASSET3","index":"0.000001120273054448"},{"denom":"ASSET4","index":"0.000010544520290781"},{"denom":"ASSET5","index":"0.000000869507306673"},{"denom":"ASSET6","index":"0.000003539424974160"},{"denom":"ASSET7","index":"0.000005420766093000"},{"denom":"ASSET8","index":"0.000007073268516732"},{"denom":"ASSET9","index":"0.000003055036447059"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003102345998156"},{"denom":"ASSET1","index":"0.000026324295521459"},{"denom":"ASSET10","index":"0.000021034709957123"},{"denom":"ASSET11","index":"0.000026165624152899"},{"denom":"ASSET12","index":"0.000024960753498443"},{"denom":"ASSET13","index":"0.000008219480216908"},{"denom":"ASSET14","index":"0.000024012126304297"},{"denom":"ASSET15","index":"0.000018942125813395"},{"denom":"ASSET16","index":"0.000011676379885795"},{"denom":"ASSET17","index":"0.000009172744202097"},{"denom":"ASSET18","index":"0.000003786686743681"},{"denom":"ASSET2","index":"0.000007973892542195"},{"denom":"ASSET3","index":"0.000002213622154517"},{"denom":"ASSET4","index":"0.000021341514997764"},{"denom":"ASSET5","index":"0.000001724677267981"},{"denom":"ASSET6","index":"0.000006959760131783"},{"denom":"ASSET7","index":"0.000010935767858794"},{"denom":"ASSET8","index":"0.000014942141973689"},{"denom":"ASSET9","index":"0.000006341977499472"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001602535700795"},{"denom":"ASSET1","index":"0.000013360208994045"},{"denom":"ASSET10","index":"0.000009307956057468"},{"denom":"ASSET11","index":"0.000012924500245282"},{"denom":"ASSET12","index":"0.000011638378499862"},{"denom":"ASSET13","index":"0.000004005127453862"},{"denom":"ASSET14","index":"0.000012073279383206"},{"denom":"ASSET15","index":"0.000008632311279566"},{"denom":"ASSET16","index":"0.000006018597363935"},{"denom":"ASSET17","index":"0.000004274146638048"},{"denom":"ASSET18","index":"0.000002036090141777"},{"denom":"ASSET2","index":"0.000003943729682095"},{"denom":"ASSET3","index":"0.000001153631816872"},{"denom":"ASSET4","index":"0.000010857441929150"},{"denom":"ASSET5","index":"0.000000895384171592"},{"denom":"ASSET6","index":"0.000003644280900498"},{"denom":"ASSET7","index":"0.000005581542172809"},{"denom":"ASSET8","index":"0.000007283176031543"},{"denom":"ASSET9","index":"0.000003145827937606"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003144114236048"},{"denom":"ASSET1","index":"0.000026672683120621"},{"denom":"ASSET10","index":"0.000021269722635007"},{"denom":"ASSET11","index":"0.000026500587720899"},{"denom":"ASSET12","index":"0.000025258297912053"},{"denom":"ASSET13","index":"0.000008323039503604"},{"denom":"ASSET14","index":"0.000024326015412045"},{"denom":"ASSET15","index":"0.000019162234595686"},{"denom":"ASSET16","index":"0.000011833945147558"},{"denom":"ASSET17","index":"0.000009281867675434"},{"denom":"ASSET18","index":"0.000003840349431676"},{"denom":"ASSET2","index":"0.000008076055447193"},{"denom":"ASSET3","index":"0.000002244145529651"},{"denom":"ASSET4","index":"0.000021624555086447"},{"denom":"ASSET5","index":"0.000001748086313596"},{"denom":"ASSET6","index":"0.000007055400333314"},{"denom":"ASSET7","index":"0.000011081362186058"},{"denom":"ASSET8","index":"0.000015130336137492"},{"denom":"ASSET9","index":"0.000006423586371910"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001633811359009"},{"denom":"ASSET1","index":"0.000013620164108551"},{"denom":"ASSET10","index":"0.000009487838038290"},{"denom":"ASSET11","index":"0.000013174776703502"},{"denom":"ASSET12","index":"0.000011864685946211"},{"denom":"ASSET13","index":"0.000004082355776036"},{"denom":"ASSET14","index":"0.000012307900729772"},{"denom":"ASSET15","index":"0.000008799117026580"},{"denom":"ASSET16","index":"0.000006135483082238"},{"denom":"ASSET17","index":"0.000004356106083529"},{"denom":"ASSET18","index":"0.000002074853521082"},{"denom":"ASSET2","index":"0.000004019349752882"},{"denom":"ASSET3","index":"0.000001175388225032"},{"denom":"ASSET4","index":"0.000011067333860098"},{"denom":"ASSET5","index":"0.000000912501024979"},{"denom":"ASSET6","index":"0.000003715182744556"},{"denom":"ASSET7","index":"0.000005690095677188"},{"denom":"ASSET8","index":"0.000007423847624648"},{"denom":"ASSET9","index":"0.000003206789316354"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003109600829404"},{"denom":"ASSET1","index":"0.000026362702045617"},{"denom":"ASSET10","index":"0.000020937844947102"},{"denom":"ASSET11","index":"0.000026169598808926"},{"denom":"ASSET12","index":"0.000024901798461360"},{"denom":"ASSET13","index":"0.000008215149609138"},{"denom":"ASSET14","index":"0.000024035954930107"},{"denom":"ASSET15","index":"0.000018878331344314"},{"denom":"ASSET16","index":"0.000011701775976010"},{"denom":"ASSET17","index":"0.000009149505282332"},{"denom":"ASSET18","index":"0.000003801954966508"},{"denom":"ASSET2","index":"0.000007974718303805"},{"denom":"ASSET3","index":"0.000002219037761573"},{"denom":"ASSET4","index":"0.000021373555319687"},{"denom":"ASSET5","index":"0.000001728657323000"},{"denom":"ASSET6","index":"0.000006980294033305"},{"denom":"ASSET7","index":"0.000010954522542925"},{"denom":"ASSET8","index":"0.000014935013269095"},{"denom":"ASSET9","index":"0.000006344057182602"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001356454583190"},{"denom":"ASSET1","index":"0.000011307707773056"},{"denom":"ASSET10","index":"0.000007878355411964"},{"denom":"ASSET11","index":"0.000010938987301217"},{"denom":"ASSET12","index":"0.000009850463994830"},{"denom":"ASSET13","index":"0.000003389876593037"},{"denom":"ASSET14","index":"0.000010218764511690"},{"denom":"ASSET15","index":"0.000007305956775156"},{"denom":"ASSET16","index":"0.000005094053899100"},{"denom":"ASSET17","index":"0.000003617492191826"},{"denom":"ASSET18","index":"0.000001723075280133"},{"denom":"ASSET2","index":"0.000003337802175602"},{"denom":"ASSET3","index":"0.000000976395326909"},{"denom":"ASSET4","index":"0.000009189454857387"},{"denom":"ASSET5","index":"0.000000758018737665"},{"denom":"ASSET6","index":"0.000003084569323074"},{"denom":"ASSET7","index":"0.000004724073562323"},{"denom":"ASSET8","index":"0.000006164519141376"},{"denom":"ASSET9","index":"0.000002662514568862"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002920257070141"},{"denom":"ASSET1","index":"0.000024811653868653"},{"denom":"ASSET10","index":"0.000020012294768332"},{"denom":"ASSET11","index":"0.000024710629923001"},{"denom":"ASSET12","index":"0.000023666550441425"},{"denom":"ASSET13","index":"0.000007769918885884"},{"denom":"ASSET14","index":"0.000022647790193256"},{"denom":"ASSET15","index":"0.000017987461600930"},{"denom":"ASSET16","index":"0.000010993196459757"},{"denom":"ASSET17","index":"0.000008697266331114"},{"denom":"ASSET18","index":"0.000003553540715950"},{"denom":"ASSET2","index":"0.000007529733395993"},{"denom":"ASSET3","index":"0.000002082581454906"},{"denom":"ASSET4","index":"0.000020111524804667"},{"denom":"ASSET5","index":"0.000001623122955496"},{"denom":"ASSET6","index":"0.000006544727800067"},{"denom":"ASSET7","index":"0.000010303065547743"},{"denom":"ASSET8","index":"0.000014124873274804"},{"denom":"ASSET9","index":"0.000005987532811110"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001730803097805"},{"denom":"ASSET1","index":"0.000014429128492036"},{"denom":"ASSET10","index":"0.000010053081326419"},{"denom":"ASSET11","index":"0.000013956042311970"},{"denom":"ASSET12","index":"0.000012568515161896"},{"denom":"ASSET13","index":"0.000004324123072683"},{"denom":"ASSET14","index":"0.000013038716670133"},{"denom":"ASSET15","index":"0.000009320374681681"},{"denom":"ASSET16","index":"0.000006499165632259"},{"denom":"ASSET17","index":"0.000004615474927481"},{"denom":"ASSET18","index":"0.000002198119934213"},{"denom":"ASSET2","index":"0.000004257775620601"},{"denom":"ASSET3","index":"0.000001243293558590"},{"denom":"ASSET4","index":"0.000011726190987631"},{"denom":"ASSET5","index":"0.000000966365062941"},{"denom":"ASSET6","index":"0.000003934692375677"},{"denom":"ASSET7","index":"0.000006026079452192"},{"denom":"ASSET8","index":"0.000007863615407695"},{"denom":"ASSET9","index":"0.000003395258743528"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003241945367060"},{"denom":"ASSET1","index":"0.000027480716546724"},{"denom":"ASSET10","index":"0.000021780901079221"},{"denom":"ASSET11","index":"0.000027265989011084"},{"denom":"ASSET12","index":"0.000025921947969478"},{"denom":"ASSET13","index":"0.000008556984130745"},{"denom":"ASSET14","index":"0.000025051754134356"},{"denom":"ASSET15","index":"0.000019643848931612"},{"denom":"ASSET16","index":"0.000012200322352703"},{"denom":"ASSET17","index":"0.000009524928673174"},{"denom":"ASSET18","index":"0.000003966981346299"},{"denom":"ASSET2","index":"0.000008309018225650"},{"denom":"ASSET3","index":"0.000002312540225621"},{"denom":"ASSET4","index":"0.000022282443818183"},{"denom":"ASSET5","index":"0.000001802193647755"},{"denom":"ASSET6","index":"0.000007278646216530"},{"denom":"ASSET7","index":"0.000011418356902196"},{"denom":"ASSET8","index":"0.000015557459098515"},{"denom":"ASSET9","index":"0.000006608754258977"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001631665384825"},{"denom":"ASSET1","index":"0.000013602742609312"},{"denom":"ASSET10","index":"0.000009477179623123"},{"denom":"ASSET11","index":"0.000013159027954757"},{"denom":"ASSET12","index":"0.000011849393704263"},{"denom":"ASSET13","index":"0.000004077627053980"},{"denom":"ASSET14","index":"0.000012292493795584"},{"denom":"ASSET15","index":"0.000008788868801652"},{"denom":"ASSET16","index":"0.000006127810000788"},{"denom":"ASSET17","index":"0.000004351722256101"},{"denom":"ASSET18","index":"0.000002072921786447"},{"denom":"ASSET2","index":"0.000004015556167401"},{"denom":"ASSET3","index":"0.000001174430339134"},{"denom":"ASSET4","index":"0.000011054148880171"},{"denom":"ASSET5","index":"0.000000911397275215"},{"denom":"ASSET6","index":"0.000003710118240373"},{"denom":"ASSET7","index":"0.000005682866219766"},{"denom":"ASSET8","index":"0.000007415319974879"},{"denom":"ASSET9","index":"0.000003202489009539"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003079719434352"},{"denom":"ASSET1","index":"0.000026105925494605"},{"denom":"ASSET10","index":"0.000020711970439773"},{"denom":"ASSET11","index":"0.000025910008103106"},{"denom":"ASSET12","index":"0.000024641613628664"},{"denom":"ASSET13","index":"0.000008133110770201"},{"denom":"ASSET14","index":"0.000023800542954419"},{"denom":"ASSET15","index":"0.000018678884312278"},{"denom":"ASSET16","index":"0.000011589749383737"},{"denom":"ASSET17","index":"0.000009055208366452"},{"denom":"ASSET18","index":"0.000003767697278786"},{"denom":"ASSET2","index":"0.000007896757003962"},{"denom":"ASSET3","index":"0.000002198611212202"},{"denom":"ASSET4","index":"0.000021166859181475"},{"denom":"ASSET5","index":"0.000001712166144109"},{"denom":"ASSET6","index":"0.000006913910929446"},{"denom":"ASSET7","index":"0.000010848237821893"},{"denom":"ASSET8","index":"0.000014785764472138"},{"denom":"ASSET9","index":"0.000006281127943464"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001520990142264"},{"denom":"ASSET1","index":"0.000012680102108631"},{"denom":"ASSET10","index":"0.000008834326429376"},{"denom":"ASSET11","index":"0.000012266893306329"},{"denom":"ASSET12","index":"0.000011046354389007"},{"denom":"ASSET13","index":"0.000003801591675587"},{"denom":"ASSET14","index":"0.000011458856247250"},{"denom":"ASSET15","index":"0.000008193128168148"},{"denom":"ASSET16","index":"0.000005712107994187"},{"denom":"ASSET17","index":"0.000004056798480773"},{"denom":"ASSET18","index":"0.000001932431584420"},{"denom":"ASSET2","index":"0.000003743268790745"},{"denom":"ASSET3","index":"0.000001095056346905"},{"denom":"ASSET4","index":"0.000010304770071444"},{"denom":"ASSET5","index":"0.000000849746758541"},{"denom":"ASSET6","index":"0.000003459077279153"},{"denom":"ASSET7","index":"0.000005297485303768"},{"denom":"ASSET8","index":"0.000006912499005837"},{"denom":"ASSET9","index":"0.000002985778231863"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003063170165442"},{"denom":"ASSET1","index":"0.000025996358951928"},{"denom":"ASSET10","index":"0.000020799618544072"},{"denom":"ASSET11","index":"0.000025846936295403"},{"denom":"ASSET12","index":"0.000024670295822131"},{"denom":"ASSET13","index":"0.000008120644896033"},{"denom":"ASSET14","index":"0.000023715222729701"},{"denom":"ASSET15","index":"0.000018725986369791"},{"denom":"ASSET16","index":"0.000011529047312284"},{"denom":"ASSET17","index":"0.000009065966880203"},{"denom":"ASSET18","index":"0.000003737409049681"},{"denom":"ASSET2","index":"0.000007876841198043"},{"denom":"ASSET3","index":"0.000002185992003768"},{"denom":"ASSET4","index":"0.000021074917159843"},{"denom":"ASSET5","index":"0.000001702800306431"},{"denom":"ASSET6","index":"0.000006871093729972"},{"denom":"ASSET7","index":"0.000010798830402478"},{"denom":"ASSET8","index":"0.000014762015379742"},{"denom":"ASSET9","index":"0.000006264517424621"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001519669987195"},{"denom":"ASSET1","index":"0.000012676623405048"},{"denom":"ASSET10","index":"0.000008831600766261"},{"denom":"ASSET11","index":"0.000012262448940742"},{"denom":"ASSET12","index":"0.000011042591812037"},{"denom":"ASSET13","index":"0.000003799690110356"},{"denom":"ASSET14","index":"0.000011454705706870"},{"denom":"ASSET15","index":"0.000008189733375059"},{"denom":"ASSET16","index":"0.000005709838012905"},{"denom":"ASSET17","index":"0.000004055200725152"},{"denom":"ASSET18","index":"0.000001931783882027"},{"denom":"ASSET2","index":"0.000003741994165079"},{"denom":"ASSET3","index":"0.000001094162390780"},{"denom":"ASSET4","index":"0.000010301817086076"},{"denom":"ASSET5","index":"0.000000848954623355"},{"denom":"ASSET6","index":"0.000003457635577645"},{"denom":"ASSET7","index":"0.000005295663548598"},{"denom":"ASSET8","index":"0.000006910119731604"},{"denom":"ASSET9","index":"0.000002984734883325"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003051401969864"},{"denom":"ASSET1","index":"0.000025903543471827"},{"denom":"ASSET10","index":"0.000020717104247015"},{"denom":"ASSET11","index":"0.000025751820078700"},{"denom":"ASSET12","index":"0.000024575704795191"},{"denom":"ASSET13","index":"0.000008089460542782"},{"denom":"ASSET14","index":"0.000023629519286555"},{"denom":"ASSET15","index":"0.000018652475785738"},{"denom":"ASSET16","index":"0.000011487598582804"},{"denom":"ASSET17","index":"0.000009031027466449"},{"denom":"ASSET18","index":"0.000003724432134289"},{"denom":"ASSET2","index":"0.000007847588407204"},{"denom":"ASSET3","index":"0.000002177732310384"},{"denom":"ASSET4","index":"0.000021000151540181"},{"denom":"ASSET5","index":"0.000001696165098739"},{"denom":"ASSET6","index":"0.000006846477479182"},{"denom":"ASSET7","index":"0.000010760324594985"},{"denom":"ASSET8","index":"0.000014706911787677"},{"denom":"ASSET9","index":"0.000006241583848480"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001392192847149"},{"denom":"ASSET1","index":"0.000011611450847386"},{"denom":"ASSET10","index":"0.000008088781067478"},{"denom":"ASSET11","index":"0.000011231761889073"},{"denom":"ASSET12","index":"0.000010115195100551"},{"denom":"ASSET13","index":"0.000003480482117873"},{"denom":"ASSET14","index":"0.000010492071548062"},{"denom":"ASSET15","index":"0.000007502372565194"},{"denom":"ASSET16","index":"0.000005229863836918"},{"denom":"ASSET17","index":"0.000003713920514466"},{"denom":"ASSET18","index":"0.000001769069294661"},{"denom":"ASSET2","index":"0.000003427044412629"},{"denom":"ASSET3","index":"0.000001002660101028"},{"denom":"ASSET4","index":"0.000009435973741790"},{"denom":"ASSET5","index":"0.000000777659236842"},{"denom":"ASSET6","index":"0.000003166887163415"},{"denom":"ASSET7","index":"0.000004850174878604"},{"denom":"ASSET8","index":"0.000006329555560626"},{"denom":"ASSET9","index":"0.000002733760499857"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002834261839987"},{"denom":"ASSET1","index":"0.000024063735726127"},{"denom":"ASSET10","index":"0.000019278012414561"},{"denom":"ASSET11","index":"0.000023930766794440"},{"denom":"ASSET12","index":"0.000022855511266190"},{"denom":"ASSET13","index":"0.000007519422832827"},{"denom":"ASSET14","index":"0.000021953268691937"},{"denom":"ASSET15","index":"0.000017352048046781"},{"denom":"ASSET16","index":"0.000010669562284438"},{"denom":"ASSET17","index":"0.000008398158415340"},{"denom":"ASSET18","index":"0.000003456710779118"},{"denom":"ASSET2","index":"0.000007292324829772"},{"denom":"ASSET3","index":"0.000002022818722752"},{"denom":"ASSET4","index":"0.000019507505991506"},{"denom":"ASSET5","index":"0.000001575196067099"},{"denom":"ASSET6","index":"0.000006357416996111"},{"denom":"ASSET7","index":"0.000009994574317511"},{"denom":"ASSET8","index":"0.000013669954492341"},{"denom":"ASSET9","index":"0.000005799591528398"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001553840185331"},{"denom":"ASSET1","index":"0.000012958259817171"},{"denom":"ASSET10","index":"0.000009028099224953"},{"denom":"ASSET11","index":"0.000012533831248030"},{"denom":"ASSET12","index":"0.000011286922457332"},{"denom":"ASSET13","index":"0.000003884600463327"},{"denom":"ASSET14","index":"0.000011708953124953"},{"denom":"ASSET15","index":"0.000008371074208317"},{"denom":"ASSET16","index":"0.000005836492301072"},{"denom":"ASSET17","index":"0.000004143573827548"},{"denom":"ASSET18","index":"0.000001973472951431"},{"denom":"ASSET2","index":"0.000003824652925312"},{"denom":"ASSET3","index":"0.000001117422108587"},{"denom":"ASSET4","index":"0.000010529185576831"},{"denom":"ASSET5","index":"0.000000868040350447"},{"denom":"ASSET6","index":"0.000003534506841323"},{"denom":"ASSET7","index":"0.000005412063731931"},{"denom":"ASSET8","index":"0.000007064217879605"},{"denom":"ASSET9","index":"0.000003050130734168"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002875427361068"},{"denom":"ASSET1","index":"0.000024372739255487"},{"denom":"ASSET10","index":"0.000019284464921318"},{"denom":"ASSET11","index":"0.000024174413552556"},{"denom":"ASSET12","index":"0.000022964657814992"},{"denom":"ASSET13","index":"0.000007586106071195"},{"denom":"ASSET14","index":"0.000022214775035212"},{"denom":"ASSET15","index":"0.000017399266119679"},{"denom":"ASSET16","index":"0.000010822432031544"},{"denom":"ASSET17","index":"0.000008437405253940"},{"denom":"ASSET18","index":"0.000003520101477575"},{"denom":"ASSET2","index":"0.000007366931162610"},{"denom":"ASSET3","index":"0.000002051556015935"},{"denom":"ASSET4","index":"0.000019761188522524"},{"denom":"ASSET5","index":"0.000001598363223465"},{"denom":"ASSET6","index":"0.000006458982880806"},{"denom":"ASSET7","index":"0.000010127316932433"},{"denom":"ASSET8","index":"0.000013792105044122"},{"denom":"ASSET9","index":"0.000005859963066840"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001468329025254"},{"denom":"ASSET1","index":"0.000012248466172689"},{"denom":"ASSET10","index":"0.000008533242661533"},{"denom":"ASSET11","index":"0.000011849890220686"},{"denom":"ASSET12","index":"0.000010670683647662"},{"denom":"ASSET13","index":"0.000003671855143322"},{"denom":"ASSET14","index":"0.000011069259599665"},{"denom":"ASSET15","index":"0.000007913694549611"},{"denom":"ASSET16","index":"0.000005518108516848"},{"denom":"ASSET17","index":"0.000003917609227717"},{"denom":"ASSET18","index":"0.000001866904977257"},{"denom":"ASSET2","index":"0.000003616095813249"},{"denom":"ASSET3","index":"0.000001057362111013"},{"denom":"ASSET4","index":"0.000009954072998206"},{"denom":"ASSET5","index":"0.000000819868668110"},{"denom":"ASSET6","index":"0.000003341429483630"},{"denom":"ASSET7","index":"0.000005117467404472"},{"denom":"ASSET8","index":"0.000006676663486141"},{"denom":"ASSET9","index":"0.000002882963880808"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002995432004660"},{"denom":"ASSET1","index":"0.000025434255671185"},{"denom":"ASSET10","index":"0.000020381248485322"},{"denom":"ASSET11","index":"0.000025297016742096"},{"denom":"ASSET12","index":"0.000024161457271020"},{"denom":"ASSET13","index":"0.000007948725545453"},{"denom":"ASSET14","index":"0.000023205881885085"},{"denom":"ASSET15","index":"0.000018343715148864"},{"denom":"ASSET16","index":"0.000011277889207663"},{"denom":"ASSET17","index":"0.000008877556775335"},{"denom":"ASSET18","index":"0.000003654253802028"},{"denom":"ASSET2","index":"0.000007709102798424"},{"denom":"ASSET3","index":"0.000002137627884226"},{"denom":"ASSET4","index":"0.000020618696770430"},{"denom":"ASSET5","index":"0.000001664440090804"},{"denom":"ASSET6","index":"0.000006720260763181"},{"denom":"ASSET7","index":"0.000010565171316359"},{"denom":"ASSET8","index":"0.000014449121165534"},{"denom":"ASSET9","index":"0.000006129217088192"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001484659776814"},{"denom":"ASSET1","index":"0.000012377911876883"},{"denom":"ASSET10","index":"0.000008623797972416"},{"denom":"ASSET11","index":"0.000011974339842928"},{"denom":"ASSET12","index":"0.000010782780641408"},{"denom":"ASSET13","index":"0.000003710691597017"},{"denom":"ASSET14","index":"0.000011185714112019"},{"denom":"ASSET15","index":"0.000007997367331102"},{"denom":"ASSET16","index":"0.000005575935127370"},{"denom":"ASSET17","index":"0.000003959731301514"},{"denom":"ASSET18","index":"0.000001886316120734"},{"denom":"ASSET2","index":"0.000003653859459324"},{"denom":"ASSET3","index":"0.000001068955039306"},{"denom":"ASSET4","index":"0.000010059288371675"},{"denom":"ASSET5","index":"0.000000829493784981"},{"denom":"ASSET6","index":"0.000003376084404307"},{"denom":"ASSET7","index":"0.000005171085966725"},{"denom":"ASSET8","index":"0.000006747698865199"},{"denom":"ASSET9","index":"0.000002914403105969"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002967027008461"},{"denom":"ASSET1","index":"0.000025180120058697"},{"denom":"ASSET10","index":"0.000020126919929476"},{"denom":"ASSET11","index":"0.000025029678796477"},{"denom":"ASSET12","index":"0.000023880507059092"},{"denom":"ASSET13","index":"0.000007862872062626"},{"denom":"ASSET14","index":"0.000022968832134984"},{"denom":"ASSET15","index":"0.000018123195207046"},{"denom":"ASSET16","index":"0.000011168095360491"},{"denom":"ASSET17","index":"0.000008775186029853"},{"denom":"ASSET18","index":"0.000003621217117579"},{"denom":"ASSET2","index":"0.000007627534970337"},{"denom":"ASSET3","index":"0.000002117298518473"},{"denom":"ASSET4","index":"0.000020413769751333"},{"denom":"ASSET5","index":"0.000001649183760435"},{"denom":"ASSET6","index":"0.000006656038319196"},{"denom":"ASSET7","index":"0.000010459966878994"},{"denom":"ASSET8","index":"0.000014293861494285"},{"denom":"ASSET9","index":"0.000006066597621916"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001508631993599"},{"denom":"ASSET1","index":"0.000012578103553994"},{"denom":"ASSET10","index":"0.000008763023138279"},{"denom":"ASSET11","index":"0.000012169014387632"},{"denom":"ASSET12","index":"0.000010956555546150"},{"denom":"ASSET13","index":"0.000003770654442897"},{"denom":"ASSET14","index":"0.000011367495794714"},{"denom":"ASSET15","index":"0.000008126250861227"},{"denom":"ASSET16","index":"0.000005666162616450"},{"denom":"ASSET17","index":"0.000004024252704398"},{"denom":"ASSET18","index":"0.000001915870077761"},{"denom":"ASSET2","index":"0.000003713270894674"},{"denom":"ASSET3","index":"0.000001084734169631"},{"denom":"ASSET4","index":"0.000010221675912459"},{"denom":"ASSET5","index":"0.000000842242401334"},{"denom":"ASSET6","index":"0.000003430055317962"},{"denom":"ASSET7","index":"0.000005255222367887"},{"denom":"ASSET8","index":"0.000006856408471522"},{"denom":"ASSET9","index":"0.000002961731521176"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002968383248598"},{"denom":"ASSET1","index":"0.000025185581850199"},{"denom":"ASSET10","index":"0.000020091193699906"},{"denom":"ASSET11","index":"0.000025026167595767"},{"denom":"ASSET12","index":"0.000023854952987524"},{"denom":"ASSET13","index":"0.000007859725566891"},{"denom":"ASSET14","index":"0.000022971118914045"},{"denom":"ASSET15","index":"0.000018098517255117"},{"denom":"ASSET16","index":"0.000011173004258039"},{"denom":"ASSET17","index":"0.000008766603022733"},{"denom":"ASSET18","index":"0.000003624559740525"},{"denom":"ASSET2","index":"0.000007626317523237"},{"denom":"ASSET3","index":"0.000002117313008939"},{"denom":"ASSET4","index":"0.000020418576076670"},{"denom":"ASSET5","index":"0.000001649450966157"},{"denom":"ASSET6","index":"0.000006660362585584"},{"denom":"ASSET7","index":"0.000010463779822658"},{"denom":"ASSET8","index":"0.000014287735496216"},{"denom":"ASSET9","index":"0.000006065360072421"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001603618851190"},{"denom":"ASSET1","index":"0.000013373450792115"},{"denom":"ASSET10","index":"0.000009317368604669"},{"denom":"ASSET11","index":"0.000012937408123124"},{"denom":"ASSET12","index":"0.000011650307554501"},{"denom":"ASSET13","index":"0.000004008493774333"},{"denom":"ASSET14","index":"0.000012085243516211"},{"denom":"ASSET15","index":"0.000008640063748266"},{"denom":"ASSET16","index":"0.000006023807734317"},{"denom":"ASSET17","index":"0.000004278530351069"},{"denom":"ASSET18","index":"0.000002037448105618"},{"denom":"ASSET2","index":"0.000003947624873839"},{"denom":"ASSET3","index":"0.000001154295694818"},{"denom":"ASSET4","index":"0.000010867865506336"},{"denom":"ASSET5","index":"0.000000896432898181"},{"denom":"ASSET6","index":"0.000003647707200497"},{"denom":"ASSET7","index":"0.000005586658358043"},{"denom":"ASSET8","index":"0.000007289880864586"},{"denom":"ASSET9","index":"0.000003148582216449"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003259379166935"},{"denom":"ASSET1","index":"0.000027669546155668"},{"denom":"ASSET10","index":"0.000022163157427920"},{"denom":"ASSET11","index":"0.000027516665793422"},{"denom":"ASSET12","index":"0.000026276569409586"},{"denom":"ASSET13","index":"0.000008645229164029"},{"denom":"ASSET14","index":"0.000025243382728696"},{"denom":"ASSET15","index":"0.000019947981783747"},{"denom":"ASSET16","index":"0.000012268920188963"},{"denom":"ASSET17","index":"0.000009656339783182"},{"denom":"ASSET18","index":"0.000003975233530089"},{"denom":"ASSET2","index":"0.000008385350610200"},{"denom":"ASSET3","index":"0.000002325230588439"},{"denom":"ASSET4","index":"0.000022430515898086"},{"denom":"ASSET5","index":"0.000001812256369527"},{"denom":"ASSET6","index":"0.000007311001085881"},{"denom":"ASSET7","index":"0.000011492885803011"},{"denom":"ASSET8","index":"0.000015716897251793"},{"denom":"ASSET9","index":"0.000006668589151432"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001669758803356"},{"denom":"ASSET1","index":"0.000013919924903508"},{"denom":"ASSET10","index":"0.000009698114015232"},{"denom":"ASSET11","index":"0.000013466332119255"},{"denom":"ASSET12","index":"0.000012126099781115"},{"denom":"ASSET13","index":"0.000004173211661392"},{"denom":"ASSET14","index":"0.000012579297449702"},{"denom":"ASSET15","index":"0.000008994017898909"},{"denom":"ASSET16","index":"0.000006270880730729"},{"denom":"ASSET17","index":"0.000004453348668392"},{"denom":"ASSET18","index":"0.000002121376009280"},{"denom":"ASSET2","index":"0.000004109202923545"},{"denom":"ASSET3","index":"0.000001201941855137"},{"denom":"ASSET4","index":"0.000011312556625386"},{"denom":"ASSET5","index":"0.000000932868086778"},{"denom":"ASSET6","index":"0.000003797061547622"},{"denom":"ASSET7","index":"0.000005815312368147"},{"denom":"ASSET8","index":"0.000007588591475923"},{"denom":"ASSET9","index":"0.000003277484447193"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003314119794923"},{"denom":"ASSET1","index":"0.000028119315186385"},{"denom":"ASSET10","index":"0.000022456877991933"},{"denom":"ASSET11","index":"0.000027947185249485"},{"denom":"ASSET12","index":"0.000026653541530161"},{"denom":"ASSET13","index":"0.000008778725953540"},{"denom":"ASSET14","index":"0.000025648491290636"},{"denom":"ASSET15","index":"0.000020225495910600"},{"denom":"ASSET16","index":"0.000012473684612014"},{"denom":"ASSET17","index":"0.000009794866581105"},{"denom":"ASSET18","index":"0.000004045992889163"},{"denom":"ASSET2","index":"0.000008517017325485"},{"denom":"ASSET3","index":"0.000002365208974685"},{"denom":"ASSET4","index":"0.000022797013251164"},{"denom":"ASSET5","index":"0.000001842432416817"},{"denom":"ASSET6","index":"0.000007435560259585"},{"denom":"ASSET7","index":"0.000011681616070006"},{"denom":"ASSET8","index":"0.000015958852395270"},{"denom":"ASSET9","index":"0.000006773561992828"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001334597814253"},{"denom":"ASSET1","index":"0.000011126876577448"},{"denom":"ASSET10","index":"0.000007751884027943"},{"denom":"ASSET11","index":"0.000010763759508328"},{"denom":"ASSET12","index":"0.000009692944381721"},{"denom":"ASSET13","index":"0.000003335543967388"},{"denom":"ASSET14","index":"0.000010055110882597"},{"denom":"ASSET15","index":"0.000007189147627631"},{"denom":"ASSET16","index":"0.000005012346349398"},{"denom":"ASSET17","index":"0.000003559878072918"},{"denom":"ASSET18","index":"0.000001695813746885"},{"denom":"ASSET2","index":"0.000003284213282225"},{"denom":"ASSET3","index":"0.000000960549210329"},{"denom":"ASSET4","index":"0.000009042280418860"},{"denom":"ASSET5","index":"0.000000745720787237"},{"denom":"ASSET6","index":"0.000003035164402357"},{"denom":"ASSET7","index":"0.000004648278712034"},{"denom":"ASSET8","index":"0.000006065575963495"},{"denom":"ASSET9","index":"0.000002619766079830"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002933404194828"},{"denom":"ASSET1","index":"0.000024932632498194"},{"denom":"ASSET10","index":"0.000020157113753706"},{"denom":"ASSET11","index":"0.000024842878528839"},{"denom":"ASSET12","index":"0.000023817726072485"},{"denom":"ASSET13","index":"0.000007813243799971"},{"denom":"ASSET14","index":"0.000022761898108549"},{"denom":"ASSET15","index":"0.000018109267957138"},{"denom":"ASSET16","index":"0.000011043189892304"},{"denom":"ASSET17","index":"0.000008753164046701"},{"denom":"ASSET18","index":"0.000003567063844603"},{"denom":"ASSET2","index":"0.000007569762146700"},{"denom":"ASSET3","index":"0.000002091389836038"},{"denom":"ASSET4","index":"0.000020208488830330"},{"denom":"ASSET5","index":"0.000001630166870108"},{"denom":"ASSET6","index":"0.000006572642272968"},{"denom":"ASSET7","index":"0.000010351822041320"},{"denom":"ASSET8","index":"0.000014203644477234"},{"denom":"ASSET9","index":"0.000006019030096188"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001655550281073"},{"denom":"ASSET1","index":"0.000013803766186213"},{"denom":"ASSET10","index":"0.000009616885369480"},{"denom":"ASSET11","index":"0.000013353770421464"},{"denom":"ASSET12","index":"0.000012024654915933"},{"denom":"ASSET13","index":"0.000004138458266908"},{"denom":"ASSET14","index":"0.000012474650680682"},{"denom":"ASSET15","index":"0.000008918932754767"},{"denom":"ASSET16","index":"0.000006218123294721"},{"denom":"ASSET17","index":"0.000004415635621077"},{"denom":"ASSET18","index":"0.000002103876302725"},{"denom":"ASSET2","index":"0.000004075008029207"},{"denom":"ASSET3","index":"0.000001191361699996"},{"denom":"ASSET4","index":"0.000011218168999888"},{"denom":"ASSET5","index":"0.000000925037675960"},{"denom":"ASSET6","index":"0.000003765270684639"},{"denom":"ASSET7","index":"0.000005766457786874"},{"denom":"ASSET8","index":"0.000007524697268437"},{"denom":"ASSET9","index":"0.000003250154939091"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003215122291080"},{"denom":"ASSET1","index":"0.000027271082473775"},{"denom":"ASSET10","index":"0.000021717714787675"},{"denom":"ASSET11","index":"0.000027088129911249"},{"denom":"ASSET12","index":"0.000025803190697535"},{"denom":"ASSET13","index":"0.000008506451165719"},{"denom":"ASSET14","index":"0.000024869823256717"},{"denom":"ASSET15","index":"0.000019571375436743"},{"denom":"ASSET16","index":"0.000012101015548893"},{"denom":"ASSET17","index":"0.000009481514658039"},{"denom":"ASSET18","index":"0.000003929002426467"},{"denom":"ASSET2","index":"0.000008255375778501"},{"denom":"ASSET3","index":"0.000002294279906946"},{"denom":"ASSET4","index":"0.000022110354928469"},{"denom":"ASSET5","index":"0.000001787716273475"},{"denom":"ASSET6","index":"0.000007215985074700"},{"denom":"ASSET7","index":"0.000011330188741735"},{"denom":"ASSET8","index":"0.000015463524362026"},{"denom":"ASSET9","index":"0.000006565858639552"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001631513498845"},{"denom":"ASSET1","index":"0.000013601788709515"},{"denom":"ASSET10","index":"0.000009476711328689"},{"denom":"ASSET11","index":"0.000013158178840821"},{"denom":"ASSET12","index":"0.000011848922966954"},{"denom":"ASSET13","index":"0.000004077884841603"},{"denom":"ASSET14","index":"0.000012291633930140"},{"denom":"ASSET15","index":"0.000008788599161546"},{"denom":"ASSET16","index":"0.000006127389402135"},{"denom":"ASSET17","index":"0.000004351601569095"},{"denom":"ASSET18","index":"0.000002072876103766"},{"denom":"ASSET2","index":"0.000004014961455973"},{"denom":"ASSET3","index":"0.000001174420047516"},{"denom":"ASSET4","index":"0.000011053841044239"},{"denom":"ASSET5","index":"0.000000911490186131"},{"denom":"ASSET6","index":"0.000003710232488420"},{"denom":"ASSET7","index":"0.000005682431175178"},{"denom":"ASSET8","index":"0.000007415071543785"},{"denom":"ASSET9","index":"0.000003202800328586"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003159157648171"},{"denom":"ASSET1","index":"0.000026793811254639"},{"denom":"ASSET10","index":"0.000021330257270132"},{"denom":"ASSET11","index":"0.000026611245447042"},{"denom":"ASSET12","index":"0.000025345616114893"},{"denom":"ASSET13","index":"0.000008356504281369"},{"denom":"ASSET14","index":"0.000024433401122602"},{"denom":"ASSET15","index":"0.000019223209713353"},{"denom":"ASSET16","index":"0.000011890026449509"},{"denom":"ASSET17","index":"0.000009313941892173"},{"denom":"ASSET18","index":"0.000003860849124980"},{"denom":"ASSET2","index":"0.000008109777269158"},{"denom":"ASSET3","index":"0.000002255070941538"},{"denom":"ASSET4","index":"0.000021723391251034"},{"denom":"ASSET5","index":"0.000001756486235957"},{"denom":"ASSET6","index":"0.000007090574282328"},{"denom":"ASSET7","index":"0.000011132530538444"},{"denom":"ASSET8","index":"0.000015191323807650"},{"denom":"ASSET9","index":"0.000006450832118924"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001649724724935"},{"denom":"ASSET1","index":"0.000013753740147655"},{"denom":"ASSET10","index":"0.000009582563441278"},{"denom":"ASSET11","index":"0.000013305204895691"},{"denom":"ASSET12","index":"0.000011981321923304"},{"denom":"ASSET13","index":"0.000004123306127916"},{"denom":"ASSET14","index":"0.000012429052627730"},{"denom":"ASSET15","index":"0.000008886629821639"},{"denom":"ASSET16","index":"0.000006195820583626"},{"denom":"ASSET17","index":"0.000004400070480698"},{"denom":"ASSET18","index":"0.000002096248608056"},{"denom":"ASSET2","index":"0.000004060149146250"},{"denom":"ASSET3","index":"0.000001187512164840"},{"denom":"ASSET4","index":"0.000011177176659918"},{"denom":"ASSET5","index":"0.000000921609203810"},{"denom":"ASSET6","index":"0.000003751605165751"},{"denom":"ASSET7","index":"0.000005746078510357"},{"denom":"ASSET8","index":"0.000007497578498742"},{"denom":"ASSET9","index":"0.000003238303837047"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003253063831874"},{"denom":"ASSET1","index":"0.000027597326034286"},{"denom":"ASSET10","index":"0.000022021617243178"},{"denom":"ASSET11","index":"0.000027423138617092"},{"denom":"ASSET12","index":"0.000026144931484859"},{"denom":"ASSET13","index":"0.000008613299773809"},{"denom":"ASSET14","index":"0.000025170855267573"},{"denom":"ASSET15","index":"0.000019836826910831"},{"denom":"ASSET16","index":"0.000012243184702458"},{"denom":"ASSET17","index":"0.000009607701845932"},{"denom":"ASSET18","index":"0.000003972764374377"},{"denom":"ASSET2","index":"0.000008357484440725"},{"denom":"ASSET3","index":"0.000002321502734814"},{"denom":"ASSET4","index":"0.000022373906168402"},{"denom":"ASSET5","index":"0.000001808481766797"},{"denom":"ASSET6","index":"0.000007298802623853"},{"denom":"ASSET7","index":"0.000011465220726545"},{"denom":"ASSET8","index":"0.000015658035812384"},{"denom":"ASSET9","index":"0.000006646717011605"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001698975992122"},{"denom":"ASSET1","index":"0.000014167905922226"},{"denom":"ASSET10","index":"0.000009870625403756"},{"denom":"ASSET11","index":"0.000013705415046027"},{"denom":"ASSET12","index":"0.000012342129737421"},{"denom":"ASSET13","index":"0.000004247439980305"},{"denom":"ASSET14","index":"0.000012803154715439"},{"denom":"ASSET15","index":"0.000009153801193103"},{"denom":"ASSET16","index":"0.000006381787732272"},{"denom":"ASSET17","index":"0.000004532557176567"},{"denom":"ASSET18","index":"0.000002159268021049"},{"denom":"ASSET2","index":"0.000004182207511237"},{"denom":"ASSET3","index":"0.000001223292032291"},{"denom":"ASSET4","index":"0.000011513897264989"},{"denom":"ASSET5","index":"0.000000949169072389"},{"denom":"ASSET6","index":"0.000003864840554987"},{"denom":"ASSET7","index":"0.000005918563906982"},{"denom":"ASSET8","index":"0.000007723084568158"},{"denom":"ASSET9","index":"0.000003335651311539"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003402845442317"},{"denom":"ASSET1","index":"0.000028880571174740"},{"denom":"ASSET10","index":"0.000023090578471272"},{"denom":"ASSET11","index":"0.000028709364204549"},{"denom":"ASSET12","index":"0.000027394626213612"},{"denom":"ASSET13","index":"0.000009019217107214"},{"denom":"ASSET14","index":"0.000026344557012563"},{"denom":"ASSET15","index":"0.000020791017438004"},{"denom":"ASSET16","index":"0.000012808886991708"},{"denom":"ASSET17","index":"0.000010066951390727"},{"denom":"ASSET18","index":"0.000004153478710890"},{"denom":"ASSET2","index":"0.000008748954704305"},{"denom":"ASSET3","index":"0.000002428490976730"},{"denom":"ASSET4","index":"0.000023413646091842"},{"denom":"ASSET5","index":"0.000001891364101695"},{"denom":"ASSET6","index":"0.000007634563338572"},{"denom":"ASSET7","index":"0.000011996876612297"},{"denom":"ASSET8","index":"0.000016395615103037"},{"denom":"ASSET9","index":"0.000006958318142576"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001515088644413"},{"denom":"ASSET1","index":"0.000012634136557163"},{"denom":"ASSET10","index":"0.000008802109028204"},{"denom":"ASSET11","index":"0.000012222352143486"},{"denom":"ASSET12","index":"0.000011006111259210"},{"denom":"ASSET13","index":"0.000003787721611031"},{"denom":"ASSET14","index":"0.000011417895672887"},{"denom":"ASSET15","index":"0.000008163582563959"},{"denom":"ASSET16","index":"0.000005691138594924"},{"denom":"ASSET17","index":"0.000004042263453241"},{"denom":"ASSET18","index":"0.000001925135571111"},{"denom":"ASSET2","index":"0.000003729515797284"},{"denom":"ASSET3","index":"0.000001091141821893"},{"denom":"ASSET4","index":"0.000010267679293757"},{"denom":"ASSET5","index":"0.000000846156158061"},{"denom":"ASSET6","index":"0.000003446305419945"},{"denom":"ASSET7","index":"0.000005278485437758"},{"denom":"ASSET8","index":"0.000006887398378958"},{"denom":"ASSET9","index":"0.000002974577705544"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003029367235848"},{"denom":"ASSET1","index":"0.000025709657584098"},{"denom":"ASSET10","index":"0.000020551027857005"},{"denom":"ASSET11","index":"0.000025556791271547"},{"denom":"ASSET12","index":"0.000024383546484064"},{"denom":"ASSET13","index":"0.000008028643187417"},{"denom":"ASSET14","index":"0.000023452409013233"},{"denom":"ASSET15","index":"0.000018505869963369"},{"denom":"ASSET16","index":"0.000011403028825829"},{"denom":"ASSET17","index":"0.000008960765854271"},{"denom":"ASSET18","index":"0.000003697390743305"},{"denom":"ASSET2","index":"0.000007788410102575"},{"denom":"ASSET3","index":"0.000002162278160249"},{"denom":"ASSET4","index":"0.000020843149904241"},{"denom":"ASSET5","index":"0.000001683795445220"},{"denom":"ASSET6","index":"0.000006796548728457"},{"denom":"ASSET7","index":"0.000010680301627557"},{"denom":"ASSET8","index":"0.000014594997949332"},{"denom":"ASSET9","index":"0.000006193949682941"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001650481631660"},{"denom":"ASSET1","index":"0.000013760556046882"},{"denom":"ASSET10","index":"0.000009587067899364"},{"denom":"ASSET11","index":"0.000013312100857594"},{"denom":"ASSET12","index":"0.000011987552175177"},{"denom":"ASSET13","index":"0.000004125311926918"},{"denom":"ASSET14","index":"0.000012435412596309"},{"denom":"ASSET15","index":"0.000008891189157367"},{"denom":"ASSET16","index":"0.000006198673717177"},{"denom":"ASSET17","index":"0.000004402473887406"},{"denom":"ASSET18","index":"0.000002097152516481"},{"denom":"ASSET2","index":"0.000004062266502429"},{"denom":"ASSET3","index":"0.000001188346774796"},{"denom":"ASSET4","index":"0.000011182830860714"},{"denom":"ASSET5","index":"0.000000921890641108"},{"denom":"ASSET6","index":"0.000003753581829697"},{"denom":"ASSET7","index":"0.000005749028991578"},{"denom":"ASSET8","index":"0.000007501810745994"},{"denom":"ASSET9","index":"0.000003239702143299"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003205609047354"},{"denom":"ASSET1","index":"0.000027188537481167"},{"denom":"ASSET10","index":"0.000021652723818266"},{"denom":"ASSET11","index":"0.000027005979418132"},{"denom":"ASSET12","index":"0.000025725923481940"},{"denom":"ASSET13","index":"0.000008480657418555"},{"denom":"ASSET14","index":"0.000024794508770079"},{"denom":"ASSET15","index":"0.000019512596409105"},{"denom":"ASSET16","index":"0.000012064653878282"},{"denom":"ASSET17","index":"0.000009453813052143"},{"denom":"ASSET18","index":"0.000003917117707327"},{"denom":"ASSET2","index":"0.000008230459966291"},{"denom":"ASSET3","index":"0.000002288306334262"},{"denom":"ASSET4","index":"0.000022043298344156"},{"denom":"ASSET5","index":"0.000001782083734802"},{"denom":"ASSET6","index":"0.000007194354204475"},{"denom":"ASSET7","index":"0.000011296497588433"},{"denom":"ASSET8","index":"0.000015417282169744"},{"denom":"ASSET9","index":"0.000006545936928299"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001428935211366"},{"denom":"ASSET1","index":"0.000011914564237659"},{"denom":"ASSET10","index":"0.000008301159777028"},{"denom":"ASSET11","index":"0.000011525978642480"},{"denom":"ASSET12","index":"0.000010379209562159"},{"denom":"ASSET13","index":"0.000003571896453874"},{"denom":"ASSET14","index":"0.000010767353582799"},{"denom":"ASSET15","index":"0.000007698410529959"},{"denom":"ASSET16","index":"0.000005367338533420"},{"denom":"ASSET17","index":"0.000003811671429081"},{"denom":"ASSET18","index":"0.000001815754508385"},{"denom":"ASSET2","index":"0.000003517141210917"},{"denom":"ASSET3","index":"0.000001028868678146"},{"denom":"ASSET4","index":"0.000009682846512616"},{"denom":"ASSET5","index":"0.000000798366768278"},{"denom":"ASSET6","index":"0.000003249988614231"},{"denom":"ASSET7","index":"0.000004977428214621"},{"denom":"ASSET8","index":"0.000006495119908522"},{"denom":"ASSET9","index":"0.000002805323052474"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003075918064869"},{"denom":"ASSET1","index":"0.000026136551234120"},{"denom":"ASSET10","index":"0.000021080163895542"},{"denom":"ASSET11","index":"0.000026029570124972"},{"denom":"ASSET12","index":"0.000024929671095533"},{"denom":"ASSET13","index":"0.000008184754658215"},{"denom":"ASSET14","index":"0.000023857159923959"},{"denom":"ASSET15","index":"0.000018947606922173"},{"denom":"ASSET16","index":"0.000011579925359638"},{"denom":"ASSET17","index":"0.000009161388302193"},{"denom":"ASSET18","index":"0.000003743573486430"},{"denom":"ASSET2","index":"0.000007931762150876"},{"denom":"ASSET3","index":"0.000002193704696765"},{"denom":"ASSET4","index":"0.000021185602196482"},{"denom":"ASSET5","index":"0.000001709259314500"},{"denom":"ASSET6","index":"0.000006893942979866"},{"denom":"ASSET7","index":"0.000010853088527538"},{"denom":"ASSET8","index":"0.000014878712124324"},{"denom":"ASSET9","index":"0.000006307130542486"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001556917620519"},{"denom":"ASSET1","index":"0.000012983455297040"},{"denom":"ASSET10","index":"0.000009045452282177"},{"denom":"ASSET11","index":"0.000012560119972943"},{"denom":"ASSET12","index":"0.000011310507230547"},{"denom":"ASSET13","index":"0.000003892294051298"},{"denom":"ASSET14","index":"0.000011733139339821"},{"denom":"ASSET15","index":"0.000008388649636483"},{"denom":"ASSET16","index":"0.000005848637691896"},{"denom":"ASSET17","index":"0.000004153889965857"},{"denom":"ASSET18","index":"0.000001978846514969"},{"denom":"ASSET2","index":"0.000003832520791251"},{"denom":"ASSET3","index":"0.000001120924429588"},{"denom":"ASSET4","index":"0.000010551035220538"},{"denom":"ASSET5","index":"0.000000869876737390"},{"denom":"ASSET6","index":"0.000003541389854081"},{"denom":"ASSET7","index":"0.000005423895938150"},{"denom":"ASSET8","index":"0.000007077857204393"},{"denom":"ASSET9","index":"0.000003056874840288"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003155948059833"},{"denom":"ASSET1","index":"0.000026789841893667"},{"denom":"ASSET10","index":"0.000021451154188244"},{"denom":"ASSET11","index":"0.000026640130662201"},{"denom":"ASSET12","index":"0.000025435769508540"},{"denom":"ASSET13","index":"0.000008370086775831"},{"denom":"ASSET14","index":"0.000024440800445484"},{"denom":"ASSET15","index":"0.000019309084443140"},{"denom":"ASSET16","index":"0.000011879786354964"},{"denom":"ASSET17","index":"0.000009347672781307"},{"denom":"ASSET18","index":"0.000003850232310781"},{"denom":"ASSET2","index":"0.000008118311447694"},{"denom":"ASSET3","index":"0.000002251791235916"},{"denom":"ASSET4","index":"0.000021717604836949"},{"denom":"ASSET5","index":"0.000001754185821919"},{"denom":"ASSET6","index":"0.000007079049104243"},{"denom":"ASSET7","index":"0.000011127710678967"},{"denom":"ASSET8","index":"0.000015216376583965"},{"denom":"ASSET9","index":"0.000006456241851980"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001629017625409"},{"denom":"ASSET1","index":"0.000013583500814952"},{"denom":"ASSET10","index":"0.000009463617777698"},{"denom":"ASSET11","index":"0.000013140742178302"},{"denom":"ASSET12","index":"0.000011833351109704"},{"denom":"ASSET13","index":"0.000004072544063523"},{"denom":"ASSET14","index":"0.000012276109746354"},{"denom":"ASSET15","index":"0.000008777202658616"},{"denom":"ASSET16","index":"0.000006119258515961"},{"denom":"ASSET17","index":"0.000004345439323848"},{"denom":"ASSET18","index":"0.000002070383939302"},{"denom":"ASSET2","index":"0.000004009889539469"},{"denom":"ASSET3","index":"0.000001172335761192"},{"denom":"ASSET4","index":"0.000011039727138351"},{"denom":"ASSET5","index":"0.000000910579082921"},{"denom":"ASSET6","index":"0.000003704970855739"},{"denom":"ASSET7","index":"0.000005675107556554"},{"denom":"ASSET8","index":"0.000007404372420450"},{"denom":"ASSET9","index":"0.000003198165372278"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003300821213878"},{"denom":"ASSET1","index":"0.000028019420341436"},{"denom":"ASSET10","index":"0.000022435320069293"},{"denom":"ASSET11","index":"0.000027862926397945"},{"denom":"ASSET12","index":"0.000026603097941410"},{"denom":"ASSET13","index":"0.000008754572034100"},{"denom":"ASSET14","index":"0.000025562969906661"},{"denom":"ASSET15","index":"0.000020195785636702"},{"denom":"ASSET16","index":"0.000012425527462944"},{"denom":"ASSET17","index":"0.000009776022796414"},{"denom":"ASSET18","index":"0.000004027118689751"},{"denom":"ASSET2","index":"0.000008490998812362"},{"denom":"ASSET3","index":"0.000002354733406852"},{"denom":"ASSET4","index":"0.000022715681634045"},{"denom":"ASSET5","index":"0.000001835160700580"},{"denom":"ASSET6","index":"0.000007403741836767"},{"denom":"ASSET7","index":"0.000011639103500846"},{"denom":"ASSET8","index":"0.000015914079386056"},{"denom":"ASSET9","index":"0.000006752470475547"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001599876133405"},{"denom":"ASSET1","index":"0.000013345434681176"},{"denom":"ASSET10","index":"0.000009297530322905"},{"denom":"ASSET11","index":"0.000012909953167223"},{"denom":"ASSET12","index":"0.000011625282701060"},{"denom":"ASSET13","index":"0.000004000208763886"},{"denom":"ASSET14","index":"0.000012059727354266"},{"denom":"ASSET15","index":"0.000008622533976277"},{"denom":"ASSET16","index":"0.000006011718614052"},{"denom":"ASSET17","index":"0.000004268755697491"},{"denom":"ASSET18","index":"0.000002033283925863"},{"denom":"ASSET2","index":"0.000003939033979783"},{"denom":"ASSET3","index":"0.000001151952290481"},{"denom":"ASSET4","index":"0.000010845563418934"},{"denom":"ASSET5","index":"0.000000893773964352"},{"denom":"ASSET6","index":"0.000003640418084501"},{"denom":"ASSET7","index":"0.000005575200239351"},{"denom":"ASSET8","index":"0.000007274615004517"},{"denom":"ASSET9","index":"0.000003141688064949"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003205518103121"},{"denom":"ASSET1","index":"0.000027209804037075"},{"denom":"ASSET10","index":"0.000021755111918776"},{"denom":"ASSET11","index":"0.000027048910570117"},{"denom":"ASSET12","index":"0.000025809934262776"},{"denom":"ASSET13","index":"0.000008496852467218"},{"denom":"ASSET14","index":"0.000024820667393427"},{"denom":"ASSET15","index":"0.000019589132093549"},{"denom":"ASSET16","index":"0.000012068310128279"},{"denom":"ASSET17","index":"0.000009484236214143"},{"denom":"ASSET18","index":"0.000003912244660385"},{"denom":"ASSET2","index":"0.000008242746790311"},{"denom":"ASSET3","index":"0.000002287536756020"},{"denom":"ASSET4","index":"0.000022059248469095"},{"denom":"ASSET5","index":"0.000001781848402938"},{"denom":"ASSET6","index":"0.000007192715838846"},{"denom":"ASSET7","index":"0.000011303047666497"},{"denom":"ASSET8","index":"0.000015447099928639"},{"denom":"ASSET9","index":"0.000006555210966575"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001693699328345"},{"denom":"ASSET1","index":"0.000014121235265065"},{"denom":"ASSET10","index":"0.000009838380374958"},{"denom":"ASSET11","index":"0.000013660499756586"},{"denom":"ASSET12","index":"0.000012301569616423"},{"denom":"ASSET13","index":"0.000004233563721295"},{"denom":"ASSET14","index":"0.000012760935925768"},{"denom":"ASSET15","index":"0.000009123658427184"},{"denom":"ASSET16","index":"0.000006361299175013"},{"denom":"ASSET17","index":"0.000004517672541531"},{"denom":"ASSET18","index":"0.000002151696438556"},{"denom":"ASSET2","index":"0.000004168526762446"},{"denom":"ASSET3","index":"0.000001219271828530"},{"denom":"ASSET4","index":"0.000011475942538822"},{"denom":"ASSET5","index":"0.000000946116601363"},{"denom":"ASSET6","index":"0.000003852241762569"},{"denom":"ASSET7","index":"0.000005899194467400"},{"denom":"ASSET8","index":"0.000007698322129037"},{"denom":"ASSET9","index":"0.000003325100096108"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003374964488748"},{"denom":"ASSET1","index":"0.000028642371697541"},{"denom":"ASSET10","index":"0.000022886358038922"},{"denom":"ASSET11","index":"0.000028469467846578"},{"denom":"ASSET12","index":"0.000027158021136678"},{"denom":"ASSET13","index":"0.000008943216545101"},{"denom":"ASSET14","index":"0.000026126056006670"},{"denom":"ASSET15","index":"0.000020609372613995"},{"denom":"ASSET16","index":"0.000012704733728960"},{"denom":"ASSET17","index":"0.000009980025667275"},{"denom":"ASSET18","index":"0.000004119620826099"},{"denom":"ASSET2","index":"0.000008675935346246"},{"denom":"ASSET3","index":"0.000002408702445844"},{"denom":"ASSET4","index":"0.000023220763838917"},{"denom":"ASSET5","index":"0.000001876440105393"},{"denom":"ASSET6","index":"0.000007572949563502"},{"denom":"ASSET7","index":"0.000011897934490553"},{"denom":"ASSET8","index":"0.000016258236310419"},{"denom":"ASSET9","index":"0.000006900426530312"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001608105877482"},{"denom":"ASSET1","index":"0.000013418457239972"},{"denom":"ASSET10","index":"0.000009349233819318"},{"denom":"ASSET11","index":"0.000012981594753349"},{"denom":"ASSET12","index":"0.000011689837573077"},{"denom":"ASSET13","index":"0.000004022147721664"},{"denom":"ASSET14","index":"0.000012126700059700"},{"denom":"ASSET15","index":"0.000008669460725910"},{"denom":"ASSET16","index":"0.000006044519750254"},{"denom":"ASSET17","index":"0.000004293303747844"},{"denom":"ASSET18","index":"0.000002044968364105"},{"denom":"ASSET2","index":"0.000003960007798998"},{"denom":"ASSET3","index":"0.000001158062195142"},{"denom":"ASSET4","index":"0.000010904614913932"},{"denom":"ASSET5","index":"0.000000898204336720"},{"denom":"ASSET6","index":"0.000003660606353425"},{"denom":"ASSET7","index":"0.000005605774235672"},{"denom":"ASSET8","index":"0.000007313680595011"},{"denom":"ASSET9","index":"0.000003159720916176"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003138779820137"},{"denom":"ASSET1","index":"0.000026638851971456"},{"denom":"ASSET10","index":"0.000021228354320839"},{"denom":"ASSET11","index":"0.000026463611656062"},{"denom":"ASSET12","index":"0.000025215335343685"},{"denom":"ASSET13","index":"0.000008309803474369"},{"denom":"ASSET14","index":"0.000024294710395367"},{"denom":"ASSET15","index":"0.000019126240972581"},{"denom":"ASSET16","index":"0.000011819368577720"},{"denom":"ASSET17","index":"0.000009266335892783"},{"denom":"ASSET18","index":"0.000003836527514127"},{"denom":"ASSET2","index":"0.000008063422586049"},{"denom":"ASSET3","index":"0.000002240662109326"},{"denom":"ASSET4","index":"0.000021597223596640"},{"denom":"ASSET5","index":"0.000001744975814867"},{"denom":"ASSET6","index":"0.000007047692266012"},{"denom":"ASSET7","index":"0.000011067413421526"},{"denom":"ASSET8","index":"0.000015106336478322"},{"denom":"ASSET9","index":"0.000006414890297355"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001636130781121"},{"denom":"ASSET1","index":"0.000013651986161797"},{"denom":"ASSET10","index":"0.000009511743354655"},{"denom":"ASSET11","index":"0.000013205516575762"},{"denom":"ASSET12","index":"0.000011891065744828"},{"denom":"ASSET13","index":"0.000004093100055822"},{"denom":"ASSET14","index":"0.000012337535330862"},{"denom":"ASSET15","index":"0.000008821240702961"},{"denom":"ASSET16","index":"0.000006147969392790"},{"denom":"ASSET17","index":"0.000004367637254688"},{"denom":"ASSET18","index":"0.000002079827264137"},{"denom":"ASSET2","index":"0.000004029318686389"},{"denom":"ASSET3","index":"0.000001178568783011"},{"denom":"ASSET4","index":"0.000011095185178418"},{"denom":"ASSET5","index":"0.000000915123996220"},{"denom":"ASSET6","index":"0.000003724277354315"},{"denom":"ASSET7","index":"0.000005701499806755"},{"denom":"ASSET8","index":"0.000007440235399574"},{"denom":"ASSET9","index":"0.000003214026398847"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003135138573804"},{"denom":"ASSET1","index":"0.000026601246250396"},{"denom":"ASSET10","index":"0.000021147351718785"},{"denom":"ASSET11","index":"0.000026411423528042"},{"denom":"ASSET12","index":"0.000025139747174388"},{"denom":"ASSET13","index":"0.000008292603180789"},{"denom":"ASSET14","index":"0.000024256405788980"},{"denom":"ASSET15","index":"0.000019064302195638"},{"denom":"ASSET16","index":"0.000011804656377100"},{"denom":"ASSET17","index":"0.000009238224400983"},{"denom":"ASSET18","index":"0.000003834531376561"},{"denom":"ASSET2","index":"0.000008049169006780"},{"denom":"ASSET3","index":"0.000002239375819558"},{"denom":"ASSET4","index":"0.000021568278304468"},{"denom":"ASSET5","index":"0.000001743998311515"},{"denom":"ASSET6","index":"0.000007041675703373"},{"denom":"ASSET7","index":"0.000011051161098588"},{"denom":"ASSET8","index":"0.000015073103234225"},{"denom":"ASSET9","index":"0.000006402150772125"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001682560247115"},{"denom":"ASSET1","index":"0.000014026482890055"},{"denom":"ASSET10","index":"0.000009772411969975"},{"denom":"ASSET11","index":"0.000013568579422963"},{"denom":"ASSET12","index":"0.000012218368466479"},{"denom":"ASSET13","index":"0.000004205057792371"},{"denom":"ASSET14","index":"0.000012675600520863"},{"denom":"ASSET15","index":"0.000009062728737253"},{"denom":"ASSET16","index":"0.000006318664998244"},{"denom":"ASSET17","index":"0.000004487051129876"},{"denom":"ASSET18","index":"0.000002137778063373"},{"denom":"ASSET2","index":"0.000004140602172369"},{"denom":"ASSET3","index":"0.000001211228525856"},{"denom":"ASSET4","index":"0.000011398573549589"},{"denom":"ASSET5","index":"0.000000939977791684"},{"denom":"ASSET6","index":"0.000003825709612155"},{"denom":"ASSET7","index":"0.000005859418705735"},{"denom":"ASSET8","index":"0.000007646047922643"},{"denom":"ASSET9","index":"0.000003302679112354"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003237426875283"},{"denom":"ASSET1","index":"0.000027451710154634"},{"denom":"ASSET10","index":"0.000021835512998164"},{"denom":"ASSET11","index":"0.000027259736654219"},{"denom":"ASSET12","index":"0.000025953768913429"},{"denom":"ASSET13","index":"0.000008559484494503"},{"denom":"ASSET14","index":"0.000025032165857410"},{"denom":"ASSET15","index":"0.000019681806512765"},{"denom":"ASSET16","index":"0.000012183244440341"},{"denom":"ASSET17","index":"0.000009537367134186"},{"denom":"ASSET18","index":"0.000003957397976948"},{"denom":"ASSET2","index":"0.000008307936552813"},{"denom":"ASSET3","index":"0.000002310954839376"},{"denom":"ASSET4","index":"0.000022256988295109"},{"denom":"ASSET5","index":"0.000001799896462688"},{"denom":"ASSET6","index":"0.000007265619632425"},{"denom":"ASSET7","index":"0.000011405823532836"},{"denom":"ASSET8","index":"0.000015559935461923"},{"denom":"ASSET9","index":"0.000006608212131764"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001576738934866"},{"denom":"ASSET1","index":"0.000013143695761043"},{"denom":"ASSET10","index":"0.000009157699733702"},{"denom":"ASSET11","index":"0.000012715663698192"},{"denom":"ASSET12","index":"0.000011450067913139"},{"denom":"ASSET13","index":"0.000003940585946017"},{"denom":"ASSET14","index":"0.000011878099975991"},{"denom":"ASSET15","index":"0.000008492526135047"},{"denom":"ASSET16","index":"0.000005920970048209"},{"denom":"ASSET17","index":"0.000004204637159643"},{"denom":"ASSET18","index":"0.000002003089142854"},{"denom":"ASSET2","index":"0.000003880039170918"},{"denom":"ASSET3","index":"0.000001134411105672"},{"denom":"ASSET4","index":"0.000010681460240357"},{"denom":"ASSET5","index":"0.000000880451021229"},{"denom":"ASSET6","index":"0.000003584873642311"},{"denom":"ASSET7","index":"0.000005491256130493"},{"denom":"ASSET8","index":"0.000007165542647463"},{"denom":"ASSET9","index":"0.000003094612949497"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003150995592381"},{"denom":"ASSET1","index":"0.000026735906318713"},{"denom":"ASSET10","index":"0.000021370928366269"},{"denom":"ASSET11","index":"0.000026577057751538"},{"denom":"ASSET12","index":"0.000025356196217934"},{"denom":"ASSET13","index":"0.000008349049177946"},{"denom":"ASSET14","index":"0.000024388519635576"},{"denom":"ASSET15","index":"0.000019243917228958"},{"denom":"ASSET16","index":"0.000011858566692713"},{"denom":"ASSET17","index":"0.000009317567603522"},{"denom":"ASSET18","index":"0.000003845362315572"},{"denom":"ASSET2","index":"0.000008099062572798"},{"denom":"ASSET3","index":"0.000002247710476517"},{"denom":"ASSET4","index":"0.000021674805285583"},{"denom":"ASSET5","index":"0.000001751018453776"},{"denom":"ASSET6","index":"0.000007067532365991"},{"denom":"ASSET7","index":"0.000011106766164564"},{"denom":"ASSET8","index":"0.000015177641578730"},{"denom":"ASSET9","index":"0.000006441123951375"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001735896630597"},{"denom":"ASSET1","index":"0.000014474259966527"},{"denom":"ASSET10","index":"0.000010084408758147"},{"denom":"ASSET11","index":"0.000014002239606889"},{"denom":"ASSET12","index":"0.000012609068112910"},{"denom":"ASSET13","index":"0.000004339122939062"},{"denom":"ASSET14","index":"0.000013079851197687"},{"denom":"ASSET15","index":"0.000009351942040176"},{"denom":"ASSET16","index":"0.000006520438519776"},{"denom":"ASSET17","index":"0.000004630501168930"},{"denom":"ASSET18","index":"0.000002205442440512"},{"denom":"ASSET2","index":"0.000004272310096544"},{"denom":"ASSET3","index":"0.000001249647610052"},{"denom":"ASSET4","index":"0.000011762772107687"},{"denom":"ASSET5","index":"0.000000970023491367"},{"denom":"ASSET6","index":"0.000003948144082847"},{"denom":"ASSET7","index":"0.000006046562247845"},{"denom":"ASSET8","index":"0.000007890101791387"},{"denom":"ASSET9","index":"0.000003408073605830"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003300304206809"},{"denom":"ASSET1","index":"0.000027981868665615"},{"denom":"ASSET10","index":"0.000022221493016134"},{"denom":"ASSET11","index":"0.000027777532118325"},{"denom":"ASSET12","index":"0.000026428557640091"},{"denom":"ASSET13","index":"0.000008720047886627"},{"denom":"ASSET14","index":"0.000025512138164618"},{"denom":"ASSET15","index":"0.000020036362120252"},{"denom":"ASSET16","index":"0.000012421157074829"},{"denom":"ASSET17","index":"0.000009711490167791"},{"denom":"ASSET18","index":"0.000004036282970136"},{"denom":"ASSET2","index":"0.000008465189250700"},{"denom":"ASSET3","index":"0.000002356240815614"},{"denom":"ASSET4","index":"0.000022687774056492"},{"denom":"ASSET5","index":"0.000001835200922241"},{"denom":"ASSET6","index":"0.000007409270759323"},{"denom":"ASSET7","index":"0.000011627060915230"},{"denom":"ASSET8","index":"0.000015852235873304"},{"denom":"ASSET9","index":"0.000006733690564218"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001726734301691"},{"denom":"ASSET1","index":"0.000014395988805148"},{"denom":"ASSET10","index":"0.000010029746380297"},{"denom":"ASSET11","index":"0.000013926529312304"},{"denom":"ASSET12","index":"0.000012540835608608"},{"denom":"ASSET13","index":"0.000004315874534955"},{"denom":"ASSET14","index":"0.000013009526126035"},{"denom":"ASSET15","index":"0.000009301526659210"},{"denom":"ASSET16","index":"0.000006485154189852"},{"denom":"ASSET17","index":"0.000004605778267637"},{"denom":"ASSET18","index":"0.000002193886868281"},{"denom":"ASSET2","index":"0.000004249742648985"},{"denom":"ASSET3","index":"0.000001243048763609"},{"denom":"ASSET4","index":"0.000011699192013329"},{"denom":"ASSET5","index":"0.000000964679662201"},{"denom":"ASSET6","index":"0.000003926772973318"},{"denom":"ASSET7","index":"0.000006014156746171"},{"denom":"ASSET8","index":"0.000007847778630999"},{"denom":"ASSET9","index":"0.000003389643643667"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003383074331503"},{"denom":"ASSET1","index":"0.000028697774885580"},{"denom":"ASSET10","index":"0.000022880621123289"},{"denom":"ASSET11","index":"0.000028511966470743"},{"denom":"ASSET12","index":"0.000027173358086556"},{"denom":"ASSET13","index":"0.000008954537947194"},{"denom":"ASSET14","index":"0.000026172910691250"},{"denom":"ASSET15","index":"0.000020614154391480"},{"denom":"ASSET16","index":"0.000012732692592075"},{"denom":"ASSET17","index":"0.000009985655741818"},{"denom":"ASSET18","index":"0.000004132359094826"},{"denom":"ASSET2","index":"0.000008689052893949"},{"denom":"ASSET3","index":"0.000002414485946546"},{"denom":"ASSET4","index":"0.000023266612079392"},{"denom":"ASSET5","index":"0.000001880944791026"},{"denom":"ASSET6","index":"0.000007591453768301"},{"denom":"ASSET7","index":"0.000011922604903868"},{"denom":"ASSET8","index":"0.000016278329144958"},{"denom":"ASSET9","index":"0.000006911169878531"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001436232590899"},{"denom":"ASSET1","index":"0.000011976183987962"},{"denom":"ASSET10","index":"0.000008344549248442"},{"denom":"ASSET11","index":"0.000011585862202045"},{"denom":"ASSET12","index":"0.000010432581326504"},{"denom":"ASSET13","index":"0.000003589949888597"},{"denom":"ASSET14","index":"0.000010822903112421"},{"denom":"ASSET15","index":"0.000007738224144105"},{"denom":"ASSET16","index":"0.000005395030251301"},{"denom":"ASSET17","index":"0.000003831216753031"},{"denom":"ASSET18","index":"0.000001825291199515"},{"denom":"ASSET2","index":"0.000003535633264667"},{"denom":"ASSET3","index":"0.000001033279031975"},{"denom":"ASSET4","index":"0.000009732781101914"},{"denom":"ASSET5","index":"0.000000802117585946"},{"denom":"ASSET6","index":"0.000003266576499617"},{"denom":"ASSET7","index":"0.000005003445288083"},{"denom":"ASSET8","index":"0.000006528100290032"},{"denom":"ASSET9","index":"0.000002819411735168"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003006064648013"},{"denom":"ASSET1","index":"0.000025531157590212"},{"denom":"ASSET10","index":"0.000020524407173472"},{"denom":"ASSET11","index":"0.000025409258384489"},{"denom":"ASSET12","index":"0.000024300714605646"},{"denom":"ASSET13","index":"0.000007986286383048"},{"denom":"ASSET14","index":"0.000023298685931189"},{"denom":"ASSET15","index":"0.000018459726056254"},{"denom":"ASSET16","index":"0.000011316095008653"},{"denom":"ASSET17","index":"0.000008930145684163"},{"denom":"ASSET18","index":"0.000003662445744281"},{"denom":"ASSET2","index":"0.000007743120539446"},{"denom":"ASSET3","index":"0.000002143639104141"},{"denom":"ASSET4","index":"0.000020695936675740"},{"denom":"ASSET5","index":"0.000001670457298921"},{"denom":"ASSET6","index":"0.000006739935351518"},{"denom":"ASSET7","index":"0.000010603283023237"},{"denom":"ASSET8","index":"0.000014518439118465"},{"denom":"ASSET9","index":"0.000006156725809403"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001476546163568"},{"denom":"ASSET1","index":"0.000012315891963405"},{"denom":"ASSET10","index":"0.000008580298213179"},{"denom":"ASSET11","index":"0.000011914434711559"},{"denom":"ASSET12","index":"0.000010728207916557"},{"denom":"ASSET13","index":"0.000003691365408921"},{"denom":"ASSET14","index":"0.000011129665168403"},{"denom":"ASSET15","index":"0.000007957699254808"},{"denom":"ASSET16","index":"0.000005547821683700"},{"denom":"ASSET17","index":"0.000003939724556249"},{"denom":"ASSET18","index":"0.000001876869355381"},{"denom":"ASSET2","index":"0.000003635796467281"},{"denom":"ASSET3","index":"0.000001062614251355"},{"denom":"ASSET4","index":"0.000010009213855342"},{"denom":"ASSET5","index":"0.000000825595704361"},{"denom":"ASSET6","index":"0.000003359085819117"},{"denom":"ASSET7","index":"0.000005145230371820"},{"denom":"ASSET8","index":"0.000006713635398099"},{"denom":"ASSET9","index":"0.000002899791505564"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002611689387046"},{"denom":"ASSET1","index":"0.000022118950462866"},{"denom":"ASSET10","index":"0.000017388824351878"},{"denom":"ASSET11","index":"0.000021911701626113"},{"denom":"ASSET12","index":"0.000020757567192719"},{"denom":"ASSET13","index":"0.000006870825151743"},{"denom":"ASSET14","index":"0.000020152250667519"},{"denom":"ASSET15","index":"0.000015711809347683"},{"denom":"ASSET16","index":"0.000009830001439303"},{"denom":"ASSET17","index":"0.000007627368499381"},{"denom":"ASSET18","index":"0.000003205559295774"},{"denom":"ASSET2","index":"0.000006678615536452"},{"denom":"ASSET3","index":"0.000001865584989735"},{"denom":"ASSET4","index":"0.000017938012267073"},{"denom":"ASSET5","index":"0.000001453547274796"},{"denom":"ASSET6","index":"0.000005870892100855"},{"denom":"ASSET7","index":"0.000009195154067126"},{"denom":"ASSET8","index":"0.000012492245582088"},{"denom":"ASSET9","index":"0.000005313335607946"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000000860911540335"},{"denom":"ASSET1","index":"0.000007178593209511"},{"denom":"ASSET10","index":"0.000005001581264509"},{"denom":"ASSET11","index":"0.000006944753046495"},{"denom":"ASSET12","index":"0.000006253725385275"},{"denom":"ASSET13","index":"0.000002152029021603"},{"denom":"ASSET14","index":"0.000006487065889823"},{"denom":"ASSET15","index":"0.000004638329558286"},{"denom":"ASSET16","index":"0.000003233789604786"},{"denom":"ASSET17","index":"0.000002296430318850"},{"denom":"ASSET18","index":"0.000001093752386415"},{"denom":"ASSET2","index":"0.000002119051562716"},{"denom":"ASSET3","index":"0.000000619576500299"},{"denom":"ASSET4","index":"0.000005834012272169"},{"denom":"ASSET5","index":"0.000000481171104668"},{"denom":"ASSET6","index":"0.000001958161536025"},{"denom":"ASSET7","index":"0.000002998950124834"},{"denom":"ASSET8","index":"0.000003913325121242"},{"denom":"ASSET9","index":"0.000001690344597186"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002357406510396"},{"denom":"ASSET1","index":"0.000020099972826550"},{"denom":"ASSET10","index":"0.000016611857270119"},{"denom":"ASSET11","index":"0.000020122040980663"},{"denom":"ASSET12","index":"0.000019473664705632"},{"denom":"ASSET13","index":"0.000006342954228467"},{"denom":"ASSET14","index":"0.000018379978414574"},{"denom":"ASSET15","index":"0.000014858739059306"},{"denom":"ASSET16","index":"0.000008878274052948"},{"denom":"ASSET17","index":"0.000007156982288871"},{"denom":"ASSET18","index":"0.000002845018303307"},{"denom":"ASSET2","index":"0.000006129987919866"},{"denom":"ASSET3","index":"0.000001678183905493"},{"denom":"ASSET4","index":"0.000016284739258605"},{"denom":"ASSET5","index":"0.000001308892339296"},{"denom":"ASSET6","index":"0.000005269046474537"},{"denom":"ASSET7","index":"0.000008337197620164"},{"denom":"ASSET8","index":"0.000011530009666752"},{"denom":"ASSET9","index":"0.000004871853664260"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001198976216272"},{"denom":"ASSET1","index":"0.000010001315625623"},{"denom":"ASSET10","index":"0.000006967712250892"},{"denom":"ASSET11","index":"0.000009674322112094"},{"denom":"ASSET12","index":"0.000008711677656379"},{"denom":"ASSET13","index":"0.000002997949876371"},{"denom":"ASSET14","index":"0.000009037652498526"},{"denom":"ASSET15","index":"0.000006461432574183"},{"denom":"ASSET16","index":"0.000004504564849919"},{"denom":"ASSET17","index":"0.000003199646809949"},{"denom":"ASSET18","index":"0.000001523932387037"},{"denom":"ASSET2","index":"0.000002952109664194"},{"denom":"ASSET3","index":"0.000000862814660308"},{"denom":"ASSET4","index":"0.000008126960283277"},{"denom":"ASSET5","index":"0.000000670285769165"},{"denom":"ASSET6","index":"0.000002728001960218"},{"denom":"ASSET7","index":"0.000004177571336390"},{"denom":"ASSET8","index":"0.000005451929234909"},{"denom":"ASSET9","index":"0.000002354149563130"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002792091306062"},{"denom":"ASSET1","index":"0.000023760392481519"},{"denom":"ASSET10","index":"0.000019330735214415"},{"denom":"ASSET11","index":"0.000023705763948043"},{"denom":"ASSET12","index":"0.000022788595153270"},{"denom":"ASSET13","index":"0.000007460432475948"},{"denom":"ASSET14","index":"0.000021701401606991"},{"denom":"ASSET15","index":"0.000017344296121870"},{"denom":"ASSET16","index":"0.000010515175863945"},{"denom":"ASSET17","index":"0.000008375559402161"},{"denom":"ASSET18","index":"0.000003388923471278"},{"denom":"ASSET2","index":"0.000007222909907971"},{"denom":"ASSET3","index":"0.000001989926471838"},{"denom":"ASSET4","index":"0.000019255294602933"},{"denom":"ASSET5","index":"0.000001551437823125"},{"denom":"ASSET6","index":"0.000006253588147261"},{"denom":"ASSET7","index":"0.000009862028954195"},{"denom":"ASSET8","index":"0.000013562244421912"},{"denom":"ASSET9","index":"0.000005741841810541"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001507638919625"},{"denom":"ASSET1","index":"0.000012569401049902"},{"denom":"ASSET10","index":"0.000008757228353136"},{"denom":"ASSET11","index":"0.000012160184771718"},{"denom":"ASSET12","index":"0.000010949766096248"},{"denom":"ASSET13","index":"0.000003769097299062"},{"denom":"ASSET14","index":"0.000011358982374432"},{"denom":"ASSET15","index":"0.000008124020006893"},{"denom":"ASSET16","index":"0.000005660107258249"},{"denom":"ASSET17","index":"0.000004018934605743"},{"denom":"ASSET18","index":"0.000001912547658039"},{"denom":"ASSET2","index":"0.000003708791742277"},{"denom":"ASSET3","index":"0.000001085500022130"},{"denom":"ASSET4","index":"0.000010217484335287"},{"denom":"ASSET5","index":"0.000000839970255220"},{"denom":"ASSET6","index":"0.000003428801657204"},{"denom":"ASSET7","index":"0.000005250890980065"},{"denom":"ASSET8","index":"0.000006853295774638"},{"denom":"ASSET9","index":"0.000002959279822235"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003131246414749"},{"denom":"ASSET1","index":"0.000026589761836242"},{"denom":"ASSET10","index":"0.000021355242603721"},{"denom":"ASSET11","index":"0.000026458316408852"},{"denom":"ASSET12","index":"0.000025293988029420"},{"denom":"ASSET13","index":"0.000008316673174883"},{"denom":"ASSET14","index":"0.000024263343459355"},{"denom":"ASSET15","index":"0.000019213959771091"},{"denom":"ASSET16","index":"0.000011784585795875"},{"denom":"ASSET17","index":"0.000009292893547134"},{"denom":"ASSET18","index":"0.000003813004198036"},{"denom":"ASSET2","index":"0.000008060944762894"},{"denom":"ASSET3","index":"0.000002234070199415"},{"denom":"ASSET4","index":"0.000021557233504015"},{"denom":"ASSET5","index":"0.000001738116490695"},{"denom":"ASSET6","index":"0.000007021386599103"},{"denom":"ASSET7","index":"0.000011043212117572"},{"denom":"ASSET8","index":"0.000015117900391662"},{"denom":"ASSET9","index":"0.000006411442995536"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001538667310820"},{"denom":"ASSET1","index":"0.000012827917927858"},{"denom":"ASSET10","index":"0.000008937244372687"},{"denom":"ASSET11","index":"0.000012409488429871"},{"denom":"ASSET12","index":"0.000011174685151587"},{"denom":"ASSET13","index":"0.000003845530209513"},{"denom":"ASSET14","index":"0.000011592355937882"},{"denom":"ASSET15","index":"0.000008288166520415"},{"denom":"ASSET16","index":"0.000005778727600031"},{"denom":"ASSET17","index":"0.000004103871540546"},{"denom":"ASSET18","index":"0.000001954820673732"},{"denom":"ASSET2","index":"0.000003786730053405"},{"denom":"ASSET3","index":"0.000001107719069920"},{"denom":"ASSET4","index":"0.000010424698644316"},{"denom":"ASSET5","index":"0.000000859620346726"},{"denom":"ASSET6","index":"0.000003499178322240"},{"denom":"ASSET7","index":"0.000005359160034507"},{"denom":"ASSET8","index":"0.000006993045662639"},{"denom":"ASSET9","index":"0.000003020431244761"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003070496060295"},{"denom":"ASSET1","index":"0.000026054009108675"},{"denom":"ASSET10","index":"0.000020821706468932"},{"denom":"ASSET11","index":"0.000025897661631707"},{"denom":"ASSET12","index":"0.000024706407518076"},{"denom":"ASSET13","index":"0.000008135385272267"},{"denom":"ASSET14","index":"0.000023765921524780"},{"denom":"ASSET15","index":"0.000018749935123185"},{"denom":"ASSET16","index":"0.000011556337558875"},{"denom":"ASSET17","index":"0.000009079232430047"},{"denom":"ASSET18","index":"0.000003747682066764"},{"denom":"ASSET2","index":"0.000007892419371659"},{"denom":"ASSET3","index":"0.000002191201298955"},{"denom":"ASSET4","index":"0.000021122052487200"},{"denom":"ASSET5","index":"0.000001706992646915"},{"denom":"ASSET6","index":"0.000006888142834266"},{"denom":"ASSET7","index":"0.000010823268476718"},{"denom":"ASSET8","index":"0.000014789657857476"},{"denom":"ASSET9","index":"0.000006276911852268"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001679222100186"},{"denom":"ASSET1","index":"0.000013999028794594"},{"denom":"ASSET10","index":"0.000009753438641601"},{"denom":"ASSET11","index":"0.000013542280383343"},{"denom":"ASSET12","index":"0.000012194769233410"},{"denom":"ASSET13","index":"0.000004196505199295"},{"denom":"ASSET14","index":"0.000012650484277214"},{"denom":"ASSET15","index":"0.000009045065257184"},{"denom":"ASSET16","index":"0.000006306124840851"},{"denom":"ASSET17","index":"0.000004478614512126"},{"denom":"ASSET18","index":"0.000002133387092820"},{"denom":"ASSET2","index":"0.000004132436417626"},{"denom":"ASSET3","index":"0.000001208523228411"},{"denom":"ASSET4","index":"0.000011376342215965"},{"denom":"ASSET5","index":"0.000000938297641211"},{"denom":"ASSET6","index":"0.000003818809397684"},{"denom":"ASSET7","index":"0.000005848343062154"},{"denom":"ASSET8","index":"0.000007631418590690"},{"denom":"ASSET9","index":"0.000003295925469872"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003295755498274"},{"denom":"ASSET1","index":"0.000027960125957180"},{"denom":"ASSET10","index":"0.000022298091456525"},{"denom":"ASSET11","index":"0.000027779779629540"},{"denom":"ASSET12","index":"0.000026478335493542"},{"denom":"ASSET13","index":"0.000008724566942758"},{"denom":"ASSET14","index":"0.000025500389224880"},{"denom":"ASSET15","index":"0.000020088119547171"},{"denom":"ASSET16","index":"0.000012404652968467"},{"denom":"ASSET17","index":"0.000009730254100732"},{"denom":"ASSET18","index":"0.000004025857251145"},{"denom":"ASSET2","index":"0.000008465992991141"},{"denom":"ASSET3","index":"0.000002352288079447"},{"denom":"ASSET4","index":"0.000022667879187178"},{"denom":"ASSET5","index":"0.000001832649164275"},{"denom":"ASSET6","index":"0.000007396215489940"},{"denom":"ASSET7","index":"0.000011616026271508"},{"denom":"ASSET8","index":"0.000015861127767022"},{"denom":"ASSET9","index":"0.000006733269226830"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001488486853561"},{"denom":"ASSET1","index":"0.000012409943784184"},{"denom":"ASSET10","index":"0.000008645838046025"},{"denom":"ASSET11","index":"0.000012005445379346"},{"denom":"ASSET12","index":"0.000010810451131374"},{"denom":"ASSET13","index":"0.000003720376180879"},{"denom":"ASSET14","index":"0.000011214949536212"},{"denom":"ASSET15","index":"0.000008018487089665"},{"denom":"ASSET16","index":"0.000005590655707614"},{"denom":"ASSET17","index":"0.000003970139229188"},{"denom":"ASSET18","index":"0.000001891303352350"},{"denom":"ASSET2","index":"0.000003663191375205"},{"denom":"ASSET3","index":"0.000001071374153354"},{"denom":"ASSET4","index":"0.000010085549624159"},{"denom":"ASSET5","index":"0.000000831702541340"},{"denom":"ASSET6","index":"0.000003384835924059"},{"denom":"ASSET7","index":"0.000005184475396726"},{"denom":"ASSET8","index":"0.000006765467082995"},{"denom":"ASSET9","index":"0.000002921470807498"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003140601357292"},{"denom":"ASSET1","index":"0.000026678854887219"},{"denom":"ASSET10","index":"0.000021467437308134"},{"denom":"ASSET11","index":"0.000026557150856893"},{"denom":"ASSET12","index":"0.000025409189778577"},{"denom":"ASSET13","index":"0.000008348678217638"},{"denom":"ASSET14","index":"0.000024348515645151"},{"denom":"ASSET15","index":"0.000019305257093893"},{"denom":"ASSET16","index":"0.000011824039078448"},{"denom":"ASSET17","index":"0.000009337874135725"},{"denom":"ASSET18","index":"0.000003825021517438"},{"denom":"ASSET2","index":"0.000008092644314938"},{"denom":"ASSET3","index":"0.000002240059115813"},{"denom":"ASSET4","index":"0.000021626536887159"},{"denom":"ASSET5","index":"0.000001745574888449"},{"denom":"ASSET6","index":"0.000007040920669072"},{"denom":"ASSET7","index":"0.000011079696231301"},{"denom":"ASSET8","index":"0.000015176664815864"},{"denom":"ASSET9","index":"0.000006434669973810"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001385039568420"},{"denom":"ASSET1","index":"0.000011547928050470"},{"denom":"ASSET10","index":"0.000008045290512347"},{"denom":"ASSET11","index":"0.000011171268467624"},{"denom":"ASSET12","index":"0.000010059084660007"},{"denom":"ASSET13","index":"0.000003461116009305"},{"denom":"ASSET14","index":"0.000010435744242853"},{"denom":"ASSET15","index":"0.000007461023285412"},{"denom":"ASSET16","index":"0.000005202054396163"},{"denom":"ASSET17","index":"0.000003694427456948"},{"denom":"ASSET18","index":"0.000001759721935608"},{"denom":"ASSET2","index":"0.000003408719794369"},{"denom":"ASSET3","index":"0.000000996516691625"},{"denom":"ASSET4","index":"0.000009383865512804"},{"denom":"ASSET5","index":"0.000000774079930102"},{"denom":"ASSET6","index":"0.000003149704543173"},{"denom":"ASSET7","index":"0.000004824406205487"},{"denom":"ASSET8","index":"0.000006294466047200"},{"denom":"ASSET9","index":"0.000002718671529731"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002978674281858"},{"denom":"ASSET1","index":"0.000025310372422717"},{"denom":"ASSET10","index":"0.000020411345436720"},{"denom":"ASSET11","index":"0.000025206262983954"},{"denom":"ASSET12","index":"0.000024139567910062"},{"denom":"ASSET13","index":"0.000007924745788344"},{"denom":"ASSET14","index":"0.000023102636423037"},{"denom":"ASSET15","index":"0.000018346974201526"},{"denom":"ASSET16","index":"0.000011213830154915"},{"denom":"ASSET17","index":"0.000008871351161454"},{"denom":"ASSET18","index":"0.000003625142276595"},{"denom":"ASSET2","index":"0.000007680838181843"},{"denom":"ASSET3","index":"0.000002123796319816"},{"denom":"ASSET4","index":"0.000020514843977806"},{"denom":"ASSET5","index":"0.000001655567492872"},{"denom":"ASSET6","index":"0.000006676037052519"},{"denom":"ASSET7","index":"0.000010510115662832"},{"denom":"ASSET8","index":"0.000014407133239162"},{"denom":"ASSET9","index":"0.000006107008804836"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001563741356289"},{"denom":"ASSET1","index":"0.000013036816883138"},{"denom":"ASSET10","index":"0.000009082880828100"},{"denom":"ASSET11","index":"0.000012611783735587"},{"denom":"ASSET12","index":"0.000011356772924286"},{"denom":"ASSET13","index":"0.000003908472310400"},{"denom":"ASSET14","index":"0.000011781101207579"},{"denom":"ASSET15","index":"0.000008423480314776"},{"denom":"ASSET16","index":"0.000005872928997340"},{"denom":"ASSET17","index":"0.000004170681814362"},{"denom":"ASSET18","index":"0.000001986659911066"},{"denom":"ASSET2","index":"0.000003848558848473"},{"denom":"ASSET3","index":"0.000001125668219966"},{"denom":"ASSET4","index":"0.000010594814661429"},{"denom":"ASSET5","index":"0.000000873679247744"},{"denom":"ASSET6","index":"0.000003556392613548"},{"denom":"ASSET7","index":"0.000005446486121273"},{"denom":"ASSET8","index":"0.000007106793880903"},{"denom":"ASSET9","index":"0.000003069683843425"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003115193601728"},{"denom":"ASSET1","index":"0.000026433576226141"},{"denom":"ASSET10","index":"0.000021120836274624"},{"denom":"ASSET11","index":"0.000026274076149270"},{"denom":"ASSET12","index":"0.000025063206789151"},{"denom":"ASSET13","index":"0.000008253838888439"},{"denom":"ASSET14","index":"0.000024111622086359"},{"denom":"ASSET15","index":"0.000019020166052921"},{"denom":"ASSET16","index":"0.000011725264187843"},{"denom":"ASSET17","index":"0.000009210335248597"},{"denom":"ASSET18","index":"0.000003802618681808"},{"denom":"ASSET2","index":"0.000008007094168018"},{"denom":"ASSET3","index":"0.000002223045227271"},{"denom":"ASSET4","index":"0.000021430343290469"},{"denom":"ASSET5","index":"0.000001731871182363"},{"denom":"ASSET6","index":"0.000006989160352022"},{"denom":"ASSET7","index":"0.000010981276608696"},{"denom":"ASSET8","index":"0.000015004007461071"},{"denom":"ASSET9","index":"0.000006368316319391"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001688791638136"},{"denom":"ASSET1","index":"0.000014080258863939"},{"denom":"ASSET10","index":"0.000009809129194434"},{"denom":"ASSET11","index":"0.000013620783833550"},{"denom":"ASSET12","index":"0.000012265553395360"},{"denom":"ASSET13","index":"0.000004220322334414"},{"denom":"ASSET14","index":"0.000012723923918464"},{"denom":"ASSET15","index":"0.000009096721995874"},{"denom":"ASSET16","index":"0.000006342080828109"},{"denom":"ASSET17","index":"0.000004504180706554"},{"denom":"ASSET18","index":"0.000002144953146672"},{"denom":"ASSET2","index":"0.000004156260911908"},{"denom":"ASSET3","index":"0.000001214958013048"},{"denom":"ASSET4","index":"0.000011442695468341"},{"denom":"ASSET5","index":"0.000000943249221039"},{"denom":"ASSET6","index":"0.000003840371828516"},{"denom":"ASSET7","index":"0.000005881501290436"},{"denom":"ASSET8","index":"0.000007675221120608"},{"denom":"ASSET9","index":"0.000003314626361051"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003342989987813"},{"denom":"ASSET1","index":"0.000028363859076608"},{"denom":"ASSET10","index":"0.000022643596968544"},{"denom":"ASSET11","index":"0.000028187678804911"},{"denom":"ASSET12","index":"0.000026879157824253"},{"denom":"ASSET13","index":"0.000008853292918908"},{"denom":"ASSET14","index":"0.000025870927331183"},{"denom":"ASSET15","index":"0.000020395094195043"},{"denom":"ASSET16","index":"0.000012581780801373"},{"denom":"ASSET17","index":"0.000009877287329505"},{"denom":"ASSET18","index":"0.000004080927248291"},{"denom":"ASSET2","index":"0.000008590241612281"},{"denom":"ASSET3","index":"0.000002384972961476"},{"denom":"ASSET4","index":"0.000022995501297970"},{"denom":"ASSET5","index":"0.000001858071035633"},{"denom":"ASSET6","index":"0.000007500418590266"},{"denom":"ASSET7","index":"0.000011782462758670"},{"denom":"ASSET8","index":"0.000016095075530395"},{"denom":"ASSET9","index":"0.000006831506736707"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001571496317510"},{"denom":"ASSET1","index":"0.000013101483241955"},{"denom":"ASSET10","index":"0.000009127906315185"},{"denom":"ASSET11","index":"0.000012674221268720"},{"denom":"ASSET12","index":"0.000011413128948859"},{"denom":"ASSET13","index":"0.000003927726401627"},{"denom":"ASSET14","index":"0.000011839579408375"},{"denom":"ASSET15","index":"0.000008464899606481"},{"denom":"ASSET16","index":"0.000005901733523932"},{"denom":"ASSET17","index":"0.000004191468360414"},{"denom":"ASSET18","index":"0.000001996729506447"},{"denom":"ASSET2","index":"0.000003867268629536"},{"denom":"ASSET3","index":"0.000001131250124766"},{"denom":"ASSET4","index":"0.000010647059997798"},{"denom":"ASSET5","index":"0.000000878057844331"},{"denom":"ASSET6","index":"0.000003573906419993"},{"denom":"ASSET7","index":"0.000005473254280118"},{"denom":"ASSET8","index":"0.000007142132243950"},{"denom":"ASSET9","index":"0.000003084563647228"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003113134051861"},{"denom":"ASSET1","index":"0.000026415094552464"},{"denom":"ASSET10","index":"0.000021090707465492"},{"denom":"ASSET11","index":"0.000026251548228726"},{"denom":"ASSET12","index":"0.000025034408517114"},{"denom":"ASSET13","index":"0.000008245703890405"},{"denom":"ASSET14","index":"0.000024093200316600"},{"denom":"ASSET15","index":"0.000018995578271326"},{"denom":"ASSET16","index":"0.000011717396138812"},{"denom":"ASSET17","index":"0.000009199501798709"},{"denom":"ASSET18","index":"0.000003801350346824"},{"denom":"ASSET2","index":"0.000007999912620195"},{"denom":"ASSET3","index":"0.000002221641081089"},{"denom":"ASSET4","index":"0.000021415082747190"},{"denom":"ASSET5","index":"0.000001730738444371"},{"denom":"ASSET6","index":"0.000006985361363625"},{"denom":"ASSET7","index":"0.000010973556930807"},{"denom":"ASSET8","index":"0.000014990236718633"},{"denom":"ASSET9","index":"0.000006362695679170"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001486431692511"},{"denom":"ASSET1","index":"0.000012397696164316"},{"denom":"ASSET10","index":"0.000008637613387551"},{"denom":"ASSET11","index":"0.000011993186507636"},{"denom":"ASSET12","index":"0.000010799842650204"},{"denom":"ASSET13","index":"0.000003716482933529"},{"denom":"ASSET14","index":"0.000011203544902380"},{"denom":"ASSET15","index":"0.000008010260087670"},{"denom":"ASSET16","index":"0.000005584816956599"},{"denom":"ASSET17","index":"0.000003965970925374"},{"denom":"ASSET18","index":"0.000001889326540182"},{"denom":"ASSET2","index":"0.000003659157213720"},{"denom":"ASSET3","index":"0.000001070618372770"},{"denom":"ASSET4","index":"0.000010074793405297"},{"denom":"ASSET5","index":"0.000000830819234978"},{"denom":"ASSET6","index":"0.000003381410064224"},{"denom":"ASSET7","index":"0.000005179499895414"},{"denom":"ASSET8","index":"0.000006757975701421"},{"denom":"ASSET9","index":"0.000002918767283230"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003023961266495"},{"denom":"ASSET1","index":"0.000025674667559579"},{"denom":"ASSET10","index":"0.000020567435721356"},{"denom":"ASSET11","index":"0.000025532965784321"},{"denom":"ASSET12","index":"0.000024383768132692"},{"denom":"ASSET13","index":"0.000008022807352722"},{"denom":"ASSET14","index":"0.000023423766496233"},{"denom":"ASSET15","index":"0.000018512228577533"},{"denom":"ASSET16","index":"0.000011384524743973"},{"denom":"ASSET17","index":"0.000008960010456843"},{"denom":"ASSET18","index":"0.000003688974211121"},{"denom":"ASSET2","index":"0.000007780619396113"},{"denom":"ASSET3","index":"0.000002157718690670"},{"denom":"ASSET4","index":"0.000020813357966886"},{"denom":"ASSET5","index":"0.000001681323481152"},{"denom":"ASSET6","index":"0.000006783427048921"},{"denom":"ASSET7","index":"0.000010664665966441"},{"denom":"ASSET8","index":"0.000014584270248941"},{"denom":"ASSET9","index":"0.000006187655866052"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001789525520762"},{"denom":"ASSET1","index":"0.000014923544215299"},{"denom":"ASSET10","index":"0.000010397506905977"},{"denom":"ASSET11","index":"0.000014436898494348"},{"denom":"ASSET12","index":"0.000013000171779235"},{"denom":"ASSET13","index":"0.000004474200642702"},{"denom":"ASSET14","index":"0.000013486043818595"},{"denom":"ASSET15","index":"0.000009642393672833"},{"denom":"ASSET16","index":"0.000006722519347127"},{"denom":"ASSET17","index":"0.000004774389100140"},{"denom":"ASSET18","index":"0.000002273850196939"},{"denom":"ASSET2","index":"0.000004405342981073"},{"denom":"ASSET3","index":"0.000001288179849576"},{"denom":"ASSET4","index":"0.000012128232625798"},{"denom":"ASSET5","index":"0.000001000370297599"},{"denom":"ASSET6","index":"0.000004071112533615"},{"denom":"ASSET7","index":"0.000006234326262993"},{"denom":"ASSET8","index":"0.000008135261932908"},{"denom":"ASSET9","index":"0.000003514061787852"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003488279034648"},{"denom":"ASSET1","index":"0.000029592208548275"},{"denom":"ASSET10","index":"0.000023577626976592"},{"denom":"ASSET11","index":"0.000029395914355993"},{"denom":"ASSET12","index":"0.000028007798530295"},{"denom":"ASSET13","index":"0.000009231498766276"},{"denom":"ASSET14","index":"0.000026986732997785"},{"denom":"ASSET15","index":"0.000021244630549189"},{"denom":"ASSET16","index":"0.000013129960095172"},{"denom":"ASSET17","index":"0.000010292381952670"},{"denom":"ASSET18","index":"0.000004261641431672"},{"denom":"ASSET2","index":"0.000008958343988321"},{"denom":"ASSET3","index":"0.000002489657102823"},{"denom":"ASSET4","index":"0.000023991917258738"},{"denom":"ASSET5","index":"0.000001939742890351"},{"denom":"ASSET6","index":"0.000007829259808535"},{"denom":"ASSET7","index":"0.000012294264842111"},{"denom":"ASSET8","index":"0.000016782088113605"},{"denom":"ASSET9","index":"0.000007125719490615"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001504632489095"},{"denom":"ASSET1","index":"0.000012543084148708"},{"denom":"ASSET10","index":"0.000008738830231438"},{"denom":"ASSET11","index":"0.000012134501498699"},{"denom":"ASSET12","index":"0.000010926897843985"},{"denom":"ASSET13","index":"0.000003760573206331"},{"denom":"ASSET14","index":"0.000011335480493994"},{"denom":"ASSET15","index":"0.000008104451906425"},{"denom":"ASSET16","index":"0.000005650267962622"},{"denom":"ASSET17","index":"0.000004012577307899"},{"denom":"ASSET18","index":"0.000001911199106291"},{"denom":"ASSET2","index":"0.000003702780265705"},{"denom":"ASSET3","index":"0.000001083281631273"},{"denom":"ASSET4","index":"0.000010193733911157"},{"denom":"ASSET5","index":"0.000000840685682831"},{"denom":"ASSET6","index":"0.000003421207682886"},{"denom":"ASSET7","index":"0.000005240341290738"},{"denom":"ASSET8","index":"0.000006837711289210"},{"denom":"ASSET9","index":"0.000002953488070376"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003015423229771"},{"denom":"ASSET1","index":"0.000025588098096649"},{"denom":"ASSET10","index":"0.000020460473772645"},{"denom":"ASSET11","index":"0.000025438043766359"},{"denom":"ASSET12","index":"0.000024273358860204"},{"denom":"ASSET13","index":"0.000007991752317173"},{"denom":"ASSET14","index":"0.000023342063892494"},{"denom":"ASSET15","index":"0.000018422728556898"},{"denom":"ASSET16","index":"0.000011348811151398"},{"denom":"ASSET17","index":"0.000008919790197810"},{"denom":"ASSET18","index":"0.000003679502338318"},{"denom":"ASSET2","index":"0.000007752126098631"},{"denom":"ASSET3","index":"0.000002151933074669"},{"denom":"ASSET4","index":"0.000020744635257959"},{"denom":"ASSET5","index":"0.000001676458472807"},{"denom":"ASSET6","index":"0.000006763790928604"},{"denom":"ASSET7","index":"0.000010629564741383"},{"denom":"ASSET8","index":"0.000014527278079751"},{"denom":"ASSET9","index":"0.000006165283413682"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001790270882045"},{"denom":"ASSET1","index":"0.000014924962381265"},{"denom":"ASSET10","index":"0.000010398687848362"},{"denom":"ASSET11","index":"0.000014438353512768"},{"denom":"ASSET12","index":"0.000013001639266884"},{"denom":"ASSET13","index":"0.000004474427888377"},{"denom":"ASSET14","index":"0.000013487623477013"},{"denom":"ASSET15","index":"0.000009643475881721"},{"denom":"ASSET16","index":"0.000006723198012370"},{"denom":"ASSET17","index":"0.000004774888563278"},{"denom":"ASSET18","index":"0.000002274381117071"},{"denom":"ASSET2","index":"0.000004405715467922"},{"denom":"ASSET3","index":"0.000001288670212721"},{"denom":"ASSET4","index":"0.000012129616185469"},{"denom":"ASSET5","index":"0.000001000078046809"},{"denom":"ASSET6","index":"0.000004071523241162"},{"denom":"ASSET7","index":"0.000006235339827137"},{"denom":"ASSET8","index":"0.000008136175240279"},{"denom":"ASSET9","index":"0.000003514327977106"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003452635056994"},{"denom":"ASSET1","index":"0.000029280443630050"},{"denom":"ASSET10","index":"0.000023297581891953"},{"denom":"ASSET11","index":"0.000029078046899152"},{"denom":"ASSET12","index":"0.000027688393753974"},{"denom":"ASSET13","index":"0.000009130247174920"},{"denom":"ASSET14","index":"0.000026700258191979"},{"denom":"ASSET15","index":"0.000020998119885469"},{"denom":"ASSET16","index":"0.000012993858989816"},{"denom":"ASSET17","index":"0.000010174919177657"},{"denom":"ASSET18","index":"0.000004220034662939"},{"denom":"ASSET2","index":"0.000008861755768133"},{"denom":"ASSET3","index":"0.000002464736347038"},{"denom":"ASSET4","index":"0.000023740327943060"},{"denom":"ASSET5","index":"0.000001919615043943"},{"denom":"ASSET6","index":"0.000007749671229698"},{"denom":"ASSET7","index":"0.000012165961282812"},{"denom":"ASSET8","index":"0.000016598407083950"},{"denom":"ASSET9","index":"0.000007048985746822"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001835550145227"},{"denom":"ASSET1","index":"0.000015324623289081"},{"denom":"ASSET10","index":"0.000010676536631006"},{"denom":"ASSET11","index":"0.000014825027987456"},{"denom":"ASSET12","index":"0.000013348446318211"},{"denom":"ASSET13","index":"0.000004592576069005"},{"denom":"ASSET14","index":"0.000013848041619836"},{"denom":"ASSET15","index":"0.000009899388384035"},{"denom":"ASSET16","index":"0.000006901816574290"},{"denom":"ASSET17","index":"0.000004903435367793"},{"denom":"ASSET18","index":"0.000002335145446851"},{"denom":"ASSET2","index":"0.000004522262656184"},{"denom":"ASSET3","index":"0.000001321152019851"},{"denom":"ASSET4","index":"0.000012452875481226"},{"denom":"ASSET5","index":"0.000001025095544814"},{"denom":"ASSET6","index":"0.000004178097003954"},{"denom":"ASSET7","index":"0.000006402221272666"},{"denom":"ASSET8","index":"0.000008352493301969"},{"denom":"ASSET9","index":"0.000003608188289508"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003336473275634"},{"denom":"ASSET1","index":"0.000028284037775138"},{"denom":"ASSET10","index":"0.000022321061137243"},{"denom":"ASSET11","index":"0.000028041053149272"},{"denom":"ASSET12","index":"0.000026607048139233"},{"denom":"ASSET13","index":"0.000008795774551756"},{"denom":"ASSET14","index":"0.000025776026947277"},{"denom":"ASSET15","index":"0.000020150006768141"},{"denom":"ASSET16","index":"0.000012562977954735"},{"denom":"ASSET17","index":"0.000009778271060189"},{"denom":"ASSET18","index":"0.000004091528532498"},{"denom":"ASSET2","index":"0.000008544798017437"},{"denom":"ASSET3","index":"0.000002382883485470"},{"denom":"ASSET4","index":"0.000022934405116164"},{"denom":"ASSET5","index":"0.000001855148612588"},{"denom":"ASSET6","index":"0.000007498692848558"},{"denom":"ASSET7","index":"0.000011756140274513"},{"denom":"ASSET8","index":"0.000015991743254740"},{"denom":"ASSET9","index":"0.000006799136288961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001764742979644"},{"denom":"ASSET1","index":"0.000014715413525055"},{"denom":"ASSET10","index":"0.000010252344388411"},{"denom":"ASSET11","index":"0.000014235671854472"},{"denom":"ASSET12","index":"0.000012819403806098"},{"denom":"ASSET13","index":"0.000004411268809023"},{"denom":"ASSET14","index":"0.000013298556836595"},{"denom":"ASSET15","index":"0.000009507714678855"},{"denom":"ASSET16","index":"0.000006629264655353"},{"denom":"ASSET17","index":"0.000004707943412672"},{"denom":"ASSET18","index":"0.000002242718729968"},{"denom":"ASSET2","index":"0.000004343575199063"},{"denom":"ASSET3","index":"0.000001270873946982"},{"denom":"ASSET4","index":"0.000011958811999481"},{"denom":"ASSET5","index":"0.000000985972145064"},{"denom":"ASSET6","index":"0.000004013936750564"},{"denom":"ASSET7","index":"0.000006147757064510"},{"denom":"ASSET8","index":"0.000008021987100262"},{"denom":"ASSET9","index":"0.000003464735549761"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003371223111771"},{"denom":"ASSET1","index":"0.000028586584995448"},{"denom":"ASSET10","index":"0.000022716281614844"},{"denom":"ASSET11","index":"0.000028381809067472"},{"denom":"ASSET12","index":"0.000027011101270499"},{"denom":"ASSET13","index":"0.000008910504058238"},{"denom":"ASSET14","index":"0.000026065694327630"},{"denom":"ASSET15","index":"0.000020479714095343"},{"denom":"ASSET16","index":"0.000012688778091614"},{"denom":"ASSET17","index":"0.000009925875585388"},{"denom":"ASSET18","index":"0.000004122881217339"},{"denom":"ASSET2","index":"0.000008649339803247"},{"denom":"ASSET3","index":"0.000002407313457267"},{"denom":"ASSET4","index":"0.000023177863483423"},{"denom":"ASSET5","index":"0.000001874397047373"},{"denom":"ASSET6","index":"0.000007568278053481"},{"denom":"ASSET7","index":"0.000011878402488901"},{"denom":"ASSET8","index":"0.000016198768839280"},{"denom":"ASSET9","index":"0.000006880150170591"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001519402004985"},{"denom":"ASSET1","index":"0.000012669186594649"},{"denom":"ASSET10","index":"0.000008826466179926"},{"denom":"ASSET11","index":"0.000012255973562605"},{"denom":"ASSET12","index":"0.000011036700348729"},{"denom":"ASSET13","index":"0.000003798237040326"},{"denom":"ASSET14","index":"0.000011448841492233"},{"denom":"ASSET15","index":"0.000008185476833202"},{"denom":"ASSET16","index":"0.000005707270529482"},{"denom":"ASSET17","index":"0.000004053346512768"},{"denom":"ASSET18","index":"0.000001930471259949"},{"denom":"ASSET2","index":"0.000003739819114914"},{"denom":"ASSET3","index":"0.000001093862254735"},{"denom":"ASSET4","index":"0.000010296025367816"},{"denom":"ASSET5","index":"0.000000848935723420"},{"denom":"ASSET6","index":"0.000003455768651901"},{"denom":"ASSET7","index":"0.000005292985608899"},{"denom":"ASSET8","index":"0.000006906177861104"},{"denom":"ASSET9","index":"0.000002983065805906"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003090388166914"},{"denom":"ASSET1","index":"0.000026235396530584"},{"denom":"ASSET10","index":"0.000021016328726441"},{"denom":"ASSET11","index":"0.000026091077525301"},{"denom":"ASSET12","index":"0.000024916432469284"},{"denom":"ASSET13","index":"0.000008198423394567"},{"denom":"ASSET14","index":"0.000023935350029219"},{"denom":"ASSET15","index":"0.000018916111125702"},{"denom":"ASSET16","index":"0.000011633439861257"},{"denom":"ASSET17","index":"0.000009156707623184"},{"denom":"ASSET18","index":"0.000003769226369030"},{"denom":"ASSET2","index":"0.000007950992094695"},{"denom":"ASSET3","index":"0.000002205065882760"},{"denom":"ASSET4","index":"0.000021268551776440"},{"denom":"ASSET5","index":"0.000001717872208784"},{"denom":"ASSET6","index":"0.000006931889619894"},{"denom":"ASSET7","index":"0.000010897757198785"},{"denom":"ASSET8","index":"0.000014903243728132"},{"denom":"ASSET9","index":"0.000006323427167640"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001518878942956"},{"denom":"ASSET1","index":"0.000012665267621292"},{"denom":"ASSET10","index":"0.000008823986077449"},{"denom":"ASSET11","index":"0.000012252067733139"},{"denom":"ASSET12","index":"0.000011032961258059"},{"denom":"ASSET13","index":"0.000003796959064490"},{"denom":"ASSET14","index":"0.000011445207974612"},{"denom":"ASSET15","index":"0.000008182978177143"},{"denom":"ASSET16","index":"0.000005705208605625"},{"denom":"ASSET17","index":"0.000004051932467214"},{"denom":"ASSET18","index":"0.000001930172487911"},{"denom":"ASSET2","index":"0.000003738815596953"},{"denom":"ASSET3","index":"0.000001093764409816"},{"denom":"ASSET4","index":"0.000010292823511460"},{"denom":"ASSET5","index":"0.000000848799308881"},{"denom":"ASSET6","index":"0.000003454770460461"},{"denom":"ASSET7","index":"0.000005291055545873"},{"denom":"ASSET8","index":"0.000006904298477127"},{"denom":"ASSET9","index":"0.000002981997347372"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003032310940473"},{"denom":"ASSET1","index":"0.000025733484746235"},{"denom":"ASSET10","index":"0.000020566326171769"},{"denom":"ASSET11","index":"0.000025579130700492"},{"denom":"ASSET12","index":"0.000024402998631681"},{"denom":"ASSET13","index":"0.000008035434808363"},{"denom":"ASSET14","index":"0.000023473377840860"},{"denom":"ASSET15","index":"0.000018519821992016"},{"denom":"ASSET16","index":"0.000011413808805814"},{"denom":"ASSET17","index":"0.000008967671528488"},{"denom":"ASSET18","index":"0.000003701450923042"},{"denom":"ASSET2","index":"0.000007795399667781"},{"denom":"ASSET3","index":"0.000002164126947351"},{"denom":"ASSET4","index":"0.000020862528644023"},{"denom":"ASSET5","index":"0.000001685967393794"},{"denom":"ASSET6","index":"0.000006803442800114"},{"denom":"ASSET7","index":"0.000010689840259007"},{"denom":"ASSET8","index":"0.000014607710652032"},{"denom":"ASSET9","index":"0.000006199747658625"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001387661284101"},{"denom":"ASSET1","index":"0.000011573014587468"},{"denom":"ASSET10","index":"0.000008062929395432"},{"denom":"ASSET11","index":"0.000011195232526081"},{"denom":"ASSET12","index":"0.000010081345808669"},{"denom":"ASSET13","index":"0.000003469153210252"},{"denom":"ASSET14","index":"0.000010458456853962"},{"denom":"ASSET15","index":"0.000007477132344649"},{"denom":"ASSET16","index":"0.000005213124040705"},{"denom":"ASSET17","index":"0.000003702666811251"},{"denom":"ASSET18","index":"0.000001763430297203"},{"denom":"ASSET2","index":"0.000003416142938760"},{"denom":"ASSET3","index":"0.000000999142965196"},{"denom":"ASSET4","index":"0.000009404961585085"},{"denom":"ASSET5","index":"0.000000775694605619"},{"denom":"ASSET6","index":"0.000003156459710063"},{"denom":"ASSET7","index":"0.000004834670963223"},{"denom":"ASSET8","index":"0.000006308893323556"},{"denom":"ASSET9","index":"0.000002724996361089"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002847838387483"},{"denom":"ASSET1","index":"0.000024182680336096"},{"denom":"ASSET10","index":"0.000019393227963423"},{"denom":"ASSET11","index":"0.000024054653395269"},{"denom":"ASSET12","index":"0.000022982316432831"},{"denom":"ASSET13","index":"0.000007558836235579"},{"denom":"ASSET14","index":"0.000022064079622497"},{"denom":"ASSET15","index":"0.000017450899901336"},{"denom":"ASSET16","index":"0.000010721434414440"},{"denom":"ASSET17","index":"0.000008446187739031"},{"denom":"ASSET18","index":"0.000003472449339717"},{"denom":"ASSET2","index":"0.000007330038539196"},{"denom":"ASSET3","index":"0.000002031951160271"},{"denom":"ASSET4","index":"0.000019603371773062"},{"denom":"ASSET5","index":"0.000001583403578691"},{"denom":"ASSET6","index":"0.000006387295602350"},{"denom":"ASSET7","index":"0.000010043914419286"},{"denom":"ASSET8","index":"0.000013741733556815"},{"denom":"ASSET9","index":"0.000005829813216311"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001740203165372"},{"denom":"ASSET1","index":"0.000014506985633466"},{"denom":"ASSET10","index":"0.000010106727386233"},{"denom":"ASSET11","index":"0.000014033828203465"},{"denom":"ASSET12","index":"0.000012637643303754"},{"denom":"ASSET13","index":"0.000004348390877948"},{"denom":"ASSET14","index":"0.000013109742216014"},{"denom":"ASSET15","index":"0.000009373174592071"},{"denom":"ASSET16","index":"0.000006535288529808"},{"denom":"ASSET17","index":"0.000004640541774324"},{"denom":"ASSET18","index":"0.000002210185042151"},{"denom":"ASSET2","index":"0.000004281704260297"},{"denom":"ASSET3","index":"0.000001252226487004"},{"denom":"ASSET4","index":"0.000011789770593618"},{"denom":"ASSET5","index":"0.000000971719285773"},{"denom":"ASSET6","index":"0.000003956739313965"},{"denom":"ASSET7","index":"0.000006060014064326"},{"denom":"ASSET8","index":"0.000007908186039228"},{"denom":"ASSET9","index":"0.000003415836748573"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003351161845380"},{"denom":"ASSET1","index":"0.000028416485386018"},{"denom":"ASSET10","index":"0.000022605276372189"},{"denom":"ASSET11","index":"0.000028218825237526"},{"denom":"ASSET12","index":"0.000026868556551399"},{"denom":"ASSET13","index":"0.000008859853422879"},{"denom":"ASSET14","index":"0.000025912194276628"},{"denom":"ASSET15","index":"0.000020375555431981"},{"denom":"ASSET16","index":"0.000012611404420708"},{"denom":"ASSET17","index":"0.000009873044520717"},{"denom":"ASSET18","index":"0.000004095473642305"},{"denom":"ASSET2","index":"0.000008599384819082"},{"denom":"ASSET3","index":"0.000002391571176633"},{"denom":"ASSET4","index":"0.000023040021162794"},{"denom":"ASSET5","index":"0.000001862805125681"},{"denom":"ASSET6","index":"0.000007520693553142"},{"denom":"ASSET7","index":"0.000011806544930596"},{"denom":"ASSET8","index":"0.000016107343127742"},{"denom":"ASSET9","index":"0.000006840485865179"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001711866379191"},{"denom":"ASSET1","index":"0.000014286095556473"},{"denom":"ASSET10","index":"0.000009953932372868"},{"denom":"ASSET11","index":"0.000013820467901333"},{"denom":"ASSET12","index":"0.000012444127332464"},{"denom":"ASSET13","index":"0.000004281948436482"},{"denom":"ASSET14","index":"0.000012909754987604"},{"denom":"ASSET15","index":"0.000009230383516596"},{"denom":"ASSET16","index":"0.000006434335097252"},{"denom":"ASSET17","index":"0.000004569541988186"},{"denom":"ASSET18","index":"0.000002177494034331"},{"denom":"ASSET2","index":"0.000004215756269820"},{"denom":"ASSET3","index":"0.000001232543793017"},{"denom":"ASSET4","index":"0.000011608736539419"},{"denom":"ASSET5","index":"0.000000956362683841"},{"denom":"ASSET6","index":"0.000003896207879038"},{"denom":"ASSET7","index":"0.000005968707442112"},{"denom":"ASSET8","index":"0.000007787850781065"},{"denom":"ASSET9","index":"0.000003362105568731"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003408995344605"},{"denom":"ASSET1","index":"0.000028940875589883"},{"denom":"ASSET10","index":"0.000023121939135123"},{"denom":"ASSET11","index":"0.000028765460883304"},{"denom":"ASSET12","index":"0.000027437813762181"},{"denom":"ASSET13","index":"0.000009035078182388"},{"denom":"ASSET14","index":"0.000026397840013038"},{"denom":"ASSET15","index":"0.000020822021063845"},{"denom":"ASSET16","index":"0.000012835900360827"},{"denom":"ASSET17","index":"0.000010082289518918"},{"denom":"ASSET18","index":"0.000004163537456367"},{"denom":"ASSET2","index":"0.000008764373535196"},{"denom":"ASSET3","index":"0.000002432999591430"},{"denom":"ASSET4","index":"0.000023461370966582"},{"denom":"ASSET5","index":"0.000001895172356369"},{"denom":"ASSET6","index":"0.000007651446569151"},{"denom":"ASSET7","index":"0.000012022926111771"},{"denom":"ASSET8","index":"0.000016426068411072"},{"denom":"ASSET9","index":"0.000006969965423669"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001459800105667"},{"denom":"ASSET1","index":"0.000012176396665923"},{"denom":"ASSET10","index":"0.000008484162206626"},{"denom":"ASSET11","index":"0.000011779823335110"},{"denom":"ASSET12","index":"0.000010607197020722"},{"denom":"ASSET13","index":"0.000003650070053435"},{"denom":"ASSET14","index":"0.000011003770351536"},{"denom":"ASSET15","index":"0.000007867650218206"},{"denom":"ASSET16","index":"0.000005484791497715"},{"denom":"ASSET17","index":"0.000003895079438851"},{"denom":"ASSET18","index":"0.000001855233857943"},{"denom":"ASSET2","index":"0.000003594230705131"},{"denom":"ASSET3","index":"0.000001050691410948"},{"denom":"ASSET4","index":"0.000009896100013746"},{"denom":"ASSET5","index":"0.000000815938232363"},{"denom":"ASSET6","index":"0.000003321871434831"},{"denom":"ASSET7","index":"0.000005087078588365"},{"denom":"ASSET8","index":"0.000006638044976977"},{"denom":"ASSET9","index":"0.000002867179598640"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002975317591563"},{"denom":"ASSET1","index":"0.000025265738469637"},{"denom":"ASSET10","index":"0.000020245724387946"},{"denom":"ASSET11","index":"0.000025128558675417"},{"denom":"ASSET12","index":"0.000023998925764885"},{"denom":"ASSET13","index":"0.000007895668684136"},{"denom":"ASSET14","index":"0.000023051238668493"},{"denom":"ASSET15","index":"0.000018221178423268"},{"denom":"ASSET16","index":"0.000011202197653725"},{"denom":"ASSET17","index":"0.000008818540737002"},{"denom":"ASSET18","index":"0.000003629428323701"},{"denom":"ASSET2","index":"0.000007657107369447"},{"denom":"ASSET3","index":"0.000002122660280404"},{"denom":"ASSET4","index":"0.000020482509156357"},{"denom":"ASSET5","index":"0.000001654309607539"},{"denom":"ASSET6","index":"0.000006675356935536"},{"denom":"ASSET7","index":"0.000010494215679887"},{"denom":"ASSET8","index":"0.000014353927855523"},{"denom":"ASSET9","index":"0.000006089535217587"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001617402557586"},{"denom":"ASSET1","index":"0.000013485147451276"},{"denom":"ASSET10","index":"0.000009395521488362"},{"denom":"ASSET11","index":"0.000013045402724081"},{"denom":"ASSET12","index":"0.000011747619504798"},{"denom":"ASSET13","index":"0.000004042433845849"},{"denom":"ASSET14","index":"0.000012186291683878"},{"denom":"ASSET15","index":"0.000008713380887153"},{"denom":"ASSET16","index":"0.000006074912523982"},{"denom":"ASSET17","index":"0.000004313788518972"},{"denom":"ASSET18","index":"0.000002055002188551"},{"denom":"ASSET2","index":"0.000003980226055173"},{"denom":"ASSET3","index":"0.000001163714704894"},{"denom":"ASSET4","index":"0.000010959296640193"},{"denom":"ASSET5","index":"0.000000903085512923"},{"denom":"ASSET6","index":"0.000003677767486712"},{"denom":"ASSET7","index":"0.000005633022700557"},{"denom":"ASSET8","index":"0.000007351244780963"},{"denom":"ASSET9","index":"0.000003174742420725"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003091273620954"},{"denom":"ASSET1","index":"0.000026212594205506"},{"denom":"ASSET10","index":"0.000020831747389799"},{"denom":"ASSET11","index":"0.000026024829344923"},{"denom":"ASSET12","index":"0.000024768925461013"},{"denom":"ASSET13","index":"0.000008170539761157"},{"denom":"ASSET14","index":"0.000023900540063840"},{"denom":"ASSET15","index":"0.000018780610027247"},{"denom":"ASSET16","index":"0.000011634658240098"},{"denom":"ASSET17","index":"0.000009101405984603"},{"denom":"ASSET18","index":"0.000003780149264156"},{"denom":"ASSET2","index":"0.000007930960667726"},{"denom":"ASSET3","index":"0.000002206123035767"},{"denom":"ASSET4","index":"0.000021253166889363"},{"denom":"ASSET5","index":"0.000001718500807532"},{"denom":"ASSET6","index":"0.000006939076737962"},{"denom":"ASSET7","index":"0.000010891166816552"},{"denom":"ASSET8","index":"0.000014853628574871"},{"denom":"ASSET9","index":"0.000006308302102729"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001496654334782"},{"denom":"ASSET1","index":"0.000012477377024436"},{"denom":"ASSET10","index":"0.000008693096469902"},{"denom":"ASSET11","index":"0.000012070207597683"},{"denom":"ASSET12","index":"0.000010869145414891"},{"denom":"ASSET13","index":"0.000003740467488528"},{"denom":"ASSET14","index":"0.000011275146493218"},{"denom":"ASSET15","index":"0.000008061604145195"},{"denom":"ASSET16","index":"0.000005620924281527"},{"denom":"ASSET17","index":"0.000003991662400298"},{"denom":"ASSET18","index":"0.000001901487064682"},{"denom":"ASSET2","index":"0.000003683218415613"},{"denom":"ASSET3","index":"0.000001077217249546"},{"denom":"ASSET4","index":"0.000010139511822330"},{"denom":"ASSET5","index":"0.000000835953299404"},{"denom":"ASSET6","index":"0.000003403398967385"},{"denom":"ASSET7","index":"0.000005212586506346"},{"denom":"ASSET8","index":"0.000006801540366848"},{"denom":"ASSET9","index":"0.000002937812119289"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003012098530886"},{"denom":"ASSET1","index":"0.000025562058034330"},{"denom":"ASSET10","index":"0.000020450222858637"},{"denom":"ASSET11","index":"0.000025414193224582"},{"denom":"ASSET12","index":"0.000024256065084933"},{"denom":"ASSET13","index":"0.000007984561416691"},{"denom":"ASSET14","index":"0.000023318358139730"},{"denom":"ASSET15","index":"0.000018411259079989"},{"denom":"ASSET16","index":"0.000011336678183578"},{"denom":"ASSET17","index":"0.000008913774138499"},{"denom":"ASSET18","index":"0.000003674960609183"},{"denom":"ASSET2","index":"0.000007744948932800"},{"denom":"ASSET3","index":"0.000002148867969989"},{"denom":"ASSET4","index":"0.000020722540912428"},{"denom":"ASSET5","index":"0.000001674229864542"},{"denom":"ASSET6","index":"0.000006756080138401"},{"denom":"ASSET7","index":"0.000010618450136599"},{"denom":"ASSET8","index":"0.000014514789998911"},{"denom":"ASSET9","index":"0.000006159565713194"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001470615438656"},{"denom":"ASSET1","index":"0.000012263141624205"},{"denom":"ASSET10","index":"0.000008543710077270"},{"denom":"ASSET11","index":"0.000011863435889596"},{"denom":"ASSET12","index":"0.000010682701378752"},{"denom":"ASSET13","index":"0.000003676538596641"},{"denom":"ASSET14","index":"0.000011081935762259"},{"denom":"ASSET15","index":"0.000007923412026863"},{"denom":"ASSET16","index":"0.000005524234917004"},{"denom":"ASSET17","index":"0.000003923055223056"},{"denom":"ASSET18","index":"0.000001868907119959"},{"denom":"ASSET2","index":"0.000003619976464385"},{"denom":"ASSET3","index":"0.000001058654575392"},{"denom":"ASSET4","index":"0.000009965776352407"},{"denom":"ASSET5","index":"0.000000822036322121"},{"denom":"ASSET6","index":"0.000003345178771841"},{"denom":"ASSET7","index":"0.000005123115129088"},{"denom":"ASSET8","index":"0.000006685172681558"},{"denom":"ASSET9","index":"0.000002887496851669"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002995147819628"},{"denom":"ASSET1","index":"0.000025426980115999"},{"denom":"ASSET10","index":"0.000020372034738960"},{"denom":"ASSET11","index":"0.000025287989623967"},{"denom":"ASSET12","index":"0.000024150599022202"},{"denom":"ASSET13","index":"0.000007946076587902"},{"denom":"ASSET14","index":"0.000023198024872944"},{"denom":"ASSET15","index":"0.000018335727027304"},{"denom":"ASSET16","index":"0.000011274635486105"},{"denom":"ASSET17","index":"0.000008875015361763"},{"denom":"ASSET18","index":"0.000003653177061349"},{"denom":"ASSET2","index":"0.000007706361997735"},{"denom":"ASSET3","index":"0.000002137037997503"},{"denom":"ASSET4","index":"0.000020612735071168"},{"denom":"ASSET5","index":"0.000001665450131859"},{"denom":"ASSET6","index":"0.000006718182222688"},{"denom":"ASSET7","index":"0.000010561635089256"},{"denom":"ASSET8","index":"0.000014445035982826"},{"denom":"ASSET9","index":"0.000006128513210961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001778581753434"},{"denom":"ASSET1","index":"0.000014888315804569"},{"denom":"ASSET10","index":"0.000010370885153828"},{"denom":"ASSET11","index":"0.000014404007158094"},{"denom":"ASSET12","index":"0.000012967781516823"},{"denom":"ASSET13","index":"0.000004458979607201"},{"denom":"ASSET14","index":"0.000013452090163298"},{"denom":"ASSET15","index":"0.000009619371736884"},{"denom":"ASSET16","index":"0.000006705169708956"},{"denom":"ASSET17","index":"0.000004759584973979"},{"denom":"ASSET18","index":"0.000002262890399909"},{"denom":"ASSET2","index":"0.000004392178414584"},{"denom":"ASSET3","index":"0.000001285922957882"},{"denom":"ASSET4","index":"0.000012099366012799"},{"denom":"ASSET5","index":"0.000000993667740182"},{"denom":"ASSET6","index":"0.000004058172451498"},{"denom":"ASSET7","index":"0.000006220861062481"},{"denom":"ASSET8","index":"0.000008116344902996"},{"denom":"ASSET9","index":"0.000003507062612406"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003356752793751"},{"denom":"ASSET1","index":"0.000028516406305775"},{"denom":"ASSET10","index":"0.000022616173055400"},{"denom":"ASSET11","index":"0.000028302061322789"},{"denom":"ASSET12","index":"0.000026910491325102"},{"denom":"ASSET13","index":"0.000008878873421079"},{"denom":"ASSET14","index":"0.000025995251505598"},{"denom":"ASSET15","index":"0.000020398635157595"},{"denom":"ASSET16","index":"0.000012658071469071"},{"denom":"ASSET17","index":"0.000009885849877285"},{"denom":"ASSET18","index":"0.000004110010202724"},{"denom":"ASSET2","index":"0.000008622285743228"},{"denom":"ASSET3","index":"0.000002402314047495"},{"denom":"ASSET4","index":"0.000023121698220749"},{"denom":"ASSET5","index":"0.000001866482592061"},{"denom":"ASSET6","index":"0.000007549939309511"},{"denom":"ASSET7","index":"0.000011851024307599"},{"denom":"ASSET8","index":"0.000016149793693754"},{"denom":"ASSET9","index":"0.000006862325287189"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001604942959288"},{"denom":"ASSET1","index":"0.000013380628695124"},{"denom":"ASSET10","index":"0.000009322365613635"},{"denom":"ASSET11","index":"0.000012944148427984"},{"denom":"ASSET12","index":"0.000011656280789193"},{"denom":"ASSET13","index":"0.000004011353995308"},{"denom":"ASSET14","index":"0.000012091757653420"},{"denom":"ASSET15","index":"0.000008645319498111"},{"denom":"ASSET16","index":"0.000006027692148913"},{"denom":"ASSET17","index":"0.000004280767677439"},{"denom":"ASSET18","index":"0.000002039165569874"},{"denom":"ASSET2","index":"0.000003949895566889"},{"denom":"ASSET3","index":"0.000001155418454280"},{"denom":"ASSET4","index":"0.000010873877367808"},{"denom":"ASSET5","index":"0.000000896791353463"},{"denom":"ASSET6","index":"0.000003649878095912"},{"denom":"ASSET7","index":"0.000005589957628131"},{"denom":"ASSET8","index":"0.000007294237475803"},{"denom":"ASSET9","index":"0.000003150685146712"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003200268554223"},{"denom":"ASSET1","index":"0.000027155061035589"},{"denom":"ASSET10","index":"0.000021699312128992"},{"denom":"ASSET11","index":"0.000026991580254755"},{"denom":"ASSET12","index":"0.000025748970079650"},{"denom":"ASSET13","index":"0.000008479073830121"},{"denom":"ASSET14","index":"0.000024769827936089"},{"denom":"ASSET15","index":"0.000019540730612944"},{"denom":"ASSET16","index":"0.000012044995213579"},{"denom":"ASSET17","index":"0.000009462424001901"},{"denom":"ASSET18","index":"0.000003906197580725"},{"denom":"ASSET2","index":"0.000008225756082433"},{"denom":"ASSET3","index":"0.000002283784004254"},{"denom":"ASSET4","index":"0.000022014648589339"},{"denom":"ASSET5","index":"0.000001779311895342"},{"denom":"ASSET6","index":"0.000007179475362032"},{"denom":"ASSET7","index":"0.000011280598785262"},{"denom":"ASSET8","index":"0.000015413911362487"},{"denom":"ASSET9","index":"0.000006542247148589"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001620184629837"},{"denom":"ASSET1","index":"0.000013508113244239"},{"denom":"ASSET10","index":"0.000009411159415052"},{"denom":"ASSET11","index":"0.000013068550109883"},{"denom":"ASSET12","index":"0.000011766766981214"},{"denom":"ASSET13","index":"0.000004049052718392"},{"denom":"ASSET14","index":"0.000012206330115570"},{"denom":"ASSET15","index":"0.000008726455301921"},{"denom":"ASSET16","index":"0.000006083441070987"},{"denom":"ASSET17","index":"0.000004319553108765"},{"denom":"ASSET18","index":"0.000002056930051793"},{"denom":"ASSET2","index":"0.000003987063045598"},{"denom":"ASSET3","index":"0.000001166532933482"},{"denom":"ASSET4","index":"0.000010977807509294"},{"denom":"ASSET5","index":"0.000000904485680309"},{"denom":"ASSET6","index":"0.000003682750106429"},{"denom":"ASSET7","index":"0.000005643877936631"},{"denom":"ASSET8","index":"0.000007362682500458"},{"denom":"ASSET9","index":"0.000003178379586880"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003154859072778"},{"denom":"ASSET1","index":"0.000026759958230198"},{"denom":"ASSET10","index":"0.000021318547828682"},{"denom":"ASSET11","index":"0.000026582778956839"},{"denom":"ASSET12","index":"0.000025324795995745"},{"denom":"ASSET13","index":"0.000008347309163095"},{"denom":"ASSET14","index":"0.000024403216779648"},{"denom":"ASSET15","index":"0.000019208461119321"},{"denom":"ASSET16","index":"0.000011872154646602"},{"denom":"ASSET17","index":"0.000009304429323264"},{"denom":"ASSET18","index":"0.000003853154066825"},{"denom":"ASSET2","index":"0.000008100524497579"},{"denom":"ASSET3","index":"0.000002251942800438"},{"denom":"ASSET4","index":"0.000021695917087147"},{"denom":"ASSET5","index":"0.000001753374642360"},{"denom":"ASSET6","index":"0.000007078305954632"},{"denom":"ASSET7","index":"0.000011118481739065"},{"denom":"ASSET8","index":"0.000015174129529137"},{"denom":"ASSET9","index":"0.000006441283498998"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001565910537906"},{"denom":"ASSET1","index":"0.000013053983025959"},{"denom":"ASSET10","index":"0.000009094819386579"},{"denom":"ASSET11","index":"0.000012628414118813"},{"denom":"ASSET12","index":"0.000011371841840295"},{"denom":"ASSET13","index":"0.000003913403541838"},{"denom":"ASSET14","index":"0.000011796953146466"},{"denom":"ASSET15","index":"0.000008434501179040"},{"denom":"ASSET16","index":"0.000005880630135191"},{"denom":"ASSET17","index":"0.000004176066501732"},{"denom":"ASSET18","index":"0.000001989191440174"},{"denom":"ASSET2","index":"0.000003853457814057"},{"denom":"ASSET3","index":"0.000001127071202473"},{"denom":"ASSET4","index":"0.000010608563413286"},{"denom":"ASSET5","index":"0.000000874933065013"},{"denom":"ASSET6","index":"0.000003561050790760"},{"denom":"ASSET7","index":"0.000005453688425119"},{"denom":"ASSET8","index":"0.000007116152768840"},{"denom":"ASSET9","index":"0.000003073705751932"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003066618221533"},{"denom":"ASSET1","index":"0.000026018563142658"},{"denom":"ASSET10","index":"0.000020743763118655"},{"denom":"ASSET11","index":"0.000025849025514444"},{"denom":"ASSET12","index":"0.000024635604575072"},{"denom":"ASSET13","index":"0.000008118261811936"},{"denom":"ASSET14","index":"0.000023728777879609"},{"denom":"ASSET15","index":"0.000018689177197382"},{"denom":"ASSET16","index":"0.000011544003668418"},{"denom":"ASSET17","index":"0.000009052167825210"},{"denom":"ASSET18","index":"0.000003745930402733"},{"denom":"ASSET2","index":"0.000007877080459743"},{"denom":"ASSET3","index":"0.000002188594145460"},{"denom":"ASSET4","index":"0.000021094338825720"},{"denom":"ASSET5","index":"0.000001705356613908"},{"denom":"ASSET6","index":"0.000006882744986340"},{"denom":"ASSET7","index":"0.000010809249072439"},{"denom":"ASSET8","index":"0.000014757775472241"},{"denom":"ASSET9","index":"0.000006264987011427"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001616793771814"},{"denom":"ASSET1","index":"0.000013481664806896"},{"denom":"ASSET10","index":"0.000009392973001731"},{"denom":"ASSET11","index":"0.000013042136425966"},{"denom":"ASSET12","index":"0.000011745108533466"},{"denom":"ASSET13","index":"0.000004041984429535"},{"denom":"ASSET14","index":"0.000012183439289380"},{"denom":"ASSET15","index":"0.000008710326742521"},{"denom":"ASSET16","index":"0.000006073156456940"},{"denom":"ASSET17","index":"0.000004312647683187"},{"denom":"ASSET18","index":"0.000002053926902712"},{"denom":"ASSET2","index":"0.000003979707928695"},{"denom":"ASSET3","index":"0.000001164091515706"},{"denom":"ASSET4","index":"0.000010955873647818"},{"denom":"ASSET5","index":"0.000000903009262183"},{"denom":"ASSET6","index":"0.000003677906424623"},{"denom":"ASSET7","index":"0.000005632430450993"},{"denom":"ASSET8","index":"0.000007349824724165"},{"denom":"ASSET9","index":"0.000003173706292820"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003010548827117"},{"denom":"ASSET1","index":"0.000025517681435823"},{"denom":"ASSET10","index":"0.000020207909525991"},{"denom":"ASSET11","index":"0.000025316824190850"},{"denom":"ASSET12","index":"0.000024059273468565"},{"denom":"ASSET13","index":"0.000007945703994160"},{"denom":"ASSET14","index":"0.000023261456497592"},{"denom":"ASSET15","index":"0.000018230653165683"},{"denom":"ASSET16","index":"0.000011330852554208"},{"denom":"ASSET17","index":"0.000008840468160143"},{"denom":"ASSET18","index":"0.000003685449036638"},{"denom":"ASSET2","index":"0.000007715875534239"},{"denom":"ASSET3","index":"0.000002150116713749"},{"denom":"ASSET4","index":"0.000020690763011385"},{"denom":"ASSET5","index":"0.000001674170167376"},{"denom":"ASSET6","index":"0.000006761947340508"},{"denom":"ASSET7","index":"0.000010605047135869"},{"denom":"ASSET8","index":"0.000014444866674878"},{"denom":"ASSET9","index":"0.000006137206230949"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001598496813351"},{"denom":"ASSET1","index":"0.000013327209301876"},{"denom":"ASSET10","index":"0.000009285082513510"},{"denom":"ASSET11","index":"0.000012892549064690"},{"denom":"ASSET12","index":"0.000011609910099638"},{"denom":"ASSET13","index":"0.000003995530641827"},{"denom":"ASSET14","index":"0.000012043503249499"},{"denom":"ASSET15","index":"0.000008611039019674"},{"denom":"ASSET16","index":"0.000006003788988106"},{"denom":"ASSET17","index":"0.000004263725256261"},{"denom":"ASSET18","index":"0.000002031022875886"},{"denom":"ASSET2","index":"0.000003933995272733"},{"denom":"ASSET3","index":"0.000001150675832486"},{"denom":"ASSET4","index":"0.000010830580656369"},{"denom":"ASSET5","index":"0.000000893152091305"},{"denom":"ASSET6","index":"0.000003635566517414"},{"denom":"ASSET7","index":"0.000005567705967820"},{"denom":"ASSET8","index":"0.000007265086206652"},{"denom":"ASSET9","index":"0.000003137948128033"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003202417698287"},{"denom":"ASSET1","index":"0.000027176874960756"},{"denom":"ASSET10","index":"0.000021729724210241"},{"denom":"ASSET11","index":"0.000027016578438308"},{"denom":"ASSET12","index":"0.000025779554956391"},{"denom":"ASSET13","index":"0.000008487649506725"},{"denom":"ASSET14","index":"0.000024790682929963"},{"denom":"ASSET15","index":"0.000019565798539307"},{"denom":"ASSET16","index":"0.000012053877846841"},{"denom":"ASSET17","index":"0.000009473617164606"},{"denom":"ASSET18","index":"0.000003908301251667"},{"denom":"ASSET2","index":"0.000008233254558201"},{"denom":"ASSET3","index":"0.000002285025567503"},{"denom":"ASSET4","index":"0.000022032200437673"},{"denom":"ASSET5","index":"0.000001780306156687"},{"denom":"ASSET6","index":"0.000007184182778940"},{"denom":"ASSET7","index":"0.000011289430429576"},{"denom":"ASSET8","index":"0.000015429251463912"},{"denom":"ASSET9","index":"0.000006548040900334"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001349258766758"},{"denom":"ASSET1","index":"0.000011264433664868"},{"denom":"ASSET10","index":"0.000007848225297969"},{"denom":"ASSET11","index":"0.000010895650990484"},{"denom":"ASSET12","index":"0.000009811385762205"},{"denom":"ASSET13","index":"0.000003376459336127"},{"denom":"ASSET14","index":"0.000010177960157102"},{"denom":"ASSET15","index":"0.000007278489190238"},{"denom":"ASSET16","index":"0.000005074626261883"},{"denom":"ASSET17","index":"0.000003603912123322"},{"denom":"ASSET18","index":"0.000001715833161655"},{"denom":"ASSET2","index":"0.000003323460628431"},{"denom":"ASSET3","index":"0.000000971642974425"},{"denom":"ASSET4","index":"0.000009153318474981"},{"denom":"ASSET5","index":"0.000000753023305179"},{"denom":"ASSET6","index":"0.000003071716766875"},{"denom":"ASSET7","index":"0.000004705843587499"},{"denom":"ASSET8","index":"0.000006139016974776"},{"denom":"ASSET9","index":"0.000002652143664283"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002874619638549"},{"denom":"ASSET1","index":"0.000024442633186143"},{"denom":"ASSET10","index":"0.000019689737510784"},{"denom":"ASSET11","index":"0.000024334399718263"},{"denom":"ASSET12","index":"0.000023294058494145"},{"denom":"ASSET13","index":"0.000007650065286478"},{"denom":"ASSET14","index":"0.000022306974942610"},{"denom":"ASSET15","index":"0.000017702453996022"},{"denom":"ASSET16","index":"0.000010830667352685"},{"denom":"ASSET17","index":"0.000008561334956642"},{"denom":"ASSET18","index":"0.000003501743239949"},{"denom":"ASSET2","index":"0.000007413384379561"},{"denom":"ASSET3","index":"0.000002050775894848"},{"denom":"ASSET4","index":"0.000019811877393900"},{"denom":"ASSET5","index":"0.000001596563839644"},{"denom":"ASSET6","index":"0.000006447875450380"},{"denom":"ASSET7","index":"0.000010149425285061"},{"denom":"ASSET8","index":"0.000013906577801610"},{"denom":"ASSET9","index":"0.000005896530335304"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001744355646452"},{"denom":"ASSET1","index":"0.000014544558741461"},{"denom":"ASSET10","index":"0.000010133244841823"},{"denom":"ASSET11","index":"0.000014070651242217"},{"denom":"ASSET12","index":"0.000012670295178174"},{"denom":"ASSET13","index":"0.000004360461787457"},{"denom":"ASSET14","index":"0.000013143775348745"},{"denom":"ASSET15","index":"0.000009397812194213"},{"denom":"ASSET16","index":"0.000006552230555377"},{"denom":"ASSET17","index":"0.000004653181929010"},{"denom":"ASSET18","index":"0.000002216553831001"},{"denom":"ASSET2","index":"0.000004293371185670"},{"denom":"ASSET3","index":"0.000001255918972299"},{"denom":"ASSET4","index":"0.000011819911117312"},{"denom":"ASSET5","index":"0.000000974736704938"},{"denom":"ASSET6","index":"0.000003967319407560"},{"denom":"ASSET7","index":"0.000006076186412764"},{"denom":"ASSET8","index":"0.000007929083542361"},{"denom":"ASSET9","index":"0.000003424611991834"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003377008276018"},{"denom":"ASSET1","index":"0.000028642142456639"},{"denom":"ASSET10","index":"0.000022800592191853"},{"denom":"ASSET11","index":"0.000028447577997463"},{"denom":"ASSET12","index":"0.000027093635853923"},{"denom":"ASSET13","index":"0.000008933092474106"},{"denom":"ASSET14","index":"0.000026119259559896"},{"denom":"ASSET15","index":"0.000020548756595198"},{"denom":"ASSET16","index":"0.000012710670192565"},{"denom":"ASSET17","index":"0.000009956402105067"},{"denom":"ASSET18","index":"0.000004127475104327"},{"denom":"ASSET2","index":"0.000008669602227225"},{"denom":"ASSET3","index":"0.000002410895003349"},{"denom":"ASSET4","index":"0.000023222264254358"},{"denom":"ASSET5","index":"0.000001877874241403"},{"denom":"ASSET6","index":"0.000007579654674160"},{"denom":"ASSET7","index":"0.000011900488798179"},{"denom":"ASSET8","index":"0.000016239324105118"},{"denom":"ASSET9","index":"0.000006895771583569"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001546168277317"},{"denom":"ASSET1","index":"0.000012892123182452"},{"denom":"ASSET10","index":"0.000008982377260299"},{"denom":"ASSET11","index":"0.000012472337191477"},{"denom":"ASSET12","index":"0.000011231230783378"},{"denom":"ASSET13","index":"0.000003864117010091"},{"denom":"ASSET14","index":"0.000011651016774353"},{"denom":"ASSET15","index":"0.000008329231976204"},{"denom":"ASSET16","index":"0.000005807908663952"},{"denom":"ASSET17","index":"0.000004124853650448"},{"denom":"ASSET18","index":"0.000001964650585090"},{"denom":"ASSET2","index":"0.000003805451266010"},{"denom":"ASSET3","index":"0.000001113345454324"},{"denom":"ASSET4","index":"0.000010477701892746"},{"denom":"ASSET5","index":"0.000000863038279582"},{"denom":"ASSET6","index":"0.000003516033595214"},{"denom":"ASSET7","index":"0.000005385515306574"},{"denom":"ASSET8","index":"0.000007028156140823"},{"denom":"ASSET9","index":"0.000003034974493755"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003044385892570"},{"denom":"ASSET1","index":"0.000025830014188245"},{"denom":"ASSET10","index":"0.000020607856539150"},{"denom":"ASSET11","index":"0.000025666657138152"},{"denom":"ASSET12","index":"0.000024468008636658"},{"denom":"ASSET13","index":"0.000008060303383676"},{"denom":"ASSET14","index":"0.000023559408638801"},{"denom":"ASSET15","index":"0.000018562848593971"},{"denom":"ASSET16","index":"0.000011459854746185"},{"denom":"ASSET17","index":"0.000008991538648143"},{"denom":"ASSET18","index":"0.000003718456390600"},{"denom":"ASSET2","index":"0.000007821717005664"},{"denom":"ASSET3","index":"0.000002173111618200"},{"denom":"ASSET4","index":"0.000020942104557307"},{"denom":"ASSET5","index":"0.000001691598021351"},{"denom":"ASSET6","index":"0.000006831113312915"},{"denom":"ASSET7","index":"0.000010730587410374"},{"denom":"ASSET8","index":"0.000014654605067850"},{"denom":"ASSET9","index":"0.000006220578615076"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001387821916020"},{"denom":"ASSET1","index":"0.000011588015182905"},{"denom":"ASSET10","index":"0.000008073788013584"},{"denom":"ASSET11","index":"0.000011209789038410"},{"denom":"ASSET12","index":"0.000010095957715252"},{"denom":"ASSET13","index":"0.000003472532948668"},{"denom":"ASSET14","index":"0.000010471205701129"},{"denom":"ASSET15","index":"0.000007487090765824"},{"denom":"ASSET16","index":"0.000005220712057474"},{"denom":"ASSET17","index":"0.000003707807479495"},{"denom":"ASSET18","index":"0.000001766048060515"},{"denom":"ASSET2","index":"0.000003418926093543"},{"denom":"ASSET3","index":"0.000001000661295671"},{"denom":"ASSET4","index":"0.000009416937550333"},{"denom":"ASSET5","index":"0.000000774321240698"},{"denom":"ASSET6","index":"0.000003159826293771"},{"denom":"ASSET7","index":"0.000004839507754361"},{"denom":"ASSET8","index":"0.000006316674428923"},{"denom":"ASSET9","index":"0.000002727993294151"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002956721491824"},{"denom":"ASSET1","index":"0.000025136116728129"},{"denom":"ASSET10","index":"0.000020247681325291"},{"denom":"ASSET11","index":"0.000025026479369709"},{"denom":"ASSET12","index":"0.000023957412844230"},{"denom":"ASSET13","index":"0.000007866588644670"},{"denom":"ASSET14","index":"0.000022940688787988"},{"denom":"ASSET15","index":"0.000018203641219753"},{"denom":"ASSET16","index":"0.000011138902531601"},{"denom":"ASSET17","index":"0.000008803888891481"},{"denom":"ASSET18","index":"0.000003602115317706"},{"denom":"ASSET2","index":"0.000007623974866010"},{"denom":"ASSET3","index":"0.000002110544057177"},{"denom":"ASSET4","index":"0.000020374365248917"},{"denom":"ASSET5","index":"0.000001641905652861"},{"denom":"ASSET6","index":"0.000006630874494768"},{"denom":"ASSET7","index":"0.000010436528568948"},{"denom":"ASSET8","index":"0.000014302572224422"},{"denom":"ASSET9","index":"0.000006063325997423"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001500850379058"},{"denom":"ASSET1","index":"0.000012511793460183"},{"denom":"ASSET10","index":"0.000008717304800227"},{"denom":"ASSET11","index":"0.000012103632089176"},{"denom":"ASSET12","index":"0.000010899320696303"},{"denom":"ASSET13","index":"0.000003750781099635"},{"denom":"ASSET14","index":"0.000011306809643305"},{"denom":"ASSET15","index":"0.000008083881387560"},{"denom":"ASSET16","index":"0.000005636258009526"},{"denom":"ASSET17","index":"0.000004002940101492"},{"denom":"ASSET18","index":"0.000001906322054045"},{"denom":"ASSET2","index":"0.000003692952635209"},{"denom":"ASSET3","index":"0.000001079912951956"},{"denom":"ASSET4","index":"0.000010167723378913"},{"denom":"ASSET5","index":"0.000000838512734178"},{"denom":"ASSET6","index":"0.000003412551825143"},{"denom":"ASSET7","index":"0.000005226751790509"},{"denom":"ASSET8","index":"0.000006820396682251"},{"denom":"ASSET9","index":"0.000002945889565704"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003004514310835"},{"denom":"ASSET1","index":"0.000025497942224476"},{"denom":"ASSET10","index":"0.000020385999177782"},{"denom":"ASSET11","index":"0.000025346802479017"},{"denom":"ASSET12","index":"0.000024185328023735"},{"denom":"ASSET13","index":"0.000007962788555043"},{"denom":"ASSET14","index":"0.000023259189454501"},{"denom":"ASSET15","index":"0.000018355567065709"},{"denom":"ASSET16","index":"0.000011309092459120"},{"denom":"ASSET17","index":"0.000008887662321727"},{"denom":"ASSET18","index":"0.000003666570499762"},{"denom":"ASSET2","index":"0.000007723995884874"},{"denom":"ASSET3","index":"0.000002143405494402"},{"denom":"ASSET4","index":"0.000020670641097733"},{"denom":"ASSET5","index":"0.000001670336124344"},{"denom":"ASSET6","index":"0.000006739845385808"},{"denom":"ASSET7","index":"0.000010591422556410"},{"denom":"ASSET8","index":"0.000014475095162856"},{"denom":"ASSET9","index":"0.000006143360978771"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001507842106347"},{"denom":"ASSET1","index":"0.000012572313391156"},{"denom":"ASSET10","index":"0.000008759356679472"},{"denom":"ASSET11","index":"0.000012162445176153"},{"denom":"ASSET12","index":"0.000010952151629736"},{"denom":"ASSET13","index":"0.000003769211161813"},{"denom":"ASSET14","index":"0.000011361231636633"},{"denom":"ASSET15","index":"0.000008123272738112"},{"denom":"ASSET16","index":"0.000005663669344042"},{"denom":"ASSET17","index":"0.000004022225963767"},{"denom":"ASSET18","index":"0.000001916133905138"},{"denom":"ASSET2","index":"0.000003711277866039"},{"denom":"ASSET3","index":"0.000001085756665704"},{"denom":"ASSET4","index":"0.000010217147571101"},{"denom":"ASSET5","index":"0.000000842594465073"},{"denom":"ASSET6","index":"0.000003429493468225"},{"denom":"ASSET7","index":"0.000005252224712828"},{"denom":"ASSET8","index":"0.000006853863583762"},{"denom":"ASSET9","index":"0.000002960115541236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003064659144392"},{"denom":"ASSET1","index":"0.000026014545525120"},{"denom":"ASSET10","index":"0.000020837902255895"},{"denom":"ASSET11","index":"0.000025870951889592"},{"denom":"ASSET12","index":"0.000024704995690840"},{"denom":"ASSET13","index":"0.000008129050348807"},{"denom":"ASSET14","index":"0.000023733606076391"},{"denom":"ASSET15","index":"0.000018755969892396"},{"denom":"ASSET16","index":"0.000011535737727926"},{"denom":"ASSET17","index":"0.000009078938038909"},{"denom":"ASSET18","index":"0.000003738223548700"},{"denom":"ASSET2","index":"0.000007883998416280"},{"denom":"ASSET3","index":"0.000002186926046113"},{"denom":"ASSET4","index":"0.000021089316501471"},{"denom":"ASSET5","index":"0.000001703791082418"},{"denom":"ASSET6","index":"0.000006873778950624"},{"denom":"ASSET7","index":"0.000010805665377904"},{"denom":"ASSET8","index":"0.000014777724141198"},{"denom":"ASSET9","index":"0.000006269886019705"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001016570122529"},{"denom":"ASSET1","index":"0.000008477171470527"},{"denom":"ASSET10","index":"0.000005906463519680"},{"denom":"ASSET11","index":"0.000008200989896911"},{"denom":"ASSET12","index":"0.000007384774710599"},{"denom":"ASSET13","index":"0.000002541117067960"},{"denom":"ASSET14","index":"0.000007660956284215"},{"denom":"ASSET15","index":"0.000005477395717812"},{"denom":"ASSET16","index":"0.000003819073322661"},{"denom":"ASSET17","index":"0.000002711881121289"},{"denom":"ASSET18","index":"0.000001291518742692"},{"denom":"ASSET2","index":"0.000002502279034170"},{"denom":"ASSET3","index":"0.000000731757874738"},{"denom":"ASSET4","index":"0.000006889127422234"},{"denom":"ASSET5","index":"0.000000567775065403"},{"denom":"ASSET6","index":"0.000002312404202309"},{"denom":"ASSET7","index":"0.000003541658795591"},{"denom":"ASSET8","index":"0.000004621109544256"},{"denom":"ASSET9","index":"0.000001996151641449"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002499545170163"},{"denom":"ASSET1","index":"0.000021282413071401"},{"denom":"ASSET10","index":"0.000017412808765385"},{"denom":"ASSET11","index":"0.000021259874812403"},{"denom":"ASSET12","index":"0.000020486111882687"},{"denom":"ASSET13","index":"0.000006694303381301"},{"denom":"ASSET14","index":"0.000019446986985139"},{"denom":"ASSET15","index":"0.000015606004703242"},{"denom":"ASSET16","index":"0.000009412782427040"},{"denom":"ASSET17","index":"0.000007528963649123"},{"denom":"ASSET18","index":"0.000003027066879988"},{"denom":"ASSET2","index":"0.000006477094521478"},{"denom":"ASSET3","index":"0.000001780578331809"},{"denom":"ASSET4","index":"0.000017246051064985"},{"denom":"ASSET5","index":"0.000001387924123500"},{"denom":"ASSET6","index":"0.000005593713918003"},{"denom":"ASSET7","index":"0.000008831780754063"},{"denom":"ASSET8","index":"0.000012169406160300"},{"denom":"ASSET9","index":"0.000005149034362400"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001552339226368"},{"denom":"ASSET1","index":"0.000012948480372324"},{"denom":"ASSET10","index":"0.000009021431734191"},{"denom":"ASSET11","index":"0.000012526515146109"},{"denom":"ASSET12","index":"0.000011279099696349"},{"denom":"ASSET13","index":"0.000003880848065920"},{"denom":"ASSET14","index":"0.000011701064922564"},{"denom":"ASSET15","index":"0.000008365383608761"},{"denom":"ASSET16","index":"0.000005830512213323"},{"denom":"ASSET17","index":"0.000004142651308462"},{"denom":"ASSET18","index":"0.000001971224414436"},{"denom":"ASSET2","index":"0.000003822327341117"},{"denom":"ASSET3","index":"0.000001118053847563"},{"denom":"ASSET4","index":"0.000010521410312050"},{"denom":"ASSET5","index":"0.000000865490719463"},{"denom":"ASSET6","index":"0.000003529723717099"},{"denom":"ASSET7","index":"0.000005408546987108"},{"denom":"ASSET8","index":"0.000007056367396050"},{"denom":"ASSET9","index":"0.000003046157727933"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003043964098015"},{"denom":"ASSET1","index":"0.000025828331615061"},{"denom":"ASSET10","index":"0.000020594675215425"},{"denom":"ASSET11","index":"0.000025661520704142"},{"denom":"ASSET12","index":"0.000024456429429906"},{"denom":"ASSET13","index":"0.000008058244190043"},{"denom":"ASSET14","index":"0.000023555461855486"},{"denom":"ASSET15","index":"0.000018552812657155"},{"denom":"ASSET16","index":"0.000011456604402492"},{"denom":"ASSET17","index":"0.000008987560143691"},{"denom":"ASSET18","index":"0.000003716794339222"},{"denom":"ASSET2","index":"0.000007820148034807"},{"denom":"ASSET3","index":"0.000002173135080244"},{"denom":"ASSET4","index":"0.000020938599170426"},{"denom":"ASSET5","index":"0.000001690207511083"},{"denom":"ASSET6","index":"0.000006829800145738"},{"denom":"ASSET7","index":"0.000010729300481432"},{"denom":"ASSET8","index":"0.000014648719853803"},{"denom":"ASSET9","index":"0.000006217447736766"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000000977108719668"},{"denom":"ASSET1","index":"0.000008146517162771"},{"denom":"ASSET10","index":"0.000005675852121603"},{"denom":"ASSET11","index":"0.000007881108738917"},{"denom":"ASSET12","index":"0.000007096716963958"},{"denom":"ASSET13","index":"0.000002441926549413"},{"denom":"ASSET14","index":"0.000007362125387813"},{"denom":"ASSET15","index":"0.000005263370239944"},{"denom":"ASSET16","index":"0.000003670074447059"},{"denom":"ASSET17","index":"0.000002605905002368"},{"denom":"ASSET18","index":"0.000001241671893765"},{"denom":"ASSET2","index":"0.000002404735560083"},{"denom":"ASSET3","index":"0.000000703247798239"},{"denom":"ASSET4","index":"0.000006620841350486"},{"denom":"ASSET5","index":"0.000000546031343344"},{"denom":"ASSET6","index":"0.000002222161612464"},{"denom":"ASSET7","index":"0.000003402975523689"},{"denom":"ASSET8","index":"0.000004440942225898"},{"denom":"ASSET9","index":"0.000001917871699764"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002320380931676"},{"denom":"ASSET1","index":"0.000019748951316256"},{"denom":"ASSET10","index":"0.000016101172379351"},{"denom":"ASSET11","index":"0.000019714000020718"},{"denom":"ASSET12","index":"0.000018967805559844"},{"denom":"ASSET13","index":"0.000006204998608741"},{"denom":"ASSET14","index":"0.000018041457784230"},{"denom":"ASSET15","index":"0.000014440911570898"},{"denom":"ASSET16","index":"0.000008738221404310"},{"denom":"ASSET17","index":"0.000006970584758543"},{"denom":"ASSET18","index":"0.000002814127990287"},{"denom":"ASSET2","index":"0.000006006105656449"},{"denom":"ASSET3","index":"0.000001653724297068"},{"denom":"ASSET4","index":"0.000016005284799403"},{"denom":"ASSET5","index":"0.000001288969102308"},{"denom":"ASSET6","index":"0.000005195185892122"},{"denom":"ASSET7","index":"0.000008196101819524"},{"denom":"ASSET8","index":"0.000011280171312915"},{"denom":"ASSET9","index":"0.000004774394171461"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001745798220012"},{"denom":"ASSET1","index":"0.000014553743296829"},{"denom":"ASSET10","index":"0.000010139438249561"},{"denom":"ASSET11","index":"0.000014079320164724"},{"denom":"ASSET12","index":"0.000012678243118663"},{"denom":"ASSET13","index":"0.000004363016060013"},{"denom":"ASSET14","index":"0.000013152173087429"},{"denom":"ASSET15","index":"0.000009403145384454"},{"denom":"ASSET16","index":"0.000006556113428486"},{"denom":"ASSET17","index":"0.000004655955083371"},{"denom":"ASSET18","index":"0.000002217755535422"},{"denom":"ASSET2","index":"0.000004295945845911"},{"denom":"ASSET3","index":"0.000001256580187737"},{"denom":"ASSET4","index":"0.000011827536358912"},{"denom":"ASSET5","index":"0.000000975477084515"},{"denom":"ASSET6","index":"0.000003969964878841"},{"denom":"ASSET7","index":"0.000006080210806364"},{"denom":"ASSET8","index":"0.000007934011797614"},{"denom":"ASSET9","index":"0.000003426498879278"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003342998947188"},{"denom":"ASSET1","index":"0.000028345782457833"},{"denom":"ASSET10","index":"0.000022532322238539"},{"denom":"ASSET11","index":"0.000028144588841629"},{"denom":"ASSET12","index":"0.000026788988923046"},{"denom":"ASSET13","index":"0.000008836278349189"},{"denom":"ASSET14","index":"0.000025846526421467"},{"denom":"ASSET15","index":"0.000020312521464953"},{"denom":"ASSET16","index":"0.000012581099317360"},{"denom":"ASSET17","index":"0.000009844015126225"},{"denom":"ASSET18","index":"0.000004087085525414"},{"denom":"ASSET2","index":"0.000008577030596387"},{"denom":"ASSET3","index":"0.000002386540105172"},{"denom":"ASSET4","index":"0.000022982635628207"},{"denom":"ASSET5","index":"0.000001858980311097"},{"denom":"ASSET6","index":"0.000007503977785171"},{"denom":"ASSET7","index":"0.000011778054778213"},{"denom":"ASSET8","index":"0.000016064148587518"},{"denom":"ASSET9","index":"0.000006822246648031"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001535240763659"},{"denom":"ASSET1","index":"0.000012802535686671"},{"denom":"ASSET10","index":"0.000008918976928097"},{"denom":"ASSET11","index":"0.000012384847277788"},{"denom":"ASSET12","index":"0.000011152366284839"},{"denom":"ASSET13","index":"0.000003838101909148"},{"denom":"ASSET14","index":"0.000011569197017318"},{"denom":"ASSET15","index":"0.000008271431242866"},{"denom":"ASSET16","index":"0.000005767016142371"},{"denom":"ASSET17","index":"0.000004095404830432"},{"denom":"ASSET18","index":"0.000001951213819735"},{"denom":"ASSET2","index":"0.000003778922237253"},{"denom":"ASSET3","index":"0.000001105544885116"},{"denom":"ASSET4","index":"0.000010403614783903"},{"denom":"ASSET5","index":"0.000000857676404279"},{"denom":"ASSET6","index":"0.000003491600641819"},{"denom":"ASSET7","index":"0.000005348470057083"},{"denom":"ASSET8","index":"0.000006978912901618"},{"denom":"ASSET9","index":"0.000003013874884636"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003086246918243"},{"denom":"ASSET1","index":"0.000026194228204796"},{"denom":"ASSET10","index":"0.000020951998769875"},{"denom":"ASSET11","index":"0.000026042273492864"},{"denom":"ASSET12","index":"0.000024853724280460"},{"denom":"ASSET13","index":"0.000008181454895403"},{"denom":"ASSET14","index":"0.000023895275980533"},{"denom":"ASSET15","index":"0.000018864347888264"},{"denom":"ASSET16","index":"0.000011616907749245"},{"denom":"ASSET17","index":"0.000009133094250657"},{"denom":"ASSET18","index":"0.000003766346411006"},{"denom":"ASSET2","index":"0.000007935833032906"},{"denom":"ASSET3","index":"0.000002202232138461"},{"denom":"ASSET4","index":"0.000021234941701767"},{"denom":"ASSET5","index":"0.000001715417631736"},{"denom":"ASSET6","index":"0.000006923101305069"},{"denom":"ASSET7","index":"0.000010881195638563"},{"denom":"ASSET8","index":"0.000014873239564067"},{"denom":"ASSET9","index":"0.000006310901439146"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001694764141112"},{"denom":"ASSET1","index":"0.000014130580032100"},{"denom":"ASSET10","index":"0.000009844524497723"},{"denom":"ASSET11","index":"0.000013669508873851"},{"denom":"ASSET12","index":"0.000012309527666765"},{"denom":"ASSET13","index":"0.000004236016804025"},{"denom":"ASSET14","index":"0.000012769407426673"},{"denom":"ASSET15","index":"0.000009129685492685"},{"denom":"ASSET16","index":"0.000006365641339869"},{"denom":"ASSET17","index":"0.000004520761007698"},{"denom":"ASSET18","index":"0.000002153452502679"},{"denom":"ASSET2","index":"0.000004171085594400"},{"denom":"ASSET3","index":"0.000001219991901933"},{"denom":"ASSET4","index":"0.000011483292916774"},{"denom":"ASSET5","index":"0.000000947161681676"},{"denom":"ASSET6","index":"0.000003854173635500"},{"denom":"ASSET7","index":"0.000005903378783277"},{"denom":"ASSET8","index":"0.000007702985978462"},{"denom":"ASSET9","index":"0.000003326979869284"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003333609736915"},{"denom":"ASSET1","index":"0.000028281729059652"},{"denom":"ASSET10","index":"0.000022560289398652"},{"denom":"ASSET11","index":"0.000028101042421314"},{"denom":"ASSET12","index":"0.000026787599659919"},{"denom":"ASSET13","index":"0.000008826015241086"},{"denom":"ASSET14","index":"0.000025794402991537"},{"denom":"ASSET15","index":"0.000020323143219667"},{"denom":"ASSET16","index":"0.000012547562311789"},{"denom":"ASSET17","index":"0.000009844220733470"},{"denom":"ASSET18","index":"0.000004071528772633"},{"denom":"ASSET2","index":"0.000008563776406339"},{"denom":"ASSET3","index":"0.000002379222276435"},{"denom":"ASSET4","index":"0.000022929058250150"},{"denom":"ASSET5","index":"0.000001853699834530"},{"denom":"ASSET6","index":"0.000007480326246914"},{"denom":"ASSET7","index":"0.000011749530638760"},{"denom":"ASSET8","index":"0.000016044906214881"},{"denom":"ASSET9","index":"0.000006811209452101"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001763265776240"},{"denom":"ASSET1","index":"0.000014701143889842"},{"denom":"ASSET10","index":"0.000010242267715158"},{"denom":"ASSET11","index":"0.000014221824092125"},{"denom":"ASSET12","index":"0.000012807154532407"},{"denom":"ASSET13","index":"0.000004407037513175"},{"denom":"ASSET14","index":"0.000013285723045174"},{"denom":"ASSET15","index":"0.000009498495615253"},{"denom":"ASSET16","index":"0.000006622576828953"},{"denom":"ASSET17","index":"0.000004703043783239"},{"denom":"ASSET18","index":"0.000002240331719108"},{"denom":"ASSET2","index":"0.000004339421867729"},{"denom":"ASSET3","index":"0.000001269671564485"},{"denom":"ASSET4","index":"0.000011947684550294"},{"denom":"ASSET5","index":"0.000000984934568662"},{"denom":"ASSET6","index":"0.000004010359059893"},{"denom":"ASSET7","index":"0.000006141754461338"},{"denom":"ASSET8","index":"0.000008013956555240"},{"denom":"ASSET9","index":"0.000003461169761882"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003372790294110"},{"denom":"ASSET1","index":"0.000028600279733511"},{"denom":"ASSET10","index":"0.000022731421090197"},{"denom":"ASSET11","index":"0.000028396190348540"},{"denom":"ASSET12","index":"0.000027027392524280"},{"denom":"ASSET13","index":"0.000008915082315276"},{"denom":"ASSET14","index":"0.000026078776667620"},{"denom":"ASSET15","index":"0.000020492230414373"},{"denom":"ASSET16","index":"0.000012694274413467"},{"denom":"ASSET17","index":"0.000009931274832025"},{"denom":"ASSET18","index":"0.000004123939856338"},{"denom":"ASSET2","index":"0.000008653658587521"},{"denom":"ASSET3","index":"0.000002407864000528"},{"denom":"ASSET4","index":"0.000023189126720885"},{"denom":"ASSET5","index":"0.000001875419633234"},{"denom":"ASSET6","index":"0.000007571725921487"},{"denom":"ASSET7","index":"0.000011883748947250"},{"denom":"ASSET8","index":"0.000016207221904670"},{"denom":"ASSET9","index":"0.000006883201227023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001453309126336"},{"denom":"ASSET1","index":"0.000012116886392617"},{"denom":"ASSET10","index":"0.000008441923956558"},{"denom":"ASSET11","index":"0.000011721955689254"},{"denom":"ASSET12","index":"0.000010555542874101"},{"denom":"ASSET13","index":"0.000003632376264868"},{"denom":"ASSET14","index":"0.000010950025301978"},{"denom":"ASSET15","index":"0.000007829131366891"},{"denom":"ASSET16","index":"0.000005458650595742"},{"denom":"ASSET17","index":"0.000003876686404859"},{"denom":"ASSET18","index":"0.000001846446727754"},{"denom":"ASSET2","index":"0.000003576790104576"},{"denom":"ASSET3","index":"0.000001046274984845"},{"denom":"ASSET4","index":"0.000009847267605868"},{"denom":"ASSET5","index":"0.000000812275181037"},{"denom":"ASSET6","index":"0.000003305135159925"},{"denom":"ASSET7","index":"0.000005061926790434"},{"denom":"ASSET8","index":"0.000006605339289501"},{"denom":"ASSET9","index":"0.000002852825194325"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002846126280344"},{"denom":"ASSET1","index":"0.000024142729904188"},{"denom":"ASSET10","index":"0.000019247649074564"},{"denom":"ASSET11","index":"0.000023985879136349"},{"denom":"ASSET12","index":"0.000022859091275790"},{"denom":"ASSET13","index":"0.000007532792628817"},{"denom":"ASSET14","index":"0.000022018595952129"},{"denom":"ASSET15","index":"0.000017341431925331"},{"denom":"ASSET16","index":"0.000010711928951149"},{"denom":"ASSET17","index":"0.000008400535387767"},{"denom":"ASSET18","index":"0.000003476353193421"},{"denom":"ASSET2","index":"0.000007309791035362"},{"denom":"ASSET3","index":"0.000002031285314481"},{"denom":"ASSET4","index":"0.000019573873127075"},{"denom":"ASSET5","index":"0.000001582650339951"},{"denom":"ASSET6","index":"0.000006386635795582"},{"denom":"ASSET7","index":"0.000010030235680714"},{"denom":"ASSET8","index":"0.000013694243666513"},{"denom":"ASSET9","index":"0.000005813799926422"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001542334439671"},{"denom":"ASSET1","index":"0.000012860022908304"},{"denom":"ASSET10","index":"0.000008959505058412"},{"denom":"ASSET11","index":"0.000012440701863130"},{"denom":"ASSET12","index":"0.000011202637482986"},{"denom":"ASSET13","index":"0.000003855293405849"},{"denom":"ASSET14","index":"0.000011621234937056"},{"denom":"ASSET15","index":"0.000008308996655285"},{"denom":"ASSET16","index":"0.000005793070384239"},{"denom":"ASSET17","index":"0.000004114339021332"},{"denom":"ASSET18","index":"0.000001959846507084"},{"denom":"ASSET2","index":"0.000003796320730815"},{"denom":"ASSET3","index":"0.000001110350550164"},{"denom":"ASSET4","index":"0.000010450826325201"},{"denom":"ASSET5","index":"0.000000861797005699"},{"denom":"ASSET6","index":"0.000003507969675592"},{"denom":"ASSET7","index":"0.000005372663952407"},{"denom":"ASSET8","index":"0.000007010512417899"},{"denom":"ASSET9","index":"0.000003027866977623"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003036454064443"},{"denom":"ASSET1","index":"0.000025762443856573"},{"denom":"ASSET10","index":"0.000020552854458451"},{"denom":"ASSET11","index":"0.000025598594042577"},{"denom":"ASSET12","index":"0.000024403233064712"},{"denom":"ASSET13","index":"0.000008040226829205"},{"denom":"ASSET14","index":"0.000023496526683137"},{"denom":"ASSET15","index":"0.000018514610345002"},{"denom":"ASSET16","index":"0.000011429420030088"},{"denom":"ASSET17","index":"0.000008967792958730"},{"denom":"ASSET18","index":"0.000003708688180539"},{"denom":"ASSET2","index":"0.000007801450355100"},{"denom":"ASSET3","index":"0.000002167197324698"},{"denom":"ASSET4","index":"0.000020886439041228"},{"denom":"ASSET5","index":"0.000001688395026424"},{"denom":"ASSET6","index":"0.000006814112030993"},{"denom":"ASSET7","index":"0.000010703097412338"},{"denom":"ASSET8","index":"0.000014616213118562"},{"denom":"ASSET9","index":"0.000006204650488693"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001802604811891"},{"denom":"ASSET1","index":"0.000015041134377282"},{"denom":"ASSET10","index":"0.000010478421042795"},{"denom":"ASSET11","index":"0.000014549893343095"},{"denom":"ASSET12","index":"0.000013101148598203"},{"denom":"ASSET13","index":"0.000004508593559534"},{"denom":"ASSET14","index":"0.000013592389632390"},{"denom":"ASSET15","index":"0.000009716581133843"},{"denom":"ASSET16","index":"0.000006773297988330"},{"denom":"ASSET17","index":"0.000004812496911192"},{"denom":"ASSET18","index":"0.000002289682786467"},{"denom":"ASSET2","index":"0.000004437821546134"},{"denom":"ASSET3","index":"0.000001298874598869"},{"denom":"ASSET4","index":"0.000012222743020122"},{"denom":"ASSET5","index":"0.000001007460426045"},{"denom":"ASSET6","index":"0.000004100613717582"},{"denom":"ASSET7","index":"0.000006282056954143"},{"denom":"ASSET8","index":"0.000008197064375552"},{"denom":"ASSET9","index":"0.000003538600669994"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003500919125422"},{"denom":"ASSET1","index":"0.000029708744113596"},{"denom":"ASSET10","index":"0.000023658219501850"},{"denom":"ASSET11","index":"0.000029508250092955"},{"denom":"ASSET12","index":"0.000028107871580940"},{"denom":"ASSET13","index":"0.000009266072102552"},{"denom":"ASSET14","index":"0.000027092614384257"},{"denom":"ASSET15","index":"0.000021318431245277"},{"denom":"ASSET16","index":"0.000013180724612002"},{"denom":"ASSET17","index":"0.000010330094773179"},{"denom":"ASSET18","index":"0.000004277644880979"},{"denom":"ASSET2","index":"0.000008990842831989"},{"denom":"ASSET3","index":"0.000002500335792843"},{"denom":"ASSET4","index":"0.000024086210482120"},{"denom":"ASSET5","index":"0.000001946754653173"},{"denom":"ASSET6","index":"0.000007858889858659"},{"denom":"ASSET7","index":"0.000012341576470869"},{"denom":"ASSET8","index":"0.000016843078118646"},{"denom":"ASSET9","index":"0.000007150129263591"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001563811170888"},{"denom":"ASSET1","index":"0.000013038374863878"},{"denom":"ASSET10","index":"0.000009083864212622"},{"denom":"ASSET11","index":"0.000012612362006834"},{"denom":"ASSET12","index":"0.000011358137819015"},{"denom":"ASSET13","index":"0.000003908204905926"},{"denom":"ASSET14","index":"0.000011781504633469"},{"denom":"ASSET15","index":"0.000008423676586333"},{"denom":"ASSET16","index":"0.000005872891529250"},{"denom":"ASSET17","index":"0.000004170163122369"},{"denom":"ASSET18","index":"0.000001987177985342"},{"denom":"ASSET2","index":"0.000003848668947643"},{"denom":"ASSET3","index":"0.000001125891122188"},{"denom":"ASSET4","index":"0.000010596077552999"},{"denom":"ASSET5","index":"0.000000873194054811"},{"denom":"ASSET6","index":"0.000003556281241411"},{"denom":"ASSET7","index":"0.000005446878672206"},{"denom":"ASSET8","index":"0.000007107270397641"},{"denom":"ASSET9","index":"0.000003069409404789"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003311345528520"},{"denom":"ASSET1","index":"0.000028134750769747"},{"denom":"ASSET10","index":"0.000022648872120201"},{"denom":"ASSET11","index":"0.000028007957662740"},{"denom":"ASSET12","index":"0.000026803793052874"},{"denom":"ASSET13","index":"0.000008804941803873"},{"denom":"ASSET14","index":"0.000025676450668466"},{"denom":"ASSET15","index":"0.000020365161363483"},{"denom":"ASSET16","index":"0.000012467103206876"},{"denom":"ASSET17","index":"0.000009848512066991"},{"denom":"ASSET18","index":"0.000004032794375330"},{"denom":"ASSET2","index":"0.000008534928074651"},{"denom":"ASSET3","index":"0.000002362590241163"},{"denom":"ASSET4","index":"0.000022806063702805"},{"denom":"ASSET5","index":"0.000001840254083448"},{"denom":"ASSET6","index":"0.000007424521355960"},{"denom":"ASSET7","index":"0.000011683846998076"},{"denom":"ASSET8","index":"0.000016006498096466"},{"denom":"ASSET9","index":"0.000006786333067798"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001600184479142"},{"denom":"ASSET1","index":"0.000013342157474081"},{"denom":"ASSET10","index":"0.000009295060662992"},{"denom":"ASSET11","index":"0.000012907134644369"},{"denom":"ASSET12","index":"0.000011622469236023"},{"denom":"ASSET13","index":"0.000003999732516397"},{"denom":"ASSET14","index":"0.000012056763384279"},{"denom":"ASSET15","index":"0.000008620301633991"},{"denom":"ASSET16","index":"0.000006010164655719"},{"denom":"ASSET17","index":"0.000004268615973958"},{"denom":"ASSET18","index":"0.000002033021264483"},{"denom":"ASSET2","index":"0.000003938523274026"},{"denom":"ASSET3","index":"0.000001152045383207"},{"denom":"ASSET4","index":"0.000010842780077243"},{"denom":"ASSET5","index":"0.000000894092147498"},{"denom":"ASSET6","index":"0.000003639035195279"},{"denom":"ASSET7","index":"0.000005573684463094"},{"denom":"ASSET8","index":"0.000007272969620361"},{"denom":"ASSET9","index":"0.000003141345760282"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003037978324998"},{"denom":"ASSET1","index":"0.000025756345113171"},{"denom":"ASSET10","index":"0.000020449699671521"},{"denom":"ASSET11","index":"0.000025567125107120"},{"denom":"ASSET12","index":"0.000024323299608917"},{"denom":"ASSET13","index":"0.000008026089638757"},{"denom":"ASSET14","index":"0.000023482777870484"},{"denom":"ASSET15","index":"0.000018439819094125"},{"denom":"ASSET16","index":"0.000011433094032389"},{"denom":"ASSET17","index":"0.000008938487942114"},{"denom":"ASSET18","index":"0.000003715472889790"},{"denom":"ASSET2","index":"0.000007791978720736"},{"denom":"ASSET3","index":"0.000002168844641333"},{"denom":"ASSET4","index":"0.000020883291069830"},{"denom":"ASSET5","index":"0.000001689134510364"},{"denom":"ASSET6","index":"0.000006819968009550"},{"denom":"ASSET7","index":"0.000010702337477897"},{"denom":"ASSET8","index":"0.000014590947163921"},{"denom":"ASSET9","index":"0.000006197850437110"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001732863553160"},{"denom":"ASSET1","index":"0.000014476512568697"},{"denom":"ASSET10","index":"0.000010084697727409"},{"denom":"ASSET11","index":"0.000014004946421444"},{"denom":"ASSET12","index":"0.000012607292539223"},{"denom":"ASSET13","index":"0.000004334999642824"},{"denom":"ASSET14","index":"0.000013078858686476"},{"denom":"ASSET15","index":"0.000009351781667220"},{"denom":"ASSET16","index":"0.000006516703263852"},{"denom":"ASSET17","index":"0.000004630438674838"},{"denom":"ASSET18","index":"0.000002204429700414"},{"denom":"ASSET2","index":"0.000004272502924514"},{"denom":"ASSET3","index":"0.000001249934366214"},{"denom":"ASSET4","index":"0.000011760746082105"},{"denom":"ASSET5","index":"0.000000965858373893"},{"denom":"ASSET6","index":"0.000003948656293267"},{"denom":"ASSET7","index":"0.000006045137116599"},{"denom":"ASSET8","index":"0.000007891631066688"},{"denom":"ASSET9","index":"0.000003403230388010"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003203314564743"},{"denom":"ASSET1","index":"0.000027174750089688"},{"denom":"ASSET10","index":"0.000021494761442080"},{"denom":"ASSET11","index":"0.000026954579685264"},{"denom":"ASSET12","index":"0.000025598519259277"},{"denom":"ASSET13","index":"0.000008453363478510"},{"denom":"ASSET14","index":"0.000024766008219885"},{"denom":"ASSET15","index":"0.000019395989679368"},{"denom":"ASSET16","index":"0.000012063312986412"},{"denom":"ASSET17","index":"0.000009406957788586"},{"denom":"ASSET18","index":"0.000003925664786352"},{"denom":"ASSET2","index":"0.000008214094571203"},{"denom":"ASSET3","index":"0.000002289770772075"},{"denom":"ASSET4","index":"0.000022031271429646"},{"denom":"ASSET5","index":"0.000001779377444361"},{"denom":"ASSET6","index":"0.000007202120906665"},{"denom":"ASSET7","index":"0.000011290805949933"},{"denom":"ASSET8","index":"0.000015376618183469"},{"denom":"ASSET9","index":"0.000006529467958809"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001687731873143"},{"denom":"ASSET1","index":"0.000014069560961171"},{"denom":"ASSET10","index":"0.000009802495056563"},{"denom":"ASSET11","index":"0.000013610740912442"},{"denom":"ASSET12","index":"0.000012256373563096"},{"denom":"ASSET13","index":"0.000004217751625940"},{"denom":"ASSET14","index":"0.000012714404583367"},{"denom":"ASSET15","index":"0.000009090791386823"},{"denom":"ASSET16","index":"0.000006338265608675"},{"denom":"ASSET17","index":"0.000004501407356839"},{"denom":"ASSET18","index":"0.000002144184836496"},{"denom":"ASSET2","index":"0.000004153051292327"},{"denom":"ASSET3","index":"0.000001214709312157"},{"denom":"ASSET4","index":"0.000011433811394910"},{"denom":"ASSET5","index":"0.000000942889008137"},{"denom":"ASSET6","index":"0.000003837834423079"},{"denom":"ASSET7","index":"0.000005877867503028"},{"denom":"ASSET8","index":"0.000007669751132718"},{"denom":"ASSET9","index":"0.000003312735983819"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003310751488522"},{"denom":"ASSET1","index":"0.000028084250149300"},{"denom":"ASSET10","index":"0.000022395324527460"},{"denom":"ASSET11","index":"0.000027902986790638"},{"denom":"ASSET12","index":"0.000026594787286768"},{"denom":"ASSET13","index":"0.000008763085936534"},{"denom":"ASSET14","index":"0.000025613920456358"},{"denom":"ASSET15","index":"0.000020176020856033"},{"denom":"ASSET16","index":"0.000012460451689171"},{"denom":"ASSET17","index":"0.000009773335616478"},{"denom":"ASSET18","index":"0.000004043661907525"},{"denom":"ASSET2","index":"0.000008503271494062"},{"denom":"ASSET3","index":"0.000002362859659779"},{"denom":"ASSET4","index":"0.000022769116693783"},{"denom":"ASSET5","index":"0.000001840413908887"},{"denom":"ASSET6","index":"0.000007429033260494"},{"denom":"ASSET7","index":"0.000011667535172652"},{"denom":"ASSET8","index":"0.000015931047386954"},{"denom":"ASSET9","index":"0.000006763232815972"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001411639939639"},{"denom":"ASSET1","index":"0.000011770559134781"},{"denom":"ASSET10","index":"0.000008200405560598"},{"denom":"ASSET11","index":"0.000011386782830640"},{"denom":"ASSET12","index":"0.000010253700018254"},{"denom":"ASSET13","index":"0.000003528795747429"},{"denom":"ASSET14","index":"0.000010636868119061"},{"denom":"ASSET15","index":"0.000007604974496011"},{"denom":"ASSET16","index":"0.000005302316671163"},{"denom":"ASSET17","index":"0.000003765386844594"},{"denom":"ASSET18","index":"0.000001793591633776"},{"denom":"ASSET2","index":"0.000003474665650649"},{"denom":"ASSET3","index":"0.000001016307772140"},{"denom":"ASSET4","index":"0.000009565822046806"},{"denom":"ASSET5","index":"0.000000788839724994"},{"denom":"ASSET6","index":"0.000003210705403426"},{"denom":"ASSET7","index":"0.000004917323960353"},{"denom":"ASSET8","index":"0.000006416545180176"},{"denom":"ASSET9","index":"0.000002771582595835"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002915106026686"},{"denom":"ASSET1","index":"0.000024751938975568"},{"denom":"ASSET10","index":"0.000019864528416862"},{"denom":"ASSET11","index":"0.000024625253839727"},{"denom":"ASSET12","index":"0.000023534700266806"},{"denom":"ASSET13","index":"0.000007739190454504"},{"denom":"ASSET14","index":"0.000022584902384729"},{"denom":"ASSET15","index":"0.000017872912229645"},{"denom":"ASSET16","index":"0.000010972881933217"},{"denom":"ASSET17","index":"0.000008648586457086"},{"denom":"ASSET18","index":"0.000003552999450219"},{"denom":"ASSET2","index":"0.000007504215303421"},{"denom":"ASSET3","index":"0.000002079538758775"},{"denom":"ASSET4","index":"0.000020065180146540"},{"denom":"ASSET5","index":"0.000001620267199228"},{"denom":"ASSET6","index":"0.000006536798446662"},{"denom":"ASSET7","index":"0.000010280222742310"},{"denom":"ASSET8","index":"0.000014068743113537"},{"denom":"ASSET9","index":"0.000005967789042866"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001670929391506"},{"denom":"ASSET1","index":"0.000013946161101263"},{"denom":"ASSET10","index":"0.000009716355120388"},{"denom":"ASSET11","index":"0.000013489421488305"},{"denom":"ASSET12","index":"0.000012147571569489"},{"denom":"ASSET13","index":"0.000004178741924768"},{"denom":"ASSET14","index":"0.000012601474290441"},{"denom":"ASSET15","index":"0.000009009969010905"},{"denom":"ASSET16","index":"0.000006280878901179"},{"denom":"ASSET17","index":"0.000004459594233357"},{"denom":"ASSET18","index":"0.000002124832112458"},{"denom":"ASSET2","index":"0.000004116330300637"},{"denom":"ASSET3","index":"0.000001202842210524"},{"denom":"ASSET4","index":"0.000011333383563781"},{"denom":"ASSET5","index":"0.000000933337469958"},{"denom":"ASSET6","index":"0.000003804272179982"},{"denom":"ASSET7","index":"0.000005824139288221"},{"denom":"ASSET8","index":"0.000007600033683947"},{"denom":"ASSET9","index":"0.000003282284050887"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003306866574231"},{"denom":"ASSET1","index":"0.000028073670524533"},{"denom":"ASSET10","index":"0.000022410378668975"},{"denom":"ASSET11","index":"0.000027896117796052"},{"denom":"ASSET12","index":"0.000026601615360568"},{"denom":"ASSET13","index":"0.000008760019105133"},{"denom":"ASSET14","index":"0.000025604072816608"},{"denom":"ASSET15","index":"0.000020183975077340"},{"denom":"ASSET16","index":"0.000012452378452775"},{"denom":"ASSET17","index":"0.000009773941069454"},{"denom":"ASSET18","index":"0.000004038323507821"},{"denom":"ASSET2","index":"0.000008501686860316"},{"denom":"ASSET3","index":"0.000002358773872569"},{"denom":"ASSET4","index":"0.000022758821093429"},{"denom":"ASSET5","index":"0.000001837837668790"},{"denom":"ASSET6","index":"0.000007423905647148"},{"denom":"ASSET7","index":"0.000011659308440973"},{"denom":"ASSET8","index":"0.000015926660063085"},{"denom":"ASSET9","index":"0.000006759875068056"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001598361255475"},{"denom":"ASSET1","index":"0.000013324868720531"},{"denom":"ASSET10","index":"0.000009283863630055"},{"denom":"ASSET11","index":"0.000012890721875256"},{"denom":"ASSET12","index":"0.000011607749807828"},{"denom":"ASSET13","index":"0.000003994929715268"},{"denom":"ASSET14","index":"0.000012041896653103"},{"denom":"ASSET15","index":"0.000008609605674538"},{"denom":"ASSET16","index":"0.000006002777756047"},{"denom":"ASSET17","index":"0.000004262945630213"},{"denom":"ASSET18","index":"0.000002030561253910"},{"denom":"ASSET2","index":"0.000003933279565341"},{"denom":"ASSET3","index":"0.000001150586482321"},{"denom":"ASSET4","index":"0.000010829011071909"},{"denom":"ASSET5","index":"0.000000892953750521"},{"denom":"ASSET6","index":"0.000003634763049905"},{"denom":"ASSET7","index":"0.000005566684063932"},{"denom":"ASSET8","index":"0.000007263685559290"},{"denom":"ASSET9","index":"0.000003137668156809"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003119961272076"},{"denom":"ASSET1","index":"0.000026462428012801"},{"denom":"ASSET10","index":"0.000021088828135750"},{"denom":"ASSET11","index":"0.000026288818556387"},{"denom":"ASSET12","index":"0.000025049012446876"},{"denom":"ASSET13","index":"0.000008256026418292"},{"denom":"ASSET14","index":"0.000024133914778951"},{"denom":"ASSET15","index":"0.000019001193386697"},{"denom":"ASSET16","index":"0.000011741691861213"},{"denom":"ASSET17","index":"0.000009205139483526"},{"denom":"ASSET18","index":"0.000003811157018018"},{"denom":"ASSET2","index":"0.000008011229275486"},{"denom":"ASSET3","index":"0.000002226652147557"},{"denom":"ASSET4","index":"0.000021454928269907"},{"denom":"ASSET5","index":"0.000001734689929917"},{"denom":"ASSET6","index":"0.000007001091110949"},{"denom":"ASSET7","index":"0.000010994186615549"},{"denom":"ASSET8","index":"0.000015007966738007"},{"denom":"ASSET9","index":"0.000006372340046203"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001543375593884"},{"denom":"ASSET1","index":"0.000012871309378663"},{"denom":"ASSET10","index":"0.000008967332198598"},{"denom":"ASSET11","index":"0.000012451619524186"},{"denom":"ASSET12","index":"0.000011213472915376"},{"denom":"ASSET13","index":"0.000003858438984711"},{"denom":"ASSET14","index":"0.000011631932007817"},{"denom":"ASSET15","index":"0.000008316259081242"},{"denom":"ASSET16","index":"0.000005798119954378"},{"denom":"ASSET17","index":"0.000004118129774432"},{"denom":"ASSET18","index":"0.000001961834686325"},{"denom":"ASSET2","index":"0.000003799362406955"},{"denom":"ASSET3","index":"0.000001111378119041"},{"denom":"ASSET4","index":"0.000010460246548983"},{"denom":"ASSET5","index":"0.000000862764187650"},{"denom":"ASSET6","index":"0.000003511364090393"},{"denom":"ASSET7","index":"0.000005377199337864"},{"denom":"ASSET8","index":"0.000007016574370602"},{"denom":"ASSET9","index":"0.000003030136134086"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003061984062566"},{"denom":"ASSET1","index":"0.000025984754387841"},{"denom":"ASSET10","index":"0.000020750278468036"},{"denom":"ASSET11","index":"0.000025825260107338"},{"denom":"ASSET12","index":"0.000024630365005548"},{"denom":"ASSET13","index":"0.000008111503841622"},{"denom":"ASSET14","index":"0.000023701848593669"},{"denom":"ASSET15","index":"0.000018689068915475"},{"denom":"ASSET16","index":"0.000011526541772952"},{"denom":"ASSET17","index":"0.000009050861170220"},{"denom":"ASSET18","index":"0.000003739265665267"},{"denom":"ASSET2","index":"0.000007869809789784"},{"denom":"ASSET3","index":"0.000002185113944095"},{"denom":"ASSET4","index":"0.000021066477214749"},{"denom":"ASSET5","index":"0.000001702392649313"},{"denom":"ASSET6","index":"0.000006871251000760"},{"denom":"ASSET7","index":"0.000010794622225013"},{"denom":"ASSET8","index":"0.000014746923085504"},{"denom":"ASSET9","index":"0.000006258895459680"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001745217677213"},{"denom":"ASSET1","index":"0.000014553842410819"},{"denom":"ASSET10","index":"0.000010139729507131"},{"denom":"ASSET11","index":"0.000014078681363843"},{"denom":"ASSET12","index":"0.000012678362515121"},{"denom":"ASSET13","index":"0.000004362304066790"},{"denom":"ASSET14","index":"0.000013152043309614"},{"denom":"ASSET15","index":"0.000009402563770700"},{"denom":"ASSET16","index":"0.000006556038246289"},{"denom":"ASSET17","index":"0.000004655394058383"},{"denom":"ASSET18","index":"0.000002217418219224"},{"denom":"ASSET2","index":"0.000004295692705065"},{"denom":"ASSET3","index":"0.000001256734357891"},{"denom":"ASSET4","index":"0.000011827217337515"},{"denom":"ASSET5","index":"0.000000975486386160"},{"denom":"ASSET6","index":"0.000003970037158850"},{"denom":"ASSET7","index":"0.000006079396946830"},{"denom":"ASSET8","index":"0.000007932673055287"},{"denom":"ASSET9","index":"0.000003426784497665"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003296605577903"},{"denom":"ASSET1","index":"0.000027950980635352"},{"denom":"ASSET10","index":"0.000022177590033485"},{"denom":"ASSET11","index":"0.000027741245317152"},{"denom":"ASSET12","index":"0.000026384837371861"},{"denom":"ASSET13","index":"0.000008707523198290"},{"denom":"ASSET14","index":"0.000025482773879389"},{"denom":"ASSET15","index":"0.000019999205716580"},{"denom":"ASSET16","index":"0.000012408342313410"},{"denom":"ASSET17","index":"0.000009694954350389"},{"denom":"ASSET18","index":"0.000004033447725414"},{"denom":"ASSET2","index":"0.000008454290496983"},{"denom":"ASSET3","index":"0.000002354114882033"},{"denom":"ASSET4","index":"0.000022662624820802"},{"denom":"ASSET5","index":"0.000001833709311257"},{"denom":"ASSET6","index":"0.000007402928859239"},{"denom":"ASSET7","index":"0.000011614131087351"},{"denom":"ASSET8","index":"0.000015829970625061"},{"denom":"ASSET9","index":"0.000006725199056296"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001696105704481"},{"denom":"ASSET1","index":"0.000014140754037071"},{"denom":"ASSET10","index":"0.000009851931515387"},{"denom":"ASSET11","index":"0.000013679695806241"},{"denom":"ASSET12","index":"0.000012318593050331"},{"denom":"ASSET13","index":"0.000004239283286244"},{"denom":"ASSET14","index":"0.000012779160793682"},{"denom":"ASSET15","index":"0.000009136800770120"},{"denom":"ASSET16","index":"0.000006369960897657"},{"denom":"ASSET17","index":"0.000004523766024416"},{"denom":"ASSET18","index":"0.000002155201985393"},{"denom":"ASSET2","index":"0.000004174048451456"},{"denom":"ASSET3","index":"0.000001220823336742"},{"denom":"ASSET4","index":"0.000011492121647193"},{"denom":"ASSET5","index":"0.000000947621810601"},{"denom":"ASSET6","index":"0.000003857193539630"},{"denom":"ASSET7","index":"0.000005907431204387"},{"denom":"ASSET8","index":"0.000007708991716984"},{"denom":"ASSET9","index":"0.000003329429011573"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003278023650839"},{"denom":"ASSET1","index":"0.000027801084973989"},{"denom":"ASSET10","index":"0.000022126343818190"},{"denom":"ASSET11","index":"0.000027610641458424"},{"denom":"ASSET12","index":"0.000026294522151225"},{"denom":"ASSET13","index":"0.000008669795972838"},{"denom":"ASSET14","index":"0.000025352034708572"},{"denom":"ASSET15","index":"0.000019941753748345"},{"denom":"ASSET16","index":"0.000012337408081897"},{"denom":"ASSET17","index":"0.000009662232510971"},{"denom":"ASSET18","index":"0.000004006663612522"},{"denom":"ASSET2","index":"0.000008414274009770"},{"denom":"ASSET3","index":"0.000002339697370568"},{"denom":"ASSET4","index":"0.000022540556466857"},{"denom":"ASSET5","index":"0.000001822656991491"},{"denom":"ASSET6","index":"0.000007357334263189"},{"denom":"ASSET7","index":"0.000011551068960203"},{"denom":"ASSET8","index":"0.000015761386047857"},{"denom":"ASSET9","index":"0.000006692834331509"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001139195115521"},{"denom":"ASSET1","index":"0.000009496890331931"},{"denom":"ASSET10","index":"0.000006616523219856"},{"denom":"ASSET11","index":"0.000009187371854639"},{"denom":"ASSET12","index":"0.000008273091178185"},{"denom":"ASSET13","index":"0.000002846943294505"},{"denom":"ASSET14","index":"0.000008582261490710"},{"denom":"ASSET15","index":"0.000006136055842283"},{"denom":"ASSET16","index":"0.000004278248649000"},{"denom":"ASSET17","index":"0.000003038433916001"},{"denom":"ASSET18","index":"0.000001447320933748"},{"denom":"ASSET2","index":"0.000002803422698710"},{"denom":"ASSET3","index":"0.000000819928024772"},{"denom":"ASSET4","index":"0.000007718116540611"},{"denom":"ASSET5","index":"0.000000636445192901"},{"denom":"ASSET6","index":"0.000002590694026466"},{"denom":"ASSET7","index":"0.000003967685677409"},{"denom":"ASSET8","index":"0.000005177210075735"},{"denom":"ASSET9","index":"0.000002236262294314"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002735257365218"},{"denom":"ASSET1","index":"0.000023278157661741"},{"denom":"ASSET10","index":"0.000018999615823078"},{"denom":"ASSET11","index":"0.000023241706683585"},{"denom":"ASSET12","index":"0.000022372793234045"},{"denom":"ASSET13","index":"0.000007316911351959"},{"denom":"ASSET14","index":"0.000021266506066871"},{"denom":"ASSET15","index":"0.000017036720297506"},{"denom":"ASSET16","index":"0.000010298479660409"},{"denom":"ASSET17","index":"0.000008222611745720"},{"denom":"ASSET18","index":"0.000003315370510511"},{"denom":"ASSET2","index":"0.000007081336162231"},{"denom":"ASSET3","index":"0.000001948923871674"},{"denom":"ASSET4","index":"0.000018864412124408"},{"denom":"ASSET5","index":"0.000001519377842401"},{"denom":"ASSET6","index":"0.000006121992555640"},{"denom":"ASSET7","index":"0.000009661272655042"},{"denom":"ASSET8","index":"0.000013300968175029"},{"denom":"ASSET9","index":"0.000005629514833023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001583959364947"},{"denom":"ASSET1","index":"0.000013443347430705"},{"denom":"ASSET10","index":"0.000009381913161610"},{"denom":"ASSET11","index":"0.000012996589661105"},{"denom":"ASSET12","index":"0.000011696930694994"},{"denom":"ASSET13","index":"0.000004020819926404"},{"denom":"ASSET14","index":"0.000012143688464595"},{"denom":"ASSET15","index":"0.000008691469335864"},{"denom":"ASSET16","index":"0.000006051537060952"},{"denom":"ASSET17","index":"0.000004305120325241"},{"denom":"ASSET18","index":"0.000002030717134548"},{"denom":"ASSET2","index":"0.000003939591241022"},{"denom":"ASSET3","index":"0.000001137201595347"},{"denom":"ASSET4","index":"0.000010925258183866"},{"denom":"ASSET5","index":"0.000000893515539201"},{"denom":"ASSET6","index":"0.000003655290842186"},{"denom":"ASSET7","index":"0.000005604779291351"},{"denom":"ASSET8","index":"0.000007310581684371"},{"denom":"ASSET9","index":"0.000003167918729894"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003310378542013"},{"denom":"ASSET1","index":"0.000028352771206955"},{"denom":"ASSET10","index":"0.000022778987578468"},{"denom":"ASSET11","index":"0.000028201706998458"},{"denom":"ASSET12","index":"0.000026949790221900"},{"denom":"ASSET13","index":"0.000008856641706946"},{"denom":"ASSET14","index":"0.000025865717784540"},{"denom":"ASSET15","index":"0.000020483790155485"},{"denom":"ASSET16","index":"0.000012564495758376"},{"denom":"ASSET17","index":"0.000009912517491786"},{"denom":"ASSET18","index":"0.000004051289802086"},{"denom":"ASSET2","index":"0.000008567503486413"},{"denom":"ASSET3","index":"0.000002358477605528"},{"denom":"ASSET4","index":"0.000022984011222606"},{"denom":"ASSET5","index":"0.000001848359330263"},{"denom":"ASSET6","index":"0.000007474666006436"},{"denom":"ASSET7","index":"0.000011763521743703"},{"denom":"ASSET8","index":"0.000016098224703406"},{"denom":"ASSET9","index":"0.000006837907042961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001549911588522"},{"denom":"ASSET1","index":"0.000012922257740418"},{"denom":"ASSET10","index":"0.000009003081854783"},{"denom":"ASSET11","index":"0.000012500946332712"},{"denom":"ASSET12","index":"0.000011256607989023"},{"denom":"ASSET13","index":"0.000003873860414458"},{"denom":"ASSET14","index":"0.000011677307025497"},{"denom":"ASSET15","index":"0.000008349069378868"},{"denom":"ASSET16","index":"0.000005821200932633"},{"denom":"ASSET17","index":"0.000004134118188113"},{"denom":"ASSET18","index":"0.000001969385882532"},{"denom":"ASSET2","index":"0.000003814460404941"},{"denom":"ASSET3","index":"0.000001115740384942"},{"denom":"ASSET4","index":"0.000010501554259806"},{"denom":"ASSET5","index":"0.000000865892922233"},{"denom":"ASSET6","index":"0.000003524808812143"},{"denom":"ASSET7","index":"0.000005398664782463"},{"denom":"ASSET8","index":"0.000007044106283197"},{"denom":"ASSET9","index":"0.000003042260281224"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003086330633608"},{"denom":"ASSET1","index":"0.000026187842720704"},{"denom":"ASSET10","index":"0.000020922921087024"},{"denom":"ASSET11","index":"0.000026029396638226"},{"denom":"ASSET12","index":"0.000024828709288325"},{"denom":"ASSET13","index":"0.000008176601230700"},{"denom":"ASSET14","index":"0.000023887113573615"},{"denom":"ASSET15","index":"0.000018841856891118"},{"denom":"ASSET16","index":"0.000011616230118922"},{"denom":"ASSET17","index":"0.000009124242236202"},{"denom":"ASSET18","index":"0.000003767471049721"},{"denom":"ASSET2","index":"0.000007932284099147"},{"denom":"ASSET3","index":"0.000002202458257762"},{"denom":"ASSET4","index":"0.000021230824628511"},{"denom":"ASSET5","index":"0.000001715648257347"},{"denom":"ASSET6","index":"0.000006923830152599"},{"denom":"ASSET7","index":"0.000010879262909104"},{"denom":"ASSET8","index":"0.000014863870027497"},{"denom":"ASSET9","index":"0.000006308409915314"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001535524830156"},{"denom":"ASSET1","index":"0.000012804491333161"},{"denom":"ASSET10","index":"0.000008921035499248"},{"denom":"ASSET11","index":"0.000012386713938596"},{"denom":"ASSET12","index":"0.000011154325740380"},{"denom":"ASSET13","index":"0.000003838812075390"},{"denom":"ASSET14","index":"0.000011571000819920"},{"denom":"ASSET15","index":"0.000008272874264409"},{"denom":"ASSET16","index":"0.000005767863369556"},{"denom":"ASSET17","index":"0.000004096202633783"},{"denom":"ASSET18","index":"0.000001951097594671"},{"denom":"ASSET2","index":"0.000003779838221540"},{"denom":"ASSET3","index":"0.000001105621970313"},{"denom":"ASSET4","index":"0.000010405853838244"},{"denom":"ASSET5","index":"0.000000858152247148"},{"denom":"ASSET6","index":"0.000003492685157466"},{"denom":"ASSET7","index":"0.000005348983659966"},{"denom":"ASSET8","index":"0.000006980409897318"},{"denom":"ASSET9","index":"0.000003014831594025"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003051773960929"},{"denom":"ASSET1","index":"0.000025898629359040"},{"denom":"ASSET10","index":"0.000020686863907037"},{"denom":"ASSET11","index":"0.000025740096441319"},{"denom":"ASSET12","index":"0.000024551000542772"},{"denom":"ASSET13","index":"0.000008085532012369"},{"denom":"ASSET14","index":"0.000023622558405526"},{"denom":"ASSET15","index":"0.000018629920308839"},{"denom":"ASSET16","index":"0.000011487540137638"},{"denom":"ASSET17","index":"0.000009021847693812"},{"denom":"ASSET18","index":"0.000003725572559942"},{"denom":"ASSET2","index":"0.000007844221178735"},{"denom":"ASSET3","index":"0.000002178252359768"},{"denom":"ASSET4","index":"0.000020996168979716"},{"denom":"ASSET5","index":"0.000001697004218389"},{"denom":"ASSET6","index":"0.000006847583721256"},{"denom":"ASSET7","index":"0.000010758483833946"},{"denom":"ASSET8","index":"0.000014699172267780"},{"denom":"ASSET9","index":"0.000006238834616461"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001813824295534"},{"denom":"ASSET1","index":"0.000015126179984122"},{"denom":"ASSET10","index":"0.000010538420488017"},{"denom":"ASSET11","index":"0.000014633035948465"},{"denom":"ASSET12","index":"0.000013177247733614"},{"denom":"ASSET13","index":"0.000004534560738834"},{"denom":"ASSET14","index":"0.000013669547344553"},{"denom":"ASSET15","index":"0.000009773371692973"},{"denom":"ASSET16","index":"0.000006813663054312"},{"denom":"ASSET17","index":"0.000004839398062246"},{"denom":"ASSET18","index":"0.000002305279481754"},{"denom":"ASSET2","index":"0.000004465317911910"},{"denom":"ASSET3","index":"0.000001306325039660"},{"denom":"ASSET4","index":"0.000012293135053249"},{"denom":"ASSET5","index":"0.000001013309662309"},{"denom":"ASSET6","index":"0.000004125859175036"},{"denom":"ASSET7","index":"0.000006318830169217"},{"denom":"ASSET8","index":"0.000008245807377042"},{"denom":"ASSET9","index":"0.000003561783463017"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003452880861936"},{"denom":"ASSET1","index":"0.000029278299049117"},{"denom":"ASSET10","index":"0.000023254773922096"},{"denom":"ASSET11","index":"0.000029065569213605"},{"denom":"ASSET12","index":"0.000027656204711461"},{"denom":"ASSET13","index":"0.000009124518140406"},{"denom":"ASSET14","index":"0.000026695142606829"},{"denom":"ASSET15","index":"0.000020967476611979"},{"denom":"ASSET16","index":"0.000012995878924798"},{"denom":"ASSET17","index":"0.000010163149632422"},{"denom":"ASSET18","index":"0.000004223627093961"},{"denom":"ASSET2","index":"0.000008858348919255"},{"denom":"ASSET3","index":"0.000002465420318230"},{"denom":"ASSET4","index":"0.000023739200929128"},{"denom":"ASSET5","index":"0.000001919695214447"},{"denom":"ASSET6","index":"0.000007752150153146"},{"denom":"ASSET7","index":"0.000012165597276913"},{"denom":"ASSET8","index":"0.000016587849042771"},{"denom":"ASSET9","index":"0.000007046182609545"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001444852701297"},{"denom":"ASSET1","index":"0.000012048934466992"},{"denom":"ASSET10","index":"0.000008394653008080"},{"denom":"ASSET11","index":"0.000011656844181701"},{"denom":"ASSET12","index":"0.000010496256937239"},{"denom":"ASSET13","index":"0.000003612131753243"},{"denom":"ASSET14","index":"0.000010888347222530"},{"denom":"ASSET15","index":"0.000007784952614452"},{"denom":"ASSET16","index":"0.000005427509774140"},{"denom":"ASSET17","index":"0.000003854247504410"},{"denom":"ASSET18","index":"0.000001835962760875"},{"denom":"ASSET2","index":"0.000003556258887589"},{"denom":"ASSET3","index":"0.000001040019481734"},{"denom":"ASSET4","index":"0.000009792454875142"},{"denom":"ASSET5","index":"0.000000807705987699"},{"denom":"ASSET6","index":"0.000003286696816452"},{"denom":"ASSET7","index":"0.000005033459037423"},{"denom":"ASSET8","index":"0.000006568492504337"},{"denom":"ASSET9","index":"0.000002836773214080"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002868026198866"},{"denom":"ASSET1","index":"0.000024339331661302"},{"denom":"ASSET10","index":"0.000019438063504597"},{"denom":"ASSET11","index":"0.000024190729344646"},{"denom":"ASSET12","index":"0.000023070632234294"},{"denom":"ASSET13","index":"0.000007598221307181"},{"denom":"ASSET14","index":"0.000022200415230506"},{"denom":"ASSET15","index":"0.000017506414948675"},{"denom":"ASSET16","index":"0.000010796282691537"},{"denom":"ASSET17","index":"0.000008477235924619"},{"denom":"ASSET18","index":"0.000003501529899130"},{"denom":"ASSET2","index":"0.000007371086117521"},{"denom":"ASSET3","index":"0.000002046801194740"},{"denom":"ASSET4","index":"0.000019732782799148"},{"denom":"ASSET5","index":"0.000001595074946946"},{"denom":"ASSET6","index":"0.000006435625489467"},{"denom":"ASSET7","index":"0.000010111140720407"},{"denom":"ASSET8","index":"0.000013813490690156"},{"denom":"ASSET9","index":"0.000005862589992841"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001655416114862"},{"denom":"ASSET1","index":"0.000013800538848519"},{"denom":"ASSET10","index":"0.000009615249134678"},{"denom":"ASSET11","index":"0.000013350879623065"},{"denom":"ASSET12","index":"0.000012022439267096"},{"denom":"ASSET13","index":"0.000004137189147657"},{"denom":"ASSET14","index":"0.000012471558036751"},{"denom":"ASSET15","index":"0.000008916980241305"},{"denom":"ASSET16","index":"0.000006216863065381"},{"denom":"ASSET17","index":"0.000004414983428766"},{"denom":"ASSET18","index":"0.000002102913517117"},{"denom":"ASSET2","index":"0.000004073955819077"},{"denom":"ASSET3","index":"0.000001191705038613"},{"denom":"ASSET4","index":"0.000011215538757958"},{"denom":"ASSET5","index":"0.000000924719873500"},{"denom":"ASSET6","index":"0.000003764274645778"},{"denom":"ASSET7","index":"0.000005765582472528"},{"denom":"ASSET8","index":"0.000007523144733557"},{"denom":"ASSET9","index":"0.000003249220268545"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003262792429801"},{"denom":"ASSET1","index":"0.000027679878715890"},{"denom":"ASSET10","index":"0.000022086570261210"},{"denom":"ASSET11","index":"0.000027505267384149"},{"denom":"ASSET12","index":"0.000026222420015979"},{"denom":"ASSET13","index":"0.000008638975204347"},{"denom":"ASSET14","index":"0.000025246236428505"},{"denom":"ASSET15","index":"0.000019895354512471"},{"denom":"ASSET16","index":"0.000012279836462442"},{"denom":"ASSET17","index":"0.000009636125515167"},{"denom":"ASSET18","index":"0.000003984145752232"},{"denom":"ASSET2","index":"0.000008382344169353"},{"denom":"ASSET3","index":"0.000002328549799735"},{"denom":"ASSET4","index":"0.000022441247538096"},{"denom":"ASSET5","index":"0.000001813932132265"},{"denom":"ASSET6","index":"0.000007320527694069"},{"denom":"ASSET7","index":"0.000011499571173317"},{"denom":"ASSET8","index":"0.000015704553099640"},{"denom":"ASSET9","index":"0.000006666608399750"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001676736923170"},{"denom":"ASSET1","index":"0.000013985463602132"},{"denom":"ASSET10","index":"0.000009743339709608"},{"denom":"ASSET11","index":"0.000013528824721587"},{"denom":"ASSET12","index":"0.000012182509640070"},{"denom":"ASSET13","index":"0.000004192868462713"},{"denom":"ASSET14","index":"0.000012638122365828"},{"denom":"ASSET15","index":"0.000009036319060854"},{"denom":"ASSET16","index":"0.000006299564241947"},{"denom":"ASSET17","index":"0.000004474034874554"},{"denom":"ASSET18","index":"0.000002131323494140"},{"denom":"ASSET2","index":"0.000004128220711085"},{"denom":"ASSET3","index":"0.000001207784185172"},{"denom":"ASSET4","index":"0.000011365690429028"},{"denom":"ASSET5","index":"0.000000936879321208"},{"denom":"ASSET6","index":"0.000003814217346036"},{"denom":"ASSET7","index":"0.000005841899206614"},{"denom":"ASSET8","index":"0.000007623303918134"},{"denom":"ASSET9","index":"0.000003292930713863"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003296156578493"},{"denom":"ASSET1","index":"0.000027968412540894"},{"denom":"ASSET10","index":"0.000022307812536905"},{"denom":"ASSET11","index":"0.000027788867279184"},{"denom":"ASSET12","index":"0.000026488589695468"},{"denom":"ASSET13","index":"0.000008728285856057"},{"denom":"ASSET14","index":"0.000025508064125070"},{"denom":"ASSET15","index":"0.000020096610749334"},{"denom":"ASSET16","index":"0.000012407784704791"},{"denom":"ASSET17","index":"0.000009734180928237"},{"denom":"ASSET18","index":"0.000004026678592252"},{"denom":"ASSET2","index":"0.000008468774984810"},{"denom":"ASSET3","index":"0.000002353220293961"},{"denom":"ASSET4","index":"0.000022675279511256"},{"denom":"ASSET5","index":"0.000001832728492238"},{"denom":"ASSET6","index":"0.000007397034942132"},{"denom":"ASSET7","index":"0.000011618881320506"},{"denom":"ASSET8","index":"0.000015866042832442"},{"denom":"ASSET9","index":"0.000006735898552490"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001687654189845"},{"denom":"ASSET1","index":"0.000014079752531439"},{"denom":"ASSET10","index":"0.000009809029374167"},{"denom":"ASSET11","index":"0.000013620990639222"},{"denom":"ASSET12","index":"0.000012264971552184"},{"denom":"ASSET13","index":"0.000004220977891851"},{"denom":"ASSET14","index":"0.000012723733444402"},{"denom":"ASSET15","index":"0.000009097856320367"},{"denom":"ASSET16","index":"0.000006341600132585"},{"denom":"ASSET17","index":"0.000004504710146476"},{"denom":"ASSET18","index":"0.000002144573664825"},{"denom":"ASSET2","index":"0.000004156493288528"},{"denom":"ASSET3","index":"0.000001215995376963"},{"denom":"ASSET4","index":"0.000011441411046878"},{"denom":"ASSET5","index":"0.000000943317625765"},{"denom":"ASSET6","index":"0.000003839597523622"},{"denom":"ASSET7","index":"0.000005880995823129"},{"denom":"ASSET8","index":"0.000007675510212768"},{"denom":"ASSET9","index":"0.000003314508610843"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003237925740153"},{"denom":"ASSET1","index":"0.000027468087048908"},{"denom":"ASSET10","index":"0.000021838560142362"},{"denom":"ASSET11","index":"0.000027274223261348"},{"denom":"ASSET12","index":"0.000025962125103579"},{"denom":"ASSET13","index":"0.000008562973508850"},{"denom":"ASSET14","index":"0.000025046299162567"},{"denom":"ASSET15","index":"0.000019687604125947"},{"denom":"ASSET16","index":"0.000012189946370622"},{"denom":"ASSET17","index":"0.000009540519193028"},{"denom":"ASSET18","index":"0.000003959057055270"},{"denom":"ASSET2","index":"0.000008312511220651"},{"denom":"ASSET3","index":"0.000002312646079660"},{"denom":"ASSET4","index":"0.000022269978905361"},{"denom":"ASSET5","index":"0.000001800462011039"},{"denom":"ASSET6","index":"0.000007270233858279"},{"denom":"ASSET7","index":"0.000011411601588483"},{"denom":"ASSET8","index":"0.000015567552190875"},{"denom":"ASSET9","index":"0.000006610637099613"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001700269946448"},{"denom":"ASSET1","index":"0.000014175647296985"},{"denom":"ASSET10","index":"0.000009876508679424"},{"denom":"ASSET11","index":"0.000013714231996791"},{"denom":"ASSET12","index":"0.000012349169664489"},{"denom":"ASSET13","index":"0.000004249665204630"},{"denom":"ASSET14","index":"0.000012810584964683"},{"denom":"ASSET15","index":"0.000009159649022667"},{"denom":"ASSET16","index":"0.000006386108914062"},{"denom":"ASSET17","index":"0.000004535399405845"},{"denom":"ASSET18","index":"0.000002160675585153"},{"denom":"ASSET2","index":"0.000004184037207885"},{"denom":"ASSET3","index":"0.000001223709723928"},{"denom":"ASSET4","index":"0.000011520237582522"},{"denom":"ASSET5","index":"0.000000950091460574"},{"denom":"ASSET6","index":"0.000003867003500531"},{"denom":"ASSET7","index":"0.000005922674290891"},{"denom":"ASSET8","index":"0.000007727949032131"},{"denom":"ASSET9","index":"0.000003337940880615"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003224934301433"},{"denom":"ASSET1","index":"0.000027341438894536"},{"denom":"ASSET10","index":"0.000021706571274337"},{"denom":"ASSET11","index":"0.000027141091242061"},{"denom":"ASSET12","index":"0.000025819235056226"},{"denom":"ASSET13","index":"0.000008520116782966"},{"denom":"ASSET14","index":"0.000024928444433519"},{"denom":"ASSET15","index":"0.000019573794936329"},{"denom":"ASSET16","index":"0.000012137286393349"},{"denom":"ASSET17","index":"0.000009487995483061"},{"denom":"ASSET18","index":"0.000003945309126507"},{"denom":"ASSET2","index":"0.000008271045740629"},{"denom":"ASSET3","index":"0.000002302032616683"},{"denom":"ASSET4","index":"0.000022168721917699"},{"denom":"ASSET5","index":"0.000001793343624246"},{"denom":"ASSET6","index":"0.000007240378309003"},{"denom":"ASSET7","index":"0.000011361888746536"},{"denom":"ASSET8","index":"0.000015488944629697"},{"denom":"ASSET9","index":"0.000006579500326985"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001505652349479"},{"denom":"ASSET1","index":"0.000012557843622987"},{"denom":"ASSET10","index":"0.000008748308836028"},{"denom":"ASSET11","index":"0.000012147743761261"},{"denom":"ASSET12","index":"0.000010939413811534"},{"denom":"ASSET13","index":"0.000003764130873697"},{"denom":"ASSET14","index":"0.000011348049030896"},{"denom":"ASSET15","index":"0.000008114118692716"},{"denom":"ASSET16","index":"0.000005656448807088"},{"denom":"ASSET17","index":"0.000004017514002549"},{"denom":"ASSET18","index":"0.000001912822926478"},{"denom":"ASSET2","index":"0.000003707009821528"},{"denom":"ASSET3","index":"0.000001083835348847"},{"denom":"ASSET4","index":"0.000010205627987517"},{"denom":"ASSET5","index":"0.000000840704716538"},{"denom":"ASSET6","index":"0.000003424333845410"},{"denom":"ASSET7","index":"0.000005246348945363"},{"denom":"ASSET8","index":"0.000006845738406093"},{"denom":"ASSET9","index":"0.000002955648289152"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002959758868257"},{"denom":"ASSET1","index":"0.000025116229265451"},{"denom":"ASSET10","index":"0.000020033024535037"},{"denom":"ASSET11","index":"0.000024955202637112"},{"denom":"ASSET12","index":"0.000023787913163340"},{"denom":"ASSET13","index":"0.000007837044315100"},{"denom":"ASSET14","index":"0.000022906603767748"},{"denom":"ASSET15","index":"0.000018047329062837"},{"denom":"ASSET16","index":"0.000011142428291313"},{"denom":"ASSET17","index":"0.000008741414303940"},{"denom":"ASSET18","index":"0.000003614587489816"},{"denom":"ASSET2","index":"0.000007605147442913"},{"denom":"ASSET3","index":"0.000002112677625393"},{"denom":"ASSET4","index":"0.000020363145786569"},{"denom":"ASSET5","index":"0.000001645239564154"},{"denom":"ASSET6","index":"0.000006641765641459"},{"denom":"ASSET7","index":"0.000010434431181702"},{"denom":"ASSET8","index":"0.000014248591155217"},{"denom":"ASSET9","index":"0.000006047835874095"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001815877519749"},{"denom":"ASSET1","index":"0.000015137138459046"},{"denom":"ASSET10","index":"0.000010545739718907"},{"denom":"ASSET11","index":"0.000014644907422941"},{"denom":"ASSET12","index":"0.000013186828093302"},{"denom":"ASSET13","index":"0.000004537625601742"},{"denom":"ASSET14","index":"0.000013679059129408"},{"denom":"ASSET15","index":"0.000009780506595550"},{"denom":"ASSET16","index":"0.000006818847588397"},{"denom":"ASSET17","index":"0.000004841650653454"},{"denom":"ASSET18","index":"0.000002306040358223"},{"denom":"ASSET2","index":"0.000004467306882298"},{"denom":"ASSET3","index":"0.000001307100902598"},{"denom":"ASSET4","index":"0.000012301639507366"},{"denom":"ASSET5","index":"0.000001013416839040"},{"denom":"ASSET6","index":"0.000004128122470864"},{"denom":"ASSET7","index":"0.000006324548354661"},{"denom":"ASSET8","index":"0.000008252108546467"},{"denom":"ASSET9","index":"0.000003563504517685"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003468946703322"},{"denom":"ASSET1","index":"0.000029412495408176"},{"denom":"ASSET10","index":"0.000023372734593498"},{"denom":"ASSET11","index":"0.000029203218600002"},{"denom":"ASSET12","index":"0.000027792166579196"},{"denom":"ASSET13","index":"0.000009167641990636"},{"denom":"ASSET14","index":"0.000026818252104650"},{"denom":"ASSET15","index":"0.000021072198152383"},{"denom":"ASSET16","index":"0.000013054905852031"},{"denom":"ASSET17","index":"0.000010211457984650"},{"denom":"ASSET18","index":"0.000004240878207320"},{"denom":"ASSET2","index":"0.000008898543974195"},{"denom":"ASSET3","index":"0.000002476460623897"},{"denom":"ASSET4","index":"0.000023847831794350"},{"denom":"ASSET5","index":"0.000001927880642719"},{"denom":"ASSET6","index":"0.000007785977685579"},{"denom":"ASSET7","index":"0.000012222326144679"},{"denom":"ASSET8","index":"0.000016667230515151"},{"denom":"ASSET9","index":"0.000007078301868557"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001541968050995"},{"denom":"ASSET1","index":"0.000012857487907975"},{"denom":"ASSET10","index":"0.000008957704485900"},{"denom":"ASSET11","index":"0.000012438763825161"},{"denom":"ASSET12","index":"0.000011200869215257"},{"denom":"ASSET13","index":"0.000003854089325736"},{"denom":"ASSET14","index":"0.000011619593298070"},{"denom":"ASSET15","index":"0.000008307186714386"},{"denom":"ASSET16","index":"0.000005792349812251"},{"denom":"ASSET17","index":"0.000004113299472240"},{"denom":"ASSET18","index":"0.000001959030530305"},{"denom":"ASSET2","index":"0.000003795102401372"},{"denom":"ASSET3","index":"0.000001109951140156"},{"denom":"ASSET4","index":"0.000010448993630046"},{"denom":"ASSET5","index":"0.000000861541416423"},{"denom":"ASSET6","index":"0.000003506814193562"},{"denom":"ASSET7","index":"0.000005371133324183"},{"denom":"ASSET8","index":"0.000007009474378365"},{"denom":"ASSET9","index":"0.000003027441582881"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003053196756625"},{"denom":"ASSET1","index":"0.000025905581999278"},{"denom":"ASSET10","index":"0.000020682143152818"},{"denom":"ASSET11","index":"0.000025745380902198"},{"denom":"ASSET12","index":"0.000024550499550641"},{"denom":"ASSET13","index":"0.000008086239198545"},{"denom":"ASSET14","index":"0.000023629161089906"},{"denom":"ASSET15","index":"0.000018628151539367"},{"denom":"ASSET16","index":"0.000011492271696690"},{"denom":"ASSET17","index":"0.000009021688715966"},{"denom":"ASSET18","index":"0.000003727673632537"},{"denom":"ASSET2","index":"0.000007845443656426"},{"denom":"ASSET3","index":"0.000002178852781858"},{"denom":"ASSET4","index":"0.000021002318737231"},{"denom":"ASSET5","index":"0.000001697417622442"},{"denom":"ASSET6","index":"0.000006850319017638"},{"denom":"ASSET7","index":"0.000010761758840612"},{"denom":"ASSET8","index":"0.000014701087498525"},{"denom":"ASSET9","index":"0.000006240132889304"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001327266579501"},{"denom":"ASSET1","index":"0.000011071143497688"},{"denom":"ASSET10","index":"0.000007713614824674"},{"denom":"ASSET11","index":"0.000010710668391289"},{"denom":"ASSET12","index":"0.000009644435509525"},{"denom":"ASSET13","index":"0.000003318857014090"},{"denom":"ASSET14","index":"0.000010004910615924"},{"denom":"ASSET15","index":"0.000007152875770275"},{"denom":"ASSET16","index":"0.000004987262870528"},{"denom":"ASSET17","index":"0.000003541219052903"},{"denom":"ASSET18","index":"0.000001686360555224"},{"denom":"ASSET2","index":"0.000003267755179083"},{"denom":"ASSET3","index":"0.000000955742427695"},{"denom":"ASSET4","index":"0.000008998066353223"},{"denom":"ASSET5","index":"0.000000741667172936"},{"denom":"ASSET6","index":"0.000003019151657428"},{"denom":"ASSET7","index":"0.000004625406633453"},{"denom":"ASSET8","index":"0.000006035541053505"},{"denom":"ASSET9","index":"0.000002606193585346"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000002827520151011"},{"denom":"ASSET1","index":"0.000024027878888002"},{"denom":"ASSET10","index":"0.000019355847170480"},{"denom":"ASSET11","index":"0.000023924401086085"},{"denom":"ASSET12","index":"0.000022900407365256"},{"denom":"ASSET13","index":"0.000007521399074311"},{"denom":"ASSET14","index":"0.000021930603354990"},{"denom":"ASSET15","index":"0.000017401215805238"},{"denom":"ASSET16","index":"0.000010647310435771"},{"denom":"ASSET17","index":"0.000008415007538097"},{"denom":"ASSET18","index":"0.000003442593620109"},{"denom":"ASSET2","index":"0.000007289635767836"},{"denom":"ASSET3","index":"0.000002016810506595"},{"denom":"ASSET4","index":"0.000019477449509443"},{"denom":"ASSET5","index":"0.000001571692130579"},{"denom":"ASSET6","index":"0.000006339251488002"},{"denom":"ASSET7","index":"0.000009978075244424"},{"denom":"ASSET8","index":"0.000013673195599374"},{"denom":"ASSET9","index":"0.000005796522499795"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001571435631869"},{"denom":"ASSET1","index":"0.000013104175099655"},{"denom":"ASSET10","index":"0.000009129715488355"},{"denom":"ASSET11","index":"0.000012677036600848"},{"denom":"ASSET12","index":"0.000011415350365342"},{"denom":"ASSET13","index":"0.000003928095848150"},{"denom":"ASSET14","index":"0.000011841502401104"},{"denom":"ASSET15","index":"0.000008466812321615"},{"denom":"ASSET16","index":"0.000005902994865728"},{"denom":"ASSET17","index":"0.000004192467944409"},{"denom":"ASSET18","index":"0.000001996601204585"},{"denom":"ASSET2","index":"0.000003867921602360"},{"denom":"ASSET3","index":"0.000001131473113468"},{"denom":"ASSET4","index":"0.000010648868578800"},{"denom":"ASSET5","index":"0.000000877952110712"},{"denom":"ASSET6","index":"0.000003573955614728"},{"denom":"ASSET7","index":"0.000005473883440830"},{"denom":"ASSET8","index":"0.000007142978914228"},{"denom":"ASSET9","index":"0.000003084669944040"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003141123056438"},{"denom":"ASSET1","index":"0.000026662100889972"},{"denom":"ASSET10","index":"0.000021312054987248"},{"denom":"ASSET11","index":"0.000026503481745319"},{"denom":"ASSET12","index":"0.000025286293002787"},{"denom":"ASSET13","index":"0.000008324908472884"},{"denom":"ASSET14","index":"0.000024319980387721"},{"denom":"ASSET15","index":"0.000019190708128374"},{"denom":"ASSET16","index":"0.000011824997422058"},{"denom":"ASSET17","index":"0.000009292034078872"},{"denom":"ASSET18","index":"0.000003834040785154"},{"denom":"ASSET2","index":"0.000008076003481032"},{"denom":"ASSET3","index":"0.000002241608843356"},{"denom":"ASSET4","index":"0.000021614431804298"},{"denom":"ASSET5","index":"0.000001746420421862"},{"denom":"ASSET6","index":"0.000007047828859327"},{"denom":"ASSET7","index":"0.000011075197168484"},{"denom":"ASSET8","index":"0.000015134882092008"},{"denom":"ASSET9","index":"0.000006422749115253"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[{"denom":"ASSET0","index":"0.000001554974273829"},{"denom":"ASSET1","index":"0.000012964145980643"},{"denom":"ASSET10","index":"0.000009032293690170"},{"denom":"ASSET11","index":"0.000012541598623624"},{"denom":"ASSET12","index":"0.000011293609918011"},{"denom":"ASSET13","index":"0.000003886649549954"},{"denom":"ASSET14","index":"0.000011715371140412"},{"denom":"ASSET15","index":"0.000008376264351692"},{"denom":"ASSET16","index":"0.000005840194074962"},{"denom":"ASSET17","index":"0.000004147646243034"},{"denom":"ASSET18","index":"0.000001975556294303"},{"denom":"ASSET2","index":"0.000003826903319009"},{"denom":"ASSET3","index":"0.000001119455695618"},{"denom":"ASSET4","index":"0.000010535776146539"},{"denom":"ASSET5","index":"0.000000869071819878"},{"denom":"ASSET6","index":"0.000003536426577765"},{"denom":"ASSET7","index":"0.000005416074448708"},{"denom":"ASSET8","index":"0.000007067350213206"},{"denom":"ASSET9","index":"0.000003052560720565"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[{"denom":"ASSET0","index":"0.000003054120352223"},{"denom":"ASSET1","index":"0.000025909289170716"},{"denom":"ASSET10","index":"0.000020664041936079"},{"denom":"ASSET11","index":"0.000025743066158465"},{"denom":"ASSET12","index":"0.000024537849095602"},{"denom":"ASSET13","index":"0.000008085297309351"},{"denom":"ASSET14","index":"0.000023630023251940"},{"denom":"ASSET15","index":"0.000018615490114349"},{"denom":"ASSET16","index":"0.000011495216270003"},{"denom":"ASSET17","index":"0.000009017197770141"},{"denom":"ASSET18","index":"0.000003730110182262"},{"denom":"ASSET2","index":"0.000007845299155388"},{"denom":"ASSET3","index":"0.000002179886924088"},{"denom":"ASSET4","index":"0.000021005968780047"},{"denom":"ASSET5","index":"0.000001698230665763"},{"denom":"ASSET6","index":"0.000006853367473041"},{"denom":"ASSET7","index":"0.000010764057351149"},{"denom":"ASSET8","index":"0.000014698116791571"},{"denom":"ASSET9","index":"0.000006239964640655"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET14","snapshot":{"prev_reward_weight":"1.000000000000000000","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999990000000000000","reward_histories":[]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET14","snapshot":{"prev_reward_weight":"0.999980000100000000","reward_histories":[]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001587610635106"},{"denom":"ASSET1","index":"0.000013244938725362"},{"denom":"ASSET10","index":"0.000009227311812032"},{"denom":"ASSET11","index":"0.000012812935831455"},{"denom":"ASSET12","index":"0.000011538527294432"},{"denom":"ASSET13","index":"0.000003970376596809"},{"denom":"ASSET14","index":"0.000011969180179294"},{"denom":"ASSET15","index":"0.000008557707326477"},{"denom":"ASSET16","index":"0.000005967039972082"},{"denom":"ASSET17","index":"0.000004237678387413"},{"denom":"ASSET18","index":"0.000002018263519969"},{"denom":"ASSET2","index":"0.000003909626189853"},{"denom":"ASSET3","index":"0.000001143457659809"},{"denom":"ASSET4","index":"0.000010763622103487"},{"denom":"ASSET5","index":"0.000000886955941552"},{"denom":"ASSET6","index":"0.000003612624200292"},{"denom":"ASSET7","index":"0.000005533687069132"},{"denom":"ASSET8","index":"0.000007219848364411"},{"denom":"ASSET9","index":"0.000003118520890387"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003152887181228"},{"denom":"ASSET1","index":"0.000026760532918289"},{"denom":"ASSET10","index":"0.000021371603424459"},{"denom":"ASSET11","index":"0.000026596151859305"},{"denom":"ASSET12","index":"0.000025366346961436"},{"denom":"ASSET13","index":"0.000008353980761099"},{"denom":"ASSET14","index":"0.000024408754798213"},{"denom":"ASSET15","index":"0.000019248058608344"},{"denom":"ASSET16","index":"0.000011870971278696"},{"denom":"ASSET17","index":"0.000009321801721671"},{"denom":"ASSET18","index":"0.000003850124607081"},{"denom":"ASSET2","index":"0.000008105134387478"},{"denom":"ASSET3","index":"0.000002250596051831"},{"denom":"ASSET4","index":"0.000021694971342643"},{"denom":"ASSET5","index":"0.000001752750611640"},{"denom":"ASSET6","index":"0.000007075802880646"},{"denom":"ASSET7","index":"0.000011117440314842"},{"denom":"ASSET8","index":"0.000015186957305377"},{"denom":"ASSET9","index":"0.000006446159830056"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001450981944084"},{"denom":"ASSET1","index":"0.000012097851501865"},{"denom":"ASSET10","index":"0.000008428524260541"},{"denom":"ASSET11","index":"0.000011703479004578"},{"denom":"ASSET12","index":"0.000010538773481717"},{"denom":"ASSET13","index":"0.000003626563958485"},{"denom":"ASSET14","index":"0.000010932552044520"},{"denom":"ASSET15","index":"0.000007816771742159"},{"denom":"ASSET16","index":"0.000005449942823954"},{"denom":"ASSET17","index":"0.000003870671031354"},{"denom":"ASSET18","index":"0.000001843572637920"},{"denom":"ASSET2","index":"0.000003571328051486"},{"denom":"ASSET3","index":"0.000001044730757120"},{"denom":"ASSET4","index":"0.000009831991445917"},{"denom":"ASSET5","index":"0.000000810720570477"},{"denom":"ASSET6","index":"0.000003299899992359"},{"denom":"ASSET7","index":"0.000005054382457699"},{"denom":"ASSET8","index":"0.000006595048508847"},{"denom":"ASSET9","index":"0.000002848509784621"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000002831039632868"},{"denom":"ASSET1","index":"0.000024014703977493"},{"denom":"ASSET10","index":"0.000019136467933987"},{"denom":"ASSET11","index":"0.000023856136612857"},{"denom":"ASSET12","index":"0.000022731094165303"},{"denom":"ASSET13","index":"0.000007491812146677"},{"denom":"ASSET14","index":"0.000021900750691559"},{"denom":"ASSET15","index":"0.000017242457090593"},{"denom":"ASSET16","index":"0.000010655585625623"},{"denom":"ASSET17","index":"0.000008353141870908"},{"denom":"ASSET18","index":"0.000003458892129556"},{"denom":"ASSET2","index":"0.000007270317321266"},{"denom":"ASSET3","index":"0.000002020551075646"},{"denom":"ASSET4","index":"0.000019470118745656"},{"denom":"ASSET5","index":"0.000001574098937698"},{"denom":"ASSET6","index":"0.000006353413461243"},{"denom":"ASSET7","index":"0.000009977493764026"},{"denom":"ASSET8","index":"0.000013619759476676"},{"denom":"ASSET9","index":"0.000005782490697784"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001596167964962"},{"denom":"ASSET1","index":"0.000013307648687747"},{"denom":"ASSET10","index":"0.000009271254138767"},{"denom":"ASSET11","index":"0.000012873344596610"},{"denom":"ASSET12","index":"0.000011592750107942"},{"denom":"ASSET13","index":"0.000003989527201016"},{"denom":"ASSET14","index":"0.000012025715131995"},{"denom":"ASSET15","index":"0.000008598149750858"},{"denom":"ASSET16","index":"0.000005994556982506"},{"denom":"ASSET17","index":"0.000004257340617956"},{"denom":"ASSET18","index":"0.000002028240277625"},{"denom":"ASSET2","index":"0.000003928376470814"},{"denom":"ASSET3","index":"0.000001148919558672"},{"denom":"ASSET4","index":"0.000010814752131731"},{"denom":"ASSET5","index":"0.000000891818678410"},{"denom":"ASSET6","index":"0.000003630210866621"},{"denom":"ASSET7","index":"0.000005559360179979"},{"denom":"ASSET8","index":"0.000007254619109209"},{"denom":"ASSET9","index":"0.000003133416978198"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003160678210357"},{"denom":"ASSET1","index":"0.000026816731621709"},{"denom":"ASSET10","index":"0.000021409695697867"},{"denom":"ASSET11","index":"0.000026650151208928"},{"denom":"ASSET12","index":"0.000025413985003091"},{"denom":"ASSET13","index":"0.000008371194471357"},{"denom":"ASSET14","index":"0.000024459575922385"},{"denom":"ASSET15","index":"0.000019283728762326"},{"denom":"ASSET16","index":"0.000011895729224726"},{"denom":"ASSET17","index":"0.000009339186085895"},{"denom":"ASSET18","index":"0.000003859320220004"},{"denom":"ASSET2","index":"0.000008121656282140"},{"denom":"ASSET3","index":"0.000002255587694637"},{"denom":"ASSET4","index":"0.000021740936259308"},{"denom":"ASSET5","index":"0.000001757304707579"},{"denom":"ASSET6","index":"0.000007091577992612"},{"denom":"ASSET7","index":"0.000011140302591406"},{"denom":"ASSET8","index":"0.000015217956063596"},{"denom":"ASSET9","index":"0.000006459479788296"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001539653287763"},{"denom":"ASSET1","index":"0.000012837628062054"},{"denom":"ASSET10","index":"0.000008944076712630"},{"denom":"ASSET11","index":"0.000012418678362380"},{"denom":"ASSET12","index":"0.000011182855597091"},{"denom":"ASSET13","index":"0.000003848344731893"},{"denom":"ASSET14","index":"0.000011600753980079"},{"denom":"ASSET15","index":"0.000008294363000211"},{"denom":"ASSET16","index":"0.000005782767435536"},{"denom":"ASSET17","index":"0.000004106968636837"},{"denom":"ASSET18","index":"0.000001956500354065"},{"denom":"ASSET2","index":"0.000003789470997435"},{"denom":"ASSET3","index":"0.000001108613446191"},{"denom":"ASSET4","index":"0.000010432741141086"},{"denom":"ASSET5","index":"0.000000860502708115"},{"denom":"ASSET6","index":"0.000003501935883605"},{"denom":"ASSET7","index":"0.000005362766419174"},{"denom":"ASSET8","index":"0.000006998089525433"},{"denom":"ASSET9","index":"0.000003022535474442"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003102081054533"},{"denom":"ASSET1","index":"0.000026328097047411"},{"denom":"ASSET10","index":"0.000021065731925672"},{"denom":"ASSET11","index":"0.000026176422512857"},{"denom":"ASSET12","index":"0.000024984864029023"},{"denom":"ASSET13","index":"0.000008223750690350"},{"denom":"ASSET14","index":"0.000024017391771060"},{"denom":"ASSET15","index":"0.000018965095888316"},{"denom":"ASSET16","index":"0.000011675661088751"},{"denom":"ASSET17","index":"0.000009181817821335"},{"denom":"ASSET18","index":"0.000003784851704842"},{"denom":"ASSET2","index":"0.000007977007181168"},{"denom":"ASSET3","index":"0.000002213531006169"},{"denom":"ASSET4","index":"0.000021343717572048"},{"denom":"ASSET5","index":"0.000001724500934679"},{"denom":"ASSET6","index":"0.000006958604580417"},{"denom":"ASSET7","index":"0.000010936011139136"},{"denom":"ASSET8","index":"0.000014950117004491"},{"denom":"ASSET9","index":"0.000006344046059941"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001722784092424"},{"denom":"ASSET1","index":"0.000014376047839207"},{"denom":"ASSET10","index":"0.000010014727915911"},{"denom":"ASSET11","index":"0.000013905627425621"},{"denom":"ASSET12","index":"0.000012523636788373"},{"denom":"ASSET13","index":"0.000004309050988454"},{"denom":"ASSET14","index":"0.000012989875687172"},{"denom":"ASSET15","index":"0.000009287144342897"},{"denom":"ASSET16","index":"0.000006475075648346"},{"denom":"ASSET17","index":"0.000004597575508787"},{"denom":"ASSET18","index":"0.000002191113748617"},{"denom":"ASSET2","index":"0.000004242146751855"},{"denom":"ASSET3","index":"0.000001239819134475"},{"denom":"ASSET4","index":"0.000011683152316098"},{"denom":"ASSET5","index":"0.000000961748401110"},{"denom":"ASSET6","index":"0.000003920170113222"},{"denom":"ASSET7","index":"0.000006004655234759"},{"denom":"ASSET8","index":"0.000007836158711656"},{"denom":"ASSET9","index":"0.000003384936220430"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003308323901116"},{"denom":"ASSET1","index":"0.000028066718381779"},{"denom":"ASSET10","index":"0.000022316311421496"},{"denom":"ASSET11","index":"0.000027867424204892"},{"denom":"ASSET12","index":"0.000026530665881565"},{"denom":"ASSET13","index":"0.000008749579510737"},{"denom":"ASSET14","index":"0.000025590688346390"},{"denom":"ASSET15","index":"0.000020116135001180"},{"denom":"ASSET16","index":"0.000012455644018572"},{"denom":"ASSET17","index":"0.000009747635771928"},{"denom":"ASSET18","index":"0.000004046709206696"},{"denom":"ASSET2","index":"0.000008491843085820"},{"denom":"ASSET3","index":"0.000002361259343526"},{"denom":"ASSET4","index":"0.000022756236881458"},{"denom":"ASSET5","index":"0.000001838827056256"},{"denom":"ASSET6","index":"0.000007428217086977"},{"denom":"ASSET7","index":"0.000011660835649526"},{"denom":"ASSET8","index":"0.000015906513514404"},{"denom":"ASSET9","index":"0.000006755948018281"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001677980890787"},{"denom":"ASSET1","index":"0.000013990275877081"},{"denom":"ASSET10","index":"0.000009746835585844"},{"denom":"ASSET11","index":"0.000013534047272362"},{"denom":"ASSET12","index":"0.000012187401487418"},{"denom":"ASSET13","index":"0.000004194217559326"},{"denom":"ASSET14","index":"0.000012642160756856"},{"denom":"ASSET15","index":"0.000009039350648091"},{"denom":"ASSET16","index":"0.000006301979019776"},{"denom":"ASSET17","index":"0.000004475595265619"},{"denom":"ASSET18","index":"0.000002132005492585"},{"denom":"ASSET2","index":"0.000004129566806967"},{"denom":"ASSET3","index":"0.000001207793600899"},{"denom":"ASSET4","index":"0.000011368981735957"},{"denom":"ASSET5","index":"0.000000937435909214"},{"denom":"ASSET6","index":"0.000003815863724495"},{"denom":"ASSET7","index":"0.000005844281079776"},{"denom":"ASSET8","index":"0.000007626584775507"},{"denom":"ASSET9","index":"0.000003293515032135"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003299297789724"},{"denom":"ASSET1","index":"0.000027989603079017"},{"denom":"ASSET10","index":"0.000022326156077139"},{"denom":"ASSET11","index":"0.000027810817552502"},{"denom":"ASSET12","index":"0.000026510364756940"},{"denom":"ASSET13","index":"0.000008734817330461"},{"denom":"ASSET14","index":"0.000025527438517331"},{"denom":"ASSET15","index":"0.000020112836713905"},{"denom":"ASSET16","index":"0.000012417417558556"},{"denom":"ASSET17","index":"0.000009741881197111"},{"denom":"ASSET18","index":"0.000004029624902086"},{"denom":"ASSET2","index":"0.000008475129511821"},{"denom":"ASSET3","index":"0.000002354634361983"},{"denom":"ASSET4","index":"0.000022691681830907"},{"denom":"ASSET5","index":"0.000001834207215432"},{"denom":"ASSET6","index":"0.000007402948949368"},{"denom":"ASSET7","index":"0.000011627814435586"},{"denom":"ASSET8","index":"0.000015878876786083"},{"denom":"ASSET9","index":"0.000006740310437402"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001570026110869"},{"denom":"ASSET1","index":"0.000013093495665706"},{"denom":"ASSET10","index":"0.000009121814411369"},{"denom":"ASSET11","index":"0.000012665871768525"},{"denom":"ASSET12","index":"0.000011405375746022"},{"denom":"ASSET13","index":"0.000003924443730811"},{"denom":"ASSET14","index":"0.000011831756550478"},{"denom":"ASSET15","index":"0.000008459245989284"},{"denom":"ASSET16","index":"0.000005898474977098"},{"denom":"ASSET17","index":"0.000004187979388376"},{"denom":"ASSET18","index":"0.000001995163822601"},{"denom":"ASSET2","index":"0.000003864775280042"},{"denom":"ASSET3","index":"0.000001129971286445"},{"denom":"ASSET4","index":"0.000010639630627815"},{"denom":"ASSET5","index":"0.000000877623463400"},{"denom":"ASSET6","index":"0.000003571405397092"},{"denom":"ASSET7","index":"0.000005469607987193"},{"denom":"ASSET8","index":"0.000007137838423287"},{"denom":"ASSET9","index":"0.000003082869956418"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003142586597057"},{"denom":"ASSET1","index":"0.000026671940208455"},{"denom":"ASSET10","index":"0.000021322845581004"},{"denom":"ASSET11","index":"0.000026513185667064"},{"denom":"ASSET12","index":"0.000025297681895631"},{"denom":"ASSET13","index":"0.000008328263582513"},{"denom":"ASSET14","index":"0.000024329302916923"},{"denom":"ASSET15","index":"0.000019199384187435"},{"denom":"ASSET16","index":"0.000011829863063918"},{"denom":"ASSET17","index":"0.000009295955073087"},{"denom":"ASSET18","index":"0.000003835509513951"},{"denom":"ASSET2","index":"0.000008079410847125"},{"denom":"ASSET3","index":"0.000002242309830967"},{"denom":"ASSET4","index":"0.000021622076491366"},{"denom":"ASSET5","index":"0.000001747112267207"},{"denom":"ASSET6","index":"0.000007050444762949"},{"denom":"ASSET7","index":"0.000011079003337441"},{"denom":"ASSET8","index":"0.000015142122511204"},{"denom":"ASSET9","index":"0.000006425848418438"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001808467589320"},{"denom":"ASSET1","index":"0.000015078627759778"},{"denom":"ASSET10","index":"0.000010504031371633"},{"denom":"ASSET11","index":"0.000014586692317421"},{"denom":"ASSET12","index":"0.000013135079536696"},{"denom":"ASSET13","index":"0.000004520160908868"},{"denom":"ASSET14","index":"0.000013624998850191"},{"denom":"ASSET15","index":"0.000009741934661752"},{"denom":"ASSET16","index":"0.000006792338136474"},{"denom":"ASSET17","index":"0.000004822580238185"},{"denom":"ASSET18","index":"0.000002296370773952"},{"denom":"ASSET2","index":"0.000004449596398694"},{"denom":"ASSET3","index":"0.000001300403116066"},{"denom":"ASSET4","index":"0.000012254031223951"},{"denom":"ASSET5","index":"0.000001010080559921"},{"denom":"ASSET6","index":"0.000004112902878720"},{"denom":"ASSET7","index":"0.000006298386565256"},{"denom":"ASSET8","index":"0.000008219757370854"},{"denom":"ASSET9","index":"0.000003550402926189"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003309574221953"},{"denom":"ASSET1","index":"0.000028041386020893"},{"denom":"ASSET10","index":"0.000022151472675705"},{"denom":"ASSET11","index":"0.000027806413413432"},{"denom":"ASSET12","index":"0.000026397319662942"},{"denom":"ASSET13","index":"0.000008723998941637"},{"denom":"ASSET14","index":"0.000025556208464743"},{"denom":"ASSET15","index":"0.000019995491235522"},{"denom":"ASSET16","index":"0.000012454763771642"},{"denom":"ASSET17","index":"0.000009698403814011"},{"denom":"ASSET18","index":"0.000004053515914738"},{"denom":"ASSET2","index":"0.000008473190716338"},{"denom":"ASSET3","index":"0.000002361530218445"},{"denom":"ASSET4","index":"0.000022738669483779"},{"denom":"ASSET5","index":"0.000001840125976242"},{"denom":"ASSET6","index":"0.000007434008870747"},{"denom":"ASSET7","index":"0.000011653935721338"},{"denom":"ASSET8","index":"0.000015861166565423"},{"denom":"ASSET9","index":"0.000006742103174023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001541663174382"},{"denom":"ASSET1","index":"0.000012852134347969"},{"denom":"ASSET10","index":"0.000008953505358908"},{"denom":"ASSET11","index":"0.000012432624080325"},{"denom":"ASSET12","index":"0.000011194846435509"},{"denom":"ASSET13","index":"0.000003852675567517"},{"denom":"ASSET14","index":"0.000011614356703153"},{"denom":"ASSET15","index":"0.000008302745615107"},{"denom":"ASSET16","index":"0.000005788648746115"},{"denom":"ASSET17","index":"0.000004110607675539"},{"denom":"ASSET18","index":"0.000001958208705152"},{"denom":"ASSET2","index":"0.000003793380830041"},{"denom":"ASSET3","index":"0.000001108811590805"},{"denom":"ASSET4","index":"0.000010443285637998"},{"denom":"ASSET5","index":"0.000000861256061842"},{"denom":"ASSET6","index":"0.000003505801353281"},{"denom":"ASSET7","index":"0.000005369138478471"},{"denom":"ASSET8","index":"0.000007005673232815"},{"denom":"ASSET9","index":"0.000003025513979724"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003039218640043"},{"denom":"ASSET1","index":"0.000025782167100542"},{"denom":"ASSET10","index":"0.000020571830356487"},{"denom":"ASSET11","index":"0.000025618833387376"},{"denom":"ASSET12","index":"0.000024423552320522"},{"denom":"ASSET13","index":"0.000008046369560384"},{"denom":"ASSET14","index":"0.000023515194162679"},{"denom":"ASSET15","index":"0.000018530055863607"},{"denom":"ASSET16","index":"0.000011436803083329"},{"denom":"ASSET17","index":"0.000008974370950503"},{"denom":"ASSET18","index":"0.000003710743638587"},{"denom":"ASSET2","index":"0.000007806913274081"},{"denom":"ASSET3","index":"0.000002167934051431"},{"denom":"ASSET4","index":"0.000020901035076857"},{"denom":"ASSET5","index":"0.000001689640060433"},{"denom":"ASSET6","index":"0.000006819038075969"},{"denom":"ASSET7","index":"0.000010710838619674"},{"denom":"ASSET8","index":"0.000014627524271874"},{"denom":"ASSET9","index":"0.000006209166066794"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001647112085871"},{"denom":"ASSET1","index":"0.000013744257107488"},{"denom":"ASSET10","index":"0.000009576415679235"},{"denom":"ASSET11","index":"0.000013296650962579"},{"denom":"ASSET12","index":"0.000011973464376313"},{"denom":"ASSET13","index":"0.000004120724991946"},{"denom":"ASSET14","index":"0.000012421070521222"},{"denom":"ASSET15","index":"0.000008879485058873"},{"denom":"ASSET16","index":"0.000006191885004573"},{"denom":"ASSET17","index":"0.000004397534055245"},{"denom":"ASSET18","index":"0.000002094718230780"},{"denom":"ASSET2","index":"0.000004055939892025"},{"denom":"ASSET3","index":"0.000001185763647039"},{"denom":"ASSET4","index":"0.000011170521774262"},{"denom":"ASSET5","index":"0.000000920733692817"},{"denom":"ASSET6","index":"0.000003749683056035"},{"denom":"ASSET7","index":"0.000005742315674818"},{"denom":"ASSET8","index":"0.000007491513372686"},{"denom":"ASSET9","index":"0.000003235328626359"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003240628198198"},{"denom":"ASSET1","index":"0.000027504329283847"},{"denom":"ASSET10","index":"0.000021940320319100"},{"denom":"ASSET11","index":"0.000027329345632586"},{"denom":"ASSET12","index":"0.000026051323397008"},{"denom":"ASSET13","index":"0.000008583813762496"},{"denom":"ASSET14","index":"0.000025085743554439"},{"denom":"ASSET15","index":"0.000019763439018939"},{"denom":"ASSET16","index":"0.000012202670980955"},{"denom":"ASSET17","index":"0.000009573761377605"},{"denom":"ASSET18","index":"0.000003959875003044"},{"denom":"ASSET2","index":"0.000008327243811102"},{"denom":"ASSET3","index":"0.000002312908746824"},{"denom":"ASSET4","index":"0.000022299606884078"},{"denom":"ASSET5","index":"0.000001802093087045"},{"denom":"ASSET6","index":"0.000007275447910852"},{"denom":"ASSET7","index":"0.000011427132859276"},{"denom":"ASSET8","index":"0.000015602768933976"},{"denom":"ASSET9","index":"0.000006623309483786"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001570100817458"},{"denom":"ASSET1","index":"0.000013089401919768"},{"denom":"ASSET10","index":"0.000009119446705996"},{"denom":"ASSET11","index":"0.000012662761138201"},{"denom":"ASSET12","index":"0.000011403229713207"},{"denom":"ASSET13","index":"0.000003924467777503"},{"denom":"ASSET14","index":"0.000011828301962489"},{"denom":"ASSET15","index":"0.000008457526081653"},{"denom":"ASSET16","index":"0.000005896112859965"},{"denom":"ASSET17","index":"0.000004187981201412"},{"denom":"ASSET18","index":"0.000001993604534455"},{"denom":"ASSET2","index":"0.000003863295018381"},{"denom":"ASSET3","index":"0.000001129343245325"},{"denom":"ASSET4","index":"0.000010637785958043"},{"denom":"ASSET5","index":"0.000000876809547412"},{"denom":"ASSET6","index":"0.000003569979481054"},{"denom":"ASSET7","index":"0.000005467903546113"},{"denom":"ASSET8","index":"0.000007135253365252"},{"denom":"ASSET9","index":"0.000003082165940365"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003152920186871"},{"denom":"ASSET1","index":"0.000026760622644749"},{"denom":"ASSET10","index":"0.000021403995558307"},{"denom":"ASSET11","index":"0.000026604821287493"},{"denom":"ASSET12","index":"0.000025390105019040"},{"denom":"ASSET13","index":"0.000008358570294936"},{"denom":"ASSET14","index":"0.000024411618525071"},{"denom":"ASSET15","index":"0.000019270968708391"},{"denom":"ASSET16","index":"0.000011868219590271"},{"denom":"ASSET17","index":"0.000009330682788205"},{"denom":"ASSET18","index":"0.000003846613833157"},{"denom":"ASSET2","index":"0.000008107095494272"},{"denom":"ASSET3","index":"0.000002249072663818"},{"denom":"ASSET4","index":"0.000021694789218154"},{"denom":"ASSET5","index":"0.000001752328837510"},{"denom":"ASSET6","index":"0.000007072706136469"},{"denom":"ASSET7","index":"0.000011115912260277"},{"denom":"ASSET8","index":"0.000015194187602297"},{"denom":"ASSET9","index":"0.000006447849146068"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001655272585709"},{"denom":"ASSET1","index":"0.000013804891217292"},{"denom":"ASSET10","index":"0.000009617831976915"},{"denom":"ASSET11","index":"0.000013354722791997"},{"denom":"ASSET12","index":"0.000012025575872058"},{"denom":"ASSET13","index":"0.000004138592201887"},{"denom":"ASSET14","index":"0.000012474922822124"},{"denom":"ASSET15","index":"0.000008919578032571"},{"denom":"ASSET16","index":"0.000006218567480803"},{"denom":"ASSET17","index":"0.000004416250829168"},{"denom":"ASSET18","index":"0.000002103798060547"},{"denom":"ASSET2","index":"0.000004074517134053"},{"denom":"ASSET3","index":"0.000001191960556756"},{"denom":"ASSET4","index":"0.000011218887197534"},{"denom":"ASSET5","index":"0.000000924981107448"},{"denom":"ASSET6","index":"0.000003765642448085"},{"denom":"ASSET7","index":"0.000005766756105051"},{"denom":"ASSET8","index":"0.000007525534569569"},{"denom":"ASSET9","index":"0.000003250577479728"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003218229550028"},{"denom":"ASSET1","index":"0.000027301798081180"},{"denom":"ASSET10","index":"0.000021745417841688"},{"denom":"ASSET11","index":"0.000027119412726222"},{"denom":"ASSET12","index":"0.000025834540696398"},{"denom":"ASSET13","index":"0.000008516471999212"},{"denom":"ASSET14","index":"0.000024897496810197"},{"denom":"ASSET15","index":"0.000019595694306931"},{"denom":"ASSET16","index":"0.000012114595919920"},{"denom":"ASSET17","index":"0.000009493460517354"},{"denom":"ASSET18","index":"0.000003932937797970"},{"denom":"ASSET2","index":"0.000008264095290285"},{"denom":"ASSET3","index":"0.000002297232512411"},{"denom":"ASSET4","index":"0.000022135581489268"},{"denom":"ASSET5","index":"0.000001789675045728"},{"denom":"ASSET6","index":"0.000007223884768794"},{"denom":"ASSET7","index":"0.000011342725097550"},{"denom":"ASSET8","index":"0.000015481678980085"},{"denom":"ASSET9","index":"0.000006573861400446"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001621688869515"},{"denom":"ASSET1","index":"0.000013520143478358"},{"denom":"ASSET10","index":"0.000009419470546393"},{"denom":"ASSET11","index":"0.000013079418684764"},{"denom":"ASSET12","index":"0.000011778054243646"},{"denom":"ASSET13","index":"0.000004053107355591"},{"denom":"ASSET14","index":"0.000012218035825109"},{"denom":"ASSET15","index":"0.000008735715386011"},{"denom":"ASSET16","index":"0.000006090623412316"},{"denom":"ASSET17","index":"0.000004325494601547"},{"denom":"ASSET18","index":"0.000002060555632782"},{"denom":"ASSET2","index":"0.000003991049142665"},{"denom":"ASSET3","index":"0.000001167586257565"},{"denom":"ASSET4","index":"0.000010987648142487"},{"denom":"ASSET5","index":"0.000000905975587506"},{"denom":"ASSET6","index":"0.000003688190199343"},{"denom":"ASSET7","index":"0.000005648412194460"},{"denom":"ASSET8","index":"0.000007370434701640"},{"denom":"ASSET9","index":"0.000003183549162496"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003224207736427"},{"denom":"ASSET1","index":"0.000027358045975387"},{"denom":"ASSET10","index":"0.000021853454393362"},{"denom":"ASSET11","index":"0.000027191663823691"},{"denom":"ASSET12","index":"0.000025935625558190"},{"denom":"ASSET13","index":"0.000008541293337334"},{"denom":"ASSET14","index":"0.000024954691173737"},{"denom":"ASSET15","index":"0.000019681390400685"},{"denom":"ASSET16","index":"0.000012135703886829"},{"denom":"ASSET17","index":"0.000009530848033034"},{"denom":"ASSET18","index":"0.000003936224347496"},{"denom":"ASSET2","index":"0.000008286598878032"},{"denom":"ASSET3","index":"0.000002301038846536"},{"denom":"ASSET4","index":"0.000022179933336345"},{"denom":"ASSET5","index":"0.000001792519798769"},{"denom":"ASSET6","index":"0.000007234068845872"},{"denom":"ASSET7","index":"0.000011365474292791"},{"denom":"ASSET8","index":"0.000015527655320242"},{"denom":"ASSET9","index":"0.000006590765495457"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001684197417987"},{"denom":"ASSET1","index":"0.000014041270025306"},{"denom":"ASSET10","index":"0.000009782380002809"},{"denom":"ASSET11","index":"0.000013583439347888"},{"denom":"ASSET12","index":"0.000012231725730520"},{"denom":"ASSET13","index":"0.000004209525615418"},{"denom":"ASSET14","index":"0.000012688588478388"},{"denom":"ASSET15","index":"0.000009072403677468"},{"denom":"ASSET16","index":"0.000006325419612958"},{"denom":"ASSET17","index":"0.000004492161044183"},{"denom":"ASSET18","index":"0.000002139608271529"},{"denom":"ASSET2","index":"0.000004144674335530"},{"denom":"ASSET3","index":"0.000001212331762086"},{"denom":"ASSET4","index":"0.000011410921471639"},{"denom":"ASSET5","index":"0.000000940827523152"},{"denom":"ASSET6","index":"0.000003830097231595"},{"denom":"ASSET7","index":"0.000005866137041214"},{"denom":"ASSET8","index":"0.000007654386885887"},{"denom":"ASSET9","index":"0.000003305963379963"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003193080094990"},{"denom":"ASSET1","index":"0.000027069824276969"},{"denom":"ASSET10","index":"0.000021489349079139"},{"denom":"ASSET11","index":"0.000026870184080824"},{"denom":"ASSET12","index":"0.000025561356340007"},{"denom":"ASSET13","index":"0.000008435097288603"},{"denom":"ASSET14","index":"0.000024680442306089"},{"denom":"ASSET15","index":"0.000019377704768171"},{"denom":"ASSET16","index":"0.000012016988086595"},{"denom":"ASSET17","index":"0.000009392966467546"},{"denom":"ASSET18","index":"0.000003905368596850"},{"denom":"ASSET2","index":"0.000008189075060838"},{"denom":"ASSET3","index":"0.000002279664955012"},{"denom":"ASSET4","index":"0.000021948593995488"},{"denom":"ASSET5","index":"0.000001775351671947"},{"denom":"ASSET6","index":"0.000007168631437760"},{"denom":"ASSET7","index":"0.000011248752159293"},{"denom":"ASSET8","index":"0.000015334459676317"},{"denom":"ASSET9","index":"0.000006513651901550"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001677613648548"},{"denom":"ASSET1","index":"0.000013997394471820"},{"denom":"ASSET10","index":"0.000009752554992736"},{"denom":"ASSET11","index":"0.000013541183096442"},{"denom":"ASSET12","index":"0.000012193285851007"},{"denom":"ASSET13","index":"0.000004195070965406"},{"denom":"ASSET14","index":"0.000012649497226385"},{"denom":"ASSET15","index":"0.000009043353672830"},{"denom":"ASSET16","index":"0.000006306085420563"},{"denom":"ASSET17","index":"0.000004477092542912"},{"denom":"ASSET18","index":"0.000002131751335856"},{"denom":"ASSET2","index":"0.000004130786635239"},{"denom":"ASSET3","index":"0.000001208960144751"},{"denom":"ASSET4","index":"0.000011376252751467"},{"denom":"ASSET5","index":"0.000000937307007594"},{"denom":"ASSET6","index":"0.000003817659736684"},{"denom":"ASSET7","index":"0.000005847800357116"},{"denom":"ASSET8","index":"0.000007631172097229"},{"denom":"ASSET9","index":"0.000003295090343070"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003316222748087"},{"denom":"ASSET1","index":"0.000028147075207200"},{"denom":"ASSET10","index":"0.000022466702115272"},{"denom":"ASSET11","index":"0.000027971336509453"},{"denom":"ASSET12","index":"0.000026669877578580"},{"denom":"ASSET13","index":"0.000008784355829882"},{"denom":"ASSET14","index":"0.000025672864554615"},{"denom":"ASSET15","index":"0.000020235356040284"},{"denom":"ASSET16","index":"0.000012487172511964"},{"denom":"ASSET17","index":"0.000009799807931023"},{"denom":"ASSET18","index":"0.000004049727438870"},{"denom":"ASSET2","index":"0.000008522892941853"},{"denom":"ASSET3","index":"0.000002368075218536"},{"denom":"ASSET4","index":"0.000022820717384594"},{"denom":"ASSET5","index":"0.000001843591257654"},{"denom":"ASSET6","index":"0.000007443165294976"},{"denom":"ASSET7","index":"0.000011693499621126"},{"denom":"ASSET8","index":"0.000015972009373807"},{"denom":"ASSET9","index":"0.000006779069609364"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001520550536467"},{"denom":"ASSET1","index":"0.000012675827554874"},{"denom":"ASSET10","index":"0.000008831388003026"},{"denom":"ASSET11","index":"0.000012262725604616"},{"denom":"ASSET12","index":"0.000011042474271843"},{"denom":"ASSET13","index":"0.000003800233070086"},{"denom":"ASSET14","index":"0.000011455195131741"},{"denom":"ASSET15","index":"0.000008190012927118"},{"denom":"ASSET16","index":"0.000005710257954490"},{"denom":"ASSET17","index":"0.000004055182520937"},{"denom":"ASSET18","index":"0.000001931747034924"},{"denom":"ASSET2","index":"0.000003741926245004"},{"denom":"ASSET3","index":"0.000001094491513968"},{"denom":"ASSET4","index":"0.000010301253521611"},{"denom":"ASSET5","index":"0.000000849450412477"},{"denom":"ASSET6","index":"0.000003457632836431"},{"denom":"ASSET7","index":"0.000005295631642792"},{"denom":"ASSET8","index":"0.000006910311498182"},{"denom":"ASSET9","index":"0.000002984699699651"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003047858420945"},{"denom":"ASSET1","index":"0.000025863853767953"},{"denom":"ASSET10","index":"0.000020681482671570"},{"denom":"ASSET11","index":"0.000025712271525236"},{"denom":"ASSET12","index":"0.000024535470175220"},{"denom":"ASSET13","index":"0.000008077733573885"},{"denom":"ASSET14","index":"0.000023593590000343"},{"denom":"ASSET15","index":"0.000018621561303244"},{"denom":"ASSET16","index":"0.000011471343089677"},{"denom":"ASSET17","index":"0.000009016132124589"},{"denom":"ASSET18","index":"0.000003719208275283"},{"denom":"ASSET2","index":"0.000007835789085827"},{"denom":"ASSET3","index":"0.000002174729135607"},{"denom":"ASSET4","index":"0.000020967814383093"},{"denom":"ASSET5","index":"0.000001694402278429"},{"denom":"ASSET6","index":"0.000006836893759575"},{"denom":"ASSET7","index":"0.000010744095518390"},{"denom":"ASSET8","index":"0.000014684305897471"},{"denom":"ASSET9","index":"0.000006231971052532"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001765508823557"},{"denom":"ASSET1","index":"0.000014724618911480"},{"denom":"ASSET10","index":"0.000010258363403154"},{"denom":"ASSET11","index":"0.000014244524406828"},{"denom":"ASSET12","index":"0.000012826610887714"},{"denom":"ASSET13","index":"0.000004413772058893"},{"denom":"ASSET14","index":"0.000013305845007949"},{"denom":"ASSET15","index":"0.000009513270498085"},{"denom":"ASSET16","index":"0.000006632703470176"},{"denom":"ASSET17","index":"0.000004710604682736"},{"denom":"ASSET18","index":"0.000002243882559375"},{"denom":"ASSET2","index":"0.000004346662074372"},{"denom":"ASSET3","index":"0.000001271648168235"},{"denom":"ASSET4","index":"0.000011966226470776"},{"denom":"ASSET5","index":"0.000000986860926228"},{"denom":"ASSET6","index":"0.000004016274458267"},{"denom":"ASSET7","index":"0.000006150888196691"},{"denom":"ASSET8","index":"0.000008026526225616"},{"denom":"ASSET9","index":"0.000003466488815844"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003365151784209"},{"denom":"ASSET1","index":"0.000028538337865727"},{"denom":"ASSET10","index":"0.000022670552359626"},{"denom":"ASSET11","index":"0.000028331786642422"},{"denom":"ASSET12","index":"0.000026959391418936"},{"denom":"ASSET13","index":"0.000008894072871450"},{"denom":"ASSET14","index":"0.000026020188745878"},{"denom":"ASSET15","index":"0.000020439828986765"},{"denom":"ASSET16","index":"0.000012667128947757"},{"denom":"ASSET17","index":"0.000009907060013179"},{"denom":"ASSET18","index":"0.000004116201786219"},{"denom":"ASSET2","index":"0.000008634485522558"},{"denom":"ASSET3","index":"0.000002403102945281"},{"denom":"ASSET4","index":"0.000023139017263426"},{"denom":"ASSET5","index":"0.000001871649891727"},{"denom":"ASSET6","index":"0.000007555863827839"},{"denom":"ASSET7","index":"0.000011857581945748"},{"denom":"ASSET8","index":"0.000016169532559731"},{"denom":"ASSET9","index":"0.000006867789268222"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001833509758465"},{"denom":"ASSET1","index":"0.000015308139656127"},{"denom":"ASSET10","index":"0.000010661025831945"},{"denom":"ASSET11","index":"0.000014808091540182"},{"denom":"ASSET12","index":"0.000013334616425197"},{"denom":"ASSET13","index":"0.000004587108050268"},{"denom":"ASSET14","index":"0.000013827997232930"},{"denom":"ASSET15","index":"0.000009887618079284"},{"denom":"ASSET16","index":"0.000006893996691827"},{"denom":"ASSET17","index":"0.000004893804228047"},{"denom":"ASSET18","index":"0.000002326890566197"},{"denom":"ASSET2","index":"0.000004513767659929"},{"denom":"ASSET3","index":"0.000001320127026095"},{"denom":"ASSET4","index":"0.000012434529816496"},{"denom":"ASSET5","index":"0.000001020098156528"},{"denom":"ASSET6","index":"0.000004173734941087"},{"denom":"ASSET7","index":"0.000006393948575882"},{"denom":"ASSET8","index":"0.000008340802573961"},{"denom":"ASSET9","index":"0.000003600346434803"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003461123478470"},{"denom":"ASSET1","index":"0.000029368181297786"},{"denom":"ASSET10","index":"0.000023294808028239"},{"denom":"ASSET11","index":"0.000029147392384169"},{"denom":"ASSET12","index":"0.000027719461688447"},{"denom":"ASSET13","index":"0.000009147542663388"},{"denom":"ASSET14","index":"0.000026768604990580"},{"denom":"ASSET15","index":"0.000021008846141082"},{"denom":"ASSET16","index":"0.000013035302068339"},{"denom":"ASSET17","index":"0.000010182949549387"},{"denom":"ASSET18","index":"0.000004232564951180"},{"denom":"ASSET2","index":"0.000008877642147806"},{"denom":"ASSET3","index":"0.000002471921418528"},{"denom":"ASSET4","index":"0.000023806252184245"},{"denom":"ASSET5","index":"0.000001920199705662"},{"denom":"ASSET6","index":"0.000007776538212319"},{"denom":"ASSET7","index":"0.000012202060569359"},{"denom":"ASSET8","index":"0.000016628688342614"},{"denom":"ASSET9","index":"0.000007061722298848"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001580229076001"},{"denom":"ASSET1","index":"0.000013178675425859"},{"denom":"ASSET10","index":"0.000009181488308837"},{"denom":"ASSET11","index":"0.000012749045790152"},{"denom":"ASSET12","index":"0.000011480356468073"},{"denom":"ASSET13","index":"0.000003950572690002"},{"denom":"ASSET14","index":"0.000011909209196663"},{"denom":"ASSET15","index":"0.000008514902002442"},{"denom":"ASSET16","index":"0.000005936347281082"},{"denom":"ASSET17","index":"0.000004216274924019"},{"denom":"ASSET18","index":"0.000002008304897474"},{"denom":"ASSET2","index":"0.000003889973934875"},{"denom":"ASSET3","index":"0.000001137392019304"},{"denom":"ASSET4","index":"0.000010709664607998"},{"denom":"ASSET5","index":"0.000000883343392042"},{"denom":"ASSET6","index":"0.000003594749230410"},{"denom":"ASSET7","index":"0.000005505163831141"},{"denom":"ASSET8","index":"0.000007184060111002"},{"denom":"ASSET9","index":"0.000003102967025342"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003136420796654"},{"denom":"ASSET1","index":"0.000026617535879560"},{"denom":"ASSET10","index":"0.000021257162201233"},{"denom":"ASSET11","index":"0.000026454281403244"},{"denom":"ASSET12","index":"0.000025229520616223"},{"denom":"ASSET13","index":"0.000008309311482354"},{"denom":"ASSET14","index":"0.000024278363089230"},{"denom":"ASSET15","index":"0.000019144672836670"},{"denom":"ASSET16","index":"0.000011806881934189"},{"denom":"ASSET17","index":"0.000009271795054357"},{"denom":"ASSET18","index":"0.000003829937127836"},{"denom":"ASSET2","index":"0.000008061315465971"},{"denom":"ASSET3","index":"0.000002238409344787"},{"denom":"ASSET4","index":"0.000021579173085678"},{"denom":"ASSET5","index":"0.000001744155749232"},{"denom":"ASSET6","index":"0.000007037998659171"},{"denom":"ASSET7","index":"0.000011056982942661"},{"denom":"ASSET8","index":"0.000015105683491420"},{"denom":"ASSET9","index":"0.000006411626899884"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001065673750407"},{"denom":"ASSET1","index":"0.000008885137524612"},{"denom":"ASSET10","index":"0.000006190162379117"},{"denom":"ASSET11","index":"0.000008595321581390"},{"denom":"ASSET12","index":"0.000007740138401991"},{"denom":"ASSET13","index":"0.000002663662498568"},{"denom":"ASSET14","index":"0.000008029258508615"},{"denom":"ASSET15","index":"0.000005740999854868"},{"denom":"ASSET16","index":"0.000004002452113836"},{"denom":"ASSET17","index":"0.000002842492504350"},{"denom":"ASSET18","index":"0.000001354098020432"},{"denom":"ASSET2","index":"0.000002622608139264"},{"denom":"ASSET3","index":"0.000000767159849705"},{"denom":"ASSET4","index":"0.000007220696381306"},{"denom":"ASSET5","index":"0.000000595288209907"},{"denom":"ASSET6","index":"0.000002423598872130"},{"denom":"ASSET7","index":"0.000003711940334016"},{"denom":"ASSET8","index":"0.000004843718561268"},{"denom":"ASSET9","index":"0.000002092032733005"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000002559869929403"},{"denom":"ASSET1","index":"0.000021787096732684"},{"denom":"ASSET10","index":"0.000017783238471081"},{"denom":"ASSET11","index":"0.000021752938768967"},{"denom":"ASSET12","index":"0.000020940235345308"},{"denom":"ASSET13","index":"0.000006848308161575"},{"denom":"ASSET14","index":"0.000019904298850841"},{"denom":"ASSET15","index":"0.000015946274018453"},{"denom":"ASSET16","index":"0.000009638424477568"},{"denom":"ASSET17","index":"0.000007695902028378"},{"denom":"ASSET18","index":"0.000003102977872608"},{"denom":"ASSET2","index":"0.000006627591716064"},{"denom":"ASSET3","index":"0.000001824087350341"},{"denom":"ASSET4","index":"0.000017655906837434"},{"denom":"ASSET5","index":"0.000001421889695470"},{"denom":"ASSET6","index":"0.000005729615091854"},{"denom":"ASSET7","index":"0.000009042175373173"},{"denom":"ASSET8","index":"0.000012449153729005"},{"denom":"ASSET9","index":"0.000005268661072858"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001663945626017"},{"denom":"ASSET1","index":"0.000013874870096624"},{"denom":"ASSET10","index":"0.000009666844154779"},{"denom":"ASSET11","index":"0.000013422526194886"},{"denom":"ASSET12","index":"0.000012086742376498"},{"denom":"ASSET13","index":"0.000004159391889779"},{"denom":"ASSET14","index":"0.000012538614102973"},{"denom":"ASSET15","index":"0.000008964719539034"},{"denom":"ASSET16","index":"0.000006250183953344"},{"denom":"ASSET17","index":"0.000004438919645342"},{"denom":"ASSET18","index":"0.000002114400826704"},{"denom":"ASSET2","index":"0.000004095648229305"},{"denom":"ASSET3","index":"0.000001197908641659"},{"denom":"ASSET4","index":"0.000011275545275051"},{"denom":"ASSET5","index":"0.000000929713092403"},{"denom":"ASSET6","index":"0.000003784956906399"},{"denom":"ASSET7","index":"0.000005796423525818"},{"denom":"ASSET8","index":"0.000007563775534382"},{"denom":"ASSET9","index":"0.000003266980643136"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003299045378029"},{"denom":"ASSET1","index":"0.000027992490930804"},{"denom":"ASSET10","index":"0.000022352284005938"},{"denom":"ASSET11","index":"0.000027819914533732"},{"denom":"ASSET12","index":"0.000026530494002155"},{"denom":"ASSET13","index":"0.000008738242797579"},{"denom":"ASSET14","index":"0.000025532401567106"},{"denom":"ASSET15","index":"0.000020131602968729"},{"denom":"ASSET16","index":"0.000012417136212826"},{"denom":"ASSET17","index":"0.000009749421325842"},{"denom":"ASSET18","index":"0.000004027997856345"},{"denom":"ASSET2","index":"0.000008477931503293"},{"denom":"ASSET3","index":"0.000002354450357881"},{"denom":"ASSET4","index":"0.000022693933657862"},{"denom":"ASSET5","index":"0.000001834114741991"},{"denom":"ASSET6","index":"0.000007402245947993"},{"denom":"ASSET7","index":"0.000011628988518089"},{"denom":"ASSET8","index":"0.000015885667960333"},{"denom":"ASSET9","index":"0.000006742956926982"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001554670726054"},{"denom":"ASSET1","index":"0.000012963415617374"},{"denom":"ASSET10","index":"0.000009031685079156"},{"denom":"ASSET11","index":"0.000012540799003679"},{"denom":"ASSET12","index":"0.000011293255065955"},{"denom":"ASSET13","index":"0.000003886042255656"},{"denom":"ASSET14","index":"0.000011715237120170"},{"denom":"ASSET15","index":"0.000008376185136293"},{"denom":"ASSET16","index":"0.000005839850894644"},{"denom":"ASSET17","index":"0.000004147480761425"},{"denom":"ASSET18","index":"0.000001975383661309"},{"denom":"ASSET2","index":"0.000003826393664534"},{"denom":"ASSET3","index":"0.000001119362922759"},{"denom":"ASSET4","index":"0.000010534956487329"},{"denom":"ASSET5","index":"0.000000868711928150"},{"denom":"ASSET6","index":"0.000003536399982164"},{"denom":"ASSET7","index":"0.000005415965161990"},{"denom":"ASSET8","index":"0.000007067088929007"},{"denom":"ASSET9","index":"0.000003052231098907"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003157426180098"},{"denom":"ASSET1","index":"0.000026803913890418"},{"denom":"ASSET10","index":"0.000021467927303389"},{"denom":"ASSET11","index":"0.000026655124661377"},{"denom":"ASSET12","index":"0.000025453388278707"},{"denom":"ASSET13","index":"0.000008375182650914"},{"denom":"ASSET14","index":"0.000024453809207757"},{"denom":"ASSET15","index":"0.000019323681821282"},{"denom":"ASSET16","index":"0.000011885939188892"},{"denom":"ASSET17","index":"0.000009353763879690"},{"denom":"ASSET18","index":"0.000003851457527173"},{"denom":"ASSET2","index":"0.000008122633355733"},{"denom":"ASSET3","index":"0.000002252845423920"},{"denom":"ASSET4","index":"0.000021728796023940"},{"denom":"ASSET5","index":"0.000001755342604855"},{"denom":"ASSET6","index":"0.000007082922688985"},{"denom":"ASSET7","index":"0.000011133765978354"},{"denom":"ASSET8","index":"0.000015225414484063"},{"denom":"ASSET9","index":"0.000006459804222065"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001578706846766"},{"denom":"ASSET1","index":"0.000013164667632738"},{"denom":"ASSET10","index":"0.000009171819989970"},{"denom":"ASSET11","index":"0.000012734981690366"},{"denom":"ASSET12","index":"0.000011467468005207"},{"denom":"ASSET13","index":"0.000003946168668528"},{"denom":"ASSET14","index":"0.000011895957050803"},{"denom":"ASSET15","index":"0.000008505148486066"},{"denom":"ASSET16","index":"0.000005930623522158"},{"denom":"ASSET17","index":"0.000004211879752669"},{"denom":"ASSET18","index":"0.000002005998995588"},{"denom":"ASSET2","index":"0.000003886323829757"},{"denom":"ASSET3","index":"0.000001135855039864"},{"denom":"ASSET4","index":"0.000010697863378618"},{"denom":"ASSET5","index":"0.000000882112923477"},{"denom":"ASSET6","index":"0.000003590690326231"},{"denom":"ASSET7","index":"0.000005499740683011"},{"denom":"ASSET8","index":"0.000007176593065360"},{"denom":"ASSET9","index":"0.000003098765751537"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003185213515607"},{"denom":"ASSET1","index":"0.000027035699090666"},{"denom":"ASSET10","index":"0.000021635640181728"},{"denom":"ASSET11","index":"0.000026880669357351"},{"denom":"ASSET12","index":"0.000025658872180332"},{"denom":"ASSET13","index":"0.000008444958797633"},{"denom":"ASSET14","index":"0.000024662649108986"},{"denom":"ASSET15","index":"0.000019476753279332"},{"denom":"ASSET16","index":"0.000011989846651744"},{"denom":"ASSET17","index":"0.000009429633404312"},{"denom":"ASSET18","index":"0.000003886090392826"},{"denom":"ASSET2","index":"0.000008191890279929"},{"denom":"ASSET3","index":"0.000002271981699175"},{"denom":"ASSET4","index":"0.000021916623044014"},{"denom":"ASSET5","index":"0.000001770727550439"},{"denom":"ASSET6","index":"0.000007144791673859"},{"denom":"ASSET7","index":"0.000011230376410345"},{"denom":"ASSET8","index":"0.000015353061978158"},{"denom":"ASSET9","index":"0.000006513931773648"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001736464555496"},{"denom":"ASSET1","index":"0.000014486324003877"},{"denom":"ASSET10","index":"0.000010092542477093"},{"denom":"ASSET11","index":"0.000014014496766071"},{"denom":"ASSET12","index":"0.000012620063107870"},{"denom":"ASSET13","index":"0.000004342915393341"},{"denom":"ASSET14","index":"0.000013091890345676"},{"denom":"ASSET15","index":"0.000009359368553661"},{"denom":"ASSET16","index":"0.000006524897117620"},{"denom":"ASSET17","index":"0.000004634080157191"},{"denom":"ASSET18","index":"0.000002206537788701"},{"denom":"ASSET2","index":"0.000004276263218483"},{"denom":"ASSET3","index":"0.000001250605280877"},{"denom":"ASSET4","index":"0.000011772878885340"},{"denom":"ASSET5","index":"0.000000969964544635"},{"denom":"ASSET6","index":"0.000003951772367204"},{"denom":"ASSET7","index":"0.000006051315875212"},{"denom":"ASSET8","index":"0.000007896528716001"},{"denom":"ASSET9","index":"0.000003409784945337"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003356675502673"},{"denom":"ASSET1","index":"0.000028477076245214"},{"denom":"ASSET10","index":"0.000022663760086849"},{"denom":"ASSET11","index":"0.000028282539274294"},{"denom":"ASSET12","index":"0.000026934248109484"},{"denom":"ASSET13","index":"0.000008880550781135"},{"denom":"ASSET14","index":"0.000025969128454053"},{"denom":"ASSET15","index":"0.000020425731449718"},{"denom":"ASSET16","index":"0.000012636600959200"},{"denom":"ASSET17","index":"0.000009896936242996"},{"denom":"ASSET18","index":"0.000004102733083140"},{"denom":"ASSET2","index":"0.000008619316582261"},{"denom":"ASSET3","index":"0.000002396767404444"},{"denom":"ASSET4","index":"0.000023088672429632"},{"denom":"ASSET5","index":"0.000001866260713425"},{"denom":"ASSET6","index":"0.000007536521735823"},{"denom":"ASSET7","index":"0.000011831316132227"},{"denom":"ASSET8","index":"0.000016143846449802"},{"denom":"ASSET9","index":"0.000006854365607618"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001432199402946"},{"denom":"ASSET1","index":"0.000011943338809449"},{"denom":"ASSET10","index":"0.000008321234131428"},{"denom":"ASSET11","index":"0.000011554338026882"},{"denom":"ASSET12","index":"0.000010404248756685"},{"denom":"ASSET13","index":"0.000003580160245814"},{"denom":"ASSET14","index":"0.000010793249539252"},{"denom":"ASSET15","index":"0.000007717099003024"},{"denom":"ASSET16","index":"0.000005380388215223"},{"denom":"ASSET17","index":"0.000003821002469456"},{"denom":"ASSET18","index":"0.000001819847139312"},{"denom":"ASSET2","index":"0.000003525361874705"},{"denom":"ASSET3","index":"0.000001031021204577"},{"denom":"ASSET4","index":"0.000009706076917365"},{"denom":"ASSET5","index":"0.000000800326827437"},{"denom":"ASSET6","index":"0.000003258135250159"},{"denom":"ASSET7","index":"0.000004989357863356"},{"denom":"ASSET8","index":"0.000006510858315517"},{"denom":"ASSET9","index":"0.000002812306527182"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000002962853679956"},{"denom":"ASSET1","index":"0.000025162993314326"},{"denom":"ASSET10","index":"0.000020199688926412"},{"denom":"ASSET11","index":"0.000025035647772320"},{"denom":"ASSET12","index":"0.000023929456511577"},{"denom":"ASSET13","index":"0.000007867725037604"},{"denom":"ASSET14","index":"0.000022960507028012"},{"denom":"ASSET15","index":"0.000018173489333858"},{"denom":"ASSET16","index":"0.000011155286879957"},{"denom":"ASSET17","index":"0.000008793607250882"},{"denom":"ASSET18","index":"0.000003611579051495"},{"denom":"ASSET2","index":"0.000007628670547867"},{"denom":"ASSET3","index":"0.000002114031306235"},{"denom":"ASSET4","index":"0.000020398130246320"},{"denom":"ASSET5","index":"0.000001647096325587"},{"denom":"ASSET6","index":"0.000006645213242757"},{"denom":"ASSET7","index":"0.000010450616802650"},{"denom":"ASSET8","index":"0.000014303332598966"},{"denom":"ASSET9","index":"0.000006067112886031"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001597673370668"},{"denom":"ASSET1","index":"0.000013327099930964"},{"denom":"ASSET10","index":"0.000009285285696821"},{"denom":"ASSET11","index":"0.000012892979142852"},{"denom":"ASSET12","index":"0.000011609669101507"},{"denom":"ASSET13","index":"0.000003995544306884"},{"denom":"ASSET14","index":"0.000012043789889618"},{"denom":"ASSET15","index":"0.000008610289110917"},{"denom":"ASSET16","index":"0.000006002842621820"},{"denom":"ASSET17","index":"0.000004263637708946"},{"denom":"ASSET18","index":"0.000002030433278566"},{"denom":"ASSET2","index":"0.000003934304697275"},{"denom":"ASSET3","index":"0.000001149943780421"},{"denom":"ASSET4","index":"0.000010829884739162"},{"denom":"ASSET5","index":"0.000000892737420067"},{"denom":"ASSET6","index":"0.000003634911050302"},{"denom":"ASSET7","index":"0.000005567360953495"},{"denom":"ASSET8","index":"0.000007264378579749"},{"denom":"ASSET9","index":"0.000003138189772368"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003135234009226"},{"denom":"ASSET1","index":"0.000026602125077525"},{"denom":"ASSET10","index":"0.000021213712135644"},{"denom":"ASSET11","index":"0.000026430841190504"},{"denom":"ASSET12","index":"0.000025191219856579"},{"denom":"ASSET13","index":"0.000008300995957475"},{"denom":"ASSET14","index":"0.000024262534835813"},{"denom":"ASSET15","index":"0.000019110376679732"},{"denom":"ASSET16","index":"0.000011801461546978"},{"denom":"ASSET17","index":"0.000009257538829689"},{"denom":"ASSET18","index":"0.000003829421505073"},{"denom":"ASSET2","index":"0.000008055136326188"},{"denom":"ASSET3","index":"0.000002237228869924"},{"denom":"ASSET4","index":"0.000021566736915931"},{"denom":"ASSET5","index":"0.000001743257901616"},{"denom":"ASSET6","index":"0.000007036288319926"},{"denom":"ASSET7","index":"0.000011051703047857"},{"denom":"ASSET8","index":"0.000015089589803941"},{"denom":"ASSET9","index":"0.000006406386950018"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001689516061942"},{"denom":"ASSET1","index":"0.000014086551658080"},{"denom":"ASSET10","index":"0.000009813816295422"},{"denom":"ASSET11","index":"0.000013627312671286"},{"denom":"ASSET12","index":"0.000012271349136594"},{"denom":"ASSET13","index":"0.000004223185893030"},{"denom":"ASSET14","index":"0.000012729983861563"},{"denom":"ASSET15","index":"0.000009101391604066"},{"denom":"ASSET16","index":"0.000006345353421478"},{"denom":"ASSET17","index":"0.000004506584688828"},{"denom":"ASSET18","index":"0.000002146942263262"},{"denom":"ASSET2","index":"0.000004157925615959"},{"denom":"ASSET3","index":"0.000001216379053179"},{"denom":"ASSET4","index":"0.000011447740269489"},{"denom":"ASSET5","index":"0.000000943856970227"},{"denom":"ASSET6","index":"0.000003842500943451"},{"denom":"ASSET7","index":"0.000005884905911035"},{"denom":"ASSET8","index":"0.000007678959268655"},{"denom":"ASSET9","index":"0.000003316793155937"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003297864217859"},{"denom":"ASSET1","index":"0.000027973253972789"},{"denom":"ASSET10","index":"0.000022291630953866"},{"denom":"ASSET11","index":"0.000027789008146512"},{"denom":"ASSET12","index":"0.000026479178332828"},{"denom":"ASSET13","index":"0.000008727103479255"},{"denom":"ASSET14","index":"0.000025511286037616"},{"denom":"ASSET15","index":"0.000020085740117730"},{"denom":"ASSET16","index":"0.000012411485442612"},{"denom":"ASSET17","index":"0.000009730550155880"},{"denom":"ASSET18","index":"0.000004028926705548"},{"denom":"ASSET2","index":"0.000008468714781887"},{"denom":"ASSET3","index":"0.000002353891879987"},{"denom":"ASSET4","index":"0.000022679492169342"},{"denom":"ASSET5","index":"0.000001833514119464"},{"denom":"ASSET6","index":"0.000007400677249018"},{"denom":"ASSET7","index":"0.000011621769805761"},{"denom":"ASSET8","index":"0.000015864980999233"},{"denom":"ASSET9","index":"0.000006736116007098"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001411859688057"},{"denom":"ASSET1","index":"0.000011770485537623"},{"denom":"ASSET10","index":"0.000008200497469250"},{"denom":"ASSET11","index":"0.000011386615852852"},{"denom":"ASSET12","index":"0.000010253874969484"},{"denom":"ASSET13","index":"0.000003528347966974"},{"denom":"ASSET14","index":"0.000010637094027671"},{"denom":"ASSET15","index":"0.000007605174144562"},{"denom":"ASSET16","index":"0.000005302606662519"},{"denom":"ASSET17","index":"0.000003765826670265"},{"denom":"ASSET18","index":"0.000001793777493075"},{"denom":"ASSET2","index":"0.000003474345960472"},{"denom":"ASSET3","index":"0.000001016278724767"},{"denom":"ASSET4","index":"0.000009565512043233"},{"denom":"ASSET5","index":"0.000000788559420242"},{"denom":"ASSET6","index":"0.000003210842193807"},{"denom":"ASSET7","index":"0.000004917435724579"},{"denom":"ASSET8","index":"0.000006416479374940"},{"denom":"ASSET9","index":"0.000002771018622781"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000002930820438736"},{"denom":"ASSET1","index":"0.000024889799880283"},{"denom":"ASSET10","index":"0.000019988623694797"},{"denom":"ASSET11","index":"0.000024765615752571"},{"denom":"ASSET12","index":"0.000023676022623299"},{"denom":"ASSET13","index":"0.000007783195940338"},{"denom":"ASSET14","index":"0.000022712072914709"},{"denom":"ASSET15","index":"0.000017982209004670"},{"denom":"ASSET16","index":"0.000011033267632466"},{"denom":"ASSET17","index":"0.000008700651286884"},{"denom":"ASSET18","index":"0.000003571624768330"},{"denom":"ASSET2","index":"0.000007546215495169"},{"denom":"ASSET3","index":"0.000002090977414753"},{"denom":"ASSET4","index":"0.000020176663420937"},{"denom":"ASSET5","index":"0.000001628342560149"},{"denom":"ASSET6","index":"0.000006572371850885"},{"denom":"ASSET7","index":"0.000010337273058537"},{"denom":"ASSET8","index":"0.000014149515747938"},{"denom":"ASSET9","index":"0.000006000707920121"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001726304213109"},{"denom":"ASSET1","index":"0.000014431903221591"},{"denom":"ASSET10","index":"0.000010055058078201"},{"denom":"ASSET11","index":"0.000013959161452463"},{"denom":"ASSET12","index":"0.000012572806376704"},{"denom":"ASSET13","index":"0.000004323728090679"},{"denom":"ASSET14","index":"0.000013040236440562"},{"denom":"ASSET15","index":"0.000009322042750788"},{"denom":"ASSET16","index":"0.000006501527251832"},{"denom":"ASSET17","index":"0.000004615871880590"},{"denom":"ASSET18","index":"0.000002199045982237"},{"denom":"ASSET2","index":"0.000004259987627426"},{"denom":"ASSET3","index":"0.000001242939033438"},{"denom":"ASSET4","index":"0.000011728245238599"},{"denom":"ASSET5","index":"0.000000966730359341"},{"denom":"ASSET6","index":"0.000003935973605888"},{"denom":"ASSET7","index":"0.000006028785482704"},{"denom":"ASSET8","index":"0.000007866635506506"},{"denom":"ASSET9","index":"0.000003394179668236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003313075721980"},{"denom":"ASSET1","index":"0.000028138029356789"},{"denom":"ASSET10","index":"0.000022370607880245"},{"denom":"ASSET11","index":"0.000027937207217164"},{"denom":"ASSET12","index":"0.000026595598409551"},{"denom":"ASSET13","index":"0.000008769097729958"},{"denom":"ASSET14","index":"0.000025655242037122"},{"denom":"ASSET15","index":"0.000020162686714325"},{"denom":"ASSET16","index":"0.000012488922131836"},{"denom":"ASSET17","index":"0.000009772018779266"},{"denom":"ASSET18","index":"0.000004056016110298"},{"denom":"ASSET2","index":"0.000008514325121927"},{"denom":"ASSET3","index":"0.000002365037757716"},{"denom":"ASSET4","index":"0.000022813272666626"},{"denom":"ASSET5","index":"0.000001844445619129"},{"denom":"ASSET6","index":"0.000007446834645040"},{"denom":"ASSET7","index":"0.000011690909413493"},{"denom":"ASSET8","index":"0.000015945057917181"},{"denom":"ASSET9","index":"0.000006769080892636"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001630255611072"},{"denom":"ASSET1","index":"0.000013593541268721"},{"denom":"ASSET10","index":"0.000009470169531707"},{"denom":"ASSET11","index":"0.000013149994246609"},{"denom":"ASSET12","index":"0.000011841383661505"},{"denom":"ASSET13","index":"0.000004074904678306"},{"denom":"ASSET14","index":"0.000012284196334242"},{"denom":"ASSET15","index":"0.000008782818517308"},{"denom":"ASSET16","index":"0.000006123739432762"},{"denom":"ASSET17","index":"0.000004348816994942"},{"denom":"ASSET18","index":"0.000002071599585061"},{"denom":"ASSET2","index":"0.000004012484981486"},{"denom":"ASSET3","index":"0.000001173490300222"},{"denom":"ASSET4","index":"0.000011046817638451"},{"denom":"ASSET5","index":"0.000000910593224203"},{"denom":"ASSET6","index":"0.000003707729991128"},{"denom":"ASSET7","index":"0.000005678723711902"},{"denom":"ASSET8","index":"0.000007410319536635"},{"denom":"ASSET9","index":"0.000003200294573447"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003344718004914"},{"denom":"ASSET1","index":"0.000028399683918161"},{"denom":"ASSET10","index":"0.000022773943545696"},{"denom":"ASSET11","index":"0.000028249525692452"},{"denom":"ASSET12","index":"0.000026989510465266"},{"denom":"ASSET13","index":"0.000008877216029957"},{"denom":"ASSET14","index":"0.000025911788013611"},{"denom":"ASSET15","index":"0.000020494299775586"},{"denom":"ASSET16","index":"0.000012591463658113"},{"denom":"ASSET17","index":"0.000009918208342143"},{"denom":"ASSET18","index":"0.000004078542450859"},{"denom":"ASSET2","index":"0.000008608606683653"},{"denom":"ASSET3","index":"0.000002386103437058"},{"denom":"ASSET4","index":"0.000023022167148602"},{"denom":"ASSET5","index":"0.000001858883946943"},{"denom":"ASSET6","index":"0.000007501347044310"},{"denom":"ASSET7","index":"0.000011795380538461"},{"denom":"ASSET8","index":"0.000016137954986293"},{"denom":"ASSET9","index":"0.000006845854741756"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001401914217082"},{"denom":"ASSET1","index":"0.000011691084141249"},{"denom":"ASSET10","index":"0.000008144816837289"},{"denom":"ASSET11","index":"0.000011309282624399"},{"denom":"ASSET12","index":"0.000010184195671197"},{"denom":"ASSET13","index":"0.000003504785542706"},{"denom":"ASSET14","index":"0.000010565150621491"},{"denom":"ASSET15","index":"0.000007553913381055"},{"denom":"ASSET16","index":"0.000005266490546178"},{"denom":"ASSET17","index":"0.000003740131045332"},{"denom":"ASSET18","index":"0.000001781176034264"},{"denom":"ASSET2","index":"0.000003450605283109"},{"denom":"ASSET3","index":"0.000001009107335001"},{"denom":"ASSET4","index":"0.000009501016460336"},{"denom":"ASSET5","index":"0.000000783074064494"},{"denom":"ASSET6","index":"0.000003189016217240"},{"denom":"ASSET7","index":"0.000004883842462771"},{"denom":"ASSET8","index":"0.000006372953035143"},{"denom":"ASSET9","index":"0.000002752187874236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000002824624853437"},{"denom":"ASSET1","index":"0.000023976113690517"},{"denom":"ASSET10","index":"0.000019183481330878"},{"denom":"ASSET11","index":"0.000023837782846342"},{"denom":"ASSET12","index":"0.000022753084719682"},{"denom":"ASSET13","index":"0.000007489057952554"},{"denom":"ASSET14","index":"0.000021872315483076"},{"denom":"ASSET15","index":"0.000017271123733000"},{"denom":"ASSET16","index":"0.000010633084765839"},{"denom":"ASSET17","index":"0.000008361522972460"},{"denom":"ASSET18","index":"0.000003446219629870"},{"denom":"ASSET2","index":"0.000007263651822688"},{"denom":"ASSET3","index":"0.000002015414858276"},{"denom":"ASSET4","index":"0.000019437236646346"},{"denom":"ASSET5","index":"0.000001569802896992"},{"denom":"ASSET6","index":"0.000006336500403946"},{"denom":"ASSET7","index":"0.000009959182045961"},{"denom":"ASSET8","index":"0.000013614498977085"},{"denom":"ASSET9","index":"0.000005776799011181"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001454934724421"},{"denom":"ASSET1","index":"0.000012138554241533"},{"denom":"ASSET10","index":"0.000008457231031836"},{"denom":"ASSET11","index":"0.000011742676653726"},{"denom":"ASSET12","index":"0.000010575345305063"},{"denom":"ASSET13","index":"0.000003639028595615"},{"denom":"ASSET14","index":"0.000010969531108307"},{"denom":"ASSET15","index":"0.000007843113235366"},{"denom":"ASSET16","index":"0.000005467847708521"},{"denom":"ASSET17","index":"0.000003882645572727"},{"denom":"ASSET18","index":"0.000001849120527665"},{"denom":"ASSET2","index":"0.000003583199705027"},{"denom":"ASSET3","index":"0.000001047214644670"},{"denom":"ASSET4","index":"0.000009864795788485"},{"denom":"ASSET5","index":"0.000000813748374938"},{"denom":"ASSET6","index":"0.000003310822390339"},{"denom":"ASSET7","index":"0.000005070278336150"},{"denom":"ASSET8","index":"0.000006616569426988"},{"denom":"ASSET9","index":"0.000002857424127380"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003026822568793"},{"denom":"ASSET1","index":"0.000025710421285725"},{"denom":"ASSET10","index":"0.000020652297735472"},{"denom":"ASSET11","index":"0.000025583400849235"},{"denom":"ASSET12","index":"0.000024460820755928"},{"denom":"ASSET13","index":"0.000008041083722059"},{"denom":"ASSET14","index":"0.000023461074878675"},{"denom":"ASSET15","index":"0.000018578170233019"},{"denom":"ASSET16","index":"0.000011396689804799"},{"denom":"ASSET17","index":"0.000008988134494295"},{"denom":"ASSET18","index":"0.000003688816665807"},{"denom":"ASSET2","index":"0.000007796110853756"},{"denom":"ASSET3","index":"0.000002159003644915"},{"denom":"ASSET4","index":"0.000020841789260406"},{"denom":"ASSET5","index":"0.000001683251281734"},{"denom":"ASSET6","index":"0.000006788484398340"},{"denom":"ASSET7","index":"0.000010677121165375"},{"denom":"ASSET8","index":"0.000014616905179383"},{"denom":"ASSET9","index":"0.000006199084273401"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001547699786520"},{"denom":"ASSET1","index":"0.000012908880828127"},{"denom":"ASSET10","index":"0.000008993933542043"},{"denom":"ASSET11","index":"0.000012488059147042"},{"denom":"ASSET12","index":"0.000011245681057538"},{"denom":"ASSET13","index":"0.000003869751640144"},{"denom":"ASSET14","index":"0.000011665498390936"},{"denom":"ASSET15","index":"0.000008340103197445"},{"denom":"ASSET16","index":"0.000005815173110936"},{"denom":"ASSET17","index":"0.000004129877691221"},{"denom":"ASSET18","index":"0.000001966512772230"},{"denom":"ASSET2","index":"0.000003810495126579"},{"denom":"ASSET3","index":"0.000001114825933185"},{"denom":"ASSET4","index":"0.000010490411596498"},{"denom":"ASSET5","index":"0.000000864743358984"},{"denom":"ASSET6","index":"0.000003521242992563"},{"denom":"ASSET7","index":"0.000005392342734476"},{"denom":"ASSET8","index":"0.000007036459899001"},{"denom":"ASSET9","index":"0.000003039156102537"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003086703561215"},{"denom":"ASSET1","index":"0.000026199550261878"},{"denom":"ASSET10","index":"0.000020936384793003"},{"denom":"ASSET11","index":"0.000026042194398185"},{"denom":"ASSET12","index":"0.000024843424443974"},{"denom":"ASSET13","index":"0.000008180415813801"},{"denom":"ASSET14","index":"0.000023898307142718"},{"denom":"ASSET15","index":"0.000018852934413068"},{"denom":"ASSET16","index":"0.000011621232923996"},{"denom":"ASSET17","index":"0.000009129550402498"},{"denom":"ASSET18","index":"0.000003767892160935"},{"denom":"ASSET2","index":"0.000007936188126371"},{"denom":"ASSET3","index":"0.000002203575710986"},{"denom":"ASSET4","index":"0.000021240180347210"},{"denom":"ASSET5","index":"0.000001716192200569"},{"denom":"ASSET6","index":"0.000006926674957775"},{"denom":"ASSET7","index":"0.000010883333770048"},{"denom":"ASSET8","index":"0.000014871024805414"},{"denom":"ASSET9","index":"0.000006311583255107"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001511232509129"},{"denom":"ASSET1","index":"0.000012598757210652"},{"denom":"ASSET10","index":"0.000008777665278232"},{"denom":"ASSET11","index":"0.000012187849575766"},{"denom":"ASSET12","index":"0.000010975073643675"},{"denom":"ASSET13","index":"0.000003776959255615"},{"denom":"ASSET14","index":"0.000011385233267090"},{"denom":"ASSET15","index":"0.000008140359504707"},{"denom":"ASSET16","index":"0.000005675412369706"},{"denom":"ASSET17","index":"0.000004030784481533"},{"denom":"ASSET18","index":"0.000001920145446758"},{"denom":"ASSET2","index":"0.000003719113035170"},{"denom":"ASSET3","index":"0.000001087858016388"},{"denom":"ASSET4","index":"0.000010238531681628"},{"denom":"ASSET5","index":"0.000000844504951067"},{"denom":"ASSET6","index":"0.000003436614036185"},{"denom":"ASSET7","index":"0.000005263507386191"},{"denom":"ASSET8","index":"0.000006867991992072"},{"denom":"ASSET9","index":"0.000002966364157912"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003050294937135"},{"denom":"ASSET1","index":"0.000025887230915803"},{"denom":"ASSET10","index":"0.000020718160619670"},{"denom":"ASSET11","index":"0.000025739685005463"},{"denom":"ASSET12","index":"0.000024570727404900"},{"denom":"ASSET13","index":"0.000008086966483560"},{"denom":"ASSET14","index":"0.000023616194455668"},{"denom":"ASSET15","index":"0.000018651338246959"},{"denom":"ASSET16","index":"0.000011480437826441"},{"denom":"ASSET17","index":"0.000009029688158762"},{"denom":"ASSET18","index":"0.000003721440260869"},{"denom":"ASSET2","index":"0.000007844134626406"},{"denom":"ASSET3","index":"0.000002176540273945"},{"denom":"ASSET4","index":"0.000020986445628896"},{"denom":"ASSET5","index":"0.000001695800268231"},{"denom":"ASSET6","index":"0.000006841569437153"},{"denom":"ASSET7","index":"0.000010753447417762"},{"denom":"ASSET8","index":"0.000014701309289649"},{"denom":"ASSET9","index":"0.000006238283490477"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001535139489204"},{"denom":"ASSET1","index":"0.000012800845981431"},{"denom":"ASSET10","index":"0.000008918122145344"},{"denom":"ASSET11","index":"0.000012383184798277"},{"denom":"ASSET12","index":"0.000011151318949088"},{"denom":"ASSET13","index":"0.000003837555421617"},{"denom":"ASSET14","index":"0.000011567806926671"},{"denom":"ASSET15","index":"0.000008270512670342"},{"denom":"ASSET16","index":"0.000005766305379776"},{"denom":"ASSET17","index":"0.000004095074044376"},{"denom":"ASSET18","index":"0.000001950454261216"},{"denom":"ASSET2","index":"0.000003778308540299"},{"denom":"ASSET3","index":"0.000001105159647558"},{"denom":"ASSET4","index":"0.000010402813795010"},{"denom":"ASSET5","index":"0.000000857613272150"},{"denom":"ASSET6","index":"0.000003491459778273"},{"denom":"ASSET7","index":"0.000005347470991052"},{"denom":"ASSET8","index":"0.000006978226734264"},{"denom":"ASSET9","index":"0.000003013965111016"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000002944371933765"},{"denom":"ASSET1","index":"0.000024968433937291"},{"denom":"ASSET10","index":"0.000019851368221906"},{"denom":"ASSET11","index":"0.000024791952485266"},{"denom":"ASSET12","index":"0.000023600048189968"},{"denom":"ASSET13","index":"0.000007784111470281"},{"denom":"ASSET14","index":"0.000022766914870589"},{"denom":"ASSET15","index":"0.000017894900322998"},{"denom":"ASSET16","index":"0.000011081662183182"},{"denom":"ASSET17","index":"0.000008672317440622"},{"denom":"ASSET18","index":"0.000003599691097086"},{"denom":"ASSET2","index":"0.000007555380586873"},{"denom":"ASSET3","index":"0.000002101847815188"},{"denom":"ASSET4","index":"0.000020244169178497"},{"denom":"ASSET5","index":"0.000001637098640985"},{"denom":"ASSET6","index":"0.000006609166185649"},{"denom":"ASSET7","index":"0.000010374399402552"},{"denom":"ASSET8","index":"0.000014150620453773"},{"denom":"ASSET9","index":"0.000006009906313007"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001449310882227"},{"denom":"ASSET1","index":"0.000012082282763787"},{"denom":"ASSET10","index":"0.000008417588941675"},{"denom":"ASSET11","index":"0.000011688148164511"},{"denom":"ASSET12","index":"0.000010525234539176"},{"denom":"ASSET13","index":"0.000003621923721366"},{"denom":"ASSET14","index":"0.000010918286351091"},{"denom":"ASSET15","index":"0.000007806355476589"},{"denom":"ASSET16","index":"0.000005442630668295"},{"denom":"ASSET17","index":"0.000003865550877512"},{"denom":"ASSET18","index":"0.000001841279906781"},{"denom":"ASSET2","index":"0.000003566701565973"},{"denom":"ASSET3","index":"0.000001043265621984"},{"denom":"ASSET4","index":"0.000009818715786353"},{"denom":"ASSET5","index":"0.000000809924945764"},{"denom":"ASSET6","index":"0.000003295463332131"},{"denom":"ASSET7","index":"0.000005047413281659"},{"denom":"ASSET8","index":"0.000006586595514820"},{"denom":"ASSET9","index":"0.000002844482396421"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000002938303361264"},{"denom":"ASSET1","index":"0.000024939884544734"},{"denom":"ASSET10","index":"0.000019970621943114"},{"denom":"ASSET11","index":"0.000024800280810198"},{"denom":"ASSET12","index":"0.000023679745396670"},{"denom":"ASSET13","index":"0.000007792253675830"},{"denom":"ASSET14","index":"0.000022752532795075"},{"denom":"ASSET15","index":"0.000017976341528508"},{"denom":"ASSET16","index":"0.000011059313296089"},{"denom":"ASSET17","index":"0.000008702160495382"},{"denom":"ASSET18","index":"0.000003584018468858"},{"denom":"ASSET2","index":"0.000007557839698908"},{"denom":"ASSET3","index":"0.000002096442663552"},{"denom":"ASSET4","index":"0.000020217858094708"},{"denom":"ASSET5","index":"0.000001633684136995"},{"denom":"ASSET6","index":"0.000006589976909255"},{"denom":"ASSET7","index":"0.000010359339015905"},{"denom":"ASSET8","index":"0.000014165755580726"},{"denom":"ASSET9","index":"0.000006010291774725"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001731982701050"},{"denom":"ASSET1","index":"0.000014440617081118"},{"denom":"ASSET10","index":"0.000010060714066040"},{"denom":"ASSET11","index":"0.000013969585405988"},{"denom":"ASSET12","index":"0.000012579542501729"},{"denom":"ASSET13","index":"0.000004329188348588"},{"denom":"ASSET14","index":"0.000013049805772821"},{"denom":"ASSET15","index":"0.000009329961826155"},{"denom":"ASSET16","index":"0.000006505308583448"},{"denom":"ASSET17","index":"0.000004619645074851"},{"denom":"ASSET18","index":"0.000002200709164068"},{"denom":"ASSET2","index":"0.000004262337197306"},{"denom":"ASSET3","index":"0.000001247119753241"},{"denom":"ASSET4","index":"0.000011735066464260"},{"denom":"ASSET5","index":"0.000000967420683506"},{"denom":"ASSET6","index":"0.000003938839097420"},{"denom":"ASSET7","index":"0.000006032740100243"},{"denom":"ASSET8","index":"0.000007872299366576"},{"denom":"ASSET9","index":"0.000003400187866969"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003329715418659"},{"denom":"ASSET1","index":"0.000028238028843607"},{"denom":"ASSET10","index":"0.000022458342297172"},{"denom":"ASSET11","index":"0.000028040237741643"},{"denom":"ASSET12","index":"0.000026695793846360"},{"denom":"ASSET13","index":"0.000008804253880653"},{"denom":"ASSET14","index":"0.000025748953032298"},{"denom":"ASSET15","index":"0.000020243324641083"},{"denom":"ASSET16","index":"0.000012532507824147"},{"denom":"ASSET17","index":"0.000009809802042254"},{"denom":"ASSET18","index":"0.000004070975493464"},{"denom":"ASSET2","index":"0.000008545109234155"},{"denom":"ASSET3","index":"0.000002377197518329"},{"denom":"ASSET4","index":"0.000022894451839245"},{"denom":"ASSET5","index":"0.000001851122407848"},{"denom":"ASSET6","index":"0.000007473999475476"},{"denom":"ASSET7","index":"0.000011732969702935"},{"denom":"ASSET8","index":"0.000016005536556726"},{"denom":"ASSET9","index":"0.000006797137295338"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001649988907243"},{"denom":"ASSET1","index":"0.000013756519537767"},{"denom":"ASSET10","index":"0.000009584361794534"},{"denom":"ASSET11","index":"0.000013307506163009"},{"denom":"ASSET12","index":"0.000011983307415229"},{"denom":"ASSET13","index":"0.000004124070634826"},{"denom":"ASSET14","index":"0.000012431118612277"},{"denom":"ASSET15","index":"0.000008888300900330"},{"denom":"ASSET16","index":"0.000006196625007203"},{"denom":"ASSET17","index":"0.000004401172597026"},{"denom":"ASSET18","index":"0.000002096597926581"},{"denom":"ASSET2","index":"0.000004060355216185"},{"denom":"ASSET3","index":"0.000001187751577673"},{"denom":"ASSET4","index":"0.000011179050527108"},{"denom":"ASSET5","index":"0.000000922070303720"},{"denom":"ASSET6","index":"0.000003752597722375"},{"denom":"ASSET7","index":"0.000005747010543590"},{"denom":"ASSET8","index":"0.000007499184556200"},{"denom":"ASSET9","index":"0.000003238666751267"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003269082759145"},{"denom":"ASSET1","index":"0.000027736662456421"},{"denom":"ASSET10","index":"0.000022145815740722"},{"denom":"ASSET11","index":"0.000027564157079872"},{"denom":"ASSET12","index":"0.000026286254396013"},{"denom":"ASSET13","index":"0.000008658548128401"},{"denom":"ASSET14","index":"0.000025298253418871"},{"denom":"ASSET15","index":"0.000019946084058089"},{"denom":"ASSET16","index":"0.000012303266096103"},{"denom":"ASSET17","index":"0.000009659898104260"},{"denom":"ASSET18","index":"0.000003991565584036"},{"denom":"ASSET2","index":"0.000008399501371576"},{"denom":"ASSET3","index":"0.000002333103515211"},{"denom":"ASSET4","index":"0.000022486071398850"},{"denom":"ASSET5","index":"0.000001817550334619"},{"denom":"ASSET6","index":"0.000007334517845971"},{"denom":"ASSET7","index":"0.000011522603065826"},{"denom":"ASSET8","index":"0.000015739883934035"},{"denom":"ASSET9","index":"0.000006680430297789"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001707974867576"},{"denom":"ASSET1","index":"0.000014238090744503"},{"denom":"ASSET10","index":"0.000009920037235236"},{"denom":"ASSET11","index":"0.000013773690453356"},{"denom":"ASSET12","index":"0.000012403461252069"},{"denom":"ASSET13","index":"0.000004268385028930"},{"denom":"ASSET14","index":"0.000012866619831208"},{"denom":"ASSET15","index":"0.000009199844270355"},{"denom":"ASSET16","index":"0.000006414063379473"},{"denom":"ASSET17","index":"0.000004555220502875"},{"denom":"ASSET18","index":"0.000002169891734707"},{"denom":"ASSET2","index":"0.000004203195148489"},{"denom":"ASSET3","index":"0.000001229294888332"},{"denom":"ASSET4","index":"0.000011570893350426"},{"denom":"ASSET5","index":"0.000000954255678468"},{"denom":"ASSET6","index":"0.000003884075162326"},{"denom":"ASSET7","index":"0.000005948421376317"},{"denom":"ASSET8","index":"0.000007761941764609"},{"denom":"ASSET9","index":"0.000003352622422724"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003075387603983"},{"denom":"ASSET1","index":"0.000026047450678709"},{"denom":"ASSET10","index":"0.000020531243448578"},{"denom":"ASSET11","index":"0.000025816927992783"},{"denom":"ASSET12","index":"0.000024485469945303"},{"denom":"ASSET13","index":"0.000008098391373250"},{"denom":"ASSET14","index":"0.000023735883509134"},{"denom":"ASSET15","index":"0.000018540774078871"},{"denom":"ASSET16","index":"0.000011572711306393"},{"denom":"ASSET17","index":"0.000008997644319689"},{"denom":"ASSET18","index":"0.000003770348288081"},{"denom":"ASSET2","index":"0.000007868945206789"},{"denom":"ASSET3","index":"0.000002196489262864"},{"denom":"ASSET4","index":"0.000021122354693053"},{"denom":"ASSET5","index":"0.000001710501624761"},{"denom":"ASSET6","index":"0.000006909892735753"},{"denom":"ASSET7","index":"0.000010827333344051"},{"denom":"ASSET8","index":"0.000014723239896475"},{"denom":"ASSET9","index":"0.000006260042064096"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001779156074987"},{"denom":"ASSET1","index":"0.000014834764457923"},{"denom":"ASSET10","index":"0.000010335215703318"},{"denom":"ASSET11","index":"0.000014351450406057"},{"denom":"ASSET12","index":"0.000012923397473821"},{"denom":"ASSET13","index":"0.000004447014618532"},{"denom":"ASSET14","index":"0.000013405835956753"},{"denom":"ASSET15","index":"0.000009584853126417"},{"denom":"ASSET16","index":"0.000006682342108415"},{"denom":"ASSET17","index":"0.000004745583625211"},{"denom":"ASSET18","index":"0.000002260718988984"},{"denom":"ASSET2","index":"0.000004378720241638"},{"denom":"ASSET3","index":"0.000001280957351233"},{"denom":"ASSET4","index":"0.000012055708659691"},{"denom":"ASSET5","index":"0.000000993770740704"},{"denom":"ASSET6","index":"0.000004046879615447"},{"denom":"ASSET7","index":"0.000006197276918679"},{"denom":"ASSET8","index":"0.000008086754679418"},{"denom":"ASSET9","index":"0.000003492644479883"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003478645419875"},{"denom":"ASSET1","index":"0.000029510728520321"},{"denom":"ASSET10","index":"0.000023521700007579"},{"denom":"ASSET11","index":"0.000029317721838376"},{"denom":"ASSET12","index":"0.000027938200533330"},{"denom":"ASSET13","index":"0.000009206643656085"},{"denom":"ASSET14","index":"0.000026913511393693"},{"denom":"ASSET15","index":"0.000021192735957156"},{"denom":"ASSET16","index":"0.000013092928863665"},{"denom":"ASSET17","index":"0.000010265835619821"},{"denom":"ASSET18","index":"0.000004249633310572"},{"denom":"ASSET2","index":"0.000008933634051769"},{"denom":"ASSET3","index":"0.000002482776919113"},{"denom":"ASSET4","index":"0.000023925662277258"},{"denom":"ASSET5","index":"0.000001933519521756"},{"denom":"ASSET6","index":"0.000007806757132876"},{"denom":"ASSET7","index":"0.000012260200744601"},{"denom":"ASSET8","index":"0.000016737737824425"},{"denom":"ASSET9","index":"0.000007106044722519"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001752700098923"},{"denom":"ASSET1","index":"0.000014612940709519"},{"denom":"ASSET10","index":"0.000010180696541309"},{"denom":"ASSET11","index":"0.000014136053678762"},{"denom":"ASSET12","index":"0.000012730078503378"},{"denom":"ASSET13","index":"0.000004380628160175"},{"denom":"ASSET14","index":"0.000013205843447004"},{"denom":"ASSET15","index":"0.000009441241121853"},{"denom":"ASSET16","index":"0.000006583285198706"},{"denom":"ASSET17","index":"0.000004674614988548"},{"denom":"ASSET18","index":"0.000002226220868286"},{"denom":"ASSET2","index":"0.000004313302932304"},{"denom":"ASSET3","index":"0.000001261225935460"},{"denom":"ASSET4","index":"0.000011875048109410"},{"denom":"ASSET5","index":"0.000000979582065531"},{"denom":"ASSET6","index":"0.000003985653489996"},{"denom":"ASSET7","index":"0.000006105276080818"},{"denom":"ASSET8","index":"0.000007965696544335"},{"denom":"ASSET9","index":"0.000003440319144236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003327512121722"},{"denom":"ASSET1","index":"0.000028211822531533"},{"denom":"ASSET10","index":"0.000022399629444355"},{"denom":"ASSET11","index":"0.000028004032167971"},{"denom":"ASSET12","index":"0.000026643127370344"},{"denom":"ASSET13","index":"0.000008791339050068"},{"denom":"ASSET14","index":"0.000025722152469956"},{"denom":"ASSET15","index":"0.000020197596080044"},{"denom":"ASSET16","index":"0.000012523737733641"},{"denom":"ASSET17","index":"0.000009790102863953"},{"denom":"ASSET18","index":"0.000004069245825383"},{"denom":"ASSET2","index":"0.000008534453115749"},{"denom":"ASSET3","index":"0.000002375171252372"},{"denom":"ASSET4","index":"0.000022873545881432"},{"denom":"ASSET5","index":"0.000001850500835715"},{"denom":"ASSET6","index":"0.000007470212303630"},{"denom":"ASSET7","index":"0.000011723166108277"},{"denom":"ASSET8","index":"0.000015981595788329"},{"denom":"ASSET9","index":"0.000006788341225254"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001434713876400"},{"denom":"ASSET1","index":"0.000011974044460331"},{"denom":"ASSET10","index":"0.000008340728508476"},{"denom":"ASSET11","index":"0.000011582406348125"},{"denom":"ASSET12","index":"0.000010430757641934"},{"denom":"ASSET13","index":"0.000003588723493535"},{"denom":"ASSET14","index":"0.000010820456951604"},{"denom":"ASSET15","index":"0.000007735822117345"},{"denom":"ASSET16","index":"0.000005393748654249"},{"denom":"ASSET17","index":"0.000003829135007959"},{"denom":"ASSET18","index":"0.000001824413186071"},{"denom":"ASSET2","index":"0.000003534437022536"},{"denom":"ASSET3","index":"0.000001033381751515"},{"denom":"ASSET4","index":"0.000009730849926555"},{"denom":"ASSET5","index":"0.000000802664249770"},{"denom":"ASSET6","index":"0.000003264943470077"},{"denom":"ASSET7","index":"0.000005002110542043"},{"denom":"ASSET8","index":"0.000006526009335083"},{"denom":"ASSET9","index":"0.000002819018886872"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000002895048613815"},{"denom":"ASSET1","index":"0.000024589366099895"},{"denom":"ASSET10","index":"0.000019676065498265"},{"denom":"ASSET11","index":"0.000024447379266412"},{"denom":"ASSET12","index":"0.000023337478265694"},{"denom":"ASSET13","index":"0.000007679998629802"},{"denom":"ASSET14","index":"0.000022431328797509"},{"denom":"ASSET15","index":"0.000017714358679290"},{"denom":"ASSET16","index":"0.000010904445776568"},{"denom":"ASSET17","index":"0.000008574179211920"},{"denom":"ASSET18","index":"0.000003534399202209"},{"denom":"ASSET2","index":"0.000007450371795821"},{"denom":"ASSET3","index":"0.000002066219984895"},{"denom":"ASSET4","index":"0.000019933989143940"},{"denom":"ASSET5","index":"0.000001610899827710"},{"denom":"ASSET6","index":"0.000006497050827728"},{"denom":"ASSET7","index":"0.000010213894093182"},{"denom":"ASSET8","index":"0.000013962110633776"},{"denom":"ASSET9","index":"0.000005925048173997"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001401536005232"},{"denom":"ASSET1","index":"0.000011690786017211"},{"denom":"ASSET10","index":"0.000008143726832164"},{"denom":"ASSET11","index":"0.000011307987636928"},{"denom":"ASSET12","index":"0.000010184289165772"},{"denom":"ASSET13","index":"0.000003503840013080"},{"denom":"ASSET14","index":"0.000010564000462344"},{"denom":"ASSET15","index":"0.000007554093843178"},{"denom":"ASSET16","index":"0.000005266564812612"},{"denom":"ASSET17","index":"0.000003738458375190"},{"denom":"ASSET18","index":"0.000001781247301804"},{"denom":"ASSET2","index":"0.000003448272506265"},{"denom":"ASSET3","index":"0.000001009476373813"},{"denom":"ASSET4","index":"0.000009498956581716"},{"denom":"ASSET5","index":"0.000000781032179127"},{"denom":"ASSET6","index":"0.000003188957474460"},{"denom":"ASSET7","index":"0.000004883766432329"},{"denom":"ASSET8","index":"0.000006371740781496"},{"denom":"ASSET9","index":"0.000002750591587361"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003071913026336"},{"denom":"ASSET1","index":"0.000026115211920195"},{"denom":"ASSET10","index":"0.000021104918039272"},{"denom":"ASSET11","index":"0.000026018207650283"},{"denom":"ASSET12","index":"0.000024942011742431"},{"denom":"ASSET13","index":"0.000008182453133262"},{"denom":"ASSET14","index":"0.000023839798810024"},{"denom":"ASSET15","index":"0.000018963275072170"},{"denom":"ASSET16","index":"0.000011567273660047"},{"denom":"ASSET17","index":"0.000009164652819502"},{"denom":"ASSET18","index":"0.000003735860972186"},{"denom":"ASSET2","index":"0.000007925194415041"},{"denom":"ASSET3","index":"0.000002190810612048"},{"denom":"ASSET4","index":"0.000021165118890878"},{"denom":"ASSET5","index":"0.000001704606606646"},{"denom":"ASSET6","index":"0.000006884812645629"},{"denom":"ASSET7","index":"0.000010842612570084"},{"denom":"ASSET8","index":"0.000014874699612932"},{"denom":"ASSET9","index":"0.000006301602876980"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001534549585700"},{"denom":"ASSET1","index":"0.000012795681230217"},{"denom":"ASSET10","index":"0.000008914897664776"},{"denom":"ASSET11","index":"0.000012378406858633"},{"denom":"ASSET12","index":"0.000011146809898878"},{"denom":"ASSET13","index":"0.000003835934265229"},{"denom":"ASSET14","index":"0.000011563204872419"},{"denom":"ASSET15","index":"0.000008267660704848"},{"denom":"ASSET16","index":"0.000005764014475342"},{"denom":"ASSET17","index":"0.000004093597891939"},{"denom":"ASSET18","index":"0.000001950065161198"},{"denom":"ASSET2","index":"0.000003777014596322"},{"denom":"ASSET3","index":"0.000001104963641508"},{"denom":"ASSET4","index":"0.000010398442163960"},{"denom":"ASSET5","index":"0.000000857413092297"},{"denom":"ASSET6","index":"0.000003490330834180"},{"denom":"ASSET7","index":"0.000005345421006692"},{"denom":"ASSET8","index":"0.000006975385280099"},{"denom":"ASSET9","index":"0.000003012817696624"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003034954909236"},{"denom":"ASSET1","index":"0.000025752158165977"},{"denom":"ASSET10","index":"0.000020556858138008"},{"denom":"ASSET11","index":"0.000025591676311293"},{"denom":"ASSET12","index":"0.000024402528250789"},{"denom":"ASSET13","index":"0.000008038375291107"},{"denom":"ASSET14","index":"0.000023488313497799"},{"denom":"ASSET15","index":"0.000018516037809802"},{"denom":"ASSET16","index":"0.000011423945454084"},{"denom":"ASSET17","index":"0.000008967524527402"},{"denom":"ASSET18","index":"0.000003706330058793"},{"denom":"ASSET2","index":"0.000007798931182527"},{"denom":"ASSET3","index":"0.000002166419358500"},{"denom":"ASSET4","index":"0.000020877722621984"},{"denom":"ASSET5","index":"0.000001687498984799"},{"denom":"ASSET6","index":"0.000006810207932767"},{"denom":"ASSET7","index":"0.000010698180555138"},{"denom":"ASSET8","index":"0.000014612921845389"},{"denom":"ASSET9","index":"0.000006203015740356"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001658482037183"},{"denom":"ASSET1","index":"0.000013862588923046"},{"denom":"ASSET10","index":"0.000009655943522610"},{"denom":"ASSET11","index":"0.000013408077810815"},{"denom":"ASSET12","index":"0.000012073555821711"},{"denom":"ASSET13","index":"0.000004153457929856"},{"denom":"ASSET14","index":"0.000012528066933942"},{"denom":"ASSET15","index":"0.000008954835955871"},{"denom":"ASSET16","index":"0.000006242274956279"},{"denom":"ASSET17","index":"0.000004433900956551"},{"denom":"ASSET18","index":"0.000002112993149414"},{"denom":"ASSET2","index":"0.000004090600010079"},{"denom":"ASSET3","index":"0.000001194300475756"},{"denom":"ASSET4","index":"0.000011266073313811"},{"denom":"ASSET5","index":"0.000000928363122855"},{"denom":"ASSET6","index":"0.000003781145635794"},{"denom":"ASSET7","index":"0.000005787763844048"},{"denom":"ASSET8","index":"0.000007557456046990"},{"denom":"ASSET9","index":"0.000003263776603787"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003188277912377"},{"denom":"ASSET1","index":"0.000027072180177666"},{"denom":"ASSET10","index":"0.000021525590492702"},{"denom":"ASSET11","index":"0.000026879695640981"},{"denom":"ASSET12","index":"0.000025588321740665"},{"denom":"ASSET13","index":"0.000008437670891103"},{"denom":"ASSET14","index":"0.000024686413843557"},{"denom":"ASSET15","index":"0.000019403734038796"},{"denom":"ASSET16","index":"0.000012012351193227"},{"denom":"ASSET17","index":"0.000009402991763462"},{"denom":"ASSET18","index":"0.000003903246578743"},{"denom":"ASSET2","index":"0.000008191237466303"},{"denom":"ASSET3","index":"0.000002276140738265"},{"denom":"ASSET4","index":"0.000021950324608304"},{"denom":"ASSET5","index":"0.000001774065663090"},{"denom":"ASSET6","index":"0.000007165524818145"},{"denom":"ASSET7","index":"0.000011244820309610"},{"denom":"ASSET8","index":"0.000015343724796373"},{"denom":"ASSET9","index":"0.000006516357987660"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001453411320498"},{"denom":"ASSET1","index":"0.000012118137400313"},{"denom":"ASSET10","index":"0.000008442891188019"},{"denom":"ASSET11","index":"0.000011723343510399"},{"denom":"ASSET12","index":"0.000010556870017106"},{"denom":"ASSET13","index":"0.000003632917795231"},{"denom":"ASSET14","index":"0.000010951256903010"},{"denom":"ASSET15","index":"0.000007829943148627"},{"denom":"ASSET16","index":"0.000005459144789091"},{"denom":"ASSET17","index":"0.000003877120201363"},{"denom":"ASSET18","index":"0.000001846984198382"},{"denom":"ASSET2","index":"0.000003577158245830"},{"denom":"ASSET3","index":"0.000001046407310278"},{"denom":"ASSET4","index":"0.000009848276035312"},{"denom":"ASSET5","index":"0.000000811973000390"},{"denom":"ASSET6","index":"0.000003305686571013"},{"denom":"ASSET7","index":"0.000005062722883136"},{"denom":"ASSET8","index":"0.000006606082089893"},{"denom":"ASSET9","index":"0.000002853098111648"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000002979919393708"},{"denom":"ASSET1","index":"0.000025298333716476"},{"denom":"ASSET10","index":"0.000020286143685892"},{"denom":"ASSET11","index":"0.000025164674259360"},{"denom":"ASSET12","index":"0.000024041723171534"},{"denom":"ASSET13","index":"0.000007907785176595"},{"denom":"ASSET14","index":"0.000023082402053339"},{"denom":"ASSET15","index":"0.000018255332392862"},{"denom":"ASSET16","index":"0.000011216675450010"},{"denom":"ASSET17","index":"0.000008835128154455"},{"denom":"ASSET18","index":"0.000003633337151635"},{"denom":"ASSET2","index":"0.000007668586747858"},{"denom":"ASSET3","index":"0.000002126085354033"},{"denom":"ASSET4","index":"0.000020508686269066"},{"denom":"ASSET5","index":"0.000001656307666438"},{"denom":"ASSET6","index":"0.000006683025235204"},{"denom":"ASSET7","index":"0.000010507859389263"},{"denom":"ASSET8","index":"0.000014375637436113"},{"denom":"ASSET9","index":"0.000006098257618497"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001779729226299"},{"denom":"ASSET1","index":"0.000014840802182142"},{"denom":"ASSET10","index":"0.000010337989986643"},{"denom":"ASSET11","index":"0.000014356968690293"},{"denom":"ASSET12","index":"0.000012927350131463"},{"denom":"ASSET13","index":"0.000004449323065747"},{"denom":"ASSET14","index":"0.000013411183623312"},{"denom":"ASSET15","index":"0.000009589142170113"},{"denom":"ASSET16","index":"0.000006683709894939"},{"denom":"ASSET17","index":"0.000004745944603463"},{"denom":"ASSET18","index":"0.000002261131394068"},{"denom":"ASSET2","index":"0.000004378814667437"},{"denom":"ASSET3","index":"0.000001281307789972"},{"denom":"ASSET4","index":"0.000012059367435030"},{"denom":"ASSET5","index":"0.000000994411548574"},{"denom":"ASSET6","index":"0.000004048154592606"},{"denom":"ASSET7","index":"0.000006199876403090"},{"denom":"ASSET8","index":"0.000008089015212973"},{"denom":"ASSET9","index":"0.000003493812702447"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003433377044021"},{"denom":"ASSET1","index":"0.000029119719093870"},{"denom":"ASSET10","index":"0.000023168779363922"},{"denom":"ASSET11","index":"0.000028918871222836"},{"denom":"ASSET12","index":"0.000027536680421684"},{"denom":"ASSET13","index":"0.000009079853140421"},{"denom":"ASSET14","index":"0.000026553415276013"},{"denom":"ASSET15","index":"0.000020883272198610"},{"denom":"ASSET16","index":"0.000012920460029656"},{"denom":"ASSET17","index":"0.000010116347697920"},{"denom":"ASSET18","index":"0.000004196183907349"},{"denom":"ASSET2","index":"0.000008810148159861"},{"denom":"ASSET3","index":"0.000002451192479374"},{"denom":"ASSET4","index":"0.000023608026429735"},{"denom":"ASSET5","index":"0.000001908186346512"},{"denom":"ASSET6","index":"0.000007706415634871"},{"denom":"ASSET7","index":"0.000012098308533034"},{"denom":"ASSET8","index":"0.000016505861275643"},{"denom":"ASSET9","index":"0.000007009790471677"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001595670533734"},{"denom":"ASSET1","index":"0.000013304245337308"},{"denom":"ASSET10","index":"0.000009268754359880"},{"denom":"ASSET11","index":"0.000012870227612725"},{"denom":"ASSET12","index":"0.000011589729681675"},{"denom":"ASSET13","index":"0.000003988302473145"},{"denom":"ASSET14","index":"0.000012022582258004"},{"denom":"ASSET15","index":"0.000008595881243245"},{"denom":"ASSET16","index":"0.000005992940044003"},{"denom":"ASSET17","index":"0.000004256286571545"},{"denom":"ASSET18","index":"0.000002027357961809"},{"denom":"ASSET2","index":"0.000003927132189815"},{"denom":"ASSET3","index":"0.000001148836178358"},{"denom":"ASSET4","index":"0.000010811993222188"},{"denom":"ASSET5","index":"0.000000891338414244"},{"denom":"ASSET6","index":"0.000003628854236813"},{"denom":"ASSET7","index":"0.000005557757171166"},{"denom":"ASSET8","index":"0.000007252465306483"},{"denom":"ASSET9","index":"0.000003132501080646"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003118409098775"},{"denom":"ASSET1","index":"0.000026454243753489"},{"denom":"ASSET10","index":"0.000021084585905412"},{"denom":"ASSET11","index":"0.000026280950742513"},{"denom":"ASSET12","index":"0.000025043390497745"},{"denom":"ASSET13","index":"0.000008253298424938"},{"denom":"ASSET14","index":"0.000024125697910719"},{"denom":"ASSET15","index":"0.000018997425080839"},{"denom":"ASSET16","index":"0.000011737294217995"},{"denom":"ASSET17","index":"0.000009202973625129"},{"denom":"ASSET18","index":"0.000003809493270778"},{"denom":"ASSET2","index":"0.000008008868325931"},{"denom":"ASSET3","index":"0.000002225819587877"},{"denom":"ASSET4","index":"0.000021447702379813"},{"denom":"ASSET5","index":"0.000001733713847172"},{"denom":"ASSET6","index":"0.000006998355968525"},{"denom":"ASSET7","index":"0.000010990481127196"},{"denom":"ASSET8","index":"0.000015003824321723"},{"denom":"ASSET9","index":"0.000006370091157596"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001536288093705"},{"denom":"ASSET1","index":"0.000012808796131863"},{"denom":"ASSET10","index":"0.000008924322337818"},{"denom":"ASSET11","index":"0.000012391382492026"},{"denom":"ASSET12","index":"0.000011158327625467"},{"denom":"ASSET13","index":"0.000003840018305497"},{"denom":"ASSET14","index":"0.000011575273312793"},{"denom":"ASSET15","index":"0.000008276208110044"},{"denom":"ASSET16","index":"0.000005770322413488"},{"denom":"ASSET17","index":"0.000004097860139074"},{"denom":"ASSET18","index":"0.000001951829923499"},{"denom":"ASSET2","index":"0.000003781056289108"},{"denom":"ASSET3","index":"0.000001105771783560"},{"denom":"ASSET4","index":"0.000010409603607822"},{"denom":"ASSET5","index":"0.000000858224905226"},{"denom":"ASSET6","index":"0.000003494201399847"},{"denom":"ASSET7","index":"0.000005351036963607"},{"denom":"ASSET8","index":"0.000006982787369562"},{"denom":"ASSET9","index":"0.000003015953933577"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003103831608428"},{"denom":"ASSET1","index":"0.000026343132935309"},{"denom":"ASSET10","index":"0.000021085436521682"},{"denom":"ASSET11","index":"0.000026194005406126"},{"denom":"ASSET12","index":"0.000025005394550642"},{"denom":"ASSET13","index":"0.000008229918727938"},{"denom":"ASSET14","index":"0.000024032248358707"},{"denom":"ASSET15","index":"0.000018981699828973"},{"denom":"ASSET16","index":"0.000011682673521897"},{"denom":"ASSET17","index":"0.000009189132473525"},{"denom":"ASSET18","index":"0.000003786361913516"},{"denom":"ASSET2","index":"0.000007982150766688"},{"denom":"ASSET3","index":"0.000002214601198569"},{"denom":"ASSET4","index":"0.000021356131094847"},{"denom":"ASSET5","index":"0.000001725369734459"},{"denom":"ASSET6","index":"0.000006962131899100"},{"denom":"ASSET7","index":"0.000010942547729288"},{"denom":"ASSET8","index":"0.000014960973970884"},{"denom":"ASSET9","index":"0.000006348281537724"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001156201861882"},{"denom":"ASSET1","index":"0.000009641528249827"},{"denom":"ASSET10","index":"0.000006717693720376"},{"denom":"ASSET11","index":"0.000009327193051790"},{"denom":"ASSET12","index":"0.000008399128436016"},{"denom":"ASSET13","index":"0.000002890504654704"},{"denom":"ASSET14","index":"0.000008712888981039"},{"denom":"ASSET15","index":"0.000006229813312455"},{"denom":"ASSET16","index":"0.000004343227471224"},{"denom":"ASSET17","index":"0.000003084737373052"},{"denom":"ASSET18","index":"0.000001469387753892"},{"denom":"ASSET2","index":"0.000002846256372714"},{"denom":"ASSET3","index":"0.000000832672215639"},{"denom":"ASSET4","index":"0.000007835393830396"},{"denom":"ASSET5","index":"0.000000645909986459"},{"denom":"ASSET6","index":"0.000002630186839877"},{"denom":"ASSET7","index":"0.000004027742967162"},{"denom":"ASSET8","index":"0.000005256351108664"},{"denom":"ASSET9","index":"0.000002269879400812"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000002648545180722"},{"denom":"ASSET1","index":"0.000022528915692996"},{"denom":"ASSET10","index":"0.000018297756458480"},{"denom":"ASSET11","index":"0.000022469822082599"},{"denom":"ASSET12","index":"0.000021584227648624"},{"denom":"ASSET13","index":"0.000007070243338634"},{"denom":"ASSET14","index":"0.000020574684608302"},{"denom":"ASSET15","index":"0.000016423497937791"},{"denom":"ASSET16","index":"0.000009972839292196"},{"denom":"ASSET17","index":"0.000007932645550822"},{"denom":"ASSET18","index":"0.000003216131666673"},{"denom":"ASSET2","index":"0.000006846442901912"},{"denom":"ASSET3","index":"0.000001888119307859"},{"denom":"ASSET4","index":"0.000018258669735553"},{"denom":"ASSET5","index":"0.000001471345302008"},{"denom":"ASSET6","index":"0.000005932348598922"},{"denom":"ASSET7","index":"0.000009352074075404"},{"denom":"ASSET8","index":"0.000012853047191550"},{"denom":"ASSET9","index":"0.000005442948627063"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001638829976996"},{"denom":"ASSET1","index":"0.000013663699511091"},{"denom":"ASSET10","index":"0.000009519748943981"},{"denom":"ASSET11","index":"0.000013218199388741"},{"denom":"ASSET12","index":"0.000011902774883924"},{"denom":"ASSET13","index":"0.000004095984811686"},{"denom":"ASSET14","index":"0.000012347548252404"},{"denom":"ASSET15","index":"0.000008827879259679"},{"denom":"ASSET16","index":"0.000006154878525580"},{"denom":"ASSET17","index":"0.000004371424528441"},{"denom":"ASSET18","index":"0.000002082149837736"},{"denom":"ASSET2","index":"0.000004033483978861"},{"denom":"ASSET3","index":"0.000001179521531115"},{"denom":"ASSET4","index":"0.000011104072380722"},{"denom":"ASSET5","index":"0.000000915709876282"},{"denom":"ASSET6","index":"0.000003726793845693"},{"denom":"ASSET7","index":"0.000005707924895490"},{"denom":"ASSET8","index":"0.000007448500414296"},{"denom":"ASSET9","index":"0.000003217339382778"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003133427860009"},{"denom":"ASSET1","index":"0.000026571363581284"},{"denom":"ASSET10","index":"0.000021118003104150"},{"denom":"ASSET11","index":"0.000026381510155653"},{"denom":"ASSET12","index":"0.000025108485590780"},{"denom":"ASSET13","index":"0.000008282355352591"},{"denom":"ASSET14","index":"0.000024227637307493"},{"denom":"ASSET15","index":"0.000019037535386694"},{"denom":"ASSET16","index":"0.000011793447009555"},{"denom":"ASSET17","index":"0.000009226841180516"},{"denom":"ASSET18","index":"0.000003831770888939"},{"denom":"ASSET2","index":"0.000008040278303534"},{"denom":"ASSET3","index":"0.000002236402387063"},{"denom":"ASSET4","index":"0.000021543810534784"},{"denom":"ASSET5","index":"0.000001742508705183"},{"denom":"ASSET6","index":"0.000007033989161296"},{"denom":"ASSET7","index":"0.000011040340871930"},{"denom":"ASSET8","index":"0.000015056795520064"},{"denom":"ASSET9","index":"0.000006395464292965"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001556422065682"},{"denom":"ASSET1","index":"0.000012975233747354"},{"denom":"ASSET10","index":"0.000009039925804131"},{"denom":"ASSET11","index":"0.000012551842294036"},{"denom":"ASSET12","index":"0.000011303196313064"},{"denom":"ASSET13","index":"0.000003889859143149"},{"denom":"ASSET14","index":"0.000011725391745328"},{"denom":"ASSET15","index":"0.000008383310245172"},{"denom":"ASSET16","index":"0.000005844954893688"},{"denom":"ASSET17","index":"0.000004150990406731"},{"denom":"ASSET18","index":"0.000001977421476890"},{"denom":"ASSET2","index":"0.000003830058090421"},{"denom":"ASSET3","index":"0.000001120273054448"},{"denom":"ASSET4","index":"0.000010544520290781"},{"denom":"ASSET5","index":"0.000000869507306673"},{"denom":"ASSET6","index":"0.000003539424974160"},{"denom":"ASSET7","index":"0.000005420766093000"},{"denom":"ASSET8","index":"0.000007073268516732"},{"denom":"ASSET9","index":"0.000003055036447059"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003102345998156"},{"denom":"ASSET1","index":"0.000026324295521459"},{"denom":"ASSET10","index":"0.000021034709957123"},{"denom":"ASSET11","index":"0.000026165624152899"},{"denom":"ASSET12","index":"0.000024960753498443"},{"denom":"ASSET13","index":"0.000008219480216908"},{"denom":"ASSET14","index":"0.000024012126304297"},{"denom":"ASSET15","index":"0.000018942125813395"},{"denom":"ASSET16","index":"0.000011676379885795"},{"denom":"ASSET17","index":"0.000009172744202097"},{"denom":"ASSET18","index":"0.000003786686743681"},{"denom":"ASSET2","index":"0.000007973892542195"},{"denom":"ASSET3","index":"0.000002213622154517"},{"denom":"ASSET4","index":"0.000021341514997764"},{"denom":"ASSET5","index":"0.000001724677267981"},{"denom":"ASSET6","index":"0.000006959760131783"},{"denom":"ASSET7","index":"0.000010935767858794"},{"denom":"ASSET8","index":"0.000014942141973689"},{"denom":"ASSET9","index":"0.000006341977499472"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001602535700795"},{"denom":"ASSET1","index":"0.000013360208994045"},{"denom":"ASSET10","index":"0.000009307956057468"},{"denom":"ASSET11","index":"0.000012924500245282"},{"denom":"ASSET12","index":"0.000011638378499862"},{"denom":"ASSET13","index":"0.000004005127453862"},{"denom":"ASSET14","index":"0.000012073279383206"},{"denom":"ASSET15","index":"0.000008632311279566"},{"denom":"ASSET16","index":"0.000006018597363935"},{"denom":"ASSET17","index":"0.000004274146638048"},{"denom":"ASSET18","index":"0.000002036090141777"},{"denom":"ASSET2","index":"0.000003943729682095"},{"denom":"ASSET3","index":"0.000001153631816872"},{"denom":"ASSET4","index":"0.000010857441929150"},{"denom":"ASSET5","index":"0.000000895384171592"},{"denom":"ASSET6","index":"0.000003644280900498"},{"denom":"ASSET7","index":"0.000005581542172809"},{"denom":"ASSET8","index":"0.000007283176031543"},{"denom":"ASSET9","index":"0.000003145827937606"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003144114236048"},{"denom":"ASSET1","index":"0.000026672683120621"},{"denom":"ASSET10","index":"0.000021269722635007"},{"denom":"ASSET11","index":"0.000026500587720899"},{"denom":"ASSET12","index":"0.000025258297912053"},{"denom":"ASSET13","index":"0.000008323039503604"},{"denom":"ASSET14","index":"0.000024326015412045"},{"denom":"ASSET15","index":"0.000019162234595686"},{"denom":"ASSET16","index":"0.000011833945147558"},{"denom":"ASSET17","index":"0.000009281867675434"},{"denom":"ASSET18","index":"0.000003840349431676"},{"denom":"ASSET2","index":"0.000008076055447193"},{"denom":"ASSET3","index":"0.000002244145529651"},{"denom":"ASSET4","index":"0.000021624555086447"},{"denom":"ASSET5","index":"0.000001748086313596"},{"denom":"ASSET6","index":"0.000007055400333314"},{"denom":"ASSET7","index":"0.000011081362186058"},{"denom":"ASSET8","index":"0.000015130336137492"},{"denom":"ASSET9","index":"0.000006423586371910"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001633811359009"},{"denom":"ASSET1","index":"0.000013620164108551"},{"denom":"ASSET10","index":"0.000009487838038290"},{"denom":"ASSET11","index":"0.000013174776703502"},{"denom":"ASSET12","index":"0.000011864685946211"},{"denom":"ASSET13","index":"0.000004082355776036"},{"denom":"ASSET14","index":"0.000012307900729772"},{"denom":"ASSET15","index":"0.000008799117026580"},{"denom":"ASSET16","index":"0.000006135483082238"},{"denom":"ASSET17","index":"0.000004356106083529"},{"denom":"ASSET18","index":"0.000002074853521082"},{"denom":"ASSET2","index":"0.000004019349752882"},{"denom":"ASSET3","index":"0.000001175388225032"},{"denom":"ASSET4","index":"0.000011067333860098"},{"denom":"ASSET5","index":"0.000000912501024979"},{"denom":"ASSET6","index":"0.000003715182744556"},{"denom":"ASSET7","index":"0.000005690095677188"},{"denom":"ASSET8","index":"0.000007423847624648"},{"denom":"ASSET9","index":"0.000003206789316354"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003109600829404"},{"denom":"ASSET1","index":"0.000026362702045617"},{"denom":"ASSET10","index":"0.000020937844947102"},{"denom":"ASSET11","index":"0.000026169598808926"},{"denom":"ASSET12","index":"0.000024901798461360"},{"denom":"ASSET13","index":"0.000008215149609138"},{"denom":"ASSET14","index":"0.000024035954930107"},{"denom":"ASSET15","index":"0.000018878331344314"},{"denom":"ASSET16","index":"0.000011701775976010"},{"denom":"ASSET17","index":"0.000009149505282332"},{"denom":"ASSET18","index":"0.000003801954966508"},{"denom":"ASSET2","index":"0.000007974718303805"},{"denom":"ASSET3","index":"0.000002219037761573"},{"denom":"ASSET4","index":"0.000021373555319687"},{"denom":"ASSET5","index":"0.000001728657323000"},{"denom":"ASSET6","index":"0.000006980294033305"},{"denom":"ASSET7","index":"0.000010954522542925"},{"denom":"ASSET8","index":"0.000014935013269095"},{"denom":"ASSET9","index":"0.000006344057182602"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001356454583190"},{"denom":"ASSET1","index":"0.000011307707773056"},{"denom":"ASSET10","index":"0.000007878355411964"},{"denom":"ASSET11","index":"0.000010938987301217"},{"denom":"ASSET12","index":"0.000009850463994830"},{"denom":"ASSET13","index":"0.000003389876593037"},{"denom":"ASSET14","index":"0.000010218764511690"},{"denom":"ASSET15","index":"0.000007305956775156"},{"denom":"ASSET16","index":"0.000005094053899100"},{"denom":"ASSET17","index":"0.000003617492191826"},{"denom":"ASSET18","index":"0.000001723075280133"},{"denom":"ASSET2","index":"0.000003337802175602"},{"denom":"ASSET3","index":"0.000000976395326909"},{"denom":"ASSET4","index":"0.000009189454857387"},{"denom":"ASSET5","index":"0.000000758018737665"},{"denom":"ASSET6","index":"0.000003084569323074"},{"denom":"ASSET7","index":"0.000004724073562323"},{"denom":"ASSET8","index":"0.000006164519141376"},{"denom":"ASSET9","index":"0.000002662514568862"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000002920257070141"},{"denom":"ASSET1","index":"0.000024811653868653"},{"denom":"ASSET10","index":"0.000020012294768332"},{"denom":"ASSET11","index":"0.000024710629923001"},{"denom":"ASSET12","index":"0.000023666550441425"},{"denom":"ASSET13","index":"0.000007769918885884"},{"denom":"ASSET14","index":"0.000022647790193256"},{"denom":"ASSET15","index":"0.000017987461600930"},{"denom":"ASSET16","index":"0.000010993196459757"},{"denom":"ASSET17","index":"0.000008697266331114"},{"denom":"ASSET18","index":"0.000003553540715950"},{"denom":"ASSET2","index":"0.000007529733395993"},{"denom":"ASSET3","index":"0.000002082581454906"},{"denom":"ASSET4","index":"0.000020111524804667"},{"denom":"ASSET5","index":"0.000001623122955496"},{"denom":"ASSET6","index":"0.000006544727800067"},{"denom":"ASSET7","index":"0.000010303065547743"},{"denom":"ASSET8","index":"0.000014124873274804"},{"denom":"ASSET9","index":"0.000005987532811110"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001730803097805"},{"denom":"ASSET1","index":"0.000014429128492036"},{"denom":"ASSET10","index":"0.000010053081326419"},{"denom":"ASSET11","index":"0.000013956042311970"},{"denom":"ASSET12","index":"0.000012568515161896"},{"denom":"ASSET13","index":"0.000004324123072683"},{"denom":"ASSET14","index":"0.000013038716670133"},{"denom":"ASSET15","index":"0.000009320374681681"},{"denom":"ASSET16","index":"0.000006499165632259"},{"denom":"ASSET17","index":"0.000004615474927481"},{"denom":"ASSET18","index":"0.000002198119934213"},{"denom":"ASSET2","index":"0.000004257775620601"},{"denom":"ASSET3","index":"0.000001243293558590"},{"denom":"ASSET4","index":"0.000011726190987631"},{"denom":"ASSET5","index":"0.000000966365062941"},{"denom":"ASSET6","index":"0.000003934692375677"},{"denom":"ASSET7","index":"0.000006026079452192"},{"denom":"ASSET8","index":"0.000007863615407695"},{"denom":"ASSET9","index":"0.000003395258743528"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003241945367060"},{"denom":"ASSET1","index":"0.000027480716546724"},{"denom":"ASSET10","index":"0.000021780901079221"},{"denom":"ASSET11","index":"0.000027265989011084"},{"denom":"ASSET12","index":"0.000025921947969478"},{"denom":"ASSET13","index":"0.000008556984130745"},{"denom":"ASSET14","index":"0.000025051754134356"},{"denom":"ASSET15","index":"0.000019643848931612"},{"denom":"ASSET16","index":"0.000012200322352703"},{"denom":"ASSET17","index":"0.000009524928673174"},{"denom":"ASSET18","index":"0.000003966981346299"},{"denom":"ASSET2","index":"0.000008309018225650"},{"denom":"ASSET3","index":"0.000002312540225621"},{"denom":"ASSET4","index":"0.000022282443818183"},{"denom":"ASSET5","index":"0.000001802193647755"},{"denom":"ASSET6","index":"0.000007278646216530"},{"denom":"ASSET7","index":"0.000011418356902196"},{"denom":"ASSET8","index":"0.000015557459098515"},{"denom":"ASSET9","index":"0.000006608754258977"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001631665384825"},{"denom":"ASSET1","index":"0.000013602742609312"},{"denom":"ASSET10","index":"0.000009477179623123"},{"denom":"ASSET11","index":"0.000013159027954757"},{"denom":"ASSET12","index":"0.000011849393704263"},{"denom":"ASSET13","index":"0.000004077627053980"},{"denom":"ASSET14","index":"0.000012292493795584"},{"denom":"ASSET15","index":"0.000008788868801652"},{"denom":"ASSET16","index":"0.000006127810000788"},{"denom":"ASSET17","index":"0.000004351722256101"},{"denom":"ASSET18","index":"0.000002072921786447"},{"denom":"ASSET2","index":"0.000004015556167401"},{"denom":"ASSET3","index":"0.000001174430339134"},{"denom":"ASSET4","index":"0.000011054148880171"},{"denom":"ASSET5","index":"0.000000911397275215"},{"denom":"ASSET6","index":"0.000003710118240373"},{"denom":"ASSET7","index":"0.000005682866219766"},{"denom":"ASSET8","index":"0.000007415319974879"},{"denom":"ASSET9","index":"0.000003202489009539"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003079719434352"},{"denom":"ASSET1","index":"0.000026105925494605"},{"denom":"ASSET10","index":"0.000020711970439773"},{"denom":"ASSET11","index":"0.000025910008103106"},{"denom":"ASSET12","index":"0.000024641613628664"},{"denom":"ASSET13","index":"0.000008133110770201"},{"denom":"ASSET14","index":"0.000023800542954419"},{"denom":"ASSET15","index":"0.000018678884312278"},{"denom":"ASSET16","index":"0.000011589749383737"},{"denom":"ASSET17","index":"0.000009055208366452"},{"denom":"ASSET18","index":"0.000003767697278786"},{"denom":"ASSET2","index":"0.000007896757003962"},{"denom":"ASSET3","index":"0.000002198611212202"},{"denom":"ASSET4","index":"0.000021166859181475"},{"denom":"ASSET5","index":"0.000001712166144109"},{"denom":"ASSET6","index":"0.000006913910929446"},{"denom":"ASSET7","index":"0.000010848237821893"},{"denom":"ASSET8","index":"0.000014785764472138"},{"denom":"ASSET9","index":"0.000006281127943464"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001520990142264"},{"denom":"ASSET1","index":"0.000012680102108631"},{"denom":"ASSET10","index":"0.000008834326429376"},{"denom":"ASSET11","index":"0.000012266893306329"},{"denom":"ASSET12","index":"0.000011046354389007"},{"denom":"ASSET13","index":"0.000003801591675587"},{"denom":"ASSET14","index":"0.000011458856247250"},{"denom":"ASSET15","index":"0.000008193128168148"},{"denom":"ASSET16","index":"0.000005712107994187"},{"denom":"ASSET17","index":"0.000004056798480773"},{"denom":"ASSET18","index":"0.000001932431584420"},{"denom":"ASSET2","index":"0.000003743268790745"},{"denom":"ASSET3","index":"0.000001095056346905"},{"denom":"ASSET4","index":"0.000010304770071444"},{"denom":"ASSET5","index":"0.000000849746758541"},{"denom":"ASSET6","index":"0.000003459077279153"},{"denom":"ASSET7","index":"0.000005297485303768"},{"denom":"ASSET8","index":"0.000006912499005837"},{"denom":"ASSET9","index":"0.000002985778231863"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003063170165442"},{"denom":"ASSET1","index":"0.000025996358951928"},{"denom":"ASSET10","index":"0.000020799618544072"},{"denom":"ASSET11","index":"0.000025846936295403"},{"denom":"ASSET12","index":"0.000024670295822131"},{"denom":"ASSET13","index":"0.000008120644896033"},{"denom":"ASSET14","index":"0.000023715222729701"},{"denom":"ASSET15","index":"0.000018725986369791"},{"denom":"ASSET16","index":"0.000011529047312284"},{"denom":"ASSET17","index":"0.000009065966880203"},{"denom":"ASSET18","index":"0.000003737409049681"},{"denom":"ASSET2","index":"0.000007876841198043"},{"denom":"ASSET3","index":"0.000002185992003768"},{"denom":"ASSET4","index":"0.000021074917159843"},{"denom":"ASSET5","index":"0.000001702800306431"},{"denom":"ASSET6","index":"0.000006871093729972"},{"denom":"ASSET7","index":"0.000010798830402478"},{"denom":"ASSET8","index":"0.000014762015379742"},{"denom":"ASSET9","index":"0.000006264517424621"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001519669987195"},{"denom":"ASSET1","index":"0.000012676623405048"},{"denom":"ASSET10","index":"0.000008831600766261"},{"denom":"ASSET11","index":"0.000012262448940742"},{"denom":"ASSET12","index":"0.000011042591812037"},{"denom":"ASSET13","index":"0.000003799690110356"},{"denom":"ASSET14","index":"0.000011454705706870"},{"denom":"ASSET15","index":"0.000008189733375059"},{"denom":"ASSET16","index":"0.000005709838012905"},{"denom":"ASSET17","index":"0.000004055200725152"},{"denom":"ASSET18","index":"0.000001931783882027"},{"denom":"ASSET2","index":"0.000003741994165079"},{"denom":"ASSET3","index":"0.000001094162390780"},{"denom":"ASSET4","index":"0.000010301817086076"},{"denom":"ASSET5","index":"0.000000848954623355"},{"denom":"ASSET6","index":"0.000003457635577645"},{"denom":"ASSET7","index":"0.000005295663548598"},{"denom":"ASSET8","index":"0.000006910119731604"},{"denom":"ASSET9","index":"0.000002984734883325"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003051401969864"},{"denom":"ASSET1","index":"0.000025903543471827"},{"denom":"ASSET10","index":"0.000020717104247015"},{"denom":"ASSET11","index":"0.000025751820078700"},{"denom":"ASSET12","index":"0.000024575704795191"},{"denom":"ASSET13","index":"0.000008089460542782"},{"denom":"ASSET14","index":"0.000023629519286555"},{"denom":"ASSET15","index":"0.000018652475785738"},{"denom":"ASSET16","index":"0.000011487598582804"},{"denom":"ASSET17","index":"0.000009031027466449"},{"denom":"ASSET18","index":"0.000003724432134289"},{"denom":"ASSET2","index":"0.000007847588407204"},{"denom":"ASSET3","index":"0.000002177732310384"},{"denom":"ASSET4","index":"0.000021000151540181"},{"denom":"ASSET5","index":"0.000001696165098739"},{"denom":"ASSET6","index":"0.000006846477479182"},{"denom":"ASSET7","index":"0.000010760324594985"},{"denom":"ASSET8","index":"0.000014706911787677"},{"denom":"ASSET9","index":"0.000006241583848480"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001392192847149"},{"denom":"ASSET1","index":"0.000011611450847386"},{"denom":"ASSET10","index":"0.000008088781067478"},{"denom":"ASSET11","index":"0.000011231761889073"},{"denom":"ASSET12","index":"0.000010115195100551"},{"denom":"ASSET13","index":"0.000003480482117873"},{"denom":"ASSET14","index":"0.000010492071548062"},{"denom":"ASSET15","index":"0.000007502372565194"},{"denom":"ASSET16","index":"0.000005229863836918"},{"denom":"ASSET17","index":"0.000003713920514466"},{"denom":"ASSET18","index":"0.000001769069294661"},{"denom":"ASSET2","index":"0.000003427044412629"},{"denom":"ASSET3","index":"0.000001002660101028"},{"denom":"ASSET4","index":"0.000009435973741790"},{"denom":"ASSET5","index":"0.000000777659236842"},{"denom":"ASSET6","index":"0.000003166887163415"},{"denom":"ASSET7","index":"0.000004850174878604"},{"denom":"ASSET8","index":"0.000006329555560626"},{"denom":"ASSET9","index":"0.000002733760499857"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000002834261839987"},{"denom":"ASSET1","index":"0.000024063735726127"},{"denom":"ASSET10","index":"0.000019278012414561"},{"denom":"ASSET11","index":"0.000023930766794440"},{"denom":"ASSET12","index":"0.000022855511266190"},{"denom":"ASSET13","index":"0.000007519422832827"},{"denom":"ASSET14","index":"0.000021953268691937"},{"denom":"ASSET15","index":"0.000017352048046781"},{"denom":"ASSET16","index":"0.000010669562284438"},{"denom":"ASSET17","index":"0.000008398158415340"},{"denom":"ASSET18","index":"0.000003456710779118"},{"denom":"ASSET2","index":"0.000007292324829772"},{"denom":"ASSET3","index":"0.000002022818722752"},{"denom":"ASSET4","index":"0.000019507505991506"},{"denom":"ASSET5","index":"0.000001575196067099"},{"denom":"ASSET6","index":"0.000006357416996111"},{"denom":"ASSET7","index":"0.000009994574317511"},{"denom":"ASSET8","index":"0.000013669954492341"},{"denom":"ASSET9","index":"0.000005799591528398"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001553840185331"},{"denom":"ASSET1","index":"0.000012958259817171"},{"denom":"ASSET10","index":"0.000009028099224953"},{"denom":"ASSET11","index":"0.000012533831248030"},{"denom":"ASSET12","index":"0.000011286922457332"},{"denom":"ASSET13","index":"0.000003884600463327"},{"denom":"ASSET14","index":"0.000011708953124953"},{"denom":"ASSET15","index":"0.000008371074208317"},{"denom":"ASSET16","index":"0.000005836492301072"},{"denom":"ASSET17","index":"0.000004143573827548"},{"denom":"ASSET18","index":"0.000001973472951431"},{"denom":"ASSET2","index":"0.000003824652925312"},{"denom":"ASSET3","index":"0.000001117422108587"},{"denom":"ASSET4","index":"0.000010529185576831"},{"denom":"ASSET5","index":"0.000000868040350447"},{"denom":"ASSET6","index":"0.000003534506841323"},{"denom":"ASSET7","index":"0.000005412063731931"},{"denom":"ASSET8","index":"0.000007064217879605"},{"denom":"ASSET9","index":"0.000003050130734168"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000002875427361068"},{"denom":"ASSET1","index":"0.000024372739255487"},{"denom":"ASSET10","index":"0.000019284464921318"},{"denom":"ASSET11","index":"0.000024174413552556"},{"denom":"ASSET12","index":"0.000022964657814992"},{"denom":"ASSET13","index":"0.000007586106071195"},{"denom":"ASSET14","index":"0.000022214775035212"},{"denom":"ASSET15","index":"0.000017399266119679"},{"denom":"ASSET16","index":"0.000010822432031544"},{"denom":"ASSET17","index":"0.000008437405253940"},{"denom":"ASSET18","index":"0.000003520101477575"},{"denom":"ASSET2","index":"0.000007366931162610"},{"denom":"ASSET3","index":"0.000002051556015935"},{"denom":"ASSET4","index":"0.000019761188522524"},{"denom":"ASSET5","index":"0.000001598363223465"},{"denom":"ASSET6","index":"0.000006458982880806"},{"denom":"ASSET7","index":"0.000010127316932433"},{"denom":"ASSET8","index":"0.000013792105044122"},{"denom":"ASSET9","index":"0.000005859963066840"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001468329025254"},{"denom":"ASSET1","index":"0.000012248466172689"},{"denom":"ASSET10","index":"0.000008533242661533"},{"denom":"ASSET11","index":"0.000011849890220686"},{"denom":"ASSET12","index":"0.000010670683647662"},{"denom":"ASSET13","index":"0.000003671855143322"},{"denom":"ASSET14","index":"0.000011069259599665"},{"denom":"ASSET15","index":"0.000007913694549611"},{"denom":"ASSET16","index":"0.000005518108516848"},{"denom":"ASSET17","index":"0.000003917609227717"},{"denom":"ASSET18","index":"0.000001866904977257"},{"denom":"ASSET2","index":"0.000003616095813249"},{"denom":"ASSET3","index":"0.000001057362111013"},{"denom":"ASSET4","index":"0.000009954072998206"},{"denom":"ASSET5","index":"0.000000819868668110"},{"denom":"ASSET6","index":"0.000003341429483630"},{"denom":"ASSET7","index":"0.000005117467404472"},{"denom":"ASSET8","index":"0.000006676663486141"},{"denom":"ASSET9","index":"0.000002882963880808"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000002995432004660"},{"denom":"ASSET1","index":"0.000025434255671185"},{"denom":"ASSET10","index":"0.000020381248485322"},{"denom":"ASSET11","index":"0.000025297016742096"},{"denom":"ASSET12","index":"0.000024161457271020"},{"denom":"ASSET13","index":"0.000007948725545453"},{"denom":"ASSET14","index":"0.000023205881885085"},{"denom":"ASSET15","index":"0.000018343715148864"},{"denom":"ASSET16","index":"0.000011277889207663"},{"denom":"ASSET17","index":"0.000008877556775335"},{"denom":"ASSET18","index":"0.000003654253802028"},{"denom":"ASSET2","index":"0.000007709102798424"},{"denom":"ASSET3","index":"0.000002137627884226"},{"denom":"ASSET4","index":"0.000020618696770430"},{"denom":"ASSET5","index":"0.000001664440090804"},{"denom":"ASSET6","index":"0.000006720260763181"},{"denom":"ASSET7","index":"0.000010565171316359"},{"denom":"ASSET8","index":"0.000014449121165534"},{"denom":"ASSET9","index":"0.000006129217088192"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001484659776814"},{"denom":"ASSET1","index":"0.000012377911876883"},{"denom":"ASSET10","index":"0.000008623797972416"},{"denom":"ASSET11","index":"0.000011974339842928"},{"denom":"ASSET12","index":"0.000010782780641408"},{"denom":"ASSET13","index":"0.000003710691597017"},{"denom":"ASSET14","index":"0.000011185714112019"},{"denom":"ASSET15","index":"0.000007997367331102"},{"denom":"ASSET16","index":"0.000005575935127370"},{"denom":"ASSET17","index":"0.000003959731301514"},{"denom":"ASSET18","index":"0.000001886316120734"},{"denom":"ASSET2","index":"0.000003653859459324"},{"denom":"ASSET3","index":"0.000001068955039306"},{"denom":"ASSET4","index":"0.000010059288371675"},{"denom":"ASSET5","index":"0.000000829493784981"},{"denom":"ASSET6","index":"0.000003376084404307"},{"denom":"ASSET7","index":"0.000005171085966725"},{"denom":"ASSET8","index":"0.000006747698865199"},{"denom":"ASSET9","index":"0.000002914403105969"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000002967027008461"},{"denom":"ASSET1","index":"0.000025180120058697"},{"denom":"ASSET10","index":"0.000020126919929476"},{"denom":"ASSET11","index":"0.000025029678796477"},{"denom":"ASSET12","index":"0.000023880507059092"},{"denom":"ASSET13","index":"0.000007862872062626"},{"denom":"ASSET14","index":"0.000022968832134984"},{"denom":"ASSET15","index":"0.000018123195207046"},{"denom":"ASSET16","index":"0.000011168095360491"},{"denom":"ASSET17","index":"0.000008775186029853"},{"denom":"ASSET18","index":"0.000003621217117579"},{"denom":"ASSET2","index":"0.000007627534970337"},{"denom":"ASSET3","index":"0.000002117298518473"},{"denom":"ASSET4","index":"0.000020413769751333"},{"denom":"ASSET5","index":"0.000001649183760435"},{"denom":"ASSET6","index":"0.000006656038319196"},{"denom":"ASSET7","index":"0.000010459966878994"},{"denom":"ASSET8","index":"0.000014293861494285"},{"denom":"ASSET9","index":"0.000006066597621916"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001508631993599"},{"denom":"ASSET1","index":"0.000012578103553994"},{"denom":"ASSET10","index":"0.000008763023138279"},{"denom":"ASSET11","index":"0.000012169014387632"},{"denom":"ASSET12","index":"0.000010956555546150"},{"denom":"ASSET13","index":"0.000003770654442897"},{"denom":"ASSET14","index":"0.000011367495794714"},{"denom":"ASSET15","index":"0.000008126250861227"},{"denom":"ASSET16","index":"0.000005666162616450"},{"denom":"ASSET17","index":"0.000004024252704398"},{"denom":"ASSET18","index":"0.000001915870077761"},{"denom":"ASSET2","index":"0.000003713270894674"},{"denom":"ASSET3","index":"0.000001084734169631"},{"denom":"ASSET4","index":"0.000010221675912459"},{"denom":"ASSET5","index":"0.000000842242401334"},{"denom":"ASSET6","index":"0.000003430055317962"},{"denom":"ASSET7","index":"0.000005255222367887"},{"denom":"ASSET8","index":"0.000006856408471522"},{"denom":"ASSET9","index":"0.000002961731521176"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000002968383248598"},{"denom":"ASSET1","index":"0.000025185581850199"},{"denom":"ASSET10","index":"0.000020091193699906"},{"denom":"ASSET11","index":"0.000025026167595767"},{"denom":"ASSET12","index":"0.000023854952987524"},{"denom":"ASSET13","index":"0.000007859725566891"},{"denom":"ASSET14","index":"0.000022971118914045"},{"denom":"ASSET15","index":"0.000018098517255117"},{"denom":"ASSET16","index":"0.000011173004258039"},{"denom":"ASSET17","index":"0.000008766603022733"},{"denom":"ASSET18","index":"0.000003624559740525"},{"denom":"ASSET2","index":"0.000007626317523237"},{"denom":"ASSET3","index":"0.000002117313008939"},{"denom":"ASSET4","index":"0.000020418576076670"},{"denom":"ASSET5","index":"0.000001649450966157"},{"denom":"ASSET6","index":"0.000006660362585584"},{"denom":"ASSET7","index":"0.000010463779822658"},{"denom":"ASSET8","index":"0.000014287735496216"},{"denom":"ASSET9","index":"0.000006065360072421"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001603618851190"},{"denom":"ASSET1","index":"0.000013373450792115"},{"denom":"ASSET10","index":"0.000009317368604669"},{"denom":"ASSET11","index":"0.000012937408123124"},{"denom":"ASSET12","index":"0.000011650307554501"},{"denom":"ASSET13","index":"0.000004008493774333"},{"denom":"ASSET14","index":"0.000012085243516211"},{"denom":"ASSET15","index":"0.000008640063748266"},{"denom":"ASSET16","index":"0.000006023807734317"},{"denom":"ASSET17","index":"0.000004278530351069"},{"denom":"ASSET18","index":"0.000002037448105618"},{"denom":"ASSET2","index":"0.000003947624873839"},{"denom":"ASSET3","index":"0.000001154295694818"},{"denom":"ASSET4","index":"0.000010867865506336"},{"denom":"ASSET5","index":"0.000000896432898181"},{"denom":"ASSET6","index":"0.000003647707200497"},{"denom":"ASSET7","index":"0.000005586658358043"},{"denom":"ASSET8","index":"0.000007289880864586"},{"denom":"ASSET9","index":"0.000003148582216449"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003259379166935"},{"denom":"ASSET1","index":"0.000027669546155668"},{"denom":"ASSET10","index":"0.000022163157427920"},{"denom":"ASSET11","index":"0.000027516665793422"},{"denom":"ASSET12","index":"0.000026276569409586"},{"denom":"ASSET13","index":"0.000008645229164029"},{"denom":"ASSET14","index":"0.000025243382728696"},{"denom":"ASSET15","index":"0.000019947981783747"},{"denom":"ASSET16","index":"0.000012268920188963"},{"denom":"ASSET17","index":"0.000009656339783182"},{"denom":"ASSET18","index":"0.000003975233530089"},{"denom":"ASSET2","index":"0.000008385350610200"},{"denom":"ASSET3","index":"0.000002325230588439"},{"denom":"ASSET4","index":"0.000022430515898086"},{"denom":"ASSET5","index":"0.000001812256369527"},{"denom":"ASSET6","index":"0.000007311001085881"},{"denom":"ASSET7","index":"0.000011492885803011"},{"denom":"ASSET8","index":"0.000015716897251793"},{"denom":"ASSET9","index":"0.000006668589151432"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001669758803356"},{"denom":"ASSET1","index":"0.000013919924903508"},{"denom":"ASSET10","index":"0.000009698114015232"},{"denom":"ASSET11","index":"0.000013466332119255"},{"denom":"ASSET12","index":"0.000012126099781115"},{"denom":"ASSET13","index":"0.000004173211661392"},{"denom":"ASSET14","index":"0.000012579297449702"},{"denom":"ASSET15","index":"0.000008994017898909"},{"denom":"ASSET16","index":"0.000006270880730729"},{"denom":"ASSET17","index":"0.000004453348668392"},{"denom":"ASSET18","index":"0.000002121376009280"},{"denom":"ASSET2","index":"0.000004109202923545"},{"denom":"ASSET3","index":"0.000001201941855137"},{"denom":"ASSET4","index":"0.000011312556625386"},{"denom":"ASSET5","index":"0.000000932868086778"},{"denom":"ASSET6","index":"0.000003797061547622"},{"denom":"ASSET7","index":"0.000005815312368147"},{"denom":"ASSET8","index":"0.000007588591475923"},{"denom":"ASSET9","index":"0.000003277484447193"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003314119794923"},{"denom":"ASSET1","index":"0.000028119315186385"},{"denom":"ASSET10","index":"0.000022456877991933"},{"denom":"ASSET11","index":"0.000027947185249485"},{"denom":"ASSET12","index":"0.000026653541530161"},{"denom":"ASSET13","index":"0.000008778725953540"},{"denom":"ASSET14","index":"0.000025648491290636"},{"denom":"ASSET15","index":"0.000020225495910600"},{"denom":"ASSET16","index":"0.000012473684612014"},{"denom":"ASSET17","index":"0.000009794866581105"},{"denom":"ASSET18","index":"0.000004045992889163"},{"denom":"ASSET2","index":"0.000008517017325485"},{"denom":"ASSET3","index":"0.000002365208974685"},{"denom":"ASSET4","index":"0.000022797013251164"},{"denom":"ASSET5","index":"0.000001842432416817"},{"denom":"ASSET6","index":"0.000007435560259585"},{"denom":"ASSET7","index":"0.000011681616070006"},{"denom":"ASSET8","index":"0.000015958852395270"},{"denom":"ASSET9","index":"0.000006773561992828"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001334597814253"},{"denom":"ASSET1","index":"0.000011126876577448"},{"denom":"ASSET10","index":"0.000007751884027943"},{"denom":"ASSET11","index":"0.000010763759508328"},{"denom":"ASSET12","index":"0.000009692944381721"},{"denom":"ASSET13","index":"0.000003335543967388"},{"denom":"ASSET14","index":"0.000010055110882597"},{"denom":"ASSET15","index":"0.000007189147627631"},{"denom":"ASSET16","index":"0.000005012346349398"},{"denom":"ASSET17","index":"0.000003559878072918"},{"denom":"ASSET18","index":"0.000001695813746885"},{"denom":"ASSET2","index":"0.000003284213282225"},{"denom":"ASSET3","index":"0.000000960549210329"},{"denom":"ASSET4","index":"0.000009042280418860"},{"denom":"ASSET5","index":"0.000000745720787237"},{"denom":"ASSET6","index":"0.000003035164402357"},{"denom":"ASSET7","index":"0.000004648278712034"},{"denom":"ASSET8","index":"0.000006065575963495"},{"denom":"ASSET9","index":"0.000002619766079830"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000002933404194828"},{"denom":"ASSET1","index":"0.000024932632498194"},{"denom":"ASSET10","index":"0.000020157113753706"},{"denom":"ASSET11","index":"0.000024842878528839"},{"denom":"ASSET12","index":"0.000023817726072485"},{"denom":"ASSET13","index":"0.000007813243799971"},{"denom":"ASSET14","index":"0.000022761898108549"},{"denom":"ASSET15","index":"0.000018109267957138"},{"denom":"ASSET16","index":"0.000011043189892304"},{"denom":"ASSET17","index":"0.000008753164046701"},{"denom":"ASSET18","index":"0.000003567063844603"},{"denom":"ASSET2","index":"0.000007569762146700"},{"denom":"ASSET3","index":"0.000002091389836038"},{"denom":"ASSET4","index":"0.000020208488830330"},{"denom":"ASSET5","index":"0.000001630166870108"},{"denom":"ASSET6","index":"0.000006572642272968"},{"denom":"ASSET7","index":"0.000010351822041320"},{"denom":"ASSET8","index":"0.000014203644477234"},{"denom":"ASSET9","index":"0.000006019030096188"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001655550281073"},{"denom":"ASSET1","index":"0.000013803766186213"},{"denom":"ASSET10","index":"0.000009616885369480"},{"denom":"ASSET11","index":"0.000013353770421464"},{"denom":"ASSET12","index":"0.000012024654915933"},{"denom":"ASSET13","index":"0.000004138458266908"},{"denom":"ASSET14","index":"0.000012474650680682"},{"denom":"ASSET15","index":"0.000008918932754767"},{"denom":"ASSET16","index":"0.000006218123294721"},{"denom":"ASSET17","index":"0.000004415635621077"},{"denom":"ASSET18","index":"0.000002103876302725"},{"denom":"ASSET2","index":"0.000004075008029207"},{"denom":"ASSET3","index":"0.000001191361699996"},{"denom":"ASSET4","index":"0.000011218168999888"},{"denom":"ASSET5","index":"0.000000925037675960"},{"denom":"ASSET6","index":"0.000003765270684639"},{"denom":"ASSET7","index":"0.000005766457786874"},{"denom":"ASSET8","index":"0.000007524697268437"},{"denom":"ASSET9","index":"0.000003250154939091"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003215122291080"},{"denom":"ASSET1","index":"0.000027271082473775"},{"denom":"ASSET10","index":"0.000021717714787675"},{"denom":"ASSET11","index":"0.000027088129911249"},{"denom":"ASSET12","index":"0.000025803190697535"},{"denom":"ASSET13","index":"0.000008506451165719"},{"denom":"ASSET14","index":"0.000024869823256717"},{"denom":"ASSET15","index":"0.000019571375436743"},{"denom":"ASSET16","index":"0.000012101015548893"},{"denom":"ASSET17","index":"0.000009481514658039"},{"denom":"ASSET18","index":"0.000003929002426467"},{"denom":"ASSET2","index":"0.000008255375778501"},{"denom":"ASSET3","index":"0.000002294279906946"},{"denom":"ASSET4","index":"0.000022110354928469"},{"denom":"ASSET5","index":"0.000001787716273475"},{"denom":"ASSET6","index":"0.000007215985074700"},{"denom":"ASSET7","index":"0.000011330188741735"},{"denom":"ASSET8","index":"0.000015463524362026"},{"denom":"ASSET9","index":"0.000006565858639552"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001631513498845"},{"denom":"ASSET1","index":"0.000013601788709515"},{"denom":"ASSET10","index":"0.000009476711328689"},{"denom":"ASSET11","index":"0.000013158178840821"},{"denom":"ASSET12","index":"0.000011848922966954"},{"denom":"ASSET13","index":"0.000004077884841603"},{"denom":"ASSET14","index":"0.000012291633930140"},{"denom":"ASSET15","index":"0.000008788599161546"},{"denom":"ASSET16","index":"0.000006127389402135"},{"denom":"ASSET17","index":"0.000004351601569095"},{"denom":"ASSET18","index":"0.000002072876103766"},{"denom":"ASSET2","index":"0.000004014961455973"},{"denom":"ASSET3","index":"0.000001174420047516"},{"denom":"ASSET4","index":"0.000011053841044239"},{"denom":"ASSET5","index":"0.000000911490186131"},{"denom":"ASSET6","index":"0.000003710232488420"},{"denom":"ASSET7","index":"0.000005682431175178"},{"denom":"ASSET8","index":"0.000007415071543785"},{"denom":"ASSET9","index":"0.000003202800328586"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003159157648171"},{"denom":"ASSET1","index":"0.000026793811254639"},{"denom":"ASSET10","index":"0.000021330257270132"},{"denom":"ASSET11","index":"0.000026611245447042"},{"denom":"ASSET12","index":"0.000025345616114893"},{"denom":"ASSET13","index":"0.000008356504281369"},{"denom":"ASSET14","index":"0.000024433401122602"},{"denom":"ASSET15","index":"0.000019223209713353"},{"denom":"ASSET16","index":"0.000011890026449509"},{"denom":"ASSET17","index":"0.000009313941892173"},{"denom":"ASSET18","index":"0.000003860849124980"},{"denom":"ASSET2","index":"0.000008109777269158"},{"denom":"ASSET3","index":"0.000002255070941538"},{"denom":"ASSET4","index":"0.000021723391251034"},{"denom":"ASSET5","index":"0.000001756486235957"},{"denom":"ASSET6","index":"0.000007090574282328"},{"denom":"ASSET7","index":"0.000011132530538444"},{"denom":"ASSET8","index":"0.000015191323807650"},{"denom":"ASSET9","index":"0.000006450832118924"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001649724724935"},{"denom":"ASSET1","index":"0.000013753740147655"},{"denom":"ASSET10","index":"0.000009582563441278"},{"denom":"ASSET11","index":"0.000013305204895691"},{"denom":"ASSET12","index":"0.000011981321923304"},{"denom":"ASSET13","index":"0.000004123306127916"},{"denom":"ASSET14","index":"0.000012429052627730"},{"denom":"ASSET15","index":"0.000008886629821639"},{"denom":"ASSET16","index":"0.000006195820583626"},{"denom":"ASSET17","index":"0.000004400070480698"},{"denom":"ASSET18","index":"0.000002096248608056"},{"denom":"ASSET2","index":"0.000004060149146250"},{"denom":"ASSET3","index":"0.000001187512164840"},{"denom":"ASSET4","index":"0.000011177176659918"},{"denom":"ASSET5","index":"0.000000921609203810"},{"denom":"ASSET6","index":"0.000003751605165751"},{"denom":"ASSET7","index":"0.000005746078510357"},{"denom":"ASSET8","index":"0.000007497578498742"},{"denom":"ASSET9","index":"0.000003238303837047"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003253063831874"},{"denom":"ASSET1","index":"0.000027597326034286"},{"denom":"ASSET10","index":"0.000022021617243178"},{"denom":"ASSET11","index":"0.000027423138617092"},{"denom":"ASSET12","index":"0.000026144931484859"},{"denom":"ASSET13","index":"0.000008613299773809"},{"denom":"ASSET14","index":"0.000025170855267573"},{"denom":"ASSET15","index":"0.000019836826910831"},{"denom":"ASSET16","index":"0.000012243184702458"},{"denom":"ASSET17","index":"0.000009607701845932"},{"denom":"ASSET18","index":"0.000003972764374377"},{"denom":"ASSET2","index":"0.000008357484440725"},{"denom":"ASSET3","index":"0.000002321502734814"},{"denom":"ASSET4","index":"0.000022373906168402"},{"denom":"ASSET5","index":"0.000001808481766797"},{"denom":"ASSET6","index":"0.000007298802623853"},{"denom":"ASSET7","index":"0.000011465220726545"},{"denom":"ASSET8","index":"0.000015658035812384"},{"denom":"ASSET9","index":"0.000006646717011605"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001698975992122"},{"denom":"ASSET1","index":"0.000014167905922226"},{"denom":"ASSET10","index":"0.000009870625403756"},{"denom":"ASSET11","index":"0.000013705415046027"},{"denom":"ASSET12","index":"0.000012342129737421"},{"denom":"ASSET13","index":"0.000004247439980305"},{"denom":"ASSET14","index":"0.000012803154715439"},{"denom":"ASSET15","index":"0.000009153801193103"},{"denom":"ASSET16","index":"0.000006381787732272"},{"denom":"ASSET17","index":"0.000004532557176567"},{"denom":"ASSET18","index":"0.000002159268021049"},{"denom":"ASSET2","index":"0.000004182207511237"},{"denom":"ASSET3","index":"0.000001223292032291"},{"denom":"ASSET4","index":"0.000011513897264989"},{"denom":"ASSET5","index":"0.000000949169072389"},{"denom":"ASSET6","index":"0.000003864840554987"},{"denom":"ASSET7","index":"0.000005918563906982"},{"denom":"ASSET8","index":"0.000007723084568158"},{"denom":"ASSET9","index":"0.000003335651311539"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003402845442317"},{"denom":"ASSET1","index":"0.000028880571174740"},{"denom":"ASSET10","index":"0.000023090578471272"},{"denom":"ASSET11","index":"0.000028709364204549"},{"denom":"ASSET12","index":"0.000027394626213612"},{"denom":"ASSET13","index":"0.000009019217107214"},{"denom":"ASSET14","index":"0.000026344557012563"},{"denom":"ASSET15","index":"0.000020791017438004"},{"denom":"ASSET16","index":"0.000012808886991708"},{"denom":"ASSET17","index":"0.000010066951390727"},{"denom":"ASSET18","index":"0.000004153478710890"},{"denom":"ASSET2","index":"0.000008748954704305"},{"denom":"ASSET3","index":"0.000002428490976730"},{"denom":"ASSET4","index":"0.000023413646091842"},{"denom":"ASSET5","index":"0.000001891364101695"},{"denom":"ASSET6","index":"0.000007634563338572"},{"denom":"ASSET7","index":"0.000011996876612297"},{"denom":"ASSET8","index":"0.000016395615103037"},{"denom":"ASSET9","index":"0.000006958318142576"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001515088644413"},{"denom":"ASSET1","index":"0.000012634136557163"},{"denom":"ASSET10","index":"0.000008802109028204"},{"denom":"ASSET11","index":"0.000012222352143486"},{"denom":"ASSET12","index":"0.000011006111259210"},{"denom":"ASSET13","index":"0.000003787721611031"},{"denom":"ASSET14","index":"0.000011417895672887"},{"denom":"ASSET15","index":"0.000008163582563959"},{"denom":"ASSET16","index":"0.000005691138594924"},{"denom":"ASSET17","index":"0.000004042263453241"},{"denom":"ASSET18","index":"0.000001925135571111"},{"denom":"ASSET2","index":"0.000003729515797284"},{"denom":"ASSET3","index":"0.000001091141821893"},{"denom":"ASSET4","index":"0.000010267679293757"},{"denom":"ASSET5","index":"0.000000846156158061"},{"denom":"ASSET6","index":"0.000003446305419945"},{"denom":"ASSET7","index":"0.000005278485437758"},{"denom":"ASSET8","index":"0.000006887398378958"},{"denom":"ASSET9","index":"0.000002974577705544"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003029367235848"},{"denom":"ASSET1","index":"0.000025709657584098"},{"denom":"ASSET10","index":"0.000020551027857005"},{"denom":"ASSET11","index":"0.000025556791271547"},{"denom":"ASSET12","index":"0.000024383546484064"},{"denom":"ASSET13","index":"0.000008028643187417"},{"denom":"ASSET14","index":"0.000023452409013233"},{"denom":"ASSET15","index":"0.000018505869963369"},{"denom":"ASSET16","index":"0.000011403028825829"},{"denom":"ASSET17","index":"0.000008960765854271"},{"denom":"ASSET18","index":"0.000003697390743305"},{"denom":"ASSET2","index":"0.000007788410102575"},{"denom":"ASSET3","index":"0.000002162278160249"},{"denom":"ASSET4","index":"0.000020843149904241"},{"denom":"ASSET5","index":"0.000001683795445220"},{"denom":"ASSET6","index":"0.000006796548728457"},{"denom":"ASSET7","index":"0.000010680301627557"},{"denom":"ASSET8","index":"0.000014594997949332"},{"denom":"ASSET9","index":"0.000006193949682941"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001650481631660"},{"denom":"ASSET1","index":"0.000013760556046882"},{"denom":"ASSET10","index":"0.000009587067899364"},{"denom":"ASSET11","index":"0.000013312100857594"},{"denom":"ASSET12","index":"0.000011987552175177"},{"denom":"ASSET13","index":"0.000004125311926918"},{"denom":"ASSET14","index":"0.000012435412596309"},{"denom":"ASSET15","index":"0.000008891189157367"},{"denom":"ASSET16","index":"0.000006198673717177"},{"denom":"ASSET17","index":"0.000004402473887406"},{"denom":"ASSET18","index":"0.000002097152516481"},{"denom":"ASSET2","index":"0.000004062266502429"},{"denom":"ASSET3","index":"0.000001188346774796"},{"denom":"ASSET4","index":"0.000011182830860714"},{"denom":"ASSET5","index":"0.000000921890641108"},{"denom":"ASSET6","index":"0.000003753581829697"},{"denom":"ASSET7","index":"0.000005749028991578"},{"denom":"ASSET8","index":"0.000007501810745994"},{"denom":"ASSET9","index":"0.000003239702143299"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003205609047354"},{"denom":"ASSET1","index":"0.000027188537481167"},{"denom":"ASSET10","index":"0.000021652723818266"},{"denom":"ASSET11","index":"0.000027005979418132"},{"denom":"ASSET12","index":"0.000025725923481940"},{"denom":"ASSET13","index":"0.000008480657418555"},{"denom":"ASSET14","index":"0.000024794508770079"},{"denom":"ASSET15","index":"0.000019512596409105"},{"denom":"ASSET16","index":"0.000012064653878282"},{"denom":"ASSET17","index":"0.000009453813052143"},{"denom":"ASSET18","index":"0.000003917117707327"},{"denom":"ASSET2","index":"0.000008230459966291"},{"denom":"ASSET3","index":"0.000002288306334262"},{"denom":"ASSET4","index":"0.000022043298344156"},{"denom":"ASSET5","index":"0.000001782083734802"},{"denom":"ASSET6","index":"0.000007194354204475"},{"denom":"ASSET7","index":"0.000011296497588433"},{"denom":"ASSET8","index":"0.000015417282169744"},{"denom":"ASSET9","index":"0.000006545936928299"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001428935211366"},{"denom":"ASSET1","index":"0.000011914564237659"},{"denom":"ASSET10","index":"0.000008301159777028"},{"denom":"ASSET11","index":"0.000011525978642480"},{"denom":"ASSET12","index":"0.000010379209562159"},{"denom":"ASSET13","index":"0.000003571896453874"},{"denom":"ASSET14","index":"0.000010767353582799"},{"denom":"ASSET15","index":"0.000007698410529959"},{"denom":"ASSET16","index":"0.000005367338533420"},{"denom":"ASSET17","index":"0.000003811671429081"},{"denom":"ASSET18","index":"0.000001815754508385"},{"denom":"ASSET2","index":"0.000003517141210917"},{"denom":"ASSET3","index":"0.000001028868678146"},{"denom":"ASSET4","index":"0.000009682846512616"},{"denom":"ASSET5","index":"0.000000798366768278"},{"denom":"ASSET6","index":"0.000003249988614231"},{"denom":"ASSET7","index":"0.000004977428214621"},{"denom":"ASSET8","index":"0.000006495119908522"},{"denom":"ASSET9","index":"0.000002805323052474"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003075918064869"},{"denom":"ASSET1","index":"0.000026136551234120"},{"denom":"ASSET10","index":"0.000021080163895542"},{"denom":"ASSET11","index":"0.000026029570124972"},{"denom":"ASSET12","index":"0.000024929671095533"},{"denom":"ASSET13","index":"0.000008184754658215"},{"denom":"ASSET14","index":"0.000023857159923959"},{"denom":"ASSET15","index":"0.000018947606922173"},{"denom":"ASSET16","index":"0.000011579925359638"},{"denom":"ASSET17","index":"0.000009161388302193"},{"denom":"ASSET18","index":"0.000003743573486430"},{"denom":"ASSET2","index":"0.000007931762150876"},{"denom":"ASSET3","index":"0.000002193704696765"},{"denom":"ASSET4","index":"0.000021185602196482"},{"denom":"ASSET5","index":"0.000001709259314500"},{"denom":"ASSET6","index":"0.000006893942979866"},{"denom":"ASSET7","index":"0.000010853088527538"},{"denom":"ASSET8","index":"0.000014878712124324"},{"denom":"ASSET9","index":"0.000006307130542486"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001556917620519"},{"denom":"ASSET1","index":"0.000012983455297040"},{"denom":"ASSET10","index":"0.000009045452282177"},{"denom":"ASSET11","index":"0.000012560119972943"},{"denom":"ASSET12","index":"0.000011310507230547"},{"denom":"ASSET13","index":"0.000003892294051298"},{"denom":"ASSET14","index":"0.000011733139339821"},{"denom":"ASSET15","index":"0.000008388649636483"},{"denom":"ASSET16","index":"0.000005848637691896"},{"denom":"ASSET17","index":"0.000004153889965857"},{"denom":"ASSET18","index":"0.000001978846514969"},{"denom":"ASSET2","index":"0.000003832520791251"},{"denom":"ASSET3","index":"0.000001120924429588"},{"denom":"ASSET4","index":"0.000010551035220538"},{"denom":"ASSET5","index":"0.000000869876737390"},{"denom":"ASSET6","index":"0.000003541389854081"},{"denom":"ASSET7","index":"0.000005423895938150"},{"denom":"ASSET8","index":"0.000007077857204393"},{"denom":"ASSET9","index":"0.000003056874840288"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003155948059833"},{"denom":"ASSET1","index":"0.000026789841893667"},{"denom":"ASSET10","index":"0.000021451154188244"},{"denom":"ASSET11","index":"0.000026640130662201"},{"denom":"ASSET12","index":"0.000025435769508540"},{"denom":"ASSET13","index":"0.000008370086775831"},{"denom":"ASSET14","index":"0.000024440800445484"},{"denom":"ASSET15","index":"0.000019309084443140"},{"denom":"ASSET16","index":"0.000011879786354964"},{"denom":"ASSET17","index":"0.000009347672781307"},{"denom":"ASSET18","index":"0.000003850232310781"},{"denom":"ASSET2","index":"0.000008118311447694"},{"denom":"ASSET3","index":"0.000002251791235916"},{"denom":"ASSET4","index":"0.000021717604836949"},{"denom":"ASSET5","index":"0.000001754185821919"},{"denom":"ASSET6","index":"0.000007079049104243"},{"denom":"ASSET7","index":"0.000011127710678967"},{"denom":"ASSET8","index":"0.000015216376583965"},{"denom":"ASSET9","index":"0.000006456241851980"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001629017625409"},{"denom":"ASSET1","index":"0.000013583500814952"},{"denom":"ASSET10","index":"0.000009463617777698"},{"denom":"ASSET11","index":"0.000013140742178302"},{"denom":"ASSET12","index":"0.000011833351109704"},{"denom":"ASSET13","index":"0.000004072544063523"},{"denom":"ASSET14","index":"0.000012276109746354"},{"denom":"ASSET15","index":"0.000008777202658616"},{"denom":"ASSET16","index":"0.000006119258515961"},{"denom":"ASSET17","index":"0.000004345439323848"},{"denom":"ASSET18","index":"0.000002070383939302"},{"denom":"ASSET2","index":"0.000004009889539469"},{"denom":"ASSET3","index":"0.000001172335761192"},{"denom":"ASSET4","index":"0.000011039727138351"},{"denom":"ASSET5","index":"0.000000910579082921"},{"denom":"ASSET6","index":"0.000003704970855739"},{"denom":"ASSET7","index":"0.000005675107556554"},{"denom":"ASSET8","index":"0.000007404372420450"},{"denom":"ASSET9","index":"0.000003198165372278"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003300821213878"},{"denom":"ASSET1","index":"0.000028019420341436"},{"denom":"ASSET10","index":"0.000022435320069293"},{"denom":"ASSET11","index":"0.000027862926397945"},{"denom":"ASSET12","index":"0.000026603097941410"},{"denom":"ASSET13","index":"0.000008754572034100"},{"denom":"ASSET14","index":"0.000025562969906661"},{"denom":"ASSET15","index":"0.000020195785636702"},{"denom":"ASSET16","index":"0.000012425527462944"},{"denom":"ASSET17","index":"0.000009776022796414"},{"denom":"ASSET18","index":"0.000004027118689751"},{"denom":"ASSET2","index":"0.000008490998812362"},{"denom":"ASSET3","index":"0.000002354733406852"},{"denom":"ASSET4","index":"0.000022715681634045"},{"denom":"ASSET5","index":"0.000001835160700580"},{"denom":"ASSET6","index":"0.000007403741836767"},{"denom":"ASSET7","index":"0.000011639103500846"},{"denom":"ASSET8","index":"0.000015914079386056"},{"denom":"ASSET9","index":"0.000006752470475547"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001599876133405"},{"denom":"ASSET1","index":"0.000013345434681176"},{"denom":"ASSET10","index":"0.000009297530322905"},{"denom":"ASSET11","index":"0.000012909953167223"},{"denom":"ASSET12","index":"0.000011625282701060"},{"denom":"ASSET13","index":"0.000004000208763886"},{"denom":"ASSET14","index":"0.000012059727354266"},{"denom":"ASSET15","index":"0.000008622533976277"},{"denom":"ASSET16","index":"0.000006011718614052"},{"denom":"ASSET17","index":"0.000004268755697491"},{"denom":"ASSET18","index":"0.000002033283925863"},{"denom":"ASSET2","index":"0.000003939033979783"},{"denom":"ASSET3","index":"0.000001151952290481"},{"denom":"ASSET4","index":"0.000010845563418934"},{"denom":"ASSET5","index":"0.000000893773964352"},{"denom":"ASSET6","index":"0.000003640418084501"},{"denom":"ASSET7","index":"0.000005575200239351"},{"denom":"ASSET8","index":"0.000007274615004517"},{"denom":"ASSET9","index":"0.000003141688064949"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003205518103121"},{"denom":"ASSET1","index":"0.000027209804037075"},{"denom":"ASSET10","index":"0.000021755111918776"},{"denom":"ASSET11","index":"0.000027048910570117"},{"denom":"ASSET12","index":"0.000025809934262776"},{"denom":"ASSET13","index":"0.000008496852467218"},{"denom":"ASSET14","index":"0.000024820667393427"},{"denom":"ASSET15","index":"0.000019589132093549"},{"denom":"ASSET16","index":"0.000012068310128279"},{"denom":"ASSET17","index":"0.000009484236214143"},{"denom":"ASSET18","index":"0.000003912244660385"},{"denom":"ASSET2","index":"0.000008242746790311"},{"denom":"ASSET3","index":"0.000002287536756020"},{"denom":"ASSET4","index":"0.000022059248469095"},{"denom":"ASSET5","index":"0.000001781848402938"},{"denom":"ASSET6","index":"0.000007192715838846"},{"denom":"ASSET7","index":"0.000011303047666497"},{"denom":"ASSET8","index":"0.000015447099928639"},{"denom":"ASSET9","index":"0.000006555210966575"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001693699328345"},{"denom":"ASSET1","index":"0.000014121235265065"},{"denom":"ASSET10","index":"0.000009838380374958"},{"denom":"ASSET11","index":"0.000013660499756586"},{"denom":"ASSET12","index":"0.000012301569616423"},{"denom":"ASSET13","index":"0.000004233563721295"},{"denom":"ASSET14","index":"0.000012760935925768"},{"denom":"ASSET15","index":"0.000009123658427184"},{"denom":"ASSET16","index":"0.000006361299175013"},{"denom":"ASSET17","index":"0.000004517672541531"},{"denom":"ASSET18","index":"0.000002151696438556"},{"denom":"ASSET2","index":"0.000004168526762446"},{"denom":"ASSET3","index":"0.000001219271828530"},{"denom":"ASSET4","index":"0.000011475942538822"},{"denom":"ASSET5","index":"0.000000946116601363"},{"denom":"ASSET6","index":"0.000003852241762569"},{"denom":"ASSET7","index":"0.000005899194467400"},{"denom":"ASSET8","index":"0.000007698322129037"},{"denom":"ASSET9","index":"0.000003325100096108"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003374964488748"},{"denom":"ASSET1","index":"0.000028642371697541"},{"denom":"ASSET10","index":"0.000022886358038922"},{"denom":"ASSET11","index":"0.000028469467846578"},{"denom":"ASSET12","index":"0.000027158021136678"},{"denom":"ASSET13","index":"0.000008943216545101"},{"denom":"ASSET14","index":"0.000026126056006670"},{"denom":"ASSET15","index":"0.000020609372613995"},{"denom":"ASSET16","index":"0.000012704733728960"},{"denom":"ASSET17","index":"0.000009980025667275"},{"denom":"ASSET18","index":"0.000004119620826099"},{"denom":"ASSET2","index":"0.000008675935346246"},{"denom":"ASSET3","index":"0.000002408702445844"},{"denom":"ASSET4","index":"0.000023220763838917"},{"denom":"ASSET5","index":"0.000001876440105393"},{"denom":"ASSET6","index":"0.000007572949563502"},{"denom":"ASSET7","index":"0.000011897934490553"},{"denom":"ASSET8","index":"0.000016258236310419"},{"denom":"ASSET9","index":"0.000006900426530312"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001608105877482"},{"denom":"ASSET1","index":"0.000013418457239972"},{"denom":"ASSET10","index":"0.000009349233819318"},{"denom":"ASSET11","index":"0.000012981594753349"},{"denom":"ASSET12","index":"0.000011689837573077"},{"denom":"ASSET13","index":"0.000004022147721664"},{"denom":"ASSET14","index":"0.000012126700059700"},{"denom":"ASSET15","index":"0.000008669460725910"},{"denom":"ASSET16","index":"0.000006044519750254"},{"denom":"ASSET17","index":"0.000004293303747844"},{"denom":"ASSET18","index":"0.000002044968364105"},{"denom":"ASSET2","index":"0.000003960007798998"},{"denom":"ASSET3","index":"0.000001158062195142"},{"denom":"ASSET4","index":"0.000010904614913932"},{"denom":"ASSET5","index":"0.000000898204336720"},{"denom":"ASSET6","index":"0.000003660606353425"},{"denom":"ASSET7","index":"0.000005605774235672"},{"denom":"ASSET8","index":"0.000007313680595011"},{"denom":"ASSET9","index":"0.000003159720916176"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003138779820137"},{"denom":"ASSET1","index":"0.000026638851971456"},{"denom":"ASSET10","index":"0.000021228354320839"},{"denom":"ASSET11","index":"0.000026463611656062"},{"denom":"ASSET12","index":"0.000025215335343685"},{"denom":"ASSET13","index":"0.000008309803474369"},{"denom":"ASSET14","index":"0.000024294710395367"},{"denom":"ASSET15","index":"0.000019126240972581"},{"denom":"ASSET16","index":"0.000011819368577720"},{"denom":"ASSET17","index":"0.000009266335892783"},{"denom":"ASSET18","index":"0.000003836527514127"},{"denom":"ASSET2","index":"0.000008063422586049"},{"denom":"ASSET3","index":"0.000002240662109326"},{"denom":"ASSET4","index":"0.000021597223596640"},{"denom":"ASSET5","index":"0.000001744975814867"},{"denom":"ASSET6","index":"0.000007047692266012"},{"denom":"ASSET7","index":"0.000011067413421526"},{"denom":"ASSET8","index":"0.000015106336478322"},{"denom":"ASSET9","index":"0.000006414890297355"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001636130781121"},{"denom":"ASSET1","index":"0.000013651986161797"},{"denom":"ASSET10","index":"0.000009511743354655"},{"denom":"ASSET11","index":"0.000013205516575762"},{"denom":"ASSET12","index":"0.000011891065744828"},{"denom":"ASSET13","index":"0.000004093100055822"},{"denom":"ASSET14","index":"0.000012337535330862"},{"denom":"ASSET15","index":"0.000008821240702961"},{"denom":"ASSET16","index":"0.000006147969392790"},{"denom":"ASSET17","index":"0.000004367637254688"},{"denom":"ASSET18","index":"0.000002079827264137"},{"denom":"ASSET2","index":"0.000004029318686389"},{"denom":"ASSET3","index":"0.000001178568783011"},{"denom":"ASSET4","index":"0.000011095185178418"},{"denom":"ASSET5","index":"0.000000915123996220"},{"denom":"ASSET6","index":"0.000003724277354315"},{"denom":"ASSET7","index":"0.000005701499806755"},{"denom":"ASSET8","index":"0.000007440235399574"},{"denom":"ASSET9","index":"0.000003214026398847"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003135138573804"},{"denom":"ASSET1","index":"0.000026601246250396"},{"denom":"ASSET10","index":"0.000021147351718785"},{"denom":"ASSET11","index":"0.000026411423528042"},{"denom":"ASSET12","index":"0.000025139747174388"},{"denom":"ASSET13","index":"0.000008292603180789"},{"denom":"ASSET14","index":"0.000024256405788980"},{"denom":"ASSET15","index":"0.000019064302195638"},{"denom":"ASSET16","index":"0.000011804656377100"},{"denom":"ASSET17","index":"0.000009238224400983"},{"denom":"ASSET18","index":"0.000003834531376561"},{"denom":"ASSET2","index":"0.000008049169006780"},{"denom":"ASSET3","index":"0.000002239375819558"},{"denom":"ASSET4","index":"0.000021568278304468"},{"denom":"ASSET5","index":"0.000001743998311515"},{"denom":"ASSET6","index":"0.000007041675703373"},{"denom":"ASSET7","index":"0.000011051161098588"},{"denom":"ASSET8","index":"0.000015073103234225"},{"denom":"ASSET9","index":"0.000006402150772125"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001682560247115"},{"denom":"ASSET1","index":"0.000014026482890055"},{"denom":"ASSET10","index":"0.000009772411969975"},{"denom":"ASSET11","index":"0.000013568579422963"},{"denom":"ASSET12","index":"0.000012218368466479"},{"denom":"ASSET13","index":"0.000004205057792371"},{"denom":"ASSET14","index":"0.000012675600520863"},{"denom":"ASSET15","index":"0.000009062728737253"},{"denom":"ASSET16","index":"0.000006318664998244"},{"denom":"ASSET17","index":"0.000004487051129876"},{"denom":"ASSET18","index":"0.000002137778063373"},{"denom":"ASSET2","index":"0.000004140602172369"},{"denom":"ASSET3","index":"0.000001211228525856"},{"denom":"ASSET4","index":"0.000011398573549589"},{"denom":"ASSET5","index":"0.000000939977791684"},{"denom":"ASSET6","index":"0.000003825709612155"},{"denom":"ASSET7","index":"0.000005859418705735"},{"denom":"ASSET8","index":"0.000007646047922643"},{"denom":"ASSET9","index":"0.000003302679112354"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003237426875283"},{"denom":"ASSET1","index":"0.000027451710154634"},{"denom":"ASSET10","index":"0.000021835512998164"},{"denom":"ASSET11","index":"0.000027259736654219"},{"denom":"ASSET12","index":"0.000025953768913429"},{"denom":"ASSET13","index":"0.000008559484494503"},{"denom":"ASSET14","index":"0.000025032165857410"},{"denom":"ASSET15","index":"0.000019681806512765"},{"denom":"ASSET16","index":"0.000012183244440341"},{"denom":"ASSET17","index":"0.000009537367134186"},{"denom":"ASSET18","index":"0.000003957397976948"},{"denom":"ASSET2","index":"0.000008307936552813"},{"denom":"ASSET3","index":"0.000002310954839376"},{"denom":"ASSET4","index":"0.000022256988295109"},{"denom":"ASSET5","index":"0.000001799896462688"},{"denom":"ASSET6","index":"0.000007265619632425"},{"denom":"ASSET7","index":"0.000011405823532836"},{"denom":"ASSET8","index":"0.000015559935461923"},{"denom":"ASSET9","index":"0.000006608212131764"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001576738934866"},{"denom":"ASSET1","index":"0.000013143695761043"},{"denom":"ASSET10","index":"0.000009157699733702"},{"denom":"ASSET11","index":"0.000012715663698192"},{"denom":"ASSET12","index":"0.000011450067913139"},{"denom":"ASSET13","index":"0.000003940585946017"},{"denom":"ASSET14","index":"0.000011878099975991"},{"denom":"ASSET15","index":"0.000008492526135047"},{"denom":"ASSET16","index":"0.000005920970048209"},{"denom":"ASSET17","index":"0.000004204637159643"},{"denom":"ASSET18","index":"0.000002003089142854"},{"denom":"ASSET2","index":"0.000003880039170918"},{"denom":"ASSET3","index":"0.000001134411105672"},{"denom":"ASSET4","index":"0.000010681460240357"},{"denom":"ASSET5","index":"0.000000880451021229"},{"denom":"ASSET6","index":"0.000003584873642311"},{"denom":"ASSET7","index":"0.000005491256130493"},{"denom":"ASSET8","index":"0.000007165542647463"},{"denom":"ASSET9","index":"0.000003094612949497"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003150995592381"},{"denom":"ASSET1","index":"0.000026735906318713"},{"denom":"ASSET10","index":"0.000021370928366269"},{"denom":"ASSET11","index":"0.000026577057751538"},{"denom":"ASSET12","index":"0.000025356196217934"},{"denom":"ASSET13","index":"0.000008349049177946"},{"denom":"ASSET14","index":"0.000024388519635576"},{"denom":"ASSET15","index":"0.000019243917228958"},{"denom":"ASSET16","index":"0.000011858566692713"},{"denom":"ASSET17","index":"0.000009317567603522"},{"denom":"ASSET18","index":"0.000003845362315572"},{"denom":"ASSET2","index":"0.000008099062572798"},{"denom":"ASSET3","index":"0.000002247710476517"},{"denom":"ASSET4","index":"0.000021674805285583"},{"denom":"ASSET5","index":"0.000001751018453776"},{"denom":"ASSET6","index":"0.000007067532365991"},{"denom":"ASSET7","index":"0.000011106766164564"},{"denom":"ASSET8","index":"0.000015177641578730"},{"denom":"ASSET9","index":"0.000006441123951375"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001735896630597"},{"denom":"ASSET1","index":"0.000014474259966527"},{"denom":"ASSET10","index":"0.000010084408758147"},{"denom":"ASSET11","index":"0.000014002239606889"},{"denom":"ASSET12","index":"0.000012609068112910"},{"denom":"ASSET13","index":"0.000004339122939062"},{"denom":"ASSET14","index":"0.000013079851197687"},{"denom":"ASSET15","index":"0.000009351942040176"},{"denom":"ASSET16","index":"0.000006520438519776"},{"denom":"ASSET17","index":"0.000004630501168930"},{"denom":"ASSET18","index":"0.000002205442440512"},{"denom":"ASSET2","index":"0.000004272310096544"},{"denom":"ASSET3","index":"0.000001249647610052"},{"denom":"ASSET4","index":"0.000011762772107687"},{"denom":"ASSET5","index":"0.000000970023491367"},{"denom":"ASSET6","index":"0.000003948144082847"},{"denom":"ASSET7","index":"0.000006046562247845"},{"denom":"ASSET8","index":"0.000007890101791387"},{"denom":"ASSET9","index":"0.000003408073605830"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003300304206809"},{"denom":"ASSET1","index":"0.000027981868665615"},{"denom":"ASSET10","index":"0.000022221493016134"},{"denom":"ASSET11","index":"0.000027777532118325"},{"denom":"ASSET12","index":"0.000026428557640091"},{"denom":"ASSET13","index":"0.000008720047886627"},{"denom":"ASSET14","index":"0.000025512138164618"},{"denom":"ASSET15","index":"0.000020036362120252"},{"denom":"ASSET16","index":"0.000012421157074829"},{"denom":"ASSET17","index":"0.000009711490167791"},{"denom":"ASSET18","index":"0.000004036282970136"},{"denom":"ASSET2","index":"0.000008465189250700"},{"denom":"ASSET3","index":"0.000002356240815614"},{"denom":"ASSET4","index":"0.000022687774056492"},{"denom":"ASSET5","index":"0.000001835200922241"},{"denom":"ASSET6","index":"0.000007409270759323"},{"denom":"ASSET7","index":"0.000011627060915230"},{"denom":"ASSET8","index":"0.000015852235873304"},{"denom":"ASSET9","index":"0.000006733690564218"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001726734301691"},{"denom":"ASSET1","index":"0.000014395988805148"},{"denom":"ASSET10","index":"0.000010029746380297"},{"denom":"ASSET11","index":"0.000013926529312304"},{"denom":"ASSET12","index":"0.000012540835608608"},{"denom":"ASSET13","index":"0.000004315874534955"},{"denom":"ASSET14","index":"0.000013009526126035"},{"denom":"ASSET15","index":"0.000009301526659210"},{"denom":"ASSET16","index":"0.000006485154189852"},{"denom":"ASSET17","index":"0.000004605778267637"},{"denom":"ASSET18","index":"0.000002193886868281"},{"denom":"ASSET2","index":"0.000004249742648985"},{"denom":"ASSET3","index":"0.000001243048763609"},{"denom":"ASSET4","index":"0.000011699192013329"},{"denom":"ASSET5","index":"0.000000964679662201"},{"denom":"ASSET6","index":"0.000003926772973318"},{"denom":"ASSET7","index":"0.000006014156746171"},{"denom":"ASSET8","index":"0.000007847778630999"},{"denom":"ASSET9","index":"0.000003389643643667"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003383074331503"},{"denom":"ASSET1","index":"0.000028697774885580"},{"denom":"ASSET10","index":"0.000022880621123289"},{"denom":"ASSET11","index":"0.000028511966470743"},{"denom":"ASSET12","index":"0.000027173358086556"},{"denom":"ASSET13","index":"0.000008954537947194"},{"denom":"ASSET14","index":"0.000026172910691250"},{"denom":"ASSET15","index":"0.000020614154391480"},{"denom":"ASSET16","index":"0.000012732692592075"},{"denom":"ASSET17","index":"0.000009985655741818"},{"denom":"ASSET18","index":"0.000004132359094826"},{"denom":"ASSET2","index":"0.000008689052893949"},{"denom":"ASSET3","index":"0.000002414485946546"},{"denom":"ASSET4","index":"0.000023266612079392"},{"denom":"ASSET5","index":"0.000001880944791026"},{"denom":"ASSET6","index":"0.000007591453768301"},{"denom":"ASSET7","index":"0.000011922604903868"},{"denom":"ASSET8","index":"0.000016278329144958"},{"denom":"ASSET9","index":"0.000006911169878531"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001436232590899"},{"denom":"ASSET1","index":"0.000011976183987962"},{"denom":"ASSET10","index":"0.000008344549248442"},{"denom":"ASSET11","index":"0.000011585862202045"},{"denom":"ASSET12","index":"0.000010432581326504"},{"denom":"ASSET13","index":"0.000003589949888597"},{"denom":"ASSET14","index":"0.000010822903112421"},{"denom":"ASSET15","index":"0.000007738224144105"},{"denom":"ASSET16","index":"0.000005395030251301"},{"denom":"ASSET17","index":"0.000003831216753031"},{"denom":"ASSET18","index":"0.000001825291199515"},{"denom":"ASSET2","index":"0.000003535633264667"},{"denom":"ASSET3","index":"0.000001033279031975"},{"denom":"ASSET4","index":"0.000009732781101914"},{"denom":"ASSET5","index":"0.000000802117585946"},{"denom":"ASSET6","index":"0.000003266576499617"},{"denom":"ASSET7","index":"0.000005003445288083"},{"denom":"ASSET8","index":"0.000006528100290032"},{"denom":"ASSET9","index":"0.000002819411735168"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003006064648013"},{"denom":"ASSET1","index":"0.000025531157590212"},{"denom":"ASSET10","index":"0.000020524407173472"},{"denom":"ASSET11","index":"0.000025409258384489"},{"denom":"ASSET12","index":"0.000024300714605646"},{"denom":"ASSET13","index":"0.000007986286383048"},{"denom":"ASSET14","index":"0.000023298685931189"},{"denom":"ASSET15","index":"0.000018459726056254"},{"denom":"ASSET16","index":"0.000011316095008653"},{"denom":"ASSET17","index":"0.000008930145684163"},{"denom":"ASSET18","index":"0.000003662445744281"},{"denom":"ASSET2","index":"0.000007743120539446"},{"denom":"ASSET3","index":"0.000002143639104141"},{"denom":"ASSET4","index":"0.000020695936675740"},{"denom":"ASSET5","index":"0.000001670457298921"},{"denom":"ASSET6","index":"0.000006739935351518"},{"denom":"ASSET7","index":"0.000010603283023237"},{"denom":"ASSET8","index":"0.000014518439118465"},{"denom":"ASSET9","index":"0.000006156725809403"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001476546163568"},{"denom":"ASSET1","index":"0.000012315891963405"},{"denom":"ASSET10","index":"0.000008580298213179"},{"denom":"ASSET11","index":"0.000011914434711559"},{"denom":"ASSET12","index":"0.000010728207916557"},{"denom":"ASSET13","index":"0.000003691365408921"},{"denom":"ASSET14","index":"0.000011129665168403"},{"denom":"ASSET15","index":"0.000007957699254808"},{"denom":"ASSET16","index":"0.000005547821683700"},{"denom":"ASSET17","index":"0.000003939724556249"},{"denom":"ASSET18","index":"0.000001876869355381"},{"denom":"ASSET2","index":"0.000003635796467281"},{"denom":"ASSET3","index":"0.000001062614251355"},{"denom":"ASSET4","index":"0.000010009213855342"},{"denom":"ASSET5","index":"0.000000825595704361"},{"denom":"ASSET6","index":"0.000003359085819117"},{"denom":"ASSET7","index":"0.000005145230371820"},{"denom":"ASSET8","index":"0.000006713635398099"},{"denom":"ASSET9","index":"0.000002899791505564"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000002611689387046"},{"denom":"ASSET1","index":"0.000022118950462866"},{"denom":"ASSET10","index":"0.000017388824351878"},{"denom":"ASSET11","index":"0.000021911701626113"},{"denom":"ASSET12","index":"0.000020757567192719"},{"denom":"ASSET13","index":"0.000006870825151743"},{"denom":"ASSET14","index":"0.000020152250667519"},{"denom":"ASSET15","index":"0.000015711809347683"},{"denom":"ASSET16","index":"0.000009830001439303"},{"denom":"ASSET17","index":"0.000007627368499381"},{"denom":"ASSET18","index":"0.000003205559295774"},{"denom":"ASSET2","index":"0.000006678615536452"},{"denom":"ASSET3","index":"0.000001865584989735"},{"denom":"ASSET4","index":"0.000017938012267073"},{"denom":"ASSET5","index":"0.000001453547274796"},{"denom":"ASSET6","index":"0.000005870892100855"},{"denom":"ASSET7","index":"0.000009195154067126"},{"denom":"ASSET8","index":"0.000012492245582088"},{"denom":"ASSET9","index":"0.000005313335607946"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000000860911540335"},{"denom":"ASSET1","index":"0.000007178593209511"},{"denom":"ASSET10","index":"0.000005001581264509"},{"denom":"ASSET11","index":"0.000006944753046495"},{"denom":"ASSET12","index":"0.000006253725385275"},{"denom":"ASSET13","index":"0.000002152029021603"},{"denom":"ASSET14","index":"0.000006487065889823"},{"denom":"ASSET15","index":"0.000004638329558286"},{"denom":"ASSET16","index":"0.000003233789604786"},{"denom":"ASSET17","index":"0.000002296430318850"},{"denom":"ASSET18","index":"0.000001093752386415"},{"denom":"ASSET2","index":"0.000002119051562716"},{"denom":"ASSET3","index":"0.000000619576500299"},{"denom":"ASSET4","index":"0.000005834012272169"},{"denom":"ASSET5","index":"0.000000481171104668"},{"denom":"ASSET6","index":"0.000001958161536025"},{"denom":"ASSET7","index":"0.000002998950124834"},{"denom":"ASSET8","index":"0.000003913325121242"},{"denom":"ASSET9","index":"0.000001690344597186"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000002357406510396"},{"denom":"ASSET1","index":"0.000020099972826550"},{"denom":"ASSET10","index":"0.000016611857270119"},{"denom":"ASSET11","index":"0.000020122040980663"},{"denom":"ASSET12","index":"0.000019473664705632"},{"denom":"ASSET13","index":"0.000006342954228467"},{"denom":"ASSET14","index":"0.000018379978414574"},{"denom":"ASSET15","index":"0.000014858739059306"},{"denom":"ASSET16","index":"0.000008878274052948"},{"denom":"ASSET17","index":"0.000007156982288871"},{"denom":"ASSET18","index":"0.000002845018303307"},{"denom":"ASSET2","index":"0.000006129987919866"},{"denom":"ASSET3","index":"0.000001678183905493"},{"denom":"ASSET4","index":"0.000016284739258605"},{"denom":"ASSET5","index":"0.000001308892339296"},{"denom":"ASSET6","index":"0.000005269046474537"},{"denom":"ASSET7","index":"0.000008337197620164"},{"denom":"ASSET8","index":"0.000011530009666752"},{"denom":"ASSET9","index":"0.000004871853664260"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001198976216272"},{"denom":"ASSET1","index":"0.000010001315625623"},{"denom":"ASSET10","index":"0.000006967712250892"},{"denom":"ASSET11","index":"0.000009674322112094"},{"denom":"ASSET12","index":"0.000008711677656379"},{"denom":"ASSET13","index":"0.000002997949876371"},{"denom":"ASSET14","index":"0.000009037652498526"},{"denom":"ASSET15","index":"0.000006461432574183"},{"denom":"ASSET16","index":"0.000004504564849919"},{"denom":"ASSET17","index":"0.000003199646809949"},{"denom":"ASSET18","index":"0.000001523932387037"},{"denom":"ASSET2","index":"0.000002952109664194"},{"denom":"ASSET3","index":"0.000000862814660308"},{"denom":"ASSET4","index":"0.000008126960283277"},{"denom":"ASSET5","index":"0.000000670285769165"},{"denom":"ASSET6","index":"0.000002728001960218"},{"denom":"ASSET7","index":"0.000004177571336390"},{"denom":"ASSET8","index":"0.000005451929234909"},{"denom":"ASSET9","index":"0.000002354149563130"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000002792091306062"},{"denom":"ASSET1","index":"0.000023760392481519"},{"denom":"ASSET10","index":"0.000019330735214415"},{"denom":"ASSET11","index":"0.000023705763948043"},{"denom":"ASSET12","index":"0.000022788595153270"},{"denom":"ASSET13","index":"0.000007460432475948"},{"denom":"ASSET14","index":"0.000021701401606991"},{"denom":"ASSET15","index":"0.000017344296121870"},{"denom":"ASSET16","index":"0.000010515175863945"},{"denom":"ASSET17","index":"0.000008375559402161"},{"denom":"ASSET18","index":"0.000003388923471278"},{"denom":"ASSET2","index":"0.000007222909907971"},{"denom":"ASSET3","index":"0.000001989926471838"},{"denom":"ASSET4","index":"0.000019255294602933"},{"denom":"ASSET5","index":"0.000001551437823125"},{"denom":"ASSET6","index":"0.000006253588147261"},{"denom":"ASSET7","index":"0.000009862028954195"},{"denom":"ASSET8","index":"0.000013562244421912"},{"denom":"ASSET9","index":"0.000005741841810541"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001507638919625"},{"denom":"ASSET1","index":"0.000012569401049902"},{"denom":"ASSET10","index":"0.000008757228353136"},{"denom":"ASSET11","index":"0.000012160184771718"},{"denom":"ASSET12","index":"0.000010949766096248"},{"denom":"ASSET13","index":"0.000003769097299062"},{"denom":"ASSET14","index":"0.000011358982374432"},{"denom":"ASSET15","index":"0.000008124020006893"},{"denom":"ASSET16","index":"0.000005660107258249"},{"denom":"ASSET17","index":"0.000004018934605743"},{"denom":"ASSET18","index":"0.000001912547658039"},{"denom":"ASSET2","index":"0.000003708791742277"},{"denom":"ASSET3","index":"0.000001085500022130"},{"denom":"ASSET4","index":"0.000010217484335287"},{"denom":"ASSET5","index":"0.000000839970255220"},{"denom":"ASSET6","index":"0.000003428801657204"},{"denom":"ASSET7","index":"0.000005250890980065"},{"denom":"ASSET8","index":"0.000006853295774638"},{"denom":"ASSET9","index":"0.000002959279822235"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003131246414749"},{"denom":"ASSET1","index":"0.000026589761836242"},{"denom":"ASSET10","index":"0.000021355242603721"},{"denom":"ASSET11","index":"0.000026458316408852"},{"denom":"ASSET12","index":"0.000025293988029420"},{"denom":"ASSET13","index":"0.000008316673174883"},{"denom":"ASSET14","index":"0.000024263343459355"},{"denom":"ASSET15","index":"0.000019213959771091"},{"denom":"ASSET16","index":"0.000011784585795875"},{"denom":"ASSET17","index":"0.000009292893547134"},{"denom":"ASSET18","index":"0.000003813004198036"},{"denom":"ASSET2","index":"0.000008060944762894"},{"denom":"ASSET3","index":"0.000002234070199415"},{"denom":"ASSET4","index":"0.000021557233504015"},{"denom":"ASSET5","index":"0.000001738116490695"},{"denom":"ASSET6","index":"0.000007021386599103"},{"denom":"ASSET7","index":"0.000011043212117572"},{"denom":"ASSET8","index":"0.000015117900391662"},{"denom":"ASSET9","index":"0.000006411442995536"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001538667310820"},{"denom":"ASSET1","index":"0.000012827917927858"},{"denom":"ASSET10","index":"0.000008937244372687"},{"denom":"ASSET11","index":"0.000012409488429871"},{"denom":"ASSET12","index":"0.000011174685151587"},{"denom":"ASSET13","index":"0.000003845530209513"},{"denom":"ASSET14","index":"0.000011592355937882"},{"denom":"ASSET15","index":"0.000008288166520415"},{"denom":"ASSET16","index":"0.000005778727600031"},{"denom":"ASSET17","index":"0.000004103871540546"},{"denom":"ASSET18","index":"0.000001954820673732"},{"denom":"ASSET2","index":"0.000003786730053405"},{"denom":"ASSET3","index":"0.000001107719069920"},{"denom":"ASSET4","index":"0.000010424698644316"},{"denom":"ASSET5","index":"0.000000859620346726"},{"denom":"ASSET6","index":"0.000003499178322240"},{"denom":"ASSET7","index":"0.000005359160034507"},{"denom":"ASSET8","index":"0.000006993045662639"},{"denom":"ASSET9","index":"0.000003020431244761"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003070496060295"},{"denom":"ASSET1","index":"0.000026054009108675"},{"denom":"ASSET10","index":"0.000020821706468932"},{"denom":"ASSET11","index":"0.000025897661631707"},{"denom":"ASSET12","index":"0.000024706407518076"},{"denom":"ASSET13","index":"0.000008135385272267"},{"denom":"ASSET14","index":"0.000023765921524780"},{"denom":"ASSET15","index":"0.000018749935123185"},{"denom":"ASSET16","index":"0.000011556337558875"},{"denom":"ASSET17","index":"0.000009079232430047"},{"denom":"ASSET18","index":"0.000003747682066764"},{"denom":"ASSET2","index":"0.000007892419371659"},{"denom":"ASSET3","index":"0.000002191201298955"},{"denom":"ASSET4","index":"0.000021122052487200"},{"denom":"ASSET5","index":"0.000001706992646915"},{"denom":"ASSET6","index":"0.000006888142834266"},{"denom":"ASSET7","index":"0.000010823268476718"},{"denom":"ASSET8","index":"0.000014789657857476"},{"denom":"ASSET9","index":"0.000006276911852268"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001679222100186"},{"denom":"ASSET1","index":"0.000013999028794594"},{"denom":"ASSET10","index":"0.000009753438641601"},{"denom":"ASSET11","index":"0.000013542280383343"},{"denom":"ASSET12","index":"0.000012194769233410"},{"denom":"ASSET13","index":"0.000004196505199295"},{"denom":"ASSET14","index":"0.000012650484277214"},{"denom":"ASSET15","index":"0.000009045065257184"},{"denom":"ASSET16","index":"0.000006306124840851"},{"denom":"ASSET17","index":"0.000004478614512126"},{"denom":"ASSET18","index":"0.000002133387092820"},{"denom":"ASSET2","index":"0.000004132436417626"},{"denom":"ASSET3","index":"0.000001208523228411"},{"denom":"ASSET4","index":"0.000011376342215965"},{"denom":"ASSET5","index":"0.000000938297641211"},{"denom":"ASSET6","index":"0.000003818809397684"},{"denom":"ASSET7","index":"0.000005848343062154"},{"denom":"ASSET8","index":"0.000007631418590690"},{"denom":"ASSET9","index":"0.000003295925469872"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003295755498274"},{"denom":"ASSET1","index":"0.000027960125957180"},{"denom":"ASSET10","index":"0.000022298091456525"},{"denom":"ASSET11","index":"0.000027779779629540"},{"denom":"ASSET12","index":"0.000026478335493542"},{"denom":"ASSET13","index":"0.000008724566942758"},{"denom":"ASSET14","index":"0.000025500389224880"},{"denom":"ASSET15","index":"0.000020088119547171"},{"denom":"ASSET16","index":"0.000012404652968467"},{"denom":"ASSET17","index":"0.000009730254100732"},{"denom":"ASSET18","index":"0.000004025857251145"},{"denom":"ASSET2","index":"0.000008465992991141"},{"denom":"ASSET3","index":"0.000002352288079447"},{"denom":"ASSET4","index":"0.000022667879187178"},{"denom":"ASSET5","index":"0.000001832649164275"},{"denom":"ASSET6","index":"0.000007396215489940"},{"denom":"ASSET7","index":"0.000011616026271508"},{"denom":"ASSET8","index":"0.000015861127767022"},{"denom":"ASSET9","index":"0.000006733269226830"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001488486853561"},{"denom":"ASSET1","index":"0.000012409943784184"},{"denom":"ASSET10","index":"0.000008645838046025"},{"denom":"ASSET11","index":"0.000012005445379346"},{"denom":"ASSET12","index":"0.000010810451131374"},{"denom":"ASSET13","index":"0.000003720376180879"},{"denom":"ASSET14","index":"0.000011214949536212"},{"denom":"ASSET15","index":"0.000008018487089665"},{"denom":"ASSET16","index":"0.000005590655707614"},{"denom":"ASSET17","index":"0.000003970139229188"},{"denom":"ASSET18","index":"0.000001891303352350"},{"denom":"ASSET2","index":"0.000003663191375205"},{"denom":"ASSET3","index":"0.000001071374153354"},{"denom":"ASSET4","index":"0.000010085549624159"},{"denom":"ASSET5","index":"0.000000831702541340"},{"denom":"ASSET6","index":"0.000003384835924059"},{"denom":"ASSET7","index":"0.000005184475396726"},{"denom":"ASSET8","index":"0.000006765467082995"},{"denom":"ASSET9","index":"0.000002921470807498"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003140601357292"},{"denom":"ASSET1","index":"0.000026678854887219"},{"denom":"ASSET10","index":"0.000021467437308134"},{"denom":"ASSET11","index":"0.000026557150856893"},{"denom":"ASSET12","index":"0.000025409189778577"},{"denom":"ASSET13","index":"0.000008348678217638"},{"denom":"ASSET14","index":"0.000024348515645151"},{"denom":"ASSET15","index":"0.000019305257093893"},{"denom":"ASSET16","index":"0.000011824039078448"},{"denom":"ASSET17","index":"0.000009337874135725"},{"denom":"ASSET18","index":"0.000003825021517438"},{"denom":"ASSET2","index":"0.000008092644314938"},{"denom":"ASSET3","index":"0.000002240059115813"},{"denom":"ASSET4","index":"0.000021626536887159"},{"denom":"ASSET5","index":"0.000001745574888449"},{"denom":"ASSET6","index":"0.000007040920669072"},{"denom":"ASSET7","index":"0.000011079696231301"},{"denom":"ASSET8","index":"0.000015176664815864"},{"denom":"ASSET9","index":"0.000006434669973810"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001385039568420"},{"denom":"ASSET1","index":"0.000011547928050470"},{"denom":"ASSET10","index":"0.000008045290512347"},{"denom":"ASSET11","index":"0.000011171268467624"},{"denom":"ASSET12","index":"0.000010059084660007"},{"denom":"ASSET13","index":"0.000003461116009305"},{"denom":"ASSET14","index":"0.000010435744242853"},{"denom":"ASSET15","index":"0.000007461023285412"},{"denom":"ASSET16","index":"0.000005202054396163"},{"denom":"ASSET17","index":"0.000003694427456948"},{"denom":"ASSET18","index":"0.000001759721935608"},{"denom":"ASSET2","index":"0.000003408719794369"},{"denom":"ASSET3","index":"0.000000996516691625"},{"denom":"ASSET4","index":"0.000009383865512804"},{"denom":"ASSET5","index":"0.000000774079930102"},{"denom":"ASSET6","index":"0.000003149704543173"},{"denom":"ASSET7","index":"0.000004824406205487"},{"denom":"ASSET8","index":"0.000006294466047200"},{"denom":"ASSET9","index":"0.000002718671529731"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000002978674281858"},{"denom":"ASSET1","index":"0.000025310372422717"},{"denom":"ASSET10","index":"0.000020411345436720"},{"denom":"ASSET11","index":"0.000025206262983954"},{"denom":"ASSET12","index":"0.000024139567910062"},{"denom":"ASSET13","index":"0.000007924745788344"},{"denom":"ASSET14","index":"0.000023102636423037"},{"denom":"ASSET15","index":"0.000018346974201526"},{"denom":"ASSET16","index":"0.000011213830154915"},{"denom":"ASSET17","index":"0.000008871351161454"},{"denom":"ASSET18","index":"0.000003625142276595"},{"denom":"ASSET2","index":"0.000007680838181843"},{"denom":"ASSET3","index":"0.000002123796319816"},{"denom":"ASSET4","index":"0.000020514843977806"},{"denom":"ASSET5","index":"0.000001655567492872"},{"denom":"ASSET6","index":"0.000006676037052519"},{"denom":"ASSET7","index":"0.000010510115662832"},{"denom":"ASSET8","index":"0.000014407133239162"},{"denom":"ASSET9","index":"0.000006107008804836"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001563741356289"},{"denom":"ASSET1","index":"0.000013036816883138"},{"denom":"ASSET10","index":"0.000009082880828100"},{"denom":"ASSET11","index":"0.000012611783735587"},{"denom":"ASSET12","index":"0.000011356772924286"},{"denom":"ASSET13","index":"0.000003908472310400"},{"denom":"ASSET14","index":"0.000011781101207579"},{"denom":"ASSET15","index":"0.000008423480314776"},{"denom":"ASSET16","index":"0.000005872928997340"},{"denom":"ASSET17","index":"0.000004170681814362"},{"denom":"ASSET18","index":"0.000001986659911066"},{"denom":"ASSET2","index":"0.000003848558848473"},{"denom":"ASSET3","index":"0.000001125668219966"},{"denom":"ASSET4","index":"0.000010594814661429"},{"denom":"ASSET5","index":"0.000000873679247744"},{"denom":"ASSET6","index":"0.000003556392613548"},{"denom":"ASSET7","index":"0.000005446486121273"},{"denom":"ASSET8","index":"0.000007106793880903"},{"denom":"ASSET9","index":"0.000003069683843425"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003115193601728"},{"denom":"ASSET1","index":"0.000026433576226141"},{"denom":"ASSET10","index":"0.000021120836274624"},{"denom":"ASSET11","index":"0.000026274076149270"},{"denom":"ASSET12","index":"0.000025063206789151"},{"denom":"ASSET13","index":"0.000008253838888439"},{"denom":"ASSET14","index":"0.000024111622086359"},{"denom":"ASSET15","index":"0.000019020166052921"},{"denom":"ASSET16","index":"0.000011725264187843"},{"denom":"ASSET17","index":"0.000009210335248597"},{"denom":"ASSET18","index":"0.000003802618681808"},{"denom":"ASSET2","index":"0.000008007094168018"},{"denom":"ASSET3","index":"0.000002223045227271"},{"denom":"ASSET4","index":"0.000021430343290469"},{"denom":"ASSET5","index":"0.000001731871182363"},{"denom":"ASSET6","index":"0.000006989160352022"},{"denom":"ASSET7","index":"0.000010981276608696"},{"denom":"ASSET8","index":"0.000015004007461071"},{"denom":"ASSET9","index":"0.000006368316319391"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001688791638136"},{"denom":"ASSET1","index":"0.000014080258863939"},{"denom":"ASSET10","index":"0.000009809129194434"},{"denom":"ASSET11","index":"0.000013620783833550"},{"denom":"ASSET12","index":"0.000012265553395360"},{"denom":"ASSET13","index":"0.000004220322334414"},{"denom":"ASSET14","index":"0.000012723923918464"},{"denom":"ASSET15","index":"0.000009096721995874"},{"denom":"ASSET16","index":"0.000006342080828109"},{"denom":"ASSET17","index":"0.000004504180706554"},{"denom":"ASSET18","index":"0.000002144953146672"},{"denom":"ASSET2","index":"0.000004156260911908"},{"denom":"ASSET3","index":"0.000001214958013048"},{"denom":"ASSET4","index":"0.000011442695468341"},{"denom":"ASSET5","index":"0.000000943249221039"},{"denom":"ASSET6","index":"0.000003840371828516"},{"denom":"ASSET7","index":"0.000005881501290436"},{"denom":"ASSET8","index":"0.000007675221120608"},{"denom":"ASSET9","index":"0.000003314626361051"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003342989987813"},{"denom":"ASSET1","index":"0.000028363859076608"},{"denom":"ASSET10","index":"0.000022643596968544"},{"denom":"ASSET11","index":"0.000028187678804911"},{"denom":"ASSET12","index":"0.000026879157824253"},{"denom":"ASSET13","index":"0.000008853292918908"},{"denom":"ASSET14","index":"0.000025870927331183"},{"denom":"ASSET15","index":"0.000020395094195043"},{"denom":"ASSET16","index":"0.000012581780801373"},{"denom":"ASSET17","index":"0.000009877287329505"},{"denom":"ASSET18","index":"0.000004080927248291"},{"denom":"ASSET2","index":"0.000008590241612281"},{"denom":"ASSET3","index":"0.000002384972961476"},{"denom":"ASSET4","index":"0.000022995501297970"},{"denom":"ASSET5","index":"0.000001858071035633"},{"denom":"ASSET6","index":"0.000007500418590266"},{"denom":"ASSET7","index":"0.000011782462758670"},{"denom":"ASSET8","index":"0.000016095075530395"},{"denom":"ASSET9","index":"0.000006831506736707"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001571496317510"},{"denom":"ASSET1","index":"0.000013101483241955"},{"denom":"ASSET10","index":"0.000009127906315185"},{"denom":"ASSET11","index":"0.000012674221268720"},{"denom":"ASSET12","index":"0.000011413128948859"},{"denom":"ASSET13","index":"0.000003927726401627"},{"denom":"ASSET14","index":"0.000011839579408375"},{"denom":"ASSET15","index":"0.000008464899606481"},{"denom":"ASSET16","index":"0.000005901733523932"},{"denom":"ASSET17","index":"0.000004191468360414"},{"denom":"ASSET18","index":"0.000001996729506447"},{"denom":"ASSET2","index":"0.000003867268629536"},{"denom":"ASSET3","index":"0.000001131250124766"},{"denom":"ASSET4","index":"0.000010647059997798"},{"denom":"ASSET5","index":"0.000000878057844331"},{"denom":"ASSET6","index":"0.000003573906419993"},{"denom":"ASSET7","index":"0.000005473254280118"},{"denom":"ASSET8","index":"0.000007142132243950"},{"denom":"ASSET9","index":"0.000003084563647228"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003113134051861"},{"denom":"ASSET1","index":"0.000026415094552464"},{"denom":"ASSET10","index":"0.000021090707465492"},{"denom":"ASSET11","index":"0.000026251548228726"},{"denom":"ASSET12","index":"0.000025034408517114"},{"denom":"ASSET13","index":"0.000008245703890405"},{"denom":"ASSET14","index":"0.000024093200316600"},{"denom":"ASSET15","index":"0.000018995578271326"},{"denom":"ASSET16","index":"0.000011717396138812"},{"denom":"ASSET17","index":"0.000009199501798709"},{"denom":"ASSET18","index":"0.000003801350346824"},{"denom":"ASSET2","index":"0.000007999912620195"},{"denom":"ASSET3","index":"0.000002221641081089"},{"denom":"ASSET4","index":"0.000021415082747190"},{"denom":"ASSET5","index":"0.000001730738444371"},{"denom":"ASSET6","index":"0.000006985361363625"},{"denom":"ASSET7","index":"0.000010973556930807"},{"denom":"ASSET8","index":"0.000014990236718633"},{"denom":"ASSET9","index":"0.000006362695679170"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001486431692511"},{"denom":"ASSET1","index":"0.000012397696164316"},{"denom":"ASSET10","index":"0.000008637613387551"},{"denom":"ASSET11","index":"0.000011993186507636"},{"denom":"ASSET12","index":"0.000010799842650204"},{"denom":"ASSET13","index":"0.000003716482933529"},{"denom":"ASSET14","index":"0.000011203544902380"},{"denom":"ASSET15","index":"0.000008010260087670"},{"denom":"ASSET16","index":"0.000005584816956599"},{"denom":"ASSET17","index":"0.000003965970925374"},{"denom":"ASSET18","index":"0.000001889326540182"},{"denom":"ASSET2","index":"0.000003659157213720"},{"denom":"ASSET3","index":"0.000001070618372770"},{"denom":"ASSET4","index":"0.000010074793405297"},{"denom":"ASSET5","index":"0.000000830819234978"},{"denom":"ASSET6","index":"0.000003381410064224"},{"denom":"ASSET7","index":"0.000005179499895414"},{"denom":"ASSET8","index":"0.000006757975701421"},{"denom":"ASSET9","index":"0.000002918767283230"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003023961266495"},{"denom":"ASSET1","index":"0.000025674667559579"},{"denom":"ASSET10","index":"0.000020567435721356"},{"denom":"ASSET11","index":"0.000025532965784321"},{"denom":"ASSET12","index":"0.000024383768132692"},{"denom":"ASSET13","index":"0.000008022807352722"},{"denom":"ASSET14","index":"0.000023423766496233"},{"denom":"ASSET15","index":"0.000018512228577533"},{"denom":"ASSET16","index":"0.000011384524743973"},{"denom":"ASSET17","index":"0.000008960010456843"},{"denom":"ASSET18","index":"0.000003688974211121"},{"denom":"ASSET2","index":"0.000007780619396113"},{"denom":"ASSET3","index":"0.000002157718690670"},{"denom":"ASSET4","index":"0.000020813357966886"},{"denom":"ASSET5","index":"0.000001681323481152"},{"denom":"ASSET6","index":"0.000006783427048921"},{"denom":"ASSET7","index":"0.000010664665966441"},{"denom":"ASSET8","index":"0.000014584270248941"},{"denom":"ASSET9","index":"0.000006187655866052"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001789525520762"},{"denom":"ASSET1","index":"0.000014923544215299"},{"denom":"ASSET10","index":"0.000010397506905977"},{"denom":"ASSET11","index":"0.000014436898494348"},{"denom":"ASSET12","index":"0.000013000171779235"},{"denom":"ASSET13","index":"0.000004474200642702"},{"denom":"ASSET14","index":"0.000013486043818595"},{"denom":"ASSET15","index":"0.000009642393672833"},{"denom":"ASSET16","index":"0.000006722519347127"},{"denom":"ASSET17","index":"0.000004774389100140"},{"denom":"ASSET18","index":"0.000002273850196939"},{"denom":"ASSET2","index":"0.000004405342981073"},{"denom":"ASSET3","index":"0.000001288179849576"},{"denom":"ASSET4","index":"0.000012128232625798"},{"denom":"ASSET5","index":"0.000001000370297599"},{"denom":"ASSET6","index":"0.000004071112533615"},{"denom":"ASSET7","index":"0.000006234326262993"},{"denom":"ASSET8","index":"0.000008135261932908"},{"denom":"ASSET9","index":"0.000003514061787852"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003488279034648"},{"denom":"ASSET1","index":"0.000029592208548275"},{"denom":"ASSET10","index":"0.000023577626976592"},{"denom":"ASSET11","index":"0.000029395914355993"},{"denom":"ASSET12","index":"0.000028007798530295"},{"denom":"ASSET13","index":"0.000009231498766276"},{"denom":"ASSET14","index":"0.000026986732997785"},{"denom":"ASSET15","index":"0.000021244630549189"},{"denom":"ASSET16","index":"0.000013129960095172"},{"denom":"ASSET17","index":"0.000010292381952670"},{"denom":"ASSET18","index":"0.000004261641431672"},{"denom":"ASSET2","index":"0.000008958343988321"},{"denom":"ASSET3","index":"0.000002489657102823"},{"denom":"ASSET4","index":"0.000023991917258738"},{"denom":"ASSET5","index":"0.000001939742890351"},{"denom":"ASSET6","index":"0.000007829259808535"},{"denom":"ASSET7","index":"0.000012294264842111"},{"denom":"ASSET8","index":"0.000016782088113605"},{"denom":"ASSET9","index":"0.000007125719490615"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001504632489095"},{"denom":"ASSET1","index":"0.000012543084148708"},{"denom":"ASSET10","index":"0.000008738830231438"},{"denom":"ASSET11","index":"0.000012134501498699"},{"denom":"ASSET12","index":"0.000010926897843985"},{"denom":"ASSET13","index":"0.000003760573206331"},{"denom":"ASSET14","index":"0.000011335480493994"},{"denom":"ASSET15","index":"0.000008104451906425"},{"denom":"ASSET16","index":"0.000005650267962622"},{"denom":"ASSET17","index":"0.000004012577307899"},{"denom":"ASSET18","index":"0.000001911199106291"},{"denom":"ASSET2","index":"0.000003702780265705"},{"denom":"ASSET3","index":"0.000001083281631273"},{"denom":"ASSET4","index":"0.000010193733911157"},{"denom":"ASSET5","index":"0.000000840685682831"},{"denom":"ASSET6","index":"0.000003421207682886"},{"denom":"ASSET7","index":"0.000005240341290738"},{"denom":"ASSET8","index":"0.000006837711289210"},{"denom":"ASSET9","index":"0.000002953488070376"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003015423229771"},{"denom":"ASSET1","index":"0.000025588098096649"},{"denom":"ASSET10","index":"0.000020460473772645"},{"denom":"ASSET11","index":"0.000025438043766359"},{"denom":"ASSET12","index":"0.000024273358860204"},{"denom":"ASSET13","index":"0.000007991752317173"},{"denom":"ASSET14","index":"0.000023342063892494"},{"denom":"ASSET15","index":"0.000018422728556898"},{"denom":"ASSET16","index":"0.000011348811151398"},{"denom":"ASSET17","index":"0.000008919790197810"},{"denom":"ASSET18","index":"0.000003679502338318"},{"denom":"ASSET2","index":"0.000007752126098631"},{"denom":"ASSET3","index":"0.000002151933074669"},{"denom":"ASSET4","index":"0.000020744635257959"},{"denom":"ASSET5","index":"0.000001676458472807"},{"denom":"ASSET6","index":"0.000006763790928604"},{"denom":"ASSET7","index":"0.000010629564741383"},{"denom":"ASSET8","index":"0.000014527278079751"},{"denom":"ASSET9","index":"0.000006165283413682"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001790270882045"},{"denom":"ASSET1","index":"0.000014924962381265"},{"denom":"ASSET10","index":"0.000010398687848362"},{"denom":"ASSET11","index":"0.000014438353512768"},{"denom":"ASSET12","index":"0.000013001639266884"},{"denom":"ASSET13","index":"0.000004474427888377"},{"denom":"ASSET14","index":"0.000013487623477013"},{"denom":"ASSET15","index":"0.000009643475881721"},{"denom":"ASSET16","index":"0.000006723198012370"},{"denom":"ASSET17","index":"0.000004774888563278"},{"denom":"ASSET18","index":"0.000002274381117071"},{"denom":"ASSET2","index":"0.000004405715467922"},{"denom":"ASSET3","index":"0.000001288670212721"},{"denom":"ASSET4","index":"0.000012129616185469"},{"denom":"ASSET5","index":"0.000001000078046809"},{"denom":"ASSET6","index":"0.000004071523241162"},{"denom":"ASSET7","index":"0.000006235339827137"},{"denom":"ASSET8","index":"0.000008136175240279"},{"denom":"ASSET9","index":"0.000003514327977106"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003452635056994"},{"denom":"ASSET1","index":"0.000029280443630050"},{"denom":"ASSET10","index":"0.000023297581891953"},{"denom":"ASSET11","index":"0.000029078046899152"},{"denom":"ASSET12","index":"0.000027688393753974"},{"denom":"ASSET13","index":"0.000009130247174920"},{"denom":"ASSET14","index":"0.000026700258191979"},{"denom":"ASSET15","index":"0.000020998119885469"},{"denom":"ASSET16","index":"0.000012993858989816"},{"denom":"ASSET17","index":"0.000010174919177657"},{"denom":"ASSET18","index":"0.000004220034662939"},{"denom":"ASSET2","index":"0.000008861755768133"},{"denom":"ASSET3","index":"0.000002464736347038"},{"denom":"ASSET4","index":"0.000023740327943060"},{"denom":"ASSET5","index":"0.000001919615043943"},{"denom":"ASSET6","index":"0.000007749671229698"},{"denom":"ASSET7","index":"0.000012165961282812"},{"denom":"ASSET8","index":"0.000016598407083950"},{"denom":"ASSET9","index":"0.000007048985746822"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001835550145227"},{"denom":"ASSET1","index":"0.000015324623289081"},{"denom":"ASSET10","index":"0.000010676536631006"},{"denom":"ASSET11","index":"0.000014825027987456"},{"denom":"ASSET12","index":"0.000013348446318211"},{"denom":"ASSET13","index":"0.000004592576069005"},{"denom":"ASSET14","index":"0.000013848041619836"},{"denom":"ASSET15","index":"0.000009899388384035"},{"denom":"ASSET16","index":"0.000006901816574290"},{"denom":"ASSET17","index":"0.000004903435367793"},{"denom":"ASSET18","index":"0.000002335145446851"},{"denom":"ASSET2","index":"0.000004522262656184"},{"denom":"ASSET3","index":"0.000001321152019851"},{"denom":"ASSET4","index":"0.000012452875481226"},{"denom":"ASSET5","index":"0.000001025095544814"},{"denom":"ASSET6","index":"0.000004178097003954"},{"denom":"ASSET7","index":"0.000006402221272666"},{"denom":"ASSET8","index":"0.000008352493301969"},{"denom":"ASSET9","index":"0.000003608188289508"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003336473275634"},{"denom":"ASSET1","index":"0.000028284037775138"},{"denom":"ASSET10","index":"0.000022321061137243"},{"denom":"ASSET11","index":"0.000028041053149272"},{"denom":"ASSET12","index":"0.000026607048139233"},{"denom":"ASSET13","index":"0.000008795774551756"},{"denom":"ASSET14","index":"0.000025776026947277"},{"denom":"ASSET15","index":"0.000020150006768141"},{"denom":"ASSET16","index":"0.000012562977954735"},{"denom":"ASSET17","index":"0.000009778271060189"},{"denom":"ASSET18","index":"0.000004091528532498"},{"denom":"ASSET2","index":"0.000008544798017437"},{"denom":"ASSET3","index":"0.000002382883485470"},{"denom":"ASSET4","index":"0.000022934405116164"},{"denom":"ASSET5","index":"0.000001855148612588"},{"denom":"ASSET6","index":"0.000007498692848558"},{"denom":"ASSET7","index":"0.000011756140274513"},{"denom":"ASSET8","index":"0.000015991743254740"},{"denom":"ASSET9","index":"0.000006799136288961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001764742979644"},{"denom":"ASSET1","index":"0.000014715413525055"},{"denom":"ASSET10","index":"0.000010252344388411"},{"denom":"ASSET11","index":"0.000014235671854472"},{"denom":"ASSET12","index":"0.000012819403806098"},{"denom":"ASSET13","index":"0.000004411268809023"},{"denom":"ASSET14","index":"0.000013298556836595"},{"denom":"ASSET15","index":"0.000009507714678855"},{"denom":"ASSET16","index":"0.000006629264655353"},{"denom":"ASSET17","index":"0.000004707943412672"},{"denom":"ASSET18","index":"0.000002242718729968"},{"denom":"ASSET2","index":"0.000004343575199063"},{"denom":"ASSET3","index":"0.000001270873946982"},{"denom":"ASSET4","index":"0.000011958811999481"},{"denom":"ASSET5","index":"0.000000985972145064"},{"denom":"ASSET6","index":"0.000004013936750564"},{"denom":"ASSET7","index":"0.000006147757064510"},{"denom":"ASSET8","index":"0.000008021987100262"},{"denom":"ASSET9","index":"0.000003464735549761"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003371223111771"},{"denom":"ASSET1","index":"0.000028586584995448"},{"denom":"ASSET10","index":"0.000022716281614844"},{"denom":"ASSET11","index":"0.000028381809067472"},{"denom":"ASSET12","index":"0.000027011101270499"},{"denom":"ASSET13","index":"0.000008910504058238"},{"denom":"ASSET14","index":"0.000026065694327630"},{"denom":"ASSET15","index":"0.000020479714095343"},{"denom":"ASSET16","index":"0.000012688778091614"},{"denom":"ASSET17","index":"0.000009925875585388"},{"denom":"ASSET18","index":"0.000004122881217339"},{"denom":"ASSET2","index":"0.000008649339803247"},{"denom":"ASSET3","index":"0.000002407313457267"},{"denom":"ASSET4","index":"0.000023177863483423"},{"denom":"ASSET5","index":"0.000001874397047373"},{"denom":"ASSET6","index":"0.000007568278053481"},{"denom":"ASSET7","index":"0.000011878402488901"},{"denom":"ASSET8","index":"0.000016198768839280"},{"denom":"ASSET9","index":"0.000006880150170591"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001519402004985"},{"denom":"ASSET1","index":"0.000012669186594649"},{"denom":"ASSET10","index":"0.000008826466179926"},{"denom":"ASSET11","index":"0.000012255973562605"},{"denom":"ASSET12","index":"0.000011036700348729"},{"denom":"ASSET13","index":"0.000003798237040326"},{"denom":"ASSET14","index":"0.000011448841492233"},{"denom":"ASSET15","index":"0.000008185476833202"},{"denom":"ASSET16","index":"0.000005707270529482"},{"denom":"ASSET17","index":"0.000004053346512768"},{"denom":"ASSET18","index":"0.000001930471259949"},{"denom":"ASSET2","index":"0.000003739819114914"},{"denom":"ASSET3","index":"0.000001093862254735"},{"denom":"ASSET4","index":"0.000010296025367816"},{"denom":"ASSET5","index":"0.000000848935723420"},{"denom":"ASSET6","index":"0.000003455768651901"},{"denom":"ASSET7","index":"0.000005292985608899"},{"denom":"ASSET8","index":"0.000006906177861104"},{"denom":"ASSET9","index":"0.000002983065805906"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003090388166914"},{"denom":"ASSET1","index":"0.000026235396530584"},{"denom":"ASSET10","index":"0.000021016328726441"},{"denom":"ASSET11","index":"0.000026091077525301"},{"denom":"ASSET12","index":"0.000024916432469284"},{"denom":"ASSET13","index":"0.000008198423394567"},{"denom":"ASSET14","index":"0.000023935350029219"},{"denom":"ASSET15","index":"0.000018916111125702"},{"denom":"ASSET16","index":"0.000011633439861257"},{"denom":"ASSET17","index":"0.000009156707623184"},{"denom":"ASSET18","index":"0.000003769226369030"},{"denom":"ASSET2","index":"0.000007950992094695"},{"denom":"ASSET3","index":"0.000002205065882760"},{"denom":"ASSET4","index":"0.000021268551776440"},{"denom":"ASSET5","index":"0.000001717872208784"},{"denom":"ASSET6","index":"0.000006931889619894"},{"denom":"ASSET7","index":"0.000010897757198785"},{"denom":"ASSET8","index":"0.000014903243728132"},{"denom":"ASSET9","index":"0.000006323427167640"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001518878942956"},{"denom":"ASSET1","index":"0.000012665267621292"},{"denom":"ASSET10","index":"0.000008823986077449"},{"denom":"ASSET11","index":"0.000012252067733139"},{"denom":"ASSET12","index":"0.000011032961258059"},{"denom":"ASSET13","index":"0.000003796959064490"},{"denom":"ASSET14","index":"0.000011445207974612"},{"denom":"ASSET15","index":"0.000008182978177143"},{"denom":"ASSET16","index":"0.000005705208605625"},{"denom":"ASSET17","index":"0.000004051932467214"},{"denom":"ASSET18","index":"0.000001930172487911"},{"denom":"ASSET2","index":"0.000003738815596953"},{"denom":"ASSET3","index":"0.000001093764409816"},{"denom":"ASSET4","index":"0.000010292823511460"},{"denom":"ASSET5","index":"0.000000848799308881"},{"denom":"ASSET6","index":"0.000003454770460461"},{"denom":"ASSET7","index":"0.000005291055545873"},{"denom":"ASSET8","index":"0.000006904298477127"},{"denom":"ASSET9","index":"0.000002981997347372"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003032310940473"},{"denom":"ASSET1","index":"0.000025733484746235"},{"denom":"ASSET10","index":"0.000020566326171769"},{"denom":"ASSET11","index":"0.000025579130700492"},{"denom":"ASSET12","index":"0.000024402998631681"},{"denom":"ASSET13","index":"0.000008035434808363"},{"denom":"ASSET14","index":"0.000023473377840860"},{"denom":"ASSET15","index":"0.000018519821992016"},{"denom":"ASSET16","index":"0.000011413808805814"},{"denom":"ASSET17","index":"0.000008967671528488"},{"denom":"ASSET18","index":"0.000003701450923042"},{"denom":"ASSET2","index":"0.000007795399667781"},{"denom":"ASSET3","index":"0.000002164126947351"},{"denom":"ASSET4","index":"0.000020862528644023"},{"denom":"ASSET5","index":"0.000001685967393794"},{"denom":"ASSET6","index":"0.000006803442800114"},{"denom":"ASSET7","index":"0.000010689840259007"},{"denom":"ASSET8","index":"0.000014607710652032"},{"denom":"ASSET9","index":"0.000006199747658625"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001387661284101"},{"denom":"ASSET1","index":"0.000011573014587468"},{"denom":"ASSET10","index":"0.000008062929395432"},{"denom":"ASSET11","index":"0.000011195232526081"},{"denom":"ASSET12","index":"0.000010081345808669"},{"denom":"ASSET13","index":"0.000003469153210252"},{"denom":"ASSET14","index":"0.000010458456853962"},{"denom":"ASSET15","index":"0.000007477132344649"},{"denom":"ASSET16","index":"0.000005213124040705"},{"denom":"ASSET17","index":"0.000003702666811251"},{"denom":"ASSET18","index":"0.000001763430297203"},{"denom":"ASSET2","index":"0.000003416142938760"},{"denom":"ASSET3","index":"0.000000999142965196"},{"denom":"ASSET4","index":"0.000009404961585085"},{"denom":"ASSET5","index":"0.000000775694605619"},{"denom":"ASSET6","index":"0.000003156459710063"},{"denom":"ASSET7","index":"0.000004834670963223"},{"denom":"ASSET8","index":"0.000006308893323556"},{"denom":"ASSET9","index":"0.000002724996361089"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000002847838387483"},{"denom":"ASSET1","index":"0.000024182680336096"},{"denom":"ASSET10","index":"0.000019393227963423"},{"denom":"ASSET11","index":"0.000024054653395269"},{"denom":"ASSET12","index":"0.000022982316432831"},{"denom":"ASSET13","index":"0.000007558836235579"},{"denom":"ASSET14","index":"0.000022064079622497"},{"denom":"ASSET15","index":"0.000017450899901336"},{"denom":"ASSET16","index":"0.000010721434414440"},{"denom":"ASSET17","index":"0.000008446187739031"},{"denom":"ASSET18","index":"0.000003472449339717"},{"denom":"ASSET2","index":"0.000007330038539196"},{"denom":"ASSET3","index":"0.000002031951160271"},{"denom":"ASSET4","index":"0.000019603371773062"},{"denom":"ASSET5","index":"0.000001583403578691"},{"denom":"ASSET6","index":"0.000006387295602350"},{"denom":"ASSET7","index":"0.000010043914419286"},{"denom":"ASSET8","index":"0.000013741733556815"},{"denom":"ASSET9","index":"0.000005829813216311"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001740203165372"},{"denom":"ASSET1","index":"0.000014506985633466"},{"denom":"ASSET10","index":"0.000010106727386233"},{"denom":"ASSET11","index":"0.000014033828203465"},{"denom":"ASSET12","index":"0.000012637643303754"},{"denom":"ASSET13","index":"0.000004348390877948"},{"denom":"ASSET14","index":"0.000013109742216014"},{"denom":"ASSET15","index":"0.000009373174592071"},{"denom":"ASSET16","index":"0.000006535288529808"},{"denom":"ASSET17","index":"0.000004640541774324"},{"denom":"ASSET18","index":"0.000002210185042151"},{"denom":"ASSET2","index":"0.000004281704260297"},{"denom":"ASSET3","index":"0.000001252226487004"},{"denom":"ASSET4","index":"0.000011789770593618"},{"denom":"ASSET5","index":"0.000000971719285773"},{"denom":"ASSET6","index":"0.000003956739313965"},{"denom":"ASSET7","index":"0.000006060014064326"},{"denom":"ASSET8","index":"0.000007908186039228"},{"denom":"ASSET9","index":"0.000003415836748573"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003351161845380"},{"denom":"ASSET1","index":"0.000028416485386018"},{"denom":"ASSET10","index":"0.000022605276372189"},{"denom":"ASSET11","index":"0.000028218825237526"},{"denom":"ASSET12","index":"0.000026868556551399"},{"denom":"ASSET13","index":"0.000008859853422879"},{"denom":"ASSET14","index":"0.000025912194276628"},{"denom":"ASSET15","index":"0.000020375555431981"},{"denom":"ASSET16","index":"0.000012611404420708"},{"denom":"ASSET17","index":"0.000009873044520717"},{"denom":"ASSET18","index":"0.000004095473642305"},{"denom":"ASSET2","index":"0.000008599384819082"},{"denom":"ASSET3","index":"0.000002391571176633"},{"denom":"ASSET4","index":"0.000023040021162794"},{"denom":"ASSET5","index":"0.000001862805125681"},{"denom":"ASSET6","index":"0.000007520693553142"},{"denom":"ASSET7","index":"0.000011806544930596"},{"denom":"ASSET8","index":"0.000016107343127742"},{"denom":"ASSET9","index":"0.000006840485865179"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001711866379191"},{"denom":"ASSET1","index":"0.000014286095556473"},{"denom":"ASSET10","index":"0.000009953932372868"},{"denom":"ASSET11","index":"0.000013820467901333"},{"denom":"ASSET12","index":"0.000012444127332464"},{"denom":"ASSET13","index":"0.000004281948436482"},{"denom":"ASSET14","index":"0.000012909754987604"},{"denom":"ASSET15","index":"0.000009230383516596"},{"denom":"ASSET16","index":"0.000006434335097252"},{"denom":"ASSET17","index":"0.000004569541988186"},{"denom":"ASSET18","index":"0.000002177494034331"},{"denom":"ASSET2","index":"0.000004215756269820"},{"denom":"ASSET3","index":"0.000001232543793017"},{"denom":"ASSET4","index":"0.000011608736539419"},{"denom":"ASSET5","index":"0.000000956362683841"},{"denom":"ASSET6","index":"0.000003896207879038"},{"denom":"ASSET7","index":"0.000005968707442112"},{"denom":"ASSET8","index":"0.000007787850781065"},{"denom":"ASSET9","index":"0.000003362105568731"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003408995344605"},{"denom":"ASSET1","index":"0.000028940875589883"},{"denom":"ASSET10","index":"0.000023121939135123"},{"denom":"ASSET11","index":"0.000028765460883304"},{"denom":"ASSET12","index":"0.000027437813762181"},{"denom":"ASSET13","index":"0.000009035078182388"},{"denom":"ASSET14","index":"0.000026397840013038"},{"denom":"ASSET15","index":"0.000020822021063845"},{"denom":"ASSET16","index":"0.000012835900360827"},{"denom":"ASSET17","index":"0.000010082289518918"},{"denom":"ASSET18","index":"0.000004163537456367"},{"denom":"ASSET2","index":"0.000008764373535196"},{"denom":"ASSET3","index":"0.000002432999591430"},{"denom":"ASSET4","index":"0.000023461370966582"},{"denom":"ASSET5","index":"0.000001895172356369"},{"denom":"ASSET6","index":"0.000007651446569151"},{"denom":"ASSET7","index":"0.000012022926111771"},{"denom":"ASSET8","index":"0.000016426068411072"},{"denom":"ASSET9","index":"0.000006969965423669"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001459800105667"},{"denom":"ASSET1","index":"0.000012176396665923"},{"denom":"ASSET10","index":"0.000008484162206626"},{"denom":"ASSET11","index":"0.000011779823335110"},{"denom":"ASSET12","index":"0.000010607197020722"},{"denom":"ASSET13","index":"0.000003650070053435"},{"denom":"ASSET14","index":"0.000011003770351536"},{"denom":"ASSET15","index":"0.000007867650218206"},{"denom":"ASSET16","index":"0.000005484791497715"},{"denom":"ASSET17","index":"0.000003895079438851"},{"denom":"ASSET18","index":"0.000001855233857943"},{"denom":"ASSET2","index":"0.000003594230705131"},{"denom":"ASSET3","index":"0.000001050691410948"},{"denom":"ASSET4","index":"0.000009896100013746"},{"denom":"ASSET5","index":"0.000000815938232363"},{"denom":"ASSET6","index":"0.000003321871434831"},{"denom":"ASSET7","index":"0.000005087078588365"},{"denom":"ASSET8","index":"0.000006638044976977"},{"denom":"ASSET9","index":"0.000002867179598640"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000002975317591563"},{"denom":"ASSET1","index":"0.000025265738469637"},{"denom":"ASSET10","index":"0.000020245724387946"},{"denom":"ASSET11","index":"0.000025128558675417"},{"denom":"ASSET12","index":"0.000023998925764885"},{"denom":"ASSET13","index":"0.000007895668684136"},{"denom":"ASSET14","index":"0.000023051238668493"},{"denom":"ASSET15","index":"0.000018221178423268"},{"denom":"ASSET16","index":"0.000011202197653725"},{"denom":"ASSET17","index":"0.000008818540737002"},{"denom":"ASSET18","index":"0.000003629428323701"},{"denom":"ASSET2","index":"0.000007657107369447"},{"denom":"ASSET3","index":"0.000002122660280404"},{"denom":"ASSET4","index":"0.000020482509156357"},{"denom":"ASSET5","index":"0.000001654309607539"},{"denom":"ASSET6","index":"0.000006675356935536"},{"denom":"ASSET7","index":"0.000010494215679887"},{"denom":"ASSET8","index":"0.000014353927855523"},{"denom":"ASSET9","index":"0.000006089535217587"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001617402557586"},{"denom":"ASSET1","index":"0.000013485147451276"},{"denom":"ASSET10","index":"0.000009395521488362"},{"denom":"ASSET11","index":"0.000013045402724081"},{"denom":"ASSET12","index":"0.000011747619504798"},{"denom":"ASSET13","index":"0.000004042433845849"},{"denom":"ASSET14","index":"0.000012186291683878"},{"denom":"ASSET15","index":"0.000008713380887153"},{"denom":"ASSET16","index":"0.000006074912523982"},{"denom":"ASSET17","index":"0.000004313788518972"},{"denom":"ASSET18","index":"0.000002055002188551"},{"denom":"ASSET2","index":"0.000003980226055173"},{"denom":"ASSET3","index":"0.000001163714704894"},{"denom":"ASSET4","index":"0.000010959296640193"},{"denom":"ASSET5","index":"0.000000903085512923"},{"denom":"ASSET6","index":"0.000003677767486712"},{"denom":"ASSET7","index":"0.000005633022700557"},{"denom":"ASSET8","index":"0.000007351244780963"},{"denom":"ASSET9","index":"0.000003174742420725"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003091273620954"},{"denom":"ASSET1","index":"0.000026212594205506"},{"denom":"ASSET10","index":"0.000020831747389799"},{"denom":"ASSET11","index":"0.000026024829344923"},{"denom":"ASSET12","index":"0.000024768925461013"},{"denom":"ASSET13","index":"0.000008170539761157"},{"denom":"ASSET14","index":"0.000023900540063840"},{"denom":"ASSET15","index":"0.000018780610027247"},{"denom":"ASSET16","index":"0.000011634658240098"},{"denom":"ASSET17","index":"0.000009101405984603"},{"denom":"ASSET18","index":"0.000003780149264156"},{"denom":"ASSET2","index":"0.000007930960667726"},{"denom":"ASSET3","index":"0.000002206123035767"},{"denom":"ASSET4","index":"0.000021253166889363"},{"denom":"ASSET5","index":"0.000001718500807532"},{"denom":"ASSET6","index":"0.000006939076737962"},{"denom":"ASSET7","index":"0.000010891166816552"},{"denom":"ASSET8","index":"0.000014853628574871"},{"denom":"ASSET9","index":"0.000006308302102729"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001496654334782"},{"denom":"ASSET1","index":"0.000012477377024436"},{"denom":"ASSET10","index":"0.000008693096469902"},{"denom":"ASSET11","index":"0.000012070207597683"},{"denom":"ASSET12","index":"0.000010869145414891"},{"denom":"ASSET13","index":"0.000003740467488528"},{"denom":"ASSET14","index":"0.000011275146493218"},{"denom":"ASSET15","index":"0.000008061604145195"},{"denom":"ASSET16","index":"0.000005620924281527"},{"denom":"ASSET17","index":"0.000003991662400298"},{"denom":"ASSET18","index":"0.000001901487064682"},{"denom":"ASSET2","index":"0.000003683218415613"},{"denom":"ASSET3","index":"0.000001077217249546"},{"denom":"ASSET4","index":"0.000010139511822330"},{"denom":"ASSET5","index":"0.000000835953299404"},{"denom":"ASSET6","index":"0.000003403398967385"},{"denom":"ASSET7","index":"0.000005212586506346"},{"denom":"ASSET8","index":"0.000006801540366848"},{"denom":"ASSET9","index":"0.000002937812119289"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003012098530886"},{"denom":"ASSET1","index":"0.000025562058034330"},{"denom":"ASSET10","index":"0.000020450222858637"},{"denom":"ASSET11","index":"0.000025414193224582"},{"denom":"ASSET12","index":"0.000024256065084933"},{"denom":"ASSET13","index":"0.000007984561416691"},{"denom":"ASSET14","index":"0.000023318358139730"},{"denom":"ASSET15","index":"0.000018411259079989"},{"denom":"ASSET16","index":"0.000011336678183578"},{"denom":"ASSET17","index":"0.000008913774138499"},{"denom":"ASSET18","index":"0.000003674960609183"},{"denom":"ASSET2","index":"0.000007744948932800"},{"denom":"ASSET3","index":"0.000002148867969989"},{"denom":"ASSET4","index":"0.000020722540912428"},{"denom":"ASSET5","index":"0.000001674229864542"},{"denom":"ASSET6","index":"0.000006756080138401"},{"denom":"ASSET7","index":"0.000010618450136599"},{"denom":"ASSET8","index":"0.000014514789998911"},{"denom":"ASSET9","index":"0.000006159565713194"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001470615438656"},{"denom":"ASSET1","index":"0.000012263141624205"},{"denom":"ASSET10","index":"0.000008543710077270"},{"denom":"ASSET11","index":"0.000011863435889596"},{"denom":"ASSET12","index":"0.000010682701378752"},{"denom":"ASSET13","index":"0.000003676538596641"},{"denom":"ASSET14","index":"0.000011081935762259"},{"denom":"ASSET15","index":"0.000007923412026863"},{"denom":"ASSET16","index":"0.000005524234917004"},{"denom":"ASSET17","index":"0.000003923055223056"},{"denom":"ASSET18","index":"0.000001868907119959"},{"denom":"ASSET2","index":"0.000003619976464385"},{"denom":"ASSET3","index":"0.000001058654575392"},{"denom":"ASSET4","index":"0.000009965776352407"},{"denom":"ASSET5","index":"0.000000822036322121"},{"denom":"ASSET6","index":"0.000003345178771841"},{"denom":"ASSET7","index":"0.000005123115129088"},{"denom":"ASSET8","index":"0.000006685172681558"},{"denom":"ASSET9","index":"0.000002887496851669"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000002995147819628"},{"denom":"ASSET1","index":"0.000025426980115999"},{"denom":"ASSET10","index":"0.000020372034738960"},{"denom":"ASSET11","index":"0.000025287989623967"},{"denom":"ASSET12","index":"0.000024150599022202"},{"denom":"ASSET13","index":"0.000007946076587902"},{"denom":"ASSET14","index":"0.000023198024872944"},{"denom":"ASSET15","index":"0.000018335727027304"},{"denom":"ASSET16","index":"0.000011274635486105"},{"denom":"ASSET17","index":"0.000008875015361763"},{"denom":"ASSET18","index":"0.000003653177061349"},{"denom":"ASSET2","index":"0.000007706361997735"},{"denom":"ASSET3","index":"0.000002137037997503"},{"denom":"ASSET4","index":"0.000020612735071168"},{"denom":"ASSET5","index":"0.000001665450131859"},{"denom":"ASSET6","index":"0.000006718182222688"},{"denom":"ASSET7","index":"0.000010561635089256"},{"denom":"ASSET8","index":"0.000014445035982826"},{"denom":"ASSET9","index":"0.000006128513210961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001778581753434"},{"denom":"ASSET1","index":"0.000014888315804569"},{"denom":"ASSET10","index":"0.000010370885153828"},{"denom":"ASSET11","index":"0.000014404007158094"},{"denom":"ASSET12","index":"0.000012967781516823"},{"denom":"ASSET13","index":"0.000004458979607201"},{"denom":"ASSET14","index":"0.000013452090163298"},{"denom":"ASSET15","index":"0.000009619371736884"},{"denom":"ASSET16","index":"0.000006705169708956"},{"denom":"ASSET17","index":"0.000004759584973979"},{"denom":"ASSET18","index":"0.000002262890399909"},{"denom":"ASSET2","index":"0.000004392178414584"},{"denom":"ASSET3","index":"0.000001285922957882"},{"denom":"ASSET4","index":"0.000012099366012799"},{"denom":"ASSET5","index":"0.000000993667740182"},{"denom":"ASSET6","index":"0.000004058172451498"},{"denom":"ASSET7","index":"0.000006220861062481"},{"denom":"ASSET8","index":"0.000008116344902996"},{"denom":"ASSET9","index":"0.000003507062612406"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003356752793751"},{"denom":"ASSET1","index":"0.000028516406305775"},{"denom":"ASSET10","index":"0.000022616173055400"},{"denom":"ASSET11","index":"0.000028302061322789"},{"denom":"ASSET12","index":"0.000026910491325102"},{"denom":"ASSET13","index":"0.000008878873421079"},{"denom":"ASSET14","index":"0.000025995251505598"},{"denom":"ASSET15","index":"0.000020398635157595"},{"denom":"ASSET16","index":"0.000012658071469071"},{"denom":"ASSET17","index":"0.000009885849877285"},{"denom":"ASSET18","index":"0.000004110010202724"},{"denom":"ASSET2","index":"0.000008622285743228"},{"denom":"ASSET3","index":"0.000002402314047495"},{"denom":"ASSET4","index":"0.000023121698220749"},{"denom":"ASSET5","index":"0.000001866482592061"},{"denom":"ASSET6","index":"0.000007549939309511"},{"denom":"ASSET7","index":"0.000011851024307599"},{"denom":"ASSET8","index":"0.000016149793693754"},{"denom":"ASSET9","index":"0.000006862325287189"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001604942959288"},{"denom":"ASSET1","index":"0.000013380628695124"},{"denom":"ASSET10","index":"0.000009322365613635"},{"denom":"ASSET11","index":"0.000012944148427984"},{"denom":"ASSET12","index":"0.000011656280789193"},{"denom":"ASSET13","index":"0.000004011353995308"},{"denom":"ASSET14","index":"0.000012091757653420"},{"denom":"ASSET15","index":"0.000008645319498111"},{"denom":"ASSET16","index":"0.000006027692148913"},{"denom":"ASSET17","index":"0.000004280767677439"},{"denom":"ASSET18","index":"0.000002039165569874"},{"denom":"ASSET2","index":"0.000003949895566889"},{"denom":"ASSET3","index":"0.000001155418454280"},{"denom":"ASSET4","index":"0.000010873877367808"},{"denom":"ASSET5","index":"0.000000896791353463"},{"denom":"ASSET6","index":"0.000003649878095912"},{"denom":"ASSET7","index":"0.000005589957628131"},{"denom":"ASSET8","index":"0.000007294237475803"},{"denom":"ASSET9","index":"0.000003150685146712"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003200268554223"},{"denom":"ASSET1","index":"0.000027155061035589"},{"denom":"ASSET10","index":"0.000021699312128992"},{"denom":"ASSET11","index":"0.000026991580254755"},{"denom":"ASSET12","index":"0.000025748970079650"},{"denom":"ASSET13","index":"0.000008479073830121"},{"denom":"ASSET14","index":"0.000024769827936089"},{"denom":"ASSET15","index":"0.000019540730612944"},{"denom":"ASSET16","index":"0.000012044995213579"},{"denom":"ASSET17","index":"0.000009462424001901"},{"denom":"ASSET18","index":"0.000003906197580725"},{"denom":"ASSET2","index":"0.000008225756082433"},{"denom":"ASSET3","index":"0.000002283784004254"},{"denom":"ASSET4","index":"0.000022014648589339"},{"denom":"ASSET5","index":"0.000001779311895342"},{"denom":"ASSET6","index":"0.000007179475362032"},{"denom":"ASSET7","index":"0.000011280598785262"},{"denom":"ASSET8","index":"0.000015413911362487"},{"denom":"ASSET9","index":"0.000006542247148589"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001620184629837"},{"denom":"ASSET1","index":"0.000013508113244239"},{"denom":"ASSET10","index":"0.000009411159415052"},{"denom":"ASSET11","index":"0.000013068550109883"},{"denom":"ASSET12","index":"0.000011766766981214"},{"denom":"ASSET13","index":"0.000004049052718392"},{"denom":"ASSET14","index":"0.000012206330115570"},{"denom":"ASSET15","index":"0.000008726455301921"},{"denom":"ASSET16","index":"0.000006083441070987"},{"denom":"ASSET17","index":"0.000004319553108765"},{"denom":"ASSET18","index":"0.000002056930051793"},{"denom":"ASSET2","index":"0.000003987063045598"},{"denom":"ASSET3","index":"0.000001166532933482"},{"denom":"ASSET4","index":"0.000010977807509294"},{"denom":"ASSET5","index":"0.000000904485680309"},{"denom":"ASSET6","index":"0.000003682750106429"},{"denom":"ASSET7","index":"0.000005643877936631"},{"denom":"ASSET8","index":"0.000007362682500458"},{"denom":"ASSET9","index":"0.000003178379586880"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003154859072778"},{"denom":"ASSET1","index":"0.000026759958230198"},{"denom":"ASSET10","index":"0.000021318547828682"},{"denom":"ASSET11","index":"0.000026582778956839"},{"denom":"ASSET12","index":"0.000025324795995745"},{"denom":"ASSET13","index":"0.000008347309163095"},{"denom":"ASSET14","index":"0.000024403216779648"},{"denom":"ASSET15","index":"0.000019208461119321"},{"denom":"ASSET16","index":"0.000011872154646602"},{"denom":"ASSET17","index":"0.000009304429323264"},{"denom":"ASSET18","index":"0.000003853154066825"},{"denom":"ASSET2","index":"0.000008100524497579"},{"denom":"ASSET3","index":"0.000002251942800438"},{"denom":"ASSET4","index":"0.000021695917087147"},{"denom":"ASSET5","index":"0.000001753374642360"},{"denom":"ASSET6","index":"0.000007078305954632"},{"denom":"ASSET7","index":"0.000011118481739065"},{"denom":"ASSET8","index":"0.000015174129529137"},{"denom":"ASSET9","index":"0.000006441283498998"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001565910537906"},{"denom":"ASSET1","index":"0.000013053983025959"},{"denom":"ASSET10","index":"0.000009094819386579"},{"denom":"ASSET11","index":"0.000012628414118813"},{"denom":"ASSET12","index":"0.000011371841840295"},{"denom":"ASSET13","index":"0.000003913403541838"},{"denom":"ASSET14","index":"0.000011796953146466"},{"denom":"ASSET15","index":"0.000008434501179040"},{"denom":"ASSET16","index":"0.000005880630135191"},{"denom":"ASSET17","index":"0.000004176066501732"},{"denom":"ASSET18","index":"0.000001989191440174"},{"denom":"ASSET2","index":"0.000003853457814057"},{"denom":"ASSET3","index":"0.000001127071202473"},{"denom":"ASSET4","index":"0.000010608563413286"},{"denom":"ASSET5","index":"0.000000874933065013"},{"denom":"ASSET6","index":"0.000003561050790760"},{"denom":"ASSET7","index":"0.000005453688425119"},{"denom":"ASSET8","index":"0.000007116152768840"},{"denom":"ASSET9","index":"0.000003073705751932"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003066618221533"},{"denom":"ASSET1","index":"0.000026018563142658"},{"denom":"ASSET10","index":"0.000020743763118655"},{"denom":"ASSET11","index":"0.000025849025514444"},{"denom":"ASSET12","index":"0.000024635604575072"},{"denom":"ASSET13","index":"0.000008118261811936"},{"denom":"ASSET14","index":"0.000023728777879609"},{"denom":"ASSET15","index":"0.000018689177197382"},{"denom":"ASSET16","index":"0.000011544003668418"},{"denom":"ASSET17","index":"0.000009052167825210"},{"denom":"ASSET18","index":"0.000003745930402733"},{"denom":"ASSET2","index":"0.000007877080459743"},{"denom":"ASSET3","index":"0.000002188594145460"},{"denom":"ASSET4","index":"0.000021094338825720"},{"denom":"ASSET5","index":"0.000001705356613908"},{"denom":"ASSET6","index":"0.000006882744986340"},{"denom":"ASSET7","index":"0.000010809249072439"},{"denom":"ASSET8","index":"0.000014757775472241"},{"denom":"ASSET9","index":"0.000006264987011427"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001616793771814"},{"denom":"ASSET1","index":"0.000013481664806896"},{"denom":"ASSET10","index":"0.000009392973001731"},{"denom":"ASSET11","index":"0.000013042136425966"},{"denom":"ASSET12","index":"0.000011745108533466"},{"denom":"ASSET13","index":"0.000004041984429535"},{"denom":"ASSET14","index":"0.000012183439289380"},{"denom":"ASSET15","index":"0.000008710326742521"},{"denom":"ASSET16","index":"0.000006073156456940"},{"denom":"ASSET17","index":"0.000004312647683187"},{"denom":"ASSET18","index":"0.000002053926902712"},{"denom":"ASSET2","index":"0.000003979707928695"},{"denom":"ASSET3","index":"0.000001164091515706"},{"denom":"ASSET4","index":"0.000010955873647818"},{"denom":"ASSET5","index":"0.000000903009262183"},{"denom":"ASSET6","index":"0.000003677906424623"},{"denom":"ASSET7","index":"0.000005632430450993"},{"denom":"ASSET8","index":"0.000007349824724165"},{"denom":"ASSET9","index":"0.000003173706292820"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003010548827117"},{"denom":"ASSET1","index":"0.000025517681435823"},{"denom":"ASSET10","index":"0.000020207909525991"},{"denom":"ASSET11","index":"0.000025316824190850"},{"denom":"ASSET12","index":"0.000024059273468565"},{"denom":"ASSET13","index":"0.000007945703994160"},{"denom":"ASSET14","index":"0.000023261456497592"},{"denom":"ASSET15","index":"0.000018230653165683"},{"denom":"ASSET16","index":"0.000011330852554208"},{"denom":"ASSET17","index":"0.000008840468160143"},{"denom":"ASSET18","index":"0.000003685449036638"},{"denom":"ASSET2","index":"0.000007715875534239"},{"denom":"ASSET3","index":"0.000002150116713749"},{"denom":"ASSET4","index":"0.000020690763011385"},{"denom":"ASSET5","index":"0.000001674170167376"},{"denom":"ASSET6","index":"0.000006761947340508"},{"denom":"ASSET7","index":"0.000010605047135869"},{"denom":"ASSET8","index":"0.000014444866674878"},{"denom":"ASSET9","index":"0.000006137206230949"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001598496813351"},{"denom":"ASSET1","index":"0.000013327209301876"},{"denom":"ASSET10","index":"0.000009285082513510"},{"denom":"ASSET11","index":"0.000012892549064690"},{"denom":"ASSET12","index":"0.000011609910099638"},{"denom":"ASSET13","index":"0.000003995530641827"},{"denom":"ASSET14","index":"0.000012043503249499"},{"denom":"ASSET15","index":"0.000008611039019674"},{"denom":"ASSET16","index":"0.000006003788988106"},{"denom":"ASSET17","index":"0.000004263725256261"},{"denom":"ASSET18","index":"0.000002031022875886"},{"denom":"ASSET2","index":"0.000003933995272733"},{"denom":"ASSET3","index":"0.000001150675832486"},{"denom":"ASSET4","index":"0.000010830580656369"},{"denom":"ASSET5","index":"0.000000893152091305"},{"denom":"ASSET6","index":"0.000003635566517414"},{"denom":"ASSET7","index":"0.000005567705967820"},{"denom":"ASSET8","index":"0.000007265086206652"},{"denom":"ASSET9","index":"0.000003137948128033"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003202417698287"},{"denom":"ASSET1","index":"0.000027176874960756"},{"denom":"ASSET10","index":"0.000021729724210241"},{"denom":"ASSET11","index":"0.000027016578438308"},{"denom":"ASSET12","index":"0.000025779554956391"},{"denom":"ASSET13","index":"0.000008487649506725"},{"denom":"ASSET14","index":"0.000024790682929963"},{"denom":"ASSET15","index":"0.000019565798539307"},{"denom":"ASSET16","index":"0.000012053877846841"},{"denom":"ASSET17","index":"0.000009473617164606"},{"denom":"ASSET18","index":"0.000003908301251667"},{"denom":"ASSET2","index":"0.000008233254558201"},{"denom":"ASSET3","index":"0.000002285025567503"},{"denom":"ASSET4","index":"0.000022032200437673"},{"denom":"ASSET5","index":"0.000001780306156687"},{"denom":"ASSET6","index":"0.000007184182778940"},{"denom":"ASSET7","index":"0.000011289430429576"},{"denom":"ASSET8","index":"0.000015429251463912"},{"denom":"ASSET9","index":"0.000006548040900334"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001349258766758"},{"denom":"ASSET1","index":"0.000011264433664868"},{"denom":"ASSET10","index":"0.000007848225297969"},{"denom":"ASSET11","index":"0.000010895650990484"},{"denom":"ASSET12","index":"0.000009811385762205"},{"denom":"ASSET13","index":"0.000003376459336127"},{"denom":"ASSET14","index":"0.000010177960157102"},{"denom":"ASSET15","index":"0.000007278489190238"},{"denom":"ASSET16","index":"0.000005074626261883"},{"denom":"ASSET17","index":"0.000003603912123322"},{"denom":"ASSET18","index":"0.000001715833161655"},{"denom":"ASSET2","index":"0.000003323460628431"},{"denom":"ASSET3","index":"0.000000971642974425"},{"denom":"ASSET4","index":"0.000009153318474981"},{"denom":"ASSET5","index":"0.000000753023305179"},{"denom":"ASSET6","index":"0.000003071716766875"},{"denom":"ASSET7","index":"0.000004705843587499"},{"denom":"ASSET8","index":"0.000006139016974776"},{"denom":"ASSET9","index":"0.000002652143664283"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000002874619638549"},{"denom":"ASSET1","index":"0.000024442633186143"},{"denom":"ASSET10","index":"0.000019689737510784"},{"denom":"ASSET11","index":"0.000024334399718263"},{"denom":"ASSET12","index":"0.000023294058494145"},{"denom":"ASSET13","index":"0.000007650065286478"},{"denom":"ASSET14","index":"0.000022306974942610"},{"denom":"ASSET15","index":"0.000017702453996022"},{"denom":"ASSET16","index":"0.000010830667352685"},{"denom":"ASSET17","index":"0.000008561334956642"},{"denom":"ASSET18","index":"0.000003501743239949"},{"denom":"ASSET2","index":"0.000007413384379561"},{"denom":"ASSET3","index":"0.000002050775894848"},{"denom":"ASSET4","index":"0.000019811877393900"},{"denom":"ASSET5","index":"0.000001596563839644"},{"denom":"ASSET6","index":"0.000006447875450380"},{"denom":"ASSET7","index":"0.000010149425285061"},{"denom":"ASSET8","index":"0.000013906577801610"},{"denom":"ASSET9","index":"0.000005896530335304"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001744355646452"},{"denom":"ASSET1","index":"0.000014544558741461"},{"denom":"ASSET10","index":"0.000010133244841823"},{"denom":"ASSET11","index":"0.000014070651242217"},{"denom":"ASSET12","index":"0.000012670295178174"},{"denom":"ASSET13","index":"0.000004360461787457"},{"denom":"ASSET14","index":"0.000013143775348745"},{"denom":"ASSET15","index":"0.000009397812194213"},{"denom":"ASSET16","index":"0.000006552230555377"},{"denom":"ASSET17","index":"0.000004653181929010"},{"denom":"ASSET18","index":"0.000002216553831001"},{"denom":"ASSET2","index":"0.000004293371185670"},{"denom":"ASSET3","index":"0.000001255918972299"},{"denom":"ASSET4","index":"0.000011819911117312"},{"denom":"ASSET5","index":"0.000000974736704938"},{"denom":"ASSET6","index":"0.000003967319407560"},{"denom":"ASSET7","index":"0.000006076186412764"},{"denom":"ASSET8","index":"0.000007929083542361"},{"denom":"ASSET9","index":"0.000003424611991834"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003377008276018"},{"denom":"ASSET1","index":"0.000028642142456639"},{"denom":"ASSET10","index":"0.000022800592191853"},{"denom":"ASSET11","index":"0.000028447577997463"},{"denom":"ASSET12","index":"0.000027093635853923"},{"denom":"ASSET13","index":"0.000008933092474106"},{"denom":"ASSET14","index":"0.000026119259559896"},{"denom":"ASSET15","index":"0.000020548756595198"},{"denom":"ASSET16","index":"0.000012710670192565"},{"denom":"ASSET17","index":"0.000009956402105067"},{"denom":"ASSET18","index":"0.000004127475104327"},{"denom":"ASSET2","index":"0.000008669602227225"},{"denom":"ASSET3","index":"0.000002410895003349"},{"denom":"ASSET4","index":"0.000023222264254358"},{"denom":"ASSET5","index":"0.000001877874241403"},{"denom":"ASSET6","index":"0.000007579654674160"},{"denom":"ASSET7","index":"0.000011900488798179"},{"denom":"ASSET8","index":"0.000016239324105118"},{"denom":"ASSET9","index":"0.000006895771583569"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001546168277317"},{"denom":"ASSET1","index":"0.000012892123182452"},{"denom":"ASSET10","index":"0.000008982377260299"},{"denom":"ASSET11","index":"0.000012472337191477"},{"denom":"ASSET12","index":"0.000011231230783378"},{"denom":"ASSET13","index":"0.000003864117010091"},{"denom":"ASSET14","index":"0.000011651016774353"},{"denom":"ASSET15","index":"0.000008329231976204"},{"denom":"ASSET16","index":"0.000005807908663952"},{"denom":"ASSET17","index":"0.000004124853650448"},{"denom":"ASSET18","index":"0.000001964650585090"},{"denom":"ASSET2","index":"0.000003805451266010"},{"denom":"ASSET3","index":"0.000001113345454324"},{"denom":"ASSET4","index":"0.000010477701892746"},{"denom":"ASSET5","index":"0.000000863038279582"},{"denom":"ASSET6","index":"0.000003516033595214"},{"denom":"ASSET7","index":"0.000005385515306574"},{"denom":"ASSET8","index":"0.000007028156140823"},{"denom":"ASSET9","index":"0.000003034974493755"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003044385892570"},{"denom":"ASSET1","index":"0.000025830014188245"},{"denom":"ASSET10","index":"0.000020607856539150"},{"denom":"ASSET11","index":"0.000025666657138152"},{"denom":"ASSET12","index":"0.000024468008636658"},{"denom":"ASSET13","index":"0.000008060303383676"},{"denom":"ASSET14","index":"0.000023559408638801"},{"denom":"ASSET15","index":"0.000018562848593971"},{"denom":"ASSET16","index":"0.000011459854746185"},{"denom":"ASSET17","index":"0.000008991538648143"},{"denom":"ASSET18","index":"0.000003718456390600"},{"denom":"ASSET2","index":"0.000007821717005664"},{"denom":"ASSET3","index":"0.000002173111618200"},{"denom":"ASSET4","index":"0.000020942104557307"},{"denom":"ASSET5","index":"0.000001691598021351"},{"denom":"ASSET6","index":"0.000006831113312915"},{"denom":"ASSET7","index":"0.000010730587410374"},{"denom":"ASSET8","index":"0.000014654605067850"},{"denom":"ASSET9","index":"0.000006220578615076"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001387821916020"},{"denom":"ASSET1","index":"0.000011588015182905"},{"denom":"ASSET10","index":"0.000008073788013584"},{"denom":"ASSET11","index":"0.000011209789038410"},{"denom":"ASSET12","index":"0.000010095957715252"},{"denom":"ASSET13","index":"0.000003472532948668"},{"denom":"ASSET14","index":"0.000010471205701129"},{"denom":"ASSET15","index":"0.000007487090765824"},{"denom":"ASSET16","index":"0.000005220712057474"},{"denom":"ASSET17","index":"0.000003707807479495"},{"denom":"ASSET18","index":"0.000001766048060515"},{"denom":"ASSET2","index":"0.000003418926093543"},{"denom":"ASSET3","index":"0.000001000661295671"},{"denom":"ASSET4","index":"0.000009416937550333"},{"denom":"ASSET5","index":"0.000000774321240698"},{"denom":"ASSET6","index":"0.000003159826293771"},{"denom":"ASSET7","index":"0.000004839507754361"},{"denom":"ASSET8","index":"0.000006316674428923"},{"denom":"ASSET9","index":"0.000002727993294151"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000002956721491824"},{"denom":"ASSET1","index":"0.000025136116728129"},{"denom":"ASSET10","index":"0.000020247681325291"},{"denom":"ASSET11","index":"0.000025026479369709"},{"denom":"ASSET12","index":"0.000023957412844230"},{"denom":"ASSET13","index":"0.000007866588644670"},{"denom":"ASSET14","index":"0.000022940688787988"},{"denom":"ASSET15","index":"0.000018203641219753"},{"denom":"ASSET16","index":"0.000011138902531601"},{"denom":"ASSET17","index":"0.000008803888891481"},{"denom":"ASSET18","index":"0.000003602115317706"},{"denom":"ASSET2","index":"0.000007623974866010"},{"denom":"ASSET3","index":"0.000002110544057177"},{"denom":"ASSET4","index":"0.000020374365248917"},{"denom":"ASSET5","index":"0.000001641905652861"},{"denom":"ASSET6","index":"0.000006630874494768"},{"denom":"ASSET7","index":"0.000010436528568948"},{"denom":"ASSET8","index":"0.000014302572224422"},{"denom":"ASSET9","index":"0.000006063325997423"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001500850379058"},{"denom":"ASSET1","index":"0.000012511793460183"},{"denom":"ASSET10","index":"0.000008717304800227"},{"denom":"ASSET11","index":"0.000012103632089176"},{"denom":"ASSET12","index":"0.000010899320696303"},{"denom":"ASSET13","index":"0.000003750781099635"},{"denom":"ASSET14","index":"0.000011306809643305"},{"denom":"ASSET15","index":"0.000008083881387560"},{"denom":"ASSET16","index":"0.000005636258009526"},{"denom":"ASSET17","index":"0.000004002940101492"},{"denom":"ASSET18","index":"0.000001906322054045"},{"denom":"ASSET2","index":"0.000003692952635209"},{"denom":"ASSET3","index":"0.000001079912951956"},{"denom":"ASSET4","index":"0.000010167723378913"},{"denom":"ASSET5","index":"0.000000838512734178"},{"denom":"ASSET6","index":"0.000003412551825143"},{"denom":"ASSET7","index":"0.000005226751790509"},{"denom":"ASSET8","index":"0.000006820396682251"},{"denom":"ASSET9","index":"0.000002945889565704"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003004514310835"},{"denom":"ASSET1","index":"0.000025497942224476"},{"denom":"ASSET10","index":"0.000020385999177782"},{"denom":"ASSET11","index":"0.000025346802479017"},{"denom":"ASSET12","index":"0.000024185328023735"},{"denom":"ASSET13","index":"0.000007962788555043"},{"denom":"ASSET14","index":"0.000023259189454501"},{"denom":"ASSET15","index":"0.000018355567065709"},{"denom":"ASSET16","index":"0.000011309092459120"},{"denom":"ASSET17","index":"0.000008887662321727"},{"denom":"ASSET18","index":"0.000003666570499762"},{"denom":"ASSET2","index":"0.000007723995884874"},{"denom":"ASSET3","index":"0.000002143405494402"},{"denom":"ASSET4","index":"0.000020670641097733"},{"denom":"ASSET5","index":"0.000001670336124344"},{"denom":"ASSET6","index":"0.000006739845385808"},{"denom":"ASSET7","index":"0.000010591422556410"},{"denom":"ASSET8","index":"0.000014475095162856"},{"denom":"ASSET9","index":"0.000006143360978771"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001507842106347"},{"denom":"ASSET1","index":"0.000012572313391156"},{"denom":"ASSET10","index":"0.000008759356679472"},{"denom":"ASSET11","index":"0.000012162445176153"},{"denom":"ASSET12","index":"0.000010952151629736"},{"denom":"ASSET13","index":"0.000003769211161813"},{"denom":"ASSET14","index":"0.000011361231636633"},{"denom":"ASSET15","index":"0.000008123272738112"},{"denom":"ASSET16","index":"0.000005663669344042"},{"denom":"ASSET17","index":"0.000004022225963767"},{"denom":"ASSET18","index":"0.000001916133905138"},{"denom":"ASSET2","index":"0.000003711277866039"},{"denom":"ASSET3","index":"0.000001085756665704"},{"denom":"ASSET4","index":"0.000010217147571101"},{"denom":"ASSET5","index":"0.000000842594465073"},{"denom":"ASSET6","index":"0.000003429493468225"},{"denom":"ASSET7","index":"0.000005252224712828"},{"denom":"ASSET8","index":"0.000006853863583762"},{"denom":"ASSET9","index":"0.000002960115541236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003064659144392"},{"denom":"ASSET1","index":"0.000026014545525120"},{"denom":"ASSET10","index":"0.000020837902255895"},{"denom":"ASSET11","index":"0.000025870951889592"},{"denom":"ASSET12","index":"0.000024704995690840"},{"denom":"ASSET13","index":"0.000008129050348807"},{"denom":"ASSET14","index":"0.000023733606076391"},{"denom":"ASSET15","index":"0.000018755969892396"},{"denom":"ASSET16","index":"0.000011535737727926"},{"denom":"ASSET17","index":"0.000009078938038909"},{"denom":"ASSET18","index":"0.000003738223548700"},{"denom":"ASSET2","index":"0.000007883998416280"},{"denom":"ASSET3","index":"0.000002186926046113"},{"denom":"ASSET4","index":"0.000021089316501471"},{"denom":"ASSET5","index":"0.000001703791082418"},{"denom":"ASSET6","index":"0.000006873778950624"},{"denom":"ASSET7","index":"0.000010805665377904"},{"denom":"ASSET8","index":"0.000014777724141198"},{"denom":"ASSET9","index":"0.000006269886019705"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001016570122529"},{"denom":"ASSET1","index":"0.000008477171470527"},{"denom":"ASSET10","index":"0.000005906463519680"},{"denom":"ASSET11","index":"0.000008200989896911"},{"denom":"ASSET12","index":"0.000007384774710599"},{"denom":"ASSET13","index":"0.000002541117067960"},{"denom":"ASSET14","index":"0.000007660956284215"},{"denom":"ASSET15","index":"0.000005477395717812"},{"denom":"ASSET16","index":"0.000003819073322661"},{"denom":"ASSET17","index":"0.000002711881121289"},{"denom":"ASSET18","index":"0.000001291518742692"},{"denom":"ASSET2","index":"0.000002502279034170"},{"denom":"ASSET3","index":"0.000000731757874738"},{"denom":"ASSET4","index":"0.000006889127422234"},{"denom":"ASSET5","index":"0.000000567775065403"},{"denom":"ASSET6","index":"0.000002312404202309"},{"denom":"ASSET7","index":"0.000003541658795591"},{"denom":"ASSET8","index":"0.000004621109544256"},{"denom":"ASSET9","index":"0.000001996151641449"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000002499545170163"},{"denom":"ASSET1","index":"0.000021282413071401"},{"denom":"ASSET10","index":"0.000017412808765385"},{"denom":"ASSET11","index":"0.000021259874812403"},{"denom":"ASSET12","index":"0.000020486111882687"},{"denom":"ASSET13","index":"0.000006694303381301"},{"denom":"ASSET14","index":"0.000019446986985139"},{"denom":"ASSET15","index":"0.000015606004703242"},{"denom":"ASSET16","index":"0.000009412782427040"},{"denom":"ASSET17","index":"0.000007528963649123"},{"denom":"ASSET18","index":"0.000003027066879988"},{"denom":"ASSET2","index":"0.000006477094521478"},{"denom":"ASSET3","index":"0.000001780578331809"},{"denom":"ASSET4","index":"0.000017246051064985"},{"denom":"ASSET5","index":"0.000001387924123500"},{"denom":"ASSET6","index":"0.000005593713918003"},{"denom":"ASSET7","index":"0.000008831780754063"},{"denom":"ASSET8","index":"0.000012169406160300"},{"denom":"ASSET9","index":"0.000005149034362400"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001552339226368"},{"denom":"ASSET1","index":"0.000012948480372324"},{"denom":"ASSET10","index":"0.000009021431734191"},{"denom":"ASSET11","index":"0.000012526515146109"},{"denom":"ASSET12","index":"0.000011279099696349"},{"denom":"ASSET13","index":"0.000003880848065920"},{"denom":"ASSET14","index":"0.000011701064922564"},{"denom":"ASSET15","index":"0.000008365383608761"},{"denom":"ASSET16","index":"0.000005830512213323"},{"denom":"ASSET17","index":"0.000004142651308462"},{"denom":"ASSET18","index":"0.000001971224414436"},{"denom":"ASSET2","index":"0.000003822327341117"},{"denom":"ASSET3","index":"0.000001118053847563"},{"denom":"ASSET4","index":"0.000010521410312050"},{"denom":"ASSET5","index":"0.000000865490719463"},{"denom":"ASSET6","index":"0.000003529723717099"},{"denom":"ASSET7","index":"0.000005408546987108"},{"denom":"ASSET8","index":"0.000007056367396050"},{"denom":"ASSET9","index":"0.000003046157727933"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003043964098015"},{"denom":"ASSET1","index":"0.000025828331615061"},{"denom":"ASSET10","index":"0.000020594675215425"},{"denom":"ASSET11","index":"0.000025661520704142"},{"denom":"ASSET12","index":"0.000024456429429906"},{"denom":"ASSET13","index":"0.000008058244190043"},{"denom":"ASSET14","index":"0.000023555461855486"},{"denom":"ASSET15","index":"0.000018552812657155"},{"denom":"ASSET16","index":"0.000011456604402492"},{"denom":"ASSET17","index":"0.000008987560143691"},{"denom":"ASSET18","index":"0.000003716794339222"},{"denom":"ASSET2","index":"0.000007820148034807"},{"denom":"ASSET3","index":"0.000002173135080244"},{"denom":"ASSET4","index":"0.000020938599170426"},{"denom":"ASSET5","index":"0.000001690207511083"},{"denom":"ASSET6","index":"0.000006829800145738"},{"denom":"ASSET7","index":"0.000010729300481432"},{"denom":"ASSET8","index":"0.000014648719853803"},{"denom":"ASSET9","index":"0.000006217447736766"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000000977108719668"},{"denom":"ASSET1","index":"0.000008146517162771"},{"denom":"ASSET10","index":"0.000005675852121603"},{"denom":"ASSET11","index":"0.000007881108738917"},{"denom":"ASSET12","index":"0.000007096716963958"},{"denom":"ASSET13","index":"0.000002441926549413"},{"denom":"ASSET14","index":"0.000007362125387813"},{"denom":"ASSET15","index":"0.000005263370239944"},{"denom":"ASSET16","index":"0.000003670074447059"},{"denom":"ASSET17","index":"0.000002605905002368"},{"denom":"ASSET18","index":"0.000001241671893765"},{"denom":"ASSET2","index":"0.000002404735560083"},{"denom":"ASSET3","index":"0.000000703247798239"},{"denom":"ASSET4","index":"0.000006620841350486"},{"denom":"ASSET5","index":"0.000000546031343344"},{"denom":"ASSET6","index":"0.000002222161612464"},{"denom":"ASSET7","index":"0.000003402975523689"},{"denom":"ASSET8","index":"0.000004440942225898"},{"denom":"ASSET9","index":"0.000001917871699764"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000002320380931676"},{"denom":"ASSET1","index":"0.000019748951316256"},{"denom":"ASSET10","index":"0.000016101172379351"},{"denom":"ASSET11","index":"0.000019714000020718"},{"denom":"ASSET12","index":"0.000018967805559844"},{"denom":"ASSET13","index":"0.000006204998608741"},{"denom":"ASSET14","index":"0.000018041457784230"},{"denom":"ASSET15","index":"0.000014440911570898"},{"denom":"ASSET16","index":"0.000008738221404310"},{"denom":"ASSET17","index":"0.000006970584758543"},{"denom":"ASSET18","index":"0.000002814127990287"},{"denom":"ASSET2","index":"0.000006006105656449"},{"denom":"ASSET3","index":"0.000001653724297068"},{"denom":"ASSET4","index":"0.000016005284799403"},{"denom":"ASSET5","index":"0.000001288969102308"},{"denom":"ASSET6","index":"0.000005195185892122"},{"denom":"ASSET7","index":"0.000008196101819524"},{"denom":"ASSET8","index":"0.000011280171312915"},{"denom":"ASSET9","index":"0.000004774394171461"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001745798220012"},{"denom":"ASSET1","index":"0.000014553743296829"},{"denom":"ASSET10","index":"0.000010139438249561"},{"denom":"ASSET11","index":"0.000014079320164724"},{"denom":"ASSET12","index":"0.000012678243118663"},{"denom":"ASSET13","index":"0.000004363016060013"},{"denom":"ASSET14","index":"0.000013152173087429"},{"denom":"ASSET15","index":"0.000009403145384454"},{"denom":"ASSET16","index":"0.000006556113428486"},{"denom":"ASSET17","index":"0.000004655955083371"},{"denom":"ASSET18","index":"0.000002217755535422"},{"denom":"ASSET2","index":"0.000004295945845911"},{"denom":"ASSET3","index":"0.000001256580187737"},{"denom":"ASSET4","index":"0.000011827536358912"},{"denom":"ASSET5","index":"0.000000975477084515"},{"denom":"ASSET6","index":"0.000003969964878841"},{"denom":"ASSET7","index":"0.000006080210806364"},{"denom":"ASSET8","index":"0.000007934011797614"},{"denom":"ASSET9","index":"0.000003426498879278"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003342998947188"},{"denom":"ASSET1","index":"0.000028345782457833"},{"denom":"ASSET10","index":"0.000022532322238539"},{"denom":"ASSET11","index":"0.000028144588841629"},{"denom":"ASSET12","index":"0.000026788988923046"},{"denom":"ASSET13","index":"0.000008836278349189"},{"denom":"ASSET14","index":"0.000025846526421467"},{"denom":"ASSET15","index":"0.000020312521464953"},{"denom":"ASSET16","index":"0.000012581099317360"},{"denom":"ASSET17","index":"0.000009844015126225"},{"denom":"ASSET18","index":"0.000004087085525414"},{"denom":"ASSET2","index":"0.000008577030596387"},{"denom":"ASSET3","index":"0.000002386540105172"},{"denom":"ASSET4","index":"0.000022982635628207"},{"denom":"ASSET5","index":"0.000001858980311097"},{"denom":"ASSET6","index":"0.000007503977785171"},{"denom":"ASSET7","index":"0.000011778054778213"},{"denom":"ASSET8","index":"0.000016064148587518"},{"denom":"ASSET9","index":"0.000006822246648031"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001535240763659"},{"denom":"ASSET1","index":"0.000012802535686671"},{"denom":"ASSET10","index":"0.000008918976928097"},{"denom":"ASSET11","index":"0.000012384847277788"},{"denom":"ASSET12","index":"0.000011152366284839"},{"denom":"ASSET13","index":"0.000003838101909148"},{"denom":"ASSET14","index":"0.000011569197017318"},{"denom":"ASSET15","index":"0.000008271431242866"},{"denom":"ASSET16","index":"0.000005767016142371"},{"denom":"ASSET17","index":"0.000004095404830432"},{"denom":"ASSET18","index":"0.000001951213819735"},{"denom":"ASSET2","index":"0.000003778922237253"},{"denom":"ASSET3","index":"0.000001105544885116"},{"denom":"ASSET4","index":"0.000010403614783903"},{"denom":"ASSET5","index":"0.000000857676404279"},{"denom":"ASSET6","index":"0.000003491600641819"},{"denom":"ASSET7","index":"0.000005348470057083"},{"denom":"ASSET8","index":"0.000006978912901618"},{"denom":"ASSET9","index":"0.000003013874884636"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003086246918243"},{"denom":"ASSET1","index":"0.000026194228204796"},{"denom":"ASSET10","index":"0.000020951998769875"},{"denom":"ASSET11","index":"0.000026042273492864"},{"denom":"ASSET12","index":"0.000024853724280460"},{"denom":"ASSET13","index":"0.000008181454895403"},{"denom":"ASSET14","index":"0.000023895275980533"},{"denom":"ASSET15","index":"0.000018864347888264"},{"denom":"ASSET16","index":"0.000011616907749245"},{"denom":"ASSET17","index":"0.000009133094250657"},{"denom":"ASSET18","index":"0.000003766346411006"},{"denom":"ASSET2","index":"0.000007935833032906"},{"denom":"ASSET3","index":"0.000002202232138461"},{"denom":"ASSET4","index":"0.000021234941701767"},{"denom":"ASSET5","index":"0.000001715417631736"},{"denom":"ASSET6","index":"0.000006923101305069"},{"denom":"ASSET7","index":"0.000010881195638563"},{"denom":"ASSET8","index":"0.000014873239564067"},{"denom":"ASSET9","index":"0.000006310901439146"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001694764141112"},{"denom":"ASSET1","index":"0.000014130580032100"},{"denom":"ASSET10","index":"0.000009844524497723"},{"denom":"ASSET11","index":"0.000013669508873851"},{"denom":"ASSET12","index":"0.000012309527666765"},{"denom":"ASSET13","index":"0.000004236016804025"},{"denom":"ASSET14","index":"0.000012769407426673"},{"denom":"ASSET15","index":"0.000009129685492685"},{"denom":"ASSET16","index":"0.000006365641339869"},{"denom":"ASSET17","index":"0.000004520761007698"},{"denom":"ASSET18","index":"0.000002153452502679"},{"denom":"ASSET2","index":"0.000004171085594400"},{"denom":"ASSET3","index":"0.000001219991901933"},{"denom":"ASSET4","index":"0.000011483292916774"},{"denom":"ASSET5","index":"0.000000947161681676"},{"denom":"ASSET6","index":"0.000003854173635500"},{"denom":"ASSET7","index":"0.000005903378783277"},{"denom":"ASSET8","index":"0.000007702985978462"},{"denom":"ASSET9","index":"0.000003326979869284"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003333609736915"},{"denom":"ASSET1","index":"0.000028281729059652"},{"denom":"ASSET10","index":"0.000022560289398652"},{"denom":"ASSET11","index":"0.000028101042421314"},{"denom":"ASSET12","index":"0.000026787599659919"},{"denom":"ASSET13","index":"0.000008826015241086"},{"denom":"ASSET14","index":"0.000025794402991537"},{"denom":"ASSET15","index":"0.000020323143219667"},{"denom":"ASSET16","index":"0.000012547562311789"},{"denom":"ASSET17","index":"0.000009844220733470"},{"denom":"ASSET18","index":"0.000004071528772633"},{"denom":"ASSET2","index":"0.000008563776406339"},{"denom":"ASSET3","index":"0.000002379222276435"},{"denom":"ASSET4","index":"0.000022929058250150"},{"denom":"ASSET5","index":"0.000001853699834530"},{"denom":"ASSET6","index":"0.000007480326246914"},{"denom":"ASSET7","index":"0.000011749530638760"},{"denom":"ASSET8","index":"0.000016044906214881"},{"denom":"ASSET9","index":"0.000006811209452101"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001763265776240"},{"denom":"ASSET1","index":"0.000014701143889842"},{"denom":"ASSET10","index":"0.000010242267715158"},{"denom":"ASSET11","index":"0.000014221824092125"},{"denom":"ASSET12","index":"0.000012807154532407"},{"denom":"ASSET13","index":"0.000004407037513175"},{"denom":"ASSET14","index":"0.000013285723045174"},{"denom":"ASSET15","index":"0.000009498495615253"},{"denom":"ASSET16","index":"0.000006622576828953"},{"denom":"ASSET17","index":"0.000004703043783239"},{"denom":"ASSET18","index":"0.000002240331719108"},{"denom":"ASSET2","index":"0.000004339421867729"},{"denom":"ASSET3","index":"0.000001269671564485"},{"denom":"ASSET4","index":"0.000011947684550294"},{"denom":"ASSET5","index":"0.000000984934568662"},{"denom":"ASSET6","index":"0.000004010359059893"},{"denom":"ASSET7","index":"0.000006141754461338"},{"denom":"ASSET8","index":"0.000008013956555240"},{"denom":"ASSET9","index":"0.000003461169761882"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003372790294110"},{"denom":"ASSET1","index":"0.000028600279733511"},{"denom":"ASSET10","index":"0.000022731421090197"},{"denom":"ASSET11","index":"0.000028396190348540"},{"denom":"ASSET12","index":"0.000027027392524280"},{"denom":"ASSET13","index":"0.000008915082315276"},{"denom":"ASSET14","index":"0.000026078776667620"},{"denom":"ASSET15","index":"0.000020492230414373"},{"denom":"ASSET16","index":"0.000012694274413467"},{"denom":"ASSET17","index":"0.000009931274832025"},{"denom":"ASSET18","index":"0.000004123939856338"},{"denom":"ASSET2","index":"0.000008653658587521"},{"denom":"ASSET3","index":"0.000002407864000528"},{"denom":"ASSET4","index":"0.000023189126720885"},{"denom":"ASSET5","index":"0.000001875419633234"},{"denom":"ASSET6","index":"0.000007571725921487"},{"denom":"ASSET7","index":"0.000011883748947250"},{"denom":"ASSET8","index":"0.000016207221904670"},{"denom":"ASSET9","index":"0.000006883201227023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001453309126336"},{"denom":"ASSET1","index":"0.000012116886392617"},{"denom":"ASSET10","index":"0.000008441923956558"},{"denom":"ASSET11","index":"0.000011721955689254"},{"denom":"ASSET12","index":"0.000010555542874101"},{"denom":"ASSET13","index":"0.000003632376264868"},{"denom":"ASSET14","index":"0.000010950025301978"},{"denom":"ASSET15","index":"0.000007829131366891"},{"denom":"ASSET16","index":"0.000005458650595742"},{"denom":"ASSET17","index":"0.000003876686404859"},{"denom":"ASSET18","index":"0.000001846446727754"},{"denom":"ASSET2","index":"0.000003576790104576"},{"denom":"ASSET3","index":"0.000001046274984845"},{"denom":"ASSET4","index":"0.000009847267605868"},{"denom":"ASSET5","index":"0.000000812275181037"},{"denom":"ASSET6","index":"0.000003305135159925"},{"denom":"ASSET7","index":"0.000005061926790434"},{"denom":"ASSET8","index":"0.000006605339289501"},{"denom":"ASSET9","index":"0.000002852825194325"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000002846126280344"},{"denom":"ASSET1","index":"0.000024142729904188"},{"denom":"ASSET10","index":"0.000019247649074564"},{"denom":"ASSET11","index":"0.000023985879136349"},{"denom":"ASSET12","index":"0.000022859091275790"},{"denom":"ASSET13","index":"0.000007532792628817"},{"denom":"ASSET14","index":"0.000022018595952129"},{"denom":"ASSET15","index":"0.000017341431925331"},{"denom":"ASSET16","index":"0.000010711928951149"},{"denom":"ASSET17","index":"0.000008400535387767"},{"denom":"ASSET18","index":"0.000003476353193421"},{"denom":"ASSET2","index":"0.000007309791035362"},{"denom":"ASSET3","index":"0.000002031285314481"},{"denom":"ASSET4","index":"0.000019573873127075"},{"denom":"ASSET5","index":"0.000001582650339951"},{"denom":"ASSET6","index":"0.000006386635795582"},{"denom":"ASSET7","index":"0.000010030235680714"},{"denom":"ASSET8","index":"0.000013694243666513"},{"denom":"ASSET9","index":"0.000005813799926422"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001542334439671"},{"denom":"ASSET1","index":"0.000012860022908304"},{"denom":"ASSET10","index":"0.000008959505058412"},{"denom":"ASSET11","index":"0.000012440701863130"},{"denom":"ASSET12","index":"0.000011202637482986"},{"denom":"ASSET13","index":"0.000003855293405849"},{"denom":"ASSET14","index":"0.000011621234937056"},{"denom":"ASSET15","index":"0.000008308996655285"},{"denom":"ASSET16","index":"0.000005793070384239"},{"denom":"ASSET17","index":"0.000004114339021332"},{"denom":"ASSET18","index":"0.000001959846507084"},{"denom":"ASSET2","index":"0.000003796320730815"},{"denom":"ASSET3","index":"0.000001110350550164"},{"denom":"ASSET4","index":"0.000010450826325201"},{"denom":"ASSET5","index":"0.000000861797005699"},{"denom":"ASSET6","index":"0.000003507969675592"},{"denom":"ASSET7","index":"0.000005372663952407"},{"denom":"ASSET8","index":"0.000007010512417899"},{"denom":"ASSET9","index":"0.000003027866977623"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003036454064443"},{"denom":"ASSET1","index":"0.000025762443856573"},{"denom":"ASSET10","index":"0.000020552854458451"},{"denom":"ASSET11","index":"0.000025598594042577"},{"denom":"ASSET12","index":"0.000024403233064712"},{"denom":"ASSET13","index":"0.000008040226829205"},{"denom":"ASSET14","index":"0.000023496526683137"},{"denom":"ASSET15","index":"0.000018514610345002"},{"denom":"ASSET16","index":"0.000011429420030088"},{"denom":"ASSET17","index":"0.000008967792958730"},{"denom":"ASSET18","index":"0.000003708688180539"},{"denom":"ASSET2","index":"0.000007801450355100"},{"denom":"ASSET3","index":"0.000002167197324698"},{"denom":"ASSET4","index":"0.000020886439041228"},{"denom":"ASSET5","index":"0.000001688395026424"},{"denom":"ASSET6","index":"0.000006814112030993"},{"denom":"ASSET7","index":"0.000010703097412338"},{"denom":"ASSET8","index":"0.000014616213118562"},{"denom":"ASSET9","index":"0.000006204650488693"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001802604811891"},{"denom":"ASSET1","index":"0.000015041134377282"},{"denom":"ASSET10","index":"0.000010478421042795"},{"denom":"ASSET11","index":"0.000014549893343095"},{"denom":"ASSET12","index":"0.000013101148598203"},{"denom":"ASSET13","index":"0.000004508593559534"},{"denom":"ASSET14","index":"0.000013592389632390"},{"denom":"ASSET15","index":"0.000009716581133843"},{"denom":"ASSET16","index":"0.000006773297988330"},{"denom":"ASSET17","index":"0.000004812496911192"},{"denom":"ASSET18","index":"0.000002289682786467"},{"denom":"ASSET2","index":"0.000004437821546134"},{"denom":"ASSET3","index":"0.000001298874598869"},{"denom":"ASSET4","index":"0.000012222743020122"},{"denom":"ASSET5","index":"0.000001007460426045"},{"denom":"ASSET6","index":"0.000004100613717582"},{"denom":"ASSET7","index":"0.000006282056954143"},{"denom":"ASSET8","index":"0.000008197064375552"},{"denom":"ASSET9","index":"0.000003538600669994"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003500919125422"},{"denom":"ASSET1","index":"0.000029708744113596"},{"denom":"ASSET10","index":"0.000023658219501850"},{"denom":"ASSET11","index":"0.000029508250092955"},{"denom":"ASSET12","index":"0.000028107871580940"},{"denom":"ASSET13","index":"0.000009266072102552"},{"denom":"ASSET14","index":"0.000027092614384257"},{"denom":"ASSET15","index":"0.000021318431245277"},{"denom":"ASSET16","index":"0.000013180724612002"},{"denom":"ASSET17","index":"0.000010330094773179"},{"denom":"ASSET18","index":"0.000004277644880979"},{"denom":"ASSET2","index":"0.000008990842831989"},{"denom":"ASSET3","index":"0.000002500335792843"},{"denom":"ASSET4","index":"0.000024086210482120"},{"denom":"ASSET5","index":"0.000001946754653173"},{"denom":"ASSET6","index":"0.000007858889858659"},{"denom":"ASSET7","index":"0.000012341576470869"},{"denom":"ASSET8","index":"0.000016843078118646"},{"denom":"ASSET9","index":"0.000007150129263591"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001563811170888"},{"denom":"ASSET1","index":"0.000013038374863878"},{"denom":"ASSET10","index":"0.000009083864212622"},{"denom":"ASSET11","index":"0.000012612362006834"},{"denom":"ASSET12","index":"0.000011358137819015"},{"denom":"ASSET13","index":"0.000003908204905926"},{"denom":"ASSET14","index":"0.000011781504633469"},{"denom":"ASSET15","index":"0.000008423676586333"},{"denom":"ASSET16","index":"0.000005872891529250"},{"denom":"ASSET17","index":"0.000004170163122369"},{"denom":"ASSET18","index":"0.000001987177985342"},{"denom":"ASSET2","index":"0.000003848668947643"},{"denom":"ASSET3","index":"0.000001125891122188"},{"denom":"ASSET4","index":"0.000010596077552999"},{"denom":"ASSET5","index":"0.000000873194054811"},{"denom":"ASSET6","index":"0.000003556281241411"},{"denom":"ASSET7","index":"0.000005446878672206"},{"denom":"ASSET8","index":"0.000007107270397641"},{"denom":"ASSET9","index":"0.000003069409404789"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003311345528520"},{"denom":"ASSET1","index":"0.000028134750769747"},{"denom":"ASSET10","index":"0.000022648872120201"},{"denom":"ASSET11","index":"0.000028007957662740"},{"denom":"ASSET12","index":"0.000026803793052874"},{"denom":"ASSET13","index":"0.000008804941803873"},{"denom":"ASSET14","index":"0.000025676450668466"},{"denom":"ASSET15","index":"0.000020365161363483"},{"denom":"ASSET16","index":"0.000012467103206876"},{"denom":"ASSET17","index":"0.000009848512066991"},{"denom":"ASSET18","index":"0.000004032794375330"},{"denom":"ASSET2","index":"0.000008534928074651"},{"denom":"ASSET3","index":"0.000002362590241163"},{"denom":"ASSET4","index":"0.000022806063702805"},{"denom":"ASSET5","index":"0.000001840254083448"},{"denom":"ASSET6","index":"0.000007424521355960"},{"denom":"ASSET7","index":"0.000011683846998076"},{"denom":"ASSET8","index":"0.000016006498096466"},{"denom":"ASSET9","index":"0.000006786333067798"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001600184479142"},{"denom":"ASSET1","index":"0.000013342157474081"},{"denom":"ASSET10","index":"0.000009295060662992"},{"denom":"ASSET11","index":"0.000012907134644369"},{"denom":"ASSET12","index":"0.000011622469236023"},{"denom":"ASSET13","index":"0.000003999732516397"},{"denom":"ASSET14","index":"0.000012056763384279"},{"denom":"ASSET15","index":"0.000008620301633991"},{"denom":"ASSET16","index":"0.000006010164655719"},{"denom":"ASSET17","index":"0.000004268615973958"},{"denom":"ASSET18","index":"0.000002033021264483"},{"denom":"ASSET2","index":"0.000003938523274026"},{"denom":"ASSET3","index":"0.000001152045383207"},{"denom":"ASSET4","index":"0.000010842780077243"},{"denom":"ASSET5","index":"0.000000894092147498"},{"denom":"ASSET6","index":"0.000003639035195279"},{"denom":"ASSET7","index":"0.000005573684463094"},{"denom":"ASSET8","index":"0.000007272969620361"},{"denom":"ASSET9","index":"0.000003141345760282"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003037978324998"},{"denom":"ASSET1","index":"0.000025756345113171"},{"denom":"ASSET10","index":"0.000020449699671521"},{"denom":"ASSET11","index":"0.000025567125107120"},{"denom":"ASSET12","index":"0.000024323299608917"},{"denom":"ASSET13","index":"0.000008026089638757"},{"denom":"ASSET14","index":"0.000023482777870484"},{"denom":"ASSET15","index":"0.000018439819094125"},{"denom":"ASSET16","index":"0.000011433094032389"},{"denom":"ASSET17","index":"0.000008938487942114"},{"denom":"ASSET18","index":"0.000003715472889790"},{"denom":"ASSET2","index":"0.000007791978720736"},{"denom":"ASSET3","index":"0.000002168844641333"},{"denom":"ASSET4","index":"0.000020883291069830"},{"denom":"ASSET5","index":"0.000001689134510364"},{"denom":"ASSET6","index":"0.000006819968009550"},{"denom":"ASSET7","index":"0.000010702337477897"},{"denom":"ASSET8","index":"0.000014590947163921"},{"denom":"ASSET9","index":"0.000006197850437110"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001732863553160"},{"denom":"ASSET1","index":"0.000014476512568697"},{"denom":"ASSET10","index":"0.000010084697727409"},{"denom":"ASSET11","index":"0.000014004946421444"},{"denom":"ASSET12","index":"0.000012607292539223"},{"denom":"ASSET13","index":"0.000004334999642824"},{"denom":"ASSET14","index":"0.000013078858686476"},{"denom":"ASSET15","index":"0.000009351781667220"},{"denom":"ASSET16","index":"0.000006516703263852"},{"denom":"ASSET17","index":"0.000004630438674838"},{"denom":"ASSET18","index":"0.000002204429700414"},{"denom":"ASSET2","index":"0.000004272502924514"},{"denom":"ASSET3","index":"0.000001249934366214"},{"denom":"ASSET4","index":"0.000011760746082105"},{"denom":"ASSET5","index":"0.000000965858373893"},{"denom":"ASSET6","index":"0.000003948656293267"},{"denom":"ASSET7","index":"0.000006045137116599"},{"denom":"ASSET8","index":"0.000007891631066688"},{"denom":"ASSET9","index":"0.000003403230388010"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003203314564743"},{"denom":"ASSET1","index":"0.000027174750089688"},{"denom":"ASSET10","index":"0.000021494761442080"},{"denom":"ASSET11","index":"0.000026954579685264"},{"denom":"ASSET12","index":"0.000025598519259277"},{"denom":"ASSET13","index":"0.000008453363478510"},{"denom":"ASSET14","index":"0.000024766008219885"},{"denom":"ASSET15","index":"0.000019395989679368"},{"denom":"ASSET16","index":"0.000012063312986412"},{"denom":"ASSET17","index":"0.000009406957788586"},{"denom":"ASSET18","index":"0.000003925664786352"},{"denom":"ASSET2","index":"0.000008214094571203"},{"denom":"ASSET3","index":"0.000002289770772075"},{"denom":"ASSET4","index":"0.000022031271429646"},{"denom":"ASSET5","index":"0.000001779377444361"},{"denom":"ASSET6","index":"0.000007202120906665"},{"denom":"ASSET7","index":"0.000011290805949933"},{"denom":"ASSET8","index":"0.000015376618183469"},{"denom":"ASSET9","index":"0.000006529467958809"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001687731873143"},{"denom":"ASSET1","index":"0.000014069560961171"},{"denom":"ASSET10","index":"0.000009802495056563"},{"denom":"ASSET11","index":"0.000013610740912442"},{"denom":"ASSET12","index":"0.000012256373563096"},{"denom":"ASSET13","index":"0.000004217751625940"},{"denom":"ASSET14","index":"0.000012714404583367"},{"denom":"ASSET15","index":"0.000009090791386823"},{"denom":"ASSET16","index":"0.000006338265608675"},{"denom":"ASSET17","index":"0.000004501407356839"},{"denom":"ASSET18","index":"0.000002144184836496"},{"denom":"ASSET2","index":"0.000004153051292327"},{"denom":"ASSET3","index":"0.000001214709312157"},{"denom":"ASSET4","index":"0.000011433811394910"},{"denom":"ASSET5","index":"0.000000942889008137"},{"denom":"ASSET6","index":"0.000003837834423079"},{"denom":"ASSET7","index":"0.000005877867503028"},{"denom":"ASSET8","index":"0.000007669751132718"},{"denom":"ASSET9","index":"0.000003312735983819"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003310751488522"},{"denom":"ASSET1","index":"0.000028084250149300"},{"denom":"ASSET10","index":"0.000022395324527460"},{"denom":"ASSET11","index":"0.000027902986790638"},{"denom":"ASSET12","index":"0.000026594787286768"},{"denom":"ASSET13","index":"0.000008763085936534"},{"denom":"ASSET14","index":"0.000025613920456358"},{"denom":"ASSET15","index":"0.000020176020856033"},{"denom":"ASSET16","index":"0.000012460451689171"},{"denom":"ASSET17","index":"0.000009773335616478"},{"denom":"ASSET18","index":"0.000004043661907525"},{"denom":"ASSET2","index":"0.000008503271494062"},{"denom":"ASSET3","index":"0.000002362859659779"},{"denom":"ASSET4","index":"0.000022769116693783"},{"denom":"ASSET5","index":"0.000001840413908887"},{"denom":"ASSET6","index":"0.000007429033260494"},{"denom":"ASSET7","index":"0.000011667535172652"},{"denom":"ASSET8","index":"0.000015931047386954"},{"denom":"ASSET9","index":"0.000006763232815972"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001411639939639"},{"denom":"ASSET1","index":"0.000011770559134781"},{"denom":"ASSET10","index":"0.000008200405560598"},{"denom":"ASSET11","index":"0.000011386782830640"},{"denom":"ASSET12","index":"0.000010253700018254"},{"denom":"ASSET13","index":"0.000003528795747429"},{"denom":"ASSET14","index":"0.000010636868119061"},{"denom":"ASSET15","index":"0.000007604974496011"},{"denom":"ASSET16","index":"0.000005302316671163"},{"denom":"ASSET17","index":"0.000003765386844594"},{"denom":"ASSET18","index":"0.000001793591633776"},{"denom":"ASSET2","index":"0.000003474665650649"},{"denom":"ASSET3","index":"0.000001016307772140"},{"denom":"ASSET4","index":"0.000009565822046806"},{"denom":"ASSET5","index":"0.000000788839724994"},{"denom":"ASSET6","index":"0.000003210705403426"},{"denom":"ASSET7","index":"0.000004917323960353"},{"denom":"ASSET8","index":"0.000006416545180176"},{"denom":"ASSET9","index":"0.000002771582595835"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000002915106026686"},{"denom":"ASSET1","index":"0.000024751938975568"},{"denom":"ASSET10","index":"0.000019864528416862"},{"denom":"ASSET11","index":"0.000024625253839727"},{"denom":"ASSET12","index":"0.000023534700266806"},{"denom":"ASSET13","index":"0.000007739190454504"},{"denom":"ASSET14","index":"0.000022584902384729"},{"denom":"ASSET15","index":"0.000017872912229645"},{"denom":"ASSET16","index":"0.000010972881933217"},{"denom":"ASSET17","index":"0.000008648586457086"},{"denom":"ASSET18","index":"0.000003552999450219"},{"denom":"ASSET2","index":"0.000007504215303421"},{"denom":"ASSET3","index":"0.000002079538758775"},{"denom":"ASSET4","index":"0.000020065180146540"},{"denom":"ASSET5","index":"0.000001620267199228"},{"denom":"ASSET6","index":"0.000006536798446662"},{"denom":"ASSET7","index":"0.000010280222742310"},{"denom":"ASSET8","index":"0.000014068743113537"},{"denom":"ASSET9","index":"0.000005967789042866"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001670929391506"},{"denom":"ASSET1","index":"0.000013946161101263"},{"denom":"ASSET10","index":"0.000009716355120388"},{"denom":"ASSET11","index":"0.000013489421488305"},{"denom":"ASSET12","index":"0.000012147571569489"},{"denom":"ASSET13","index":"0.000004178741924768"},{"denom":"ASSET14","index":"0.000012601474290441"},{"denom":"ASSET15","index":"0.000009009969010905"},{"denom":"ASSET16","index":"0.000006280878901179"},{"denom":"ASSET17","index":"0.000004459594233357"},{"denom":"ASSET18","index":"0.000002124832112458"},{"denom":"ASSET2","index":"0.000004116330300637"},{"denom":"ASSET3","index":"0.000001202842210524"},{"denom":"ASSET4","index":"0.000011333383563781"},{"denom":"ASSET5","index":"0.000000933337469958"},{"denom":"ASSET6","index":"0.000003804272179982"},{"denom":"ASSET7","index":"0.000005824139288221"},{"denom":"ASSET8","index":"0.000007600033683947"},{"denom":"ASSET9","index":"0.000003282284050887"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003306866574231"},{"denom":"ASSET1","index":"0.000028073670524533"},{"denom":"ASSET10","index":"0.000022410378668975"},{"denom":"ASSET11","index":"0.000027896117796052"},{"denom":"ASSET12","index":"0.000026601615360568"},{"denom":"ASSET13","index":"0.000008760019105133"},{"denom":"ASSET14","index":"0.000025604072816608"},{"denom":"ASSET15","index":"0.000020183975077340"},{"denom":"ASSET16","index":"0.000012452378452775"},{"denom":"ASSET17","index":"0.000009773941069454"},{"denom":"ASSET18","index":"0.000004038323507821"},{"denom":"ASSET2","index":"0.000008501686860316"},{"denom":"ASSET3","index":"0.000002358773872569"},{"denom":"ASSET4","index":"0.000022758821093429"},{"denom":"ASSET5","index":"0.000001837837668790"},{"denom":"ASSET6","index":"0.000007423905647148"},{"denom":"ASSET7","index":"0.000011659308440973"},{"denom":"ASSET8","index":"0.000015926660063085"},{"denom":"ASSET9","index":"0.000006759875068056"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001598361255475"},{"denom":"ASSET1","index":"0.000013324868720531"},{"denom":"ASSET10","index":"0.000009283863630055"},{"denom":"ASSET11","index":"0.000012890721875256"},{"denom":"ASSET12","index":"0.000011607749807828"},{"denom":"ASSET13","index":"0.000003994929715268"},{"denom":"ASSET14","index":"0.000012041896653103"},{"denom":"ASSET15","index":"0.000008609605674538"},{"denom":"ASSET16","index":"0.000006002777756047"},{"denom":"ASSET17","index":"0.000004262945630213"},{"denom":"ASSET18","index":"0.000002030561253910"},{"denom":"ASSET2","index":"0.000003933279565341"},{"denom":"ASSET3","index":"0.000001150586482321"},{"denom":"ASSET4","index":"0.000010829011071909"},{"denom":"ASSET5","index":"0.000000892953750521"},{"denom":"ASSET6","index":"0.000003634763049905"},{"denom":"ASSET7","index":"0.000005566684063932"},{"denom":"ASSET8","index":"0.000007263685559290"},{"denom":"ASSET9","index":"0.000003137668156809"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003119961272076"},{"denom":"ASSET1","index":"0.000026462428012801"},{"denom":"ASSET10","index":"0.000021088828135750"},{"denom":"ASSET11","index":"0.000026288818556387"},{"denom":"ASSET12","index":"0.000025049012446876"},{"denom":"ASSET13","index":"0.000008256026418292"},{"denom":"ASSET14","index":"0.000024133914778951"},{"denom":"ASSET15","index":"0.000019001193386697"},{"denom":"ASSET16","index":"0.000011741691861213"},{"denom":"ASSET17","index":"0.000009205139483526"},{"denom":"ASSET18","index":"0.000003811157018018"},{"denom":"ASSET2","index":"0.000008011229275486"},{"denom":"ASSET3","index":"0.000002226652147557"},{"denom":"ASSET4","index":"0.000021454928269907"},{"denom":"ASSET5","index":"0.000001734689929917"},{"denom":"ASSET6","index":"0.000007001091110949"},{"denom":"ASSET7","index":"0.000010994186615549"},{"denom":"ASSET8","index":"0.000015007966738007"},{"denom":"ASSET9","index":"0.000006372340046203"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001543375593884"},{"denom":"ASSET1","index":"0.000012871309378663"},{"denom":"ASSET10","index":"0.000008967332198598"},{"denom":"ASSET11","index":"0.000012451619524186"},{"denom":"ASSET12","index":"0.000011213472915376"},{"denom":"ASSET13","index":"0.000003858438984711"},{"denom":"ASSET14","index":"0.000011631932007817"},{"denom":"ASSET15","index":"0.000008316259081242"},{"denom":"ASSET16","index":"0.000005798119954378"},{"denom":"ASSET17","index":"0.000004118129774432"},{"denom":"ASSET18","index":"0.000001961834686325"},{"denom":"ASSET2","index":"0.000003799362406955"},{"denom":"ASSET3","index":"0.000001111378119041"},{"denom":"ASSET4","index":"0.000010460246548983"},{"denom":"ASSET5","index":"0.000000862764187650"},{"denom":"ASSET6","index":"0.000003511364090393"},{"denom":"ASSET7","index":"0.000005377199337864"},{"denom":"ASSET8","index":"0.000007016574370602"},{"denom":"ASSET9","index":"0.000003030136134086"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003061984062566"},{"denom":"ASSET1","index":"0.000025984754387841"},{"denom":"ASSET10","index":"0.000020750278468036"},{"denom":"ASSET11","index":"0.000025825260107338"},{"denom":"ASSET12","index":"0.000024630365005548"},{"denom":"ASSET13","index":"0.000008111503841622"},{"denom":"ASSET14","index":"0.000023701848593669"},{"denom":"ASSET15","index":"0.000018689068915475"},{"denom":"ASSET16","index":"0.000011526541772952"},{"denom":"ASSET17","index":"0.000009050861170220"},{"denom":"ASSET18","index":"0.000003739265665267"},{"denom":"ASSET2","index":"0.000007869809789784"},{"denom":"ASSET3","index":"0.000002185113944095"},{"denom":"ASSET4","index":"0.000021066477214749"},{"denom":"ASSET5","index":"0.000001702392649313"},{"denom":"ASSET6","index":"0.000006871251000760"},{"denom":"ASSET7","index":"0.000010794622225013"},{"denom":"ASSET8","index":"0.000014746923085504"},{"denom":"ASSET9","index":"0.000006258895459680"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001745217677213"},{"denom":"ASSET1","index":"0.000014553842410819"},{"denom":"ASSET10","index":"0.000010139729507131"},{"denom":"ASSET11","index":"0.000014078681363843"},{"denom":"ASSET12","index":"0.000012678362515121"},{"denom":"ASSET13","index":"0.000004362304066790"},{"denom":"ASSET14","index":"0.000013152043309614"},{"denom":"ASSET15","index":"0.000009402563770700"},{"denom":"ASSET16","index":"0.000006556038246289"},{"denom":"ASSET17","index":"0.000004655394058383"},{"denom":"ASSET18","index":"0.000002217418219224"},{"denom":"ASSET2","index":"0.000004295692705065"},{"denom":"ASSET3","index":"0.000001256734357891"},{"denom":"ASSET4","index":"0.000011827217337515"},{"denom":"ASSET5","index":"0.000000975486386160"},{"denom":"ASSET6","index":"0.000003970037158850"},{"denom":"ASSET7","index":"0.000006079396946830"},{"denom":"ASSET8","index":"0.000007932673055287"},{"denom":"ASSET9","index":"0.000003426784497665"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003296605577903"},{"denom":"ASSET1","index":"0.000027950980635352"},{"denom":"ASSET10","index":"0.000022177590033485"},{"denom":"ASSET11","index":"0.000027741245317152"},{"denom":"ASSET12","index":"0.000026384837371861"},{"denom":"ASSET13","index":"0.000008707523198290"},{"denom":"ASSET14","index":"0.000025482773879389"},{"denom":"ASSET15","index":"0.000019999205716580"},{"denom":"ASSET16","index":"0.000012408342313410"},{"denom":"ASSET17","index":"0.000009694954350389"},{"denom":"ASSET18","index":"0.000004033447725414"},{"denom":"ASSET2","index":"0.000008454290496983"},{"denom":"ASSET3","index":"0.000002354114882033"},{"denom":"ASSET4","index":"0.000022662624820802"},{"denom":"ASSET5","index":"0.000001833709311257"},{"denom":"ASSET6","index":"0.000007402928859239"},{"denom":"ASSET7","index":"0.000011614131087351"},{"denom":"ASSET8","index":"0.000015829970625061"},{"denom":"ASSET9","index":"0.000006725199056296"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001696105704481"},{"denom":"ASSET1","index":"0.000014140754037071"},{"denom":"ASSET10","index":"0.000009851931515387"},{"denom":"ASSET11","index":"0.000013679695806241"},{"denom":"ASSET12","index":"0.000012318593050331"},{"denom":"ASSET13","index":"0.000004239283286244"},{"denom":"ASSET14","index":"0.000012779160793682"},{"denom":"ASSET15","index":"0.000009136800770120"},{"denom":"ASSET16","index":"0.000006369960897657"},{"denom":"ASSET17","index":"0.000004523766024416"},{"denom":"ASSET18","index":"0.000002155201985393"},{"denom":"ASSET2","index":"0.000004174048451456"},{"denom":"ASSET3","index":"0.000001220823336742"},{"denom":"ASSET4","index":"0.000011492121647193"},{"denom":"ASSET5","index":"0.000000947621810601"},{"denom":"ASSET6","index":"0.000003857193539630"},{"denom":"ASSET7","index":"0.000005907431204387"},{"denom":"ASSET8","index":"0.000007708991716984"},{"denom":"ASSET9","index":"0.000003329429011573"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003278023650839"},{"denom":"ASSET1","index":"0.000027801084973989"},{"denom":"ASSET10","index":"0.000022126343818190"},{"denom":"ASSET11","index":"0.000027610641458424"},{"denom":"ASSET12","index":"0.000026294522151225"},{"denom":"ASSET13","index":"0.000008669795972838"},{"denom":"ASSET14","index":"0.000025352034708572"},{"denom":"ASSET15","index":"0.000019941753748345"},{"denom":"ASSET16","index":"0.000012337408081897"},{"denom":"ASSET17","index":"0.000009662232510971"},{"denom":"ASSET18","index":"0.000004006663612522"},{"denom":"ASSET2","index":"0.000008414274009770"},{"denom":"ASSET3","index":"0.000002339697370568"},{"denom":"ASSET4","index":"0.000022540556466857"},{"denom":"ASSET5","index":"0.000001822656991491"},{"denom":"ASSET6","index":"0.000007357334263189"},{"denom":"ASSET7","index":"0.000011551068960203"},{"denom":"ASSET8","index":"0.000015761386047857"},{"denom":"ASSET9","index":"0.000006692834331509"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001139195115521"},{"denom":"ASSET1","index":"0.000009496890331931"},{"denom":"ASSET10","index":"0.000006616523219856"},{"denom":"ASSET11","index":"0.000009187371854639"},{"denom":"ASSET12","index":"0.000008273091178185"},{"denom":"ASSET13","index":"0.000002846943294505"},{"denom":"ASSET14","index":"0.000008582261490710"},{"denom":"ASSET15","index":"0.000006136055842283"},{"denom":"ASSET16","index":"0.000004278248649000"},{"denom":"ASSET17","index":"0.000003038433916001"},{"denom":"ASSET18","index":"0.000001447320933748"},{"denom":"ASSET2","index":"0.000002803422698710"},{"denom":"ASSET3","index":"0.000000819928024772"},{"denom":"ASSET4","index":"0.000007718116540611"},{"denom":"ASSET5","index":"0.000000636445192901"},{"denom":"ASSET6","index":"0.000002590694026466"},{"denom":"ASSET7","index":"0.000003967685677409"},{"denom":"ASSET8","index":"0.000005177210075735"},{"denom":"ASSET9","index":"0.000002236262294314"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000002735257365218"},{"denom":"ASSET1","index":"0.000023278157661741"},{"denom":"ASSET10","index":"0.000018999615823078"},{"denom":"ASSET11","index":"0.000023241706683585"},{"denom":"ASSET12","index":"0.000022372793234045"},{"denom":"ASSET13","index":"0.000007316911351959"},{"denom":"ASSET14","index":"0.000021266506066871"},{"denom":"ASSET15","index":"0.000017036720297506"},{"denom":"ASSET16","index":"0.000010298479660409"},{"denom":"ASSET17","index":"0.000008222611745720"},{"denom":"ASSET18","index":"0.000003315370510511"},{"denom":"ASSET2","index":"0.000007081336162231"},{"denom":"ASSET3","index":"0.000001948923871674"},{"denom":"ASSET4","index":"0.000018864412124408"},{"denom":"ASSET5","index":"0.000001519377842401"},{"denom":"ASSET6","index":"0.000006121992555640"},{"denom":"ASSET7","index":"0.000009661272655042"},{"denom":"ASSET8","index":"0.000013300968175029"},{"denom":"ASSET9","index":"0.000005629514833023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001583959364947"},{"denom":"ASSET1","index":"0.000013443347430705"},{"denom":"ASSET10","index":"0.000009381913161610"},{"denom":"ASSET11","index":"0.000012996589661105"},{"denom":"ASSET12","index":"0.000011696930694994"},{"denom":"ASSET13","index":"0.000004020819926404"},{"denom":"ASSET14","index":"0.000012143688464595"},{"denom":"ASSET15","index":"0.000008691469335864"},{"denom":"ASSET16","index":"0.000006051537060952"},{"denom":"ASSET17","index":"0.000004305120325241"},{"denom":"ASSET18","index":"0.000002030717134548"},{"denom":"ASSET2","index":"0.000003939591241022"},{"denom":"ASSET3","index":"0.000001137201595347"},{"denom":"ASSET4","index":"0.000010925258183866"},{"denom":"ASSET5","index":"0.000000893515539201"},{"denom":"ASSET6","index":"0.000003655290842186"},{"denom":"ASSET7","index":"0.000005604779291351"},{"denom":"ASSET8","index":"0.000007310581684371"},{"denom":"ASSET9","index":"0.000003167918729894"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003310378542013"},{"denom":"ASSET1","index":"0.000028352771206955"},{"denom":"ASSET10","index":"0.000022778987578468"},{"denom":"ASSET11","index":"0.000028201706998458"},{"denom":"ASSET12","index":"0.000026949790221900"},{"denom":"ASSET13","index":"0.000008856641706946"},{"denom":"ASSET14","index":"0.000025865717784540"},{"denom":"ASSET15","index":"0.000020483790155485"},{"denom":"ASSET16","index":"0.000012564495758376"},{"denom":"ASSET17","index":"0.000009912517491786"},{"denom":"ASSET18","index":"0.000004051289802086"},{"denom":"ASSET2","index":"0.000008567503486413"},{"denom":"ASSET3","index":"0.000002358477605528"},{"denom":"ASSET4","index":"0.000022984011222606"},{"denom":"ASSET5","index":"0.000001848359330263"},{"denom":"ASSET6","index":"0.000007474666006436"},{"denom":"ASSET7","index":"0.000011763521743703"},{"denom":"ASSET8","index":"0.000016098224703406"},{"denom":"ASSET9","index":"0.000006837907042961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001549911588522"},{"denom":"ASSET1","index":"0.000012922257740418"},{"denom":"ASSET10","index":"0.000009003081854783"},{"denom":"ASSET11","index":"0.000012500946332712"},{"denom":"ASSET12","index":"0.000011256607989023"},{"denom":"ASSET13","index":"0.000003873860414458"},{"denom":"ASSET14","index":"0.000011677307025497"},{"denom":"ASSET15","index":"0.000008349069378868"},{"denom":"ASSET16","index":"0.000005821200932633"},{"denom":"ASSET17","index":"0.000004134118188113"},{"denom":"ASSET18","index":"0.000001969385882532"},{"denom":"ASSET2","index":"0.000003814460404941"},{"denom":"ASSET3","index":"0.000001115740384942"},{"denom":"ASSET4","index":"0.000010501554259806"},{"denom":"ASSET5","index":"0.000000865892922233"},{"denom":"ASSET6","index":"0.000003524808812143"},{"denom":"ASSET7","index":"0.000005398664782463"},{"denom":"ASSET8","index":"0.000007044106283197"},{"denom":"ASSET9","index":"0.000003042260281224"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003086330633608"},{"denom":"ASSET1","index":"0.000026187842720704"},{"denom":"ASSET10","index":"0.000020922921087024"},{"denom":"ASSET11","index":"0.000026029396638226"},{"denom":"ASSET12","index":"0.000024828709288325"},{"denom":"ASSET13","index":"0.000008176601230700"},{"denom":"ASSET14","index":"0.000023887113573615"},{"denom":"ASSET15","index":"0.000018841856891118"},{"denom":"ASSET16","index":"0.000011616230118922"},{"denom":"ASSET17","index":"0.000009124242236202"},{"denom":"ASSET18","index":"0.000003767471049721"},{"denom":"ASSET2","index":"0.000007932284099147"},{"denom":"ASSET3","index":"0.000002202458257762"},{"denom":"ASSET4","index":"0.000021230824628511"},{"denom":"ASSET5","index":"0.000001715648257347"},{"denom":"ASSET6","index":"0.000006923830152599"},{"denom":"ASSET7","index":"0.000010879262909104"},{"denom":"ASSET8","index":"0.000014863870027497"},{"denom":"ASSET9","index":"0.000006308409915314"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001535524830156"},{"denom":"ASSET1","index":"0.000012804491333161"},{"denom":"ASSET10","index":"0.000008921035499248"},{"denom":"ASSET11","index":"0.000012386713938596"},{"denom":"ASSET12","index":"0.000011154325740380"},{"denom":"ASSET13","index":"0.000003838812075390"},{"denom":"ASSET14","index":"0.000011571000819920"},{"denom":"ASSET15","index":"0.000008272874264409"},{"denom":"ASSET16","index":"0.000005767863369556"},{"denom":"ASSET17","index":"0.000004096202633783"},{"denom":"ASSET18","index":"0.000001951097594671"},{"denom":"ASSET2","index":"0.000003779838221540"},{"denom":"ASSET3","index":"0.000001105621970313"},{"denom":"ASSET4","index":"0.000010405853838244"},{"denom":"ASSET5","index":"0.000000858152247148"},{"denom":"ASSET6","index":"0.000003492685157466"},{"denom":"ASSET7","index":"0.000005348983659966"},{"denom":"ASSET8","index":"0.000006980409897318"},{"denom":"ASSET9","index":"0.000003014831594025"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003051773960929"},{"denom":"ASSET1","index":"0.000025898629359040"},{"denom":"ASSET10","index":"0.000020686863907037"},{"denom":"ASSET11","index":"0.000025740096441319"},{"denom":"ASSET12","index":"0.000024551000542772"},{"denom":"ASSET13","index":"0.000008085532012369"},{"denom":"ASSET14","index":"0.000023622558405526"},{"denom":"ASSET15","index":"0.000018629920308839"},{"denom":"ASSET16","index":"0.000011487540137638"},{"denom":"ASSET17","index":"0.000009021847693812"},{"denom":"ASSET18","index":"0.000003725572559942"},{"denom":"ASSET2","index":"0.000007844221178735"},{"denom":"ASSET3","index":"0.000002178252359768"},{"denom":"ASSET4","index":"0.000020996168979716"},{"denom":"ASSET5","index":"0.000001697004218389"},{"denom":"ASSET6","index":"0.000006847583721256"},{"denom":"ASSET7","index":"0.000010758483833946"},{"denom":"ASSET8","index":"0.000014699172267780"},{"denom":"ASSET9","index":"0.000006238834616461"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001813824295534"},{"denom":"ASSET1","index":"0.000015126179984122"},{"denom":"ASSET10","index":"0.000010538420488017"},{"denom":"ASSET11","index":"0.000014633035948465"},{"denom":"ASSET12","index":"0.000013177247733614"},{"denom":"ASSET13","index":"0.000004534560738834"},{"denom":"ASSET14","index":"0.000013669547344553"},{"denom":"ASSET15","index":"0.000009773371692973"},{"denom":"ASSET16","index":"0.000006813663054312"},{"denom":"ASSET17","index":"0.000004839398062246"},{"denom":"ASSET18","index":"0.000002305279481754"},{"denom":"ASSET2","index":"0.000004465317911910"},{"denom":"ASSET3","index":"0.000001306325039660"},{"denom":"ASSET4","index":"0.000012293135053249"},{"denom":"ASSET5","index":"0.000001013309662309"},{"denom":"ASSET6","index":"0.000004125859175036"},{"denom":"ASSET7","index":"0.000006318830169217"},{"denom":"ASSET8","index":"0.000008245807377042"},{"denom":"ASSET9","index":"0.000003561783463017"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003452880861936"},{"denom":"ASSET1","index":"0.000029278299049117"},{"denom":"ASSET10","index":"0.000023254773922096"},{"denom":"ASSET11","index":"0.000029065569213605"},{"denom":"ASSET12","index":"0.000027656204711461"},{"denom":"ASSET13","index":"0.000009124518140406"},{"denom":"ASSET14","index":"0.000026695142606829"},{"denom":"ASSET15","index":"0.000020967476611979"},{"denom":"ASSET16","index":"0.000012995878924798"},{"denom":"ASSET17","index":"0.000010163149632422"},{"denom":"ASSET18","index":"0.000004223627093961"},{"denom":"ASSET2","index":"0.000008858348919255"},{"denom":"ASSET3","index":"0.000002465420318230"},{"denom":"ASSET4","index":"0.000023739200929128"},{"denom":"ASSET5","index":"0.000001919695214447"},{"denom":"ASSET6","index":"0.000007752150153146"},{"denom":"ASSET7","index":"0.000012165597276913"},{"denom":"ASSET8","index":"0.000016587849042771"},{"denom":"ASSET9","index":"0.000007046182609545"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001444852701297"},{"denom":"ASSET1","index":"0.000012048934466992"},{"denom":"ASSET10","index":"0.000008394653008080"},{"denom":"ASSET11","index":"0.000011656844181701"},{"denom":"ASSET12","index":"0.000010496256937239"},{"denom":"ASSET13","index":"0.000003612131753243"},{"denom":"ASSET14","index":"0.000010888347222530"},{"denom":"ASSET15","index":"0.000007784952614452"},{"denom":"ASSET16","index":"0.000005427509774140"},{"denom":"ASSET17","index":"0.000003854247504410"},{"denom":"ASSET18","index":"0.000001835962760875"},{"denom":"ASSET2","index":"0.000003556258887589"},{"denom":"ASSET3","index":"0.000001040019481734"},{"denom":"ASSET4","index":"0.000009792454875142"},{"denom":"ASSET5","index":"0.000000807705987699"},{"denom":"ASSET6","index":"0.000003286696816452"},{"denom":"ASSET7","index":"0.000005033459037423"},{"denom":"ASSET8","index":"0.000006568492504337"},{"denom":"ASSET9","index":"0.000002836773214080"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000002868026198866"},{"denom":"ASSET1","index":"0.000024339331661302"},{"denom":"ASSET10","index":"0.000019438063504597"},{"denom":"ASSET11","index":"0.000024190729344646"},{"denom":"ASSET12","index":"0.000023070632234294"},{"denom":"ASSET13","index":"0.000007598221307181"},{"denom":"ASSET14","index":"0.000022200415230506"},{"denom":"ASSET15","index":"0.000017506414948675"},{"denom":"ASSET16","index":"0.000010796282691537"},{"denom":"ASSET17","index":"0.000008477235924619"},{"denom":"ASSET18","index":"0.000003501529899130"},{"denom":"ASSET2","index":"0.000007371086117521"},{"denom":"ASSET3","index":"0.000002046801194740"},{"denom":"ASSET4","index":"0.000019732782799148"},{"denom":"ASSET5","index":"0.000001595074946946"},{"denom":"ASSET6","index":"0.000006435625489467"},{"denom":"ASSET7","index":"0.000010111140720407"},{"denom":"ASSET8","index":"0.000013813490690156"},{"denom":"ASSET9","index":"0.000005862589992841"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001655416114862"},{"denom":"ASSET1","index":"0.000013800538848519"},{"denom":"ASSET10","index":"0.000009615249134678"},{"denom":"ASSET11","index":"0.000013350879623065"},{"denom":"ASSET12","index":"0.000012022439267096"},{"denom":"ASSET13","index":"0.000004137189147657"},{"denom":"ASSET14","index":"0.000012471558036751"},{"denom":"ASSET15","index":"0.000008916980241305"},{"denom":"ASSET16","index":"0.000006216863065381"},{"denom":"ASSET17","index":"0.000004414983428766"},{"denom":"ASSET18","index":"0.000002102913517117"},{"denom":"ASSET2","index":"0.000004073955819077"},{"denom":"ASSET3","index":"0.000001191705038613"},{"denom":"ASSET4","index":"0.000011215538757958"},{"denom":"ASSET5","index":"0.000000924719873500"},{"denom":"ASSET6","index":"0.000003764274645778"},{"denom":"ASSET7","index":"0.000005765582472528"},{"denom":"ASSET8","index":"0.000007523144733557"},{"denom":"ASSET9","index":"0.000003249220268545"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003262792429801"},{"denom":"ASSET1","index":"0.000027679878715890"},{"denom":"ASSET10","index":"0.000022086570261210"},{"denom":"ASSET11","index":"0.000027505267384149"},{"denom":"ASSET12","index":"0.000026222420015979"},{"denom":"ASSET13","index":"0.000008638975204347"},{"denom":"ASSET14","index":"0.000025246236428505"},{"denom":"ASSET15","index":"0.000019895354512471"},{"denom":"ASSET16","index":"0.000012279836462442"},{"denom":"ASSET17","index":"0.000009636125515167"},{"denom":"ASSET18","index":"0.000003984145752232"},{"denom":"ASSET2","index":"0.000008382344169353"},{"denom":"ASSET3","index":"0.000002328549799735"},{"denom":"ASSET4","index":"0.000022441247538096"},{"denom":"ASSET5","index":"0.000001813932132265"},{"denom":"ASSET6","index":"0.000007320527694069"},{"denom":"ASSET7","index":"0.000011499571173317"},{"denom":"ASSET8","index":"0.000015704553099640"},{"denom":"ASSET9","index":"0.000006666608399750"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001676736923170"},{"denom":"ASSET1","index":"0.000013985463602132"},{"denom":"ASSET10","index":"0.000009743339709608"},{"denom":"ASSET11","index":"0.000013528824721587"},{"denom":"ASSET12","index":"0.000012182509640070"},{"denom":"ASSET13","index":"0.000004192868462713"},{"denom":"ASSET14","index":"0.000012638122365828"},{"denom":"ASSET15","index":"0.000009036319060854"},{"denom":"ASSET16","index":"0.000006299564241947"},{"denom":"ASSET17","index":"0.000004474034874554"},{"denom":"ASSET18","index":"0.000002131323494140"},{"denom":"ASSET2","index":"0.000004128220711085"},{"denom":"ASSET3","index":"0.000001207784185172"},{"denom":"ASSET4","index":"0.000011365690429028"},{"denom":"ASSET5","index":"0.000000936879321208"},{"denom":"ASSET6","index":"0.000003814217346036"},{"denom":"ASSET7","index":"0.000005841899206614"},{"denom":"ASSET8","index":"0.000007623303918134"},{"denom":"ASSET9","index":"0.000003292930713863"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003296156578493"},{"denom":"ASSET1","index":"0.000027968412540894"},{"denom":"ASSET10","index":"0.000022307812536905"},{"denom":"ASSET11","index":"0.000027788867279184"},{"denom":"ASSET12","index":"0.000026488589695468"},{"denom":"ASSET13","index":"0.000008728285856057"},{"denom":"ASSET14","index":"0.000025508064125070"},{"denom":"ASSET15","index":"0.000020096610749334"},{"denom":"ASSET16","index":"0.000012407784704791"},{"denom":"ASSET17","index":"0.000009734180928237"},{"denom":"ASSET18","index":"0.000004026678592252"},{"denom":"ASSET2","index":"0.000008468774984810"},{"denom":"ASSET3","index":"0.000002353220293961"},{"denom":"ASSET4","index":"0.000022675279511256"},{"denom":"ASSET5","index":"0.000001832728492238"},{"denom":"ASSET6","index":"0.000007397034942132"},{"denom":"ASSET7","index":"0.000011618881320506"},{"denom":"ASSET8","index":"0.000015866042832442"},{"denom":"ASSET9","index":"0.000006735898552490"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001687654189845"},{"denom":"ASSET1","index":"0.000014079752531439"},{"denom":"ASSET10","index":"0.000009809029374167"},{"denom":"ASSET11","index":"0.000013620990639222"},{"denom":"ASSET12","index":"0.000012264971552184"},{"denom":"ASSET13","index":"0.000004220977891851"},{"denom":"ASSET14","index":"0.000012723733444402"},{"denom":"ASSET15","index":"0.000009097856320367"},{"denom":"ASSET16","index":"0.000006341600132585"},{"denom":"ASSET17","index":"0.000004504710146476"},{"denom":"ASSET18","index":"0.000002144573664825"},{"denom":"ASSET2","index":"0.000004156493288528"},{"denom":"ASSET3","index":"0.000001215995376963"},{"denom":"ASSET4","index":"0.000011441411046878"},{"denom":"ASSET5","index":"0.000000943317625765"},{"denom":"ASSET6","index":"0.000003839597523622"},{"denom":"ASSET7","index":"0.000005880995823129"},{"denom":"ASSET8","index":"0.000007675510212768"},{"denom":"ASSET9","index":"0.000003314508610843"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003237925740153"},{"denom":"ASSET1","index":"0.000027468087048908"},{"denom":"ASSET10","index":"0.000021838560142362"},{"denom":"ASSET11","index":"0.000027274223261348"},{"denom":"ASSET12","index":"0.000025962125103579"},{"denom":"ASSET13","index":"0.000008562973508850"},{"denom":"ASSET14","index":"0.000025046299162567"},{"denom":"ASSET15","index":"0.000019687604125947"},{"denom":"ASSET16","index":"0.000012189946370622"},{"denom":"ASSET17","index":"0.000009540519193028"},{"denom":"ASSET18","index":"0.000003959057055270"},{"denom":"ASSET2","index":"0.000008312511220651"},{"denom":"ASSET3","index":"0.000002312646079660"},{"denom":"ASSET4","index":"0.000022269978905361"},{"denom":"ASSET5","index":"0.000001800462011039"},{"denom":"ASSET6","index":"0.000007270233858279"},{"denom":"ASSET7","index":"0.000011411601588483"},{"denom":"ASSET8","index":"0.000015567552190875"},{"denom":"ASSET9","index":"0.000006610637099613"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001700269946448"},{"denom":"ASSET1","index":"0.000014175647296985"},{"denom":"ASSET10","index":"0.000009876508679424"},{"denom":"ASSET11","index":"0.000013714231996791"},{"denom":"ASSET12","index":"0.000012349169664489"},{"denom":"ASSET13","index":"0.000004249665204630"},{"denom":"ASSET14","index":"0.000012810584964683"},{"denom":"ASSET15","index":"0.000009159649022667"},{"denom":"ASSET16","index":"0.000006386108914062"},{"denom":"ASSET17","index":"0.000004535399405845"},{"denom":"ASSET18","index":"0.000002160675585153"},{"denom":"ASSET2","index":"0.000004184037207885"},{"denom":"ASSET3","index":"0.000001223709723928"},{"denom":"ASSET4","index":"0.000011520237582522"},{"denom":"ASSET5","index":"0.000000950091460574"},{"denom":"ASSET6","index":"0.000003867003500531"},{"denom":"ASSET7","index":"0.000005922674290891"},{"denom":"ASSET8","index":"0.000007727949032131"},{"denom":"ASSET9","index":"0.000003337940880615"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003224934301433"},{"denom":"ASSET1","index":"0.000027341438894536"},{"denom":"ASSET10","index":"0.000021706571274337"},{"denom":"ASSET11","index":"0.000027141091242061"},{"denom":"ASSET12","index":"0.000025819235056226"},{"denom":"ASSET13","index":"0.000008520116782966"},{"denom":"ASSET14","index":"0.000024928444433519"},{"denom":"ASSET15","index":"0.000019573794936329"},{"denom":"ASSET16","index":"0.000012137286393349"},{"denom":"ASSET17","index":"0.000009487995483061"},{"denom":"ASSET18","index":"0.000003945309126507"},{"denom":"ASSET2","index":"0.000008271045740629"},{"denom":"ASSET3","index":"0.000002302032616683"},{"denom":"ASSET4","index":"0.000022168721917699"},{"denom":"ASSET5","index":"0.000001793343624246"},{"denom":"ASSET6","index":"0.000007240378309003"},{"denom":"ASSET7","index":"0.000011361888746536"},{"denom":"ASSET8","index":"0.000015488944629697"},{"denom":"ASSET9","index":"0.000006579500326985"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001505652349479"},{"denom":"ASSET1","index":"0.000012557843622987"},{"denom":"ASSET10","index":"0.000008748308836028"},{"denom":"ASSET11","index":"0.000012147743761261"},{"denom":"ASSET12","index":"0.000010939413811534"},{"denom":"ASSET13","index":"0.000003764130873697"},{"denom":"ASSET14","index":"0.000011348049030896"},{"denom":"ASSET15","index":"0.000008114118692716"},{"denom":"ASSET16","index":"0.000005656448807088"},{"denom":"ASSET17","index":"0.000004017514002549"},{"denom":"ASSET18","index":"0.000001912822926478"},{"denom":"ASSET2","index":"0.000003707009821528"},{"denom":"ASSET3","index":"0.000001083835348847"},{"denom":"ASSET4","index":"0.000010205627987517"},{"denom":"ASSET5","index":"0.000000840704716538"},{"denom":"ASSET6","index":"0.000003424333845410"},{"denom":"ASSET7","index":"0.000005246348945363"},{"denom":"ASSET8","index":"0.000006845738406093"},{"denom":"ASSET9","index":"0.000002955648289152"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000002959758868257"},{"denom":"ASSET1","index":"0.000025116229265451"},{"denom":"ASSET10","index":"0.000020033024535037"},{"denom":"ASSET11","index":"0.000024955202637112"},{"denom":"ASSET12","index":"0.000023787913163340"},{"denom":"ASSET13","index":"0.000007837044315100"},{"denom":"ASSET14","index":"0.000022906603767748"},{"denom":"ASSET15","index":"0.000018047329062837"},{"denom":"ASSET16","index":"0.000011142428291313"},{"denom":"ASSET17","index":"0.000008741414303940"},{"denom":"ASSET18","index":"0.000003614587489816"},{"denom":"ASSET2","index":"0.000007605147442913"},{"denom":"ASSET3","index":"0.000002112677625393"},{"denom":"ASSET4","index":"0.000020363145786569"},{"denom":"ASSET5","index":"0.000001645239564154"},{"denom":"ASSET6","index":"0.000006641765641459"},{"denom":"ASSET7","index":"0.000010434431181702"},{"denom":"ASSET8","index":"0.000014248591155217"},{"denom":"ASSET9","index":"0.000006047835874095"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001815877519749"},{"denom":"ASSET1","index":"0.000015137138459046"},{"denom":"ASSET10","index":"0.000010545739718907"},{"denom":"ASSET11","index":"0.000014644907422941"},{"denom":"ASSET12","index":"0.000013186828093302"},{"denom":"ASSET13","index":"0.000004537625601742"},{"denom":"ASSET14","index":"0.000013679059129408"},{"denom":"ASSET15","index":"0.000009780506595550"},{"denom":"ASSET16","index":"0.000006818847588397"},{"denom":"ASSET17","index":"0.000004841650653454"},{"denom":"ASSET18","index":"0.000002306040358223"},{"denom":"ASSET2","index":"0.000004467306882298"},{"denom":"ASSET3","index":"0.000001307100902598"},{"denom":"ASSET4","index":"0.000012301639507366"},{"denom":"ASSET5","index":"0.000001013416839040"},{"denom":"ASSET6","index":"0.000004128122470864"},{"denom":"ASSET7","index":"0.000006324548354661"},{"denom":"ASSET8","index":"0.000008252108546467"},{"denom":"ASSET9","index":"0.000003563504517685"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003468946703322"},{"denom":"ASSET1","index":"0.000029412495408176"},{"denom":"ASSET10","index":"0.000023372734593498"},{"denom":"ASSET11","index":"0.000029203218600002"},{"denom":"ASSET12","index":"0.000027792166579196"},{"denom":"ASSET13","index":"0.000009167641990636"},{"denom":"ASSET14","index":"0.000026818252104650"},{"denom":"ASSET15","index":"0.000021072198152383"},{"denom":"ASSET16","index":"0.000013054905852031"},{"denom":"ASSET17","index":"0.000010211457984650"},{"denom":"ASSET18","index":"0.000004240878207320"},{"denom":"ASSET2","index":"0.000008898543974195"},{"denom":"ASSET3","index":"0.000002476460623897"},{"denom":"ASSET4","index":"0.000023847831794350"},{"denom":"ASSET5","index":"0.000001927880642719"},{"denom":"ASSET6","index":"0.000007785977685579"},{"denom":"ASSET7","index":"0.000012222326144679"},{"denom":"ASSET8","index":"0.000016667230515151"},{"denom":"ASSET9","index":"0.000007078301868557"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001541968050995"},{"denom":"ASSET1","index":"0.000012857487907975"},{"denom":"ASSET10","index":"0.000008957704485900"},{"denom":"ASSET11","index":"0.000012438763825161"},{"denom":"ASSET12","index":"0.000011200869215257"},{"denom":"ASSET13","index":"0.000003854089325736"},{"denom":"ASSET14","index":"0.000011619593298070"},{"denom":"ASSET15","index":"0.000008307186714386"},{"denom":"ASSET16","index":"0.000005792349812251"},{"denom":"ASSET17","index":"0.000004113299472240"},{"denom":"ASSET18","index":"0.000001959030530305"},{"denom":"ASSET2","index":"0.000003795102401372"},{"denom":"ASSET3","index":"0.000001109951140156"},{"denom":"ASSET4","index":"0.000010448993630046"},{"denom":"ASSET5","index":"0.000000861541416423"},{"denom":"ASSET6","index":"0.000003506814193562"},{"denom":"ASSET7","index":"0.000005371133324183"},{"denom":"ASSET8","index":"0.000007009474378365"},{"denom":"ASSET9","index":"0.000003027441582881"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003053196756625"},{"denom":"ASSET1","index":"0.000025905581999278"},{"denom":"ASSET10","index":"0.000020682143152818"},{"denom":"ASSET11","index":"0.000025745380902198"},{"denom":"ASSET12","index":"0.000024550499550641"},{"denom":"ASSET13","index":"0.000008086239198545"},{"denom":"ASSET14","index":"0.000023629161089906"},{"denom":"ASSET15","index":"0.000018628151539367"},{"denom":"ASSET16","index":"0.000011492271696690"},{"denom":"ASSET17","index":"0.000009021688715966"},{"denom":"ASSET18","index":"0.000003727673632537"},{"denom":"ASSET2","index":"0.000007845443656426"},{"denom":"ASSET3","index":"0.000002178852781858"},{"denom":"ASSET4","index":"0.000021002318737231"},{"denom":"ASSET5","index":"0.000001697417622442"},{"denom":"ASSET6","index":"0.000006850319017638"},{"denom":"ASSET7","index":"0.000010761758840612"},{"denom":"ASSET8","index":"0.000014701087498525"},{"denom":"ASSET9","index":"0.000006240132889304"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001327266579501"},{"denom":"ASSET1","index":"0.000011071143497688"},{"denom":"ASSET10","index":"0.000007713614824674"},{"denom":"ASSET11","index":"0.000010710668391289"},{"denom":"ASSET12","index":"0.000009644435509525"},{"denom":"ASSET13","index":"0.000003318857014090"},{"denom":"ASSET14","index":"0.000010004910615924"},{"denom":"ASSET15","index":"0.000007152875770275"},{"denom":"ASSET16","index":"0.000004987262870528"},{"denom":"ASSET17","index":"0.000003541219052903"},{"denom":"ASSET18","index":"0.000001686360555224"},{"denom":"ASSET2","index":"0.000003267755179083"},{"denom":"ASSET3","index":"0.000000955742427695"},{"denom":"ASSET4","index":"0.000008998066353223"},{"denom":"ASSET5","index":"0.000000741667172936"},{"denom":"ASSET6","index":"0.000003019151657428"},{"denom":"ASSET7","index":"0.000004625406633453"},{"denom":"ASSET8","index":"0.000006035541053505"},{"denom":"ASSET9","index":"0.000002606193585346"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000002827520151011"},{"denom":"ASSET1","index":"0.000024027878888002"},{"denom":"ASSET10","index":"0.000019355847170480"},{"denom":"ASSET11","index":"0.000023924401086085"},{"denom":"ASSET12","index":"0.000022900407365256"},{"denom":"ASSET13","index":"0.000007521399074311"},{"denom":"ASSET14","index":"0.000021930603354990"},{"denom":"ASSET15","index":"0.000017401215805238"},{"denom":"ASSET16","index":"0.000010647310435771"},{"denom":"ASSET17","index":"0.000008415007538097"},{"denom":"ASSET18","index":"0.000003442593620109"},{"denom":"ASSET2","index":"0.000007289635767836"},{"denom":"ASSET3","index":"0.000002016810506595"},{"denom":"ASSET4","index":"0.000019477449509443"},{"denom":"ASSET5","index":"0.000001571692130579"},{"denom":"ASSET6","index":"0.000006339251488002"},{"denom":"ASSET7","index":"0.000009978075244424"},{"denom":"ASSET8","index":"0.000013673195599374"},{"denom":"ASSET9","index":"0.000005796522499795"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001571435631869"},{"denom":"ASSET1","index":"0.000013104175099655"},{"denom":"ASSET10","index":"0.000009129715488355"},{"denom":"ASSET11","index":"0.000012677036600848"},{"denom":"ASSET12","index":"0.000011415350365342"},{"denom":"ASSET13","index":"0.000003928095848150"},{"denom":"ASSET14","index":"0.000011841502401104"},{"denom":"ASSET15","index":"0.000008466812321615"},{"denom":"ASSET16","index":"0.000005902994865728"},{"denom":"ASSET17","index":"0.000004192467944409"},{"denom":"ASSET18","index":"0.000001996601204585"},{"denom":"ASSET2","index":"0.000003867921602360"},{"denom":"ASSET3","index":"0.000001131473113468"},{"denom":"ASSET4","index":"0.000010648868578800"},{"denom":"ASSET5","index":"0.000000877952110712"},{"denom":"ASSET6","index":"0.000003573955614728"},{"denom":"ASSET7","index":"0.000005473883440830"},{"denom":"ASSET8","index":"0.000007142978914228"},{"denom":"ASSET9","index":"0.000003084669944040"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003141123056438"},{"denom":"ASSET1","index":"0.000026662100889972"},{"denom":"ASSET10","index":"0.000021312054987248"},{"denom":"ASSET11","index":"0.000026503481745319"},{"denom":"ASSET12","index":"0.000025286293002787"},{"denom":"ASSET13","index":"0.000008324908472884"},{"denom":"ASSET14","index":"0.000024319980387721"},{"denom":"ASSET15","index":"0.000019190708128374"},{"denom":"ASSET16","index":"0.000011824997422058"},{"denom":"ASSET17","index":"0.000009292034078872"},{"denom":"ASSET18","index":"0.000003834040785154"},{"denom":"ASSET2","index":"0.000008076003481032"},{"denom":"ASSET3","index":"0.000002241608843356"},{"denom":"ASSET4","index":"0.000021614431804298"},{"denom":"ASSET5","index":"0.000001746420421862"},{"denom":"ASSET6","index":"0.000007047828859327"},{"denom":"ASSET7","index":"0.000011075197168484"},{"denom":"ASSET8","index":"0.000015134882092008"},{"denom":"ASSET9","index":"0.000006422749115253"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[{"denom":"ASSET0","index":"0.000001554974273829"},{"denom":"ASSET1","index":"0.000012964145980643"},{"denom":"ASSET10","index":"0.000009032293690170"},{"denom":"ASSET11","index":"0.000012541598623624"},{"denom":"ASSET12","index":"0.000011293609918011"},{"denom":"ASSET13","index":"0.000003886649549954"},{"denom":"ASSET14","index":"0.000011715371140412"},{"denom":"ASSET15","index":"0.000008376264351692"},{"denom":"ASSET16","index":"0.000005840194074962"},{"denom":"ASSET17","index":"0.000004147646243034"},{"denom":"ASSET18","index":"0.000001975556294303"},{"denom":"ASSET2","index":"0.000003826903319009"},{"denom":"ASSET3","index":"0.000001119455695618"},{"denom":"ASSET4","index":"0.000010535776146539"},{"denom":"ASSET5","index":"0.000000869071819878"},{"denom":"ASSET6","index":"0.000003536426577765"},{"denom":"ASSET7","index":"0.000005416074448708"},{"denom":"ASSET8","index":"0.000007067350213206"},{"denom":"ASSET9","index":"0.000003052560720565"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[{"denom":"ASSET0","index":"0.000003054120352223"},{"denom":"ASSET1","index":"0.000025909289170716"},{"denom":"ASSET10","index":"0.000020664041936079"},{"denom":"ASSET11","index":"0.000025743066158465"},{"denom":"ASSET12","index":"0.000024537849095602"},{"denom":"ASSET13","index":"0.000008085297309351"},{"denom":"ASSET14","index":"0.000023630023251940"},{"denom":"ASSET15","index":"0.000018615490114349"},{"denom":"ASSET16","index":"0.000011495216270003"},{"denom":"ASSET17","index":"0.000009017197770141"},{"denom":"ASSET18","index":"0.000003730110182262"},{"denom":"ASSET2","index":"0.000007845299155388"},{"denom":"ASSET3","index":"0.000002179886924088"},{"denom":"ASSET4","index":"0.000021005968780047"},{"denom":"ASSET5","index":"0.000001698230665763"},{"denom":"ASSET6","index":"0.000006853367473041"},{"denom":"ASSET7","index":"0.000010764057351149"},{"denom":"ASSET8","index":"0.000014698116791571"},{"denom":"ASSET9","index":"0.000006239964640655"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686766080319267956","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686762261897809019","reward_histories":[]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET16","snapshot":{"prev_reward_weight":"0.686758443497580517","reward_histories":[]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001587610635106"},{"denom":"ASSET1","index":"0.000013244938725362"},{"denom":"ASSET10","index":"0.000009227311812032"},{"denom":"ASSET11","index":"0.000012812935831455"},{"denom":"ASSET12","index":"0.000011538527294432"},{"denom":"ASSET13","index":"0.000003970376596809"},{"denom":"ASSET14","index":"0.000011969180179294"},{"denom":"ASSET15","index":"0.000008557707326477"},{"denom":"ASSET16","index":"0.000005967039972082"},{"denom":"ASSET17","index":"0.000004237678387413"},{"denom":"ASSET18","index":"0.000002018263519969"},{"denom":"ASSET2","index":"0.000003909626189853"},{"denom":"ASSET3","index":"0.000001143457659809"},{"denom":"ASSET4","index":"0.000010763622103487"},{"denom":"ASSET5","index":"0.000000886955941552"},{"denom":"ASSET6","index":"0.000003612624200292"},{"denom":"ASSET7","index":"0.000005533687069132"},{"denom":"ASSET8","index":"0.000007219848364411"},{"denom":"ASSET9","index":"0.000003118520890387"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003152887181228"},{"denom":"ASSET1","index":"0.000026760532918289"},{"denom":"ASSET10","index":"0.000021371603424459"},{"denom":"ASSET11","index":"0.000026596151859305"},{"denom":"ASSET12","index":"0.000025366346961436"},{"denom":"ASSET13","index":"0.000008353980761099"},{"denom":"ASSET14","index":"0.000024408754798213"},{"denom":"ASSET15","index":"0.000019248058608344"},{"denom":"ASSET16","index":"0.000011870971278696"},{"denom":"ASSET17","index":"0.000009321801721671"},{"denom":"ASSET18","index":"0.000003850124607081"},{"denom":"ASSET2","index":"0.000008105134387478"},{"denom":"ASSET3","index":"0.000002250596051831"},{"denom":"ASSET4","index":"0.000021694971342643"},{"denom":"ASSET5","index":"0.000001752750611640"},{"denom":"ASSET6","index":"0.000007075802880646"},{"denom":"ASSET7","index":"0.000011117440314842"},{"denom":"ASSET8","index":"0.000015186957305377"},{"denom":"ASSET9","index":"0.000006446159830056"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001450981944084"},{"denom":"ASSET1","index":"0.000012097851501865"},{"denom":"ASSET10","index":"0.000008428524260541"},{"denom":"ASSET11","index":"0.000011703479004578"},{"denom":"ASSET12","index":"0.000010538773481717"},{"denom":"ASSET13","index":"0.000003626563958485"},{"denom":"ASSET14","index":"0.000010932552044520"},{"denom":"ASSET15","index":"0.000007816771742159"},{"denom":"ASSET16","index":"0.000005449942823954"},{"denom":"ASSET17","index":"0.000003870671031354"},{"denom":"ASSET18","index":"0.000001843572637920"},{"denom":"ASSET2","index":"0.000003571328051486"},{"denom":"ASSET3","index":"0.000001044730757120"},{"denom":"ASSET4","index":"0.000009831991445917"},{"denom":"ASSET5","index":"0.000000810720570477"},{"denom":"ASSET6","index":"0.000003299899992359"},{"denom":"ASSET7","index":"0.000005054382457699"},{"denom":"ASSET8","index":"0.000006595048508847"},{"denom":"ASSET9","index":"0.000002848509784621"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000002831039632868"},{"denom":"ASSET1","index":"0.000024014703977493"},{"denom":"ASSET10","index":"0.000019136467933987"},{"denom":"ASSET11","index":"0.000023856136612857"},{"denom":"ASSET12","index":"0.000022731094165303"},{"denom":"ASSET13","index":"0.000007491812146677"},{"denom":"ASSET14","index":"0.000021900750691559"},{"denom":"ASSET15","index":"0.000017242457090593"},{"denom":"ASSET16","index":"0.000010655585625623"},{"denom":"ASSET17","index":"0.000008353141870908"},{"denom":"ASSET18","index":"0.000003458892129556"},{"denom":"ASSET2","index":"0.000007270317321266"},{"denom":"ASSET3","index":"0.000002020551075646"},{"denom":"ASSET4","index":"0.000019470118745656"},{"denom":"ASSET5","index":"0.000001574098937698"},{"denom":"ASSET6","index":"0.000006353413461243"},{"denom":"ASSET7","index":"0.000009977493764026"},{"denom":"ASSET8","index":"0.000013619759476676"},{"denom":"ASSET9","index":"0.000005782490697784"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001596167964962"},{"denom":"ASSET1","index":"0.000013307648687747"},{"denom":"ASSET10","index":"0.000009271254138767"},{"denom":"ASSET11","index":"0.000012873344596610"},{"denom":"ASSET12","index":"0.000011592750107942"},{"denom":"ASSET13","index":"0.000003989527201016"},{"denom":"ASSET14","index":"0.000012025715131995"},{"denom":"ASSET15","index":"0.000008598149750858"},{"denom":"ASSET16","index":"0.000005994556982506"},{"denom":"ASSET17","index":"0.000004257340617956"},{"denom":"ASSET18","index":"0.000002028240277625"},{"denom":"ASSET2","index":"0.000003928376470814"},{"denom":"ASSET3","index":"0.000001148919558672"},{"denom":"ASSET4","index":"0.000010814752131731"},{"denom":"ASSET5","index":"0.000000891818678410"},{"denom":"ASSET6","index":"0.000003630210866621"},{"denom":"ASSET7","index":"0.000005559360179979"},{"denom":"ASSET8","index":"0.000007254619109209"},{"denom":"ASSET9","index":"0.000003133416978198"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003160678210357"},{"denom":"ASSET1","index":"0.000026816731621709"},{"denom":"ASSET10","index":"0.000021409695697867"},{"denom":"ASSET11","index":"0.000026650151208928"},{"denom":"ASSET12","index":"0.000025413985003091"},{"denom":"ASSET13","index":"0.000008371194471357"},{"denom":"ASSET14","index":"0.000024459575922385"},{"denom":"ASSET15","index":"0.000019283728762326"},{"denom":"ASSET16","index":"0.000011895729224726"},{"denom":"ASSET17","index":"0.000009339186085895"},{"denom":"ASSET18","index":"0.000003859320220004"},{"denom":"ASSET2","index":"0.000008121656282140"},{"denom":"ASSET3","index":"0.000002255587694637"},{"denom":"ASSET4","index":"0.000021740936259308"},{"denom":"ASSET5","index":"0.000001757304707579"},{"denom":"ASSET6","index":"0.000007091577992612"},{"denom":"ASSET7","index":"0.000011140302591406"},{"denom":"ASSET8","index":"0.000015217956063596"},{"denom":"ASSET9","index":"0.000006459479788296"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001539653287763"},{"denom":"ASSET1","index":"0.000012837628062054"},{"denom":"ASSET10","index":"0.000008944076712630"},{"denom":"ASSET11","index":"0.000012418678362380"},{"denom":"ASSET12","index":"0.000011182855597091"},{"denom":"ASSET13","index":"0.000003848344731893"},{"denom":"ASSET14","index":"0.000011600753980079"},{"denom":"ASSET15","index":"0.000008294363000211"},{"denom":"ASSET16","index":"0.000005782767435536"},{"denom":"ASSET17","index":"0.000004106968636837"},{"denom":"ASSET18","index":"0.000001956500354065"},{"denom":"ASSET2","index":"0.000003789470997435"},{"denom":"ASSET3","index":"0.000001108613446191"},{"denom":"ASSET4","index":"0.000010432741141086"},{"denom":"ASSET5","index":"0.000000860502708115"},{"denom":"ASSET6","index":"0.000003501935883605"},{"denom":"ASSET7","index":"0.000005362766419174"},{"denom":"ASSET8","index":"0.000006998089525433"},{"denom":"ASSET9","index":"0.000003022535474442"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003102081054533"},{"denom":"ASSET1","index":"0.000026328097047411"},{"denom":"ASSET10","index":"0.000021065731925672"},{"denom":"ASSET11","index":"0.000026176422512857"},{"denom":"ASSET12","index":"0.000024984864029023"},{"denom":"ASSET13","index":"0.000008223750690350"},{"denom":"ASSET14","index":"0.000024017391771060"},{"denom":"ASSET15","index":"0.000018965095888316"},{"denom":"ASSET16","index":"0.000011675661088751"},{"denom":"ASSET17","index":"0.000009181817821335"},{"denom":"ASSET18","index":"0.000003784851704842"},{"denom":"ASSET2","index":"0.000007977007181168"},{"denom":"ASSET3","index":"0.000002213531006169"},{"denom":"ASSET4","index":"0.000021343717572048"},{"denom":"ASSET5","index":"0.000001724500934679"},{"denom":"ASSET6","index":"0.000006958604580417"},{"denom":"ASSET7","index":"0.000010936011139136"},{"denom":"ASSET8","index":"0.000014950117004491"},{"denom":"ASSET9","index":"0.000006344046059941"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001722784092424"},{"denom":"ASSET1","index":"0.000014376047839207"},{"denom":"ASSET10","index":"0.000010014727915911"},{"denom":"ASSET11","index":"0.000013905627425621"},{"denom":"ASSET12","index":"0.000012523636788373"},{"denom":"ASSET13","index":"0.000004309050988454"},{"denom":"ASSET14","index":"0.000012989875687172"},{"denom":"ASSET15","index":"0.000009287144342897"},{"denom":"ASSET16","index":"0.000006475075648346"},{"denom":"ASSET17","index":"0.000004597575508787"},{"denom":"ASSET18","index":"0.000002191113748617"},{"denom":"ASSET2","index":"0.000004242146751855"},{"denom":"ASSET3","index":"0.000001239819134475"},{"denom":"ASSET4","index":"0.000011683152316098"},{"denom":"ASSET5","index":"0.000000961748401110"},{"denom":"ASSET6","index":"0.000003920170113222"},{"denom":"ASSET7","index":"0.000006004655234759"},{"denom":"ASSET8","index":"0.000007836158711656"},{"denom":"ASSET9","index":"0.000003384936220430"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003308323901116"},{"denom":"ASSET1","index":"0.000028066718381779"},{"denom":"ASSET10","index":"0.000022316311421496"},{"denom":"ASSET11","index":"0.000027867424204892"},{"denom":"ASSET12","index":"0.000026530665881565"},{"denom":"ASSET13","index":"0.000008749579510737"},{"denom":"ASSET14","index":"0.000025590688346390"},{"denom":"ASSET15","index":"0.000020116135001180"},{"denom":"ASSET16","index":"0.000012455644018572"},{"denom":"ASSET17","index":"0.000009747635771928"},{"denom":"ASSET18","index":"0.000004046709206696"},{"denom":"ASSET2","index":"0.000008491843085820"},{"denom":"ASSET3","index":"0.000002361259343526"},{"denom":"ASSET4","index":"0.000022756236881458"},{"denom":"ASSET5","index":"0.000001838827056256"},{"denom":"ASSET6","index":"0.000007428217086977"},{"denom":"ASSET7","index":"0.000011660835649526"},{"denom":"ASSET8","index":"0.000015906513514404"},{"denom":"ASSET9","index":"0.000006755948018281"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001677980890787"},{"denom":"ASSET1","index":"0.000013990275877081"},{"denom":"ASSET10","index":"0.000009746835585844"},{"denom":"ASSET11","index":"0.000013534047272362"},{"denom":"ASSET12","index":"0.000012187401487418"},{"denom":"ASSET13","index":"0.000004194217559326"},{"denom":"ASSET14","index":"0.000012642160756856"},{"denom":"ASSET15","index":"0.000009039350648091"},{"denom":"ASSET16","index":"0.000006301979019776"},{"denom":"ASSET17","index":"0.000004475595265619"},{"denom":"ASSET18","index":"0.000002132005492585"},{"denom":"ASSET2","index":"0.000004129566806967"},{"denom":"ASSET3","index":"0.000001207793600899"},{"denom":"ASSET4","index":"0.000011368981735957"},{"denom":"ASSET5","index":"0.000000937435909214"},{"denom":"ASSET6","index":"0.000003815863724495"},{"denom":"ASSET7","index":"0.000005844281079776"},{"denom":"ASSET8","index":"0.000007626584775507"},{"denom":"ASSET9","index":"0.000003293515032135"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003299297789724"},{"denom":"ASSET1","index":"0.000027989603079017"},{"denom":"ASSET10","index":"0.000022326156077139"},{"denom":"ASSET11","index":"0.000027810817552502"},{"denom":"ASSET12","index":"0.000026510364756940"},{"denom":"ASSET13","index":"0.000008734817330461"},{"denom":"ASSET14","index":"0.000025527438517331"},{"denom":"ASSET15","index":"0.000020112836713905"},{"denom":"ASSET16","index":"0.000012417417558556"},{"denom":"ASSET17","index":"0.000009741881197111"},{"denom":"ASSET18","index":"0.000004029624902086"},{"denom":"ASSET2","index":"0.000008475129511821"},{"denom":"ASSET3","index":"0.000002354634361983"},{"denom":"ASSET4","index":"0.000022691681830907"},{"denom":"ASSET5","index":"0.000001834207215432"},{"denom":"ASSET6","index":"0.000007402948949368"},{"denom":"ASSET7","index":"0.000011627814435586"},{"denom":"ASSET8","index":"0.000015878876786083"},{"denom":"ASSET9","index":"0.000006740310437402"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001570026110869"},{"denom":"ASSET1","index":"0.000013093495665706"},{"denom":"ASSET10","index":"0.000009121814411369"},{"denom":"ASSET11","index":"0.000012665871768525"},{"denom":"ASSET12","index":"0.000011405375746022"},{"denom":"ASSET13","index":"0.000003924443730811"},{"denom":"ASSET14","index":"0.000011831756550478"},{"denom":"ASSET15","index":"0.000008459245989284"},{"denom":"ASSET16","index":"0.000005898474977098"},{"denom":"ASSET17","index":"0.000004187979388376"},{"denom":"ASSET18","index":"0.000001995163822601"},{"denom":"ASSET2","index":"0.000003864775280042"},{"denom":"ASSET3","index":"0.000001129971286445"},{"denom":"ASSET4","index":"0.000010639630627815"},{"denom":"ASSET5","index":"0.000000877623463400"},{"denom":"ASSET6","index":"0.000003571405397092"},{"denom":"ASSET7","index":"0.000005469607987193"},{"denom":"ASSET8","index":"0.000007137838423287"},{"denom":"ASSET9","index":"0.000003082869956418"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003142586597057"},{"denom":"ASSET1","index":"0.000026671940208455"},{"denom":"ASSET10","index":"0.000021322845581004"},{"denom":"ASSET11","index":"0.000026513185667064"},{"denom":"ASSET12","index":"0.000025297681895631"},{"denom":"ASSET13","index":"0.000008328263582513"},{"denom":"ASSET14","index":"0.000024329302916923"},{"denom":"ASSET15","index":"0.000019199384187435"},{"denom":"ASSET16","index":"0.000011829863063918"},{"denom":"ASSET17","index":"0.000009295955073087"},{"denom":"ASSET18","index":"0.000003835509513951"},{"denom":"ASSET2","index":"0.000008079410847125"},{"denom":"ASSET3","index":"0.000002242309830967"},{"denom":"ASSET4","index":"0.000021622076491366"},{"denom":"ASSET5","index":"0.000001747112267207"},{"denom":"ASSET6","index":"0.000007050444762949"},{"denom":"ASSET7","index":"0.000011079003337441"},{"denom":"ASSET8","index":"0.000015142122511204"},{"denom":"ASSET9","index":"0.000006425848418438"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001808467589320"},{"denom":"ASSET1","index":"0.000015078627759778"},{"denom":"ASSET10","index":"0.000010504031371633"},{"denom":"ASSET11","index":"0.000014586692317421"},{"denom":"ASSET12","index":"0.000013135079536696"},{"denom":"ASSET13","index":"0.000004520160908868"},{"denom":"ASSET14","index":"0.000013624998850191"},{"denom":"ASSET15","index":"0.000009741934661752"},{"denom":"ASSET16","index":"0.000006792338136474"},{"denom":"ASSET17","index":"0.000004822580238185"},{"denom":"ASSET18","index":"0.000002296370773952"},{"denom":"ASSET2","index":"0.000004449596398694"},{"denom":"ASSET3","index":"0.000001300403116066"},{"denom":"ASSET4","index":"0.000012254031223951"},{"denom":"ASSET5","index":"0.000001010080559921"},{"denom":"ASSET6","index":"0.000004112902878720"},{"denom":"ASSET7","index":"0.000006298386565256"},{"denom":"ASSET8","index":"0.000008219757370854"},{"denom":"ASSET9","index":"0.000003550402926189"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003309574221953"},{"denom":"ASSET1","index":"0.000028041386020893"},{"denom":"ASSET10","index":"0.000022151472675705"},{"denom":"ASSET11","index":"0.000027806413413432"},{"denom":"ASSET12","index":"0.000026397319662942"},{"denom":"ASSET13","index":"0.000008723998941637"},{"denom":"ASSET14","index":"0.000025556208464743"},{"denom":"ASSET15","index":"0.000019995491235522"},{"denom":"ASSET16","index":"0.000012454763771642"},{"denom":"ASSET17","index":"0.000009698403814011"},{"denom":"ASSET18","index":"0.000004053515914738"},{"denom":"ASSET2","index":"0.000008473190716338"},{"denom":"ASSET3","index":"0.000002361530218445"},{"denom":"ASSET4","index":"0.000022738669483779"},{"denom":"ASSET5","index":"0.000001840125976242"},{"denom":"ASSET6","index":"0.000007434008870747"},{"denom":"ASSET7","index":"0.000011653935721338"},{"denom":"ASSET8","index":"0.000015861166565423"},{"denom":"ASSET9","index":"0.000006742103174023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001541663174382"},{"denom":"ASSET1","index":"0.000012852134347969"},{"denom":"ASSET10","index":"0.000008953505358908"},{"denom":"ASSET11","index":"0.000012432624080325"},{"denom":"ASSET12","index":"0.000011194846435509"},{"denom":"ASSET13","index":"0.000003852675567517"},{"denom":"ASSET14","index":"0.000011614356703153"},{"denom":"ASSET15","index":"0.000008302745615107"},{"denom":"ASSET16","index":"0.000005788648746115"},{"denom":"ASSET17","index":"0.000004110607675539"},{"denom":"ASSET18","index":"0.000001958208705152"},{"denom":"ASSET2","index":"0.000003793380830041"},{"denom":"ASSET3","index":"0.000001108811590805"},{"denom":"ASSET4","index":"0.000010443285637998"},{"denom":"ASSET5","index":"0.000000861256061842"},{"denom":"ASSET6","index":"0.000003505801353281"},{"denom":"ASSET7","index":"0.000005369138478471"},{"denom":"ASSET8","index":"0.000007005673232815"},{"denom":"ASSET9","index":"0.000003025513979724"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003039218640043"},{"denom":"ASSET1","index":"0.000025782167100542"},{"denom":"ASSET10","index":"0.000020571830356487"},{"denom":"ASSET11","index":"0.000025618833387376"},{"denom":"ASSET12","index":"0.000024423552320522"},{"denom":"ASSET13","index":"0.000008046369560384"},{"denom":"ASSET14","index":"0.000023515194162679"},{"denom":"ASSET15","index":"0.000018530055863607"},{"denom":"ASSET16","index":"0.000011436803083329"},{"denom":"ASSET17","index":"0.000008974370950503"},{"denom":"ASSET18","index":"0.000003710743638587"},{"denom":"ASSET2","index":"0.000007806913274081"},{"denom":"ASSET3","index":"0.000002167934051431"},{"denom":"ASSET4","index":"0.000020901035076857"},{"denom":"ASSET5","index":"0.000001689640060433"},{"denom":"ASSET6","index":"0.000006819038075969"},{"denom":"ASSET7","index":"0.000010710838619674"},{"denom":"ASSET8","index":"0.000014627524271874"},{"denom":"ASSET9","index":"0.000006209166066794"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001647112085871"},{"denom":"ASSET1","index":"0.000013744257107488"},{"denom":"ASSET10","index":"0.000009576415679235"},{"denom":"ASSET11","index":"0.000013296650962579"},{"denom":"ASSET12","index":"0.000011973464376313"},{"denom":"ASSET13","index":"0.000004120724991946"},{"denom":"ASSET14","index":"0.000012421070521222"},{"denom":"ASSET15","index":"0.000008879485058873"},{"denom":"ASSET16","index":"0.000006191885004573"},{"denom":"ASSET17","index":"0.000004397534055245"},{"denom":"ASSET18","index":"0.000002094718230780"},{"denom":"ASSET2","index":"0.000004055939892025"},{"denom":"ASSET3","index":"0.000001185763647039"},{"denom":"ASSET4","index":"0.000011170521774262"},{"denom":"ASSET5","index":"0.000000920733692817"},{"denom":"ASSET6","index":"0.000003749683056035"},{"denom":"ASSET7","index":"0.000005742315674818"},{"denom":"ASSET8","index":"0.000007491513372686"},{"denom":"ASSET9","index":"0.000003235328626359"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003240628198198"},{"denom":"ASSET1","index":"0.000027504329283847"},{"denom":"ASSET10","index":"0.000021940320319100"},{"denom":"ASSET11","index":"0.000027329345632586"},{"denom":"ASSET12","index":"0.000026051323397008"},{"denom":"ASSET13","index":"0.000008583813762496"},{"denom":"ASSET14","index":"0.000025085743554439"},{"denom":"ASSET15","index":"0.000019763439018939"},{"denom":"ASSET16","index":"0.000012202670980955"},{"denom":"ASSET17","index":"0.000009573761377605"},{"denom":"ASSET18","index":"0.000003959875003044"},{"denom":"ASSET2","index":"0.000008327243811102"},{"denom":"ASSET3","index":"0.000002312908746824"},{"denom":"ASSET4","index":"0.000022299606884078"},{"denom":"ASSET5","index":"0.000001802093087045"},{"denom":"ASSET6","index":"0.000007275447910852"},{"denom":"ASSET7","index":"0.000011427132859276"},{"denom":"ASSET8","index":"0.000015602768933976"},{"denom":"ASSET9","index":"0.000006623309483786"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001570100817458"},{"denom":"ASSET1","index":"0.000013089401919768"},{"denom":"ASSET10","index":"0.000009119446705996"},{"denom":"ASSET11","index":"0.000012662761138201"},{"denom":"ASSET12","index":"0.000011403229713207"},{"denom":"ASSET13","index":"0.000003924467777503"},{"denom":"ASSET14","index":"0.000011828301962489"},{"denom":"ASSET15","index":"0.000008457526081653"},{"denom":"ASSET16","index":"0.000005896112859965"},{"denom":"ASSET17","index":"0.000004187981201412"},{"denom":"ASSET18","index":"0.000001993604534455"},{"denom":"ASSET2","index":"0.000003863295018381"},{"denom":"ASSET3","index":"0.000001129343245325"},{"denom":"ASSET4","index":"0.000010637785958043"},{"denom":"ASSET5","index":"0.000000876809547412"},{"denom":"ASSET6","index":"0.000003569979481054"},{"denom":"ASSET7","index":"0.000005467903546113"},{"denom":"ASSET8","index":"0.000007135253365252"},{"denom":"ASSET9","index":"0.000003082165940365"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003152920186871"},{"denom":"ASSET1","index":"0.000026760622644749"},{"denom":"ASSET10","index":"0.000021403995558307"},{"denom":"ASSET11","index":"0.000026604821287493"},{"denom":"ASSET12","index":"0.000025390105019040"},{"denom":"ASSET13","index":"0.000008358570294936"},{"denom":"ASSET14","index":"0.000024411618525071"},{"denom":"ASSET15","index":"0.000019270968708391"},{"denom":"ASSET16","index":"0.000011868219590271"},{"denom":"ASSET17","index":"0.000009330682788205"},{"denom":"ASSET18","index":"0.000003846613833157"},{"denom":"ASSET2","index":"0.000008107095494272"},{"denom":"ASSET3","index":"0.000002249072663818"},{"denom":"ASSET4","index":"0.000021694789218154"},{"denom":"ASSET5","index":"0.000001752328837510"},{"denom":"ASSET6","index":"0.000007072706136469"},{"denom":"ASSET7","index":"0.000011115912260277"},{"denom":"ASSET8","index":"0.000015194187602297"},{"denom":"ASSET9","index":"0.000006447849146068"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001655272585709"},{"denom":"ASSET1","index":"0.000013804891217292"},{"denom":"ASSET10","index":"0.000009617831976915"},{"denom":"ASSET11","index":"0.000013354722791997"},{"denom":"ASSET12","index":"0.000012025575872058"},{"denom":"ASSET13","index":"0.000004138592201887"},{"denom":"ASSET14","index":"0.000012474922822124"},{"denom":"ASSET15","index":"0.000008919578032571"},{"denom":"ASSET16","index":"0.000006218567480803"},{"denom":"ASSET17","index":"0.000004416250829168"},{"denom":"ASSET18","index":"0.000002103798060547"},{"denom":"ASSET2","index":"0.000004074517134053"},{"denom":"ASSET3","index":"0.000001191960556756"},{"denom":"ASSET4","index":"0.000011218887197534"},{"denom":"ASSET5","index":"0.000000924981107448"},{"denom":"ASSET6","index":"0.000003765642448085"},{"denom":"ASSET7","index":"0.000005766756105051"},{"denom":"ASSET8","index":"0.000007525534569569"},{"denom":"ASSET9","index":"0.000003250577479728"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003218229550028"},{"denom":"ASSET1","index":"0.000027301798081180"},{"denom":"ASSET10","index":"0.000021745417841688"},{"denom":"ASSET11","index":"0.000027119412726222"},{"denom":"ASSET12","index":"0.000025834540696398"},{"denom":"ASSET13","index":"0.000008516471999212"},{"denom":"ASSET14","index":"0.000024897496810197"},{"denom":"ASSET15","index":"0.000019595694306931"},{"denom":"ASSET16","index":"0.000012114595919920"},{"denom":"ASSET17","index":"0.000009493460517354"},{"denom":"ASSET18","index":"0.000003932937797970"},{"denom":"ASSET2","index":"0.000008264095290285"},{"denom":"ASSET3","index":"0.000002297232512411"},{"denom":"ASSET4","index":"0.000022135581489268"},{"denom":"ASSET5","index":"0.000001789675045728"},{"denom":"ASSET6","index":"0.000007223884768794"},{"denom":"ASSET7","index":"0.000011342725097550"},{"denom":"ASSET8","index":"0.000015481678980085"},{"denom":"ASSET9","index":"0.000006573861400446"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001621688869515"},{"denom":"ASSET1","index":"0.000013520143478358"},{"denom":"ASSET10","index":"0.000009419470546393"},{"denom":"ASSET11","index":"0.000013079418684764"},{"denom":"ASSET12","index":"0.000011778054243646"},{"denom":"ASSET13","index":"0.000004053107355591"},{"denom":"ASSET14","index":"0.000012218035825109"},{"denom":"ASSET15","index":"0.000008735715386011"},{"denom":"ASSET16","index":"0.000006090623412316"},{"denom":"ASSET17","index":"0.000004325494601547"},{"denom":"ASSET18","index":"0.000002060555632782"},{"denom":"ASSET2","index":"0.000003991049142665"},{"denom":"ASSET3","index":"0.000001167586257565"},{"denom":"ASSET4","index":"0.000010987648142487"},{"denom":"ASSET5","index":"0.000000905975587506"},{"denom":"ASSET6","index":"0.000003688190199343"},{"denom":"ASSET7","index":"0.000005648412194460"},{"denom":"ASSET8","index":"0.000007370434701640"},{"denom":"ASSET9","index":"0.000003183549162496"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003224207736427"},{"denom":"ASSET1","index":"0.000027358045975387"},{"denom":"ASSET10","index":"0.000021853454393362"},{"denom":"ASSET11","index":"0.000027191663823691"},{"denom":"ASSET12","index":"0.000025935625558190"},{"denom":"ASSET13","index":"0.000008541293337334"},{"denom":"ASSET14","index":"0.000024954691173737"},{"denom":"ASSET15","index":"0.000019681390400685"},{"denom":"ASSET16","index":"0.000012135703886829"},{"denom":"ASSET17","index":"0.000009530848033034"},{"denom":"ASSET18","index":"0.000003936224347496"},{"denom":"ASSET2","index":"0.000008286598878032"},{"denom":"ASSET3","index":"0.000002301038846536"},{"denom":"ASSET4","index":"0.000022179933336345"},{"denom":"ASSET5","index":"0.000001792519798769"},{"denom":"ASSET6","index":"0.000007234068845872"},{"denom":"ASSET7","index":"0.000011365474292791"},{"denom":"ASSET8","index":"0.000015527655320242"},{"denom":"ASSET9","index":"0.000006590765495457"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001684197417987"},{"denom":"ASSET1","index":"0.000014041270025306"},{"denom":"ASSET10","index":"0.000009782380002809"},{"denom":"ASSET11","index":"0.000013583439347888"},{"denom":"ASSET12","index":"0.000012231725730520"},{"denom":"ASSET13","index":"0.000004209525615418"},{"denom":"ASSET14","index":"0.000012688588478388"},{"denom":"ASSET15","index":"0.000009072403677468"},{"denom":"ASSET16","index":"0.000006325419612958"},{"denom":"ASSET17","index":"0.000004492161044183"},{"denom":"ASSET18","index":"0.000002139608271529"},{"denom":"ASSET2","index":"0.000004144674335530"},{"denom":"ASSET3","index":"0.000001212331762086"},{"denom":"ASSET4","index":"0.000011410921471639"},{"denom":"ASSET5","index":"0.000000940827523152"},{"denom":"ASSET6","index":"0.000003830097231595"},{"denom":"ASSET7","index":"0.000005866137041214"},{"denom":"ASSET8","index":"0.000007654386885887"},{"denom":"ASSET9","index":"0.000003305963379963"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003193080094990"},{"denom":"ASSET1","index":"0.000027069824276969"},{"denom":"ASSET10","index":"0.000021489349079139"},{"denom":"ASSET11","index":"0.000026870184080824"},{"denom":"ASSET12","index":"0.000025561356340007"},{"denom":"ASSET13","index":"0.000008435097288603"},{"denom":"ASSET14","index":"0.000024680442306089"},{"denom":"ASSET15","index":"0.000019377704768171"},{"denom":"ASSET16","index":"0.000012016988086595"},{"denom":"ASSET17","index":"0.000009392966467546"},{"denom":"ASSET18","index":"0.000003905368596850"},{"denom":"ASSET2","index":"0.000008189075060838"},{"denom":"ASSET3","index":"0.000002279664955012"},{"denom":"ASSET4","index":"0.000021948593995488"},{"denom":"ASSET5","index":"0.000001775351671947"},{"denom":"ASSET6","index":"0.000007168631437760"},{"denom":"ASSET7","index":"0.000011248752159293"},{"denom":"ASSET8","index":"0.000015334459676317"},{"denom":"ASSET9","index":"0.000006513651901550"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001677613648548"},{"denom":"ASSET1","index":"0.000013997394471820"},{"denom":"ASSET10","index":"0.000009752554992736"},{"denom":"ASSET11","index":"0.000013541183096442"},{"denom":"ASSET12","index":"0.000012193285851007"},{"denom":"ASSET13","index":"0.000004195070965406"},{"denom":"ASSET14","index":"0.000012649497226385"},{"denom":"ASSET15","index":"0.000009043353672830"},{"denom":"ASSET16","index":"0.000006306085420563"},{"denom":"ASSET17","index":"0.000004477092542912"},{"denom":"ASSET18","index":"0.000002131751335856"},{"denom":"ASSET2","index":"0.000004130786635239"},{"denom":"ASSET3","index":"0.000001208960144751"},{"denom":"ASSET4","index":"0.000011376252751467"},{"denom":"ASSET5","index":"0.000000937307007594"},{"denom":"ASSET6","index":"0.000003817659736684"},{"denom":"ASSET7","index":"0.000005847800357116"},{"denom":"ASSET8","index":"0.000007631172097229"},{"denom":"ASSET9","index":"0.000003295090343070"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003316222748087"},{"denom":"ASSET1","index":"0.000028147075207200"},{"denom":"ASSET10","index":"0.000022466702115272"},{"denom":"ASSET11","index":"0.000027971336509453"},{"denom":"ASSET12","index":"0.000026669877578580"},{"denom":"ASSET13","index":"0.000008784355829882"},{"denom":"ASSET14","index":"0.000025672864554615"},{"denom":"ASSET15","index":"0.000020235356040284"},{"denom":"ASSET16","index":"0.000012487172511964"},{"denom":"ASSET17","index":"0.000009799807931023"},{"denom":"ASSET18","index":"0.000004049727438870"},{"denom":"ASSET2","index":"0.000008522892941853"},{"denom":"ASSET3","index":"0.000002368075218536"},{"denom":"ASSET4","index":"0.000022820717384594"},{"denom":"ASSET5","index":"0.000001843591257654"},{"denom":"ASSET6","index":"0.000007443165294976"},{"denom":"ASSET7","index":"0.000011693499621126"},{"denom":"ASSET8","index":"0.000015972009373807"},{"denom":"ASSET9","index":"0.000006779069609364"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001520550536467"},{"denom":"ASSET1","index":"0.000012675827554874"},{"denom":"ASSET10","index":"0.000008831388003026"},{"denom":"ASSET11","index":"0.000012262725604616"},{"denom":"ASSET12","index":"0.000011042474271843"},{"denom":"ASSET13","index":"0.000003800233070086"},{"denom":"ASSET14","index":"0.000011455195131741"},{"denom":"ASSET15","index":"0.000008190012927118"},{"denom":"ASSET16","index":"0.000005710257954490"},{"denom":"ASSET17","index":"0.000004055182520937"},{"denom":"ASSET18","index":"0.000001931747034924"},{"denom":"ASSET2","index":"0.000003741926245004"},{"denom":"ASSET3","index":"0.000001094491513968"},{"denom":"ASSET4","index":"0.000010301253521611"},{"denom":"ASSET5","index":"0.000000849450412477"},{"denom":"ASSET6","index":"0.000003457632836431"},{"denom":"ASSET7","index":"0.000005295631642792"},{"denom":"ASSET8","index":"0.000006910311498182"},{"denom":"ASSET9","index":"0.000002984699699651"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003047858420945"},{"denom":"ASSET1","index":"0.000025863853767953"},{"denom":"ASSET10","index":"0.000020681482671570"},{"denom":"ASSET11","index":"0.000025712271525236"},{"denom":"ASSET12","index":"0.000024535470175220"},{"denom":"ASSET13","index":"0.000008077733573885"},{"denom":"ASSET14","index":"0.000023593590000343"},{"denom":"ASSET15","index":"0.000018621561303244"},{"denom":"ASSET16","index":"0.000011471343089677"},{"denom":"ASSET17","index":"0.000009016132124589"},{"denom":"ASSET18","index":"0.000003719208275283"},{"denom":"ASSET2","index":"0.000007835789085827"},{"denom":"ASSET3","index":"0.000002174729135607"},{"denom":"ASSET4","index":"0.000020967814383093"},{"denom":"ASSET5","index":"0.000001694402278429"},{"denom":"ASSET6","index":"0.000006836893759575"},{"denom":"ASSET7","index":"0.000010744095518390"},{"denom":"ASSET8","index":"0.000014684305897471"},{"denom":"ASSET9","index":"0.000006231971052532"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001765508823557"},{"denom":"ASSET1","index":"0.000014724618911480"},{"denom":"ASSET10","index":"0.000010258363403154"},{"denom":"ASSET11","index":"0.000014244524406828"},{"denom":"ASSET12","index":"0.000012826610887714"},{"denom":"ASSET13","index":"0.000004413772058893"},{"denom":"ASSET14","index":"0.000013305845007949"},{"denom":"ASSET15","index":"0.000009513270498085"},{"denom":"ASSET16","index":"0.000006632703470176"},{"denom":"ASSET17","index":"0.000004710604682736"},{"denom":"ASSET18","index":"0.000002243882559375"},{"denom":"ASSET2","index":"0.000004346662074372"},{"denom":"ASSET3","index":"0.000001271648168235"},{"denom":"ASSET4","index":"0.000011966226470776"},{"denom":"ASSET5","index":"0.000000986860926228"},{"denom":"ASSET6","index":"0.000004016274458267"},{"denom":"ASSET7","index":"0.000006150888196691"},{"denom":"ASSET8","index":"0.000008026526225616"},{"denom":"ASSET9","index":"0.000003466488815844"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003365151784209"},{"denom":"ASSET1","index":"0.000028538337865727"},{"denom":"ASSET10","index":"0.000022670552359626"},{"denom":"ASSET11","index":"0.000028331786642422"},{"denom":"ASSET12","index":"0.000026959391418936"},{"denom":"ASSET13","index":"0.000008894072871450"},{"denom":"ASSET14","index":"0.000026020188745878"},{"denom":"ASSET15","index":"0.000020439828986765"},{"denom":"ASSET16","index":"0.000012667128947757"},{"denom":"ASSET17","index":"0.000009907060013179"},{"denom":"ASSET18","index":"0.000004116201786219"},{"denom":"ASSET2","index":"0.000008634485522558"},{"denom":"ASSET3","index":"0.000002403102945281"},{"denom":"ASSET4","index":"0.000023139017263426"},{"denom":"ASSET5","index":"0.000001871649891727"},{"denom":"ASSET6","index":"0.000007555863827839"},{"denom":"ASSET7","index":"0.000011857581945748"},{"denom":"ASSET8","index":"0.000016169532559731"},{"denom":"ASSET9","index":"0.000006867789268222"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001833509758465"},{"denom":"ASSET1","index":"0.000015308139656127"},{"denom":"ASSET10","index":"0.000010661025831945"},{"denom":"ASSET11","index":"0.000014808091540182"},{"denom":"ASSET12","index":"0.000013334616425197"},{"denom":"ASSET13","index":"0.000004587108050268"},{"denom":"ASSET14","index":"0.000013827997232930"},{"denom":"ASSET15","index":"0.000009887618079284"},{"denom":"ASSET16","index":"0.000006893996691827"},{"denom":"ASSET17","index":"0.000004893804228047"},{"denom":"ASSET18","index":"0.000002326890566197"},{"denom":"ASSET2","index":"0.000004513767659929"},{"denom":"ASSET3","index":"0.000001320127026095"},{"denom":"ASSET4","index":"0.000012434529816496"},{"denom":"ASSET5","index":"0.000001020098156528"},{"denom":"ASSET6","index":"0.000004173734941087"},{"denom":"ASSET7","index":"0.000006393948575882"},{"denom":"ASSET8","index":"0.000008340802573961"},{"denom":"ASSET9","index":"0.000003600346434803"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003461123478470"},{"denom":"ASSET1","index":"0.000029368181297786"},{"denom":"ASSET10","index":"0.000023294808028239"},{"denom":"ASSET11","index":"0.000029147392384169"},{"denom":"ASSET12","index":"0.000027719461688447"},{"denom":"ASSET13","index":"0.000009147542663388"},{"denom":"ASSET14","index":"0.000026768604990580"},{"denom":"ASSET15","index":"0.000021008846141082"},{"denom":"ASSET16","index":"0.000013035302068339"},{"denom":"ASSET17","index":"0.000010182949549387"},{"denom":"ASSET18","index":"0.000004232564951180"},{"denom":"ASSET2","index":"0.000008877642147806"},{"denom":"ASSET3","index":"0.000002471921418528"},{"denom":"ASSET4","index":"0.000023806252184245"},{"denom":"ASSET5","index":"0.000001920199705662"},{"denom":"ASSET6","index":"0.000007776538212319"},{"denom":"ASSET7","index":"0.000012202060569359"},{"denom":"ASSET8","index":"0.000016628688342614"},{"denom":"ASSET9","index":"0.000007061722298848"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001580229076001"},{"denom":"ASSET1","index":"0.000013178675425859"},{"denom":"ASSET10","index":"0.000009181488308837"},{"denom":"ASSET11","index":"0.000012749045790152"},{"denom":"ASSET12","index":"0.000011480356468073"},{"denom":"ASSET13","index":"0.000003950572690002"},{"denom":"ASSET14","index":"0.000011909209196663"},{"denom":"ASSET15","index":"0.000008514902002442"},{"denom":"ASSET16","index":"0.000005936347281082"},{"denom":"ASSET17","index":"0.000004216274924019"},{"denom":"ASSET18","index":"0.000002008304897474"},{"denom":"ASSET2","index":"0.000003889973934875"},{"denom":"ASSET3","index":"0.000001137392019304"},{"denom":"ASSET4","index":"0.000010709664607998"},{"denom":"ASSET5","index":"0.000000883343392042"},{"denom":"ASSET6","index":"0.000003594749230410"},{"denom":"ASSET7","index":"0.000005505163831141"},{"denom":"ASSET8","index":"0.000007184060111002"},{"denom":"ASSET9","index":"0.000003102967025342"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003136420796654"},{"denom":"ASSET1","index":"0.000026617535879560"},{"denom":"ASSET10","index":"0.000021257162201233"},{"denom":"ASSET11","index":"0.000026454281403244"},{"denom":"ASSET12","index":"0.000025229520616223"},{"denom":"ASSET13","index":"0.000008309311482354"},{"denom":"ASSET14","index":"0.000024278363089230"},{"denom":"ASSET15","index":"0.000019144672836670"},{"denom":"ASSET16","index":"0.000011806881934189"},{"denom":"ASSET17","index":"0.000009271795054357"},{"denom":"ASSET18","index":"0.000003829937127836"},{"denom":"ASSET2","index":"0.000008061315465971"},{"denom":"ASSET3","index":"0.000002238409344787"},{"denom":"ASSET4","index":"0.000021579173085678"},{"denom":"ASSET5","index":"0.000001744155749232"},{"denom":"ASSET6","index":"0.000007037998659171"},{"denom":"ASSET7","index":"0.000011056982942661"},{"denom":"ASSET8","index":"0.000015105683491420"},{"denom":"ASSET9","index":"0.000006411626899884"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001065673750407"},{"denom":"ASSET1","index":"0.000008885137524612"},{"denom":"ASSET10","index":"0.000006190162379117"},{"denom":"ASSET11","index":"0.000008595321581390"},{"denom":"ASSET12","index":"0.000007740138401991"},{"denom":"ASSET13","index":"0.000002663662498568"},{"denom":"ASSET14","index":"0.000008029258508615"},{"denom":"ASSET15","index":"0.000005740999854868"},{"denom":"ASSET16","index":"0.000004002452113836"},{"denom":"ASSET17","index":"0.000002842492504350"},{"denom":"ASSET18","index":"0.000001354098020432"},{"denom":"ASSET2","index":"0.000002622608139264"},{"denom":"ASSET3","index":"0.000000767159849705"},{"denom":"ASSET4","index":"0.000007220696381306"},{"denom":"ASSET5","index":"0.000000595288209907"},{"denom":"ASSET6","index":"0.000002423598872130"},{"denom":"ASSET7","index":"0.000003711940334016"},{"denom":"ASSET8","index":"0.000004843718561268"},{"denom":"ASSET9","index":"0.000002092032733005"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000002559869929403"},{"denom":"ASSET1","index":"0.000021787096732684"},{"denom":"ASSET10","index":"0.000017783238471081"},{"denom":"ASSET11","index":"0.000021752938768967"},{"denom":"ASSET12","index":"0.000020940235345308"},{"denom":"ASSET13","index":"0.000006848308161575"},{"denom":"ASSET14","index":"0.000019904298850841"},{"denom":"ASSET15","index":"0.000015946274018453"},{"denom":"ASSET16","index":"0.000009638424477568"},{"denom":"ASSET17","index":"0.000007695902028378"},{"denom":"ASSET18","index":"0.000003102977872608"},{"denom":"ASSET2","index":"0.000006627591716064"},{"denom":"ASSET3","index":"0.000001824087350341"},{"denom":"ASSET4","index":"0.000017655906837434"},{"denom":"ASSET5","index":"0.000001421889695470"},{"denom":"ASSET6","index":"0.000005729615091854"},{"denom":"ASSET7","index":"0.000009042175373173"},{"denom":"ASSET8","index":"0.000012449153729005"},{"denom":"ASSET9","index":"0.000005268661072858"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001663945626017"},{"denom":"ASSET1","index":"0.000013874870096624"},{"denom":"ASSET10","index":"0.000009666844154779"},{"denom":"ASSET11","index":"0.000013422526194886"},{"denom":"ASSET12","index":"0.000012086742376498"},{"denom":"ASSET13","index":"0.000004159391889779"},{"denom":"ASSET14","index":"0.000012538614102973"},{"denom":"ASSET15","index":"0.000008964719539034"},{"denom":"ASSET16","index":"0.000006250183953344"},{"denom":"ASSET17","index":"0.000004438919645342"},{"denom":"ASSET18","index":"0.000002114400826704"},{"denom":"ASSET2","index":"0.000004095648229305"},{"denom":"ASSET3","index":"0.000001197908641659"},{"denom":"ASSET4","index":"0.000011275545275051"},{"denom":"ASSET5","index":"0.000000929713092403"},{"denom":"ASSET6","index":"0.000003784956906399"},{"denom":"ASSET7","index":"0.000005796423525818"},{"denom":"ASSET8","index":"0.000007563775534382"},{"denom":"ASSET9","index":"0.000003266980643136"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003299045378029"},{"denom":"ASSET1","index":"0.000027992490930804"},{"denom":"ASSET10","index":"0.000022352284005938"},{"denom":"ASSET11","index":"0.000027819914533732"},{"denom":"ASSET12","index":"0.000026530494002155"},{"denom":"ASSET13","index":"0.000008738242797579"},{"denom":"ASSET14","index":"0.000025532401567106"},{"denom":"ASSET15","index":"0.000020131602968729"},{"denom":"ASSET16","index":"0.000012417136212826"},{"denom":"ASSET17","index":"0.000009749421325842"},{"denom":"ASSET18","index":"0.000004027997856345"},{"denom":"ASSET2","index":"0.000008477931503293"},{"denom":"ASSET3","index":"0.000002354450357881"},{"denom":"ASSET4","index":"0.000022693933657862"},{"denom":"ASSET5","index":"0.000001834114741991"},{"denom":"ASSET6","index":"0.000007402245947993"},{"denom":"ASSET7","index":"0.000011628988518089"},{"denom":"ASSET8","index":"0.000015885667960333"},{"denom":"ASSET9","index":"0.000006742956926982"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001554670726054"},{"denom":"ASSET1","index":"0.000012963415617374"},{"denom":"ASSET10","index":"0.000009031685079156"},{"denom":"ASSET11","index":"0.000012540799003679"},{"denom":"ASSET12","index":"0.000011293255065955"},{"denom":"ASSET13","index":"0.000003886042255656"},{"denom":"ASSET14","index":"0.000011715237120170"},{"denom":"ASSET15","index":"0.000008376185136293"},{"denom":"ASSET16","index":"0.000005839850894644"},{"denom":"ASSET17","index":"0.000004147480761425"},{"denom":"ASSET18","index":"0.000001975383661309"},{"denom":"ASSET2","index":"0.000003826393664534"},{"denom":"ASSET3","index":"0.000001119362922759"},{"denom":"ASSET4","index":"0.000010534956487329"},{"denom":"ASSET5","index":"0.000000868711928150"},{"denom":"ASSET6","index":"0.000003536399982164"},{"denom":"ASSET7","index":"0.000005415965161990"},{"denom":"ASSET8","index":"0.000007067088929007"},{"denom":"ASSET9","index":"0.000003052231098907"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003157426180098"},{"denom":"ASSET1","index":"0.000026803913890418"},{"denom":"ASSET10","index":"0.000021467927303389"},{"denom":"ASSET11","index":"0.000026655124661377"},{"denom":"ASSET12","index":"0.000025453388278707"},{"denom":"ASSET13","index":"0.000008375182650914"},{"denom":"ASSET14","index":"0.000024453809207757"},{"denom":"ASSET15","index":"0.000019323681821282"},{"denom":"ASSET16","index":"0.000011885939188892"},{"denom":"ASSET17","index":"0.000009353763879690"},{"denom":"ASSET18","index":"0.000003851457527173"},{"denom":"ASSET2","index":"0.000008122633355733"},{"denom":"ASSET3","index":"0.000002252845423920"},{"denom":"ASSET4","index":"0.000021728796023940"},{"denom":"ASSET5","index":"0.000001755342604855"},{"denom":"ASSET6","index":"0.000007082922688985"},{"denom":"ASSET7","index":"0.000011133765978354"},{"denom":"ASSET8","index":"0.000015225414484063"},{"denom":"ASSET9","index":"0.000006459804222065"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001578706846766"},{"denom":"ASSET1","index":"0.000013164667632738"},{"denom":"ASSET10","index":"0.000009171819989970"},{"denom":"ASSET11","index":"0.000012734981690366"},{"denom":"ASSET12","index":"0.000011467468005207"},{"denom":"ASSET13","index":"0.000003946168668528"},{"denom":"ASSET14","index":"0.000011895957050803"},{"denom":"ASSET15","index":"0.000008505148486066"},{"denom":"ASSET16","index":"0.000005930623522158"},{"denom":"ASSET17","index":"0.000004211879752669"},{"denom":"ASSET18","index":"0.000002005998995588"},{"denom":"ASSET2","index":"0.000003886323829757"},{"denom":"ASSET3","index":"0.000001135855039864"},{"denom":"ASSET4","index":"0.000010697863378618"},{"denom":"ASSET5","index":"0.000000882112923477"},{"denom":"ASSET6","index":"0.000003590690326231"},{"denom":"ASSET7","index":"0.000005499740683011"},{"denom":"ASSET8","index":"0.000007176593065360"},{"denom":"ASSET9","index":"0.000003098765751537"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003185213515607"},{"denom":"ASSET1","index":"0.000027035699090666"},{"denom":"ASSET10","index":"0.000021635640181728"},{"denom":"ASSET11","index":"0.000026880669357351"},{"denom":"ASSET12","index":"0.000025658872180332"},{"denom":"ASSET13","index":"0.000008444958797633"},{"denom":"ASSET14","index":"0.000024662649108986"},{"denom":"ASSET15","index":"0.000019476753279332"},{"denom":"ASSET16","index":"0.000011989846651744"},{"denom":"ASSET17","index":"0.000009429633404312"},{"denom":"ASSET18","index":"0.000003886090392826"},{"denom":"ASSET2","index":"0.000008191890279929"},{"denom":"ASSET3","index":"0.000002271981699175"},{"denom":"ASSET4","index":"0.000021916623044014"},{"denom":"ASSET5","index":"0.000001770727550439"},{"denom":"ASSET6","index":"0.000007144791673859"},{"denom":"ASSET7","index":"0.000011230376410345"},{"denom":"ASSET8","index":"0.000015353061978158"},{"denom":"ASSET9","index":"0.000006513931773648"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001736464555496"},{"denom":"ASSET1","index":"0.000014486324003877"},{"denom":"ASSET10","index":"0.000010092542477093"},{"denom":"ASSET11","index":"0.000014014496766071"},{"denom":"ASSET12","index":"0.000012620063107870"},{"denom":"ASSET13","index":"0.000004342915393341"},{"denom":"ASSET14","index":"0.000013091890345676"},{"denom":"ASSET15","index":"0.000009359368553661"},{"denom":"ASSET16","index":"0.000006524897117620"},{"denom":"ASSET17","index":"0.000004634080157191"},{"denom":"ASSET18","index":"0.000002206537788701"},{"denom":"ASSET2","index":"0.000004276263218483"},{"denom":"ASSET3","index":"0.000001250605280877"},{"denom":"ASSET4","index":"0.000011772878885340"},{"denom":"ASSET5","index":"0.000000969964544635"},{"denom":"ASSET6","index":"0.000003951772367204"},{"denom":"ASSET7","index":"0.000006051315875212"},{"denom":"ASSET8","index":"0.000007896528716001"},{"denom":"ASSET9","index":"0.000003409784945337"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003356675502673"},{"denom":"ASSET1","index":"0.000028477076245214"},{"denom":"ASSET10","index":"0.000022663760086849"},{"denom":"ASSET11","index":"0.000028282539274294"},{"denom":"ASSET12","index":"0.000026934248109484"},{"denom":"ASSET13","index":"0.000008880550781135"},{"denom":"ASSET14","index":"0.000025969128454053"},{"denom":"ASSET15","index":"0.000020425731449718"},{"denom":"ASSET16","index":"0.000012636600959200"},{"denom":"ASSET17","index":"0.000009896936242996"},{"denom":"ASSET18","index":"0.000004102733083140"},{"denom":"ASSET2","index":"0.000008619316582261"},{"denom":"ASSET3","index":"0.000002396767404444"},{"denom":"ASSET4","index":"0.000023088672429632"},{"denom":"ASSET5","index":"0.000001866260713425"},{"denom":"ASSET6","index":"0.000007536521735823"},{"denom":"ASSET7","index":"0.000011831316132227"},{"denom":"ASSET8","index":"0.000016143846449802"},{"denom":"ASSET9","index":"0.000006854365607618"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001432199402946"},{"denom":"ASSET1","index":"0.000011943338809449"},{"denom":"ASSET10","index":"0.000008321234131428"},{"denom":"ASSET11","index":"0.000011554338026882"},{"denom":"ASSET12","index":"0.000010404248756685"},{"denom":"ASSET13","index":"0.000003580160245814"},{"denom":"ASSET14","index":"0.000010793249539252"},{"denom":"ASSET15","index":"0.000007717099003024"},{"denom":"ASSET16","index":"0.000005380388215223"},{"denom":"ASSET17","index":"0.000003821002469456"},{"denom":"ASSET18","index":"0.000001819847139312"},{"denom":"ASSET2","index":"0.000003525361874705"},{"denom":"ASSET3","index":"0.000001031021204577"},{"denom":"ASSET4","index":"0.000009706076917365"},{"denom":"ASSET5","index":"0.000000800326827437"},{"denom":"ASSET6","index":"0.000003258135250159"},{"denom":"ASSET7","index":"0.000004989357863356"},{"denom":"ASSET8","index":"0.000006510858315517"},{"denom":"ASSET9","index":"0.000002812306527182"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000002962853679956"},{"denom":"ASSET1","index":"0.000025162993314326"},{"denom":"ASSET10","index":"0.000020199688926412"},{"denom":"ASSET11","index":"0.000025035647772320"},{"denom":"ASSET12","index":"0.000023929456511577"},{"denom":"ASSET13","index":"0.000007867725037604"},{"denom":"ASSET14","index":"0.000022960507028012"},{"denom":"ASSET15","index":"0.000018173489333858"},{"denom":"ASSET16","index":"0.000011155286879957"},{"denom":"ASSET17","index":"0.000008793607250882"},{"denom":"ASSET18","index":"0.000003611579051495"},{"denom":"ASSET2","index":"0.000007628670547867"},{"denom":"ASSET3","index":"0.000002114031306235"},{"denom":"ASSET4","index":"0.000020398130246320"},{"denom":"ASSET5","index":"0.000001647096325587"},{"denom":"ASSET6","index":"0.000006645213242757"},{"denom":"ASSET7","index":"0.000010450616802650"},{"denom":"ASSET8","index":"0.000014303332598966"},{"denom":"ASSET9","index":"0.000006067112886031"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001597673370668"},{"denom":"ASSET1","index":"0.000013327099930964"},{"denom":"ASSET10","index":"0.000009285285696821"},{"denom":"ASSET11","index":"0.000012892979142852"},{"denom":"ASSET12","index":"0.000011609669101507"},{"denom":"ASSET13","index":"0.000003995544306884"},{"denom":"ASSET14","index":"0.000012043789889618"},{"denom":"ASSET15","index":"0.000008610289110917"},{"denom":"ASSET16","index":"0.000006002842621820"},{"denom":"ASSET17","index":"0.000004263637708946"},{"denom":"ASSET18","index":"0.000002030433278566"},{"denom":"ASSET2","index":"0.000003934304697275"},{"denom":"ASSET3","index":"0.000001149943780421"},{"denom":"ASSET4","index":"0.000010829884739162"},{"denom":"ASSET5","index":"0.000000892737420067"},{"denom":"ASSET6","index":"0.000003634911050302"},{"denom":"ASSET7","index":"0.000005567360953495"},{"denom":"ASSET8","index":"0.000007264378579749"},{"denom":"ASSET9","index":"0.000003138189772368"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003135234009226"},{"denom":"ASSET1","index":"0.000026602125077525"},{"denom":"ASSET10","index":"0.000021213712135644"},{"denom":"ASSET11","index":"0.000026430841190504"},{"denom":"ASSET12","index":"0.000025191219856579"},{"denom":"ASSET13","index":"0.000008300995957475"},{"denom":"ASSET14","index":"0.000024262534835813"},{"denom":"ASSET15","index":"0.000019110376679732"},{"denom":"ASSET16","index":"0.000011801461546978"},{"denom":"ASSET17","index":"0.000009257538829689"},{"denom":"ASSET18","index":"0.000003829421505073"},{"denom":"ASSET2","index":"0.000008055136326188"},{"denom":"ASSET3","index":"0.000002237228869924"},{"denom":"ASSET4","index":"0.000021566736915931"},{"denom":"ASSET5","index":"0.000001743257901616"},{"denom":"ASSET6","index":"0.000007036288319926"},{"denom":"ASSET7","index":"0.000011051703047857"},{"denom":"ASSET8","index":"0.000015089589803941"},{"denom":"ASSET9","index":"0.000006406386950018"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001689516061942"},{"denom":"ASSET1","index":"0.000014086551658080"},{"denom":"ASSET10","index":"0.000009813816295422"},{"denom":"ASSET11","index":"0.000013627312671286"},{"denom":"ASSET12","index":"0.000012271349136594"},{"denom":"ASSET13","index":"0.000004223185893030"},{"denom":"ASSET14","index":"0.000012729983861563"},{"denom":"ASSET15","index":"0.000009101391604066"},{"denom":"ASSET16","index":"0.000006345353421478"},{"denom":"ASSET17","index":"0.000004506584688828"},{"denom":"ASSET18","index":"0.000002146942263262"},{"denom":"ASSET2","index":"0.000004157925615959"},{"denom":"ASSET3","index":"0.000001216379053179"},{"denom":"ASSET4","index":"0.000011447740269489"},{"denom":"ASSET5","index":"0.000000943856970227"},{"denom":"ASSET6","index":"0.000003842500943451"},{"denom":"ASSET7","index":"0.000005884905911035"},{"denom":"ASSET8","index":"0.000007678959268655"},{"denom":"ASSET9","index":"0.000003316793155937"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003297864217859"},{"denom":"ASSET1","index":"0.000027973253972789"},{"denom":"ASSET10","index":"0.000022291630953866"},{"denom":"ASSET11","index":"0.000027789008146512"},{"denom":"ASSET12","index":"0.000026479178332828"},{"denom":"ASSET13","index":"0.000008727103479255"},{"denom":"ASSET14","index":"0.000025511286037616"},{"denom":"ASSET15","index":"0.000020085740117730"},{"denom":"ASSET16","index":"0.000012411485442612"},{"denom":"ASSET17","index":"0.000009730550155880"},{"denom":"ASSET18","index":"0.000004028926705548"},{"denom":"ASSET2","index":"0.000008468714781887"},{"denom":"ASSET3","index":"0.000002353891879987"},{"denom":"ASSET4","index":"0.000022679492169342"},{"denom":"ASSET5","index":"0.000001833514119464"},{"denom":"ASSET6","index":"0.000007400677249018"},{"denom":"ASSET7","index":"0.000011621769805761"},{"denom":"ASSET8","index":"0.000015864980999233"},{"denom":"ASSET9","index":"0.000006736116007098"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001411859688057"},{"denom":"ASSET1","index":"0.000011770485537623"},{"denom":"ASSET10","index":"0.000008200497469250"},{"denom":"ASSET11","index":"0.000011386615852852"},{"denom":"ASSET12","index":"0.000010253874969484"},{"denom":"ASSET13","index":"0.000003528347966974"},{"denom":"ASSET14","index":"0.000010637094027671"},{"denom":"ASSET15","index":"0.000007605174144562"},{"denom":"ASSET16","index":"0.000005302606662519"},{"denom":"ASSET17","index":"0.000003765826670265"},{"denom":"ASSET18","index":"0.000001793777493075"},{"denom":"ASSET2","index":"0.000003474345960472"},{"denom":"ASSET3","index":"0.000001016278724767"},{"denom":"ASSET4","index":"0.000009565512043233"},{"denom":"ASSET5","index":"0.000000788559420242"},{"denom":"ASSET6","index":"0.000003210842193807"},{"denom":"ASSET7","index":"0.000004917435724579"},{"denom":"ASSET8","index":"0.000006416479374940"},{"denom":"ASSET9","index":"0.000002771018622781"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000002930820438736"},{"denom":"ASSET1","index":"0.000024889799880283"},{"denom":"ASSET10","index":"0.000019988623694797"},{"denom":"ASSET11","index":"0.000024765615752571"},{"denom":"ASSET12","index":"0.000023676022623299"},{"denom":"ASSET13","index":"0.000007783195940338"},{"denom":"ASSET14","index":"0.000022712072914709"},{"denom":"ASSET15","index":"0.000017982209004670"},{"denom":"ASSET16","index":"0.000011033267632466"},{"denom":"ASSET17","index":"0.000008700651286884"},{"denom":"ASSET18","index":"0.000003571624768330"},{"denom":"ASSET2","index":"0.000007546215495169"},{"denom":"ASSET3","index":"0.000002090977414753"},{"denom":"ASSET4","index":"0.000020176663420937"},{"denom":"ASSET5","index":"0.000001628342560149"},{"denom":"ASSET6","index":"0.000006572371850885"},{"denom":"ASSET7","index":"0.000010337273058537"},{"denom":"ASSET8","index":"0.000014149515747938"},{"denom":"ASSET9","index":"0.000006000707920121"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001726304213109"},{"denom":"ASSET1","index":"0.000014431903221591"},{"denom":"ASSET10","index":"0.000010055058078201"},{"denom":"ASSET11","index":"0.000013959161452463"},{"denom":"ASSET12","index":"0.000012572806376704"},{"denom":"ASSET13","index":"0.000004323728090679"},{"denom":"ASSET14","index":"0.000013040236440562"},{"denom":"ASSET15","index":"0.000009322042750788"},{"denom":"ASSET16","index":"0.000006501527251832"},{"denom":"ASSET17","index":"0.000004615871880590"},{"denom":"ASSET18","index":"0.000002199045982237"},{"denom":"ASSET2","index":"0.000004259987627426"},{"denom":"ASSET3","index":"0.000001242939033438"},{"denom":"ASSET4","index":"0.000011728245238599"},{"denom":"ASSET5","index":"0.000000966730359341"},{"denom":"ASSET6","index":"0.000003935973605888"},{"denom":"ASSET7","index":"0.000006028785482704"},{"denom":"ASSET8","index":"0.000007866635506506"},{"denom":"ASSET9","index":"0.000003394179668236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003313075721980"},{"denom":"ASSET1","index":"0.000028138029356789"},{"denom":"ASSET10","index":"0.000022370607880245"},{"denom":"ASSET11","index":"0.000027937207217164"},{"denom":"ASSET12","index":"0.000026595598409551"},{"denom":"ASSET13","index":"0.000008769097729958"},{"denom":"ASSET14","index":"0.000025655242037122"},{"denom":"ASSET15","index":"0.000020162686714325"},{"denom":"ASSET16","index":"0.000012488922131836"},{"denom":"ASSET17","index":"0.000009772018779266"},{"denom":"ASSET18","index":"0.000004056016110298"},{"denom":"ASSET2","index":"0.000008514325121927"},{"denom":"ASSET3","index":"0.000002365037757716"},{"denom":"ASSET4","index":"0.000022813272666626"},{"denom":"ASSET5","index":"0.000001844445619129"},{"denom":"ASSET6","index":"0.000007446834645040"},{"denom":"ASSET7","index":"0.000011690909413493"},{"denom":"ASSET8","index":"0.000015945057917181"},{"denom":"ASSET9","index":"0.000006769080892636"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001630255611072"},{"denom":"ASSET1","index":"0.000013593541268721"},{"denom":"ASSET10","index":"0.000009470169531707"},{"denom":"ASSET11","index":"0.000013149994246609"},{"denom":"ASSET12","index":"0.000011841383661505"},{"denom":"ASSET13","index":"0.000004074904678306"},{"denom":"ASSET14","index":"0.000012284196334242"},{"denom":"ASSET15","index":"0.000008782818517308"},{"denom":"ASSET16","index":"0.000006123739432762"},{"denom":"ASSET17","index":"0.000004348816994942"},{"denom":"ASSET18","index":"0.000002071599585061"},{"denom":"ASSET2","index":"0.000004012484981486"},{"denom":"ASSET3","index":"0.000001173490300222"},{"denom":"ASSET4","index":"0.000011046817638451"},{"denom":"ASSET5","index":"0.000000910593224203"},{"denom":"ASSET6","index":"0.000003707729991128"},{"denom":"ASSET7","index":"0.000005678723711902"},{"denom":"ASSET8","index":"0.000007410319536635"},{"denom":"ASSET9","index":"0.000003200294573447"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003344718004914"},{"denom":"ASSET1","index":"0.000028399683918161"},{"denom":"ASSET10","index":"0.000022773943545696"},{"denom":"ASSET11","index":"0.000028249525692452"},{"denom":"ASSET12","index":"0.000026989510465266"},{"denom":"ASSET13","index":"0.000008877216029957"},{"denom":"ASSET14","index":"0.000025911788013611"},{"denom":"ASSET15","index":"0.000020494299775586"},{"denom":"ASSET16","index":"0.000012591463658113"},{"denom":"ASSET17","index":"0.000009918208342143"},{"denom":"ASSET18","index":"0.000004078542450859"},{"denom":"ASSET2","index":"0.000008608606683653"},{"denom":"ASSET3","index":"0.000002386103437058"},{"denom":"ASSET4","index":"0.000023022167148602"},{"denom":"ASSET5","index":"0.000001858883946943"},{"denom":"ASSET6","index":"0.000007501347044310"},{"denom":"ASSET7","index":"0.000011795380538461"},{"denom":"ASSET8","index":"0.000016137954986293"},{"denom":"ASSET9","index":"0.000006845854741756"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001401914217082"},{"denom":"ASSET1","index":"0.000011691084141249"},{"denom":"ASSET10","index":"0.000008144816837289"},{"denom":"ASSET11","index":"0.000011309282624399"},{"denom":"ASSET12","index":"0.000010184195671197"},{"denom":"ASSET13","index":"0.000003504785542706"},{"denom":"ASSET14","index":"0.000010565150621491"},{"denom":"ASSET15","index":"0.000007553913381055"},{"denom":"ASSET16","index":"0.000005266490546178"},{"denom":"ASSET17","index":"0.000003740131045332"},{"denom":"ASSET18","index":"0.000001781176034264"},{"denom":"ASSET2","index":"0.000003450605283109"},{"denom":"ASSET3","index":"0.000001009107335001"},{"denom":"ASSET4","index":"0.000009501016460336"},{"denom":"ASSET5","index":"0.000000783074064494"},{"denom":"ASSET6","index":"0.000003189016217240"},{"denom":"ASSET7","index":"0.000004883842462771"},{"denom":"ASSET8","index":"0.000006372953035143"},{"denom":"ASSET9","index":"0.000002752187874236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000002824624853437"},{"denom":"ASSET1","index":"0.000023976113690517"},{"denom":"ASSET10","index":"0.000019183481330878"},{"denom":"ASSET11","index":"0.000023837782846342"},{"denom":"ASSET12","index":"0.000022753084719682"},{"denom":"ASSET13","index":"0.000007489057952554"},{"denom":"ASSET14","index":"0.000021872315483076"},{"denom":"ASSET15","index":"0.000017271123733000"},{"denom":"ASSET16","index":"0.000010633084765839"},{"denom":"ASSET17","index":"0.000008361522972460"},{"denom":"ASSET18","index":"0.000003446219629870"},{"denom":"ASSET2","index":"0.000007263651822688"},{"denom":"ASSET3","index":"0.000002015414858276"},{"denom":"ASSET4","index":"0.000019437236646346"},{"denom":"ASSET5","index":"0.000001569802896992"},{"denom":"ASSET6","index":"0.000006336500403946"},{"denom":"ASSET7","index":"0.000009959182045961"},{"denom":"ASSET8","index":"0.000013614498977085"},{"denom":"ASSET9","index":"0.000005776799011181"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001454934724421"},{"denom":"ASSET1","index":"0.000012138554241533"},{"denom":"ASSET10","index":"0.000008457231031836"},{"denom":"ASSET11","index":"0.000011742676653726"},{"denom":"ASSET12","index":"0.000010575345305063"},{"denom":"ASSET13","index":"0.000003639028595615"},{"denom":"ASSET14","index":"0.000010969531108307"},{"denom":"ASSET15","index":"0.000007843113235366"},{"denom":"ASSET16","index":"0.000005467847708521"},{"denom":"ASSET17","index":"0.000003882645572727"},{"denom":"ASSET18","index":"0.000001849120527665"},{"denom":"ASSET2","index":"0.000003583199705027"},{"denom":"ASSET3","index":"0.000001047214644670"},{"denom":"ASSET4","index":"0.000009864795788485"},{"denom":"ASSET5","index":"0.000000813748374938"},{"denom":"ASSET6","index":"0.000003310822390339"},{"denom":"ASSET7","index":"0.000005070278336150"},{"denom":"ASSET8","index":"0.000006616569426988"},{"denom":"ASSET9","index":"0.000002857424127380"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003026822568793"},{"denom":"ASSET1","index":"0.000025710421285725"},{"denom":"ASSET10","index":"0.000020652297735472"},{"denom":"ASSET11","index":"0.000025583400849235"},{"denom":"ASSET12","index":"0.000024460820755928"},{"denom":"ASSET13","index":"0.000008041083722059"},{"denom":"ASSET14","index":"0.000023461074878675"},{"denom":"ASSET15","index":"0.000018578170233019"},{"denom":"ASSET16","index":"0.000011396689804799"},{"denom":"ASSET17","index":"0.000008988134494295"},{"denom":"ASSET18","index":"0.000003688816665807"},{"denom":"ASSET2","index":"0.000007796110853756"},{"denom":"ASSET3","index":"0.000002159003644915"},{"denom":"ASSET4","index":"0.000020841789260406"},{"denom":"ASSET5","index":"0.000001683251281734"},{"denom":"ASSET6","index":"0.000006788484398340"},{"denom":"ASSET7","index":"0.000010677121165375"},{"denom":"ASSET8","index":"0.000014616905179383"},{"denom":"ASSET9","index":"0.000006199084273401"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001547699786520"},{"denom":"ASSET1","index":"0.000012908880828127"},{"denom":"ASSET10","index":"0.000008993933542043"},{"denom":"ASSET11","index":"0.000012488059147042"},{"denom":"ASSET12","index":"0.000011245681057538"},{"denom":"ASSET13","index":"0.000003869751640144"},{"denom":"ASSET14","index":"0.000011665498390936"},{"denom":"ASSET15","index":"0.000008340103197445"},{"denom":"ASSET16","index":"0.000005815173110936"},{"denom":"ASSET17","index":"0.000004129877691221"},{"denom":"ASSET18","index":"0.000001966512772230"},{"denom":"ASSET2","index":"0.000003810495126579"},{"denom":"ASSET3","index":"0.000001114825933185"},{"denom":"ASSET4","index":"0.000010490411596498"},{"denom":"ASSET5","index":"0.000000864743358984"},{"denom":"ASSET6","index":"0.000003521242992563"},{"denom":"ASSET7","index":"0.000005392342734476"},{"denom":"ASSET8","index":"0.000007036459899001"},{"denom":"ASSET9","index":"0.000003039156102537"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003086703561215"},{"denom":"ASSET1","index":"0.000026199550261878"},{"denom":"ASSET10","index":"0.000020936384793003"},{"denom":"ASSET11","index":"0.000026042194398185"},{"denom":"ASSET12","index":"0.000024843424443974"},{"denom":"ASSET13","index":"0.000008180415813801"},{"denom":"ASSET14","index":"0.000023898307142718"},{"denom":"ASSET15","index":"0.000018852934413068"},{"denom":"ASSET16","index":"0.000011621232923996"},{"denom":"ASSET17","index":"0.000009129550402498"},{"denom":"ASSET18","index":"0.000003767892160935"},{"denom":"ASSET2","index":"0.000007936188126371"},{"denom":"ASSET3","index":"0.000002203575710986"},{"denom":"ASSET4","index":"0.000021240180347210"},{"denom":"ASSET5","index":"0.000001716192200569"},{"denom":"ASSET6","index":"0.000006926674957775"},{"denom":"ASSET7","index":"0.000010883333770048"},{"denom":"ASSET8","index":"0.000014871024805414"},{"denom":"ASSET9","index":"0.000006311583255107"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001511232509129"},{"denom":"ASSET1","index":"0.000012598757210652"},{"denom":"ASSET10","index":"0.000008777665278232"},{"denom":"ASSET11","index":"0.000012187849575766"},{"denom":"ASSET12","index":"0.000010975073643675"},{"denom":"ASSET13","index":"0.000003776959255615"},{"denom":"ASSET14","index":"0.000011385233267090"},{"denom":"ASSET15","index":"0.000008140359504707"},{"denom":"ASSET16","index":"0.000005675412369706"},{"denom":"ASSET17","index":"0.000004030784481533"},{"denom":"ASSET18","index":"0.000001920145446758"},{"denom":"ASSET2","index":"0.000003719113035170"},{"denom":"ASSET3","index":"0.000001087858016388"},{"denom":"ASSET4","index":"0.000010238531681628"},{"denom":"ASSET5","index":"0.000000844504951067"},{"denom":"ASSET6","index":"0.000003436614036185"},{"denom":"ASSET7","index":"0.000005263507386191"},{"denom":"ASSET8","index":"0.000006867991992072"},{"denom":"ASSET9","index":"0.000002966364157912"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003050294937135"},{"denom":"ASSET1","index":"0.000025887230915803"},{"denom":"ASSET10","index":"0.000020718160619670"},{"denom":"ASSET11","index":"0.000025739685005463"},{"denom":"ASSET12","index":"0.000024570727404900"},{"denom":"ASSET13","index":"0.000008086966483560"},{"denom":"ASSET14","index":"0.000023616194455668"},{"denom":"ASSET15","index":"0.000018651338246959"},{"denom":"ASSET16","index":"0.000011480437826441"},{"denom":"ASSET17","index":"0.000009029688158762"},{"denom":"ASSET18","index":"0.000003721440260869"},{"denom":"ASSET2","index":"0.000007844134626406"},{"denom":"ASSET3","index":"0.000002176540273945"},{"denom":"ASSET4","index":"0.000020986445628896"},{"denom":"ASSET5","index":"0.000001695800268231"},{"denom":"ASSET6","index":"0.000006841569437153"},{"denom":"ASSET7","index":"0.000010753447417762"},{"denom":"ASSET8","index":"0.000014701309289649"},{"denom":"ASSET9","index":"0.000006238283490477"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001535139489204"},{"denom":"ASSET1","index":"0.000012800845981431"},{"denom":"ASSET10","index":"0.000008918122145344"},{"denom":"ASSET11","index":"0.000012383184798277"},{"denom":"ASSET12","index":"0.000011151318949088"},{"denom":"ASSET13","index":"0.000003837555421617"},{"denom":"ASSET14","index":"0.000011567806926671"},{"denom":"ASSET15","index":"0.000008270512670342"},{"denom":"ASSET16","index":"0.000005766305379776"},{"denom":"ASSET17","index":"0.000004095074044376"},{"denom":"ASSET18","index":"0.000001950454261216"},{"denom":"ASSET2","index":"0.000003778308540299"},{"denom":"ASSET3","index":"0.000001105159647558"},{"denom":"ASSET4","index":"0.000010402813795010"},{"denom":"ASSET5","index":"0.000000857613272150"},{"denom":"ASSET6","index":"0.000003491459778273"},{"denom":"ASSET7","index":"0.000005347470991052"},{"denom":"ASSET8","index":"0.000006978226734264"},{"denom":"ASSET9","index":"0.000003013965111016"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000002944371933765"},{"denom":"ASSET1","index":"0.000024968433937291"},{"denom":"ASSET10","index":"0.000019851368221906"},{"denom":"ASSET11","index":"0.000024791952485266"},{"denom":"ASSET12","index":"0.000023600048189968"},{"denom":"ASSET13","index":"0.000007784111470281"},{"denom":"ASSET14","index":"0.000022766914870589"},{"denom":"ASSET15","index":"0.000017894900322998"},{"denom":"ASSET16","index":"0.000011081662183182"},{"denom":"ASSET17","index":"0.000008672317440622"},{"denom":"ASSET18","index":"0.000003599691097086"},{"denom":"ASSET2","index":"0.000007555380586873"},{"denom":"ASSET3","index":"0.000002101847815188"},{"denom":"ASSET4","index":"0.000020244169178497"},{"denom":"ASSET5","index":"0.000001637098640985"},{"denom":"ASSET6","index":"0.000006609166185649"},{"denom":"ASSET7","index":"0.000010374399402552"},{"denom":"ASSET8","index":"0.000014150620453773"},{"denom":"ASSET9","index":"0.000006009906313007"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001449310882227"},{"denom":"ASSET1","index":"0.000012082282763787"},{"denom":"ASSET10","index":"0.000008417588941675"},{"denom":"ASSET11","index":"0.000011688148164511"},{"denom":"ASSET12","index":"0.000010525234539176"},{"denom":"ASSET13","index":"0.000003621923721366"},{"denom":"ASSET14","index":"0.000010918286351091"},{"denom":"ASSET15","index":"0.000007806355476589"},{"denom":"ASSET16","index":"0.000005442630668295"},{"denom":"ASSET17","index":"0.000003865550877512"},{"denom":"ASSET18","index":"0.000001841279906781"},{"denom":"ASSET2","index":"0.000003566701565973"},{"denom":"ASSET3","index":"0.000001043265621984"},{"denom":"ASSET4","index":"0.000009818715786353"},{"denom":"ASSET5","index":"0.000000809924945764"},{"denom":"ASSET6","index":"0.000003295463332131"},{"denom":"ASSET7","index":"0.000005047413281659"},{"denom":"ASSET8","index":"0.000006586595514820"},{"denom":"ASSET9","index":"0.000002844482396421"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000002938303361264"},{"denom":"ASSET1","index":"0.000024939884544734"},{"denom":"ASSET10","index":"0.000019970621943114"},{"denom":"ASSET11","index":"0.000024800280810198"},{"denom":"ASSET12","index":"0.000023679745396670"},{"denom":"ASSET13","index":"0.000007792253675830"},{"denom":"ASSET14","index":"0.000022752532795075"},{"denom":"ASSET15","index":"0.000017976341528508"},{"denom":"ASSET16","index":"0.000011059313296089"},{"denom":"ASSET17","index":"0.000008702160495382"},{"denom":"ASSET18","index":"0.000003584018468858"},{"denom":"ASSET2","index":"0.000007557839698908"},{"denom":"ASSET3","index":"0.000002096442663552"},{"denom":"ASSET4","index":"0.000020217858094708"},{"denom":"ASSET5","index":"0.000001633684136995"},{"denom":"ASSET6","index":"0.000006589976909255"},{"denom":"ASSET7","index":"0.000010359339015905"},{"denom":"ASSET8","index":"0.000014165755580726"},{"denom":"ASSET9","index":"0.000006010291774725"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001731982701050"},{"denom":"ASSET1","index":"0.000014440617081118"},{"denom":"ASSET10","index":"0.000010060714066040"},{"denom":"ASSET11","index":"0.000013969585405988"},{"denom":"ASSET12","index":"0.000012579542501729"},{"denom":"ASSET13","index":"0.000004329188348588"},{"denom":"ASSET14","index":"0.000013049805772821"},{"denom":"ASSET15","index":"0.000009329961826155"},{"denom":"ASSET16","index":"0.000006505308583448"},{"denom":"ASSET17","index":"0.000004619645074851"},{"denom":"ASSET18","index":"0.000002200709164068"},{"denom":"ASSET2","index":"0.000004262337197306"},{"denom":"ASSET3","index":"0.000001247119753241"},{"denom":"ASSET4","index":"0.000011735066464260"},{"denom":"ASSET5","index":"0.000000967420683506"},{"denom":"ASSET6","index":"0.000003938839097420"},{"denom":"ASSET7","index":"0.000006032740100243"},{"denom":"ASSET8","index":"0.000007872299366576"},{"denom":"ASSET9","index":"0.000003400187866969"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003329715418659"},{"denom":"ASSET1","index":"0.000028238028843607"},{"denom":"ASSET10","index":"0.000022458342297172"},{"denom":"ASSET11","index":"0.000028040237741643"},{"denom":"ASSET12","index":"0.000026695793846360"},{"denom":"ASSET13","index":"0.000008804253880653"},{"denom":"ASSET14","index":"0.000025748953032298"},{"denom":"ASSET15","index":"0.000020243324641083"},{"denom":"ASSET16","index":"0.000012532507824147"},{"denom":"ASSET17","index":"0.000009809802042254"},{"denom":"ASSET18","index":"0.000004070975493464"},{"denom":"ASSET2","index":"0.000008545109234155"},{"denom":"ASSET3","index":"0.000002377197518329"},{"denom":"ASSET4","index":"0.000022894451839245"},{"denom":"ASSET5","index":"0.000001851122407848"},{"denom":"ASSET6","index":"0.000007473999475476"},{"denom":"ASSET7","index":"0.000011732969702935"},{"denom":"ASSET8","index":"0.000016005536556726"},{"denom":"ASSET9","index":"0.000006797137295338"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001649988907243"},{"denom":"ASSET1","index":"0.000013756519537767"},{"denom":"ASSET10","index":"0.000009584361794534"},{"denom":"ASSET11","index":"0.000013307506163009"},{"denom":"ASSET12","index":"0.000011983307415229"},{"denom":"ASSET13","index":"0.000004124070634826"},{"denom":"ASSET14","index":"0.000012431118612277"},{"denom":"ASSET15","index":"0.000008888300900330"},{"denom":"ASSET16","index":"0.000006196625007203"},{"denom":"ASSET17","index":"0.000004401172597026"},{"denom":"ASSET18","index":"0.000002096597926581"},{"denom":"ASSET2","index":"0.000004060355216185"},{"denom":"ASSET3","index":"0.000001187751577673"},{"denom":"ASSET4","index":"0.000011179050527108"},{"denom":"ASSET5","index":"0.000000922070303720"},{"denom":"ASSET6","index":"0.000003752597722375"},{"denom":"ASSET7","index":"0.000005747010543590"},{"denom":"ASSET8","index":"0.000007499184556200"},{"denom":"ASSET9","index":"0.000003238666751267"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003269082759145"},{"denom":"ASSET1","index":"0.000027736662456421"},{"denom":"ASSET10","index":"0.000022145815740722"},{"denom":"ASSET11","index":"0.000027564157079872"},{"denom":"ASSET12","index":"0.000026286254396013"},{"denom":"ASSET13","index":"0.000008658548128401"},{"denom":"ASSET14","index":"0.000025298253418871"},{"denom":"ASSET15","index":"0.000019946084058089"},{"denom":"ASSET16","index":"0.000012303266096103"},{"denom":"ASSET17","index":"0.000009659898104260"},{"denom":"ASSET18","index":"0.000003991565584036"},{"denom":"ASSET2","index":"0.000008399501371576"},{"denom":"ASSET3","index":"0.000002333103515211"},{"denom":"ASSET4","index":"0.000022486071398850"},{"denom":"ASSET5","index":"0.000001817550334619"},{"denom":"ASSET6","index":"0.000007334517845971"},{"denom":"ASSET7","index":"0.000011522603065826"},{"denom":"ASSET8","index":"0.000015739883934035"},{"denom":"ASSET9","index":"0.000006680430297789"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001707974867576"},{"denom":"ASSET1","index":"0.000014238090744503"},{"denom":"ASSET10","index":"0.000009920037235236"},{"denom":"ASSET11","index":"0.000013773690453356"},{"denom":"ASSET12","index":"0.000012403461252069"},{"denom":"ASSET13","index":"0.000004268385028930"},{"denom":"ASSET14","index":"0.000012866619831208"},{"denom":"ASSET15","index":"0.000009199844270355"},{"denom":"ASSET16","index":"0.000006414063379473"},{"denom":"ASSET17","index":"0.000004555220502875"},{"denom":"ASSET18","index":"0.000002169891734707"},{"denom":"ASSET2","index":"0.000004203195148489"},{"denom":"ASSET3","index":"0.000001229294888332"},{"denom":"ASSET4","index":"0.000011570893350426"},{"denom":"ASSET5","index":"0.000000954255678468"},{"denom":"ASSET6","index":"0.000003884075162326"},{"denom":"ASSET7","index":"0.000005948421376317"},{"denom":"ASSET8","index":"0.000007761941764609"},{"denom":"ASSET9","index":"0.000003352622422724"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003075387603983"},{"denom":"ASSET1","index":"0.000026047450678709"},{"denom":"ASSET10","index":"0.000020531243448578"},{"denom":"ASSET11","index":"0.000025816927992783"},{"denom":"ASSET12","index":"0.000024485469945303"},{"denom":"ASSET13","index":"0.000008098391373250"},{"denom":"ASSET14","index":"0.000023735883509134"},{"denom":"ASSET15","index":"0.000018540774078871"},{"denom":"ASSET16","index":"0.000011572711306393"},{"denom":"ASSET17","index":"0.000008997644319689"},{"denom":"ASSET18","index":"0.000003770348288081"},{"denom":"ASSET2","index":"0.000007868945206789"},{"denom":"ASSET3","index":"0.000002196489262864"},{"denom":"ASSET4","index":"0.000021122354693053"},{"denom":"ASSET5","index":"0.000001710501624761"},{"denom":"ASSET6","index":"0.000006909892735753"},{"denom":"ASSET7","index":"0.000010827333344051"},{"denom":"ASSET8","index":"0.000014723239896475"},{"denom":"ASSET9","index":"0.000006260042064096"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001779156074987"},{"denom":"ASSET1","index":"0.000014834764457923"},{"denom":"ASSET10","index":"0.000010335215703318"},{"denom":"ASSET11","index":"0.000014351450406057"},{"denom":"ASSET12","index":"0.000012923397473821"},{"denom":"ASSET13","index":"0.000004447014618532"},{"denom":"ASSET14","index":"0.000013405835956753"},{"denom":"ASSET15","index":"0.000009584853126417"},{"denom":"ASSET16","index":"0.000006682342108415"},{"denom":"ASSET17","index":"0.000004745583625211"},{"denom":"ASSET18","index":"0.000002260718988984"},{"denom":"ASSET2","index":"0.000004378720241638"},{"denom":"ASSET3","index":"0.000001280957351233"},{"denom":"ASSET4","index":"0.000012055708659691"},{"denom":"ASSET5","index":"0.000000993770740704"},{"denom":"ASSET6","index":"0.000004046879615447"},{"denom":"ASSET7","index":"0.000006197276918679"},{"denom":"ASSET8","index":"0.000008086754679418"},{"denom":"ASSET9","index":"0.000003492644479883"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003478645419875"},{"denom":"ASSET1","index":"0.000029510728520321"},{"denom":"ASSET10","index":"0.000023521700007579"},{"denom":"ASSET11","index":"0.000029317721838376"},{"denom":"ASSET12","index":"0.000027938200533330"},{"denom":"ASSET13","index":"0.000009206643656085"},{"denom":"ASSET14","index":"0.000026913511393693"},{"denom":"ASSET15","index":"0.000021192735957156"},{"denom":"ASSET16","index":"0.000013092928863665"},{"denom":"ASSET17","index":"0.000010265835619821"},{"denom":"ASSET18","index":"0.000004249633310572"},{"denom":"ASSET2","index":"0.000008933634051769"},{"denom":"ASSET3","index":"0.000002482776919113"},{"denom":"ASSET4","index":"0.000023925662277258"},{"denom":"ASSET5","index":"0.000001933519521756"},{"denom":"ASSET6","index":"0.000007806757132876"},{"denom":"ASSET7","index":"0.000012260200744601"},{"denom":"ASSET8","index":"0.000016737737824425"},{"denom":"ASSET9","index":"0.000007106044722519"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001752700098923"},{"denom":"ASSET1","index":"0.000014612940709519"},{"denom":"ASSET10","index":"0.000010180696541309"},{"denom":"ASSET11","index":"0.000014136053678762"},{"denom":"ASSET12","index":"0.000012730078503378"},{"denom":"ASSET13","index":"0.000004380628160175"},{"denom":"ASSET14","index":"0.000013205843447004"},{"denom":"ASSET15","index":"0.000009441241121853"},{"denom":"ASSET16","index":"0.000006583285198706"},{"denom":"ASSET17","index":"0.000004674614988548"},{"denom":"ASSET18","index":"0.000002226220868286"},{"denom":"ASSET2","index":"0.000004313302932304"},{"denom":"ASSET3","index":"0.000001261225935460"},{"denom":"ASSET4","index":"0.000011875048109410"},{"denom":"ASSET5","index":"0.000000979582065531"},{"denom":"ASSET6","index":"0.000003985653489996"},{"denom":"ASSET7","index":"0.000006105276080818"},{"denom":"ASSET8","index":"0.000007965696544335"},{"denom":"ASSET9","index":"0.000003440319144236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003327512121722"},{"denom":"ASSET1","index":"0.000028211822531533"},{"denom":"ASSET10","index":"0.000022399629444355"},{"denom":"ASSET11","index":"0.000028004032167971"},{"denom":"ASSET12","index":"0.000026643127370344"},{"denom":"ASSET13","index":"0.000008791339050068"},{"denom":"ASSET14","index":"0.000025722152469956"},{"denom":"ASSET15","index":"0.000020197596080044"},{"denom":"ASSET16","index":"0.000012523737733641"},{"denom":"ASSET17","index":"0.000009790102863953"},{"denom":"ASSET18","index":"0.000004069245825383"},{"denom":"ASSET2","index":"0.000008534453115749"},{"denom":"ASSET3","index":"0.000002375171252372"},{"denom":"ASSET4","index":"0.000022873545881432"},{"denom":"ASSET5","index":"0.000001850500835715"},{"denom":"ASSET6","index":"0.000007470212303630"},{"denom":"ASSET7","index":"0.000011723166108277"},{"denom":"ASSET8","index":"0.000015981595788329"},{"denom":"ASSET9","index":"0.000006788341225254"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001434713876400"},{"denom":"ASSET1","index":"0.000011974044460331"},{"denom":"ASSET10","index":"0.000008340728508476"},{"denom":"ASSET11","index":"0.000011582406348125"},{"denom":"ASSET12","index":"0.000010430757641934"},{"denom":"ASSET13","index":"0.000003588723493535"},{"denom":"ASSET14","index":"0.000010820456951604"},{"denom":"ASSET15","index":"0.000007735822117345"},{"denom":"ASSET16","index":"0.000005393748654249"},{"denom":"ASSET17","index":"0.000003829135007959"},{"denom":"ASSET18","index":"0.000001824413186071"},{"denom":"ASSET2","index":"0.000003534437022536"},{"denom":"ASSET3","index":"0.000001033381751515"},{"denom":"ASSET4","index":"0.000009730849926555"},{"denom":"ASSET5","index":"0.000000802664249770"},{"denom":"ASSET6","index":"0.000003264943470077"},{"denom":"ASSET7","index":"0.000005002110542043"},{"denom":"ASSET8","index":"0.000006526009335083"},{"denom":"ASSET9","index":"0.000002819018886872"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000002895048613815"},{"denom":"ASSET1","index":"0.000024589366099895"},{"denom":"ASSET10","index":"0.000019676065498265"},{"denom":"ASSET11","index":"0.000024447379266412"},{"denom":"ASSET12","index":"0.000023337478265694"},{"denom":"ASSET13","index":"0.000007679998629802"},{"denom":"ASSET14","index":"0.000022431328797509"},{"denom":"ASSET15","index":"0.000017714358679290"},{"denom":"ASSET16","index":"0.000010904445776568"},{"denom":"ASSET17","index":"0.000008574179211920"},{"denom":"ASSET18","index":"0.000003534399202209"},{"denom":"ASSET2","index":"0.000007450371795821"},{"denom":"ASSET3","index":"0.000002066219984895"},{"denom":"ASSET4","index":"0.000019933989143940"},{"denom":"ASSET5","index":"0.000001610899827710"},{"denom":"ASSET6","index":"0.000006497050827728"},{"denom":"ASSET7","index":"0.000010213894093182"},{"denom":"ASSET8","index":"0.000013962110633776"},{"denom":"ASSET9","index":"0.000005925048173997"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001401536005232"},{"denom":"ASSET1","index":"0.000011690786017211"},{"denom":"ASSET10","index":"0.000008143726832164"},{"denom":"ASSET11","index":"0.000011307987636928"},{"denom":"ASSET12","index":"0.000010184289165772"},{"denom":"ASSET13","index":"0.000003503840013080"},{"denom":"ASSET14","index":"0.000010564000462344"},{"denom":"ASSET15","index":"0.000007554093843178"},{"denom":"ASSET16","index":"0.000005266564812612"},{"denom":"ASSET17","index":"0.000003738458375190"},{"denom":"ASSET18","index":"0.000001781247301804"},{"denom":"ASSET2","index":"0.000003448272506265"},{"denom":"ASSET3","index":"0.000001009476373813"},{"denom":"ASSET4","index":"0.000009498956581716"},{"denom":"ASSET5","index":"0.000000781032179127"},{"denom":"ASSET6","index":"0.000003188957474460"},{"denom":"ASSET7","index":"0.000004883766432329"},{"denom":"ASSET8","index":"0.000006371740781496"},{"denom":"ASSET9","index":"0.000002750591587361"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003071913026336"},{"denom":"ASSET1","index":"0.000026115211920195"},{"denom":"ASSET10","index":"0.000021104918039272"},{"denom":"ASSET11","index":"0.000026018207650283"},{"denom":"ASSET12","index":"0.000024942011742431"},{"denom":"ASSET13","index":"0.000008182453133262"},{"denom":"ASSET14","index":"0.000023839798810024"},{"denom":"ASSET15","index":"0.000018963275072170"},{"denom":"ASSET16","index":"0.000011567273660047"},{"denom":"ASSET17","index":"0.000009164652819502"},{"denom":"ASSET18","index":"0.000003735860972186"},{"denom":"ASSET2","index":"0.000007925194415041"},{"denom":"ASSET3","index":"0.000002190810612048"},{"denom":"ASSET4","index":"0.000021165118890878"},{"denom":"ASSET5","index":"0.000001704606606646"},{"denom":"ASSET6","index":"0.000006884812645629"},{"denom":"ASSET7","index":"0.000010842612570084"},{"denom":"ASSET8","index":"0.000014874699612932"},{"denom":"ASSET9","index":"0.000006301602876980"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001534549585700"},{"denom":"ASSET1","index":"0.000012795681230217"},{"denom":"ASSET10","index":"0.000008914897664776"},{"denom":"ASSET11","index":"0.000012378406858633"},{"denom":"ASSET12","index":"0.000011146809898878"},{"denom":"ASSET13","index":"0.000003835934265229"},{"denom":"ASSET14","index":"0.000011563204872419"},{"denom":"ASSET15","index":"0.000008267660704848"},{"denom":"ASSET16","index":"0.000005764014475342"},{"denom":"ASSET17","index":"0.000004093597891939"},{"denom":"ASSET18","index":"0.000001950065161198"},{"denom":"ASSET2","index":"0.000003777014596322"},{"denom":"ASSET3","index":"0.000001104963641508"},{"denom":"ASSET4","index":"0.000010398442163960"},{"denom":"ASSET5","index":"0.000000857413092297"},{"denom":"ASSET6","index":"0.000003490330834180"},{"denom":"ASSET7","index":"0.000005345421006692"},{"denom":"ASSET8","index":"0.000006975385280099"},{"denom":"ASSET9","index":"0.000003012817696624"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003034954909236"},{"denom":"ASSET1","index":"0.000025752158165977"},{"denom":"ASSET10","index":"0.000020556858138008"},{"denom":"ASSET11","index":"0.000025591676311293"},{"denom":"ASSET12","index":"0.000024402528250789"},{"denom":"ASSET13","index":"0.000008038375291107"},{"denom":"ASSET14","index":"0.000023488313497799"},{"denom":"ASSET15","index":"0.000018516037809802"},{"denom":"ASSET16","index":"0.000011423945454084"},{"denom":"ASSET17","index":"0.000008967524527402"},{"denom":"ASSET18","index":"0.000003706330058793"},{"denom":"ASSET2","index":"0.000007798931182527"},{"denom":"ASSET3","index":"0.000002166419358500"},{"denom":"ASSET4","index":"0.000020877722621984"},{"denom":"ASSET5","index":"0.000001687498984799"},{"denom":"ASSET6","index":"0.000006810207932767"},{"denom":"ASSET7","index":"0.000010698180555138"},{"denom":"ASSET8","index":"0.000014612921845389"},{"denom":"ASSET9","index":"0.000006203015740356"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001658482037183"},{"denom":"ASSET1","index":"0.000013862588923046"},{"denom":"ASSET10","index":"0.000009655943522610"},{"denom":"ASSET11","index":"0.000013408077810815"},{"denom":"ASSET12","index":"0.000012073555821711"},{"denom":"ASSET13","index":"0.000004153457929856"},{"denom":"ASSET14","index":"0.000012528066933942"},{"denom":"ASSET15","index":"0.000008954835955871"},{"denom":"ASSET16","index":"0.000006242274956279"},{"denom":"ASSET17","index":"0.000004433900956551"},{"denom":"ASSET18","index":"0.000002112993149414"},{"denom":"ASSET2","index":"0.000004090600010079"},{"denom":"ASSET3","index":"0.000001194300475756"},{"denom":"ASSET4","index":"0.000011266073313811"},{"denom":"ASSET5","index":"0.000000928363122855"},{"denom":"ASSET6","index":"0.000003781145635794"},{"denom":"ASSET7","index":"0.000005787763844048"},{"denom":"ASSET8","index":"0.000007557456046990"},{"denom":"ASSET9","index":"0.000003263776603787"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003188277912377"},{"denom":"ASSET1","index":"0.000027072180177666"},{"denom":"ASSET10","index":"0.000021525590492702"},{"denom":"ASSET11","index":"0.000026879695640981"},{"denom":"ASSET12","index":"0.000025588321740665"},{"denom":"ASSET13","index":"0.000008437670891103"},{"denom":"ASSET14","index":"0.000024686413843557"},{"denom":"ASSET15","index":"0.000019403734038796"},{"denom":"ASSET16","index":"0.000012012351193227"},{"denom":"ASSET17","index":"0.000009402991763462"},{"denom":"ASSET18","index":"0.000003903246578743"},{"denom":"ASSET2","index":"0.000008191237466303"},{"denom":"ASSET3","index":"0.000002276140738265"},{"denom":"ASSET4","index":"0.000021950324608304"},{"denom":"ASSET5","index":"0.000001774065663090"},{"denom":"ASSET6","index":"0.000007165524818145"},{"denom":"ASSET7","index":"0.000011244820309610"},{"denom":"ASSET8","index":"0.000015343724796373"},{"denom":"ASSET9","index":"0.000006516357987660"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001453411320498"},{"denom":"ASSET1","index":"0.000012118137400313"},{"denom":"ASSET10","index":"0.000008442891188019"},{"denom":"ASSET11","index":"0.000011723343510399"},{"denom":"ASSET12","index":"0.000010556870017106"},{"denom":"ASSET13","index":"0.000003632917795231"},{"denom":"ASSET14","index":"0.000010951256903010"},{"denom":"ASSET15","index":"0.000007829943148627"},{"denom":"ASSET16","index":"0.000005459144789091"},{"denom":"ASSET17","index":"0.000003877120201363"},{"denom":"ASSET18","index":"0.000001846984198382"},{"denom":"ASSET2","index":"0.000003577158245830"},{"denom":"ASSET3","index":"0.000001046407310278"},{"denom":"ASSET4","index":"0.000009848276035312"},{"denom":"ASSET5","index":"0.000000811973000390"},{"denom":"ASSET6","index":"0.000003305686571013"},{"denom":"ASSET7","index":"0.000005062722883136"},{"denom":"ASSET8","index":"0.000006606082089893"},{"denom":"ASSET9","index":"0.000002853098111648"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000002979919393708"},{"denom":"ASSET1","index":"0.000025298333716476"},{"denom":"ASSET10","index":"0.000020286143685892"},{"denom":"ASSET11","index":"0.000025164674259360"},{"denom":"ASSET12","index":"0.000024041723171534"},{"denom":"ASSET13","index":"0.000007907785176595"},{"denom":"ASSET14","index":"0.000023082402053339"},{"denom":"ASSET15","index":"0.000018255332392862"},{"denom":"ASSET16","index":"0.000011216675450010"},{"denom":"ASSET17","index":"0.000008835128154455"},{"denom":"ASSET18","index":"0.000003633337151635"},{"denom":"ASSET2","index":"0.000007668586747858"},{"denom":"ASSET3","index":"0.000002126085354033"},{"denom":"ASSET4","index":"0.000020508686269066"},{"denom":"ASSET5","index":"0.000001656307666438"},{"denom":"ASSET6","index":"0.000006683025235204"},{"denom":"ASSET7","index":"0.000010507859389263"},{"denom":"ASSET8","index":"0.000014375637436113"},{"denom":"ASSET9","index":"0.000006098257618497"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001779729226299"},{"denom":"ASSET1","index":"0.000014840802182142"},{"denom":"ASSET10","index":"0.000010337989986643"},{"denom":"ASSET11","index":"0.000014356968690293"},{"denom":"ASSET12","index":"0.000012927350131463"},{"denom":"ASSET13","index":"0.000004449323065747"},{"denom":"ASSET14","index":"0.000013411183623312"},{"denom":"ASSET15","index":"0.000009589142170113"},{"denom":"ASSET16","index":"0.000006683709894939"},{"denom":"ASSET17","index":"0.000004745944603463"},{"denom":"ASSET18","index":"0.000002261131394068"},{"denom":"ASSET2","index":"0.000004378814667437"},{"denom":"ASSET3","index":"0.000001281307789972"},{"denom":"ASSET4","index":"0.000012059367435030"},{"denom":"ASSET5","index":"0.000000994411548574"},{"denom":"ASSET6","index":"0.000004048154592606"},{"denom":"ASSET7","index":"0.000006199876403090"},{"denom":"ASSET8","index":"0.000008089015212973"},{"denom":"ASSET9","index":"0.000003493812702447"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003433377044021"},{"denom":"ASSET1","index":"0.000029119719093870"},{"denom":"ASSET10","index":"0.000023168779363922"},{"denom":"ASSET11","index":"0.000028918871222836"},{"denom":"ASSET12","index":"0.000027536680421684"},{"denom":"ASSET13","index":"0.000009079853140421"},{"denom":"ASSET14","index":"0.000026553415276013"},{"denom":"ASSET15","index":"0.000020883272198610"},{"denom":"ASSET16","index":"0.000012920460029656"},{"denom":"ASSET17","index":"0.000010116347697920"},{"denom":"ASSET18","index":"0.000004196183907349"},{"denom":"ASSET2","index":"0.000008810148159861"},{"denom":"ASSET3","index":"0.000002451192479374"},{"denom":"ASSET4","index":"0.000023608026429735"},{"denom":"ASSET5","index":"0.000001908186346512"},{"denom":"ASSET6","index":"0.000007706415634871"},{"denom":"ASSET7","index":"0.000012098308533034"},{"denom":"ASSET8","index":"0.000016505861275643"},{"denom":"ASSET9","index":"0.000007009790471677"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001595670533734"},{"denom":"ASSET1","index":"0.000013304245337308"},{"denom":"ASSET10","index":"0.000009268754359880"},{"denom":"ASSET11","index":"0.000012870227612725"},{"denom":"ASSET12","index":"0.000011589729681675"},{"denom":"ASSET13","index":"0.000003988302473145"},{"denom":"ASSET14","index":"0.000012022582258004"},{"denom":"ASSET15","index":"0.000008595881243245"},{"denom":"ASSET16","index":"0.000005992940044003"},{"denom":"ASSET17","index":"0.000004256286571545"},{"denom":"ASSET18","index":"0.000002027357961809"},{"denom":"ASSET2","index":"0.000003927132189815"},{"denom":"ASSET3","index":"0.000001148836178358"},{"denom":"ASSET4","index":"0.000010811993222188"},{"denom":"ASSET5","index":"0.000000891338414244"},{"denom":"ASSET6","index":"0.000003628854236813"},{"denom":"ASSET7","index":"0.000005557757171166"},{"denom":"ASSET8","index":"0.000007252465306483"},{"denom":"ASSET9","index":"0.000003132501080646"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003118409098775"},{"denom":"ASSET1","index":"0.000026454243753489"},{"denom":"ASSET10","index":"0.000021084585905412"},{"denom":"ASSET11","index":"0.000026280950742513"},{"denom":"ASSET12","index":"0.000025043390497745"},{"denom":"ASSET13","index":"0.000008253298424938"},{"denom":"ASSET14","index":"0.000024125697910719"},{"denom":"ASSET15","index":"0.000018997425080839"},{"denom":"ASSET16","index":"0.000011737294217995"},{"denom":"ASSET17","index":"0.000009202973625129"},{"denom":"ASSET18","index":"0.000003809493270778"},{"denom":"ASSET2","index":"0.000008008868325931"},{"denom":"ASSET3","index":"0.000002225819587877"},{"denom":"ASSET4","index":"0.000021447702379813"},{"denom":"ASSET5","index":"0.000001733713847172"},{"denom":"ASSET6","index":"0.000006998355968525"},{"denom":"ASSET7","index":"0.000010990481127196"},{"denom":"ASSET8","index":"0.000015003824321723"},{"denom":"ASSET9","index":"0.000006370091157596"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001536288093705"},{"denom":"ASSET1","index":"0.000012808796131863"},{"denom":"ASSET10","index":"0.000008924322337818"},{"denom":"ASSET11","index":"0.000012391382492026"},{"denom":"ASSET12","index":"0.000011158327625467"},{"denom":"ASSET13","index":"0.000003840018305497"},{"denom":"ASSET14","index":"0.000011575273312793"},{"denom":"ASSET15","index":"0.000008276208110044"},{"denom":"ASSET16","index":"0.000005770322413488"},{"denom":"ASSET17","index":"0.000004097860139074"},{"denom":"ASSET18","index":"0.000001951829923499"},{"denom":"ASSET2","index":"0.000003781056289108"},{"denom":"ASSET3","index":"0.000001105771783560"},{"denom":"ASSET4","index":"0.000010409603607822"},{"denom":"ASSET5","index":"0.000000858224905226"},{"denom":"ASSET6","index":"0.000003494201399847"},{"denom":"ASSET7","index":"0.000005351036963607"},{"denom":"ASSET8","index":"0.000006982787369562"},{"denom":"ASSET9","index":"0.000003015953933577"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003103831608428"},{"denom":"ASSET1","index":"0.000026343132935309"},{"denom":"ASSET10","index":"0.000021085436521682"},{"denom":"ASSET11","index":"0.000026194005406126"},{"denom":"ASSET12","index":"0.000025005394550642"},{"denom":"ASSET13","index":"0.000008229918727938"},{"denom":"ASSET14","index":"0.000024032248358707"},{"denom":"ASSET15","index":"0.000018981699828973"},{"denom":"ASSET16","index":"0.000011682673521897"},{"denom":"ASSET17","index":"0.000009189132473525"},{"denom":"ASSET18","index":"0.000003786361913516"},{"denom":"ASSET2","index":"0.000007982150766688"},{"denom":"ASSET3","index":"0.000002214601198569"},{"denom":"ASSET4","index":"0.000021356131094847"},{"denom":"ASSET5","index":"0.000001725369734459"},{"denom":"ASSET6","index":"0.000006962131899100"},{"denom":"ASSET7","index":"0.000010942547729288"},{"denom":"ASSET8","index":"0.000014960973970884"},{"denom":"ASSET9","index":"0.000006348281537724"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001156201861882"},{"denom":"ASSET1","index":"0.000009641528249827"},{"denom":"ASSET10","index":"0.000006717693720376"},{"denom":"ASSET11","index":"0.000009327193051790"},{"denom":"ASSET12","index":"0.000008399128436016"},{"denom":"ASSET13","index":"0.000002890504654704"},{"denom":"ASSET14","index":"0.000008712888981039"},{"denom":"ASSET15","index":"0.000006229813312455"},{"denom":"ASSET16","index":"0.000004343227471224"},{"denom":"ASSET17","index":"0.000003084737373052"},{"denom":"ASSET18","index":"0.000001469387753892"},{"denom":"ASSET2","index":"0.000002846256372714"},{"denom":"ASSET3","index":"0.000000832672215639"},{"denom":"ASSET4","index":"0.000007835393830396"},{"denom":"ASSET5","index":"0.000000645909986459"},{"denom":"ASSET6","index":"0.000002630186839877"},{"denom":"ASSET7","index":"0.000004027742967162"},{"denom":"ASSET8","index":"0.000005256351108664"},{"denom":"ASSET9","index":"0.000002269879400812"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000002648545180722"},{"denom":"ASSET1","index":"0.000022528915692996"},{"denom":"ASSET10","index":"0.000018297756458480"},{"denom":"ASSET11","index":"0.000022469822082599"},{"denom":"ASSET12","index":"0.000021584227648624"},{"denom":"ASSET13","index":"0.000007070243338634"},{"denom":"ASSET14","index":"0.000020574684608302"},{"denom":"ASSET15","index":"0.000016423497937791"},{"denom":"ASSET16","index":"0.000009972839292196"},{"denom":"ASSET17","index":"0.000007932645550822"},{"denom":"ASSET18","index":"0.000003216131666673"},{"denom":"ASSET2","index":"0.000006846442901912"},{"denom":"ASSET3","index":"0.000001888119307859"},{"denom":"ASSET4","index":"0.000018258669735553"},{"denom":"ASSET5","index":"0.000001471345302008"},{"denom":"ASSET6","index":"0.000005932348598922"},{"denom":"ASSET7","index":"0.000009352074075404"},{"denom":"ASSET8","index":"0.000012853047191550"},{"denom":"ASSET9","index":"0.000005442948627063"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001638829976996"},{"denom":"ASSET1","index":"0.000013663699511091"},{"denom":"ASSET10","index":"0.000009519748943981"},{"denom":"ASSET11","index":"0.000013218199388741"},{"denom":"ASSET12","index":"0.000011902774883924"},{"denom":"ASSET13","index":"0.000004095984811686"},{"denom":"ASSET14","index":"0.000012347548252404"},{"denom":"ASSET15","index":"0.000008827879259679"},{"denom":"ASSET16","index":"0.000006154878525580"},{"denom":"ASSET17","index":"0.000004371424528441"},{"denom":"ASSET18","index":"0.000002082149837736"},{"denom":"ASSET2","index":"0.000004033483978861"},{"denom":"ASSET3","index":"0.000001179521531115"},{"denom":"ASSET4","index":"0.000011104072380722"},{"denom":"ASSET5","index":"0.000000915709876282"},{"denom":"ASSET6","index":"0.000003726793845693"},{"denom":"ASSET7","index":"0.000005707924895490"},{"denom":"ASSET8","index":"0.000007448500414296"},{"denom":"ASSET9","index":"0.000003217339382778"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003133427860009"},{"denom":"ASSET1","index":"0.000026571363581284"},{"denom":"ASSET10","index":"0.000021118003104150"},{"denom":"ASSET11","index":"0.000026381510155653"},{"denom":"ASSET12","index":"0.000025108485590780"},{"denom":"ASSET13","index":"0.000008282355352591"},{"denom":"ASSET14","index":"0.000024227637307493"},{"denom":"ASSET15","index":"0.000019037535386694"},{"denom":"ASSET16","index":"0.000011793447009555"},{"denom":"ASSET17","index":"0.000009226841180516"},{"denom":"ASSET18","index":"0.000003831770888939"},{"denom":"ASSET2","index":"0.000008040278303534"},{"denom":"ASSET3","index":"0.000002236402387063"},{"denom":"ASSET4","index":"0.000021543810534784"},{"denom":"ASSET5","index":"0.000001742508705183"},{"denom":"ASSET6","index":"0.000007033989161296"},{"denom":"ASSET7","index":"0.000011040340871930"},{"denom":"ASSET8","index":"0.000015056795520064"},{"denom":"ASSET9","index":"0.000006395464292965"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001556422065682"},{"denom":"ASSET1","index":"0.000012975233747354"},{"denom":"ASSET10","index":"0.000009039925804131"},{"denom":"ASSET11","index":"0.000012551842294036"},{"denom":"ASSET12","index":"0.000011303196313064"},{"denom":"ASSET13","index":"0.000003889859143149"},{"denom":"ASSET14","index":"0.000011725391745328"},{"denom":"ASSET15","index":"0.000008383310245172"},{"denom":"ASSET16","index":"0.000005844954893688"},{"denom":"ASSET17","index":"0.000004150990406731"},{"denom":"ASSET18","index":"0.000001977421476890"},{"denom":"ASSET2","index":"0.000003830058090421"},{"denom":"ASSET3","index":"0.000001120273054448"},{"denom":"ASSET4","index":"0.000010544520290781"},{"denom":"ASSET5","index":"0.000000869507306673"},{"denom":"ASSET6","index":"0.000003539424974160"},{"denom":"ASSET7","index":"0.000005420766093000"},{"denom":"ASSET8","index":"0.000007073268516732"},{"denom":"ASSET9","index":"0.000003055036447059"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003102345998156"},{"denom":"ASSET1","index":"0.000026324295521459"},{"denom":"ASSET10","index":"0.000021034709957123"},{"denom":"ASSET11","index":"0.000026165624152899"},{"denom":"ASSET12","index":"0.000024960753498443"},{"denom":"ASSET13","index":"0.000008219480216908"},{"denom":"ASSET14","index":"0.000024012126304297"},{"denom":"ASSET15","index":"0.000018942125813395"},{"denom":"ASSET16","index":"0.000011676379885795"},{"denom":"ASSET17","index":"0.000009172744202097"},{"denom":"ASSET18","index":"0.000003786686743681"},{"denom":"ASSET2","index":"0.000007973892542195"},{"denom":"ASSET3","index":"0.000002213622154517"},{"denom":"ASSET4","index":"0.000021341514997764"},{"denom":"ASSET5","index":"0.000001724677267981"},{"denom":"ASSET6","index":"0.000006959760131783"},{"denom":"ASSET7","index":"0.000010935767858794"},{"denom":"ASSET8","index":"0.000014942141973689"},{"denom":"ASSET9","index":"0.000006341977499472"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001602535700795"},{"denom":"ASSET1","index":"0.000013360208994045"},{"denom":"ASSET10","index":"0.000009307956057468"},{"denom":"ASSET11","index":"0.000012924500245282"},{"denom":"ASSET12","index":"0.000011638378499862"},{"denom":"ASSET13","index":"0.000004005127453862"},{"denom":"ASSET14","index":"0.000012073279383206"},{"denom":"ASSET15","index":"0.000008632311279566"},{"denom":"ASSET16","index":"0.000006018597363935"},{"denom":"ASSET17","index":"0.000004274146638048"},{"denom":"ASSET18","index":"0.000002036090141777"},{"denom":"ASSET2","index":"0.000003943729682095"},{"denom":"ASSET3","index":"0.000001153631816872"},{"denom":"ASSET4","index":"0.000010857441929150"},{"denom":"ASSET5","index":"0.000000895384171592"},{"denom":"ASSET6","index":"0.000003644280900498"},{"denom":"ASSET7","index":"0.000005581542172809"},{"denom":"ASSET8","index":"0.000007283176031543"},{"denom":"ASSET9","index":"0.000003145827937606"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003144114236048"},{"denom":"ASSET1","index":"0.000026672683120621"},{"denom":"ASSET10","index":"0.000021269722635007"},{"denom":"ASSET11","index":"0.000026500587720899"},{"denom":"ASSET12","index":"0.000025258297912053"},{"denom":"ASSET13","index":"0.000008323039503604"},{"denom":"ASSET14","index":"0.000024326015412045"},{"denom":"ASSET15","index":"0.000019162234595686"},{"denom":"ASSET16","index":"0.000011833945147558"},{"denom":"ASSET17","index":"0.000009281867675434"},{"denom":"ASSET18","index":"0.000003840349431676"},{"denom":"ASSET2","index":"0.000008076055447193"},{"denom":"ASSET3","index":"0.000002244145529651"},{"denom":"ASSET4","index":"0.000021624555086447"},{"denom":"ASSET5","index":"0.000001748086313596"},{"denom":"ASSET6","index":"0.000007055400333314"},{"denom":"ASSET7","index":"0.000011081362186058"},{"denom":"ASSET8","index":"0.000015130336137492"},{"denom":"ASSET9","index":"0.000006423586371910"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001633811359009"},{"denom":"ASSET1","index":"0.000013620164108551"},{"denom":"ASSET10","index":"0.000009487838038290"},{"denom":"ASSET11","index":"0.000013174776703502"},{"denom":"ASSET12","index":"0.000011864685946211"},{"denom":"ASSET13","index":"0.000004082355776036"},{"denom":"ASSET14","index":"0.000012307900729772"},{"denom":"ASSET15","index":"0.000008799117026580"},{"denom":"ASSET16","index":"0.000006135483082238"},{"denom":"ASSET17","index":"0.000004356106083529"},{"denom":"ASSET18","index":"0.000002074853521082"},{"denom":"ASSET2","index":"0.000004019349752882"},{"denom":"ASSET3","index":"0.000001175388225032"},{"denom":"ASSET4","index":"0.000011067333860098"},{"denom":"ASSET5","index":"0.000000912501024979"},{"denom":"ASSET6","index":"0.000003715182744556"},{"denom":"ASSET7","index":"0.000005690095677188"},{"denom":"ASSET8","index":"0.000007423847624648"},{"denom":"ASSET9","index":"0.000003206789316354"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003109600829404"},{"denom":"ASSET1","index":"0.000026362702045617"},{"denom":"ASSET10","index":"0.000020937844947102"},{"denom":"ASSET11","index":"0.000026169598808926"},{"denom":"ASSET12","index":"0.000024901798461360"},{"denom":"ASSET13","index":"0.000008215149609138"},{"denom":"ASSET14","index":"0.000024035954930107"},{"denom":"ASSET15","index":"0.000018878331344314"},{"denom":"ASSET16","index":"0.000011701775976010"},{"denom":"ASSET17","index":"0.000009149505282332"},{"denom":"ASSET18","index":"0.000003801954966508"},{"denom":"ASSET2","index":"0.000007974718303805"},{"denom":"ASSET3","index":"0.000002219037761573"},{"denom":"ASSET4","index":"0.000021373555319687"},{"denom":"ASSET5","index":"0.000001728657323000"},{"denom":"ASSET6","index":"0.000006980294033305"},{"denom":"ASSET7","index":"0.000010954522542925"},{"denom":"ASSET8","index":"0.000014935013269095"},{"denom":"ASSET9","index":"0.000006344057182602"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001356454583190"},{"denom":"ASSET1","index":"0.000011307707773056"},{"denom":"ASSET10","index":"0.000007878355411964"},{"denom":"ASSET11","index":"0.000010938987301217"},{"denom":"ASSET12","index":"0.000009850463994830"},{"denom":"ASSET13","index":"0.000003389876593037"},{"denom":"ASSET14","index":"0.000010218764511690"},{"denom":"ASSET15","index":"0.000007305956775156"},{"denom":"ASSET16","index":"0.000005094053899100"},{"denom":"ASSET17","index":"0.000003617492191826"},{"denom":"ASSET18","index":"0.000001723075280133"},{"denom":"ASSET2","index":"0.000003337802175602"},{"denom":"ASSET3","index":"0.000000976395326909"},{"denom":"ASSET4","index":"0.000009189454857387"},{"denom":"ASSET5","index":"0.000000758018737665"},{"denom":"ASSET6","index":"0.000003084569323074"},{"denom":"ASSET7","index":"0.000004724073562323"},{"denom":"ASSET8","index":"0.000006164519141376"},{"denom":"ASSET9","index":"0.000002662514568862"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000002920257070141"},{"denom":"ASSET1","index":"0.000024811653868653"},{"denom":"ASSET10","index":"0.000020012294768332"},{"denom":"ASSET11","index":"0.000024710629923001"},{"denom":"ASSET12","index":"0.000023666550441425"},{"denom":"ASSET13","index":"0.000007769918885884"},{"denom":"ASSET14","index":"0.000022647790193256"},{"denom":"ASSET15","index":"0.000017987461600930"},{"denom":"ASSET16","index":"0.000010993196459757"},{"denom":"ASSET17","index":"0.000008697266331114"},{"denom":"ASSET18","index":"0.000003553540715950"},{"denom":"ASSET2","index":"0.000007529733395993"},{"denom":"ASSET3","index":"0.000002082581454906"},{"denom":"ASSET4","index":"0.000020111524804667"},{"denom":"ASSET5","index":"0.000001623122955496"},{"denom":"ASSET6","index":"0.000006544727800067"},{"denom":"ASSET7","index":"0.000010303065547743"},{"denom":"ASSET8","index":"0.000014124873274804"},{"denom":"ASSET9","index":"0.000005987532811110"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001730803097805"},{"denom":"ASSET1","index":"0.000014429128492036"},{"denom":"ASSET10","index":"0.000010053081326419"},{"denom":"ASSET11","index":"0.000013956042311970"},{"denom":"ASSET12","index":"0.000012568515161896"},{"denom":"ASSET13","index":"0.000004324123072683"},{"denom":"ASSET14","index":"0.000013038716670133"},{"denom":"ASSET15","index":"0.000009320374681681"},{"denom":"ASSET16","index":"0.000006499165632259"},{"denom":"ASSET17","index":"0.000004615474927481"},{"denom":"ASSET18","index":"0.000002198119934213"},{"denom":"ASSET2","index":"0.000004257775620601"},{"denom":"ASSET3","index":"0.000001243293558590"},{"denom":"ASSET4","index":"0.000011726190987631"},{"denom":"ASSET5","index":"0.000000966365062941"},{"denom":"ASSET6","index":"0.000003934692375677"},{"denom":"ASSET7","index":"0.000006026079452192"},{"denom":"ASSET8","index":"0.000007863615407695"},{"denom":"ASSET9","index":"0.000003395258743528"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003241945367060"},{"denom":"ASSET1","index":"0.000027480716546724"},{"denom":"ASSET10","index":"0.000021780901079221"},{"denom":"ASSET11","index":"0.000027265989011084"},{"denom":"ASSET12","index":"0.000025921947969478"},{"denom":"ASSET13","index":"0.000008556984130745"},{"denom":"ASSET14","index":"0.000025051754134356"},{"denom":"ASSET15","index":"0.000019643848931612"},{"denom":"ASSET16","index":"0.000012200322352703"},{"denom":"ASSET17","index":"0.000009524928673174"},{"denom":"ASSET18","index":"0.000003966981346299"},{"denom":"ASSET2","index":"0.000008309018225650"},{"denom":"ASSET3","index":"0.000002312540225621"},{"denom":"ASSET4","index":"0.000022282443818183"},{"denom":"ASSET5","index":"0.000001802193647755"},{"denom":"ASSET6","index":"0.000007278646216530"},{"denom":"ASSET7","index":"0.000011418356902196"},{"denom":"ASSET8","index":"0.000015557459098515"},{"denom":"ASSET9","index":"0.000006608754258977"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001631665384825"},{"denom":"ASSET1","index":"0.000013602742609312"},{"denom":"ASSET10","index":"0.000009477179623123"},{"denom":"ASSET11","index":"0.000013159027954757"},{"denom":"ASSET12","index":"0.000011849393704263"},{"denom":"ASSET13","index":"0.000004077627053980"},{"denom":"ASSET14","index":"0.000012292493795584"},{"denom":"ASSET15","index":"0.000008788868801652"},{"denom":"ASSET16","index":"0.000006127810000788"},{"denom":"ASSET17","index":"0.000004351722256101"},{"denom":"ASSET18","index":"0.000002072921786447"},{"denom":"ASSET2","index":"0.000004015556167401"},{"denom":"ASSET3","index":"0.000001174430339134"},{"denom":"ASSET4","index":"0.000011054148880171"},{"denom":"ASSET5","index":"0.000000911397275215"},{"denom":"ASSET6","index":"0.000003710118240373"},{"denom":"ASSET7","index":"0.000005682866219766"},{"denom":"ASSET8","index":"0.000007415319974879"},{"denom":"ASSET9","index":"0.000003202489009539"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003079719434352"},{"denom":"ASSET1","index":"0.000026105925494605"},{"denom":"ASSET10","index":"0.000020711970439773"},{"denom":"ASSET11","index":"0.000025910008103106"},{"denom":"ASSET12","index":"0.000024641613628664"},{"denom":"ASSET13","index":"0.000008133110770201"},{"denom":"ASSET14","index":"0.000023800542954419"},{"denom":"ASSET15","index":"0.000018678884312278"},{"denom":"ASSET16","index":"0.000011589749383737"},{"denom":"ASSET17","index":"0.000009055208366452"},{"denom":"ASSET18","index":"0.000003767697278786"},{"denom":"ASSET2","index":"0.000007896757003962"},{"denom":"ASSET3","index":"0.000002198611212202"},{"denom":"ASSET4","index":"0.000021166859181475"},{"denom":"ASSET5","index":"0.000001712166144109"},{"denom":"ASSET6","index":"0.000006913910929446"},{"denom":"ASSET7","index":"0.000010848237821893"},{"denom":"ASSET8","index":"0.000014785764472138"},{"denom":"ASSET9","index":"0.000006281127943464"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001520990142264"},{"denom":"ASSET1","index":"0.000012680102108631"},{"denom":"ASSET10","index":"0.000008834326429376"},{"denom":"ASSET11","index":"0.000012266893306329"},{"denom":"ASSET12","index":"0.000011046354389007"},{"denom":"ASSET13","index":"0.000003801591675587"},{"denom":"ASSET14","index":"0.000011458856247250"},{"denom":"ASSET15","index":"0.000008193128168148"},{"denom":"ASSET16","index":"0.000005712107994187"},{"denom":"ASSET17","index":"0.000004056798480773"},{"denom":"ASSET18","index":"0.000001932431584420"},{"denom":"ASSET2","index":"0.000003743268790745"},{"denom":"ASSET3","index":"0.000001095056346905"},{"denom":"ASSET4","index":"0.000010304770071444"},{"denom":"ASSET5","index":"0.000000849746758541"},{"denom":"ASSET6","index":"0.000003459077279153"},{"denom":"ASSET7","index":"0.000005297485303768"},{"denom":"ASSET8","index":"0.000006912499005837"},{"denom":"ASSET9","index":"0.000002985778231863"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003063170165442"},{"denom":"ASSET1","index":"0.000025996358951928"},{"denom":"ASSET10","index":"0.000020799618544072"},{"denom":"ASSET11","index":"0.000025846936295403"},{"denom":"ASSET12","index":"0.000024670295822131"},{"denom":"ASSET13","index":"0.000008120644896033"},{"denom":"ASSET14","index":"0.000023715222729701"},{"denom":"ASSET15","index":"0.000018725986369791"},{"denom":"ASSET16","index":"0.000011529047312284"},{"denom":"ASSET17","index":"0.000009065966880203"},{"denom":"ASSET18","index":"0.000003737409049681"},{"denom":"ASSET2","index":"0.000007876841198043"},{"denom":"ASSET3","index":"0.000002185992003768"},{"denom":"ASSET4","index":"0.000021074917159843"},{"denom":"ASSET5","index":"0.000001702800306431"},{"denom":"ASSET6","index":"0.000006871093729972"},{"denom":"ASSET7","index":"0.000010798830402478"},{"denom":"ASSET8","index":"0.000014762015379742"},{"denom":"ASSET9","index":"0.000006264517424621"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001519669987195"},{"denom":"ASSET1","index":"0.000012676623405048"},{"denom":"ASSET10","index":"0.000008831600766261"},{"denom":"ASSET11","index":"0.000012262448940742"},{"denom":"ASSET12","index":"0.000011042591812037"},{"denom":"ASSET13","index":"0.000003799690110356"},{"denom":"ASSET14","index":"0.000011454705706870"},{"denom":"ASSET15","index":"0.000008189733375059"},{"denom":"ASSET16","index":"0.000005709838012905"},{"denom":"ASSET17","index":"0.000004055200725152"},{"denom":"ASSET18","index":"0.000001931783882027"},{"denom":"ASSET2","index":"0.000003741994165079"},{"denom":"ASSET3","index":"0.000001094162390780"},{"denom":"ASSET4","index":"0.000010301817086076"},{"denom":"ASSET5","index":"0.000000848954623355"},{"denom":"ASSET6","index":"0.000003457635577645"},{"denom":"ASSET7","index":"0.000005295663548598"},{"denom":"ASSET8","index":"0.000006910119731604"},{"denom":"ASSET9","index":"0.000002984734883325"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003051401969864"},{"denom":"ASSET1","index":"0.000025903543471827"},{"denom":"ASSET10","index":"0.000020717104247015"},{"denom":"ASSET11","index":"0.000025751820078700"},{"denom":"ASSET12","index":"0.000024575704795191"},{"denom":"ASSET13","index":"0.000008089460542782"},{"denom":"ASSET14","index":"0.000023629519286555"},{"denom":"ASSET15","index":"0.000018652475785738"},{"denom":"ASSET16","index":"0.000011487598582804"},{"denom":"ASSET17","index":"0.000009031027466449"},{"denom":"ASSET18","index":"0.000003724432134289"},{"denom":"ASSET2","index":"0.000007847588407204"},{"denom":"ASSET3","index":"0.000002177732310384"},{"denom":"ASSET4","index":"0.000021000151540181"},{"denom":"ASSET5","index":"0.000001696165098739"},{"denom":"ASSET6","index":"0.000006846477479182"},{"denom":"ASSET7","index":"0.000010760324594985"},{"denom":"ASSET8","index":"0.000014706911787677"},{"denom":"ASSET9","index":"0.000006241583848480"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001392192847149"},{"denom":"ASSET1","index":"0.000011611450847386"},{"denom":"ASSET10","index":"0.000008088781067478"},{"denom":"ASSET11","index":"0.000011231761889073"},{"denom":"ASSET12","index":"0.000010115195100551"},{"denom":"ASSET13","index":"0.000003480482117873"},{"denom":"ASSET14","index":"0.000010492071548062"},{"denom":"ASSET15","index":"0.000007502372565194"},{"denom":"ASSET16","index":"0.000005229863836918"},{"denom":"ASSET17","index":"0.000003713920514466"},{"denom":"ASSET18","index":"0.000001769069294661"},{"denom":"ASSET2","index":"0.000003427044412629"},{"denom":"ASSET3","index":"0.000001002660101028"},{"denom":"ASSET4","index":"0.000009435973741790"},{"denom":"ASSET5","index":"0.000000777659236842"},{"denom":"ASSET6","index":"0.000003166887163415"},{"denom":"ASSET7","index":"0.000004850174878604"},{"denom":"ASSET8","index":"0.000006329555560626"},{"denom":"ASSET9","index":"0.000002733760499857"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000002834261839987"},{"denom":"ASSET1","index":"0.000024063735726127"},{"denom":"ASSET10","index":"0.000019278012414561"},{"denom":"ASSET11","index":"0.000023930766794440"},{"denom":"ASSET12","index":"0.000022855511266190"},{"denom":"ASSET13","index":"0.000007519422832827"},{"denom":"ASSET14","index":"0.000021953268691937"},{"denom":"ASSET15","index":"0.000017352048046781"},{"denom":"ASSET16","index":"0.000010669562284438"},{"denom":"ASSET17","index":"0.000008398158415340"},{"denom":"ASSET18","index":"0.000003456710779118"},{"denom":"ASSET2","index":"0.000007292324829772"},{"denom":"ASSET3","index":"0.000002022818722752"},{"denom":"ASSET4","index":"0.000019507505991506"},{"denom":"ASSET5","index":"0.000001575196067099"},{"denom":"ASSET6","index":"0.000006357416996111"},{"denom":"ASSET7","index":"0.000009994574317511"},{"denom":"ASSET8","index":"0.000013669954492341"},{"denom":"ASSET9","index":"0.000005799591528398"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001553840185331"},{"denom":"ASSET1","index":"0.000012958259817171"},{"denom":"ASSET10","index":"0.000009028099224953"},{"denom":"ASSET11","index":"0.000012533831248030"},{"denom":"ASSET12","index":"0.000011286922457332"},{"denom":"ASSET13","index":"0.000003884600463327"},{"denom":"ASSET14","index":"0.000011708953124953"},{"denom":"ASSET15","index":"0.000008371074208317"},{"denom":"ASSET16","index":"0.000005836492301072"},{"denom":"ASSET17","index":"0.000004143573827548"},{"denom":"ASSET18","index":"0.000001973472951431"},{"denom":"ASSET2","index":"0.000003824652925312"},{"denom":"ASSET3","index":"0.000001117422108587"},{"denom":"ASSET4","index":"0.000010529185576831"},{"denom":"ASSET5","index":"0.000000868040350447"},{"denom":"ASSET6","index":"0.000003534506841323"},{"denom":"ASSET7","index":"0.000005412063731931"},{"denom":"ASSET8","index":"0.000007064217879605"},{"denom":"ASSET9","index":"0.000003050130734168"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000002875427361068"},{"denom":"ASSET1","index":"0.000024372739255487"},{"denom":"ASSET10","index":"0.000019284464921318"},{"denom":"ASSET11","index":"0.000024174413552556"},{"denom":"ASSET12","index":"0.000022964657814992"},{"denom":"ASSET13","index":"0.000007586106071195"},{"denom":"ASSET14","index":"0.000022214775035212"},{"denom":"ASSET15","index":"0.000017399266119679"},{"denom":"ASSET16","index":"0.000010822432031544"},{"denom":"ASSET17","index":"0.000008437405253940"},{"denom":"ASSET18","index":"0.000003520101477575"},{"denom":"ASSET2","index":"0.000007366931162610"},{"denom":"ASSET3","index":"0.000002051556015935"},{"denom":"ASSET4","index":"0.000019761188522524"},{"denom":"ASSET5","index":"0.000001598363223465"},{"denom":"ASSET6","index":"0.000006458982880806"},{"denom":"ASSET7","index":"0.000010127316932433"},{"denom":"ASSET8","index":"0.000013792105044122"},{"denom":"ASSET9","index":"0.000005859963066840"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001468329025254"},{"denom":"ASSET1","index":"0.000012248466172689"},{"denom":"ASSET10","index":"0.000008533242661533"},{"denom":"ASSET11","index":"0.000011849890220686"},{"denom":"ASSET12","index":"0.000010670683647662"},{"denom":"ASSET13","index":"0.000003671855143322"},{"denom":"ASSET14","index":"0.000011069259599665"},{"denom":"ASSET15","index":"0.000007913694549611"},{"denom":"ASSET16","index":"0.000005518108516848"},{"denom":"ASSET17","index":"0.000003917609227717"},{"denom":"ASSET18","index":"0.000001866904977257"},{"denom":"ASSET2","index":"0.000003616095813249"},{"denom":"ASSET3","index":"0.000001057362111013"},{"denom":"ASSET4","index":"0.000009954072998206"},{"denom":"ASSET5","index":"0.000000819868668110"},{"denom":"ASSET6","index":"0.000003341429483630"},{"denom":"ASSET7","index":"0.000005117467404472"},{"denom":"ASSET8","index":"0.000006676663486141"},{"denom":"ASSET9","index":"0.000002882963880808"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000002995432004660"},{"denom":"ASSET1","index":"0.000025434255671185"},{"denom":"ASSET10","index":"0.000020381248485322"},{"denom":"ASSET11","index":"0.000025297016742096"},{"denom":"ASSET12","index":"0.000024161457271020"},{"denom":"ASSET13","index":"0.000007948725545453"},{"denom":"ASSET14","index":"0.000023205881885085"},{"denom":"ASSET15","index":"0.000018343715148864"},{"denom":"ASSET16","index":"0.000011277889207663"},{"denom":"ASSET17","index":"0.000008877556775335"},{"denom":"ASSET18","index":"0.000003654253802028"},{"denom":"ASSET2","index":"0.000007709102798424"},{"denom":"ASSET3","index":"0.000002137627884226"},{"denom":"ASSET4","index":"0.000020618696770430"},{"denom":"ASSET5","index":"0.000001664440090804"},{"denom":"ASSET6","index":"0.000006720260763181"},{"denom":"ASSET7","index":"0.000010565171316359"},{"denom":"ASSET8","index":"0.000014449121165534"},{"denom":"ASSET9","index":"0.000006129217088192"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001484659776814"},{"denom":"ASSET1","index":"0.000012377911876883"},{"denom":"ASSET10","index":"0.000008623797972416"},{"denom":"ASSET11","index":"0.000011974339842928"},{"denom":"ASSET12","index":"0.000010782780641408"},{"denom":"ASSET13","index":"0.000003710691597017"},{"denom":"ASSET14","index":"0.000011185714112019"},{"denom":"ASSET15","index":"0.000007997367331102"},{"denom":"ASSET16","index":"0.000005575935127370"},{"denom":"ASSET17","index":"0.000003959731301514"},{"denom":"ASSET18","index":"0.000001886316120734"},{"denom":"ASSET2","index":"0.000003653859459324"},{"denom":"ASSET3","index":"0.000001068955039306"},{"denom":"ASSET4","index":"0.000010059288371675"},{"denom":"ASSET5","index":"0.000000829493784981"},{"denom":"ASSET6","index":"0.000003376084404307"},{"denom":"ASSET7","index":"0.000005171085966725"},{"denom":"ASSET8","index":"0.000006747698865199"},{"denom":"ASSET9","index":"0.000002914403105969"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000002967027008461"},{"denom":"ASSET1","index":"0.000025180120058697"},{"denom":"ASSET10","index":"0.000020126919929476"},{"denom":"ASSET11","index":"0.000025029678796477"},{"denom":"ASSET12","index":"0.000023880507059092"},{"denom":"ASSET13","index":"0.000007862872062626"},{"denom":"ASSET14","index":"0.000022968832134984"},{"denom":"ASSET15","index":"0.000018123195207046"},{"denom":"ASSET16","index":"0.000011168095360491"},{"denom":"ASSET17","index":"0.000008775186029853"},{"denom":"ASSET18","index":"0.000003621217117579"},{"denom":"ASSET2","index":"0.000007627534970337"},{"denom":"ASSET3","index":"0.000002117298518473"},{"denom":"ASSET4","index":"0.000020413769751333"},{"denom":"ASSET5","index":"0.000001649183760435"},{"denom":"ASSET6","index":"0.000006656038319196"},{"denom":"ASSET7","index":"0.000010459966878994"},{"denom":"ASSET8","index":"0.000014293861494285"},{"denom":"ASSET9","index":"0.000006066597621916"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001508631993599"},{"denom":"ASSET1","index":"0.000012578103553994"},{"denom":"ASSET10","index":"0.000008763023138279"},{"denom":"ASSET11","index":"0.000012169014387632"},{"denom":"ASSET12","index":"0.000010956555546150"},{"denom":"ASSET13","index":"0.000003770654442897"},{"denom":"ASSET14","index":"0.000011367495794714"},{"denom":"ASSET15","index":"0.000008126250861227"},{"denom":"ASSET16","index":"0.000005666162616450"},{"denom":"ASSET17","index":"0.000004024252704398"},{"denom":"ASSET18","index":"0.000001915870077761"},{"denom":"ASSET2","index":"0.000003713270894674"},{"denom":"ASSET3","index":"0.000001084734169631"},{"denom":"ASSET4","index":"0.000010221675912459"},{"denom":"ASSET5","index":"0.000000842242401334"},{"denom":"ASSET6","index":"0.000003430055317962"},{"denom":"ASSET7","index":"0.000005255222367887"},{"denom":"ASSET8","index":"0.000006856408471522"},{"denom":"ASSET9","index":"0.000002961731521176"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000002968383248598"},{"denom":"ASSET1","index":"0.000025185581850199"},{"denom":"ASSET10","index":"0.000020091193699906"},{"denom":"ASSET11","index":"0.000025026167595767"},{"denom":"ASSET12","index":"0.000023854952987524"},{"denom":"ASSET13","index":"0.000007859725566891"},{"denom":"ASSET14","index":"0.000022971118914045"},{"denom":"ASSET15","index":"0.000018098517255117"},{"denom":"ASSET16","index":"0.000011173004258039"},{"denom":"ASSET17","index":"0.000008766603022733"},{"denom":"ASSET18","index":"0.000003624559740525"},{"denom":"ASSET2","index":"0.000007626317523237"},{"denom":"ASSET3","index":"0.000002117313008939"},{"denom":"ASSET4","index":"0.000020418576076670"},{"denom":"ASSET5","index":"0.000001649450966157"},{"denom":"ASSET6","index":"0.000006660362585584"},{"denom":"ASSET7","index":"0.000010463779822658"},{"denom":"ASSET8","index":"0.000014287735496216"},{"denom":"ASSET9","index":"0.000006065360072421"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001603618851190"},{"denom":"ASSET1","index":"0.000013373450792115"},{"denom":"ASSET10","index":"0.000009317368604669"},{"denom":"ASSET11","index":"0.000012937408123124"},{"denom":"ASSET12","index":"0.000011650307554501"},{"denom":"ASSET13","index":"0.000004008493774333"},{"denom":"ASSET14","index":"0.000012085243516211"},{"denom":"ASSET15","index":"0.000008640063748266"},{"denom":"ASSET16","index":"0.000006023807734317"},{"denom":"ASSET17","index":"0.000004278530351069"},{"denom":"ASSET18","index":"0.000002037448105618"},{"denom":"ASSET2","index":"0.000003947624873839"},{"denom":"ASSET3","index":"0.000001154295694818"},{"denom":"ASSET4","index":"0.000010867865506336"},{"denom":"ASSET5","index":"0.000000896432898181"},{"denom":"ASSET6","index":"0.000003647707200497"},{"denom":"ASSET7","index":"0.000005586658358043"},{"denom":"ASSET8","index":"0.000007289880864586"},{"denom":"ASSET9","index":"0.000003148582216449"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003259379166935"},{"denom":"ASSET1","index":"0.000027669546155668"},{"denom":"ASSET10","index":"0.000022163157427920"},{"denom":"ASSET11","index":"0.000027516665793422"},{"denom":"ASSET12","index":"0.000026276569409586"},{"denom":"ASSET13","index":"0.000008645229164029"},{"denom":"ASSET14","index":"0.000025243382728696"},{"denom":"ASSET15","index":"0.000019947981783747"},{"denom":"ASSET16","index":"0.000012268920188963"},{"denom":"ASSET17","index":"0.000009656339783182"},{"denom":"ASSET18","index":"0.000003975233530089"},{"denom":"ASSET2","index":"0.000008385350610200"},{"denom":"ASSET3","index":"0.000002325230588439"},{"denom":"ASSET4","index":"0.000022430515898086"},{"denom":"ASSET5","index":"0.000001812256369527"},{"denom":"ASSET6","index":"0.000007311001085881"},{"denom":"ASSET7","index":"0.000011492885803011"},{"denom":"ASSET8","index":"0.000015716897251793"},{"denom":"ASSET9","index":"0.000006668589151432"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001669758803356"},{"denom":"ASSET1","index":"0.000013919924903508"},{"denom":"ASSET10","index":"0.000009698114015232"},{"denom":"ASSET11","index":"0.000013466332119255"},{"denom":"ASSET12","index":"0.000012126099781115"},{"denom":"ASSET13","index":"0.000004173211661392"},{"denom":"ASSET14","index":"0.000012579297449702"},{"denom":"ASSET15","index":"0.000008994017898909"},{"denom":"ASSET16","index":"0.000006270880730729"},{"denom":"ASSET17","index":"0.000004453348668392"},{"denom":"ASSET18","index":"0.000002121376009280"},{"denom":"ASSET2","index":"0.000004109202923545"},{"denom":"ASSET3","index":"0.000001201941855137"},{"denom":"ASSET4","index":"0.000011312556625386"},{"denom":"ASSET5","index":"0.000000932868086778"},{"denom":"ASSET6","index":"0.000003797061547622"},{"denom":"ASSET7","index":"0.000005815312368147"},{"denom":"ASSET8","index":"0.000007588591475923"},{"denom":"ASSET9","index":"0.000003277484447193"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003314119794923"},{"denom":"ASSET1","index":"0.000028119315186385"},{"denom":"ASSET10","index":"0.000022456877991933"},{"denom":"ASSET11","index":"0.000027947185249485"},{"denom":"ASSET12","index":"0.000026653541530161"},{"denom":"ASSET13","index":"0.000008778725953540"},{"denom":"ASSET14","index":"0.000025648491290636"},{"denom":"ASSET15","index":"0.000020225495910600"},{"denom":"ASSET16","index":"0.000012473684612014"},{"denom":"ASSET17","index":"0.000009794866581105"},{"denom":"ASSET18","index":"0.000004045992889163"},{"denom":"ASSET2","index":"0.000008517017325485"},{"denom":"ASSET3","index":"0.000002365208974685"},{"denom":"ASSET4","index":"0.000022797013251164"},{"denom":"ASSET5","index":"0.000001842432416817"},{"denom":"ASSET6","index":"0.000007435560259585"},{"denom":"ASSET7","index":"0.000011681616070006"},{"denom":"ASSET8","index":"0.000015958852395270"},{"denom":"ASSET9","index":"0.000006773561992828"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001334597814253"},{"denom":"ASSET1","index":"0.000011126876577448"},{"denom":"ASSET10","index":"0.000007751884027943"},{"denom":"ASSET11","index":"0.000010763759508328"},{"denom":"ASSET12","index":"0.000009692944381721"},{"denom":"ASSET13","index":"0.000003335543967388"},{"denom":"ASSET14","index":"0.000010055110882597"},{"denom":"ASSET15","index":"0.000007189147627631"},{"denom":"ASSET16","index":"0.000005012346349398"},{"denom":"ASSET17","index":"0.000003559878072918"},{"denom":"ASSET18","index":"0.000001695813746885"},{"denom":"ASSET2","index":"0.000003284213282225"},{"denom":"ASSET3","index":"0.000000960549210329"},{"denom":"ASSET4","index":"0.000009042280418860"},{"denom":"ASSET5","index":"0.000000745720787237"},{"denom":"ASSET6","index":"0.000003035164402357"},{"denom":"ASSET7","index":"0.000004648278712034"},{"denom":"ASSET8","index":"0.000006065575963495"},{"denom":"ASSET9","index":"0.000002619766079830"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000002933404194828"},{"denom":"ASSET1","index":"0.000024932632498194"},{"denom":"ASSET10","index":"0.000020157113753706"},{"denom":"ASSET11","index":"0.000024842878528839"},{"denom":"ASSET12","index":"0.000023817726072485"},{"denom":"ASSET13","index":"0.000007813243799971"},{"denom":"ASSET14","index":"0.000022761898108549"},{"denom":"ASSET15","index":"0.000018109267957138"},{"denom":"ASSET16","index":"0.000011043189892304"},{"denom":"ASSET17","index":"0.000008753164046701"},{"denom":"ASSET18","index":"0.000003567063844603"},{"denom":"ASSET2","index":"0.000007569762146700"},{"denom":"ASSET3","index":"0.000002091389836038"},{"denom":"ASSET4","index":"0.000020208488830330"},{"denom":"ASSET5","index":"0.000001630166870108"},{"denom":"ASSET6","index":"0.000006572642272968"},{"denom":"ASSET7","index":"0.000010351822041320"},{"denom":"ASSET8","index":"0.000014203644477234"},{"denom":"ASSET9","index":"0.000006019030096188"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001655550281073"},{"denom":"ASSET1","index":"0.000013803766186213"},{"denom":"ASSET10","index":"0.000009616885369480"},{"denom":"ASSET11","index":"0.000013353770421464"},{"denom":"ASSET12","index":"0.000012024654915933"},{"denom":"ASSET13","index":"0.000004138458266908"},{"denom":"ASSET14","index":"0.000012474650680682"},{"denom":"ASSET15","index":"0.000008918932754767"},{"denom":"ASSET16","index":"0.000006218123294721"},{"denom":"ASSET17","index":"0.000004415635621077"},{"denom":"ASSET18","index":"0.000002103876302725"},{"denom":"ASSET2","index":"0.000004075008029207"},{"denom":"ASSET3","index":"0.000001191361699996"},{"denom":"ASSET4","index":"0.000011218168999888"},{"denom":"ASSET5","index":"0.000000925037675960"},{"denom":"ASSET6","index":"0.000003765270684639"},{"denom":"ASSET7","index":"0.000005766457786874"},{"denom":"ASSET8","index":"0.000007524697268437"},{"denom":"ASSET9","index":"0.000003250154939091"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003215122291080"},{"denom":"ASSET1","index":"0.000027271082473775"},{"denom":"ASSET10","index":"0.000021717714787675"},{"denom":"ASSET11","index":"0.000027088129911249"},{"denom":"ASSET12","index":"0.000025803190697535"},{"denom":"ASSET13","index":"0.000008506451165719"},{"denom":"ASSET14","index":"0.000024869823256717"},{"denom":"ASSET15","index":"0.000019571375436743"},{"denom":"ASSET16","index":"0.000012101015548893"},{"denom":"ASSET17","index":"0.000009481514658039"},{"denom":"ASSET18","index":"0.000003929002426467"},{"denom":"ASSET2","index":"0.000008255375778501"},{"denom":"ASSET3","index":"0.000002294279906946"},{"denom":"ASSET4","index":"0.000022110354928469"},{"denom":"ASSET5","index":"0.000001787716273475"},{"denom":"ASSET6","index":"0.000007215985074700"},{"denom":"ASSET7","index":"0.000011330188741735"},{"denom":"ASSET8","index":"0.000015463524362026"},{"denom":"ASSET9","index":"0.000006565858639552"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001631513498845"},{"denom":"ASSET1","index":"0.000013601788709515"},{"denom":"ASSET10","index":"0.000009476711328689"},{"denom":"ASSET11","index":"0.000013158178840821"},{"denom":"ASSET12","index":"0.000011848922966954"},{"denom":"ASSET13","index":"0.000004077884841603"},{"denom":"ASSET14","index":"0.000012291633930140"},{"denom":"ASSET15","index":"0.000008788599161546"},{"denom":"ASSET16","index":"0.000006127389402135"},{"denom":"ASSET17","index":"0.000004351601569095"},{"denom":"ASSET18","index":"0.000002072876103766"},{"denom":"ASSET2","index":"0.000004014961455973"},{"denom":"ASSET3","index":"0.000001174420047516"},{"denom":"ASSET4","index":"0.000011053841044239"},{"denom":"ASSET5","index":"0.000000911490186131"},{"denom":"ASSET6","index":"0.000003710232488420"},{"denom":"ASSET7","index":"0.000005682431175178"},{"denom":"ASSET8","index":"0.000007415071543785"},{"denom":"ASSET9","index":"0.000003202800328586"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003159157648171"},{"denom":"ASSET1","index":"0.000026793811254639"},{"denom":"ASSET10","index":"0.000021330257270132"},{"denom":"ASSET11","index":"0.000026611245447042"},{"denom":"ASSET12","index":"0.000025345616114893"},{"denom":"ASSET13","index":"0.000008356504281369"},{"denom":"ASSET14","index":"0.000024433401122602"},{"denom":"ASSET15","index":"0.000019223209713353"},{"denom":"ASSET16","index":"0.000011890026449509"},{"denom":"ASSET17","index":"0.000009313941892173"},{"denom":"ASSET18","index":"0.000003860849124980"},{"denom":"ASSET2","index":"0.000008109777269158"},{"denom":"ASSET3","index":"0.000002255070941538"},{"denom":"ASSET4","index":"0.000021723391251034"},{"denom":"ASSET5","index":"0.000001756486235957"},{"denom":"ASSET6","index":"0.000007090574282328"},{"denom":"ASSET7","index":"0.000011132530538444"},{"denom":"ASSET8","index":"0.000015191323807650"},{"denom":"ASSET9","index":"0.000006450832118924"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001649724724935"},{"denom":"ASSET1","index":"0.000013753740147655"},{"denom":"ASSET10","index":"0.000009582563441278"},{"denom":"ASSET11","index":"0.000013305204895691"},{"denom":"ASSET12","index":"0.000011981321923304"},{"denom":"ASSET13","index":"0.000004123306127916"},{"denom":"ASSET14","index":"0.000012429052627730"},{"denom":"ASSET15","index":"0.000008886629821639"},{"denom":"ASSET16","index":"0.000006195820583626"},{"denom":"ASSET17","index":"0.000004400070480698"},{"denom":"ASSET18","index":"0.000002096248608056"},{"denom":"ASSET2","index":"0.000004060149146250"},{"denom":"ASSET3","index":"0.000001187512164840"},{"denom":"ASSET4","index":"0.000011177176659918"},{"denom":"ASSET5","index":"0.000000921609203810"},{"denom":"ASSET6","index":"0.000003751605165751"},{"denom":"ASSET7","index":"0.000005746078510357"},{"denom":"ASSET8","index":"0.000007497578498742"},{"denom":"ASSET9","index":"0.000003238303837047"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003253063831874"},{"denom":"ASSET1","index":"0.000027597326034286"},{"denom":"ASSET10","index":"0.000022021617243178"},{"denom":"ASSET11","index":"0.000027423138617092"},{"denom":"ASSET12","index":"0.000026144931484859"},{"denom":"ASSET13","index":"0.000008613299773809"},{"denom":"ASSET14","index":"0.000025170855267573"},{"denom":"ASSET15","index":"0.000019836826910831"},{"denom":"ASSET16","index":"0.000012243184702458"},{"denom":"ASSET17","index":"0.000009607701845932"},{"denom":"ASSET18","index":"0.000003972764374377"},{"denom":"ASSET2","index":"0.000008357484440725"},{"denom":"ASSET3","index":"0.000002321502734814"},{"denom":"ASSET4","index":"0.000022373906168402"},{"denom":"ASSET5","index":"0.000001808481766797"},{"denom":"ASSET6","index":"0.000007298802623853"},{"denom":"ASSET7","index":"0.000011465220726545"},{"denom":"ASSET8","index":"0.000015658035812384"},{"denom":"ASSET9","index":"0.000006646717011605"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001698975992122"},{"denom":"ASSET1","index":"0.000014167905922226"},{"denom":"ASSET10","index":"0.000009870625403756"},{"denom":"ASSET11","index":"0.000013705415046027"},{"denom":"ASSET12","index":"0.000012342129737421"},{"denom":"ASSET13","index":"0.000004247439980305"},{"denom":"ASSET14","index":"0.000012803154715439"},{"denom":"ASSET15","index":"0.000009153801193103"},{"denom":"ASSET16","index":"0.000006381787732272"},{"denom":"ASSET17","index":"0.000004532557176567"},{"denom":"ASSET18","index":"0.000002159268021049"},{"denom":"ASSET2","index":"0.000004182207511237"},{"denom":"ASSET3","index":"0.000001223292032291"},{"denom":"ASSET4","index":"0.000011513897264989"},{"denom":"ASSET5","index":"0.000000949169072389"},{"denom":"ASSET6","index":"0.000003864840554987"},{"denom":"ASSET7","index":"0.000005918563906982"},{"denom":"ASSET8","index":"0.000007723084568158"},{"denom":"ASSET9","index":"0.000003335651311539"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003402845442317"},{"denom":"ASSET1","index":"0.000028880571174740"},{"denom":"ASSET10","index":"0.000023090578471272"},{"denom":"ASSET11","index":"0.000028709364204549"},{"denom":"ASSET12","index":"0.000027394626213612"},{"denom":"ASSET13","index":"0.000009019217107214"},{"denom":"ASSET14","index":"0.000026344557012563"},{"denom":"ASSET15","index":"0.000020791017438004"},{"denom":"ASSET16","index":"0.000012808886991708"},{"denom":"ASSET17","index":"0.000010066951390727"},{"denom":"ASSET18","index":"0.000004153478710890"},{"denom":"ASSET2","index":"0.000008748954704305"},{"denom":"ASSET3","index":"0.000002428490976730"},{"denom":"ASSET4","index":"0.000023413646091842"},{"denom":"ASSET5","index":"0.000001891364101695"},{"denom":"ASSET6","index":"0.000007634563338572"},{"denom":"ASSET7","index":"0.000011996876612297"},{"denom":"ASSET8","index":"0.000016395615103037"},{"denom":"ASSET9","index":"0.000006958318142576"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001515088644413"},{"denom":"ASSET1","index":"0.000012634136557163"},{"denom":"ASSET10","index":"0.000008802109028204"},{"denom":"ASSET11","index":"0.000012222352143486"},{"denom":"ASSET12","index":"0.000011006111259210"},{"denom":"ASSET13","index":"0.000003787721611031"},{"denom":"ASSET14","index":"0.000011417895672887"},{"denom":"ASSET15","index":"0.000008163582563959"},{"denom":"ASSET16","index":"0.000005691138594924"},{"denom":"ASSET17","index":"0.000004042263453241"},{"denom":"ASSET18","index":"0.000001925135571111"},{"denom":"ASSET2","index":"0.000003729515797284"},{"denom":"ASSET3","index":"0.000001091141821893"},{"denom":"ASSET4","index":"0.000010267679293757"},{"denom":"ASSET5","index":"0.000000846156158061"},{"denom":"ASSET6","index":"0.000003446305419945"},{"denom":"ASSET7","index":"0.000005278485437758"},{"denom":"ASSET8","index":"0.000006887398378958"},{"denom":"ASSET9","index":"0.000002974577705544"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003029367235848"},{"denom":"ASSET1","index":"0.000025709657584098"},{"denom":"ASSET10","index":"0.000020551027857005"},{"denom":"ASSET11","index":"0.000025556791271547"},{"denom":"ASSET12","index":"0.000024383546484064"},{"denom":"ASSET13","index":"0.000008028643187417"},{"denom":"ASSET14","index":"0.000023452409013233"},{"denom":"ASSET15","index":"0.000018505869963369"},{"denom":"ASSET16","index":"0.000011403028825829"},{"denom":"ASSET17","index":"0.000008960765854271"},{"denom":"ASSET18","index":"0.000003697390743305"},{"denom":"ASSET2","index":"0.000007788410102575"},{"denom":"ASSET3","index":"0.000002162278160249"},{"denom":"ASSET4","index":"0.000020843149904241"},{"denom":"ASSET5","index":"0.000001683795445220"},{"denom":"ASSET6","index":"0.000006796548728457"},{"denom":"ASSET7","index":"0.000010680301627557"},{"denom":"ASSET8","index":"0.000014594997949332"},{"denom":"ASSET9","index":"0.000006193949682941"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001650481631660"},{"denom":"ASSET1","index":"0.000013760556046882"},{"denom":"ASSET10","index":"0.000009587067899364"},{"denom":"ASSET11","index":"0.000013312100857594"},{"denom":"ASSET12","index":"0.000011987552175177"},{"denom":"ASSET13","index":"0.000004125311926918"},{"denom":"ASSET14","index":"0.000012435412596309"},{"denom":"ASSET15","index":"0.000008891189157367"},{"denom":"ASSET16","index":"0.000006198673717177"},{"denom":"ASSET17","index":"0.000004402473887406"},{"denom":"ASSET18","index":"0.000002097152516481"},{"denom":"ASSET2","index":"0.000004062266502429"},{"denom":"ASSET3","index":"0.000001188346774796"},{"denom":"ASSET4","index":"0.000011182830860714"},{"denom":"ASSET5","index":"0.000000921890641108"},{"denom":"ASSET6","index":"0.000003753581829697"},{"denom":"ASSET7","index":"0.000005749028991578"},{"denom":"ASSET8","index":"0.000007501810745994"},{"denom":"ASSET9","index":"0.000003239702143299"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003205609047354"},{"denom":"ASSET1","index":"0.000027188537481167"},{"denom":"ASSET10","index":"0.000021652723818266"},{"denom":"ASSET11","index":"0.000027005979418132"},{"denom":"ASSET12","index":"0.000025725923481940"},{"denom":"ASSET13","index":"0.000008480657418555"},{"denom":"ASSET14","index":"0.000024794508770079"},{"denom":"ASSET15","index":"0.000019512596409105"},{"denom":"ASSET16","index":"0.000012064653878282"},{"denom":"ASSET17","index":"0.000009453813052143"},{"denom":"ASSET18","index":"0.000003917117707327"},{"denom":"ASSET2","index":"0.000008230459966291"},{"denom":"ASSET3","index":"0.000002288306334262"},{"denom":"ASSET4","index":"0.000022043298344156"},{"denom":"ASSET5","index":"0.000001782083734802"},{"denom":"ASSET6","index":"0.000007194354204475"},{"denom":"ASSET7","index":"0.000011296497588433"},{"denom":"ASSET8","index":"0.000015417282169744"},{"denom":"ASSET9","index":"0.000006545936928299"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001428935211366"},{"denom":"ASSET1","index":"0.000011914564237659"},{"denom":"ASSET10","index":"0.000008301159777028"},{"denom":"ASSET11","index":"0.000011525978642480"},{"denom":"ASSET12","index":"0.000010379209562159"},{"denom":"ASSET13","index":"0.000003571896453874"},{"denom":"ASSET14","index":"0.000010767353582799"},{"denom":"ASSET15","index":"0.000007698410529959"},{"denom":"ASSET16","index":"0.000005367338533420"},{"denom":"ASSET17","index":"0.000003811671429081"},{"denom":"ASSET18","index":"0.000001815754508385"},{"denom":"ASSET2","index":"0.000003517141210917"},{"denom":"ASSET3","index":"0.000001028868678146"},{"denom":"ASSET4","index":"0.000009682846512616"},{"denom":"ASSET5","index":"0.000000798366768278"},{"denom":"ASSET6","index":"0.000003249988614231"},{"denom":"ASSET7","index":"0.000004977428214621"},{"denom":"ASSET8","index":"0.000006495119908522"},{"denom":"ASSET9","index":"0.000002805323052474"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003075918064869"},{"denom":"ASSET1","index":"0.000026136551234120"},{"denom":"ASSET10","index":"0.000021080163895542"},{"denom":"ASSET11","index":"0.000026029570124972"},{"denom":"ASSET12","index":"0.000024929671095533"},{"denom":"ASSET13","index":"0.000008184754658215"},{"denom":"ASSET14","index":"0.000023857159923959"},{"denom":"ASSET15","index":"0.000018947606922173"},{"denom":"ASSET16","index":"0.000011579925359638"},{"denom":"ASSET17","index":"0.000009161388302193"},{"denom":"ASSET18","index":"0.000003743573486430"},{"denom":"ASSET2","index":"0.000007931762150876"},{"denom":"ASSET3","index":"0.000002193704696765"},{"denom":"ASSET4","index":"0.000021185602196482"},{"denom":"ASSET5","index":"0.000001709259314500"},{"denom":"ASSET6","index":"0.000006893942979866"},{"denom":"ASSET7","index":"0.000010853088527538"},{"denom":"ASSET8","index":"0.000014878712124324"},{"denom":"ASSET9","index":"0.000006307130542486"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001556917620519"},{"denom":"ASSET1","index":"0.000012983455297040"},{"denom":"ASSET10","index":"0.000009045452282177"},{"denom":"ASSET11","index":"0.000012560119972943"},{"denom":"ASSET12","index":"0.000011310507230547"},{"denom":"ASSET13","index":"0.000003892294051298"},{"denom":"ASSET14","index":"0.000011733139339821"},{"denom":"ASSET15","index":"0.000008388649636483"},{"denom":"ASSET16","index":"0.000005848637691896"},{"denom":"ASSET17","index":"0.000004153889965857"},{"denom":"ASSET18","index":"0.000001978846514969"},{"denom":"ASSET2","index":"0.000003832520791251"},{"denom":"ASSET3","index":"0.000001120924429588"},{"denom":"ASSET4","index":"0.000010551035220538"},{"denom":"ASSET5","index":"0.000000869876737390"},{"denom":"ASSET6","index":"0.000003541389854081"},{"denom":"ASSET7","index":"0.000005423895938150"},{"denom":"ASSET8","index":"0.000007077857204393"},{"denom":"ASSET9","index":"0.000003056874840288"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003155948059833"},{"denom":"ASSET1","index":"0.000026789841893667"},{"denom":"ASSET10","index":"0.000021451154188244"},{"denom":"ASSET11","index":"0.000026640130662201"},{"denom":"ASSET12","index":"0.000025435769508540"},{"denom":"ASSET13","index":"0.000008370086775831"},{"denom":"ASSET14","index":"0.000024440800445484"},{"denom":"ASSET15","index":"0.000019309084443140"},{"denom":"ASSET16","index":"0.000011879786354964"},{"denom":"ASSET17","index":"0.000009347672781307"},{"denom":"ASSET18","index":"0.000003850232310781"},{"denom":"ASSET2","index":"0.000008118311447694"},{"denom":"ASSET3","index":"0.000002251791235916"},{"denom":"ASSET4","index":"0.000021717604836949"},{"denom":"ASSET5","index":"0.000001754185821919"},{"denom":"ASSET6","index":"0.000007079049104243"},{"denom":"ASSET7","index":"0.000011127710678967"},{"denom":"ASSET8","index":"0.000015216376583965"},{"denom":"ASSET9","index":"0.000006456241851980"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001629017625409"},{"denom":"ASSET1","index":"0.000013583500814952"},{"denom":"ASSET10","index":"0.000009463617777698"},{"denom":"ASSET11","index":"0.000013140742178302"},{"denom":"ASSET12","index":"0.000011833351109704"},{"denom":"ASSET13","index":"0.000004072544063523"},{"denom":"ASSET14","index":"0.000012276109746354"},{"denom":"ASSET15","index":"0.000008777202658616"},{"denom":"ASSET16","index":"0.000006119258515961"},{"denom":"ASSET17","index":"0.000004345439323848"},{"denom":"ASSET18","index":"0.000002070383939302"},{"denom":"ASSET2","index":"0.000004009889539469"},{"denom":"ASSET3","index":"0.000001172335761192"},{"denom":"ASSET4","index":"0.000011039727138351"},{"denom":"ASSET5","index":"0.000000910579082921"},{"denom":"ASSET6","index":"0.000003704970855739"},{"denom":"ASSET7","index":"0.000005675107556554"},{"denom":"ASSET8","index":"0.000007404372420450"},{"denom":"ASSET9","index":"0.000003198165372278"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003300821213878"},{"denom":"ASSET1","index":"0.000028019420341436"},{"denom":"ASSET10","index":"0.000022435320069293"},{"denom":"ASSET11","index":"0.000027862926397945"},{"denom":"ASSET12","index":"0.000026603097941410"},{"denom":"ASSET13","index":"0.000008754572034100"},{"denom":"ASSET14","index":"0.000025562969906661"},{"denom":"ASSET15","index":"0.000020195785636702"},{"denom":"ASSET16","index":"0.000012425527462944"},{"denom":"ASSET17","index":"0.000009776022796414"},{"denom":"ASSET18","index":"0.000004027118689751"},{"denom":"ASSET2","index":"0.000008490998812362"},{"denom":"ASSET3","index":"0.000002354733406852"},{"denom":"ASSET4","index":"0.000022715681634045"},{"denom":"ASSET5","index":"0.000001835160700580"},{"denom":"ASSET6","index":"0.000007403741836767"},{"denom":"ASSET7","index":"0.000011639103500846"},{"denom":"ASSET8","index":"0.000015914079386056"},{"denom":"ASSET9","index":"0.000006752470475547"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001599876133405"},{"denom":"ASSET1","index":"0.000013345434681176"},{"denom":"ASSET10","index":"0.000009297530322905"},{"denom":"ASSET11","index":"0.000012909953167223"},{"denom":"ASSET12","index":"0.000011625282701060"},{"denom":"ASSET13","index":"0.000004000208763886"},{"denom":"ASSET14","index":"0.000012059727354266"},{"denom":"ASSET15","index":"0.000008622533976277"},{"denom":"ASSET16","index":"0.000006011718614052"},{"denom":"ASSET17","index":"0.000004268755697491"},{"denom":"ASSET18","index":"0.000002033283925863"},{"denom":"ASSET2","index":"0.000003939033979783"},{"denom":"ASSET3","index":"0.000001151952290481"},{"denom":"ASSET4","index":"0.000010845563418934"},{"denom":"ASSET5","index":"0.000000893773964352"},{"denom":"ASSET6","index":"0.000003640418084501"},{"denom":"ASSET7","index":"0.000005575200239351"},{"denom":"ASSET8","index":"0.000007274615004517"},{"denom":"ASSET9","index":"0.000003141688064949"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003205518103121"},{"denom":"ASSET1","index":"0.000027209804037075"},{"denom":"ASSET10","index":"0.000021755111918776"},{"denom":"ASSET11","index":"0.000027048910570117"},{"denom":"ASSET12","index":"0.000025809934262776"},{"denom":"ASSET13","index":"0.000008496852467218"},{"denom":"ASSET14","index":"0.000024820667393427"},{"denom":"ASSET15","index":"0.000019589132093549"},{"denom":"ASSET16","index":"0.000012068310128279"},{"denom":"ASSET17","index":"0.000009484236214143"},{"denom":"ASSET18","index":"0.000003912244660385"},{"denom":"ASSET2","index":"0.000008242746790311"},{"denom":"ASSET3","index":"0.000002287536756020"},{"denom":"ASSET4","index":"0.000022059248469095"},{"denom":"ASSET5","index":"0.000001781848402938"},{"denom":"ASSET6","index":"0.000007192715838846"},{"denom":"ASSET7","index":"0.000011303047666497"},{"denom":"ASSET8","index":"0.000015447099928639"},{"denom":"ASSET9","index":"0.000006555210966575"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001693699328345"},{"denom":"ASSET1","index":"0.000014121235265065"},{"denom":"ASSET10","index":"0.000009838380374958"},{"denom":"ASSET11","index":"0.000013660499756586"},{"denom":"ASSET12","index":"0.000012301569616423"},{"denom":"ASSET13","index":"0.000004233563721295"},{"denom":"ASSET14","index":"0.000012760935925768"},{"denom":"ASSET15","index":"0.000009123658427184"},{"denom":"ASSET16","index":"0.000006361299175013"},{"denom":"ASSET17","index":"0.000004517672541531"},{"denom":"ASSET18","index":"0.000002151696438556"},{"denom":"ASSET2","index":"0.000004168526762446"},{"denom":"ASSET3","index":"0.000001219271828530"},{"denom":"ASSET4","index":"0.000011475942538822"},{"denom":"ASSET5","index":"0.000000946116601363"},{"denom":"ASSET6","index":"0.000003852241762569"},{"denom":"ASSET7","index":"0.000005899194467400"},{"denom":"ASSET8","index":"0.000007698322129037"},{"denom":"ASSET9","index":"0.000003325100096108"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003374964488748"},{"denom":"ASSET1","index":"0.000028642371697541"},{"denom":"ASSET10","index":"0.000022886358038922"},{"denom":"ASSET11","index":"0.000028469467846578"},{"denom":"ASSET12","index":"0.000027158021136678"},{"denom":"ASSET13","index":"0.000008943216545101"},{"denom":"ASSET14","index":"0.000026126056006670"},{"denom":"ASSET15","index":"0.000020609372613995"},{"denom":"ASSET16","index":"0.000012704733728960"},{"denom":"ASSET17","index":"0.000009980025667275"},{"denom":"ASSET18","index":"0.000004119620826099"},{"denom":"ASSET2","index":"0.000008675935346246"},{"denom":"ASSET3","index":"0.000002408702445844"},{"denom":"ASSET4","index":"0.000023220763838917"},{"denom":"ASSET5","index":"0.000001876440105393"},{"denom":"ASSET6","index":"0.000007572949563502"},{"denom":"ASSET7","index":"0.000011897934490553"},{"denom":"ASSET8","index":"0.000016258236310419"},{"denom":"ASSET9","index":"0.000006900426530312"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001608105877482"},{"denom":"ASSET1","index":"0.000013418457239972"},{"denom":"ASSET10","index":"0.000009349233819318"},{"denom":"ASSET11","index":"0.000012981594753349"},{"denom":"ASSET12","index":"0.000011689837573077"},{"denom":"ASSET13","index":"0.000004022147721664"},{"denom":"ASSET14","index":"0.000012126700059700"},{"denom":"ASSET15","index":"0.000008669460725910"},{"denom":"ASSET16","index":"0.000006044519750254"},{"denom":"ASSET17","index":"0.000004293303747844"},{"denom":"ASSET18","index":"0.000002044968364105"},{"denom":"ASSET2","index":"0.000003960007798998"},{"denom":"ASSET3","index":"0.000001158062195142"},{"denom":"ASSET4","index":"0.000010904614913932"},{"denom":"ASSET5","index":"0.000000898204336720"},{"denom":"ASSET6","index":"0.000003660606353425"},{"denom":"ASSET7","index":"0.000005605774235672"},{"denom":"ASSET8","index":"0.000007313680595011"},{"denom":"ASSET9","index":"0.000003159720916176"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003138779820137"},{"denom":"ASSET1","index":"0.000026638851971456"},{"denom":"ASSET10","index":"0.000021228354320839"},{"denom":"ASSET11","index":"0.000026463611656062"},{"denom":"ASSET12","index":"0.000025215335343685"},{"denom":"ASSET13","index":"0.000008309803474369"},{"denom":"ASSET14","index":"0.000024294710395367"},{"denom":"ASSET15","index":"0.000019126240972581"},{"denom":"ASSET16","index":"0.000011819368577720"},{"denom":"ASSET17","index":"0.000009266335892783"},{"denom":"ASSET18","index":"0.000003836527514127"},{"denom":"ASSET2","index":"0.000008063422586049"},{"denom":"ASSET3","index":"0.000002240662109326"},{"denom":"ASSET4","index":"0.000021597223596640"},{"denom":"ASSET5","index":"0.000001744975814867"},{"denom":"ASSET6","index":"0.000007047692266012"},{"denom":"ASSET7","index":"0.000011067413421526"},{"denom":"ASSET8","index":"0.000015106336478322"},{"denom":"ASSET9","index":"0.000006414890297355"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001636130781121"},{"denom":"ASSET1","index":"0.000013651986161797"},{"denom":"ASSET10","index":"0.000009511743354655"},{"denom":"ASSET11","index":"0.000013205516575762"},{"denom":"ASSET12","index":"0.000011891065744828"},{"denom":"ASSET13","index":"0.000004093100055822"},{"denom":"ASSET14","index":"0.000012337535330862"},{"denom":"ASSET15","index":"0.000008821240702961"},{"denom":"ASSET16","index":"0.000006147969392790"},{"denom":"ASSET17","index":"0.000004367637254688"},{"denom":"ASSET18","index":"0.000002079827264137"},{"denom":"ASSET2","index":"0.000004029318686389"},{"denom":"ASSET3","index":"0.000001178568783011"},{"denom":"ASSET4","index":"0.000011095185178418"},{"denom":"ASSET5","index":"0.000000915123996220"},{"denom":"ASSET6","index":"0.000003724277354315"},{"denom":"ASSET7","index":"0.000005701499806755"},{"denom":"ASSET8","index":"0.000007440235399574"},{"denom":"ASSET9","index":"0.000003214026398847"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003135138573804"},{"denom":"ASSET1","index":"0.000026601246250396"},{"denom":"ASSET10","index":"0.000021147351718785"},{"denom":"ASSET11","index":"0.000026411423528042"},{"denom":"ASSET12","index":"0.000025139747174388"},{"denom":"ASSET13","index":"0.000008292603180789"},{"denom":"ASSET14","index":"0.000024256405788980"},{"denom":"ASSET15","index":"0.000019064302195638"},{"denom":"ASSET16","index":"0.000011804656377100"},{"denom":"ASSET17","index":"0.000009238224400983"},{"denom":"ASSET18","index":"0.000003834531376561"},{"denom":"ASSET2","index":"0.000008049169006780"},{"denom":"ASSET3","index":"0.000002239375819558"},{"denom":"ASSET4","index":"0.000021568278304468"},{"denom":"ASSET5","index":"0.000001743998311515"},{"denom":"ASSET6","index":"0.000007041675703373"},{"denom":"ASSET7","index":"0.000011051161098588"},{"denom":"ASSET8","index":"0.000015073103234225"},{"denom":"ASSET9","index":"0.000006402150772125"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001682560247115"},{"denom":"ASSET1","index":"0.000014026482890055"},{"denom":"ASSET10","index":"0.000009772411969975"},{"denom":"ASSET11","index":"0.000013568579422963"},{"denom":"ASSET12","index":"0.000012218368466479"},{"denom":"ASSET13","index":"0.000004205057792371"},{"denom":"ASSET14","index":"0.000012675600520863"},{"denom":"ASSET15","index":"0.000009062728737253"},{"denom":"ASSET16","index":"0.000006318664998244"},{"denom":"ASSET17","index":"0.000004487051129876"},{"denom":"ASSET18","index":"0.000002137778063373"},{"denom":"ASSET2","index":"0.000004140602172369"},{"denom":"ASSET3","index":"0.000001211228525856"},{"denom":"ASSET4","index":"0.000011398573549589"},{"denom":"ASSET5","index":"0.000000939977791684"},{"denom":"ASSET6","index":"0.000003825709612155"},{"denom":"ASSET7","index":"0.000005859418705735"},{"denom":"ASSET8","index":"0.000007646047922643"},{"denom":"ASSET9","index":"0.000003302679112354"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003237426875283"},{"denom":"ASSET1","index":"0.000027451710154634"},{"denom":"ASSET10","index":"0.000021835512998164"},{"denom":"ASSET11","index":"0.000027259736654219"},{"denom":"ASSET12","index":"0.000025953768913429"},{"denom":"ASSET13","index":"0.000008559484494503"},{"denom":"ASSET14","index":"0.000025032165857410"},{"denom":"ASSET15","index":"0.000019681806512765"},{"denom":"ASSET16","index":"0.000012183244440341"},{"denom":"ASSET17","index":"0.000009537367134186"},{"denom":"ASSET18","index":"0.000003957397976948"},{"denom":"ASSET2","index":"0.000008307936552813"},{"denom":"ASSET3","index":"0.000002310954839376"},{"denom":"ASSET4","index":"0.000022256988295109"},{"denom":"ASSET5","index":"0.000001799896462688"},{"denom":"ASSET6","index":"0.000007265619632425"},{"denom":"ASSET7","index":"0.000011405823532836"},{"denom":"ASSET8","index":"0.000015559935461923"},{"denom":"ASSET9","index":"0.000006608212131764"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001576738934866"},{"denom":"ASSET1","index":"0.000013143695761043"},{"denom":"ASSET10","index":"0.000009157699733702"},{"denom":"ASSET11","index":"0.000012715663698192"},{"denom":"ASSET12","index":"0.000011450067913139"},{"denom":"ASSET13","index":"0.000003940585946017"},{"denom":"ASSET14","index":"0.000011878099975991"},{"denom":"ASSET15","index":"0.000008492526135047"},{"denom":"ASSET16","index":"0.000005920970048209"},{"denom":"ASSET17","index":"0.000004204637159643"},{"denom":"ASSET18","index":"0.000002003089142854"},{"denom":"ASSET2","index":"0.000003880039170918"},{"denom":"ASSET3","index":"0.000001134411105672"},{"denom":"ASSET4","index":"0.000010681460240357"},{"denom":"ASSET5","index":"0.000000880451021229"},{"denom":"ASSET6","index":"0.000003584873642311"},{"denom":"ASSET7","index":"0.000005491256130493"},{"denom":"ASSET8","index":"0.000007165542647463"},{"denom":"ASSET9","index":"0.000003094612949497"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003150995592381"},{"denom":"ASSET1","index":"0.000026735906318713"},{"denom":"ASSET10","index":"0.000021370928366269"},{"denom":"ASSET11","index":"0.000026577057751538"},{"denom":"ASSET12","index":"0.000025356196217934"},{"denom":"ASSET13","index":"0.000008349049177946"},{"denom":"ASSET14","index":"0.000024388519635576"},{"denom":"ASSET15","index":"0.000019243917228958"},{"denom":"ASSET16","index":"0.000011858566692713"},{"denom":"ASSET17","index":"0.000009317567603522"},{"denom":"ASSET18","index":"0.000003845362315572"},{"denom":"ASSET2","index":"0.000008099062572798"},{"denom":"ASSET3","index":"0.000002247710476517"},{"denom":"ASSET4","index":"0.000021674805285583"},{"denom":"ASSET5","index":"0.000001751018453776"},{"denom":"ASSET6","index":"0.000007067532365991"},{"denom":"ASSET7","index":"0.000011106766164564"},{"denom":"ASSET8","index":"0.000015177641578730"},{"denom":"ASSET9","index":"0.000006441123951375"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001735896630597"},{"denom":"ASSET1","index":"0.000014474259966527"},{"denom":"ASSET10","index":"0.000010084408758147"},{"denom":"ASSET11","index":"0.000014002239606889"},{"denom":"ASSET12","index":"0.000012609068112910"},{"denom":"ASSET13","index":"0.000004339122939062"},{"denom":"ASSET14","index":"0.000013079851197687"},{"denom":"ASSET15","index":"0.000009351942040176"},{"denom":"ASSET16","index":"0.000006520438519776"},{"denom":"ASSET17","index":"0.000004630501168930"},{"denom":"ASSET18","index":"0.000002205442440512"},{"denom":"ASSET2","index":"0.000004272310096544"},{"denom":"ASSET3","index":"0.000001249647610052"},{"denom":"ASSET4","index":"0.000011762772107687"},{"denom":"ASSET5","index":"0.000000970023491367"},{"denom":"ASSET6","index":"0.000003948144082847"},{"denom":"ASSET7","index":"0.000006046562247845"},{"denom":"ASSET8","index":"0.000007890101791387"},{"denom":"ASSET9","index":"0.000003408073605830"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003300304206809"},{"denom":"ASSET1","index":"0.000027981868665615"},{"denom":"ASSET10","index":"0.000022221493016134"},{"denom":"ASSET11","index":"0.000027777532118325"},{"denom":"ASSET12","index":"0.000026428557640091"},{"denom":"ASSET13","index":"0.000008720047886627"},{"denom":"ASSET14","index":"0.000025512138164618"},{"denom":"ASSET15","index":"0.000020036362120252"},{"denom":"ASSET16","index":"0.000012421157074829"},{"denom":"ASSET17","index":"0.000009711490167791"},{"denom":"ASSET18","index":"0.000004036282970136"},{"denom":"ASSET2","index":"0.000008465189250700"},{"denom":"ASSET3","index":"0.000002356240815614"},{"denom":"ASSET4","index":"0.000022687774056492"},{"denom":"ASSET5","index":"0.000001835200922241"},{"denom":"ASSET6","index":"0.000007409270759323"},{"denom":"ASSET7","index":"0.000011627060915230"},{"denom":"ASSET8","index":"0.000015852235873304"},{"denom":"ASSET9","index":"0.000006733690564218"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001726734301691"},{"denom":"ASSET1","index":"0.000014395988805148"},{"denom":"ASSET10","index":"0.000010029746380297"},{"denom":"ASSET11","index":"0.000013926529312304"},{"denom":"ASSET12","index":"0.000012540835608608"},{"denom":"ASSET13","index":"0.000004315874534955"},{"denom":"ASSET14","index":"0.000013009526126035"},{"denom":"ASSET15","index":"0.000009301526659210"},{"denom":"ASSET16","index":"0.000006485154189852"},{"denom":"ASSET17","index":"0.000004605778267637"},{"denom":"ASSET18","index":"0.000002193886868281"},{"denom":"ASSET2","index":"0.000004249742648985"},{"denom":"ASSET3","index":"0.000001243048763609"},{"denom":"ASSET4","index":"0.000011699192013329"},{"denom":"ASSET5","index":"0.000000964679662201"},{"denom":"ASSET6","index":"0.000003926772973318"},{"denom":"ASSET7","index":"0.000006014156746171"},{"denom":"ASSET8","index":"0.000007847778630999"},{"denom":"ASSET9","index":"0.000003389643643667"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003383074331503"},{"denom":"ASSET1","index":"0.000028697774885580"},{"denom":"ASSET10","index":"0.000022880621123289"},{"denom":"ASSET11","index":"0.000028511966470743"},{"denom":"ASSET12","index":"0.000027173358086556"},{"denom":"ASSET13","index":"0.000008954537947194"},{"denom":"ASSET14","index":"0.000026172910691250"},{"denom":"ASSET15","index":"0.000020614154391480"},{"denom":"ASSET16","index":"0.000012732692592075"},{"denom":"ASSET17","index":"0.000009985655741818"},{"denom":"ASSET18","index":"0.000004132359094826"},{"denom":"ASSET2","index":"0.000008689052893949"},{"denom":"ASSET3","index":"0.000002414485946546"},{"denom":"ASSET4","index":"0.000023266612079392"},{"denom":"ASSET5","index":"0.000001880944791026"},{"denom":"ASSET6","index":"0.000007591453768301"},{"denom":"ASSET7","index":"0.000011922604903868"},{"denom":"ASSET8","index":"0.000016278329144958"},{"denom":"ASSET9","index":"0.000006911169878531"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001436232590899"},{"denom":"ASSET1","index":"0.000011976183987962"},{"denom":"ASSET10","index":"0.000008344549248442"},{"denom":"ASSET11","index":"0.000011585862202045"},{"denom":"ASSET12","index":"0.000010432581326504"},{"denom":"ASSET13","index":"0.000003589949888597"},{"denom":"ASSET14","index":"0.000010822903112421"},{"denom":"ASSET15","index":"0.000007738224144105"},{"denom":"ASSET16","index":"0.000005395030251301"},{"denom":"ASSET17","index":"0.000003831216753031"},{"denom":"ASSET18","index":"0.000001825291199515"},{"denom":"ASSET2","index":"0.000003535633264667"},{"denom":"ASSET3","index":"0.000001033279031975"},{"denom":"ASSET4","index":"0.000009732781101914"},{"denom":"ASSET5","index":"0.000000802117585946"},{"denom":"ASSET6","index":"0.000003266576499617"},{"denom":"ASSET7","index":"0.000005003445288083"},{"denom":"ASSET8","index":"0.000006528100290032"},{"denom":"ASSET9","index":"0.000002819411735168"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003006064648013"},{"denom":"ASSET1","index":"0.000025531157590212"},{"denom":"ASSET10","index":"0.000020524407173472"},{"denom":"ASSET11","index":"0.000025409258384489"},{"denom":"ASSET12","index":"0.000024300714605646"},{"denom":"ASSET13","index":"0.000007986286383048"},{"denom":"ASSET14","index":"0.000023298685931189"},{"denom":"ASSET15","index":"0.000018459726056254"},{"denom":"ASSET16","index":"0.000011316095008653"},{"denom":"ASSET17","index":"0.000008930145684163"},{"denom":"ASSET18","index":"0.000003662445744281"},{"denom":"ASSET2","index":"0.000007743120539446"},{"denom":"ASSET3","index":"0.000002143639104141"},{"denom":"ASSET4","index":"0.000020695936675740"},{"denom":"ASSET5","index":"0.000001670457298921"},{"denom":"ASSET6","index":"0.000006739935351518"},{"denom":"ASSET7","index":"0.000010603283023237"},{"denom":"ASSET8","index":"0.000014518439118465"},{"denom":"ASSET9","index":"0.000006156725809403"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001476546163568"},{"denom":"ASSET1","index":"0.000012315891963405"},{"denom":"ASSET10","index":"0.000008580298213179"},{"denom":"ASSET11","index":"0.000011914434711559"},{"denom":"ASSET12","index":"0.000010728207916557"},{"denom":"ASSET13","index":"0.000003691365408921"},{"denom":"ASSET14","index":"0.000011129665168403"},{"denom":"ASSET15","index":"0.000007957699254808"},{"denom":"ASSET16","index":"0.000005547821683700"},{"denom":"ASSET17","index":"0.000003939724556249"},{"denom":"ASSET18","index":"0.000001876869355381"},{"denom":"ASSET2","index":"0.000003635796467281"},{"denom":"ASSET3","index":"0.000001062614251355"},{"denom":"ASSET4","index":"0.000010009213855342"},{"denom":"ASSET5","index":"0.000000825595704361"},{"denom":"ASSET6","index":"0.000003359085819117"},{"denom":"ASSET7","index":"0.000005145230371820"},{"denom":"ASSET8","index":"0.000006713635398099"},{"denom":"ASSET9","index":"0.000002899791505564"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000002611689387046"},{"denom":"ASSET1","index":"0.000022118950462866"},{"denom":"ASSET10","index":"0.000017388824351878"},{"denom":"ASSET11","index":"0.000021911701626113"},{"denom":"ASSET12","index":"0.000020757567192719"},{"denom":"ASSET13","index":"0.000006870825151743"},{"denom":"ASSET14","index":"0.000020152250667519"},{"denom":"ASSET15","index":"0.000015711809347683"},{"denom":"ASSET16","index":"0.000009830001439303"},{"denom":"ASSET17","index":"0.000007627368499381"},{"denom":"ASSET18","index":"0.000003205559295774"},{"denom":"ASSET2","index":"0.000006678615536452"},{"denom":"ASSET3","index":"0.000001865584989735"},{"denom":"ASSET4","index":"0.000017938012267073"},{"denom":"ASSET5","index":"0.000001453547274796"},{"denom":"ASSET6","index":"0.000005870892100855"},{"denom":"ASSET7","index":"0.000009195154067126"},{"denom":"ASSET8","index":"0.000012492245582088"},{"denom":"ASSET9","index":"0.000005313335607946"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000000860911540335"},{"denom":"ASSET1","index":"0.000007178593209511"},{"denom":"ASSET10","index":"0.000005001581264509"},{"denom":"ASSET11","index":"0.000006944753046495"},{"denom":"ASSET12","index":"0.000006253725385275"},{"denom":"ASSET13","index":"0.000002152029021603"},{"denom":"ASSET14","index":"0.000006487065889823"},{"denom":"ASSET15","index":"0.000004638329558286"},{"denom":"ASSET16","index":"0.000003233789604786"},{"denom":"ASSET17","index":"0.000002296430318850"},{"denom":"ASSET18","index":"0.000001093752386415"},{"denom":"ASSET2","index":"0.000002119051562716"},{"denom":"ASSET3","index":"0.000000619576500299"},{"denom":"ASSET4","index":"0.000005834012272169"},{"denom":"ASSET5","index":"0.000000481171104668"},{"denom":"ASSET6","index":"0.000001958161536025"},{"denom":"ASSET7","index":"0.000002998950124834"},{"denom":"ASSET8","index":"0.000003913325121242"},{"denom":"ASSET9","index":"0.000001690344597186"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000002357406510396"},{"denom":"ASSET1","index":"0.000020099972826550"},{"denom":"ASSET10","index":"0.000016611857270119"},{"denom":"ASSET11","index":"0.000020122040980663"},{"denom":"ASSET12","index":"0.000019473664705632"},{"denom":"ASSET13","index":"0.000006342954228467"},{"denom":"ASSET14","index":"0.000018379978414574"},{"denom":"ASSET15","index":"0.000014858739059306"},{"denom":"ASSET16","index":"0.000008878274052948"},{"denom":"ASSET17","index":"0.000007156982288871"},{"denom":"ASSET18","index":"0.000002845018303307"},{"denom":"ASSET2","index":"0.000006129987919866"},{"denom":"ASSET3","index":"0.000001678183905493"},{"denom":"ASSET4","index":"0.000016284739258605"},{"denom":"ASSET5","index":"0.000001308892339296"},{"denom":"ASSET6","index":"0.000005269046474537"},{"denom":"ASSET7","index":"0.000008337197620164"},{"denom":"ASSET8","index":"0.000011530009666752"},{"denom":"ASSET9","index":"0.000004871853664260"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001198976216272"},{"denom":"ASSET1","index":"0.000010001315625623"},{"denom":"ASSET10","index":"0.000006967712250892"},{"denom":"ASSET11","index":"0.000009674322112094"},{"denom":"ASSET12","index":"0.000008711677656379"},{"denom":"ASSET13","index":"0.000002997949876371"},{"denom":"ASSET14","index":"0.000009037652498526"},{"denom":"ASSET15","index":"0.000006461432574183"},{"denom":"ASSET16","index":"0.000004504564849919"},{"denom":"ASSET17","index":"0.000003199646809949"},{"denom":"ASSET18","index":"0.000001523932387037"},{"denom":"ASSET2","index":"0.000002952109664194"},{"denom":"ASSET3","index":"0.000000862814660308"},{"denom":"ASSET4","index":"0.000008126960283277"},{"denom":"ASSET5","index":"0.000000670285769165"},{"denom":"ASSET6","index":"0.000002728001960218"},{"denom":"ASSET7","index":"0.000004177571336390"},{"denom":"ASSET8","index":"0.000005451929234909"},{"denom":"ASSET9","index":"0.000002354149563130"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000002792091306062"},{"denom":"ASSET1","index":"0.000023760392481519"},{"denom":"ASSET10","index":"0.000019330735214415"},{"denom":"ASSET11","index":"0.000023705763948043"},{"denom":"ASSET12","index":"0.000022788595153270"},{"denom":"ASSET13","index":"0.000007460432475948"},{"denom":"ASSET14","index":"0.000021701401606991"},{"denom":"ASSET15","index":"0.000017344296121870"},{"denom":"ASSET16","index":"0.000010515175863945"},{"denom":"ASSET17","index":"0.000008375559402161"},{"denom":"ASSET18","index":"0.000003388923471278"},{"denom":"ASSET2","index":"0.000007222909907971"},{"denom":"ASSET3","index":"0.000001989926471838"},{"denom":"ASSET4","index":"0.000019255294602933"},{"denom":"ASSET5","index":"0.000001551437823125"},{"denom":"ASSET6","index":"0.000006253588147261"},{"denom":"ASSET7","index":"0.000009862028954195"},{"denom":"ASSET8","index":"0.000013562244421912"},{"denom":"ASSET9","index":"0.000005741841810541"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001507638919625"},{"denom":"ASSET1","index":"0.000012569401049902"},{"denom":"ASSET10","index":"0.000008757228353136"},{"denom":"ASSET11","index":"0.000012160184771718"},{"denom":"ASSET12","index":"0.000010949766096248"},{"denom":"ASSET13","index":"0.000003769097299062"},{"denom":"ASSET14","index":"0.000011358982374432"},{"denom":"ASSET15","index":"0.000008124020006893"},{"denom":"ASSET16","index":"0.000005660107258249"},{"denom":"ASSET17","index":"0.000004018934605743"},{"denom":"ASSET18","index":"0.000001912547658039"},{"denom":"ASSET2","index":"0.000003708791742277"},{"denom":"ASSET3","index":"0.000001085500022130"},{"denom":"ASSET4","index":"0.000010217484335287"},{"denom":"ASSET5","index":"0.000000839970255220"},{"denom":"ASSET6","index":"0.000003428801657204"},{"denom":"ASSET7","index":"0.000005250890980065"},{"denom":"ASSET8","index":"0.000006853295774638"},{"denom":"ASSET9","index":"0.000002959279822235"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003131246414749"},{"denom":"ASSET1","index":"0.000026589761836242"},{"denom":"ASSET10","index":"0.000021355242603721"},{"denom":"ASSET11","index":"0.000026458316408852"},{"denom":"ASSET12","index":"0.000025293988029420"},{"denom":"ASSET13","index":"0.000008316673174883"},{"denom":"ASSET14","index":"0.000024263343459355"},{"denom":"ASSET15","index":"0.000019213959771091"},{"denom":"ASSET16","index":"0.000011784585795875"},{"denom":"ASSET17","index":"0.000009292893547134"},{"denom":"ASSET18","index":"0.000003813004198036"},{"denom":"ASSET2","index":"0.000008060944762894"},{"denom":"ASSET3","index":"0.000002234070199415"},{"denom":"ASSET4","index":"0.000021557233504015"},{"denom":"ASSET5","index":"0.000001738116490695"},{"denom":"ASSET6","index":"0.000007021386599103"},{"denom":"ASSET7","index":"0.000011043212117572"},{"denom":"ASSET8","index":"0.000015117900391662"},{"denom":"ASSET9","index":"0.000006411442995536"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001538667310820"},{"denom":"ASSET1","index":"0.000012827917927858"},{"denom":"ASSET10","index":"0.000008937244372687"},{"denom":"ASSET11","index":"0.000012409488429871"},{"denom":"ASSET12","index":"0.000011174685151587"},{"denom":"ASSET13","index":"0.000003845530209513"},{"denom":"ASSET14","index":"0.000011592355937882"},{"denom":"ASSET15","index":"0.000008288166520415"},{"denom":"ASSET16","index":"0.000005778727600031"},{"denom":"ASSET17","index":"0.000004103871540546"},{"denom":"ASSET18","index":"0.000001954820673732"},{"denom":"ASSET2","index":"0.000003786730053405"},{"denom":"ASSET3","index":"0.000001107719069920"},{"denom":"ASSET4","index":"0.000010424698644316"},{"denom":"ASSET5","index":"0.000000859620346726"},{"denom":"ASSET6","index":"0.000003499178322240"},{"denom":"ASSET7","index":"0.000005359160034507"},{"denom":"ASSET8","index":"0.000006993045662639"},{"denom":"ASSET9","index":"0.000003020431244761"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003070496060295"},{"denom":"ASSET1","index":"0.000026054009108675"},{"denom":"ASSET10","index":"0.000020821706468932"},{"denom":"ASSET11","index":"0.000025897661631707"},{"denom":"ASSET12","index":"0.000024706407518076"},{"denom":"ASSET13","index":"0.000008135385272267"},{"denom":"ASSET14","index":"0.000023765921524780"},{"denom":"ASSET15","index":"0.000018749935123185"},{"denom":"ASSET16","index":"0.000011556337558875"},{"denom":"ASSET17","index":"0.000009079232430047"},{"denom":"ASSET18","index":"0.000003747682066764"},{"denom":"ASSET2","index":"0.000007892419371659"},{"denom":"ASSET3","index":"0.000002191201298955"},{"denom":"ASSET4","index":"0.000021122052487200"},{"denom":"ASSET5","index":"0.000001706992646915"},{"denom":"ASSET6","index":"0.000006888142834266"},{"denom":"ASSET7","index":"0.000010823268476718"},{"denom":"ASSET8","index":"0.000014789657857476"},{"denom":"ASSET9","index":"0.000006276911852268"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001679222100186"},{"denom":"ASSET1","index":"0.000013999028794594"},{"denom":"ASSET10","index":"0.000009753438641601"},{"denom":"ASSET11","index":"0.000013542280383343"},{"denom":"ASSET12","index":"0.000012194769233410"},{"denom":"ASSET13","index":"0.000004196505199295"},{"denom":"ASSET14","index":"0.000012650484277214"},{"denom":"ASSET15","index":"0.000009045065257184"},{"denom":"ASSET16","index":"0.000006306124840851"},{"denom":"ASSET17","index":"0.000004478614512126"},{"denom":"ASSET18","index":"0.000002133387092820"},{"denom":"ASSET2","index":"0.000004132436417626"},{"denom":"ASSET3","index":"0.000001208523228411"},{"denom":"ASSET4","index":"0.000011376342215965"},{"denom":"ASSET5","index":"0.000000938297641211"},{"denom":"ASSET6","index":"0.000003818809397684"},{"denom":"ASSET7","index":"0.000005848343062154"},{"denom":"ASSET8","index":"0.000007631418590690"},{"denom":"ASSET9","index":"0.000003295925469872"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003295755498274"},{"denom":"ASSET1","index":"0.000027960125957180"},{"denom":"ASSET10","index":"0.000022298091456525"},{"denom":"ASSET11","index":"0.000027779779629540"},{"denom":"ASSET12","index":"0.000026478335493542"},{"denom":"ASSET13","index":"0.000008724566942758"},{"denom":"ASSET14","index":"0.000025500389224880"},{"denom":"ASSET15","index":"0.000020088119547171"},{"denom":"ASSET16","index":"0.000012404652968467"},{"denom":"ASSET17","index":"0.000009730254100732"},{"denom":"ASSET18","index":"0.000004025857251145"},{"denom":"ASSET2","index":"0.000008465992991141"},{"denom":"ASSET3","index":"0.000002352288079447"},{"denom":"ASSET4","index":"0.000022667879187178"},{"denom":"ASSET5","index":"0.000001832649164275"},{"denom":"ASSET6","index":"0.000007396215489940"},{"denom":"ASSET7","index":"0.000011616026271508"},{"denom":"ASSET8","index":"0.000015861127767022"},{"denom":"ASSET9","index":"0.000006733269226830"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001488486853561"},{"denom":"ASSET1","index":"0.000012409943784184"},{"denom":"ASSET10","index":"0.000008645838046025"},{"denom":"ASSET11","index":"0.000012005445379346"},{"denom":"ASSET12","index":"0.000010810451131374"},{"denom":"ASSET13","index":"0.000003720376180879"},{"denom":"ASSET14","index":"0.000011214949536212"},{"denom":"ASSET15","index":"0.000008018487089665"},{"denom":"ASSET16","index":"0.000005590655707614"},{"denom":"ASSET17","index":"0.000003970139229188"},{"denom":"ASSET18","index":"0.000001891303352350"},{"denom":"ASSET2","index":"0.000003663191375205"},{"denom":"ASSET3","index":"0.000001071374153354"},{"denom":"ASSET4","index":"0.000010085549624159"},{"denom":"ASSET5","index":"0.000000831702541340"},{"denom":"ASSET6","index":"0.000003384835924059"},{"denom":"ASSET7","index":"0.000005184475396726"},{"denom":"ASSET8","index":"0.000006765467082995"},{"denom":"ASSET9","index":"0.000002921470807498"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003140601357292"},{"denom":"ASSET1","index":"0.000026678854887219"},{"denom":"ASSET10","index":"0.000021467437308134"},{"denom":"ASSET11","index":"0.000026557150856893"},{"denom":"ASSET12","index":"0.000025409189778577"},{"denom":"ASSET13","index":"0.000008348678217638"},{"denom":"ASSET14","index":"0.000024348515645151"},{"denom":"ASSET15","index":"0.000019305257093893"},{"denom":"ASSET16","index":"0.000011824039078448"},{"denom":"ASSET17","index":"0.000009337874135725"},{"denom":"ASSET18","index":"0.000003825021517438"},{"denom":"ASSET2","index":"0.000008092644314938"},{"denom":"ASSET3","index":"0.000002240059115813"},{"denom":"ASSET4","index":"0.000021626536887159"},{"denom":"ASSET5","index":"0.000001745574888449"},{"denom":"ASSET6","index":"0.000007040920669072"},{"denom":"ASSET7","index":"0.000011079696231301"},{"denom":"ASSET8","index":"0.000015176664815864"},{"denom":"ASSET9","index":"0.000006434669973810"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001385039568420"},{"denom":"ASSET1","index":"0.000011547928050470"},{"denom":"ASSET10","index":"0.000008045290512347"},{"denom":"ASSET11","index":"0.000011171268467624"},{"denom":"ASSET12","index":"0.000010059084660007"},{"denom":"ASSET13","index":"0.000003461116009305"},{"denom":"ASSET14","index":"0.000010435744242853"},{"denom":"ASSET15","index":"0.000007461023285412"},{"denom":"ASSET16","index":"0.000005202054396163"},{"denom":"ASSET17","index":"0.000003694427456948"},{"denom":"ASSET18","index":"0.000001759721935608"},{"denom":"ASSET2","index":"0.000003408719794369"},{"denom":"ASSET3","index":"0.000000996516691625"},{"denom":"ASSET4","index":"0.000009383865512804"},{"denom":"ASSET5","index":"0.000000774079930102"},{"denom":"ASSET6","index":"0.000003149704543173"},{"denom":"ASSET7","index":"0.000004824406205487"},{"denom":"ASSET8","index":"0.000006294466047200"},{"denom":"ASSET9","index":"0.000002718671529731"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000002978674281858"},{"denom":"ASSET1","index":"0.000025310372422717"},{"denom":"ASSET10","index":"0.000020411345436720"},{"denom":"ASSET11","index":"0.000025206262983954"},{"denom":"ASSET12","index":"0.000024139567910062"},{"denom":"ASSET13","index":"0.000007924745788344"},{"denom":"ASSET14","index":"0.000023102636423037"},{"denom":"ASSET15","index":"0.000018346974201526"},{"denom":"ASSET16","index":"0.000011213830154915"},{"denom":"ASSET17","index":"0.000008871351161454"},{"denom":"ASSET18","index":"0.000003625142276595"},{"denom":"ASSET2","index":"0.000007680838181843"},{"denom":"ASSET3","index":"0.000002123796319816"},{"denom":"ASSET4","index":"0.000020514843977806"},{"denom":"ASSET5","index":"0.000001655567492872"},{"denom":"ASSET6","index":"0.000006676037052519"},{"denom":"ASSET7","index":"0.000010510115662832"},{"denom":"ASSET8","index":"0.000014407133239162"},{"denom":"ASSET9","index":"0.000006107008804836"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001563741356289"},{"denom":"ASSET1","index":"0.000013036816883138"},{"denom":"ASSET10","index":"0.000009082880828100"},{"denom":"ASSET11","index":"0.000012611783735587"},{"denom":"ASSET12","index":"0.000011356772924286"},{"denom":"ASSET13","index":"0.000003908472310400"},{"denom":"ASSET14","index":"0.000011781101207579"},{"denom":"ASSET15","index":"0.000008423480314776"},{"denom":"ASSET16","index":"0.000005872928997340"},{"denom":"ASSET17","index":"0.000004170681814362"},{"denom":"ASSET18","index":"0.000001986659911066"},{"denom":"ASSET2","index":"0.000003848558848473"},{"denom":"ASSET3","index":"0.000001125668219966"},{"denom":"ASSET4","index":"0.000010594814661429"},{"denom":"ASSET5","index":"0.000000873679247744"},{"denom":"ASSET6","index":"0.000003556392613548"},{"denom":"ASSET7","index":"0.000005446486121273"},{"denom":"ASSET8","index":"0.000007106793880903"},{"denom":"ASSET9","index":"0.000003069683843425"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003115193601728"},{"denom":"ASSET1","index":"0.000026433576226141"},{"denom":"ASSET10","index":"0.000021120836274624"},{"denom":"ASSET11","index":"0.000026274076149270"},{"denom":"ASSET12","index":"0.000025063206789151"},{"denom":"ASSET13","index":"0.000008253838888439"},{"denom":"ASSET14","index":"0.000024111622086359"},{"denom":"ASSET15","index":"0.000019020166052921"},{"denom":"ASSET16","index":"0.000011725264187843"},{"denom":"ASSET17","index":"0.000009210335248597"},{"denom":"ASSET18","index":"0.000003802618681808"},{"denom":"ASSET2","index":"0.000008007094168018"},{"denom":"ASSET3","index":"0.000002223045227271"},{"denom":"ASSET4","index":"0.000021430343290469"},{"denom":"ASSET5","index":"0.000001731871182363"},{"denom":"ASSET6","index":"0.000006989160352022"},{"denom":"ASSET7","index":"0.000010981276608696"},{"denom":"ASSET8","index":"0.000015004007461071"},{"denom":"ASSET9","index":"0.000006368316319391"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001688791638136"},{"denom":"ASSET1","index":"0.000014080258863939"},{"denom":"ASSET10","index":"0.000009809129194434"},{"denom":"ASSET11","index":"0.000013620783833550"},{"denom":"ASSET12","index":"0.000012265553395360"},{"denom":"ASSET13","index":"0.000004220322334414"},{"denom":"ASSET14","index":"0.000012723923918464"},{"denom":"ASSET15","index":"0.000009096721995874"},{"denom":"ASSET16","index":"0.000006342080828109"},{"denom":"ASSET17","index":"0.000004504180706554"},{"denom":"ASSET18","index":"0.000002144953146672"},{"denom":"ASSET2","index":"0.000004156260911908"},{"denom":"ASSET3","index":"0.000001214958013048"},{"denom":"ASSET4","index":"0.000011442695468341"},{"denom":"ASSET5","index":"0.000000943249221039"},{"denom":"ASSET6","index":"0.000003840371828516"},{"denom":"ASSET7","index":"0.000005881501290436"},{"denom":"ASSET8","index":"0.000007675221120608"},{"denom":"ASSET9","index":"0.000003314626361051"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003342989987813"},{"denom":"ASSET1","index":"0.000028363859076608"},{"denom":"ASSET10","index":"0.000022643596968544"},{"denom":"ASSET11","index":"0.000028187678804911"},{"denom":"ASSET12","index":"0.000026879157824253"},{"denom":"ASSET13","index":"0.000008853292918908"},{"denom":"ASSET14","index":"0.000025870927331183"},{"denom":"ASSET15","index":"0.000020395094195043"},{"denom":"ASSET16","index":"0.000012581780801373"},{"denom":"ASSET17","index":"0.000009877287329505"},{"denom":"ASSET18","index":"0.000004080927248291"},{"denom":"ASSET2","index":"0.000008590241612281"},{"denom":"ASSET3","index":"0.000002384972961476"},{"denom":"ASSET4","index":"0.000022995501297970"},{"denom":"ASSET5","index":"0.000001858071035633"},{"denom":"ASSET6","index":"0.000007500418590266"},{"denom":"ASSET7","index":"0.000011782462758670"},{"denom":"ASSET8","index":"0.000016095075530395"},{"denom":"ASSET9","index":"0.000006831506736707"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001571496317510"},{"denom":"ASSET1","index":"0.000013101483241955"},{"denom":"ASSET10","index":"0.000009127906315185"},{"denom":"ASSET11","index":"0.000012674221268720"},{"denom":"ASSET12","index":"0.000011413128948859"},{"denom":"ASSET13","index":"0.000003927726401627"},{"denom":"ASSET14","index":"0.000011839579408375"},{"denom":"ASSET15","index":"0.000008464899606481"},{"denom":"ASSET16","index":"0.000005901733523932"},{"denom":"ASSET17","index":"0.000004191468360414"},{"denom":"ASSET18","index":"0.000001996729506447"},{"denom":"ASSET2","index":"0.000003867268629536"},{"denom":"ASSET3","index":"0.000001131250124766"},{"denom":"ASSET4","index":"0.000010647059997798"},{"denom":"ASSET5","index":"0.000000878057844331"},{"denom":"ASSET6","index":"0.000003573906419993"},{"denom":"ASSET7","index":"0.000005473254280118"},{"denom":"ASSET8","index":"0.000007142132243950"},{"denom":"ASSET9","index":"0.000003084563647228"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003113134051861"},{"denom":"ASSET1","index":"0.000026415094552464"},{"denom":"ASSET10","index":"0.000021090707465492"},{"denom":"ASSET11","index":"0.000026251548228726"},{"denom":"ASSET12","index":"0.000025034408517114"},{"denom":"ASSET13","index":"0.000008245703890405"},{"denom":"ASSET14","index":"0.000024093200316600"},{"denom":"ASSET15","index":"0.000018995578271326"},{"denom":"ASSET16","index":"0.000011717396138812"},{"denom":"ASSET17","index":"0.000009199501798709"},{"denom":"ASSET18","index":"0.000003801350346824"},{"denom":"ASSET2","index":"0.000007999912620195"},{"denom":"ASSET3","index":"0.000002221641081089"},{"denom":"ASSET4","index":"0.000021415082747190"},{"denom":"ASSET5","index":"0.000001730738444371"},{"denom":"ASSET6","index":"0.000006985361363625"},{"denom":"ASSET7","index":"0.000010973556930807"},{"denom":"ASSET8","index":"0.000014990236718633"},{"denom":"ASSET9","index":"0.000006362695679170"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001486431692511"},{"denom":"ASSET1","index":"0.000012397696164316"},{"denom":"ASSET10","index":"0.000008637613387551"},{"denom":"ASSET11","index":"0.000011993186507636"},{"denom":"ASSET12","index":"0.000010799842650204"},{"denom":"ASSET13","index":"0.000003716482933529"},{"denom":"ASSET14","index":"0.000011203544902380"},{"denom":"ASSET15","index":"0.000008010260087670"},{"denom":"ASSET16","index":"0.000005584816956599"},{"denom":"ASSET17","index":"0.000003965970925374"},{"denom":"ASSET18","index":"0.000001889326540182"},{"denom":"ASSET2","index":"0.000003659157213720"},{"denom":"ASSET3","index":"0.000001070618372770"},{"denom":"ASSET4","index":"0.000010074793405297"},{"denom":"ASSET5","index":"0.000000830819234978"},{"denom":"ASSET6","index":"0.000003381410064224"},{"denom":"ASSET7","index":"0.000005179499895414"},{"denom":"ASSET8","index":"0.000006757975701421"},{"denom":"ASSET9","index":"0.000002918767283230"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003023961266495"},{"denom":"ASSET1","index":"0.000025674667559579"},{"denom":"ASSET10","index":"0.000020567435721356"},{"denom":"ASSET11","index":"0.000025532965784321"},{"denom":"ASSET12","index":"0.000024383768132692"},{"denom":"ASSET13","index":"0.000008022807352722"},{"denom":"ASSET14","index":"0.000023423766496233"},{"denom":"ASSET15","index":"0.000018512228577533"},{"denom":"ASSET16","index":"0.000011384524743973"},{"denom":"ASSET17","index":"0.000008960010456843"},{"denom":"ASSET18","index":"0.000003688974211121"},{"denom":"ASSET2","index":"0.000007780619396113"},{"denom":"ASSET3","index":"0.000002157718690670"},{"denom":"ASSET4","index":"0.000020813357966886"},{"denom":"ASSET5","index":"0.000001681323481152"},{"denom":"ASSET6","index":"0.000006783427048921"},{"denom":"ASSET7","index":"0.000010664665966441"},{"denom":"ASSET8","index":"0.000014584270248941"},{"denom":"ASSET9","index":"0.000006187655866052"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001789525520762"},{"denom":"ASSET1","index":"0.000014923544215299"},{"denom":"ASSET10","index":"0.000010397506905977"},{"denom":"ASSET11","index":"0.000014436898494348"},{"denom":"ASSET12","index":"0.000013000171779235"},{"denom":"ASSET13","index":"0.000004474200642702"},{"denom":"ASSET14","index":"0.000013486043818595"},{"denom":"ASSET15","index":"0.000009642393672833"},{"denom":"ASSET16","index":"0.000006722519347127"},{"denom":"ASSET17","index":"0.000004774389100140"},{"denom":"ASSET18","index":"0.000002273850196939"},{"denom":"ASSET2","index":"0.000004405342981073"},{"denom":"ASSET3","index":"0.000001288179849576"},{"denom":"ASSET4","index":"0.000012128232625798"},{"denom":"ASSET5","index":"0.000001000370297599"},{"denom":"ASSET6","index":"0.000004071112533615"},{"denom":"ASSET7","index":"0.000006234326262993"},{"denom":"ASSET8","index":"0.000008135261932908"},{"denom":"ASSET9","index":"0.000003514061787852"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003488279034648"},{"denom":"ASSET1","index":"0.000029592208548275"},{"denom":"ASSET10","index":"0.000023577626976592"},{"denom":"ASSET11","index":"0.000029395914355993"},{"denom":"ASSET12","index":"0.000028007798530295"},{"denom":"ASSET13","index":"0.000009231498766276"},{"denom":"ASSET14","index":"0.000026986732997785"},{"denom":"ASSET15","index":"0.000021244630549189"},{"denom":"ASSET16","index":"0.000013129960095172"},{"denom":"ASSET17","index":"0.000010292381952670"},{"denom":"ASSET18","index":"0.000004261641431672"},{"denom":"ASSET2","index":"0.000008958343988321"},{"denom":"ASSET3","index":"0.000002489657102823"},{"denom":"ASSET4","index":"0.000023991917258738"},{"denom":"ASSET5","index":"0.000001939742890351"},{"denom":"ASSET6","index":"0.000007829259808535"},{"denom":"ASSET7","index":"0.000012294264842111"},{"denom":"ASSET8","index":"0.000016782088113605"},{"denom":"ASSET9","index":"0.000007125719490615"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001504632489095"},{"denom":"ASSET1","index":"0.000012543084148708"},{"denom":"ASSET10","index":"0.000008738830231438"},{"denom":"ASSET11","index":"0.000012134501498699"},{"denom":"ASSET12","index":"0.000010926897843985"},{"denom":"ASSET13","index":"0.000003760573206331"},{"denom":"ASSET14","index":"0.000011335480493994"},{"denom":"ASSET15","index":"0.000008104451906425"},{"denom":"ASSET16","index":"0.000005650267962622"},{"denom":"ASSET17","index":"0.000004012577307899"},{"denom":"ASSET18","index":"0.000001911199106291"},{"denom":"ASSET2","index":"0.000003702780265705"},{"denom":"ASSET3","index":"0.000001083281631273"},{"denom":"ASSET4","index":"0.000010193733911157"},{"denom":"ASSET5","index":"0.000000840685682831"},{"denom":"ASSET6","index":"0.000003421207682886"},{"denom":"ASSET7","index":"0.000005240341290738"},{"denom":"ASSET8","index":"0.000006837711289210"},{"denom":"ASSET9","index":"0.000002953488070376"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003015423229771"},{"denom":"ASSET1","index":"0.000025588098096649"},{"denom":"ASSET10","index":"0.000020460473772645"},{"denom":"ASSET11","index":"0.000025438043766359"},{"denom":"ASSET12","index":"0.000024273358860204"},{"denom":"ASSET13","index":"0.000007991752317173"},{"denom":"ASSET14","index":"0.000023342063892494"},{"denom":"ASSET15","index":"0.000018422728556898"},{"denom":"ASSET16","index":"0.000011348811151398"},{"denom":"ASSET17","index":"0.000008919790197810"},{"denom":"ASSET18","index":"0.000003679502338318"},{"denom":"ASSET2","index":"0.000007752126098631"},{"denom":"ASSET3","index":"0.000002151933074669"},{"denom":"ASSET4","index":"0.000020744635257959"},{"denom":"ASSET5","index":"0.000001676458472807"},{"denom":"ASSET6","index":"0.000006763790928604"},{"denom":"ASSET7","index":"0.000010629564741383"},{"denom":"ASSET8","index":"0.000014527278079751"},{"denom":"ASSET9","index":"0.000006165283413682"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001790270882045"},{"denom":"ASSET1","index":"0.000014924962381265"},{"denom":"ASSET10","index":"0.000010398687848362"},{"denom":"ASSET11","index":"0.000014438353512768"},{"denom":"ASSET12","index":"0.000013001639266884"},{"denom":"ASSET13","index":"0.000004474427888377"},{"denom":"ASSET14","index":"0.000013487623477013"},{"denom":"ASSET15","index":"0.000009643475881721"},{"denom":"ASSET16","index":"0.000006723198012370"},{"denom":"ASSET17","index":"0.000004774888563278"},{"denom":"ASSET18","index":"0.000002274381117071"},{"denom":"ASSET2","index":"0.000004405715467922"},{"denom":"ASSET3","index":"0.000001288670212721"},{"denom":"ASSET4","index":"0.000012129616185469"},{"denom":"ASSET5","index":"0.000001000078046809"},{"denom":"ASSET6","index":"0.000004071523241162"},{"denom":"ASSET7","index":"0.000006235339827137"},{"denom":"ASSET8","index":"0.000008136175240279"},{"denom":"ASSET9","index":"0.000003514327977106"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003452635056994"},{"denom":"ASSET1","index":"0.000029280443630050"},{"denom":"ASSET10","index":"0.000023297581891953"},{"denom":"ASSET11","index":"0.000029078046899152"},{"denom":"ASSET12","index":"0.000027688393753974"},{"denom":"ASSET13","index":"0.000009130247174920"},{"denom":"ASSET14","index":"0.000026700258191979"},{"denom":"ASSET15","index":"0.000020998119885469"},{"denom":"ASSET16","index":"0.000012993858989816"},{"denom":"ASSET17","index":"0.000010174919177657"},{"denom":"ASSET18","index":"0.000004220034662939"},{"denom":"ASSET2","index":"0.000008861755768133"},{"denom":"ASSET3","index":"0.000002464736347038"},{"denom":"ASSET4","index":"0.000023740327943060"},{"denom":"ASSET5","index":"0.000001919615043943"},{"denom":"ASSET6","index":"0.000007749671229698"},{"denom":"ASSET7","index":"0.000012165961282812"},{"denom":"ASSET8","index":"0.000016598407083950"},{"denom":"ASSET9","index":"0.000007048985746822"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001835550145227"},{"denom":"ASSET1","index":"0.000015324623289081"},{"denom":"ASSET10","index":"0.000010676536631006"},{"denom":"ASSET11","index":"0.000014825027987456"},{"denom":"ASSET12","index":"0.000013348446318211"},{"denom":"ASSET13","index":"0.000004592576069005"},{"denom":"ASSET14","index":"0.000013848041619836"},{"denom":"ASSET15","index":"0.000009899388384035"},{"denom":"ASSET16","index":"0.000006901816574290"},{"denom":"ASSET17","index":"0.000004903435367793"},{"denom":"ASSET18","index":"0.000002335145446851"},{"denom":"ASSET2","index":"0.000004522262656184"},{"denom":"ASSET3","index":"0.000001321152019851"},{"denom":"ASSET4","index":"0.000012452875481226"},{"denom":"ASSET5","index":"0.000001025095544814"},{"denom":"ASSET6","index":"0.000004178097003954"},{"denom":"ASSET7","index":"0.000006402221272666"},{"denom":"ASSET8","index":"0.000008352493301969"},{"denom":"ASSET9","index":"0.000003608188289508"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003336473275634"},{"denom":"ASSET1","index":"0.000028284037775138"},{"denom":"ASSET10","index":"0.000022321061137243"},{"denom":"ASSET11","index":"0.000028041053149272"},{"denom":"ASSET12","index":"0.000026607048139233"},{"denom":"ASSET13","index":"0.000008795774551756"},{"denom":"ASSET14","index":"0.000025776026947277"},{"denom":"ASSET15","index":"0.000020150006768141"},{"denom":"ASSET16","index":"0.000012562977954735"},{"denom":"ASSET17","index":"0.000009778271060189"},{"denom":"ASSET18","index":"0.000004091528532498"},{"denom":"ASSET2","index":"0.000008544798017437"},{"denom":"ASSET3","index":"0.000002382883485470"},{"denom":"ASSET4","index":"0.000022934405116164"},{"denom":"ASSET5","index":"0.000001855148612588"},{"denom":"ASSET6","index":"0.000007498692848558"},{"denom":"ASSET7","index":"0.000011756140274513"},{"denom":"ASSET8","index":"0.000015991743254740"},{"denom":"ASSET9","index":"0.000006799136288961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001764742979644"},{"denom":"ASSET1","index":"0.000014715413525055"},{"denom":"ASSET10","index":"0.000010252344388411"},{"denom":"ASSET11","index":"0.000014235671854472"},{"denom":"ASSET12","index":"0.000012819403806098"},{"denom":"ASSET13","index":"0.000004411268809023"},{"denom":"ASSET14","index":"0.000013298556836595"},{"denom":"ASSET15","index":"0.000009507714678855"},{"denom":"ASSET16","index":"0.000006629264655353"},{"denom":"ASSET17","index":"0.000004707943412672"},{"denom":"ASSET18","index":"0.000002242718729968"},{"denom":"ASSET2","index":"0.000004343575199063"},{"denom":"ASSET3","index":"0.000001270873946982"},{"denom":"ASSET4","index":"0.000011958811999481"},{"denom":"ASSET5","index":"0.000000985972145064"},{"denom":"ASSET6","index":"0.000004013936750564"},{"denom":"ASSET7","index":"0.000006147757064510"},{"denom":"ASSET8","index":"0.000008021987100262"},{"denom":"ASSET9","index":"0.000003464735549761"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003371223111771"},{"denom":"ASSET1","index":"0.000028586584995448"},{"denom":"ASSET10","index":"0.000022716281614844"},{"denom":"ASSET11","index":"0.000028381809067472"},{"denom":"ASSET12","index":"0.000027011101270499"},{"denom":"ASSET13","index":"0.000008910504058238"},{"denom":"ASSET14","index":"0.000026065694327630"},{"denom":"ASSET15","index":"0.000020479714095343"},{"denom":"ASSET16","index":"0.000012688778091614"},{"denom":"ASSET17","index":"0.000009925875585388"},{"denom":"ASSET18","index":"0.000004122881217339"},{"denom":"ASSET2","index":"0.000008649339803247"},{"denom":"ASSET3","index":"0.000002407313457267"},{"denom":"ASSET4","index":"0.000023177863483423"},{"denom":"ASSET5","index":"0.000001874397047373"},{"denom":"ASSET6","index":"0.000007568278053481"},{"denom":"ASSET7","index":"0.000011878402488901"},{"denom":"ASSET8","index":"0.000016198768839280"},{"denom":"ASSET9","index":"0.000006880150170591"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001519402004985"},{"denom":"ASSET1","index":"0.000012669186594649"},{"denom":"ASSET10","index":"0.000008826466179926"},{"denom":"ASSET11","index":"0.000012255973562605"},{"denom":"ASSET12","index":"0.000011036700348729"},{"denom":"ASSET13","index":"0.000003798237040326"},{"denom":"ASSET14","index":"0.000011448841492233"},{"denom":"ASSET15","index":"0.000008185476833202"},{"denom":"ASSET16","index":"0.000005707270529482"},{"denom":"ASSET17","index":"0.000004053346512768"},{"denom":"ASSET18","index":"0.000001930471259949"},{"denom":"ASSET2","index":"0.000003739819114914"},{"denom":"ASSET3","index":"0.000001093862254735"},{"denom":"ASSET4","index":"0.000010296025367816"},{"denom":"ASSET5","index":"0.000000848935723420"},{"denom":"ASSET6","index":"0.000003455768651901"},{"denom":"ASSET7","index":"0.000005292985608899"},{"denom":"ASSET8","index":"0.000006906177861104"},{"denom":"ASSET9","index":"0.000002983065805906"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003090388166914"},{"denom":"ASSET1","index":"0.000026235396530584"},{"denom":"ASSET10","index":"0.000021016328726441"},{"denom":"ASSET11","index":"0.000026091077525301"},{"denom":"ASSET12","index":"0.000024916432469284"},{"denom":"ASSET13","index":"0.000008198423394567"},{"denom":"ASSET14","index":"0.000023935350029219"},{"denom":"ASSET15","index":"0.000018916111125702"},{"denom":"ASSET16","index":"0.000011633439861257"},{"denom":"ASSET17","index":"0.000009156707623184"},{"denom":"ASSET18","index":"0.000003769226369030"},{"denom":"ASSET2","index":"0.000007950992094695"},{"denom":"ASSET3","index":"0.000002205065882760"},{"denom":"ASSET4","index":"0.000021268551776440"},{"denom":"ASSET5","index":"0.000001717872208784"},{"denom":"ASSET6","index":"0.000006931889619894"},{"denom":"ASSET7","index":"0.000010897757198785"},{"denom":"ASSET8","index":"0.000014903243728132"},{"denom":"ASSET9","index":"0.000006323427167640"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001518878942956"},{"denom":"ASSET1","index":"0.000012665267621292"},{"denom":"ASSET10","index":"0.000008823986077449"},{"denom":"ASSET11","index":"0.000012252067733139"},{"denom":"ASSET12","index":"0.000011032961258059"},{"denom":"ASSET13","index":"0.000003796959064490"},{"denom":"ASSET14","index":"0.000011445207974612"},{"denom":"ASSET15","index":"0.000008182978177143"},{"denom":"ASSET16","index":"0.000005705208605625"},{"denom":"ASSET17","index":"0.000004051932467214"},{"denom":"ASSET18","index":"0.000001930172487911"},{"denom":"ASSET2","index":"0.000003738815596953"},{"denom":"ASSET3","index":"0.000001093764409816"},{"denom":"ASSET4","index":"0.000010292823511460"},{"denom":"ASSET5","index":"0.000000848799308881"},{"denom":"ASSET6","index":"0.000003454770460461"},{"denom":"ASSET7","index":"0.000005291055545873"},{"denom":"ASSET8","index":"0.000006904298477127"},{"denom":"ASSET9","index":"0.000002981997347372"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003032310940473"},{"denom":"ASSET1","index":"0.000025733484746235"},{"denom":"ASSET10","index":"0.000020566326171769"},{"denom":"ASSET11","index":"0.000025579130700492"},{"denom":"ASSET12","index":"0.000024402998631681"},{"denom":"ASSET13","index":"0.000008035434808363"},{"denom":"ASSET14","index":"0.000023473377840860"},{"denom":"ASSET15","index":"0.000018519821992016"},{"denom":"ASSET16","index":"0.000011413808805814"},{"denom":"ASSET17","index":"0.000008967671528488"},{"denom":"ASSET18","index":"0.000003701450923042"},{"denom":"ASSET2","index":"0.000007795399667781"},{"denom":"ASSET3","index":"0.000002164126947351"},{"denom":"ASSET4","index":"0.000020862528644023"},{"denom":"ASSET5","index":"0.000001685967393794"},{"denom":"ASSET6","index":"0.000006803442800114"},{"denom":"ASSET7","index":"0.000010689840259007"},{"denom":"ASSET8","index":"0.000014607710652032"},{"denom":"ASSET9","index":"0.000006199747658625"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001387661284101"},{"denom":"ASSET1","index":"0.000011573014587468"},{"denom":"ASSET10","index":"0.000008062929395432"},{"denom":"ASSET11","index":"0.000011195232526081"},{"denom":"ASSET12","index":"0.000010081345808669"},{"denom":"ASSET13","index":"0.000003469153210252"},{"denom":"ASSET14","index":"0.000010458456853962"},{"denom":"ASSET15","index":"0.000007477132344649"},{"denom":"ASSET16","index":"0.000005213124040705"},{"denom":"ASSET17","index":"0.000003702666811251"},{"denom":"ASSET18","index":"0.000001763430297203"},{"denom":"ASSET2","index":"0.000003416142938760"},{"denom":"ASSET3","index":"0.000000999142965196"},{"denom":"ASSET4","index":"0.000009404961585085"},{"denom":"ASSET5","index":"0.000000775694605619"},{"denom":"ASSET6","index":"0.000003156459710063"},{"denom":"ASSET7","index":"0.000004834670963223"},{"denom":"ASSET8","index":"0.000006308893323556"},{"denom":"ASSET9","index":"0.000002724996361089"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000002847838387483"},{"denom":"ASSET1","index":"0.000024182680336096"},{"denom":"ASSET10","index":"0.000019393227963423"},{"denom":"ASSET11","index":"0.000024054653395269"},{"denom":"ASSET12","index":"0.000022982316432831"},{"denom":"ASSET13","index":"0.000007558836235579"},{"denom":"ASSET14","index":"0.000022064079622497"},{"denom":"ASSET15","index":"0.000017450899901336"},{"denom":"ASSET16","index":"0.000010721434414440"},{"denom":"ASSET17","index":"0.000008446187739031"},{"denom":"ASSET18","index":"0.000003472449339717"},{"denom":"ASSET2","index":"0.000007330038539196"},{"denom":"ASSET3","index":"0.000002031951160271"},{"denom":"ASSET4","index":"0.000019603371773062"},{"denom":"ASSET5","index":"0.000001583403578691"},{"denom":"ASSET6","index":"0.000006387295602350"},{"denom":"ASSET7","index":"0.000010043914419286"},{"denom":"ASSET8","index":"0.000013741733556815"},{"denom":"ASSET9","index":"0.000005829813216311"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001740203165372"},{"denom":"ASSET1","index":"0.000014506985633466"},{"denom":"ASSET10","index":"0.000010106727386233"},{"denom":"ASSET11","index":"0.000014033828203465"},{"denom":"ASSET12","index":"0.000012637643303754"},{"denom":"ASSET13","index":"0.000004348390877948"},{"denom":"ASSET14","index":"0.000013109742216014"},{"denom":"ASSET15","index":"0.000009373174592071"},{"denom":"ASSET16","index":"0.000006535288529808"},{"denom":"ASSET17","index":"0.000004640541774324"},{"denom":"ASSET18","index":"0.000002210185042151"},{"denom":"ASSET2","index":"0.000004281704260297"},{"denom":"ASSET3","index":"0.000001252226487004"},{"denom":"ASSET4","index":"0.000011789770593618"},{"denom":"ASSET5","index":"0.000000971719285773"},{"denom":"ASSET6","index":"0.000003956739313965"},{"denom":"ASSET7","index":"0.000006060014064326"},{"denom":"ASSET8","index":"0.000007908186039228"},{"denom":"ASSET9","index":"0.000003415836748573"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003351161845380"},{"denom":"ASSET1","index":"0.000028416485386018"},{"denom":"ASSET10","index":"0.000022605276372189"},{"denom":"ASSET11","index":"0.000028218825237526"},{"denom":"ASSET12","index":"0.000026868556551399"},{"denom":"ASSET13","index":"0.000008859853422879"},{"denom":"ASSET14","index":"0.000025912194276628"},{"denom":"ASSET15","index":"0.000020375555431981"},{"denom":"ASSET16","index":"0.000012611404420708"},{"denom":"ASSET17","index":"0.000009873044520717"},{"denom":"ASSET18","index":"0.000004095473642305"},{"denom":"ASSET2","index":"0.000008599384819082"},{"denom":"ASSET3","index":"0.000002391571176633"},{"denom":"ASSET4","index":"0.000023040021162794"},{"denom":"ASSET5","index":"0.000001862805125681"},{"denom":"ASSET6","index":"0.000007520693553142"},{"denom":"ASSET7","index":"0.000011806544930596"},{"denom":"ASSET8","index":"0.000016107343127742"},{"denom":"ASSET9","index":"0.000006840485865179"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001711866379191"},{"denom":"ASSET1","index":"0.000014286095556473"},{"denom":"ASSET10","index":"0.000009953932372868"},{"denom":"ASSET11","index":"0.000013820467901333"},{"denom":"ASSET12","index":"0.000012444127332464"},{"denom":"ASSET13","index":"0.000004281948436482"},{"denom":"ASSET14","index":"0.000012909754987604"},{"denom":"ASSET15","index":"0.000009230383516596"},{"denom":"ASSET16","index":"0.000006434335097252"},{"denom":"ASSET17","index":"0.000004569541988186"},{"denom":"ASSET18","index":"0.000002177494034331"},{"denom":"ASSET2","index":"0.000004215756269820"},{"denom":"ASSET3","index":"0.000001232543793017"},{"denom":"ASSET4","index":"0.000011608736539419"},{"denom":"ASSET5","index":"0.000000956362683841"},{"denom":"ASSET6","index":"0.000003896207879038"},{"denom":"ASSET7","index":"0.000005968707442112"},{"denom":"ASSET8","index":"0.000007787850781065"},{"denom":"ASSET9","index":"0.000003362105568731"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003408995344605"},{"denom":"ASSET1","index":"0.000028940875589883"},{"denom":"ASSET10","index":"0.000023121939135123"},{"denom":"ASSET11","index":"0.000028765460883304"},{"denom":"ASSET12","index":"0.000027437813762181"},{"denom":"ASSET13","index":"0.000009035078182388"},{"denom":"ASSET14","index":"0.000026397840013038"},{"denom":"ASSET15","index":"0.000020822021063845"},{"denom":"ASSET16","index":"0.000012835900360827"},{"denom":"ASSET17","index":"0.000010082289518918"},{"denom":"ASSET18","index":"0.000004163537456367"},{"denom":"ASSET2","index":"0.000008764373535196"},{"denom":"ASSET3","index":"0.000002432999591430"},{"denom":"ASSET4","index":"0.000023461370966582"},{"denom":"ASSET5","index":"0.000001895172356369"},{"denom":"ASSET6","index":"0.000007651446569151"},{"denom":"ASSET7","index":"0.000012022926111771"},{"denom":"ASSET8","index":"0.000016426068411072"},{"denom":"ASSET9","index":"0.000006969965423669"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001459800105667"},{"denom":"ASSET1","index":"0.000012176396665923"},{"denom":"ASSET10","index":"0.000008484162206626"},{"denom":"ASSET11","index":"0.000011779823335110"},{"denom":"ASSET12","index":"0.000010607197020722"},{"denom":"ASSET13","index":"0.000003650070053435"},{"denom":"ASSET14","index":"0.000011003770351536"},{"denom":"ASSET15","index":"0.000007867650218206"},{"denom":"ASSET16","index":"0.000005484791497715"},{"denom":"ASSET17","index":"0.000003895079438851"},{"denom":"ASSET18","index":"0.000001855233857943"},{"denom":"ASSET2","index":"0.000003594230705131"},{"denom":"ASSET3","index":"0.000001050691410948"},{"denom":"ASSET4","index":"0.000009896100013746"},{"denom":"ASSET5","index":"0.000000815938232363"},{"denom":"ASSET6","index":"0.000003321871434831"},{"denom":"ASSET7","index":"0.000005087078588365"},{"denom":"ASSET8","index":"0.000006638044976977"},{"denom":"ASSET9","index":"0.000002867179598640"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000002975317591563"},{"denom":"ASSET1","index":"0.000025265738469637"},{"denom":"ASSET10","index":"0.000020245724387946"},{"denom":"ASSET11","index":"0.000025128558675417"},{"denom":"ASSET12","index":"0.000023998925764885"},{"denom":"ASSET13","index":"0.000007895668684136"},{"denom":"ASSET14","index":"0.000023051238668493"},{"denom":"ASSET15","index":"0.000018221178423268"},{"denom":"ASSET16","index":"0.000011202197653725"},{"denom":"ASSET17","index":"0.000008818540737002"},{"denom":"ASSET18","index":"0.000003629428323701"},{"denom":"ASSET2","index":"0.000007657107369447"},{"denom":"ASSET3","index":"0.000002122660280404"},{"denom":"ASSET4","index":"0.000020482509156357"},{"denom":"ASSET5","index":"0.000001654309607539"},{"denom":"ASSET6","index":"0.000006675356935536"},{"denom":"ASSET7","index":"0.000010494215679887"},{"denom":"ASSET8","index":"0.000014353927855523"},{"denom":"ASSET9","index":"0.000006089535217587"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001617402557586"},{"denom":"ASSET1","index":"0.000013485147451276"},{"denom":"ASSET10","index":"0.000009395521488362"},{"denom":"ASSET11","index":"0.000013045402724081"},{"denom":"ASSET12","index":"0.000011747619504798"},{"denom":"ASSET13","index":"0.000004042433845849"},{"denom":"ASSET14","index":"0.000012186291683878"},{"denom":"ASSET15","index":"0.000008713380887153"},{"denom":"ASSET16","index":"0.000006074912523982"},{"denom":"ASSET17","index":"0.000004313788518972"},{"denom":"ASSET18","index":"0.000002055002188551"},{"denom":"ASSET2","index":"0.000003980226055173"},{"denom":"ASSET3","index":"0.000001163714704894"},{"denom":"ASSET4","index":"0.000010959296640193"},{"denom":"ASSET5","index":"0.000000903085512923"},{"denom":"ASSET6","index":"0.000003677767486712"},{"denom":"ASSET7","index":"0.000005633022700557"},{"denom":"ASSET8","index":"0.000007351244780963"},{"denom":"ASSET9","index":"0.000003174742420725"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003091273620954"},{"denom":"ASSET1","index":"0.000026212594205506"},{"denom":"ASSET10","index":"0.000020831747389799"},{"denom":"ASSET11","index":"0.000026024829344923"},{"denom":"ASSET12","index":"0.000024768925461013"},{"denom":"ASSET13","index":"0.000008170539761157"},{"denom":"ASSET14","index":"0.000023900540063840"},{"denom":"ASSET15","index":"0.000018780610027247"},{"denom":"ASSET16","index":"0.000011634658240098"},{"denom":"ASSET17","index":"0.000009101405984603"},{"denom":"ASSET18","index":"0.000003780149264156"},{"denom":"ASSET2","index":"0.000007930960667726"},{"denom":"ASSET3","index":"0.000002206123035767"},{"denom":"ASSET4","index":"0.000021253166889363"},{"denom":"ASSET5","index":"0.000001718500807532"},{"denom":"ASSET6","index":"0.000006939076737962"},{"denom":"ASSET7","index":"0.000010891166816552"},{"denom":"ASSET8","index":"0.000014853628574871"},{"denom":"ASSET9","index":"0.000006308302102729"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001496654334782"},{"denom":"ASSET1","index":"0.000012477377024436"},{"denom":"ASSET10","index":"0.000008693096469902"},{"denom":"ASSET11","index":"0.000012070207597683"},{"denom":"ASSET12","index":"0.000010869145414891"},{"denom":"ASSET13","index":"0.000003740467488528"},{"denom":"ASSET14","index":"0.000011275146493218"},{"denom":"ASSET15","index":"0.000008061604145195"},{"denom":"ASSET16","index":"0.000005620924281527"},{"denom":"ASSET17","index":"0.000003991662400298"},{"denom":"ASSET18","index":"0.000001901487064682"},{"denom":"ASSET2","index":"0.000003683218415613"},{"denom":"ASSET3","index":"0.000001077217249546"},{"denom":"ASSET4","index":"0.000010139511822330"},{"denom":"ASSET5","index":"0.000000835953299404"},{"denom":"ASSET6","index":"0.000003403398967385"},{"denom":"ASSET7","index":"0.000005212586506346"},{"denom":"ASSET8","index":"0.000006801540366848"},{"denom":"ASSET9","index":"0.000002937812119289"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003012098530886"},{"denom":"ASSET1","index":"0.000025562058034330"},{"denom":"ASSET10","index":"0.000020450222858637"},{"denom":"ASSET11","index":"0.000025414193224582"},{"denom":"ASSET12","index":"0.000024256065084933"},{"denom":"ASSET13","index":"0.000007984561416691"},{"denom":"ASSET14","index":"0.000023318358139730"},{"denom":"ASSET15","index":"0.000018411259079989"},{"denom":"ASSET16","index":"0.000011336678183578"},{"denom":"ASSET17","index":"0.000008913774138499"},{"denom":"ASSET18","index":"0.000003674960609183"},{"denom":"ASSET2","index":"0.000007744948932800"},{"denom":"ASSET3","index":"0.000002148867969989"},{"denom":"ASSET4","index":"0.000020722540912428"},{"denom":"ASSET5","index":"0.000001674229864542"},{"denom":"ASSET6","index":"0.000006756080138401"},{"denom":"ASSET7","index":"0.000010618450136599"},{"denom":"ASSET8","index":"0.000014514789998911"},{"denom":"ASSET9","index":"0.000006159565713194"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001470615438656"},{"denom":"ASSET1","index":"0.000012263141624205"},{"denom":"ASSET10","index":"0.000008543710077270"},{"denom":"ASSET11","index":"0.000011863435889596"},{"denom":"ASSET12","index":"0.000010682701378752"},{"denom":"ASSET13","index":"0.000003676538596641"},{"denom":"ASSET14","index":"0.000011081935762259"},{"denom":"ASSET15","index":"0.000007923412026863"},{"denom":"ASSET16","index":"0.000005524234917004"},{"denom":"ASSET17","index":"0.000003923055223056"},{"denom":"ASSET18","index":"0.000001868907119959"},{"denom":"ASSET2","index":"0.000003619976464385"},{"denom":"ASSET3","index":"0.000001058654575392"},{"denom":"ASSET4","index":"0.000009965776352407"},{"denom":"ASSET5","index":"0.000000822036322121"},{"denom":"ASSET6","index":"0.000003345178771841"},{"denom":"ASSET7","index":"0.000005123115129088"},{"denom":"ASSET8","index":"0.000006685172681558"},{"denom":"ASSET9","index":"0.000002887496851669"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000002995147819628"},{"denom":"ASSET1","index":"0.000025426980115999"},{"denom":"ASSET10","index":"0.000020372034738960"},{"denom":"ASSET11","index":"0.000025287989623967"},{"denom":"ASSET12","index":"0.000024150599022202"},{"denom":"ASSET13","index":"0.000007946076587902"},{"denom":"ASSET14","index":"0.000023198024872944"},{"denom":"ASSET15","index":"0.000018335727027304"},{"denom":"ASSET16","index":"0.000011274635486105"},{"denom":"ASSET17","index":"0.000008875015361763"},{"denom":"ASSET18","index":"0.000003653177061349"},{"denom":"ASSET2","index":"0.000007706361997735"},{"denom":"ASSET3","index":"0.000002137037997503"},{"denom":"ASSET4","index":"0.000020612735071168"},{"denom":"ASSET5","index":"0.000001665450131859"},{"denom":"ASSET6","index":"0.000006718182222688"},{"denom":"ASSET7","index":"0.000010561635089256"},{"denom":"ASSET8","index":"0.000014445035982826"},{"denom":"ASSET9","index":"0.000006128513210961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001778581753434"},{"denom":"ASSET1","index":"0.000014888315804569"},{"denom":"ASSET10","index":"0.000010370885153828"},{"denom":"ASSET11","index":"0.000014404007158094"},{"denom":"ASSET12","index":"0.000012967781516823"},{"denom":"ASSET13","index":"0.000004458979607201"},{"denom":"ASSET14","index":"0.000013452090163298"},{"denom":"ASSET15","index":"0.000009619371736884"},{"denom":"ASSET16","index":"0.000006705169708956"},{"denom":"ASSET17","index":"0.000004759584973979"},{"denom":"ASSET18","index":"0.000002262890399909"},{"denom":"ASSET2","index":"0.000004392178414584"},{"denom":"ASSET3","index":"0.000001285922957882"},{"denom":"ASSET4","index":"0.000012099366012799"},{"denom":"ASSET5","index":"0.000000993667740182"},{"denom":"ASSET6","index":"0.000004058172451498"},{"denom":"ASSET7","index":"0.000006220861062481"},{"denom":"ASSET8","index":"0.000008116344902996"},{"denom":"ASSET9","index":"0.000003507062612406"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003356752793751"},{"denom":"ASSET1","index":"0.000028516406305775"},{"denom":"ASSET10","index":"0.000022616173055400"},{"denom":"ASSET11","index":"0.000028302061322789"},{"denom":"ASSET12","index":"0.000026910491325102"},{"denom":"ASSET13","index":"0.000008878873421079"},{"denom":"ASSET14","index":"0.000025995251505598"},{"denom":"ASSET15","index":"0.000020398635157595"},{"denom":"ASSET16","index":"0.000012658071469071"},{"denom":"ASSET17","index":"0.000009885849877285"},{"denom":"ASSET18","index":"0.000004110010202724"},{"denom":"ASSET2","index":"0.000008622285743228"},{"denom":"ASSET3","index":"0.000002402314047495"},{"denom":"ASSET4","index":"0.000023121698220749"},{"denom":"ASSET5","index":"0.000001866482592061"},{"denom":"ASSET6","index":"0.000007549939309511"},{"denom":"ASSET7","index":"0.000011851024307599"},{"denom":"ASSET8","index":"0.000016149793693754"},{"denom":"ASSET9","index":"0.000006862325287189"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001604942959288"},{"denom":"ASSET1","index":"0.000013380628695124"},{"denom":"ASSET10","index":"0.000009322365613635"},{"denom":"ASSET11","index":"0.000012944148427984"},{"denom":"ASSET12","index":"0.000011656280789193"},{"denom":"ASSET13","index":"0.000004011353995308"},{"denom":"ASSET14","index":"0.000012091757653420"},{"denom":"ASSET15","index":"0.000008645319498111"},{"denom":"ASSET16","index":"0.000006027692148913"},{"denom":"ASSET17","index":"0.000004280767677439"},{"denom":"ASSET18","index":"0.000002039165569874"},{"denom":"ASSET2","index":"0.000003949895566889"},{"denom":"ASSET3","index":"0.000001155418454280"},{"denom":"ASSET4","index":"0.000010873877367808"},{"denom":"ASSET5","index":"0.000000896791353463"},{"denom":"ASSET6","index":"0.000003649878095912"},{"denom":"ASSET7","index":"0.000005589957628131"},{"denom":"ASSET8","index":"0.000007294237475803"},{"denom":"ASSET9","index":"0.000003150685146712"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003200268554223"},{"denom":"ASSET1","index":"0.000027155061035589"},{"denom":"ASSET10","index":"0.000021699312128992"},{"denom":"ASSET11","index":"0.000026991580254755"},{"denom":"ASSET12","index":"0.000025748970079650"},{"denom":"ASSET13","index":"0.000008479073830121"},{"denom":"ASSET14","index":"0.000024769827936089"},{"denom":"ASSET15","index":"0.000019540730612944"},{"denom":"ASSET16","index":"0.000012044995213579"},{"denom":"ASSET17","index":"0.000009462424001901"},{"denom":"ASSET18","index":"0.000003906197580725"},{"denom":"ASSET2","index":"0.000008225756082433"},{"denom":"ASSET3","index":"0.000002283784004254"},{"denom":"ASSET4","index":"0.000022014648589339"},{"denom":"ASSET5","index":"0.000001779311895342"},{"denom":"ASSET6","index":"0.000007179475362032"},{"denom":"ASSET7","index":"0.000011280598785262"},{"denom":"ASSET8","index":"0.000015413911362487"},{"denom":"ASSET9","index":"0.000006542247148589"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001620184629837"},{"denom":"ASSET1","index":"0.000013508113244239"},{"denom":"ASSET10","index":"0.000009411159415052"},{"denom":"ASSET11","index":"0.000013068550109883"},{"denom":"ASSET12","index":"0.000011766766981214"},{"denom":"ASSET13","index":"0.000004049052718392"},{"denom":"ASSET14","index":"0.000012206330115570"},{"denom":"ASSET15","index":"0.000008726455301921"},{"denom":"ASSET16","index":"0.000006083441070987"},{"denom":"ASSET17","index":"0.000004319553108765"},{"denom":"ASSET18","index":"0.000002056930051793"},{"denom":"ASSET2","index":"0.000003987063045598"},{"denom":"ASSET3","index":"0.000001166532933482"},{"denom":"ASSET4","index":"0.000010977807509294"},{"denom":"ASSET5","index":"0.000000904485680309"},{"denom":"ASSET6","index":"0.000003682750106429"},{"denom":"ASSET7","index":"0.000005643877936631"},{"denom":"ASSET8","index":"0.000007362682500458"},{"denom":"ASSET9","index":"0.000003178379586880"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003154859072778"},{"denom":"ASSET1","index":"0.000026759958230198"},{"denom":"ASSET10","index":"0.000021318547828682"},{"denom":"ASSET11","index":"0.000026582778956839"},{"denom":"ASSET12","index":"0.000025324795995745"},{"denom":"ASSET13","index":"0.000008347309163095"},{"denom":"ASSET14","index":"0.000024403216779648"},{"denom":"ASSET15","index":"0.000019208461119321"},{"denom":"ASSET16","index":"0.000011872154646602"},{"denom":"ASSET17","index":"0.000009304429323264"},{"denom":"ASSET18","index":"0.000003853154066825"},{"denom":"ASSET2","index":"0.000008100524497579"},{"denom":"ASSET3","index":"0.000002251942800438"},{"denom":"ASSET4","index":"0.000021695917087147"},{"denom":"ASSET5","index":"0.000001753374642360"},{"denom":"ASSET6","index":"0.000007078305954632"},{"denom":"ASSET7","index":"0.000011118481739065"},{"denom":"ASSET8","index":"0.000015174129529137"},{"denom":"ASSET9","index":"0.000006441283498998"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001565910537906"},{"denom":"ASSET1","index":"0.000013053983025959"},{"denom":"ASSET10","index":"0.000009094819386579"},{"denom":"ASSET11","index":"0.000012628414118813"},{"denom":"ASSET12","index":"0.000011371841840295"},{"denom":"ASSET13","index":"0.000003913403541838"},{"denom":"ASSET14","index":"0.000011796953146466"},{"denom":"ASSET15","index":"0.000008434501179040"},{"denom":"ASSET16","index":"0.000005880630135191"},{"denom":"ASSET17","index":"0.000004176066501732"},{"denom":"ASSET18","index":"0.000001989191440174"},{"denom":"ASSET2","index":"0.000003853457814057"},{"denom":"ASSET3","index":"0.000001127071202473"},{"denom":"ASSET4","index":"0.000010608563413286"},{"denom":"ASSET5","index":"0.000000874933065013"},{"denom":"ASSET6","index":"0.000003561050790760"},{"denom":"ASSET7","index":"0.000005453688425119"},{"denom":"ASSET8","index":"0.000007116152768840"},{"denom":"ASSET9","index":"0.000003073705751932"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003066618221533"},{"denom":"ASSET1","index":"0.000026018563142658"},{"denom":"ASSET10","index":"0.000020743763118655"},{"denom":"ASSET11","index":"0.000025849025514444"},{"denom":"ASSET12","index":"0.000024635604575072"},{"denom":"ASSET13","index":"0.000008118261811936"},{"denom":"ASSET14","index":"0.000023728777879609"},{"denom":"ASSET15","index":"0.000018689177197382"},{"denom":"ASSET16","index":"0.000011544003668418"},{"denom":"ASSET17","index":"0.000009052167825210"},{"denom":"ASSET18","index":"0.000003745930402733"},{"denom":"ASSET2","index":"0.000007877080459743"},{"denom":"ASSET3","index":"0.000002188594145460"},{"denom":"ASSET4","index":"0.000021094338825720"},{"denom":"ASSET5","index":"0.000001705356613908"},{"denom":"ASSET6","index":"0.000006882744986340"},{"denom":"ASSET7","index":"0.000010809249072439"},{"denom":"ASSET8","index":"0.000014757775472241"},{"denom":"ASSET9","index":"0.000006264987011427"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001616793771814"},{"denom":"ASSET1","index":"0.000013481664806896"},{"denom":"ASSET10","index":"0.000009392973001731"},{"denom":"ASSET11","index":"0.000013042136425966"},{"denom":"ASSET12","index":"0.000011745108533466"},{"denom":"ASSET13","index":"0.000004041984429535"},{"denom":"ASSET14","index":"0.000012183439289380"},{"denom":"ASSET15","index":"0.000008710326742521"},{"denom":"ASSET16","index":"0.000006073156456940"},{"denom":"ASSET17","index":"0.000004312647683187"},{"denom":"ASSET18","index":"0.000002053926902712"},{"denom":"ASSET2","index":"0.000003979707928695"},{"denom":"ASSET3","index":"0.000001164091515706"},{"denom":"ASSET4","index":"0.000010955873647818"},{"denom":"ASSET5","index":"0.000000903009262183"},{"denom":"ASSET6","index":"0.000003677906424623"},{"denom":"ASSET7","index":"0.000005632430450993"},{"denom":"ASSET8","index":"0.000007349824724165"},{"denom":"ASSET9","index":"0.000003173706292820"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003010548827117"},{"denom":"ASSET1","index":"0.000025517681435823"},{"denom":"ASSET10","index":"0.000020207909525991"},{"denom":"ASSET11","index":"0.000025316824190850"},{"denom":"ASSET12","index":"0.000024059273468565"},{"denom":"ASSET13","index":"0.000007945703994160"},{"denom":"ASSET14","index":"0.000023261456497592"},{"denom":"ASSET15","index":"0.000018230653165683"},{"denom":"ASSET16","index":"0.000011330852554208"},{"denom":"ASSET17","index":"0.000008840468160143"},{"denom":"ASSET18","index":"0.000003685449036638"},{"denom":"ASSET2","index":"0.000007715875534239"},{"denom":"ASSET3","index":"0.000002150116713749"},{"denom":"ASSET4","index":"0.000020690763011385"},{"denom":"ASSET5","index":"0.000001674170167376"},{"denom":"ASSET6","index":"0.000006761947340508"},{"denom":"ASSET7","index":"0.000010605047135869"},{"denom":"ASSET8","index":"0.000014444866674878"},{"denom":"ASSET9","index":"0.000006137206230949"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001598496813351"},{"denom":"ASSET1","index":"0.000013327209301876"},{"denom":"ASSET10","index":"0.000009285082513510"},{"denom":"ASSET11","index":"0.000012892549064690"},{"denom":"ASSET12","index":"0.000011609910099638"},{"denom":"ASSET13","index":"0.000003995530641827"},{"denom":"ASSET14","index":"0.000012043503249499"},{"denom":"ASSET15","index":"0.000008611039019674"},{"denom":"ASSET16","index":"0.000006003788988106"},{"denom":"ASSET17","index":"0.000004263725256261"},{"denom":"ASSET18","index":"0.000002031022875886"},{"denom":"ASSET2","index":"0.000003933995272733"},{"denom":"ASSET3","index":"0.000001150675832486"},{"denom":"ASSET4","index":"0.000010830580656369"},{"denom":"ASSET5","index":"0.000000893152091305"},{"denom":"ASSET6","index":"0.000003635566517414"},{"denom":"ASSET7","index":"0.000005567705967820"},{"denom":"ASSET8","index":"0.000007265086206652"},{"denom":"ASSET9","index":"0.000003137948128033"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003202417698287"},{"denom":"ASSET1","index":"0.000027176874960756"},{"denom":"ASSET10","index":"0.000021729724210241"},{"denom":"ASSET11","index":"0.000027016578438308"},{"denom":"ASSET12","index":"0.000025779554956391"},{"denom":"ASSET13","index":"0.000008487649506725"},{"denom":"ASSET14","index":"0.000024790682929963"},{"denom":"ASSET15","index":"0.000019565798539307"},{"denom":"ASSET16","index":"0.000012053877846841"},{"denom":"ASSET17","index":"0.000009473617164606"},{"denom":"ASSET18","index":"0.000003908301251667"},{"denom":"ASSET2","index":"0.000008233254558201"},{"denom":"ASSET3","index":"0.000002285025567503"},{"denom":"ASSET4","index":"0.000022032200437673"},{"denom":"ASSET5","index":"0.000001780306156687"},{"denom":"ASSET6","index":"0.000007184182778940"},{"denom":"ASSET7","index":"0.000011289430429576"},{"denom":"ASSET8","index":"0.000015429251463912"},{"denom":"ASSET9","index":"0.000006548040900334"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001349258766758"},{"denom":"ASSET1","index":"0.000011264433664868"},{"denom":"ASSET10","index":"0.000007848225297969"},{"denom":"ASSET11","index":"0.000010895650990484"},{"denom":"ASSET12","index":"0.000009811385762205"},{"denom":"ASSET13","index":"0.000003376459336127"},{"denom":"ASSET14","index":"0.000010177960157102"},{"denom":"ASSET15","index":"0.000007278489190238"},{"denom":"ASSET16","index":"0.000005074626261883"},{"denom":"ASSET17","index":"0.000003603912123322"},{"denom":"ASSET18","index":"0.000001715833161655"},{"denom":"ASSET2","index":"0.000003323460628431"},{"denom":"ASSET3","index":"0.000000971642974425"},{"denom":"ASSET4","index":"0.000009153318474981"},{"denom":"ASSET5","index":"0.000000753023305179"},{"denom":"ASSET6","index":"0.000003071716766875"},{"denom":"ASSET7","index":"0.000004705843587499"},{"denom":"ASSET8","index":"0.000006139016974776"},{"denom":"ASSET9","index":"0.000002652143664283"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000002874619638549"},{"denom":"ASSET1","index":"0.000024442633186143"},{"denom":"ASSET10","index":"0.000019689737510784"},{"denom":"ASSET11","index":"0.000024334399718263"},{"denom":"ASSET12","index":"0.000023294058494145"},{"denom":"ASSET13","index":"0.000007650065286478"},{"denom":"ASSET14","index":"0.000022306974942610"},{"denom":"ASSET15","index":"0.000017702453996022"},{"denom":"ASSET16","index":"0.000010830667352685"},{"denom":"ASSET17","index":"0.000008561334956642"},{"denom":"ASSET18","index":"0.000003501743239949"},{"denom":"ASSET2","index":"0.000007413384379561"},{"denom":"ASSET3","index":"0.000002050775894848"},{"denom":"ASSET4","index":"0.000019811877393900"},{"denom":"ASSET5","index":"0.000001596563839644"},{"denom":"ASSET6","index":"0.000006447875450380"},{"denom":"ASSET7","index":"0.000010149425285061"},{"denom":"ASSET8","index":"0.000013906577801610"},{"denom":"ASSET9","index":"0.000005896530335304"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001744355646452"},{"denom":"ASSET1","index":"0.000014544558741461"},{"denom":"ASSET10","index":"0.000010133244841823"},{"denom":"ASSET11","index":"0.000014070651242217"},{"denom":"ASSET12","index":"0.000012670295178174"},{"denom":"ASSET13","index":"0.000004360461787457"},{"denom":"ASSET14","index":"0.000013143775348745"},{"denom":"ASSET15","index":"0.000009397812194213"},{"denom":"ASSET16","index":"0.000006552230555377"},{"denom":"ASSET17","index":"0.000004653181929010"},{"denom":"ASSET18","index":"0.000002216553831001"},{"denom":"ASSET2","index":"0.000004293371185670"},{"denom":"ASSET3","index":"0.000001255918972299"},{"denom":"ASSET4","index":"0.000011819911117312"},{"denom":"ASSET5","index":"0.000000974736704938"},{"denom":"ASSET6","index":"0.000003967319407560"},{"denom":"ASSET7","index":"0.000006076186412764"},{"denom":"ASSET8","index":"0.000007929083542361"},{"denom":"ASSET9","index":"0.000003424611991834"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003377008276018"},{"denom":"ASSET1","index":"0.000028642142456639"},{"denom":"ASSET10","index":"0.000022800592191853"},{"denom":"ASSET11","index":"0.000028447577997463"},{"denom":"ASSET12","index":"0.000027093635853923"},{"denom":"ASSET13","index":"0.000008933092474106"},{"denom":"ASSET14","index":"0.000026119259559896"},{"denom":"ASSET15","index":"0.000020548756595198"},{"denom":"ASSET16","index":"0.000012710670192565"},{"denom":"ASSET17","index":"0.000009956402105067"},{"denom":"ASSET18","index":"0.000004127475104327"},{"denom":"ASSET2","index":"0.000008669602227225"},{"denom":"ASSET3","index":"0.000002410895003349"},{"denom":"ASSET4","index":"0.000023222264254358"},{"denom":"ASSET5","index":"0.000001877874241403"},{"denom":"ASSET6","index":"0.000007579654674160"},{"denom":"ASSET7","index":"0.000011900488798179"},{"denom":"ASSET8","index":"0.000016239324105118"},{"denom":"ASSET9","index":"0.000006895771583569"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001546168277317"},{"denom":"ASSET1","index":"0.000012892123182452"},{"denom":"ASSET10","index":"0.000008982377260299"},{"denom":"ASSET11","index":"0.000012472337191477"},{"denom":"ASSET12","index":"0.000011231230783378"},{"denom":"ASSET13","index":"0.000003864117010091"},{"denom":"ASSET14","index":"0.000011651016774353"},{"denom":"ASSET15","index":"0.000008329231976204"},{"denom":"ASSET16","index":"0.000005807908663952"},{"denom":"ASSET17","index":"0.000004124853650448"},{"denom":"ASSET18","index":"0.000001964650585090"},{"denom":"ASSET2","index":"0.000003805451266010"},{"denom":"ASSET3","index":"0.000001113345454324"},{"denom":"ASSET4","index":"0.000010477701892746"},{"denom":"ASSET5","index":"0.000000863038279582"},{"denom":"ASSET6","index":"0.000003516033595214"},{"denom":"ASSET7","index":"0.000005385515306574"},{"denom":"ASSET8","index":"0.000007028156140823"},{"denom":"ASSET9","index":"0.000003034974493755"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003044385892570"},{"denom":"ASSET1","index":"0.000025830014188245"},{"denom":"ASSET10","index":"0.000020607856539150"},{"denom":"ASSET11","index":"0.000025666657138152"},{"denom":"ASSET12","index":"0.000024468008636658"},{"denom":"ASSET13","index":"0.000008060303383676"},{"denom":"ASSET14","index":"0.000023559408638801"},{"denom":"ASSET15","index":"0.000018562848593971"},{"denom":"ASSET16","index":"0.000011459854746185"},{"denom":"ASSET17","index":"0.000008991538648143"},{"denom":"ASSET18","index":"0.000003718456390600"},{"denom":"ASSET2","index":"0.000007821717005664"},{"denom":"ASSET3","index":"0.000002173111618200"},{"denom":"ASSET4","index":"0.000020942104557307"},{"denom":"ASSET5","index":"0.000001691598021351"},{"denom":"ASSET6","index":"0.000006831113312915"},{"denom":"ASSET7","index":"0.000010730587410374"},{"denom":"ASSET8","index":"0.000014654605067850"},{"denom":"ASSET9","index":"0.000006220578615076"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001387821916020"},{"denom":"ASSET1","index":"0.000011588015182905"},{"denom":"ASSET10","index":"0.000008073788013584"},{"denom":"ASSET11","index":"0.000011209789038410"},{"denom":"ASSET12","index":"0.000010095957715252"},{"denom":"ASSET13","index":"0.000003472532948668"},{"denom":"ASSET14","index":"0.000010471205701129"},{"denom":"ASSET15","index":"0.000007487090765824"},{"denom":"ASSET16","index":"0.000005220712057474"},{"denom":"ASSET17","index":"0.000003707807479495"},{"denom":"ASSET18","index":"0.000001766048060515"},{"denom":"ASSET2","index":"0.000003418926093543"},{"denom":"ASSET3","index":"0.000001000661295671"},{"denom":"ASSET4","index":"0.000009416937550333"},{"denom":"ASSET5","index":"0.000000774321240698"},{"denom":"ASSET6","index":"0.000003159826293771"},{"denom":"ASSET7","index":"0.000004839507754361"},{"denom":"ASSET8","index":"0.000006316674428923"},{"denom":"ASSET9","index":"0.000002727993294151"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000002956721491824"},{"denom":"ASSET1","index":"0.000025136116728129"},{"denom":"ASSET10","index":"0.000020247681325291"},{"denom":"ASSET11","index":"0.000025026479369709"},{"denom":"ASSET12","index":"0.000023957412844230"},{"denom":"ASSET13","index":"0.000007866588644670"},{"denom":"ASSET14","index":"0.000022940688787988"},{"denom":"ASSET15","index":"0.000018203641219753"},{"denom":"ASSET16","index":"0.000011138902531601"},{"denom":"ASSET17","index":"0.000008803888891481"},{"denom":"ASSET18","index":"0.000003602115317706"},{"denom":"ASSET2","index":"0.000007623974866010"},{"denom":"ASSET3","index":"0.000002110544057177"},{"denom":"ASSET4","index":"0.000020374365248917"},{"denom":"ASSET5","index":"0.000001641905652861"},{"denom":"ASSET6","index":"0.000006630874494768"},{"denom":"ASSET7","index":"0.000010436528568948"},{"denom":"ASSET8","index":"0.000014302572224422"},{"denom":"ASSET9","index":"0.000006063325997423"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001500850379058"},{"denom":"ASSET1","index":"0.000012511793460183"},{"denom":"ASSET10","index":"0.000008717304800227"},{"denom":"ASSET11","index":"0.000012103632089176"},{"denom":"ASSET12","index":"0.000010899320696303"},{"denom":"ASSET13","index":"0.000003750781099635"},{"denom":"ASSET14","index":"0.000011306809643305"},{"denom":"ASSET15","index":"0.000008083881387560"},{"denom":"ASSET16","index":"0.000005636258009526"},{"denom":"ASSET17","index":"0.000004002940101492"},{"denom":"ASSET18","index":"0.000001906322054045"},{"denom":"ASSET2","index":"0.000003692952635209"},{"denom":"ASSET3","index":"0.000001079912951956"},{"denom":"ASSET4","index":"0.000010167723378913"},{"denom":"ASSET5","index":"0.000000838512734178"},{"denom":"ASSET6","index":"0.000003412551825143"},{"denom":"ASSET7","index":"0.000005226751790509"},{"denom":"ASSET8","index":"0.000006820396682251"},{"denom":"ASSET9","index":"0.000002945889565704"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003004514310835"},{"denom":"ASSET1","index":"0.000025497942224476"},{"denom":"ASSET10","index":"0.000020385999177782"},{"denom":"ASSET11","index":"0.000025346802479017"},{"denom":"ASSET12","index":"0.000024185328023735"},{"denom":"ASSET13","index":"0.000007962788555043"},{"denom":"ASSET14","index":"0.000023259189454501"},{"denom":"ASSET15","index":"0.000018355567065709"},{"denom":"ASSET16","index":"0.000011309092459120"},{"denom":"ASSET17","index":"0.000008887662321727"},{"denom":"ASSET18","index":"0.000003666570499762"},{"denom":"ASSET2","index":"0.000007723995884874"},{"denom":"ASSET3","index":"0.000002143405494402"},{"denom":"ASSET4","index":"0.000020670641097733"},{"denom":"ASSET5","index":"0.000001670336124344"},{"denom":"ASSET6","index":"0.000006739845385808"},{"denom":"ASSET7","index":"0.000010591422556410"},{"denom":"ASSET8","index":"0.000014475095162856"},{"denom":"ASSET9","index":"0.000006143360978771"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001507842106347"},{"denom":"ASSET1","index":"0.000012572313391156"},{"denom":"ASSET10","index":"0.000008759356679472"},{"denom":"ASSET11","index":"0.000012162445176153"},{"denom":"ASSET12","index":"0.000010952151629736"},{"denom":"ASSET13","index":"0.000003769211161813"},{"denom":"ASSET14","index":"0.000011361231636633"},{"denom":"ASSET15","index":"0.000008123272738112"},{"denom":"ASSET16","index":"0.000005663669344042"},{"denom":"ASSET17","index":"0.000004022225963767"},{"denom":"ASSET18","index":"0.000001916133905138"},{"denom":"ASSET2","index":"0.000003711277866039"},{"denom":"ASSET3","index":"0.000001085756665704"},{"denom":"ASSET4","index":"0.000010217147571101"},{"denom":"ASSET5","index":"0.000000842594465073"},{"denom":"ASSET6","index":"0.000003429493468225"},{"denom":"ASSET7","index":"0.000005252224712828"},{"denom":"ASSET8","index":"0.000006853863583762"},{"denom":"ASSET9","index":"0.000002960115541236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003064659144392"},{"denom":"ASSET1","index":"0.000026014545525120"},{"denom":"ASSET10","index":"0.000020837902255895"},{"denom":"ASSET11","index":"0.000025870951889592"},{"denom":"ASSET12","index":"0.000024704995690840"},{"denom":"ASSET13","index":"0.000008129050348807"},{"denom":"ASSET14","index":"0.000023733606076391"},{"denom":"ASSET15","index":"0.000018755969892396"},{"denom":"ASSET16","index":"0.000011535737727926"},{"denom":"ASSET17","index":"0.000009078938038909"},{"denom":"ASSET18","index":"0.000003738223548700"},{"denom":"ASSET2","index":"0.000007883998416280"},{"denom":"ASSET3","index":"0.000002186926046113"},{"denom":"ASSET4","index":"0.000021089316501471"},{"denom":"ASSET5","index":"0.000001703791082418"},{"denom":"ASSET6","index":"0.000006873778950624"},{"denom":"ASSET7","index":"0.000010805665377904"},{"denom":"ASSET8","index":"0.000014777724141198"},{"denom":"ASSET9","index":"0.000006269886019705"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001016570122529"},{"denom":"ASSET1","index":"0.000008477171470527"},{"denom":"ASSET10","index":"0.000005906463519680"},{"denom":"ASSET11","index":"0.000008200989896911"},{"denom":"ASSET12","index":"0.000007384774710599"},{"denom":"ASSET13","index":"0.000002541117067960"},{"denom":"ASSET14","index":"0.000007660956284215"},{"denom":"ASSET15","index":"0.000005477395717812"},{"denom":"ASSET16","index":"0.000003819073322661"},{"denom":"ASSET17","index":"0.000002711881121289"},{"denom":"ASSET18","index":"0.000001291518742692"},{"denom":"ASSET2","index":"0.000002502279034170"},{"denom":"ASSET3","index":"0.000000731757874738"},{"denom":"ASSET4","index":"0.000006889127422234"},{"denom":"ASSET5","index":"0.000000567775065403"},{"denom":"ASSET6","index":"0.000002312404202309"},{"denom":"ASSET7","index":"0.000003541658795591"},{"denom":"ASSET8","index":"0.000004621109544256"},{"denom":"ASSET9","index":"0.000001996151641449"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000002499545170163"},{"denom":"ASSET1","index":"0.000021282413071401"},{"denom":"ASSET10","index":"0.000017412808765385"},{"denom":"ASSET11","index":"0.000021259874812403"},{"denom":"ASSET12","index":"0.000020486111882687"},{"denom":"ASSET13","index":"0.000006694303381301"},{"denom":"ASSET14","index":"0.000019446986985139"},{"denom":"ASSET15","index":"0.000015606004703242"},{"denom":"ASSET16","index":"0.000009412782427040"},{"denom":"ASSET17","index":"0.000007528963649123"},{"denom":"ASSET18","index":"0.000003027066879988"},{"denom":"ASSET2","index":"0.000006477094521478"},{"denom":"ASSET3","index":"0.000001780578331809"},{"denom":"ASSET4","index":"0.000017246051064985"},{"denom":"ASSET5","index":"0.000001387924123500"},{"denom":"ASSET6","index":"0.000005593713918003"},{"denom":"ASSET7","index":"0.000008831780754063"},{"denom":"ASSET8","index":"0.000012169406160300"},{"denom":"ASSET9","index":"0.000005149034362400"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001552339226368"},{"denom":"ASSET1","index":"0.000012948480372324"},{"denom":"ASSET10","index":"0.000009021431734191"},{"denom":"ASSET11","index":"0.000012526515146109"},{"denom":"ASSET12","index":"0.000011279099696349"},{"denom":"ASSET13","index":"0.000003880848065920"},{"denom":"ASSET14","index":"0.000011701064922564"},{"denom":"ASSET15","index":"0.000008365383608761"},{"denom":"ASSET16","index":"0.000005830512213323"},{"denom":"ASSET17","index":"0.000004142651308462"},{"denom":"ASSET18","index":"0.000001971224414436"},{"denom":"ASSET2","index":"0.000003822327341117"},{"denom":"ASSET3","index":"0.000001118053847563"},{"denom":"ASSET4","index":"0.000010521410312050"},{"denom":"ASSET5","index":"0.000000865490719463"},{"denom":"ASSET6","index":"0.000003529723717099"},{"denom":"ASSET7","index":"0.000005408546987108"},{"denom":"ASSET8","index":"0.000007056367396050"},{"denom":"ASSET9","index":"0.000003046157727933"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003043964098015"},{"denom":"ASSET1","index":"0.000025828331615061"},{"denom":"ASSET10","index":"0.000020594675215425"},{"denom":"ASSET11","index":"0.000025661520704142"},{"denom":"ASSET12","index":"0.000024456429429906"},{"denom":"ASSET13","index":"0.000008058244190043"},{"denom":"ASSET14","index":"0.000023555461855486"},{"denom":"ASSET15","index":"0.000018552812657155"},{"denom":"ASSET16","index":"0.000011456604402492"},{"denom":"ASSET17","index":"0.000008987560143691"},{"denom":"ASSET18","index":"0.000003716794339222"},{"denom":"ASSET2","index":"0.000007820148034807"},{"denom":"ASSET3","index":"0.000002173135080244"},{"denom":"ASSET4","index":"0.000020938599170426"},{"denom":"ASSET5","index":"0.000001690207511083"},{"denom":"ASSET6","index":"0.000006829800145738"},{"denom":"ASSET7","index":"0.000010729300481432"},{"denom":"ASSET8","index":"0.000014648719853803"},{"denom":"ASSET9","index":"0.000006217447736766"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000000977108719668"},{"denom":"ASSET1","index":"0.000008146517162771"},{"denom":"ASSET10","index":"0.000005675852121603"},{"denom":"ASSET11","index":"0.000007881108738917"},{"denom":"ASSET12","index":"0.000007096716963958"},{"denom":"ASSET13","index":"0.000002441926549413"},{"denom":"ASSET14","index":"0.000007362125387813"},{"denom":"ASSET15","index":"0.000005263370239944"},{"denom":"ASSET16","index":"0.000003670074447059"},{"denom":"ASSET17","index":"0.000002605905002368"},{"denom":"ASSET18","index":"0.000001241671893765"},{"denom":"ASSET2","index":"0.000002404735560083"},{"denom":"ASSET3","index":"0.000000703247798239"},{"denom":"ASSET4","index":"0.000006620841350486"},{"denom":"ASSET5","index":"0.000000546031343344"},{"denom":"ASSET6","index":"0.000002222161612464"},{"denom":"ASSET7","index":"0.000003402975523689"},{"denom":"ASSET8","index":"0.000004440942225898"},{"denom":"ASSET9","index":"0.000001917871699764"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000002320380931676"},{"denom":"ASSET1","index":"0.000019748951316256"},{"denom":"ASSET10","index":"0.000016101172379351"},{"denom":"ASSET11","index":"0.000019714000020718"},{"denom":"ASSET12","index":"0.000018967805559844"},{"denom":"ASSET13","index":"0.000006204998608741"},{"denom":"ASSET14","index":"0.000018041457784230"},{"denom":"ASSET15","index":"0.000014440911570898"},{"denom":"ASSET16","index":"0.000008738221404310"},{"denom":"ASSET17","index":"0.000006970584758543"},{"denom":"ASSET18","index":"0.000002814127990287"},{"denom":"ASSET2","index":"0.000006006105656449"},{"denom":"ASSET3","index":"0.000001653724297068"},{"denom":"ASSET4","index":"0.000016005284799403"},{"denom":"ASSET5","index":"0.000001288969102308"},{"denom":"ASSET6","index":"0.000005195185892122"},{"denom":"ASSET7","index":"0.000008196101819524"},{"denom":"ASSET8","index":"0.000011280171312915"},{"denom":"ASSET9","index":"0.000004774394171461"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001745798220012"},{"denom":"ASSET1","index":"0.000014553743296829"},{"denom":"ASSET10","index":"0.000010139438249561"},{"denom":"ASSET11","index":"0.000014079320164724"},{"denom":"ASSET12","index":"0.000012678243118663"},{"denom":"ASSET13","index":"0.000004363016060013"},{"denom":"ASSET14","index":"0.000013152173087429"},{"denom":"ASSET15","index":"0.000009403145384454"},{"denom":"ASSET16","index":"0.000006556113428486"},{"denom":"ASSET17","index":"0.000004655955083371"},{"denom":"ASSET18","index":"0.000002217755535422"},{"denom":"ASSET2","index":"0.000004295945845911"},{"denom":"ASSET3","index":"0.000001256580187737"},{"denom":"ASSET4","index":"0.000011827536358912"},{"denom":"ASSET5","index":"0.000000975477084515"},{"denom":"ASSET6","index":"0.000003969964878841"},{"denom":"ASSET7","index":"0.000006080210806364"},{"denom":"ASSET8","index":"0.000007934011797614"},{"denom":"ASSET9","index":"0.000003426498879278"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003342998947188"},{"denom":"ASSET1","index":"0.000028345782457833"},{"denom":"ASSET10","index":"0.000022532322238539"},{"denom":"ASSET11","index":"0.000028144588841629"},{"denom":"ASSET12","index":"0.000026788988923046"},{"denom":"ASSET13","index":"0.000008836278349189"},{"denom":"ASSET14","index":"0.000025846526421467"},{"denom":"ASSET15","index":"0.000020312521464953"},{"denom":"ASSET16","index":"0.000012581099317360"},{"denom":"ASSET17","index":"0.000009844015126225"},{"denom":"ASSET18","index":"0.000004087085525414"},{"denom":"ASSET2","index":"0.000008577030596387"},{"denom":"ASSET3","index":"0.000002386540105172"},{"denom":"ASSET4","index":"0.000022982635628207"},{"denom":"ASSET5","index":"0.000001858980311097"},{"denom":"ASSET6","index":"0.000007503977785171"},{"denom":"ASSET7","index":"0.000011778054778213"},{"denom":"ASSET8","index":"0.000016064148587518"},{"denom":"ASSET9","index":"0.000006822246648031"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001535240763659"},{"denom":"ASSET1","index":"0.000012802535686671"},{"denom":"ASSET10","index":"0.000008918976928097"},{"denom":"ASSET11","index":"0.000012384847277788"},{"denom":"ASSET12","index":"0.000011152366284839"},{"denom":"ASSET13","index":"0.000003838101909148"},{"denom":"ASSET14","index":"0.000011569197017318"},{"denom":"ASSET15","index":"0.000008271431242866"},{"denom":"ASSET16","index":"0.000005767016142371"},{"denom":"ASSET17","index":"0.000004095404830432"},{"denom":"ASSET18","index":"0.000001951213819735"},{"denom":"ASSET2","index":"0.000003778922237253"},{"denom":"ASSET3","index":"0.000001105544885116"},{"denom":"ASSET4","index":"0.000010403614783903"},{"denom":"ASSET5","index":"0.000000857676404279"},{"denom":"ASSET6","index":"0.000003491600641819"},{"denom":"ASSET7","index":"0.000005348470057083"},{"denom":"ASSET8","index":"0.000006978912901618"},{"denom":"ASSET9","index":"0.000003013874884636"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003086246918243"},{"denom":"ASSET1","index":"0.000026194228204796"},{"denom":"ASSET10","index":"0.000020951998769875"},{"denom":"ASSET11","index":"0.000026042273492864"},{"denom":"ASSET12","index":"0.000024853724280460"},{"denom":"ASSET13","index":"0.000008181454895403"},{"denom":"ASSET14","index":"0.000023895275980533"},{"denom":"ASSET15","index":"0.000018864347888264"},{"denom":"ASSET16","index":"0.000011616907749245"},{"denom":"ASSET17","index":"0.000009133094250657"},{"denom":"ASSET18","index":"0.000003766346411006"},{"denom":"ASSET2","index":"0.000007935833032906"},{"denom":"ASSET3","index":"0.000002202232138461"},{"denom":"ASSET4","index":"0.000021234941701767"},{"denom":"ASSET5","index":"0.000001715417631736"},{"denom":"ASSET6","index":"0.000006923101305069"},{"denom":"ASSET7","index":"0.000010881195638563"},{"denom":"ASSET8","index":"0.000014873239564067"},{"denom":"ASSET9","index":"0.000006310901439146"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001694764141112"},{"denom":"ASSET1","index":"0.000014130580032100"},{"denom":"ASSET10","index":"0.000009844524497723"},{"denom":"ASSET11","index":"0.000013669508873851"},{"denom":"ASSET12","index":"0.000012309527666765"},{"denom":"ASSET13","index":"0.000004236016804025"},{"denom":"ASSET14","index":"0.000012769407426673"},{"denom":"ASSET15","index":"0.000009129685492685"},{"denom":"ASSET16","index":"0.000006365641339869"},{"denom":"ASSET17","index":"0.000004520761007698"},{"denom":"ASSET18","index":"0.000002153452502679"},{"denom":"ASSET2","index":"0.000004171085594400"},{"denom":"ASSET3","index":"0.000001219991901933"},{"denom":"ASSET4","index":"0.000011483292916774"},{"denom":"ASSET5","index":"0.000000947161681676"},{"denom":"ASSET6","index":"0.000003854173635500"},{"denom":"ASSET7","index":"0.000005903378783277"},{"denom":"ASSET8","index":"0.000007702985978462"},{"denom":"ASSET9","index":"0.000003326979869284"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003333609736915"},{"denom":"ASSET1","index":"0.000028281729059652"},{"denom":"ASSET10","index":"0.000022560289398652"},{"denom":"ASSET11","index":"0.000028101042421314"},{"denom":"ASSET12","index":"0.000026787599659919"},{"denom":"ASSET13","index":"0.000008826015241086"},{"denom":"ASSET14","index":"0.000025794402991537"},{"denom":"ASSET15","index":"0.000020323143219667"},{"denom":"ASSET16","index":"0.000012547562311789"},{"denom":"ASSET17","index":"0.000009844220733470"},{"denom":"ASSET18","index":"0.000004071528772633"},{"denom":"ASSET2","index":"0.000008563776406339"},{"denom":"ASSET3","index":"0.000002379222276435"},{"denom":"ASSET4","index":"0.000022929058250150"},{"denom":"ASSET5","index":"0.000001853699834530"},{"denom":"ASSET6","index":"0.000007480326246914"},{"denom":"ASSET7","index":"0.000011749530638760"},{"denom":"ASSET8","index":"0.000016044906214881"},{"denom":"ASSET9","index":"0.000006811209452101"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001763265776240"},{"denom":"ASSET1","index":"0.000014701143889842"},{"denom":"ASSET10","index":"0.000010242267715158"},{"denom":"ASSET11","index":"0.000014221824092125"},{"denom":"ASSET12","index":"0.000012807154532407"},{"denom":"ASSET13","index":"0.000004407037513175"},{"denom":"ASSET14","index":"0.000013285723045174"},{"denom":"ASSET15","index":"0.000009498495615253"},{"denom":"ASSET16","index":"0.000006622576828953"},{"denom":"ASSET17","index":"0.000004703043783239"},{"denom":"ASSET18","index":"0.000002240331719108"},{"denom":"ASSET2","index":"0.000004339421867729"},{"denom":"ASSET3","index":"0.000001269671564485"},{"denom":"ASSET4","index":"0.000011947684550294"},{"denom":"ASSET5","index":"0.000000984934568662"},{"denom":"ASSET6","index":"0.000004010359059893"},{"denom":"ASSET7","index":"0.000006141754461338"},{"denom":"ASSET8","index":"0.000008013956555240"},{"denom":"ASSET9","index":"0.000003461169761882"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003372790294110"},{"denom":"ASSET1","index":"0.000028600279733511"},{"denom":"ASSET10","index":"0.000022731421090197"},{"denom":"ASSET11","index":"0.000028396190348540"},{"denom":"ASSET12","index":"0.000027027392524280"},{"denom":"ASSET13","index":"0.000008915082315276"},{"denom":"ASSET14","index":"0.000026078776667620"},{"denom":"ASSET15","index":"0.000020492230414373"},{"denom":"ASSET16","index":"0.000012694274413467"},{"denom":"ASSET17","index":"0.000009931274832025"},{"denom":"ASSET18","index":"0.000004123939856338"},{"denom":"ASSET2","index":"0.000008653658587521"},{"denom":"ASSET3","index":"0.000002407864000528"},{"denom":"ASSET4","index":"0.000023189126720885"},{"denom":"ASSET5","index":"0.000001875419633234"},{"denom":"ASSET6","index":"0.000007571725921487"},{"denom":"ASSET7","index":"0.000011883748947250"},{"denom":"ASSET8","index":"0.000016207221904670"},{"denom":"ASSET9","index":"0.000006883201227023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001453309126336"},{"denom":"ASSET1","index":"0.000012116886392617"},{"denom":"ASSET10","index":"0.000008441923956558"},{"denom":"ASSET11","index":"0.000011721955689254"},{"denom":"ASSET12","index":"0.000010555542874101"},{"denom":"ASSET13","index":"0.000003632376264868"},{"denom":"ASSET14","index":"0.000010950025301978"},{"denom":"ASSET15","index":"0.000007829131366891"},{"denom":"ASSET16","index":"0.000005458650595742"},{"denom":"ASSET17","index":"0.000003876686404859"},{"denom":"ASSET18","index":"0.000001846446727754"},{"denom":"ASSET2","index":"0.000003576790104576"},{"denom":"ASSET3","index":"0.000001046274984845"},{"denom":"ASSET4","index":"0.000009847267605868"},{"denom":"ASSET5","index":"0.000000812275181037"},{"denom":"ASSET6","index":"0.000003305135159925"},{"denom":"ASSET7","index":"0.000005061926790434"},{"denom":"ASSET8","index":"0.000006605339289501"},{"denom":"ASSET9","index":"0.000002852825194325"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000002846126280344"},{"denom":"ASSET1","index":"0.000024142729904188"},{"denom":"ASSET10","index":"0.000019247649074564"},{"denom":"ASSET11","index":"0.000023985879136349"},{"denom":"ASSET12","index":"0.000022859091275790"},{"denom":"ASSET13","index":"0.000007532792628817"},{"denom":"ASSET14","index":"0.000022018595952129"},{"denom":"ASSET15","index":"0.000017341431925331"},{"denom":"ASSET16","index":"0.000010711928951149"},{"denom":"ASSET17","index":"0.000008400535387767"},{"denom":"ASSET18","index":"0.000003476353193421"},{"denom":"ASSET2","index":"0.000007309791035362"},{"denom":"ASSET3","index":"0.000002031285314481"},{"denom":"ASSET4","index":"0.000019573873127075"},{"denom":"ASSET5","index":"0.000001582650339951"},{"denom":"ASSET6","index":"0.000006386635795582"},{"denom":"ASSET7","index":"0.000010030235680714"},{"denom":"ASSET8","index":"0.000013694243666513"},{"denom":"ASSET9","index":"0.000005813799926422"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001542334439671"},{"denom":"ASSET1","index":"0.000012860022908304"},{"denom":"ASSET10","index":"0.000008959505058412"},{"denom":"ASSET11","index":"0.000012440701863130"},{"denom":"ASSET12","index":"0.000011202637482986"},{"denom":"ASSET13","index":"0.000003855293405849"},{"denom":"ASSET14","index":"0.000011621234937056"},{"denom":"ASSET15","index":"0.000008308996655285"},{"denom":"ASSET16","index":"0.000005793070384239"},{"denom":"ASSET17","index":"0.000004114339021332"},{"denom":"ASSET18","index":"0.000001959846507084"},{"denom":"ASSET2","index":"0.000003796320730815"},{"denom":"ASSET3","index":"0.000001110350550164"},{"denom":"ASSET4","index":"0.000010450826325201"},{"denom":"ASSET5","index":"0.000000861797005699"},{"denom":"ASSET6","index":"0.000003507969675592"},{"denom":"ASSET7","index":"0.000005372663952407"},{"denom":"ASSET8","index":"0.000007010512417899"},{"denom":"ASSET9","index":"0.000003027866977623"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003036454064443"},{"denom":"ASSET1","index":"0.000025762443856573"},{"denom":"ASSET10","index":"0.000020552854458451"},{"denom":"ASSET11","index":"0.000025598594042577"},{"denom":"ASSET12","index":"0.000024403233064712"},{"denom":"ASSET13","index":"0.000008040226829205"},{"denom":"ASSET14","index":"0.000023496526683137"},{"denom":"ASSET15","index":"0.000018514610345002"},{"denom":"ASSET16","index":"0.000011429420030088"},{"denom":"ASSET17","index":"0.000008967792958730"},{"denom":"ASSET18","index":"0.000003708688180539"},{"denom":"ASSET2","index":"0.000007801450355100"},{"denom":"ASSET3","index":"0.000002167197324698"},{"denom":"ASSET4","index":"0.000020886439041228"},{"denom":"ASSET5","index":"0.000001688395026424"},{"denom":"ASSET6","index":"0.000006814112030993"},{"denom":"ASSET7","index":"0.000010703097412338"},{"denom":"ASSET8","index":"0.000014616213118562"},{"denom":"ASSET9","index":"0.000006204650488693"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001802604811891"},{"denom":"ASSET1","index":"0.000015041134377282"},{"denom":"ASSET10","index":"0.000010478421042795"},{"denom":"ASSET11","index":"0.000014549893343095"},{"denom":"ASSET12","index":"0.000013101148598203"},{"denom":"ASSET13","index":"0.000004508593559534"},{"denom":"ASSET14","index":"0.000013592389632390"},{"denom":"ASSET15","index":"0.000009716581133843"},{"denom":"ASSET16","index":"0.000006773297988330"},{"denom":"ASSET17","index":"0.000004812496911192"},{"denom":"ASSET18","index":"0.000002289682786467"},{"denom":"ASSET2","index":"0.000004437821546134"},{"denom":"ASSET3","index":"0.000001298874598869"},{"denom":"ASSET4","index":"0.000012222743020122"},{"denom":"ASSET5","index":"0.000001007460426045"},{"denom":"ASSET6","index":"0.000004100613717582"},{"denom":"ASSET7","index":"0.000006282056954143"},{"denom":"ASSET8","index":"0.000008197064375552"},{"denom":"ASSET9","index":"0.000003538600669994"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003500919125422"},{"denom":"ASSET1","index":"0.000029708744113596"},{"denom":"ASSET10","index":"0.000023658219501850"},{"denom":"ASSET11","index":"0.000029508250092955"},{"denom":"ASSET12","index":"0.000028107871580940"},{"denom":"ASSET13","index":"0.000009266072102552"},{"denom":"ASSET14","index":"0.000027092614384257"},{"denom":"ASSET15","index":"0.000021318431245277"},{"denom":"ASSET16","index":"0.000013180724612002"},{"denom":"ASSET17","index":"0.000010330094773179"},{"denom":"ASSET18","index":"0.000004277644880979"},{"denom":"ASSET2","index":"0.000008990842831989"},{"denom":"ASSET3","index":"0.000002500335792843"},{"denom":"ASSET4","index":"0.000024086210482120"},{"denom":"ASSET5","index":"0.000001946754653173"},{"denom":"ASSET6","index":"0.000007858889858659"},{"denom":"ASSET7","index":"0.000012341576470869"},{"denom":"ASSET8","index":"0.000016843078118646"},{"denom":"ASSET9","index":"0.000007150129263591"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001563811170888"},{"denom":"ASSET1","index":"0.000013038374863878"},{"denom":"ASSET10","index":"0.000009083864212622"},{"denom":"ASSET11","index":"0.000012612362006834"},{"denom":"ASSET12","index":"0.000011358137819015"},{"denom":"ASSET13","index":"0.000003908204905926"},{"denom":"ASSET14","index":"0.000011781504633469"},{"denom":"ASSET15","index":"0.000008423676586333"},{"denom":"ASSET16","index":"0.000005872891529250"},{"denom":"ASSET17","index":"0.000004170163122369"},{"denom":"ASSET18","index":"0.000001987177985342"},{"denom":"ASSET2","index":"0.000003848668947643"},{"denom":"ASSET3","index":"0.000001125891122188"},{"denom":"ASSET4","index":"0.000010596077552999"},{"denom":"ASSET5","index":"0.000000873194054811"},{"denom":"ASSET6","index":"0.000003556281241411"},{"denom":"ASSET7","index":"0.000005446878672206"},{"denom":"ASSET8","index":"0.000007107270397641"},{"denom":"ASSET9","index":"0.000003069409404789"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003311345528520"},{"denom":"ASSET1","index":"0.000028134750769747"},{"denom":"ASSET10","index":"0.000022648872120201"},{"denom":"ASSET11","index":"0.000028007957662740"},{"denom":"ASSET12","index":"0.000026803793052874"},{"denom":"ASSET13","index":"0.000008804941803873"},{"denom":"ASSET14","index":"0.000025676450668466"},{"denom":"ASSET15","index":"0.000020365161363483"},{"denom":"ASSET16","index":"0.000012467103206876"},{"denom":"ASSET17","index":"0.000009848512066991"},{"denom":"ASSET18","index":"0.000004032794375330"},{"denom":"ASSET2","index":"0.000008534928074651"},{"denom":"ASSET3","index":"0.000002362590241163"},{"denom":"ASSET4","index":"0.000022806063702805"},{"denom":"ASSET5","index":"0.000001840254083448"},{"denom":"ASSET6","index":"0.000007424521355960"},{"denom":"ASSET7","index":"0.000011683846998076"},{"denom":"ASSET8","index":"0.000016006498096466"},{"denom":"ASSET9","index":"0.000006786333067798"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001600184479142"},{"denom":"ASSET1","index":"0.000013342157474081"},{"denom":"ASSET10","index":"0.000009295060662992"},{"denom":"ASSET11","index":"0.000012907134644369"},{"denom":"ASSET12","index":"0.000011622469236023"},{"denom":"ASSET13","index":"0.000003999732516397"},{"denom":"ASSET14","index":"0.000012056763384279"},{"denom":"ASSET15","index":"0.000008620301633991"},{"denom":"ASSET16","index":"0.000006010164655719"},{"denom":"ASSET17","index":"0.000004268615973958"},{"denom":"ASSET18","index":"0.000002033021264483"},{"denom":"ASSET2","index":"0.000003938523274026"},{"denom":"ASSET3","index":"0.000001152045383207"},{"denom":"ASSET4","index":"0.000010842780077243"},{"denom":"ASSET5","index":"0.000000894092147498"},{"denom":"ASSET6","index":"0.000003639035195279"},{"denom":"ASSET7","index":"0.000005573684463094"},{"denom":"ASSET8","index":"0.000007272969620361"},{"denom":"ASSET9","index":"0.000003141345760282"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003037978324998"},{"denom":"ASSET1","index":"0.000025756345113171"},{"denom":"ASSET10","index":"0.000020449699671521"},{"denom":"ASSET11","index":"0.000025567125107120"},{"denom":"ASSET12","index":"0.000024323299608917"},{"denom":"ASSET13","index":"0.000008026089638757"},{"denom":"ASSET14","index":"0.000023482777870484"},{"denom":"ASSET15","index":"0.000018439819094125"},{"denom":"ASSET16","index":"0.000011433094032389"},{"denom":"ASSET17","index":"0.000008938487942114"},{"denom":"ASSET18","index":"0.000003715472889790"},{"denom":"ASSET2","index":"0.000007791978720736"},{"denom":"ASSET3","index":"0.000002168844641333"},{"denom":"ASSET4","index":"0.000020883291069830"},{"denom":"ASSET5","index":"0.000001689134510364"},{"denom":"ASSET6","index":"0.000006819968009550"},{"denom":"ASSET7","index":"0.000010702337477897"},{"denom":"ASSET8","index":"0.000014590947163921"},{"denom":"ASSET9","index":"0.000006197850437110"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001732863553160"},{"denom":"ASSET1","index":"0.000014476512568697"},{"denom":"ASSET10","index":"0.000010084697727409"},{"denom":"ASSET11","index":"0.000014004946421444"},{"denom":"ASSET12","index":"0.000012607292539223"},{"denom":"ASSET13","index":"0.000004334999642824"},{"denom":"ASSET14","index":"0.000013078858686476"},{"denom":"ASSET15","index":"0.000009351781667220"},{"denom":"ASSET16","index":"0.000006516703263852"},{"denom":"ASSET17","index":"0.000004630438674838"},{"denom":"ASSET18","index":"0.000002204429700414"},{"denom":"ASSET2","index":"0.000004272502924514"},{"denom":"ASSET3","index":"0.000001249934366214"},{"denom":"ASSET4","index":"0.000011760746082105"},{"denom":"ASSET5","index":"0.000000965858373893"},{"denom":"ASSET6","index":"0.000003948656293267"},{"denom":"ASSET7","index":"0.000006045137116599"},{"denom":"ASSET8","index":"0.000007891631066688"},{"denom":"ASSET9","index":"0.000003403230388010"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003203314564743"},{"denom":"ASSET1","index":"0.000027174750089688"},{"denom":"ASSET10","index":"0.000021494761442080"},{"denom":"ASSET11","index":"0.000026954579685264"},{"denom":"ASSET12","index":"0.000025598519259277"},{"denom":"ASSET13","index":"0.000008453363478510"},{"denom":"ASSET14","index":"0.000024766008219885"},{"denom":"ASSET15","index":"0.000019395989679368"},{"denom":"ASSET16","index":"0.000012063312986412"},{"denom":"ASSET17","index":"0.000009406957788586"},{"denom":"ASSET18","index":"0.000003925664786352"},{"denom":"ASSET2","index":"0.000008214094571203"},{"denom":"ASSET3","index":"0.000002289770772075"},{"denom":"ASSET4","index":"0.000022031271429646"},{"denom":"ASSET5","index":"0.000001779377444361"},{"denom":"ASSET6","index":"0.000007202120906665"},{"denom":"ASSET7","index":"0.000011290805949933"},{"denom":"ASSET8","index":"0.000015376618183469"},{"denom":"ASSET9","index":"0.000006529467958809"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001687731873143"},{"denom":"ASSET1","index":"0.000014069560961171"},{"denom":"ASSET10","index":"0.000009802495056563"},{"denom":"ASSET11","index":"0.000013610740912442"},{"denom":"ASSET12","index":"0.000012256373563096"},{"denom":"ASSET13","index":"0.000004217751625940"},{"denom":"ASSET14","index":"0.000012714404583367"},{"denom":"ASSET15","index":"0.000009090791386823"},{"denom":"ASSET16","index":"0.000006338265608675"},{"denom":"ASSET17","index":"0.000004501407356839"},{"denom":"ASSET18","index":"0.000002144184836496"},{"denom":"ASSET2","index":"0.000004153051292327"},{"denom":"ASSET3","index":"0.000001214709312157"},{"denom":"ASSET4","index":"0.000011433811394910"},{"denom":"ASSET5","index":"0.000000942889008137"},{"denom":"ASSET6","index":"0.000003837834423079"},{"denom":"ASSET7","index":"0.000005877867503028"},{"denom":"ASSET8","index":"0.000007669751132718"},{"denom":"ASSET9","index":"0.000003312735983819"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003310751488522"},{"denom":"ASSET1","index":"0.000028084250149300"},{"denom":"ASSET10","index":"0.000022395324527460"},{"denom":"ASSET11","index":"0.000027902986790638"},{"denom":"ASSET12","index":"0.000026594787286768"},{"denom":"ASSET13","index":"0.000008763085936534"},{"denom":"ASSET14","index":"0.000025613920456358"},{"denom":"ASSET15","index":"0.000020176020856033"},{"denom":"ASSET16","index":"0.000012460451689171"},{"denom":"ASSET17","index":"0.000009773335616478"},{"denom":"ASSET18","index":"0.000004043661907525"},{"denom":"ASSET2","index":"0.000008503271494062"},{"denom":"ASSET3","index":"0.000002362859659779"},{"denom":"ASSET4","index":"0.000022769116693783"},{"denom":"ASSET5","index":"0.000001840413908887"},{"denom":"ASSET6","index":"0.000007429033260494"},{"denom":"ASSET7","index":"0.000011667535172652"},{"denom":"ASSET8","index":"0.000015931047386954"},{"denom":"ASSET9","index":"0.000006763232815972"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001411639939639"},{"denom":"ASSET1","index":"0.000011770559134781"},{"denom":"ASSET10","index":"0.000008200405560598"},{"denom":"ASSET11","index":"0.000011386782830640"},{"denom":"ASSET12","index":"0.000010253700018254"},{"denom":"ASSET13","index":"0.000003528795747429"},{"denom":"ASSET14","index":"0.000010636868119061"},{"denom":"ASSET15","index":"0.000007604974496011"},{"denom":"ASSET16","index":"0.000005302316671163"},{"denom":"ASSET17","index":"0.000003765386844594"},{"denom":"ASSET18","index":"0.000001793591633776"},{"denom":"ASSET2","index":"0.000003474665650649"},{"denom":"ASSET3","index":"0.000001016307772140"},{"denom":"ASSET4","index":"0.000009565822046806"},{"denom":"ASSET5","index":"0.000000788839724994"},{"denom":"ASSET6","index":"0.000003210705403426"},{"denom":"ASSET7","index":"0.000004917323960353"},{"denom":"ASSET8","index":"0.000006416545180176"},{"denom":"ASSET9","index":"0.000002771582595835"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000002915106026686"},{"denom":"ASSET1","index":"0.000024751938975568"},{"denom":"ASSET10","index":"0.000019864528416862"},{"denom":"ASSET11","index":"0.000024625253839727"},{"denom":"ASSET12","index":"0.000023534700266806"},{"denom":"ASSET13","index":"0.000007739190454504"},{"denom":"ASSET14","index":"0.000022584902384729"},{"denom":"ASSET15","index":"0.000017872912229645"},{"denom":"ASSET16","index":"0.000010972881933217"},{"denom":"ASSET17","index":"0.000008648586457086"},{"denom":"ASSET18","index":"0.000003552999450219"},{"denom":"ASSET2","index":"0.000007504215303421"},{"denom":"ASSET3","index":"0.000002079538758775"},{"denom":"ASSET4","index":"0.000020065180146540"},{"denom":"ASSET5","index":"0.000001620267199228"},{"denom":"ASSET6","index":"0.000006536798446662"},{"denom":"ASSET7","index":"0.000010280222742310"},{"denom":"ASSET8","index":"0.000014068743113537"},{"denom":"ASSET9","index":"0.000005967789042866"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001670929391506"},{"denom":"ASSET1","index":"0.000013946161101263"},{"denom":"ASSET10","index":"0.000009716355120388"},{"denom":"ASSET11","index":"0.000013489421488305"},{"denom":"ASSET12","index":"0.000012147571569489"},{"denom":"ASSET13","index":"0.000004178741924768"},{"denom":"ASSET14","index":"0.000012601474290441"},{"denom":"ASSET15","index":"0.000009009969010905"},{"denom":"ASSET16","index":"0.000006280878901179"},{"denom":"ASSET17","index":"0.000004459594233357"},{"denom":"ASSET18","index":"0.000002124832112458"},{"denom":"ASSET2","index":"0.000004116330300637"},{"denom":"ASSET3","index":"0.000001202842210524"},{"denom":"ASSET4","index":"0.000011333383563781"},{"denom":"ASSET5","index":"0.000000933337469958"},{"denom":"ASSET6","index":"0.000003804272179982"},{"denom":"ASSET7","index":"0.000005824139288221"},{"denom":"ASSET8","index":"0.000007600033683947"},{"denom":"ASSET9","index":"0.000003282284050887"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003306866574231"},{"denom":"ASSET1","index":"0.000028073670524533"},{"denom":"ASSET10","index":"0.000022410378668975"},{"denom":"ASSET11","index":"0.000027896117796052"},{"denom":"ASSET12","index":"0.000026601615360568"},{"denom":"ASSET13","index":"0.000008760019105133"},{"denom":"ASSET14","index":"0.000025604072816608"},{"denom":"ASSET15","index":"0.000020183975077340"},{"denom":"ASSET16","index":"0.000012452378452775"},{"denom":"ASSET17","index":"0.000009773941069454"},{"denom":"ASSET18","index":"0.000004038323507821"},{"denom":"ASSET2","index":"0.000008501686860316"},{"denom":"ASSET3","index":"0.000002358773872569"},{"denom":"ASSET4","index":"0.000022758821093429"},{"denom":"ASSET5","index":"0.000001837837668790"},{"denom":"ASSET6","index":"0.000007423905647148"},{"denom":"ASSET7","index":"0.000011659308440973"},{"denom":"ASSET8","index":"0.000015926660063085"},{"denom":"ASSET9","index":"0.000006759875068056"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001598361255475"},{"denom":"ASSET1","index":"0.000013324868720531"},{"denom":"ASSET10","index":"0.000009283863630055"},{"denom":"ASSET11","index":"0.000012890721875256"},{"denom":"ASSET12","index":"0.000011607749807828"},{"denom":"ASSET13","index":"0.000003994929715268"},{"denom":"ASSET14","index":"0.000012041896653103"},{"denom":"ASSET15","index":"0.000008609605674538"},{"denom":"ASSET16","index":"0.000006002777756047"},{"denom":"ASSET17","index":"0.000004262945630213"},{"denom":"ASSET18","index":"0.000002030561253910"},{"denom":"ASSET2","index":"0.000003933279565341"},{"denom":"ASSET3","index":"0.000001150586482321"},{"denom":"ASSET4","index":"0.000010829011071909"},{"denom":"ASSET5","index":"0.000000892953750521"},{"denom":"ASSET6","index":"0.000003634763049905"},{"denom":"ASSET7","index":"0.000005566684063932"},{"denom":"ASSET8","index":"0.000007263685559290"},{"denom":"ASSET9","index":"0.000003137668156809"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003119961272076"},{"denom":"ASSET1","index":"0.000026462428012801"},{"denom":"ASSET10","index":"0.000021088828135750"},{"denom":"ASSET11","index":"0.000026288818556387"},{"denom":"ASSET12","index":"0.000025049012446876"},{"denom":"ASSET13","index":"0.000008256026418292"},{"denom":"ASSET14","index":"0.000024133914778951"},{"denom":"ASSET15","index":"0.000019001193386697"},{"denom":"ASSET16","index":"0.000011741691861213"},{"denom":"ASSET17","index":"0.000009205139483526"},{"denom":"ASSET18","index":"0.000003811157018018"},{"denom":"ASSET2","index":"0.000008011229275486"},{"denom":"ASSET3","index":"0.000002226652147557"},{"denom":"ASSET4","index":"0.000021454928269907"},{"denom":"ASSET5","index":"0.000001734689929917"},{"denom":"ASSET6","index":"0.000007001091110949"},{"denom":"ASSET7","index":"0.000010994186615549"},{"denom":"ASSET8","index":"0.000015007966738007"},{"denom":"ASSET9","index":"0.000006372340046203"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001543375593884"},{"denom":"ASSET1","index":"0.000012871309378663"},{"denom":"ASSET10","index":"0.000008967332198598"},{"denom":"ASSET11","index":"0.000012451619524186"},{"denom":"ASSET12","index":"0.000011213472915376"},{"denom":"ASSET13","index":"0.000003858438984711"},{"denom":"ASSET14","index":"0.000011631932007817"},{"denom":"ASSET15","index":"0.000008316259081242"},{"denom":"ASSET16","index":"0.000005798119954378"},{"denom":"ASSET17","index":"0.000004118129774432"},{"denom":"ASSET18","index":"0.000001961834686325"},{"denom":"ASSET2","index":"0.000003799362406955"},{"denom":"ASSET3","index":"0.000001111378119041"},{"denom":"ASSET4","index":"0.000010460246548983"},{"denom":"ASSET5","index":"0.000000862764187650"},{"denom":"ASSET6","index":"0.000003511364090393"},{"denom":"ASSET7","index":"0.000005377199337864"},{"denom":"ASSET8","index":"0.000007016574370602"},{"denom":"ASSET9","index":"0.000003030136134086"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003061984062566"},{"denom":"ASSET1","index":"0.000025984754387841"},{"denom":"ASSET10","index":"0.000020750278468036"},{"denom":"ASSET11","index":"0.000025825260107338"},{"denom":"ASSET12","index":"0.000024630365005548"},{"denom":"ASSET13","index":"0.000008111503841622"},{"denom":"ASSET14","index":"0.000023701848593669"},{"denom":"ASSET15","index":"0.000018689068915475"},{"denom":"ASSET16","index":"0.000011526541772952"},{"denom":"ASSET17","index":"0.000009050861170220"},{"denom":"ASSET18","index":"0.000003739265665267"},{"denom":"ASSET2","index":"0.000007869809789784"},{"denom":"ASSET3","index":"0.000002185113944095"},{"denom":"ASSET4","index":"0.000021066477214749"},{"denom":"ASSET5","index":"0.000001702392649313"},{"denom":"ASSET6","index":"0.000006871251000760"},{"denom":"ASSET7","index":"0.000010794622225013"},{"denom":"ASSET8","index":"0.000014746923085504"},{"denom":"ASSET9","index":"0.000006258895459680"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001745217677213"},{"denom":"ASSET1","index":"0.000014553842410819"},{"denom":"ASSET10","index":"0.000010139729507131"},{"denom":"ASSET11","index":"0.000014078681363843"},{"denom":"ASSET12","index":"0.000012678362515121"},{"denom":"ASSET13","index":"0.000004362304066790"},{"denom":"ASSET14","index":"0.000013152043309614"},{"denom":"ASSET15","index":"0.000009402563770700"},{"denom":"ASSET16","index":"0.000006556038246289"},{"denom":"ASSET17","index":"0.000004655394058383"},{"denom":"ASSET18","index":"0.000002217418219224"},{"denom":"ASSET2","index":"0.000004295692705065"},{"denom":"ASSET3","index":"0.000001256734357891"},{"denom":"ASSET4","index":"0.000011827217337515"},{"denom":"ASSET5","index":"0.000000975486386160"},{"denom":"ASSET6","index":"0.000003970037158850"},{"denom":"ASSET7","index":"0.000006079396946830"},{"denom":"ASSET8","index":"0.000007932673055287"},{"denom":"ASSET9","index":"0.000003426784497665"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003296605577903"},{"denom":"ASSET1","index":"0.000027950980635352"},{"denom":"ASSET10","index":"0.000022177590033485"},{"denom":"ASSET11","index":"0.000027741245317152"},{"denom":"ASSET12","index":"0.000026384837371861"},{"denom":"ASSET13","index":"0.000008707523198290"},{"denom":"ASSET14","index":"0.000025482773879389"},{"denom":"ASSET15","index":"0.000019999205716580"},{"denom":"ASSET16","index":"0.000012408342313410"},{"denom":"ASSET17","index":"0.000009694954350389"},{"denom":"ASSET18","index":"0.000004033447725414"},{"denom":"ASSET2","index":"0.000008454290496983"},{"denom":"ASSET3","index":"0.000002354114882033"},{"denom":"ASSET4","index":"0.000022662624820802"},{"denom":"ASSET5","index":"0.000001833709311257"},{"denom":"ASSET6","index":"0.000007402928859239"},{"denom":"ASSET7","index":"0.000011614131087351"},{"denom":"ASSET8","index":"0.000015829970625061"},{"denom":"ASSET9","index":"0.000006725199056296"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001696105704481"},{"denom":"ASSET1","index":"0.000014140754037071"},{"denom":"ASSET10","index":"0.000009851931515387"},{"denom":"ASSET11","index":"0.000013679695806241"},{"denom":"ASSET12","index":"0.000012318593050331"},{"denom":"ASSET13","index":"0.000004239283286244"},{"denom":"ASSET14","index":"0.000012779160793682"},{"denom":"ASSET15","index":"0.000009136800770120"},{"denom":"ASSET16","index":"0.000006369960897657"},{"denom":"ASSET17","index":"0.000004523766024416"},{"denom":"ASSET18","index":"0.000002155201985393"},{"denom":"ASSET2","index":"0.000004174048451456"},{"denom":"ASSET3","index":"0.000001220823336742"},{"denom":"ASSET4","index":"0.000011492121647193"},{"denom":"ASSET5","index":"0.000000947621810601"},{"denom":"ASSET6","index":"0.000003857193539630"},{"denom":"ASSET7","index":"0.000005907431204387"},{"denom":"ASSET8","index":"0.000007708991716984"},{"denom":"ASSET9","index":"0.000003329429011573"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003278023650839"},{"denom":"ASSET1","index":"0.000027801084973989"},{"denom":"ASSET10","index":"0.000022126343818190"},{"denom":"ASSET11","index":"0.000027610641458424"},{"denom":"ASSET12","index":"0.000026294522151225"},{"denom":"ASSET13","index":"0.000008669795972838"},{"denom":"ASSET14","index":"0.000025352034708572"},{"denom":"ASSET15","index":"0.000019941753748345"},{"denom":"ASSET16","index":"0.000012337408081897"},{"denom":"ASSET17","index":"0.000009662232510971"},{"denom":"ASSET18","index":"0.000004006663612522"},{"denom":"ASSET2","index":"0.000008414274009770"},{"denom":"ASSET3","index":"0.000002339697370568"},{"denom":"ASSET4","index":"0.000022540556466857"},{"denom":"ASSET5","index":"0.000001822656991491"},{"denom":"ASSET6","index":"0.000007357334263189"},{"denom":"ASSET7","index":"0.000011551068960203"},{"denom":"ASSET8","index":"0.000015761386047857"},{"denom":"ASSET9","index":"0.000006692834331509"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001139195115521"},{"denom":"ASSET1","index":"0.000009496890331931"},{"denom":"ASSET10","index":"0.000006616523219856"},{"denom":"ASSET11","index":"0.000009187371854639"},{"denom":"ASSET12","index":"0.000008273091178185"},{"denom":"ASSET13","index":"0.000002846943294505"},{"denom":"ASSET14","index":"0.000008582261490710"},{"denom":"ASSET15","index":"0.000006136055842283"},{"denom":"ASSET16","index":"0.000004278248649000"},{"denom":"ASSET17","index":"0.000003038433916001"},{"denom":"ASSET18","index":"0.000001447320933748"},{"denom":"ASSET2","index":"0.000002803422698710"},{"denom":"ASSET3","index":"0.000000819928024772"},{"denom":"ASSET4","index":"0.000007718116540611"},{"denom":"ASSET5","index":"0.000000636445192901"},{"denom":"ASSET6","index":"0.000002590694026466"},{"denom":"ASSET7","index":"0.000003967685677409"},{"denom":"ASSET8","index":"0.000005177210075735"},{"denom":"ASSET9","index":"0.000002236262294314"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000002735257365218"},{"denom":"ASSET1","index":"0.000023278157661741"},{"denom":"ASSET10","index":"0.000018999615823078"},{"denom":"ASSET11","index":"0.000023241706683585"},{"denom":"ASSET12","index":"0.000022372793234045"},{"denom":"ASSET13","index":"0.000007316911351959"},{"denom":"ASSET14","index":"0.000021266506066871"},{"denom":"ASSET15","index":"0.000017036720297506"},{"denom":"ASSET16","index":"0.000010298479660409"},{"denom":"ASSET17","index":"0.000008222611745720"},{"denom":"ASSET18","index":"0.000003315370510511"},{"denom":"ASSET2","index":"0.000007081336162231"},{"denom":"ASSET3","index":"0.000001948923871674"},{"denom":"ASSET4","index":"0.000018864412124408"},{"denom":"ASSET5","index":"0.000001519377842401"},{"denom":"ASSET6","index":"0.000006121992555640"},{"denom":"ASSET7","index":"0.000009661272655042"},{"denom":"ASSET8","index":"0.000013300968175029"},{"denom":"ASSET9","index":"0.000005629514833023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001583959364947"},{"denom":"ASSET1","index":"0.000013443347430705"},{"denom":"ASSET10","index":"0.000009381913161610"},{"denom":"ASSET11","index":"0.000012996589661105"},{"denom":"ASSET12","index":"0.000011696930694994"},{"denom":"ASSET13","index":"0.000004020819926404"},{"denom":"ASSET14","index":"0.000012143688464595"},{"denom":"ASSET15","index":"0.000008691469335864"},{"denom":"ASSET16","index":"0.000006051537060952"},{"denom":"ASSET17","index":"0.000004305120325241"},{"denom":"ASSET18","index":"0.000002030717134548"},{"denom":"ASSET2","index":"0.000003939591241022"},{"denom":"ASSET3","index":"0.000001137201595347"},{"denom":"ASSET4","index":"0.000010925258183866"},{"denom":"ASSET5","index":"0.000000893515539201"},{"denom":"ASSET6","index":"0.000003655290842186"},{"denom":"ASSET7","index":"0.000005604779291351"},{"denom":"ASSET8","index":"0.000007310581684371"},{"denom":"ASSET9","index":"0.000003167918729894"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003310378542013"},{"denom":"ASSET1","index":"0.000028352771206955"},{"denom":"ASSET10","index":"0.000022778987578468"},{"denom":"ASSET11","index":"0.000028201706998458"},{"denom":"ASSET12","index":"0.000026949790221900"},{"denom":"ASSET13","index":"0.000008856641706946"},{"denom":"ASSET14","index":"0.000025865717784540"},{"denom":"ASSET15","index":"0.000020483790155485"},{"denom":"ASSET16","index":"0.000012564495758376"},{"denom":"ASSET17","index":"0.000009912517491786"},{"denom":"ASSET18","index":"0.000004051289802086"},{"denom":"ASSET2","index":"0.000008567503486413"},{"denom":"ASSET3","index":"0.000002358477605528"},{"denom":"ASSET4","index":"0.000022984011222606"},{"denom":"ASSET5","index":"0.000001848359330263"},{"denom":"ASSET6","index":"0.000007474666006436"},{"denom":"ASSET7","index":"0.000011763521743703"},{"denom":"ASSET8","index":"0.000016098224703406"},{"denom":"ASSET9","index":"0.000006837907042961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001549911588522"},{"denom":"ASSET1","index":"0.000012922257740418"},{"denom":"ASSET10","index":"0.000009003081854783"},{"denom":"ASSET11","index":"0.000012500946332712"},{"denom":"ASSET12","index":"0.000011256607989023"},{"denom":"ASSET13","index":"0.000003873860414458"},{"denom":"ASSET14","index":"0.000011677307025497"},{"denom":"ASSET15","index":"0.000008349069378868"},{"denom":"ASSET16","index":"0.000005821200932633"},{"denom":"ASSET17","index":"0.000004134118188113"},{"denom":"ASSET18","index":"0.000001969385882532"},{"denom":"ASSET2","index":"0.000003814460404941"},{"denom":"ASSET3","index":"0.000001115740384942"},{"denom":"ASSET4","index":"0.000010501554259806"},{"denom":"ASSET5","index":"0.000000865892922233"},{"denom":"ASSET6","index":"0.000003524808812143"},{"denom":"ASSET7","index":"0.000005398664782463"},{"denom":"ASSET8","index":"0.000007044106283197"},{"denom":"ASSET9","index":"0.000003042260281224"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003086330633608"},{"denom":"ASSET1","index":"0.000026187842720704"},{"denom":"ASSET10","index":"0.000020922921087024"},{"denom":"ASSET11","index":"0.000026029396638226"},{"denom":"ASSET12","index":"0.000024828709288325"},{"denom":"ASSET13","index":"0.000008176601230700"},{"denom":"ASSET14","index":"0.000023887113573615"},{"denom":"ASSET15","index":"0.000018841856891118"},{"denom":"ASSET16","index":"0.000011616230118922"},{"denom":"ASSET17","index":"0.000009124242236202"},{"denom":"ASSET18","index":"0.000003767471049721"},{"denom":"ASSET2","index":"0.000007932284099147"},{"denom":"ASSET3","index":"0.000002202458257762"},{"denom":"ASSET4","index":"0.000021230824628511"},{"denom":"ASSET5","index":"0.000001715648257347"},{"denom":"ASSET6","index":"0.000006923830152599"},{"denom":"ASSET7","index":"0.000010879262909104"},{"denom":"ASSET8","index":"0.000014863870027497"},{"denom":"ASSET9","index":"0.000006308409915314"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001535524830156"},{"denom":"ASSET1","index":"0.000012804491333161"},{"denom":"ASSET10","index":"0.000008921035499248"},{"denom":"ASSET11","index":"0.000012386713938596"},{"denom":"ASSET12","index":"0.000011154325740380"},{"denom":"ASSET13","index":"0.000003838812075390"},{"denom":"ASSET14","index":"0.000011571000819920"},{"denom":"ASSET15","index":"0.000008272874264409"},{"denom":"ASSET16","index":"0.000005767863369556"},{"denom":"ASSET17","index":"0.000004096202633783"},{"denom":"ASSET18","index":"0.000001951097594671"},{"denom":"ASSET2","index":"0.000003779838221540"},{"denom":"ASSET3","index":"0.000001105621970313"},{"denom":"ASSET4","index":"0.000010405853838244"},{"denom":"ASSET5","index":"0.000000858152247148"},{"denom":"ASSET6","index":"0.000003492685157466"},{"denom":"ASSET7","index":"0.000005348983659966"},{"denom":"ASSET8","index":"0.000006980409897318"},{"denom":"ASSET9","index":"0.000003014831594025"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003051773960929"},{"denom":"ASSET1","index":"0.000025898629359040"},{"denom":"ASSET10","index":"0.000020686863907037"},{"denom":"ASSET11","index":"0.000025740096441319"},{"denom":"ASSET12","index":"0.000024551000542772"},{"denom":"ASSET13","index":"0.000008085532012369"},{"denom":"ASSET14","index":"0.000023622558405526"},{"denom":"ASSET15","index":"0.000018629920308839"},{"denom":"ASSET16","index":"0.000011487540137638"},{"denom":"ASSET17","index":"0.000009021847693812"},{"denom":"ASSET18","index":"0.000003725572559942"},{"denom":"ASSET2","index":"0.000007844221178735"},{"denom":"ASSET3","index":"0.000002178252359768"},{"denom":"ASSET4","index":"0.000020996168979716"},{"denom":"ASSET5","index":"0.000001697004218389"},{"denom":"ASSET6","index":"0.000006847583721256"},{"denom":"ASSET7","index":"0.000010758483833946"},{"denom":"ASSET8","index":"0.000014699172267780"},{"denom":"ASSET9","index":"0.000006238834616461"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001813824295534"},{"denom":"ASSET1","index":"0.000015126179984122"},{"denom":"ASSET10","index":"0.000010538420488017"},{"denom":"ASSET11","index":"0.000014633035948465"},{"denom":"ASSET12","index":"0.000013177247733614"},{"denom":"ASSET13","index":"0.000004534560738834"},{"denom":"ASSET14","index":"0.000013669547344553"},{"denom":"ASSET15","index":"0.000009773371692973"},{"denom":"ASSET16","index":"0.000006813663054312"},{"denom":"ASSET17","index":"0.000004839398062246"},{"denom":"ASSET18","index":"0.000002305279481754"},{"denom":"ASSET2","index":"0.000004465317911910"},{"denom":"ASSET3","index":"0.000001306325039660"},{"denom":"ASSET4","index":"0.000012293135053249"},{"denom":"ASSET5","index":"0.000001013309662309"},{"denom":"ASSET6","index":"0.000004125859175036"},{"denom":"ASSET7","index":"0.000006318830169217"},{"denom":"ASSET8","index":"0.000008245807377042"},{"denom":"ASSET9","index":"0.000003561783463017"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003452880861936"},{"denom":"ASSET1","index":"0.000029278299049117"},{"denom":"ASSET10","index":"0.000023254773922096"},{"denom":"ASSET11","index":"0.000029065569213605"},{"denom":"ASSET12","index":"0.000027656204711461"},{"denom":"ASSET13","index":"0.000009124518140406"},{"denom":"ASSET14","index":"0.000026695142606829"},{"denom":"ASSET15","index":"0.000020967476611979"},{"denom":"ASSET16","index":"0.000012995878924798"},{"denom":"ASSET17","index":"0.000010163149632422"},{"denom":"ASSET18","index":"0.000004223627093961"},{"denom":"ASSET2","index":"0.000008858348919255"},{"denom":"ASSET3","index":"0.000002465420318230"},{"denom":"ASSET4","index":"0.000023739200929128"},{"denom":"ASSET5","index":"0.000001919695214447"},{"denom":"ASSET6","index":"0.000007752150153146"},{"denom":"ASSET7","index":"0.000012165597276913"},{"denom":"ASSET8","index":"0.000016587849042771"},{"denom":"ASSET9","index":"0.000007046182609545"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001444852701297"},{"denom":"ASSET1","index":"0.000012048934466992"},{"denom":"ASSET10","index":"0.000008394653008080"},{"denom":"ASSET11","index":"0.000011656844181701"},{"denom":"ASSET12","index":"0.000010496256937239"},{"denom":"ASSET13","index":"0.000003612131753243"},{"denom":"ASSET14","index":"0.000010888347222530"},{"denom":"ASSET15","index":"0.000007784952614452"},{"denom":"ASSET16","index":"0.000005427509774140"},{"denom":"ASSET17","index":"0.000003854247504410"},{"denom":"ASSET18","index":"0.000001835962760875"},{"denom":"ASSET2","index":"0.000003556258887589"},{"denom":"ASSET3","index":"0.000001040019481734"},{"denom":"ASSET4","index":"0.000009792454875142"},{"denom":"ASSET5","index":"0.000000807705987699"},{"denom":"ASSET6","index":"0.000003286696816452"},{"denom":"ASSET7","index":"0.000005033459037423"},{"denom":"ASSET8","index":"0.000006568492504337"},{"denom":"ASSET9","index":"0.000002836773214080"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000002868026198866"},{"denom":"ASSET1","index":"0.000024339331661302"},{"denom":"ASSET10","index":"0.000019438063504597"},{"denom":"ASSET11","index":"0.000024190729344646"},{"denom":"ASSET12","index":"0.000023070632234294"},{"denom":"ASSET13","index":"0.000007598221307181"},{"denom":"ASSET14","index":"0.000022200415230506"},{"denom":"ASSET15","index":"0.000017506414948675"},{"denom":"ASSET16","index":"0.000010796282691537"},{"denom":"ASSET17","index":"0.000008477235924619"},{"denom":"ASSET18","index":"0.000003501529899130"},{"denom":"ASSET2","index":"0.000007371086117521"},{"denom":"ASSET3","index":"0.000002046801194740"},{"denom":"ASSET4","index":"0.000019732782799148"},{"denom":"ASSET5","index":"0.000001595074946946"},{"denom":"ASSET6","index":"0.000006435625489467"},{"denom":"ASSET7","index":"0.000010111140720407"},{"denom":"ASSET8","index":"0.000013813490690156"},{"denom":"ASSET9","index":"0.000005862589992841"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001655416114862"},{"denom":"ASSET1","index":"0.000013800538848519"},{"denom":"ASSET10","index":"0.000009615249134678"},{"denom":"ASSET11","index":"0.000013350879623065"},{"denom":"ASSET12","index":"0.000012022439267096"},{"denom":"ASSET13","index":"0.000004137189147657"},{"denom":"ASSET14","index":"0.000012471558036751"},{"denom":"ASSET15","index":"0.000008916980241305"},{"denom":"ASSET16","index":"0.000006216863065381"},{"denom":"ASSET17","index":"0.000004414983428766"},{"denom":"ASSET18","index":"0.000002102913517117"},{"denom":"ASSET2","index":"0.000004073955819077"},{"denom":"ASSET3","index":"0.000001191705038613"},{"denom":"ASSET4","index":"0.000011215538757958"},{"denom":"ASSET5","index":"0.000000924719873500"},{"denom":"ASSET6","index":"0.000003764274645778"},{"denom":"ASSET7","index":"0.000005765582472528"},{"denom":"ASSET8","index":"0.000007523144733557"},{"denom":"ASSET9","index":"0.000003249220268545"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003262792429801"},{"denom":"ASSET1","index":"0.000027679878715890"},{"denom":"ASSET10","index":"0.000022086570261210"},{"denom":"ASSET11","index":"0.000027505267384149"},{"denom":"ASSET12","index":"0.000026222420015979"},{"denom":"ASSET13","index":"0.000008638975204347"},{"denom":"ASSET14","index":"0.000025246236428505"},{"denom":"ASSET15","index":"0.000019895354512471"},{"denom":"ASSET16","index":"0.000012279836462442"},{"denom":"ASSET17","index":"0.000009636125515167"},{"denom":"ASSET18","index":"0.000003984145752232"},{"denom":"ASSET2","index":"0.000008382344169353"},{"denom":"ASSET3","index":"0.000002328549799735"},{"denom":"ASSET4","index":"0.000022441247538096"},{"denom":"ASSET5","index":"0.000001813932132265"},{"denom":"ASSET6","index":"0.000007320527694069"},{"denom":"ASSET7","index":"0.000011499571173317"},{"denom":"ASSET8","index":"0.000015704553099640"},{"denom":"ASSET9","index":"0.000006666608399750"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001676736923170"},{"denom":"ASSET1","index":"0.000013985463602132"},{"denom":"ASSET10","index":"0.000009743339709608"},{"denom":"ASSET11","index":"0.000013528824721587"},{"denom":"ASSET12","index":"0.000012182509640070"},{"denom":"ASSET13","index":"0.000004192868462713"},{"denom":"ASSET14","index":"0.000012638122365828"},{"denom":"ASSET15","index":"0.000009036319060854"},{"denom":"ASSET16","index":"0.000006299564241947"},{"denom":"ASSET17","index":"0.000004474034874554"},{"denom":"ASSET18","index":"0.000002131323494140"},{"denom":"ASSET2","index":"0.000004128220711085"},{"denom":"ASSET3","index":"0.000001207784185172"},{"denom":"ASSET4","index":"0.000011365690429028"},{"denom":"ASSET5","index":"0.000000936879321208"},{"denom":"ASSET6","index":"0.000003814217346036"},{"denom":"ASSET7","index":"0.000005841899206614"},{"denom":"ASSET8","index":"0.000007623303918134"},{"denom":"ASSET9","index":"0.000003292930713863"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003296156578493"},{"denom":"ASSET1","index":"0.000027968412540894"},{"denom":"ASSET10","index":"0.000022307812536905"},{"denom":"ASSET11","index":"0.000027788867279184"},{"denom":"ASSET12","index":"0.000026488589695468"},{"denom":"ASSET13","index":"0.000008728285856057"},{"denom":"ASSET14","index":"0.000025508064125070"},{"denom":"ASSET15","index":"0.000020096610749334"},{"denom":"ASSET16","index":"0.000012407784704791"},{"denom":"ASSET17","index":"0.000009734180928237"},{"denom":"ASSET18","index":"0.000004026678592252"},{"denom":"ASSET2","index":"0.000008468774984810"},{"denom":"ASSET3","index":"0.000002353220293961"},{"denom":"ASSET4","index":"0.000022675279511256"},{"denom":"ASSET5","index":"0.000001832728492238"},{"denom":"ASSET6","index":"0.000007397034942132"},{"denom":"ASSET7","index":"0.000011618881320506"},{"denom":"ASSET8","index":"0.000015866042832442"},{"denom":"ASSET9","index":"0.000006735898552490"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001687654189845"},{"denom":"ASSET1","index":"0.000014079752531439"},{"denom":"ASSET10","index":"0.000009809029374167"},{"denom":"ASSET11","index":"0.000013620990639222"},{"denom":"ASSET12","index":"0.000012264971552184"},{"denom":"ASSET13","index":"0.000004220977891851"},{"denom":"ASSET14","index":"0.000012723733444402"},{"denom":"ASSET15","index":"0.000009097856320367"},{"denom":"ASSET16","index":"0.000006341600132585"},{"denom":"ASSET17","index":"0.000004504710146476"},{"denom":"ASSET18","index":"0.000002144573664825"},{"denom":"ASSET2","index":"0.000004156493288528"},{"denom":"ASSET3","index":"0.000001215995376963"},{"denom":"ASSET4","index":"0.000011441411046878"},{"denom":"ASSET5","index":"0.000000943317625765"},{"denom":"ASSET6","index":"0.000003839597523622"},{"denom":"ASSET7","index":"0.000005880995823129"},{"denom":"ASSET8","index":"0.000007675510212768"},{"denom":"ASSET9","index":"0.000003314508610843"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003237925740153"},{"denom":"ASSET1","index":"0.000027468087048908"},{"denom":"ASSET10","index":"0.000021838560142362"},{"denom":"ASSET11","index":"0.000027274223261348"},{"denom":"ASSET12","index":"0.000025962125103579"},{"denom":"ASSET13","index":"0.000008562973508850"},{"denom":"ASSET14","index":"0.000025046299162567"},{"denom":"ASSET15","index":"0.000019687604125947"},{"denom":"ASSET16","index":"0.000012189946370622"},{"denom":"ASSET17","index":"0.000009540519193028"},{"denom":"ASSET18","index":"0.000003959057055270"},{"denom":"ASSET2","index":"0.000008312511220651"},{"denom":"ASSET3","index":"0.000002312646079660"},{"denom":"ASSET4","index":"0.000022269978905361"},{"denom":"ASSET5","index":"0.000001800462011039"},{"denom":"ASSET6","index":"0.000007270233858279"},{"denom":"ASSET7","index":"0.000011411601588483"},{"denom":"ASSET8","index":"0.000015567552190875"},{"denom":"ASSET9","index":"0.000006610637099613"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001700269946448"},{"denom":"ASSET1","index":"0.000014175647296985"},{"denom":"ASSET10","index":"0.000009876508679424"},{"denom":"ASSET11","index":"0.000013714231996791"},{"denom":"ASSET12","index":"0.000012349169664489"},{"denom":"ASSET13","index":"0.000004249665204630"},{"denom":"ASSET14","index":"0.000012810584964683"},{"denom":"ASSET15","index":"0.000009159649022667"},{"denom":"ASSET16","index":"0.000006386108914062"},{"denom":"ASSET17","index":"0.000004535399405845"},{"denom":"ASSET18","index":"0.000002160675585153"},{"denom":"ASSET2","index":"0.000004184037207885"},{"denom":"ASSET3","index":"0.000001223709723928"},{"denom":"ASSET4","index":"0.000011520237582522"},{"denom":"ASSET5","index":"0.000000950091460574"},{"denom":"ASSET6","index":"0.000003867003500531"},{"denom":"ASSET7","index":"0.000005922674290891"},{"denom":"ASSET8","index":"0.000007727949032131"},{"denom":"ASSET9","index":"0.000003337940880615"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003224934301433"},{"denom":"ASSET1","index":"0.000027341438894536"},{"denom":"ASSET10","index":"0.000021706571274337"},{"denom":"ASSET11","index":"0.000027141091242061"},{"denom":"ASSET12","index":"0.000025819235056226"},{"denom":"ASSET13","index":"0.000008520116782966"},{"denom":"ASSET14","index":"0.000024928444433519"},{"denom":"ASSET15","index":"0.000019573794936329"},{"denom":"ASSET16","index":"0.000012137286393349"},{"denom":"ASSET17","index":"0.000009487995483061"},{"denom":"ASSET18","index":"0.000003945309126507"},{"denom":"ASSET2","index":"0.000008271045740629"},{"denom":"ASSET3","index":"0.000002302032616683"},{"denom":"ASSET4","index":"0.000022168721917699"},{"denom":"ASSET5","index":"0.000001793343624246"},{"denom":"ASSET6","index":"0.000007240378309003"},{"denom":"ASSET7","index":"0.000011361888746536"},{"denom":"ASSET8","index":"0.000015488944629697"},{"denom":"ASSET9","index":"0.000006579500326985"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001505652349479"},{"denom":"ASSET1","index":"0.000012557843622987"},{"denom":"ASSET10","index":"0.000008748308836028"},{"denom":"ASSET11","index":"0.000012147743761261"},{"denom":"ASSET12","index":"0.000010939413811534"},{"denom":"ASSET13","index":"0.000003764130873697"},{"denom":"ASSET14","index":"0.000011348049030896"},{"denom":"ASSET15","index":"0.000008114118692716"},{"denom":"ASSET16","index":"0.000005656448807088"},{"denom":"ASSET17","index":"0.000004017514002549"},{"denom":"ASSET18","index":"0.000001912822926478"},{"denom":"ASSET2","index":"0.000003707009821528"},{"denom":"ASSET3","index":"0.000001083835348847"},{"denom":"ASSET4","index":"0.000010205627987517"},{"denom":"ASSET5","index":"0.000000840704716538"},{"denom":"ASSET6","index":"0.000003424333845410"},{"denom":"ASSET7","index":"0.000005246348945363"},{"denom":"ASSET8","index":"0.000006845738406093"},{"denom":"ASSET9","index":"0.000002955648289152"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000002959758868257"},{"denom":"ASSET1","index":"0.000025116229265451"},{"denom":"ASSET10","index":"0.000020033024535037"},{"denom":"ASSET11","index":"0.000024955202637112"},{"denom":"ASSET12","index":"0.000023787913163340"},{"denom":"ASSET13","index":"0.000007837044315100"},{"denom":"ASSET14","index":"0.000022906603767748"},{"denom":"ASSET15","index":"0.000018047329062837"},{"denom":"ASSET16","index":"0.000011142428291313"},{"denom":"ASSET17","index":"0.000008741414303940"},{"denom":"ASSET18","index":"0.000003614587489816"},{"denom":"ASSET2","index":"0.000007605147442913"},{"denom":"ASSET3","index":"0.000002112677625393"},{"denom":"ASSET4","index":"0.000020363145786569"},{"denom":"ASSET5","index":"0.000001645239564154"},{"denom":"ASSET6","index":"0.000006641765641459"},{"denom":"ASSET7","index":"0.000010434431181702"},{"denom":"ASSET8","index":"0.000014248591155217"},{"denom":"ASSET9","index":"0.000006047835874095"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001815877519749"},{"denom":"ASSET1","index":"0.000015137138459046"},{"denom":"ASSET10","index":"0.000010545739718907"},{"denom":"ASSET11","index":"0.000014644907422941"},{"denom":"ASSET12","index":"0.000013186828093302"},{"denom":"ASSET13","index":"0.000004537625601742"},{"denom":"ASSET14","index":"0.000013679059129408"},{"denom":"ASSET15","index":"0.000009780506595550"},{"denom":"ASSET16","index":"0.000006818847588397"},{"denom":"ASSET17","index":"0.000004841650653454"},{"denom":"ASSET18","index":"0.000002306040358223"},{"denom":"ASSET2","index":"0.000004467306882298"},{"denom":"ASSET3","index":"0.000001307100902598"},{"denom":"ASSET4","index":"0.000012301639507366"},{"denom":"ASSET5","index":"0.000001013416839040"},{"denom":"ASSET6","index":"0.000004128122470864"},{"denom":"ASSET7","index":"0.000006324548354661"},{"denom":"ASSET8","index":"0.000008252108546467"},{"denom":"ASSET9","index":"0.000003563504517685"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003468946703322"},{"denom":"ASSET1","index":"0.000029412495408176"},{"denom":"ASSET10","index":"0.000023372734593498"},{"denom":"ASSET11","index":"0.000029203218600002"},{"denom":"ASSET12","index":"0.000027792166579196"},{"denom":"ASSET13","index":"0.000009167641990636"},{"denom":"ASSET14","index":"0.000026818252104650"},{"denom":"ASSET15","index":"0.000021072198152383"},{"denom":"ASSET16","index":"0.000013054905852031"},{"denom":"ASSET17","index":"0.000010211457984650"},{"denom":"ASSET18","index":"0.000004240878207320"},{"denom":"ASSET2","index":"0.000008898543974195"},{"denom":"ASSET3","index":"0.000002476460623897"},{"denom":"ASSET4","index":"0.000023847831794350"},{"denom":"ASSET5","index":"0.000001927880642719"},{"denom":"ASSET6","index":"0.000007785977685579"},{"denom":"ASSET7","index":"0.000012222326144679"},{"denom":"ASSET8","index":"0.000016667230515151"},{"denom":"ASSET9","index":"0.000007078301868557"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001541968050995"},{"denom":"ASSET1","index":"0.000012857487907975"},{"denom":"ASSET10","index":"0.000008957704485900"},{"denom":"ASSET11","index":"0.000012438763825161"},{"denom":"ASSET12","index":"0.000011200869215257"},{"denom":"ASSET13","index":"0.000003854089325736"},{"denom":"ASSET14","index":"0.000011619593298070"},{"denom":"ASSET15","index":"0.000008307186714386"},{"denom":"ASSET16","index":"0.000005792349812251"},{"denom":"ASSET17","index":"0.000004113299472240"},{"denom":"ASSET18","index":"0.000001959030530305"},{"denom":"ASSET2","index":"0.000003795102401372"},{"denom":"ASSET3","index":"0.000001109951140156"},{"denom":"ASSET4","index":"0.000010448993630046"},{"denom":"ASSET5","index":"0.000000861541416423"},{"denom":"ASSET6","index":"0.000003506814193562"},{"denom":"ASSET7","index":"0.000005371133324183"},{"denom":"ASSET8","index":"0.000007009474378365"},{"denom":"ASSET9","index":"0.000003027441582881"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003053196756625"},{"denom":"ASSET1","index":"0.000025905581999278"},{"denom":"ASSET10","index":"0.000020682143152818"},{"denom":"ASSET11","index":"0.000025745380902198"},{"denom":"ASSET12","index":"0.000024550499550641"},{"denom":"ASSET13","index":"0.000008086239198545"},{"denom":"ASSET14","index":"0.000023629161089906"},{"denom":"ASSET15","index":"0.000018628151539367"},{"denom":"ASSET16","index":"0.000011492271696690"},{"denom":"ASSET17","index":"0.000009021688715966"},{"denom":"ASSET18","index":"0.000003727673632537"},{"denom":"ASSET2","index":"0.000007845443656426"},{"denom":"ASSET3","index":"0.000002178852781858"},{"denom":"ASSET4","index":"0.000021002318737231"},{"denom":"ASSET5","index":"0.000001697417622442"},{"denom":"ASSET6","index":"0.000006850319017638"},{"denom":"ASSET7","index":"0.000010761758840612"},{"denom":"ASSET8","index":"0.000014701087498525"},{"denom":"ASSET9","index":"0.000006240132889304"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001327266579501"},{"denom":"ASSET1","index":"0.000011071143497688"},{"denom":"ASSET10","index":"0.000007713614824674"},{"denom":"ASSET11","index":"0.000010710668391289"},{"denom":"ASSET12","index":"0.000009644435509525"},{"denom":"ASSET13","index":"0.000003318857014090"},{"denom":"ASSET14","index":"0.000010004910615924"},{"denom":"ASSET15","index":"0.000007152875770275"},{"denom":"ASSET16","index":"0.000004987262870528"},{"denom":"ASSET17","index":"0.000003541219052903"},{"denom":"ASSET18","index":"0.000001686360555224"},{"denom":"ASSET2","index":"0.000003267755179083"},{"denom":"ASSET3","index":"0.000000955742427695"},{"denom":"ASSET4","index":"0.000008998066353223"},{"denom":"ASSET5","index":"0.000000741667172936"},{"denom":"ASSET6","index":"0.000003019151657428"},{"denom":"ASSET7","index":"0.000004625406633453"},{"denom":"ASSET8","index":"0.000006035541053505"},{"denom":"ASSET9","index":"0.000002606193585346"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000002827520151011"},{"denom":"ASSET1","index":"0.000024027878888002"},{"denom":"ASSET10","index":"0.000019355847170480"},{"denom":"ASSET11","index":"0.000023924401086085"},{"denom":"ASSET12","index":"0.000022900407365256"},{"denom":"ASSET13","index":"0.000007521399074311"},{"denom":"ASSET14","index":"0.000021930603354990"},{"denom":"ASSET15","index":"0.000017401215805238"},{"denom":"ASSET16","index":"0.000010647310435771"},{"denom":"ASSET17","index":"0.000008415007538097"},{"denom":"ASSET18","index":"0.000003442593620109"},{"denom":"ASSET2","index":"0.000007289635767836"},{"denom":"ASSET3","index":"0.000002016810506595"},{"denom":"ASSET4","index":"0.000019477449509443"},{"denom":"ASSET5","index":"0.000001571692130579"},{"denom":"ASSET6","index":"0.000006339251488002"},{"denom":"ASSET7","index":"0.000009978075244424"},{"denom":"ASSET8","index":"0.000013673195599374"},{"denom":"ASSET9","index":"0.000005796522499795"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001571435631869"},{"denom":"ASSET1","index":"0.000013104175099655"},{"denom":"ASSET10","index":"0.000009129715488355"},{"denom":"ASSET11","index":"0.000012677036600848"},{"denom":"ASSET12","index":"0.000011415350365342"},{"denom":"ASSET13","index":"0.000003928095848150"},{"denom":"ASSET14","index":"0.000011841502401104"},{"denom":"ASSET15","index":"0.000008466812321615"},{"denom":"ASSET16","index":"0.000005902994865728"},{"denom":"ASSET17","index":"0.000004192467944409"},{"denom":"ASSET18","index":"0.000001996601204585"},{"denom":"ASSET2","index":"0.000003867921602360"},{"denom":"ASSET3","index":"0.000001131473113468"},{"denom":"ASSET4","index":"0.000010648868578800"},{"denom":"ASSET5","index":"0.000000877952110712"},{"denom":"ASSET6","index":"0.000003573955614728"},{"denom":"ASSET7","index":"0.000005473883440830"},{"denom":"ASSET8","index":"0.000007142978914228"},{"denom":"ASSET9","index":"0.000003084669944040"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003141123056438"},{"denom":"ASSET1","index":"0.000026662100889972"},{"denom":"ASSET10","index":"0.000021312054987248"},{"denom":"ASSET11","index":"0.000026503481745319"},{"denom":"ASSET12","index":"0.000025286293002787"},{"denom":"ASSET13","index":"0.000008324908472884"},{"denom":"ASSET14","index":"0.000024319980387721"},{"denom":"ASSET15","index":"0.000019190708128374"},{"denom":"ASSET16","index":"0.000011824997422058"},{"denom":"ASSET17","index":"0.000009292034078872"},{"denom":"ASSET18","index":"0.000003834040785154"},{"denom":"ASSET2","index":"0.000008076003481032"},{"denom":"ASSET3","index":"0.000002241608843356"},{"denom":"ASSET4","index":"0.000021614431804298"},{"denom":"ASSET5","index":"0.000001746420421862"},{"denom":"ASSET6","index":"0.000007047828859327"},{"denom":"ASSET7","index":"0.000011075197168484"},{"denom":"ASSET8","index":"0.000015134882092008"},{"denom":"ASSET9","index":"0.000006422749115253"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[{"denom":"ASSET0","index":"0.000001554974273829"},{"denom":"ASSET1","index":"0.000012964145980643"},{"denom":"ASSET10","index":"0.000009032293690170"},{"denom":"ASSET11","index":"0.000012541598623624"},{"denom":"ASSET12","index":"0.000011293609918011"},{"denom":"ASSET13","index":"0.000003886649549954"},{"denom":"ASSET14","index":"0.000011715371140412"},{"denom":"ASSET15","index":"0.000008376264351692"},{"denom":"ASSET16","index":"0.000005840194074962"},{"denom":"ASSET17","index":"0.000004147646243034"},{"denom":"ASSET18","index":"0.000001975556294303"},{"denom":"ASSET2","index":"0.000003826903319009"},{"denom":"ASSET3","index":"0.000001119455695618"},{"denom":"ASSET4","index":"0.000010535776146539"},{"denom":"ASSET5","index":"0.000000869071819878"},{"denom":"ASSET6","index":"0.000003536426577765"},{"denom":"ASSET7","index":"0.000005416074448708"},{"denom":"ASSET8","index":"0.000007067350213206"},{"denom":"ASSET9","index":"0.000003052560720565"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[{"denom":"ASSET0","index":"0.000003054120352223"},{"denom":"ASSET1","index":"0.000025909289170716"},{"denom":"ASSET10","index":"0.000020664041936079"},{"denom":"ASSET11","index":"0.000025743066158465"},{"denom":"ASSET12","index":"0.000024537849095602"},{"denom":"ASSET13","index":"0.000008085297309351"},{"denom":"ASSET14","index":"0.000023630023251940"},{"denom":"ASSET15","index":"0.000018615490114349"},{"denom":"ASSET16","index":"0.000011495216270003"},{"denom":"ASSET17","index":"0.000009017197770141"},{"denom":"ASSET18","index":"0.000003730110182262"},{"denom":"ASSET2","index":"0.000007845299155388"},{"denom":"ASSET3","index":"0.000002179886924088"},{"denom":"ASSET4","index":"0.000021005968780047"},{"denom":"ASSET5","index":"0.000001698230665763"},{"denom":"ASSET6","index":"0.000006853367473041"},{"denom":"ASSET7","index":"0.000010764057351149"},{"denom":"ASSET8","index":"0.000014698116791571"},{"denom":"ASSET9","index":"0.000006239964640655"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368956467125941","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499368204294499351","reward_histories":[]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET18","snapshot":{"prev_reward_weight":"0.499367452123005718","reward_histories":[]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001587610635106"},{"denom":"ASSET1","index":"0.000013244938725362"},{"denom":"ASSET10","index":"0.000009227311812032"},{"denom":"ASSET11","index":"0.000012812935831455"},{"denom":"ASSET12","index":"0.000011538527294432"},{"denom":"ASSET13","index":"0.000003970376596809"},{"denom":"ASSET14","index":"0.000011969180179294"},{"denom":"ASSET15","index":"0.000008557707326477"},{"denom":"ASSET16","index":"0.000005967039972082"},{"denom":"ASSET17","index":"0.000004237678387413"},{"denom":"ASSET18","index":"0.000002018263519969"},{"denom":"ASSET2","index":"0.000003909626189853"},{"denom":"ASSET3","index":"0.000001143457659809"},{"denom":"ASSET4","index":"0.000010763622103487"},{"denom":"ASSET5","index":"0.000000886955941552"},{"denom":"ASSET6","index":"0.000003612624200292"},{"denom":"ASSET7","index":"0.000005533687069132"},{"denom":"ASSET8","index":"0.000007219848364411"},{"denom":"ASSET9","index":"0.000003118520890387"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003152887181228"},{"denom":"ASSET1","index":"0.000026760532918289"},{"denom":"ASSET10","index":"0.000021371603424459"},{"denom":"ASSET11","index":"0.000026596151859305"},{"denom":"ASSET12","index":"0.000025366346961436"},{"denom":"ASSET13","index":"0.000008353980761099"},{"denom":"ASSET14","index":"0.000024408754798213"},{"denom":"ASSET15","index":"0.000019248058608344"},{"denom":"ASSET16","index":"0.000011870971278696"},{"denom":"ASSET17","index":"0.000009321801721671"},{"denom":"ASSET18","index":"0.000003850124607081"},{"denom":"ASSET2","index":"0.000008105134387478"},{"denom":"ASSET3","index":"0.000002250596051831"},{"denom":"ASSET4","index":"0.000021694971342643"},{"denom":"ASSET5","index":"0.000001752750611640"},{"denom":"ASSET6","index":"0.000007075802880646"},{"denom":"ASSET7","index":"0.000011117440314842"},{"denom":"ASSET8","index":"0.000015186957305377"},{"denom":"ASSET9","index":"0.000006446159830056"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001450981944084"},{"denom":"ASSET1","index":"0.000012097851501865"},{"denom":"ASSET10","index":"0.000008428524260541"},{"denom":"ASSET11","index":"0.000011703479004578"},{"denom":"ASSET12","index":"0.000010538773481717"},{"denom":"ASSET13","index":"0.000003626563958485"},{"denom":"ASSET14","index":"0.000010932552044520"},{"denom":"ASSET15","index":"0.000007816771742159"},{"denom":"ASSET16","index":"0.000005449942823954"},{"denom":"ASSET17","index":"0.000003870671031354"},{"denom":"ASSET18","index":"0.000001843572637920"},{"denom":"ASSET2","index":"0.000003571328051486"},{"denom":"ASSET3","index":"0.000001044730757120"},{"denom":"ASSET4","index":"0.000009831991445917"},{"denom":"ASSET5","index":"0.000000810720570477"},{"denom":"ASSET6","index":"0.000003299899992359"},{"denom":"ASSET7","index":"0.000005054382457699"},{"denom":"ASSET8","index":"0.000006595048508847"},{"denom":"ASSET9","index":"0.000002848509784621"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000002831039632868"},{"denom":"ASSET1","index":"0.000024014703977493"},{"denom":"ASSET10","index":"0.000019136467933987"},{"denom":"ASSET11","index":"0.000023856136612857"},{"denom":"ASSET12","index":"0.000022731094165303"},{"denom":"ASSET13","index":"0.000007491812146677"},{"denom":"ASSET14","index":"0.000021900750691559"},{"denom":"ASSET15","index":"0.000017242457090593"},{"denom":"ASSET16","index":"0.000010655585625623"},{"denom":"ASSET17","index":"0.000008353141870908"},{"denom":"ASSET18","index":"0.000003458892129556"},{"denom":"ASSET2","index":"0.000007270317321266"},{"denom":"ASSET3","index":"0.000002020551075646"},{"denom":"ASSET4","index":"0.000019470118745656"},{"denom":"ASSET5","index":"0.000001574098937698"},{"denom":"ASSET6","index":"0.000006353413461243"},{"denom":"ASSET7","index":"0.000009977493764026"},{"denom":"ASSET8","index":"0.000013619759476676"},{"denom":"ASSET9","index":"0.000005782490697784"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001596167964962"},{"denom":"ASSET1","index":"0.000013307648687747"},{"denom":"ASSET10","index":"0.000009271254138767"},{"denom":"ASSET11","index":"0.000012873344596610"},{"denom":"ASSET12","index":"0.000011592750107942"},{"denom":"ASSET13","index":"0.000003989527201016"},{"denom":"ASSET14","index":"0.000012025715131995"},{"denom":"ASSET15","index":"0.000008598149750858"},{"denom":"ASSET16","index":"0.000005994556982506"},{"denom":"ASSET17","index":"0.000004257340617956"},{"denom":"ASSET18","index":"0.000002028240277625"},{"denom":"ASSET2","index":"0.000003928376470814"},{"denom":"ASSET3","index":"0.000001148919558672"},{"denom":"ASSET4","index":"0.000010814752131731"},{"denom":"ASSET5","index":"0.000000891818678410"},{"denom":"ASSET6","index":"0.000003630210866621"},{"denom":"ASSET7","index":"0.000005559360179979"},{"denom":"ASSET8","index":"0.000007254619109209"},{"denom":"ASSET9","index":"0.000003133416978198"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003160678210357"},{"denom":"ASSET1","index":"0.000026816731621709"},{"denom":"ASSET10","index":"0.000021409695697867"},{"denom":"ASSET11","index":"0.000026650151208928"},{"denom":"ASSET12","index":"0.000025413985003091"},{"denom":"ASSET13","index":"0.000008371194471357"},{"denom":"ASSET14","index":"0.000024459575922385"},{"denom":"ASSET15","index":"0.000019283728762326"},{"denom":"ASSET16","index":"0.000011895729224726"},{"denom":"ASSET17","index":"0.000009339186085895"},{"denom":"ASSET18","index":"0.000003859320220004"},{"denom":"ASSET2","index":"0.000008121656282140"},{"denom":"ASSET3","index":"0.000002255587694637"},{"denom":"ASSET4","index":"0.000021740936259308"},{"denom":"ASSET5","index":"0.000001757304707579"},{"denom":"ASSET6","index":"0.000007091577992612"},{"denom":"ASSET7","index":"0.000011140302591406"},{"denom":"ASSET8","index":"0.000015217956063596"},{"denom":"ASSET9","index":"0.000006459479788296"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001539653287763"},{"denom":"ASSET1","index":"0.000012837628062054"},{"denom":"ASSET10","index":"0.000008944076712630"},{"denom":"ASSET11","index":"0.000012418678362380"},{"denom":"ASSET12","index":"0.000011182855597091"},{"denom":"ASSET13","index":"0.000003848344731893"},{"denom":"ASSET14","index":"0.000011600753980079"},{"denom":"ASSET15","index":"0.000008294363000211"},{"denom":"ASSET16","index":"0.000005782767435536"},{"denom":"ASSET17","index":"0.000004106968636837"},{"denom":"ASSET18","index":"0.000001956500354065"},{"denom":"ASSET2","index":"0.000003789470997435"},{"denom":"ASSET3","index":"0.000001108613446191"},{"denom":"ASSET4","index":"0.000010432741141086"},{"denom":"ASSET5","index":"0.000000860502708115"},{"denom":"ASSET6","index":"0.000003501935883605"},{"denom":"ASSET7","index":"0.000005362766419174"},{"denom":"ASSET8","index":"0.000006998089525433"},{"denom":"ASSET9","index":"0.000003022535474442"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003102081054533"},{"denom":"ASSET1","index":"0.000026328097047411"},{"denom":"ASSET10","index":"0.000021065731925672"},{"denom":"ASSET11","index":"0.000026176422512857"},{"denom":"ASSET12","index":"0.000024984864029023"},{"denom":"ASSET13","index":"0.000008223750690350"},{"denom":"ASSET14","index":"0.000024017391771060"},{"denom":"ASSET15","index":"0.000018965095888316"},{"denom":"ASSET16","index":"0.000011675661088751"},{"denom":"ASSET17","index":"0.000009181817821335"},{"denom":"ASSET18","index":"0.000003784851704842"},{"denom":"ASSET2","index":"0.000007977007181168"},{"denom":"ASSET3","index":"0.000002213531006169"},{"denom":"ASSET4","index":"0.000021343717572048"},{"denom":"ASSET5","index":"0.000001724500934679"},{"denom":"ASSET6","index":"0.000006958604580417"},{"denom":"ASSET7","index":"0.000010936011139136"},{"denom":"ASSET8","index":"0.000014950117004491"},{"denom":"ASSET9","index":"0.000006344046059941"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001722784092424"},{"denom":"ASSET1","index":"0.000014376047839207"},{"denom":"ASSET10","index":"0.000010014727915911"},{"denom":"ASSET11","index":"0.000013905627425621"},{"denom":"ASSET12","index":"0.000012523636788373"},{"denom":"ASSET13","index":"0.000004309050988454"},{"denom":"ASSET14","index":"0.000012989875687172"},{"denom":"ASSET15","index":"0.000009287144342897"},{"denom":"ASSET16","index":"0.000006475075648346"},{"denom":"ASSET17","index":"0.000004597575508787"},{"denom":"ASSET18","index":"0.000002191113748617"},{"denom":"ASSET2","index":"0.000004242146751855"},{"denom":"ASSET3","index":"0.000001239819134475"},{"denom":"ASSET4","index":"0.000011683152316098"},{"denom":"ASSET5","index":"0.000000961748401110"},{"denom":"ASSET6","index":"0.000003920170113222"},{"denom":"ASSET7","index":"0.000006004655234759"},{"denom":"ASSET8","index":"0.000007836158711656"},{"denom":"ASSET9","index":"0.000003384936220430"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003308323901116"},{"denom":"ASSET1","index":"0.000028066718381779"},{"denom":"ASSET10","index":"0.000022316311421496"},{"denom":"ASSET11","index":"0.000027867424204892"},{"denom":"ASSET12","index":"0.000026530665881565"},{"denom":"ASSET13","index":"0.000008749579510737"},{"denom":"ASSET14","index":"0.000025590688346390"},{"denom":"ASSET15","index":"0.000020116135001180"},{"denom":"ASSET16","index":"0.000012455644018572"},{"denom":"ASSET17","index":"0.000009747635771928"},{"denom":"ASSET18","index":"0.000004046709206696"},{"denom":"ASSET2","index":"0.000008491843085820"},{"denom":"ASSET3","index":"0.000002361259343526"},{"denom":"ASSET4","index":"0.000022756236881458"},{"denom":"ASSET5","index":"0.000001838827056256"},{"denom":"ASSET6","index":"0.000007428217086977"},{"denom":"ASSET7","index":"0.000011660835649526"},{"denom":"ASSET8","index":"0.000015906513514404"},{"denom":"ASSET9","index":"0.000006755948018281"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001677980890787"},{"denom":"ASSET1","index":"0.000013990275877081"},{"denom":"ASSET10","index":"0.000009746835585844"},{"denom":"ASSET11","index":"0.000013534047272362"},{"denom":"ASSET12","index":"0.000012187401487418"},{"denom":"ASSET13","index":"0.000004194217559326"},{"denom":"ASSET14","index":"0.000012642160756856"},{"denom":"ASSET15","index":"0.000009039350648091"},{"denom":"ASSET16","index":"0.000006301979019776"},{"denom":"ASSET17","index":"0.000004475595265619"},{"denom":"ASSET18","index":"0.000002132005492585"},{"denom":"ASSET2","index":"0.000004129566806967"},{"denom":"ASSET3","index":"0.000001207793600899"},{"denom":"ASSET4","index":"0.000011368981735957"},{"denom":"ASSET5","index":"0.000000937435909214"},{"denom":"ASSET6","index":"0.000003815863724495"},{"denom":"ASSET7","index":"0.000005844281079776"},{"denom":"ASSET8","index":"0.000007626584775507"},{"denom":"ASSET9","index":"0.000003293515032135"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003299297789724"},{"denom":"ASSET1","index":"0.000027989603079017"},{"denom":"ASSET10","index":"0.000022326156077139"},{"denom":"ASSET11","index":"0.000027810817552502"},{"denom":"ASSET12","index":"0.000026510364756940"},{"denom":"ASSET13","index":"0.000008734817330461"},{"denom":"ASSET14","index":"0.000025527438517331"},{"denom":"ASSET15","index":"0.000020112836713905"},{"denom":"ASSET16","index":"0.000012417417558556"},{"denom":"ASSET17","index":"0.000009741881197111"},{"denom":"ASSET18","index":"0.000004029624902086"},{"denom":"ASSET2","index":"0.000008475129511821"},{"denom":"ASSET3","index":"0.000002354634361983"},{"denom":"ASSET4","index":"0.000022691681830907"},{"denom":"ASSET5","index":"0.000001834207215432"},{"denom":"ASSET6","index":"0.000007402948949368"},{"denom":"ASSET7","index":"0.000011627814435586"},{"denom":"ASSET8","index":"0.000015878876786083"},{"denom":"ASSET9","index":"0.000006740310437402"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001570026110869"},{"denom":"ASSET1","index":"0.000013093495665706"},{"denom":"ASSET10","index":"0.000009121814411369"},{"denom":"ASSET11","index":"0.000012665871768525"},{"denom":"ASSET12","index":"0.000011405375746022"},{"denom":"ASSET13","index":"0.000003924443730811"},{"denom":"ASSET14","index":"0.000011831756550478"},{"denom":"ASSET15","index":"0.000008459245989284"},{"denom":"ASSET16","index":"0.000005898474977098"},{"denom":"ASSET17","index":"0.000004187979388376"},{"denom":"ASSET18","index":"0.000001995163822601"},{"denom":"ASSET2","index":"0.000003864775280042"},{"denom":"ASSET3","index":"0.000001129971286445"},{"denom":"ASSET4","index":"0.000010639630627815"},{"denom":"ASSET5","index":"0.000000877623463400"},{"denom":"ASSET6","index":"0.000003571405397092"},{"denom":"ASSET7","index":"0.000005469607987193"},{"denom":"ASSET8","index":"0.000007137838423287"},{"denom":"ASSET9","index":"0.000003082869956418"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003142586597057"},{"denom":"ASSET1","index":"0.000026671940208455"},{"denom":"ASSET10","index":"0.000021322845581004"},{"denom":"ASSET11","index":"0.000026513185667064"},{"denom":"ASSET12","index":"0.000025297681895631"},{"denom":"ASSET13","index":"0.000008328263582513"},{"denom":"ASSET14","index":"0.000024329302916923"},{"denom":"ASSET15","index":"0.000019199384187435"},{"denom":"ASSET16","index":"0.000011829863063918"},{"denom":"ASSET17","index":"0.000009295955073087"},{"denom":"ASSET18","index":"0.000003835509513951"},{"denom":"ASSET2","index":"0.000008079410847125"},{"denom":"ASSET3","index":"0.000002242309830967"},{"denom":"ASSET4","index":"0.000021622076491366"},{"denom":"ASSET5","index":"0.000001747112267207"},{"denom":"ASSET6","index":"0.000007050444762949"},{"denom":"ASSET7","index":"0.000011079003337441"},{"denom":"ASSET8","index":"0.000015142122511204"},{"denom":"ASSET9","index":"0.000006425848418438"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001808467589320"},{"denom":"ASSET1","index":"0.000015078627759778"},{"denom":"ASSET10","index":"0.000010504031371633"},{"denom":"ASSET11","index":"0.000014586692317421"},{"denom":"ASSET12","index":"0.000013135079536696"},{"denom":"ASSET13","index":"0.000004520160908868"},{"denom":"ASSET14","index":"0.000013624998850191"},{"denom":"ASSET15","index":"0.000009741934661752"},{"denom":"ASSET16","index":"0.000006792338136474"},{"denom":"ASSET17","index":"0.000004822580238185"},{"denom":"ASSET18","index":"0.000002296370773952"},{"denom":"ASSET2","index":"0.000004449596398694"},{"denom":"ASSET3","index":"0.000001300403116066"},{"denom":"ASSET4","index":"0.000012254031223951"},{"denom":"ASSET5","index":"0.000001010080559921"},{"denom":"ASSET6","index":"0.000004112902878720"},{"denom":"ASSET7","index":"0.000006298386565256"},{"denom":"ASSET8","index":"0.000008219757370854"},{"denom":"ASSET9","index":"0.000003550402926189"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003309574221953"},{"denom":"ASSET1","index":"0.000028041386020893"},{"denom":"ASSET10","index":"0.000022151472675705"},{"denom":"ASSET11","index":"0.000027806413413432"},{"denom":"ASSET12","index":"0.000026397319662942"},{"denom":"ASSET13","index":"0.000008723998941637"},{"denom":"ASSET14","index":"0.000025556208464743"},{"denom":"ASSET15","index":"0.000019995491235522"},{"denom":"ASSET16","index":"0.000012454763771642"},{"denom":"ASSET17","index":"0.000009698403814011"},{"denom":"ASSET18","index":"0.000004053515914738"},{"denom":"ASSET2","index":"0.000008473190716338"},{"denom":"ASSET3","index":"0.000002361530218445"},{"denom":"ASSET4","index":"0.000022738669483779"},{"denom":"ASSET5","index":"0.000001840125976242"},{"denom":"ASSET6","index":"0.000007434008870747"},{"denom":"ASSET7","index":"0.000011653935721338"},{"denom":"ASSET8","index":"0.000015861166565423"},{"denom":"ASSET9","index":"0.000006742103174023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001541663174382"},{"denom":"ASSET1","index":"0.000012852134347969"},{"denom":"ASSET10","index":"0.000008953505358908"},{"denom":"ASSET11","index":"0.000012432624080325"},{"denom":"ASSET12","index":"0.000011194846435509"},{"denom":"ASSET13","index":"0.000003852675567517"},{"denom":"ASSET14","index":"0.000011614356703153"},{"denom":"ASSET15","index":"0.000008302745615107"},{"denom":"ASSET16","index":"0.000005788648746115"},{"denom":"ASSET17","index":"0.000004110607675539"},{"denom":"ASSET18","index":"0.000001958208705152"},{"denom":"ASSET2","index":"0.000003793380830041"},{"denom":"ASSET3","index":"0.000001108811590805"},{"denom":"ASSET4","index":"0.000010443285637998"},{"denom":"ASSET5","index":"0.000000861256061842"},{"denom":"ASSET6","index":"0.000003505801353281"},{"denom":"ASSET7","index":"0.000005369138478471"},{"denom":"ASSET8","index":"0.000007005673232815"},{"denom":"ASSET9","index":"0.000003025513979724"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003039218640043"},{"denom":"ASSET1","index":"0.000025782167100542"},{"denom":"ASSET10","index":"0.000020571830356487"},{"denom":"ASSET11","index":"0.000025618833387376"},{"denom":"ASSET12","index":"0.000024423552320522"},{"denom":"ASSET13","index":"0.000008046369560384"},{"denom":"ASSET14","index":"0.000023515194162679"},{"denom":"ASSET15","index":"0.000018530055863607"},{"denom":"ASSET16","index":"0.000011436803083329"},{"denom":"ASSET17","index":"0.000008974370950503"},{"denom":"ASSET18","index":"0.000003710743638587"},{"denom":"ASSET2","index":"0.000007806913274081"},{"denom":"ASSET3","index":"0.000002167934051431"},{"denom":"ASSET4","index":"0.000020901035076857"},{"denom":"ASSET5","index":"0.000001689640060433"},{"denom":"ASSET6","index":"0.000006819038075969"},{"denom":"ASSET7","index":"0.000010710838619674"},{"denom":"ASSET8","index":"0.000014627524271874"},{"denom":"ASSET9","index":"0.000006209166066794"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001647112085871"},{"denom":"ASSET1","index":"0.000013744257107488"},{"denom":"ASSET10","index":"0.000009576415679235"},{"denom":"ASSET11","index":"0.000013296650962579"},{"denom":"ASSET12","index":"0.000011973464376313"},{"denom":"ASSET13","index":"0.000004120724991946"},{"denom":"ASSET14","index":"0.000012421070521222"},{"denom":"ASSET15","index":"0.000008879485058873"},{"denom":"ASSET16","index":"0.000006191885004573"},{"denom":"ASSET17","index":"0.000004397534055245"},{"denom":"ASSET18","index":"0.000002094718230780"},{"denom":"ASSET2","index":"0.000004055939892025"},{"denom":"ASSET3","index":"0.000001185763647039"},{"denom":"ASSET4","index":"0.000011170521774262"},{"denom":"ASSET5","index":"0.000000920733692817"},{"denom":"ASSET6","index":"0.000003749683056035"},{"denom":"ASSET7","index":"0.000005742315674818"},{"denom":"ASSET8","index":"0.000007491513372686"},{"denom":"ASSET9","index":"0.000003235328626359"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003240628198198"},{"denom":"ASSET1","index":"0.000027504329283847"},{"denom":"ASSET10","index":"0.000021940320319100"},{"denom":"ASSET11","index":"0.000027329345632586"},{"denom":"ASSET12","index":"0.000026051323397008"},{"denom":"ASSET13","index":"0.000008583813762496"},{"denom":"ASSET14","index":"0.000025085743554439"},{"denom":"ASSET15","index":"0.000019763439018939"},{"denom":"ASSET16","index":"0.000012202670980955"},{"denom":"ASSET17","index":"0.000009573761377605"},{"denom":"ASSET18","index":"0.000003959875003044"},{"denom":"ASSET2","index":"0.000008327243811102"},{"denom":"ASSET3","index":"0.000002312908746824"},{"denom":"ASSET4","index":"0.000022299606884078"},{"denom":"ASSET5","index":"0.000001802093087045"},{"denom":"ASSET6","index":"0.000007275447910852"},{"denom":"ASSET7","index":"0.000011427132859276"},{"denom":"ASSET8","index":"0.000015602768933976"},{"denom":"ASSET9","index":"0.000006623309483786"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001570100817458"},{"denom":"ASSET1","index":"0.000013089401919768"},{"denom":"ASSET10","index":"0.000009119446705996"},{"denom":"ASSET11","index":"0.000012662761138201"},{"denom":"ASSET12","index":"0.000011403229713207"},{"denom":"ASSET13","index":"0.000003924467777503"},{"denom":"ASSET14","index":"0.000011828301962489"},{"denom":"ASSET15","index":"0.000008457526081653"},{"denom":"ASSET16","index":"0.000005896112859965"},{"denom":"ASSET17","index":"0.000004187981201412"},{"denom":"ASSET18","index":"0.000001993604534455"},{"denom":"ASSET2","index":"0.000003863295018381"},{"denom":"ASSET3","index":"0.000001129343245325"},{"denom":"ASSET4","index":"0.000010637785958043"},{"denom":"ASSET5","index":"0.000000876809547412"},{"denom":"ASSET6","index":"0.000003569979481054"},{"denom":"ASSET7","index":"0.000005467903546113"},{"denom":"ASSET8","index":"0.000007135253365252"},{"denom":"ASSET9","index":"0.000003082165940365"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003152920186871"},{"denom":"ASSET1","index":"0.000026760622644749"},{"denom":"ASSET10","index":"0.000021403995558307"},{"denom":"ASSET11","index":"0.000026604821287493"},{"denom":"ASSET12","index":"0.000025390105019040"},{"denom":"ASSET13","index":"0.000008358570294936"},{"denom":"ASSET14","index":"0.000024411618525071"},{"denom":"ASSET15","index":"0.000019270968708391"},{"denom":"ASSET16","index":"0.000011868219590271"},{"denom":"ASSET17","index":"0.000009330682788205"},{"denom":"ASSET18","index":"0.000003846613833157"},{"denom":"ASSET2","index":"0.000008107095494272"},{"denom":"ASSET3","index":"0.000002249072663818"},{"denom":"ASSET4","index":"0.000021694789218154"},{"denom":"ASSET5","index":"0.000001752328837510"},{"denom":"ASSET6","index":"0.000007072706136469"},{"denom":"ASSET7","index":"0.000011115912260277"},{"denom":"ASSET8","index":"0.000015194187602297"},{"denom":"ASSET9","index":"0.000006447849146068"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001655272585709"},{"denom":"ASSET1","index":"0.000013804891217292"},{"denom":"ASSET10","index":"0.000009617831976915"},{"denom":"ASSET11","index":"0.000013354722791997"},{"denom":"ASSET12","index":"0.000012025575872058"},{"denom":"ASSET13","index":"0.000004138592201887"},{"denom":"ASSET14","index":"0.000012474922822124"},{"denom":"ASSET15","index":"0.000008919578032571"},{"denom":"ASSET16","index":"0.000006218567480803"},{"denom":"ASSET17","index":"0.000004416250829168"},{"denom":"ASSET18","index":"0.000002103798060547"},{"denom":"ASSET2","index":"0.000004074517134053"},{"denom":"ASSET3","index":"0.000001191960556756"},{"denom":"ASSET4","index":"0.000011218887197534"},{"denom":"ASSET5","index":"0.000000924981107448"},{"denom":"ASSET6","index":"0.000003765642448085"},{"denom":"ASSET7","index":"0.000005766756105051"},{"denom":"ASSET8","index":"0.000007525534569569"},{"denom":"ASSET9","index":"0.000003250577479728"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003218229550028"},{"denom":"ASSET1","index":"0.000027301798081180"},{"denom":"ASSET10","index":"0.000021745417841688"},{"denom":"ASSET11","index":"0.000027119412726222"},{"denom":"ASSET12","index":"0.000025834540696398"},{"denom":"ASSET13","index":"0.000008516471999212"},{"denom":"ASSET14","index":"0.000024897496810197"},{"denom":"ASSET15","index":"0.000019595694306931"},{"denom":"ASSET16","index":"0.000012114595919920"},{"denom":"ASSET17","index":"0.000009493460517354"},{"denom":"ASSET18","index":"0.000003932937797970"},{"denom":"ASSET2","index":"0.000008264095290285"},{"denom":"ASSET3","index":"0.000002297232512411"},{"denom":"ASSET4","index":"0.000022135581489268"},{"denom":"ASSET5","index":"0.000001789675045728"},{"denom":"ASSET6","index":"0.000007223884768794"},{"denom":"ASSET7","index":"0.000011342725097550"},{"denom":"ASSET8","index":"0.000015481678980085"},{"denom":"ASSET9","index":"0.000006573861400446"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001621688869515"},{"denom":"ASSET1","index":"0.000013520143478358"},{"denom":"ASSET10","index":"0.000009419470546393"},{"denom":"ASSET11","index":"0.000013079418684764"},{"denom":"ASSET12","index":"0.000011778054243646"},{"denom":"ASSET13","index":"0.000004053107355591"},{"denom":"ASSET14","index":"0.000012218035825109"},{"denom":"ASSET15","index":"0.000008735715386011"},{"denom":"ASSET16","index":"0.000006090623412316"},{"denom":"ASSET17","index":"0.000004325494601547"},{"denom":"ASSET18","index":"0.000002060555632782"},{"denom":"ASSET2","index":"0.000003991049142665"},{"denom":"ASSET3","index":"0.000001167586257565"},{"denom":"ASSET4","index":"0.000010987648142487"},{"denom":"ASSET5","index":"0.000000905975587506"},{"denom":"ASSET6","index":"0.000003688190199343"},{"denom":"ASSET7","index":"0.000005648412194460"},{"denom":"ASSET8","index":"0.000007370434701640"},{"denom":"ASSET9","index":"0.000003183549162496"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003224207736427"},{"denom":"ASSET1","index":"0.000027358045975387"},{"denom":"ASSET10","index":"0.000021853454393362"},{"denom":"ASSET11","index":"0.000027191663823691"},{"denom":"ASSET12","index":"0.000025935625558190"},{"denom":"ASSET13","index":"0.000008541293337334"},{"denom":"ASSET14","index":"0.000024954691173737"},{"denom":"ASSET15","index":"0.000019681390400685"},{"denom":"ASSET16","index":"0.000012135703886829"},{"denom":"ASSET17","index":"0.000009530848033034"},{"denom":"ASSET18","index":"0.000003936224347496"},{"denom":"ASSET2","index":"0.000008286598878032"},{"denom":"ASSET3","index":"0.000002301038846536"},{"denom":"ASSET4","index":"0.000022179933336345"},{"denom":"ASSET5","index":"0.000001792519798769"},{"denom":"ASSET6","index":"0.000007234068845872"},{"denom":"ASSET7","index":"0.000011365474292791"},{"denom":"ASSET8","index":"0.000015527655320242"},{"denom":"ASSET9","index":"0.000006590765495457"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001684197417987"},{"denom":"ASSET1","index":"0.000014041270025306"},{"denom":"ASSET10","index":"0.000009782380002809"},{"denom":"ASSET11","index":"0.000013583439347888"},{"denom":"ASSET12","index":"0.000012231725730520"},{"denom":"ASSET13","index":"0.000004209525615418"},{"denom":"ASSET14","index":"0.000012688588478388"},{"denom":"ASSET15","index":"0.000009072403677468"},{"denom":"ASSET16","index":"0.000006325419612958"},{"denom":"ASSET17","index":"0.000004492161044183"},{"denom":"ASSET18","index":"0.000002139608271529"},{"denom":"ASSET2","index":"0.000004144674335530"},{"denom":"ASSET3","index":"0.000001212331762086"},{"denom":"ASSET4","index":"0.000011410921471639"},{"denom":"ASSET5","index":"0.000000940827523152"},{"denom":"ASSET6","index":"0.000003830097231595"},{"denom":"ASSET7","index":"0.000005866137041214"},{"denom":"ASSET8","index":"0.000007654386885887"},{"denom":"ASSET9","index":"0.000003305963379963"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003193080094990"},{"denom":"ASSET1","index":"0.000027069824276969"},{"denom":"ASSET10","index":"0.000021489349079139"},{"denom":"ASSET11","index":"0.000026870184080824"},{"denom":"ASSET12","index":"0.000025561356340007"},{"denom":"ASSET13","index":"0.000008435097288603"},{"denom":"ASSET14","index":"0.000024680442306089"},{"denom":"ASSET15","index":"0.000019377704768171"},{"denom":"ASSET16","index":"0.000012016988086595"},{"denom":"ASSET17","index":"0.000009392966467546"},{"denom":"ASSET18","index":"0.000003905368596850"},{"denom":"ASSET2","index":"0.000008189075060838"},{"denom":"ASSET3","index":"0.000002279664955012"},{"denom":"ASSET4","index":"0.000021948593995488"},{"denom":"ASSET5","index":"0.000001775351671947"},{"denom":"ASSET6","index":"0.000007168631437760"},{"denom":"ASSET7","index":"0.000011248752159293"},{"denom":"ASSET8","index":"0.000015334459676317"},{"denom":"ASSET9","index":"0.000006513651901550"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001677613648548"},{"denom":"ASSET1","index":"0.000013997394471820"},{"denom":"ASSET10","index":"0.000009752554992736"},{"denom":"ASSET11","index":"0.000013541183096442"},{"denom":"ASSET12","index":"0.000012193285851007"},{"denom":"ASSET13","index":"0.000004195070965406"},{"denom":"ASSET14","index":"0.000012649497226385"},{"denom":"ASSET15","index":"0.000009043353672830"},{"denom":"ASSET16","index":"0.000006306085420563"},{"denom":"ASSET17","index":"0.000004477092542912"},{"denom":"ASSET18","index":"0.000002131751335856"},{"denom":"ASSET2","index":"0.000004130786635239"},{"denom":"ASSET3","index":"0.000001208960144751"},{"denom":"ASSET4","index":"0.000011376252751467"},{"denom":"ASSET5","index":"0.000000937307007594"},{"denom":"ASSET6","index":"0.000003817659736684"},{"denom":"ASSET7","index":"0.000005847800357116"},{"denom":"ASSET8","index":"0.000007631172097229"},{"denom":"ASSET9","index":"0.000003295090343070"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003316222748087"},{"denom":"ASSET1","index":"0.000028147075207200"},{"denom":"ASSET10","index":"0.000022466702115272"},{"denom":"ASSET11","index":"0.000027971336509453"},{"denom":"ASSET12","index":"0.000026669877578580"},{"denom":"ASSET13","index":"0.000008784355829882"},{"denom":"ASSET14","index":"0.000025672864554615"},{"denom":"ASSET15","index":"0.000020235356040284"},{"denom":"ASSET16","index":"0.000012487172511964"},{"denom":"ASSET17","index":"0.000009799807931023"},{"denom":"ASSET18","index":"0.000004049727438870"},{"denom":"ASSET2","index":"0.000008522892941853"},{"denom":"ASSET3","index":"0.000002368075218536"},{"denom":"ASSET4","index":"0.000022820717384594"},{"denom":"ASSET5","index":"0.000001843591257654"},{"denom":"ASSET6","index":"0.000007443165294976"},{"denom":"ASSET7","index":"0.000011693499621126"},{"denom":"ASSET8","index":"0.000015972009373807"},{"denom":"ASSET9","index":"0.000006779069609364"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001520550536467"},{"denom":"ASSET1","index":"0.000012675827554874"},{"denom":"ASSET10","index":"0.000008831388003026"},{"denom":"ASSET11","index":"0.000012262725604616"},{"denom":"ASSET12","index":"0.000011042474271843"},{"denom":"ASSET13","index":"0.000003800233070086"},{"denom":"ASSET14","index":"0.000011455195131741"},{"denom":"ASSET15","index":"0.000008190012927118"},{"denom":"ASSET16","index":"0.000005710257954490"},{"denom":"ASSET17","index":"0.000004055182520937"},{"denom":"ASSET18","index":"0.000001931747034924"},{"denom":"ASSET2","index":"0.000003741926245004"},{"denom":"ASSET3","index":"0.000001094491513968"},{"denom":"ASSET4","index":"0.000010301253521611"},{"denom":"ASSET5","index":"0.000000849450412477"},{"denom":"ASSET6","index":"0.000003457632836431"},{"denom":"ASSET7","index":"0.000005295631642792"},{"denom":"ASSET8","index":"0.000006910311498182"},{"denom":"ASSET9","index":"0.000002984699699651"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003047858420945"},{"denom":"ASSET1","index":"0.000025863853767953"},{"denom":"ASSET10","index":"0.000020681482671570"},{"denom":"ASSET11","index":"0.000025712271525236"},{"denom":"ASSET12","index":"0.000024535470175220"},{"denom":"ASSET13","index":"0.000008077733573885"},{"denom":"ASSET14","index":"0.000023593590000343"},{"denom":"ASSET15","index":"0.000018621561303244"},{"denom":"ASSET16","index":"0.000011471343089677"},{"denom":"ASSET17","index":"0.000009016132124589"},{"denom":"ASSET18","index":"0.000003719208275283"},{"denom":"ASSET2","index":"0.000007835789085827"},{"denom":"ASSET3","index":"0.000002174729135607"},{"denom":"ASSET4","index":"0.000020967814383093"},{"denom":"ASSET5","index":"0.000001694402278429"},{"denom":"ASSET6","index":"0.000006836893759575"},{"denom":"ASSET7","index":"0.000010744095518390"},{"denom":"ASSET8","index":"0.000014684305897471"},{"denom":"ASSET9","index":"0.000006231971052532"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001765508823557"},{"denom":"ASSET1","index":"0.000014724618911480"},{"denom":"ASSET10","index":"0.000010258363403154"},{"denom":"ASSET11","index":"0.000014244524406828"},{"denom":"ASSET12","index":"0.000012826610887714"},{"denom":"ASSET13","index":"0.000004413772058893"},{"denom":"ASSET14","index":"0.000013305845007949"},{"denom":"ASSET15","index":"0.000009513270498085"},{"denom":"ASSET16","index":"0.000006632703470176"},{"denom":"ASSET17","index":"0.000004710604682736"},{"denom":"ASSET18","index":"0.000002243882559375"},{"denom":"ASSET2","index":"0.000004346662074372"},{"denom":"ASSET3","index":"0.000001271648168235"},{"denom":"ASSET4","index":"0.000011966226470776"},{"denom":"ASSET5","index":"0.000000986860926228"},{"denom":"ASSET6","index":"0.000004016274458267"},{"denom":"ASSET7","index":"0.000006150888196691"},{"denom":"ASSET8","index":"0.000008026526225616"},{"denom":"ASSET9","index":"0.000003466488815844"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003365151784209"},{"denom":"ASSET1","index":"0.000028538337865727"},{"denom":"ASSET10","index":"0.000022670552359626"},{"denom":"ASSET11","index":"0.000028331786642422"},{"denom":"ASSET12","index":"0.000026959391418936"},{"denom":"ASSET13","index":"0.000008894072871450"},{"denom":"ASSET14","index":"0.000026020188745878"},{"denom":"ASSET15","index":"0.000020439828986765"},{"denom":"ASSET16","index":"0.000012667128947757"},{"denom":"ASSET17","index":"0.000009907060013179"},{"denom":"ASSET18","index":"0.000004116201786219"},{"denom":"ASSET2","index":"0.000008634485522558"},{"denom":"ASSET3","index":"0.000002403102945281"},{"denom":"ASSET4","index":"0.000023139017263426"},{"denom":"ASSET5","index":"0.000001871649891727"},{"denom":"ASSET6","index":"0.000007555863827839"},{"denom":"ASSET7","index":"0.000011857581945748"},{"denom":"ASSET8","index":"0.000016169532559731"},{"denom":"ASSET9","index":"0.000006867789268222"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001833509758465"},{"denom":"ASSET1","index":"0.000015308139656127"},{"denom":"ASSET10","index":"0.000010661025831945"},{"denom":"ASSET11","index":"0.000014808091540182"},{"denom":"ASSET12","index":"0.000013334616425197"},{"denom":"ASSET13","index":"0.000004587108050268"},{"denom":"ASSET14","index":"0.000013827997232930"},{"denom":"ASSET15","index":"0.000009887618079284"},{"denom":"ASSET16","index":"0.000006893996691827"},{"denom":"ASSET17","index":"0.000004893804228047"},{"denom":"ASSET18","index":"0.000002326890566197"},{"denom":"ASSET2","index":"0.000004513767659929"},{"denom":"ASSET3","index":"0.000001320127026095"},{"denom":"ASSET4","index":"0.000012434529816496"},{"denom":"ASSET5","index":"0.000001020098156528"},{"denom":"ASSET6","index":"0.000004173734941087"},{"denom":"ASSET7","index":"0.000006393948575882"},{"denom":"ASSET8","index":"0.000008340802573961"},{"denom":"ASSET9","index":"0.000003600346434803"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003461123478470"},{"denom":"ASSET1","index":"0.000029368181297786"},{"denom":"ASSET10","index":"0.000023294808028239"},{"denom":"ASSET11","index":"0.000029147392384169"},{"denom":"ASSET12","index":"0.000027719461688447"},{"denom":"ASSET13","index":"0.000009147542663388"},{"denom":"ASSET14","index":"0.000026768604990580"},{"denom":"ASSET15","index":"0.000021008846141082"},{"denom":"ASSET16","index":"0.000013035302068339"},{"denom":"ASSET17","index":"0.000010182949549387"},{"denom":"ASSET18","index":"0.000004232564951180"},{"denom":"ASSET2","index":"0.000008877642147806"},{"denom":"ASSET3","index":"0.000002471921418528"},{"denom":"ASSET4","index":"0.000023806252184245"},{"denom":"ASSET5","index":"0.000001920199705662"},{"denom":"ASSET6","index":"0.000007776538212319"},{"denom":"ASSET7","index":"0.000012202060569359"},{"denom":"ASSET8","index":"0.000016628688342614"},{"denom":"ASSET9","index":"0.000007061722298848"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001580229076001"},{"denom":"ASSET1","index":"0.000013178675425859"},{"denom":"ASSET10","index":"0.000009181488308837"},{"denom":"ASSET11","index":"0.000012749045790152"},{"denom":"ASSET12","index":"0.000011480356468073"},{"denom":"ASSET13","index":"0.000003950572690002"},{"denom":"ASSET14","index":"0.000011909209196663"},{"denom":"ASSET15","index":"0.000008514902002442"},{"denom":"ASSET16","index":"0.000005936347281082"},{"denom":"ASSET17","index":"0.000004216274924019"},{"denom":"ASSET18","index":"0.000002008304897474"},{"denom":"ASSET2","index":"0.000003889973934875"},{"denom":"ASSET3","index":"0.000001137392019304"},{"denom":"ASSET4","index":"0.000010709664607998"},{"denom":"ASSET5","index":"0.000000883343392042"},{"denom":"ASSET6","index":"0.000003594749230410"},{"denom":"ASSET7","index":"0.000005505163831141"},{"denom":"ASSET8","index":"0.000007184060111002"},{"denom":"ASSET9","index":"0.000003102967025342"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003136420796654"},{"denom":"ASSET1","index":"0.000026617535879560"},{"denom":"ASSET10","index":"0.000021257162201233"},{"denom":"ASSET11","index":"0.000026454281403244"},{"denom":"ASSET12","index":"0.000025229520616223"},{"denom":"ASSET13","index":"0.000008309311482354"},{"denom":"ASSET14","index":"0.000024278363089230"},{"denom":"ASSET15","index":"0.000019144672836670"},{"denom":"ASSET16","index":"0.000011806881934189"},{"denom":"ASSET17","index":"0.000009271795054357"},{"denom":"ASSET18","index":"0.000003829937127836"},{"denom":"ASSET2","index":"0.000008061315465971"},{"denom":"ASSET3","index":"0.000002238409344787"},{"denom":"ASSET4","index":"0.000021579173085678"},{"denom":"ASSET5","index":"0.000001744155749232"},{"denom":"ASSET6","index":"0.000007037998659171"},{"denom":"ASSET7","index":"0.000011056982942661"},{"denom":"ASSET8","index":"0.000015105683491420"},{"denom":"ASSET9","index":"0.000006411626899884"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001065673750407"},{"denom":"ASSET1","index":"0.000008885137524612"},{"denom":"ASSET10","index":"0.000006190162379117"},{"denom":"ASSET11","index":"0.000008595321581390"},{"denom":"ASSET12","index":"0.000007740138401991"},{"denom":"ASSET13","index":"0.000002663662498568"},{"denom":"ASSET14","index":"0.000008029258508615"},{"denom":"ASSET15","index":"0.000005740999854868"},{"denom":"ASSET16","index":"0.000004002452113836"},{"denom":"ASSET17","index":"0.000002842492504350"},{"denom":"ASSET18","index":"0.000001354098020432"},{"denom":"ASSET2","index":"0.000002622608139264"},{"denom":"ASSET3","index":"0.000000767159849705"},{"denom":"ASSET4","index":"0.000007220696381306"},{"denom":"ASSET5","index":"0.000000595288209907"},{"denom":"ASSET6","index":"0.000002423598872130"},{"denom":"ASSET7","index":"0.000003711940334016"},{"denom":"ASSET8","index":"0.000004843718561268"},{"denom":"ASSET9","index":"0.000002092032733005"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000002559869929403"},{"denom":"ASSET1","index":"0.000021787096732684"},{"denom":"ASSET10","index":"0.000017783238471081"},{"denom":"ASSET11","index":"0.000021752938768967"},{"denom":"ASSET12","index":"0.000020940235345308"},{"denom":"ASSET13","index":"0.000006848308161575"},{"denom":"ASSET14","index":"0.000019904298850841"},{"denom":"ASSET15","index":"0.000015946274018453"},{"denom":"ASSET16","index":"0.000009638424477568"},{"denom":"ASSET17","index":"0.000007695902028378"},{"denom":"ASSET18","index":"0.000003102977872608"},{"denom":"ASSET2","index":"0.000006627591716064"},{"denom":"ASSET3","index":"0.000001824087350341"},{"denom":"ASSET4","index":"0.000017655906837434"},{"denom":"ASSET5","index":"0.000001421889695470"},{"denom":"ASSET6","index":"0.000005729615091854"},{"denom":"ASSET7","index":"0.000009042175373173"},{"denom":"ASSET8","index":"0.000012449153729005"},{"denom":"ASSET9","index":"0.000005268661072858"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001663945626017"},{"denom":"ASSET1","index":"0.000013874870096624"},{"denom":"ASSET10","index":"0.000009666844154779"},{"denom":"ASSET11","index":"0.000013422526194886"},{"denom":"ASSET12","index":"0.000012086742376498"},{"denom":"ASSET13","index":"0.000004159391889779"},{"denom":"ASSET14","index":"0.000012538614102973"},{"denom":"ASSET15","index":"0.000008964719539034"},{"denom":"ASSET16","index":"0.000006250183953344"},{"denom":"ASSET17","index":"0.000004438919645342"},{"denom":"ASSET18","index":"0.000002114400826704"},{"denom":"ASSET2","index":"0.000004095648229305"},{"denom":"ASSET3","index":"0.000001197908641659"},{"denom":"ASSET4","index":"0.000011275545275051"},{"denom":"ASSET5","index":"0.000000929713092403"},{"denom":"ASSET6","index":"0.000003784956906399"},{"denom":"ASSET7","index":"0.000005796423525818"},{"denom":"ASSET8","index":"0.000007563775534382"},{"denom":"ASSET9","index":"0.000003266980643136"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003299045378029"},{"denom":"ASSET1","index":"0.000027992490930804"},{"denom":"ASSET10","index":"0.000022352284005938"},{"denom":"ASSET11","index":"0.000027819914533732"},{"denom":"ASSET12","index":"0.000026530494002155"},{"denom":"ASSET13","index":"0.000008738242797579"},{"denom":"ASSET14","index":"0.000025532401567106"},{"denom":"ASSET15","index":"0.000020131602968729"},{"denom":"ASSET16","index":"0.000012417136212826"},{"denom":"ASSET17","index":"0.000009749421325842"},{"denom":"ASSET18","index":"0.000004027997856345"},{"denom":"ASSET2","index":"0.000008477931503293"},{"denom":"ASSET3","index":"0.000002354450357881"},{"denom":"ASSET4","index":"0.000022693933657862"},{"denom":"ASSET5","index":"0.000001834114741991"},{"denom":"ASSET6","index":"0.000007402245947993"},{"denom":"ASSET7","index":"0.000011628988518089"},{"denom":"ASSET8","index":"0.000015885667960333"},{"denom":"ASSET9","index":"0.000006742956926982"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001554670726054"},{"denom":"ASSET1","index":"0.000012963415617374"},{"denom":"ASSET10","index":"0.000009031685079156"},{"denom":"ASSET11","index":"0.000012540799003679"},{"denom":"ASSET12","index":"0.000011293255065955"},{"denom":"ASSET13","index":"0.000003886042255656"},{"denom":"ASSET14","index":"0.000011715237120170"},{"denom":"ASSET15","index":"0.000008376185136293"},{"denom":"ASSET16","index":"0.000005839850894644"},{"denom":"ASSET17","index":"0.000004147480761425"},{"denom":"ASSET18","index":"0.000001975383661309"},{"denom":"ASSET2","index":"0.000003826393664534"},{"denom":"ASSET3","index":"0.000001119362922759"},{"denom":"ASSET4","index":"0.000010534956487329"},{"denom":"ASSET5","index":"0.000000868711928150"},{"denom":"ASSET6","index":"0.000003536399982164"},{"denom":"ASSET7","index":"0.000005415965161990"},{"denom":"ASSET8","index":"0.000007067088929007"},{"denom":"ASSET9","index":"0.000003052231098907"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003157426180098"},{"denom":"ASSET1","index":"0.000026803913890418"},{"denom":"ASSET10","index":"0.000021467927303389"},{"denom":"ASSET11","index":"0.000026655124661377"},{"denom":"ASSET12","index":"0.000025453388278707"},{"denom":"ASSET13","index":"0.000008375182650914"},{"denom":"ASSET14","index":"0.000024453809207757"},{"denom":"ASSET15","index":"0.000019323681821282"},{"denom":"ASSET16","index":"0.000011885939188892"},{"denom":"ASSET17","index":"0.000009353763879690"},{"denom":"ASSET18","index":"0.000003851457527173"},{"denom":"ASSET2","index":"0.000008122633355733"},{"denom":"ASSET3","index":"0.000002252845423920"},{"denom":"ASSET4","index":"0.000021728796023940"},{"denom":"ASSET5","index":"0.000001755342604855"},{"denom":"ASSET6","index":"0.000007082922688985"},{"denom":"ASSET7","index":"0.000011133765978354"},{"denom":"ASSET8","index":"0.000015225414484063"},{"denom":"ASSET9","index":"0.000006459804222065"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001578706846766"},{"denom":"ASSET1","index":"0.000013164667632738"},{"denom":"ASSET10","index":"0.000009171819989970"},{"denom":"ASSET11","index":"0.000012734981690366"},{"denom":"ASSET12","index":"0.000011467468005207"},{"denom":"ASSET13","index":"0.000003946168668528"},{"denom":"ASSET14","index":"0.000011895957050803"},{"denom":"ASSET15","index":"0.000008505148486066"},{"denom":"ASSET16","index":"0.000005930623522158"},{"denom":"ASSET17","index":"0.000004211879752669"},{"denom":"ASSET18","index":"0.000002005998995588"},{"denom":"ASSET2","index":"0.000003886323829757"},{"denom":"ASSET3","index":"0.000001135855039864"},{"denom":"ASSET4","index":"0.000010697863378618"},{"denom":"ASSET5","index":"0.000000882112923477"},{"denom":"ASSET6","index":"0.000003590690326231"},{"denom":"ASSET7","index":"0.000005499740683011"},{"denom":"ASSET8","index":"0.000007176593065360"},{"denom":"ASSET9","index":"0.000003098765751537"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003185213515607"},{"denom":"ASSET1","index":"0.000027035699090666"},{"denom":"ASSET10","index":"0.000021635640181728"},{"denom":"ASSET11","index":"0.000026880669357351"},{"denom":"ASSET12","index":"0.000025658872180332"},{"denom":"ASSET13","index":"0.000008444958797633"},{"denom":"ASSET14","index":"0.000024662649108986"},{"denom":"ASSET15","index":"0.000019476753279332"},{"denom":"ASSET16","index":"0.000011989846651744"},{"denom":"ASSET17","index":"0.000009429633404312"},{"denom":"ASSET18","index":"0.000003886090392826"},{"denom":"ASSET2","index":"0.000008191890279929"},{"denom":"ASSET3","index":"0.000002271981699175"},{"denom":"ASSET4","index":"0.000021916623044014"},{"denom":"ASSET5","index":"0.000001770727550439"},{"denom":"ASSET6","index":"0.000007144791673859"},{"denom":"ASSET7","index":"0.000011230376410345"},{"denom":"ASSET8","index":"0.000015353061978158"},{"denom":"ASSET9","index":"0.000006513931773648"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001736464555496"},{"denom":"ASSET1","index":"0.000014486324003877"},{"denom":"ASSET10","index":"0.000010092542477093"},{"denom":"ASSET11","index":"0.000014014496766071"},{"denom":"ASSET12","index":"0.000012620063107870"},{"denom":"ASSET13","index":"0.000004342915393341"},{"denom":"ASSET14","index":"0.000013091890345676"},{"denom":"ASSET15","index":"0.000009359368553661"},{"denom":"ASSET16","index":"0.000006524897117620"},{"denom":"ASSET17","index":"0.000004634080157191"},{"denom":"ASSET18","index":"0.000002206537788701"},{"denom":"ASSET2","index":"0.000004276263218483"},{"denom":"ASSET3","index":"0.000001250605280877"},{"denom":"ASSET4","index":"0.000011772878885340"},{"denom":"ASSET5","index":"0.000000969964544635"},{"denom":"ASSET6","index":"0.000003951772367204"},{"denom":"ASSET7","index":"0.000006051315875212"},{"denom":"ASSET8","index":"0.000007896528716001"},{"denom":"ASSET9","index":"0.000003409784945337"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003356675502673"},{"denom":"ASSET1","index":"0.000028477076245214"},{"denom":"ASSET10","index":"0.000022663760086849"},{"denom":"ASSET11","index":"0.000028282539274294"},{"denom":"ASSET12","index":"0.000026934248109484"},{"denom":"ASSET13","index":"0.000008880550781135"},{"denom":"ASSET14","index":"0.000025969128454053"},{"denom":"ASSET15","index":"0.000020425731449718"},{"denom":"ASSET16","index":"0.000012636600959200"},{"denom":"ASSET17","index":"0.000009896936242996"},{"denom":"ASSET18","index":"0.000004102733083140"},{"denom":"ASSET2","index":"0.000008619316582261"},{"denom":"ASSET3","index":"0.000002396767404444"},{"denom":"ASSET4","index":"0.000023088672429632"},{"denom":"ASSET5","index":"0.000001866260713425"},{"denom":"ASSET6","index":"0.000007536521735823"},{"denom":"ASSET7","index":"0.000011831316132227"},{"denom":"ASSET8","index":"0.000016143846449802"},{"denom":"ASSET9","index":"0.000006854365607618"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001432199402946"},{"denom":"ASSET1","index":"0.000011943338809449"},{"denom":"ASSET10","index":"0.000008321234131428"},{"denom":"ASSET11","index":"0.000011554338026882"},{"denom":"ASSET12","index":"0.000010404248756685"},{"denom":"ASSET13","index":"0.000003580160245814"},{"denom":"ASSET14","index":"0.000010793249539252"},{"denom":"ASSET15","index":"0.000007717099003024"},{"denom":"ASSET16","index":"0.000005380388215223"},{"denom":"ASSET17","index":"0.000003821002469456"},{"denom":"ASSET18","index":"0.000001819847139312"},{"denom":"ASSET2","index":"0.000003525361874705"},{"denom":"ASSET3","index":"0.000001031021204577"},{"denom":"ASSET4","index":"0.000009706076917365"},{"denom":"ASSET5","index":"0.000000800326827437"},{"denom":"ASSET6","index":"0.000003258135250159"},{"denom":"ASSET7","index":"0.000004989357863356"},{"denom":"ASSET8","index":"0.000006510858315517"},{"denom":"ASSET9","index":"0.000002812306527182"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000002962853679956"},{"denom":"ASSET1","index":"0.000025162993314326"},{"denom":"ASSET10","index":"0.000020199688926412"},{"denom":"ASSET11","index":"0.000025035647772320"},{"denom":"ASSET12","index":"0.000023929456511577"},{"denom":"ASSET13","index":"0.000007867725037604"},{"denom":"ASSET14","index":"0.000022960507028012"},{"denom":"ASSET15","index":"0.000018173489333858"},{"denom":"ASSET16","index":"0.000011155286879957"},{"denom":"ASSET17","index":"0.000008793607250882"},{"denom":"ASSET18","index":"0.000003611579051495"},{"denom":"ASSET2","index":"0.000007628670547867"},{"denom":"ASSET3","index":"0.000002114031306235"},{"denom":"ASSET4","index":"0.000020398130246320"},{"denom":"ASSET5","index":"0.000001647096325587"},{"denom":"ASSET6","index":"0.000006645213242757"},{"denom":"ASSET7","index":"0.000010450616802650"},{"denom":"ASSET8","index":"0.000014303332598966"},{"denom":"ASSET9","index":"0.000006067112886031"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001597673370668"},{"denom":"ASSET1","index":"0.000013327099930964"},{"denom":"ASSET10","index":"0.000009285285696821"},{"denom":"ASSET11","index":"0.000012892979142852"},{"denom":"ASSET12","index":"0.000011609669101507"},{"denom":"ASSET13","index":"0.000003995544306884"},{"denom":"ASSET14","index":"0.000012043789889618"},{"denom":"ASSET15","index":"0.000008610289110917"},{"denom":"ASSET16","index":"0.000006002842621820"},{"denom":"ASSET17","index":"0.000004263637708946"},{"denom":"ASSET18","index":"0.000002030433278566"},{"denom":"ASSET2","index":"0.000003934304697275"},{"denom":"ASSET3","index":"0.000001149943780421"},{"denom":"ASSET4","index":"0.000010829884739162"},{"denom":"ASSET5","index":"0.000000892737420067"},{"denom":"ASSET6","index":"0.000003634911050302"},{"denom":"ASSET7","index":"0.000005567360953495"},{"denom":"ASSET8","index":"0.000007264378579749"},{"denom":"ASSET9","index":"0.000003138189772368"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003135234009226"},{"denom":"ASSET1","index":"0.000026602125077525"},{"denom":"ASSET10","index":"0.000021213712135644"},{"denom":"ASSET11","index":"0.000026430841190504"},{"denom":"ASSET12","index":"0.000025191219856579"},{"denom":"ASSET13","index":"0.000008300995957475"},{"denom":"ASSET14","index":"0.000024262534835813"},{"denom":"ASSET15","index":"0.000019110376679732"},{"denom":"ASSET16","index":"0.000011801461546978"},{"denom":"ASSET17","index":"0.000009257538829689"},{"denom":"ASSET18","index":"0.000003829421505073"},{"denom":"ASSET2","index":"0.000008055136326188"},{"denom":"ASSET3","index":"0.000002237228869924"},{"denom":"ASSET4","index":"0.000021566736915931"},{"denom":"ASSET5","index":"0.000001743257901616"},{"denom":"ASSET6","index":"0.000007036288319926"},{"denom":"ASSET7","index":"0.000011051703047857"},{"denom":"ASSET8","index":"0.000015089589803941"},{"denom":"ASSET9","index":"0.000006406386950018"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001689516061942"},{"denom":"ASSET1","index":"0.000014086551658080"},{"denom":"ASSET10","index":"0.000009813816295422"},{"denom":"ASSET11","index":"0.000013627312671286"},{"denom":"ASSET12","index":"0.000012271349136594"},{"denom":"ASSET13","index":"0.000004223185893030"},{"denom":"ASSET14","index":"0.000012729983861563"},{"denom":"ASSET15","index":"0.000009101391604066"},{"denom":"ASSET16","index":"0.000006345353421478"},{"denom":"ASSET17","index":"0.000004506584688828"},{"denom":"ASSET18","index":"0.000002146942263262"},{"denom":"ASSET2","index":"0.000004157925615959"},{"denom":"ASSET3","index":"0.000001216379053179"},{"denom":"ASSET4","index":"0.000011447740269489"},{"denom":"ASSET5","index":"0.000000943856970227"},{"denom":"ASSET6","index":"0.000003842500943451"},{"denom":"ASSET7","index":"0.000005884905911035"},{"denom":"ASSET8","index":"0.000007678959268655"},{"denom":"ASSET9","index":"0.000003316793155937"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003297864217859"},{"denom":"ASSET1","index":"0.000027973253972789"},{"denom":"ASSET10","index":"0.000022291630953866"},{"denom":"ASSET11","index":"0.000027789008146512"},{"denom":"ASSET12","index":"0.000026479178332828"},{"denom":"ASSET13","index":"0.000008727103479255"},{"denom":"ASSET14","index":"0.000025511286037616"},{"denom":"ASSET15","index":"0.000020085740117730"},{"denom":"ASSET16","index":"0.000012411485442612"},{"denom":"ASSET17","index":"0.000009730550155880"},{"denom":"ASSET18","index":"0.000004028926705548"},{"denom":"ASSET2","index":"0.000008468714781887"},{"denom":"ASSET3","index":"0.000002353891879987"},{"denom":"ASSET4","index":"0.000022679492169342"},{"denom":"ASSET5","index":"0.000001833514119464"},{"denom":"ASSET6","index":"0.000007400677249018"},{"denom":"ASSET7","index":"0.000011621769805761"},{"denom":"ASSET8","index":"0.000015864980999233"},{"denom":"ASSET9","index":"0.000006736116007098"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001411859688057"},{"denom":"ASSET1","index":"0.000011770485537623"},{"denom":"ASSET10","index":"0.000008200497469250"},{"denom":"ASSET11","index":"0.000011386615852852"},{"denom":"ASSET12","index":"0.000010253874969484"},{"denom":"ASSET13","index":"0.000003528347966974"},{"denom":"ASSET14","index":"0.000010637094027671"},{"denom":"ASSET15","index":"0.000007605174144562"},{"denom":"ASSET16","index":"0.000005302606662519"},{"denom":"ASSET17","index":"0.000003765826670265"},{"denom":"ASSET18","index":"0.000001793777493075"},{"denom":"ASSET2","index":"0.000003474345960472"},{"denom":"ASSET3","index":"0.000001016278724767"},{"denom":"ASSET4","index":"0.000009565512043233"},{"denom":"ASSET5","index":"0.000000788559420242"},{"denom":"ASSET6","index":"0.000003210842193807"},{"denom":"ASSET7","index":"0.000004917435724579"},{"denom":"ASSET8","index":"0.000006416479374940"},{"denom":"ASSET9","index":"0.000002771018622781"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000002930820438736"},{"denom":"ASSET1","index":"0.000024889799880283"},{"denom":"ASSET10","index":"0.000019988623694797"},{"denom":"ASSET11","index":"0.000024765615752571"},{"denom":"ASSET12","index":"0.000023676022623299"},{"denom":"ASSET13","index":"0.000007783195940338"},{"denom":"ASSET14","index":"0.000022712072914709"},{"denom":"ASSET15","index":"0.000017982209004670"},{"denom":"ASSET16","index":"0.000011033267632466"},{"denom":"ASSET17","index":"0.000008700651286884"},{"denom":"ASSET18","index":"0.000003571624768330"},{"denom":"ASSET2","index":"0.000007546215495169"},{"denom":"ASSET3","index":"0.000002090977414753"},{"denom":"ASSET4","index":"0.000020176663420937"},{"denom":"ASSET5","index":"0.000001628342560149"},{"denom":"ASSET6","index":"0.000006572371850885"},{"denom":"ASSET7","index":"0.000010337273058537"},{"denom":"ASSET8","index":"0.000014149515747938"},{"denom":"ASSET9","index":"0.000006000707920121"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001726304213109"},{"denom":"ASSET1","index":"0.000014431903221591"},{"denom":"ASSET10","index":"0.000010055058078201"},{"denom":"ASSET11","index":"0.000013959161452463"},{"denom":"ASSET12","index":"0.000012572806376704"},{"denom":"ASSET13","index":"0.000004323728090679"},{"denom":"ASSET14","index":"0.000013040236440562"},{"denom":"ASSET15","index":"0.000009322042750788"},{"denom":"ASSET16","index":"0.000006501527251832"},{"denom":"ASSET17","index":"0.000004615871880590"},{"denom":"ASSET18","index":"0.000002199045982237"},{"denom":"ASSET2","index":"0.000004259987627426"},{"denom":"ASSET3","index":"0.000001242939033438"},{"denom":"ASSET4","index":"0.000011728245238599"},{"denom":"ASSET5","index":"0.000000966730359341"},{"denom":"ASSET6","index":"0.000003935973605888"},{"denom":"ASSET7","index":"0.000006028785482704"},{"denom":"ASSET8","index":"0.000007866635506506"},{"denom":"ASSET9","index":"0.000003394179668236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003313075721980"},{"denom":"ASSET1","index":"0.000028138029356789"},{"denom":"ASSET10","index":"0.000022370607880245"},{"denom":"ASSET11","index":"0.000027937207217164"},{"denom":"ASSET12","index":"0.000026595598409551"},{"denom":"ASSET13","index":"0.000008769097729958"},{"denom":"ASSET14","index":"0.000025655242037122"},{"denom":"ASSET15","index":"0.000020162686714325"},{"denom":"ASSET16","index":"0.000012488922131836"},{"denom":"ASSET17","index":"0.000009772018779266"},{"denom":"ASSET18","index":"0.000004056016110298"},{"denom":"ASSET2","index":"0.000008514325121927"},{"denom":"ASSET3","index":"0.000002365037757716"},{"denom":"ASSET4","index":"0.000022813272666626"},{"denom":"ASSET5","index":"0.000001844445619129"},{"denom":"ASSET6","index":"0.000007446834645040"},{"denom":"ASSET7","index":"0.000011690909413493"},{"denom":"ASSET8","index":"0.000015945057917181"},{"denom":"ASSET9","index":"0.000006769080892636"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001630255611072"},{"denom":"ASSET1","index":"0.000013593541268721"},{"denom":"ASSET10","index":"0.000009470169531707"},{"denom":"ASSET11","index":"0.000013149994246609"},{"denom":"ASSET12","index":"0.000011841383661505"},{"denom":"ASSET13","index":"0.000004074904678306"},{"denom":"ASSET14","index":"0.000012284196334242"},{"denom":"ASSET15","index":"0.000008782818517308"},{"denom":"ASSET16","index":"0.000006123739432762"},{"denom":"ASSET17","index":"0.000004348816994942"},{"denom":"ASSET18","index":"0.000002071599585061"},{"denom":"ASSET2","index":"0.000004012484981486"},{"denom":"ASSET3","index":"0.000001173490300222"},{"denom":"ASSET4","index":"0.000011046817638451"},{"denom":"ASSET5","index":"0.000000910593224203"},{"denom":"ASSET6","index":"0.000003707729991128"},{"denom":"ASSET7","index":"0.000005678723711902"},{"denom":"ASSET8","index":"0.000007410319536635"},{"denom":"ASSET9","index":"0.000003200294573447"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003344718004914"},{"denom":"ASSET1","index":"0.000028399683918161"},{"denom":"ASSET10","index":"0.000022773943545696"},{"denom":"ASSET11","index":"0.000028249525692452"},{"denom":"ASSET12","index":"0.000026989510465266"},{"denom":"ASSET13","index":"0.000008877216029957"},{"denom":"ASSET14","index":"0.000025911788013611"},{"denom":"ASSET15","index":"0.000020494299775586"},{"denom":"ASSET16","index":"0.000012591463658113"},{"denom":"ASSET17","index":"0.000009918208342143"},{"denom":"ASSET18","index":"0.000004078542450859"},{"denom":"ASSET2","index":"0.000008608606683653"},{"denom":"ASSET3","index":"0.000002386103437058"},{"denom":"ASSET4","index":"0.000023022167148602"},{"denom":"ASSET5","index":"0.000001858883946943"},{"denom":"ASSET6","index":"0.000007501347044310"},{"denom":"ASSET7","index":"0.000011795380538461"},{"denom":"ASSET8","index":"0.000016137954986293"},{"denom":"ASSET9","index":"0.000006845854741756"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001401914217082"},{"denom":"ASSET1","index":"0.000011691084141249"},{"denom":"ASSET10","index":"0.000008144816837289"},{"denom":"ASSET11","index":"0.000011309282624399"},{"denom":"ASSET12","index":"0.000010184195671197"},{"denom":"ASSET13","index":"0.000003504785542706"},{"denom":"ASSET14","index":"0.000010565150621491"},{"denom":"ASSET15","index":"0.000007553913381055"},{"denom":"ASSET16","index":"0.000005266490546178"},{"denom":"ASSET17","index":"0.000003740131045332"},{"denom":"ASSET18","index":"0.000001781176034264"},{"denom":"ASSET2","index":"0.000003450605283109"},{"denom":"ASSET3","index":"0.000001009107335001"},{"denom":"ASSET4","index":"0.000009501016460336"},{"denom":"ASSET5","index":"0.000000783074064494"},{"denom":"ASSET6","index":"0.000003189016217240"},{"denom":"ASSET7","index":"0.000004883842462771"},{"denom":"ASSET8","index":"0.000006372953035143"},{"denom":"ASSET9","index":"0.000002752187874236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000002824624853437"},{"denom":"ASSET1","index":"0.000023976113690517"},{"denom":"ASSET10","index":"0.000019183481330878"},{"denom":"ASSET11","index":"0.000023837782846342"},{"denom":"ASSET12","index":"0.000022753084719682"},{"denom":"ASSET13","index":"0.000007489057952554"},{"denom":"ASSET14","index":"0.000021872315483076"},{"denom":"ASSET15","index":"0.000017271123733000"},{"denom":"ASSET16","index":"0.000010633084765839"},{"denom":"ASSET17","index":"0.000008361522972460"},{"denom":"ASSET18","index":"0.000003446219629870"},{"denom":"ASSET2","index":"0.000007263651822688"},{"denom":"ASSET3","index":"0.000002015414858276"},{"denom":"ASSET4","index":"0.000019437236646346"},{"denom":"ASSET5","index":"0.000001569802896992"},{"denom":"ASSET6","index":"0.000006336500403946"},{"denom":"ASSET7","index":"0.000009959182045961"},{"denom":"ASSET8","index":"0.000013614498977085"},{"denom":"ASSET9","index":"0.000005776799011181"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001454934724421"},{"denom":"ASSET1","index":"0.000012138554241533"},{"denom":"ASSET10","index":"0.000008457231031836"},{"denom":"ASSET11","index":"0.000011742676653726"},{"denom":"ASSET12","index":"0.000010575345305063"},{"denom":"ASSET13","index":"0.000003639028595615"},{"denom":"ASSET14","index":"0.000010969531108307"},{"denom":"ASSET15","index":"0.000007843113235366"},{"denom":"ASSET16","index":"0.000005467847708521"},{"denom":"ASSET17","index":"0.000003882645572727"},{"denom":"ASSET18","index":"0.000001849120527665"},{"denom":"ASSET2","index":"0.000003583199705027"},{"denom":"ASSET3","index":"0.000001047214644670"},{"denom":"ASSET4","index":"0.000009864795788485"},{"denom":"ASSET5","index":"0.000000813748374938"},{"denom":"ASSET6","index":"0.000003310822390339"},{"denom":"ASSET7","index":"0.000005070278336150"},{"denom":"ASSET8","index":"0.000006616569426988"},{"denom":"ASSET9","index":"0.000002857424127380"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003026822568793"},{"denom":"ASSET1","index":"0.000025710421285725"},{"denom":"ASSET10","index":"0.000020652297735472"},{"denom":"ASSET11","index":"0.000025583400849235"},{"denom":"ASSET12","index":"0.000024460820755928"},{"denom":"ASSET13","index":"0.000008041083722059"},{"denom":"ASSET14","index":"0.000023461074878675"},{"denom":"ASSET15","index":"0.000018578170233019"},{"denom":"ASSET16","index":"0.000011396689804799"},{"denom":"ASSET17","index":"0.000008988134494295"},{"denom":"ASSET18","index":"0.000003688816665807"},{"denom":"ASSET2","index":"0.000007796110853756"},{"denom":"ASSET3","index":"0.000002159003644915"},{"denom":"ASSET4","index":"0.000020841789260406"},{"denom":"ASSET5","index":"0.000001683251281734"},{"denom":"ASSET6","index":"0.000006788484398340"},{"denom":"ASSET7","index":"0.000010677121165375"},{"denom":"ASSET8","index":"0.000014616905179383"},{"denom":"ASSET9","index":"0.000006199084273401"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001547699786520"},{"denom":"ASSET1","index":"0.000012908880828127"},{"denom":"ASSET10","index":"0.000008993933542043"},{"denom":"ASSET11","index":"0.000012488059147042"},{"denom":"ASSET12","index":"0.000011245681057538"},{"denom":"ASSET13","index":"0.000003869751640144"},{"denom":"ASSET14","index":"0.000011665498390936"},{"denom":"ASSET15","index":"0.000008340103197445"},{"denom":"ASSET16","index":"0.000005815173110936"},{"denom":"ASSET17","index":"0.000004129877691221"},{"denom":"ASSET18","index":"0.000001966512772230"},{"denom":"ASSET2","index":"0.000003810495126579"},{"denom":"ASSET3","index":"0.000001114825933185"},{"denom":"ASSET4","index":"0.000010490411596498"},{"denom":"ASSET5","index":"0.000000864743358984"},{"denom":"ASSET6","index":"0.000003521242992563"},{"denom":"ASSET7","index":"0.000005392342734476"},{"denom":"ASSET8","index":"0.000007036459899001"},{"denom":"ASSET9","index":"0.000003039156102537"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003086703561215"},{"denom":"ASSET1","index":"0.000026199550261878"},{"denom":"ASSET10","index":"0.000020936384793003"},{"denom":"ASSET11","index":"0.000026042194398185"},{"denom":"ASSET12","index":"0.000024843424443974"},{"denom":"ASSET13","index":"0.000008180415813801"},{"denom":"ASSET14","index":"0.000023898307142718"},{"denom":"ASSET15","index":"0.000018852934413068"},{"denom":"ASSET16","index":"0.000011621232923996"},{"denom":"ASSET17","index":"0.000009129550402498"},{"denom":"ASSET18","index":"0.000003767892160935"},{"denom":"ASSET2","index":"0.000007936188126371"},{"denom":"ASSET3","index":"0.000002203575710986"},{"denom":"ASSET4","index":"0.000021240180347210"},{"denom":"ASSET5","index":"0.000001716192200569"},{"denom":"ASSET6","index":"0.000006926674957775"},{"denom":"ASSET7","index":"0.000010883333770048"},{"denom":"ASSET8","index":"0.000014871024805414"},{"denom":"ASSET9","index":"0.000006311583255107"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001511232509129"},{"denom":"ASSET1","index":"0.000012598757210652"},{"denom":"ASSET10","index":"0.000008777665278232"},{"denom":"ASSET11","index":"0.000012187849575766"},{"denom":"ASSET12","index":"0.000010975073643675"},{"denom":"ASSET13","index":"0.000003776959255615"},{"denom":"ASSET14","index":"0.000011385233267090"},{"denom":"ASSET15","index":"0.000008140359504707"},{"denom":"ASSET16","index":"0.000005675412369706"},{"denom":"ASSET17","index":"0.000004030784481533"},{"denom":"ASSET18","index":"0.000001920145446758"},{"denom":"ASSET2","index":"0.000003719113035170"},{"denom":"ASSET3","index":"0.000001087858016388"},{"denom":"ASSET4","index":"0.000010238531681628"},{"denom":"ASSET5","index":"0.000000844504951067"},{"denom":"ASSET6","index":"0.000003436614036185"},{"denom":"ASSET7","index":"0.000005263507386191"},{"denom":"ASSET8","index":"0.000006867991992072"},{"denom":"ASSET9","index":"0.000002966364157912"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003050294937135"},{"denom":"ASSET1","index":"0.000025887230915803"},{"denom":"ASSET10","index":"0.000020718160619670"},{"denom":"ASSET11","index":"0.000025739685005463"},{"denom":"ASSET12","index":"0.000024570727404900"},{"denom":"ASSET13","index":"0.000008086966483560"},{"denom":"ASSET14","index":"0.000023616194455668"},{"denom":"ASSET15","index":"0.000018651338246959"},{"denom":"ASSET16","index":"0.000011480437826441"},{"denom":"ASSET17","index":"0.000009029688158762"},{"denom":"ASSET18","index":"0.000003721440260869"},{"denom":"ASSET2","index":"0.000007844134626406"},{"denom":"ASSET3","index":"0.000002176540273945"},{"denom":"ASSET4","index":"0.000020986445628896"},{"denom":"ASSET5","index":"0.000001695800268231"},{"denom":"ASSET6","index":"0.000006841569437153"},{"denom":"ASSET7","index":"0.000010753447417762"},{"denom":"ASSET8","index":"0.000014701309289649"},{"denom":"ASSET9","index":"0.000006238283490477"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001535139489204"},{"denom":"ASSET1","index":"0.000012800845981431"},{"denom":"ASSET10","index":"0.000008918122145344"},{"denom":"ASSET11","index":"0.000012383184798277"},{"denom":"ASSET12","index":"0.000011151318949088"},{"denom":"ASSET13","index":"0.000003837555421617"},{"denom":"ASSET14","index":"0.000011567806926671"},{"denom":"ASSET15","index":"0.000008270512670342"},{"denom":"ASSET16","index":"0.000005766305379776"},{"denom":"ASSET17","index":"0.000004095074044376"},{"denom":"ASSET18","index":"0.000001950454261216"},{"denom":"ASSET2","index":"0.000003778308540299"},{"denom":"ASSET3","index":"0.000001105159647558"},{"denom":"ASSET4","index":"0.000010402813795010"},{"denom":"ASSET5","index":"0.000000857613272150"},{"denom":"ASSET6","index":"0.000003491459778273"},{"denom":"ASSET7","index":"0.000005347470991052"},{"denom":"ASSET8","index":"0.000006978226734264"},{"denom":"ASSET9","index":"0.000003013965111016"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000002944371933765"},{"denom":"ASSET1","index":"0.000024968433937291"},{"denom":"ASSET10","index":"0.000019851368221906"},{"denom":"ASSET11","index":"0.000024791952485266"},{"denom":"ASSET12","index":"0.000023600048189968"},{"denom":"ASSET13","index":"0.000007784111470281"},{"denom":"ASSET14","index":"0.000022766914870589"},{"denom":"ASSET15","index":"0.000017894900322998"},{"denom":"ASSET16","index":"0.000011081662183182"},{"denom":"ASSET17","index":"0.000008672317440622"},{"denom":"ASSET18","index":"0.000003599691097086"},{"denom":"ASSET2","index":"0.000007555380586873"},{"denom":"ASSET3","index":"0.000002101847815188"},{"denom":"ASSET4","index":"0.000020244169178497"},{"denom":"ASSET5","index":"0.000001637098640985"},{"denom":"ASSET6","index":"0.000006609166185649"},{"denom":"ASSET7","index":"0.000010374399402552"},{"denom":"ASSET8","index":"0.000014150620453773"},{"denom":"ASSET9","index":"0.000006009906313007"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001449310882227"},{"denom":"ASSET1","index":"0.000012082282763787"},{"denom":"ASSET10","index":"0.000008417588941675"},{"denom":"ASSET11","index":"0.000011688148164511"},{"denom":"ASSET12","index":"0.000010525234539176"},{"denom":"ASSET13","index":"0.000003621923721366"},{"denom":"ASSET14","index":"0.000010918286351091"},{"denom":"ASSET15","index":"0.000007806355476589"},{"denom":"ASSET16","index":"0.000005442630668295"},{"denom":"ASSET17","index":"0.000003865550877512"},{"denom":"ASSET18","index":"0.000001841279906781"},{"denom":"ASSET2","index":"0.000003566701565973"},{"denom":"ASSET3","index":"0.000001043265621984"},{"denom":"ASSET4","index":"0.000009818715786353"},{"denom":"ASSET5","index":"0.000000809924945764"},{"denom":"ASSET6","index":"0.000003295463332131"},{"denom":"ASSET7","index":"0.000005047413281659"},{"denom":"ASSET8","index":"0.000006586595514820"},{"denom":"ASSET9","index":"0.000002844482396421"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000002938303361264"},{"denom":"ASSET1","index":"0.000024939884544734"},{"denom":"ASSET10","index":"0.000019970621943114"},{"denom":"ASSET11","index":"0.000024800280810198"},{"denom":"ASSET12","index":"0.000023679745396670"},{"denom":"ASSET13","index":"0.000007792253675830"},{"denom":"ASSET14","index":"0.000022752532795075"},{"denom":"ASSET15","index":"0.000017976341528508"},{"denom":"ASSET16","index":"0.000011059313296089"},{"denom":"ASSET17","index":"0.000008702160495382"},{"denom":"ASSET18","index":"0.000003584018468858"},{"denom":"ASSET2","index":"0.000007557839698908"},{"denom":"ASSET3","index":"0.000002096442663552"},{"denom":"ASSET4","index":"0.000020217858094708"},{"denom":"ASSET5","index":"0.000001633684136995"},{"denom":"ASSET6","index":"0.000006589976909255"},{"denom":"ASSET7","index":"0.000010359339015905"},{"denom":"ASSET8","index":"0.000014165755580726"},{"denom":"ASSET9","index":"0.000006010291774725"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001731982701050"},{"denom":"ASSET1","index":"0.000014440617081118"},{"denom":"ASSET10","index":"0.000010060714066040"},{"denom":"ASSET11","index":"0.000013969585405988"},{"denom":"ASSET12","index":"0.000012579542501729"},{"denom":"ASSET13","index":"0.000004329188348588"},{"denom":"ASSET14","index":"0.000013049805772821"},{"denom":"ASSET15","index":"0.000009329961826155"},{"denom":"ASSET16","index":"0.000006505308583448"},{"denom":"ASSET17","index":"0.000004619645074851"},{"denom":"ASSET18","index":"0.000002200709164068"},{"denom":"ASSET2","index":"0.000004262337197306"},{"denom":"ASSET3","index":"0.000001247119753241"},{"denom":"ASSET4","index":"0.000011735066464260"},{"denom":"ASSET5","index":"0.000000967420683506"},{"denom":"ASSET6","index":"0.000003938839097420"},{"denom":"ASSET7","index":"0.000006032740100243"},{"denom":"ASSET8","index":"0.000007872299366576"},{"denom":"ASSET9","index":"0.000003400187866969"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003329715418659"},{"denom":"ASSET1","index":"0.000028238028843607"},{"denom":"ASSET10","index":"0.000022458342297172"},{"denom":"ASSET11","index":"0.000028040237741643"},{"denom":"ASSET12","index":"0.000026695793846360"},{"denom":"ASSET13","index":"0.000008804253880653"},{"denom":"ASSET14","index":"0.000025748953032298"},{"denom":"ASSET15","index":"0.000020243324641083"},{"denom":"ASSET16","index":"0.000012532507824147"},{"denom":"ASSET17","index":"0.000009809802042254"},{"denom":"ASSET18","index":"0.000004070975493464"},{"denom":"ASSET2","index":"0.000008545109234155"},{"denom":"ASSET3","index":"0.000002377197518329"},{"denom":"ASSET4","index":"0.000022894451839245"},{"denom":"ASSET5","index":"0.000001851122407848"},{"denom":"ASSET6","index":"0.000007473999475476"},{"denom":"ASSET7","index":"0.000011732969702935"},{"denom":"ASSET8","index":"0.000016005536556726"},{"denom":"ASSET9","index":"0.000006797137295338"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001649988907243"},{"denom":"ASSET1","index":"0.000013756519537767"},{"denom":"ASSET10","index":"0.000009584361794534"},{"denom":"ASSET11","index":"0.000013307506163009"},{"denom":"ASSET12","index":"0.000011983307415229"},{"denom":"ASSET13","index":"0.000004124070634826"},{"denom":"ASSET14","index":"0.000012431118612277"},{"denom":"ASSET15","index":"0.000008888300900330"},{"denom":"ASSET16","index":"0.000006196625007203"},{"denom":"ASSET17","index":"0.000004401172597026"},{"denom":"ASSET18","index":"0.000002096597926581"},{"denom":"ASSET2","index":"0.000004060355216185"},{"denom":"ASSET3","index":"0.000001187751577673"},{"denom":"ASSET4","index":"0.000011179050527108"},{"denom":"ASSET5","index":"0.000000922070303720"},{"denom":"ASSET6","index":"0.000003752597722375"},{"denom":"ASSET7","index":"0.000005747010543590"},{"denom":"ASSET8","index":"0.000007499184556200"},{"denom":"ASSET9","index":"0.000003238666751267"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003269082759145"},{"denom":"ASSET1","index":"0.000027736662456421"},{"denom":"ASSET10","index":"0.000022145815740722"},{"denom":"ASSET11","index":"0.000027564157079872"},{"denom":"ASSET12","index":"0.000026286254396013"},{"denom":"ASSET13","index":"0.000008658548128401"},{"denom":"ASSET14","index":"0.000025298253418871"},{"denom":"ASSET15","index":"0.000019946084058089"},{"denom":"ASSET16","index":"0.000012303266096103"},{"denom":"ASSET17","index":"0.000009659898104260"},{"denom":"ASSET18","index":"0.000003991565584036"},{"denom":"ASSET2","index":"0.000008399501371576"},{"denom":"ASSET3","index":"0.000002333103515211"},{"denom":"ASSET4","index":"0.000022486071398850"},{"denom":"ASSET5","index":"0.000001817550334619"},{"denom":"ASSET6","index":"0.000007334517845971"},{"denom":"ASSET7","index":"0.000011522603065826"},{"denom":"ASSET8","index":"0.000015739883934035"},{"denom":"ASSET9","index":"0.000006680430297789"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001707974867576"},{"denom":"ASSET1","index":"0.000014238090744503"},{"denom":"ASSET10","index":"0.000009920037235236"},{"denom":"ASSET11","index":"0.000013773690453356"},{"denom":"ASSET12","index":"0.000012403461252069"},{"denom":"ASSET13","index":"0.000004268385028930"},{"denom":"ASSET14","index":"0.000012866619831208"},{"denom":"ASSET15","index":"0.000009199844270355"},{"denom":"ASSET16","index":"0.000006414063379473"},{"denom":"ASSET17","index":"0.000004555220502875"},{"denom":"ASSET18","index":"0.000002169891734707"},{"denom":"ASSET2","index":"0.000004203195148489"},{"denom":"ASSET3","index":"0.000001229294888332"},{"denom":"ASSET4","index":"0.000011570893350426"},{"denom":"ASSET5","index":"0.000000954255678468"},{"denom":"ASSET6","index":"0.000003884075162326"},{"denom":"ASSET7","index":"0.000005948421376317"},{"denom":"ASSET8","index":"0.000007761941764609"},{"denom":"ASSET9","index":"0.000003352622422724"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003075387603983"},{"denom":"ASSET1","index":"0.000026047450678709"},{"denom":"ASSET10","index":"0.000020531243448578"},{"denom":"ASSET11","index":"0.000025816927992783"},{"denom":"ASSET12","index":"0.000024485469945303"},{"denom":"ASSET13","index":"0.000008098391373250"},{"denom":"ASSET14","index":"0.000023735883509134"},{"denom":"ASSET15","index":"0.000018540774078871"},{"denom":"ASSET16","index":"0.000011572711306393"},{"denom":"ASSET17","index":"0.000008997644319689"},{"denom":"ASSET18","index":"0.000003770348288081"},{"denom":"ASSET2","index":"0.000007868945206789"},{"denom":"ASSET3","index":"0.000002196489262864"},{"denom":"ASSET4","index":"0.000021122354693053"},{"denom":"ASSET5","index":"0.000001710501624761"},{"denom":"ASSET6","index":"0.000006909892735753"},{"denom":"ASSET7","index":"0.000010827333344051"},{"denom":"ASSET8","index":"0.000014723239896475"},{"denom":"ASSET9","index":"0.000006260042064096"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001779156074987"},{"denom":"ASSET1","index":"0.000014834764457923"},{"denom":"ASSET10","index":"0.000010335215703318"},{"denom":"ASSET11","index":"0.000014351450406057"},{"denom":"ASSET12","index":"0.000012923397473821"},{"denom":"ASSET13","index":"0.000004447014618532"},{"denom":"ASSET14","index":"0.000013405835956753"},{"denom":"ASSET15","index":"0.000009584853126417"},{"denom":"ASSET16","index":"0.000006682342108415"},{"denom":"ASSET17","index":"0.000004745583625211"},{"denom":"ASSET18","index":"0.000002260718988984"},{"denom":"ASSET2","index":"0.000004378720241638"},{"denom":"ASSET3","index":"0.000001280957351233"},{"denom":"ASSET4","index":"0.000012055708659691"},{"denom":"ASSET5","index":"0.000000993770740704"},{"denom":"ASSET6","index":"0.000004046879615447"},{"denom":"ASSET7","index":"0.000006197276918679"},{"denom":"ASSET8","index":"0.000008086754679418"},{"denom":"ASSET9","index":"0.000003492644479883"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003478645419875"},{"denom":"ASSET1","index":"0.000029510728520321"},{"denom":"ASSET10","index":"0.000023521700007579"},{"denom":"ASSET11","index":"0.000029317721838376"},{"denom":"ASSET12","index":"0.000027938200533330"},{"denom":"ASSET13","index":"0.000009206643656085"},{"denom":"ASSET14","index":"0.000026913511393693"},{"denom":"ASSET15","index":"0.000021192735957156"},{"denom":"ASSET16","index":"0.000013092928863665"},{"denom":"ASSET17","index":"0.000010265835619821"},{"denom":"ASSET18","index":"0.000004249633310572"},{"denom":"ASSET2","index":"0.000008933634051769"},{"denom":"ASSET3","index":"0.000002482776919113"},{"denom":"ASSET4","index":"0.000023925662277258"},{"denom":"ASSET5","index":"0.000001933519521756"},{"denom":"ASSET6","index":"0.000007806757132876"},{"denom":"ASSET7","index":"0.000012260200744601"},{"denom":"ASSET8","index":"0.000016737737824425"},{"denom":"ASSET9","index":"0.000007106044722519"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001752700098923"},{"denom":"ASSET1","index":"0.000014612940709519"},{"denom":"ASSET10","index":"0.000010180696541309"},{"denom":"ASSET11","index":"0.000014136053678762"},{"denom":"ASSET12","index":"0.000012730078503378"},{"denom":"ASSET13","index":"0.000004380628160175"},{"denom":"ASSET14","index":"0.000013205843447004"},{"denom":"ASSET15","index":"0.000009441241121853"},{"denom":"ASSET16","index":"0.000006583285198706"},{"denom":"ASSET17","index":"0.000004674614988548"},{"denom":"ASSET18","index":"0.000002226220868286"},{"denom":"ASSET2","index":"0.000004313302932304"},{"denom":"ASSET3","index":"0.000001261225935460"},{"denom":"ASSET4","index":"0.000011875048109410"},{"denom":"ASSET5","index":"0.000000979582065531"},{"denom":"ASSET6","index":"0.000003985653489996"},{"denom":"ASSET7","index":"0.000006105276080818"},{"denom":"ASSET8","index":"0.000007965696544335"},{"denom":"ASSET9","index":"0.000003440319144236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003327512121722"},{"denom":"ASSET1","index":"0.000028211822531533"},{"denom":"ASSET10","index":"0.000022399629444355"},{"denom":"ASSET11","index":"0.000028004032167971"},{"denom":"ASSET12","index":"0.000026643127370344"},{"denom":"ASSET13","index":"0.000008791339050068"},{"denom":"ASSET14","index":"0.000025722152469956"},{"denom":"ASSET15","index":"0.000020197596080044"},{"denom":"ASSET16","index":"0.000012523737733641"},{"denom":"ASSET17","index":"0.000009790102863953"},{"denom":"ASSET18","index":"0.000004069245825383"},{"denom":"ASSET2","index":"0.000008534453115749"},{"denom":"ASSET3","index":"0.000002375171252372"},{"denom":"ASSET4","index":"0.000022873545881432"},{"denom":"ASSET5","index":"0.000001850500835715"},{"denom":"ASSET6","index":"0.000007470212303630"},{"denom":"ASSET7","index":"0.000011723166108277"},{"denom":"ASSET8","index":"0.000015981595788329"},{"denom":"ASSET9","index":"0.000006788341225254"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001434713876400"},{"denom":"ASSET1","index":"0.000011974044460331"},{"denom":"ASSET10","index":"0.000008340728508476"},{"denom":"ASSET11","index":"0.000011582406348125"},{"denom":"ASSET12","index":"0.000010430757641934"},{"denom":"ASSET13","index":"0.000003588723493535"},{"denom":"ASSET14","index":"0.000010820456951604"},{"denom":"ASSET15","index":"0.000007735822117345"},{"denom":"ASSET16","index":"0.000005393748654249"},{"denom":"ASSET17","index":"0.000003829135007959"},{"denom":"ASSET18","index":"0.000001824413186071"},{"denom":"ASSET2","index":"0.000003534437022536"},{"denom":"ASSET3","index":"0.000001033381751515"},{"denom":"ASSET4","index":"0.000009730849926555"},{"denom":"ASSET5","index":"0.000000802664249770"},{"denom":"ASSET6","index":"0.000003264943470077"},{"denom":"ASSET7","index":"0.000005002110542043"},{"denom":"ASSET8","index":"0.000006526009335083"},{"denom":"ASSET9","index":"0.000002819018886872"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000002895048613815"},{"denom":"ASSET1","index":"0.000024589366099895"},{"denom":"ASSET10","index":"0.000019676065498265"},{"denom":"ASSET11","index":"0.000024447379266412"},{"denom":"ASSET12","index":"0.000023337478265694"},{"denom":"ASSET13","index":"0.000007679998629802"},{"denom":"ASSET14","index":"0.000022431328797509"},{"denom":"ASSET15","index":"0.000017714358679290"},{"denom":"ASSET16","index":"0.000010904445776568"},{"denom":"ASSET17","index":"0.000008574179211920"},{"denom":"ASSET18","index":"0.000003534399202209"},{"denom":"ASSET2","index":"0.000007450371795821"},{"denom":"ASSET3","index":"0.000002066219984895"},{"denom":"ASSET4","index":"0.000019933989143940"},{"denom":"ASSET5","index":"0.000001610899827710"},{"denom":"ASSET6","index":"0.000006497050827728"},{"denom":"ASSET7","index":"0.000010213894093182"},{"denom":"ASSET8","index":"0.000013962110633776"},{"denom":"ASSET9","index":"0.000005925048173997"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001401536005232"},{"denom":"ASSET1","index":"0.000011690786017211"},{"denom":"ASSET10","index":"0.000008143726832164"},{"denom":"ASSET11","index":"0.000011307987636928"},{"denom":"ASSET12","index":"0.000010184289165772"},{"denom":"ASSET13","index":"0.000003503840013080"},{"denom":"ASSET14","index":"0.000010564000462344"},{"denom":"ASSET15","index":"0.000007554093843178"},{"denom":"ASSET16","index":"0.000005266564812612"},{"denom":"ASSET17","index":"0.000003738458375190"},{"denom":"ASSET18","index":"0.000001781247301804"},{"denom":"ASSET2","index":"0.000003448272506265"},{"denom":"ASSET3","index":"0.000001009476373813"},{"denom":"ASSET4","index":"0.000009498956581716"},{"denom":"ASSET5","index":"0.000000781032179127"},{"denom":"ASSET6","index":"0.000003188957474460"},{"denom":"ASSET7","index":"0.000004883766432329"},{"denom":"ASSET8","index":"0.000006371740781496"},{"denom":"ASSET9","index":"0.000002750591587361"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003071913026336"},{"denom":"ASSET1","index":"0.000026115211920195"},{"denom":"ASSET10","index":"0.000021104918039272"},{"denom":"ASSET11","index":"0.000026018207650283"},{"denom":"ASSET12","index":"0.000024942011742431"},{"denom":"ASSET13","index":"0.000008182453133262"},{"denom":"ASSET14","index":"0.000023839798810024"},{"denom":"ASSET15","index":"0.000018963275072170"},{"denom":"ASSET16","index":"0.000011567273660047"},{"denom":"ASSET17","index":"0.000009164652819502"},{"denom":"ASSET18","index":"0.000003735860972186"},{"denom":"ASSET2","index":"0.000007925194415041"},{"denom":"ASSET3","index":"0.000002190810612048"},{"denom":"ASSET4","index":"0.000021165118890878"},{"denom":"ASSET5","index":"0.000001704606606646"},{"denom":"ASSET6","index":"0.000006884812645629"},{"denom":"ASSET7","index":"0.000010842612570084"},{"denom":"ASSET8","index":"0.000014874699612932"},{"denom":"ASSET9","index":"0.000006301602876980"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001534549585700"},{"denom":"ASSET1","index":"0.000012795681230217"},{"denom":"ASSET10","index":"0.000008914897664776"},{"denom":"ASSET11","index":"0.000012378406858633"},{"denom":"ASSET12","index":"0.000011146809898878"},{"denom":"ASSET13","index":"0.000003835934265229"},{"denom":"ASSET14","index":"0.000011563204872419"},{"denom":"ASSET15","index":"0.000008267660704848"},{"denom":"ASSET16","index":"0.000005764014475342"},{"denom":"ASSET17","index":"0.000004093597891939"},{"denom":"ASSET18","index":"0.000001950065161198"},{"denom":"ASSET2","index":"0.000003777014596322"},{"denom":"ASSET3","index":"0.000001104963641508"},{"denom":"ASSET4","index":"0.000010398442163960"},{"denom":"ASSET5","index":"0.000000857413092297"},{"denom":"ASSET6","index":"0.000003490330834180"},{"denom":"ASSET7","index":"0.000005345421006692"},{"denom":"ASSET8","index":"0.000006975385280099"},{"denom":"ASSET9","index":"0.000003012817696624"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003034954909236"},{"denom":"ASSET1","index":"0.000025752158165977"},{"denom":"ASSET10","index":"0.000020556858138008"},{"denom":"ASSET11","index":"0.000025591676311293"},{"denom":"ASSET12","index":"0.000024402528250789"},{"denom":"ASSET13","index":"0.000008038375291107"},{"denom":"ASSET14","index":"0.000023488313497799"},{"denom":"ASSET15","index":"0.000018516037809802"},{"denom":"ASSET16","index":"0.000011423945454084"},{"denom":"ASSET17","index":"0.000008967524527402"},{"denom":"ASSET18","index":"0.000003706330058793"},{"denom":"ASSET2","index":"0.000007798931182527"},{"denom":"ASSET3","index":"0.000002166419358500"},{"denom":"ASSET4","index":"0.000020877722621984"},{"denom":"ASSET5","index":"0.000001687498984799"},{"denom":"ASSET6","index":"0.000006810207932767"},{"denom":"ASSET7","index":"0.000010698180555138"},{"denom":"ASSET8","index":"0.000014612921845389"},{"denom":"ASSET9","index":"0.000006203015740356"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001658482037183"},{"denom":"ASSET1","index":"0.000013862588923046"},{"denom":"ASSET10","index":"0.000009655943522610"},{"denom":"ASSET11","index":"0.000013408077810815"},{"denom":"ASSET12","index":"0.000012073555821711"},{"denom":"ASSET13","index":"0.000004153457929856"},{"denom":"ASSET14","index":"0.000012528066933942"},{"denom":"ASSET15","index":"0.000008954835955871"},{"denom":"ASSET16","index":"0.000006242274956279"},{"denom":"ASSET17","index":"0.000004433900956551"},{"denom":"ASSET18","index":"0.000002112993149414"},{"denom":"ASSET2","index":"0.000004090600010079"},{"denom":"ASSET3","index":"0.000001194300475756"},{"denom":"ASSET4","index":"0.000011266073313811"},{"denom":"ASSET5","index":"0.000000928363122855"},{"denom":"ASSET6","index":"0.000003781145635794"},{"denom":"ASSET7","index":"0.000005787763844048"},{"denom":"ASSET8","index":"0.000007557456046990"},{"denom":"ASSET9","index":"0.000003263776603787"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003188277912377"},{"denom":"ASSET1","index":"0.000027072180177666"},{"denom":"ASSET10","index":"0.000021525590492702"},{"denom":"ASSET11","index":"0.000026879695640981"},{"denom":"ASSET12","index":"0.000025588321740665"},{"denom":"ASSET13","index":"0.000008437670891103"},{"denom":"ASSET14","index":"0.000024686413843557"},{"denom":"ASSET15","index":"0.000019403734038796"},{"denom":"ASSET16","index":"0.000012012351193227"},{"denom":"ASSET17","index":"0.000009402991763462"},{"denom":"ASSET18","index":"0.000003903246578743"},{"denom":"ASSET2","index":"0.000008191237466303"},{"denom":"ASSET3","index":"0.000002276140738265"},{"denom":"ASSET4","index":"0.000021950324608304"},{"denom":"ASSET5","index":"0.000001774065663090"},{"denom":"ASSET6","index":"0.000007165524818145"},{"denom":"ASSET7","index":"0.000011244820309610"},{"denom":"ASSET8","index":"0.000015343724796373"},{"denom":"ASSET9","index":"0.000006516357987660"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001453411320498"},{"denom":"ASSET1","index":"0.000012118137400313"},{"denom":"ASSET10","index":"0.000008442891188019"},{"denom":"ASSET11","index":"0.000011723343510399"},{"denom":"ASSET12","index":"0.000010556870017106"},{"denom":"ASSET13","index":"0.000003632917795231"},{"denom":"ASSET14","index":"0.000010951256903010"},{"denom":"ASSET15","index":"0.000007829943148627"},{"denom":"ASSET16","index":"0.000005459144789091"},{"denom":"ASSET17","index":"0.000003877120201363"},{"denom":"ASSET18","index":"0.000001846984198382"},{"denom":"ASSET2","index":"0.000003577158245830"},{"denom":"ASSET3","index":"0.000001046407310278"},{"denom":"ASSET4","index":"0.000009848276035312"},{"denom":"ASSET5","index":"0.000000811973000390"},{"denom":"ASSET6","index":"0.000003305686571013"},{"denom":"ASSET7","index":"0.000005062722883136"},{"denom":"ASSET8","index":"0.000006606082089893"},{"denom":"ASSET9","index":"0.000002853098111648"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000002979919393708"},{"denom":"ASSET1","index":"0.000025298333716476"},{"denom":"ASSET10","index":"0.000020286143685892"},{"denom":"ASSET11","index":"0.000025164674259360"},{"denom":"ASSET12","index":"0.000024041723171534"},{"denom":"ASSET13","index":"0.000007907785176595"},{"denom":"ASSET14","index":"0.000023082402053339"},{"denom":"ASSET15","index":"0.000018255332392862"},{"denom":"ASSET16","index":"0.000011216675450010"},{"denom":"ASSET17","index":"0.000008835128154455"},{"denom":"ASSET18","index":"0.000003633337151635"},{"denom":"ASSET2","index":"0.000007668586747858"},{"denom":"ASSET3","index":"0.000002126085354033"},{"denom":"ASSET4","index":"0.000020508686269066"},{"denom":"ASSET5","index":"0.000001656307666438"},{"denom":"ASSET6","index":"0.000006683025235204"},{"denom":"ASSET7","index":"0.000010507859389263"},{"denom":"ASSET8","index":"0.000014375637436113"},{"denom":"ASSET9","index":"0.000006098257618497"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001779729226299"},{"denom":"ASSET1","index":"0.000014840802182142"},{"denom":"ASSET10","index":"0.000010337989986643"},{"denom":"ASSET11","index":"0.000014356968690293"},{"denom":"ASSET12","index":"0.000012927350131463"},{"denom":"ASSET13","index":"0.000004449323065747"},{"denom":"ASSET14","index":"0.000013411183623312"},{"denom":"ASSET15","index":"0.000009589142170113"},{"denom":"ASSET16","index":"0.000006683709894939"},{"denom":"ASSET17","index":"0.000004745944603463"},{"denom":"ASSET18","index":"0.000002261131394068"},{"denom":"ASSET2","index":"0.000004378814667437"},{"denom":"ASSET3","index":"0.000001281307789972"},{"denom":"ASSET4","index":"0.000012059367435030"},{"denom":"ASSET5","index":"0.000000994411548574"},{"denom":"ASSET6","index":"0.000004048154592606"},{"denom":"ASSET7","index":"0.000006199876403090"},{"denom":"ASSET8","index":"0.000008089015212973"},{"denom":"ASSET9","index":"0.000003493812702447"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003433377044021"},{"denom":"ASSET1","index":"0.000029119719093870"},{"denom":"ASSET10","index":"0.000023168779363922"},{"denom":"ASSET11","index":"0.000028918871222836"},{"denom":"ASSET12","index":"0.000027536680421684"},{"denom":"ASSET13","index":"0.000009079853140421"},{"denom":"ASSET14","index":"0.000026553415276013"},{"denom":"ASSET15","index":"0.000020883272198610"},{"denom":"ASSET16","index":"0.000012920460029656"},{"denom":"ASSET17","index":"0.000010116347697920"},{"denom":"ASSET18","index":"0.000004196183907349"},{"denom":"ASSET2","index":"0.000008810148159861"},{"denom":"ASSET3","index":"0.000002451192479374"},{"denom":"ASSET4","index":"0.000023608026429735"},{"denom":"ASSET5","index":"0.000001908186346512"},{"denom":"ASSET6","index":"0.000007706415634871"},{"denom":"ASSET7","index":"0.000012098308533034"},{"denom":"ASSET8","index":"0.000016505861275643"},{"denom":"ASSET9","index":"0.000007009790471677"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001595670533734"},{"denom":"ASSET1","index":"0.000013304245337308"},{"denom":"ASSET10","index":"0.000009268754359880"},{"denom":"ASSET11","index":"0.000012870227612725"},{"denom":"ASSET12","index":"0.000011589729681675"},{"denom":"ASSET13","index":"0.000003988302473145"},{"denom":"ASSET14","index":"0.000012022582258004"},{"denom":"ASSET15","index":"0.000008595881243245"},{"denom":"ASSET16","index":"0.000005992940044003"},{"denom":"ASSET17","index":"0.000004256286571545"},{"denom":"ASSET18","index":"0.000002027357961809"},{"denom":"ASSET2","index":"0.000003927132189815"},{"denom":"ASSET3","index":"0.000001148836178358"},{"denom":"ASSET4","index":"0.000010811993222188"},{"denom":"ASSET5","index":"0.000000891338414244"},{"denom":"ASSET6","index":"0.000003628854236813"},{"denom":"ASSET7","index":"0.000005557757171166"},{"denom":"ASSET8","index":"0.000007252465306483"},{"denom":"ASSET9","index":"0.000003132501080646"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003118409098775"},{"denom":"ASSET1","index":"0.000026454243753489"},{"denom":"ASSET10","index":"0.000021084585905412"},{"denom":"ASSET11","index":"0.000026280950742513"},{"denom":"ASSET12","index":"0.000025043390497745"},{"denom":"ASSET13","index":"0.000008253298424938"},{"denom":"ASSET14","index":"0.000024125697910719"},{"denom":"ASSET15","index":"0.000018997425080839"},{"denom":"ASSET16","index":"0.000011737294217995"},{"denom":"ASSET17","index":"0.000009202973625129"},{"denom":"ASSET18","index":"0.000003809493270778"},{"denom":"ASSET2","index":"0.000008008868325931"},{"denom":"ASSET3","index":"0.000002225819587877"},{"denom":"ASSET4","index":"0.000021447702379813"},{"denom":"ASSET5","index":"0.000001733713847172"},{"denom":"ASSET6","index":"0.000006998355968525"},{"denom":"ASSET7","index":"0.000010990481127196"},{"denom":"ASSET8","index":"0.000015003824321723"},{"denom":"ASSET9","index":"0.000006370091157596"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001536288093705"},{"denom":"ASSET1","index":"0.000012808796131863"},{"denom":"ASSET10","index":"0.000008924322337818"},{"denom":"ASSET11","index":"0.000012391382492026"},{"denom":"ASSET12","index":"0.000011158327625467"},{"denom":"ASSET13","index":"0.000003840018305497"},{"denom":"ASSET14","index":"0.000011575273312793"},{"denom":"ASSET15","index":"0.000008276208110044"},{"denom":"ASSET16","index":"0.000005770322413488"},{"denom":"ASSET17","index":"0.000004097860139074"},{"denom":"ASSET18","index":"0.000001951829923499"},{"denom":"ASSET2","index":"0.000003781056289108"},{"denom":"ASSET3","index":"0.000001105771783560"},{"denom":"ASSET4","index":"0.000010409603607822"},{"denom":"ASSET5","index":"0.000000858224905226"},{"denom":"ASSET6","index":"0.000003494201399847"},{"denom":"ASSET7","index":"0.000005351036963607"},{"denom":"ASSET8","index":"0.000006982787369562"},{"denom":"ASSET9","index":"0.000003015953933577"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003103831608428"},{"denom":"ASSET1","index":"0.000026343132935309"},{"denom":"ASSET10","index":"0.000021085436521682"},{"denom":"ASSET11","index":"0.000026194005406126"},{"denom":"ASSET12","index":"0.000025005394550642"},{"denom":"ASSET13","index":"0.000008229918727938"},{"denom":"ASSET14","index":"0.000024032248358707"},{"denom":"ASSET15","index":"0.000018981699828973"},{"denom":"ASSET16","index":"0.000011682673521897"},{"denom":"ASSET17","index":"0.000009189132473525"},{"denom":"ASSET18","index":"0.000003786361913516"},{"denom":"ASSET2","index":"0.000007982150766688"},{"denom":"ASSET3","index":"0.000002214601198569"},{"denom":"ASSET4","index":"0.000021356131094847"},{"denom":"ASSET5","index":"0.000001725369734459"},{"denom":"ASSET6","index":"0.000006962131899100"},{"denom":"ASSET7","index":"0.000010942547729288"},{"denom":"ASSET8","index":"0.000014960973970884"},{"denom":"ASSET9","index":"0.000006348281537724"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001156201861882"},{"denom":"ASSET1","index":"0.000009641528249827"},{"denom":"ASSET10","index":"0.000006717693720376"},{"denom":"ASSET11","index":"0.000009327193051790"},{"denom":"ASSET12","index":"0.000008399128436016"},{"denom":"ASSET13","index":"0.000002890504654704"},{"denom":"ASSET14","index":"0.000008712888981039"},{"denom":"ASSET15","index":"0.000006229813312455"},{"denom":"ASSET16","index":"0.000004343227471224"},{"denom":"ASSET17","index":"0.000003084737373052"},{"denom":"ASSET18","index":"0.000001469387753892"},{"denom":"ASSET2","index":"0.000002846256372714"},{"denom":"ASSET3","index":"0.000000832672215639"},{"denom":"ASSET4","index":"0.000007835393830396"},{"denom":"ASSET5","index":"0.000000645909986459"},{"denom":"ASSET6","index":"0.000002630186839877"},{"denom":"ASSET7","index":"0.000004027742967162"},{"denom":"ASSET8","index":"0.000005256351108664"},{"denom":"ASSET9","index":"0.000002269879400812"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000002648545180722"},{"denom":"ASSET1","index":"0.000022528915692996"},{"denom":"ASSET10","index":"0.000018297756458480"},{"denom":"ASSET11","index":"0.000022469822082599"},{"denom":"ASSET12","index":"0.000021584227648624"},{"denom":"ASSET13","index":"0.000007070243338634"},{"denom":"ASSET14","index":"0.000020574684608302"},{"denom":"ASSET15","index":"0.000016423497937791"},{"denom":"ASSET16","index":"0.000009972839292196"},{"denom":"ASSET17","index":"0.000007932645550822"},{"denom":"ASSET18","index":"0.000003216131666673"},{"denom":"ASSET2","index":"0.000006846442901912"},{"denom":"ASSET3","index":"0.000001888119307859"},{"denom":"ASSET4","index":"0.000018258669735553"},{"denom":"ASSET5","index":"0.000001471345302008"},{"denom":"ASSET6","index":"0.000005932348598922"},{"denom":"ASSET7","index":"0.000009352074075404"},{"denom":"ASSET8","index":"0.000012853047191550"},{"denom":"ASSET9","index":"0.000005442948627063"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001638829976996"},{"denom":"ASSET1","index":"0.000013663699511091"},{"denom":"ASSET10","index":"0.000009519748943981"},{"denom":"ASSET11","index":"0.000013218199388741"},{"denom":"ASSET12","index":"0.000011902774883924"},{"denom":"ASSET13","index":"0.000004095984811686"},{"denom":"ASSET14","index":"0.000012347548252404"},{"denom":"ASSET15","index":"0.000008827879259679"},{"denom":"ASSET16","index":"0.000006154878525580"},{"denom":"ASSET17","index":"0.000004371424528441"},{"denom":"ASSET18","index":"0.000002082149837736"},{"denom":"ASSET2","index":"0.000004033483978861"},{"denom":"ASSET3","index":"0.000001179521531115"},{"denom":"ASSET4","index":"0.000011104072380722"},{"denom":"ASSET5","index":"0.000000915709876282"},{"denom":"ASSET6","index":"0.000003726793845693"},{"denom":"ASSET7","index":"0.000005707924895490"},{"denom":"ASSET8","index":"0.000007448500414296"},{"denom":"ASSET9","index":"0.000003217339382778"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003133427860009"},{"denom":"ASSET1","index":"0.000026571363581284"},{"denom":"ASSET10","index":"0.000021118003104150"},{"denom":"ASSET11","index":"0.000026381510155653"},{"denom":"ASSET12","index":"0.000025108485590780"},{"denom":"ASSET13","index":"0.000008282355352591"},{"denom":"ASSET14","index":"0.000024227637307493"},{"denom":"ASSET15","index":"0.000019037535386694"},{"denom":"ASSET16","index":"0.000011793447009555"},{"denom":"ASSET17","index":"0.000009226841180516"},{"denom":"ASSET18","index":"0.000003831770888939"},{"denom":"ASSET2","index":"0.000008040278303534"},{"denom":"ASSET3","index":"0.000002236402387063"},{"denom":"ASSET4","index":"0.000021543810534784"},{"denom":"ASSET5","index":"0.000001742508705183"},{"denom":"ASSET6","index":"0.000007033989161296"},{"denom":"ASSET7","index":"0.000011040340871930"},{"denom":"ASSET8","index":"0.000015056795520064"},{"denom":"ASSET9","index":"0.000006395464292965"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001556422065682"},{"denom":"ASSET1","index":"0.000012975233747354"},{"denom":"ASSET10","index":"0.000009039925804131"},{"denom":"ASSET11","index":"0.000012551842294036"},{"denom":"ASSET12","index":"0.000011303196313064"},{"denom":"ASSET13","index":"0.000003889859143149"},{"denom":"ASSET14","index":"0.000011725391745328"},{"denom":"ASSET15","index":"0.000008383310245172"},{"denom":"ASSET16","index":"0.000005844954893688"},{"denom":"ASSET17","index":"0.000004150990406731"},{"denom":"ASSET18","index":"0.000001977421476890"},{"denom":"ASSET2","index":"0.000003830058090421"},{"denom":"ASSET3","index":"0.000001120273054448"},{"denom":"ASSET4","index":"0.000010544520290781"},{"denom":"ASSET5","index":"0.000000869507306673"},{"denom":"ASSET6","index":"0.000003539424974160"},{"denom":"ASSET7","index":"0.000005420766093000"},{"denom":"ASSET8","index":"0.000007073268516732"},{"denom":"ASSET9","index":"0.000003055036447059"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003102345998156"},{"denom":"ASSET1","index":"0.000026324295521459"},{"denom":"ASSET10","index":"0.000021034709957123"},{"denom":"ASSET11","index":"0.000026165624152899"},{"denom":"ASSET12","index":"0.000024960753498443"},{"denom":"ASSET13","index":"0.000008219480216908"},{"denom":"ASSET14","index":"0.000024012126304297"},{"denom":"ASSET15","index":"0.000018942125813395"},{"denom":"ASSET16","index":"0.000011676379885795"},{"denom":"ASSET17","index":"0.000009172744202097"},{"denom":"ASSET18","index":"0.000003786686743681"},{"denom":"ASSET2","index":"0.000007973892542195"},{"denom":"ASSET3","index":"0.000002213622154517"},{"denom":"ASSET4","index":"0.000021341514997764"},{"denom":"ASSET5","index":"0.000001724677267981"},{"denom":"ASSET6","index":"0.000006959760131783"},{"denom":"ASSET7","index":"0.000010935767858794"},{"denom":"ASSET8","index":"0.000014942141973689"},{"denom":"ASSET9","index":"0.000006341977499472"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001602535700795"},{"denom":"ASSET1","index":"0.000013360208994045"},{"denom":"ASSET10","index":"0.000009307956057468"},{"denom":"ASSET11","index":"0.000012924500245282"},{"denom":"ASSET12","index":"0.000011638378499862"},{"denom":"ASSET13","index":"0.000004005127453862"},{"denom":"ASSET14","index":"0.000012073279383206"},{"denom":"ASSET15","index":"0.000008632311279566"},{"denom":"ASSET16","index":"0.000006018597363935"},{"denom":"ASSET17","index":"0.000004274146638048"},{"denom":"ASSET18","index":"0.000002036090141777"},{"denom":"ASSET2","index":"0.000003943729682095"},{"denom":"ASSET3","index":"0.000001153631816872"},{"denom":"ASSET4","index":"0.000010857441929150"},{"denom":"ASSET5","index":"0.000000895384171592"},{"denom":"ASSET6","index":"0.000003644280900498"},{"denom":"ASSET7","index":"0.000005581542172809"},{"denom":"ASSET8","index":"0.000007283176031543"},{"denom":"ASSET9","index":"0.000003145827937606"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003144114236048"},{"denom":"ASSET1","index":"0.000026672683120621"},{"denom":"ASSET10","index":"0.000021269722635007"},{"denom":"ASSET11","index":"0.000026500587720899"},{"denom":"ASSET12","index":"0.000025258297912053"},{"denom":"ASSET13","index":"0.000008323039503604"},{"denom":"ASSET14","index":"0.000024326015412045"},{"denom":"ASSET15","index":"0.000019162234595686"},{"denom":"ASSET16","index":"0.000011833945147558"},{"denom":"ASSET17","index":"0.000009281867675434"},{"denom":"ASSET18","index":"0.000003840349431676"},{"denom":"ASSET2","index":"0.000008076055447193"},{"denom":"ASSET3","index":"0.000002244145529651"},{"denom":"ASSET4","index":"0.000021624555086447"},{"denom":"ASSET5","index":"0.000001748086313596"},{"denom":"ASSET6","index":"0.000007055400333314"},{"denom":"ASSET7","index":"0.000011081362186058"},{"denom":"ASSET8","index":"0.000015130336137492"},{"denom":"ASSET9","index":"0.000006423586371910"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001633811359009"},{"denom":"ASSET1","index":"0.000013620164108551"},{"denom":"ASSET10","index":"0.000009487838038290"},{"denom":"ASSET11","index":"0.000013174776703502"},{"denom":"ASSET12","index":"0.000011864685946211"},{"denom":"ASSET13","index":"0.000004082355776036"},{"denom":"ASSET14","index":"0.000012307900729772"},{"denom":"ASSET15","index":"0.000008799117026580"},{"denom":"ASSET16","index":"0.000006135483082238"},{"denom":"ASSET17","index":"0.000004356106083529"},{"denom":"ASSET18","index":"0.000002074853521082"},{"denom":"ASSET2","index":"0.000004019349752882"},{"denom":"ASSET3","index":"0.000001175388225032"},{"denom":"ASSET4","index":"0.000011067333860098"},{"denom":"ASSET5","index":"0.000000912501024979"},{"denom":"ASSET6","index":"0.000003715182744556"},{"denom":"ASSET7","index":"0.000005690095677188"},{"denom":"ASSET8","index":"0.000007423847624648"},{"denom":"ASSET9","index":"0.000003206789316354"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003109600829404"},{"denom":"ASSET1","index":"0.000026362702045617"},{"denom":"ASSET10","index":"0.000020937844947102"},{"denom":"ASSET11","index":"0.000026169598808926"},{"denom":"ASSET12","index":"0.000024901798461360"},{"denom":"ASSET13","index":"0.000008215149609138"},{"denom":"ASSET14","index":"0.000024035954930107"},{"denom":"ASSET15","index":"0.000018878331344314"},{"denom":"ASSET16","index":"0.000011701775976010"},{"denom":"ASSET17","index":"0.000009149505282332"},{"denom":"ASSET18","index":"0.000003801954966508"},{"denom":"ASSET2","index":"0.000007974718303805"},{"denom":"ASSET3","index":"0.000002219037761573"},{"denom":"ASSET4","index":"0.000021373555319687"},{"denom":"ASSET5","index":"0.000001728657323000"},{"denom":"ASSET6","index":"0.000006980294033305"},{"denom":"ASSET7","index":"0.000010954522542925"},{"denom":"ASSET8","index":"0.000014935013269095"},{"denom":"ASSET9","index":"0.000006344057182602"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001356454583190"},{"denom":"ASSET1","index":"0.000011307707773056"},{"denom":"ASSET10","index":"0.000007878355411964"},{"denom":"ASSET11","index":"0.000010938987301217"},{"denom":"ASSET12","index":"0.000009850463994830"},{"denom":"ASSET13","index":"0.000003389876593037"},{"denom":"ASSET14","index":"0.000010218764511690"},{"denom":"ASSET15","index":"0.000007305956775156"},{"denom":"ASSET16","index":"0.000005094053899100"},{"denom":"ASSET17","index":"0.000003617492191826"},{"denom":"ASSET18","index":"0.000001723075280133"},{"denom":"ASSET2","index":"0.000003337802175602"},{"denom":"ASSET3","index":"0.000000976395326909"},{"denom":"ASSET4","index":"0.000009189454857387"},{"denom":"ASSET5","index":"0.000000758018737665"},{"denom":"ASSET6","index":"0.000003084569323074"},{"denom":"ASSET7","index":"0.000004724073562323"},{"denom":"ASSET8","index":"0.000006164519141376"},{"denom":"ASSET9","index":"0.000002662514568862"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000002920257070141"},{"denom":"ASSET1","index":"0.000024811653868653"},{"denom":"ASSET10","index":"0.000020012294768332"},{"denom":"ASSET11","index":"0.000024710629923001"},{"denom":"ASSET12","index":"0.000023666550441425"},{"denom":"ASSET13","index":"0.000007769918885884"},{"denom":"ASSET14","index":"0.000022647790193256"},{"denom":"ASSET15","index":"0.000017987461600930"},{"denom":"ASSET16","index":"0.000010993196459757"},{"denom":"ASSET17","index":"0.000008697266331114"},{"denom":"ASSET18","index":"0.000003553540715950"},{"denom":"ASSET2","index":"0.000007529733395993"},{"denom":"ASSET3","index":"0.000002082581454906"},{"denom":"ASSET4","index":"0.000020111524804667"},{"denom":"ASSET5","index":"0.000001623122955496"},{"denom":"ASSET6","index":"0.000006544727800067"},{"denom":"ASSET7","index":"0.000010303065547743"},{"denom":"ASSET8","index":"0.000014124873274804"},{"denom":"ASSET9","index":"0.000005987532811110"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001730803097805"},{"denom":"ASSET1","index":"0.000014429128492036"},{"denom":"ASSET10","index":"0.000010053081326419"},{"denom":"ASSET11","index":"0.000013956042311970"},{"denom":"ASSET12","index":"0.000012568515161896"},{"denom":"ASSET13","index":"0.000004324123072683"},{"denom":"ASSET14","index":"0.000013038716670133"},{"denom":"ASSET15","index":"0.000009320374681681"},{"denom":"ASSET16","index":"0.000006499165632259"},{"denom":"ASSET17","index":"0.000004615474927481"},{"denom":"ASSET18","index":"0.000002198119934213"},{"denom":"ASSET2","index":"0.000004257775620601"},{"denom":"ASSET3","index":"0.000001243293558590"},{"denom":"ASSET4","index":"0.000011726190987631"},{"denom":"ASSET5","index":"0.000000966365062941"},{"denom":"ASSET6","index":"0.000003934692375677"},{"denom":"ASSET7","index":"0.000006026079452192"},{"denom":"ASSET8","index":"0.000007863615407695"},{"denom":"ASSET9","index":"0.000003395258743528"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003241945367060"},{"denom":"ASSET1","index":"0.000027480716546724"},{"denom":"ASSET10","index":"0.000021780901079221"},{"denom":"ASSET11","index":"0.000027265989011084"},{"denom":"ASSET12","index":"0.000025921947969478"},{"denom":"ASSET13","index":"0.000008556984130745"},{"denom":"ASSET14","index":"0.000025051754134356"},{"denom":"ASSET15","index":"0.000019643848931612"},{"denom":"ASSET16","index":"0.000012200322352703"},{"denom":"ASSET17","index":"0.000009524928673174"},{"denom":"ASSET18","index":"0.000003966981346299"},{"denom":"ASSET2","index":"0.000008309018225650"},{"denom":"ASSET3","index":"0.000002312540225621"},{"denom":"ASSET4","index":"0.000022282443818183"},{"denom":"ASSET5","index":"0.000001802193647755"},{"denom":"ASSET6","index":"0.000007278646216530"},{"denom":"ASSET7","index":"0.000011418356902196"},{"denom":"ASSET8","index":"0.000015557459098515"},{"denom":"ASSET9","index":"0.000006608754258977"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001631665384825"},{"denom":"ASSET1","index":"0.000013602742609312"},{"denom":"ASSET10","index":"0.000009477179623123"},{"denom":"ASSET11","index":"0.000013159027954757"},{"denom":"ASSET12","index":"0.000011849393704263"},{"denom":"ASSET13","index":"0.000004077627053980"},{"denom":"ASSET14","index":"0.000012292493795584"},{"denom":"ASSET15","index":"0.000008788868801652"},{"denom":"ASSET16","index":"0.000006127810000788"},{"denom":"ASSET17","index":"0.000004351722256101"},{"denom":"ASSET18","index":"0.000002072921786447"},{"denom":"ASSET2","index":"0.000004015556167401"},{"denom":"ASSET3","index":"0.000001174430339134"},{"denom":"ASSET4","index":"0.000011054148880171"},{"denom":"ASSET5","index":"0.000000911397275215"},{"denom":"ASSET6","index":"0.000003710118240373"},{"denom":"ASSET7","index":"0.000005682866219766"},{"denom":"ASSET8","index":"0.000007415319974879"},{"denom":"ASSET9","index":"0.000003202489009539"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003079719434352"},{"denom":"ASSET1","index":"0.000026105925494605"},{"denom":"ASSET10","index":"0.000020711970439773"},{"denom":"ASSET11","index":"0.000025910008103106"},{"denom":"ASSET12","index":"0.000024641613628664"},{"denom":"ASSET13","index":"0.000008133110770201"},{"denom":"ASSET14","index":"0.000023800542954419"},{"denom":"ASSET15","index":"0.000018678884312278"},{"denom":"ASSET16","index":"0.000011589749383737"},{"denom":"ASSET17","index":"0.000009055208366452"},{"denom":"ASSET18","index":"0.000003767697278786"},{"denom":"ASSET2","index":"0.000007896757003962"},{"denom":"ASSET3","index":"0.000002198611212202"},{"denom":"ASSET4","index":"0.000021166859181475"},{"denom":"ASSET5","index":"0.000001712166144109"},{"denom":"ASSET6","index":"0.000006913910929446"},{"denom":"ASSET7","index":"0.000010848237821893"},{"denom":"ASSET8","index":"0.000014785764472138"},{"denom":"ASSET9","index":"0.000006281127943464"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001520990142264"},{"denom":"ASSET1","index":"0.000012680102108631"},{"denom":"ASSET10","index":"0.000008834326429376"},{"denom":"ASSET11","index":"0.000012266893306329"},{"denom":"ASSET12","index":"0.000011046354389007"},{"denom":"ASSET13","index":"0.000003801591675587"},{"denom":"ASSET14","index":"0.000011458856247250"},{"denom":"ASSET15","index":"0.000008193128168148"},{"denom":"ASSET16","index":"0.000005712107994187"},{"denom":"ASSET17","index":"0.000004056798480773"},{"denom":"ASSET18","index":"0.000001932431584420"},{"denom":"ASSET2","index":"0.000003743268790745"},{"denom":"ASSET3","index":"0.000001095056346905"},{"denom":"ASSET4","index":"0.000010304770071444"},{"denom":"ASSET5","index":"0.000000849746758541"},{"denom":"ASSET6","index":"0.000003459077279153"},{"denom":"ASSET7","index":"0.000005297485303768"},{"denom":"ASSET8","index":"0.000006912499005837"},{"denom":"ASSET9","index":"0.000002985778231863"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003063170165442"},{"denom":"ASSET1","index":"0.000025996358951928"},{"denom":"ASSET10","index":"0.000020799618544072"},{"denom":"ASSET11","index":"0.000025846936295403"},{"denom":"ASSET12","index":"0.000024670295822131"},{"denom":"ASSET13","index":"0.000008120644896033"},{"denom":"ASSET14","index":"0.000023715222729701"},{"denom":"ASSET15","index":"0.000018725986369791"},{"denom":"ASSET16","index":"0.000011529047312284"},{"denom":"ASSET17","index":"0.000009065966880203"},{"denom":"ASSET18","index":"0.000003737409049681"},{"denom":"ASSET2","index":"0.000007876841198043"},{"denom":"ASSET3","index":"0.000002185992003768"},{"denom":"ASSET4","index":"0.000021074917159843"},{"denom":"ASSET5","index":"0.000001702800306431"},{"denom":"ASSET6","index":"0.000006871093729972"},{"denom":"ASSET7","index":"0.000010798830402478"},{"denom":"ASSET8","index":"0.000014762015379742"},{"denom":"ASSET9","index":"0.000006264517424621"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001519669987195"},{"denom":"ASSET1","index":"0.000012676623405048"},{"denom":"ASSET10","index":"0.000008831600766261"},{"denom":"ASSET11","index":"0.000012262448940742"},{"denom":"ASSET12","index":"0.000011042591812037"},{"denom":"ASSET13","index":"0.000003799690110356"},{"denom":"ASSET14","index":"0.000011454705706870"},{"denom":"ASSET15","index":"0.000008189733375059"},{"denom":"ASSET16","index":"0.000005709838012905"},{"denom":"ASSET17","index":"0.000004055200725152"},{"denom":"ASSET18","index":"0.000001931783882027"},{"denom":"ASSET2","index":"0.000003741994165079"},{"denom":"ASSET3","index":"0.000001094162390780"},{"denom":"ASSET4","index":"0.000010301817086076"},{"denom":"ASSET5","index":"0.000000848954623355"},{"denom":"ASSET6","index":"0.000003457635577645"},{"denom":"ASSET7","index":"0.000005295663548598"},{"denom":"ASSET8","index":"0.000006910119731604"},{"denom":"ASSET9","index":"0.000002984734883325"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003051401969864"},{"denom":"ASSET1","index":"0.000025903543471827"},{"denom":"ASSET10","index":"0.000020717104247015"},{"denom":"ASSET11","index":"0.000025751820078700"},{"denom":"ASSET12","index":"0.000024575704795191"},{"denom":"ASSET13","index":"0.000008089460542782"},{"denom":"ASSET14","index":"0.000023629519286555"},{"denom":"ASSET15","index":"0.000018652475785738"},{"denom":"ASSET16","index":"0.000011487598582804"},{"denom":"ASSET17","index":"0.000009031027466449"},{"denom":"ASSET18","index":"0.000003724432134289"},{"denom":"ASSET2","index":"0.000007847588407204"},{"denom":"ASSET3","index":"0.000002177732310384"},{"denom":"ASSET4","index":"0.000021000151540181"},{"denom":"ASSET5","index":"0.000001696165098739"},{"denom":"ASSET6","index":"0.000006846477479182"},{"denom":"ASSET7","index":"0.000010760324594985"},{"denom":"ASSET8","index":"0.000014706911787677"},{"denom":"ASSET9","index":"0.000006241583848480"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001392192847149"},{"denom":"ASSET1","index":"0.000011611450847386"},{"denom":"ASSET10","index":"0.000008088781067478"},{"denom":"ASSET11","index":"0.000011231761889073"},{"denom":"ASSET12","index":"0.000010115195100551"},{"denom":"ASSET13","index":"0.000003480482117873"},{"denom":"ASSET14","index":"0.000010492071548062"},{"denom":"ASSET15","index":"0.000007502372565194"},{"denom":"ASSET16","index":"0.000005229863836918"},{"denom":"ASSET17","index":"0.000003713920514466"},{"denom":"ASSET18","index":"0.000001769069294661"},{"denom":"ASSET2","index":"0.000003427044412629"},{"denom":"ASSET3","index":"0.000001002660101028"},{"denom":"ASSET4","index":"0.000009435973741790"},{"denom":"ASSET5","index":"0.000000777659236842"},{"denom":"ASSET6","index":"0.000003166887163415"},{"denom":"ASSET7","index":"0.000004850174878604"},{"denom":"ASSET8","index":"0.000006329555560626"},{"denom":"ASSET9","index":"0.000002733760499857"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000002834261839987"},{"denom":"ASSET1","index":"0.000024063735726127"},{"denom":"ASSET10","index":"0.000019278012414561"},{"denom":"ASSET11","index":"0.000023930766794440"},{"denom":"ASSET12","index":"0.000022855511266190"},{"denom":"ASSET13","index":"0.000007519422832827"},{"denom":"ASSET14","index":"0.000021953268691937"},{"denom":"ASSET15","index":"0.000017352048046781"},{"denom":"ASSET16","index":"0.000010669562284438"},{"denom":"ASSET17","index":"0.000008398158415340"},{"denom":"ASSET18","index":"0.000003456710779118"},{"denom":"ASSET2","index":"0.000007292324829772"},{"denom":"ASSET3","index":"0.000002022818722752"},{"denom":"ASSET4","index":"0.000019507505991506"},{"denom":"ASSET5","index":"0.000001575196067099"},{"denom":"ASSET6","index":"0.000006357416996111"},{"denom":"ASSET7","index":"0.000009994574317511"},{"denom":"ASSET8","index":"0.000013669954492341"},{"denom":"ASSET9","index":"0.000005799591528398"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001553840185331"},{"denom":"ASSET1","index":"0.000012958259817171"},{"denom":"ASSET10","index":"0.000009028099224953"},{"denom":"ASSET11","index":"0.000012533831248030"},{"denom":"ASSET12","index":"0.000011286922457332"},{"denom":"ASSET13","index":"0.000003884600463327"},{"denom":"ASSET14","index":"0.000011708953124953"},{"denom":"ASSET15","index":"0.000008371074208317"},{"denom":"ASSET16","index":"0.000005836492301072"},{"denom":"ASSET17","index":"0.000004143573827548"},{"denom":"ASSET18","index":"0.000001973472951431"},{"denom":"ASSET2","index":"0.000003824652925312"},{"denom":"ASSET3","index":"0.000001117422108587"},{"denom":"ASSET4","index":"0.000010529185576831"},{"denom":"ASSET5","index":"0.000000868040350447"},{"denom":"ASSET6","index":"0.000003534506841323"},{"denom":"ASSET7","index":"0.000005412063731931"},{"denom":"ASSET8","index":"0.000007064217879605"},{"denom":"ASSET9","index":"0.000003050130734168"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000002875427361068"},{"denom":"ASSET1","index":"0.000024372739255487"},{"denom":"ASSET10","index":"0.000019284464921318"},{"denom":"ASSET11","index":"0.000024174413552556"},{"denom":"ASSET12","index":"0.000022964657814992"},{"denom":"ASSET13","index":"0.000007586106071195"},{"denom":"ASSET14","index":"0.000022214775035212"},{"denom":"ASSET15","index":"0.000017399266119679"},{"denom":"ASSET16","index":"0.000010822432031544"},{"denom":"ASSET17","index":"0.000008437405253940"},{"denom":"ASSET18","index":"0.000003520101477575"},{"denom":"ASSET2","index":"0.000007366931162610"},{"denom":"ASSET3","index":"0.000002051556015935"},{"denom":"ASSET4","index":"0.000019761188522524"},{"denom":"ASSET5","index":"0.000001598363223465"},{"denom":"ASSET6","index":"0.000006458982880806"},{"denom":"ASSET7","index":"0.000010127316932433"},{"denom":"ASSET8","index":"0.000013792105044122"},{"denom":"ASSET9","index":"0.000005859963066840"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001468329025254"},{"denom":"ASSET1","index":"0.000012248466172689"},{"denom":"ASSET10","index":"0.000008533242661533"},{"denom":"ASSET11","index":"0.000011849890220686"},{"denom":"ASSET12","index":"0.000010670683647662"},{"denom":"ASSET13","index":"0.000003671855143322"},{"denom":"ASSET14","index":"0.000011069259599665"},{"denom":"ASSET15","index":"0.000007913694549611"},{"denom":"ASSET16","index":"0.000005518108516848"},{"denom":"ASSET17","index":"0.000003917609227717"},{"denom":"ASSET18","index":"0.000001866904977257"},{"denom":"ASSET2","index":"0.000003616095813249"},{"denom":"ASSET3","index":"0.000001057362111013"},{"denom":"ASSET4","index":"0.000009954072998206"},{"denom":"ASSET5","index":"0.000000819868668110"},{"denom":"ASSET6","index":"0.000003341429483630"},{"denom":"ASSET7","index":"0.000005117467404472"},{"denom":"ASSET8","index":"0.000006676663486141"},{"denom":"ASSET9","index":"0.000002882963880808"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000002995432004660"},{"denom":"ASSET1","index":"0.000025434255671185"},{"denom":"ASSET10","index":"0.000020381248485322"},{"denom":"ASSET11","index":"0.000025297016742096"},{"denom":"ASSET12","index":"0.000024161457271020"},{"denom":"ASSET13","index":"0.000007948725545453"},{"denom":"ASSET14","index":"0.000023205881885085"},{"denom":"ASSET15","index":"0.000018343715148864"},{"denom":"ASSET16","index":"0.000011277889207663"},{"denom":"ASSET17","index":"0.000008877556775335"},{"denom":"ASSET18","index":"0.000003654253802028"},{"denom":"ASSET2","index":"0.000007709102798424"},{"denom":"ASSET3","index":"0.000002137627884226"},{"denom":"ASSET4","index":"0.000020618696770430"},{"denom":"ASSET5","index":"0.000001664440090804"},{"denom":"ASSET6","index":"0.000006720260763181"},{"denom":"ASSET7","index":"0.000010565171316359"},{"denom":"ASSET8","index":"0.000014449121165534"},{"denom":"ASSET9","index":"0.000006129217088192"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001484659776814"},{"denom":"ASSET1","index":"0.000012377911876883"},{"denom":"ASSET10","index":"0.000008623797972416"},{"denom":"ASSET11","index":"0.000011974339842928"},{"denom":"ASSET12","index":"0.000010782780641408"},{"denom":"ASSET13","index":"0.000003710691597017"},{"denom":"ASSET14","index":"0.000011185714112019"},{"denom":"ASSET15","index":"0.000007997367331102"},{"denom":"ASSET16","index":"0.000005575935127370"},{"denom":"ASSET17","index":"0.000003959731301514"},{"denom":"ASSET18","index":"0.000001886316120734"},{"denom":"ASSET2","index":"0.000003653859459324"},{"denom":"ASSET3","index":"0.000001068955039306"},{"denom":"ASSET4","index":"0.000010059288371675"},{"denom":"ASSET5","index":"0.000000829493784981"},{"denom":"ASSET6","index":"0.000003376084404307"},{"denom":"ASSET7","index":"0.000005171085966725"},{"denom":"ASSET8","index":"0.000006747698865199"},{"denom":"ASSET9","index":"0.000002914403105969"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000002967027008461"},{"denom":"ASSET1","index":"0.000025180120058697"},{"denom":"ASSET10","index":"0.000020126919929476"},{"denom":"ASSET11","index":"0.000025029678796477"},{"denom":"ASSET12","index":"0.000023880507059092"},{"denom":"ASSET13","index":"0.000007862872062626"},{"denom":"ASSET14","index":"0.000022968832134984"},{"denom":"ASSET15","index":"0.000018123195207046"},{"denom":"ASSET16","index":"0.000011168095360491"},{"denom":"ASSET17","index":"0.000008775186029853"},{"denom":"ASSET18","index":"0.000003621217117579"},{"denom":"ASSET2","index":"0.000007627534970337"},{"denom":"ASSET3","index":"0.000002117298518473"},{"denom":"ASSET4","index":"0.000020413769751333"},{"denom":"ASSET5","index":"0.000001649183760435"},{"denom":"ASSET6","index":"0.000006656038319196"},{"denom":"ASSET7","index":"0.000010459966878994"},{"denom":"ASSET8","index":"0.000014293861494285"},{"denom":"ASSET9","index":"0.000006066597621916"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001508631993599"},{"denom":"ASSET1","index":"0.000012578103553994"},{"denom":"ASSET10","index":"0.000008763023138279"},{"denom":"ASSET11","index":"0.000012169014387632"},{"denom":"ASSET12","index":"0.000010956555546150"},{"denom":"ASSET13","index":"0.000003770654442897"},{"denom":"ASSET14","index":"0.000011367495794714"},{"denom":"ASSET15","index":"0.000008126250861227"},{"denom":"ASSET16","index":"0.000005666162616450"},{"denom":"ASSET17","index":"0.000004024252704398"},{"denom":"ASSET18","index":"0.000001915870077761"},{"denom":"ASSET2","index":"0.000003713270894674"},{"denom":"ASSET3","index":"0.000001084734169631"},{"denom":"ASSET4","index":"0.000010221675912459"},{"denom":"ASSET5","index":"0.000000842242401334"},{"denom":"ASSET6","index":"0.000003430055317962"},{"denom":"ASSET7","index":"0.000005255222367887"},{"denom":"ASSET8","index":"0.000006856408471522"},{"denom":"ASSET9","index":"0.000002961731521176"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000002968383248598"},{"denom":"ASSET1","index":"0.000025185581850199"},{"denom":"ASSET10","index":"0.000020091193699906"},{"denom":"ASSET11","index":"0.000025026167595767"},{"denom":"ASSET12","index":"0.000023854952987524"},{"denom":"ASSET13","index":"0.000007859725566891"},{"denom":"ASSET14","index":"0.000022971118914045"},{"denom":"ASSET15","index":"0.000018098517255117"},{"denom":"ASSET16","index":"0.000011173004258039"},{"denom":"ASSET17","index":"0.000008766603022733"},{"denom":"ASSET18","index":"0.000003624559740525"},{"denom":"ASSET2","index":"0.000007626317523237"},{"denom":"ASSET3","index":"0.000002117313008939"},{"denom":"ASSET4","index":"0.000020418576076670"},{"denom":"ASSET5","index":"0.000001649450966157"},{"denom":"ASSET6","index":"0.000006660362585584"},{"denom":"ASSET7","index":"0.000010463779822658"},{"denom":"ASSET8","index":"0.000014287735496216"},{"denom":"ASSET9","index":"0.000006065360072421"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001603618851190"},{"denom":"ASSET1","index":"0.000013373450792115"},{"denom":"ASSET10","index":"0.000009317368604669"},{"denom":"ASSET11","index":"0.000012937408123124"},{"denom":"ASSET12","index":"0.000011650307554501"},{"denom":"ASSET13","index":"0.000004008493774333"},{"denom":"ASSET14","index":"0.000012085243516211"},{"denom":"ASSET15","index":"0.000008640063748266"},{"denom":"ASSET16","index":"0.000006023807734317"},{"denom":"ASSET17","index":"0.000004278530351069"},{"denom":"ASSET18","index":"0.000002037448105618"},{"denom":"ASSET2","index":"0.000003947624873839"},{"denom":"ASSET3","index":"0.000001154295694818"},{"denom":"ASSET4","index":"0.000010867865506336"},{"denom":"ASSET5","index":"0.000000896432898181"},{"denom":"ASSET6","index":"0.000003647707200497"},{"denom":"ASSET7","index":"0.000005586658358043"},{"denom":"ASSET8","index":"0.000007289880864586"},{"denom":"ASSET9","index":"0.000003148582216449"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003259379166935"},{"denom":"ASSET1","index":"0.000027669546155668"},{"denom":"ASSET10","index":"0.000022163157427920"},{"denom":"ASSET11","index":"0.000027516665793422"},{"denom":"ASSET12","index":"0.000026276569409586"},{"denom":"ASSET13","index":"0.000008645229164029"},{"denom":"ASSET14","index":"0.000025243382728696"},{"denom":"ASSET15","index":"0.000019947981783747"},{"denom":"ASSET16","index":"0.000012268920188963"},{"denom":"ASSET17","index":"0.000009656339783182"},{"denom":"ASSET18","index":"0.000003975233530089"},{"denom":"ASSET2","index":"0.000008385350610200"},{"denom":"ASSET3","index":"0.000002325230588439"},{"denom":"ASSET4","index":"0.000022430515898086"},{"denom":"ASSET5","index":"0.000001812256369527"},{"denom":"ASSET6","index":"0.000007311001085881"},{"denom":"ASSET7","index":"0.000011492885803011"},{"denom":"ASSET8","index":"0.000015716897251793"},{"denom":"ASSET9","index":"0.000006668589151432"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001669758803356"},{"denom":"ASSET1","index":"0.000013919924903508"},{"denom":"ASSET10","index":"0.000009698114015232"},{"denom":"ASSET11","index":"0.000013466332119255"},{"denom":"ASSET12","index":"0.000012126099781115"},{"denom":"ASSET13","index":"0.000004173211661392"},{"denom":"ASSET14","index":"0.000012579297449702"},{"denom":"ASSET15","index":"0.000008994017898909"},{"denom":"ASSET16","index":"0.000006270880730729"},{"denom":"ASSET17","index":"0.000004453348668392"},{"denom":"ASSET18","index":"0.000002121376009280"},{"denom":"ASSET2","index":"0.000004109202923545"},{"denom":"ASSET3","index":"0.000001201941855137"},{"denom":"ASSET4","index":"0.000011312556625386"},{"denom":"ASSET5","index":"0.000000932868086778"},{"denom":"ASSET6","index":"0.000003797061547622"},{"denom":"ASSET7","index":"0.000005815312368147"},{"denom":"ASSET8","index":"0.000007588591475923"},{"denom":"ASSET9","index":"0.000003277484447193"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003314119794923"},{"denom":"ASSET1","index":"0.000028119315186385"},{"denom":"ASSET10","index":"0.000022456877991933"},{"denom":"ASSET11","index":"0.000027947185249485"},{"denom":"ASSET12","index":"0.000026653541530161"},{"denom":"ASSET13","index":"0.000008778725953540"},{"denom":"ASSET14","index":"0.000025648491290636"},{"denom":"ASSET15","index":"0.000020225495910600"},{"denom":"ASSET16","index":"0.000012473684612014"},{"denom":"ASSET17","index":"0.000009794866581105"},{"denom":"ASSET18","index":"0.000004045992889163"},{"denom":"ASSET2","index":"0.000008517017325485"},{"denom":"ASSET3","index":"0.000002365208974685"},{"denom":"ASSET4","index":"0.000022797013251164"},{"denom":"ASSET5","index":"0.000001842432416817"},{"denom":"ASSET6","index":"0.000007435560259585"},{"denom":"ASSET7","index":"0.000011681616070006"},{"denom":"ASSET8","index":"0.000015958852395270"},{"denom":"ASSET9","index":"0.000006773561992828"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001334597814253"},{"denom":"ASSET1","index":"0.000011126876577448"},{"denom":"ASSET10","index":"0.000007751884027943"},{"denom":"ASSET11","index":"0.000010763759508328"},{"denom":"ASSET12","index":"0.000009692944381721"},{"denom":"ASSET13","index":"0.000003335543967388"},{"denom":"ASSET14","index":"0.000010055110882597"},{"denom":"ASSET15","index":"0.000007189147627631"},{"denom":"ASSET16","index":"0.000005012346349398"},{"denom":"ASSET17","index":"0.000003559878072918"},{"denom":"ASSET18","index":"0.000001695813746885"},{"denom":"ASSET2","index":"0.000003284213282225"},{"denom":"ASSET3","index":"0.000000960549210329"},{"denom":"ASSET4","index":"0.000009042280418860"},{"denom":"ASSET5","index":"0.000000745720787237"},{"denom":"ASSET6","index":"0.000003035164402357"},{"denom":"ASSET7","index":"0.000004648278712034"},{"denom":"ASSET8","index":"0.000006065575963495"},{"denom":"ASSET9","index":"0.000002619766079830"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000002933404194828"},{"denom":"ASSET1","index":"0.000024932632498194"},{"denom":"ASSET10","index":"0.000020157113753706"},{"denom":"ASSET11","index":"0.000024842878528839"},{"denom":"ASSET12","index":"0.000023817726072485"},{"denom":"ASSET13","index":"0.000007813243799971"},{"denom":"ASSET14","index":"0.000022761898108549"},{"denom":"ASSET15","index":"0.000018109267957138"},{"denom":"ASSET16","index":"0.000011043189892304"},{"denom":"ASSET17","index":"0.000008753164046701"},{"denom":"ASSET18","index":"0.000003567063844603"},{"denom":"ASSET2","index":"0.000007569762146700"},{"denom":"ASSET3","index":"0.000002091389836038"},{"denom":"ASSET4","index":"0.000020208488830330"},{"denom":"ASSET5","index":"0.000001630166870108"},{"denom":"ASSET6","index":"0.000006572642272968"},{"denom":"ASSET7","index":"0.000010351822041320"},{"denom":"ASSET8","index":"0.000014203644477234"},{"denom":"ASSET9","index":"0.000006019030096188"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001655550281073"},{"denom":"ASSET1","index":"0.000013803766186213"},{"denom":"ASSET10","index":"0.000009616885369480"},{"denom":"ASSET11","index":"0.000013353770421464"},{"denom":"ASSET12","index":"0.000012024654915933"},{"denom":"ASSET13","index":"0.000004138458266908"},{"denom":"ASSET14","index":"0.000012474650680682"},{"denom":"ASSET15","index":"0.000008918932754767"},{"denom":"ASSET16","index":"0.000006218123294721"},{"denom":"ASSET17","index":"0.000004415635621077"},{"denom":"ASSET18","index":"0.000002103876302725"},{"denom":"ASSET2","index":"0.000004075008029207"},{"denom":"ASSET3","index":"0.000001191361699996"},{"denom":"ASSET4","index":"0.000011218168999888"},{"denom":"ASSET5","index":"0.000000925037675960"},{"denom":"ASSET6","index":"0.000003765270684639"},{"denom":"ASSET7","index":"0.000005766457786874"},{"denom":"ASSET8","index":"0.000007524697268437"},{"denom":"ASSET9","index":"0.000003250154939091"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003215122291080"},{"denom":"ASSET1","index":"0.000027271082473775"},{"denom":"ASSET10","index":"0.000021717714787675"},{"denom":"ASSET11","index":"0.000027088129911249"},{"denom":"ASSET12","index":"0.000025803190697535"},{"denom":"ASSET13","index":"0.000008506451165719"},{"denom":"ASSET14","index":"0.000024869823256717"},{"denom":"ASSET15","index":"0.000019571375436743"},{"denom":"ASSET16","index":"0.000012101015548893"},{"denom":"ASSET17","index":"0.000009481514658039"},{"denom":"ASSET18","index":"0.000003929002426467"},{"denom":"ASSET2","index":"0.000008255375778501"},{"denom":"ASSET3","index":"0.000002294279906946"},{"denom":"ASSET4","index":"0.000022110354928469"},{"denom":"ASSET5","index":"0.000001787716273475"},{"denom":"ASSET6","index":"0.000007215985074700"},{"denom":"ASSET7","index":"0.000011330188741735"},{"denom":"ASSET8","index":"0.000015463524362026"},{"denom":"ASSET9","index":"0.000006565858639552"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001631513498845"},{"denom":"ASSET1","index":"0.000013601788709515"},{"denom":"ASSET10","index":"0.000009476711328689"},{"denom":"ASSET11","index":"0.000013158178840821"},{"denom":"ASSET12","index":"0.000011848922966954"},{"denom":"ASSET13","index":"0.000004077884841603"},{"denom":"ASSET14","index":"0.000012291633930140"},{"denom":"ASSET15","index":"0.000008788599161546"},{"denom":"ASSET16","index":"0.000006127389402135"},{"denom":"ASSET17","index":"0.000004351601569095"},{"denom":"ASSET18","index":"0.000002072876103766"},{"denom":"ASSET2","index":"0.000004014961455973"},{"denom":"ASSET3","index":"0.000001174420047516"},{"denom":"ASSET4","index":"0.000011053841044239"},{"denom":"ASSET5","index":"0.000000911490186131"},{"denom":"ASSET6","index":"0.000003710232488420"},{"denom":"ASSET7","index":"0.000005682431175178"},{"denom":"ASSET8","index":"0.000007415071543785"},{"denom":"ASSET9","index":"0.000003202800328586"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003159157648171"},{"denom":"ASSET1","index":"0.000026793811254639"},{"denom":"ASSET10","index":"0.000021330257270132"},{"denom":"ASSET11","index":"0.000026611245447042"},{"denom":"ASSET12","index":"0.000025345616114893"},{"denom":"ASSET13","index":"0.000008356504281369"},{"denom":"ASSET14","index":"0.000024433401122602"},{"denom":"ASSET15","index":"0.000019223209713353"},{"denom":"ASSET16","index":"0.000011890026449509"},{"denom":"ASSET17","index":"0.000009313941892173"},{"denom":"ASSET18","index":"0.000003860849124980"},{"denom":"ASSET2","index":"0.000008109777269158"},{"denom":"ASSET3","index":"0.000002255070941538"},{"denom":"ASSET4","index":"0.000021723391251034"},{"denom":"ASSET5","index":"0.000001756486235957"},{"denom":"ASSET6","index":"0.000007090574282328"},{"denom":"ASSET7","index":"0.000011132530538444"},{"denom":"ASSET8","index":"0.000015191323807650"},{"denom":"ASSET9","index":"0.000006450832118924"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001649724724935"},{"denom":"ASSET1","index":"0.000013753740147655"},{"denom":"ASSET10","index":"0.000009582563441278"},{"denom":"ASSET11","index":"0.000013305204895691"},{"denom":"ASSET12","index":"0.000011981321923304"},{"denom":"ASSET13","index":"0.000004123306127916"},{"denom":"ASSET14","index":"0.000012429052627730"},{"denom":"ASSET15","index":"0.000008886629821639"},{"denom":"ASSET16","index":"0.000006195820583626"},{"denom":"ASSET17","index":"0.000004400070480698"},{"denom":"ASSET18","index":"0.000002096248608056"},{"denom":"ASSET2","index":"0.000004060149146250"},{"denom":"ASSET3","index":"0.000001187512164840"},{"denom":"ASSET4","index":"0.000011177176659918"},{"denom":"ASSET5","index":"0.000000921609203810"},{"denom":"ASSET6","index":"0.000003751605165751"},{"denom":"ASSET7","index":"0.000005746078510357"},{"denom":"ASSET8","index":"0.000007497578498742"},{"denom":"ASSET9","index":"0.000003238303837047"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003253063831874"},{"denom":"ASSET1","index":"0.000027597326034286"},{"denom":"ASSET10","index":"0.000022021617243178"},{"denom":"ASSET11","index":"0.000027423138617092"},{"denom":"ASSET12","index":"0.000026144931484859"},{"denom":"ASSET13","index":"0.000008613299773809"},{"denom":"ASSET14","index":"0.000025170855267573"},{"denom":"ASSET15","index":"0.000019836826910831"},{"denom":"ASSET16","index":"0.000012243184702458"},{"denom":"ASSET17","index":"0.000009607701845932"},{"denom":"ASSET18","index":"0.000003972764374377"},{"denom":"ASSET2","index":"0.000008357484440725"},{"denom":"ASSET3","index":"0.000002321502734814"},{"denom":"ASSET4","index":"0.000022373906168402"},{"denom":"ASSET5","index":"0.000001808481766797"},{"denom":"ASSET6","index":"0.000007298802623853"},{"denom":"ASSET7","index":"0.000011465220726545"},{"denom":"ASSET8","index":"0.000015658035812384"},{"denom":"ASSET9","index":"0.000006646717011605"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001698975992122"},{"denom":"ASSET1","index":"0.000014167905922226"},{"denom":"ASSET10","index":"0.000009870625403756"},{"denom":"ASSET11","index":"0.000013705415046027"},{"denom":"ASSET12","index":"0.000012342129737421"},{"denom":"ASSET13","index":"0.000004247439980305"},{"denom":"ASSET14","index":"0.000012803154715439"},{"denom":"ASSET15","index":"0.000009153801193103"},{"denom":"ASSET16","index":"0.000006381787732272"},{"denom":"ASSET17","index":"0.000004532557176567"},{"denom":"ASSET18","index":"0.000002159268021049"},{"denom":"ASSET2","index":"0.000004182207511237"},{"denom":"ASSET3","index":"0.000001223292032291"},{"denom":"ASSET4","index":"0.000011513897264989"},{"denom":"ASSET5","index":"0.000000949169072389"},{"denom":"ASSET6","index":"0.000003864840554987"},{"denom":"ASSET7","index":"0.000005918563906982"},{"denom":"ASSET8","index":"0.000007723084568158"},{"denom":"ASSET9","index":"0.000003335651311539"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003402845442317"},{"denom":"ASSET1","index":"0.000028880571174740"},{"denom":"ASSET10","index":"0.000023090578471272"},{"denom":"ASSET11","index":"0.000028709364204549"},{"denom":"ASSET12","index":"0.000027394626213612"},{"denom":"ASSET13","index":"0.000009019217107214"},{"denom":"ASSET14","index":"0.000026344557012563"},{"denom":"ASSET15","index":"0.000020791017438004"},{"denom":"ASSET16","index":"0.000012808886991708"},{"denom":"ASSET17","index":"0.000010066951390727"},{"denom":"ASSET18","index":"0.000004153478710890"},{"denom":"ASSET2","index":"0.000008748954704305"},{"denom":"ASSET3","index":"0.000002428490976730"},{"denom":"ASSET4","index":"0.000023413646091842"},{"denom":"ASSET5","index":"0.000001891364101695"},{"denom":"ASSET6","index":"0.000007634563338572"},{"denom":"ASSET7","index":"0.000011996876612297"},{"denom":"ASSET8","index":"0.000016395615103037"},{"denom":"ASSET9","index":"0.000006958318142576"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001515088644413"},{"denom":"ASSET1","index":"0.000012634136557163"},{"denom":"ASSET10","index":"0.000008802109028204"},{"denom":"ASSET11","index":"0.000012222352143486"},{"denom":"ASSET12","index":"0.000011006111259210"},{"denom":"ASSET13","index":"0.000003787721611031"},{"denom":"ASSET14","index":"0.000011417895672887"},{"denom":"ASSET15","index":"0.000008163582563959"},{"denom":"ASSET16","index":"0.000005691138594924"},{"denom":"ASSET17","index":"0.000004042263453241"},{"denom":"ASSET18","index":"0.000001925135571111"},{"denom":"ASSET2","index":"0.000003729515797284"},{"denom":"ASSET3","index":"0.000001091141821893"},{"denom":"ASSET4","index":"0.000010267679293757"},{"denom":"ASSET5","index":"0.000000846156158061"},{"denom":"ASSET6","index":"0.000003446305419945"},{"denom":"ASSET7","index":"0.000005278485437758"},{"denom":"ASSET8","index":"0.000006887398378958"},{"denom":"ASSET9","index":"0.000002974577705544"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003029367235848"},{"denom":"ASSET1","index":"0.000025709657584098"},{"denom":"ASSET10","index":"0.000020551027857005"},{"denom":"ASSET11","index":"0.000025556791271547"},{"denom":"ASSET12","index":"0.000024383546484064"},{"denom":"ASSET13","index":"0.000008028643187417"},{"denom":"ASSET14","index":"0.000023452409013233"},{"denom":"ASSET15","index":"0.000018505869963369"},{"denom":"ASSET16","index":"0.000011403028825829"},{"denom":"ASSET17","index":"0.000008960765854271"},{"denom":"ASSET18","index":"0.000003697390743305"},{"denom":"ASSET2","index":"0.000007788410102575"},{"denom":"ASSET3","index":"0.000002162278160249"},{"denom":"ASSET4","index":"0.000020843149904241"},{"denom":"ASSET5","index":"0.000001683795445220"},{"denom":"ASSET6","index":"0.000006796548728457"},{"denom":"ASSET7","index":"0.000010680301627557"},{"denom":"ASSET8","index":"0.000014594997949332"},{"denom":"ASSET9","index":"0.000006193949682941"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001650481631660"},{"denom":"ASSET1","index":"0.000013760556046882"},{"denom":"ASSET10","index":"0.000009587067899364"},{"denom":"ASSET11","index":"0.000013312100857594"},{"denom":"ASSET12","index":"0.000011987552175177"},{"denom":"ASSET13","index":"0.000004125311926918"},{"denom":"ASSET14","index":"0.000012435412596309"},{"denom":"ASSET15","index":"0.000008891189157367"},{"denom":"ASSET16","index":"0.000006198673717177"},{"denom":"ASSET17","index":"0.000004402473887406"},{"denom":"ASSET18","index":"0.000002097152516481"},{"denom":"ASSET2","index":"0.000004062266502429"},{"denom":"ASSET3","index":"0.000001188346774796"},{"denom":"ASSET4","index":"0.000011182830860714"},{"denom":"ASSET5","index":"0.000000921890641108"},{"denom":"ASSET6","index":"0.000003753581829697"},{"denom":"ASSET7","index":"0.000005749028991578"},{"denom":"ASSET8","index":"0.000007501810745994"},{"denom":"ASSET9","index":"0.000003239702143299"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003205609047354"},{"denom":"ASSET1","index":"0.000027188537481167"},{"denom":"ASSET10","index":"0.000021652723818266"},{"denom":"ASSET11","index":"0.000027005979418132"},{"denom":"ASSET12","index":"0.000025725923481940"},{"denom":"ASSET13","index":"0.000008480657418555"},{"denom":"ASSET14","index":"0.000024794508770079"},{"denom":"ASSET15","index":"0.000019512596409105"},{"denom":"ASSET16","index":"0.000012064653878282"},{"denom":"ASSET17","index":"0.000009453813052143"},{"denom":"ASSET18","index":"0.000003917117707327"},{"denom":"ASSET2","index":"0.000008230459966291"},{"denom":"ASSET3","index":"0.000002288306334262"},{"denom":"ASSET4","index":"0.000022043298344156"},{"denom":"ASSET5","index":"0.000001782083734802"},{"denom":"ASSET6","index":"0.000007194354204475"},{"denom":"ASSET7","index":"0.000011296497588433"},{"denom":"ASSET8","index":"0.000015417282169744"},{"denom":"ASSET9","index":"0.000006545936928299"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001428935211366"},{"denom":"ASSET1","index":"0.000011914564237659"},{"denom":"ASSET10","index":"0.000008301159777028"},{"denom":"ASSET11","index":"0.000011525978642480"},{"denom":"ASSET12","index":"0.000010379209562159"},{"denom":"ASSET13","index":"0.000003571896453874"},{"denom":"ASSET14","index":"0.000010767353582799"},{"denom":"ASSET15","index":"0.000007698410529959"},{"denom":"ASSET16","index":"0.000005367338533420"},{"denom":"ASSET17","index":"0.000003811671429081"},{"denom":"ASSET18","index":"0.000001815754508385"},{"denom":"ASSET2","index":"0.000003517141210917"},{"denom":"ASSET3","index":"0.000001028868678146"},{"denom":"ASSET4","index":"0.000009682846512616"},{"denom":"ASSET5","index":"0.000000798366768278"},{"denom":"ASSET6","index":"0.000003249988614231"},{"denom":"ASSET7","index":"0.000004977428214621"},{"denom":"ASSET8","index":"0.000006495119908522"},{"denom":"ASSET9","index":"0.000002805323052474"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003075918064869"},{"denom":"ASSET1","index":"0.000026136551234120"},{"denom":"ASSET10","index":"0.000021080163895542"},{"denom":"ASSET11","index":"0.000026029570124972"},{"denom":"ASSET12","index":"0.000024929671095533"},{"denom":"ASSET13","index":"0.000008184754658215"},{"denom":"ASSET14","index":"0.000023857159923959"},{"denom":"ASSET15","index":"0.000018947606922173"},{"denom":"ASSET16","index":"0.000011579925359638"},{"denom":"ASSET17","index":"0.000009161388302193"},{"denom":"ASSET18","index":"0.000003743573486430"},{"denom":"ASSET2","index":"0.000007931762150876"},{"denom":"ASSET3","index":"0.000002193704696765"},{"denom":"ASSET4","index":"0.000021185602196482"},{"denom":"ASSET5","index":"0.000001709259314500"},{"denom":"ASSET6","index":"0.000006893942979866"},{"denom":"ASSET7","index":"0.000010853088527538"},{"denom":"ASSET8","index":"0.000014878712124324"},{"denom":"ASSET9","index":"0.000006307130542486"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001556917620519"},{"denom":"ASSET1","index":"0.000012983455297040"},{"denom":"ASSET10","index":"0.000009045452282177"},{"denom":"ASSET11","index":"0.000012560119972943"},{"denom":"ASSET12","index":"0.000011310507230547"},{"denom":"ASSET13","index":"0.000003892294051298"},{"denom":"ASSET14","index":"0.000011733139339821"},{"denom":"ASSET15","index":"0.000008388649636483"},{"denom":"ASSET16","index":"0.000005848637691896"},{"denom":"ASSET17","index":"0.000004153889965857"},{"denom":"ASSET18","index":"0.000001978846514969"},{"denom":"ASSET2","index":"0.000003832520791251"},{"denom":"ASSET3","index":"0.000001120924429588"},{"denom":"ASSET4","index":"0.000010551035220538"},{"denom":"ASSET5","index":"0.000000869876737390"},{"denom":"ASSET6","index":"0.000003541389854081"},{"denom":"ASSET7","index":"0.000005423895938150"},{"denom":"ASSET8","index":"0.000007077857204393"},{"denom":"ASSET9","index":"0.000003056874840288"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003155948059833"},{"denom":"ASSET1","index":"0.000026789841893667"},{"denom":"ASSET10","index":"0.000021451154188244"},{"denom":"ASSET11","index":"0.000026640130662201"},{"denom":"ASSET12","index":"0.000025435769508540"},{"denom":"ASSET13","index":"0.000008370086775831"},{"denom":"ASSET14","index":"0.000024440800445484"},{"denom":"ASSET15","index":"0.000019309084443140"},{"denom":"ASSET16","index":"0.000011879786354964"},{"denom":"ASSET17","index":"0.000009347672781307"},{"denom":"ASSET18","index":"0.000003850232310781"},{"denom":"ASSET2","index":"0.000008118311447694"},{"denom":"ASSET3","index":"0.000002251791235916"},{"denom":"ASSET4","index":"0.000021717604836949"},{"denom":"ASSET5","index":"0.000001754185821919"},{"denom":"ASSET6","index":"0.000007079049104243"},{"denom":"ASSET7","index":"0.000011127710678967"},{"denom":"ASSET8","index":"0.000015216376583965"},{"denom":"ASSET9","index":"0.000006456241851980"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001629017625409"},{"denom":"ASSET1","index":"0.000013583500814952"},{"denom":"ASSET10","index":"0.000009463617777698"},{"denom":"ASSET11","index":"0.000013140742178302"},{"denom":"ASSET12","index":"0.000011833351109704"},{"denom":"ASSET13","index":"0.000004072544063523"},{"denom":"ASSET14","index":"0.000012276109746354"},{"denom":"ASSET15","index":"0.000008777202658616"},{"denom":"ASSET16","index":"0.000006119258515961"},{"denom":"ASSET17","index":"0.000004345439323848"},{"denom":"ASSET18","index":"0.000002070383939302"},{"denom":"ASSET2","index":"0.000004009889539469"},{"denom":"ASSET3","index":"0.000001172335761192"},{"denom":"ASSET4","index":"0.000011039727138351"},{"denom":"ASSET5","index":"0.000000910579082921"},{"denom":"ASSET6","index":"0.000003704970855739"},{"denom":"ASSET7","index":"0.000005675107556554"},{"denom":"ASSET8","index":"0.000007404372420450"},{"denom":"ASSET9","index":"0.000003198165372278"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003300821213878"},{"denom":"ASSET1","index":"0.000028019420341436"},{"denom":"ASSET10","index":"0.000022435320069293"},{"denom":"ASSET11","index":"0.000027862926397945"},{"denom":"ASSET12","index":"0.000026603097941410"},{"denom":"ASSET13","index":"0.000008754572034100"},{"denom":"ASSET14","index":"0.000025562969906661"},{"denom":"ASSET15","index":"0.000020195785636702"},{"denom":"ASSET16","index":"0.000012425527462944"},{"denom":"ASSET17","index":"0.000009776022796414"},{"denom":"ASSET18","index":"0.000004027118689751"},{"denom":"ASSET2","index":"0.000008490998812362"},{"denom":"ASSET3","index":"0.000002354733406852"},{"denom":"ASSET4","index":"0.000022715681634045"},{"denom":"ASSET5","index":"0.000001835160700580"},{"denom":"ASSET6","index":"0.000007403741836767"},{"denom":"ASSET7","index":"0.000011639103500846"},{"denom":"ASSET8","index":"0.000015914079386056"},{"denom":"ASSET9","index":"0.000006752470475547"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001599876133405"},{"denom":"ASSET1","index":"0.000013345434681176"},{"denom":"ASSET10","index":"0.000009297530322905"},{"denom":"ASSET11","index":"0.000012909953167223"},{"denom":"ASSET12","index":"0.000011625282701060"},{"denom":"ASSET13","index":"0.000004000208763886"},{"denom":"ASSET14","index":"0.000012059727354266"},{"denom":"ASSET15","index":"0.000008622533976277"},{"denom":"ASSET16","index":"0.000006011718614052"},{"denom":"ASSET17","index":"0.000004268755697491"},{"denom":"ASSET18","index":"0.000002033283925863"},{"denom":"ASSET2","index":"0.000003939033979783"},{"denom":"ASSET3","index":"0.000001151952290481"},{"denom":"ASSET4","index":"0.000010845563418934"},{"denom":"ASSET5","index":"0.000000893773964352"},{"denom":"ASSET6","index":"0.000003640418084501"},{"denom":"ASSET7","index":"0.000005575200239351"},{"denom":"ASSET8","index":"0.000007274615004517"},{"denom":"ASSET9","index":"0.000003141688064949"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003205518103121"},{"denom":"ASSET1","index":"0.000027209804037075"},{"denom":"ASSET10","index":"0.000021755111918776"},{"denom":"ASSET11","index":"0.000027048910570117"},{"denom":"ASSET12","index":"0.000025809934262776"},{"denom":"ASSET13","index":"0.000008496852467218"},{"denom":"ASSET14","index":"0.000024820667393427"},{"denom":"ASSET15","index":"0.000019589132093549"},{"denom":"ASSET16","index":"0.000012068310128279"},{"denom":"ASSET17","index":"0.000009484236214143"},{"denom":"ASSET18","index":"0.000003912244660385"},{"denom":"ASSET2","index":"0.000008242746790311"},{"denom":"ASSET3","index":"0.000002287536756020"},{"denom":"ASSET4","index":"0.000022059248469095"},{"denom":"ASSET5","index":"0.000001781848402938"},{"denom":"ASSET6","index":"0.000007192715838846"},{"denom":"ASSET7","index":"0.000011303047666497"},{"denom":"ASSET8","index":"0.000015447099928639"},{"denom":"ASSET9","index":"0.000006555210966575"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001693699328345"},{"denom":"ASSET1","index":"0.000014121235265065"},{"denom":"ASSET10","index":"0.000009838380374958"},{"denom":"ASSET11","index":"0.000013660499756586"},{"denom":"ASSET12","index":"0.000012301569616423"},{"denom":"ASSET13","index":"0.000004233563721295"},{"denom":"ASSET14","index":"0.000012760935925768"},{"denom":"ASSET15","index":"0.000009123658427184"},{"denom":"ASSET16","index":"0.000006361299175013"},{"denom":"ASSET17","index":"0.000004517672541531"},{"denom":"ASSET18","index":"0.000002151696438556"},{"denom":"ASSET2","index":"0.000004168526762446"},{"denom":"ASSET3","index":"0.000001219271828530"},{"denom":"ASSET4","index":"0.000011475942538822"},{"denom":"ASSET5","index":"0.000000946116601363"},{"denom":"ASSET6","index":"0.000003852241762569"},{"denom":"ASSET7","index":"0.000005899194467400"},{"denom":"ASSET8","index":"0.000007698322129037"},{"denom":"ASSET9","index":"0.000003325100096108"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003374964488748"},{"denom":"ASSET1","index":"0.000028642371697541"},{"denom":"ASSET10","index":"0.000022886358038922"},{"denom":"ASSET11","index":"0.000028469467846578"},{"denom":"ASSET12","index":"0.000027158021136678"},{"denom":"ASSET13","index":"0.000008943216545101"},{"denom":"ASSET14","index":"0.000026126056006670"},{"denom":"ASSET15","index":"0.000020609372613995"},{"denom":"ASSET16","index":"0.000012704733728960"},{"denom":"ASSET17","index":"0.000009980025667275"},{"denom":"ASSET18","index":"0.000004119620826099"},{"denom":"ASSET2","index":"0.000008675935346246"},{"denom":"ASSET3","index":"0.000002408702445844"},{"denom":"ASSET4","index":"0.000023220763838917"},{"denom":"ASSET5","index":"0.000001876440105393"},{"denom":"ASSET6","index":"0.000007572949563502"},{"denom":"ASSET7","index":"0.000011897934490553"},{"denom":"ASSET8","index":"0.000016258236310419"},{"denom":"ASSET9","index":"0.000006900426530312"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001608105877482"},{"denom":"ASSET1","index":"0.000013418457239972"},{"denom":"ASSET10","index":"0.000009349233819318"},{"denom":"ASSET11","index":"0.000012981594753349"},{"denom":"ASSET12","index":"0.000011689837573077"},{"denom":"ASSET13","index":"0.000004022147721664"},{"denom":"ASSET14","index":"0.000012126700059700"},{"denom":"ASSET15","index":"0.000008669460725910"},{"denom":"ASSET16","index":"0.000006044519750254"},{"denom":"ASSET17","index":"0.000004293303747844"},{"denom":"ASSET18","index":"0.000002044968364105"},{"denom":"ASSET2","index":"0.000003960007798998"},{"denom":"ASSET3","index":"0.000001158062195142"},{"denom":"ASSET4","index":"0.000010904614913932"},{"denom":"ASSET5","index":"0.000000898204336720"},{"denom":"ASSET6","index":"0.000003660606353425"},{"denom":"ASSET7","index":"0.000005605774235672"},{"denom":"ASSET8","index":"0.000007313680595011"},{"denom":"ASSET9","index":"0.000003159720916176"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003138779820137"},{"denom":"ASSET1","index":"0.000026638851971456"},{"denom":"ASSET10","index":"0.000021228354320839"},{"denom":"ASSET11","index":"0.000026463611656062"},{"denom":"ASSET12","index":"0.000025215335343685"},{"denom":"ASSET13","index":"0.000008309803474369"},{"denom":"ASSET14","index":"0.000024294710395367"},{"denom":"ASSET15","index":"0.000019126240972581"},{"denom":"ASSET16","index":"0.000011819368577720"},{"denom":"ASSET17","index":"0.000009266335892783"},{"denom":"ASSET18","index":"0.000003836527514127"},{"denom":"ASSET2","index":"0.000008063422586049"},{"denom":"ASSET3","index":"0.000002240662109326"},{"denom":"ASSET4","index":"0.000021597223596640"},{"denom":"ASSET5","index":"0.000001744975814867"},{"denom":"ASSET6","index":"0.000007047692266012"},{"denom":"ASSET7","index":"0.000011067413421526"},{"denom":"ASSET8","index":"0.000015106336478322"},{"denom":"ASSET9","index":"0.000006414890297355"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001636130781121"},{"denom":"ASSET1","index":"0.000013651986161797"},{"denom":"ASSET10","index":"0.000009511743354655"},{"denom":"ASSET11","index":"0.000013205516575762"},{"denom":"ASSET12","index":"0.000011891065744828"},{"denom":"ASSET13","index":"0.000004093100055822"},{"denom":"ASSET14","index":"0.000012337535330862"},{"denom":"ASSET15","index":"0.000008821240702961"},{"denom":"ASSET16","index":"0.000006147969392790"},{"denom":"ASSET17","index":"0.000004367637254688"},{"denom":"ASSET18","index":"0.000002079827264137"},{"denom":"ASSET2","index":"0.000004029318686389"},{"denom":"ASSET3","index":"0.000001178568783011"},{"denom":"ASSET4","index":"0.000011095185178418"},{"denom":"ASSET5","index":"0.000000915123996220"},{"denom":"ASSET6","index":"0.000003724277354315"},{"denom":"ASSET7","index":"0.000005701499806755"},{"denom":"ASSET8","index":"0.000007440235399574"},{"denom":"ASSET9","index":"0.000003214026398847"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003135138573804"},{"denom":"ASSET1","index":"0.000026601246250396"},{"denom":"ASSET10","index":"0.000021147351718785"},{"denom":"ASSET11","index":"0.000026411423528042"},{"denom":"ASSET12","index":"0.000025139747174388"},{"denom":"ASSET13","index":"0.000008292603180789"},{"denom":"ASSET14","index":"0.000024256405788980"},{"denom":"ASSET15","index":"0.000019064302195638"},{"denom":"ASSET16","index":"0.000011804656377100"},{"denom":"ASSET17","index":"0.000009238224400983"},{"denom":"ASSET18","index":"0.000003834531376561"},{"denom":"ASSET2","index":"0.000008049169006780"},{"denom":"ASSET3","index":"0.000002239375819558"},{"denom":"ASSET4","index":"0.000021568278304468"},{"denom":"ASSET5","index":"0.000001743998311515"},{"denom":"ASSET6","index":"0.000007041675703373"},{"denom":"ASSET7","index":"0.000011051161098588"},{"denom":"ASSET8","index":"0.000015073103234225"},{"denom":"ASSET9","index":"0.000006402150772125"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001682560247115"},{"denom":"ASSET1","index":"0.000014026482890055"},{"denom":"ASSET10","index":"0.000009772411969975"},{"denom":"ASSET11","index":"0.000013568579422963"},{"denom":"ASSET12","index":"0.000012218368466479"},{"denom":"ASSET13","index":"0.000004205057792371"},{"denom":"ASSET14","index":"0.000012675600520863"},{"denom":"ASSET15","index":"0.000009062728737253"},{"denom":"ASSET16","index":"0.000006318664998244"},{"denom":"ASSET17","index":"0.000004487051129876"},{"denom":"ASSET18","index":"0.000002137778063373"},{"denom":"ASSET2","index":"0.000004140602172369"},{"denom":"ASSET3","index":"0.000001211228525856"},{"denom":"ASSET4","index":"0.000011398573549589"},{"denom":"ASSET5","index":"0.000000939977791684"},{"denom":"ASSET6","index":"0.000003825709612155"},{"denom":"ASSET7","index":"0.000005859418705735"},{"denom":"ASSET8","index":"0.000007646047922643"},{"denom":"ASSET9","index":"0.000003302679112354"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003237426875283"},{"denom":"ASSET1","index":"0.000027451710154634"},{"denom":"ASSET10","index":"0.000021835512998164"},{"denom":"ASSET11","index":"0.000027259736654219"},{"denom":"ASSET12","index":"0.000025953768913429"},{"denom":"ASSET13","index":"0.000008559484494503"},{"denom":"ASSET14","index":"0.000025032165857410"},{"denom":"ASSET15","index":"0.000019681806512765"},{"denom":"ASSET16","index":"0.000012183244440341"},{"denom":"ASSET17","index":"0.000009537367134186"},{"denom":"ASSET18","index":"0.000003957397976948"},{"denom":"ASSET2","index":"0.000008307936552813"},{"denom":"ASSET3","index":"0.000002310954839376"},{"denom":"ASSET4","index":"0.000022256988295109"},{"denom":"ASSET5","index":"0.000001799896462688"},{"denom":"ASSET6","index":"0.000007265619632425"},{"denom":"ASSET7","index":"0.000011405823532836"},{"denom":"ASSET8","index":"0.000015559935461923"},{"denom":"ASSET9","index":"0.000006608212131764"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001576738934866"},{"denom":"ASSET1","index":"0.000013143695761043"},{"denom":"ASSET10","index":"0.000009157699733702"},{"denom":"ASSET11","index":"0.000012715663698192"},{"denom":"ASSET12","index":"0.000011450067913139"},{"denom":"ASSET13","index":"0.000003940585946017"},{"denom":"ASSET14","index":"0.000011878099975991"},{"denom":"ASSET15","index":"0.000008492526135047"},{"denom":"ASSET16","index":"0.000005920970048209"},{"denom":"ASSET17","index":"0.000004204637159643"},{"denom":"ASSET18","index":"0.000002003089142854"},{"denom":"ASSET2","index":"0.000003880039170918"},{"denom":"ASSET3","index":"0.000001134411105672"},{"denom":"ASSET4","index":"0.000010681460240357"},{"denom":"ASSET5","index":"0.000000880451021229"},{"denom":"ASSET6","index":"0.000003584873642311"},{"denom":"ASSET7","index":"0.000005491256130493"},{"denom":"ASSET8","index":"0.000007165542647463"},{"denom":"ASSET9","index":"0.000003094612949497"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003150995592381"},{"denom":"ASSET1","index":"0.000026735906318713"},{"denom":"ASSET10","index":"0.000021370928366269"},{"denom":"ASSET11","index":"0.000026577057751538"},{"denom":"ASSET12","index":"0.000025356196217934"},{"denom":"ASSET13","index":"0.000008349049177946"},{"denom":"ASSET14","index":"0.000024388519635576"},{"denom":"ASSET15","index":"0.000019243917228958"},{"denom":"ASSET16","index":"0.000011858566692713"},{"denom":"ASSET17","index":"0.000009317567603522"},{"denom":"ASSET18","index":"0.000003845362315572"},{"denom":"ASSET2","index":"0.000008099062572798"},{"denom":"ASSET3","index":"0.000002247710476517"},{"denom":"ASSET4","index":"0.000021674805285583"},{"denom":"ASSET5","index":"0.000001751018453776"},{"denom":"ASSET6","index":"0.000007067532365991"},{"denom":"ASSET7","index":"0.000011106766164564"},{"denom":"ASSET8","index":"0.000015177641578730"},{"denom":"ASSET9","index":"0.000006441123951375"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001735896630597"},{"denom":"ASSET1","index":"0.000014474259966527"},{"denom":"ASSET10","index":"0.000010084408758147"},{"denom":"ASSET11","index":"0.000014002239606889"},{"denom":"ASSET12","index":"0.000012609068112910"},{"denom":"ASSET13","index":"0.000004339122939062"},{"denom":"ASSET14","index":"0.000013079851197687"},{"denom":"ASSET15","index":"0.000009351942040176"},{"denom":"ASSET16","index":"0.000006520438519776"},{"denom":"ASSET17","index":"0.000004630501168930"},{"denom":"ASSET18","index":"0.000002205442440512"},{"denom":"ASSET2","index":"0.000004272310096544"},{"denom":"ASSET3","index":"0.000001249647610052"},{"denom":"ASSET4","index":"0.000011762772107687"},{"denom":"ASSET5","index":"0.000000970023491367"},{"denom":"ASSET6","index":"0.000003948144082847"},{"denom":"ASSET7","index":"0.000006046562247845"},{"denom":"ASSET8","index":"0.000007890101791387"},{"denom":"ASSET9","index":"0.000003408073605830"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003300304206809"},{"denom":"ASSET1","index":"0.000027981868665615"},{"denom":"ASSET10","index":"0.000022221493016134"},{"denom":"ASSET11","index":"0.000027777532118325"},{"denom":"ASSET12","index":"0.000026428557640091"},{"denom":"ASSET13","index":"0.000008720047886627"},{"denom":"ASSET14","index":"0.000025512138164618"},{"denom":"ASSET15","index":"0.000020036362120252"},{"denom":"ASSET16","index":"0.000012421157074829"},{"denom":"ASSET17","index":"0.000009711490167791"},{"denom":"ASSET18","index":"0.000004036282970136"},{"denom":"ASSET2","index":"0.000008465189250700"},{"denom":"ASSET3","index":"0.000002356240815614"},{"denom":"ASSET4","index":"0.000022687774056492"},{"denom":"ASSET5","index":"0.000001835200922241"},{"denom":"ASSET6","index":"0.000007409270759323"},{"denom":"ASSET7","index":"0.000011627060915230"},{"denom":"ASSET8","index":"0.000015852235873304"},{"denom":"ASSET9","index":"0.000006733690564218"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001726734301691"},{"denom":"ASSET1","index":"0.000014395988805148"},{"denom":"ASSET10","index":"0.000010029746380297"},{"denom":"ASSET11","index":"0.000013926529312304"},{"denom":"ASSET12","index":"0.000012540835608608"},{"denom":"ASSET13","index":"0.000004315874534955"},{"denom":"ASSET14","index":"0.000013009526126035"},{"denom":"ASSET15","index":"0.000009301526659210"},{"denom":"ASSET16","index":"0.000006485154189852"},{"denom":"ASSET17","index":"0.000004605778267637"},{"denom":"ASSET18","index":"0.000002193886868281"},{"denom":"ASSET2","index":"0.000004249742648985"},{"denom":"ASSET3","index":"0.000001243048763609"},{"denom":"ASSET4","index":"0.000011699192013329"},{"denom":"ASSET5","index":"0.000000964679662201"},{"denom":"ASSET6","index":"0.000003926772973318"},{"denom":"ASSET7","index":"0.000006014156746171"},{"denom":"ASSET8","index":"0.000007847778630999"},{"denom":"ASSET9","index":"0.000003389643643667"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003383074331503"},{"denom":"ASSET1","index":"0.000028697774885580"},{"denom":"ASSET10","index":"0.000022880621123289"},{"denom":"ASSET11","index":"0.000028511966470743"},{"denom":"ASSET12","index":"0.000027173358086556"},{"denom":"ASSET13","index":"0.000008954537947194"},{"denom":"ASSET14","index":"0.000026172910691250"},{"denom":"ASSET15","index":"0.000020614154391480"},{"denom":"ASSET16","index":"0.000012732692592075"},{"denom":"ASSET17","index":"0.000009985655741818"},{"denom":"ASSET18","index":"0.000004132359094826"},{"denom":"ASSET2","index":"0.000008689052893949"},{"denom":"ASSET3","index":"0.000002414485946546"},{"denom":"ASSET4","index":"0.000023266612079392"},{"denom":"ASSET5","index":"0.000001880944791026"},{"denom":"ASSET6","index":"0.000007591453768301"},{"denom":"ASSET7","index":"0.000011922604903868"},{"denom":"ASSET8","index":"0.000016278329144958"},{"denom":"ASSET9","index":"0.000006911169878531"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001436232590899"},{"denom":"ASSET1","index":"0.000011976183987962"},{"denom":"ASSET10","index":"0.000008344549248442"},{"denom":"ASSET11","index":"0.000011585862202045"},{"denom":"ASSET12","index":"0.000010432581326504"},{"denom":"ASSET13","index":"0.000003589949888597"},{"denom":"ASSET14","index":"0.000010822903112421"},{"denom":"ASSET15","index":"0.000007738224144105"},{"denom":"ASSET16","index":"0.000005395030251301"},{"denom":"ASSET17","index":"0.000003831216753031"},{"denom":"ASSET18","index":"0.000001825291199515"},{"denom":"ASSET2","index":"0.000003535633264667"},{"denom":"ASSET3","index":"0.000001033279031975"},{"denom":"ASSET4","index":"0.000009732781101914"},{"denom":"ASSET5","index":"0.000000802117585946"},{"denom":"ASSET6","index":"0.000003266576499617"},{"denom":"ASSET7","index":"0.000005003445288083"},{"denom":"ASSET8","index":"0.000006528100290032"},{"denom":"ASSET9","index":"0.000002819411735168"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003006064648013"},{"denom":"ASSET1","index":"0.000025531157590212"},{"denom":"ASSET10","index":"0.000020524407173472"},{"denom":"ASSET11","index":"0.000025409258384489"},{"denom":"ASSET12","index":"0.000024300714605646"},{"denom":"ASSET13","index":"0.000007986286383048"},{"denom":"ASSET14","index":"0.000023298685931189"},{"denom":"ASSET15","index":"0.000018459726056254"},{"denom":"ASSET16","index":"0.000011316095008653"},{"denom":"ASSET17","index":"0.000008930145684163"},{"denom":"ASSET18","index":"0.000003662445744281"},{"denom":"ASSET2","index":"0.000007743120539446"},{"denom":"ASSET3","index":"0.000002143639104141"},{"denom":"ASSET4","index":"0.000020695936675740"},{"denom":"ASSET5","index":"0.000001670457298921"},{"denom":"ASSET6","index":"0.000006739935351518"},{"denom":"ASSET7","index":"0.000010603283023237"},{"denom":"ASSET8","index":"0.000014518439118465"},{"denom":"ASSET9","index":"0.000006156725809403"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001476546163568"},{"denom":"ASSET1","index":"0.000012315891963405"},{"denom":"ASSET10","index":"0.000008580298213179"},{"denom":"ASSET11","index":"0.000011914434711559"},{"denom":"ASSET12","index":"0.000010728207916557"},{"denom":"ASSET13","index":"0.000003691365408921"},{"denom":"ASSET14","index":"0.000011129665168403"},{"denom":"ASSET15","index":"0.000007957699254808"},{"denom":"ASSET16","index":"0.000005547821683700"},{"denom":"ASSET17","index":"0.000003939724556249"},{"denom":"ASSET18","index":"0.000001876869355381"},{"denom":"ASSET2","index":"0.000003635796467281"},{"denom":"ASSET3","index":"0.000001062614251355"},{"denom":"ASSET4","index":"0.000010009213855342"},{"denom":"ASSET5","index":"0.000000825595704361"},{"denom":"ASSET6","index":"0.000003359085819117"},{"denom":"ASSET7","index":"0.000005145230371820"},{"denom":"ASSET8","index":"0.000006713635398099"},{"denom":"ASSET9","index":"0.000002899791505564"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000002611689387046"},{"denom":"ASSET1","index":"0.000022118950462866"},{"denom":"ASSET10","index":"0.000017388824351878"},{"denom":"ASSET11","index":"0.000021911701626113"},{"denom":"ASSET12","index":"0.000020757567192719"},{"denom":"ASSET13","index":"0.000006870825151743"},{"denom":"ASSET14","index":"0.000020152250667519"},{"denom":"ASSET15","index":"0.000015711809347683"},{"denom":"ASSET16","index":"0.000009830001439303"},{"denom":"ASSET17","index":"0.000007627368499381"},{"denom":"ASSET18","index":"0.000003205559295774"},{"denom":"ASSET2","index":"0.000006678615536452"},{"denom":"ASSET3","index":"0.000001865584989735"},{"denom":"ASSET4","index":"0.000017938012267073"},{"denom":"ASSET5","index":"0.000001453547274796"},{"denom":"ASSET6","index":"0.000005870892100855"},{"denom":"ASSET7","index":"0.000009195154067126"},{"denom":"ASSET8","index":"0.000012492245582088"},{"denom":"ASSET9","index":"0.000005313335607946"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000000860911540335"},{"denom":"ASSET1","index":"0.000007178593209511"},{"denom":"ASSET10","index":"0.000005001581264509"},{"denom":"ASSET11","index":"0.000006944753046495"},{"denom":"ASSET12","index":"0.000006253725385275"},{"denom":"ASSET13","index":"0.000002152029021603"},{"denom":"ASSET14","index":"0.000006487065889823"},{"denom":"ASSET15","index":"0.000004638329558286"},{"denom":"ASSET16","index":"0.000003233789604786"},{"denom":"ASSET17","index":"0.000002296430318850"},{"denom":"ASSET18","index":"0.000001093752386415"},{"denom":"ASSET2","index":"0.000002119051562716"},{"denom":"ASSET3","index":"0.000000619576500299"},{"denom":"ASSET4","index":"0.000005834012272169"},{"denom":"ASSET5","index":"0.000000481171104668"},{"denom":"ASSET6","index":"0.000001958161536025"},{"denom":"ASSET7","index":"0.000002998950124834"},{"denom":"ASSET8","index":"0.000003913325121242"},{"denom":"ASSET9","index":"0.000001690344597186"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000002357406510396"},{"denom":"ASSET1","index":"0.000020099972826550"},{"denom":"ASSET10","index":"0.000016611857270119"},{"denom":"ASSET11","index":"0.000020122040980663"},{"denom":"ASSET12","index":"0.000019473664705632"},{"denom":"ASSET13","index":"0.000006342954228467"},{"denom":"ASSET14","index":"0.000018379978414574"},{"denom":"ASSET15","index":"0.000014858739059306"},{"denom":"ASSET16","index":"0.000008878274052948"},{"denom":"ASSET17","index":"0.000007156982288871"},{"denom":"ASSET18","index":"0.000002845018303307"},{"denom":"ASSET2","index":"0.000006129987919866"},{"denom":"ASSET3","index":"0.000001678183905493"},{"denom":"ASSET4","index":"0.000016284739258605"},{"denom":"ASSET5","index":"0.000001308892339296"},{"denom":"ASSET6","index":"0.000005269046474537"},{"denom":"ASSET7","index":"0.000008337197620164"},{"denom":"ASSET8","index":"0.000011530009666752"},{"denom":"ASSET9","index":"0.000004871853664260"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001198976216272"},{"denom":"ASSET1","index":"0.000010001315625623"},{"denom":"ASSET10","index":"0.000006967712250892"},{"denom":"ASSET11","index":"0.000009674322112094"},{"denom":"ASSET12","index":"0.000008711677656379"},{"denom":"ASSET13","index":"0.000002997949876371"},{"denom":"ASSET14","index":"0.000009037652498526"},{"denom":"ASSET15","index":"0.000006461432574183"},{"denom":"ASSET16","index":"0.000004504564849919"},{"denom":"ASSET17","index":"0.000003199646809949"},{"denom":"ASSET18","index":"0.000001523932387037"},{"denom":"ASSET2","index":"0.000002952109664194"},{"denom":"ASSET3","index":"0.000000862814660308"},{"denom":"ASSET4","index":"0.000008126960283277"},{"denom":"ASSET5","index":"0.000000670285769165"},{"denom":"ASSET6","index":"0.000002728001960218"},{"denom":"ASSET7","index":"0.000004177571336390"},{"denom":"ASSET8","index":"0.000005451929234909"},{"denom":"ASSET9","index":"0.000002354149563130"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000002792091306062"},{"denom":"ASSET1","index":"0.000023760392481519"},{"denom":"ASSET10","index":"0.000019330735214415"},{"denom":"ASSET11","index":"0.000023705763948043"},{"denom":"ASSET12","index":"0.000022788595153270"},{"denom":"ASSET13","index":"0.000007460432475948"},{"denom":"ASSET14","index":"0.000021701401606991"},{"denom":"ASSET15","index":"0.000017344296121870"},{"denom":"ASSET16","index":"0.000010515175863945"},{"denom":"ASSET17","index":"0.000008375559402161"},{"denom":"ASSET18","index":"0.000003388923471278"},{"denom":"ASSET2","index":"0.000007222909907971"},{"denom":"ASSET3","index":"0.000001989926471838"},{"denom":"ASSET4","index":"0.000019255294602933"},{"denom":"ASSET5","index":"0.000001551437823125"},{"denom":"ASSET6","index":"0.000006253588147261"},{"denom":"ASSET7","index":"0.000009862028954195"},{"denom":"ASSET8","index":"0.000013562244421912"},{"denom":"ASSET9","index":"0.000005741841810541"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001507638919625"},{"denom":"ASSET1","index":"0.000012569401049902"},{"denom":"ASSET10","index":"0.000008757228353136"},{"denom":"ASSET11","index":"0.000012160184771718"},{"denom":"ASSET12","index":"0.000010949766096248"},{"denom":"ASSET13","index":"0.000003769097299062"},{"denom":"ASSET14","index":"0.000011358982374432"},{"denom":"ASSET15","index":"0.000008124020006893"},{"denom":"ASSET16","index":"0.000005660107258249"},{"denom":"ASSET17","index":"0.000004018934605743"},{"denom":"ASSET18","index":"0.000001912547658039"},{"denom":"ASSET2","index":"0.000003708791742277"},{"denom":"ASSET3","index":"0.000001085500022130"},{"denom":"ASSET4","index":"0.000010217484335287"},{"denom":"ASSET5","index":"0.000000839970255220"},{"denom":"ASSET6","index":"0.000003428801657204"},{"denom":"ASSET7","index":"0.000005250890980065"},{"denom":"ASSET8","index":"0.000006853295774638"},{"denom":"ASSET9","index":"0.000002959279822235"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003131246414749"},{"denom":"ASSET1","index":"0.000026589761836242"},{"denom":"ASSET10","index":"0.000021355242603721"},{"denom":"ASSET11","index":"0.000026458316408852"},{"denom":"ASSET12","index":"0.000025293988029420"},{"denom":"ASSET13","index":"0.000008316673174883"},{"denom":"ASSET14","index":"0.000024263343459355"},{"denom":"ASSET15","index":"0.000019213959771091"},{"denom":"ASSET16","index":"0.000011784585795875"},{"denom":"ASSET17","index":"0.000009292893547134"},{"denom":"ASSET18","index":"0.000003813004198036"},{"denom":"ASSET2","index":"0.000008060944762894"},{"denom":"ASSET3","index":"0.000002234070199415"},{"denom":"ASSET4","index":"0.000021557233504015"},{"denom":"ASSET5","index":"0.000001738116490695"},{"denom":"ASSET6","index":"0.000007021386599103"},{"denom":"ASSET7","index":"0.000011043212117572"},{"denom":"ASSET8","index":"0.000015117900391662"},{"denom":"ASSET9","index":"0.000006411442995536"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001538667310820"},{"denom":"ASSET1","index":"0.000012827917927858"},{"denom":"ASSET10","index":"0.000008937244372687"},{"denom":"ASSET11","index":"0.000012409488429871"},{"denom":"ASSET12","index":"0.000011174685151587"},{"denom":"ASSET13","index":"0.000003845530209513"},{"denom":"ASSET14","index":"0.000011592355937882"},{"denom":"ASSET15","index":"0.000008288166520415"},{"denom":"ASSET16","index":"0.000005778727600031"},{"denom":"ASSET17","index":"0.000004103871540546"},{"denom":"ASSET18","index":"0.000001954820673732"},{"denom":"ASSET2","index":"0.000003786730053405"},{"denom":"ASSET3","index":"0.000001107719069920"},{"denom":"ASSET4","index":"0.000010424698644316"},{"denom":"ASSET5","index":"0.000000859620346726"},{"denom":"ASSET6","index":"0.000003499178322240"},{"denom":"ASSET7","index":"0.000005359160034507"},{"denom":"ASSET8","index":"0.000006993045662639"},{"denom":"ASSET9","index":"0.000003020431244761"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003070496060295"},{"denom":"ASSET1","index":"0.000026054009108675"},{"denom":"ASSET10","index":"0.000020821706468932"},{"denom":"ASSET11","index":"0.000025897661631707"},{"denom":"ASSET12","index":"0.000024706407518076"},{"denom":"ASSET13","index":"0.000008135385272267"},{"denom":"ASSET14","index":"0.000023765921524780"},{"denom":"ASSET15","index":"0.000018749935123185"},{"denom":"ASSET16","index":"0.000011556337558875"},{"denom":"ASSET17","index":"0.000009079232430047"},{"denom":"ASSET18","index":"0.000003747682066764"},{"denom":"ASSET2","index":"0.000007892419371659"},{"denom":"ASSET3","index":"0.000002191201298955"},{"denom":"ASSET4","index":"0.000021122052487200"},{"denom":"ASSET5","index":"0.000001706992646915"},{"denom":"ASSET6","index":"0.000006888142834266"},{"denom":"ASSET7","index":"0.000010823268476718"},{"denom":"ASSET8","index":"0.000014789657857476"},{"denom":"ASSET9","index":"0.000006276911852268"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001679222100186"},{"denom":"ASSET1","index":"0.000013999028794594"},{"denom":"ASSET10","index":"0.000009753438641601"},{"denom":"ASSET11","index":"0.000013542280383343"},{"denom":"ASSET12","index":"0.000012194769233410"},{"denom":"ASSET13","index":"0.000004196505199295"},{"denom":"ASSET14","index":"0.000012650484277214"},{"denom":"ASSET15","index":"0.000009045065257184"},{"denom":"ASSET16","index":"0.000006306124840851"},{"denom":"ASSET17","index":"0.000004478614512126"},{"denom":"ASSET18","index":"0.000002133387092820"},{"denom":"ASSET2","index":"0.000004132436417626"},{"denom":"ASSET3","index":"0.000001208523228411"},{"denom":"ASSET4","index":"0.000011376342215965"},{"denom":"ASSET5","index":"0.000000938297641211"},{"denom":"ASSET6","index":"0.000003818809397684"},{"denom":"ASSET7","index":"0.000005848343062154"},{"denom":"ASSET8","index":"0.000007631418590690"},{"denom":"ASSET9","index":"0.000003295925469872"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003295755498274"},{"denom":"ASSET1","index":"0.000027960125957180"},{"denom":"ASSET10","index":"0.000022298091456525"},{"denom":"ASSET11","index":"0.000027779779629540"},{"denom":"ASSET12","index":"0.000026478335493542"},{"denom":"ASSET13","index":"0.000008724566942758"},{"denom":"ASSET14","index":"0.000025500389224880"},{"denom":"ASSET15","index":"0.000020088119547171"},{"denom":"ASSET16","index":"0.000012404652968467"},{"denom":"ASSET17","index":"0.000009730254100732"},{"denom":"ASSET18","index":"0.000004025857251145"},{"denom":"ASSET2","index":"0.000008465992991141"},{"denom":"ASSET3","index":"0.000002352288079447"},{"denom":"ASSET4","index":"0.000022667879187178"},{"denom":"ASSET5","index":"0.000001832649164275"},{"denom":"ASSET6","index":"0.000007396215489940"},{"denom":"ASSET7","index":"0.000011616026271508"},{"denom":"ASSET8","index":"0.000015861127767022"},{"denom":"ASSET9","index":"0.000006733269226830"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001488486853561"},{"denom":"ASSET1","index":"0.000012409943784184"},{"denom":"ASSET10","index":"0.000008645838046025"},{"denom":"ASSET11","index":"0.000012005445379346"},{"denom":"ASSET12","index":"0.000010810451131374"},{"denom":"ASSET13","index":"0.000003720376180879"},{"denom":"ASSET14","index":"0.000011214949536212"},{"denom":"ASSET15","index":"0.000008018487089665"},{"denom":"ASSET16","index":"0.000005590655707614"},{"denom":"ASSET17","index":"0.000003970139229188"},{"denom":"ASSET18","index":"0.000001891303352350"},{"denom":"ASSET2","index":"0.000003663191375205"},{"denom":"ASSET3","index":"0.000001071374153354"},{"denom":"ASSET4","index":"0.000010085549624159"},{"denom":"ASSET5","index":"0.000000831702541340"},{"denom":"ASSET6","index":"0.000003384835924059"},{"denom":"ASSET7","index":"0.000005184475396726"},{"denom":"ASSET8","index":"0.000006765467082995"},{"denom":"ASSET9","index":"0.000002921470807498"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003140601357292"},{"denom":"ASSET1","index":"0.000026678854887219"},{"denom":"ASSET10","index":"0.000021467437308134"},{"denom":"ASSET11","index":"0.000026557150856893"},{"denom":"ASSET12","index":"0.000025409189778577"},{"denom":"ASSET13","index":"0.000008348678217638"},{"denom":"ASSET14","index":"0.000024348515645151"},{"denom":"ASSET15","index":"0.000019305257093893"},{"denom":"ASSET16","index":"0.000011824039078448"},{"denom":"ASSET17","index":"0.000009337874135725"},{"denom":"ASSET18","index":"0.000003825021517438"},{"denom":"ASSET2","index":"0.000008092644314938"},{"denom":"ASSET3","index":"0.000002240059115813"},{"denom":"ASSET4","index":"0.000021626536887159"},{"denom":"ASSET5","index":"0.000001745574888449"},{"denom":"ASSET6","index":"0.000007040920669072"},{"denom":"ASSET7","index":"0.000011079696231301"},{"denom":"ASSET8","index":"0.000015176664815864"},{"denom":"ASSET9","index":"0.000006434669973810"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001385039568420"},{"denom":"ASSET1","index":"0.000011547928050470"},{"denom":"ASSET10","index":"0.000008045290512347"},{"denom":"ASSET11","index":"0.000011171268467624"},{"denom":"ASSET12","index":"0.000010059084660007"},{"denom":"ASSET13","index":"0.000003461116009305"},{"denom":"ASSET14","index":"0.000010435744242853"},{"denom":"ASSET15","index":"0.000007461023285412"},{"denom":"ASSET16","index":"0.000005202054396163"},{"denom":"ASSET17","index":"0.000003694427456948"},{"denom":"ASSET18","index":"0.000001759721935608"},{"denom":"ASSET2","index":"0.000003408719794369"},{"denom":"ASSET3","index":"0.000000996516691625"},{"denom":"ASSET4","index":"0.000009383865512804"},{"denom":"ASSET5","index":"0.000000774079930102"},{"denom":"ASSET6","index":"0.000003149704543173"},{"denom":"ASSET7","index":"0.000004824406205487"},{"denom":"ASSET8","index":"0.000006294466047200"},{"denom":"ASSET9","index":"0.000002718671529731"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000002978674281858"},{"denom":"ASSET1","index":"0.000025310372422717"},{"denom":"ASSET10","index":"0.000020411345436720"},{"denom":"ASSET11","index":"0.000025206262983954"},{"denom":"ASSET12","index":"0.000024139567910062"},{"denom":"ASSET13","index":"0.000007924745788344"},{"denom":"ASSET14","index":"0.000023102636423037"},{"denom":"ASSET15","index":"0.000018346974201526"},{"denom":"ASSET16","index":"0.000011213830154915"},{"denom":"ASSET17","index":"0.000008871351161454"},{"denom":"ASSET18","index":"0.000003625142276595"},{"denom":"ASSET2","index":"0.000007680838181843"},{"denom":"ASSET3","index":"0.000002123796319816"},{"denom":"ASSET4","index":"0.000020514843977806"},{"denom":"ASSET5","index":"0.000001655567492872"},{"denom":"ASSET6","index":"0.000006676037052519"},{"denom":"ASSET7","index":"0.000010510115662832"},{"denom":"ASSET8","index":"0.000014407133239162"},{"denom":"ASSET9","index":"0.000006107008804836"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001563741356289"},{"denom":"ASSET1","index":"0.000013036816883138"},{"denom":"ASSET10","index":"0.000009082880828100"},{"denom":"ASSET11","index":"0.000012611783735587"},{"denom":"ASSET12","index":"0.000011356772924286"},{"denom":"ASSET13","index":"0.000003908472310400"},{"denom":"ASSET14","index":"0.000011781101207579"},{"denom":"ASSET15","index":"0.000008423480314776"},{"denom":"ASSET16","index":"0.000005872928997340"},{"denom":"ASSET17","index":"0.000004170681814362"},{"denom":"ASSET18","index":"0.000001986659911066"},{"denom":"ASSET2","index":"0.000003848558848473"},{"denom":"ASSET3","index":"0.000001125668219966"},{"denom":"ASSET4","index":"0.000010594814661429"},{"denom":"ASSET5","index":"0.000000873679247744"},{"denom":"ASSET6","index":"0.000003556392613548"},{"denom":"ASSET7","index":"0.000005446486121273"},{"denom":"ASSET8","index":"0.000007106793880903"},{"denom":"ASSET9","index":"0.000003069683843425"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003115193601728"},{"denom":"ASSET1","index":"0.000026433576226141"},{"denom":"ASSET10","index":"0.000021120836274624"},{"denom":"ASSET11","index":"0.000026274076149270"},{"denom":"ASSET12","index":"0.000025063206789151"},{"denom":"ASSET13","index":"0.000008253838888439"},{"denom":"ASSET14","index":"0.000024111622086359"},{"denom":"ASSET15","index":"0.000019020166052921"},{"denom":"ASSET16","index":"0.000011725264187843"},{"denom":"ASSET17","index":"0.000009210335248597"},{"denom":"ASSET18","index":"0.000003802618681808"},{"denom":"ASSET2","index":"0.000008007094168018"},{"denom":"ASSET3","index":"0.000002223045227271"},{"denom":"ASSET4","index":"0.000021430343290469"},{"denom":"ASSET5","index":"0.000001731871182363"},{"denom":"ASSET6","index":"0.000006989160352022"},{"denom":"ASSET7","index":"0.000010981276608696"},{"denom":"ASSET8","index":"0.000015004007461071"},{"denom":"ASSET9","index":"0.000006368316319391"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001688791638136"},{"denom":"ASSET1","index":"0.000014080258863939"},{"denom":"ASSET10","index":"0.000009809129194434"},{"denom":"ASSET11","index":"0.000013620783833550"},{"denom":"ASSET12","index":"0.000012265553395360"},{"denom":"ASSET13","index":"0.000004220322334414"},{"denom":"ASSET14","index":"0.000012723923918464"},{"denom":"ASSET15","index":"0.000009096721995874"},{"denom":"ASSET16","index":"0.000006342080828109"},{"denom":"ASSET17","index":"0.000004504180706554"},{"denom":"ASSET18","index":"0.000002144953146672"},{"denom":"ASSET2","index":"0.000004156260911908"},{"denom":"ASSET3","index":"0.000001214958013048"},{"denom":"ASSET4","index":"0.000011442695468341"},{"denom":"ASSET5","index":"0.000000943249221039"},{"denom":"ASSET6","index":"0.000003840371828516"},{"denom":"ASSET7","index":"0.000005881501290436"},{"denom":"ASSET8","index":"0.000007675221120608"},{"denom":"ASSET9","index":"0.000003314626361051"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003342989987813"},{"denom":"ASSET1","index":"0.000028363859076608"},{"denom":"ASSET10","index":"0.000022643596968544"},{"denom":"ASSET11","index":"0.000028187678804911"},{"denom":"ASSET12","index":"0.000026879157824253"},{"denom":"ASSET13","index":"0.000008853292918908"},{"denom":"ASSET14","index":"0.000025870927331183"},{"denom":"ASSET15","index":"0.000020395094195043"},{"denom":"ASSET16","index":"0.000012581780801373"},{"denom":"ASSET17","index":"0.000009877287329505"},{"denom":"ASSET18","index":"0.000004080927248291"},{"denom":"ASSET2","index":"0.000008590241612281"},{"denom":"ASSET3","index":"0.000002384972961476"},{"denom":"ASSET4","index":"0.000022995501297970"},{"denom":"ASSET5","index":"0.000001858071035633"},{"denom":"ASSET6","index":"0.000007500418590266"},{"denom":"ASSET7","index":"0.000011782462758670"},{"denom":"ASSET8","index":"0.000016095075530395"},{"denom":"ASSET9","index":"0.000006831506736707"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001571496317510"},{"denom":"ASSET1","index":"0.000013101483241955"},{"denom":"ASSET10","index":"0.000009127906315185"},{"denom":"ASSET11","index":"0.000012674221268720"},{"denom":"ASSET12","index":"0.000011413128948859"},{"denom":"ASSET13","index":"0.000003927726401627"},{"denom":"ASSET14","index":"0.000011839579408375"},{"denom":"ASSET15","index":"0.000008464899606481"},{"denom":"ASSET16","index":"0.000005901733523932"},{"denom":"ASSET17","index":"0.000004191468360414"},{"denom":"ASSET18","index":"0.000001996729506447"},{"denom":"ASSET2","index":"0.000003867268629536"},{"denom":"ASSET3","index":"0.000001131250124766"},{"denom":"ASSET4","index":"0.000010647059997798"},{"denom":"ASSET5","index":"0.000000878057844331"},{"denom":"ASSET6","index":"0.000003573906419993"},{"denom":"ASSET7","index":"0.000005473254280118"},{"denom":"ASSET8","index":"0.000007142132243950"},{"denom":"ASSET9","index":"0.000003084563647228"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003113134051861"},{"denom":"ASSET1","index":"0.000026415094552464"},{"denom":"ASSET10","index":"0.000021090707465492"},{"denom":"ASSET11","index":"0.000026251548228726"},{"denom":"ASSET12","index":"0.000025034408517114"},{"denom":"ASSET13","index":"0.000008245703890405"},{"denom":"ASSET14","index":"0.000024093200316600"},{"denom":"ASSET15","index":"0.000018995578271326"},{"denom":"ASSET16","index":"0.000011717396138812"},{"denom":"ASSET17","index":"0.000009199501798709"},{"denom":"ASSET18","index":"0.000003801350346824"},{"denom":"ASSET2","index":"0.000007999912620195"},{"denom":"ASSET3","index":"0.000002221641081089"},{"denom":"ASSET4","index":"0.000021415082747190"},{"denom":"ASSET5","index":"0.000001730738444371"},{"denom":"ASSET6","index":"0.000006985361363625"},{"denom":"ASSET7","index":"0.000010973556930807"},{"denom":"ASSET8","index":"0.000014990236718633"},{"denom":"ASSET9","index":"0.000006362695679170"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001486431692511"},{"denom":"ASSET1","index":"0.000012397696164316"},{"denom":"ASSET10","index":"0.000008637613387551"},{"denom":"ASSET11","index":"0.000011993186507636"},{"denom":"ASSET12","index":"0.000010799842650204"},{"denom":"ASSET13","index":"0.000003716482933529"},{"denom":"ASSET14","index":"0.000011203544902380"},{"denom":"ASSET15","index":"0.000008010260087670"},{"denom":"ASSET16","index":"0.000005584816956599"},{"denom":"ASSET17","index":"0.000003965970925374"},{"denom":"ASSET18","index":"0.000001889326540182"},{"denom":"ASSET2","index":"0.000003659157213720"},{"denom":"ASSET3","index":"0.000001070618372770"},{"denom":"ASSET4","index":"0.000010074793405297"},{"denom":"ASSET5","index":"0.000000830819234978"},{"denom":"ASSET6","index":"0.000003381410064224"},{"denom":"ASSET7","index":"0.000005179499895414"},{"denom":"ASSET8","index":"0.000006757975701421"},{"denom":"ASSET9","index":"0.000002918767283230"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003023961266495"},{"denom":"ASSET1","index":"0.000025674667559579"},{"denom":"ASSET10","index":"0.000020567435721356"},{"denom":"ASSET11","index":"0.000025532965784321"},{"denom":"ASSET12","index":"0.000024383768132692"},{"denom":"ASSET13","index":"0.000008022807352722"},{"denom":"ASSET14","index":"0.000023423766496233"},{"denom":"ASSET15","index":"0.000018512228577533"},{"denom":"ASSET16","index":"0.000011384524743973"},{"denom":"ASSET17","index":"0.000008960010456843"},{"denom":"ASSET18","index":"0.000003688974211121"},{"denom":"ASSET2","index":"0.000007780619396113"},{"denom":"ASSET3","index":"0.000002157718690670"},{"denom":"ASSET4","index":"0.000020813357966886"},{"denom":"ASSET5","index":"0.000001681323481152"},{"denom":"ASSET6","index":"0.000006783427048921"},{"denom":"ASSET7","index":"0.000010664665966441"},{"denom":"ASSET8","index":"0.000014584270248941"},{"denom":"ASSET9","index":"0.000006187655866052"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001789525520762"},{"denom":"ASSET1","index":"0.000014923544215299"},{"denom":"ASSET10","index":"0.000010397506905977"},{"denom":"ASSET11","index":"0.000014436898494348"},{"denom":"ASSET12","index":"0.000013000171779235"},{"denom":"ASSET13","index":"0.000004474200642702"},{"denom":"ASSET14","index":"0.000013486043818595"},{"denom":"ASSET15","index":"0.000009642393672833"},{"denom":"ASSET16","index":"0.000006722519347127"},{"denom":"ASSET17","index":"0.000004774389100140"},{"denom":"ASSET18","index":"0.000002273850196939"},{"denom":"ASSET2","index":"0.000004405342981073"},{"denom":"ASSET3","index":"0.000001288179849576"},{"denom":"ASSET4","index":"0.000012128232625798"},{"denom":"ASSET5","index":"0.000001000370297599"},{"denom":"ASSET6","index":"0.000004071112533615"},{"denom":"ASSET7","index":"0.000006234326262993"},{"denom":"ASSET8","index":"0.000008135261932908"},{"denom":"ASSET9","index":"0.000003514061787852"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003488279034648"},{"denom":"ASSET1","index":"0.000029592208548275"},{"denom":"ASSET10","index":"0.000023577626976592"},{"denom":"ASSET11","index":"0.000029395914355993"},{"denom":"ASSET12","index":"0.000028007798530295"},{"denom":"ASSET13","index":"0.000009231498766276"},{"denom":"ASSET14","index":"0.000026986732997785"},{"denom":"ASSET15","index":"0.000021244630549189"},{"denom":"ASSET16","index":"0.000013129960095172"},{"denom":"ASSET17","index":"0.000010292381952670"},{"denom":"ASSET18","index":"0.000004261641431672"},{"denom":"ASSET2","index":"0.000008958343988321"},{"denom":"ASSET3","index":"0.000002489657102823"},{"denom":"ASSET4","index":"0.000023991917258738"},{"denom":"ASSET5","index":"0.000001939742890351"},{"denom":"ASSET6","index":"0.000007829259808535"},{"denom":"ASSET7","index":"0.000012294264842111"},{"denom":"ASSET8","index":"0.000016782088113605"},{"denom":"ASSET9","index":"0.000007125719490615"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001504632489095"},{"denom":"ASSET1","index":"0.000012543084148708"},{"denom":"ASSET10","index":"0.000008738830231438"},{"denom":"ASSET11","index":"0.000012134501498699"},{"denom":"ASSET12","index":"0.000010926897843985"},{"denom":"ASSET13","index":"0.000003760573206331"},{"denom":"ASSET14","index":"0.000011335480493994"},{"denom":"ASSET15","index":"0.000008104451906425"},{"denom":"ASSET16","index":"0.000005650267962622"},{"denom":"ASSET17","index":"0.000004012577307899"},{"denom":"ASSET18","index":"0.000001911199106291"},{"denom":"ASSET2","index":"0.000003702780265705"},{"denom":"ASSET3","index":"0.000001083281631273"},{"denom":"ASSET4","index":"0.000010193733911157"},{"denom":"ASSET5","index":"0.000000840685682831"},{"denom":"ASSET6","index":"0.000003421207682886"},{"denom":"ASSET7","index":"0.000005240341290738"},{"denom":"ASSET8","index":"0.000006837711289210"},{"denom":"ASSET9","index":"0.000002953488070376"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003015423229771"},{"denom":"ASSET1","index":"0.000025588098096649"},{"denom":"ASSET10","index":"0.000020460473772645"},{"denom":"ASSET11","index":"0.000025438043766359"},{"denom":"ASSET12","index":"0.000024273358860204"},{"denom":"ASSET13","index":"0.000007991752317173"},{"denom":"ASSET14","index":"0.000023342063892494"},{"denom":"ASSET15","index":"0.000018422728556898"},{"denom":"ASSET16","index":"0.000011348811151398"},{"denom":"ASSET17","index":"0.000008919790197810"},{"denom":"ASSET18","index":"0.000003679502338318"},{"denom":"ASSET2","index":"0.000007752126098631"},{"denom":"ASSET3","index":"0.000002151933074669"},{"denom":"ASSET4","index":"0.000020744635257959"},{"denom":"ASSET5","index":"0.000001676458472807"},{"denom":"ASSET6","index":"0.000006763790928604"},{"denom":"ASSET7","index":"0.000010629564741383"},{"denom":"ASSET8","index":"0.000014527278079751"},{"denom":"ASSET9","index":"0.000006165283413682"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001790270882045"},{"denom":"ASSET1","index":"0.000014924962381265"},{"denom":"ASSET10","index":"0.000010398687848362"},{"denom":"ASSET11","index":"0.000014438353512768"},{"denom":"ASSET12","index":"0.000013001639266884"},{"denom":"ASSET13","index":"0.000004474427888377"},{"denom":"ASSET14","index":"0.000013487623477013"},{"denom":"ASSET15","index":"0.000009643475881721"},{"denom":"ASSET16","index":"0.000006723198012370"},{"denom":"ASSET17","index":"0.000004774888563278"},{"denom":"ASSET18","index":"0.000002274381117071"},{"denom":"ASSET2","index":"0.000004405715467922"},{"denom":"ASSET3","index":"0.000001288670212721"},{"denom":"ASSET4","index":"0.000012129616185469"},{"denom":"ASSET5","index":"0.000001000078046809"},{"denom":"ASSET6","index":"0.000004071523241162"},{"denom":"ASSET7","index":"0.000006235339827137"},{"denom":"ASSET8","index":"0.000008136175240279"},{"denom":"ASSET9","index":"0.000003514327977106"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003452635056994"},{"denom":"ASSET1","index":"0.000029280443630050"},{"denom":"ASSET10","index":"0.000023297581891953"},{"denom":"ASSET11","index":"0.000029078046899152"},{"denom":"ASSET12","index":"0.000027688393753974"},{"denom":"ASSET13","index":"0.000009130247174920"},{"denom":"ASSET14","index":"0.000026700258191979"},{"denom":"ASSET15","index":"0.000020998119885469"},{"denom":"ASSET16","index":"0.000012993858989816"},{"denom":"ASSET17","index":"0.000010174919177657"},{"denom":"ASSET18","index":"0.000004220034662939"},{"denom":"ASSET2","index":"0.000008861755768133"},{"denom":"ASSET3","index":"0.000002464736347038"},{"denom":"ASSET4","index":"0.000023740327943060"},{"denom":"ASSET5","index":"0.000001919615043943"},{"denom":"ASSET6","index":"0.000007749671229698"},{"denom":"ASSET7","index":"0.000012165961282812"},{"denom":"ASSET8","index":"0.000016598407083950"},{"denom":"ASSET9","index":"0.000007048985746822"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001835550145227"},{"denom":"ASSET1","index":"0.000015324623289081"},{"denom":"ASSET10","index":"0.000010676536631006"},{"denom":"ASSET11","index":"0.000014825027987456"},{"denom":"ASSET12","index":"0.000013348446318211"},{"denom":"ASSET13","index":"0.000004592576069005"},{"denom":"ASSET14","index":"0.000013848041619836"},{"denom":"ASSET15","index":"0.000009899388384035"},{"denom":"ASSET16","index":"0.000006901816574290"},{"denom":"ASSET17","index":"0.000004903435367793"},{"denom":"ASSET18","index":"0.000002335145446851"},{"denom":"ASSET2","index":"0.000004522262656184"},{"denom":"ASSET3","index":"0.000001321152019851"},{"denom":"ASSET4","index":"0.000012452875481226"},{"denom":"ASSET5","index":"0.000001025095544814"},{"denom":"ASSET6","index":"0.000004178097003954"},{"denom":"ASSET7","index":"0.000006402221272666"},{"denom":"ASSET8","index":"0.000008352493301969"},{"denom":"ASSET9","index":"0.000003608188289508"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003336473275634"},{"denom":"ASSET1","index":"0.000028284037775138"},{"denom":"ASSET10","index":"0.000022321061137243"},{"denom":"ASSET11","index":"0.000028041053149272"},{"denom":"ASSET12","index":"0.000026607048139233"},{"denom":"ASSET13","index":"0.000008795774551756"},{"denom":"ASSET14","index":"0.000025776026947277"},{"denom":"ASSET15","index":"0.000020150006768141"},{"denom":"ASSET16","index":"0.000012562977954735"},{"denom":"ASSET17","index":"0.000009778271060189"},{"denom":"ASSET18","index":"0.000004091528532498"},{"denom":"ASSET2","index":"0.000008544798017437"},{"denom":"ASSET3","index":"0.000002382883485470"},{"denom":"ASSET4","index":"0.000022934405116164"},{"denom":"ASSET5","index":"0.000001855148612588"},{"denom":"ASSET6","index":"0.000007498692848558"},{"denom":"ASSET7","index":"0.000011756140274513"},{"denom":"ASSET8","index":"0.000015991743254740"},{"denom":"ASSET9","index":"0.000006799136288961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001764742979644"},{"denom":"ASSET1","index":"0.000014715413525055"},{"denom":"ASSET10","index":"0.000010252344388411"},{"denom":"ASSET11","index":"0.000014235671854472"},{"denom":"ASSET12","index":"0.000012819403806098"},{"denom":"ASSET13","index":"0.000004411268809023"},{"denom":"ASSET14","index":"0.000013298556836595"},{"denom":"ASSET15","index":"0.000009507714678855"},{"denom":"ASSET16","index":"0.000006629264655353"},{"denom":"ASSET17","index":"0.000004707943412672"},{"denom":"ASSET18","index":"0.000002242718729968"},{"denom":"ASSET2","index":"0.000004343575199063"},{"denom":"ASSET3","index":"0.000001270873946982"},{"denom":"ASSET4","index":"0.000011958811999481"},{"denom":"ASSET5","index":"0.000000985972145064"},{"denom":"ASSET6","index":"0.000004013936750564"},{"denom":"ASSET7","index":"0.000006147757064510"},{"denom":"ASSET8","index":"0.000008021987100262"},{"denom":"ASSET9","index":"0.000003464735549761"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003371223111771"},{"denom":"ASSET1","index":"0.000028586584995448"},{"denom":"ASSET10","index":"0.000022716281614844"},{"denom":"ASSET11","index":"0.000028381809067472"},{"denom":"ASSET12","index":"0.000027011101270499"},{"denom":"ASSET13","index":"0.000008910504058238"},{"denom":"ASSET14","index":"0.000026065694327630"},{"denom":"ASSET15","index":"0.000020479714095343"},{"denom":"ASSET16","index":"0.000012688778091614"},{"denom":"ASSET17","index":"0.000009925875585388"},{"denom":"ASSET18","index":"0.000004122881217339"},{"denom":"ASSET2","index":"0.000008649339803247"},{"denom":"ASSET3","index":"0.000002407313457267"},{"denom":"ASSET4","index":"0.000023177863483423"},{"denom":"ASSET5","index":"0.000001874397047373"},{"denom":"ASSET6","index":"0.000007568278053481"},{"denom":"ASSET7","index":"0.000011878402488901"},{"denom":"ASSET8","index":"0.000016198768839280"},{"denom":"ASSET9","index":"0.000006880150170591"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001519402004985"},{"denom":"ASSET1","index":"0.000012669186594649"},{"denom":"ASSET10","index":"0.000008826466179926"},{"denom":"ASSET11","index":"0.000012255973562605"},{"denom":"ASSET12","index":"0.000011036700348729"},{"denom":"ASSET13","index":"0.000003798237040326"},{"denom":"ASSET14","index":"0.000011448841492233"},{"denom":"ASSET15","index":"0.000008185476833202"},{"denom":"ASSET16","index":"0.000005707270529482"},{"denom":"ASSET17","index":"0.000004053346512768"},{"denom":"ASSET18","index":"0.000001930471259949"},{"denom":"ASSET2","index":"0.000003739819114914"},{"denom":"ASSET3","index":"0.000001093862254735"},{"denom":"ASSET4","index":"0.000010296025367816"},{"denom":"ASSET5","index":"0.000000848935723420"},{"denom":"ASSET6","index":"0.000003455768651901"},{"denom":"ASSET7","index":"0.000005292985608899"},{"denom":"ASSET8","index":"0.000006906177861104"},{"denom":"ASSET9","index":"0.000002983065805906"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003090388166914"},{"denom":"ASSET1","index":"0.000026235396530584"},{"denom":"ASSET10","index":"0.000021016328726441"},{"denom":"ASSET11","index":"0.000026091077525301"},{"denom":"ASSET12","index":"0.000024916432469284"},{"denom":"ASSET13","index":"0.000008198423394567"},{"denom":"ASSET14","index":"0.000023935350029219"},{"denom":"ASSET15","index":"0.000018916111125702"},{"denom":"ASSET16","index":"0.000011633439861257"},{"denom":"ASSET17","index":"0.000009156707623184"},{"denom":"ASSET18","index":"0.000003769226369030"},{"denom":"ASSET2","index":"0.000007950992094695"},{"denom":"ASSET3","index":"0.000002205065882760"},{"denom":"ASSET4","index":"0.000021268551776440"},{"denom":"ASSET5","index":"0.000001717872208784"},{"denom":"ASSET6","index":"0.000006931889619894"},{"denom":"ASSET7","index":"0.000010897757198785"},{"denom":"ASSET8","index":"0.000014903243728132"},{"denom":"ASSET9","index":"0.000006323427167640"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001518878942956"},{"denom":"ASSET1","index":"0.000012665267621292"},{"denom":"ASSET10","index":"0.000008823986077449"},{"denom":"ASSET11","index":"0.000012252067733139"},{"denom":"ASSET12","index":"0.000011032961258059"},{"denom":"ASSET13","index":"0.000003796959064490"},{"denom":"ASSET14","index":"0.000011445207974612"},{"denom":"ASSET15","index":"0.000008182978177143"},{"denom":"ASSET16","index":"0.000005705208605625"},{"denom":"ASSET17","index":"0.000004051932467214"},{"denom":"ASSET18","index":"0.000001930172487911"},{"denom":"ASSET2","index":"0.000003738815596953"},{"denom":"ASSET3","index":"0.000001093764409816"},{"denom":"ASSET4","index":"0.000010292823511460"},{"denom":"ASSET5","index":"0.000000848799308881"},{"denom":"ASSET6","index":"0.000003454770460461"},{"denom":"ASSET7","index":"0.000005291055545873"},{"denom":"ASSET8","index":"0.000006904298477127"},{"denom":"ASSET9","index":"0.000002981997347372"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003032310940473"},{"denom":"ASSET1","index":"0.000025733484746235"},{"denom":"ASSET10","index":"0.000020566326171769"},{"denom":"ASSET11","index":"0.000025579130700492"},{"denom":"ASSET12","index":"0.000024402998631681"},{"denom":"ASSET13","index":"0.000008035434808363"},{"denom":"ASSET14","index":"0.000023473377840860"},{"denom":"ASSET15","index":"0.000018519821992016"},{"denom":"ASSET16","index":"0.000011413808805814"},{"denom":"ASSET17","index":"0.000008967671528488"},{"denom":"ASSET18","index":"0.000003701450923042"},{"denom":"ASSET2","index":"0.000007795399667781"},{"denom":"ASSET3","index":"0.000002164126947351"},{"denom":"ASSET4","index":"0.000020862528644023"},{"denom":"ASSET5","index":"0.000001685967393794"},{"denom":"ASSET6","index":"0.000006803442800114"},{"denom":"ASSET7","index":"0.000010689840259007"},{"denom":"ASSET8","index":"0.000014607710652032"},{"denom":"ASSET9","index":"0.000006199747658625"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001387661284101"},{"denom":"ASSET1","index":"0.000011573014587468"},{"denom":"ASSET10","index":"0.000008062929395432"},{"denom":"ASSET11","index":"0.000011195232526081"},{"denom":"ASSET12","index":"0.000010081345808669"},{"denom":"ASSET13","index":"0.000003469153210252"},{"denom":"ASSET14","index":"0.000010458456853962"},{"denom":"ASSET15","index":"0.000007477132344649"},{"denom":"ASSET16","index":"0.000005213124040705"},{"denom":"ASSET17","index":"0.000003702666811251"},{"denom":"ASSET18","index":"0.000001763430297203"},{"denom":"ASSET2","index":"0.000003416142938760"},{"denom":"ASSET3","index":"0.000000999142965196"},{"denom":"ASSET4","index":"0.000009404961585085"},{"denom":"ASSET5","index":"0.000000775694605619"},{"denom":"ASSET6","index":"0.000003156459710063"},{"denom":"ASSET7","index":"0.000004834670963223"},{"denom":"ASSET8","index":"0.000006308893323556"},{"denom":"ASSET9","index":"0.000002724996361089"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000002847838387483"},{"denom":"ASSET1","index":"0.000024182680336096"},{"denom":"ASSET10","index":"0.000019393227963423"},{"denom":"ASSET11","index":"0.000024054653395269"},{"denom":"ASSET12","index":"0.000022982316432831"},{"denom":"ASSET13","index":"0.000007558836235579"},{"denom":"ASSET14","index":"0.000022064079622497"},{"denom":"ASSET15","index":"0.000017450899901336"},{"denom":"ASSET16","index":"0.000010721434414440"},{"denom":"ASSET17","index":"0.000008446187739031"},{"denom":"ASSET18","index":"0.000003472449339717"},{"denom":"ASSET2","index":"0.000007330038539196"},{"denom":"ASSET3","index":"0.000002031951160271"},{"denom":"ASSET4","index":"0.000019603371773062"},{"denom":"ASSET5","index":"0.000001583403578691"},{"denom":"ASSET6","index":"0.000006387295602350"},{"denom":"ASSET7","index":"0.000010043914419286"},{"denom":"ASSET8","index":"0.000013741733556815"},{"denom":"ASSET9","index":"0.000005829813216311"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001740203165372"},{"denom":"ASSET1","index":"0.000014506985633466"},{"denom":"ASSET10","index":"0.000010106727386233"},{"denom":"ASSET11","index":"0.000014033828203465"},{"denom":"ASSET12","index":"0.000012637643303754"},{"denom":"ASSET13","index":"0.000004348390877948"},{"denom":"ASSET14","index":"0.000013109742216014"},{"denom":"ASSET15","index":"0.000009373174592071"},{"denom":"ASSET16","index":"0.000006535288529808"},{"denom":"ASSET17","index":"0.000004640541774324"},{"denom":"ASSET18","index":"0.000002210185042151"},{"denom":"ASSET2","index":"0.000004281704260297"},{"denom":"ASSET3","index":"0.000001252226487004"},{"denom":"ASSET4","index":"0.000011789770593618"},{"denom":"ASSET5","index":"0.000000971719285773"},{"denom":"ASSET6","index":"0.000003956739313965"},{"denom":"ASSET7","index":"0.000006060014064326"},{"denom":"ASSET8","index":"0.000007908186039228"},{"denom":"ASSET9","index":"0.000003415836748573"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003351161845380"},{"denom":"ASSET1","index":"0.000028416485386018"},{"denom":"ASSET10","index":"0.000022605276372189"},{"denom":"ASSET11","index":"0.000028218825237526"},{"denom":"ASSET12","index":"0.000026868556551399"},{"denom":"ASSET13","index":"0.000008859853422879"},{"denom":"ASSET14","index":"0.000025912194276628"},{"denom":"ASSET15","index":"0.000020375555431981"},{"denom":"ASSET16","index":"0.000012611404420708"},{"denom":"ASSET17","index":"0.000009873044520717"},{"denom":"ASSET18","index":"0.000004095473642305"},{"denom":"ASSET2","index":"0.000008599384819082"},{"denom":"ASSET3","index":"0.000002391571176633"},{"denom":"ASSET4","index":"0.000023040021162794"},{"denom":"ASSET5","index":"0.000001862805125681"},{"denom":"ASSET6","index":"0.000007520693553142"},{"denom":"ASSET7","index":"0.000011806544930596"},{"denom":"ASSET8","index":"0.000016107343127742"},{"denom":"ASSET9","index":"0.000006840485865179"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001711866379191"},{"denom":"ASSET1","index":"0.000014286095556473"},{"denom":"ASSET10","index":"0.000009953932372868"},{"denom":"ASSET11","index":"0.000013820467901333"},{"denom":"ASSET12","index":"0.000012444127332464"},{"denom":"ASSET13","index":"0.000004281948436482"},{"denom":"ASSET14","index":"0.000012909754987604"},{"denom":"ASSET15","index":"0.000009230383516596"},{"denom":"ASSET16","index":"0.000006434335097252"},{"denom":"ASSET17","index":"0.000004569541988186"},{"denom":"ASSET18","index":"0.000002177494034331"},{"denom":"ASSET2","index":"0.000004215756269820"},{"denom":"ASSET3","index":"0.000001232543793017"},{"denom":"ASSET4","index":"0.000011608736539419"},{"denom":"ASSET5","index":"0.000000956362683841"},{"denom":"ASSET6","index":"0.000003896207879038"},{"denom":"ASSET7","index":"0.000005968707442112"},{"denom":"ASSET8","index":"0.000007787850781065"},{"denom":"ASSET9","index":"0.000003362105568731"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003408995344605"},{"denom":"ASSET1","index":"0.000028940875589883"},{"denom":"ASSET10","index":"0.000023121939135123"},{"denom":"ASSET11","index":"0.000028765460883304"},{"denom":"ASSET12","index":"0.000027437813762181"},{"denom":"ASSET13","index":"0.000009035078182388"},{"denom":"ASSET14","index":"0.000026397840013038"},{"denom":"ASSET15","index":"0.000020822021063845"},{"denom":"ASSET16","index":"0.000012835900360827"},{"denom":"ASSET17","index":"0.000010082289518918"},{"denom":"ASSET18","index":"0.000004163537456367"},{"denom":"ASSET2","index":"0.000008764373535196"},{"denom":"ASSET3","index":"0.000002432999591430"},{"denom":"ASSET4","index":"0.000023461370966582"},{"denom":"ASSET5","index":"0.000001895172356369"},{"denom":"ASSET6","index":"0.000007651446569151"},{"denom":"ASSET7","index":"0.000012022926111771"},{"denom":"ASSET8","index":"0.000016426068411072"},{"denom":"ASSET9","index":"0.000006969965423669"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001459800105667"},{"denom":"ASSET1","index":"0.000012176396665923"},{"denom":"ASSET10","index":"0.000008484162206626"},{"denom":"ASSET11","index":"0.000011779823335110"},{"denom":"ASSET12","index":"0.000010607197020722"},{"denom":"ASSET13","index":"0.000003650070053435"},{"denom":"ASSET14","index":"0.000011003770351536"},{"denom":"ASSET15","index":"0.000007867650218206"},{"denom":"ASSET16","index":"0.000005484791497715"},{"denom":"ASSET17","index":"0.000003895079438851"},{"denom":"ASSET18","index":"0.000001855233857943"},{"denom":"ASSET2","index":"0.000003594230705131"},{"denom":"ASSET3","index":"0.000001050691410948"},{"denom":"ASSET4","index":"0.000009896100013746"},{"denom":"ASSET5","index":"0.000000815938232363"},{"denom":"ASSET6","index":"0.000003321871434831"},{"denom":"ASSET7","index":"0.000005087078588365"},{"denom":"ASSET8","index":"0.000006638044976977"},{"denom":"ASSET9","index":"0.000002867179598640"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000002975317591563"},{"denom":"ASSET1","index":"0.000025265738469637"},{"denom":"ASSET10","index":"0.000020245724387946"},{"denom":"ASSET11","index":"0.000025128558675417"},{"denom":"ASSET12","index":"0.000023998925764885"},{"denom":"ASSET13","index":"0.000007895668684136"},{"denom":"ASSET14","index":"0.000023051238668493"},{"denom":"ASSET15","index":"0.000018221178423268"},{"denom":"ASSET16","index":"0.000011202197653725"},{"denom":"ASSET17","index":"0.000008818540737002"},{"denom":"ASSET18","index":"0.000003629428323701"},{"denom":"ASSET2","index":"0.000007657107369447"},{"denom":"ASSET3","index":"0.000002122660280404"},{"denom":"ASSET4","index":"0.000020482509156357"},{"denom":"ASSET5","index":"0.000001654309607539"},{"denom":"ASSET6","index":"0.000006675356935536"},{"denom":"ASSET7","index":"0.000010494215679887"},{"denom":"ASSET8","index":"0.000014353927855523"},{"denom":"ASSET9","index":"0.000006089535217587"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001617402557586"},{"denom":"ASSET1","index":"0.000013485147451276"},{"denom":"ASSET10","index":"0.000009395521488362"},{"denom":"ASSET11","index":"0.000013045402724081"},{"denom":"ASSET12","index":"0.000011747619504798"},{"denom":"ASSET13","index":"0.000004042433845849"},{"denom":"ASSET14","index":"0.000012186291683878"},{"denom":"ASSET15","index":"0.000008713380887153"},{"denom":"ASSET16","index":"0.000006074912523982"},{"denom":"ASSET17","index":"0.000004313788518972"},{"denom":"ASSET18","index":"0.000002055002188551"},{"denom":"ASSET2","index":"0.000003980226055173"},{"denom":"ASSET3","index":"0.000001163714704894"},{"denom":"ASSET4","index":"0.000010959296640193"},{"denom":"ASSET5","index":"0.000000903085512923"},{"denom":"ASSET6","index":"0.000003677767486712"},{"denom":"ASSET7","index":"0.000005633022700557"},{"denom":"ASSET8","index":"0.000007351244780963"},{"denom":"ASSET9","index":"0.000003174742420725"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003091273620954"},{"denom":"ASSET1","index":"0.000026212594205506"},{"denom":"ASSET10","index":"0.000020831747389799"},{"denom":"ASSET11","index":"0.000026024829344923"},{"denom":"ASSET12","index":"0.000024768925461013"},{"denom":"ASSET13","index":"0.000008170539761157"},{"denom":"ASSET14","index":"0.000023900540063840"},{"denom":"ASSET15","index":"0.000018780610027247"},{"denom":"ASSET16","index":"0.000011634658240098"},{"denom":"ASSET17","index":"0.000009101405984603"},{"denom":"ASSET18","index":"0.000003780149264156"},{"denom":"ASSET2","index":"0.000007930960667726"},{"denom":"ASSET3","index":"0.000002206123035767"},{"denom":"ASSET4","index":"0.000021253166889363"},{"denom":"ASSET5","index":"0.000001718500807532"},{"denom":"ASSET6","index":"0.000006939076737962"},{"denom":"ASSET7","index":"0.000010891166816552"},{"denom":"ASSET8","index":"0.000014853628574871"},{"denom":"ASSET9","index":"0.000006308302102729"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001496654334782"},{"denom":"ASSET1","index":"0.000012477377024436"},{"denom":"ASSET10","index":"0.000008693096469902"},{"denom":"ASSET11","index":"0.000012070207597683"},{"denom":"ASSET12","index":"0.000010869145414891"},{"denom":"ASSET13","index":"0.000003740467488528"},{"denom":"ASSET14","index":"0.000011275146493218"},{"denom":"ASSET15","index":"0.000008061604145195"},{"denom":"ASSET16","index":"0.000005620924281527"},{"denom":"ASSET17","index":"0.000003991662400298"},{"denom":"ASSET18","index":"0.000001901487064682"},{"denom":"ASSET2","index":"0.000003683218415613"},{"denom":"ASSET3","index":"0.000001077217249546"},{"denom":"ASSET4","index":"0.000010139511822330"},{"denom":"ASSET5","index":"0.000000835953299404"},{"denom":"ASSET6","index":"0.000003403398967385"},{"denom":"ASSET7","index":"0.000005212586506346"},{"denom":"ASSET8","index":"0.000006801540366848"},{"denom":"ASSET9","index":"0.000002937812119289"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003012098530886"},{"denom":"ASSET1","index":"0.000025562058034330"},{"denom":"ASSET10","index":"0.000020450222858637"},{"denom":"ASSET11","index":"0.000025414193224582"},{"denom":"ASSET12","index":"0.000024256065084933"},{"denom":"ASSET13","index":"0.000007984561416691"},{"denom":"ASSET14","index":"0.000023318358139730"},{"denom":"ASSET15","index":"0.000018411259079989"},{"denom":"ASSET16","index":"0.000011336678183578"},{"denom":"ASSET17","index":"0.000008913774138499"},{"denom":"ASSET18","index":"0.000003674960609183"},{"denom":"ASSET2","index":"0.000007744948932800"},{"denom":"ASSET3","index":"0.000002148867969989"},{"denom":"ASSET4","index":"0.000020722540912428"},{"denom":"ASSET5","index":"0.000001674229864542"},{"denom":"ASSET6","index":"0.000006756080138401"},{"denom":"ASSET7","index":"0.000010618450136599"},{"denom":"ASSET8","index":"0.000014514789998911"},{"denom":"ASSET9","index":"0.000006159565713194"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001470615438656"},{"denom":"ASSET1","index":"0.000012263141624205"},{"denom":"ASSET10","index":"0.000008543710077270"},{"denom":"ASSET11","index":"0.000011863435889596"},{"denom":"ASSET12","index":"0.000010682701378752"},{"denom":"ASSET13","index":"0.000003676538596641"},{"denom":"ASSET14","index":"0.000011081935762259"},{"denom":"ASSET15","index":"0.000007923412026863"},{"denom":"ASSET16","index":"0.000005524234917004"},{"denom":"ASSET17","index":"0.000003923055223056"},{"denom":"ASSET18","index":"0.000001868907119959"},{"denom":"ASSET2","index":"0.000003619976464385"},{"denom":"ASSET3","index":"0.000001058654575392"},{"denom":"ASSET4","index":"0.000009965776352407"},{"denom":"ASSET5","index":"0.000000822036322121"},{"denom":"ASSET6","index":"0.000003345178771841"},{"denom":"ASSET7","index":"0.000005123115129088"},{"denom":"ASSET8","index":"0.000006685172681558"},{"denom":"ASSET9","index":"0.000002887496851669"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000002995147819628"},{"denom":"ASSET1","index":"0.000025426980115999"},{"denom":"ASSET10","index":"0.000020372034738960"},{"denom":"ASSET11","index":"0.000025287989623967"},{"denom":"ASSET12","index":"0.000024150599022202"},{"denom":"ASSET13","index":"0.000007946076587902"},{"denom":"ASSET14","index":"0.000023198024872944"},{"denom":"ASSET15","index":"0.000018335727027304"},{"denom":"ASSET16","index":"0.000011274635486105"},{"denom":"ASSET17","index":"0.000008875015361763"},{"denom":"ASSET18","index":"0.000003653177061349"},{"denom":"ASSET2","index":"0.000007706361997735"},{"denom":"ASSET3","index":"0.000002137037997503"},{"denom":"ASSET4","index":"0.000020612735071168"},{"denom":"ASSET5","index":"0.000001665450131859"},{"denom":"ASSET6","index":"0.000006718182222688"},{"denom":"ASSET7","index":"0.000010561635089256"},{"denom":"ASSET8","index":"0.000014445035982826"},{"denom":"ASSET9","index":"0.000006128513210961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001778581753434"},{"denom":"ASSET1","index":"0.000014888315804569"},{"denom":"ASSET10","index":"0.000010370885153828"},{"denom":"ASSET11","index":"0.000014404007158094"},{"denom":"ASSET12","index":"0.000012967781516823"},{"denom":"ASSET13","index":"0.000004458979607201"},{"denom":"ASSET14","index":"0.000013452090163298"},{"denom":"ASSET15","index":"0.000009619371736884"},{"denom":"ASSET16","index":"0.000006705169708956"},{"denom":"ASSET17","index":"0.000004759584973979"},{"denom":"ASSET18","index":"0.000002262890399909"},{"denom":"ASSET2","index":"0.000004392178414584"},{"denom":"ASSET3","index":"0.000001285922957882"},{"denom":"ASSET4","index":"0.000012099366012799"},{"denom":"ASSET5","index":"0.000000993667740182"},{"denom":"ASSET6","index":"0.000004058172451498"},{"denom":"ASSET7","index":"0.000006220861062481"},{"denom":"ASSET8","index":"0.000008116344902996"},{"denom":"ASSET9","index":"0.000003507062612406"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003356752793751"},{"denom":"ASSET1","index":"0.000028516406305775"},{"denom":"ASSET10","index":"0.000022616173055400"},{"denom":"ASSET11","index":"0.000028302061322789"},{"denom":"ASSET12","index":"0.000026910491325102"},{"denom":"ASSET13","index":"0.000008878873421079"},{"denom":"ASSET14","index":"0.000025995251505598"},{"denom":"ASSET15","index":"0.000020398635157595"},{"denom":"ASSET16","index":"0.000012658071469071"},{"denom":"ASSET17","index":"0.000009885849877285"},{"denom":"ASSET18","index":"0.000004110010202724"},{"denom":"ASSET2","index":"0.000008622285743228"},{"denom":"ASSET3","index":"0.000002402314047495"},{"denom":"ASSET4","index":"0.000023121698220749"},{"denom":"ASSET5","index":"0.000001866482592061"},{"denom":"ASSET6","index":"0.000007549939309511"},{"denom":"ASSET7","index":"0.000011851024307599"},{"denom":"ASSET8","index":"0.000016149793693754"},{"denom":"ASSET9","index":"0.000006862325287189"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001604942959288"},{"denom":"ASSET1","index":"0.000013380628695124"},{"denom":"ASSET10","index":"0.000009322365613635"},{"denom":"ASSET11","index":"0.000012944148427984"},{"denom":"ASSET12","index":"0.000011656280789193"},{"denom":"ASSET13","index":"0.000004011353995308"},{"denom":"ASSET14","index":"0.000012091757653420"},{"denom":"ASSET15","index":"0.000008645319498111"},{"denom":"ASSET16","index":"0.000006027692148913"},{"denom":"ASSET17","index":"0.000004280767677439"},{"denom":"ASSET18","index":"0.000002039165569874"},{"denom":"ASSET2","index":"0.000003949895566889"},{"denom":"ASSET3","index":"0.000001155418454280"},{"denom":"ASSET4","index":"0.000010873877367808"},{"denom":"ASSET5","index":"0.000000896791353463"},{"denom":"ASSET6","index":"0.000003649878095912"},{"denom":"ASSET7","index":"0.000005589957628131"},{"denom":"ASSET8","index":"0.000007294237475803"},{"denom":"ASSET9","index":"0.000003150685146712"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003200268554223"},{"denom":"ASSET1","index":"0.000027155061035589"},{"denom":"ASSET10","index":"0.000021699312128992"},{"denom":"ASSET11","index":"0.000026991580254755"},{"denom":"ASSET12","index":"0.000025748970079650"},{"denom":"ASSET13","index":"0.000008479073830121"},{"denom":"ASSET14","index":"0.000024769827936089"},{"denom":"ASSET15","index":"0.000019540730612944"},{"denom":"ASSET16","index":"0.000012044995213579"},{"denom":"ASSET17","index":"0.000009462424001901"},{"denom":"ASSET18","index":"0.000003906197580725"},{"denom":"ASSET2","index":"0.000008225756082433"},{"denom":"ASSET3","index":"0.000002283784004254"},{"denom":"ASSET4","index":"0.000022014648589339"},{"denom":"ASSET5","index":"0.000001779311895342"},{"denom":"ASSET6","index":"0.000007179475362032"},{"denom":"ASSET7","index":"0.000011280598785262"},{"denom":"ASSET8","index":"0.000015413911362487"},{"denom":"ASSET9","index":"0.000006542247148589"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001620184629837"},{"denom":"ASSET1","index":"0.000013508113244239"},{"denom":"ASSET10","index":"0.000009411159415052"},{"denom":"ASSET11","index":"0.000013068550109883"},{"denom":"ASSET12","index":"0.000011766766981214"},{"denom":"ASSET13","index":"0.000004049052718392"},{"denom":"ASSET14","index":"0.000012206330115570"},{"denom":"ASSET15","index":"0.000008726455301921"},{"denom":"ASSET16","index":"0.000006083441070987"},{"denom":"ASSET17","index":"0.000004319553108765"},{"denom":"ASSET18","index":"0.000002056930051793"},{"denom":"ASSET2","index":"0.000003987063045598"},{"denom":"ASSET3","index":"0.000001166532933482"},{"denom":"ASSET4","index":"0.000010977807509294"},{"denom":"ASSET5","index":"0.000000904485680309"},{"denom":"ASSET6","index":"0.000003682750106429"},{"denom":"ASSET7","index":"0.000005643877936631"},{"denom":"ASSET8","index":"0.000007362682500458"},{"denom":"ASSET9","index":"0.000003178379586880"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003154859072778"},{"denom":"ASSET1","index":"0.000026759958230198"},{"denom":"ASSET10","index":"0.000021318547828682"},{"denom":"ASSET11","index":"0.000026582778956839"},{"denom":"ASSET12","index":"0.000025324795995745"},{"denom":"ASSET13","index":"0.000008347309163095"},{"denom":"ASSET14","index":"0.000024403216779648"},{"denom":"ASSET15","index":"0.000019208461119321"},{"denom":"ASSET16","index":"0.000011872154646602"},{"denom":"ASSET17","index":"0.000009304429323264"},{"denom":"ASSET18","index":"0.000003853154066825"},{"denom":"ASSET2","index":"0.000008100524497579"},{"denom":"ASSET3","index":"0.000002251942800438"},{"denom":"ASSET4","index":"0.000021695917087147"},{"denom":"ASSET5","index":"0.000001753374642360"},{"denom":"ASSET6","index":"0.000007078305954632"},{"denom":"ASSET7","index":"0.000011118481739065"},{"denom":"ASSET8","index":"0.000015174129529137"},{"denom":"ASSET9","index":"0.000006441283498998"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001565910537906"},{"denom":"ASSET1","index":"0.000013053983025959"},{"denom":"ASSET10","index":"0.000009094819386579"},{"denom":"ASSET11","index":"0.000012628414118813"},{"denom":"ASSET12","index":"0.000011371841840295"},{"denom":"ASSET13","index":"0.000003913403541838"},{"denom":"ASSET14","index":"0.000011796953146466"},{"denom":"ASSET15","index":"0.000008434501179040"},{"denom":"ASSET16","index":"0.000005880630135191"},{"denom":"ASSET17","index":"0.000004176066501732"},{"denom":"ASSET18","index":"0.000001989191440174"},{"denom":"ASSET2","index":"0.000003853457814057"},{"denom":"ASSET3","index":"0.000001127071202473"},{"denom":"ASSET4","index":"0.000010608563413286"},{"denom":"ASSET5","index":"0.000000874933065013"},{"denom":"ASSET6","index":"0.000003561050790760"},{"denom":"ASSET7","index":"0.000005453688425119"},{"denom":"ASSET8","index":"0.000007116152768840"},{"denom":"ASSET9","index":"0.000003073705751932"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003066618221533"},{"denom":"ASSET1","index":"0.000026018563142658"},{"denom":"ASSET10","index":"0.000020743763118655"},{"denom":"ASSET11","index":"0.000025849025514444"},{"denom":"ASSET12","index":"0.000024635604575072"},{"denom":"ASSET13","index":"0.000008118261811936"},{"denom":"ASSET14","index":"0.000023728777879609"},{"denom":"ASSET15","index":"0.000018689177197382"},{"denom":"ASSET16","index":"0.000011544003668418"},{"denom":"ASSET17","index":"0.000009052167825210"},{"denom":"ASSET18","index":"0.000003745930402733"},{"denom":"ASSET2","index":"0.000007877080459743"},{"denom":"ASSET3","index":"0.000002188594145460"},{"denom":"ASSET4","index":"0.000021094338825720"},{"denom":"ASSET5","index":"0.000001705356613908"},{"denom":"ASSET6","index":"0.000006882744986340"},{"denom":"ASSET7","index":"0.000010809249072439"},{"denom":"ASSET8","index":"0.000014757775472241"},{"denom":"ASSET9","index":"0.000006264987011427"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001616793771814"},{"denom":"ASSET1","index":"0.000013481664806896"},{"denom":"ASSET10","index":"0.000009392973001731"},{"denom":"ASSET11","index":"0.000013042136425966"},{"denom":"ASSET12","index":"0.000011745108533466"},{"denom":"ASSET13","index":"0.000004041984429535"},{"denom":"ASSET14","index":"0.000012183439289380"},{"denom":"ASSET15","index":"0.000008710326742521"},{"denom":"ASSET16","index":"0.000006073156456940"},{"denom":"ASSET17","index":"0.000004312647683187"},{"denom":"ASSET18","index":"0.000002053926902712"},{"denom":"ASSET2","index":"0.000003979707928695"},{"denom":"ASSET3","index":"0.000001164091515706"},{"denom":"ASSET4","index":"0.000010955873647818"},{"denom":"ASSET5","index":"0.000000903009262183"},{"denom":"ASSET6","index":"0.000003677906424623"},{"denom":"ASSET7","index":"0.000005632430450993"},{"denom":"ASSET8","index":"0.000007349824724165"},{"denom":"ASSET9","index":"0.000003173706292820"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003010548827117"},{"denom":"ASSET1","index":"0.000025517681435823"},{"denom":"ASSET10","index":"0.000020207909525991"},{"denom":"ASSET11","index":"0.000025316824190850"},{"denom":"ASSET12","index":"0.000024059273468565"},{"denom":"ASSET13","index":"0.000007945703994160"},{"denom":"ASSET14","index":"0.000023261456497592"},{"denom":"ASSET15","index":"0.000018230653165683"},{"denom":"ASSET16","index":"0.000011330852554208"},{"denom":"ASSET17","index":"0.000008840468160143"},{"denom":"ASSET18","index":"0.000003685449036638"},{"denom":"ASSET2","index":"0.000007715875534239"},{"denom":"ASSET3","index":"0.000002150116713749"},{"denom":"ASSET4","index":"0.000020690763011385"},{"denom":"ASSET5","index":"0.000001674170167376"},{"denom":"ASSET6","index":"0.000006761947340508"},{"denom":"ASSET7","index":"0.000010605047135869"},{"denom":"ASSET8","index":"0.000014444866674878"},{"denom":"ASSET9","index":"0.000006137206230949"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001598496813351"},{"denom":"ASSET1","index":"0.000013327209301876"},{"denom":"ASSET10","index":"0.000009285082513510"},{"denom":"ASSET11","index":"0.000012892549064690"},{"denom":"ASSET12","index":"0.000011609910099638"},{"denom":"ASSET13","index":"0.000003995530641827"},{"denom":"ASSET14","index":"0.000012043503249499"},{"denom":"ASSET15","index":"0.000008611039019674"},{"denom":"ASSET16","index":"0.000006003788988106"},{"denom":"ASSET17","index":"0.000004263725256261"},{"denom":"ASSET18","index":"0.000002031022875886"},{"denom":"ASSET2","index":"0.000003933995272733"},{"denom":"ASSET3","index":"0.000001150675832486"},{"denom":"ASSET4","index":"0.000010830580656369"},{"denom":"ASSET5","index":"0.000000893152091305"},{"denom":"ASSET6","index":"0.000003635566517414"},{"denom":"ASSET7","index":"0.000005567705967820"},{"denom":"ASSET8","index":"0.000007265086206652"},{"denom":"ASSET9","index":"0.000003137948128033"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003202417698287"},{"denom":"ASSET1","index":"0.000027176874960756"},{"denom":"ASSET10","index":"0.000021729724210241"},{"denom":"ASSET11","index":"0.000027016578438308"},{"denom":"ASSET12","index":"0.000025779554956391"},{"denom":"ASSET13","index":"0.000008487649506725"},{"denom":"ASSET14","index":"0.000024790682929963"},{"denom":"ASSET15","index":"0.000019565798539307"},{"denom":"ASSET16","index":"0.000012053877846841"},{"denom":"ASSET17","index":"0.000009473617164606"},{"denom":"ASSET18","index":"0.000003908301251667"},{"denom":"ASSET2","index":"0.000008233254558201"},{"denom":"ASSET3","index":"0.000002285025567503"},{"denom":"ASSET4","index":"0.000022032200437673"},{"denom":"ASSET5","index":"0.000001780306156687"},{"denom":"ASSET6","index":"0.000007184182778940"},{"denom":"ASSET7","index":"0.000011289430429576"},{"denom":"ASSET8","index":"0.000015429251463912"},{"denom":"ASSET9","index":"0.000006548040900334"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001349258766758"},{"denom":"ASSET1","index":"0.000011264433664868"},{"denom":"ASSET10","index":"0.000007848225297969"},{"denom":"ASSET11","index":"0.000010895650990484"},{"denom":"ASSET12","index":"0.000009811385762205"},{"denom":"ASSET13","index":"0.000003376459336127"},{"denom":"ASSET14","index":"0.000010177960157102"},{"denom":"ASSET15","index":"0.000007278489190238"},{"denom":"ASSET16","index":"0.000005074626261883"},{"denom":"ASSET17","index":"0.000003603912123322"},{"denom":"ASSET18","index":"0.000001715833161655"},{"denom":"ASSET2","index":"0.000003323460628431"},{"denom":"ASSET3","index":"0.000000971642974425"},{"denom":"ASSET4","index":"0.000009153318474981"},{"denom":"ASSET5","index":"0.000000753023305179"},{"denom":"ASSET6","index":"0.000003071716766875"},{"denom":"ASSET7","index":"0.000004705843587499"},{"denom":"ASSET8","index":"0.000006139016974776"},{"denom":"ASSET9","index":"0.000002652143664283"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000002874619638549"},{"denom":"ASSET1","index":"0.000024442633186143"},{"denom":"ASSET10","index":"0.000019689737510784"},{"denom":"ASSET11","index":"0.000024334399718263"},{"denom":"ASSET12","index":"0.000023294058494145"},{"denom":"ASSET13","index":"0.000007650065286478"},{"denom":"ASSET14","index":"0.000022306974942610"},{"denom":"ASSET15","index":"0.000017702453996022"},{"denom":"ASSET16","index":"0.000010830667352685"},{"denom":"ASSET17","index":"0.000008561334956642"},{"denom":"ASSET18","index":"0.000003501743239949"},{"denom":"ASSET2","index":"0.000007413384379561"},{"denom":"ASSET3","index":"0.000002050775894848"},{"denom":"ASSET4","index":"0.000019811877393900"},{"denom":"ASSET5","index":"0.000001596563839644"},{"denom":"ASSET6","index":"0.000006447875450380"},{"denom":"ASSET7","index":"0.000010149425285061"},{"denom":"ASSET8","index":"0.000013906577801610"},{"denom":"ASSET9","index":"0.000005896530335304"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001744355646452"},{"denom":"ASSET1","index":"0.000014544558741461"},{"denom":"ASSET10","index":"0.000010133244841823"},{"denom":"ASSET11","index":"0.000014070651242217"},{"denom":"ASSET12","index":"0.000012670295178174"},{"denom":"ASSET13","index":"0.000004360461787457"},{"denom":"ASSET14","index":"0.000013143775348745"},{"denom":"ASSET15","index":"0.000009397812194213"},{"denom":"ASSET16","index":"0.000006552230555377"},{"denom":"ASSET17","index":"0.000004653181929010"},{"denom":"ASSET18","index":"0.000002216553831001"},{"denom":"ASSET2","index":"0.000004293371185670"},{"denom":"ASSET3","index":"0.000001255918972299"},{"denom":"ASSET4","index":"0.000011819911117312"},{"denom":"ASSET5","index":"0.000000974736704938"},{"denom":"ASSET6","index":"0.000003967319407560"},{"denom":"ASSET7","index":"0.000006076186412764"},{"denom":"ASSET8","index":"0.000007929083542361"},{"denom":"ASSET9","index":"0.000003424611991834"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003377008276018"},{"denom":"ASSET1","index":"0.000028642142456639"},{"denom":"ASSET10","index":"0.000022800592191853"},{"denom":"ASSET11","index":"0.000028447577997463"},{"denom":"ASSET12","index":"0.000027093635853923"},{"denom":"ASSET13","index":"0.000008933092474106"},{"denom":"ASSET14","index":"0.000026119259559896"},{"denom":"ASSET15","index":"0.000020548756595198"},{"denom":"ASSET16","index":"0.000012710670192565"},{"denom":"ASSET17","index":"0.000009956402105067"},{"denom":"ASSET18","index":"0.000004127475104327"},{"denom":"ASSET2","index":"0.000008669602227225"},{"denom":"ASSET3","index":"0.000002410895003349"},{"denom":"ASSET4","index":"0.000023222264254358"},{"denom":"ASSET5","index":"0.000001877874241403"},{"denom":"ASSET6","index":"0.000007579654674160"},{"denom":"ASSET7","index":"0.000011900488798179"},{"denom":"ASSET8","index":"0.000016239324105118"},{"denom":"ASSET9","index":"0.000006895771583569"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001546168277317"},{"denom":"ASSET1","index":"0.000012892123182452"},{"denom":"ASSET10","index":"0.000008982377260299"},{"denom":"ASSET11","index":"0.000012472337191477"},{"denom":"ASSET12","index":"0.000011231230783378"},{"denom":"ASSET13","index":"0.000003864117010091"},{"denom":"ASSET14","index":"0.000011651016774353"},{"denom":"ASSET15","index":"0.000008329231976204"},{"denom":"ASSET16","index":"0.000005807908663952"},{"denom":"ASSET17","index":"0.000004124853650448"},{"denom":"ASSET18","index":"0.000001964650585090"},{"denom":"ASSET2","index":"0.000003805451266010"},{"denom":"ASSET3","index":"0.000001113345454324"},{"denom":"ASSET4","index":"0.000010477701892746"},{"denom":"ASSET5","index":"0.000000863038279582"},{"denom":"ASSET6","index":"0.000003516033595214"},{"denom":"ASSET7","index":"0.000005385515306574"},{"denom":"ASSET8","index":"0.000007028156140823"},{"denom":"ASSET9","index":"0.000003034974493755"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003044385892570"},{"denom":"ASSET1","index":"0.000025830014188245"},{"denom":"ASSET10","index":"0.000020607856539150"},{"denom":"ASSET11","index":"0.000025666657138152"},{"denom":"ASSET12","index":"0.000024468008636658"},{"denom":"ASSET13","index":"0.000008060303383676"},{"denom":"ASSET14","index":"0.000023559408638801"},{"denom":"ASSET15","index":"0.000018562848593971"},{"denom":"ASSET16","index":"0.000011459854746185"},{"denom":"ASSET17","index":"0.000008991538648143"},{"denom":"ASSET18","index":"0.000003718456390600"},{"denom":"ASSET2","index":"0.000007821717005664"},{"denom":"ASSET3","index":"0.000002173111618200"},{"denom":"ASSET4","index":"0.000020942104557307"},{"denom":"ASSET5","index":"0.000001691598021351"},{"denom":"ASSET6","index":"0.000006831113312915"},{"denom":"ASSET7","index":"0.000010730587410374"},{"denom":"ASSET8","index":"0.000014654605067850"},{"denom":"ASSET9","index":"0.000006220578615076"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001387821916020"},{"denom":"ASSET1","index":"0.000011588015182905"},{"denom":"ASSET10","index":"0.000008073788013584"},{"denom":"ASSET11","index":"0.000011209789038410"},{"denom":"ASSET12","index":"0.000010095957715252"},{"denom":"ASSET13","index":"0.000003472532948668"},{"denom":"ASSET14","index":"0.000010471205701129"},{"denom":"ASSET15","index":"0.000007487090765824"},{"denom":"ASSET16","index":"0.000005220712057474"},{"denom":"ASSET17","index":"0.000003707807479495"},{"denom":"ASSET18","index":"0.000001766048060515"},{"denom":"ASSET2","index":"0.000003418926093543"},{"denom":"ASSET3","index":"0.000001000661295671"},{"denom":"ASSET4","index":"0.000009416937550333"},{"denom":"ASSET5","index":"0.000000774321240698"},{"denom":"ASSET6","index":"0.000003159826293771"},{"denom":"ASSET7","index":"0.000004839507754361"},{"denom":"ASSET8","index":"0.000006316674428923"},{"denom":"ASSET9","index":"0.000002727993294151"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000002956721491824"},{"denom":"ASSET1","index":"0.000025136116728129"},{"denom":"ASSET10","index":"0.000020247681325291"},{"denom":"ASSET11","index":"0.000025026479369709"},{"denom":"ASSET12","index":"0.000023957412844230"},{"denom":"ASSET13","index":"0.000007866588644670"},{"denom":"ASSET14","index":"0.000022940688787988"},{"denom":"ASSET15","index":"0.000018203641219753"},{"denom":"ASSET16","index":"0.000011138902531601"},{"denom":"ASSET17","index":"0.000008803888891481"},{"denom":"ASSET18","index":"0.000003602115317706"},{"denom":"ASSET2","index":"0.000007623974866010"},{"denom":"ASSET3","index":"0.000002110544057177"},{"denom":"ASSET4","index":"0.000020374365248917"},{"denom":"ASSET5","index":"0.000001641905652861"},{"denom":"ASSET6","index":"0.000006630874494768"},{"denom":"ASSET7","index":"0.000010436528568948"},{"denom":"ASSET8","index":"0.000014302572224422"},{"denom":"ASSET9","index":"0.000006063325997423"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001500850379058"},{"denom":"ASSET1","index":"0.000012511793460183"},{"denom":"ASSET10","index":"0.000008717304800227"},{"denom":"ASSET11","index":"0.000012103632089176"},{"denom":"ASSET12","index":"0.000010899320696303"},{"denom":"ASSET13","index":"0.000003750781099635"},{"denom":"ASSET14","index":"0.000011306809643305"},{"denom":"ASSET15","index":"0.000008083881387560"},{"denom":"ASSET16","index":"0.000005636258009526"},{"denom":"ASSET17","index":"0.000004002940101492"},{"denom":"ASSET18","index":"0.000001906322054045"},{"denom":"ASSET2","index":"0.000003692952635209"},{"denom":"ASSET3","index":"0.000001079912951956"},{"denom":"ASSET4","index":"0.000010167723378913"},{"denom":"ASSET5","index":"0.000000838512734178"},{"denom":"ASSET6","index":"0.000003412551825143"},{"denom":"ASSET7","index":"0.000005226751790509"},{"denom":"ASSET8","index":"0.000006820396682251"},{"denom":"ASSET9","index":"0.000002945889565704"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003004514310835"},{"denom":"ASSET1","index":"0.000025497942224476"},{"denom":"ASSET10","index":"0.000020385999177782"},{"denom":"ASSET11","index":"0.000025346802479017"},{"denom":"ASSET12","index":"0.000024185328023735"},{"denom":"ASSET13","index":"0.000007962788555043"},{"denom":"ASSET14","index":"0.000023259189454501"},{"denom":"ASSET15","index":"0.000018355567065709"},{"denom":"ASSET16","index":"0.000011309092459120"},{"denom":"ASSET17","index":"0.000008887662321727"},{"denom":"ASSET18","index":"0.000003666570499762"},{"denom":"ASSET2","index":"0.000007723995884874"},{"denom":"ASSET3","index":"0.000002143405494402"},{"denom":"ASSET4","index":"0.000020670641097733"},{"denom":"ASSET5","index":"0.000001670336124344"},{"denom":"ASSET6","index":"0.000006739845385808"},{"denom":"ASSET7","index":"0.000010591422556410"},{"denom":"ASSET8","index":"0.000014475095162856"},{"denom":"ASSET9","index":"0.000006143360978771"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001507842106347"},{"denom":"ASSET1","index":"0.000012572313391156"},{"denom":"ASSET10","index":"0.000008759356679472"},{"denom":"ASSET11","index":"0.000012162445176153"},{"denom":"ASSET12","index":"0.000010952151629736"},{"denom":"ASSET13","index":"0.000003769211161813"},{"denom":"ASSET14","index":"0.000011361231636633"},{"denom":"ASSET15","index":"0.000008123272738112"},{"denom":"ASSET16","index":"0.000005663669344042"},{"denom":"ASSET17","index":"0.000004022225963767"},{"denom":"ASSET18","index":"0.000001916133905138"},{"denom":"ASSET2","index":"0.000003711277866039"},{"denom":"ASSET3","index":"0.000001085756665704"},{"denom":"ASSET4","index":"0.000010217147571101"},{"denom":"ASSET5","index":"0.000000842594465073"},{"denom":"ASSET6","index":"0.000003429493468225"},{"denom":"ASSET7","index":"0.000005252224712828"},{"denom":"ASSET8","index":"0.000006853863583762"},{"denom":"ASSET9","index":"0.000002960115541236"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003064659144392"},{"denom":"ASSET1","index":"0.000026014545525120"},{"denom":"ASSET10","index":"0.000020837902255895"},{"denom":"ASSET11","index":"0.000025870951889592"},{"denom":"ASSET12","index":"0.000024704995690840"},{"denom":"ASSET13","index":"0.000008129050348807"},{"denom":"ASSET14","index":"0.000023733606076391"},{"denom":"ASSET15","index":"0.000018755969892396"},{"denom":"ASSET16","index":"0.000011535737727926"},{"denom":"ASSET17","index":"0.000009078938038909"},{"denom":"ASSET18","index":"0.000003738223548700"},{"denom":"ASSET2","index":"0.000007883998416280"},{"denom":"ASSET3","index":"0.000002186926046113"},{"denom":"ASSET4","index":"0.000021089316501471"},{"denom":"ASSET5","index":"0.000001703791082418"},{"denom":"ASSET6","index":"0.000006873778950624"},{"denom":"ASSET7","index":"0.000010805665377904"},{"denom":"ASSET8","index":"0.000014777724141198"},{"denom":"ASSET9","index":"0.000006269886019705"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001016570122529"},{"denom":"ASSET1","index":"0.000008477171470527"},{"denom":"ASSET10","index":"0.000005906463519680"},{"denom":"ASSET11","index":"0.000008200989896911"},{"denom":"ASSET12","index":"0.000007384774710599"},{"denom":"ASSET13","index":"0.000002541117067960"},{"denom":"ASSET14","index":"0.000007660956284215"},{"denom":"ASSET15","index":"0.000005477395717812"},{"denom":"ASSET16","index":"0.000003819073322661"},{"denom":"ASSET17","index":"0.000002711881121289"},{"denom":"ASSET18","index":"0.000001291518742692"},{"denom":"ASSET2","index":"0.000002502279034170"},{"denom":"ASSET3","index":"0.000000731757874738"},{"denom":"ASSET4","index":"0.000006889127422234"},{"denom":"ASSET5","index":"0.000000567775065403"},{"denom":"ASSET6","index":"0.000002312404202309"},{"denom":"ASSET7","index":"0.000003541658795591"},{"denom":"ASSET8","index":"0.000004621109544256"},{"denom":"ASSET9","index":"0.000001996151641449"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000002499545170163"},{"denom":"ASSET1","index":"0.000021282413071401"},{"denom":"ASSET10","index":"0.000017412808765385"},{"denom":"ASSET11","index":"0.000021259874812403"},{"denom":"ASSET12","index":"0.000020486111882687"},{"denom":"ASSET13","index":"0.000006694303381301"},{"denom":"ASSET14","index":"0.000019446986985139"},{"denom":"ASSET15","index":"0.000015606004703242"},{"denom":"ASSET16","index":"0.000009412782427040"},{"denom":"ASSET17","index":"0.000007528963649123"},{"denom":"ASSET18","index":"0.000003027066879988"},{"denom":"ASSET2","index":"0.000006477094521478"},{"denom":"ASSET3","index":"0.000001780578331809"},{"denom":"ASSET4","index":"0.000017246051064985"},{"denom":"ASSET5","index":"0.000001387924123500"},{"denom":"ASSET6","index":"0.000005593713918003"},{"denom":"ASSET7","index":"0.000008831780754063"},{"denom":"ASSET8","index":"0.000012169406160300"},{"denom":"ASSET9","index":"0.000005149034362400"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001552339226368"},{"denom":"ASSET1","index":"0.000012948480372324"},{"denom":"ASSET10","index":"0.000009021431734191"},{"denom":"ASSET11","index":"0.000012526515146109"},{"denom":"ASSET12","index":"0.000011279099696349"},{"denom":"ASSET13","index":"0.000003880848065920"},{"denom":"ASSET14","index":"0.000011701064922564"},{"denom":"ASSET15","index":"0.000008365383608761"},{"denom":"ASSET16","index":"0.000005830512213323"},{"denom":"ASSET17","index":"0.000004142651308462"},{"denom":"ASSET18","index":"0.000001971224414436"},{"denom":"ASSET2","index":"0.000003822327341117"},{"denom":"ASSET3","index":"0.000001118053847563"},{"denom":"ASSET4","index":"0.000010521410312050"},{"denom":"ASSET5","index":"0.000000865490719463"},{"denom":"ASSET6","index":"0.000003529723717099"},{"denom":"ASSET7","index":"0.000005408546987108"},{"denom":"ASSET8","index":"0.000007056367396050"},{"denom":"ASSET9","index":"0.000003046157727933"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003043964098015"},{"denom":"ASSET1","index":"0.000025828331615061"},{"denom":"ASSET10","index":"0.000020594675215425"},{"denom":"ASSET11","index":"0.000025661520704142"},{"denom":"ASSET12","index":"0.000024456429429906"},{"denom":"ASSET13","index":"0.000008058244190043"},{"denom":"ASSET14","index":"0.000023555461855486"},{"denom":"ASSET15","index":"0.000018552812657155"},{"denom":"ASSET16","index":"0.000011456604402492"},{"denom":"ASSET17","index":"0.000008987560143691"},{"denom":"ASSET18","index":"0.000003716794339222"},{"denom":"ASSET2","index":"0.000007820148034807"},{"denom":"ASSET3","index":"0.000002173135080244"},{"denom":"ASSET4","index":"0.000020938599170426"},{"denom":"ASSET5","index":"0.000001690207511083"},{"denom":"ASSET6","index":"0.000006829800145738"},{"denom":"ASSET7","index":"0.000010729300481432"},{"denom":"ASSET8","index":"0.000014648719853803"},{"denom":"ASSET9","index":"0.000006217447736766"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000000977108719668"},{"denom":"ASSET1","index":"0.000008146517162771"},{"denom":"ASSET10","index":"0.000005675852121603"},{"denom":"ASSET11","index":"0.000007881108738917"},{"denom":"ASSET12","index":"0.000007096716963958"},{"denom":"ASSET13","index":"0.000002441926549413"},{"denom":"ASSET14","index":"0.000007362125387813"},{"denom":"ASSET15","index":"0.000005263370239944"},{"denom":"ASSET16","index":"0.000003670074447059"},{"denom":"ASSET17","index":"0.000002605905002368"},{"denom":"ASSET18","index":"0.000001241671893765"},{"denom":"ASSET2","index":"0.000002404735560083"},{"denom":"ASSET3","index":"0.000000703247798239"},{"denom":"ASSET4","index":"0.000006620841350486"},{"denom":"ASSET5","index":"0.000000546031343344"},{"denom":"ASSET6","index":"0.000002222161612464"},{"denom":"ASSET7","index":"0.000003402975523689"},{"denom":"ASSET8","index":"0.000004440942225898"},{"denom":"ASSET9","index":"0.000001917871699764"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000002320380931676"},{"denom":"ASSET1","index":"0.000019748951316256"},{"denom":"ASSET10","index":"0.000016101172379351"},{"denom":"ASSET11","index":"0.000019714000020718"},{"denom":"ASSET12","index":"0.000018967805559844"},{"denom":"ASSET13","index":"0.000006204998608741"},{"denom":"ASSET14","index":"0.000018041457784230"},{"denom":"ASSET15","index":"0.000014440911570898"},{"denom":"ASSET16","index":"0.000008738221404310"},{"denom":"ASSET17","index":"0.000006970584758543"},{"denom":"ASSET18","index":"0.000002814127990287"},{"denom":"ASSET2","index":"0.000006006105656449"},{"denom":"ASSET3","index":"0.000001653724297068"},{"denom":"ASSET4","index":"0.000016005284799403"},{"denom":"ASSET5","index":"0.000001288969102308"},{"denom":"ASSET6","index":"0.000005195185892122"},{"denom":"ASSET7","index":"0.000008196101819524"},{"denom":"ASSET8","index":"0.000011280171312915"},{"denom":"ASSET9","index":"0.000004774394171461"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001745798220012"},{"denom":"ASSET1","index":"0.000014553743296829"},{"denom":"ASSET10","index":"0.000010139438249561"},{"denom":"ASSET11","index":"0.000014079320164724"},{"denom":"ASSET12","index":"0.000012678243118663"},{"denom":"ASSET13","index":"0.000004363016060013"},{"denom":"ASSET14","index":"0.000013152173087429"},{"denom":"ASSET15","index":"0.000009403145384454"},{"denom":"ASSET16","index":"0.000006556113428486"},{"denom":"ASSET17","index":"0.000004655955083371"},{"denom":"ASSET18","index":"0.000002217755535422"},{"denom":"ASSET2","index":"0.000004295945845911"},{"denom":"ASSET3","index":"0.000001256580187737"},{"denom":"ASSET4","index":"0.000011827536358912"},{"denom":"ASSET5","index":"0.000000975477084515"},{"denom":"ASSET6","index":"0.000003969964878841"},{"denom":"ASSET7","index":"0.000006080210806364"},{"denom":"ASSET8","index":"0.000007934011797614"},{"denom":"ASSET9","index":"0.000003426498879278"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003342998947188"},{"denom":"ASSET1","index":"0.000028345782457833"},{"denom":"ASSET10","index":"0.000022532322238539"},{"denom":"ASSET11","index":"0.000028144588841629"},{"denom":"ASSET12","index":"0.000026788988923046"},{"denom":"ASSET13","index":"0.000008836278349189"},{"denom":"ASSET14","index":"0.000025846526421467"},{"denom":"ASSET15","index":"0.000020312521464953"},{"denom":"ASSET16","index":"0.000012581099317360"},{"denom":"ASSET17","index":"0.000009844015126225"},{"denom":"ASSET18","index":"0.000004087085525414"},{"denom":"ASSET2","index":"0.000008577030596387"},{"denom":"ASSET3","index":"0.000002386540105172"},{"denom":"ASSET4","index":"0.000022982635628207"},{"denom":"ASSET5","index":"0.000001858980311097"},{"denom":"ASSET6","index":"0.000007503977785171"},{"denom":"ASSET7","index":"0.000011778054778213"},{"denom":"ASSET8","index":"0.000016064148587518"},{"denom":"ASSET9","index":"0.000006822246648031"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001535240763659"},{"denom":"ASSET1","index":"0.000012802535686671"},{"denom":"ASSET10","index":"0.000008918976928097"},{"denom":"ASSET11","index":"0.000012384847277788"},{"denom":"ASSET12","index":"0.000011152366284839"},{"denom":"ASSET13","index":"0.000003838101909148"},{"denom":"ASSET14","index":"0.000011569197017318"},{"denom":"ASSET15","index":"0.000008271431242866"},{"denom":"ASSET16","index":"0.000005767016142371"},{"denom":"ASSET17","index":"0.000004095404830432"},{"denom":"ASSET18","index":"0.000001951213819735"},{"denom":"ASSET2","index":"0.000003778922237253"},{"denom":"ASSET3","index":"0.000001105544885116"},{"denom":"ASSET4","index":"0.000010403614783903"},{"denom":"ASSET5","index":"0.000000857676404279"},{"denom":"ASSET6","index":"0.000003491600641819"},{"denom":"ASSET7","index":"0.000005348470057083"},{"denom":"ASSET8","index":"0.000006978912901618"},{"denom":"ASSET9","index":"0.000003013874884636"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003086246918243"},{"denom":"ASSET1","index":"0.000026194228204796"},{"denom":"ASSET10","index":"0.000020951998769875"},{"denom":"ASSET11","index":"0.000026042273492864"},{"denom":"ASSET12","index":"0.000024853724280460"},{"denom":"ASSET13","index":"0.000008181454895403"},{"denom":"ASSET14","index":"0.000023895275980533"},{"denom":"ASSET15","index":"0.000018864347888264"},{"denom":"ASSET16","index":"0.000011616907749245"},{"denom":"ASSET17","index":"0.000009133094250657"},{"denom":"ASSET18","index":"0.000003766346411006"},{"denom":"ASSET2","index":"0.000007935833032906"},{"denom":"ASSET3","index":"0.000002202232138461"},{"denom":"ASSET4","index":"0.000021234941701767"},{"denom":"ASSET5","index":"0.000001715417631736"},{"denom":"ASSET6","index":"0.000006923101305069"},{"denom":"ASSET7","index":"0.000010881195638563"},{"denom":"ASSET8","index":"0.000014873239564067"},{"denom":"ASSET9","index":"0.000006310901439146"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001694764141112"},{"denom":"ASSET1","index":"0.000014130580032100"},{"denom":"ASSET10","index":"0.000009844524497723"},{"denom":"ASSET11","index":"0.000013669508873851"},{"denom":"ASSET12","index":"0.000012309527666765"},{"denom":"ASSET13","index":"0.000004236016804025"},{"denom":"ASSET14","index":"0.000012769407426673"},{"denom":"ASSET15","index":"0.000009129685492685"},{"denom":"ASSET16","index":"0.000006365641339869"},{"denom":"ASSET17","index":"0.000004520761007698"},{"denom":"ASSET18","index":"0.000002153452502679"},{"denom":"ASSET2","index":"0.000004171085594400"},{"denom":"ASSET3","index":"0.000001219991901933"},{"denom":"ASSET4","index":"0.000011483292916774"},{"denom":"ASSET5","index":"0.000000947161681676"},{"denom":"ASSET6","index":"0.000003854173635500"},{"denom":"ASSET7","index":"0.000005903378783277"},{"denom":"ASSET8","index":"0.000007702985978462"},{"denom":"ASSET9","index":"0.000003326979869284"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003333609736915"},{"denom":"ASSET1","index":"0.000028281729059652"},{"denom":"ASSET10","index":"0.000022560289398652"},{"denom":"ASSET11","index":"0.000028101042421314"},{"denom":"ASSET12","index":"0.000026787599659919"},{"denom":"ASSET13","index":"0.000008826015241086"},{"denom":"ASSET14","index":"0.000025794402991537"},{"denom":"ASSET15","index":"0.000020323143219667"},{"denom":"ASSET16","index":"0.000012547562311789"},{"denom":"ASSET17","index":"0.000009844220733470"},{"denom":"ASSET18","index":"0.000004071528772633"},{"denom":"ASSET2","index":"0.000008563776406339"},{"denom":"ASSET3","index":"0.000002379222276435"},{"denom":"ASSET4","index":"0.000022929058250150"},{"denom":"ASSET5","index":"0.000001853699834530"},{"denom":"ASSET6","index":"0.000007480326246914"},{"denom":"ASSET7","index":"0.000011749530638760"},{"denom":"ASSET8","index":"0.000016044906214881"},{"denom":"ASSET9","index":"0.000006811209452101"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001763265776240"},{"denom":"ASSET1","index":"0.000014701143889842"},{"denom":"ASSET10","index":"0.000010242267715158"},{"denom":"ASSET11","index":"0.000014221824092125"},{"denom":"ASSET12","index":"0.000012807154532407"},{"denom":"ASSET13","index":"0.000004407037513175"},{"denom":"ASSET14","index":"0.000013285723045174"},{"denom":"ASSET15","index":"0.000009498495615253"},{"denom":"ASSET16","index":"0.000006622576828953"},{"denom":"ASSET17","index":"0.000004703043783239"},{"denom":"ASSET18","index":"0.000002240331719108"},{"denom":"ASSET2","index":"0.000004339421867729"},{"denom":"ASSET3","index":"0.000001269671564485"},{"denom":"ASSET4","index":"0.000011947684550294"},{"denom":"ASSET5","index":"0.000000984934568662"},{"denom":"ASSET6","index":"0.000004010359059893"},{"denom":"ASSET7","index":"0.000006141754461338"},{"denom":"ASSET8","index":"0.000008013956555240"},{"denom":"ASSET9","index":"0.000003461169761882"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003372790294110"},{"denom":"ASSET1","index":"0.000028600279733511"},{"denom":"ASSET10","index":"0.000022731421090197"},{"denom":"ASSET11","index":"0.000028396190348540"},{"denom":"ASSET12","index":"0.000027027392524280"},{"denom":"ASSET13","index":"0.000008915082315276"},{"denom":"ASSET14","index":"0.000026078776667620"},{"denom":"ASSET15","index":"0.000020492230414373"},{"denom":"ASSET16","index":"0.000012694274413467"},{"denom":"ASSET17","index":"0.000009931274832025"},{"denom":"ASSET18","index":"0.000004123939856338"},{"denom":"ASSET2","index":"0.000008653658587521"},{"denom":"ASSET3","index":"0.000002407864000528"},{"denom":"ASSET4","index":"0.000023189126720885"},{"denom":"ASSET5","index":"0.000001875419633234"},{"denom":"ASSET6","index":"0.000007571725921487"},{"denom":"ASSET7","index":"0.000011883748947250"},{"denom":"ASSET8","index":"0.000016207221904670"},{"denom":"ASSET9","index":"0.000006883201227023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001453309126336"},{"denom":"ASSET1","index":"0.000012116886392617"},{"denom":"ASSET10","index":"0.000008441923956558"},{"denom":"ASSET11","index":"0.000011721955689254"},{"denom":"ASSET12","index":"0.000010555542874101"},{"denom":"ASSET13","index":"0.000003632376264868"},{"denom":"ASSET14","index":"0.000010950025301978"},{"denom":"ASSET15","index":"0.000007829131366891"},{"denom":"ASSET16","index":"0.000005458650595742"},{"denom":"ASSET17","index":"0.000003876686404859"},{"denom":"ASSET18","index":"0.000001846446727754"},{"denom":"ASSET2","index":"0.000003576790104576"},{"denom":"ASSET3","index":"0.000001046274984845"},{"denom":"ASSET4","index":"0.000009847267605868"},{"denom":"ASSET5","index":"0.000000812275181037"},{"denom":"ASSET6","index":"0.000003305135159925"},{"denom":"ASSET7","index":"0.000005061926790434"},{"denom":"ASSET8","index":"0.000006605339289501"},{"denom":"ASSET9","index":"0.000002852825194325"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000002846126280344"},{"denom":"ASSET1","index":"0.000024142729904188"},{"denom":"ASSET10","index":"0.000019247649074564"},{"denom":"ASSET11","index":"0.000023985879136349"},{"denom":"ASSET12","index":"0.000022859091275790"},{"denom":"ASSET13","index":"0.000007532792628817"},{"denom":"ASSET14","index":"0.000022018595952129"},{"denom":"ASSET15","index":"0.000017341431925331"},{"denom":"ASSET16","index":"0.000010711928951149"},{"denom":"ASSET17","index":"0.000008400535387767"},{"denom":"ASSET18","index":"0.000003476353193421"},{"denom":"ASSET2","index":"0.000007309791035362"},{"denom":"ASSET3","index":"0.000002031285314481"},{"denom":"ASSET4","index":"0.000019573873127075"},{"denom":"ASSET5","index":"0.000001582650339951"},{"denom":"ASSET6","index":"0.000006386635795582"},{"denom":"ASSET7","index":"0.000010030235680714"},{"denom":"ASSET8","index":"0.000013694243666513"},{"denom":"ASSET9","index":"0.000005813799926422"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001542334439671"},{"denom":"ASSET1","index":"0.000012860022908304"},{"denom":"ASSET10","index":"0.000008959505058412"},{"denom":"ASSET11","index":"0.000012440701863130"},{"denom":"ASSET12","index":"0.000011202637482986"},{"denom":"ASSET13","index":"0.000003855293405849"},{"denom":"ASSET14","index":"0.000011621234937056"},{"denom":"ASSET15","index":"0.000008308996655285"},{"denom":"ASSET16","index":"0.000005793070384239"},{"denom":"ASSET17","index":"0.000004114339021332"},{"denom":"ASSET18","index":"0.000001959846507084"},{"denom":"ASSET2","index":"0.000003796320730815"},{"denom":"ASSET3","index":"0.000001110350550164"},{"denom":"ASSET4","index":"0.000010450826325201"},{"denom":"ASSET5","index":"0.000000861797005699"},{"denom":"ASSET6","index":"0.000003507969675592"},{"denom":"ASSET7","index":"0.000005372663952407"},{"denom":"ASSET8","index":"0.000007010512417899"},{"denom":"ASSET9","index":"0.000003027866977623"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003036454064443"},{"denom":"ASSET1","index":"0.000025762443856573"},{"denom":"ASSET10","index":"0.000020552854458451"},{"denom":"ASSET11","index":"0.000025598594042577"},{"denom":"ASSET12","index":"0.000024403233064712"},{"denom":"ASSET13","index":"0.000008040226829205"},{"denom":"ASSET14","index":"0.000023496526683137"},{"denom":"ASSET15","index":"0.000018514610345002"},{"denom":"ASSET16","index":"0.000011429420030088"},{"denom":"ASSET17","index":"0.000008967792958730"},{"denom":"ASSET18","index":"0.000003708688180539"},{"denom":"ASSET2","index":"0.000007801450355100"},{"denom":"ASSET3","index":"0.000002167197324698"},{"denom":"ASSET4","index":"0.000020886439041228"},{"denom":"ASSET5","index":"0.000001688395026424"},{"denom":"ASSET6","index":"0.000006814112030993"},{"denom":"ASSET7","index":"0.000010703097412338"},{"denom":"ASSET8","index":"0.000014616213118562"},{"denom":"ASSET9","index":"0.000006204650488693"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001802604811891"},{"denom":"ASSET1","index":"0.000015041134377282"},{"denom":"ASSET10","index":"0.000010478421042795"},{"denom":"ASSET11","index":"0.000014549893343095"},{"denom":"ASSET12","index":"0.000013101148598203"},{"denom":"ASSET13","index":"0.000004508593559534"},{"denom":"ASSET14","index":"0.000013592389632390"},{"denom":"ASSET15","index":"0.000009716581133843"},{"denom":"ASSET16","index":"0.000006773297988330"},{"denom":"ASSET17","index":"0.000004812496911192"},{"denom":"ASSET18","index":"0.000002289682786467"},{"denom":"ASSET2","index":"0.000004437821546134"},{"denom":"ASSET3","index":"0.000001298874598869"},{"denom":"ASSET4","index":"0.000012222743020122"},{"denom":"ASSET5","index":"0.000001007460426045"},{"denom":"ASSET6","index":"0.000004100613717582"},{"denom":"ASSET7","index":"0.000006282056954143"},{"denom":"ASSET8","index":"0.000008197064375552"},{"denom":"ASSET9","index":"0.000003538600669994"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003500919125422"},{"denom":"ASSET1","index":"0.000029708744113596"},{"denom":"ASSET10","index":"0.000023658219501850"},{"denom":"ASSET11","index":"0.000029508250092955"},{"denom":"ASSET12","index":"0.000028107871580940"},{"denom":"ASSET13","index":"0.000009266072102552"},{"denom":"ASSET14","index":"0.000027092614384257"},{"denom":"ASSET15","index":"0.000021318431245277"},{"denom":"ASSET16","index":"0.000013180724612002"},{"denom":"ASSET17","index":"0.000010330094773179"},{"denom":"ASSET18","index":"0.000004277644880979"},{"denom":"ASSET2","index":"0.000008990842831989"},{"denom":"ASSET3","index":"0.000002500335792843"},{"denom":"ASSET4","index":"0.000024086210482120"},{"denom":"ASSET5","index":"0.000001946754653173"},{"denom":"ASSET6","index":"0.000007858889858659"},{"denom":"ASSET7","index":"0.000012341576470869"},{"denom":"ASSET8","index":"0.000016843078118646"},{"denom":"ASSET9","index":"0.000007150129263591"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001563811170888"},{"denom":"ASSET1","index":"0.000013038374863878"},{"denom":"ASSET10","index":"0.000009083864212622"},{"denom":"ASSET11","index":"0.000012612362006834"},{"denom":"ASSET12","index":"0.000011358137819015"},{"denom":"ASSET13","index":"0.000003908204905926"},{"denom":"ASSET14","index":"0.000011781504633469"},{"denom":"ASSET15","index":"0.000008423676586333"},{"denom":"ASSET16","index":"0.000005872891529250"},{"denom":"ASSET17","index":"0.000004170163122369"},{"denom":"ASSET18","index":"0.000001987177985342"},{"denom":"ASSET2","index":"0.000003848668947643"},{"denom":"ASSET3","index":"0.000001125891122188"},{"denom":"ASSET4","index":"0.000010596077552999"},{"denom":"ASSET5","index":"0.000000873194054811"},{"denom":"ASSET6","index":"0.000003556281241411"},{"denom":"ASSET7","index":"0.000005446878672206"},{"denom":"ASSET8","index":"0.000007107270397641"},{"denom":"ASSET9","index":"0.000003069409404789"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003311345528520"},{"denom":"ASSET1","index":"0.000028134750769747"},{"denom":"ASSET10","index":"0.000022648872120201"},{"denom":"ASSET11","index":"0.000028007957662740"},{"denom":"ASSET12","index":"0.000026803793052874"},{"denom":"ASSET13","index":"0.000008804941803873"},{"denom":"ASSET14","index":"0.000025676450668466"},{"denom":"ASSET15","index":"0.000020365161363483"},{"denom":"ASSET16","index":"0.000012467103206876"},{"denom":"ASSET17","index":"0.000009848512066991"},{"denom":"ASSET18","index":"0.000004032794375330"},{"denom":"ASSET2","index":"0.000008534928074651"},{"denom":"ASSET3","index":"0.000002362590241163"},{"denom":"ASSET4","index":"0.000022806063702805"},{"denom":"ASSET5","index":"0.000001840254083448"},{"denom":"ASSET6","index":"0.000007424521355960"},{"denom":"ASSET7","index":"0.000011683846998076"},{"denom":"ASSET8","index":"0.000016006498096466"},{"denom":"ASSET9","index":"0.000006786333067798"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001600184479142"},{"denom":"ASSET1","index":"0.000013342157474081"},{"denom":"ASSET10","index":"0.000009295060662992"},{"denom":"ASSET11","index":"0.000012907134644369"},{"denom":"ASSET12","index":"0.000011622469236023"},{"denom":"ASSET13","index":"0.000003999732516397"},{"denom":"ASSET14","index":"0.000012056763384279"},{"denom":"ASSET15","index":"0.000008620301633991"},{"denom":"ASSET16","index":"0.000006010164655719"},{"denom":"ASSET17","index":"0.000004268615973958"},{"denom":"ASSET18","index":"0.000002033021264483"},{"denom":"ASSET2","index":"0.000003938523274026"},{"denom":"ASSET3","index":"0.000001152045383207"},{"denom":"ASSET4","index":"0.000010842780077243"},{"denom":"ASSET5","index":"0.000000894092147498"},{"denom":"ASSET6","index":"0.000003639035195279"},{"denom":"ASSET7","index":"0.000005573684463094"},{"denom":"ASSET8","index":"0.000007272969620361"},{"denom":"ASSET9","index":"0.000003141345760282"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003037978324998"},{"denom":"ASSET1","index":"0.000025756345113171"},{"denom":"ASSET10","index":"0.000020449699671521"},{"denom":"ASSET11","index":"0.000025567125107120"},{"denom":"ASSET12","index":"0.000024323299608917"},{"denom":"ASSET13","index":"0.000008026089638757"},{"denom":"ASSET14","index":"0.000023482777870484"},{"denom":"ASSET15","index":"0.000018439819094125"},{"denom":"ASSET16","index":"0.000011433094032389"},{"denom":"ASSET17","index":"0.000008938487942114"},{"denom":"ASSET18","index":"0.000003715472889790"},{"denom":"ASSET2","index":"0.000007791978720736"},{"denom":"ASSET3","index":"0.000002168844641333"},{"denom":"ASSET4","index":"0.000020883291069830"},{"denom":"ASSET5","index":"0.000001689134510364"},{"denom":"ASSET6","index":"0.000006819968009550"},{"denom":"ASSET7","index":"0.000010702337477897"},{"denom":"ASSET8","index":"0.000014590947163921"},{"denom":"ASSET9","index":"0.000006197850437110"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001732863553160"},{"denom":"ASSET1","index":"0.000014476512568697"},{"denom":"ASSET10","index":"0.000010084697727409"},{"denom":"ASSET11","index":"0.000014004946421444"},{"denom":"ASSET12","index":"0.000012607292539223"},{"denom":"ASSET13","index":"0.000004334999642824"},{"denom":"ASSET14","index":"0.000013078858686476"},{"denom":"ASSET15","index":"0.000009351781667220"},{"denom":"ASSET16","index":"0.000006516703263852"},{"denom":"ASSET17","index":"0.000004630438674838"},{"denom":"ASSET18","index":"0.000002204429700414"},{"denom":"ASSET2","index":"0.000004272502924514"},{"denom":"ASSET3","index":"0.000001249934366214"},{"denom":"ASSET4","index":"0.000011760746082105"},{"denom":"ASSET5","index":"0.000000965858373893"},{"denom":"ASSET6","index":"0.000003948656293267"},{"denom":"ASSET7","index":"0.000006045137116599"},{"denom":"ASSET8","index":"0.000007891631066688"},{"denom":"ASSET9","index":"0.000003403230388010"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003203314564743"},{"denom":"ASSET1","index":"0.000027174750089688"},{"denom":"ASSET10","index":"0.000021494761442080"},{"denom":"ASSET11","index":"0.000026954579685264"},{"denom":"ASSET12","index":"0.000025598519259277"},{"denom":"ASSET13","index":"0.000008453363478510"},{"denom":"ASSET14","index":"0.000024766008219885"},{"denom":"ASSET15","index":"0.000019395989679368"},{"denom":"ASSET16","index":"0.000012063312986412"},{"denom":"ASSET17","index":"0.000009406957788586"},{"denom":"ASSET18","index":"0.000003925664786352"},{"denom":"ASSET2","index":"0.000008214094571203"},{"denom":"ASSET3","index":"0.000002289770772075"},{"denom":"ASSET4","index":"0.000022031271429646"},{"denom":"ASSET5","index":"0.000001779377444361"},{"denom":"ASSET6","index":"0.000007202120906665"},{"denom":"ASSET7","index":"0.000011290805949933"},{"denom":"ASSET8","index":"0.000015376618183469"},{"denom":"ASSET9","index":"0.000006529467958809"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001687731873143"},{"denom":"ASSET1","index":"0.000014069560961171"},{"denom":"ASSET10","index":"0.000009802495056563"},{"denom":"ASSET11","index":"0.000013610740912442"},{"denom":"ASSET12","index":"0.000012256373563096"},{"denom":"ASSET13","index":"0.000004217751625940"},{"denom":"ASSET14","index":"0.000012714404583367"},{"denom":"ASSET15","index":"0.000009090791386823"},{"denom":"ASSET16","index":"0.000006338265608675"},{"denom":"ASSET17","index":"0.000004501407356839"},{"denom":"ASSET18","index":"0.000002144184836496"},{"denom":"ASSET2","index":"0.000004153051292327"},{"denom":"ASSET3","index":"0.000001214709312157"},{"denom":"ASSET4","index":"0.000011433811394910"},{"denom":"ASSET5","index":"0.000000942889008137"},{"denom":"ASSET6","index":"0.000003837834423079"},{"denom":"ASSET7","index":"0.000005877867503028"},{"denom":"ASSET8","index":"0.000007669751132718"},{"denom":"ASSET9","index":"0.000003312735983819"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003310751488522"},{"denom":"ASSET1","index":"0.000028084250149300"},{"denom":"ASSET10","index":"0.000022395324527460"},{"denom":"ASSET11","index":"0.000027902986790638"},{"denom":"ASSET12","index":"0.000026594787286768"},{"denom":"ASSET13","index":"0.000008763085936534"},{"denom":"ASSET14","index":"0.000025613920456358"},{"denom":"ASSET15","index":"0.000020176020856033"},{"denom":"ASSET16","index":"0.000012460451689171"},{"denom":"ASSET17","index":"0.000009773335616478"},{"denom":"ASSET18","index":"0.000004043661907525"},{"denom":"ASSET2","index":"0.000008503271494062"},{"denom":"ASSET3","index":"0.000002362859659779"},{"denom":"ASSET4","index":"0.000022769116693783"},{"denom":"ASSET5","index":"0.000001840413908887"},{"denom":"ASSET6","index":"0.000007429033260494"},{"denom":"ASSET7","index":"0.000011667535172652"},{"denom":"ASSET8","index":"0.000015931047386954"},{"denom":"ASSET9","index":"0.000006763232815972"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001411639939639"},{"denom":"ASSET1","index":"0.000011770559134781"},{"denom":"ASSET10","index":"0.000008200405560598"},{"denom":"ASSET11","index":"0.000011386782830640"},{"denom":"ASSET12","index":"0.000010253700018254"},{"denom":"ASSET13","index":"0.000003528795747429"},{"denom":"ASSET14","index":"0.000010636868119061"},{"denom":"ASSET15","index":"0.000007604974496011"},{"denom":"ASSET16","index":"0.000005302316671163"},{"denom":"ASSET17","index":"0.000003765386844594"},{"denom":"ASSET18","index":"0.000001793591633776"},{"denom":"ASSET2","index":"0.000003474665650649"},{"denom":"ASSET3","index":"0.000001016307772140"},{"denom":"ASSET4","index":"0.000009565822046806"},{"denom":"ASSET5","index":"0.000000788839724994"},{"denom":"ASSET6","index":"0.000003210705403426"},{"denom":"ASSET7","index":"0.000004917323960353"},{"denom":"ASSET8","index":"0.000006416545180176"},{"denom":"ASSET9","index":"0.000002771582595835"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000002915106026686"},{"denom":"ASSET1","index":"0.000024751938975568"},{"denom":"ASSET10","index":"0.000019864528416862"},{"denom":"ASSET11","index":"0.000024625253839727"},{"denom":"ASSET12","index":"0.000023534700266806"},{"denom":"ASSET13","index":"0.000007739190454504"},{"denom":"ASSET14","index":"0.000022584902384729"},{"denom":"ASSET15","index":"0.000017872912229645"},{"denom":"ASSET16","index":"0.000010972881933217"},{"denom":"ASSET17","index":"0.000008648586457086"},{"denom":"ASSET18","index":"0.000003552999450219"},{"denom":"ASSET2","index":"0.000007504215303421"},{"denom":"ASSET3","index":"0.000002079538758775"},{"denom":"ASSET4","index":"0.000020065180146540"},{"denom":"ASSET5","index":"0.000001620267199228"},{"denom":"ASSET6","index":"0.000006536798446662"},{"denom":"ASSET7","index":"0.000010280222742310"},{"denom":"ASSET8","index":"0.000014068743113537"},{"denom":"ASSET9","index":"0.000005967789042866"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001670929391506"},{"denom":"ASSET1","index":"0.000013946161101263"},{"denom":"ASSET10","index":"0.000009716355120388"},{"denom":"ASSET11","index":"0.000013489421488305"},{"denom":"ASSET12","index":"0.000012147571569489"},{"denom":"ASSET13","index":"0.000004178741924768"},{"denom":"ASSET14","index":"0.000012601474290441"},{"denom":"ASSET15","index":"0.000009009969010905"},{"denom":"ASSET16","index":"0.000006280878901179"},{"denom":"ASSET17","index":"0.000004459594233357"},{"denom":"ASSET18","index":"0.000002124832112458"},{"denom":"ASSET2","index":"0.000004116330300637"},{"denom":"ASSET3","index":"0.000001202842210524"},{"denom":"ASSET4","index":"0.000011333383563781"},{"denom":"ASSET5","index":"0.000000933337469958"},{"denom":"ASSET6","index":"0.000003804272179982"},{"denom":"ASSET7","index":"0.000005824139288221"},{"denom":"ASSET8","index":"0.000007600033683947"},{"denom":"ASSET9","index":"0.000003282284050887"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003306866574231"},{"denom":"ASSET1","index":"0.000028073670524533"},{"denom":"ASSET10","index":"0.000022410378668975"},{"denom":"ASSET11","index":"0.000027896117796052"},{"denom":"ASSET12","index":"0.000026601615360568"},{"denom":"ASSET13","index":"0.000008760019105133"},{"denom":"ASSET14","index":"0.000025604072816608"},{"denom":"ASSET15","index":"0.000020183975077340"},{"denom":"ASSET16","index":"0.000012452378452775"},{"denom":"ASSET17","index":"0.000009773941069454"},{"denom":"ASSET18","index":"0.000004038323507821"},{"denom":"ASSET2","index":"0.000008501686860316"},{"denom":"ASSET3","index":"0.000002358773872569"},{"denom":"ASSET4","index":"0.000022758821093429"},{"denom":"ASSET5","index":"0.000001837837668790"},{"denom":"ASSET6","index":"0.000007423905647148"},{"denom":"ASSET7","index":"0.000011659308440973"},{"denom":"ASSET8","index":"0.000015926660063085"},{"denom":"ASSET9","index":"0.000006759875068056"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001598361255475"},{"denom":"ASSET1","index":"0.000013324868720531"},{"denom":"ASSET10","index":"0.000009283863630055"},{"denom":"ASSET11","index":"0.000012890721875256"},{"denom":"ASSET12","index":"0.000011607749807828"},{"denom":"ASSET13","index":"0.000003994929715268"},{"denom":"ASSET14","index":"0.000012041896653103"},{"denom":"ASSET15","index":"0.000008609605674538"},{"denom":"ASSET16","index":"0.000006002777756047"},{"denom":"ASSET17","index":"0.000004262945630213"},{"denom":"ASSET18","index":"0.000002030561253910"},{"denom":"ASSET2","index":"0.000003933279565341"},{"denom":"ASSET3","index":"0.000001150586482321"},{"denom":"ASSET4","index":"0.000010829011071909"},{"denom":"ASSET5","index":"0.000000892953750521"},{"denom":"ASSET6","index":"0.000003634763049905"},{"denom":"ASSET7","index":"0.000005566684063932"},{"denom":"ASSET8","index":"0.000007263685559290"},{"denom":"ASSET9","index":"0.000003137668156809"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003119961272076"},{"denom":"ASSET1","index":"0.000026462428012801"},{"denom":"ASSET10","index":"0.000021088828135750"},{"denom":"ASSET11","index":"0.000026288818556387"},{"denom":"ASSET12","index":"0.000025049012446876"},{"denom":"ASSET13","index":"0.000008256026418292"},{"denom":"ASSET14","index":"0.000024133914778951"},{"denom":"ASSET15","index":"0.000019001193386697"},{"denom":"ASSET16","index":"0.000011741691861213"},{"denom":"ASSET17","index":"0.000009205139483526"},{"denom":"ASSET18","index":"0.000003811157018018"},{"denom":"ASSET2","index":"0.000008011229275486"},{"denom":"ASSET3","index":"0.000002226652147557"},{"denom":"ASSET4","index":"0.000021454928269907"},{"denom":"ASSET5","index":"0.000001734689929917"},{"denom":"ASSET6","index":"0.000007001091110949"},{"denom":"ASSET7","index":"0.000010994186615549"},{"denom":"ASSET8","index":"0.000015007966738007"},{"denom":"ASSET9","index":"0.000006372340046203"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001543375593884"},{"denom":"ASSET1","index":"0.000012871309378663"},{"denom":"ASSET10","index":"0.000008967332198598"},{"denom":"ASSET11","index":"0.000012451619524186"},{"denom":"ASSET12","index":"0.000011213472915376"},{"denom":"ASSET13","index":"0.000003858438984711"},{"denom":"ASSET14","index":"0.000011631932007817"},{"denom":"ASSET15","index":"0.000008316259081242"},{"denom":"ASSET16","index":"0.000005798119954378"},{"denom":"ASSET17","index":"0.000004118129774432"},{"denom":"ASSET18","index":"0.000001961834686325"},{"denom":"ASSET2","index":"0.000003799362406955"},{"denom":"ASSET3","index":"0.000001111378119041"},{"denom":"ASSET4","index":"0.000010460246548983"},{"denom":"ASSET5","index":"0.000000862764187650"},{"denom":"ASSET6","index":"0.000003511364090393"},{"denom":"ASSET7","index":"0.000005377199337864"},{"denom":"ASSET8","index":"0.000007016574370602"},{"denom":"ASSET9","index":"0.000003030136134086"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003061984062566"},{"denom":"ASSET1","index":"0.000025984754387841"},{"denom":"ASSET10","index":"0.000020750278468036"},{"denom":"ASSET11","index":"0.000025825260107338"},{"denom":"ASSET12","index":"0.000024630365005548"},{"denom":"ASSET13","index":"0.000008111503841622"},{"denom":"ASSET14","index":"0.000023701848593669"},{"denom":"ASSET15","index":"0.000018689068915475"},{"denom":"ASSET16","index":"0.000011526541772952"},{"denom":"ASSET17","index":"0.000009050861170220"},{"denom":"ASSET18","index":"0.000003739265665267"},{"denom":"ASSET2","index":"0.000007869809789784"},{"denom":"ASSET3","index":"0.000002185113944095"},{"denom":"ASSET4","index":"0.000021066477214749"},{"denom":"ASSET5","index":"0.000001702392649313"},{"denom":"ASSET6","index":"0.000006871251000760"},{"denom":"ASSET7","index":"0.000010794622225013"},{"denom":"ASSET8","index":"0.000014746923085504"},{"denom":"ASSET9","index":"0.000006258895459680"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001745217677213"},{"denom":"ASSET1","index":"0.000014553842410819"},{"denom":"ASSET10","index":"0.000010139729507131"},{"denom":"ASSET11","index":"0.000014078681363843"},{"denom":"ASSET12","index":"0.000012678362515121"},{"denom":"ASSET13","index":"0.000004362304066790"},{"denom":"ASSET14","index":"0.000013152043309614"},{"denom":"ASSET15","index":"0.000009402563770700"},{"denom":"ASSET16","index":"0.000006556038246289"},{"denom":"ASSET17","index":"0.000004655394058383"},{"denom":"ASSET18","index":"0.000002217418219224"},{"denom":"ASSET2","index":"0.000004295692705065"},{"denom":"ASSET3","index":"0.000001256734357891"},{"denom":"ASSET4","index":"0.000011827217337515"},{"denom":"ASSET5","index":"0.000000975486386160"},{"denom":"ASSET6","index":"0.000003970037158850"},{"denom":"ASSET7","index":"0.000006079396946830"},{"denom":"ASSET8","index":"0.000007932673055287"},{"denom":"ASSET9","index":"0.000003426784497665"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003296605577903"},{"denom":"ASSET1","index":"0.000027950980635352"},{"denom":"ASSET10","index":"0.000022177590033485"},{"denom":"ASSET11","index":"0.000027741245317152"},{"denom":"ASSET12","index":"0.000026384837371861"},{"denom":"ASSET13","index":"0.000008707523198290"},{"denom":"ASSET14","index":"0.000025482773879389"},{"denom":"ASSET15","index":"0.000019999205716580"},{"denom":"ASSET16","index":"0.000012408342313410"},{"denom":"ASSET17","index":"0.000009694954350389"},{"denom":"ASSET18","index":"0.000004033447725414"},{"denom":"ASSET2","index":"0.000008454290496983"},{"denom":"ASSET3","index":"0.000002354114882033"},{"denom":"ASSET4","index":"0.000022662624820802"},{"denom":"ASSET5","index":"0.000001833709311257"},{"denom":"ASSET6","index":"0.000007402928859239"},{"denom":"ASSET7","index":"0.000011614131087351"},{"denom":"ASSET8","index":"0.000015829970625061"},{"denom":"ASSET9","index":"0.000006725199056296"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001696105704481"},{"denom":"ASSET1","index":"0.000014140754037071"},{"denom":"ASSET10","index":"0.000009851931515387"},{"denom":"ASSET11","index":"0.000013679695806241"},{"denom":"ASSET12","index":"0.000012318593050331"},{"denom":"ASSET13","index":"0.000004239283286244"},{"denom":"ASSET14","index":"0.000012779160793682"},{"denom":"ASSET15","index":"0.000009136800770120"},{"denom":"ASSET16","index":"0.000006369960897657"},{"denom":"ASSET17","index":"0.000004523766024416"},{"denom":"ASSET18","index":"0.000002155201985393"},{"denom":"ASSET2","index":"0.000004174048451456"},{"denom":"ASSET3","index":"0.000001220823336742"},{"denom":"ASSET4","index":"0.000011492121647193"},{"denom":"ASSET5","index":"0.000000947621810601"},{"denom":"ASSET6","index":"0.000003857193539630"},{"denom":"ASSET7","index":"0.000005907431204387"},{"denom":"ASSET8","index":"0.000007708991716984"},{"denom":"ASSET9","index":"0.000003329429011573"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003278023650839"},{"denom":"ASSET1","index":"0.000027801084973989"},{"denom":"ASSET10","index":"0.000022126343818190"},{"denom":"ASSET11","index":"0.000027610641458424"},{"denom":"ASSET12","index":"0.000026294522151225"},{"denom":"ASSET13","index":"0.000008669795972838"},{"denom":"ASSET14","index":"0.000025352034708572"},{"denom":"ASSET15","index":"0.000019941753748345"},{"denom":"ASSET16","index":"0.000012337408081897"},{"denom":"ASSET17","index":"0.000009662232510971"},{"denom":"ASSET18","index":"0.000004006663612522"},{"denom":"ASSET2","index":"0.000008414274009770"},{"denom":"ASSET3","index":"0.000002339697370568"},{"denom":"ASSET4","index":"0.000022540556466857"},{"denom":"ASSET5","index":"0.000001822656991491"},{"denom":"ASSET6","index":"0.000007357334263189"},{"denom":"ASSET7","index":"0.000011551068960203"},{"denom":"ASSET8","index":"0.000015761386047857"},{"denom":"ASSET9","index":"0.000006692834331509"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001139195115521"},{"denom":"ASSET1","index":"0.000009496890331931"},{"denom":"ASSET10","index":"0.000006616523219856"},{"denom":"ASSET11","index":"0.000009187371854639"},{"denom":"ASSET12","index":"0.000008273091178185"},{"denom":"ASSET13","index":"0.000002846943294505"},{"denom":"ASSET14","index":"0.000008582261490710"},{"denom":"ASSET15","index":"0.000006136055842283"},{"denom":"ASSET16","index":"0.000004278248649000"},{"denom":"ASSET17","index":"0.000003038433916001"},{"denom":"ASSET18","index":"0.000001447320933748"},{"denom":"ASSET2","index":"0.000002803422698710"},{"denom":"ASSET3","index":"0.000000819928024772"},{"denom":"ASSET4","index":"0.000007718116540611"},{"denom":"ASSET5","index":"0.000000636445192901"},{"denom":"ASSET6","index":"0.000002590694026466"},{"denom":"ASSET7","index":"0.000003967685677409"},{"denom":"ASSET8","index":"0.000005177210075735"},{"denom":"ASSET9","index":"0.000002236262294314"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000002735257365218"},{"denom":"ASSET1","index":"0.000023278157661741"},{"denom":"ASSET10","index":"0.000018999615823078"},{"denom":"ASSET11","index":"0.000023241706683585"},{"denom":"ASSET12","index":"0.000022372793234045"},{"denom":"ASSET13","index":"0.000007316911351959"},{"denom":"ASSET14","index":"0.000021266506066871"},{"denom":"ASSET15","index":"0.000017036720297506"},{"denom":"ASSET16","index":"0.000010298479660409"},{"denom":"ASSET17","index":"0.000008222611745720"},{"denom":"ASSET18","index":"0.000003315370510511"},{"denom":"ASSET2","index":"0.000007081336162231"},{"denom":"ASSET3","index":"0.000001948923871674"},{"denom":"ASSET4","index":"0.000018864412124408"},{"denom":"ASSET5","index":"0.000001519377842401"},{"denom":"ASSET6","index":"0.000006121992555640"},{"denom":"ASSET7","index":"0.000009661272655042"},{"denom":"ASSET8","index":"0.000013300968175029"},{"denom":"ASSET9","index":"0.000005629514833023"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001583959364947"},{"denom":"ASSET1","index":"0.000013443347430705"},{"denom":"ASSET10","index":"0.000009381913161610"},{"denom":"ASSET11","index":"0.000012996589661105"},{"denom":"ASSET12","index":"0.000011696930694994"},{"denom":"ASSET13","index":"0.000004020819926404"},{"denom":"ASSET14","index":"0.000012143688464595"},{"denom":"ASSET15","index":"0.000008691469335864"},{"denom":"ASSET16","index":"0.000006051537060952"},{"denom":"ASSET17","index":"0.000004305120325241"},{"denom":"ASSET18","index":"0.000002030717134548"},{"denom":"ASSET2","index":"0.000003939591241022"},{"denom":"ASSET3","index":"0.000001137201595347"},{"denom":"ASSET4","index":"0.000010925258183866"},{"denom":"ASSET5","index":"0.000000893515539201"},{"denom":"ASSET6","index":"0.000003655290842186"},{"denom":"ASSET7","index":"0.000005604779291351"},{"denom":"ASSET8","index":"0.000007310581684371"},{"denom":"ASSET9","index":"0.000003167918729894"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003310378542013"},{"denom":"ASSET1","index":"0.000028352771206955"},{"denom":"ASSET10","index":"0.000022778987578468"},{"denom":"ASSET11","index":"0.000028201706998458"},{"denom":"ASSET12","index":"0.000026949790221900"},{"denom":"ASSET13","index":"0.000008856641706946"},{"denom":"ASSET14","index":"0.000025865717784540"},{"denom":"ASSET15","index":"0.000020483790155485"},{"denom":"ASSET16","index":"0.000012564495758376"},{"denom":"ASSET17","index":"0.000009912517491786"},{"denom":"ASSET18","index":"0.000004051289802086"},{"denom":"ASSET2","index":"0.000008567503486413"},{"denom":"ASSET3","index":"0.000002358477605528"},{"denom":"ASSET4","index":"0.000022984011222606"},{"denom":"ASSET5","index":"0.000001848359330263"},{"denom":"ASSET6","index":"0.000007474666006436"},{"denom":"ASSET7","index":"0.000011763521743703"},{"denom":"ASSET8","index":"0.000016098224703406"},{"denom":"ASSET9","index":"0.000006837907042961"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001549911588522"},{"denom":"ASSET1","index":"0.000012922257740418"},{"denom":"ASSET10","index":"0.000009003081854783"},{"denom":"ASSET11","index":"0.000012500946332712"},{"denom":"ASSET12","index":"0.000011256607989023"},{"denom":"ASSET13","index":"0.000003873860414458"},{"denom":"ASSET14","index":"0.000011677307025497"},{"denom":"ASSET15","index":"0.000008349069378868"},{"denom":"ASSET16","index":"0.000005821200932633"},{"denom":"ASSET17","index":"0.000004134118188113"},{"denom":"ASSET18","index":"0.000001969385882532"},{"denom":"ASSET2","index":"0.000003814460404941"},{"denom":"ASSET3","index":"0.000001115740384942"},{"denom":"ASSET4","index":"0.000010501554259806"},{"denom":"ASSET5","index":"0.000000865892922233"},{"denom":"ASSET6","index":"0.000003524808812143"},{"denom":"ASSET7","index":"0.000005398664782463"},{"denom":"ASSET8","index":"0.000007044106283197"},{"denom":"ASSET9","index":"0.000003042260281224"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003086330633608"},{"denom":"ASSET1","index":"0.000026187842720704"},{"denom":"ASSET10","index":"0.000020922921087024"},{"denom":"ASSET11","index":"0.000026029396638226"},{"denom":"ASSET12","index":"0.000024828709288325"},{"denom":"ASSET13","index":"0.000008176601230700"},{"denom":"ASSET14","index":"0.000023887113573615"},{"denom":"ASSET15","index":"0.000018841856891118"},{"denom":"ASSET16","index":"0.000011616230118922"},{"denom":"ASSET17","index":"0.000009124242236202"},{"denom":"ASSET18","index":"0.000003767471049721"},{"denom":"ASSET2","index":"0.000007932284099147"},{"denom":"ASSET3","index":"0.000002202458257762"},{"denom":"ASSET4","index":"0.000021230824628511"},{"denom":"ASSET5","index":"0.000001715648257347"},{"denom":"ASSET6","index":"0.000006923830152599"},{"denom":"ASSET7","index":"0.000010879262909104"},{"denom":"ASSET8","index":"0.000014863870027497"},{"denom":"ASSET9","index":"0.000006308409915314"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001535524830156"},{"denom":"ASSET1","index":"0.000012804491333161"},{"denom":"ASSET10","index":"0.000008921035499248"},{"denom":"ASSET11","index":"0.000012386713938596"},{"denom":"ASSET12","index":"0.000011154325740380"},{"denom":"ASSET13","index":"0.000003838812075390"},{"denom":"ASSET14","index":"0.000011571000819920"},{"denom":"ASSET15","index":"0.000008272874264409"},{"denom":"ASSET16","index":"0.000005767863369556"},{"denom":"ASSET17","index":"0.000004096202633783"},{"denom":"ASSET18","index":"0.000001951097594671"},{"denom":"ASSET2","index":"0.000003779838221540"},{"denom":"ASSET3","index":"0.000001105621970313"},{"denom":"ASSET4","index":"0.000010405853838244"},{"denom":"ASSET5","index":"0.000000858152247148"},{"denom":"ASSET6","index":"0.000003492685157466"},{"denom":"ASSET7","index":"0.000005348983659966"},{"denom":"ASSET8","index":"0.000006980409897318"},{"denom":"ASSET9","index":"0.000003014831594025"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003051773960929"},{"denom":"ASSET1","index":"0.000025898629359040"},{"denom":"ASSET10","index":"0.000020686863907037"},{"denom":"ASSET11","index":"0.000025740096441319"},{"denom":"ASSET12","index":"0.000024551000542772"},{"denom":"ASSET13","index":"0.000008085532012369"},{"denom":"ASSET14","index":"0.000023622558405526"},{"denom":"ASSET15","index":"0.000018629920308839"},{"denom":"ASSET16","index":"0.000011487540137638"},{"denom":"ASSET17","index":"0.000009021847693812"},{"denom":"ASSET18","index":"0.000003725572559942"},{"denom":"ASSET2","index":"0.000007844221178735"},{"denom":"ASSET3","index":"0.000002178252359768"},{"denom":"ASSET4","index":"0.000020996168979716"},{"denom":"ASSET5","index":"0.000001697004218389"},{"denom":"ASSET6","index":"0.000006847583721256"},{"denom":"ASSET7","index":"0.000010758483833946"},{"denom":"ASSET8","index":"0.000014699172267780"},{"denom":"ASSET9","index":"0.000006238834616461"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001813824295534"},{"denom":"ASSET1","index":"0.000015126179984122"},{"denom":"ASSET10","index":"0.000010538420488017"},{"denom":"ASSET11","index":"0.000014633035948465"},{"denom":"ASSET12","index":"0.000013177247733614"},{"denom":"ASSET13","index":"0.000004534560738834"},{"denom":"ASSET14","index":"0.000013669547344553"},{"denom":"ASSET15","index":"0.000009773371692973"},{"denom":"ASSET16","index":"0.000006813663054312"},{"denom":"ASSET17","index":"0.000004839398062246"},{"denom":"ASSET18","index":"0.000002305279481754"},{"denom":"ASSET2","index":"0.000004465317911910"},{"denom":"ASSET3","index":"0.000001306325039660"},{"denom":"ASSET4","index":"0.000012293135053249"},{"denom":"ASSET5","index":"0.000001013309662309"},{"denom":"ASSET6","index":"0.000004125859175036"},{"denom":"ASSET7","index":"0.000006318830169217"},{"denom":"ASSET8","index":"0.000008245807377042"},{"denom":"ASSET9","index":"0.000003561783463017"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003452880861936"},{"denom":"ASSET1","index":"0.000029278299049117"},{"denom":"ASSET10","index":"0.000023254773922096"},{"denom":"ASSET11","index":"0.000029065569213605"},{"denom":"ASSET12","index":"0.000027656204711461"},{"denom":"ASSET13","index":"0.000009124518140406"},{"denom":"ASSET14","index":"0.000026695142606829"},{"denom":"ASSET15","index":"0.000020967476611979"},{"denom":"ASSET16","index":"0.000012995878924798"},{"denom":"ASSET17","index":"0.000010163149632422"},{"denom":"ASSET18","index":"0.000004223627093961"},{"denom":"ASSET2","index":"0.000008858348919255"},{"denom":"ASSET3","index":"0.000002465420318230"},{"denom":"ASSET4","index":"0.000023739200929128"},{"denom":"ASSET5","index":"0.000001919695214447"},{"denom":"ASSET6","index":"0.000007752150153146"},{"denom":"ASSET7","index":"0.000012165597276913"},{"denom":"ASSET8","index":"0.000016587849042771"},{"denom":"ASSET9","index":"0.000007046182609545"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001444852701297"},{"denom":"ASSET1","index":"0.000012048934466992"},{"denom":"ASSET10","index":"0.000008394653008080"},{"denom":"ASSET11","index":"0.000011656844181701"},{"denom":"ASSET12","index":"0.000010496256937239"},{"denom":"ASSET13","index":"0.000003612131753243"},{"denom":"ASSET14","index":"0.000010888347222530"},{"denom":"ASSET15","index":"0.000007784952614452"},{"denom":"ASSET16","index":"0.000005427509774140"},{"denom":"ASSET17","index":"0.000003854247504410"},{"denom":"ASSET18","index":"0.000001835962760875"},{"denom":"ASSET2","index":"0.000003556258887589"},{"denom":"ASSET3","index":"0.000001040019481734"},{"denom":"ASSET4","index":"0.000009792454875142"},{"denom":"ASSET5","index":"0.000000807705987699"},{"denom":"ASSET6","index":"0.000003286696816452"},{"denom":"ASSET7","index":"0.000005033459037423"},{"denom":"ASSET8","index":"0.000006568492504337"},{"denom":"ASSET9","index":"0.000002836773214080"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000002868026198866"},{"denom":"ASSET1","index":"0.000024339331661302"},{"denom":"ASSET10","index":"0.000019438063504597"},{"denom":"ASSET11","index":"0.000024190729344646"},{"denom":"ASSET12","index":"0.000023070632234294"},{"denom":"ASSET13","index":"0.000007598221307181"},{"denom":"ASSET14","index":"0.000022200415230506"},{"denom":"ASSET15","index":"0.000017506414948675"},{"denom":"ASSET16","index":"0.000010796282691537"},{"denom":"ASSET17","index":"0.000008477235924619"},{"denom":"ASSET18","index":"0.000003501529899130"},{"denom":"ASSET2","index":"0.000007371086117521"},{"denom":"ASSET3","index":"0.000002046801194740"},{"denom":"ASSET4","index":"0.000019732782799148"},{"denom":"ASSET5","index":"0.000001595074946946"},{"denom":"ASSET6","index":"0.000006435625489467"},{"denom":"ASSET7","index":"0.000010111140720407"},{"denom":"ASSET8","index":"0.000013813490690156"},{"denom":"ASSET9","index":"0.000005862589992841"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001655416114862"},{"denom":"ASSET1","index":"0.000013800538848519"},{"denom":"ASSET10","index":"0.000009615249134678"},{"denom":"ASSET11","index":"0.000013350879623065"},{"denom":"ASSET12","index":"0.000012022439267096"},{"denom":"ASSET13","index":"0.000004137189147657"},{"denom":"ASSET14","index":"0.000012471558036751"},{"denom":"ASSET15","index":"0.000008916980241305"},{"denom":"ASSET16","index":"0.000006216863065381"},{"denom":"ASSET17","index":"0.000004414983428766"},{"denom":"ASSET18","index":"0.000002102913517117"},{"denom":"ASSET2","index":"0.000004073955819077"},{"denom":"ASSET3","index":"0.000001191705038613"},{"denom":"ASSET4","index":"0.000011215538757958"},{"denom":"ASSET5","index":"0.000000924719873500"},{"denom":"ASSET6","index":"0.000003764274645778"},{"denom":"ASSET7","index":"0.000005765582472528"},{"denom":"ASSET8","index":"0.000007523144733557"},{"denom":"ASSET9","index":"0.000003249220268545"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003262792429801"},{"denom":"ASSET1","index":"0.000027679878715890"},{"denom":"ASSET10","index":"0.000022086570261210"},{"denom":"ASSET11","index":"0.000027505267384149"},{"denom":"ASSET12","index":"0.000026222420015979"},{"denom":"ASSET13","index":"0.000008638975204347"},{"denom":"ASSET14","index":"0.000025246236428505"},{"denom":"ASSET15","index":"0.000019895354512471"},{"denom":"ASSET16","index":"0.000012279836462442"},{"denom":"ASSET17","index":"0.000009636125515167"},{"denom":"ASSET18","index":"0.000003984145752232"},{"denom":"ASSET2","index":"0.000008382344169353"},{"denom":"ASSET3","index":"0.000002328549799735"},{"denom":"ASSET4","index":"0.000022441247538096"},{"denom":"ASSET5","index":"0.000001813932132265"},{"denom":"ASSET6","index":"0.000007320527694069"},{"denom":"ASSET7","index":"0.000011499571173317"},{"denom":"ASSET8","index":"0.000015704553099640"},{"denom":"ASSET9","index":"0.000006666608399750"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001676736923170"},{"denom":"ASSET1","index":"0.000013985463602132"},{"denom":"ASSET10","index":"0.000009743339709608"},{"denom":"ASSET11","index":"0.000013528824721587"},{"denom":"ASSET12","index":"0.000012182509640070"},{"denom":"ASSET13","index":"0.000004192868462713"},{"denom":"ASSET14","index":"0.000012638122365828"},{"denom":"ASSET15","index":"0.000009036319060854"},{"denom":"ASSET16","index":"0.000006299564241947"},{"denom":"ASSET17","index":"0.000004474034874554"},{"denom":"ASSET18","index":"0.000002131323494140"},{"denom":"ASSET2","index":"0.000004128220711085"},{"denom":"ASSET3","index":"0.000001207784185172"},{"denom":"ASSET4","index":"0.000011365690429028"},{"denom":"ASSET5","index":"0.000000936879321208"},{"denom":"ASSET6","index":"0.000003814217346036"},{"denom":"ASSET7","index":"0.000005841899206614"},{"denom":"ASSET8","index":"0.000007623303918134"},{"denom":"ASSET9","index":"0.000003292930713863"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003296156578493"},{"denom":"ASSET1","index":"0.000027968412540894"},{"denom":"ASSET10","index":"0.000022307812536905"},{"denom":"ASSET11","index":"0.000027788867279184"},{"denom":"ASSET12","index":"0.000026488589695468"},{"denom":"ASSET13","index":"0.000008728285856057"},{"denom":"ASSET14","index":"0.000025508064125070"},{"denom":"ASSET15","index":"0.000020096610749334"},{"denom":"ASSET16","index":"0.000012407784704791"},{"denom":"ASSET17","index":"0.000009734180928237"},{"denom":"ASSET18","index":"0.000004026678592252"},{"denom":"ASSET2","index":"0.000008468774984810"},{"denom":"ASSET3","index":"0.000002353220293961"},{"denom":"ASSET4","index":"0.000022675279511256"},{"denom":"ASSET5","index":"0.000001832728492238"},{"denom":"ASSET6","index":"0.000007397034942132"},{"denom":"ASSET7","index":"0.000011618881320506"},{"denom":"ASSET8","index":"0.000015866042832442"},{"denom":"ASSET9","index":"0.000006735898552490"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001687654189845"},{"denom":"ASSET1","index":"0.000014079752531439"},{"denom":"ASSET10","index":"0.000009809029374167"},{"denom":"ASSET11","index":"0.000013620990639222"},{"denom":"ASSET12","index":"0.000012264971552184"},{"denom":"ASSET13","index":"0.000004220977891851"},{"denom":"ASSET14","index":"0.000012723733444402"},{"denom":"ASSET15","index":"0.000009097856320367"},{"denom":"ASSET16","index":"0.000006341600132585"},{"denom":"ASSET17","index":"0.000004504710146476"},{"denom":"ASSET18","index":"0.000002144573664825"},{"denom":"ASSET2","index":"0.000004156493288528"},{"denom":"ASSET3","index":"0.000001215995376963"},{"denom":"ASSET4","index":"0.000011441411046878"},{"denom":"ASSET5","index":"0.000000943317625765"},{"denom":"ASSET6","index":"0.000003839597523622"},{"denom":"ASSET7","index":"0.000005880995823129"},{"denom":"ASSET8","index":"0.000007675510212768"},{"denom":"ASSET9","index":"0.000003314508610843"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003237925740153"},{"denom":"ASSET1","index":"0.000027468087048908"},{"denom":"ASSET10","index":"0.000021838560142362"},{"denom":"ASSET11","index":"0.000027274223261348"},{"denom":"ASSET12","index":"0.000025962125103579"},{"denom":"ASSET13","index":"0.000008562973508850"},{"denom":"ASSET14","index":"0.000025046299162567"},{"denom":"ASSET15","index":"0.000019687604125947"},{"denom":"ASSET16","index":"0.000012189946370622"},{"denom":"ASSET17","index":"0.000009540519193028"},{"denom":"ASSET18","index":"0.000003959057055270"},{"denom":"ASSET2","index":"0.000008312511220651"},{"denom":"ASSET3","index":"0.000002312646079660"},{"denom":"ASSET4","index":"0.000022269978905361"},{"denom":"ASSET5","index":"0.000001800462011039"},{"denom":"ASSET6","index":"0.000007270233858279"},{"denom":"ASSET7","index":"0.000011411601588483"},{"denom":"ASSET8","index":"0.000015567552190875"},{"denom":"ASSET9","index":"0.000006610637099613"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001700269946448"},{"denom":"ASSET1","index":"0.000014175647296985"},{"denom":"ASSET10","index":"0.000009876508679424"},{"denom":"ASSET11","index":"0.000013714231996791"},{"denom":"ASSET12","index":"0.000012349169664489"},{"denom":"ASSET13","index":"0.000004249665204630"},{"denom":"ASSET14","index":"0.000012810584964683"},{"denom":"ASSET15","index":"0.000009159649022667"},{"denom":"ASSET16","index":"0.000006386108914062"},{"denom":"ASSET17","index":"0.000004535399405845"},{"denom":"ASSET18","index":"0.000002160675585153"},{"denom":"ASSET2","index":"0.000004184037207885"},{"denom":"ASSET3","index":"0.000001223709723928"},{"denom":"ASSET4","index":"0.000011520237582522"},{"denom":"ASSET5","index":"0.000000950091460574"},{"denom":"ASSET6","index":"0.000003867003500531"},{"denom":"ASSET7","index":"0.000005922674290891"},{"denom":"ASSET8","index":"0.000007727949032131"},{"denom":"ASSET9","index":"0.000003337940880615"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003224934301433"},{"denom":"ASSET1","index":"0.000027341438894536"},{"denom":"ASSET10","index":"0.000021706571274337"},{"denom":"ASSET11","index":"0.000027141091242061"},{"denom":"ASSET12","index":"0.000025819235056226"},{"denom":"ASSET13","index":"0.000008520116782966"},{"denom":"ASSET14","index":"0.000024928444433519"},{"denom":"ASSET15","index":"0.000019573794936329"},{"denom":"ASSET16","index":"0.000012137286393349"},{"denom":"ASSET17","index":"0.000009487995483061"},{"denom":"ASSET18","index":"0.000003945309126507"},{"denom":"ASSET2","index":"0.000008271045740629"},{"denom":"ASSET3","index":"0.000002302032616683"},{"denom":"ASSET4","index":"0.000022168721917699"},{"denom":"ASSET5","index":"0.000001793343624246"},{"denom":"ASSET6","index":"0.000007240378309003"},{"denom":"ASSET7","index":"0.000011361888746536"},{"denom":"ASSET8","index":"0.000015488944629697"},{"denom":"ASSET9","index":"0.000006579500326985"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001505652349479"},{"denom":"ASSET1","index":"0.000012557843622987"},{"denom":"ASSET10","index":"0.000008748308836028"},{"denom":"ASSET11","index":"0.000012147743761261"},{"denom":"ASSET12","index":"0.000010939413811534"},{"denom":"ASSET13","index":"0.000003764130873697"},{"denom":"ASSET14","index":"0.000011348049030896"},{"denom":"ASSET15","index":"0.000008114118692716"},{"denom":"ASSET16","index":"0.000005656448807088"},{"denom":"ASSET17","index":"0.000004017514002549"},{"denom":"ASSET18","index":"0.000001912822926478"},{"denom":"ASSET2","index":"0.000003707009821528"},{"denom":"ASSET3","index":"0.000001083835348847"},{"denom":"ASSET4","index":"0.000010205627987517"},{"denom":"ASSET5","index":"0.000000840704716538"},{"denom":"ASSET6","index":"0.000003424333845410"},{"denom":"ASSET7","index":"0.000005246348945363"},{"denom":"ASSET8","index":"0.000006845738406093"},{"denom":"ASSET9","index":"0.000002955648289152"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000002959758868257"},{"denom":"ASSET1","index":"0.000025116229265451"},{"denom":"ASSET10","index":"0.000020033024535037"},{"denom":"ASSET11","index":"0.000024955202637112"},{"denom":"ASSET12","index":"0.000023787913163340"},{"denom":"ASSET13","index":"0.000007837044315100"},{"denom":"ASSET14","index":"0.000022906603767748"},{"denom":"ASSET15","index":"0.000018047329062837"},{"denom":"ASSET16","index":"0.000011142428291313"},{"denom":"ASSET17","index":"0.000008741414303940"},{"denom":"ASSET18","index":"0.000003614587489816"},{"denom":"ASSET2","index":"0.000007605147442913"},{"denom":"ASSET3","index":"0.000002112677625393"},{"denom":"ASSET4","index":"0.000020363145786569"},{"denom":"ASSET5","index":"0.000001645239564154"},{"denom":"ASSET6","index":"0.000006641765641459"},{"denom":"ASSET7","index":"0.000010434431181702"},{"denom":"ASSET8","index":"0.000014248591155217"},{"denom":"ASSET9","index":"0.000006047835874095"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001815877519749"},{"denom":"ASSET1","index":"0.000015137138459046"},{"denom":"ASSET10","index":"0.000010545739718907"},{"denom":"ASSET11","index":"0.000014644907422941"},{"denom":"ASSET12","index":"0.000013186828093302"},{"denom":"ASSET13","index":"0.000004537625601742"},{"denom":"ASSET14","index":"0.000013679059129408"},{"denom":"ASSET15","index":"0.000009780506595550"},{"denom":"ASSET16","index":"0.000006818847588397"},{"denom":"ASSET17","index":"0.000004841650653454"},{"denom":"ASSET18","index":"0.000002306040358223"},{"denom":"ASSET2","index":"0.000004467306882298"},{"denom":"ASSET3","index":"0.000001307100902598"},{"denom":"ASSET4","index":"0.000012301639507366"},{"denom":"ASSET5","index":"0.000001013416839040"},{"denom":"ASSET6","index":"0.000004128122470864"},{"denom":"ASSET7","index":"0.000006324548354661"},{"denom":"ASSET8","index":"0.000008252108546467"},{"denom":"ASSET9","index":"0.000003563504517685"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003468946703322"},{"denom":"ASSET1","index":"0.000029412495408176"},{"denom":"ASSET10","index":"0.000023372734593498"},{"denom":"ASSET11","index":"0.000029203218600002"},{"denom":"ASSET12","index":"0.000027792166579196"},{"denom":"ASSET13","index":"0.000009167641990636"},{"denom":"ASSET14","index":"0.000026818252104650"},{"denom":"ASSET15","index":"0.000021072198152383"},{"denom":"ASSET16","index":"0.000013054905852031"},{"denom":"ASSET17","index":"0.000010211457984650"},{"denom":"ASSET18","index":"0.000004240878207320"},{"denom":"ASSET2","index":"0.000008898543974195"},{"denom":"ASSET3","index":"0.000002476460623897"},{"denom":"ASSET4","index":"0.000023847831794350"},{"denom":"ASSET5","index":"0.000001927880642719"},{"denom":"ASSET6","index":"0.000007785977685579"},{"denom":"ASSET7","index":"0.000012222326144679"},{"denom":"ASSET8","index":"0.000016667230515151"},{"denom":"ASSET9","index":"0.000007078301868557"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001541968050995"},{"denom":"ASSET1","index":"0.000012857487907975"},{"denom":"ASSET10","index":"0.000008957704485900"},{"denom":"ASSET11","index":"0.000012438763825161"},{"denom":"ASSET12","index":"0.000011200869215257"},{"denom":"ASSET13","index":"0.000003854089325736"},{"denom":"ASSET14","index":"0.000011619593298070"},{"denom":"ASSET15","index":"0.000008307186714386"},{"denom":"ASSET16","index":"0.000005792349812251"},{"denom":"ASSET17","index":"0.000004113299472240"},{"denom":"ASSET18","index":"0.000001959030530305"},{"denom":"ASSET2","index":"0.000003795102401372"},{"denom":"ASSET3","index":"0.000001109951140156"},{"denom":"ASSET4","index":"0.000010448993630046"},{"denom":"ASSET5","index":"0.000000861541416423"},{"denom":"ASSET6","index":"0.000003506814193562"},{"denom":"ASSET7","index":"0.000005371133324183"},{"denom":"ASSET8","index":"0.000007009474378365"},{"denom":"ASSET9","index":"0.000003027441582881"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003053196756625"},{"denom":"ASSET1","index":"0.000025905581999278"},{"denom":"ASSET10","index":"0.000020682143152818"},{"denom":"ASSET11","index":"0.000025745380902198"},{"denom":"ASSET12","index":"0.000024550499550641"},{"denom":"ASSET13","index":"0.000008086239198545"},{"denom":"ASSET14","index":"0.000023629161089906"},{"denom":"ASSET15","index":"0.000018628151539367"},{"denom":"ASSET16","index":"0.000011492271696690"},{"denom":"ASSET17","index":"0.000009021688715966"},{"denom":"ASSET18","index":"0.000003727673632537"},{"denom":"ASSET2","index":"0.000007845443656426"},{"denom":"ASSET3","index":"0.000002178852781858"},{"denom":"ASSET4","index":"0.000021002318737231"},{"denom":"ASSET5","index":"0.000001697417622442"},{"denom":"ASSET6","index":"0.000006850319017638"},{"denom":"ASSET7","index":"0.000010761758840612"},{"denom":"ASSET8","index":"0.000014701087498525"},{"denom":"ASSET9","index":"0.000006240132889304"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001327266579501"},{"denom":"ASSET1","index":"0.000011071143497688"},{"denom":"ASSET10","index":"0.000007713614824674"},{"denom":"ASSET11","index":"0.000010710668391289"},{"denom":"ASSET12","index":"0.000009644435509525"},{"denom":"ASSET13","index":"0.000003318857014090"},{"denom":"ASSET14","index":"0.000010004910615924"},{"denom":"ASSET15","index":"0.000007152875770275"},{"denom":"ASSET16","index":"0.000004987262870528"},{"denom":"ASSET17","index":"0.000003541219052903"},{"denom":"ASSET18","index":"0.000001686360555224"},{"denom":"ASSET2","index":"0.000003267755179083"},{"denom":"ASSET3","index":"0.000000955742427695"},{"denom":"ASSET4","index":"0.000008998066353223"},{"denom":"ASSET5","index":"0.000000741667172936"},{"denom":"ASSET6","index":"0.000003019151657428"},{"denom":"ASSET7","index":"0.000004625406633453"},{"denom":"ASSET8","index":"0.000006035541053505"},{"denom":"ASSET9","index":"0.000002606193585346"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000002827520151011"},{"denom":"ASSET1","index":"0.000024027878888002"},{"denom":"ASSET10","index":"0.000019355847170480"},{"denom":"ASSET11","index":"0.000023924401086085"},{"denom":"ASSET12","index":"0.000022900407365256"},{"denom":"ASSET13","index":"0.000007521399074311"},{"denom":"ASSET14","index":"0.000021930603354990"},{"denom":"ASSET15","index":"0.000017401215805238"},{"denom":"ASSET16","index":"0.000010647310435771"},{"denom":"ASSET17","index":"0.000008415007538097"},{"denom":"ASSET18","index":"0.000003442593620109"},{"denom":"ASSET2","index":"0.000007289635767836"},{"denom":"ASSET3","index":"0.000002016810506595"},{"denom":"ASSET4","index":"0.000019477449509443"},{"denom":"ASSET5","index":"0.000001571692130579"},{"denom":"ASSET6","index":"0.000006339251488002"},{"denom":"ASSET7","index":"0.000009978075244424"},{"denom":"ASSET8","index":"0.000013673195599374"},{"denom":"ASSET9","index":"0.000005796522499795"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001571435631869"},{"denom":"ASSET1","index":"0.000013104175099655"},{"denom":"ASSET10","index":"0.000009129715488355"},{"denom":"ASSET11","index":"0.000012677036600848"},{"denom":"ASSET12","index":"0.000011415350365342"},{"denom":"ASSET13","index":"0.000003928095848150"},{"denom":"ASSET14","index":"0.000011841502401104"},{"denom":"ASSET15","index":"0.000008466812321615"},{"denom":"ASSET16","index":"0.000005902994865728"},{"denom":"ASSET17","index":"0.000004192467944409"},{"denom":"ASSET18","index":"0.000001996601204585"},{"denom":"ASSET2","index":"0.000003867921602360"},{"denom":"ASSET3","index":"0.000001131473113468"},{"denom":"ASSET4","index":"0.000010648868578800"},{"denom":"ASSET5","index":"0.000000877952110712"},{"denom":"ASSET6","index":"0.000003573955614728"},{"denom":"ASSET7","index":"0.000005473883440830"},{"denom":"ASSET8","index":"0.000007142978914228"},{"denom":"ASSET9","index":"0.000003084669944040"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003141123056438"},{"denom":"ASSET1","index":"0.000026662100889972"},{"denom":"ASSET10","index":"0.000021312054987248"},{"denom":"ASSET11","index":"0.000026503481745319"},{"denom":"ASSET12","index":"0.000025286293002787"},{"denom":"ASSET13","index":"0.000008324908472884"},{"denom":"ASSET14","index":"0.000024319980387721"},{"denom":"ASSET15","index":"0.000019190708128374"},{"denom":"ASSET16","index":"0.000011824997422058"},{"denom":"ASSET17","index":"0.000009292034078872"},{"denom":"ASSET18","index":"0.000003834040785154"},{"denom":"ASSET2","index":"0.000008076003481032"},{"denom":"ASSET3","index":"0.000002241608843356"},{"denom":"ASSET4","index":"0.000021614431804298"},{"denom":"ASSET5","index":"0.000001746420421862"},{"denom":"ASSET6","index":"0.000007047828859327"},{"denom":"ASSET7","index":"0.000011075197168484"},{"denom":"ASSET8","index":"0.000015134882092008"},{"denom":"ASSET9","index":"0.000006422749115253"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[{"denom":"ASSET0","index":"0.000001554974273829"},{"denom":"ASSET1","index":"0.000012964145980643"},{"denom":"ASSET10","index":"0.000009032293690170"},{"denom":"ASSET11","index":"0.000012541598623624"},{"denom":"ASSET12","index":"0.000011293609918011"},{"denom":"ASSET13","index":"0.000003886649549954"},{"denom":"ASSET14","index":"0.000011715371140412"},{"denom":"ASSET15","index":"0.000008376264351692"},{"denom":"ASSET16","index":"0.000005840194074962"},{"denom":"ASSET17","index":"0.000004147646243034"},{"denom":"ASSET18","index":"0.000001975556294303"},{"denom":"ASSET2","index":"0.000003826903319009"},{"denom":"ASSET3","index":"0.000001119455695618"},{"denom":"ASSET4","index":"0.000010535776146539"},{"denom":"ASSET5","index":"0.000000869071819878"},{"denom":"ASSET6","index":"0.000003536426577765"},{"denom":"ASSET7","index":"0.000005416074448708"},{"denom":"ASSET8","index":"0.000007067350213206"},{"denom":"ASSET9","index":"0.000003052560720565"}]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[{"denom":"ASSET0","index":"0.000003054120352223"},{"denom":"ASSET1","index":"0.000025909289170716"},{"denom":"ASSET10","index":"0.000020664041936079"},{"denom":"ASSET11","index":"0.000025743066158465"},{"denom":"ASSET12","index":"0.000024537849095602"},{"denom":"ASSET13","index":"0.000008085297309351"},{"denom":"ASSET14","index":"0.000023630023251940"},{"denom":"ASSET15","index":"0.000018615490114349"},{"denom":"ASSET16","index":"0.000011495216270003"},{"denom":"ASSET17","index":"0.000009017197770141"},{"denom":"ASSET18","index":"0.000003730110182262"},{"denom":"ASSET2","index":"0.000007845299155388"},{"denom":"ASSET3","index":"0.000002179886924088"},{"denom":"ASSET4","index":"0.000021005968780047"},{"denom":"ASSET5","index":"0.000001698230665763"},{"denom":"ASSET6","index":"0.000006853367473041"},{"denom":"ASSET7","index":"0.000010764057351149"},{"denom":"ASSET8","index":"0.000014698116791571"},{"denom":"ASSET9","index":"0.000006239964640655"}]}},{"height":"60","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907111938089727377","reward_histories":[]}},{"height":"120","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907110125465263336","reward_histories":[]}},{"height":"180","validator":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cje6pglzp","denom":"ASSET19","snapshot":{"prev_reward_weight":"0.907108312844421348","reward_histories":[]}}],"delegations":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET2","shares":"401621564.000000000000000000","reward_history":[],"last_reward_claim_height":"59"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET16","shares":"142853639.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001587610635106"},{"denom":"ASSET1","index":"0.000013244938725362"},{"denom":"ASSET10","index":"0.000009227311812032"},{"denom":"ASSET11","index":"0.000012812935831455"},{"denom":"ASSET12","index":"0.000011538527294432"},{"denom":"ASSET13","index":"0.000003970376596809"},{"denom":"ASSET14","index":"0.000011969180179294"},{"denom":"ASSET15","index":"0.000008557707326477"},{"denom":"ASSET16","index":"0.000005967039972082"},{"denom":"ASSET17","index":"0.000004237678387413"},{"denom":"ASSET18","index":"0.000002018263519969"},{"denom":"ASSET2","index":"0.000003909626189853"},{"denom":"ASSET3","index":"0.000001143457659809"},{"denom":"ASSET4","index":"0.000010763622103487"},{"denom":"ASSET5","index":"0.000000886955941552"},{"denom":"ASSET6","index":"0.000003612624200292"},{"denom":"ASSET7","index":"0.000005533687069132"},{"denom":"ASSET8","index":"0.000007219848364411"},{"denom":"ASSET9","index":"0.000003118520890387"}],"last_reward_claim_height":"66"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET8","shares":"949226702.000000000000000000","reward_history":[],"last_reward_claim_height":"39"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET17","shares":"128326088.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001450981944084"},{"denom":"ASSET1","index":"0.000012097851501865"},{"denom":"ASSET10","index":"0.000008428524260541"},{"denom":"ASSET11","index":"0.000011703479004578"},{"denom":"ASSET12","index":"0.000010538773481717"},{"denom":"ASSET13","index":"0.000003626563958485"},{"denom":"ASSET14","index":"0.000010932552044520"},{"denom":"ASSET15","index":"0.000007816771742159"},{"denom":"ASSET16","index":"0.000005449942823954"},{"denom":"ASSET17","index":"0.000003870671031354"},{"denom":"ASSET18","index":"0.000001843572637920"},{"denom":"ASSET2","index":"0.000003571328051486"},{"denom":"ASSET3","index":"0.000001044730757120"},{"denom":"ASSET4","index":"0.000009831991445917"},{"denom":"ASSET5","index":"0.000000810720570477"},{"denom":"ASSET6","index":"0.000003299899992359"},{"denom":"ASSET7","index":"0.000005054382457699"},{"denom":"ASSET8","index":"0.000006595048508847"},{"denom":"ASSET9","index":"0.000002848509784621"}],"last_reward_claim_height":"73"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET6","shares":"484673901.000000019199640661","reward_history":[{"denom":"ASSET0","index":"0.000001596167964962"},{"denom":"ASSET1","index":"0.000013307648687747"},{"denom":"ASSET10","index":"0.000009271254138767"},{"denom":"ASSET11","index":"0.000012873344596610"},{"denom":"ASSET12","index":"0.000011592750107942"},{"denom":"ASSET13","index":"0.000003989527201016"},{"denom":"ASSET14","index":"0.000012025715131995"},{"denom":"ASSET15","index":"0.000008598149750858"},{"denom":"ASSET16","index":"0.000005994556982506"},{"denom":"ASSET17","index":"0.000004257340617956"},{"denom":"ASSET18","index":"0.000002028240277625"},{"denom":"ASSET2","index":"0.000003928376470814"},{"denom":"ASSET3","index":"0.000001148919558672"},{"denom":"ASSET4","index":"0.000010814752131731"},{"denom":"ASSET5","index":"0.000000891818678410"},{"denom":"ASSET6","index":"0.000003630210866621"},{"denom":"ASSET7","index":"0.000005559360179979"},{"denom":"ASSET8","index":"0.000007254619109209"},{"denom":"ASSET9","index":"0.000003133416978198"}],"last_reward_claim_height":"120"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET13","shares":"248620231.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001596167964962"},{"denom":"ASSET1","index":"0.000013307648687747"},{"denom":"ASSET10","index":"0.000009271254138767"},{"denom":"ASSET11","index":"0.000012873344596610"},{"denom":"ASSET12","index":"0.000011592750107942"},{"denom":"ASSET13","index":"0.000003989527201016"},{"denom":"ASSET14","index":"0.000012025715131995"},{"denom":"ASSET15","index":"0.000008598149750858"},{"denom":"ASSET16","index":"0.000005994556982506"},{"denom":"ASSET17","index":"0.000004257340617956"},{"denom":"ASSET18","index":"0.000002028240277625"},{"denom":"ASSET2","index":"0.000003928376470814"},{"denom":"ASSET3","index":"0.000001148919558672"},{"denom":"ASSET4","index":"0.000010814752131731"},{"denom":"ASSET5","index":"0.000000891818678410"},{"denom":"ASSET6","index":"0.000003630210866621"},{"denom":"ASSET7","index":"0.000005559360179979"},{"denom":"ASSET8","index":"0.000007254619109209"},{"denom":"ASSET9","index":"0.000003133416978198"}],"last_reward_claim_height":"120"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET15","shares":"197871957.768488818319313522","reward_history":[{"denom":"ASSET0","index":"0.000001596167964962"},{"denom":"ASSET1","index":"0.000013307648687747"},{"denom":"ASSET10","index":"0.000009271254138767"},{"denom":"ASSET11","index":"0.000012873344596610"},{"denom":"ASSET12","index":"0.000011592750107942"},{"denom":"ASSET13","index":"0.000003989527201016"},{"denom":"ASSET14","index":"0.000012025715131995"},{"denom":"ASSET15","index":"0.000008598149750858"},{"denom":"ASSET16","index":"0.000005994556982506"},{"denom":"ASSET17","index":"0.000004257340617956"},{"denom":"ASSET18","index":"0.000002028240277625"},{"denom":"ASSET2","index":"0.000003928376470814"},{"denom":"ASSET3","index":"0.000001148919558672"},{"denom":"ASSET4","index":"0.000010814752131731"},{"denom":"ASSET5","index":"0.000000891818678410"},{"denom":"ASSET6","index":"0.000003630210866621"},{"denom":"ASSET7","index":"0.000005559360179979"},{"denom":"ASSET8","index":"0.000007254619109209"},{"denom":"ASSET9","index":"0.000003133416978198"}],"last_reward_claim_height":"106"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET18","shares":"977553697.000000116328889943","reward_history":[],"last_reward_claim_height":"58"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET2","shares":"999999999.999999974000000000","reward_history":[{"denom":"ASSET0","index":"0.000001539653287763"},{"denom":"ASSET1","index":"0.000012837628062054"},{"denom":"ASSET10","index":"0.000008944076712630"},{"denom":"ASSET11","index":"0.000012418678362380"},{"denom":"ASSET12","index":"0.000011182855597091"},{"denom":"ASSET13","index":"0.000003848344731893"},{"denom":"ASSET14","index":"0.000011600753980079"},{"denom":"ASSET15","index":"0.000008294363000211"},{"denom":"ASSET16","index":"0.000005782767435536"},{"denom":"ASSET17","index":"0.000004106968636837"},{"denom":"ASSET18","index":"0.000001956500354065"},{"denom":"ASSET2","index":"0.000003789470997435"},{"denom":"ASSET3","index":"0.000001108613446191"},{"denom":"ASSET4","index":"0.000010432741141086"},{"denom":"ASSET5","index":"0.000000860502708115"},{"denom":"ASSET6","index":"0.000003501935883605"},{"denom":"ASSET7","index":"0.000005362766419174"},{"denom":"ASSET8","index":"0.000006998089525433"},{"denom":"ASSET9","index":"0.000003022535474442"}],"last_reward_claim_height":"81"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET6","shares":"594454284.000000000000000000","reward_history":[],"last_reward_claim_height":"22"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET8","shares":"1000053538.034377256000000000","reward_history":[{"denom":"ASSET0","index":"0.000001539653287763"},{"denom":"ASSET1","index":"0.000012837628062054"},{"denom":"ASSET10","index":"0.000008944076712630"},{"denom":"ASSET11","index":"0.000012418678362380"},{"denom":"ASSET12","index":"0.000011182855597091"},{"denom":"ASSET13","index":"0.000003848344731893"},{"denom":"ASSET14","index":"0.000011600753980079"},{"denom":"ASSET15","index":"0.000008294363000211"},{"denom":"ASSET16","index":"0.000005782767435536"},{"denom":"ASSET17","index":"0.000004106968636837"},{"denom":"ASSET18","index":"0.000001956500354065"},{"denom":"ASSET2","index":"0.000003789470997435"},{"denom":"ASSET3","index":"0.000001108613446191"},{"denom":"ASSET4","index":"0.000010432741141086"},{"denom":"ASSET5","index":"0.000000860502708115"},{"denom":"ASSET6","index":"0.000003501935883605"},{"denom":"ASSET7","index":"0.000005362766419174"},{"denom":"ASSET8","index":"0.000006998089525433"},{"denom":"ASSET9","index":"0.000003022535474442"}],"last_reward_claim_height":"76"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET11","shares":"3756464.999999999555966138","reward_history":[{"denom":"ASSET0","index":"0.000001539653287763"},{"denom":"ASSET1","index":"0.000012837628062054"},{"denom":"ASSET10","index":"0.000008944076712630"},{"denom":"ASSET11","index":"0.000012418678362380"},{"denom":"ASSET12","index":"0.000011182855597091"},{"denom":"ASSET13","index":"0.000003848344731893"},{"denom":"ASSET14","index":"0.000011600753980079"},{"denom":"ASSET15","index":"0.000008294363000211"},{"denom":"ASSET16","index":"0.000005782767435536"},{"denom":"ASSET17","index":"0.000004106968636837"},{"denom":"ASSET18","index":"0.000001956500354065"},{"denom":"ASSET2","index":"0.000003789470997435"},{"denom":"ASSET3","index":"0.000001108613446191"},{"denom":"ASSET4","index":"0.000010432741141086"},{"denom":"ASSET5","index":"0.000000860502708115"},{"denom":"ASSET6","index":"0.000003501935883605"},{"denom":"ASSET7","index":"0.000005362766419174"},{"denom":"ASSET8","index":"0.000006998089525433"},{"denom":"ASSET9","index":"0.000003022535474442"}],"last_reward_claim_height":"118"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET2","shares":"243633807.999999998294563344","reward_history":[],"last_reward_claim_height":"57"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET7","shares":"66453494.368842779053227113","reward_history":[{"denom":"ASSET0","index":"0.000001722784092424"},{"denom":"ASSET1","index":"0.000014376047839207"},{"denom":"ASSET10","index":"0.000010014727915911"},{"denom":"ASSET11","index":"0.000013905627425621"},{"denom":"ASSET12","index":"0.000012523636788373"},{"denom":"ASSET13","index":"0.000004309050988454"},{"denom":"ASSET14","index":"0.000012989875687172"},{"denom":"ASSET15","index":"0.000009287144342897"},{"denom":"ASSET16","index":"0.000006475075648346"},{"denom":"ASSET17","index":"0.000004597575508787"},{"denom":"ASSET18","index":"0.000002191113748617"},{"denom":"ASSET2","index":"0.000004242146751855"},{"denom":"ASSET3","index":"0.000001239819134475"},{"denom":"ASSET4","index":"0.000011683152316098"},{"denom":"ASSET5","index":"0.000000961748401110"},{"denom":"ASSET6","index":"0.000003920170113222"},{"denom":"ASSET7","index":"0.000006004655234759"},{"denom":"ASSET8","index":"0.000007836158711656"},{"denom":"ASSET9","index":"0.000003384936220430"}],"last_reward_claim_height":"87"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET9","shares":"337053974.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003308323901116"},{"denom":"ASSET1","index":"0.000028066718381779"},{"denom":"ASSET10","index":"0.000022316311421496"},{"denom":"ASSET11","index":"0.000027867424204892"},{"denom":"ASSET12","index":"0.000026530665881565"},{"denom":"ASSET13","index":"0.000008749579510737"},{"denom":"ASSET14","index":"0.000025590688346390"},{"denom":"ASSET15","index":"0.000020116135001180"},{"denom":"ASSET16","index":"0.000012455644018572"},{"denom":"ASSET17","index":"0.000009747635771928"},{"denom":"ASSET18","index":"0.000004046709206696"},{"denom":"ASSET2","index":"0.000008491843085820"},{"denom":"ASSET3","index":"0.000002361259343526"},{"denom":"ASSET4","index":"0.000022756236881458"},{"denom":"ASSET5","index":"0.000001838827056256"},{"denom":"ASSET6","index":"0.000007428217086977"},{"denom":"ASSET7","index":"0.000011660835649526"},{"denom":"ASSET8","index":"0.000015906513514404"},{"denom":"ASSET9","index":"0.000006755948018281"}],"last_reward_claim_height":"153"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET1","shares":"116511276.999999995003553718","reward_history":[],"last_reward_claim_height":"58"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET5","shares":"812509324.206662102532725198","reward_history":[{"denom":"ASSET0","index":"0.000001570026110869"},{"denom":"ASSET1","index":"0.000013093495665706"},{"denom":"ASSET10","index":"0.000009121814411369"},{"denom":"ASSET11","index":"0.000012665871768525"},{"denom":"ASSET12","index":"0.000011405375746022"},{"denom":"ASSET13","index":"0.000003924443730811"},{"denom":"ASSET14","index":"0.000011831756550478"},{"denom":"ASSET15","index":"0.000008459245989284"},{"denom":"ASSET16","index":"0.000005898474977098"},{"denom":"ASSET17","index":"0.000004187979388376"},{"denom":"ASSET18","index":"0.000001995163822601"},{"denom":"ASSET2","index":"0.000003864775280042"},{"denom":"ASSET3","index":"0.000001129971286445"},{"denom":"ASSET4","index":"0.000010639630627815"},{"denom":"ASSET5","index":"0.000000877623463400"},{"denom":"ASSET6","index":"0.000003571405397092"},{"denom":"ASSET7","index":"0.000005469607987193"},{"denom":"ASSET8","index":"0.000007137838423287"},{"denom":"ASSET9","index":"0.000003082869956418"}],"last_reward_claim_height":"108"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET12","shares":"745108195.387172839504558624","reward_history":[{"denom":"ASSET0","index":"0.000001570026110869"},{"denom":"ASSET1","index":"0.000013093495665706"},{"denom":"ASSET10","index":"0.000009121814411369"},{"denom":"ASSET11","index":"0.000012665871768525"},{"denom":"ASSET12","index":"0.000011405375746022"},{"denom":"ASSET13","index":"0.000003924443730811"},{"denom":"ASSET14","index":"0.000011831756550478"},{"denom":"ASSET15","index":"0.000008459245989284"},{"denom":"ASSET16","index":"0.000005898474977098"},{"denom":"ASSET17","index":"0.000004187979388376"},{"denom":"ASSET18","index":"0.000001995163822601"},{"denom":"ASSET2","index":"0.000003864775280042"},{"denom":"ASSET3","index":"0.000001129971286445"},{"denom":"ASSET4","index":"0.000010639630627815"},{"denom":"ASSET5","index":"0.000000877623463400"},{"denom":"ASSET6","index":"0.000003571405397092"},{"denom":"ASSET7","index":"0.000005469607987193"},{"denom":"ASSET8","index":"0.000007137838423287"},{"denom":"ASSET9","index":"0.000003082869956418"}],"last_reward_claim_height":"122"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET15","shares":"900985408.052243066967862560","reward_history":[{"denom":"ASSET0","index":"0.000003142586597057"},{"denom":"ASSET1","index":"0.000026671940208455"},{"denom":"ASSET10","index":"0.000021322845581004"},{"denom":"ASSET11","index":"0.000026513185667064"},{"denom":"ASSET12","index":"0.000025297681895631"},{"denom":"ASSET13","index":"0.000008328263582513"},{"denom":"ASSET14","index":"0.000024329302916923"},{"denom":"ASSET15","index":"0.000019199384187435"},{"denom":"ASSET16","index":"0.000011829863063918"},{"denom":"ASSET17","index":"0.000009295955073087"},{"denom":"ASSET18","index":"0.000003835509513951"},{"denom":"ASSET2","index":"0.000008079410847125"},{"denom":"ASSET3","index":"0.000002242309830967"},{"denom":"ASSET4","index":"0.000021622076491366"},{"denom":"ASSET5","index":"0.000001747112267207"},{"denom":"ASSET6","index":"0.000007050444762949"},{"denom":"ASSET7","index":"0.000011079003337441"},{"denom":"ASSET8","index":"0.000015142122511204"},{"denom":"ASSET9","index":"0.000006425848418438"}],"last_reward_claim_height":"146"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET4","shares":"133174422.142381288972927049","reward_history":[{"denom":"ASSET0","index":"0.000003309574221953"},{"denom":"ASSET1","index":"0.000028041386020893"},{"denom":"ASSET10","index":"0.000022151472675705"},{"denom":"ASSET11","index":"0.000027806413413432"},{"denom":"ASSET12","index":"0.000026397319662942"},{"denom":"ASSET13","index":"0.000008723998941637"},{"denom":"ASSET14","index":"0.000025556208464743"},{"denom":"ASSET15","index":"0.000019995491235522"},{"denom":"ASSET16","index":"0.000012454763771642"},{"denom":"ASSET17","index":"0.000009698403814011"},{"denom":"ASSET18","index":"0.000004053515914738"},{"denom":"ASSET2","index":"0.000008473190716338"},{"denom":"ASSET3","index":"0.000002361530218445"},{"denom":"ASSET4","index":"0.000022738669483779"},{"denom":"ASSET5","index":"0.000001840125976242"},{"denom":"ASSET6","index":"0.000007434008870747"},{"denom":"ASSET7","index":"0.000011653935721338"},{"denom":"ASSET8","index":"0.000015861166565423"},{"denom":"ASSET9","index":"0.000006742103174023"}],"last_reward_claim_height":"174"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET0","shares":"799119946.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001541663174382"},{"denom":"ASSET1","index":"0.000012852134347969"},{"denom":"ASSET10","index":"0.000008953505358908"},{"denom":"ASSET11","index":"0.000012432624080325"},{"denom":"ASSET12","index":"0.000011194846435509"},{"denom":"ASSET13","index":"0.000003852675567517"},{"denom":"ASSET14","index":"0.000011614356703153"},{"denom":"ASSET15","index":"0.000008302745615107"},{"denom":"ASSET16","index":"0.000005788648746115"},{"denom":"ASSET17","index":"0.000004110607675539"},{"denom":"ASSET18","index":"0.000001958208705152"},{"denom":"ASSET2","index":"0.000003793380830041"},{"denom":"ASSET3","index":"0.000001108811590805"},{"denom":"ASSET4","index":"0.000010443285637998"},{"denom":"ASSET5","index":"0.000000861256061842"},{"denom":"ASSET6","index":"0.000003505801353281"},{"denom":"ASSET7","index":"0.000005369138478471"},{"denom":"ASSET8","index":"0.000007005673232815"},{"denom":"ASSET9","index":"0.000003025513979724"}],"last_reward_claim_height":"93"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET1","shares":"285460130.380048004526798960","reward_history":[{"denom":"ASSET0","index":"0.000004627557058124"},{"denom":"ASSET1","index":"0.000037837825372287"},{"denom":"ASSET10","index":"0.000032815057157167"},{"denom":"ASSET11","index":"0.000039353017894949"},{"denom":"ASSET12","index":"0.000037453386570472"},{"denom":"ASSET13","index":"0.000012700909348715"},{"denom":"ASSET14","index":"0.000036314118089889"},{"denom":"ASSET15","index":"0.000029456614298440"},{"denom":"ASSET16","index":"0.000016789422401669"},{"denom":"ASSET17","index":"0.000013600876897734"},{"denom":"ASSET18","index":"0.000005653931466374"},{"denom":"ASSET2","index":"0.000011419405679440"},{"denom":"ASSET3","index":"0.000003285045732610"},{"denom":"ASSET4","index":"0.000031022911612237"},{"denom":"ASSET5","index":"0.000002580636681166"},{"denom":"ASSET6","index":"0.000010536288519120"},{"denom":"ASSET7","index":"0.000016267441018645"},{"denom":"ASSET8","index":"0.000023441585233333"},{"denom":"ASSET9","index":"0.000009392113630570"}],"last_reward_claim_height":"199"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET11","shares":"925445356.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003039218640043"},{"denom":"ASSET1","index":"0.000025782167100542"},{"denom":"ASSET10","index":"0.000020571830356487"},{"denom":"ASSET11","index":"0.000025618833387376"},{"denom":"ASSET12","index":"0.000024423552320522"},{"denom":"ASSET13","index":"0.000008046369560384"},{"denom":"ASSET14","index":"0.000023515194162679"},{"denom":"ASSET15","index":"0.000018530055863607"},{"denom":"ASSET16","index":"0.000011436803083329"},{"denom":"ASSET17","index":"0.000008974370950503"},{"denom":"ASSET18","index":"0.000003710743638587"},{"denom":"ASSET2","index":"0.000007806913274081"},{"denom":"ASSET3","index":"0.000002167934051431"},{"denom":"ASSET4","index":"0.000020901035076857"},{"denom":"ASSET5","index":"0.000001689640060433"},{"denom":"ASSET6","index":"0.000006819038075969"},{"denom":"ASSET7","index":"0.000010710838619674"},{"denom":"ASSET8","index":"0.000014627524271874"},{"denom":"ASSET9","index":"0.000006209166066794"}],"last_reward_claim_height":"152"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET14","shares":"307120738.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001541663174382"},{"denom":"ASSET1","index":"0.000012852134347969"},{"denom":"ASSET10","index":"0.000008953505358908"},{"denom":"ASSET11","index":"0.000012432624080325"},{"denom":"ASSET12","index":"0.000011194846435509"},{"denom":"ASSET13","index":"0.000003852675567517"},{"denom":"ASSET14","index":"0.000011614356703153"},{"denom":"ASSET15","index":"0.000008302745615107"},{"denom":"ASSET16","index":"0.000005788648746115"},{"denom":"ASSET17","index":"0.000004110607675539"},{"denom":"ASSET18","index":"0.000001958208705152"},{"denom":"ASSET2","index":"0.000003793380830041"},{"denom":"ASSET3","index":"0.000001108811590805"},{"denom":"ASSET4","index":"0.000010443285637998"},{"denom":"ASSET5","index":"0.000000861256061842"},{"denom":"ASSET6","index":"0.000003505801353281"},{"denom":"ASSET7","index":"0.000005369138478471"},{"denom":"ASSET8","index":"0.000007005673232815"},{"denom":"ASSET9","index":"0.000003025513979724"}],"last_reward_claim_height":"122"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET8","shares":"595499515.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001647112085871"},{"denom":"ASSET1","index":"0.000013744257107488"},{"denom":"ASSET10","index":"0.000009576415679235"},{"denom":"ASSET11","index":"0.000013296650962579"},{"denom":"ASSET12","index":"0.000011973464376313"},{"denom":"ASSET13","index":"0.000004120724991946"},{"denom":"ASSET14","index":"0.000012421070521222"},{"denom":"ASSET15","index":"0.000008879485058873"},{"denom":"ASSET16","index":"0.000006191885004573"},{"denom":"ASSET17","index":"0.000004397534055245"},{"denom":"ASSET18","index":"0.000002094718230780"},{"denom":"ASSET2","index":"0.000004055939892025"},{"denom":"ASSET3","index":"0.000001185763647039"},{"denom":"ASSET4","index":"0.000011170521774262"},{"denom":"ASSET5","index":"0.000000920733692817"},{"denom":"ASSET6","index":"0.000003749683056035"},{"denom":"ASSET7","index":"0.000005742315674818"},{"denom":"ASSET8","index":"0.000007491513372686"},{"denom":"ASSET9","index":"0.000003235328626359"}],"last_reward_claim_height":"96"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET0","shares":"275936828.000000000000000000","reward_history":[],"last_reward_claim_height":"17"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET14","shares":"6172590.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001570100817458"},{"denom":"ASSET1","index":"0.000013089401919768"},{"denom":"ASSET10","index":"0.000009119446705996"},{"denom":"ASSET11","index":"0.000012662761138201"},{"denom":"ASSET12","index":"0.000011403229713207"},{"denom":"ASSET13","index":"0.000003924467777503"},{"denom":"ASSET14","index":"0.000011828301962489"},{"denom":"ASSET15","index":"0.000008457526081653"},{"denom":"ASSET16","index":"0.000005896112859965"},{"denom":"ASSET17","index":"0.000004187981201412"},{"denom":"ASSET18","index":"0.000001993604534455"},{"denom":"ASSET2","index":"0.000003863295018381"},{"denom":"ASSET3","index":"0.000001129343245325"},{"denom":"ASSET4","index":"0.000010637785958043"},{"denom":"ASSET5","index":"0.000000876809547412"},{"denom":"ASSET6","index":"0.000003569979481054"},{"denom":"ASSET7","index":"0.000005467903546113"},{"denom":"ASSET8","index":"0.000007135253365252"},{"denom":"ASSET9","index":"0.000003082165940365"}],"last_reward_claim_height":"89"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET0","shares":"937506307.003106356663383824","reward_history":[{"denom":"ASSET0","index":"0.000004805221581489"},{"denom":"ASSET1","index":"0.000039345873089839"},{"denom":"ASSET10","index":"0.000033976974059511"},{"denom":"ASSET11","index":"0.000040840579959096"},{"denom":"ASSET12","index":"0.000038851970817686"},{"denom":"ASSET13","index":"0.000013166643058567"},{"denom":"ASSET14","index":"0.000037684443357597"},{"denom":"ASSET15","index":"0.000030511924225991"},{"denom":"ASSET16","index":"0.000017462133370161"},{"denom":"ASSET17","index":"0.000014115418385039"},{"denom":"ASSET18","index":"0.000005874187405486"},{"denom":"ASSET2","index":"0.000011873108566706"},{"denom":"ASSET3","index":"0.000003413246263568"},{"denom":"ASSET4","index":"0.000032247735445721"},{"denom":"ASSET5","index":"0.000002679755737782"},{"denom":"ASSET6","index":"0.000010937559885283"},{"denom":"ASSET7","index":"0.000016893898084444"},{"denom":"ASSET8","index":"0.000024287380141606"},{"denom":"ASSET9","index":"0.000009753761132589"}],"last_reward_claim_height":"200"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET3","shares":"859643181.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001655272585709"},{"denom":"ASSET1","index":"0.000013804891217292"},{"denom":"ASSET10","index":"0.000009617831976915"},{"denom":"ASSET11","index":"0.000013354722791997"},{"denom":"ASSET12","index":"0.000012025575872058"},{"denom":"ASSET13","index":"0.000004138592201887"},{"denom":"ASSET14","index":"0.000012474922822124"},{"denom":"ASSET15","index":"0.000008919578032571"},{"denom":"ASSET16","index":"0.000006218567480803"},{"denom":"ASSET17","index":"0.000004416250829168"},{"denom":"ASSET18","index":"0.000002103798060547"},{"denom":"ASSET2","index":"0.000004074517134053"},{"denom":"ASSET3","index":"0.000001191960556756"},{"denom":"ASSET4","index":"0.000011218887197534"},{"denom":"ASSET5","index":"0.000000924981107448"},{"denom":"ASSET6","index":"0.000003765642448085"},{"denom":"ASSET7","index":"0.000005766756105051"},{"denom":"ASSET8","index":"0.000007525534569569"},{"denom":"ASSET9","index":"0.000003250577479728"}],"last_reward_claim_height":"101"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET6","shares":"21111633.779809829134596432","reward_history":[{"denom":"ASSET0","index":"0.000001655272585709"},{"denom":"ASSET1","index":"0.000013804891217292"},{"denom":"ASSET10","index":"0.000009617831976915"},{"denom":"ASSET11","index":"0.000013354722791997"},{"denom":"ASSET12","index":"0.000012025575872058"},{"denom":"ASSET13","index":"0.000004138592201887"},{"denom":"ASSET14","index":"0.000012474922822124"},{"denom":"ASSET15","index":"0.000008919578032571"},{"denom":"ASSET16","index":"0.000006218567480803"},{"denom":"ASSET17","index":"0.000004416250829168"},{"denom":"ASSET18","index":"0.000002103798060547"},{"denom":"ASSET2","index":"0.000004074517134053"},{"denom":"ASSET3","index":"0.000001191960556756"},{"denom":"ASSET4","index":"0.000011218887197534"},{"denom":"ASSET5","index":"0.000000924981107448"},{"denom":"ASSET6","index":"0.000003765642448085"},{"denom":"ASSET7","index":"0.000005766756105051"},{"denom":"ASSET8","index":"0.000007525534569569"},{"denom":"ASSET9","index":"0.000003250577479728"}],"last_reward_claim_height":"94"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET7","shares":"866021693.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003218229550028"},{"denom":"ASSET1","index":"0.000027301798081180"},{"denom":"ASSET10","index":"0.000021745417841688"},{"denom":"ASSET11","index":"0.000027119412726222"},{"denom":"ASSET12","index":"0.000025834540696398"},{"denom":"ASSET13","index":"0.000008516471999212"},{"denom":"ASSET14","index":"0.000024897496810197"},{"denom":"ASSET15","index":"0.000019595694306931"},{"denom":"ASSET16","index":"0.000012114595919920"},{"denom":"ASSET17","index":"0.000009493460517354"},{"denom":"ASSET18","index":"0.000003932937797970"},{"denom":"ASSET2","index":"0.000008264095290285"},{"denom":"ASSET3","index":"0.000002297232512411"},{"denom":"ASSET4","index":"0.000022135581489268"},{"denom":"ASSET5","index":"0.000001789675045728"},{"denom":"ASSET6","index":"0.000007223884768794"},{"denom":"ASSET7","index":"0.000011342725097550"},{"denom":"ASSET8","index":"0.000015481678980085"},{"denom":"ASSET9","index":"0.000006573861400446"}],"last_reward_claim_height":"155"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET9","shares":"935197273.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004805221581489"},{"denom":"ASSET1","index":"0.000039345873089839"},{"denom":"ASSET10","index":"0.000033976974059511"},{"denom":"ASSET11","index":"0.000040840579959096"},{"denom":"ASSET12","index":"0.000038851970817686"},{"denom":"ASSET13","index":"0.000013166643058567"},{"denom":"ASSET14","index":"0.000037684443357597"},{"denom":"ASSET15","index":"0.000030511924225991"},{"denom":"ASSET16","index":"0.000017462133370161"},{"denom":"ASSET17","index":"0.000014115418385039"},{"denom":"ASSET18","index":"0.000005874187405486"},{"denom":"ASSET2","index":"0.000011873108566706"},{"denom":"ASSET3","index":"0.000003413246263568"},{"denom":"ASSET4","index":"0.000032247735445721"},{"denom":"ASSET5","index":"0.000002679755737782"},{"denom":"ASSET6","index":"0.000010937559885283"},{"denom":"ASSET7","index":"0.000016893898084444"},{"denom":"ASSET8","index":"0.000024287380141606"},{"denom":"ASSET9","index":"0.000009753761132589"}],"last_reward_claim_height":"191"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET11","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"38"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET1","shares":"368888783.000000000000000000","reward_history":[],"last_reward_claim_height":"26"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET14","shares":"459180690.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003224207736427"},{"denom":"ASSET1","index":"0.000027358045975387"},{"denom":"ASSET10","index":"0.000021853454393362"},{"denom":"ASSET11","index":"0.000027191663823691"},{"denom":"ASSET12","index":"0.000025935625558190"},{"denom":"ASSET13","index":"0.000008541293337334"},{"denom":"ASSET14","index":"0.000024954691173737"},{"denom":"ASSET15","index":"0.000019681390400685"},{"denom":"ASSET16","index":"0.000012135703886829"},{"denom":"ASSET17","index":"0.000009530848033034"},{"denom":"ASSET18","index":"0.000003936224347496"},{"denom":"ASSET2","index":"0.000008286598878032"},{"denom":"ASSET3","index":"0.000002301038846536"},{"denom":"ASSET4","index":"0.000022179933336345"},{"denom":"ASSET5","index":"0.000001792519798769"},{"denom":"ASSET6","index":"0.000007234068845872"},{"denom":"ASSET7","index":"0.000011365474292791"},{"denom":"ASSET8","index":"0.000015527655320242"},{"denom":"ASSET9","index":"0.000006590765495457"}],"last_reward_claim_height":"142"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET16","shares":"32836387.504361286961783047","reward_history":[{"denom":"ASSET0","index":"0.000004788885513607"},{"denom":"ASSET1","index":"0.000039232870282412"},{"denom":"ASSET10","index":"0.000033912995515459"},{"denom":"ASSET11","index":"0.000040719914214811"},{"denom":"ASSET12","index":"0.000038770134946777"},{"denom":"ASSET13","index":"0.000013126121125109"},{"denom":"ASSET14","index":"0.000037561764223245"},{"denom":"ASSET15","index":"0.000030444002874941"},{"denom":"ASSET16","index":"0.000017407955001052"},{"denom":"ASSET17","index":"0.000014087998382720"},{"denom":"ASSET18","index":"0.000005850179359689"},{"denom":"ASSET2","index":"0.000011844653881051"},{"denom":"ASSET3","index":"0.000003401217010571"},{"denom":"ASSET4","index":"0.000032149827882727"},{"denom":"ASSET5","index":"0.000002670075091219"},{"denom":"ASSET6","index":"0.000010895613400007"},{"denom":"ASSET7","index":"0.000016838687674877"},{"denom":"ASSET8","index":"0.000024209646470334"},{"denom":"ASSET9","index":"0.000009725837042465"}],"last_reward_claim_height":"187"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET10","shares":"365321930.157379078984657294","reward_history":[{"denom":"ASSET0","index":"0.000003193080094990"},{"denom":"ASSET1","index":"0.000027069824276969"},{"denom":"ASSET10","index":"0.000021489349079139"},{"denom":"ASSET11","index":"0.000026870184080824"},{"denom":"ASSET12","index":"0.000025561356340007"},{"denom":"ASSET13","index":"0.000008435097288603"},{"denom":"ASSET14","index":"0.000024680442306089"},{"denom":"ASSET15","index":"0.000019377704768171"},{"denom":"ASSET16","index":"0.000012016988086595"},{"denom":"ASSET17","index":"0.000009392966467546"},{"denom":"ASSET18","index":"0.000003905368596850"},{"denom":"ASSET2","index":"0.000008189075060838"},{"denom":"ASSET3","index":"0.000002279664955012"},{"denom":"ASSET4","index":"0.000021948593995488"},{"denom":"ASSET5","index":"0.000001775351671947"},{"denom":"ASSET6","index":"0.000007168631437760"},{"denom":"ASSET7","index":"0.000011248752159293"},{"denom":"ASSET8","index":"0.000015334459676317"},{"denom":"ASSET9","index":"0.000006513651901550"}],"last_reward_claim_height":"147"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET1","shares":"633531771.924823927283587036","reward_history":[{"denom":"ASSET0","index":"0.000003316222748087"},{"denom":"ASSET1","index":"0.000028147075207200"},{"denom":"ASSET10","index":"0.000022466702115272"},{"denom":"ASSET11","index":"0.000027971336509453"},{"denom":"ASSET12","index":"0.000026669877578580"},{"denom":"ASSET13","index":"0.000008784355829882"},{"denom":"ASSET14","index":"0.000025672864554615"},{"denom":"ASSET15","index":"0.000020235356040284"},{"denom":"ASSET16","index":"0.000012487172511964"},{"denom":"ASSET17","index":"0.000009799807931023"},{"denom":"ASSET18","index":"0.000004049727438870"},{"denom":"ASSET2","index":"0.000008522892941853"},{"denom":"ASSET3","index":"0.000002368075218536"},{"denom":"ASSET4","index":"0.000022820717384594"},{"denom":"ASSET5","index":"0.000001843591257654"},{"denom":"ASSET6","index":"0.000007443165294976"},{"denom":"ASSET7","index":"0.000011693499621126"},{"denom":"ASSET8","index":"0.000015972009373807"},{"denom":"ASSET9","index":"0.000006779069609364"}],"last_reward_claim_height":"125"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET7","shares":"852851011.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001677613648548"},{"denom":"ASSET1","index":"0.000013997394471820"},{"denom":"ASSET10","index":"0.000009752554992736"},{"denom":"ASSET11","index":"0.000013541183096442"},{"denom":"ASSET12","index":"0.000012193285851007"},{"denom":"ASSET13","index":"0.000004195070965406"},{"denom":"ASSET14","index":"0.000012649497226385"},{"denom":"ASSET15","index":"0.000009043353672830"},{"denom":"ASSET16","index":"0.000006306085420563"},{"denom":"ASSET17","index":"0.000004477092542912"},{"denom":"ASSET18","index":"0.000002131751335856"},{"denom":"ASSET2","index":"0.000004130786635239"},{"denom":"ASSET3","index":"0.000001208960144751"},{"denom":"ASSET4","index":"0.000011376252751467"},{"denom":"ASSET5","index":"0.000000937307007594"},{"denom":"ASSET6","index":"0.000003817659736684"},{"denom":"ASSET7","index":"0.000005847800357116"},{"denom":"ASSET8","index":"0.000007631172097229"},{"denom":"ASSET9","index":"0.000003295090343070"}],"last_reward_claim_height":"83"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET8","shares":"340599770.390634767995623638","reward_history":[{"denom":"ASSET0","index":"0.000003316222748087"},{"denom":"ASSET1","index":"0.000028147075207200"},{"denom":"ASSET10","index":"0.000022466702115272"},{"denom":"ASSET11","index":"0.000027971336509453"},{"denom":"ASSET12","index":"0.000026669877578580"},{"denom":"ASSET13","index":"0.000008784355829882"},{"denom":"ASSET14","index":"0.000025672864554615"},{"denom":"ASSET15","index":"0.000020235356040284"},{"denom":"ASSET16","index":"0.000012487172511964"},{"denom":"ASSET17","index":"0.000009799807931023"},{"denom":"ASSET18","index":"0.000004049727438870"},{"denom":"ASSET2","index":"0.000008522892941853"},{"denom":"ASSET3","index":"0.000002368075218536"},{"denom":"ASSET4","index":"0.000022820717384594"},{"denom":"ASSET5","index":"0.000001843591257654"},{"denom":"ASSET6","index":"0.000007443165294976"},{"denom":"ASSET7","index":"0.000011693499621126"},{"denom":"ASSET8","index":"0.000015972009373807"},{"denom":"ASSET9","index":"0.000006779069609364"}],"last_reward_claim_height":"123"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET12","shares":"396246370.711077682539076468","reward_history":[{"denom":"ASSET0","index":"0.000003316222748087"},{"denom":"ASSET1","index":"0.000028147075207200"},{"denom":"ASSET10","index":"0.000022466702115272"},{"denom":"ASSET11","index":"0.000027971336509453"},{"denom":"ASSET12","index":"0.000026669877578580"},{"denom":"ASSET13","index":"0.000008784355829882"},{"denom":"ASSET14","index":"0.000025672864554615"},{"denom":"ASSET15","index":"0.000020235356040284"},{"denom":"ASSET16","index":"0.000012487172511964"},{"denom":"ASSET17","index":"0.000009799807931023"},{"denom":"ASSET18","index":"0.000004049727438870"},{"denom":"ASSET2","index":"0.000008522892941853"},{"denom":"ASSET3","index":"0.000002368075218536"},{"denom":"ASSET4","index":"0.000022820717384594"},{"denom":"ASSET5","index":"0.000001843591257654"},{"denom":"ASSET6","index":"0.000007443165294976"},{"denom":"ASSET7","index":"0.000011693499621126"},{"denom":"ASSET8","index":"0.000015972009373807"},{"denom":"ASSET9","index":"0.000006779069609364"}],"last_reward_claim_height":"164"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET1","shares":"718194292.907021497928585224","reward_history":[{"denom":"ASSET0","index":"0.000003047858420945"},{"denom":"ASSET1","index":"0.000025863853767953"},{"denom":"ASSET10","index":"0.000020681482671570"},{"denom":"ASSET11","index":"0.000025712271525236"},{"denom":"ASSET12","index":"0.000024535470175220"},{"denom":"ASSET13","index":"0.000008077733573885"},{"denom":"ASSET14","index":"0.000023593590000343"},{"denom":"ASSET15","index":"0.000018621561303244"},{"denom":"ASSET16","index":"0.000011471343089677"},{"denom":"ASSET17","index":"0.000009016132124589"},{"denom":"ASSET18","index":"0.000003719208275283"},{"denom":"ASSET2","index":"0.000007835789085827"},{"denom":"ASSET3","index":"0.000002174729135607"},{"denom":"ASSET4","index":"0.000020967814383093"},{"denom":"ASSET5","index":"0.000001694402278429"},{"denom":"ASSET6","index":"0.000006836893759575"},{"denom":"ASSET7","index":"0.000010744095518390"},{"denom":"ASSET8","index":"0.000014684305897471"},{"denom":"ASSET9","index":"0.000006231971052532"}],"last_reward_claim_height":"183"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET13","shares":"3251300.093760000510019199","reward_history":[{"denom":"ASSET0","index":"0.000003047858420945"},{"denom":"ASSET1","index":"0.000025863853767953"},{"denom":"ASSET10","index":"0.000020681482671570"},{"denom":"ASSET11","index":"0.000025712271525236"},{"denom":"ASSET12","index":"0.000024535470175220"},{"denom":"ASSET13","index":"0.000008077733573885"},{"denom":"ASSET14","index":"0.000023593590000343"},{"denom":"ASSET15","index":"0.000018621561303244"},{"denom":"ASSET16","index":"0.000011471343089677"},{"denom":"ASSET17","index":"0.000009016132124589"},{"denom":"ASSET18","index":"0.000003719208275283"},{"denom":"ASSET2","index":"0.000007835789085827"},{"denom":"ASSET3","index":"0.000002174729135607"},{"denom":"ASSET4","index":"0.000020967814383093"},{"denom":"ASSET5","index":"0.000001694402278429"},{"denom":"ASSET6","index":"0.000006836893759575"},{"denom":"ASSET7","index":"0.000010744095518390"},{"denom":"ASSET8","index":"0.000014684305897471"},{"denom":"ASSET9","index":"0.000006231971052532"}],"last_reward_claim_height":"178"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET12","shares":"957392366.589976440730978594","reward_history":[{"denom":"ASSET0","index":"0.000005034266255964"},{"denom":"ASSET1","index":"0.000041206698521448"},{"denom":"ASSET10","index":"0.000035536058655568"},{"denom":"ASSET11","index":"0.000042764328047000"},{"denom":"ASSET12","index":"0.000040651662632960"},{"denom":"ASSET13","index":"0.000013785310751564"},{"denom":"ASSET14","index":"0.000039470118876468"},{"denom":"ASSET15","index":"0.000031921809258150"},{"denom":"ASSET16","index":"0.000018292013548299"},{"denom":"ASSET17","index":"0.000014768687085671"},{"denom":"ASSET18","index":"0.000006158178664479"},{"denom":"ASSET2","index":"0.000012430513136542"},{"denom":"ASSET3","index":"0.000003577015621144"},{"denom":"ASSET4","index":"0.000033775531054020"},{"denom":"ASSET5","index":"0.000002807896874833"},{"denom":"ASSET6","index":"0.000011462152738626"},{"denom":"ASSET7","index":"0.000017696755285661"},{"denom":"ASSET8","index":"0.000025431871107123"},{"denom":"ASSET9","index":"0.000010212641681858"}],"last_reward_claim_height":"186"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET2","shares":"574714035.584677174841237138","reward_history":[{"denom":"ASSET0","index":"0.000005040570168850"},{"denom":"ASSET1","index":"0.000041355750359430"},{"denom":"ASSET10","index":"0.000035469281704739"},{"denom":"ASSET11","index":"0.000042803752649888"},{"denom":"ASSET12","index":"0.000040675443122671"},{"denom":"ASSET13","index":"0.000013775999252168"},{"denom":"ASSET14","index":"0.000039495576924183"},{"denom":"ASSET15","index":"0.000031873960565154"},{"denom":"ASSET16","index":"0.000018356948849581"},{"denom":"ASSET17","index":"0.000014782651582035"},{"denom":"ASSET18","index":"0.000006164254954174"},{"denom":"ASSET2","index":"0.000012468880818976"},{"denom":"ASSET3","index":"0.000003582052674901"},{"denom":"ASSET4","index":"0.000033871373778794"},{"denom":"ASSET5","index":"0.000002805429255147"},{"denom":"ASSET6","index":"0.000011472525623683"},{"denom":"ASSET7","index":"0.000017727043140390"},{"denom":"ASSET8","index":"0.000025392666272201"},{"denom":"ASSET9","index":"0.000010226777370208"}],"last_reward_claim_height":"193"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET15","shares":"95296686.160614540706570587","reward_history":[{"denom":"ASSET0","index":"0.000001833509758465"},{"denom":"ASSET1","index":"0.000015308139656127"},{"denom":"ASSET10","index":"0.000010661025831945"},{"denom":"ASSET11","index":"0.000014808091540182"},{"denom":"ASSET12","index":"0.000013334616425197"},{"denom":"ASSET13","index":"0.000004587108050268"},{"denom":"ASSET14","index":"0.000013827997232930"},{"denom":"ASSET15","index":"0.000009887618079284"},{"denom":"ASSET16","index":"0.000006893996691827"},{"denom":"ASSET17","index":"0.000004893804228047"},{"denom":"ASSET18","index":"0.000002326890566197"},{"denom":"ASSET2","index":"0.000004513767659929"},{"denom":"ASSET3","index":"0.000001320127026095"},{"denom":"ASSET4","index":"0.000012434529816496"},{"denom":"ASSET5","index":"0.000001020098156528"},{"denom":"ASSET6","index":"0.000004173734941087"},{"denom":"ASSET7","index":"0.000006393948575882"},{"denom":"ASSET8","index":"0.000008340802573961"},{"denom":"ASSET9","index":"0.000003600346434803"}],"last_reward_claim_height":"79"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET0","shares":"61867635.750582449705180736","reward_history":[{"denom":"ASSET0","index":"0.000001580229076001"},{"denom":"ASSET1","index":"0.000013178675425859"},{"denom":"ASSET10","index":"0.000009181488308837"},{"denom":"ASSET11","index":"0.000012749045790152"},{"denom":"ASSET12","index":"0.000011480356468073"},{"denom":"ASSET13","index":"0.000003950572690002"},{"denom":"ASSET14","index":"0.000011909209196663"},{"denom":"ASSET15","index":"0.000008514902002442"},{"denom":"ASSET16","index":"0.000005936347281082"},{"denom":"ASSET17","index":"0.000004216274924019"},{"denom":"ASSET18","index":"0.000002008304897474"},{"denom":"ASSET2","index":"0.000003889973934875"},{"denom":"ASSET3","index":"0.000001137392019304"},{"denom":"ASSET4","index":"0.000010709664607998"},{"denom":"ASSET5","index":"0.000000883343392042"},{"denom":"ASSET6","index":"0.000003594749230410"},{"denom":"ASSET7","index":"0.000005505163831141"},{"denom":"ASSET8","index":"0.000007184060111002"},{"denom":"ASSET9","index":"0.000003102967025342"}],"last_reward_claim_height":"76"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET6","shares":"457436210.392192958217423794","reward_history":[{"denom":"ASSET0","index":"0.000004775784724633"},{"denom":"ASSET1","index":"0.000039059123105112"},{"denom":"ASSET10","index":"0.000033892192800766"},{"denom":"ASSET11","index":"0.000040628226633110"},{"denom":"ASSET12","index":"0.000038676385578367"},{"denom":"ASSET13","index":"0.000013112828286164"},{"denom":"ASSET14","index":"0.000037487053349535"},{"denom":"ASSET15","index":"0.000030420891257507"},{"denom":"ASSET16","index":"0.000017330808544550"},{"denom":"ASSET17","index":"0.000014046275733066"},{"denom":"ASSET18","index":"0.000005834999280055"},{"denom":"ASSET2","index":"0.000011789318500851"},{"denom":"ASSET3","index":"0.000003391221987296"},{"denom":"ASSET4","index":"0.000032025115280665"},{"denom":"ASSET5","index":"0.000002663502250729"},{"denom":"ASSET6","index":"0.000010874298593075"},{"denom":"ASSET7","index":"0.000016791225269967"},{"denom":"ASSET8","index":"0.000024201838249296"},{"denom":"ASSET9","index":"0.000009696240456876"}],"last_reward_claim_height":"199"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET13","shares":"801500567.000000000000000000","reward_history":[],"last_reward_claim_height":"59"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET15","shares":"587446599.623626557311624274","reward_history":[{"denom":"ASSET0","index":"0.000003136420796654"},{"denom":"ASSET1","index":"0.000026617535879560"},{"denom":"ASSET10","index":"0.000021257162201233"},{"denom":"ASSET11","index":"0.000026454281403244"},{"denom":"ASSET12","index":"0.000025229520616223"},{"denom":"ASSET13","index":"0.000008309311482354"},{"denom":"ASSET14","index":"0.000024278363089230"},{"denom":"ASSET15","index":"0.000019144672836670"},{"denom":"ASSET16","index":"0.000011806881934189"},{"denom":"ASSET17","index":"0.000009271795054357"},{"denom":"ASSET18","index":"0.000003829937127836"},{"denom":"ASSET2","index":"0.000008061315465971"},{"denom":"ASSET3","index":"0.000002238409344787"},{"denom":"ASSET4","index":"0.000021579173085678"},{"denom":"ASSET5","index":"0.000001744155749232"},{"denom":"ASSET6","index":"0.000007037998659171"},{"denom":"ASSET7","index":"0.000011056982942661"},{"denom":"ASSET8","index":"0.000015105683491420"},{"denom":"ASSET9","index":"0.000006411626899884"}],"last_reward_claim_height":"174"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET12","shares":"704109562.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002559869929403"},{"denom":"ASSET1","index":"0.000021787096732684"},{"denom":"ASSET10","index":"0.000017783238471081"},{"denom":"ASSET11","index":"0.000021752938768967"},{"denom":"ASSET12","index":"0.000020940235345308"},{"denom":"ASSET13","index":"0.000006848308161575"},{"denom":"ASSET14","index":"0.000019904298850841"},{"denom":"ASSET15","index":"0.000015946274018453"},{"denom":"ASSET16","index":"0.000009638424477568"},{"denom":"ASSET17","index":"0.000007695902028378"},{"denom":"ASSET18","index":"0.000003102977872608"},{"denom":"ASSET2","index":"0.000006627591716064"},{"denom":"ASSET3","index":"0.000001824087350341"},{"denom":"ASSET4","index":"0.000017655906837434"},{"denom":"ASSET5","index":"0.000001421889695470"},{"denom":"ASSET6","index":"0.000005729615091854"},{"denom":"ASSET7","index":"0.000009042175373173"},{"denom":"ASSET8","index":"0.000012449153729005"},{"denom":"ASSET9","index":"0.000005268661072858"}],"last_reward_claim_height":"179"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET10","shares":"174961329.871618569422135925","reward_history":[{"denom":"ASSET0","index":"0.000004922134568655"},{"denom":"ASSET1","index":"0.000040310768470971"},{"denom":"ASSET10","index":"0.000034862317636591"},{"denom":"ASSET11","index":"0.000041853360655044"},{"denom":"ASSET12","index":"0.000039844322972483"},{"denom":"ASSET13","index":"0.000013494158512482"},{"denom":"ASSET14","index":"0.000038610410052146"},{"denom":"ASSET15","index":"0.000031296305042201"},{"denom":"ASSET16","index":"0.000017886287338776"},{"denom":"ASSET17","index":"0.000014476771157218"},{"denom":"ASSET18","index":"0.000006013326761486"},{"denom":"ASSET2","index":"0.000012169008325863"},{"denom":"ASSET3","index":"0.000003495870129458"},{"denom":"ASSET4","index":"0.000033036302956604"},{"denom":"ASSET5","index":"0.000002744576306327"},{"denom":"ASSET6","index":"0.000011200596779979"},{"denom":"ASSET7","index":"0.000017306609815312"},{"denom":"ASSET8","index":"0.000024891822473233"},{"denom":"ASSET9","index":"0.000009995213155793"}],"last_reward_claim_height":"196"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET14","shares":"880047891.508689050397544882","reward_history":[{"denom":"ASSET0","index":"0.000003299045378029"},{"denom":"ASSET1","index":"0.000027992490930804"},{"denom":"ASSET10","index":"0.000022352284005938"},{"denom":"ASSET11","index":"0.000027819914533732"},{"denom":"ASSET12","index":"0.000026530494002155"},{"denom":"ASSET13","index":"0.000008738242797579"},{"denom":"ASSET14","index":"0.000025532401567106"},{"denom":"ASSET15","index":"0.000020131602968729"},{"denom":"ASSET16","index":"0.000012417136212826"},{"denom":"ASSET17","index":"0.000009749421325842"},{"denom":"ASSET18","index":"0.000004027997856345"},{"denom":"ASSET2","index":"0.000008477931503293"},{"denom":"ASSET3","index":"0.000002354450357881"},{"denom":"ASSET4","index":"0.000022693933657862"},{"denom":"ASSET5","index":"0.000001834114741991"},{"denom":"ASSET6","index":"0.000007402245947993"},{"denom":"ASSET7","index":"0.000011628988518089"},{"denom":"ASSET8","index":"0.000015885667960333"},{"denom":"ASSET9","index":"0.000006742956926982"}],"last_reward_claim_height":"160"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET5","shares":"960659098.000000000000000000","reward_history":[],"last_reward_claim_height":"13"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET6","shares":"658498543.217722487991436144","reward_history":[{"denom":"ASSET0","index":"0.000003185213515607"},{"denom":"ASSET1","index":"0.000027035699090666"},{"denom":"ASSET10","index":"0.000021635640181728"},{"denom":"ASSET11","index":"0.000026880669357351"},{"denom":"ASSET12","index":"0.000025658872180332"},{"denom":"ASSET13","index":"0.000008444958797633"},{"denom":"ASSET14","index":"0.000024662649108986"},{"denom":"ASSET15","index":"0.000019476753279332"},{"denom":"ASSET16","index":"0.000011989846651744"},{"denom":"ASSET17","index":"0.000009429633404312"},{"denom":"ASSET18","index":"0.000003886090392826"},{"denom":"ASSET2","index":"0.000008191890279929"},{"denom":"ASSET3","index":"0.000002271981699175"},{"denom":"ASSET4","index":"0.000021916623044014"},{"denom":"ASSET5","index":"0.000001770727550439"},{"denom":"ASSET6","index":"0.000007144791673859"},{"denom":"ASSET7","index":"0.000011230376410345"},{"denom":"ASSET8","index":"0.000015353061978158"},{"denom":"ASSET9","index":"0.000006513931773648"}],"last_reward_claim_height":"133"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET13","shares":"554559117.310249161736630923","reward_history":[{"denom":"ASSET0","index":"0.000004771369973109"},{"denom":"ASSET1","index":"0.000039075310152038"},{"denom":"ASSET10","index":"0.000033862554414871"},{"denom":"ASSET11","index":"0.000040596859097080"},{"denom":"ASSET12","index":"0.000038671598570907"},{"denom":"ASSET13","index":"0.000013093360645348"},{"denom":"ASSET14","index":"0.000037444745013630"},{"denom":"ASSET15","index":"0.000030388777717539"},{"denom":"ASSET16","index":"0.000017335253118551"},{"denom":"ASSET17","index":"0.000014050047421762"},{"denom":"ASSET18","index":"0.000005826669662430"},{"denom":"ASSET2","index":"0.000011799629246551"},{"denom":"ASSET3","index":"0.000003387458203475"},{"denom":"ASSET4","index":"0.000032025073817120"},{"denom":"ASSET5","index":"0.000002660417616354"},{"denom":"ASSET6","index":"0.000010857215890221"},{"denom":"ASSET7","index":"0.000016779501987829"},{"denom":"ASSET8","index":"0.000024155503710162"},{"denom":"ASSET9","index":"0.000009692703418713"}],"last_reward_claim_height":"193"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET18","shares":"676902505.999999999960782734","reward_history":[],"last_reward_claim_height":"19"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET2","shares":"496889369.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003356675502673"},{"denom":"ASSET1","index":"0.000028477076245214"},{"denom":"ASSET10","index":"0.000022663760086849"},{"denom":"ASSET11","index":"0.000028282539274294"},{"denom":"ASSET12","index":"0.000026934248109484"},{"denom":"ASSET13","index":"0.000008880550781135"},{"denom":"ASSET14","index":"0.000025969128454053"},{"denom":"ASSET15","index":"0.000020425731449718"},{"denom":"ASSET16","index":"0.000012636600959200"},{"denom":"ASSET17","index":"0.000009896936242996"},{"denom":"ASSET18","index":"0.000004102733083140"},{"denom":"ASSET2","index":"0.000008619316582261"},{"denom":"ASSET3","index":"0.000002396767404444"},{"denom":"ASSET4","index":"0.000023088672429632"},{"denom":"ASSET5","index":"0.000001866260713425"},{"denom":"ASSET6","index":"0.000007536521735823"},{"denom":"ASSET7","index":"0.000011831316132227"},{"denom":"ASSET8","index":"0.000016143846449802"},{"denom":"ASSET9","index":"0.000006854365607618"}],"last_reward_claim_height":"135"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET9","shares":"624081998.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003356675502673"},{"denom":"ASSET1","index":"0.000028477076245214"},{"denom":"ASSET10","index":"0.000022663760086849"},{"denom":"ASSET11","index":"0.000028282539274294"},{"denom":"ASSET12","index":"0.000026934248109484"},{"denom":"ASSET13","index":"0.000008880550781135"},{"denom":"ASSET14","index":"0.000025969128454053"},{"denom":"ASSET15","index":"0.000020425731449718"},{"denom":"ASSET16","index":"0.000012636600959200"},{"denom":"ASSET17","index":"0.000009896936242996"},{"denom":"ASSET18","index":"0.000004102733083140"},{"denom":"ASSET2","index":"0.000008619316582261"},{"denom":"ASSET3","index":"0.000002396767404444"},{"denom":"ASSET4","index":"0.000023088672429632"},{"denom":"ASSET5","index":"0.000001866260713425"},{"denom":"ASSET6","index":"0.000007536521735823"},{"denom":"ASSET7","index":"0.000011831316132227"},{"denom":"ASSET8","index":"0.000016143846449802"},{"denom":"ASSET9","index":"0.000006854365607618"}],"last_reward_claim_height":"170"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET1","shares":"678090084.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004537599353463"},{"denom":"ASSET1","index":"0.000037117847669619"},{"denom":"ASSET10","index":"0.000032340600561623"},{"denom":"ASSET11","index":"0.000038655579958761"},{"denom":"ASSET12","index":"0.000036850325657168"},{"denom":"ASSET13","index":"0.000012483428644838"},{"denom":"ASSET14","index":"0.000035652849297182"},{"denom":"ASSET15","index":"0.000029008629406748"},{"denom":"ASSET16","index":"0.000016463312322248"},{"denom":"ASSET17","index":"0.000013380997793781"},{"denom":"ASSET18","index":"0.000005538215667455"},{"denom":"ASSET2","index":"0.000011210947306863"},{"denom":"ASSET3","index":"0.000003221611418209"},{"denom":"ASSET4","index":"0.000030435785673766"},{"denom":"ASSET5","index":"0.000002530194284617"},{"denom":"ASSET6","index":"0.000010331304570982"},{"denom":"ASSET7","index":"0.000015960878418764"},{"denom":"ASSET8","index":"0.000023043980031623"},{"denom":"ASSET9","index":"0.000009223345438838"}],"last_reward_claim_height":"198"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET4","shares":"36018461.863331913376808014","reward_history":[{"denom":"ASSET0","index":"0.000002962853679956"},{"denom":"ASSET1","index":"0.000025162993314326"},{"denom":"ASSET10","index":"0.000020199688926412"},{"denom":"ASSET11","index":"0.000025035647772320"},{"denom":"ASSET12","index":"0.000023929456511577"},{"denom":"ASSET13","index":"0.000007867725037604"},{"denom":"ASSET14","index":"0.000022960507028012"},{"denom":"ASSET15","index":"0.000018173489333858"},{"denom":"ASSET16","index":"0.000011155286879957"},{"denom":"ASSET17","index":"0.000008793607250882"},{"denom":"ASSET18","index":"0.000003611579051495"},{"denom":"ASSET2","index":"0.000007628670547867"},{"denom":"ASSET3","index":"0.000002114031306235"},{"denom":"ASSET4","index":"0.000020398130246320"},{"denom":"ASSET5","index":"0.000001647096325587"},{"denom":"ASSET6","index":"0.000006645213242757"},{"denom":"ASSET7","index":"0.000010450616802650"},{"denom":"ASSET8","index":"0.000014303332598966"},{"denom":"ASSET9","index":"0.000006067112886031"}],"last_reward_claim_height":"129"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET8","shares":"261457210.765015279587508506","reward_history":[{"denom":"ASSET0","index":"0.000001597673370668"},{"denom":"ASSET1","index":"0.000013327099930964"},{"denom":"ASSET10","index":"0.000009285285696821"},{"denom":"ASSET11","index":"0.000012892979142852"},{"denom":"ASSET12","index":"0.000011609669101507"},{"denom":"ASSET13","index":"0.000003995544306884"},{"denom":"ASSET14","index":"0.000012043789889618"},{"denom":"ASSET15","index":"0.000008610289110917"},{"denom":"ASSET16","index":"0.000006002842621820"},{"denom":"ASSET17","index":"0.000004263637708946"},{"denom":"ASSET18","index":"0.000002030433278566"},{"denom":"ASSET2","index":"0.000003934304697275"},{"denom":"ASSET3","index":"0.000001149943780421"},{"denom":"ASSET4","index":"0.000010829884739162"},{"denom":"ASSET5","index":"0.000000892737420067"},{"denom":"ASSET6","index":"0.000003634911050302"},{"denom":"ASSET7","index":"0.000005567360953495"},{"denom":"ASSET8","index":"0.000007264378579749"},{"denom":"ASSET9","index":"0.000003138189772368"}],"last_reward_claim_height":"105"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET13","shares":"385219739.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001597673370668"},{"denom":"ASSET1","index":"0.000013327099930964"},{"denom":"ASSET10","index":"0.000009285285696821"},{"denom":"ASSET11","index":"0.000012892979142852"},{"denom":"ASSET12","index":"0.000011609669101507"},{"denom":"ASSET13","index":"0.000003995544306884"},{"denom":"ASSET14","index":"0.000012043789889618"},{"denom":"ASSET15","index":"0.000008610289110917"},{"denom":"ASSET16","index":"0.000006002842621820"},{"denom":"ASSET17","index":"0.000004263637708946"},{"denom":"ASSET18","index":"0.000002030433278566"},{"denom":"ASSET2","index":"0.000003934304697275"},{"denom":"ASSET3","index":"0.000001149943780421"},{"denom":"ASSET4","index":"0.000010829884739162"},{"denom":"ASSET5","index":"0.000000892737420067"},{"denom":"ASSET6","index":"0.000003634911050302"},{"denom":"ASSET7","index":"0.000005567360953495"},{"denom":"ASSET8","index":"0.000007264378579749"},{"denom":"ASSET9","index":"0.000003138189772368"}],"last_reward_claim_height":"64"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET5","shares":"614588123.350758147393348390","reward_history":[{"denom":"ASSET0","index":"0.000004860013838161"},{"denom":"ASSET1","index":"0.000039829440775367"},{"denom":"ASSET10","index":"0.000034332188571649"},{"denom":"ASSET11","index":"0.000041295956899181"},{"denom":"ASSET12","index":"0.000039293307297353"},{"denom":"ASSET13","index":"0.000013304573466834"},{"denom":"ASSET14","index":"0.000038098524560949"},{"denom":"ASSET15","index":"0.000030831414335702"},{"denom":"ASSET16","index":"0.000017675343678269"},{"denom":"ASSET17","index":"0.000014280507444290"},{"denom":"ASSET18","index":"0.000005939808720502"},{"denom":"ASSET2","index":"0.000012021426052396"},{"denom":"ASSET3","index":"0.000003452613307807"},{"denom":"ASSET4","index":"0.000032633729651502"},{"denom":"ASSET5","index":"0.000002709632799469"},{"denom":"ASSET6","index":"0.000011056293160572"},{"denom":"ASSET7","index":"0.000017086435014568"},{"denom":"ASSET8","index":"0.000024533267776117"},{"denom":"ASSET9","index":"0.000009866489479987"}],"last_reward_claim_height":"197"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET4","shares":"23551915.000000000000000000","reward_history":[],"last_reward_claim_height":"31"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET8","shares":"32608182.275004500809579774","reward_history":[{"denom":"ASSET0","index":"0.000002930820438736"},{"denom":"ASSET1","index":"0.000024889799880283"},{"denom":"ASSET10","index":"0.000019988623694797"},{"denom":"ASSET11","index":"0.000024765615752571"},{"denom":"ASSET12","index":"0.000023676022623299"},{"denom":"ASSET13","index":"0.000007783195940338"},{"denom":"ASSET14","index":"0.000022712072914709"},{"denom":"ASSET15","index":"0.000017982209004670"},{"denom":"ASSET16","index":"0.000011033267632466"},{"denom":"ASSET17","index":"0.000008700651286884"},{"denom":"ASSET18","index":"0.000003571624768330"},{"denom":"ASSET2","index":"0.000007546215495169"},{"denom":"ASSET3","index":"0.000002090977414753"},{"denom":"ASSET4","index":"0.000020176663420937"},{"denom":"ASSET5","index":"0.000001628342560149"},{"denom":"ASSET6","index":"0.000006572371850885"},{"denom":"ASSET7","index":"0.000010337273058537"},{"denom":"ASSET8","index":"0.000014149515747938"},{"denom":"ASSET9","index":"0.000006000707920121"}],"last_reward_claim_height":"173"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET11","shares":"45726112.336201858713422492","reward_history":[{"denom":"ASSET0","index":"0.000001411859688057"},{"denom":"ASSET1","index":"0.000011770485537623"},{"denom":"ASSET10","index":"0.000008200497469250"},{"denom":"ASSET11","index":"0.000011386615852852"},{"denom":"ASSET12","index":"0.000010253874969484"},{"denom":"ASSET13","index":"0.000003528347966974"},{"denom":"ASSET14","index":"0.000010637094027671"},{"denom":"ASSET15","index":"0.000007605174144562"},{"denom":"ASSET16","index":"0.000005302606662519"},{"denom":"ASSET17","index":"0.000003765826670265"},{"denom":"ASSET18","index":"0.000001793777493075"},{"denom":"ASSET2","index":"0.000003474345960472"},{"denom":"ASSET3","index":"0.000001016278724767"},{"denom":"ASSET4","index":"0.000009565512043233"},{"denom":"ASSET5","index":"0.000000788559420242"},{"denom":"ASSET6","index":"0.000003210842193807"},{"denom":"ASSET7","index":"0.000004917435724579"},{"denom":"ASSET8","index":"0.000006416479374940"},{"denom":"ASSET9","index":"0.000002771018622781"}],"last_reward_claim_height":"86"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET15","shares":"247752477.999999999752247522","reward_history":[],"last_reward_claim_height":"46"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET18","shares":"320580104.808933858604594328","reward_history":[{"denom":"ASSET0","index":"0.000002930820438736"},{"denom":"ASSET1","index":"0.000024889799880283"},{"denom":"ASSET10","index":"0.000019988623694797"},{"denom":"ASSET11","index":"0.000024765615752571"},{"denom":"ASSET12","index":"0.000023676022623299"},{"denom":"ASSET13","index":"0.000007783195940338"},{"denom":"ASSET14","index":"0.000022712072914709"},{"denom":"ASSET15","index":"0.000017982209004670"},{"denom":"ASSET16","index":"0.000011033267632466"},{"denom":"ASSET17","index":"0.000008700651286884"},{"denom":"ASSET18","index":"0.000003571624768330"},{"denom":"ASSET2","index":"0.000007546215495169"},{"denom":"ASSET3","index":"0.000002090977414753"},{"denom":"ASSET4","index":"0.000020176663420937"},{"denom":"ASSET5","index":"0.000001628342560149"},{"denom":"ASSET6","index":"0.000006572371850885"},{"denom":"ASSET7","index":"0.000010337273058537"},{"denom":"ASSET8","index":"0.000014149515747938"},{"denom":"ASSET9","index":"0.000006000707920121"}],"last_reward_claim_height":"149"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET2","shares":"227138032.878966054174219911","reward_history":[{"denom":"ASSET0","index":"0.000001726304213109"},{"denom":"ASSET1","index":"0.000014431903221591"},{"denom":"ASSET10","index":"0.000010055058078201"},{"denom":"ASSET11","index":"0.000013959161452463"},{"denom":"ASSET12","index":"0.000012572806376704"},{"denom":"ASSET13","index":"0.000004323728090679"},{"denom":"ASSET14","index":"0.000013040236440562"},{"denom":"ASSET15","index":"0.000009322042750788"},{"denom":"ASSET16","index":"0.000006501527251832"},{"denom":"ASSET17","index":"0.000004615871880590"},{"denom":"ASSET18","index":"0.000002199045982237"},{"denom":"ASSET2","index":"0.000004259987627426"},{"denom":"ASSET3","index":"0.000001242939033438"},{"denom":"ASSET4","index":"0.000011728245238599"},{"denom":"ASSET5","index":"0.000000966730359341"},{"denom":"ASSET6","index":"0.000003935973605888"},{"denom":"ASSET7","index":"0.000006028785482704"},{"denom":"ASSET8","index":"0.000007866635506506"},{"denom":"ASSET9","index":"0.000003394179668236"}],"last_reward_claim_height":"118"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET11","shares":"351841489.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003313075721980"},{"denom":"ASSET1","index":"0.000028138029356789"},{"denom":"ASSET10","index":"0.000022370607880245"},{"denom":"ASSET11","index":"0.000027937207217164"},{"denom":"ASSET12","index":"0.000026595598409551"},{"denom":"ASSET13","index":"0.000008769097729958"},{"denom":"ASSET14","index":"0.000025655242037122"},{"denom":"ASSET15","index":"0.000020162686714325"},{"denom":"ASSET16","index":"0.000012488922131836"},{"denom":"ASSET17","index":"0.000009772018779266"},{"denom":"ASSET18","index":"0.000004056016110298"},{"denom":"ASSET2","index":"0.000008514325121927"},{"denom":"ASSET3","index":"0.000002365037757716"},{"denom":"ASSET4","index":"0.000022813272666626"},{"denom":"ASSET5","index":"0.000001844445619129"},{"denom":"ASSET6","index":"0.000007446834645040"},{"denom":"ASSET7","index":"0.000011690909413493"},{"denom":"ASSET8","index":"0.000015945057917181"},{"denom":"ASSET9","index":"0.000006769080892636"}],"last_reward_claim_height":"152"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET5","shares":"1278741918.477011177319140912","reward_history":[{"denom":"ASSET0","index":"0.000003344718004914"},{"denom":"ASSET1","index":"0.000028399683918161"},{"denom":"ASSET10","index":"0.000022773943545696"},{"denom":"ASSET11","index":"0.000028249525692452"},{"denom":"ASSET12","index":"0.000026989510465266"},{"denom":"ASSET13","index":"0.000008877216029957"},{"denom":"ASSET14","index":"0.000025911788013611"},{"denom":"ASSET15","index":"0.000020494299775586"},{"denom":"ASSET16","index":"0.000012591463658113"},{"denom":"ASSET17","index":"0.000009918208342143"},{"denom":"ASSET18","index":"0.000004078542450859"},{"denom":"ASSET2","index":"0.000008608606683653"},{"denom":"ASSET3","index":"0.000002386103437058"},{"denom":"ASSET4","index":"0.000023022167148602"},{"denom":"ASSET5","index":"0.000001858883946943"},{"denom":"ASSET6","index":"0.000007501347044310"},{"denom":"ASSET7","index":"0.000011795380538461"},{"denom":"ASSET8","index":"0.000016137954986293"},{"denom":"ASSET9","index":"0.000006845854741756"}],"last_reward_claim_height":"140"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET11","shares":"426961984.000000000000000000","reward_history":[],"last_reward_claim_height":"49"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET14","shares":"634173306.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001630255611072"},{"denom":"ASSET1","index":"0.000013593541268721"},{"denom":"ASSET10","index":"0.000009470169531707"},{"denom":"ASSET11","index":"0.000013149994246609"},{"denom":"ASSET12","index":"0.000011841383661505"},{"denom":"ASSET13","index":"0.000004074904678306"},{"denom":"ASSET14","index":"0.000012284196334242"},{"denom":"ASSET15","index":"0.000008782818517308"},{"denom":"ASSET16","index":"0.000006123739432762"},{"denom":"ASSET17","index":"0.000004348816994942"},{"denom":"ASSET18","index":"0.000002071599585061"},{"denom":"ASSET2","index":"0.000004012484981486"},{"denom":"ASSET3","index":"0.000001173490300222"},{"denom":"ASSET4","index":"0.000011046817638451"},{"denom":"ASSET5","index":"0.000000910593224203"},{"denom":"ASSET6","index":"0.000003707729991128"},{"denom":"ASSET7","index":"0.000005678723711902"},{"denom":"ASSET8","index":"0.000007410319536635"},{"denom":"ASSET9","index":"0.000003200294573447"}],"last_reward_claim_height":"101"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET17","shares":"184689217.378101320529039174","reward_history":[{"denom":"ASSET0","index":"0.000003344718004914"},{"denom":"ASSET1","index":"0.000028399683918161"},{"denom":"ASSET10","index":"0.000022773943545696"},{"denom":"ASSET11","index":"0.000028249525692452"},{"denom":"ASSET12","index":"0.000026989510465266"},{"denom":"ASSET13","index":"0.000008877216029957"},{"denom":"ASSET14","index":"0.000025911788013611"},{"denom":"ASSET15","index":"0.000020494299775586"},{"denom":"ASSET16","index":"0.000012591463658113"},{"denom":"ASSET17","index":"0.000009918208342143"},{"denom":"ASSET18","index":"0.000004078542450859"},{"denom":"ASSET2","index":"0.000008608606683653"},{"denom":"ASSET3","index":"0.000002386103437058"},{"denom":"ASSET4","index":"0.000023022167148602"},{"denom":"ASSET5","index":"0.000001858883946943"},{"denom":"ASSET6","index":"0.000007501347044310"},{"denom":"ASSET7","index":"0.000011795380538461"},{"denom":"ASSET8","index":"0.000016137954986293"},{"denom":"ASSET9","index":"0.000006845854741756"}],"last_reward_claim_height":"145"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET1","shares":"555791882.619089594740110685","reward_history":[{"denom":"ASSET0","index":"0.000001401914217082"},{"denom":"ASSET1","index":"0.000011691084141249"},{"denom":"ASSET10","index":"0.000008144816837289"},{"denom":"ASSET11","index":"0.000011309282624399"},{"denom":"ASSET12","index":"0.000010184195671197"},{"denom":"ASSET13","index":"0.000003504785542706"},{"denom":"ASSET14","index":"0.000010565150621491"},{"denom":"ASSET15","index":"0.000007553913381055"},{"denom":"ASSET16","index":"0.000005266490546178"},{"denom":"ASSET17","index":"0.000003740131045332"},{"denom":"ASSET18","index":"0.000001781176034264"},{"denom":"ASSET2","index":"0.000003450605283109"},{"denom":"ASSET3","index":"0.000001009107335001"},{"denom":"ASSET4","index":"0.000009501016460336"},{"denom":"ASSET5","index":"0.000000783074064494"},{"denom":"ASSET6","index":"0.000003189016217240"},{"denom":"ASSET7","index":"0.000004883842462771"},{"denom":"ASSET8","index":"0.000006372953035143"},{"denom":"ASSET9","index":"0.000002752187874236"}],"last_reward_claim_height":"117"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET3","shares":"400066607.512139322612813384","reward_history":[{"denom":"ASSET0","index":"0.000001401914217082"},{"denom":"ASSET1","index":"0.000011691084141249"},{"denom":"ASSET10","index":"0.000008144816837289"},{"denom":"ASSET11","index":"0.000011309282624399"},{"denom":"ASSET12","index":"0.000010184195671197"},{"denom":"ASSET13","index":"0.000003504785542706"},{"denom":"ASSET14","index":"0.000010565150621491"},{"denom":"ASSET15","index":"0.000007553913381055"},{"denom":"ASSET16","index":"0.000005266490546178"},{"denom":"ASSET17","index":"0.000003740131045332"},{"denom":"ASSET18","index":"0.000001781176034264"},{"denom":"ASSET2","index":"0.000003450605283109"},{"denom":"ASSET3","index":"0.000001009107335001"},{"denom":"ASSET4","index":"0.000009501016460336"},{"denom":"ASSET5","index":"0.000000783074064494"},{"denom":"ASSET6","index":"0.000003189016217240"},{"denom":"ASSET7","index":"0.000004883842462771"},{"denom":"ASSET8","index":"0.000006372953035143"},{"denom":"ASSET9","index":"0.000002752187874236"}],"last_reward_claim_height":"67"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET12","shares":"1272128134.679033994170339434","reward_history":[{"denom":"ASSET0","index":"0.000002824624853437"},{"denom":"ASSET1","index":"0.000023976113690517"},{"denom":"ASSET10","index":"0.000019183481330878"},{"denom":"ASSET11","index":"0.000023837782846342"},{"denom":"ASSET12","index":"0.000022753084719682"},{"denom":"ASSET13","index":"0.000007489057952554"},{"denom":"ASSET14","index":"0.000021872315483076"},{"denom":"ASSET15","index":"0.000017271123733000"},{"denom":"ASSET16","index":"0.000010633084765839"},{"denom":"ASSET17","index":"0.000008361522972460"},{"denom":"ASSET18","index":"0.000003446219629870"},{"denom":"ASSET2","index":"0.000007263651822688"},{"denom":"ASSET3","index":"0.000002015414858276"},{"denom":"ASSET4","index":"0.000019437236646346"},{"denom":"ASSET5","index":"0.000001569802896992"},{"denom":"ASSET6","index":"0.000006336500403946"},{"denom":"ASSET7","index":"0.000009959182045961"},{"denom":"ASSET8","index":"0.000013614498977085"},{"denom":"ASSET9","index":"0.000005776799011181"}],"last_reward_claim_height":"160"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET4","shares":"759980872.593301275282021482","reward_history":[{"denom":"ASSET0","index":"0.000003026822568793"},{"denom":"ASSET1","index":"0.000025710421285725"},{"denom":"ASSET10","index":"0.000020652297735472"},{"denom":"ASSET11","index":"0.000025583400849235"},{"denom":"ASSET12","index":"0.000024460820755928"},{"denom":"ASSET13","index":"0.000008041083722059"},{"denom":"ASSET14","index":"0.000023461074878675"},{"denom":"ASSET15","index":"0.000018578170233019"},{"denom":"ASSET16","index":"0.000011396689804799"},{"denom":"ASSET17","index":"0.000008988134494295"},{"denom":"ASSET18","index":"0.000003688816665807"},{"denom":"ASSET2","index":"0.000007796110853756"},{"denom":"ASSET3","index":"0.000002159003644915"},{"denom":"ASSET4","index":"0.000020841789260406"},{"denom":"ASSET5","index":"0.000001683251281734"},{"denom":"ASSET6","index":"0.000006788484398340"},{"denom":"ASSET7","index":"0.000010677121165375"},{"denom":"ASSET8","index":"0.000014616905179383"},{"denom":"ASSET9","index":"0.000006199084273401"}],"last_reward_claim_height":"161"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET9","shares":"486003545.445194196368404620","reward_history":[{"denom":"ASSET0","index":"0.000004647286505128"},{"denom":"ASSET1","index":"0.000038009132036325"},{"denom":"ASSET10","index":"0.000033142388915443"},{"denom":"ASSET11","index":"0.000039594668374363"},{"denom":"ASSET12","index":"0.000037753435240155"},{"denom":"ASSET13","index":"0.000012789620691403"},{"denom":"ASSET14","index":"0.000036518112593773"},{"denom":"ASSET15","index":"0.000029725103813089"},{"denom":"ASSET16","index":"0.000016857301755173"},{"denom":"ASSET17","index":"0.000013707892451703"},{"denom":"ASSET18","index":"0.000005671073895044"},{"denom":"ASSET2","index":"0.000011481468896457"},{"denom":"ASSET3","index":"0.000003298652517557"},{"denom":"ASSET4","index":"0.000031167698742833"},{"denom":"ASSET5","index":"0.000002592256930151"},{"denom":"ASSET6","index":"0.000010580735913944"},{"denom":"ASSET7","index":"0.000016345764259168"},{"denom":"ASSET8","index":"0.000023608907458604"},{"denom":"ASSET9","index":"0.000009446179077200"}],"last_reward_claim_height":"195"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET15","shares":"249238554.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001454934724421"},{"denom":"ASSET1","index":"0.000012138554241533"},{"denom":"ASSET10","index":"0.000008457231031836"},{"denom":"ASSET11","index":"0.000011742676653726"},{"denom":"ASSET12","index":"0.000010575345305063"},{"denom":"ASSET13","index":"0.000003639028595615"},{"denom":"ASSET14","index":"0.000010969531108307"},{"denom":"ASSET15","index":"0.000007843113235366"},{"denom":"ASSET16","index":"0.000005467847708521"},{"denom":"ASSET17","index":"0.000003882645572727"},{"denom":"ASSET18","index":"0.000001849120527665"},{"denom":"ASSET2","index":"0.000003583199705027"},{"denom":"ASSET3","index":"0.000001047214644670"},{"denom":"ASSET4","index":"0.000009864795788485"},{"denom":"ASSET5","index":"0.000000813748374938"},{"denom":"ASSET6","index":"0.000003310822390339"},{"denom":"ASSET7","index":"0.000005070278336150"},{"denom":"ASSET8","index":"0.000006616569426988"},{"denom":"ASSET9","index":"0.000002857424127380"}],"last_reward_claim_height":"116"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET17","shares":"378819827.701701966858590679","reward_history":[{"denom":"ASSET0","index":"0.000001454934724421"},{"denom":"ASSET1","index":"0.000012138554241533"},{"denom":"ASSET10","index":"0.000008457231031836"},{"denom":"ASSET11","index":"0.000011742676653726"},{"denom":"ASSET12","index":"0.000010575345305063"},{"denom":"ASSET13","index":"0.000003639028595615"},{"denom":"ASSET14","index":"0.000010969531108307"},{"denom":"ASSET15","index":"0.000007843113235366"},{"denom":"ASSET16","index":"0.000005467847708521"},{"denom":"ASSET17","index":"0.000003882645572727"},{"denom":"ASSET18","index":"0.000001849120527665"},{"denom":"ASSET2","index":"0.000003583199705027"},{"denom":"ASSET3","index":"0.000001047214644670"},{"denom":"ASSET4","index":"0.000009864795788485"},{"denom":"ASSET5","index":"0.000000813748374938"},{"denom":"ASSET6","index":"0.000003310822390339"},{"denom":"ASSET7","index":"0.000005070278336150"},{"denom":"ASSET8","index":"0.000006616569426988"},{"denom":"ASSET9","index":"0.000002857424127380"}],"last_reward_claim_height":"114"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET4","shares":"1318332969.652367155000000000","reward_history":[{"denom":"ASSET0","index":"0.000003050294937135"},{"denom":"ASSET1","index":"0.000025887230915803"},{"denom":"ASSET10","index":"0.000020718160619670"},{"denom":"ASSET11","index":"0.000025739685005463"},{"denom":"ASSET12","index":"0.000024570727404900"},{"denom":"ASSET13","index":"0.000008086966483560"},{"denom":"ASSET14","index":"0.000023616194455668"},{"denom":"ASSET15","index":"0.000018651338246959"},{"denom":"ASSET16","index":"0.000011480437826441"},{"denom":"ASSET17","index":"0.000009029688158762"},{"denom":"ASSET18","index":"0.000003721440260869"},{"denom":"ASSET2","index":"0.000007844134626406"},{"denom":"ASSET3","index":"0.000002176540273945"},{"denom":"ASSET4","index":"0.000020986445628896"},{"denom":"ASSET5","index":"0.000001695800268231"},{"denom":"ASSET6","index":"0.000006841569437153"},{"denom":"ASSET7","index":"0.000010753447417762"},{"denom":"ASSET8","index":"0.000014701309289649"},{"denom":"ASSET9","index":"0.000006238283490477"}],"last_reward_claim_height":"143"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET8","shares":"129601774.131786428547796644","reward_history":[{"denom":"ASSET0","index":"0.000003050294937135"},{"denom":"ASSET1","index":"0.000025887230915803"},{"denom":"ASSET10","index":"0.000020718160619670"},{"denom":"ASSET11","index":"0.000025739685005463"},{"denom":"ASSET12","index":"0.000024570727404900"},{"denom":"ASSET13","index":"0.000008086966483560"},{"denom":"ASSET14","index":"0.000023616194455668"},{"denom":"ASSET15","index":"0.000018651338246959"},{"denom":"ASSET16","index":"0.000011480437826441"},{"denom":"ASSET17","index":"0.000009029688158762"},{"denom":"ASSET18","index":"0.000003721440260869"},{"denom":"ASSET2","index":"0.000007844134626406"},{"denom":"ASSET3","index":"0.000002176540273945"},{"denom":"ASSET4","index":"0.000020986445628896"},{"denom":"ASSET5","index":"0.000001695800268231"},{"denom":"ASSET6","index":"0.000006841569437153"},{"denom":"ASSET7","index":"0.000010753447417762"},{"denom":"ASSET8","index":"0.000014701309289649"},{"denom":"ASSET9","index":"0.000006238283490477"}],"last_reward_claim_height":"144"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET17","shares":"512061895.000000004421979082","reward_history":[{"denom":"ASSET0","index":"0.000001511232509129"},{"denom":"ASSET1","index":"0.000012598757210652"},{"denom":"ASSET10","index":"0.000008777665278232"},{"denom":"ASSET11","index":"0.000012187849575766"},{"denom":"ASSET12","index":"0.000010975073643675"},{"denom":"ASSET13","index":"0.000003776959255615"},{"denom":"ASSET14","index":"0.000011385233267090"},{"denom":"ASSET15","index":"0.000008140359504707"},{"denom":"ASSET16","index":"0.000005675412369706"},{"denom":"ASSET17","index":"0.000004030784481533"},{"denom":"ASSET18","index":"0.000001920145446758"},{"denom":"ASSET2","index":"0.000003719113035170"},{"denom":"ASSET3","index":"0.000001087858016388"},{"denom":"ASSET4","index":"0.000010238531681628"},{"denom":"ASSET5","index":"0.000000844504951067"},{"denom":"ASSET6","index":"0.000003436614036185"},{"denom":"ASSET7","index":"0.000005263507386191"},{"denom":"ASSET8","index":"0.000006867991992072"},{"denom":"ASSET9","index":"0.000002966364157912"}],"last_reward_claim_height":"70"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET2","shares":"54178003.883112660782414560","reward_history":[{"denom":"ASSET0","index":"0.000004555194098436"},{"denom":"ASSET1","index":"0.000037194020995645"},{"denom":"ASSET10","index":"0.000032267252901811"},{"denom":"ASSET11","index":"0.000038719949684547"},{"denom":"ASSET12","index":"0.000036813725422538"},{"denom":"ASSET13","index":"0.000012504453081971"},{"denom":"ASSET14","index":"0.000035746405125898"},{"denom":"ASSET15","index":"0.000028975554868050"},{"denom":"ASSET16","index":"0.000016509698953174"},{"denom":"ASSET17","index":"0.000013364006755943"},{"denom":"ASSET18","index":"0.000005570240358371"},{"denom":"ASSET2","index":"0.000011218734016892"},{"denom":"ASSET3","index":"0.000003234690053143"},{"denom":"ASSET4","index":"0.000030508812947759"},{"denom":"ASSET5","index":"0.000002540722507986"},{"denom":"ASSET6","index":"0.000010378847790634"},{"denom":"ASSET7","index":"0.000016009295815118"},{"denom":"ASSET8","index":"0.000023089143199744"},{"denom":"ASSET9","index":"0.000009237844210338"}],"last_reward_claim_height":"189"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET3","shares":"329405592.999999985176748315","reward_history":[{"denom":"ASSET0","index":"0.000002944371933765"},{"denom":"ASSET1","index":"0.000024968433937291"},{"denom":"ASSET10","index":"0.000019851368221906"},{"denom":"ASSET11","index":"0.000024791952485266"},{"denom":"ASSET12","index":"0.000023600048189968"},{"denom":"ASSET13","index":"0.000007784111470281"},{"denom":"ASSET14","index":"0.000022766914870589"},{"denom":"ASSET15","index":"0.000017894900322998"},{"denom":"ASSET16","index":"0.000011081662183182"},{"denom":"ASSET17","index":"0.000008672317440622"},{"denom":"ASSET18","index":"0.000003599691097086"},{"denom":"ASSET2","index":"0.000007555380586873"},{"denom":"ASSET3","index":"0.000002101847815188"},{"denom":"ASSET4","index":"0.000020244169178497"},{"denom":"ASSET5","index":"0.000001637098640985"},{"denom":"ASSET6","index":"0.000006609166185649"},{"denom":"ASSET7","index":"0.000010374399402552"},{"denom":"ASSET8","index":"0.000014150620453773"},{"denom":"ASSET9","index":"0.000006009906313007"}],"last_reward_claim_height":"129"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET4","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"47"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET8","shares":"965567032.776158347114684986","reward_history":[{"denom":"ASSET0","index":"0.000002944371933765"},{"denom":"ASSET1","index":"0.000024968433937291"},{"denom":"ASSET10","index":"0.000019851368221906"},{"denom":"ASSET11","index":"0.000024791952485266"},{"denom":"ASSET12","index":"0.000023600048189968"},{"denom":"ASSET13","index":"0.000007784111470281"},{"denom":"ASSET14","index":"0.000022766914870589"},{"denom":"ASSET15","index":"0.000017894900322998"},{"denom":"ASSET16","index":"0.000011081662183182"},{"denom":"ASSET17","index":"0.000008672317440622"},{"denom":"ASSET18","index":"0.000003599691097086"},{"denom":"ASSET2","index":"0.000007555380586873"},{"denom":"ASSET3","index":"0.000002101847815188"},{"denom":"ASSET4","index":"0.000020244169178497"},{"denom":"ASSET5","index":"0.000001637098640985"},{"denom":"ASSET6","index":"0.000006609166185649"},{"denom":"ASSET7","index":"0.000010374399402552"},{"denom":"ASSET8","index":"0.000014150620453773"},{"denom":"ASSET9","index":"0.000006009906313007"}],"last_reward_claim_height":"166"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET9","shares":"503047570.500062798240093780","reward_history":[{"denom":"ASSET0","index":"0.000002944371933765"},{"denom":"ASSET1","index":"0.000024968433937291"},{"denom":"ASSET10","index":"0.000019851368221906"},{"denom":"ASSET11","index":"0.000024791952485266"},{"denom":"ASSET12","index":"0.000023600048189968"},{"denom":"ASSET13","index":"0.000007784111470281"},{"denom":"ASSET14","index":"0.000022766914870589"},{"denom":"ASSET15","index":"0.000017894900322998"},{"denom":"ASSET16","index":"0.000011081662183182"},{"denom":"ASSET17","index":"0.000008672317440622"},{"denom":"ASSET18","index":"0.000003599691097086"},{"denom":"ASSET2","index":"0.000007555380586873"},{"denom":"ASSET3","index":"0.000002101847815188"},{"denom":"ASSET4","index":"0.000020244169178497"},{"denom":"ASSET5","index":"0.000001637098640985"},{"denom":"ASSET6","index":"0.000006609166185649"},{"denom":"ASSET7","index":"0.000010374399402552"},{"denom":"ASSET8","index":"0.000014150620453773"},{"denom":"ASSET9","index":"0.000006009906313007"}],"last_reward_claim_height":"150"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET0","shares":"259955.704909289024048241","reward_history":[{"denom":"ASSET0","index":"0.000002938303361264"},{"denom":"ASSET1","index":"0.000024939884544734"},{"denom":"ASSET10","index":"0.000019970621943114"},{"denom":"ASSET11","index":"0.000024800280810198"},{"denom":"ASSET12","index":"0.000023679745396670"},{"denom":"ASSET13","index":"0.000007792253675830"},{"denom":"ASSET14","index":"0.000022752532795075"},{"denom":"ASSET15","index":"0.000017976341528508"},{"denom":"ASSET16","index":"0.000011059313296089"},{"denom":"ASSET17","index":"0.000008702160495382"},{"denom":"ASSET18","index":"0.000003584018468858"},{"denom":"ASSET2","index":"0.000007557839698908"},{"denom":"ASSET3","index":"0.000002096442663552"},{"denom":"ASSET4","index":"0.000020217858094708"},{"denom":"ASSET5","index":"0.000001633684136995"},{"denom":"ASSET6","index":"0.000006589976909255"},{"denom":"ASSET7","index":"0.000010359339015905"},{"denom":"ASSET8","index":"0.000014165755580726"},{"denom":"ASSET9","index":"0.000006010291774725"}],"last_reward_claim_height":"171"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET3","shares":"228999642.526882914269119440","reward_history":[{"denom":"ASSET0","index":"0.000002938303361264"},{"denom":"ASSET1","index":"0.000024939884544734"},{"denom":"ASSET10","index":"0.000019970621943114"},{"denom":"ASSET11","index":"0.000024800280810198"},{"denom":"ASSET12","index":"0.000023679745396670"},{"denom":"ASSET13","index":"0.000007792253675830"},{"denom":"ASSET14","index":"0.000022752532795075"},{"denom":"ASSET15","index":"0.000017976341528508"},{"denom":"ASSET16","index":"0.000011059313296089"},{"denom":"ASSET17","index":"0.000008702160495382"},{"denom":"ASSET18","index":"0.000003584018468858"},{"denom":"ASSET2","index":"0.000007557839698908"},{"denom":"ASSET3","index":"0.000002096442663552"},{"denom":"ASSET4","index":"0.000020217858094708"},{"denom":"ASSET5","index":"0.000001633684136995"},{"denom":"ASSET6","index":"0.000006589976909255"},{"denom":"ASSET7","index":"0.000010359339015905"},{"denom":"ASSET8","index":"0.000014165755580726"},{"denom":"ASSET9","index":"0.000006010291774725"}],"last_reward_claim_height":"146"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET4","shares":"961764474.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001449310882227"},{"denom":"ASSET1","index":"0.000012082282763787"},{"denom":"ASSET10","index":"0.000008417588941675"},{"denom":"ASSET11","index":"0.000011688148164511"},{"denom":"ASSET12","index":"0.000010525234539176"},{"denom":"ASSET13","index":"0.000003621923721366"},{"denom":"ASSET14","index":"0.000010918286351091"},{"denom":"ASSET15","index":"0.000007806355476589"},{"denom":"ASSET16","index":"0.000005442630668295"},{"denom":"ASSET17","index":"0.000003865550877512"},{"denom":"ASSET18","index":"0.000001841279906781"},{"denom":"ASSET2","index":"0.000003566701565973"},{"denom":"ASSET3","index":"0.000001043265621984"},{"denom":"ASSET4","index":"0.000009818715786353"},{"denom":"ASSET5","index":"0.000000809924945764"},{"denom":"ASSET6","index":"0.000003295463332131"},{"denom":"ASSET7","index":"0.000005047413281659"},{"denom":"ASSET8","index":"0.000006586595514820"},{"denom":"ASSET9","index":"0.000002844482396421"}],"last_reward_claim_height":"64"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET11","shares":"11250856.888663512300309388","reward_history":[{"denom":"ASSET0","index":"0.000001449310882227"},{"denom":"ASSET1","index":"0.000012082282763787"},{"denom":"ASSET10","index":"0.000008417588941675"},{"denom":"ASSET11","index":"0.000011688148164511"},{"denom":"ASSET12","index":"0.000010525234539176"},{"denom":"ASSET13","index":"0.000003621923721366"},{"denom":"ASSET14","index":"0.000010918286351091"},{"denom":"ASSET15","index":"0.000007806355476589"},{"denom":"ASSET16","index":"0.000005442630668295"},{"denom":"ASSET17","index":"0.000003865550877512"},{"denom":"ASSET18","index":"0.000001841279906781"},{"denom":"ASSET2","index":"0.000003566701565973"},{"denom":"ASSET3","index":"0.000001043265621984"},{"denom":"ASSET4","index":"0.000009818715786353"},{"denom":"ASSET5","index":"0.000000809924945764"},{"denom":"ASSET6","index":"0.000003295463332131"},{"denom":"ASSET7","index":"0.000005047413281659"},{"denom":"ASSET8","index":"0.000006586595514820"},{"denom":"ASSET9","index":"0.000002844482396421"}],"last_reward_claim_height":"63"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET11","shares":"519246210.000000000000000000","reward_history":[],"last_reward_claim_height":"22"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET15","shares":"668583655.445848698148904965","reward_history":[{"denom":"ASSET0","index":"0.000003329715418659"},{"denom":"ASSET1","index":"0.000028238028843607"},{"denom":"ASSET10","index":"0.000022458342297172"},{"denom":"ASSET11","index":"0.000028040237741643"},{"denom":"ASSET12","index":"0.000026695793846360"},{"denom":"ASSET13","index":"0.000008804253880653"},{"denom":"ASSET14","index":"0.000025748953032298"},{"denom":"ASSET15","index":"0.000020243324641083"},{"denom":"ASSET16","index":"0.000012532507824147"},{"denom":"ASSET17","index":"0.000009809802042254"},{"denom":"ASSET18","index":"0.000004070975493464"},{"denom":"ASSET2","index":"0.000008545109234155"},{"denom":"ASSET3","index":"0.000002377197518329"},{"denom":"ASSET4","index":"0.000022894451839245"},{"denom":"ASSET5","index":"0.000001851122407848"},{"denom":"ASSET6","index":"0.000007473999475476"},{"denom":"ASSET7","index":"0.000011732969702935"},{"denom":"ASSET8","index":"0.000016005536556726"},{"denom":"ASSET9","index":"0.000006797137295338"}],"last_reward_claim_height":"137"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET2","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"55"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET7","shares":"710356121.854300393467309432","reward_history":[{"denom":"ASSET0","index":"0.000004931397933984"},{"denom":"ASSET1","index":"0.000040352271951275"},{"denom":"ASSET10","index":"0.000034957777134329"},{"denom":"ASSET11","index":"0.000041936330660967"},{"denom":"ASSET12","index":"0.000039921322949190"},{"denom":"ASSET13","index":"0.000013529253328858"},{"denom":"ASSET14","index":"0.000038691809136583"},{"denom":"ASSET15","index":"0.000031380047826250"},{"denom":"ASSET16","index":"0.000017904400359919"},{"denom":"ASSET17","index":"0.000014501150519904"},{"denom":"ASSET18","index":"0.000006024985847518"},{"denom":"ASSET2","index":"0.000012179668126361"},{"denom":"ASSET3","index":"0.000003502182720384"},{"denom":"ASSET4","index":"0.000033078078225160"},{"denom":"ASSET5","index":"0.000002749829149896"},{"denom":"ASSET6","index":"0.000011224248960260"},{"denom":"ASSET7","index":"0.000017336975491688"},{"denom":"ASSET8","index":"0.000024963318026039"},{"denom":"ASSET9","index":"0.000010011343908228"}],"last_reward_claim_height":"196"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET12","shares":"358206311.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003269082759145"},{"denom":"ASSET1","index":"0.000027736662456421"},{"denom":"ASSET10","index":"0.000022145815740722"},{"denom":"ASSET11","index":"0.000027564157079872"},{"denom":"ASSET12","index":"0.000026286254396013"},{"denom":"ASSET13","index":"0.000008658548128401"},{"denom":"ASSET14","index":"0.000025298253418871"},{"denom":"ASSET15","index":"0.000019946084058089"},{"denom":"ASSET16","index":"0.000012303266096103"},{"denom":"ASSET17","index":"0.000009659898104260"},{"denom":"ASSET18","index":"0.000003991565584036"},{"denom":"ASSET2","index":"0.000008399501371576"},{"denom":"ASSET3","index":"0.000002333103515211"},{"denom":"ASSET4","index":"0.000022486071398850"},{"denom":"ASSET5","index":"0.000001817550334619"},{"denom":"ASSET6","index":"0.000007334517845971"},{"denom":"ASSET7","index":"0.000011522603065826"},{"denom":"ASSET8","index":"0.000015739883934035"},{"denom":"ASSET9","index":"0.000006680430297789"}],"last_reward_claim_height":"157"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET3","shares":"503829473.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001707974867576"},{"denom":"ASSET1","index":"0.000014238090744503"},{"denom":"ASSET10","index":"0.000009920037235236"},{"denom":"ASSET11","index":"0.000013773690453356"},{"denom":"ASSET12","index":"0.000012403461252069"},{"denom":"ASSET13","index":"0.000004268385028930"},{"denom":"ASSET14","index":"0.000012866619831208"},{"denom":"ASSET15","index":"0.000009199844270355"},{"denom":"ASSET16","index":"0.000006414063379473"},{"denom":"ASSET17","index":"0.000004555220502875"},{"denom":"ASSET18","index":"0.000002169891734707"},{"denom":"ASSET2","index":"0.000004203195148489"},{"denom":"ASSET3","index":"0.000001229294888332"},{"denom":"ASSET4","index":"0.000011570893350426"},{"denom":"ASSET5","index":"0.000000954255678468"},{"denom":"ASSET6","index":"0.000003884075162326"},{"denom":"ASSET7","index":"0.000005948421376317"},{"denom":"ASSET8","index":"0.000007761941764609"},{"denom":"ASSET9","index":"0.000003352622422724"}],"last_reward_claim_height":"123"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET17","shares":"75686135.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001707974867576"},{"denom":"ASSET1","index":"0.000014238090744503"},{"denom":"ASSET10","index":"0.000009920037235236"},{"denom":"ASSET11","index":"0.000013773690453356"},{"denom":"ASSET12","index":"0.000012403461252069"},{"denom":"ASSET13","index":"0.000004268385028930"},{"denom":"ASSET14","index":"0.000012866619831208"},{"denom":"ASSET15","index":"0.000009199844270355"},{"denom":"ASSET16","index":"0.000006414063379473"},{"denom":"ASSET17","index":"0.000004555220502875"},{"denom":"ASSET18","index":"0.000002169891734707"},{"denom":"ASSET2","index":"0.000004203195148489"},{"denom":"ASSET3","index":"0.000001229294888332"},{"denom":"ASSET4","index":"0.000011570893350426"},{"denom":"ASSET5","index":"0.000000954255678468"},{"denom":"ASSET6","index":"0.000003884075162326"},{"denom":"ASSET7","index":"0.000005948421376317"},{"denom":"ASSET8","index":"0.000007761941764609"},{"denom":"ASSET9","index":"0.000003352622422724"}],"last_reward_claim_height":"114"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET5","shares":"55696381.000000000000000000","reward_history":[],"last_reward_claim_height":"21"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET10","shares":"122553482.000000000000000000","reward_history":[],"last_reward_claim_height":"23"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET14","shares":"948093570.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003478645419875"},{"denom":"ASSET1","index":"0.000029510728520321"},{"denom":"ASSET10","index":"0.000023521700007579"},{"denom":"ASSET11","index":"0.000029317721838376"},{"denom":"ASSET12","index":"0.000027938200533330"},{"denom":"ASSET13","index":"0.000009206643656085"},{"denom":"ASSET14","index":"0.000026913511393693"},{"denom":"ASSET15","index":"0.000021192735957156"},{"denom":"ASSET16","index":"0.000013092928863665"},{"denom":"ASSET17","index":"0.000010265835619821"},{"denom":"ASSET18","index":"0.000004249633310572"},{"denom":"ASSET2","index":"0.000008933634051769"},{"denom":"ASSET3","index":"0.000002482776919113"},{"denom":"ASSET4","index":"0.000023925662277258"},{"denom":"ASSET5","index":"0.000001933519521756"},{"denom":"ASSET6","index":"0.000007806757132876"},{"denom":"ASSET7","index":"0.000012260200744601"},{"denom":"ASSET8","index":"0.000016737737824425"},{"denom":"ASSET9","index":"0.000007106044722519"}],"last_reward_claim_height":"154"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET16","shares":"792934957.569695163700745112","reward_history":[{"denom":"ASSET0","index":"0.000003478645419875"},{"denom":"ASSET1","index":"0.000029510728520321"},{"denom":"ASSET10","index":"0.000023521700007579"},{"denom":"ASSET11","index":"0.000029317721838376"},{"denom":"ASSET12","index":"0.000027938200533330"},{"denom":"ASSET13","index":"0.000009206643656085"},{"denom":"ASSET14","index":"0.000026913511393693"},{"denom":"ASSET15","index":"0.000021192735957156"},{"denom":"ASSET16","index":"0.000013092928863665"},{"denom":"ASSET17","index":"0.000010265835619821"},{"denom":"ASSET18","index":"0.000004249633310572"},{"denom":"ASSET2","index":"0.000008933634051769"},{"denom":"ASSET3","index":"0.000002482776919113"},{"denom":"ASSET4","index":"0.000023925662277258"},{"denom":"ASSET5","index":"0.000001933519521756"},{"denom":"ASSET6","index":"0.000007806757132876"},{"denom":"ASSET7","index":"0.000012260200744601"},{"denom":"ASSET8","index":"0.000016737737824425"},{"denom":"ASSET9","index":"0.000007106044722519"}],"last_reward_claim_height":"129"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET3","shares":"655903297.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003327512121722"},{"denom":"ASSET1","index":"0.000028211822531533"},{"denom":"ASSET10","index":"0.000022399629444355"},{"denom":"ASSET11","index":"0.000028004032167971"},{"denom":"ASSET12","index":"0.000026643127370344"},{"denom":"ASSET13","index":"0.000008791339050068"},{"denom":"ASSET14","index":"0.000025722152469956"},{"denom":"ASSET15","index":"0.000020197596080044"},{"denom":"ASSET16","index":"0.000012523737733641"},{"denom":"ASSET17","index":"0.000009790102863953"},{"denom":"ASSET18","index":"0.000004069245825383"},{"denom":"ASSET2","index":"0.000008534453115749"},{"denom":"ASSET3","index":"0.000002375171252372"},{"denom":"ASSET4","index":"0.000022873545881432"},{"denom":"ASSET5","index":"0.000001850500835715"},{"denom":"ASSET6","index":"0.000007470212303630"},{"denom":"ASSET7","index":"0.000011723166108277"},{"denom":"ASSET8","index":"0.000015981595788329"},{"denom":"ASSET9","index":"0.000006788341225254"}],"last_reward_claim_height":"127"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET18","shares":"13072422.000000000000000000","reward_history":[],"last_reward_claim_height":"19"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET14","shares":"766413833.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002895048613815"},{"denom":"ASSET1","index":"0.000024589366099895"},{"denom":"ASSET10","index":"0.000019676065498265"},{"denom":"ASSET11","index":"0.000024447379266412"},{"denom":"ASSET12","index":"0.000023337478265694"},{"denom":"ASSET13","index":"0.000007679998629802"},{"denom":"ASSET14","index":"0.000022431328797509"},{"denom":"ASSET15","index":"0.000017714358679290"},{"denom":"ASSET16","index":"0.000010904445776568"},{"denom":"ASSET17","index":"0.000008574179211920"},{"denom":"ASSET18","index":"0.000003534399202209"},{"denom":"ASSET2","index":"0.000007450371795821"},{"denom":"ASSET3","index":"0.000002066219984895"},{"denom":"ASSET4","index":"0.000019933989143940"},{"denom":"ASSET5","index":"0.000001610899827710"},{"denom":"ASSET6","index":"0.000006497050827728"},{"denom":"ASSET7","index":"0.000010213894093182"},{"denom":"ASSET8","index":"0.000013962110633776"},{"denom":"ASSET9","index":"0.000005925048173997"}],"last_reward_claim_height":"124"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET5","shares":"238350542.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001401536005232"},{"denom":"ASSET1","index":"0.000011690786017211"},{"denom":"ASSET10","index":"0.000008143726832164"},{"denom":"ASSET11","index":"0.000011307987636928"},{"denom":"ASSET12","index":"0.000010184289165772"},{"denom":"ASSET13","index":"0.000003503840013080"},{"denom":"ASSET14","index":"0.000010564000462344"},{"denom":"ASSET15","index":"0.000007554093843178"},{"denom":"ASSET16","index":"0.000005266564812612"},{"denom":"ASSET17","index":"0.000003738458375190"},{"denom":"ASSET18","index":"0.000001781247301804"},{"denom":"ASSET2","index":"0.000003448272506265"},{"denom":"ASSET3","index":"0.000001009476373813"},{"denom":"ASSET4","index":"0.000009498956581716"},{"denom":"ASSET5","index":"0.000000781032179127"},{"denom":"ASSET6","index":"0.000003188957474460"},{"denom":"ASSET7","index":"0.000004883766432329"},{"denom":"ASSET8","index":"0.000006371740781496"},{"denom":"ASSET9","index":"0.000002750591587361"}],"last_reward_claim_height":"122"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET10","shares":"628151905.000000020729012865","reward_history":[{"denom":"ASSET0","index":"0.000001401536005232"},{"denom":"ASSET1","index":"0.000011690786017211"},{"denom":"ASSET10","index":"0.000008143726832164"},{"denom":"ASSET11","index":"0.000011307987636928"},{"denom":"ASSET12","index":"0.000010184289165772"},{"denom":"ASSET13","index":"0.000003503840013080"},{"denom":"ASSET14","index":"0.000010564000462344"},{"denom":"ASSET15","index":"0.000007554093843178"},{"denom":"ASSET16","index":"0.000005266564812612"},{"denom":"ASSET17","index":"0.000003738458375190"},{"denom":"ASSET18","index":"0.000001781247301804"},{"denom":"ASSET2","index":"0.000003448272506265"},{"denom":"ASSET3","index":"0.000001009476373813"},{"denom":"ASSET4","index":"0.000009498956581716"},{"denom":"ASSET5","index":"0.000000781032179127"},{"denom":"ASSET6","index":"0.000003188957474460"},{"denom":"ASSET7","index":"0.000004883766432329"},{"denom":"ASSET8","index":"0.000006371740781496"},{"denom":"ASSET9","index":"0.000002750591587361"}],"last_reward_claim_height":"121"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET13","shares":"228548050.799814202310495718","reward_history":[{"denom":"ASSET0","index":"0.000001401536005232"},{"denom":"ASSET1","index":"0.000011690786017211"},{"denom":"ASSET10","index":"0.000008143726832164"},{"denom":"ASSET11","index":"0.000011307987636928"},{"denom":"ASSET12","index":"0.000010184289165772"},{"denom":"ASSET13","index":"0.000003503840013080"},{"denom":"ASSET14","index":"0.000010564000462344"},{"denom":"ASSET15","index":"0.000007554093843178"},{"denom":"ASSET16","index":"0.000005266564812612"},{"denom":"ASSET17","index":"0.000003738458375190"},{"denom":"ASSET18","index":"0.000001781247301804"},{"denom":"ASSET2","index":"0.000003448272506265"},{"denom":"ASSET3","index":"0.000001009476373813"},{"denom":"ASSET4","index":"0.000009498956581716"},{"denom":"ASSET5","index":"0.000000781032179127"},{"denom":"ASSET6","index":"0.000003188957474460"},{"denom":"ASSET7","index":"0.000004883766432329"},{"denom":"ASSET8","index":"0.000006371740781496"},{"denom":"ASSET9","index":"0.000002750591587361"}],"last_reward_claim_height":"120"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET0","shares":"664500115.315229314098136839","reward_history":[{"denom":"ASSET0","index":"0.000001534549585700"},{"denom":"ASSET1","index":"0.000012795681230217"},{"denom":"ASSET10","index":"0.000008914897664776"},{"denom":"ASSET11","index":"0.000012378406858633"},{"denom":"ASSET12","index":"0.000011146809898878"},{"denom":"ASSET13","index":"0.000003835934265229"},{"denom":"ASSET14","index":"0.000011563204872419"},{"denom":"ASSET15","index":"0.000008267660704848"},{"denom":"ASSET16","index":"0.000005764014475342"},{"denom":"ASSET17","index":"0.000004093597891939"},{"denom":"ASSET18","index":"0.000001950065161198"},{"denom":"ASSET2","index":"0.000003777014596322"},{"denom":"ASSET3","index":"0.000001104963641508"},{"denom":"ASSET4","index":"0.000010398442163960"},{"denom":"ASSET5","index":"0.000000857413092297"},{"denom":"ASSET6","index":"0.000003490330834180"},{"denom":"ASSET7","index":"0.000005345421006692"},{"denom":"ASSET8","index":"0.000006975385280099"},{"denom":"ASSET9","index":"0.000003012817696624"}],"last_reward_claim_height":"121"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET4","shares":"187211568.471600869549243294","reward_history":[{"denom":"ASSET0","index":"0.000003034954909236"},{"denom":"ASSET1","index":"0.000025752158165977"},{"denom":"ASSET10","index":"0.000020556858138008"},{"denom":"ASSET11","index":"0.000025591676311293"},{"denom":"ASSET12","index":"0.000024402528250789"},{"denom":"ASSET13","index":"0.000008038375291107"},{"denom":"ASSET14","index":"0.000023488313497799"},{"denom":"ASSET15","index":"0.000018516037809802"},{"denom":"ASSET16","index":"0.000011423945454084"},{"denom":"ASSET17","index":"0.000008967524527402"},{"denom":"ASSET18","index":"0.000003706330058793"},{"denom":"ASSET2","index":"0.000007798931182527"},{"denom":"ASSET3","index":"0.000002166419358500"},{"denom":"ASSET4","index":"0.000020877722621984"},{"denom":"ASSET5","index":"0.000001687498984799"},{"denom":"ASSET6","index":"0.000006810207932767"},{"denom":"ASSET7","index":"0.000010698180555138"},{"denom":"ASSET8","index":"0.000014612921845389"},{"denom":"ASSET9","index":"0.000006203015740356"}],"last_reward_claim_height":"129"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET17","shares":"840765436.000000000636938256","reward_history":[],"last_reward_claim_height":"44"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET14","shares":"368272343.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004513465766133"},{"denom":"ASSET1","index":"0.000036937552558315"},{"denom":"ASSET10","index":"0.000032106432780890"},{"denom":"ASSET11","index":"0.000038424720695020"},{"denom":"ASSET12","index":"0.000036621512017629"},{"denom":"ASSET13","index":"0.000012401619641373"},{"denom":"ASSET14","index":"0.000035439394097449"},{"denom":"ASSET15","index":"0.000028804492998185"},{"denom":"ASSET16","index":"0.000016384451100174"},{"denom":"ASSET17","index":"0.000013301782940640"},{"denom":"ASSET18","index":"0.000005509309193090"},{"denom":"ASSET2","index":"0.000011156198886146"},{"denom":"ASSET3","index":"0.000003204659219312"},{"denom":"ASSET4","index":"0.000030280929160251"},{"denom":"ASSET5","index":"0.000002516487072040"},{"denom":"ASSET6","index":"0.000010271891246559"},{"denom":"ASSET7","index":"0.000015872400599943"},{"denom":"ASSET8","index":"0.000022885365116050"},{"denom":"ASSET9","index":"0.000009171283955153"}],"last_reward_claim_height":"194"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET13","shares":"93527081.771364060853148275","reward_history":[{"denom":"ASSET0","index":"0.000005110258502433"},{"denom":"ASSET1","index":"0.000041848139529843"},{"denom":"ASSET10","index":"0.000036095442313773"},{"denom":"ASSET11","index":"0.000043419926176109"},{"denom":"ASSET12","index":"0.000041293844776763"},{"denom":"ASSET13","index":"0.000013994054097310"},{"denom":"ASSET14","index":"0.000040066625857946"},{"denom":"ASSET15","index":"0.000032419831695563"},{"denom":"ASSET16","index":"0.000018571815188636"},{"denom":"ASSET17","index":"0.000015000716043498"},{"denom":"ASSET18","index":"0.000006247416520609"},{"denom":"ASSET2","index":"0.000012623910696266"},{"denom":"ASSET3","index":"0.000003630542968489"},{"denom":"ASSET4","index":"0.000034294837675452"},{"denom":"ASSET5","index":"0.000002848875945133"},{"denom":"ASSET6","index":"0.000011630847535820"},{"denom":"ASSET7","index":"0.000017964747196149"},{"denom":"ASSET8","index":"0.000025811711320315"},{"denom":"ASSET9","index":"0.000010370289784603"}],"last_reward_claim_height":"194"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET0","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"56"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET3","shares":"436054770.565838913492563865","reward_history":[{"denom":"ASSET0","index":"0.000001536288093705"},{"denom":"ASSET1","index":"0.000012808796131863"},{"denom":"ASSET10","index":"0.000008924322337818"},{"denom":"ASSET11","index":"0.000012391382492026"},{"denom":"ASSET12","index":"0.000011158327625467"},{"denom":"ASSET13","index":"0.000003840018305497"},{"denom":"ASSET14","index":"0.000011575273312793"},{"denom":"ASSET15","index":"0.000008276208110044"},{"denom":"ASSET16","index":"0.000005770322413488"},{"denom":"ASSET17","index":"0.000004097860139074"},{"denom":"ASSET18","index":"0.000001951829923499"},{"denom":"ASSET2","index":"0.000003781056289108"},{"denom":"ASSET3","index":"0.000001105771783560"},{"denom":"ASSET4","index":"0.000010409603607822"},{"denom":"ASSET5","index":"0.000000858224905226"},{"denom":"ASSET6","index":"0.000003494201399847"},{"denom":"ASSET7","index":"0.000005351036963607"},{"denom":"ASSET8","index":"0.000006982787369562"},{"denom":"ASSET9","index":"0.000003015953933577"}],"last_reward_claim_height":"105"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET4","shares":"229549802.999999998758913317","reward_history":[],"last_reward_claim_height":"54"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET7","shares":"176340616.672338193637747727","reward_history":[{"denom":"ASSET0","index":"0.000001536288093705"},{"denom":"ASSET1","index":"0.000012808796131863"},{"denom":"ASSET10","index":"0.000008924322337818"},{"denom":"ASSET11","index":"0.000012391382492026"},{"denom":"ASSET12","index":"0.000011158327625467"},{"denom":"ASSET13","index":"0.000003840018305497"},{"denom":"ASSET14","index":"0.000011575273312793"},{"denom":"ASSET15","index":"0.000008276208110044"},{"denom":"ASSET16","index":"0.000005770322413488"},{"denom":"ASSET17","index":"0.000004097860139074"},{"denom":"ASSET18","index":"0.000001951829923499"},{"denom":"ASSET2","index":"0.000003781056289108"},{"denom":"ASSET3","index":"0.000001105771783560"},{"denom":"ASSET4","index":"0.000010409603607822"},{"denom":"ASSET5","index":"0.000000858224905226"},{"denom":"ASSET6","index":"0.000003494201399847"},{"denom":"ASSET7","index":"0.000005351036963607"},{"denom":"ASSET8","index":"0.000006982787369562"},{"denom":"ASSET9","index":"0.000003015953933577"}],"last_reward_claim_height":"70"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET3","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"32"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET15","shares":"481892305.375239964087667071","reward_history":[{"denom":"ASSET0","index":"0.000001156201861882"},{"denom":"ASSET1","index":"0.000009641528249827"},{"denom":"ASSET10","index":"0.000006717693720376"},{"denom":"ASSET11","index":"0.000009327193051790"},{"denom":"ASSET12","index":"0.000008399128436016"},{"denom":"ASSET13","index":"0.000002890504654704"},{"denom":"ASSET14","index":"0.000008712888981039"},{"denom":"ASSET15","index":"0.000006229813312455"},{"denom":"ASSET16","index":"0.000004343227471224"},{"denom":"ASSET17","index":"0.000003084737373052"},{"denom":"ASSET18","index":"0.000001469387753892"},{"denom":"ASSET2","index":"0.000002846256372714"},{"denom":"ASSET3","index":"0.000000832672215639"},{"denom":"ASSET4","index":"0.000007835393830396"},{"denom":"ASSET5","index":"0.000000645909986459"},{"denom":"ASSET6","index":"0.000002630186839877"},{"denom":"ASSET7","index":"0.000004027742967162"},{"denom":"ASSET8","index":"0.000005256351108664"},{"denom":"ASSET9","index":"0.000002269879400812"}],"last_reward_claim_height":"95"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET17","shares":"353312789.000000000000000000","reward_history":[],"last_reward_claim_height":"26"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET18","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001156201861882"},{"denom":"ASSET1","index":"0.000009641528249827"},{"denom":"ASSET10","index":"0.000006717693720376"},{"denom":"ASSET11","index":"0.000009327193051790"},{"denom":"ASSET12","index":"0.000008399128436016"},{"denom":"ASSET13","index":"0.000002890504654704"},{"denom":"ASSET14","index":"0.000008712888981039"},{"denom":"ASSET15","index":"0.000006229813312455"},{"denom":"ASSET16","index":"0.000004343227471224"},{"denom":"ASSET17","index":"0.000003084737373052"},{"denom":"ASSET18","index":"0.000001469387753892"},{"denom":"ASSET2","index":"0.000002846256372714"},{"denom":"ASSET3","index":"0.000000832672215639"},{"denom":"ASSET4","index":"0.000007835393830396"},{"denom":"ASSET5","index":"0.000000645909986459"},{"denom":"ASSET6","index":"0.000002630186839877"},{"denom":"ASSET7","index":"0.000004027742967162"},{"denom":"ASSET8","index":"0.000005256351108664"},{"denom":"ASSET9","index":"0.000002269879400812"}],"last_reward_claim_height":"107"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET2","shares":"172496320.085062083498661552","reward_history":[{"denom":"ASSET0","index":"0.000004684522326330"},{"denom":"ASSET1","index":"0.000038343592790786"},{"denom":"ASSET10","index":"0.000033073465123627"},{"denom":"ASSET11","index":"0.000039792938806307"},{"denom":"ASSET12","index":"0.000037831993151719"},{"denom":"ASSET13","index":"0.000012827422858554"},{"denom":"ASSET14","index":"0.000036725774896582"},{"denom":"ASSET15","index":"0.000029707175527113"},{"denom":"ASSET16","index":"0.000017020370407689"},{"denom":"ASSET17","index":"0.000013744455687075"},{"denom":"ASSET18","index":"0.000005729220057041"},{"denom":"ASSET2","index":"0.000011567669506012"},{"denom":"ASSET3","index":"0.000003327180281983"},{"denom":"ASSET4","index":"0.000031427847982959"},{"denom":"ASSET5","index":"0.000002612385721179"},{"denom":"ASSET6","index":"0.000010663850280154"},{"denom":"ASSET7","index":"0.000016466138905281"},{"denom":"ASSET8","index":"0.000023663630054111"},{"denom":"ASSET9","index":"0.000009503718423149"}],"last_reward_claim_height":"185"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET6","shares":"349730842.000000000000000000","reward_history":[],"last_reward_claim_height":"23"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET10","shares":"18663498.999999999409060852","reward_history":[],"last_reward_claim_height":"7"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET17","shares":"38837150.999999989527588216","reward_history":[{"denom":"ASSET0","index":"0.000004684522326330"},{"denom":"ASSET1","index":"0.000038343592790786"},{"denom":"ASSET10","index":"0.000033073465123627"},{"denom":"ASSET11","index":"0.000039792938806307"},{"denom":"ASSET12","index":"0.000037831993151719"},{"denom":"ASSET13","index":"0.000012827422858554"},{"denom":"ASSET14","index":"0.000036725774896582"},{"denom":"ASSET15","index":"0.000029707175527113"},{"denom":"ASSET16","index":"0.000017020370407689"},{"denom":"ASSET17","index":"0.000013744455687075"},{"denom":"ASSET18","index":"0.000005729220057041"},{"denom":"ASSET2","index":"0.000011567669506012"},{"denom":"ASSET3","index":"0.000003327180281983"},{"denom":"ASSET4","index":"0.000031427847982959"},{"denom":"ASSET5","index":"0.000002612385721179"},{"denom":"ASSET6","index":"0.000010663850280154"},{"denom":"ASSET7","index":"0.000016466138905281"},{"denom":"ASSET8","index":"0.000023663630054111"},{"denom":"ASSET9","index":"0.000009503718423149"}],"last_reward_claim_height":"192"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET18","shares":"920248538.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003133427860009"},{"denom":"ASSET1","index":"0.000026571363581284"},{"denom":"ASSET10","index":"0.000021118003104150"},{"denom":"ASSET11","index":"0.000026381510155653"},{"denom":"ASSET12","index":"0.000025108485590780"},{"denom":"ASSET13","index":"0.000008282355352591"},{"denom":"ASSET14","index":"0.000024227637307493"},{"denom":"ASSET15","index":"0.000019037535386694"},{"denom":"ASSET16","index":"0.000011793447009555"},{"denom":"ASSET17","index":"0.000009226841180516"},{"denom":"ASSET18","index":"0.000003831770888939"},{"denom":"ASSET2","index":"0.000008040278303534"},{"denom":"ASSET3","index":"0.000002236402387063"},{"denom":"ASSET4","index":"0.000021543810534784"},{"denom":"ASSET5","index":"0.000001742508705183"},{"denom":"ASSET6","index":"0.000007033989161296"},{"denom":"ASSET7","index":"0.000011040340871930"},{"denom":"ASSET8","index":"0.000015056795520064"},{"denom":"ASSET9","index":"0.000006395464292965"}],"last_reward_claim_height":"135"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET0","shares":"427346922.086644725487283866","reward_history":[{"denom":"ASSET0","index":"0.000003102345998156"},{"denom":"ASSET1","index":"0.000026324295521459"},{"denom":"ASSET10","index":"0.000021034709957123"},{"denom":"ASSET11","index":"0.000026165624152899"},{"denom":"ASSET12","index":"0.000024960753498443"},{"denom":"ASSET13","index":"0.000008219480216908"},{"denom":"ASSET14","index":"0.000024012126304297"},{"denom":"ASSET15","index":"0.000018942125813395"},{"denom":"ASSET16","index":"0.000011676379885795"},{"denom":"ASSET17","index":"0.000009172744202097"},{"denom":"ASSET18","index":"0.000003786686743681"},{"denom":"ASSET2","index":"0.000007973892542195"},{"denom":"ASSET3","index":"0.000002213622154517"},{"denom":"ASSET4","index":"0.000021341514997764"},{"denom":"ASSET5","index":"0.000001724677267981"},{"denom":"ASSET6","index":"0.000006959760131783"},{"denom":"ASSET7","index":"0.000010935767858794"},{"denom":"ASSET8","index":"0.000014942141973689"},{"denom":"ASSET9","index":"0.000006341977499472"}],"last_reward_claim_height":"164"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET18","shares":"52134309.115191177905533878","reward_history":[{"denom":"ASSET0","index":"0.000001556422065682"},{"denom":"ASSET1","index":"0.000012975233747354"},{"denom":"ASSET10","index":"0.000009039925804131"},{"denom":"ASSET11","index":"0.000012551842294036"},{"denom":"ASSET12","index":"0.000011303196313064"},{"denom":"ASSET13","index":"0.000003889859143149"},{"denom":"ASSET14","index":"0.000011725391745328"},{"denom":"ASSET15","index":"0.000008383310245172"},{"denom":"ASSET16","index":"0.000005844954893688"},{"denom":"ASSET17","index":"0.000004150990406731"},{"denom":"ASSET18","index":"0.000001977421476890"},{"denom":"ASSET2","index":"0.000003830058090421"},{"denom":"ASSET3","index":"0.000001120273054448"},{"denom":"ASSET4","index":"0.000010544520290781"},{"denom":"ASSET5","index":"0.000000869507306673"},{"denom":"ASSET6","index":"0.000003539424974160"},{"denom":"ASSET7","index":"0.000005420766093000"},{"denom":"ASSET8","index":"0.000007073268516732"},{"denom":"ASSET9","index":"0.000003055036447059"}],"last_reward_claim_height":"123"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET0","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"29"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET11","shares":"395560239.999999999793048837","reward_history":[],"last_reward_claim_height":"58"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET3","shares":"36200716.500900886183836256","reward_history":[{"denom":"ASSET0","index":"0.000003109600829404"},{"denom":"ASSET1","index":"0.000026362702045617"},{"denom":"ASSET10","index":"0.000020937844947102"},{"denom":"ASSET11","index":"0.000026169598808926"},{"denom":"ASSET12","index":"0.000024901798461360"},{"denom":"ASSET13","index":"0.000008215149609138"},{"denom":"ASSET14","index":"0.000024035954930107"},{"denom":"ASSET15","index":"0.000018878331344314"},{"denom":"ASSET16","index":"0.000011701775976010"},{"denom":"ASSET17","index":"0.000009149505282332"},{"denom":"ASSET18","index":"0.000003801954966508"},{"denom":"ASSET2","index":"0.000007974718303805"},{"denom":"ASSET3","index":"0.000002219037761573"},{"denom":"ASSET4","index":"0.000021373555319687"},{"denom":"ASSET5","index":"0.000001728657323000"},{"denom":"ASSET6","index":"0.000006980294033305"},{"denom":"ASSET7","index":"0.000010954522542925"},{"denom":"ASSET8","index":"0.000014935013269095"},{"denom":"ASSET9","index":"0.000006344057182602"}],"last_reward_claim_height":"147"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET5","shares":"398260639.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001633811359009"},{"denom":"ASSET1","index":"0.000013620164108551"},{"denom":"ASSET10","index":"0.000009487838038290"},{"denom":"ASSET11","index":"0.000013174776703502"},{"denom":"ASSET12","index":"0.000011864685946211"},{"denom":"ASSET13","index":"0.000004082355776036"},{"denom":"ASSET14","index":"0.000012307900729772"},{"denom":"ASSET15","index":"0.000008799117026580"},{"denom":"ASSET16","index":"0.000006135483082238"},{"denom":"ASSET17","index":"0.000004356106083529"},{"denom":"ASSET18","index":"0.000002074853521082"},{"denom":"ASSET2","index":"0.000004019349752882"},{"denom":"ASSET3","index":"0.000001175388225032"},{"denom":"ASSET4","index":"0.000011067333860098"},{"denom":"ASSET5","index":"0.000000912501024979"},{"denom":"ASSET6","index":"0.000003715182744556"},{"denom":"ASSET7","index":"0.000005690095677188"},{"denom":"ASSET8","index":"0.000007423847624648"},{"denom":"ASSET9","index":"0.000003206789316354"}],"last_reward_claim_height":"115"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET9","shares":"143347747.286488841250026304","reward_history":[{"denom":"ASSET0","index":"0.000004653412453716"},{"denom":"ASSET1","index":"0.000038080083637587"},{"denom":"ASSET10","index":"0.000032837607615689"},{"denom":"ASSET11","index":"0.000039518768800052"},{"denom":"ASSET12","index":"0.000037566035114091"},{"denom":"ASSET13","index":"0.000012739325126443"},{"denom":"ASSET14","index":"0.000036476031581181"},{"denom":"ASSET15","index":"0.000029498212713119"},{"denom":"ASSET16","index":"0.000016904055584348"},{"denom":"ASSET17","index":"0.000013645962089755"},{"denom":"ASSET18","index":"0.000005690442722400"},{"denom":"ASSET2","index":"0.000011485754888892"},{"denom":"ASSET3","index":"0.000003304888092178"},{"denom":"ASSET4","index":"0.000031211688725726"},{"denom":"ASSET5","index":"0.000002594766576713"},{"denom":"ASSET6","index":"0.000010593367608393"},{"denom":"ASSET7","index":"0.000016355252045203"},{"denom":"ASSET8","index":"0.000023502103224880"},{"denom":"ASSET9","index":"0.000009437706237723"}],"last_reward_claim_height":"188"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET3","shares":"172455323.000000004442112828","reward_history":[],"last_reward_claim_height":"54"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET4","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"34"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET8","shares":"588682119.510241253849030160","reward_history":[{"denom":"ASSET0","index":"0.000004565111961250"},{"denom":"ASSET1","index":"0.000037295669635619"},{"denom":"ASSET10","index":"0.000032690518840863"},{"denom":"ASSET11","index":"0.000038932997595939"},{"denom":"ASSET12","index":"0.000037159410541605"},{"denom":"ASSET13","index":"0.000012589920858900"},{"denom":"ASSET14","index":"0.000035901713477675"},{"denom":"ASSET15","index":"0.000029302331825558"},{"denom":"ASSET16","index":"0.000016536068871761"},{"denom":"ASSET17","index":"0.000013488122629744"},{"denom":"ASSET18","index":"0.000005565746532740"},{"denom":"ASSET2","index":"0.000011270479703615"},{"denom":"ASSET3","index":"0.000003239462728319"},{"denom":"ASSET4","index":"0.000030593146169983"},{"denom":"ASSET5","index":"0.000002545828835201"},{"denom":"ASSET6","index":"0.000010394121101812"},{"denom":"ASSET7","index":"0.000016057027670772"},{"denom":"ASSET8","index":"0.000023252230779774"},{"denom":"ASSET9","index":"0.000009283591156065"}],"last_reward_claim_height":"197"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET18","shares":"173989155.000000000000000000","reward_history":[],"last_reward_claim_height":"53"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET1","shares":"13207062.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003241945367060"},{"denom":"ASSET1","index":"0.000027480716546724"},{"denom":"ASSET10","index":"0.000021780901079221"},{"denom":"ASSET11","index":"0.000027265989011084"},{"denom":"ASSET12","index":"0.000025921947969478"},{"denom":"ASSET13","index":"0.000008556984130745"},{"denom":"ASSET14","index":"0.000025051754134356"},{"denom":"ASSET15","index":"0.000019643848931612"},{"denom":"ASSET16","index":"0.000012200322352703"},{"denom":"ASSET17","index":"0.000009524928673174"},{"denom":"ASSET18","index":"0.000003966981346299"},{"denom":"ASSET2","index":"0.000008309018225650"},{"denom":"ASSET3","index":"0.000002312540225621"},{"denom":"ASSET4","index":"0.000022282443818183"},{"denom":"ASSET5","index":"0.000001802193647755"},{"denom":"ASSET6","index":"0.000007278646216530"},{"denom":"ASSET7","index":"0.000011418356902196"},{"denom":"ASSET8","index":"0.000015557459098515"},{"denom":"ASSET9","index":"0.000006608754258977"}],"last_reward_claim_height":"172"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET7","shares":"342841978.482462722742654916","reward_history":[{"denom":"ASSET0","index":"0.000003241945367060"},{"denom":"ASSET1","index":"0.000027480716546724"},{"denom":"ASSET10","index":"0.000021780901079221"},{"denom":"ASSET11","index":"0.000027265989011084"},{"denom":"ASSET12","index":"0.000025921947969478"},{"denom":"ASSET13","index":"0.000008556984130745"},{"denom":"ASSET14","index":"0.000025051754134356"},{"denom":"ASSET15","index":"0.000019643848931612"},{"denom":"ASSET16","index":"0.000012200322352703"},{"denom":"ASSET17","index":"0.000009524928673174"},{"denom":"ASSET18","index":"0.000003966981346299"},{"denom":"ASSET2","index":"0.000008309018225650"},{"denom":"ASSET3","index":"0.000002312540225621"},{"denom":"ASSET4","index":"0.000022282443818183"},{"denom":"ASSET5","index":"0.000001802193647755"},{"denom":"ASSET6","index":"0.000007278646216530"},{"denom":"ASSET7","index":"0.000011418356902196"},{"denom":"ASSET8","index":"0.000015557459098515"},{"denom":"ASSET9","index":"0.000006608754258977"}],"last_reward_claim_height":"139"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET9","shares":"138766988.000000000000000000","reward_history":[],"last_reward_claim_height":"13"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET10","shares":"1144646.430563163676712985","reward_history":[{"denom":"ASSET0","index":"0.000004809583699829"},{"denom":"ASSET1","index":"0.000039380819492754"},{"denom":"ASSET10","index":"0.000033866242105377"},{"denom":"ASSET11","index":"0.000040823461925820"},{"denom":"ASSET12","index":"0.000038783778597697"},{"denom":"ASSET13","index":"0.000013151510420296"},{"denom":"ASSET14","index":"0.000037685701944579"},{"denom":"ASSET15","index":"0.000030429413884750"},{"denom":"ASSET16","index":"0.000017483827688478"},{"denom":"ASSET17","index":"0.000014091469353498"},{"denom":"ASSET18","index":"0.000005885106118443"},{"denom":"ASSET2","index":"0.000011874740214070"},{"denom":"ASSET3","index":"0.000003415084385987"},{"denom":"ASSET4","index":"0.000032273750528479"},{"denom":"ASSET5","index":"0.000002681741366339"},{"denom":"ASSET6","index":"0.000010947870537491"},{"denom":"ASSET7","index":"0.000016903092094799"},{"denom":"ASSET8","index":"0.000024257874056182"},{"denom":"ASSET9","index":"0.000009750694164807"}],"last_reward_claim_height":"185"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET12","shares":"833721205.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001730803097805"},{"denom":"ASSET1","index":"0.000014429128492036"},{"denom":"ASSET10","index":"0.000010053081326419"},{"denom":"ASSET11","index":"0.000013956042311970"},{"denom":"ASSET12","index":"0.000012568515161896"},{"denom":"ASSET13","index":"0.000004324123072683"},{"denom":"ASSET14","index":"0.000013038716670133"},{"denom":"ASSET15","index":"0.000009320374681681"},{"denom":"ASSET16","index":"0.000006499165632259"},{"denom":"ASSET17","index":"0.000004615474927481"},{"denom":"ASSET18","index":"0.000002198119934213"},{"denom":"ASSET2","index":"0.000004257775620601"},{"denom":"ASSET3","index":"0.000001243293558590"},{"denom":"ASSET4","index":"0.000011726190987631"},{"denom":"ASSET5","index":"0.000000966365062941"},{"denom":"ASSET6","index":"0.000003934692375677"},{"denom":"ASSET7","index":"0.000006026079452192"},{"denom":"ASSET8","index":"0.000007863615407695"},{"denom":"ASSET9","index":"0.000003395258743528"}],"last_reward_claim_height":"110"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET13","shares":"982793650.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001730803097805"},{"denom":"ASSET1","index":"0.000014429128492036"},{"denom":"ASSET10","index":"0.000010053081326419"},{"denom":"ASSET11","index":"0.000013956042311970"},{"denom":"ASSET12","index":"0.000012568515161896"},{"denom":"ASSET13","index":"0.000004324123072683"},{"denom":"ASSET14","index":"0.000013038716670133"},{"denom":"ASSET15","index":"0.000009320374681681"},{"denom":"ASSET16","index":"0.000006499165632259"},{"denom":"ASSET17","index":"0.000004615474927481"},{"denom":"ASSET18","index":"0.000002198119934213"},{"denom":"ASSET2","index":"0.000004257775620601"},{"denom":"ASSET3","index":"0.000001243293558590"},{"denom":"ASSET4","index":"0.000011726190987631"},{"denom":"ASSET5","index":"0.000000966365062941"},{"denom":"ASSET6","index":"0.000003934692375677"},{"denom":"ASSET7","index":"0.000006026079452192"},{"denom":"ASSET8","index":"0.000007863615407695"},{"denom":"ASSET9","index":"0.000003395258743528"}],"last_reward_claim_height":"85"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET15","shares":"24239439.739610465267719216","reward_history":[{"denom":"ASSET0","index":"0.000003241945367060"},{"denom":"ASSET1","index":"0.000027480716546724"},{"denom":"ASSET10","index":"0.000021780901079221"},{"denom":"ASSET11","index":"0.000027265989011084"},{"denom":"ASSET12","index":"0.000025921947969478"},{"denom":"ASSET13","index":"0.000008556984130745"},{"denom":"ASSET14","index":"0.000025051754134356"},{"denom":"ASSET15","index":"0.000019643848931612"},{"denom":"ASSET16","index":"0.000012200322352703"},{"denom":"ASSET17","index":"0.000009524928673174"},{"denom":"ASSET18","index":"0.000003966981346299"},{"denom":"ASSET2","index":"0.000008309018225650"},{"denom":"ASSET3","index":"0.000002312540225621"},{"denom":"ASSET4","index":"0.000022282443818183"},{"denom":"ASSET5","index":"0.000001802193647755"},{"denom":"ASSET6","index":"0.000007278646216530"},{"denom":"ASSET7","index":"0.000011418356902196"},{"denom":"ASSET8","index":"0.000015557459098515"},{"denom":"ASSET9","index":"0.000006608754258977"}],"last_reward_claim_height":"146"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET10","shares":"857505879.063716886557339352","reward_history":[{"denom":"ASSET0","index":"0.000003079719434352"},{"denom":"ASSET1","index":"0.000026105925494605"},{"denom":"ASSET10","index":"0.000020711970439773"},{"denom":"ASSET11","index":"0.000025910008103106"},{"denom":"ASSET12","index":"0.000024641613628664"},{"denom":"ASSET13","index":"0.000008133110770201"},{"denom":"ASSET14","index":"0.000023800542954419"},{"denom":"ASSET15","index":"0.000018678884312278"},{"denom":"ASSET16","index":"0.000011589749383737"},{"denom":"ASSET17","index":"0.000009055208366452"},{"denom":"ASSET18","index":"0.000003767697278786"},{"denom":"ASSET2","index":"0.000007896757003962"},{"denom":"ASSET3","index":"0.000002198611212202"},{"denom":"ASSET4","index":"0.000021166859181475"},{"denom":"ASSET5","index":"0.000001712166144109"},{"denom":"ASSET6","index":"0.000006913910929446"},{"denom":"ASSET7","index":"0.000010848237821893"},{"denom":"ASSET8","index":"0.000014785764472138"},{"denom":"ASSET9","index":"0.000006281127943464"}],"last_reward_claim_height":"137"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET0","shares":"928740905.345628411401239959","reward_history":[{"denom":"ASSET0","index":"0.000003063170165442"},{"denom":"ASSET1","index":"0.000025996358951928"},{"denom":"ASSET10","index":"0.000020799618544072"},{"denom":"ASSET11","index":"0.000025846936295403"},{"denom":"ASSET12","index":"0.000024670295822131"},{"denom":"ASSET13","index":"0.000008120644896033"},{"denom":"ASSET14","index":"0.000023715222729701"},{"denom":"ASSET15","index":"0.000018725986369791"},{"denom":"ASSET16","index":"0.000011529047312284"},{"denom":"ASSET17","index":"0.000009065966880203"},{"denom":"ASSET18","index":"0.000003737409049681"},{"denom":"ASSET2","index":"0.000007876841198043"},{"denom":"ASSET3","index":"0.000002185992003768"},{"denom":"ASSET4","index":"0.000021074917159843"},{"denom":"ASSET5","index":"0.000001702800306431"},{"denom":"ASSET6","index":"0.000006871093729972"},{"denom":"ASSET7","index":"0.000010798830402478"},{"denom":"ASSET8","index":"0.000014762015379742"},{"denom":"ASSET9","index":"0.000006264517424621"}],"last_reward_claim_height":"140"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET6","shares":"585571930.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003051401969864"},{"denom":"ASSET1","index":"0.000025903543471827"},{"denom":"ASSET10","index":"0.000020717104247015"},{"denom":"ASSET11","index":"0.000025751820078700"},{"denom":"ASSET12","index":"0.000024575704795191"},{"denom":"ASSET13","index":"0.000008089460542782"},{"denom":"ASSET14","index":"0.000023629519286555"},{"denom":"ASSET15","index":"0.000018652475785738"},{"denom":"ASSET16","index":"0.000011487598582804"},{"denom":"ASSET17","index":"0.000009031027466449"},{"denom":"ASSET18","index":"0.000003724432134289"},{"denom":"ASSET2","index":"0.000007847588407204"},{"denom":"ASSET3","index":"0.000002177732310384"},{"denom":"ASSET4","index":"0.000021000151540181"},{"denom":"ASSET5","index":"0.000001696165098739"},{"denom":"ASSET6","index":"0.000006846477479182"},{"denom":"ASSET7","index":"0.000010760324594985"},{"denom":"ASSET8","index":"0.000014706911787677"},{"denom":"ASSET9","index":"0.000006241583848480"}],"last_reward_claim_height":"137"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET14","shares":"911421573.440028367363726963","reward_history":[{"denom":"ASSET0","index":"0.000004516845811362"},{"denom":"ASSET1","index":"0.000037025353808540"},{"denom":"ASSET10","index":"0.000032012148214198"},{"denom":"ASSET11","index":"0.000038422522164271"},{"denom":"ASSET12","index":"0.000036596428665624"},{"denom":"ASSET13","index":"0.000012383682813544"},{"denom":"ASSET14","index":"0.000035437222127650"},{"denom":"ASSET15","index":"0.000028732771734380"},{"denom":"ASSET16","index":"0.000016425461252955"},{"denom":"ASSET17","index":"0.000013299194272465"},{"denom":"ASSET18","index":"0.000005516977688606"},{"denom":"ASSET2","index":"0.000011180223188506"},{"denom":"ASSET3","index":"0.000003208331571332"},{"denom":"ASSET4","index":"0.000030338218844450"},{"denom":"ASSET5","index":"0.000002517968540848"},{"denom":"ASSET6","index":"0.000010275940001092"},{"denom":"ASSET7","index":"0.000015886561233229"},{"denom":"ASSET8","index":"0.000022838329393529"},{"denom":"ASSET9","index":"0.000009178105145475"}],"last_reward_claim_height":"192"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET1","shares":"41426421.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002834261839987"},{"denom":"ASSET1","index":"0.000024063735726127"},{"denom":"ASSET10","index":"0.000019278012414561"},{"denom":"ASSET11","index":"0.000023930766794440"},{"denom":"ASSET12","index":"0.000022855511266190"},{"denom":"ASSET13","index":"0.000007519422832827"},{"denom":"ASSET14","index":"0.000021953268691937"},{"denom":"ASSET15","index":"0.000017352048046781"},{"denom":"ASSET16","index":"0.000010669562284438"},{"denom":"ASSET17","index":"0.000008398158415340"},{"denom":"ASSET18","index":"0.000003456710779118"},{"denom":"ASSET2","index":"0.000007292324829772"},{"denom":"ASSET3","index":"0.000002022818722752"},{"denom":"ASSET4","index":"0.000019507505991506"},{"denom":"ASSET5","index":"0.000001575196067099"},{"denom":"ASSET6","index":"0.000006357416996111"},{"denom":"ASSET7","index":"0.000009994574317511"},{"denom":"ASSET8","index":"0.000013669954492341"},{"denom":"ASSET9","index":"0.000005799591528398"}],"last_reward_claim_height":"140"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET6","shares":"357708555.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004334424087699"},{"denom":"ASSET1","index":"0.000035449514986345"},{"denom":"ASSET10","index":"0.000030840939894549"},{"denom":"ASSET11","index":"0.000036901879937154"},{"denom":"ASSET12","index":"0.000035161495405309"},{"denom":"ASSET13","index":"0.000011915420663187"},{"denom":"ASSET14","index":"0.000034041055395553"},{"denom":"ASSET15","index":"0.000027671425756021"},{"denom":"ASSET16","index":"0.000015724762226282"},{"denom":"ASSET17","index":"0.000012767594988461"},{"denom":"ASSET18","index":"0.000005291852188377"},{"denom":"ASSET2","index":"0.000010704019540621"},{"denom":"ASSET3","index":"0.000003077805518553"},{"denom":"ASSET4","index":"0.000029066924423371"},{"denom":"ASSET5","index":"0.000002416595232373"},{"denom":"ASSET6","index":"0.000009868112756670"},{"denom":"ASSET7","index":"0.000015242288495709"},{"denom":"ASSET8","index":"0.000021994384219842"},{"denom":"ASSET9","index":"0.000008805623401411"}],"last_reward_claim_height":"186"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET10","shares":"39022697.836385022705962921","reward_history":[{"denom":"ASSET0","index":"0.000001392192847149"},{"denom":"ASSET1","index":"0.000011611450847386"},{"denom":"ASSET10","index":"0.000008088781067478"},{"denom":"ASSET11","index":"0.000011231761889073"},{"denom":"ASSET12","index":"0.000010115195100551"},{"denom":"ASSET13","index":"0.000003480482117873"},{"denom":"ASSET14","index":"0.000010492071548062"},{"denom":"ASSET15","index":"0.000007502372565194"},{"denom":"ASSET16","index":"0.000005229863836918"},{"denom":"ASSET17","index":"0.000003713920514466"},{"denom":"ASSET18","index":"0.000001769069294661"},{"denom":"ASSET2","index":"0.000003427044412629"},{"denom":"ASSET3","index":"0.000001002660101028"},{"denom":"ASSET4","index":"0.000009435973741790"},{"denom":"ASSET5","index":"0.000000777659236842"},{"denom":"ASSET6","index":"0.000003166887163415"},{"denom":"ASSET7","index":"0.000004850174878604"},{"denom":"ASSET8","index":"0.000006329555560626"},{"denom":"ASSET9","index":"0.000002733760499857"}],"last_reward_claim_height":"120"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET13","shares":"255860567.000000000000000000","reward_history":[],"last_reward_claim_height":"10"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET9","shares":"18498777.596076237527952538","reward_history":[{"denom":"ASSET0","index":"0.000002875427361068"},{"denom":"ASSET1","index":"0.000024372739255487"},{"denom":"ASSET10","index":"0.000019284464921318"},{"denom":"ASSET11","index":"0.000024174413552556"},{"denom":"ASSET12","index":"0.000022964657814992"},{"denom":"ASSET13","index":"0.000007586106071195"},{"denom":"ASSET14","index":"0.000022214775035212"},{"denom":"ASSET15","index":"0.000017399266119679"},{"denom":"ASSET16","index":"0.000010822432031544"},{"denom":"ASSET17","index":"0.000008437405253940"},{"denom":"ASSET18","index":"0.000003520101477575"},{"denom":"ASSET2","index":"0.000007366931162610"},{"denom":"ASSET3","index":"0.000002051556015935"},{"denom":"ASSET4","index":"0.000019761188522524"},{"denom":"ASSET5","index":"0.000001598363223465"},{"denom":"ASSET6","index":"0.000006458982880806"},{"denom":"ASSET7","index":"0.000010127316932433"},{"denom":"ASSET8","index":"0.000013792105044122"},{"denom":"ASSET9","index":"0.000005859963066840"}],"last_reward_claim_height":"166"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET2","shares":"183298507.000000007250125126","reward_history":[{"denom":"ASSET0","index":"0.000001468329025254"},{"denom":"ASSET1","index":"0.000012248466172689"},{"denom":"ASSET10","index":"0.000008533242661533"},{"denom":"ASSET11","index":"0.000011849890220686"},{"denom":"ASSET12","index":"0.000010670683647662"},{"denom":"ASSET13","index":"0.000003671855143322"},{"denom":"ASSET14","index":"0.000011069259599665"},{"denom":"ASSET15","index":"0.000007913694549611"},{"denom":"ASSET16","index":"0.000005518108516848"},{"denom":"ASSET17","index":"0.000003917609227717"},{"denom":"ASSET18","index":"0.000001866904977257"},{"denom":"ASSET2","index":"0.000003616095813249"},{"denom":"ASSET3","index":"0.000001057362111013"},{"denom":"ASSET4","index":"0.000009954072998206"},{"denom":"ASSET5","index":"0.000000819868668110"},{"denom":"ASSET6","index":"0.000003341429483630"},{"denom":"ASSET7","index":"0.000005117467404472"},{"denom":"ASSET8","index":"0.000006676663486141"},{"denom":"ASSET9","index":"0.000002882963880808"}],"last_reward_claim_height":"117"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET13","shares":"798413252.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001468329025254"},{"denom":"ASSET1","index":"0.000012248466172689"},{"denom":"ASSET10","index":"0.000008533242661533"},{"denom":"ASSET11","index":"0.000011849890220686"},{"denom":"ASSET12","index":"0.000010670683647662"},{"denom":"ASSET13","index":"0.000003671855143322"},{"denom":"ASSET14","index":"0.000011069259599665"},{"denom":"ASSET15","index":"0.000007913694549611"},{"denom":"ASSET16","index":"0.000005518108516848"},{"denom":"ASSET17","index":"0.000003917609227717"},{"denom":"ASSET18","index":"0.000001866904977257"},{"denom":"ASSET2","index":"0.000003616095813249"},{"denom":"ASSET3","index":"0.000001057362111013"},{"denom":"ASSET4","index":"0.000009954072998206"},{"denom":"ASSET5","index":"0.000000819868668110"},{"denom":"ASSET6","index":"0.000003341429483630"},{"denom":"ASSET7","index":"0.000005117467404472"},{"denom":"ASSET8","index":"0.000006676663486141"},{"denom":"ASSET9","index":"0.000002882963880808"}],"last_reward_claim_height":"106"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET18","shares":"877166522.829830703361963488","reward_history":[{"denom":"ASSET0","index":"0.000002995432004660"},{"denom":"ASSET1","index":"0.000025434255671185"},{"denom":"ASSET10","index":"0.000020381248485322"},{"denom":"ASSET11","index":"0.000025297016742096"},{"denom":"ASSET12","index":"0.000024161457271020"},{"denom":"ASSET13","index":"0.000007948725545453"},{"denom":"ASSET14","index":"0.000023205881885085"},{"denom":"ASSET15","index":"0.000018343715148864"},{"denom":"ASSET16","index":"0.000011277889207663"},{"denom":"ASSET17","index":"0.000008877556775335"},{"denom":"ASSET18","index":"0.000003654253802028"},{"denom":"ASSET2","index":"0.000007709102798424"},{"denom":"ASSET3","index":"0.000002137627884226"},{"denom":"ASSET4","index":"0.000020618696770430"},{"denom":"ASSET5","index":"0.000001664440090804"},{"denom":"ASSET6","index":"0.000006720260763181"},{"denom":"ASSET7","index":"0.000010565171316359"},{"denom":"ASSET8","index":"0.000014449121165534"},{"denom":"ASSET9","index":"0.000006129217088192"}],"last_reward_claim_height":"166"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET2","shares":"84116375.885633718484205372","reward_history":[{"denom":"ASSET0","index":"0.000002967027008461"},{"denom":"ASSET1","index":"0.000025180120058697"},{"denom":"ASSET10","index":"0.000020126919929476"},{"denom":"ASSET11","index":"0.000025029678796477"},{"denom":"ASSET12","index":"0.000023880507059092"},{"denom":"ASSET13","index":"0.000007862872062626"},{"denom":"ASSET14","index":"0.000022968832134984"},{"denom":"ASSET15","index":"0.000018123195207046"},{"denom":"ASSET16","index":"0.000011168095360491"},{"denom":"ASSET17","index":"0.000008775186029853"},{"denom":"ASSET18","index":"0.000003621217117579"},{"denom":"ASSET2","index":"0.000007627534970337"},{"denom":"ASSET3","index":"0.000002117298518473"},{"denom":"ASSET4","index":"0.000020413769751333"},{"denom":"ASSET5","index":"0.000001649183760435"},{"denom":"ASSET6","index":"0.000006656038319196"},{"denom":"ASSET7","index":"0.000010459966878994"},{"denom":"ASSET8","index":"0.000014293861494285"},{"denom":"ASSET9","index":"0.000006066597621916"}],"last_reward_claim_height":"165"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET5","shares":"2788698.999999991969589593","reward_history":[{"denom":"ASSET0","index":"0.000001484659776814"},{"denom":"ASSET1","index":"0.000012377911876883"},{"denom":"ASSET10","index":"0.000008623797972416"},{"denom":"ASSET11","index":"0.000011974339842928"},{"denom":"ASSET12","index":"0.000010782780641408"},{"denom":"ASSET13","index":"0.000003710691597017"},{"denom":"ASSET14","index":"0.000011185714112019"},{"denom":"ASSET15","index":"0.000007997367331102"},{"denom":"ASSET16","index":"0.000005575935127370"},{"denom":"ASSET17","index":"0.000003959731301514"},{"denom":"ASSET18","index":"0.000001886316120734"},{"denom":"ASSET2","index":"0.000003653859459324"},{"denom":"ASSET3","index":"0.000001068955039306"},{"denom":"ASSET4","index":"0.000010059288371675"},{"denom":"ASSET5","index":"0.000000829493784981"},{"denom":"ASSET6","index":"0.000003376084404307"},{"denom":"ASSET7","index":"0.000005171085966725"},{"denom":"ASSET8","index":"0.000006747698865199"},{"denom":"ASSET9","index":"0.000002914403105969"}],"last_reward_claim_height":"117"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET12","shares":"91242000.000000002189808000","reward_history":[{"denom":"ASSET0","index":"0.000001484659776814"},{"denom":"ASSET1","index":"0.000012377911876883"},{"denom":"ASSET10","index":"0.000008623797972416"},{"denom":"ASSET11","index":"0.000011974339842928"},{"denom":"ASSET12","index":"0.000010782780641408"},{"denom":"ASSET13","index":"0.000003710691597017"},{"denom":"ASSET14","index":"0.000011185714112019"},{"denom":"ASSET15","index":"0.000007997367331102"},{"denom":"ASSET16","index":"0.000005575935127370"},{"denom":"ASSET17","index":"0.000003959731301514"},{"denom":"ASSET18","index":"0.000001886316120734"},{"denom":"ASSET2","index":"0.000003653859459324"},{"denom":"ASSET3","index":"0.000001068955039306"},{"denom":"ASSET4","index":"0.000010059288371675"},{"denom":"ASSET5","index":"0.000000829493784981"},{"denom":"ASSET6","index":"0.000003376084404307"},{"denom":"ASSET7","index":"0.000005171085966725"},{"denom":"ASSET8","index":"0.000006747698865199"},{"denom":"ASSET9","index":"0.000002914403105969"}],"last_reward_claim_height":"113"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET16","shares":"272526342.350845319390459595","reward_history":[{"denom":"ASSET0","index":"0.000002967027008461"},{"denom":"ASSET1","index":"0.000025180120058697"},{"denom":"ASSET10","index":"0.000020126919929476"},{"denom":"ASSET11","index":"0.000025029678796477"},{"denom":"ASSET12","index":"0.000023880507059092"},{"denom":"ASSET13","index":"0.000007862872062626"},{"denom":"ASSET14","index":"0.000022968832134984"},{"denom":"ASSET15","index":"0.000018123195207046"},{"denom":"ASSET16","index":"0.000011168095360491"},{"denom":"ASSET17","index":"0.000008775186029853"},{"denom":"ASSET18","index":"0.000003621217117579"},{"denom":"ASSET2","index":"0.000007627534970337"},{"denom":"ASSET3","index":"0.000002117298518473"},{"denom":"ASSET4","index":"0.000020413769751333"},{"denom":"ASSET5","index":"0.000001649183760435"},{"denom":"ASSET6","index":"0.000006656038319196"},{"denom":"ASSET7","index":"0.000010459966878994"},{"denom":"ASSET8","index":"0.000014293861494285"},{"denom":"ASSET9","index":"0.000006066597621916"}],"last_reward_claim_height":"148"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET11","shares":"540807971.760356613690872640","reward_history":[{"denom":"ASSET0","index":"0.000002968383248598"},{"denom":"ASSET1","index":"0.000025185581850199"},{"denom":"ASSET10","index":"0.000020091193699906"},{"denom":"ASSET11","index":"0.000025026167595767"},{"denom":"ASSET12","index":"0.000023854952987524"},{"denom":"ASSET13","index":"0.000007859725566891"},{"denom":"ASSET14","index":"0.000022971118914045"},{"denom":"ASSET15","index":"0.000018098517255117"},{"denom":"ASSET16","index":"0.000011173004258039"},{"denom":"ASSET17","index":"0.000008766603022733"},{"denom":"ASSET18","index":"0.000003624559740525"},{"denom":"ASSET2","index":"0.000007626317523237"},{"denom":"ASSET3","index":"0.000002117313008939"},{"denom":"ASSET4","index":"0.000020418576076670"},{"denom":"ASSET5","index":"0.000001649450966157"},{"denom":"ASSET6","index":"0.000006660362585584"},{"denom":"ASSET7","index":"0.000010463779822658"},{"denom":"ASSET8","index":"0.000014287735496216"},{"denom":"ASSET9","index":"0.000006065360072421"}],"last_reward_claim_height":"162"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET3","shares":"273531996.000000000000000000","reward_history":[],"last_reward_claim_height":"7"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET7","shares":"6646269.721008921608974142","reward_history":[{"denom":"ASSET0","index":"0.000001603618851190"},{"denom":"ASSET1","index":"0.000013373450792115"},{"denom":"ASSET10","index":"0.000009317368604669"},{"denom":"ASSET11","index":"0.000012937408123124"},{"denom":"ASSET12","index":"0.000011650307554501"},{"denom":"ASSET13","index":"0.000004008493774333"},{"denom":"ASSET14","index":"0.000012085243516211"},{"denom":"ASSET15","index":"0.000008640063748266"},{"denom":"ASSET16","index":"0.000006023807734317"},{"denom":"ASSET17","index":"0.000004278530351069"},{"denom":"ASSET18","index":"0.000002037448105618"},{"denom":"ASSET2","index":"0.000003947624873839"},{"denom":"ASSET3","index":"0.000001154295694818"},{"denom":"ASSET4","index":"0.000010867865506336"},{"denom":"ASSET5","index":"0.000000896432898181"},{"denom":"ASSET6","index":"0.000003647707200497"},{"denom":"ASSET7","index":"0.000005586658358043"},{"denom":"ASSET8","index":"0.000007289880864586"},{"denom":"ASSET9","index":"0.000003148582216449"}],"last_reward_claim_height":"112"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET9","shares":"570214823.000000000000000000","reward_history":[],"last_reward_claim_height":"19"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET12","shares":"360910074.000000000000000000","reward_history":[],"last_reward_claim_height":"18"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET4","shares":"697445098.000000000000000000","reward_history":[],"last_reward_claim_height":"21"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET16","shares":"502255785.355146164073127559","reward_history":[{"denom":"ASSET0","index":"0.000001669758803356"},{"denom":"ASSET1","index":"0.000013919924903508"},{"denom":"ASSET10","index":"0.000009698114015232"},{"denom":"ASSET11","index":"0.000013466332119255"},{"denom":"ASSET12","index":"0.000012126099781115"},{"denom":"ASSET13","index":"0.000004173211661392"},{"denom":"ASSET14","index":"0.000012579297449702"},{"denom":"ASSET15","index":"0.000008994017898909"},{"denom":"ASSET16","index":"0.000006270880730729"},{"denom":"ASSET17","index":"0.000004453348668392"},{"denom":"ASSET18","index":"0.000002121376009280"},{"denom":"ASSET2","index":"0.000004109202923545"},{"denom":"ASSET3","index":"0.000001201941855137"},{"denom":"ASSET4","index":"0.000011312556625386"},{"denom":"ASSET5","index":"0.000000932868086778"},{"denom":"ASSET6","index":"0.000003797061547622"},{"denom":"ASSET7","index":"0.000005815312368147"},{"denom":"ASSET8","index":"0.000007588591475923"},{"denom":"ASSET9","index":"0.000003277484447193"}],"last_reward_claim_height":"66"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET0","shares":"1070677.537599190489807904","reward_history":[{"denom":"ASSET0","index":"0.000002933404194828"},{"denom":"ASSET1","index":"0.000024932632498194"},{"denom":"ASSET10","index":"0.000020157113753706"},{"denom":"ASSET11","index":"0.000024842878528839"},{"denom":"ASSET12","index":"0.000023817726072485"},{"denom":"ASSET13","index":"0.000007813243799971"},{"denom":"ASSET14","index":"0.000022761898108549"},{"denom":"ASSET15","index":"0.000018109267957138"},{"denom":"ASSET16","index":"0.000011043189892304"},{"denom":"ASSET17","index":"0.000008753164046701"},{"denom":"ASSET18","index":"0.000003567063844603"},{"denom":"ASSET2","index":"0.000007569762146700"},{"denom":"ASSET3","index":"0.000002091389836038"},{"denom":"ASSET4","index":"0.000020208488830330"},{"denom":"ASSET5","index":"0.000001630166870108"},{"denom":"ASSET6","index":"0.000006572642272968"},{"denom":"ASSET7","index":"0.000010351822041320"},{"denom":"ASSET8","index":"0.000014203644477234"},{"denom":"ASSET9","index":"0.000006019030096188"}],"last_reward_claim_height":"130"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET5","shares":"121902222.999999995762385175","reward_history":[{"denom":"ASSET0","index":"0.000001334597814253"},{"denom":"ASSET1","index":"0.000011126876577448"},{"denom":"ASSET10","index":"0.000007751884027943"},{"denom":"ASSET11","index":"0.000010763759508328"},{"denom":"ASSET12","index":"0.000009692944381721"},{"denom":"ASSET13","index":"0.000003335543967388"},{"denom":"ASSET14","index":"0.000010055110882597"},{"denom":"ASSET15","index":"0.000007189147627631"},{"denom":"ASSET16","index":"0.000005012346349398"},{"denom":"ASSET17","index":"0.000003559878072918"},{"denom":"ASSET18","index":"0.000001695813746885"},{"denom":"ASSET2","index":"0.000003284213282225"},{"denom":"ASSET3","index":"0.000000960549210329"},{"denom":"ASSET4","index":"0.000009042280418860"},{"denom":"ASSET5","index":"0.000000745720787237"},{"denom":"ASSET6","index":"0.000003035164402357"},{"denom":"ASSET7","index":"0.000004648278712034"},{"denom":"ASSET8","index":"0.000006065575963495"},{"denom":"ASSET9","index":"0.000002619766079830"}],"last_reward_claim_height":"67"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET9","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"54"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET11","shares":"738664738.999999970453410440","reward_history":[{"denom":"ASSET0","index":"0.000001334597814253"},{"denom":"ASSET1","index":"0.000011126876577448"},{"denom":"ASSET10","index":"0.000007751884027943"},{"denom":"ASSET11","index":"0.000010763759508328"},{"denom":"ASSET12","index":"0.000009692944381721"},{"denom":"ASSET13","index":"0.000003335543967388"},{"denom":"ASSET14","index":"0.000010055110882597"},{"denom":"ASSET15","index":"0.000007189147627631"},{"denom":"ASSET16","index":"0.000005012346349398"},{"denom":"ASSET17","index":"0.000003559878072918"},{"denom":"ASSET18","index":"0.000001695813746885"},{"denom":"ASSET2","index":"0.000003284213282225"},{"denom":"ASSET3","index":"0.000000960549210329"},{"denom":"ASSET4","index":"0.000009042280418860"},{"denom":"ASSET5","index":"0.000000745720787237"},{"denom":"ASSET6","index":"0.000003035164402357"},{"denom":"ASSET7","index":"0.000004648278712034"},{"denom":"ASSET8","index":"0.000006065575963495"},{"denom":"ASSET9","index":"0.000002619766079830"}],"last_reward_claim_height":"98"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET12","shares":"526987339.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004555136197767"},{"denom":"ASSET1","index":"0.000037240722570861"},{"denom":"ASSET10","index":"0.000032656570809308"},{"denom":"ASSET11","index":"0.000038864800037776"},{"denom":"ASSET12","index":"0.000037120446581994"},{"denom":"ASSET13","index":"0.000012565270457927"},{"denom":"ASSET14","index":"0.000035828939643615"},{"denom":"ASSET15","index":"0.000029264594603660"},{"denom":"ASSET16","index":"0.000016507901080348"},{"denom":"ASSET17","index":"0.000013476518239563"},{"denom":"ASSET18","index":"0.000005550894327170"},{"denom":"ASSET2","index":"0.000011257866577172"},{"denom":"ASSET3","index":"0.000003231771970438"},{"denom":"ASSET4","index":"0.000030542305908795"},{"denom":"ASSET5","index":"0.000002539865989892"},{"denom":"ASSET6","index":"0.000010367834016251"},{"denom":"ASSET7","index":"0.000016024625816937"},{"denom":"ASSET8","index":"0.000023202454203695"},{"denom":"ASSET9","index":"0.000009268576140116"}],"last_reward_claim_height":"200"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET13","shares":"226443889.000000000000000000","reward_history":[],"last_reward_claim_height":"23"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET16","shares":"591429280.158024009607069098","reward_history":[{"denom":"ASSET0","index":"0.000001334597814253"},{"denom":"ASSET1","index":"0.000011126876577448"},{"denom":"ASSET10","index":"0.000007751884027943"},{"denom":"ASSET11","index":"0.000010763759508328"},{"denom":"ASSET12","index":"0.000009692944381721"},{"denom":"ASSET13","index":"0.000003335543967388"},{"denom":"ASSET14","index":"0.000010055110882597"},{"denom":"ASSET15","index":"0.000007189147627631"},{"denom":"ASSET16","index":"0.000005012346349398"},{"denom":"ASSET17","index":"0.000003559878072918"},{"denom":"ASSET18","index":"0.000001695813746885"},{"denom":"ASSET2","index":"0.000003284213282225"},{"denom":"ASSET3","index":"0.000000960549210329"},{"denom":"ASSET4","index":"0.000009042280418860"},{"denom":"ASSET5","index":"0.000000745720787237"},{"denom":"ASSET6","index":"0.000003035164402357"},{"denom":"ASSET7","index":"0.000004648278712034"},{"denom":"ASSET8","index":"0.000006065575963495"},{"denom":"ASSET9","index":"0.000002619766079830"}],"last_reward_claim_height":"68"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET6","shares":"763575498.954620305111395960","reward_history":[{"denom":"ASSET0","index":"0.000003215122291080"},{"denom":"ASSET1","index":"0.000027271082473775"},{"denom":"ASSET10","index":"0.000021717714787675"},{"denom":"ASSET11","index":"0.000027088129911249"},{"denom":"ASSET12","index":"0.000025803190697535"},{"denom":"ASSET13","index":"0.000008506451165719"},{"denom":"ASSET14","index":"0.000024869823256717"},{"denom":"ASSET15","index":"0.000019571375436743"},{"denom":"ASSET16","index":"0.000012101015548893"},{"denom":"ASSET17","index":"0.000009481514658039"},{"denom":"ASSET18","index":"0.000003929002426467"},{"denom":"ASSET2","index":"0.000008255375778501"},{"denom":"ASSET3","index":"0.000002294279906946"},{"denom":"ASSET4","index":"0.000022110354928469"},{"denom":"ASSET5","index":"0.000001787716273475"},{"denom":"ASSET6","index":"0.000007215985074700"},{"denom":"ASSET7","index":"0.000011330188741735"},{"denom":"ASSET8","index":"0.000015463524362026"},{"denom":"ASSET9","index":"0.000006565858639552"}],"last_reward_claim_height":"167"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET12","shares":"125764913.999999999125764914","reward_history":[],"last_reward_claim_height":"53"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET18","shares":"667667532.999999944583594761","reward_history":[],"last_reward_claim_height":"46"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET9","shares":"113727252.000000009382602460","reward_history":[],"last_reward_claim_height":"62"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET13","shares":"602532759.616276100853519664","reward_history":[{"denom":"ASSET0","index":"0.000003159157648171"},{"denom":"ASSET1","index":"0.000026793811254639"},{"denom":"ASSET10","index":"0.000021330257270132"},{"denom":"ASSET11","index":"0.000026611245447042"},{"denom":"ASSET12","index":"0.000025345616114893"},{"denom":"ASSET13","index":"0.000008356504281369"},{"denom":"ASSET14","index":"0.000024433401122602"},{"denom":"ASSET15","index":"0.000019223209713353"},{"denom":"ASSET16","index":"0.000011890026449509"},{"denom":"ASSET17","index":"0.000009313941892173"},{"denom":"ASSET18","index":"0.000003860849124980"},{"denom":"ASSET2","index":"0.000008109777269158"},{"denom":"ASSET3","index":"0.000002255070941538"},{"denom":"ASSET4","index":"0.000021723391251034"},{"denom":"ASSET5","index":"0.000001756486235957"},{"denom":"ASSET6","index":"0.000007090574282328"},{"denom":"ASSET7","index":"0.000011132530538444"},{"denom":"ASSET8","index":"0.000015191323807650"},{"denom":"ASSET9","index":"0.000006450832118924"}],"last_reward_claim_height":"153"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET17","shares":"6602708.741099014778893240","reward_history":[{"denom":"ASSET0","index":"0.000001631513498845"},{"denom":"ASSET1","index":"0.000013601788709515"},{"denom":"ASSET10","index":"0.000009476711328689"},{"denom":"ASSET11","index":"0.000013158178840821"},{"denom":"ASSET12","index":"0.000011848922966954"},{"denom":"ASSET13","index":"0.000004077884841603"},{"denom":"ASSET14","index":"0.000012291633930140"},{"denom":"ASSET15","index":"0.000008788599161546"},{"denom":"ASSET16","index":"0.000006127389402135"},{"denom":"ASSET17","index":"0.000004351601569095"},{"denom":"ASSET18","index":"0.000002072876103766"},{"denom":"ASSET2","index":"0.000004014961455973"},{"denom":"ASSET3","index":"0.000001174420047516"},{"denom":"ASSET4","index":"0.000011053841044239"},{"denom":"ASSET5","index":"0.000000911490186131"},{"denom":"ASSET6","index":"0.000003710232488420"},{"denom":"ASSET7","index":"0.000005682431175178"},{"denom":"ASSET8","index":"0.000007415071543785"},{"denom":"ASSET9","index":"0.000003202800328586"}],"last_reward_claim_height":"83"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET5","shares":"583918716.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001649724724935"},{"denom":"ASSET1","index":"0.000013753740147655"},{"denom":"ASSET10","index":"0.000009582563441278"},{"denom":"ASSET11","index":"0.000013305204895691"},{"denom":"ASSET12","index":"0.000011981321923304"},{"denom":"ASSET13","index":"0.000004123306127916"},{"denom":"ASSET14","index":"0.000012429052627730"},{"denom":"ASSET15","index":"0.000008886629821639"},{"denom":"ASSET16","index":"0.000006195820583626"},{"denom":"ASSET17","index":"0.000004400070480698"},{"denom":"ASSET18","index":"0.000002096248608056"},{"denom":"ASSET2","index":"0.000004060149146250"},{"denom":"ASSET3","index":"0.000001187512164840"},{"denom":"ASSET4","index":"0.000011177176659918"},{"denom":"ASSET5","index":"0.000000921609203810"},{"denom":"ASSET6","index":"0.000003751605165751"},{"denom":"ASSET7","index":"0.000005746078510357"},{"denom":"ASSET8","index":"0.000007497578498742"},{"denom":"ASSET9","index":"0.000003238303837047"}],"last_reward_claim_height":"93"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET17","shares":"475490195.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001649724724935"},{"denom":"ASSET1","index":"0.000013753740147655"},{"denom":"ASSET10","index":"0.000009582563441278"},{"denom":"ASSET11","index":"0.000013305204895691"},{"denom":"ASSET12","index":"0.000011981321923304"},{"denom":"ASSET13","index":"0.000004123306127916"},{"denom":"ASSET14","index":"0.000012429052627730"},{"denom":"ASSET15","index":"0.000008886629821639"},{"denom":"ASSET16","index":"0.000006195820583626"},{"denom":"ASSET17","index":"0.000004400070480698"},{"denom":"ASSET18","index":"0.000002096248608056"},{"denom":"ASSET2","index":"0.000004060149146250"},{"denom":"ASSET3","index":"0.000001187512164840"},{"denom":"ASSET4","index":"0.000011177176659918"},{"denom":"ASSET5","index":"0.000000921609203810"},{"denom":"ASSET6","index":"0.000003751605165751"},{"denom":"ASSET7","index":"0.000005746078510357"},{"denom":"ASSET8","index":"0.000007497578498742"},{"denom":"ASSET9","index":"0.000003238303837047"}],"last_reward_claim_height":"93"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET3","shares":"565214392.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000005103265091642"},{"denom":"ASSET1","index":"0.000041786439536935"},{"denom":"ASSET10","index":"0.000036197265493130"},{"denom":"ASSET11","index":"0.000043412428791565"},{"denom":"ASSET12","index":"0.000041343531000594"},{"denom":"ASSET13","index":"0.000014002193574026"},{"denom":"ASSET14","index":"0.000040046434504736"},{"denom":"ASSET15","index":"0.000032488195777718"},{"denom":"ASSET16","index":"0.000018539048370230"},{"denom":"ASSET17","index":"0.000015019703341469"},{"denom":"ASSET18","index":"0.000006233739153526"},{"denom":"ASSET2","index":"0.000012616239659622"},{"denom":"ASSET3","index":"0.000003624393703951"},{"denom":"ASSET4","index":"0.000034249425723540"},{"denom":"ASSET5","index":"0.000002845180080004"},{"denom":"ASSET6","index":"0.000011614027747767"},{"denom":"ASSET7","index":"0.000017945293871291"},{"denom":"ASSET8","index":"0.000025831476524037"},{"denom":"ASSET9","index":"0.000010365841709202"}],"last_reward_claim_height":"191"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET12","shares":"22162081.996506946887781194","reward_history":[{"denom":"ASSET0","index":"0.000003402845442317"},{"denom":"ASSET1","index":"0.000028880571174740"},{"denom":"ASSET10","index":"0.000023090578471272"},{"denom":"ASSET11","index":"0.000028709364204549"},{"denom":"ASSET12","index":"0.000027394626213612"},{"denom":"ASSET13","index":"0.000009019217107214"},{"denom":"ASSET14","index":"0.000026344557012563"},{"denom":"ASSET15","index":"0.000020791017438004"},{"denom":"ASSET16","index":"0.000012808886991708"},{"denom":"ASSET17","index":"0.000010066951390727"},{"denom":"ASSET18","index":"0.000004153478710890"},{"denom":"ASSET2","index":"0.000008748954704305"},{"denom":"ASSET3","index":"0.000002428490976730"},{"denom":"ASSET4","index":"0.000023413646091842"},{"denom":"ASSET5","index":"0.000001891364101695"},{"denom":"ASSET6","index":"0.000007634563338572"},{"denom":"ASSET7","index":"0.000011996876612297"},{"denom":"ASSET8","index":"0.000016395615103037"},{"denom":"ASSET9","index":"0.000006958318142576"}],"last_reward_claim_height":"171"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET5","shares":"242545186.000000010671988184","reward_history":[],"last_reward_claim_height":"47"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET12","shares":"1252486448.152427876149278351","reward_history":[{"denom":"ASSET0","index":"0.000003029367235848"},{"denom":"ASSET1","index":"0.000025709657584098"},{"denom":"ASSET10","index":"0.000020551027857005"},{"denom":"ASSET11","index":"0.000025556791271547"},{"denom":"ASSET12","index":"0.000024383546484064"},{"denom":"ASSET13","index":"0.000008028643187417"},{"denom":"ASSET14","index":"0.000023452409013233"},{"denom":"ASSET15","index":"0.000018505869963369"},{"denom":"ASSET16","index":"0.000011403028825829"},{"denom":"ASSET17","index":"0.000008960765854271"},{"denom":"ASSET18","index":"0.000003697390743305"},{"denom":"ASSET2","index":"0.000007788410102575"},{"denom":"ASSET3","index":"0.000002162278160249"},{"denom":"ASSET4","index":"0.000020843149904241"},{"denom":"ASSET5","index":"0.000001683795445220"},{"denom":"ASSET6","index":"0.000006796548728457"},{"denom":"ASSET7","index":"0.000010680301627557"},{"denom":"ASSET8","index":"0.000014594997949332"},{"denom":"ASSET9","index":"0.000006193949682941"}],"last_reward_claim_height":"167"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET17","shares":"593787741.073107174560069046","reward_history":[{"denom":"ASSET0","index":"0.000003029367235848"},{"denom":"ASSET1","index":"0.000025709657584098"},{"denom":"ASSET10","index":"0.000020551027857005"},{"denom":"ASSET11","index":"0.000025556791271547"},{"denom":"ASSET12","index":"0.000024383546484064"},{"denom":"ASSET13","index":"0.000008028643187417"},{"denom":"ASSET14","index":"0.000023452409013233"},{"denom":"ASSET15","index":"0.000018505869963369"},{"denom":"ASSET16","index":"0.000011403028825829"},{"denom":"ASSET17","index":"0.000008960765854271"},{"denom":"ASSET18","index":"0.000003697390743305"},{"denom":"ASSET2","index":"0.000007788410102575"},{"denom":"ASSET3","index":"0.000002162278160249"},{"denom":"ASSET4","index":"0.000020843149904241"},{"denom":"ASSET5","index":"0.000001683795445220"},{"denom":"ASSET6","index":"0.000006796548728457"},{"denom":"ASSET7","index":"0.000010680301627557"},{"denom":"ASSET8","index":"0.000014594997949332"},{"denom":"ASSET9","index":"0.000006193949682941"}],"last_reward_claim_height":"142"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET18","shares":"516097844.499177507170636516","reward_history":[{"denom":"ASSET0","index":"0.000003029367235848"},{"denom":"ASSET1","index":"0.000025709657584098"},{"denom":"ASSET10","index":"0.000020551027857005"},{"denom":"ASSET11","index":"0.000025556791271547"},{"denom":"ASSET12","index":"0.000024383546484064"},{"denom":"ASSET13","index":"0.000008028643187417"},{"denom":"ASSET14","index":"0.000023452409013233"},{"denom":"ASSET15","index":"0.000018505869963369"},{"denom":"ASSET16","index":"0.000011403028825829"},{"denom":"ASSET17","index":"0.000008960765854271"},{"denom":"ASSET18","index":"0.000003697390743305"},{"denom":"ASSET2","index":"0.000007788410102575"},{"denom":"ASSET3","index":"0.000002162278160249"},{"denom":"ASSET4","index":"0.000020843149904241"},{"denom":"ASSET5","index":"0.000001683795445220"},{"denom":"ASSET6","index":"0.000006796548728457"},{"denom":"ASSET7","index":"0.000010680301627557"},{"denom":"ASSET8","index":"0.000014594997949332"},{"denom":"ASSET9","index":"0.000006193949682941"}],"last_reward_claim_height":"176"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET7","shares":"48430498.000000000000000000","reward_history":[],"last_reward_claim_height":"43"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET13","shares":"216577657.999999999581261755","reward_history":[],"last_reward_claim_height":"23"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET2","shares":"456657553.999999986959781296","reward_history":[{"denom":"ASSET0","index":"0.000001428935211366"},{"denom":"ASSET1","index":"0.000011914564237659"},{"denom":"ASSET10","index":"0.000008301159777028"},{"denom":"ASSET11","index":"0.000011525978642480"},{"denom":"ASSET12","index":"0.000010379209562159"},{"denom":"ASSET13","index":"0.000003571896453874"},{"denom":"ASSET14","index":"0.000010767353582799"},{"denom":"ASSET15","index":"0.000007698410529959"},{"denom":"ASSET16","index":"0.000005367338533420"},{"denom":"ASSET17","index":"0.000003811671429081"},{"denom":"ASSET18","index":"0.000001815754508385"},{"denom":"ASSET2","index":"0.000003517141210917"},{"denom":"ASSET3","index":"0.000001028868678146"},{"denom":"ASSET4","index":"0.000009682846512616"},{"denom":"ASSET5","index":"0.000000798366768278"},{"denom":"ASSET6","index":"0.000003249988614231"},{"denom":"ASSET7","index":"0.000004977428214621"},{"denom":"ASSET8","index":"0.000006495119908522"},{"denom":"ASSET9","index":"0.000002805323052474"}],"last_reward_claim_height":"119"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET6","shares":"573932591.979782499969168870","reward_history":[{"denom":"ASSET0","index":"0.000003075918064869"},{"denom":"ASSET1","index":"0.000026136551234120"},{"denom":"ASSET10","index":"0.000021080163895542"},{"denom":"ASSET11","index":"0.000026029570124972"},{"denom":"ASSET12","index":"0.000024929671095533"},{"denom":"ASSET13","index":"0.000008184754658215"},{"denom":"ASSET14","index":"0.000023857159923959"},{"denom":"ASSET15","index":"0.000018947606922173"},{"denom":"ASSET16","index":"0.000011579925359638"},{"denom":"ASSET17","index":"0.000009161388302193"},{"denom":"ASSET18","index":"0.000003743573486430"},{"denom":"ASSET2","index":"0.000007931762150876"},{"denom":"ASSET3","index":"0.000002193704696765"},{"denom":"ASSET4","index":"0.000021185602196482"},{"denom":"ASSET5","index":"0.000001709259314500"},{"denom":"ASSET6","index":"0.000006893942979866"},{"denom":"ASSET7","index":"0.000010853088527538"},{"denom":"ASSET8","index":"0.000014878712124324"},{"denom":"ASSET9","index":"0.000006307130542486"}],"last_reward_claim_height":"163"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET9","shares":"808744214.999999724218222685","reward_history":[{"denom":"ASSET0","index":"0.000003075918064869"},{"denom":"ASSET1","index":"0.000026136551234120"},{"denom":"ASSET10","index":"0.000021080163895542"},{"denom":"ASSET11","index":"0.000026029570124972"},{"denom":"ASSET12","index":"0.000024929671095533"},{"denom":"ASSET13","index":"0.000008184754658215"},{"denom":"ASSET14","index":"0.000023857159923959"},{"denom":"ASSET15","index":"0.000018947606922173"},{"denom":"ASSET16","index":"0.000011579925359638"},{"denom":"ASSET17","index":"0.000009161388302193"},{"denom":"ASSET18","index":"0.000003743573486430"},{"denom":"ASSET2","index":"0.000007931762150876"},{"denom":"ASSET3","index":"0.000002193704696765"},{"denom":"ASSET4","index":"0.000021185602196482"},{"denom":"ASSET5","index":"0.000001709259314500"},{"denom":"ASSET6","index":"0.000006893942979866"},{"denom":"ASSET7","index":"0.000010853088527538"},{"denom":"ASSET8","index":"0.000014878712124324"},{"denom":"ASSET9","index":"0.000006307130542486"}],"last_reward_claim_height":"169"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET11","shares":"479590774.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001428935211366"},{"denom":"ASSET1","index":"0.000011914564237659"},{"denom":"ASSET10","index":"0.000008301159777028"},{"denom":"ASSET11","index":"0.000011525978642480"},{"denom":"ASSET12","index":"0.000010379209562159"},{"denom":"ASSET13","index":"0.000003571896453874"},{"denom":"ASSET14","index":"0.000010767353582799"},{"denom":"ASSET15","index":"0.000007698410529959"},{"denom":"ASSET16","index":"0.000005367338533420"},{"denom":"ASSET17","index":"0.000003811671429081"},{"denom":"ASSET18","index":"0.000001815754508385"},{"denom":"ASSET2","index":"0.000003517141210917"},{"denom":"ASSET3","index":"0.000001028868678146"},{"denom":"ASSET4","index":"0.000009682846512616"},{"denom":"ASSET5","index":"0.000000798366768278"},{"denom":"ASSET6","index":"0.000003249988614231"},{"denom":"ASSET7","index":"0.000004977428214621"},{"denom":"ASSET8","index":"0.000006495119908522"},{"denom":"ASSET9","index":"0.000002805323052474"}],"last_reward_claim_height":"105"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET18","shares":"533398066.000000001391913240","reward_history":[{"denom":"ASSET0","index":"0.000003075918064869"},{"denom":"ASSET1","index":"0.000026136551234120"},{"denom":"ASSET10","index":"0.000021080163895542"},{"denom":"ASSET11","index":"0.000026029570124972"},{"denom":"ASSET12","index":"0.000024929671095533"},{"denom":"ASSET13","index":"0.000008184754658215"},{"denom":"ASSET14","index":"0.000023857159923959"},{"denom":"ASSET15","index":"0.000018947606922173"},{"denom":"ASSET16","index":"0.000011579925359638"},{"denom":"ASSET17","index":"0.000009161388302193"},{"denom":"ASSET18","index":"0.000003743573486430"},{"denom":"ASSET2","index":"0.000007931762150876"},{"denom":"ASSET3","index":"0.000002193704696765"},{"denom":"ASSET4","index":"0.000021185602196482"},{"denom":"ASSET5","index":"0.000001709259314500"},{"denom":"ASSET6","index":"0.000006893942979866"},{"denom":"ASSET7","index":"0.000010853088527538"},{"denom":"ASSET8","index":"0.000014878712124324"},{"denom":"ASSET9","index":"0.000006307130542486"}],"last_reward_claim_height":"147"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET2","shares":"461386656.404484658565849521","reward_history":[{"denom":"ASSET0","index":"0.000004795768020357"},{"denom":"ASSET1","index":"0.000039235640540163"},{"denom":"ASSET10","index":"0.000034090813500731"},{"denom":"ASSET11","index":"0.000040819172716073"},{"denom":"ASSET12","index":"0.000038887343100883"},{"denom":"ASSET13","index":"0.000013175362444583"},{"denom":"ASSET14","index":"0.000037654186330986"},{"denom":"ASSET15","index":"0.000030589194135662"},{"denom":"ASSET16","index":"0.000017405797263851"},{"denom":"ASSET17","index":"0.000014123771157348"},{"denom":"ASSET18","index":"0.000005856171184647"},{"denom":"ASSET2","index":"0.000011847674447736"},{"denom":"ASSET3","index":"0.000003405135950666"},{"denom":"ASSET4","index":"0.000032167283890779"},{"denom":"ASSET5","index":"0.000002674112194983"},{"denom":"ASSET6","index":"0.000010916704748385"},{"denom":"ASSET7","index":"0.000016864134756441"},{"denom":"ASSET8","index":"0.000024315764197247"},{"denom":"ASSET9","index":"0.000009742334443531"}],"last_reward_claim_height":"190"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET4","shares":"206218231.589726624783202408","reward_history":[{"denom":"ASSET0","index":"0.000001556917620519"},{"denom":"ASSET1","index":"0.000012983455297040"},{"denom":"ASSET10","index":"0.000009045452282177"},{"denom":"ASSET11","index":"0.000012560119972943"},{"denom":"ASSET12","index":"0.000011310507230547"},{"denom":"ASSET13","index":"0.000003892294051298"},{"denom":"ASSET14","index":"0.000011733139339821"},{"denom":"ASSET15","index":"0.000008388649636483"},{"denom":"ASSET16","index":"0.000005848637691896"},{"denom":"ASSET17","index":"0.000004153889965857"},{"denom":"ASSET18","index":"0.000001978846514969"},{"denom":"ASSET2","index":"0.000003832520791251"},{"denom":"ASSET3","index":"0.000001120924429588"},{"denom":"ASSET4","index":"0.000010551035220538"},{"denom":"ASSET5","index":"0.000000869876737390"},{"denom":"ASSET6","index":"0.000003541389854081"},{"denom":"ASSET7","index":"0.000005423895938150"},{"denom":"ASSET8","index":"0.000007077857204393"},{"denom":"ASSET9","index":"0.000003056874840288"}],"last_reward_claim_height":"82"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET5","shares":"304611748.999999985074024299","reward_history":[],"last_reward_claim_height":"37"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET10","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003155948059833"},{"denom":"ASSET1","index":"0.000026789841893667"},{"denom":"ASSET10","index":"0.000021451154188244"},{"denom":"ASSET11","index":"0.000026640130662201"},{"denom":"ASSET12","index":"0.000025435769508540"},{"denom":"ASSET13","index":"0.000008370086775831"},{"denom":"ASSET14","index":"0.000024440800445484"},{"denom":"ASSET15","index":"0.000019309084443140"},{"denom":"ASSET16","index":"0.000011879786354964"},{"denom":"ASSET17","index":"0.000009347672781307"},{"denom":"ASSET18","index":"0.000003850232310781"},{"denom":"ASSET2","index":"0.000008118311447694"},{"denom":"ASSET3","index":"0.000002251791235916"},{"denom":"ASSET4","index":"0.000021717604836949"},{"denom":"ASSET5","index":"0.000001754185821919"},{"denom":"ASSET6","index":"0.000007079049104243"},{"denom":"ASSET7","index":"0.000011127710678967"},{"denom":"ASSET8","index":"0.000015216376583965"},{"denom":"ASSET9","index":"0.000006456241851980"}],"last_reward_claim_height":"124"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET15","shares":"1060748249.577745727293462054","reward_history":[{"denom":"ASSET0","index":"0.000003155948059833"},{"denom":"ASSET1","index":"0.000026789841893667"},{"denom":"ASSET10","index":"0.000021451154188244"},{"denom":"ASSET11","index":"0.000026640130662201"},{"denom":"ASSET12","index":"0.000025435769508540"},{"denom":"ASSET13","index":"0.000008370086775831"},{"denom":"ASSET14","index":"0.000024440800445484"},{"denom":"ASSET15","index":"0.000019309084443140"},{"denom":"ASSET16","index":"0.000011879786354964"},{"denom":"ASSET17","index":"0.000009347672781307"},{"denom":"ASSET18","index":"0.000003850232310781"},{"denom":"ASSET2","index":"0.000008118311447694"},{"denom":"ASSET3","index":"0.000002251791235916"},{"denom":"ASSET4","index":"0.000021717604836949"},{"denom":"ASSET5","index":"0.000001754185821919"},{"denom":"ASSET6","index":"0.000007079049104243"},{"denom":"ASSET7","index":"0.000011127710678967"},{"denom":"ASSET8","index":"0.000015216376583965"},{"denom":"ASSET9","index":"0.000006456241851980"}],"last_reward_claim_height":"127"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET4","shares":"42950266.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003300821213878"},{"denom":"ASSET1","index":"0.000028019420341436"},{"denom":"ASSET10","index":"0.000022435320069293"},{"denom":"ASSET11","index":"0.000027862926397945"},{"denom":"ASSET12","index":"0.000026603097941410"},{"denom":"ASSET13","index":"0.000008754572034100"},{"denom":"ASSET14","index":"0.000025562969906661"},{"denom":"ASSET15","index":"0.000020195785636702"},{"denom":"ASSET16","index":"0.000012425527462944"},{"denom":"ASSET17","index":"0.000009776022796414"},{"denom":"ASSET18","index":"0.000004027118689751"},{"denom":"ASSET2","index":"0.000008490998812362"},{"denom":"ASSET3","index":"0.000002354733406852"},{"denom":"ASSET4","index":"0.000022715681634045"},{"denom":"ASSET5","index":"0.000001835160700580"},{"denom":"ASSET6","index":"0.000007403741836767"},{"denom":"ASSET7","index":"0.000011639103500846"},{"denom":"ASSET8","index":"0.000015914079386056"},{"denom":"ASSET9","index":"0.000006752470475547"}],"last_reward_claim_height":"161"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET5","shares":"847480606.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001629017625409"},{"denom":"ASSET1","index":"0.000013583500814952"},{"denom":"ASSET10","index":"0.000009463617777698"},{"denom":"ASSET11","index":"0.000013140742178302"},{"denom":"ASSET12","index":"0.000011833351109704"},{"denom":"ASSET13","index":"0.000004072544063523"},{"denom":"ASSET14","index":"0.000012276109746354"},{"denom":"ASSET15","index":"0.000008777202658616"},{"denom":"ASSET16","index":"0.000006119258515961"},{"denom":"ASSET17","index":"0.000004345439323848"},{"denom":"ASSET18","index":"0.000002070383939302"},{"denom":"ASSET2","index":"0.000004009889539469"},{"denom":"ASSET3","index":"0.000001172335761192"},{"denom":"ASSET4","index":"0.000011039727138351"},{"denom":"ASSET5","index":"0.000000910579082921"},{"denom":"ASSET6","index":"0.000003704970855739"},{"denom":"ASSET7","index":"0.000005675107556554"},{"denom":"ASSET8","index":"0.000007404372420450"},{"denom":"ASSET9","index":"0.000003198165372278"}],"last_reward_claim_height":"111"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET6","shares":"1367223451.785588800048495620","reward_history":[{"denom":"ASSET0","index":"0.000001629017625409"},{"denom":"ASSET1","index":"0.000013583500814952"},{"denom":"ASSET10","index":"0.000009463617777698"},{"denom":"ASSET11","index":"0.000013140742178302"},{"denom":"ASSET12","index":"0.000011833351109704"},{"denom":"ASSET13","index":"0.000004072544063523"},{"denom":"ASSET14","index":"0.000012276109746354"},{"denom":"ASSET15","index":"0.000008777202658616"},{"denom":"ASSET16","index":"0.000006119258515961"},{"denom":"ASSET17","index":"0.000004345439323848"},{"denom":"ASSET18","index":"0.000002070383939302"},{"denom":"ASSET2","index":"0.000004009889539469"},{"denom":"ASSET3","index":"0.000001172335761192"},{"denom":"ASSET4","index":"0.000011039727138351"},{"denom":"ASSET5","index":"0.000000910579082921"},{"denom":"ASSET6","index":"0.000003704970855739"},{"denom":"ASSET7","index":"0.000005675107556554"},{"denom":"ASSET8","index":"0.000007404372420450"},{"denom":"ASSET9","index":"0.000003198165372278"}],"last_reward_claim_height":"120"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET0","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001599876133405"},{"denom":"ASSET1","index":"0.000013345434681176"},{"denom":"ASSET10","index":"0.000009297530322905"},{"denom":"ASSET11","index":"0.000012909953167223"},{"denom":"ASSET12","index":"0.000011625282701060"},{"denom":"ASSET13","index":"0.000004000208763886"},{"denom":"ASSET14","index":"0.000012059727354266"},{"denom":"ASSET15","index":"0.000008622533976277"},{"denom":"ASSET16","index":"0.000006011718614052"},{"denom":"ASSET17","index":"0.000004268755697491"},{"denom":"ASSET18","index":"0.000002033283925863"},{"denom":"ASSET2","index":"0.000003939033979783"},{"denom":"ASSET3","index":"0.000001151952290481"},{"denom":"ASSET4","index":"0.000010845563418934"},{"denom":"ASSET5","index":"0.000000893773964352"},{"denom":"ASSET6","index":"0.000003640418084501"},{"denom":"ASSET7","index":"0.000005575200239351"},{"denom":"ASSET8","index":"0.000007274615004517"},{"denom":"ASSET9","index":"0.000003141688064949"}],"last_reward_claim_height":"65"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET5","shares":"1220077.854919555102548911","reward_history":[{"denom":"ASSET0","index":"0.000003205518103121"},{"denom":"ASSET1","index":"0.000027209804037075"},{"denom":"ASSET10","index":"0.000021755111918776"},{"denom":"ASSET11","index":"0.000027048910570117"},{"denom":"ASSET12","index":"0.000025809934262776"},{"denom":"ASSET13","index":"0.000008496852467218"},{"denom":"ASSET14","index":"0.000024820667393427"},{"denom":"ASSET15","index":"0.000019589132093549"},{"denom":"ASSET16","index":"0.000012068310128279"},{"denom":"ASSET17","index":"0.000009484236214143"},{"denom":"ASSET18","index":"0.000003912244660385"},{"denom":"ASSET2","index":"0.000008242746790311"},{"denom":"ASSET3","index":"0.000002287536756020"},{"denom":"ASSET4","index":"0.000022059248469095"},{"denom":"ASSET5","index":"0.000001781848402938"},{"denom":"ASSET6","index":"0.000007192715838846"},{"denom":"ASSET7","index":"0.000011303047666497"},{"denom":"ASSET8","index":"0.000015447099928639"},{"denom":"ASSET9","index":"0.000006555210966575"}],"last_reward_claim_height":"123"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET6","shares":"485560416.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003205518103121"},{"denom":"ASSET1","index":"0.000027209804037075"},{"denom":"ASSET10","index":"0.000021755111918776"},{"denom":"ASSET11","index":"0.000027048910570117"},{"denom":"ASSET12","index":"0.000025809934262776"},{"denom":"ASSET13","index":"0.000008496852467218"},{"denom":"ASSET14","index":"0.000024820667393427"},{"denom":"ASSET15","index":"0.000019589132093549"},{"denom":"ASSET16","index":"0.000012068310128279"},{"denom":"ASSET17","index":"0.000009484236214143"},{"denom":"ASSET18","index":"0.000003912244660385"},{"denom":"ASSET2","index":"0.000008242746790311"},{"denom":"ASSET3","index":"0.000002287536756020"},{"denom":"ASSET4","index":"0.000022059248469095"},{"denom":"ASSET5","index":"0.000001781848402938"},{"denom":"ASSET6","index":"0.000007192715838846"},{"denom":"ASSET7","index":"0.000011303047666497"},{"denom":"ASSET8","index":"0.000015447099928639"},{"denom":"ASSET9","index":"0.000006555210966575"}],"last_reward_claim_height":"159"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET10","shares":"933134553.818953513064694652","reward_history":[{"denom":"ASSET0","index":"0.000001599876133405"},{"denom":"ASSET1","index":"0.000013345434681176"},{"denom":"ASSET10","index":"0.000009297530322905"},{"denom":"ASSET11","index":"0.000012909953167223"},{"denom":"ASSET12","index":"0.000011625282701060"},{"denom":"ASSET13","index":"0.000004000208763886"},{"denom":"ASSET14","index":"0.000012059727354266"},{"denom":"ASSET15","index":"0.000008622533976277"},{"denom":"ASSET16","index":"0.000006011718614052"},{"denom":"ASSET17","index":"0.000004268755697491"},{"denom":"ASSET18","index":"0.000002033283925863"},{"denom":"ASSET2","index":"0.000003939033979783"},{"denom":"ASSET3","index":"0.000001151952290481"},{"denom":"ASSET4","index":"0.000010845563418934"},{"denom":"ASSET5","index":"0.000000893773964352"},{"denom":"ASSET6","index":"0.000003640418084501"},{"denom":"ASSET7","index":"0.000005575200239351"},{"denom":"ASSET8","index":"0.000007274615004517"},{"denom":"ASSET9","index":"0.000003141688064949"}],"last_reward_claim_height":"87"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET15","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003205518103121"},{"denom":"ASSET1","index":"0.000027209804037075"},{"denom":"ASSET10","index":"0.000021755111918776"},{"denom":"ASSET11","index":"0.000027048910570117"},{"denom":"ASSET12","index":"0.000025809934262776"},{"denom":"ASSET13","index":"0.000008496852467218"},{"denom":"ASSET14","index":"0.000024820667393427"},{"denom":"ASSET15","index":"0.000019589132093549"},{"denom":"ASSET16","index":"0.000012068310128279"},{"denom":"ASSET17","index":"0.000009484236214143"},{"denom":"ASSET18","index":"0.000003912244660385"},{"denom":"ASSET2","index":"0.000008242746790311"},{"denom":"ASSET3","index":"0.000002287536756020"},{"denom":"ASSET4","index":"0.000022059248469095"},{"denom":"ASSET5","index":"0.000001781848402938"},{"denom":"ASSET6","index":"0.000007192715838846"},{"denom":"ASSET7","index":"0.000011303047666497"},{"denom":"ASSET8","index":"0.000015447099928639"},{"denom":"ASSET9","index":"0.000006555210966575"}],"last_reward_claim_height":"149"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET5","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"8"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET8","shares":"1000053538.016397554000000000","reward_history":[{"denom":"ASSET0","index":"0.000003374964488748"},{"denom":"ASSET1","index":"0.000028642371697541"},{"denom":"ASSET10","index":"0.000022886358038922"},{"denom":"ASSET11","index":"0.000028469467846578"},{"denom":"ASSET12","index":"0.000027158021136678"},{"denom":"ASSET13","index":"0.000008943216545101"},{"denom":"ASSET14","index":"0.000026126056006670"},{"denom":"ASSET15","index":"0.000020609372613995"},{"denom":"ASSET16","index":"0.000012704733728960"},{"denom":"ASSET17","index":"0.000009980025667275"},{"denom":"ASSET18","index":"0.000004119620826099"},{"denom":"ASSET2","index":"0.000008675935346246"},{"denom":"ASSET3","index":"0.000002408702445844"},{"denom":"ASSET4","index":"0.000023220763838917"},{"denom":"ASSET5","index":"0.000001876440105393"},{"denom":"ASSET6","index":"0.000007572949563502"},{"denom":"ASSET7","index":"0.000011897934490553"},{"denom":"ASSET8","index":"0.000016258236310419"},{"denom":"ASSET9","index":"0.000006900426530312"}],"last_reward_claim_height":"170"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET9","shares":"764883401.524252499431571867","reward_history":[{"denom":"ASSET0","index":"0.000001693699328345"},{"denom":"ASSET1","index":"0.000014121235265065"},{"denom":"ASSET10","index":"0.000009838380374958"},{"denom":"ASSET11","index":"0.000013660499756586"},{"denom":"ASSET12","index":"0.000012301569616423"},{"denom":"ASSET13","index":"0.000004233563721295"},{"denom":"ASSET14","index":"0.000012760935925768"},{"denom":"ASSET15","index":"0.000009123658427184"},{"denom":"ASSET16","index":"0.000006361299175013"},{"denom":"ASSET17","index":"0.000004517672541531"},{"denom":"ASSET18","index":"0.000002151696438556"},{"denom":"ASSET2","index":"0.000004168526762446"},{"denom":"ASSET3","index":"0.000001219271828530"},{"denom":"ASSET4","index":"0.000011475942538822"},{"denom":"ASSET5","index":"0.000000946116601363"},{"denom":"ASSET6","index":"0.000003852241762569"},{"denom":"ASSET7","index":"0.000005899194467400"},{"denom":"ASSET8","index":"0.000007698322129037"},{"denom":"ASSET9","index":"0.000003325100096108"}],"last_reward_claim_height":"110"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET11","shares":"814670036.000000026884111188","reward_history":[{"denom":"ASSET0","index":"0.000003374964488748"},{"denom":"ASSET1","index":"0.000028642371697541"},{"denom":"ASSET10","index":"0.000022886358038922"},{"denom":"ASSET11","index":"0.000028469467846578"},{"denom":"ASSET12","index":"0.000027158021136678"},{"denom":"ASSET13","index":"0.000008943216545101"},{"denom":"ASSET14","index":"0.000026126056006670"},{"denom":"ASSET15","index":"0.000020609372613995"},{"denom":"ASSET16","index":"0.000012704733728960"},{"denom":"ASSET17","index":"0.000009980025667275"},{"denom":"ASSET18","index":"0.000004119620826099"},{"denom":"ASSET2","index":"0.000008675935346246"},{"denom":"ASSET3","index":"0.000002408702445844"},{"denom":"ASSET4","index":"0.000023220763838917"},{"denom":"ASSET5","index":"0.000001876440105393"},{"denom":"ASSET6","index":"0.000007572949563502"},{"denom":"ASSET7","index":"0.000011897934490553"},{"denom":"ASSET8","index":"0.000016258236310419"},{"denom":"ASSET9","index":"0.000006900426530312"}],"last_reward_claim_height":"158"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET17","shares":"836859429.476574104756648584","reward_history":[{"denom":"ASSET0","index":"0.000005011502465784"},{"denom":"ASSET1","index":"0.000041062504292010"},{"denom":"ASSET10","index":"0.000035499667721994"},{"denom":"ASSET11","index":"0.000042618778374096"},{"denom":"ASSET12","index":"0.000040581702631690"},{"denom":"ASSET13","index":"0.000013738625153388"},{"denom":"ASSET14","index":"0.000039311910991656"},{"denom":"ASSET15","index":"0.000031866190350994"},{"denom":"ASSET16","index":"0.000018219089143418"},{"denom":"ASSET17","index":"0.000014746275469735"},{"denom":"ASSET18","index":"0.000006121555088654"},{"denom":"ASSET2","index":"0.000012397631677469"},{"denom":"ASSET3","index":"0.000003559564063326"},{"denom":"ASSET4","index":"0.000033648681772773"},{"denom":"ASSET5","index":"0.000002794335013820"},{"denom":"ASSET6","index":"0.000011402472728772"},{"denom":"ASSET7","index":"0.000017622476297013"},{"denom":"ASSET8","index":"0.000025338774425022"},{"denom":"ASSET9","index":"0.000010179577235599"}],"last_reward_claim_height":"187"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET15","shares":"326515141.593077830430181948","reward_history":[{"denom":"ASSET0","index":"0.000003138779820137"},{"denom":"ASSET1","index":"0.000026638851971456"},{"denom":"ASSET10","index":"0.000021228354320839"},{"denom":"ASSET11","index":"0.000026463611656062"},{"denom":"ASSET12","index":"0.000025215335343685"},{"denom":"ASSET13","index":"0.000008309803474369"},{"denom":"ASSET14","index":"0.000024294710395367"},{"denom":"ASSET15","index":"0.000019126240972581"},{"denom":"ASSET16","index":"0.000011819368577720"},{"denom":"ASSET17","index":"0.000009266335892783"},{"denom":"ASSET18","index":"0.000003836527514127"},{"denom":"ASSET2","index":"0.000008063422586049"},{"denom":"ASSET3","index":"0.000002240662109326"},{"denom":"ASSET4","index":"0.000021597223596640"},{"denom":"ASSET5","index":"0.000001744975814867"},{"denom":"ASSET6","index":"0.000007047692266012"},{"denom":"ASSET7","index":"0.000011067413421526"},{"denom":"ASSET8","index":"0.000015106336478322"},{"denom":"ASSET9","index":"0.000006414890297355"}],"last_reward_claim_height":"132"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET5","shares":"87705564.921648981610293260","reward_history":[{"denom":"ASSET0","index":"0.000003135138573804"},{"denom":"ASSET1","index":"0.000026601246250396"},{"denom":"ASSET10","index":"0.000021147351718785"},{"denom":"ASSET11","index":"0.000026411423528042"},{"denom":"ASSET12","index":"0.000025139747174388"},{"denom":"ASSET13","index":"0.000008292603180789"},{"denom":"ASSET14","index":"0.000024256405788980"},{"denom":"ASSET15","index":"0.000019064302195638"},{"denom":"ASSET16","index":"0.000011804656377100"},{"denom":"ASSET17","index":"0.000009238224400983"},{"denom":"ASSET18","index":"0.000003834531376561"},{"denom":"ASSET2","index":"0.000008049169006780"},{"denom":"ASSET3","index":"0.000002239375819558"},{"denom":"ASSET4","index":"0.000021568278304468"},{"denom":"ASSET5","index":"0.000001743998311515"},{"denom":"ASSET6","index":"0.000007041675703373"},{"denom":"ASSET7","index":"0.000011051161098588"},{"denom":"ASSET8","index":"0.000015073103234225"},{"denom":"ASSET9","index":"0.000006402150772125"}],"last_reward_claim_height":"143"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET11","shares":"219430153.159531108999714391","reward_history":[{"denom":"ASSET0","index":"0.000001636130781121"},{"denom":"ASSET1","index":"0.000013651986161797"},{"denom":"ASSET10","index":"0.000009511743354655"},{"denom":"ASSET11","index":"0.000013205516575762"},{"denom":"ASSET12","index":"0.000011891065744828"},{"denom":"ASSET13","index":"0.000004093100055822"},{"denom":"ASSET14","index":"0.000012337535330862"},{"denom":"ASSET15","index":"0.000008821240702961"},{"denom":"ASSET16","index":"0.000006147969392790"},{"denom":"ASSET17","index":"0.000004367637254688"},{"denom":"ASSET18","index":"0.000002079827264137"},{"denom":"ASSET2","index":"0.000004029318686389"},{"denom":"ASSET3","index":"0.000001178568783011"},{"denom":"ASSET4","index":"0.000011095185178418"},{"denom":"ASSET5","index":"0.000000915123996220"},{"denom":"ASSET6","index":"0.000003724277354315"},{"denom":"ASSET7","index":"0.000005701499806755"},{"denom":"ASSET8","index":"0.000007440235399574"},{"denom":"ASSET9","index":"0.000003214026398847"}],"last_reward_claim_height":"110"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET17","shares":"964132197.230172184367547549","reward_history":[{"denom":"ASSET0","index":"0.000001636130781121"},{"denom":"ASSET1","index":"0.000013651986161797"},{"denom":"ASSET10","index":"0.000009511743354655"},{"denom":"ASSET11","index":"0.000013205516575762"},{"denom":"ASSET12","index":"0.000011891065744828"},{"denom":"ASSET13","index":"0.000004093100055822"},{"denom":"ASSET14","index":"0.000012337535330862"},{"denom":"ASSET15","index":"0.000008821240702961"},{"denom":"ASSET16","index":"0.000006147969392790"},{"denom":"ASSET17","index":"0.000004367637254688"},{"denom":"ASSET18","index":"0.000002079827264137"},{"denom":"ASSET2","index":"0.000004029318686389"},{"denom":"ASSET3","index":"0.000001178568783011"},{"denom":"ASSET4","index":"0.000011095185178418"},{"denom":"ASSET5","index":"0.000000915123996220"},{"denom":"ASSET6","index":"0.000003724277354315"},{"denom":"ASSET7","index":"0.000005701499806755"},{"denom":"ASSET8","index":"0.000007440235399574"},{"denom":"ASSET9","index":"0.000003214026398847"}],"last_reward_claim_height":"110"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET2","shares":"700510543.999999981086215312","reward_history":[{"denom":"ASSET0","index":"0.000001682560247115"},{"denom":"ASSET1","index":"0.000014026482890055"},{"denom":"ASSET10","index":"0.000009772411969975"},{"denom":"ASSET11","index":"0.000013568579422963"},{"denom":"ASSET12","index":"0.000012218368466479"},{"denom":"ASSET13","index":"0.000004205057792371"},{"denom":"ASSET14","index":"0.000012675600520863"},{"denom":"ASSET15","index":"0.000009062728737253"},{"denom":"ASSET16","index":"0.000006318664998244"},{"denom":"ASSET17","index":"0.000004487051129876"},{"denom":"ASSET18","index":"0.000002137778063373"},{"denom":"ASSET2","index":"0.000004140602172369"},{"denom":"ASSET3","index":"0.000001211228525856"},{"denom":"ASSET4","index":"0.000011398573549589"},{"denom":"ASSET5","index":"0.000000939977791684"},{"denom":"ASSET6","index":"0.000003825709612155"},{"denom":"ASSET7","index":"0.000005859418705735"},{"denom":"ASSET8","index":"0.000007646047922643"},{"denom":"ASSET9","index":"0.000003302679112354"}],"last_reward_claim_height":"110"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET6","shares":"426100562.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003237426875283"},{"denom":"ASSET1","index":"0.000027451710154634"},{"denom":"ASSET10","index":"0.000021835512998164"},{"denom":"ASSET11","index":"0.000027259736654219"},{"denom":"ASSET12","index":"0.000025953768913429"},{"denom":"ASSET13","index":"0.000008559484494503"},{"denom":"ASSET14","index":"0.000025032165857410"},{"denom":"ASSET15","index":"0.000019681806512765"},{"denom":"ASSET16","index":"0.000012183244440341"},{"denom":"ASSET17","index":"0.000009537367134186"},{"denom":"ASSET18","index":"0.000003957397976948"},{"denom":"ASSET2","index":"0.000008307936552813"},{"denom":"ASSET3","index":"0.000002310954839376"},{"denom":"ASSET4","index":"0.000022256988295109"},{"denom":"ASSET5","index":"0.000001799896462688"},{"denom":"ASSET6","index":"0.000007265619632425"},{"denom":"ASSET7","index":"0.000011405823532836"},{"denom":"ASSET8","index":"0.000015559935461923"},{"denom":"ASSET9","index":"0.000006608212131764"}],"last_reward_claim_height":"163"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET3","shares":"284789631.015002287506859872","reward_history":[{"denom":"ASSET0","index":"0.000003150995592381"},{"denom":"ASSET1","index":"0.000026735906318713"},{"denom":"ASSET10","index":"0.000021370928366269"},{"denom":"ASSET11","index":"0.000026577057751538"},{"denom":"ASSET12","index":"0.000025356196217934"},{"denom":"ASSET13","index":"0.000008349049177946"},{"denom":"ASSET14","index":"0.000024388519635576"},{"denom":"ASSET15","index":"0.000019243917228958"},{"denom":"ASSET16","index":"0.000011858566692713"},{"denom":"ASSET17","index":"0.000009317567603522"},{"denom":"ASSET18","index":"0.000003845362315572"},{"denom":"ASSET2","index":"0.000008099062572798"},{"denom":"ASSET3","index":"0.000002247710476517"},{"denom":"ASSET4","index":"0.000021674805285583"},{"denom":"ASSET5","index":"0.000001751018453776"},{"denom":"ASSET6","index":"0.000007067532365991"},{"denom":"ASSET7","index":"0.000011106766164564"},{"denom":"ASSET8","index":"0.000015177641578730"},{"denom":"ASSET9","index":"0.000006441123951375"}],"last_reward_claim_height":"147"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET4","shares":"656575379.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001576738934866"},{"denom":"ASSET1","index":"0.000013143695761043"},{"denom":"ASSET10","index":"0.000009157699733702"},{"denom":"ASSET11","index":"0.000012715663698192"},{"denom":"ASSET12","index":"0.000011450067913139"},{"denom":"ASSET13","index":"0.000003940585946017"},{"denom":"ASSET14","index":"0.000011878099975991"},{"denom":"ASSET15","index":"0.000008492526135047"},{"denom":"ASSET16","index":"0.000005920970048209"},{"denom":"ASSET17","index":"0.000004204637159643"},{"denom":"ASSET18","index":"0.000002003089142854"},{"denom":"ASSET2","index":"0.000003880039170918"},{"denom":"ASSET3","index":"0.000001134411105672"},{"denom":"ASSET4","index":"0.000010681460240357"},{"denom":"ASSET5","index":"0.000000880451021229"},{"denom":"ASSET6","index":"0.000003584873642311"},{"denom":"ASSET7","index":"0.000005491256130493"},{"denom":"ASSET8","index":"0.000007165542647463"},{"denom":"ASSET9","index":"0.000003094612949497"}],"last_reward_claim_height":"67"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET9","shares":"84539067.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001576738934866"},{"denom":"ASSET1","index":"0.000013143695761043"},{"denom":"ASSET10","index":"0.000009157699733702"},{"denom":"ASSET11","index":"0.000012715663698192"},{"denom":"ASSET12","index":"0.000011450067913139"},{"denom":"ASSET13","index":"0.000003940585946017"},{"denom":"ASSET14","index":"0.000011878099975991"},{"denom":"ASSET15","index":"0.000008492526135047"},{"denom":"ASSET16","index":"0.000005920970048209"},{"denom":"ASSET17","index":"0.000004204637159643"},{"denom":"ASSET18","index":"0.000002003089142854"},{"denom":"ASSET2","index":"0.000003880039170918"},{"denom":"ASSET3","index":"0.000001134411105672"},{"denom":"ASSET4","index":"0.000010681460240357"},{"denom":"ASSET5","index":"0.000000880451021229"},{"denom":"ASSET6","index":"0.000003584873642311"},{"denom":"ASSET7","index":"0.000005491256130493"},{"denom":"ASSET8","index":"0.000007165542647463"},{"denom":"ASSET9","index":"0.000003094612949497"}],"last_reward_claim_height":"87"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET15","shares":"395266550.977471972430852133","reward_history":[{"denom":"ASSET0","index":"0.000001576738934866"},{"denom":"ASSET1","index":"0.000013143695761043"},{"denom":"ASSET10","index":"0.000009157699733702"},{"denom":"ASSET11","index":"0.000012715663698192"},{"denom":"ASSET12","index":"0.000011450067913139"},{"denom":"ASSET13","index":"0.000003940585946017"},{"denom":"ASSET14","index":"0.000011878099975991"},{"denom":"ASSET15","index":"0.000008492526135047"},{"denom":"ASSET16","index":"0.000005920970048209"},{"denom":"ASSET17","index":"0.000004204637159643"},{"denom":"ASSET18","index":"0.000002003089142854"},{"denom":"ASSET2","index":"0.000003880039170918"},{"denom":"ASSET3","index":"0.000001134411105672"},{"denom":"ASSET4","index":"0.000010681460240357"},{"denom":"ASSET5","index":"0.000000880451021229"},{"denom":"ASSET6","index":"0.000003584873642311"},{"denom":"ASSET7","index":"0.000005491256130493"},{"denom":"ASSET8","index":"0.000007165542647463"},{"denom":"ASSET9","index":"0.000003094612949497"}],"last_reward_claim_height":"76"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET0","shares":"734484561.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001735896630597"},{"denom":"ASSET1","index":"0.000014474259966527"},{"denom":"ASSET10","index":"0.000010084408758147"},{"denom":"ASSET11","index":"0.000014002239606889"},{"denom":"ASSET12","index":"0.000012609068112910"},{"denom":"ASSET13","index":"0.000004339122939062"},{"denom":"ASSET14","index":"0.000013079851197687"},{"denom":"ASSET15","index":"0.000009351942040176"},{"denom":"ASSET16","index":"0.000006520438519776"},{"denom":"ASSET17","index":"0.000004630501168930"},{"denom":"ASSET18","index":"0.000002205442440512"},{"denom":"ASSET2","index":"0.000004272310096544"},{"denom":"ASSET3","index":"0.000001249647610052"},{"denom":"ASSET4","index":"0.000011762772107687"},{"denom":"ASSET5","index":"0.000000970023491367"},{"denom":"ASSET6","index":"0.000003948144082847"},{"denom":"ASSET7","index":"0.000006046562247845"},{"denom":"ASSET8","index":"0.000007890101791387"},{"denom":"ASSET9","index":"0.000003408073605830"}],"last_reward_claim_height":"72"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET2","shares":"59847945.000000000000000000","reward_history":[],"last_reward_claim_height":"2"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET6","shares":"800892835.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003300304206809"},{"denom":"ASSET1","index":"0.000027981868665615"},{"denom":"ASSET10","index":"0.000022221493016134"},{"denom":"ASSET11","index":"0.000027777532118325"},{"denom":"ASSET12","index":"0.000026428557640091"},{"denom":"ASSET13","index":"0.000008720047886627"},{"denom":"ASSET14","index":"0.000025512138164618"},{"denom":"ASSET15","index":"0.000020036362120252"},{"denom":"ASSET16","index":"0.000012421157074829"},{"denom":"ASSET17","index":"0.000009711490167791"},{"denom":"ASSET18","index":"0.000004036282970136"},{"denom":"ASSET2","index":"0.000008465189250700"},{"denom":"ASSET3","index":"0.000002356240815614"},{"denom":"ASSET4","index":"0.000022687774056492"},{"denom":"ASSET5","index":"0.000001835200922241"},{"denom":"ASSET6","index":"0.000007409270759323"},{"denom":"ASSET7","index":"0.000011627060915230"},{"denom":"ASSET8","index":"0.000015852235873304"},{"denom":"ASSET9","index":"0.000006733690564218"}],"last_reward_claim_height":"178"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET8","shares":"139499355.121441568676986433","reward_history":[{"denom":"ASSET0","index":"0.000001735896630597"},{"denom":"ASSET1","index":"0.000014474259966527"},{"denom":"ASSET10","index":"0.000010084408758147"},{"denom":"ASSET11","index":"0.000014002239606889"},{"denom":"ASSET12","index":"0.000012609068112910"},{"denom":"ASSET13","index":"0.000004339122939062"},{"denom":"ASSET14","index":"0.000013079851197687"},{"denom":"ASSET15","index":"0.000009351942040176"},{"denom":"ASSET16","index":"0.000006520438519776"},{"denom":"ASSET17","index":"0.000004630501168930"},{"denom":"ASSET18","index":"0.000002205442440512"},{"denom":"ASSET2","index":"0.000004272310096544"},{"denom":"ASSET3","index":"0.000001249647610052"},{"denom":"ASSET4","index":"0.000011762772107687"},{"denom":"ASSET5","index":"0.000000970023491367"},{"denom":"ASSET6","index":"0.000003948144082847"},{"denom":"ASSET7","index":"0.000006046562247845"},{"denom":"ASSET8","index":"0.000007890101791387"},{"denom":"ASSET9","index":"0.000003408073605830"}],"last_reward_claim_height":"113"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET10","shares":"383274347.000000000000000000","reward_history":[],"last_reward_claim_height":"41"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET0","shares":"440809245.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000005041218570922"},{"denom":"ASSET1","index":"0.000041283005448016"},{"denom":"ASSET10","index":"0.000035661761804363"},{"denom":"ASSET11","index":"0.000042849750447417"},{"denom":"ASSET12","index":"0.000040775814264996"},{"denom":"ASSET13","index":"0.000013813729419195"},{"denom":"ASSET14","index":"0.000039534246723674"},{"denom":"ASSET15","index":"0.000032020821593153"},{"denom":"ASSET16","index":"0.000018320563328873"},{"denom":"ASSET17","index":"0.000014815150431129"},{"denom":"ASSET18","index":"0.000006160605028957"},{"denom":"ASSET2","index":"0.000012460101059942"},{"denom":"ASSET3","index":"0.000003580638711559"},{"denom":"ASSET4","index":"0.000033833347890073"},{"denom":"ASSET5","index":"0.000002810853001211"},{"denom":"ASSET6","index":"0.000011471981118239"},{"denom":"ASSET7","index":"0.000017723228710680"},{"denom":"ASSET8","index":"0.000025479899423051"},{"denom":"ASSET9","index":"0.000010234106890808"}],"last_reward_claim_height":"198"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET3","shares":"1253449705.241259401000000000","reward_history":[{"denom":"ASSET0","index":"0.000005041218570922"},{"denom":"ASSET1","index":"0.000041283005448016"},{"denom":"ASSET10","index":"0.000035661761804363"},{"denom":"ASSET11","index":"0.000042849750447417"},{"denom":"ASSET12","index":"0.000040775814264996"},{"denom":"ASSET13","index":"0.000013813729419195"},{"denom":"ASSET14","index":"0.000039534246723674"},{"denom":"ASSET15","index":"0.000032020821593153"},{"denom":"ASSET16","index":"0.000018320563328873"},{"denom":"ASSET17","index":"0.000014815150431129"},{"denom":"ASSET18","index":"0.000006160605028957"},{"denom":"ASSET2","index":"0.000012460101059942"},{"denom":"ASSET3","index":"0.000003580638711559"},{"denom":"ASSET4","index":"0.000033833347890073"},{"denom":"ASSET5","index":"0.000002810853001211"},{"denom":"ASSET6","index":"0.000011471981118239"},{"denom":"ASSET7","index":"0.000017723228710680"},{"denom":"ASSET8","index":"0.000025479899423051"},{"denom":"ASSET9","index":"0.000010234106890808"}],"last_reward_claim_height":"200"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET5","shares":"535839279.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001726734301691"},{"denom":"ASSET1","index":"0.000014395988805148"},{"denom":"ASSET10","index":"0.000010029746380297"},{"denom":"ASSET11","index":"0.000013926529312304"},{"denom":"ASSET12","index":"0.000012540835608608"},{"denom":"ASSET13","index":"0.000004315874534955"},{"denom":"ASSET14","index":"0.000013009526126035"},{"denom":"ASSET15","index":"0.000009301526659210"},{"denom":"ASSET16","index":"0.000006485154189852"},{"denom":"ASSET17","index":"0.000004605778267637"},{"denom":"ASSET18","index":"0.000002193886868281"},{"denom":"ASSET2","index":"0.000004249742648985"},{"denom":"ASSET3","index":"0.000001243048763609"},{"denom":"ASSET4","index":"0.000011699192013329"},{"denom":"ASSET5","index":"0.000000964679662201"},{"denom":"ASSET6","index":"0.000003926772973318"},{"denom":"ASSET7","index":"0.000006014156746171"},{"denom":"ASSET8","index":"0.000007847778630999"},{"denom":"ASSET9","index":"0.000003389643643667"}],"last_reward_claim_height":"82"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET14","shares":"91552538.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000005041218570922"},{"denom":"ASSET1","index":"0.000041283005448016"},{"denom":"ASSET10","index":"0.000035661761804363"},{"denom":"ASSET11","index":"0.000042849750447417"},{"denom":"ASSET12","index":"0.000040775814264996"},{"denom":"ASSET13","index":"0.000013813729419195"},{"denom":"ASSET14","index":"0.000039534246723674"},{"denom":"ASSET15","index":"0.000032020821593153"},{"denom":"ASSET16","index":"0.000018320563328873"},{"denom":"ASSET17","index":"0.000014815150431129"},{"denom":"ASSET18","index":"0.000006160605028957"},{"denom":"ASSET2","index":"0.000012460101059942"},{"denom":"ASSET3","index":"0.000003580638711559"},{"denom":"ASSET4","index":"0.000033833347890073"},{"denom":"ASSET5","index":"0.000002810853001211"},{"denom":"ASSET6","index":"0.000011471981118239"},{"denom":"ASSET7","index":"0.000017723228710680"},{"denom":"ASSET8","index":"0.000025479899423051"},{"denom":"ASSET9","index":"0.000010234106890808"}],"last_reward_claim_height":"197"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET18","shares":"593568780.000000000000000000","reward_history":[],"last_reward_claim_height":"18"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET7","shares":"686467569.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003006064648013"},{"denom":"ASSET1","index":"0.000025531157590212"},{"denom":"ASSET10","index":"0.000020524407173472"},{"denom":"ASSET11","index":"0.000025409258384489"},{"denom":"ASSET12","index":"0.000024300714605646"},{"denom":"ASSET13","index":"0.000007986286383048"},{"denom":"ASSET14","index":"0.000023298685931189"},{"denom":"ASSET15","index":"0.000018459726056254"},{"denom":"ASSET16","index":"0.000011316095008653"},{"denom":"ASSET17","index":"0.000008930145684163"},{"denom":"ASSET18","index":"0.000003662445744281"},{"denom":"ASSET2","index":"0.000007743120539446"},{"denom":"ASSET3","index":"0.000002143639104141"},{"denom":"ASSET4","index":"0.000020695936675740"},{"denom":"ASSET5","index":"0.000001670457298921"},{"denom":"ASSET6","index":"0.000006739935351518"},{"denom":"ASSET7","index":"0.000010603283023237"},{"denom":"ASSET8","index":"0.000014518439118465"},{"denom":"ASSET9","index":"0.000006156725809403"}],"last_reward_claim_height":"182"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET8","shares":"712810325.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001436232590899"},{"denom":"ASSET1","index":"0.000011976183987962"},{"denom":"ASSET10","index":"0.000008344549248442"},{"denom":"ASSET11","index":"0.000011585862202045"},{"denom":"ASSET12","index":"0.000010432581326504"},{"denom":"ASSET13","index":"0.000003589949888597"},{"denom":"ASSET14","index":"0.000010822903112421"},{"denom":"ASSET15","index":"0.000007738224144105"},{"denom":"ASSET16","index":"0.000005395030251301"},{"denom":"ASSET17","index":"0.000003831216753031"},{"denom":"ASSET18","index":"0.000001825291199515"},{"denom":"ASSET2","index":"0.000003535633264667"},{"denom":"ASSET3","index":"0.000001033279031975"},{"denom":"ASSET4","index":"0.000009732781101914"},{"denom":"ASSET5","index":"0.000000802117585946"},{"denom":"ASSET6","index":"0.000003266576499617"},{"denom":"ASSET7","index":"0.000005003445288083"},{"denom":"ASSET8","index":"0.000006528100290032"},{"denom":"ASSET9","index":"0.000002819411735168"}],"last_reward_claim_height":"65"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET11","shares":"59665457.000000000059665457","reward_history":[{"denom":"ASSET0","index":"0.000001436232590899"},{"denom":"ASSET1","index":"0.000011976183987962"},{"denom":"ASSET10","index":"0.000008344549248442"},{"denom":"ASSET11","index":"0.000011585862202045"},{"denom":"ASSET12","index":"0.000010432581326504"},{"denom":"ASSET13","index":"0.000003589949888597"},{"denom":"ASSET14","index":"0.000010822903112421"},{"denom":"ASSET15","index":"0.000007738224144105"},{"denom":"ASSET16","index":"0.000005395030251301"},{"denom":"ASSET17","index":"0.000003831216753031"},{"denom":"ASSET18","index":"0.000001825291199515"},{"denom":"ASSET2","index":"0.000003535633264667"},{"denom":"ASSET3","index":"0.000001033279031975"},{"denom":"ASSET4","index":"0.000009732781101914"},{"denom":"ASSET5","index":"0.000000802117585946"},{"denom":"ASSET6","index":"0.000003266576499617"},{"denom":"ASSET7","index":"0.000005003445288083"},{"denom":"ASSET8","index":"0.000006528100290032"},{"denom":"ASSET9","index":"0.000002819411735168"}],"last_reward_claim_height":"110"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET18","shares":"865694018.233661465077842084","reward_history":[{"denom":"ASSET0","index":"0.000004616748816299"},{"denom":"ASSET1","index":"0.000037755207818878"},{"denom":"ASSET10","index":"0.000032938660396482"},{"denom":"ASSET11","index":"0.000039335391556387"},{"denom":"ASSET12","index":"0.000037512612148171"},{"denom":"ASSET13","index":"0.000012705893060308"},{"denom":"ASSET14","index":"0.000036276532453011"},{"denom":"ASSET15","index":"0.000029538855596635"},{"denom":"ASSET16","index":"0.000016743506271421"},{"denom":"ASSET17","index":"0.000013621299864319"},{"denom":"ASSET18","index":"0.000005632683728718"},{"denom":"ASSET2","index":"0.000011406087221492"},{"denom":"ASSET3","index":"0.000003276282345046"},{"denom":"ASSET4","index":"0.000030959298045710"},{"denom":"ASSET5","index":"0.000002573921522052"},{"denom":"ASSET6","index":"0.000010509111697413"},{"denom":"ASSET7","index":"0.000016237462090306"},{"denom":"ASSET8","index":"0.000023455836171312"},{"denom":"ASSET9","index":"0.000009384135429607"}],"last_reward_claim_height":"187"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET13","shares":"373467049.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002611689387046"},{"denom":"ASSET1","index":"0.000022118950462866"},{"denom":"ASSET10","index":"0.000017388824351878"},{"denom":"ASSET11","index":"0.000021911701626113"},{"denom":"ASSET12","index":"0.000020757567192719"},{"denom":"ASSET13","index":"0.000006870825151743"},{"denom":"ASSET14","index":"0.000020152250667519"},{"denom":"ASSET15","index":"0.000015711809347683"},{"denom":"ASSET16","index":"0.000009830001439303"},{"denom":"ASSET17","index":"0.000007627368499381"},{"denom":"ASSET18","index":"0.000003205559295774"},{"denom":"ASSET2","index":"0.000006678615536452"},{"denom":"ASSET3","index":"0.000001865584989735"},{"denom":"ASSET4","index":"0.000017938012267073"},{"denom":"ASSET5","index":"0.000001453547274796"},{"denom":"ASSET6","index":"0.000005870892100855"},{"denom":"ASSET7","index":"0.000009195154067126"},{"denom":"ASSET8","index":"0.000012492245582088"},{"denom":"ASSET9","index":"0.000005313335607946"}],"last_reward_claim_height":"168"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET1","shares":"811603397.000000000000000000","reward_history":[],"last_reward_claim_height":"45"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET4","shares":"826920607.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000000860911540335"},{"denom":"ASSET1","index":"0.000007178593209511"},{"denom":"ASSET10","index":"0.000005001581264509"},{"denom":"ASSET11","index":"0.000006944753046495"},{"denom":"ASSET12","index":"0.000006253725385275"},{"denom":"ASSET13","index":"0.000002152029021603"},{"denom":"ASSET14","index":"0.000006487065889823"},{"denom":"ASSET15","index":"0.000004638329558286"},{"denom":"ASSET16","index":"0.000003233789604786"},{"denom":"ASSET17","index":"0.000002296430318850"},{"denom":"ASSET18","index":"0.000001093752386415"},{"denom":"ASSET2","index":"0.000002119051562716"},{"denom":"ASSET3","index":"0.000000619576500299"},{"denom":"ASSET4","index":"0.000005834012272169"},{"denom":"ASSET5","index":"0.000000481171104668"},{"denom":"ASSET6","index":"0.000001958161536025"},{"denom":"ASSET7","index":"0.000002998950124834"},{"denom":"ASSET8","index":"0.000003913325121242"},{"denom":"ASSET9","index":"0.000001690344597186"}],"last_reward_claim_height":"78"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET5","shares":"511422780.145080545474083998","reward_history":[{"denom":"ASSET0","index":"0.000002357406510396"},{"denom":"ASSET1","index":"0.000020099972826550"},{"denom":"ASSET10","index":"0.000016611857270119"},{"denom":"ASSET11","index":"0.000020122040980663"},{"denom":"ASSET12","index":"0.000019473664705632"},{"denom":"ASSET13","index":"0.000006342954228467"},{"denom":"ASSET14","index":"0.000018379978414574"},{"denom":"ASSET15","index":"0.000014858739059306"},{"denom":"ASSET16","index":"0.000008878274052948"},{"denom":"ASSET17","index":"0.000007156982288871"},{"denom":"ASSET18","index":"0.000002845018303307"},{"denom":"ASSET2","index":"0.000006129987919866"},{"denom":"ASSET3","index":"0.000001678183905493"},{"denom":"ASSET4","index":"0.000016284739258605"},{"denom":"ASSET5","index":"0.000001308892339296"},{"denom":"ASSET6","index":"0.000005269046474537"},{"denom":"ASSET7","index":"0.000008337197620164"},{"denom":"ASSET8","index":"0.000011530009666752"},{"denom":"ASSET9","index":"0.000004871853664260"}],"last_reward_claim_height":"123"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET2","shares":"195823792.188032004914235117","reward_history":[{"denom":"ASSET0","index":"0.000004408639086951"},{"denom":"ASSET1","index":"0.000036028768930796"},{"denom":"ASSET10","index":"0.000031790158219615"},{"denom":"ASSET11","index":"0.000037682589230029"},{"denom":"ASSET12","index":"0.000036048426643578"},{"denom":"ASSET13","index":"0.000012197269347349"},{"denom":"ASSET14","index":"0.000034726305858976"},{"denom":"ASSET15","index":"0.000028463702439045"},{"denom":"ASSET16","index":"0.000015962383027793"},{"denom":"ASSET17","index":"0.000013083625448781"},{"denom":"ASSET18","index":"0.000005366451960217"},{"denom":"ASSET2","index":"0.000010899158965125"},{"denom":"ASSET3","index":"0.000003126684527234"},{"denom":"ASSET4","index":"0.000029555870827765"},{"denom":"ASSET5","index":"0.000002458236264620"},{"denom":"ASSET6","index":"0.000010036434145152"},{"denom":"ASSET7","index":"0.000015516634437691"},{"denom":"ASSET8","index":"0.000022532118254512"},{"denom":"ASSET9","index":"0.000008980939918496"}],"last_reward_claim_height":"189"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET3","shares":"581154573.999999995350763408","reward_history":[],"last_reward_claim_height":"55"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET15","shares":"317873720.520831445324200896","reward_history":[{"denom":"ASSET0","index":"0.000001198976216272"},{"denom":"ASSET1","index":"0.000010001315625623"},{"denom":"ASSET10","index":"0.000006967712250892"},{"denom":"ASSET11","index":"0.000009674322112094"},{"denom":"ASSET12","index":"0.000008711677656379"},{"denom":"ASSET13","index":"0.000002997949876371"},{"denom":"ASSET14","index":"0.000009037652498526"},{"denom":"ASSET15","index":"0.000006461432574183"},{"denom":"ASSET16","index":"0.000004504564849919"},{"denom":"ASSET17","index":"0.000003199646809949"},{"denom":"ASSET18","index":"0.000001523932387037"},{"denom":"ASSET2","index":"0.000002952109664194"},{"denom":"ASSET3","index":"0.000000862814660308"},{"denom":"ASSET4","index":"0.000008126960283277"},{"denom":"ASSET5","index":"0.000000670285769165"},{"denom":"ASSET6","index":"0.000002728001960218"},{"denom":"ASSET7","index":"0.000004177571336390"},{"denom":"ASSET8","index":"0.000005451929234909"},{"denom":"ASSET9","index":"0.000002354149563130"}],"last_reward_claim_height":"86"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET0","shares":"144893087.651693268391978160","reward_history":[{"denom":"ASSET0","index":"0.000003131246414749"},{"denom":"ASSET1","index":"0.000026589761836242"},{"denom":"ASSET10","index":"0.000021355242603721"},{"denom":"ASSET11","index":"0.000026458316408852"},{"denom":"ASSET12","index":"0.000025293988029420"},{"denom":"ASSET13","index":"0.000008316673174883"},{"denom":"ASSET14","index":"0.000024263343459355"},{"denom":"ASSET15","index":"0.000019213959771091"},{"denom":"ASSET16","index":"0.000011784585795875"},{"denom":"ASSET17","index":"0.000009292893547134"},{"denom":"ASSET18","index":"0.000003813004198036"},{"denom":"ASSET2","index":"0.000008060944762894"},{"denom":"ASSET3","index":"0.000002234070199415"},{"denom":"ASSET4","index":"0.000021557233504015"},{"denom":"ASSET5","index":"0.000001738116490695"},{"denom":"ASSET6","index":"0.000007021386599103"},{"denom":"ASSET7","index":"0.000011043212117572"},{"denom":"ASSET8","index":"0.000015117900391662"},{"denom":"ASSET9","index":"0.000006411442995536"}],"last_reward_claim_height":"171"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET7","shares":"168968757.667047650079209383","reward_history":[{"denom":"ASSET0","index":"0.000003131246414749"},{"denom":"ASSET1","index":"0.000026589761836242"},{"denom":"ASSET10","index":"0.000021355242603721"},{"denom":"ASSET11","index":"0.000026458316408852"},{"denom":"ASSET12","index":"0.000025293988029420"},{"denom":"ASSET13","index":"0.000008316673174883"},{"denom":"ASSET14","index":"0.000024263343459355"},{"denom":"ASSET15","index":"0.000019213959771091"},{"denom":"ASSET16","index":"0.000011784585795875"},{"denom":"ASSET17","index":"0.000009292893547134"},{"denom":"ASSET18","index":"0.000003813004198036"},{"denom":"ASSET2","index":"0.000008060944762894"},{"denom":"ASSET3","index":"0.000002234070199415"},{"denom":"ASSET4","index":"0.000021557233504015"},{"denom":"ASSET5","index":"0.000001738116490695"},{"denom":"ASSET6","index":"0.000007021386599103"},{"denom":"ASSET7","index":"0.000011043212117572"},{"denom":"ASSET8","index":"0.000015117900391662"},{"denom":"ASSET9","index":"0.000006411442995536"}],"last_reward_claim_height":"140"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET10","shares":"932079148.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003131246414749"},{"denom":"ASSET1","index":"0.000026589761836242"},{"denom":"ASSET10","index":"0.000021355242603721"},{"denom":"ASSET11","index":"0.000026458316408852"},{"denom":"ASSET12","index":"0.000025293988029420"},{"denom":"ASSET13","index":"0.000008316673174883"},{"denom":"ASSET14","index":"0.000024263343459355"},{"denom":"ASSET15","index":"0.000019213959771091"},{"denom":"ASSET16","index":"0.000011784585795875"},{"denom":"ASSET17","index":"0.000009292893547134"},{"denom":"ASSET18","index":"0.000003813004198036"},{"denom":"ASSET2","index":"0.000008060944762894"},{"denom":"ASSET3","index":"0.000002234070199415"},{"denom":"ASSET4","index":"0.000021557233504015"},{"denom":"ASSET5","index":"0.000001738116490695"},{"denom":"ASSET6","index":"0.000007021386599103"},{"denom":"ASSET7","index":"0.000011043212117572"},{"denom":"ASSET8","index":"0.000015117900391662"},{"denom":"ASSET9","index":"0.000006411442995536"}],"last_reward_claim_height":"130"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET12","shares":"132102909.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003131246414749"},{"denom":"ASSET1","index":"0.000026589761836242"},{"denom":"ASSET10","index":"0.000021355242603721"},{"denom":"ASSET11","index":"0.000026458316408852"},{"denom":"ASSET12","index":"0.000025293988029420"},{"denom":"ASSET13","index":"0.000008316673174883"},{"denom":"ASSET14","index":"0.000024263343459355"},{"denom":"ASSET15","index":"0.000019213959771091"},{"denom":"ASSET16","index":"0.000011784585795875"},{"denom":"ASSET17","index":"0.000009292893547134"},{"denom":"ASSET18","index":"0.000003813004198036"},{"denom":"ASSET2","index":"0.000008060944762894"},{"denom":"ASSET3","index":"0.000002234070199415"},{"denom":"ASSET4","index":"0.000021557233504015"},{"denom":"ASSET5","index":"0.000001738116490695"},{"denom":"ASSET6","index":"0.000007021386599103"},{"denom":"ASSET7","index":"0.000011043212117572"},{"denom":"ASSET8","index":"0.000015117900391662"},{"denom":"ASSET9","index":"0.000006411442995536"}],"last_reward_claim_height":"146"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET14","shares":"299450759.000000010480776565","reward_history":[{"denom":"ASSET0","index":"0.000001507638919625"},{"denom":"ASSET1","index":"0.000012569401049902"},{"denom":"ASSET10","index":"0.000008757228353136"},{"denom":"ASSET11","index":"0.000012160184771718"},{"denom":"ASSET12","index":"0.000010949766096248"},{"denom":"ASSET13","index":"0.000003769097299062"},{"denom":"ASSET14","index":"0.000011358982374432"},{"denom":"ASSET15","index":"0.000008124020006893"},{"denom":"ASSET16","index":"0.000005660107258249"},{"denom":"ASSET17","index":"0.000004018934605743"},{"denom":"ASSET18","index":"0.000001912547658039"},{"denom":"ASSET2","index":"0.000003708791742277"},{"denom":"ASSET3","index":"0.000001085500022130"},{"denom":"ASSET4","index":"0.000010217484335287"},{"denom":"ASSET5","index":"0.000000839970255220"},{"denom":"ASSET6","index":"0.000003428801657204"},{"denom":"ASSET7","index":"0.000005250890980065"},{"denom":"ASSET8","index":"0.000006853295774638"},{"denom":"ASSET9","index":"0.000002959279822235"}],"last_reward_claim_height":"97"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET16","shares":"172264019.000000000000000000","reward_history":[],"last_reward_claim_height":"26"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET9","shares":"1234412910.594048385155411118","reward_history":[{"denom":"ASSET0","index":"0.000004650537309371"},{"denom":"ASSET1","index":"0.000038046039733821"},{"denom":"ASSET10","index":"0.000033000487516520"},{"denom":"ASSET11","index":"0.000039559590813606"},{"denom":"ASSET12","index":"0.000037667771336994"},{"denom":"ASSET13","index":"0.000012765549405852"},{"denom":"ASSET14","index":"0.000036497515986485"},{"denom":"ASSET15","index":"0.000029618849913905"},{"denom":"ASSET16","index":"0.000016880835340591"},{"denom":"ASSET17","index":"0.000013681253335277"},{"denom":"ASSET18","index":"0.000005680518785577"},{"denom":"ASSET2","index":"0.000011485907586480"},{"denom":"ASSET3","index":"0.000003302456772860"},{"denom":"ASSET4","index":"0.000031190694477338"},{"denom":"ASSET5","index":"0.000002593303317039"},{"denom":"ASSET6","index":"0.000010585760994000"},{"denom":"ASSET7","index":"0.000016350598525650"},{"denom":"ASSET8","index":"0.000023557479628432"},{"denom":"ASSET9","index":"0.000009443226065271"}],"last_reward_claim_height":"194"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET2","shares":"614652588.000000000000000000","reward_history":[],"last_reward_claim_height":"10"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET4","shares":"650222638.765332650464207683","reward_history":[{"denom":"ASSET0","index":"0.000004891719865072"},{"denom":"ASSET1","index":"0.000040072863779743"},{"denom":"ASSET10","index":"0.000034599304409835"},{"denom":"ASSET11","index":"0.000041579421937236"},{"denom":"ASSET12","index":"0.000039570241536796"},{"denom":"ASSET13","index":"0.000013401388142896"},{"denom":"ASSET14","index":"0.000038360085576662"},{"denom":"ASSET15","index":"0.000031066535588374"},{"denom":"ASSET16","index":"0.000017782615538969"},{"denom":"ASSET17","index":"0.000014378613126430"},{"denom":"ASSET18","index":"0.000005978292997826"},{"denom":"ASSET2","index":"0.000012095614431682"},{"denom":"ASSET3","index":"0.000003474461371717"},{"denom":"ASSET4","index":"0.000032837900054333"},{"denom":"ASSET5","index":"0.000002727819260398"},{"denom":"ASSET6","index":"0.000011131008136035"},{"denom":"ASSET7","index":"0.000017198777658106"},{"denom":"ASSET8","index":"0.000024717029214278"},{"denom":"ASSET9","index":"0.000009931445754815"}],"last_reward_claim_height":"186"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET12","shares":"152130883.246861401522341988","reward_history":[{"denom":"ASSET0","index":"0.000004891719865072"},{"denom":"ASSET1","index":"0.000040072863779743"},{"denom":"ASSET10","index":"0.000034599304409835"},{"denom":"ASSET11","index":"0.000041579421937236"},{"denom":"ASSET12","index":"0.000039570241536796"},{"denom":"ASSET13","index":"0.000013401388142896"},{"denom":"ASSET14","index":"0.000038360085576662"},{"denom":"ASSET15","index":"0.000031066535588374"},{"denom":"ASSET16","index":"0.000017782615538969"},{"denom":"ASSET17","index":"0.000014378613126430"},{"denom":"ASSET18","index":"0.000005978292997826"},{"denom":"ASSET2","index":"0.000012095614431682"},{"denom":"ASSET3","index":"0.000003474461371717"},{"denom":"ASSET4","index":"0.000032837900054333"},{"denom":"ASSET5","index":"0.000002727819260398"},{"denom":"ASSET6","index":"0.000011131008136035"},{"denom":"ASSET7","index":"0.000017198777658106"},{"denom":"ASSET8","index":"0.000024717029214278"},{"denom":"ASSET9","index":"0.000009931445754815"}],"last_reward_claim_height":"192"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET17","shares":"765940653.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003295755498274"},{"denom":"ASSET1","index":"0.000027960125957180"},{"denom":"ASSET10","index":"0.000022298091456525"},{"denom":"ASSET11","index":"0.000027779779629540"},{"denom":"ASSET12","index":"0.000026478335493542"},{"denom":"ASSET13","index":"0.000008724566942758"},{"denom":"ASSET14","index":"0.000025500389224880"},{"denom":"ASSET15","index":"0.000020088119547171"},{"denom":"ASSET16","index":"0.000012404652968467"},{"denom":"ASSET17","index":"0.000009730254100732"},{"denom":"ASSET18","index":"0.000004025857251145"},{"denom":"ASSET2","index":"0.000008465992991141"},{"denom":"ASSET3","index":"0.000002352288079447"},{"denom":"ASSET4","index":"0.000022667879187178"},{"denom":"ASSET5","index":"0.000001832649164275"},{"denom":"ASSET6","index":"0.000007396215489940"},{"denom":"ASSET7","index":"0.000011616026271508"},{"denom":"ASSET8","index":"0.000015861127767022"},{"denom":"ASSET9","index":"0.000006733269226830"}],"last_reward_claim_height":"180"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET18","shares":"963289856.300063100242782314","reward_history":[{"denom":"ASSET0","index":"0.000003295755498274"},{"denom":"ASSET1","index":"0.000027960125957180"},{"denom":"ASSET10","index":"0.000022298091456525"},{"denom":"ASSET11","index":"0.000027779779629540"},{"denom":"ASSET12","index":"0.000026478335493542"},{"denom":"ASSET13","index":"0.000008724566942758"},{"denom":"ASSET14","index":"0.000025500389224880"},{"denom":"ASSET15","index":"0.000020088119547171"},{"denom":"ASSET16","index":"0.000012404652968467"},{"denom":"ASSET17","index":"0.000009730254100732"},{"denom":"ASSET18","index":"0.000004025857251145"},{"denom":"ASSET2","index":"0.000008465992991141"},{"denom":"ASSET3","index":"0.000002352288079447"},{"denom":"ASSET4","index":"0.000022667879187178"},{"denom":"ASSET5","index":"0.000001832649164275"},{"denom":"ASSET6","index":"0.000007396215489940"},{"denom":"ASSET7","index":"0.000011616026271508"},{"denom":"ASSET8","index":"0.000015861127767022"},{"denom":"ASSET9","index":"0.000006733269226830"}],"last_reward_claim_height":"155"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET2","shares":"123322922.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001488486853561"},{"denom":"ASSET1","index":"0.000012409943784184"},{"denom":"ASSET10","index":"0.000008645838046025"},{"denom":"ASSET11","index":"0.000012005445379346"},{"denom":"ASSET12","index":"0.000010810451131374"},{"denom":"ASSET13","index":"0.000003720376180879"},{"denom":"ASSET14","index":"0.000011214949536212"},{"denom":"ASSET15","index":"0.000008018487089665"},{"denom":"ASSET16","index":"0.000005590655707614"},{"denom":"ASSET17","index":"0.000003970139229188"},{"denom":"ASSET18","index":"0.000001891303352350"},{"denom":"ASSET2","index":"0.000003663191375205"},{"denom":"ASSET3","index":"0.000001071374153354"},{"denom":"ASSET4","index":"0.000010085549624159"},{"denom":"ASSET5","index":"0.000000831702541340"},{"denom":"ASSET6","index":"0.000003384835924059"},{"denom":"ASSET7","index":"0.000005184475396726"},{"denom":"ASSET8","index":"0.000006765467082995"},{"denom":"ASSET9","index":"0.000002921470807498"}],"last_reward_claim_height":"99"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET6","shares":"397548194.220190170738737424","reward_history":[{"denom":"ASSET0","index":"0.000001385039568420"},{"denom":"ASSET1","index":"0.000011547928050470"},{"denom":"ASSET10","index":"0.000008045290512347"},{"denom":"ASSET11","index":"0.000011171268467624"},{"denom":"ASSET12","index":"0.000010059084660007"},{"denom":"ASSET13","index":"0.000003461116009305"},{"denom":"ASSET14","index":"0.000010435744242853"},{"denom":"ASSET15","index":"0.000007461023285412"},{"denom":"ASSET16","index":"0.000005202054396163"},{"denom":"ASSET17","index":"0.000003694427456948"},{"denom":"ASSET18","index":"0.000001759721935608"},{"denom":"ASSET2","index":"0.000003408719794369"},{"denom":"ASSET3","index":"0.000000996516691625"},{"denom":"ASSET4","index":"0.000009383865512804"},{"denom":"ASSET5","index":"0.000000774079930102"},{"denom":"ASSET6","index":"0.000003149704543173"},{"denom":"ASSET7","index":"0.000004824406205487"},{"denom":"ASSET8","index":"0.000006294466047200"},{"denom":"ASSET9","index":"0.000002718671529731"}],"last_reward_claim_height":"94"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET7","shares":"293889921.999999819143873398","reward_history":[{"denom":"ASSET0","index":"0.000002978674281858"},{"denom":"ASSET1","index":"0.000025310372422717"},{"denom":"ASSET10","index":"0.000020411345436720"},{"denom":"ASSET11","index":"0.000025206262983954"},{"denom":"ASSET12","index":"0.000024139567910062"},{"denom":"ASSET13","index":"0.000007924745788344"},{"denom":"ASSET14","index":"0.000023102636423037"},{"denom":"ASSET15","index":"0.000018346974201526"},{"denom":"ASSET16","index":"0.000011213830154915"},{"denom":"ASSET17","index":"0.000008871351161454"},{"denom":"ASSET18","index":"0.000003625142276595"},{"denom":"ASSET2","index":"0.000007680838181843"},{"denom":"ASSET3","index":"0.000002123796319816"},{"denom":"ASSET4","index":"0.000020514843977806"},{"denom":"ASSET5","index":"0.000001655567492872"},{"denom":"ASSET6","index":"0.000006676037052519"},{"denom":"ASSET7","index":"0.000010510115662832"},{"denom":"ASSET8","index":"0.000014407133239162"},{"denom":"ASSET9","index":"0.000006107008804836"}],"last_reward_claim_height":"180"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET13","shares":"331287792.776375431769996265","reward_history":[{"denom":"ASSET0","index":"0.000002978674281858"},{"denom":"ASSET1","index":"0.000025310372422717"},{"denom":"ASSET10","index":"0.000020411345436720"},{"denom":"ASSET11","index":"0.000025206262983954"},{"denom":"ASSET12","index":"0.000024139567910062"},{"denom":"ASSET13","index":"0.000007924745788344"},{"denom":"ASSET14","index":"0.000023102636423037"},{"denom":"ASSET15","index":"0.000018346974201526"},{"denom":"ASSET16","index":"0.000011213830154915"},{"denom":"ASSET17","index":"0.000008871351161454"},{"denom":"ASSET18","index":"0.000003625142276595"},{"denom":"ASSET2","index":"0.000007680838181843"},{"denom":"ASSET3","index":"0.000002123796319816"},{"denom":"ASSET4","index":"0.000020514843977806"},{"denom":"ASSET5","index":"0.000001655567492872"},{"denom":"ASSET6","index":"0.000006676037052519"},{"denom":"ASSET7","index":"0.000010510115662832"},{"denom":"ASSET8","index":"0.000014407133239162"},{"denom":"ASSET9","index":"0.000006107008804836"}],"last_reward_claim_height":"153"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET18","shares":"1000000000.000000032000000000","reward_history":[{"denom":"ASSET0","index":"0.000002978674281858"},{"denom":"ASSET1","index":"0.000025310372422717"},{"denom":"ASSET10","index":"0.000020411345436720"},{"denom":"ASSET11","index":"0.000025206262983954"},{"denom":"ASSET12","index":"0.000024139567910062"},{"denom":"ASSET13","index":"0.000007924745788344"},{"denom":"ASSET14","index":"0.000023102636423037"},{"denom":"ASSET15","index":"0.000018346974201526"},{"denom":"ASSET16","index":"0.000011213830154915"},{"denom":"ASSET17","index":"0.000008871351161454"},{"denom":"ASSET18","index":"0.000003625142276595"},{"denom":"ASSET2","index":"0.000007680838181843"},{"denom":"ASSET3","index":"0.000002123796319816"},{"denom":"ASSET4","index":"0.000020514843977806"},{"denom":"ASSET5","index":"0.000001655567492872"},{"denom":"ASSET6","index":"0.000006676037052519"},{"denom":"ASSET7","index":"0.000010510115662832"},{"denom":"ASSET8","index":"0.000014407133239162"},{"denom":"ASSET9","index":"0.000006107008804836"}],"last_reward_claim_height":"176"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET0","shares":"1689576220.879376244389468125","reward_history":[{"denom":"ASSET0","index":"0.000003115193601728"},{"denom":"ASSET1","index":"0.000026433576226141"},{"denom":"ASSET10","index":"0.000021120836274624"},{"denom":"ASSET11","index":"0.000026274076149270"},{"denom":"ASSET12","index":"0.000025063206789151"},{"denom":"ASSET13","index":"0.000008253838888439"},{"denom":"ASSET14","index":"0.000024111622086359"},{"denom":"ASSET15","index":"0.000019020166052921"},{"denom":"ASSET16","index":"0.000011725264187843"},{"denom":"ASSET17","index":"0.000009210335248597"},{"denom":"ASSET18","index":"0.000003802618681808"},{"denom":"ASSET2","index":"0.000008007094168018"},{"denom":"ASSET3","index":"0.000002223045227271"},{"denom":"ASSET4","index":"0.000021430343290469"},{"denom":"ASSET5","index":"0.000001731871182363"},{"denom":"ASSET6","index":"0.000006989160352022"},{"denom":"ASSET7","index":"0.000010981276608696"},{"denom":"ASSET8","index":"0.000015004007461071"},{"denom":"ASSET9","index":"0.000006368316319391"}],"last_reward_claim_height":"181"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET1","shares":"178378465.658538673387418146","reward_history":[{"denom":"ASSET0","index":"0.000001563741356289"},{"denom":"ASSET1","index":"0.000013036816883138"},{"denom":"ASSET10","index":"0.000009082880828100"},{"denom":"ASSET11","index":"0.000012611783735587"},{"denom":"ASSET12","index":"0.000011356772924286"},{"denom":"ASSET13","index":"0.000003908472310400"},{"denom":"ASSET14","index":"0.000011781101207579"},{"denom":"ASSET15","index":"0.000008423480314776"},{"denom":"ASSET16","index":"0.000005872928997340"},{"denom":"ASSET17","index":"0.000004170681814362"},{"denom":"ASSET18","index":"0.000001986659911066"},{"denom":"ASSET2","index":"0.000003848558848473"},{"denom":"ASSET3","index":"0.000001125668219966"},{"denom":"ASSET4","index":"0.000010594814661429"},{"denom":"ASSET5","index":"0.000000873679247744"},{"denom":"ASSET6","index":"0.000003556392613548"},{"denom":"ASSET7","index":"0.000005446486121273"},{"denom":"ASSET8","index":"0.000007106793880903"},{"denom":"ASSET9","index":"0.000003069683843425"}],"last_reward_claim_height":"113"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET10","shares":"761093529.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001563741356289"},{"denom":"ASSET1","index":"0.000013036816883138"},{"denom":"ASSET10","index":"0.000009082880828100"},{"denom":"ASSET11","index":"0.000012611783735587"},{"denom":"ASSET12","index":"0.000011356772924286"},{"denom":"ASSET13","index":"0.000003908472310400"},{"denom":"ASSET14","index":"0.000011781101207579"},{"denom":"ASSET15","index":"0.000008423480314776"},{"denom":"ASSET16","index":"0.000005872928997340"},{"denom":"ASSET17","index":"0.000004170681814362"},{"denom":"ASSET18","index":"0.000001986659911066"},{"denom":"ASSET2","index":"0.000003848558848473"},{"denom":"ASSET3","index":"0.000001125668219966"},{"denom":"ASSET4","index":"0.000010594814661429"},{"denom":"ASSET5","index":"0.000000873679247744"},{"denom":"ASSET6","index":"0.000003556392613548"},{"denom":"ASSET7","index":"0.000005446486121273"},{"denom":"ASSET8","index":"0.000007106793880903"},{"denom":"ASSET9","index":"0.000003069683843425"}],"last_reward_claim_height":"107"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET0","shares":"10131192.000000000000000000","reward_history":[],"last_reward_claim_height":"53"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET10","shares":"346818880.000000000612767410","reward_history":[],"last_reward_claim_height":"23"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET15","shares":"343328599.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001688791638136"},{"denom":"ASSET1","index":"0.000014080258863939"},{"denom":"ASSET10","index":"0.000009809129194434"},{"denom":"ASSET11","index":"0.000013620783833550"},{"denom":"ASSET12","index":"0.000012265553395360"},{"denom":"ASSET13","index":"0.000004220322334414"},{"denom":"ASSET14","index":"0.000012723923918464"},{"denom":"ASSET15","index":"0.000009096721995874"},{"denom":"ASSET16","index":"0.000006342080828109"},{"denom":"ASSET17","index":"0.000004504180706554"},{"denom":"ASSET18","index":"0.000002144953146672"},{"denom":"ASSET2","index":"0.000004156260911908"},{"denom":"ASSET3","index":"0.000001214958013048"},{"denom":"ASSET4","index":"0.000011442695468341"},{"denom":"ASSET5","index":"0.000000943249221039"},{"denom":"ASSET6","index":"0.000003840371828516"},{"denom":"ASSET7","index":"0.000005881501290436"},{"denom":"ASSET8","index":"0.000007675221120608"},{"denom":"ASSET9","index":"0.000003314626361051"}],"last_reward_claim_height":"79"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET16","shares":"739699655.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003342989987813"},{"denom":"ASSET1","index":"0.000028363859076608"},{"denom":"ASSET10","index":"0.000022643596968544"},{"denom":"ASSET11","index":"0.000028187678804911"},{"denom":"ASSET12","index":"0.000026879157824253"},{"denom":"ASSET13","index":"0.000008853292918908"},{"denom":"ASSET14","index":"0.000025870927331183"},{"denom":"ASSET15","index":"0.000020395094195043"},{"denom":"ASSET16","index":"0.000012581780801373"},{"denom":"ASSET17","index":"0.000009877287329505"},{"denom":"ASSET18","index":"0.000004080927248291"},{"denom":"ASSET2","index":"0.000008590241612281"},{"denom":"ASSET3","index":"0.000002384972961476"},{"denom":"ASSET4","index":"0.000022995501297970"},{"denom":"ASSET5","index":"0.000001858071035633"},{"denom":"ASSET6","index":"0.000007500418590266"},{"denom":"ASSET7","index":"0.000011782462758670"},{"denom":"ASSET8","index":"0.000016095075530395"},{"denom":"ASSET9","index":"0.000006831506736707"}],"last_reward_claim_height":"157"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET0","shares":"2254769.922776575601020079","reward_history":[{"denom":"ASSET0","index":"0.000003113134051861"},{"denom":"ASSET1","index":"0.000026415094552464"},{"denom":"ASSET10","index":"0.000021090707465492"},{"denom":"ASSET11","index":"0.000026251548228726"},{"denom":"ASSET12","index":"0.000025034408517114"},{"denom":"ASSET13","index":"0.000008245703890405"},{"denom":"ASSET14","index":"0.000024093200316600"},{"denom":"ASSET15","index":"0.000018995578271326"},{"denom":"ASSET16","index":"0.000011717396138812"},{"denom":"ASSET17","index":"0.000009199501798709"},{"denom":"ASSET18","index":"0.000003801350346824"},{"denom":"ASSET2","index":"0.000007999912620195"},{"denom":"ASSET3","index":"0.000002221641081089"},{"denom":"ASSET4","index":"0.000021415082747190"},{"denom":"ASSET5","index":"0.000001730738444371"},{"denom":"ASSET6","index":"0.000006985361363625"},{"denom":"ASSET7","index":"0.000010973556930807"},{"denom":"ASSET8","index":"0.000014990236718633"},{"denom":"ASSET9","index":"0.000006362695679170"}],"last_reward_claim_height":"130"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET17","shares":"419740854.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001571496317510"},{"denom":"ASSET1","index":"0.000013101483241955"},{"denom":"ASSET10","index":"0.000009127906315185"},{"denom":"ASSET11","index":"0.000012674221268720"},{"denom":"ASSET12","index":"0.000011413128948859"},{"denom":"ASSET13","index":"0.000003927726401627"},{"denom":"ASSET14","index":"0.000011839579408375"},{"denom":"ASSET15","index":"0.000008464899606481"},{"denom":"ASSET16","index":"0.000005901733523932"},{"denom":"ASSET17","index":"0.000004191468360414"},{"denom":"ASSET18","index":"0.000001996729506447"},{"denom":"ASSET2","index":"0.000003867268629536"},{"denom":"ASSET3","index":"0.000001131250124766"},{"denom":"ASSET4","index":"0.000010647059997798"},{"denom":"ASSET5","index":"0.000000878057844331"},{"denom":"ASSET6","index":"0.000003573906419993"},{"denom":"ASSET7","index":"0.000005473254280118"},{"denom":"ASSET8","index":"0.000007142132243950"},{"denom":"ASSET9","index":"0.000003084563647228"}],"last_reward_claim_height":"69"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET7","shares":"430805168.405773855556090811","reward_history":[{"denom":"ASSET0","index":"0.000001486431692511"},{"denom":"ASSET1","index":"0.000012397696164316"},{"denom":"ASSET10","index":"0.000008637613387551"},{"denom":"ASSET11","index":"0.000011993186507636"},{"denom":"ASSET12","index":"0.000010799842650204"},{"denom":"ASSET13","index":"0.000003716482933529"},{"denom":"ASSET14","index":"0.000011203544902380"},{"denom":"ASSET15","index":"0.000008010260087670"},{"denom":"ASSET16","index":"0.000005584816956599"},{"denom":"ASSET17","index":"0.000003965970925374"},{"denom":"ASSET18","index":"0.000001889326540182"},{"denom":"ASSET2","index":"0.000003659157213720"},{"denom":"ASSET3","index":"0.000001070618372770"},{"denom":"ASSET4","index":"0.000010074793405297"},{"denom":"ASSET5","index":"0.000000830819234978"},{"denom":"ASSET6","index":"0.000003381410064224"},{"denom":"ASSET7","index":"0.000005179499895414"},{"denom":"ASSET8","index":"0.000006757975701421"},{"denom":"ASSET9","index":"0.000002918767283230"}],"last_reward_claim_height":"67"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET11","shares":"417591425.647025391799456650","reward_history":[{"denom":"ASSET0","index":"0.000003023961266495"},{"denom":"ASSET1","index":"0.000025674667559579"},{"denom":"ASSET10","index":"0.000020567435721356"},{"denom":"ASSET11","index":"0.000025532965784321"},{"denom":"ASSET12","index":"0.000024383768132692"},{"denom":"ASSET13","index":"0.000008022807352722"},{"denom":"ASSET14","index":"0.000023423766496233"},{"denom":"ASSET15","index":"0.000018512228577533"},{"denom":"ASSET16","index":"0.000011384524743973"},{"denom":"ASSET17","index":"0.000008960010456843"},{"denom":"ASSET18","index":"0.000003688974211121"},{"denom":"ASSET2","index":"0.000007780619396113"},{"denom":"ASSET3","index":"0.000002157718690670"},{"denom":"ASSET4","index":"0.000020813357966886"},{"denom":"ASSET5","index":"0.000001681323481152"},{"denom":"ASSET6","index":"0.000006783427048921"},{"denom":"ASSET7","index":"0.000010664665966441"},{"denom":"ASSET8","index":"0.000014584270248941"},{"denom":"ASSET9","index":"0.000006187655866052"}],"last_reward_claim_height":"163"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET13","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001486431692511"},{"denom":"ASSET1","index":"0.000012397696164316"},{"denom":"ASSET10","index":"0.000008637613387551"},{"denom":"ASSET11","index":"0.000011993186507636"},{"denom":"ASSET12","index":"0.000010799842650204"},{"denom":"ASSET13","index":"0.000003716482933529"},{"denom":"ASSET14","index":"0.000011203544902380"},{"denom":"ASSET15","index":"0.000008010260087670"},{"denom":"ASSET16","index":"0.000005584816956599"},{"denom":"ASSET17","index":"0.000003965970925374"},{"denom":"ASSET18","index":"0.000001889326540182"},{"denom":"ASSET2","index":"0.000003659157213720"},{"denom":"ASSET3","index":"0.000001070618372770"},{"denom":"ASSET4","index":"0.000010074793405297"},{"denom":"ASSET5","index":"0.000000830819234978"},{"denom":"ASSET6","index":"0.000003381410064224"},{"denom":"ASSET7","index":"0.000005179499895414"},{"denom":"ASSET8","index":"0.000006757975701421"},{"denom":"ASSET9","index":"0.000002918767283230"}],"last_reward_claim_height":"103"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET1","shares":"657595549.405798296878872357","reward_history":[{"denom":"ASSET0","index":"0.000001504632489095"},{"denom":"ASSET1","index":"0.000012543084148708"},{"denom":"ASSET10","index":"0.000008738830231438"},{"denom":"ASSET11","index":"0.000012134501498699"},{"denom":"ASSET12","index":"0.000010926897843985"},{"denom":"ASSET13","index":"0.000003760573206331"},{"denom":"ASSET14","index":"0.000011335480493994"},{"denom":"ASSET15","index":"0.000008104451906425"},{"denom":"ASSET16","index":"0.000005650267962622"},{"denom":"ASSET17","index":"0.000004012577307899"},{"denom":"ASSET18","index":"0.000001911199106291"},{"denom":"ASSET2","index":"0.000003702780265705"},{"denom":"ASSET3","index":"0.000001083281631273"},{"denom":"ASSET4","index":"0.000010193733911157"},{"denom":"ASSET5","index":"0.000000840685682831"},{"denom":"ASSET6","index":"0.000003421207682886"},{"denom":"ASSET7","index":"0.000005240341290738"},{"denom":"ASSET8","index":"0.000006837711289210"},{"denom":"ASSET9","index":"0.000002953488070376"}],"last_reward_claim_height":"119"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET7","shares":"332713287.631157232591248282","reward_history":[{"denom":"ASSET0","index":"0.000001504632489095"},{"denom":"ASSET1","index":"0.000012543084148708"},{"denom":"ASSET10","index":"0.000008738830231438"},{"denom":"ASSET11","index":"0.000012134501498699"},{"denom":"ASSET12","index":"0.000010926897843985"},{"denom":"ASSET13","index":"0.000003760573206331"},{"denom":"ASSET14","index":"0.000011335480493994"},{"denom":"ASSET15","index":"0.000008104451906425"},{"denom":"ASSET16","index":"0.000005650267962622"},{"denom":"ASSET17","index":"0.000004012577307899"},{"denom":"ASSET18","index":"0.000001911199106291"},{"denom":"ASSET2","index":"0.000003702780265705"},{"denom":"ASSET3","index":"0.000001083281631273"},{"denom":"ASSET4","index":"0.000010193733911157"},{"denom":"ASSET5","index":"0.000000840685682831"},{"denom":"ASSET6","index":"0.000003421207682886"},{"denom":"ASSET7","index":"0.000005240341290738"},{"denom":"ASSET8","index":"0.000006837711289210"},{"denom":"ASSET9","index":"0.000002953488070376"}],"last_reward_claim_height":"87"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET9","shares":"270848804.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001504632489095"},{"denom":"ASSET1","index":"0.000012543084148708"},{"denom":"ASSET10","index":"0.000008738830231438"},{"denom":"ASSET11","index":"0.000012134501498699"},{"denom":"ASSET12","index":"0.000010926897843985"},{"denom":"ASSET13","index":"0.000003760573206331"},{"denom":"ASSET14","index":"0.000011335480493994"},{"denom":"ASSET15","index":"0.000008104451906425"},{"denom":"ASSET16","index":"0.000005650267962622"},{"denom":"ASSET17","index":"0.000004012577307899"},{"denom":"ASSET18","index":"0.000001911199106291"},{"denom":"ASSET2","index":"0.000003702780265705"},{"denom":"ASSET3","index":"0.000001083281631273"},{"denom":"ASSET4","index":"0.000010193733911157"},{"denom":"ASSET5","index":"0.000000840685682831"},{"denom":"ASSET6","index":"0.000003421207682886"},{"denom":"ASSET7","index":"0.000005240341290738"},{"denom":"ASSET8","index":"0.000006837711289210"},{"denom":"ASSET9","index":"0.000002953488070376"}],"last_reward_claim_height":"99"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET11","shares":"114040828.999999998859591710","reward_history":[{"denom":"ASSET0","index":"0.000001504632489095"},{"denom":"ASSET1","index":"0.000012543084148708"},{"denom":"ASSET10","index":"0.000008738830231438"},{"denom":"ASSET11","index":"0.000012134501498699"},{"denom":"ASSET12","index":"0.000010926897843985"},{"denom":"ASSET13","index":"0.000003760573206331"},{"denom":"ASSET14","index":"0.000011335480493994"},{"denom":"ASSET15","index":"0.000008104451906425"},{"denom":"ASSET16","index":"0.000005650267962622"},{"denom":"ASSET17","index":"0.000004012577307899"},{"denom":"ASSET18","index":"0.000001911199106291"},{"denom":"ASSET2","index":"0.000003702780265705"},{"denom":"ASSET3","index":"0.000001083281631273"},{"denom":"ASSET4","index":"0.000010193733911157"},{"denom":"ASSET5","index":"0.000000840685682831"},{"denom":"ASSET6","index":"0.000003421207682886"},{"denom":"ASSET7","index":"0.000005240341290738"},{"denom":"ASSET8","index":"0.000006837711289210"},{"denom":"ASSET9","index":"0.000002953488070376"}],"last_reward_claim_height":"86"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET12","shares":"672229489.000000000000000000","reward_history":[],"last_reward_claim_height":"44"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET16","shares":"147246401.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001790270882045"},{"denom":"ASSET1","index":"0.000014924962381265"},{"denom":"ASSET10","index":"0.000010398687848362"},{"denom":"ASSET11","index":"0.000014438353512768"},{"denom":"ASSET12","index":"0.000013001639266884"},{"denom":"ASSET13","index":"0.000004474427888377"},{"denom":"ASSET14","index":"0.000013487623477013"},{"denom":"ASSET15","index":"0.000009643475881721"},{"denom":"ASSET16","index":"0.000006723198012370"},{"denom":"ASSET17","index":"0.000004774888563278"},{"denom":"ASSET18","index":"0.000002274381117071"},{"denom":"ASSET2","index":"0.000004405715467922"},{"denom":"ASSET3","index":"0.000001288670212721"},{"denom":"ASSET4","index":"0.000012129616185469"},{"denom":"ASSET5","index":"0.000001000078046809"},{"denom":"ASSET6","index":"0.000004071523241162"},{"denom":"ASSET7","index":"0.000006235339827137"},{"denom":"ASSET8","index":"0.000008136175240279"},{"denom":"ASSET9","index":"0.000003514327977106"}],"last_reward_claim_height":"99"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET18","shares":"185039467.999999999259842128","reward_history":[{"denom":"ASSET0","index":"0.000001790270882045"},{"denom":"ASSET1","index":"0.000014924962381265"},{"denom":"ASSET10","index":"0.000010398687848362"},{"denom":"ASSET11","index":"0.000014438353512768"},{"denom":"ASSET12","index":"0.000013001639266884"},{"denom":"ASSET13","index":"0.000004474427888377"},{"denom":"ASSET14","index":"0.000013487623477013"},{"denom":"ASSET15","index":"0.000009643475881721"},{"denom":"ASSET16","index":"0.000006723198012370"},{"denom":"ASSET17","index":"0.000004774888563278"},{"denom":"ASSET18","index":"0.000002274381117071"},{"denom":"ASSET2","index":"0.000004405715467922"},{"denom":"ASSET3","index":"0.000001288670212721"},{"denom":"ASSET4","index":"0.000012129616185469"},{"denom":"ASSET5","index":"0.000001000078046809"},{"denom":"ASSET6","index":"0.000004071523241162"},{"denom":"ASSET7","index":"0.000006235339827137"},{"denom":"ASSET8","index":"0.000008136175240279"},{"denom":"ASSET9","index":"0.000003514327977106"}],"last_reward_claim_height":"99"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET5","shares":"892263634.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003336473275634"},{"denom":"ASSET1","index":"0.000028284037775138"},{"denom":"ASSET10","index":"0.000022321061137243"},{"denom":"ASSET11","index":"0.000028041053149272"},{"denom":"ASSET12","index":"0.000026607048139233"},{"denom":"ASSET13","index":"0.000008795774551756"},{"denom":"ASSET14","index":"0.000025776026947277"},{"denom":"ASSET15","index":"0.000020150006768141"},{"denom":"ASSET16","index":"0.000012562977954735"},{"denom":"ASSET17","index":"0.000009778271060189"},{"denom":"ASSET18","index":"0.000004091528532498"},{"denom":"ASSET2","index":"0.000008544798017437"},{"denom":"ASSET3","index":"0.000002382883485470"},{"denom":"ASSET4","index":"0.000022934405116164"},{"denom":"ASSET5","index":"0.000001855148612588"},{"denom":"ASSET6","index":"0.000007498692848558"},{"denom":"ASSET7","index":"0.000011756140274513"},{"denom":"ASSET8","index":"0.000015991743254740"},{"denom":"ASSET9","index":"0.000006799136288961"}],"last_reward_claim_height":"162"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET12","shares":"528063536.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001835550145227"},{"denom":"ASSET1","index":"0.000015324623289081"},{"denom":"ASSET10","index":"0.000010676536631006"},{"denom":"ASSET11","index":"0.000014825027987456"},{"denom":"ASSET12","index":"0.000013348446318211"},{"denom":"ASSET13","index":"0.000004592576069005"},{"denom":"ASSET14","index":"0.000013848041619836"},{"denom":"ASSET15","index":"0.000009899388384035"},{"denom":"ASSET16","index":"0.000006901816574290"},{"denom":"ASSET17","index":"0.000004903435367793"},{"denom":"ASSET18","index":"0.000002335145446851"},{"denom":"ASSET2","index":"0.000004522262656184"},{"denom":"ASSET3","index":"0.000001321152019851"},{"denom":"ASSET4","index":"0.000012452875481226"},{"denom":"ASSET5","index":"0.000001025095544814"},{"denom":"ASSET6","index":"0.000004178097003954"},{"denom":"ASSET7","index":"0.000006402221272666"},{"denom":"ASSET8","index":"0.000008352493301969"},{"denom":"ASSET9","index":"0.000003608188289508"}],"last_reward_claim_height":"75"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET17","shares":"755484163.871641694934789232","reward_history":[{"denom":"ASSET0","index":"0.000001835550145227"},{"denom":"ASSET1","index":"0.000015324623289081"},{"denom":"ASSET10","index":"0.000010676536631006"},{"denom":"ASSET11","index":"0.000014825027987456"},{"denom":"ASSET12","index":"0.000013348446318211"},{"denom":"ASSET13","index":"0.000004592576069005"},{"denom":"ASSET14","index":"0.000013848041619836"},{"denom":"ASSET15","index":"0.000009899388384035"},{"denom":"ASSET16","index":"0.000006901816574290"},{"denom":"ASSET17","index":"0.000004903435367793"},{"denom":"ASSET18","index":"0.000002335145446851"},{"denom":"ASSET2","index":"0.000004522262656184"},{"denom":"ASSET3","index":"0.000001321152019851"},{"denom":"ASSET4","index":"0.000012452875481226"},{"denom":"ASSET5","index":"0.000001025095544814"},{"denom":"ASSET6","index":"0.000004178097003954"},{"denom":"ASSET7","index":"0.000006402221272666"},{"denom":"ASSET8","index":"0.000008352493301969"},{"denom":"ASSET9","index":"0.000003608188289508"}],"last_reward_claim_height":"89"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET2","shares":"869171431.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001764742979644"},{"denom":"ASSET1","index":"0.000014715413525055"},{"denom":"ASSET10","index":"0.000010252344388411"},{"denom":"ASSET11","index":"0.000014235671854472"},{"denom":"ASSET12","index":"0.000012819403806098"},{"denom":"ASSET13","index":"0.000004411268809023"},{"denom":"ASSET14","index":"0.000013298556836595"},{"denom":"ASSET15","index":"0.000009507714678855"},{"denom":"ASSET16","index":"0.000006629264655353"},{"denom":"ASSET17","index":"0.000004707943412672"},{"denom":"ASSET18","index":"0.000002242718729968"},{"denom":"ASSET2","index":"0.000004343575199063"},{"denom":"ASSET3","index":"0.000001270873946982"},{"denom":"ASSET4","index":"0.000011958811999481"},{"denom":"ASSET5","index":"0.000000985972145064"},{"denom":"ASSET6","index":"0.000004013936750564"},{"denom":"ASSET7","index":"0.000006147757064510"},{"denom":"ASSET8","index":"0.000008021987100262"},{"denom":"ASSET9","index":"0.000003464735549761"}],"last_reward_claim_height":"102"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET4","shares":"579322121.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003371223111771"},{"denom":"ASSET1","index":"0.000028586584995448"},{"denom":"ASSET10","index":"0.000022716281614844"},{"denom":"ASSET11","index":"0.000028381809067472"},{"denom":"ASSET12","index":"0.000027011101270499"},{"denom":"ASSET13","index":"0.000008910504058238"},{"denom":"ASSET14","index":"0.000026065694327630"},{"denom":"ASSET15","index":"0.000020479714095343"},{"denom":"ASSET16","index":"0.000012688778091614"},{"denom":"ASSET17","index":"0.000009925875585388"},{"denom":"ASSET18","index":"0.000004122881217339"},{"denom":"ASSET2","index":"0.000008649339803247"},{"denom":"ASSET3","index":"0.000002407313457267"},{"denom":"ASSET4","index":"0.000023177863483423"},{"denom":"ASSET5","index":"0.000001874397047373"},{"denom":"ASSET6","index":"0.000007568278053481"},{"denom":"ASSET7","index":"0.000011878402488901"},{"denom":"ASSET8","index":"0.000016198768839280"},{"denom":"ASSET9","index":"0.000006880150170591"}],"last_reward_claim_height":"172"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET14","shares":"749865307.000000000000000000","reward_history":[],"last_reward_claim_height":"20"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET2","shares":"849631508.578821685456306280","reward_history":[{"denom":"ASSET0","index":"0.000003090388166914"},{"denom":"ASSET1","index":"0.000026235396530584"},{"denom":"ASSET10","index":"0.000021016328726441"},{"denom":"ASSET11","index":"0.000026091077525301"},{"denom":"ASSET12","index":"0.000024916432469284"},{"denom":"ASSET13","index":"0.000008198423394567"},{"denom":"ASSET14","index":"0.000023935350029219"},{"denom":"ASSET15","index":"0.000018916111125702"},{"denom":"ASSET16","index":"0.000011633439861257"},{"denom":"ASSET17","index":"0.000009156707623184"},{"denom":"ASSET18","index":"0.000003769226369030"},{"denom":"ASSET2","index":"0.000007950992094695"},{"denom":"ASSET3","index":"0.000002205065882760"},{"denom":"ASSET4","index":"0.000021268551776440"},{"denom":"ASSET5","index":"0.000001717872208784"},{"denom":"ASSET6","index":"0.000006931889619894"},{"denom":"ASSET7","index":"0.000010897757198785"},{"denom":"ASSET8","index":"0.000014903243728132"},{"denom":"ASSET9","index":"0.000006323427167640"}],"last_reward_claim_height":"136"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET8","shares":"356479491.185512998488084353","reward_history":[{"denom":"ASSET0","index":"0.000003090388166914"},{"denom":"ASSET1","index":"0.000026235396530584"},{"denom":"ASSET10","index":"0.000021016328726441"},{"denom":"ASSET11","index":"0.000026091077525301"},{"denom":"ASSET12","index":"0.000024916432469284"},{"denom":"ASSET13","index":"0.000008198423394567"},{"denom":"ASSET14","index":"0.000023935350029219"},{"denom":"ASSET15","index":"0.000018916111125702"},{"denom":"ASSET16","index":"0.000011633439861257"},{"denom":"ASSET17","index":"0.000009156707623184"},{"denom":"ASSET18","index":"0.000003769226369030"},{"denom":"ASSET2","index":"0.000007950992094695"},{"denom":"ASSET3","index":"0.000002205065882760"},{"denom":"ASSET4","index":"0.000021268551776440"},{"denom":"ASSET5","index":"0.000001717872208784"},{"denom":"ASSET6","index":"0.000006931889619894"},{"denom":"ASSET7","index":"0.000010897757198785"},{"denom":"ASSET8","index":"0.000014903243728132"},{"denom":"ASSET9","index":"0.000006323427167640"}],"last_reward_claim_height":"183"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET17","shares":"28095683.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001519402004985"},{"denom":"ASSET1","index":"0.000012669186594649"},{"denom":"ASSET10","index":"0.000008826466179926"},{"denom":"ASSET11","index":"0.000012255973562605"},{"denom":"ASSET12","index":"0.000011036700348729"},{"denom":"ASSET13","index":"0.000003798237040326"},{"denom":"ASSET14","index":"0.000011448841492233"},{"denom":"ASSET15","index":"0.000008185476833202"},{"denom":"ASSET16","index":"0.000005707270529482"},{"denom":"ASSET17","index":"0.000004053346512768"},{"denom":"ASSET18","index":"0.000001930471259949"},{"denom":"ASSET2","index":"0.000003739819114914"},{"denom":"ASSET3","index":"0.000001093862254735"},{"denom":"ASSET4","index":"0.000010296025367816"},{"denom":"ASSET5","index":"0.000000848935723420"},{"denom":"ASSET6","index":"0.000003455768651901"},{"denom":"ASSET7","index":"0.000005292985608899"},{"denom":"ASSET8","index":"0.000006906177861104"},{"denom":"ASSET9","index":"0.000002983065805906"}],"last_reward_claim_height":"68"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET7","shares":"71681987.609952553555306263","reward_history":[{"denom":"ASSET0","index":"0.000004580582438832"},{"denom":"ASSET1","index":"0.000037483984288658"},{"denom":"ASSET10","index":"0.000032499660214303"},{"denom":"ASSET11","index":"0.000038965700064047"},{"denom":"ASSET12","index":"0.000037103230568829"},{"denom":"ASSET13","index":"0.000012572310863615"},{"denom":"ASSET14","index":"0.000035948606907820"},{"denom":"ASSET15","index":"0.000029169852951154"},{"denom":"ASSET16","index":"0.000016631043190223"},{"denom":"ASSET17","index":"0.000013476854922794"},{"denom":"ASSET18","index":"0.000005595251304571"},{"denom":"ASSET2","index":"0.000011316458569232"},{"denom":"ASSET3","index":"0.000003252952025465"},{"denom":"ASSET4","index":"0.000030728353795456"},{"denom":"ASSET5","index":"0.000002554509941654"},{"denom":"ASSET6","index":"0.000010426461044140"},{"denom":"ASSET7","index":"0.000016105643609974"},{"denom":"ASSET8","index":"0.000023198729331950"},{"denom":"ASSET9","index":"0.000009302269752593"}],"last_reward_claim_height":"183"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET12","shares":"478900098.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001518878942956"},{"denom":"ASSET1","index":"0.000012665267621292"},{"denom":"ASSET10","index":"0.000008823986077449"},{"denom":"ASSET11","index":"0.000012252067733139"},{"denom":"ASSET12","index":"0.000011032961258059"},{"denom":"ASSET13","index":"0.000003796959064490"},{"denom":"ASSET14","index":"0.000011445207974612"},{"denom":"ASSET15","index":"0.000008182978177143"},{"denom":"ASSET16","index":"0.000005705208605625"},{"denom":"ASSET17","index":"0.000004051932467214"},{"denom":"ASSET18","index":"0.000001930172487911"},{"denom":"ASSET2","index":"0.000003738815596953"},{"denom":"ASSET3","index":"0.000001093764409816"},{"denom":"ASSET4","index":"0.000010292823511460"},{"denom":"ASSET5","index":"0.000000848799308881"},{"denom":"ASSET6","index":"0.000003454770460461"},{"denom":"ASSET7","index":"0.000005291055545873"},{"denom":"ASSET8","index":"0.000006904298477127"},{"denom":"ASSET9","index":"0.000002981997347372"}],"last_reward_claim_height":"117"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET16","shares":"206725345.457383623168001968","reward_history":[{"denom":"ASSET0","index":"0.000001518878942956"},{"denom":"ASSET1","index":"0.000012665267621292"},{"denom":"ASSET10","index":"0.000008823986077449"},{"denom":"ASSET11","index":"0.000012252067733139"},{"denom":"ASSET12","index":"0.000011032961258059"},{"denom":"ASSET13","index":"0.000003796959064490"},{"denom":"ASSET14","index":"0.000011445207974612"},{"denom":"ASSET15","index":"0.000008182978177143"},{"denom":"ASSET16","index":"0.000005705208605625"},{"denom":"ASSET17","index":"0.000004051932467214"},{"denom":"ASSET18","index":"0.000001930172487911"},{"denom":"ASSET2","index":"0.000003738815596953"},{"denom":"ASSET3","index":"0.000001093764409816"},{"denom":"ASSET4","index":"0.000010292823511460"},{"denom":"ASSET5","index":"0.000000848799308881"},{"denom":"ASSET6","index":"0.000003454770460461"},{"denom":"ASSET7","index":"0.000005291055545873"},{"denom":"ASSET8","index":"0.000006904298477127"},{"denom":"ASSET9","index":"0.000002981997347372"}],"last_reward_claim_height":"73"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET3","shares":"386627925.000000023082267735","reward_history":[{"denom":"ASSET0","index":"0.000002847838387483"},{"denom":"ASSET1","index":"0.000024182680336096"},{"denom":"ASSET10","index":"0.000019393227963423"},{"denom":"ASSET11","index":"0.000024054653395269"},{"denom":"ASSET12","index":"0.000022982316432831"},{"denom":"ASSET13","index":"0.000007558836235579"},{"denom":"ASSET14","index":"0.000022064079622497"},{"denom":"ASSET15","index":"0.000017450899901336"},{"denom":"ASSET16","index":"0.000010721434414440"},{"denom":"ASSET17","index":"0.000008446187739031"},{"denom":"ASSET18","index":"0.000003472449339717"},{"denom":"ASSET2","index":"0.000007330038539196"},{"denom":"ASSET3","index":"0.000002031951160271"},{"denom":"ASSET4","index":"0.000019603371773062"},{"denom":"ASSET5","index":"0.000001583403578691"},{"denom":"ASSET6","index":"0.000006387295602350"},{"denom":"ASSET7","index":"0.000010043914419286"},{"denom":"ASSET8","index":"0.000013741733556815"},{"denom":"ASSET9","index":"0.000005829813216311"}],"last_reward_claim_height":"141"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET10","shares":"886253110.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001387661284101"},{"denom":"ASSET1","index":"0.000011573014587468"},{"denom":"ASSET10","index":"0.000008062929395432"},{"denom":"ASSET11","index":"0.000011195232526081"},{"denom":"ASSET12","index":"0.000010081345808669"},{"denom":"ASSET13","index":"0.000003469153210252"},{"denom":"ASSET14","index":"0.000010458456853962"},{"denom":"ASSET15","index":"0.000007477132344649"},{"denom":"ASSET16","index":"0.000005213124040705"},{"denom":"ASSET17","index":"0.000003702666811251"},{"denom":"ASSET18","index":"0.000001763430297203"},{"denom":"ASSET2","index":"0.000003416142938760"},{"denom":"ASSET3","index":"0.000000999142965196"},{"denom":"ASSET4","index":"0.000009404961585085"},{"denom":"ASSET5","index":"0.000000775694605619"},{"denom":"ASSET6","index":"0.000003156459710063"},{"denom":"ASSET7","index":"0.000004834670963223"},{"denom":"ASSET8","index":"0.000006308893323556"},{"denom":"ASSET9","index":"0.000002724996361089"}],"last_reward_claim_height":"119"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET12","shares":"498513922.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001387661284101"},{"denom":"ASSET1","index":"0.000011573014587468"},{"denom":"ASSET10","index":"0.000008062929395432"},{"denom":"ASSET11","index":"0.000011195232526081"},{"denom":"ASSET12","index":"0.000010081345808669"},{"denom":"ASSET13","index":"0.000003469153210252"},{"denom":"ASSET14","index":"0.000010458456853962"},{"denom":"ASSET15","index":"0.000007477132344649"},{"denom":"ASSET16","index":"0.000005213124040705"},{"denom":"ASSET17","index":"0.000003702666811251"},{"denom":"ASSET18","index":"0.000001763430297203"},{"denom":"ASSET2","index":"0.000003416142938760"},{"denom":"ASSET3","index":"0.000000999142965196"},{"denom":"ASSET4","index":"0.000009404961585085"},{"denom":"ASSET5","index":"0.000000775694605619"},{"denom":"ASSET6","index":"0.000003156459710063"},{"denom":"ASSET7","index":"0.000004834670963223"},{"denom":"ASSET8","index":"0.000006308893323556"},{"denom":"ASSET9","index":"0.000002724996361089"}],"last_reward_claim_height":"115"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET6","shares":"582528675.897733594610444366","reward_history":[{"denom":"ASSET0","index":"0.000001740203165372"},{"denom":"ASSET1","index":"0.000014506985633466"},{"denom":"ASSET10","index":"0.000010106727386233"},{"denom":"ASSET11","index":"0.000014033828203465"},{"denom":"ASSET12","index":"0.000012637643303754"},{"denom":"ASSET13","index":"0.000004348390877948"},{"denom":"ASSET14","index":"0.000013109742216014"},{"denom":"ASSET15","index":"0.000009373174592071"},{"denom":"ASSET16","index":"0.000006535288529808"},{"denom":"ASSET17","index":"0.000004640541774324"},{"denom":"ASSET18","index":"0.000002210185042151"},{"denom":"ASSET2","index":"0.000004281704260297"},{"denom":"ASSET3","index":"0.000001252226487004"},{"denom":"ASSET4","index":"0.000011789770593618"},{"denom":"ASSET5","index":"0.000000971719285773"},{"denom":"ASSET6","index":"0.000003956739313965"},{"denom":"ASSET7","index":"0.000006060014064326"},{"denom":"ASSET8","index":"0.000007908186039228"},{"denom":"ASSET9","index":"0.000003415836748573"}],"last_reward_claim_height":"71"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET13","shares":"319092394.600796470912572474","reward_history":[{"denom":"ASSET0","index":"0.000003351161845380"},{"denom":"ASSET1","index":"0.000028416485386018"},{"denom":"ASSET10","index":"0.000022605276372189"},{"denom":"ASSET11","index":"0.000028218825237526"},{"denom":"ASSET12","index":"0.000026868556551399"},{"denom":"ASSET13","index":"0.000008859853422879"},{"denom":"ASSET14","index":"0.000025912194276628"},{"denom":"ASSET15","index":"0.000020375555431981"},{"denom":"ASSET16","index":"0.000012611404420708"},{"denom":"ASSET17","index":"0.000009873044520717"},{"denom":"ASSET18","index":"0.000004095473642305"},{"denom":"ASSET2","index":"0.000008599384819082"},{"denom":"ASSET3","index":"0.000002391571176633"},{"denom":"ASSET4","index":"0.000023040021162794"},{"denom":"ASSET5","index":"0.000001862805125681"},{"denom":"ASSET6","index":"0.000007520693553142"},{"denom":"ASSET7","index":"0.000011806544930596"},{"denom":"ASSET8","index":"0.000016107343127742"},{"denom":"ASSET9","index":"0.000006840485865179"}],"last_reward_claim_height":"178"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET7","shares":"781826158.000000000000000000","reward_history":[],"last_reward_claim_height":"48"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET10","shares":"911564974.000000000000000000","reward_history":[],"last_reward_claim_height":"36"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET4","shares":"323002295.457088565852402316","reward_history":[{"denom":"ASSET0","index":"0.000002975317591563"},{"denom":"ASSET1","index":"0.000025265738469637"},{"denom":"ASSET10","index":"0.000020245724387946"},{"denom":"ASSET11","index":"0.000025128558675417"},{"denom":"ASSET12","index":"0.000023998925764885"},{"denom":"ASSET13","index":"0.000007895668684136"},{"denom":"ASSET14","index":"0.000023051238668493"},{"denom":"ASSET15","index":"0.000018221178423268"},{"denom":"ASSET16","index":"0.000011202197653725"},{"denom":"ASSET17","index":"0.000008818540737002"},{"denom":"ASSET18","index":"0.000003629428323701"},{"denom":"ASSET2","index":"0.000007657107369447"},{"denom":"ASSET3","index":"0.000002122660280404"},{"denom":"ASSET4","index":"0.000020482509156357"},{"denom":"ASSET5","index":"0.000001654309607539"},{"denom":"ASSET6","index":"0.000006675356935536"},{"denom":"ASSET7","index":"0.000010494215679887"},{"denom":"ASSET8","index":"0.000014353927855523"},{"denom":"ASSET9","index":"0.000006089535217587"}],"last_reward_claim_height":"169"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET12","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001459800105667"},{"denom":"ASSET1","index":"0.000012176396665923"},{"denom":"ASSET10","index":"0.000008484162206626"},{"denom":"ASSET11","index":"0.000011779823335110"},{"denom":"ASSET12","index":"0.000010607197020722"},{"denom":"ASSET13","index":"0.000003650070053435"},{"denom":"ASSET14","index":"0.000011003770351536"},{"denom":"ASSET15","index":"0.000007867650218206"},{"denom":"ASSET16","index":"0.000005484791497715"},{"denom":"ASSET17","index":"0.000003895079438851"},{"denom":"ASSET18","index":"0.000001855233857943"},{"denom":"ASSET2","index":"0.000003594230705131"},{"denom":"ASSET3","index":"0.000001050691410948"},{"denom":"ASSET4","index":"0.000009896100013746"},{"denom":"ASSET5","index":"0.000000815938232363"},{"denom":"ASSET6","index":"0.000003321871434831"},{"denom":"ASSET7","index":"0.000005087078588365"},{"denom":"ASSET8","index":"0.000006638044976977"},{"denom":"ASSET9","index":"0.000002867179598640"}],"last_reward_claim_height":"85"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET13","shares":"484417098.678873274408204710","reward_history":[{"denom":"ASSET0","index":"0.000003091273620954"},{"denom":"ASSET1","index":"0.000026212594205506"},{"denom":"ASSET10","index":"0.000020831747389799"},{"denom":"ASSET11","index":"0.000026024829344923"},{"denom":"ASSET12","index":"0.000024768925461013"},{"denom":"ASSET13","index":"0.000008170539761157"},{"denom":"ASSET14","index":"0.000023900540063840"},{"denom":"ASSET15","index":"0.000018780610027247"},{"denom":"ASSET16","index":"0.000011634658240098"},{"denom":"ASSET17","index":"0.000009101405984603"},{"denom":"ASSET18","index":"0.000003780149264156"},{"denom":"ASSET2","index":"0.000007930960667726"},{"denom":"ASSET3","index":"0.000002206123035767"},{"denom":"ASSET4","index":"0.000021253166889363"},{"denom":"ASSET5","index":"0.000001718500807532"},{"denom":"ASSET6","index":"0.000006939076737962"},{"denom":"ASSET7","index":"0.000010891166816552"},{"denom":"ASSET8","index":"0.000014853628574871"},{"denom":"ASSET9","index":"0.000006308302102729"}],"last_reward_claim_height":"165"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET15","shares":"638145878.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001617402557586"},{"denom":"ASSET1","index":"0.000013485147451276"},{"denom":"ASSET10","index":"0.000009395521488362"},{"denom":"ASSET11","index":"0.000013045402724081"},{"denom":"ASSET12","index":"0.000011747619504798"},{"denom":"ASSET13","index":"0.000004042433845849"},{"denom":"ASSET14","index":"0.000012186291683878"},{"denom":"ASSET15","index":"0.000008713380887153"},{"denom":"ASSET16","index":"0.000006074912523982"},{"denom":"ASSET17","index":"0.000004313788518972"},{"denom":"ASSET18","index":"0.000002055002188551"},{"denom":"ASSET2","index":"0.000003980226055173"},{"denom":"ASSET3","index":"0.000001163714704894"},{"denom":"ASSET4","index":"0.000010959296640193"},{"denom":"ASSET5","index":"0.000000903085512923"},{"denom":"ASSET6","index":"0.000003677767486712"},{"denom":"ASSET7","index":"0.000005633022700557"},{"denom":"ASSET8","index":"0.000007351244780963"},{"denom":"ASSET9","index":"0.000003174742420725"}],"last_reward_claim_height":"76"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET10","shares":"16427387.503150067074312212","reward_history":[{"denom":"ASSET0","index":"0.000003012098530886"},{"denom":"ASSET1","index":"0.000025562058034330"},{"denom":"ASSET10","index":"0.000020450222858637"},{"denom":"ASSET11","index":"0.000025414193224582"},{"denom":"ASSET12","index":"0.000024256065084933"},{"denom":"ASSET13","index":"0.000007984561416691"},{"denom":"ASSET14","index":"0.000023318358139730"},{"denom":"ASSET15","index":"0.000018411259079989"},{"denom":"ASSET16","index":"0.000011336678183578"},{"denom":"ASSET17","index":"0.000008913774138499"},{"denom":"ASSET18","index":"0.000003674960609183"},{"denom":"ASSET2","index":"0.000007744948932800"},{"denom":"ASSET3","index":"0.000002148867969989"},{"denom":"ASSET4","index":"0.000020722540912428"},{"denom":"ASSET5","index":"0.000001674229864542"},{"denom":"ASSET6","index":"0.000006756080138401"},{"denom":"ASSET7","index":"0.000010618450136599"},{"denom":"ASSET8","index":"0.000014514789998911"},{"denom":"ASSET9","index":"0.000006159565713194"}],"last_reward_claim_height":"159"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET18","shares":"899552911.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001496654334782"},{"denom":"ASSET1","index":"0.000012477377024436"},{"denom":"ASSET10","index":"0.000008693096469902"},{"denom":"ASSET11","index":"0.000012070207597683"},{"denom":"ASSET12","index":"0.000010869145414891"},{"denom":"ASSET13","index":"0.000003740467488528"},{"denom":"ASSET14","index":"0.000011275146493218"},{"denom":"ASSET15","index":"0.000008061604145195"},{"denom":"ASSET16","index":"0.000005620924281527"},{"denom":"ASSET17","index":"0.000003991662400298"},{"denom":"ASSET18","index":"0.000001901487064682"},{"denom":"ASSET2","index":"0.000003683218415613"},{"denom":"ASSET3","index":"0.000001077217249546"},{"denom":"ASSET4","index":"0.000010139511822330"},{"denom":"ASSET5","index":"0.000000835953299404"},{"denom":"ASSET6","index":"0.000003403398967385"},{"denom":"ASSET7","index":"0.000005212586506346"},{"denom":"ASSET8","index":"0.000006801540366848"},{"denom":"ASSET9","index":"0.000002937812119289"}],"last_reward_claim_height":"107"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET0","shares":"88210862.000000000000000000","reward_history":[],"last_reward_claim_height":"20"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET4","shares":"796718177.968092476077614449","reward_history":[{"denom":"ASSET0","index":"0.000002995147819628"},{"denom":"ASSET1","index":"0.000025426980115999"},{"denom":"ASSET10","index":"0.000020372034738960"},{"denom":"ASSET11","index":"0.000025287989623967"},{"denom":"ASSET12","index":"0.000024150599022202"},{"denom":"ASSET13","index":"0.000007946076587902"},{"denom":"ASSET14","index":"0.000023198024872944"},{"denom":"ASSET15","index":"0.000018335727027304"},{"denom":"ASSET16","index":"0.000011274635486105"},{"denom":"ASSET17","index":"0.000008875015361763"},{"denom":"ASSET18","index":"0.000003653177061349"},{"denom":"ASSET2","index":"0.000007706361997735"},{"denom":"ASSET3","index":"0.000002137037997503"},{"denom":"ASSET4","index":"0.000020612735071168"},{"denom":"ASSET5","index":"0.000001665450131859"},{"denom":"ASSET6","index":"0.000006718182222688"},{"denom":"ASSET7","index":"0.000010561635089256"},{"denom":"ASSET8","index":"0.000014445035982826"},{"denom":"ASSET9","index":"0.000006128513210961"}],"last_reward_claim_height":"129"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET16","shares":"456135387.164754331948222629","reward_history":[{"denom":"ASSET0","index":"0.000002995147819628"},{"denom":"ASSET1","index":"0.000025426980115999"},{"denom":"ASSET10","index":"0.000020372034738960"},{"denom":"ASSET11","index":"0.000025287989623967"},{"denom":"ASSET12","index":"0.000024150599022202"},{"denom":"ASSET13","index":"0.000007946076587902"},{"denom":"ASSET14","index":"0.000023198024872944"},{"denom":"ASSET15","index":"0.000018335727027304"},{"denom":"ASSET16","index":"0.000011274635486105"},{"denom":"ASSET17","index":"0.000008875015361763"},{"denom":"ASSET18","index":"0.000003653177061349"},{"denom":"ASSET2","index":"0.000007706361997735"},{"denom":"ASSET3","index":"0.000002137037997503"},{"denom":"ASSET4","index":"0.000020612735071168"},{"denom":"ASSET5","index":"0.000001665450131859"},{"denom":"ASSET6","index":"0.000006718182222688"},{"denom":"ASSET7","index":"0.000010561635089256"},{"denom":"ASSET8","index":"0.000014445035982826"},{"denom":"ASSET9","index":"0.000006128513210961"}],"last_reward_claim_height":"130"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET18","shares":"431301064.728982727697307989","reward_history":[{"denom":"ASSET0","index":"0.000002995147819628"},{"denom":"ASSET1","index":"0.000025426980115999"},{"denom":"ASSET10","index":"0.000020372034738960"},{"denom":"ASSET11","index":"0.000025287989623967"},{"denom":"ASSET12","index":"0.000024150599022202"},{"denom":"ASSET13","index":"0.000007946076587902"},{"denom":"ASSET14","index":"0.000023198024872944"},{"denom":"ASSET15","index":"0.000018335727027304"},{"denom":"ASSET16","index":"0.000011274635486105"},{"denom":"ASSET17","index":"0.000008875015361763"},{"denom":"ASSET18","index":"0.000003653177061349"},{"denom":"ASSET2","index":"0.000007706361997735"},{"denom":"ASSET3","index":"0.000002137037997503"},{"denom":"ASSET4","index":"0.000020612735071168"},{"denom":"ASSET5","index":"0.000001665450131859"},{"denom":"ASSET6","index":"0.000006718182222688"},{"denom":"ASSET7","index":"0.000010561635089256"},{"denom":"ASSET8","index":"0.000014445035982826"},{"denom":"ASSET9","index":"0.000006128513210961"}],"last_reward_claim_height":"167"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET8","shares":"422919767.073266197527798266","reward_history":[{"denom":"ASSET0","index":"0.000003356752793751"},{"denom":"ASSET1","index":"0.000028516406305775"},{"denom":"ASSET10","index":"0.000022616173055400"},{"denom":"ASSET11","index":"0.000028302061322789"},{"denom":"ASSET12","index":"0.000026910491325102"},{"denom":"ASSET13","index":"0.000008878873421079"},{"denom":"ASSET14","index":"0.000025995251505598"},{"denom":"ASSET15","index":"0.000020398635157595"},{"denom":"ASSET16","index":"0.000012658071469071"},{"denom":"ASSET17","index":"0.000009885849877285"},{"denom":"ASSET18","index":"0.000004110010202724"},{"denom":"ASSET2","index":"0.000008622285743228"},{"denom":"ASSET3","index":"0.000002402314047495"},{"denom":"ASSET4","index":"0.000023121698220749"},{"denom":"ASSET5","index":"0.000001866482592061"},{"denom":"ASSET6","index":"0.000007549939309511"},{"denom":"ASSET7","index":"0.000011851024307599"},{"denom":"ASSET8","index":"0.000016149793693754"},{"denom":"ASSET9","index":"0.000006862325287189"}],"last_reward_claim_height":"160"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET13","shares":"103070217.999999996907893460","reward_history":[{"denom":"ASSET0","index":"0.000003200268554223"},{"denom":"ASSET1","index":"0.000027155061035589"},{"denom":"ASSET10","index":"0.000021699312128992"},{"denom":"ASSET11","index":"0.000026991580254755"},{"denom":"ASSET12","index":"0.000025748970079650"},{"denom":"ASSET13","index":"0.000008479073830121"},{"denom":"ASSET14","index":"0.000024769827936089"},{"denom":"ASSET15","index":"0.000019540730612944"},{"denom":"ASSET16","index":"0.000012044995213579"},{"denom":"ASSET17","index":"0.000009462424001901"},{"denom":"ASSET18","index":"0.000003906197580725"},{"denom":"ASSET2","index":"0.000008225756082433"},{"denom":"ASSET3","index":"0.000002283784004254"},{"denom":"ASSET4","index":"0.000022014648589339"},{"denom":"ASSET5","index":"0.000001779311895342"},{"denom":"ASSET6","index":"0.000007179475362032"},{"denom":"ASSET7","index":"0.000011280598785262"},{"denom":"ASSET8","index":"0.000015413911362487"},{"denom":"ASSET9","index":"0.000006542247148589"}],"last_reward_claim_height":"178"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET3","shares":"278962597.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001620184629837"},{"denom":"ASSET1","index":"0.000013508113244239"},{"denom":"ASSET10","index":"0.000009411159415052"},{"denom":"ASSET11","index":"0.000013068550109883"},{"denom":"ASSET12","index":"0.000011766766981214"},{"denom":"ASSET13","index":"0.000004049052718392"},{"denom":"ASSET14","index":"0.000012206330115570"},{"denom":"ASSET15","index":"0.000008726455301921"},{"denom":"ASSET16","index":"0.000006083441070987"},{"denom":"ASSET17","index":"0.000004319553108765"},{"denom":"ASSET18","index":"0.000002056930051793"},{"denom":"ASSET2","index":"0.000003987063045598"},{"denom":"ASSET3","index":"0.000001166532933482"},{"denom":"ASSET4","index":"0.000010977807509294"},{"denom":"ASSET5","index":"0.000000904485680309"},{"denom":"ASSET6","index":"0.000003682750106429"},{"denom":"ASSET7","index":"0.000005643877936631"},{"denom":"ASSET8","index":"0.000007362682500458"},{"denom":"ASSET9","index":"0.000003178379586880"}],"last_reward_claim_height":"75"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET10","shares":"819661651.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004736121968577"},{"denom":"ASSET1","index":"0.000038761893571018"},{"denom":"ASSET10","index":"0.000033507102183548"},{"denom":"ASSET11","index":"0.000040255954218087"},{"denom":"ASSET12","index":"0.000038296483713125"},{"denom":"ASSET13","index":"0.000012981125931500"},{"denom":"ASSET14","index":"0.000037144963211864"},{"denom":"ASSET15","index":"0.000030086100212575"},{"denom":"ASSET16","index":"0.000017200793994088"},{"denom":"ASSET17","index":"0.000013910336551622"},{"denom":"ASSET18","index":"0.000005787660096353"},{"denom":"ASSET2","index":"0.000011696689560653"},{"denom":"ASSET3","index":"0.000003364158799327"},{"denom":"ASSET4","index":"0.000031772510725021"},{"denom":"ASSET5","index":"0.000002640231519377"},{"denom":"ASSET6","index":"0.000010779027652808"},{"denom":"ASSET7","index":"0.000016649985952266"},{"denom":"ASSET8","index":"0.000023948972231982"},{"denom":"ASSET9","index":"0.000009610057695084"}],"last_reward_claim_height":"192"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET12","shares":"1000091394.715422488000000000","reward_history":[{"denom":"ASSET0","index":"0.000003154859072778"},{"denom":"ASSET1","index":"0.000026759958230198"},{"denom":"ASSET10","index":"0.000021318547828682"},{"denom":"ASSET11","index":"0.000026582778956839"},{"denom":"ASSET12","index":"0.000025324795995745"},{"denom":"ASSET13","index":"0.000008347309163095"},{"denom":"ASSET14","index":"0.000024403216779648"},{"denom":"ASSET15","index":"0.000019208461119321"},{"denom":"ASSET16","index":"0.000011872154646602"},{"denom":"ASSET17","index":"0.000009304429323264"},{"denom":"ASSET18","index":"0.000003853154066825"},{"denom":"ASSET2","index":"0.000008100524497579"},{"denom":"ASSET3","index":"0.000002251942800438"},{"denom":"ASSET4","index":"0.000021695917087147"},{"denom":"ASSET5","index":"0.000001753374642360"},{"denom":"ASSET6","index":"0.000007078305954632"},{"denom":"ASSET7","index":"0.000011118481739065"},{"denom":"ASSET8","index":"0.000015174129529137"},{"denom":"ASSET9","index":"0.000006441283498998"}],"last_reward_claim_height":"169"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET13","shares":"86546889.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004736121968577"},{"denom":"ASSET1","index":"0.000038761893571018"},{"denom":"ASSET10","index":"0.000033507102183548"},{"denom":"ASSET11","index":"0.000040255954218087"},{"denom":"ASSET12","index":"0.000038296483713125"},{"denom":"ASSET13","index":"0.000012981125931500"},{"denom":"ASSET14","index":"0.000037144963211864"},{"denom":"ASSET15","index":"0.000030086100212575"},{"denom":"ASSET16","index":"0.000017200793994088"},{"denom":"ASSET17","index":"0.000013910336551622"},{"denom":"ASSET18","index":"0.000005787660096353"},{"denom":"ASSET2","index":"0.000011696689560653"},{"denom":"ASSET3","index":"0.000003364158799327"},{"denom":"ASSET4","index":"0.000031772510725021"},{"denom":"ASSET5","index":"0.000002640231519377"},{"denom":"ASSET6","index":"0.000010779027652808"},{"denom":"ASSET7","index":"0.000016649985952266"},{"denom":"ASSET8","index":"0.000023948972231982"},{"denom":"ASSET9","index":"0.000009610057695084"}],"last_reward_claim_height":"199"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET2","shares":"560360424.762863446193223378","reward_history":[{"denom":"ASSET0","index":"0.000003066618221533"},{"denom":"ASSET1","index":"0.000026018563142658"},{"denom":"ASSET10","index":"0.000020743763118655"},{"denom":"ASSET11","index":"0.000025849025514444"},{"denom":"ASSET12","index":"0.000024635604575072"},{"denom":"ASSET13","index":"0.000008118261811936"},{"denom":"ASSET14","index":"0.000023728777879609"},{"denom":"ASSET15","index":"0.000018689177197382"},{"denom":"ASSET16","index":"0.000011544003668418"},{"denom":"ASSET17","index":"0.000009052167825210"},{"denom":"ASSET18","index":"0.000003745930402733"},{"denom":"ASSET2","index":"0.000007877080459743"},{"denom":"ASSET3","index":"0.000002188594145460"},{"denom":"ASSET4","index":"0.000021094338825720"},{"denom":"ASSET5","index":"0.000001705356613908"},{"denom":"ASSET6","index":"0.000006882744986340"},{"denom":"ASSET7","index":"0.000010809249072439"},{"denom":"ASSET8","index":"0.000014757775472241"},{"denom":"ASSET9","index":"0.000006264987011427"}],"last_reward_claim_height":"165"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET17","shares":"9778224.962026643238140890","reward_history":[{"denom":"ASSET0","index":"0.000001565910537906"},{"denom":"ASSET1","index":"0.000013053983025959"},{"denom":"ASSET10","index":"0.000009094819386579"},{"denom":"ASSET11","index":"0.000012628414118813"},{"denom":"ASSET12","index":"0.000011371841840295"},{"denom":"ASSET13","index":"0.000003913403541838"},{"denom":"ASSET14","index":"0.000011796953146466"},{"denom":"ASSET15","index":"0.000008434501179040"},{"denom":"ASSET16","index":"0.000005880630135191"},{"denom":"ASSET17","index":"0.000004176066501732"},{"denom":"ASSET18","index":"0.000001989191440174"},{"denom":"ASSET2","index":"0.000003853457814057"},{"denom":"ASSET3","index":"0.000001127071202473"},{"denom":"ASSET4","index":"0.000010608563413286"},{"denom":"ASSET5","index":"0.000000874933065013"},{"denom":"ASSET6","index":"0.000003561050790760"},{"denom":"ASSET7","index":"0.000005453688425119"},{"denom":"ASSET8","index":"0.000007116152768840"},{"denom":"ASSET9","index":"0.000003073705751932"}],"last_reward_claim_height":"83"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET0","shares":"1000010405.378236993000000000","reward_history":[{"denom":"ASSET0","index":"0.000003010548827117"},{"denom":"ASSET1","index":"0.000025517681435823"},{"denom":"ASSET10","index":"0.000020207909525991"},{"denom":"ASSET11","index":"0.000025316824190850"},{"denom":"ASSET12","index":"0.000024059273468565"},{"denom":"ASSET13","index":"0.000007945703994160"},{"denom":"ASSET14","index":"0.000023261456497592"},{"denom":"ASSET15","index":"0.000018230653165683"},{"denom":"ASSET16","index":"0.000011330852554208"},{"denom":"ASSET17","index":"0.000008840468160143"},{"denom":"ASSET18","index":"0.000003685449036638"},{"denom":"ASSET2","index":"0.000007715875534239"},{"denom":"ASSET3","index":"0.000002150116713749"},{"denom":"ASSET4","index":"0.000020690763011385"},{"denom":"ASSET5","index":"0.000001674170167376"},{"denom":"ASSET6","index":"0.000006761947340508"},{"denom":"ASSET7","index":"0.000010605047135869"},{"denom":"ASSET8","index":"0.000014444866674878"},{"denom":"ASSET9","index":"0.000006137206230949"}],"last_reward_claim_height":"134"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET1","shares":"1000220008.240309535000000000","reward_history":[{"denom":"ASSET0","index":"0.000004628196216454"},{"denom":"ASSET1","index":"0.000037795277380303"},{"denom":"ASSET10","index":"0.000032676632065203"},{"denom":"ASSET11","index":"0.000039304101124319"},{"denom":"ASSET12","index":"0.000037329106659292"},{"denom":"ASSET13","index":"0.000012685957294416"},{"denom":"ASSET14","index":"0.000036296237966481"},{"denom":"ASSET15","index":"0.000029358352032693"},{"denom":"ASSET16","index":"0.000016782013119957"},{"denom":"ASSET17","index":"0.000013552222419598"},{"denom":"ASSET18","index":"0.000005664432888245"},{"denom":"ASSET2","index":"0.000011394866388508"},{"denom":"ASSET3","index":"0.000003287725213992"},{"denom":"ASSET4","index":"0.000030999049090585"},{"denom":"ASSET5","index":"0.000002581694668490"},{"denom":"ASSET6","index":"0.000010547613503465"},{"denom":"ASSET7","index":"0.000016263806219015"},{"denom":"ASSET8","index":"0.000023421280150023"},{"denom":"ASSET9","index":"0.000009378776027781"}],"last_reward_claim_height":"198"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET8","shares":"168622520.234984721930012931","reward_history":[{"denom":"ASSET0","index":"0.000001616793771814"},{"denom":"ASSET1","index":"0.000013481664806896"},{"denom":"ASSET10","index":"0.000009392973001731"},{"denom":"ASSET11","index":"0.000013042136425966"},{"denom":"ASSET12","index":"0.000011745108533466"},{"denom":"ASSET13","index":"0.000004041984429535"},{"denom":"ASSET14","index":"0.000012183439289380"},{"denom":"ASSET15","index":"0.000008710326742521"},{"denom":"ASSET16","index":"0.000006073156456940"},{"denom":"ASSET17","index":"0.000004312647683187"},{"denom":"ASSET18","index":"0.000002053926902712"},{"denom":"ASSET2","index":"0.000003979707928695"},{"denom":"ASSET3","index":"0.000001164091515706"},{"denom":"ASSET4","index":"0.000010955873647818"},{"denom":"ASSET5","index":"0.000000903009262183"},{"denom":"ASSET6","index":"0.000003677906424623"},{"denom":"ASSET7","index":"0.000005632430450993"},{"denom":"ASSET8","index":"0.000007349824724165"},{"denom":"ASSET9","index":"0.000003173706292820"}],"last_reward_claim_height":"105"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET10","shares":"710359384.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003010548827117"},{"denom":"ASSET1","index":"0.000025517681435823"},{"denom":"ASSET10","index":"0.000020207909525991"},{"denom":"ASSET11","index":"0.000025316824190850"},{"denom":"ASSET12","index":"0.000024059273468565"},{"denom":"ASSET13","index":"0.000007945703994160"},{"denom":"ASSET14","index":"0.000023261456497592"},{"denom":"ASSET15","index":"0.000018230653165683"},{"denom":"ASSET16","index":"0.000011330852554208"},{"denom":"ASSET17","index":"0.000008840468160143"},{"denom":"ASSET18","index":"0.000003685449036638"},{"denom":"ASSET2","index":"0.000007715875534239"},{"denom":"ASSET3","index":"0.000002150116713749"},{"denom":"ASSET4","index":"0.000020690763011385"},{"denom":"ASSET5","index":"0.000001674170167376"},{"denom":"ASSET6","index":"0.000006761947340508"},{"denom":"ASSET7","index":"0.000010605047135869"},{"denom":"ASSET8","index":"0.000014444866674878"},{"denom":"ASSET9","index":"0.000006137206230949"}],"last_reward_claim_height":"167"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET14","shares":"23220841.397254631230308520","reward_history":[{"denom":"ASSET0","index":"0.000001616793771814"},{"denom":"ASSET1","index":"0.000013481664806896"},{"denom":"ASSET10","index":"0.000009392973001731"},{"denom":"ASSET11","index":"0.000013042136425966"},{"denom":"ASSET12","index":"0.000011745108533466"},{"denom":"ASSET13","index":"0.000004041984429535"},{"denom":"ASSET14","index":"0.000012183439289380"},{"denom":"ASSET15","index":"0.000008710326742521"},{"denom":"ASSET16","index":"0.000006073156456940"},{"denom":"ASSET17","index":"0.000004312647683187"},{"denom":"ASSET18","index":"0.000002053926902712"},{"denom":"ASSET2","index":"0.000003979707928695"},{"denom":"ASSET3","index":"0.000001164091515706"},{"denom":"ASSET4","index":"0.000010955873647818"},{"denom":"ASSET5","index":"0.000000903009262183"},{"denom":"ASSET6","index":"0.000003677906424623"},{"denom":"ASSET7","index":"0.000005632430450993"},{"denom":"ASSET8","index":"0.000007349824724165"},{"denom":"ASSET9","index":"0.000003173706292820"}],"last_reward_claim_height":"68"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET15","shares":"7413900.000000000000000000","reward_history":[],"last_reward_claim_height":"1"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET5","shares":"401155297.078352537574136227","reward_history":[{"denom":"ASSET0","index":"0.000003202417698287"},{"denom":"ASSET1","index":"0.000027176874960756"},{"denom":"ASSET10","index":"0.000021729724210241"},{"denom":"ASSET11","index":"0.000027016578438308"},{"denom":"ASSET12","index":"0.000025779554956391"},{"denom":"ASSET13","index":"0.000008487649506725"},{"denom":"ASSET14","index":"0.000024790682929963"},{"denom":"ASSET15","index":"0.000019565798539307"},{"denom":"ASSET16","index":"0.000012053877846841"},{"denom":"ASSET17","index":"0.000009473617164606"},{"denom":"ASSET18","index":"0.000003908301251667"},{"denom":"ASSET2","index":"0.000008233254558201"},{"denom":"ASSET3","index":"0.000002285025567503"},{"denom":"ASSET4","index":"0.000022032200437673"},{"denom":"ASSET5","index":"0.000001780306156687"},{"denom":"ASSET6","index":"0.000007184182778940"},{"denom":"ASSET7","index":"0.000011289430429576"},{"denom":"ASSET8","index":"0.000015429251463912"},{"denom":"ASSET9","index":"0.000006548040900334"}],"last_reward_claim_height":"143"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET9","shares":"682100293.335162041594364656","reward_history":[{"denom":"ASSET0","index":"0.000003202417698287"},{"denom":"ASSET1","index":"0.000027176874960756"},{"denom":"ASSET10","index":"0.000021729724210241"},{"denom":"ASSET11","index":"0.000027016578438308"},{"denom":"ASSET12","index":"0.000025779554956391"},{"denom":"ASSET13","index":"0.000008487649506725"},{"denom":"ASSET14","index":"0.000024790682929963"},{"denom":"ASSET15","index":"0.000019565798539307"},{"denom":"ASSET16","index":"0.000012053877846841"},{"denom":"ASSET17","index":"0.000009473617164606"},{"denom":"ASSET18","index":"0.000003908301251667"},{"denom":"ASSET2","index":"0.000008233254558201"},{"denom":"ASSET3","index":"0.000002285025567503"},{"denom":"ASSET4","index":"0.000022032200437673"},{"denom":"ASSET5","index":"0.000001780306156687"},{"denom":"ASSET6","index":"0.000007184182778940"},{"denom":"ASSET7","index":"0.000011289430429576"},{"denom":"ASSET8","index":"0.000015429251463912"},{"denom":"ASSET9","index":"0.000006548040900334"}],"last_reward_claim_height":"145"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET1","shares":"974837671.337179874041308380","reward_history":[{"denom":"ASSET0","index":"0.000002874619638549"},{"denom":"ASSET1","index":"0.000024442633186143"},{"denom":"ASSET10","index":"0.000019689737510784"},{"denom":"ASSET11","index":"0.000024334399718263"},{"denom":"ASSET12","index":"0.000023294058494145"},{"denom":"ASSET13","index":"0.000007650065286478"},{"denom":"ASSET14","index":"0.000022306974942610"},{"denom":"ASSET15","index":"0.000017702453996022"},{"denom":"ASSET16","index":"0.000010830667352685"},{"denom":"ASSET17","index":"0.000008561334956642"},{"denom":"ASSET18","index":"0.000003501743239949"},{"denom":"ASSET2","index":"0.000007413384379561"},{"denom":"ASSET3","index":"0.000002050775894848"},{"denom":"ASSET4","index":"0.000019811877393900"},{"denom":"ASSET5","index":"0.000001596563839644"},{"denom":"ASSET6","index":"0.000006447875450380"},{"denom":"ASSET7","index":"0.000010149425285061"},{"denom":"ASSET8","index":"0.000013906577801610"},{"denom":"ASSET9","index":"0.000005896530335304"}],"last_reward_claim_height":"155"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET5","shares":"60033139.000000000000000000","reward_history":[],"last_reward_claim_height":"17"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET12","shares":"54522608.660499011295454525","reward_history":[{"denom":"ASSET0","index":"0.000002874619638549"},{"denom":"ASSET1","index":"0.000024442633186143"},{"denom":"ASSET10","index":"0.000019689737510784"},{"denom":"ASSET11","index":"0.000024334399718263"},{"denom":"ASSET12","index":"0.000023294058494145"},{"denom":"ASSET13","index":"0.000007650065286478"},{"denom":"ASSET14","index":"0.000022306974942610"},{"denom":"ASSET15","index":"0.000017702453996022"},{"denom":"ASSET16","index":"0.000010830667352685"},{"denom":"ASSET17","index":"0.000008561334956642"},{"denom":"ASSET18","index":"0.000003501743239949"},{"denom":"ASSET2","index":"0.000007413384379561"},{"denom":"ASSET3","index":"0.000002050775894848"},{"denom":"ASSET4","index":"0.000019811877393900"},{"denom":"ASSET5","index":"0.000001596563839644"},{"denom":"ASSET6","index":"0.000006447875450380"},{"denom":"ASSET7","index":"0.000010149425285061"},{"denom":"ASSET8","index":"0.000013906577801610"},{"denom":"ASSET9","index":"0.000005896530335304"}],"last_reward_claim_height":"132"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET6","shares":"884392706.000000016803461414","reward_history":[{"denom":"ASSET0","index":"0.000001744355646452"},{"denom":"ASSET1","index":"0.000014544558741461"},{"denom":"ASSET10","index":"0.000010133244841823"},{"denom":"ASSET11","index":"0.000014070651242217"},{"denom":"ASSET12","index":"0.000012670295178174"},{"denom":"ASSET13","index":"0.000004360461787457"},{"denom":"ASSET14","index":"0.000013143775348745"},{"denom":"ASSET15","index":"0.000009397812194213"},{"denom":"ASSET16","index":"0.000006552230555377"},{"denom":"ASSET17","index":"0.000004653181929010"},{"denom":"ASSET18","index":"0.000002216553831001"},{"denom":"ASSET2","index":"0.000004293371185670"},{"denom":"ASSET3","index":"0.000001255918972299"},{"denom":"ASSET4","index":"0.000011819911117312"},{"denom":"ASSET5","index":"0.000000974736704938"},{"denom":"ASSET6","index":"0.000003967319407560"},{"denom":"ASSET7","index":"0.000006076186412764"},{"denom":"ASSET8","index":"0.000007929083542361"},{"denom":"ASSET9","index":"0.000003424611991834"}],"last_reward_claim_height":"122"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET15","shares":"334291633.313921766493933541","reward_history":[{"denom":"ASSET0","index":"0.000003377008276018"},{"denom":"ASSET1","index":"0.000028642142456639"},{"denom":"ASSET10","index":"0.000022800592191853"},{"denom":"ASSET11","index":"0.000028447577997463"},{"denom":"ASSET12","index":"0.000027093635853923"},{"denom":"ASSET13","index":"0.000008933092474106"},{"denom":"ASSET14","index":"0.000026119259559896"},{"denom":"ASSET15","index":"0.000020548756595198"},{"denom":"ASSET16","index":"0.000012710670192565"},{"denom":"ASSET17","index":"0.000009956402105067"},{"denom":"ASSET18","index":"0.000004127475104327"},{"denom":"ASSET2","index":"0.000008669602227225"},{"denom":"ASSET3","index":"0.000002410895003349"},{"denom":"ASSET4","index":"0.000023222264254358"},{"denom":"ASSET5","index":"0.000001877874241403"},{"denom":"ASSET6","index":"0.000007579654674160"},{"denom":"ASSET7","index":"0.000011900488798179"},{"denom":"ASSET8","index":"0.000016239324105118"},{"denom":"ASSET9","index":"0.000006895771583569"}],"last_reward_claim_height":"176"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET11","shares":"319932132.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003044385892570"},{"denom":"ASSET1","index":"0.000025830014188245"},{"denom":"ASSET10","index":"0.000020607856539150"},{"denom":"ASSET11","index":"0.000025666657138152"},{"denom":"ASSET12","index":"0.000024468008636658"},{"denom":"ASSET13","index":"0.000008060303383676"},{"denom":"ASSET14","index":"0.000023559408638801"},{"denom":"ASSET15","index":"0.000018562848593971"},{"denom":"ASSET16","index":"0.000011459854746185"},{"denom":"ASSET17","index":"0.000008991538648143"},{"denom":"ASSET18","index":"0.000003718456390600"},{"denom":"ASSET2","index":"0.000007821717005664"},{"denom":"ASSET3","index":"0.000002173111618200"},{"denom":"ASSET4","index":"0.000020942104557307"},{"denom":"ASSET5","index":"0.000001691598021351"},{"denom":"ASSET6","index":"0.000006831113312915"},{"denom":"ASSET7","index":"0.000010730587410374"},{"denom":"ASSET8","index":"0.000014654605067850"},{"denom":"ASSET9","index":"0.000006220578615076"}],"last_reward_claim_height":"172"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET16","shares":"477016545.999999997881912916","reward_history":[],"last_reward_claim_height":"44"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET11","shares":"950339555.000000000000000000","reward_history":[],"last_reward_claim_height":"61"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET12","shares":"156172936.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003004514310835"},{"denom":"ASSET1","index":"0.000025497942224476"},{"denom":"ASSET10","index":"0.000020385999177782"},{"denom":"ASSET11","index":"0.000025346802479017"},{"denom":"ASSET12","index":"0.000024185328023735"},{"denom":"ASSET13","index":"0.000007962788555043"},{"denom":"ASSET14","index":"0.000023259189454501"},{"denom":"ASSET15","index":"0.000018355567065709"},{"denom":"ASSET16","index":"0.000011309092459120"},{"denom":"ASSET17","index":"0.000008887662321727"},{"denom":"ASSET18","index":"0.000003666570499762"},{"denom":"ASSET2","index":"0.000007723995884874"},{"denom":"ASSET3","index":"0.000002143405494402"},{"denom":"ASSET4","index":"0.000020670641097733"},{"denom":"ASSET5","index":"0.000001670336124344"},{"denom":"ASSET6","index":"0.000006739845385808"},{"denom":"ASSET7","index":"0.000010591422556410"},{"denom":"ASSET8","index":"0.000014475095162856"},{"denom":"ASSET9","index":"0.000006143360978771"}],"last_reward_claim_height":"164"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET17","shares":"776245371.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003004514310835"},{"denom":"ASSET1","index":"0.000025497942224476"},{"denom":"ASSET10","index":"0.000020385999177782"},{"denom":"ASSET11","index":"0.000025346802479017"},{"denom":"ASSET12","index":"0.000024185328023735"},{"denom":"ASSET13","index":"0.000007962788555043"},{"denom":"ASSET14","index":"0.000023259189454501"},{"denom":"ASSET15","index":"0.000018355567065709"},{"denom":"ASSET16","index":"0.000011309092459120"},{"denom":"ASSET17","index":"0.000008887662321727"},{"denom":"ASSET18","index":"0.000003666570499762"},{"denom":"ASSET2","index":"0.000007723995884874"},{"denom":"ASSET3","index":"0.000002143405494402"},{"denom":"ASSET4","index":"0.000020670641097733"},{"denom":"ASSET5","index":"0.000001670336124344"},{"denom":"ASSET6","index":"0.000006739845385808"},{"denom":"ASSET7","index":"0.000010591422556410"},{"denom":"ASSET8","index":"0.000014475095162856"},{"denom":"ASSET9","index":"0.000006143360978771"}],"last_reward_claim_height":"124"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET15","shares":"41493.163531164725146950","reward_history":[{"denom":"ASSET0","index":"0.000001507842106347"},{"denom":"ASSET1","index":"0.000012572313391156"},{"denom":"ASSET10","index":"0.000008759356679472"},{"denom":"ASSET11","index":"0.000012162445176153"},{"denom":"ASSET12","index":"0.000010952151629736"},{"denom":"ASSET13","index":"0.000003769211161813"},{"denom":"ASSET14","index":"0.000011361231636633"},{"denom":"ASSET15","index":"0.000008123272738112"},{"denom":"ASSET16","index":"0.000005663669344042"},{"denom":"ASSET17","index":"0.000004022225963767"},{"denom":"ASSET18","index":"0.000001916133905138"},{"denom":"ASSET2","index":"0.000003711277866039"},{"denom":"ASSET3","index":"0.000001085756665704"},{"denom":"ASSET4","index":"0.000010217147571101"},{"denom":"ASSET5","index":"0.000000842594465073"},{"denom":"ASSET6","index":"0.000003429493468225"},{"denom":"ASSET7","index":"0.000005252224712828"},{"denom":"ASSET8","index":"0.000006853863583762"},{"denom":"ASSET9","index":"0.000002960115541236"}],"last_reward_claim_height":"112"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET0","shares":"798480485.738166393191458695","reward_history":[{"denom":"ASSET0","index":"0.000002499545170163"},{"denom":"ASSET1","index":"0.000021282413071401"},{"denom":"ASSET10","index":"0.000017412808765385"},{"denom":"ASSET11","index":"0.000021259874812403"},{"denom":"ASSET12","index":"0.000020486111882687"},{"denom":"ASSET13","index":"0.000006694303381301"},{"denom":"ASSET14","index":"0.000019446986985139"},{"denom":"ASSET15","index":"0.000015606004703242"},{"denom":"ASSET16","index":"0.000009412782427040"},{"denom":"ASSET17","index":"0.000007528963649123"},{"denom":"ASSET18","index":"0.000003027066879988"},{"denom":"ASSET2","index":"0.000006477094521478"},{"denom":"ASSET3","index":"0.000001780578331809"},{"denom":"ASSET4","index":"0.000017246051064985"},{"denom":"ASSET5","index":"0.000001387924123500"},{"denom":"ASSET6","index":"0.000005593713918003"},{"denom":"ASSET7","index":"0.000008831780754063"},{"denom":"ASSET8","index":"0.000012169406160300"},{"denom":"ASSET9","index":"0.000005149034362400"}],"last_reward_claim_height":"175"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET1","shares":"570591944.841373557760901488","reward_history":[{"denom":"ASSET0","index":"0.000003043964098015"},{"denom":"ASSET1","index":"0.000025828331615061"},{"denom":"ASSET10","index":"0.000020594675215425"},{"denom":"ASSET11","index":"0.000025661520704142"},{"denom":"ASSET12","index":"0.000024456429429906"},{"denom":"ASSET13","index":"0.000008058244190043"},{"denom":"ASSET14","index":"0.000023555461855486"},{"denom":"ASSET15","index":"0.000018552812657155"},{"denom":"ASSET16","index":"0.000011456604402492"},{"denom":"ASSET17","index":"0.000008987560143691"},{"denom":"ASSET18","index":"0.000003716794339222"},{"denom":"ASSET2","index":"0.000007820148034807"},{"denom":"ASSET3","index":"0.000002173135080244"},{"denom":"ASSET4","index":"0.000020938599170426"},{"denom":"ASSET5","index":"0.000001690207511083"},{"denom":"ASSET6","index":"0.000006829800145738"},{"denom":"ASSET7","index":"0.000010729300481432"},{"denom":"ASSET8","index":"0.000014648719853803"},{"denom":"ASSET9","index":"0.000006217447736766"}],"last_reward_claim_height":"181"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET12","shares":"1000091394.692251710000000000","reward_history":[{"denom":"ASSET0","index":"0.000003043964098015"},{"denom":"ASSET1","index":"0.000025828331615061"},{"denom":"ASSET10","index":"0.000020594675215425"},{"denom":"ASSET11","index":"0.000025661520704142"},{"denom":"ASSET12","index":"0.000024456429429906"},{"denom":"ASSET13","index":"0.000008058244190043"},{"denom":"ASSET14","index":"0.000023555461855486"},{"denom":"ASSET15","index":"0.000018552812657155"},{"denom":"ASSET16","index":"0.000011456604402492"},{"denom":"ASSET17","index":"0.000008987560143691"},{"denom":"ASSET18","index":"0.000003716794339222"},{"denom":"ASSET2","index":"0.000007820148034807"},{"denom":"ASSET3","index":"0.000002173135080244"},{"denom":"ASSET4","index":"0.000020938599170426"},{"denom":"ASSET5","index":"0.000001690207511083"},{"denom":"ASSET6","index":"0.000006829800145738"},{"denom":"ASSET7","index":"0.000010729300481432"},{"denom":"ASSET8","index":"0.000014648719853803"},{"denom":"ASSET9","index":"0.000006217447736766"}],"last_reward_claim_height":"138"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET18","shares":"754868443.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001552339226368"},{"denom":"ASSET1","index":"0.000012948480372324"},{"denom":"ASSET10","index":"0.000009021431734191"},{"denom":"ASSET11","index":"0.000012526515146109"},{"denom":"ASSET12","index":"0.000011279099696349"},{"denom":"ASSET13","index":"0.000003880848065920"},{"denom":"ASSET14","index":"0.000011701064922564"},{"denom":"ASSET15","index":"0.000008365383608761"},{"denom":"ASSET16","index":"0.000005830512213323"},{"denom":"ASSET17","index":"0.000004142651308462"},{"denom":"ASSET18","index":"0.000001971224414436"},{"denom":"ASSET2","index":"0.000003822327341117"},{"denom":"ASSET3","index":"0.000001118053847563"},{"denom":"ASSET4","index":"0.000010521410312050"},{"denom":"ASSET5","index":"0.000000865490719463"},{"denom":"ASSET6","index":"0.000003529723717099"},{"denom":"ASSET7","index":"0.000005408546987108"},{"denom":"ASSET8","index":"0.000007056367396050"},{"denom":"ASSET9","index":"0.000003046157727933"}],"last_reward_claim_height":"108"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET2","shares":"2761647.940942881573572640","reward_history":[{"denom":"ASSET0","index":"0.000003932141229954"},{"denom":"ASSET1","index":"0.000031982273733453"},{"denom":"ASSET10","index":"0.000028524807141068"},{"denom":"ASSET11","index":"0.000033650870548373"},{"denom":"ASSET12","index":"0.000032189741660520"},{"denom":"ASSET13","index":"0.000010928281530915"},{"denom":"ASSET14","index":"0.000031029292859346"},{"denom":"ASSET15","index":"0.000025528430167550"},{"denom":"ASSET16","index":"0.000014169702033303"},{"denom":"ASSET17","index":"0.000011665236620037"},{"denom":"ASSET18","index":"0.000004785741423778"},{"denom":"ASSET2","index":"0.000009671723513504"},{"denom":"ASSET3","index":"0.000002787177463987"},{"denom":"ASSET4","index":"0.000026276537470003"},{"denom":"ASSET5","index":"0.000002193093087113"},{"denom":"ASSET6","index":"0.000008967187788370"},{"denom":"ASSET7","index":"0.000013834455896763"},{"denom":"ASSET8","index":"0.000020224290111997"},{"denom":"ASSET9","index":"0.000008004370791503"}],"last_reward_claim_height":"185"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET3","shares":"160120341.033956492063210115","reward_history":[{"denom":"ASSET0","index":"0.000002320380931676"},{"denom":"ASSET1","index":"0.000019748951316256"},{"denom":"ASSET10","index":"0.000016101172379351"},{"denom":"ASSET11","index":"0.000019714000020718"},{"denom":"ASSET12","index":"0.000018967805559844"},{"denom":"ASSET13","index":"0.000006204998608741"},{"denom":"ASSET14","index":"0.000018041457784230"},{"denom":"ASSET15","index":"0.000014440911570898"},{"denom":"ASSET16","index":"0.000008738221404310"},{"denom":"ASSET17","index":"0.000006970584758543"},{"denom":"ASSET18","index":"0.000002814127990287"},{"denom":"ASSET2","index":"0.000006006105656449"},{"denom":"ASSET3","index":"0.000001653724297068"},{"denom":"ASSET4","index":"0.000016005284799403"},{"denom":"ASSET5","index":"0.000001288969102308"},{"denom":"ASSET6","index":"0.000005195185892122"},{"denom":"ASSET7","index":"0.000008196101819524"},{"denom":"ASSET8","index":"0.000011280171312915"},{"denom":"ASSET9","index":"0.000004774394171461"}],"last_reward_claim_height":"123"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET6","shares":"570545642.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003932141229954"},{"denom":"ASSET1","index":"0.000031982273733453"},{"denom":"ASSET10","index":"0.000028524807141068"},{"denom":"ASSET11","index":"0.000033650870548373"},{"denom":"ASSET12","index":"0.000032189741660520"},{"denom":"ASSET13","index":"0.000010928281530915"},{"denom":"ASSET14","index":"0.000031029292859346"},{"denom":"ASSET15","index":"0.000025528430167550"},{"denom":"ASSET16","index":"0.000014169702033303"},{"denom":"ASSET17","index":"0.000011665236620037"},{"denom":"ASSET18","index":"0.000004785741423778"},{"denom":"ASSET2","index":"0.000009671723513504"},{"denom":"ASSET3","index":"0.000002787177463987"},{"denom":"ASSET4","index":"0.000026276537470003"},{"denom":"ASSET5","index":"0.000002193093087113"},{"denom":"ASSET6","index":"0.000008967187788370"},{"denom":"ASSET7","index":"0.000013834455896763"},{"denom":"ASSET8","index":"0.000020224290111997"},{"denom":"ASSET9","index":"0.000008004370791503"}],"last_reward_claim_height":"187"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET11","shares":"270369314.558930548808871141","reward_history":[{"denom":"ASSET0","index":"0.000004988100402711"},{"denom":"ASSET1","index":"0.000040830811222204"},{"denom":"ASSET10","index":"0.000035211557233449"},{"denom":"ASSET11","index":"0.000042368225765116"},{"denom":"ASSET12","index":"0.000040283068049268"},{"denom":"ASSET13","index":"0.000013656840057503"},{"denom":"ASSET14","index":"0.000039101529800040"},{"denom":"ASSET15","index":"0.000031628202661313"},{"denom":"ASSET16","index":"0.000018124368514983"},{"denom":"ASSET17","index":"0.000014635120510330"},{"denom":"ASSET18","index":"0.000006099363487354"},{"denom":"ASSET2","index":"0.000012317983770908"},{"denom":"ASSET3","index":"0.000003543214603465"},{"denom":"ASSET4","index":"0.000033464976861775"},{"denom":"ASSET5","index":"0.000002781716792708"},{"denom":"ASSET6","index":"0.000011353508340787"},{"denom":"ASSET7","index":"0.000017532655976265"},{"denom":"ASSET8","index":"0.000025192183938276"},{"denom":"ASSET9","index":"0.000010118614836237"}],"last_reward_claim_height":"195"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET13","shares":"334042982.999999988976581561","reward_history":[{"denom":"ASSET0","index":"0.000003342998947188"},{"denom":"ASSET1","index":"0.000028345782457833"},{"denom":"ASSET10","index":"0.000022532322238539"},{"denom":"ASSET11","index":"0.000028144588841629"},{"denom":"ASSET12","index":"0.000026788988923046"},{"denom":"ASSET13","index":"0.000008836278349189"},{"denom":"ASSET14","index":"0.000025846526421467"},{"denom":"ASSET15","index":"0.000020312521464953"},{"denom":"ASSET16","index":"0.000012581099317360"},{"denom":"ASSET17","index":"0.000009844015126225"},{"denom":"ASSET18","index":"0.000004087085525414"},{"denom":"ASSET2","index":"0.000008577030596387"},{"denom":"ASSET3","index":"0.000002386540105172"},{"denom":"ASSET4","index":"0.000022982635628207"},{"denom":"ASSET5","index":"0.000001858980311097"},{"denom":"ASSET6","index":"0.000007503977785171"},{"denom":"ASSET7","index":"0.000011778054778213"},{"denom":"ASSET8","index":"0.000016064148587518"},{"denom":"ASSET9","index":"0.000006822246648031"}],"last_reward_claim_height":"165"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET17","shares":"52594234.668682238275710576","reward_history":[{"denom":"ASSET0","index":"0.000003342998947188"},{"denom":"ASSET1","index":"0.000028345782457833"},{"denom":"ASSET10","index":"0.000022532322238539"},{"denom":"ASSET11","index":"0.000028144588841629"},{"denom":"ASSET12","index":"0.000026788988923046"},{"denom":"ASSET13","index":"0.000008836278349189"},{"denom":"ASSET14","index":"0.000025846526421467"},{"denom":"ASSET15","index":"0.000020312521464953"},{"denom":"ASSET16","index":"0.000012581099317360"},{"denom":"ASSET17","index":"0.000009844015126225"},{"denom":"ASSET18","index":"0.000004087085525414"},{"denom":"ASSET2","index":"0.000008577030596387"},{"denom":"ASSET3","index":"0.000002386540105172"},{"denom":"ASSET4","index":"0.000022982635628207"},{"denom":"ASSET5","index":"0.000001858980311097"},{"denom":"ASSET6","index":"0.000007503977785171"},{"denom":"ASSET7","index":"0.000011778054778213"},{"denom":"ASSET8","index":"0.000016064148587518"},{"denom":"ASSET9","index":"0.000006822246648031"}],"last_reward_claim_height":"129"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET2","shares":"455745823.000000000000000000","reward_history":[],"last_reward_claim_height":"19"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET9","shares":"13635959.660029946243757547","reward_history":[{"denom":"ASSET0","index":"0.000003086246918243"},{"denom":"ASSET1","index":"0.000026194228204796"},{"denom":"ASSET10","index":"0.000020951998769875"},{"denom":"ASSET11","index":"0.000026042273492864"},{"denom":"ASSET12","index":"0.000024853724280460"},{"denom":"ASSET13","index":"0.000008181454895403"},{"denom":"ASSET14","index":"0.000023895275980533"},{"denom":"ASSET15","index":"0.000018864347888264"},{"denom":"ASSET16","index":"0.000011616907749245"},{"denom":"ASSET17","index":"0.000009133094250657"},{"denom":"ASSET18","index":"0.000003766346411006"},{"denom":"ASSET2","index":"0.000007935833032906"},{"denom":"ASSET3","index":"0.000002202232138461"},{"denom":"ASSET4","index":"0.000021234941701767"},{"denom":"ASSET5","index":"0.000001715417631736"},{"denom":"ASSET6","index":"0.000006923101305069"},{"denom":"ASSET7","index":"0.000010881195638563"},{"denom":"ASSET8","index":"0.000014873239564067"},{"denom":"ASSET9","index":"0.000006310901439146"}],"last_reward_claim_height":"143"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET10","shares":"68726685.544837701860641225","reward_history":[{"denom":"ASSET0","index":"0.000004713052793206"},{"denom":"ASSET1","index":"0.000038540515083927"},{"denom":"ASSET10","index":"0.000033490360102272"},{"denom":"ASSET11","index":"0.000040107734635720"},{"denom":"ASSET12","index":"0.000038197935060603"},{"denom":"ASSET13","index":"0.000012948354360272"},{"denom":"ASSET14","index":"0.000037002954624969"},{"denom":"ASSET15","index":"0.000030054303395937"},{"denom":"ASSET16","index":"0.000017098583157054"},{"denom":"ASSET17","index":"0.000013871074640540"},{"denom":"ASSET18","index":"0.000005756151421242"},{"denom":"ASSET2","index":"0.000011635316491200"},{"denom":"ASSET3","index":"0.000003346046298358"},{"denom":"ASSET4","index":"0.000031600919386329"},{"denom":"ASSET5","index":"0.000002627879191745"},{"denom":"ASSET6","index":"0.000010730060131595"},{"denom":"ASSET7","index":"0.000016571778991047"},{"denom":"ASSET8","index":"0.000023899875611587"},{"denom":"ASSET9","index":"0.000009570555980860"}],"last_reward_claim_height":"196"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET8","shares":"443541720.882100346005745512","reward_history":[{"denom":"ASSET0","index":"0.000003333609736915"},{"denom":"ASSET1","index":"0.000028281729059652"},{"denom":"ASSET10","index":"0.000022560289398652"},{"denom":"ASSET11","index":"0.000028101042421314"},{"denom":"ASSET12","index":"0.000026787599659919"},{"denom":"ASSET13","index":"0.000008826015241086"},{"denom":"ASSET14","index":"0.000025794402991537"},{"denom":"ASSET15","index":"0.000020323143219667"},{"denom":"ASSET16","index":"0.000012547562311789"},{"denom":"ASSET17","index":"0.000009844220733470"},{"denom":"ASSET18","index":"0.000004071528772633"},{"denom":"ASSET2","index":"0.000008563776406339"},{"denom":"ASSET3","index":"0.000002379222276435"},{"denom":"ASSET4","index":"0.000022929058250150"},{"denom":"ASSET5","index":"0.000001853699834530"},{"denom":"ASSET6","index":"0.000007480326246914"},{"denom":"ASSET7","index":"0.000011749530638760"},{"denom":"ASSET8","index":"0.000016044906214881"},{"denom":"ASSET9","index":"0.000006811209452101"}],"last_reward_claim_height":"137"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET11","shares":"50066974.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001694764141112"},{"denom":"ASSET1","index":"0.000014130580032100"},{"denom":"ASSET10","index":"0.000009844524497723"},{"denom":"ASSET11","index":"0.000013669508873851"},{"denom":"ASSET12","index":"0.000012309527666765"},{"denom":"ASSET13","index":"0.000004236016804025"},{"denom":"ASSET14","index":"0.000012769407426673"},{"denom":"ASSET15","index":"0.000009129685492685"},{"denom":"ASSET16","index":"0.000006365641339869"},{"denom":"ASSET17","index":"0.000004520761007698"},{"denom":"ASSET18","index":"0.000002153452502679"},{"denom":"ASSET2","index":"0.000004171085594400"},{"denom":"ASSET3","index":"0.000001219991901933"},{"denom":"ASSET4","index":"0.000011483292916774"},{"denom":"ASSET5","index":"0.000000947161681676"},{"denom":"ASSET6","index":"0.000003854173635500"},{"denom":"ASSET7","index":"0.000005903378783277"},{"denom":"ASSET8","index":"0.000007702985978462"},{"denom":"ASSET9","index":"0.000003326979869284"}],"last_reward_claim_height":"89"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET2","shares":"573307778.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001763265776240"},{"denom":"ASSET1","index":"0.000014701143889842"},{"denom":"ASSET10","index":"0.000010242267715158"},{"denom":"ASSET11","index":"0.000014221824092125"},{"denom":"ASSET12","index":"0.000012807154532407"},{"denom":"ASSET13","index":"0.000004407037513175"},{"denom":"ASSET14","index":"0.000013285723045174"},{"denom":"ASSET15","index":"0.000009498495615253"},{"denom":"ASSET16","index":"0.000006622576828953"},{"denom":"ASSET17","index":"0.000004703043783239"},{"denom":"ASSET18","index":"0.000002240331719108"},{"denom":"ASSET2","index":"0.000004339421867729"},{"denom":"ASSET3","index":"0.000001269671564485"},{"denom":"ASSET4","index":"0.000011947684550294"},{"denom":"ASSET5","index":"0.000000984934568662"},{"denom":"ASSET6","index":"0.000004010359059893"},{"denom":"ASSET7","index":"0.000006141754461338"},{"denom":"ASSET8","index":"0.000008013956555240"},{"denom":"ASSET9","index":"0.000003461169761882"}],"last_reward_claim_height":"108"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET9","shares":"268074356.000000000000000000","reward_history":[],"last_reward_claim_height":"62"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET13","shares":"933796333.896974014008432436","reward_history":[{"denom":"ASSET0","index":"0.000005048911725696"},{"denom":"ASSET1","index":"0.000041320951448293"},{"denom":"ASSET10","index":"0.000035649771574261"},{"denom":"ASSET11","index":"0.000042887960848601"},{"denom":"ASSET12","index":"0.000040775936624057"},{"denom":"ASSET13","index":"0.000013826441376117"},{"denom":"ASSET14","index":"0.000039583869779468"},{"denom":"ASSET15","index":"0.000032021394062496"},{"denom":"ASSET16","index":"0.000018341994041795"},{"denom":"ASSET17","index":"0.000014812881950746"},{"denom":"ASSET18","index":"0.000006174249175365"},{"denom":"ASSET2","index":"0.000012465340095364"},{"denom":"ASSET3","index":"0.000003586498630693"},{"denom":"ASSET4","index":"0.000033869215713103"},{"denom":"ASSET5","index":"0.000002815466573700"},{"denom":"ASSET6","index":"0.000011494118983183"},{"denom":"ASSET7","index":"0.000017746598003219"},{"denom":"ASSET8","index":"0.000025507564581042"},{"denom":"ASSET9","index":"0.000010241737770259"}],"last_reward_claim_height":"197"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET16","shares":"189020105.410955097986258100","reward_history":[{"denom":"ASSET0","index":"0.000001763265776240"},{"denom":"ASSET1","index":"0.000014701143889842"},{"denom":"ASSET10","index":"0.000010242267715158"},{"denom":"ASSET11","index":"0.000014221824092125"},{"denom":"ASSET12","index":"0.000012807154532407"},{"denom":"ASSET13","index":"0.000004407037513175"},{"denom":"ASSET14","index":"0.000013285723045174"},{"denom":"ASSET15","index":"0.000009498495615253"},{"denom":"ASSET16","index":"0.000006622576828953"},{"denom":"ASSET17","index":"0.000004703043783239"},{"denom":"ASSET18","index":"0.000002240331719108"},{"denom":"ASSET2","index":"0.000004339421867729"},{"denom":"ASSET3","index":"0.000001269671564485"},{"denom":"ASSET4","index":"0.000011947684550294"},{"denom":"ASSET5","index":"0.000000984934568662"},{"denom":"ASSET6","index":"0.000004010359059893"},{"denom":"ASSET7","index":"0.000006141754461338"},{"denom":"ASSET8","index":"0.000008013956555240"},{"denom":"ASSET9","index":"0.000003461169761882"}],"last_reward_claim_height":"82"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET17","shares":"71925026.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001763265776240"},{"denom":"ASSET1","index":"0.000014701143889842"},{"denom":"ASSET10","index":"0.000010242267715158"},{"denom":"ASSET11","index":"0.000014221824092125"},{"denom":"ASSET12","index":"0.000012807154532407"},{"denom":"ASSET13","index":"0.000004407037513175"},{"denom":"ASSET14","index":"0.000013285723045174"},{"denom":"ASSET15","index":"0.000009498495615253"},{"denom":"ASSET16","index":"0.000006622576828953"},{"denom":"ASSET17","index":"0.000004703043783239"},{"denom":"ASSET18","index":"0.000002240331719108"},{"denom":"ASSET2","index":"0.000004339421867729"},{"denom":"ASSET3","index":"0.000001269671564485"},{"denom":"ASSET4","index":"0.000011947684550294"},{"denom":"ASSET5","index":"0.000000984934568662"},{"denom":"ASSET6","index":"0.000004010359059893"},{"denom":"ASSET7","index":"0.000006141754461338"},{"denom":"ASSET8","index":"0.000008013956555240"},{"denom":"ASSET9","index":"0.000003461169761882"}],"last_reward_claim_height":"68"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET1","shares":"81008097.695128304048258117","reward_history":[{"denom":"ASSET0","index":"0.000004406145269356"},{"denom":"ASSET1","index":"0.000035982671068665"},{"denom":"ASSET10","index":"0.000031271738130447"},{"denom":"ASSET11","index":"0.000037474537578871"},{"denom":"ASSET12","index":"0.000035655856503069"},{"denom":"ASSET13","index":"0.000012104130170712"},{"denom":"ASSET14","index":"0.000034588610172798"},{"denom":"ASSET15","index":"0.000028072528074935"},{"denom":"ASSET16","index":"0.000015968874002764"},{"denom":"ASSET17","index":"0.000012944169264583"},{"denom":"ASSET18","index":"0.000005384646829137"},{"denom":"ASSET2","index":"0.000010857489792794"},{"denom":"ASSET3","index":"0.000003128490133943"},{"denom":"ASSET4","index":"0.000029514600008257"},{"denom":"ASSET5","index":"0.000002457760230967"},{"denom":"ASSET6","index":"0.000010037466684357"},{"denom":"ASSET7","index":"0.000015487392093402"},{"denom":"ASSET8","index":"0.000022350591386021"},{"denom":"ASSET9","index":"0.000008939890806059"}],"last_reward_claim_height":"199"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET5","shares":"17311586.999999996101394473","reward_history":[],"last_reward_claim_height":"62"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET12","shares":"570402235.337617351332625508","reward_history":[{"denom":"ASSET0","index":"0.000001453309126336"},{"denom":"ASSET1","index":"0.000012116886392617"},{"denom":"ASSET10","index":"0.000008441923956558"},{"denom":"ASSET11","index":"0.000011721955689254"},{"denom":"ASSET12","index":"0.000010555542874101"},{"denom":"ASSET13","index":"0.000003632376264868"},{"denom":"ASSET14","index":"0.000010950025301978"},{"denom":"ASSET15","index":"0.000007829131366891"},{"denom":"ASSET16","index":"0.000005458650595742"},{"denom":"ASSET17","index":"0.000003876686404859"},{"denom":"ASSET18","index":"0.000001846446727754"},{"denom":"ASSET2","index":"0.000003576790104576"},{"denom":"ASSET3","index":"0.000001046274984845"},{"denom":"ASSET4","index":"0.000009847267605868"},{"denom":"ASSET5","index":"0.000000812275181037"},{"denom":"ASSET6","index":"0.000003305135159925"},{"denom":"ASSET7","index":"0.000005061926790434"},{"denom":"ASSET8","index":"0.000006605339289501"},{"denom":"ASSET9","index":"0.000002852825194325"}],"last_reward_claim_height":"96"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET16","shares":"842824253.000000000000000000","reward_history":[],"last_reward_claim_height":"52"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET17","shares":"863330334.486744059895980520","reward_history":[{"denom":"ASSET0","index":"0.000004579400192033"},{"denom":"ASSET1","index":"0.000037472260458931"},{"denom":"ASSET10","index":"0.000032444794741920"},{"denom":"ASSET11","index":"0.000038938975596945"},{"denom":"ASSET12","index":"0.000037059285480927"},{"denom":"ASSET13","index":"0.000012561263189519"},{"denom":"ASSET14","index":"0.000035928426876446"},{"denom":"ASSET15","index":"0.000029127648221084"},{"denom":"ASSET16","index":"0.000016628374395061"},{"denom":"ASSET17","index":"0.000013461522639347"},{"denom":"ASSET18","index":"0.000005595935921704"},{"denom":"ASSET2","index":"0.000011310239971506"},{"denom":"ASSET3","index":"0.000003252341030929"},{"denom":"ASSET4","index":"0.000030717793529802"},{"denom":"ASSET5","index":"0.000002553898048133"},{"denom":"ASSET6","index":"0.000010424767435139"},{"denom":"ASSET7","index":"0.000016100084567463"},{"denom":"ASSET8","index":"0.000023177450827129"},{"denom":"ASSET9","index":"0.000009296241529202"}],"last_reward_claim_height":"187"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET11","shares":"187090670.999999997897187092","reward_history":[{"denom":"ASSET0","index":"0.000001802604811891"},{"denom":"ASSET1","index":"0.000015041134377282"},{"denom":"ASSET10","index":"0.000010478421042795"},{"denom":"ASSET11","index":"0.000014549893343095"},{"denom":"ASSET12","index":"0.000013101148598203"},{"denom":"ASSET13","index":"0.000004508593559534"},{"denom":"ASSET14","index":"0.000013592389632390"},{"denom":"ASSET15","index":"0.000009716581133843"},{"denom":"ASSET16","index":"0.000006773297988330"},{"denom":"ASSET17","index":"0.000004812496911192"},{"denom":"ASSET18","index":"0.000002289682786467"},{"denom":"ASSET2","index":"0.000004437821546134"},{"denom":"ASSET3","index":"0.000001298874598869"},{"denom":"ASSET4","index":"0.000012222743020122"},{"denom":"ASSET5","index":"0.000001007460426045"},{"denom":"ASSET6","index":"0.000004100613717582"},{"denom":"ASSET7","index":"0.000006282056954143"},{"denom":"ASSET8","index":"0.000008197064375552"},{"denom":"ASSET9","index":"0.000003538600669994"}],"last_reward_claim_height":"89"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET14","shares":"944214342.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001802604811891"},{"denom":"ASSET1","index":"0.000015041134377282"},{"denom":"ASSET10","index":"0.000010478421042795"},{"denom":"ASSET11","index":"0.000014549893343095"},{"denom":"ASSET12","index":"0.000013101148598203"},{"denom":"ASSET13","index":"0.000004508593559534"},{"denom":"ASSET14","index":"0.000013592389632390"},{"denom":"ASSET15","index":"0.000009716581133843"},{"denom":"ASSET16","index":"0.000006773297988330"},{"denom":"ASSET17","index":"0.000004812496911192"},{"denom":"ASSET18","index":"0.000002289682786467"},{"denom":"ASSET2","index":"0.000004437821546134"},{"denom":"ASSET3","index":"0.000001298874598869"},{"denom":"ASSET4","index":"0.000012222743020122"},{"denom":"ASSET5","index":"0.000001007460426045"},{"denom":"ASSET6","index":"0.000004100613717582"},{"denom":"ASSET7","index":"0.000006282056954143"},{"denom":"ASSET8","index":"0.000008197064375552"},{"denom":"ASSET9","index":"0.000003538600669994"}],"last_reward_claim_height":"114"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET15","shares":"824508844.423493395139062764","reward_history":[{"denom":"ASSET0","index":"0.000001802604811891"},{"denom":"ASSET1","index":"0.000015041134377282"},{"denom":"ASSET10","index":"0.000010478421042795"},{"denom":"ASSET11","index":"0.000014549893343095"},{"denom":"ASSET12","index":"0.000013101148598203"},{"denom":"ASSET13","index":"0.000004508593559534"},{"denom":"ASSET14","index":"0.000013592389632390"},{"denom":"ASSET15","index":"0.000009716581133843"},{"denom":"ASSET16","index":"0.000006773297988330"},{"denom":"ASSET17","index":"0.000004812496911192"},{"denom":"ASSET18","index":"0.000002289682786467"},{"denom":"ASSET2","index":"0.000004437821546134"},{"denom":"ASSET3","index":"0.000001298874598869"},{"denom":"ASSET4","index":"0.000012222743020122"},{"denom":"ASSET5","index":"0.000001007460426045"},{"denom":"ASSET6","index":"0.000004100613717582"},{"denom":"ASSET7","index":"0.000006282056954143"},{"denom":"ASSET8","index":"0.000008197064375552"},{"denom":"ASSET9","index":"0.000003538600669994"}],"last_reward_claim_height":"100"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET0","shares":"531645713.586791179744415490","reward_history":[{"denom":"ASSET0","index":"0.000004959246898457"},{"denom":"ASSET1","index":"0.000040644134720716"},{"denom":"ASSET10","index":"0.000035353347669123"},{"denom":"ASSET11","index":"0.000042259329711737"},{"denom":"ASSET12","index":"0.000040324609330816"},{"denom":"ASSET13","index":"0.000013634496574458"},{"denom":"ASSET14","index":"0.000038957207426942"},{"denom":"ASSET15","index":"0.000031703303912562"},{"denom":"ASSET16","index":"0.000018020987420922"},{"denom":"ASSET17","index":"0.000014649010642136"},{"denom":"ASSET18","index":"0.000006048740887504"},{"denom":"ASSET2","index":"0.000012283177286373"},{"denom":"ASSET3","index":"0.000003521378987865"},{"denom":"ASSET4","index":"0.000033309186540081"},{"denom":"ASSET5","index":"0.000002764517824101"},{"denom":"ASSET6","index":"0.000011281385393492"},{"denom":"ASSET7","index":"0.000017449426350326"},{"denom":"ASSET8","index":"0.000025152281518201"},{"denom":"ASSET9","index":"0.000010089053949444"}],"last_reward_claim_height":"188"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET5","shares":"9739448.000000001871846330","reward_history":[],"last_reward_claim_height":"17"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET12","shares":"148544434.999999999802479005","reward_history":[{"denom":"ASSET0","index":"0.000001563811170888"},{"denom":"ASSET1","index":"0.000013038374863878"},{"denom":"ASSET10","index":"0.000009083864212622"},{"denom":"ASSET11","index":"0.000012612362006834"},{"denom":"ASSET12","index":"0.000011358137819015"},{"denom":"ASSET13","index":"0.000003908204905926"},{"denom":"ASSET14","index":"0.000011781504633469"},{"denom":"ASSET15","index":"0.000008423676586333"},{"denom":"ASSET16","index":"0.000005872891529250"},{"denom":"ASSET17","index":"0.000004170163122369"},{"denom":"ASSET18","index":"0.000001987177985342"},{"denom":"ASSET2","index":"0.000003848668947643"},{"denom":"ASSET3","index":"0.000001125891122188"},{"denom":"ASSET4","index":"0.000010596077552999"},{"denom":"ASSET5","index":"0.000000873194054811"},{"denom":"ASSET6","index":"0.000003556281241411"},{"denom":"ASSET7","index":"0.000005446878672206"},{"denom":"ASSET8","index":"0.000007107270397641"},{"denom":"ASSET9","index":"0.000003069409404789"}],"last_reward_claim_height":"108"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET16","shares":"188213426.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003311345528520"},{"denom":"ASSET1","index":"0.000028134750769747"},{"denom":"ASSET10","index":"0.000022648872120201"},{"denom":"ASSET11","index":"0.000028007957662740"},{"denom":"ASSET12","index":"0.000026803793052874"},{"denom":"ASSET13","index":"0.000008804941803873"},{"denom":"ASSET14","index":"0.000025676450668466"},{"denom":"ASSET15","index":"0.000020365161363483"},{"denom":"ASSET16","index":"0.000012467103206876"},{"denom":"ASSET17","index":"0.000009848512066991"},{"denom":"ASSET18","index":"0.000004032794375330"},{"denom":"ASSET2","index":"0.000008534928074651"},{"denom":"ASSET3","index":"0.000002362590241163"},{"denom":"ASSET4","index":"0.000022806063702805"},{"denom":"ASSET5","index":"0.000001840254083448"},{"denom":"ASSET6","index":"0.000007424521355960"},{"denom":"ASSET7","index":"0.000011683846998076"},{"denom":"ASSET8","index":"0.000016006498096466"},{"denom":"ASSET9","index":"0.000006786333067798"}],"last_reward_claim_height":"164"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET0","shares":"342038142.999216758584886952","reward_history":[{"denom":"ASSET0","index":"0.000003037978324998"},{"denom":"ASSET1","index":"0.000025756345113171"},{"denom":"ASSET10","index":"0.000020449699671521"},{"denom":"ASSET11","index":"0.000025567125107120"},{"denom":"ASSET12","index":"0.000024323299608917"},{"denom":"ASSET13","index":"0.000008026089638757"},{"denom":"ASSET14","index":"0.000023482777870484"},{"denom":"ASSET15","index":"0.000018439819094125"},{"denom":"ASSET16","index":"0.000011433094032389"},{"denom":"ASSET17","index":"0.000008938487942114"},{"denom":"ASSET18","index":"0.000003715472889790"},{"denom":"ASSET2","index":"0.000007791978720736"},{"denom":"ASSET3","index":"0.000002168844641333"},{"denom":"ASSET4","index":"0.000020883291069830"},{"denom":"ASSET5","index":"0.000001689134510364"},{"denom":"ASSET6","index":"0.000006819968009550"},{"denom":"ASSET7","index":"0.000010702337477897"},{"denom":"ASSET8","index":"0.000014590947163921"},{"denom":"ASSET9","index":"0.000006197850437110"}],"last_reward_claim_height":"135"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET3","shares":"579135415.830771146667701730","reward_history":[{"denom":"ASSET0","index":"0.000001600184479142"},{"denom":"ASSET1","index":"0.000013342157474081"},{"denom":"ASSET10","index":"0.000009295060662992"},{"denom":"ASSET11","index":"0.000012907134644369"},{"denom":"ASSET12","index":"0.000011622469236023"},{"denom":"ASSET13","index":"0.000003999732516397"},{"denom":"ASSET14","index":"0.000012056763384279"},{"denom":"ASSET15","index":"0.000008620301633991"},{"denom":"ASSET16","index":"0.000006010164655719"},{"denom":"ASSET17","index":"0.000004268615973958"},{"denom":"ASSET18","index":"0.000002033021264483"},{"denom":"ASSET2","index":"0.000003938523274026"},{"denom":"ASSET3","index":"0.000001152045383207"},{"denom":"ASSET4","index":"0.000010842780077243"},{"denom":"ASSET5","index":"0.000000894092147498"},{"denom":"ASSET6","index":"0.000003639035195279"},{"denom":"ASSET7","index":"0.000005573684463094"},{"denom":"ASSET8","index":"0.000007272969620361"},{"denom":"ASSET9","index":"0.000003141345760282"}],"last_reward_claim_height":"72"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET4","shares":"332722748.756953791631466120","reward_history":[{"denom":"ASSET0","index":"0.000003037978324998"},{"denom":"ASSET1","index":"0.000025756345113171"},{"denom":"ASSET10","index":"0.000020449699671521"},{"denom":"ASSET11","index":"0.000025567125107120"},{"denom":"ASSET12","index":"0.000024323299608917"},{"denom":"ASSET13","index":"0.000008026089638757"},{"denom":"ASSET14","index":"0.000023482777870484"},{"denom":"ASSET15","index":"0.000018439819094125"},{"denom":"ASSET16","index":"0.000011433094032389"},{"denom":"ASSET17","index":"0.000008938487942114"},{"denom":"ASSET18","index":"0.000003715472889790"},{"denom":"ASSET2","index":"0.000007791978720736"},{"denom":"ASSET3","index":"0.000002168844641333"},{"denom":"ASSET4","index":"0.000020883291069830"},{"denom":"ASSET5","index":"0.000001689134510364"},{"denom":"ASSET6","index":"0.000006819968009550"},{"denom":"ASSET7","index":"0.000010702337477897"},{"denom":"ASSET8","index":"0.000014590947163921"},{"denom":"ASSET9","index":"0.000006197850437110"}],"last_reward_claim_height":"136"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET9","shares":"394516898.000000000000000000","reward_history":[],"last_reward_claim_height":"19"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET13","shares":"1000031341.778400043000000000","reward_history":[{"denom":"ASSET0","index":"0.000001600184479142"},{"denom":"ASSET1","index":"0.000013342157474081"},{"denom":"ASSET10","index":"0.000009295060662992"},{"denom":"ASSET11","index":"0.000012907134644369"},{"denom":"ASSET12","index":"0.000011622469236023"},{"denom":"ASSET13","index":"0.000003999732516397"},{"denom":"ASSET14","index":"0.000012056763384279"},{"denom":"ASSET15","index":"0.000008620301633991"},{"denom":"ASSET16","index":"0.000006010164655719"},{"denom":"ASSET17","index":"0.000004268615973958"},{"denom":"ASSET18","index":"0.000002033021264483"},{"denom":"ASSET2","index":"0.000003938523274026"},{"denom":"ASSET3","index":"0.000001152045383207"},{"denom":"ASSET4","index":"0.000010842780077243"},{"denom":"ASSET5","index":"0.000000894092147498"},{"denom":"ASSET6","index":"0.000003639035195279"},{"denom":"ASSET7","index":"0.000005573684463094"},{"denom":"ASSET8","index":"0.000007272969620361"},{"denom":"ASSET9","index":"0.000003141345760282"}],"last_reward_claim_height":"89"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET16","shares":"73128356.542616373833842569","reward_history":[{"denom":"ASSET0","index":"0.000001600184479142"},{"denom":"ASSET1","index":"0.000013342157474081"},{"denom":"ASSET10","index":"0.000009295060662992"},{"denom":"ASSET11","index":"0.000012907134644369"},{"denom":"ASSET12","index":"0.000011622469236023"},{"denom":"ASSET13","index":"0.000003999732516397"},{"denom":"ASSET14","index":"0.000012056763384279"},{"denom":"ASSET15","index":"0.000008620301633991"},{"denom":"ASSET16","index":"0.000006010164655719"},{"denom":"ASSET17","index":"0.000004268615973958"},{"denom":"ASSET18","index":"0.000002033021264483"},{"denom":"ASSET2","index":"0.000003938523274026"},{"denom":"ASSET3","index":"0.000001152045383207"},{"denom":"ASSET4","index":"0.000010842780077243"},{"denom":"ASSET5","index":"0.000000894092147498"},{"denom":"ASSET6","index":"0.000003639035195279"},{"denom":"ASSET7","index":"0.000005573684463094"},{"denom":"ASSET8","index":"0.000007272969620361"},{"denom":"ASSET9","index":"0.000003141345760282"}],"last_reward_claim_height":"73"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET17","shares":"207064762.547967977288420151","reward_history":[{"denom":"ASSET0","index":"0.000003037978324998"},{"denom":"ASSET1","index":"0.000025756345113171"},{"denom":"ASSET10","index":"0.000020449699671521"},{"denom":"ASSET11","index":"0.000025567125107120"},{"denom":"ASSET12","index":"0.000024323299608917"},{"denom":"ASSET13","index":"0.000008026089638757"},{"denom":"ASSET14","index":"0.000023482777870484"},{"denom":"ASSET15","index":"0.000018439819094125"},{"denom":"ASSET16","index":"0.000011433094032389"},{"denom":"ASSET17","index":"0.000008938487942114"},{"denom":"ASSET18","index":"0.000003715472889790"},{"denom":"ASSET2","index":"0.000007791978720736"},{"denom":"ASSET3","index":"0.000002168844641333"},{"denom":"ASSET4","index":"0.000020883291069830"},{"denom":"ASSET5","index":"0.000001689134510364"},{"denom":"ASSET6","index":"0.000006819968009550"},{"denom":"ASSET7","index":"0.000010702337477897"},{"denom":"ASSET8","index":"0.000014590947163921"},{"denom":"ASSET9","index":"0.000006197850437110"}],"last_reward_claim_height":"147"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET3","shares":"1207654639.049218945412264376","reward_history":[{"denom":"ASSET0","index":"0.000004819121490741"},{"denom":"ASSET1","index":"0.000039439037062385"},{"denom":"ASSET10","index":"0.000033949711699647"},{"denom":"ASSET11","index":"0.000040926462496439"},{"denom":"ASSET12","index":"0.000038853804420393"},{"denom":"ASSET13","index":"0.000013188383097013"},{"denom":"ASSET14","index":"0.000037786507004869"},{"denom":"ASSET15","index":"0.000030511465947454"},{"denom":"ASSET16","index":"0.000017508488927783"},{"denom":"ASSET17","index":"0.000014113313501087"},{"denom":"ASSET18","index":"0.000005902508101436"},{"denom":"ASSET2","index":"0.000011888871733978"},{"denom":"ASSET3","index":"0.000003426020888663"},{"denom":"ASSET4","index":"0.000032328377078046"},{"denom":"ASSET5","index":"0.000002685672180211"},{"denom":"ASSET6","index":"0.000010983824100820"},{"denom":"ASSET7","index":"0.000016943392626871"},{"denom":"ASSET8","index":"0.000024343267700456"},{"denom":"ASSET9","index":"0.000009767523137997"}],"last_reward_claim_height":"185"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET12","shares":"85315618.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001687731873143"},{"denom":"ASSET1","index":"0.000014069560961171"},{"denom":"ASSET10","index":"0.000009802495056563"},{"denom":"ASSET11","index":"0.000013610740912442"},{"denom":"ASSET12","index":"0.000012256373563096"},{"denom":"ASSET13","index":"0.000004217751625940"},{"denom":"ASSET14","index":"0.000012714404583367"},{"denom":"ASSET15","index":"0.000009090791386823"},{"denom":"ASSET16","index":"0.000006338265608675"},{"denom":"ASSET17","index":"0.000004501407356839"},{"denom":"ASSET18","index":"0.000002144184836496"},{"denom":"ASSET2","index":"0.000004153051292327"},{"denom":"ASSET3","index":"0.000001214709312157"},{"denom":"ASSET4","index":"0.000011433811394910"},{"denom":"ASSET5","index":"0.000000942889008137"},{"denom":"ASSET6","index":"0.000003837834423079"},{"denom":"ASSET7","index":"0.000005877867503028"},{"denom":"ASSET8","index":"0.000007669751132718"},{"denom":"ASSET9","index":"0.000003312735983819"}],"last_reward_claim_height":"104"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET16","shares":"182621451.000000000000000000","reward_history":[],"last_reward_claim_height":"5"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET18","shares":"90450278.500822493643404466","reward_history":[{"denom":"ASSET0","index":"0.000001687731873143"},{"denom":"ASSET1","index":"0.000014069560961171"},{"denom":"ASSET10","index":"0.000009802495056563"},{"denom":"ASSET11","index":"0.000013610740912442"},{"denom":"ASSET12","index":"0.000012256373563096"},{"denom":"ASSET13","index":"0.000004217751625940"},{"denom":"ASSET14","index":"0.000012714404583367"},{"denom":"ASSET15","index":"0.000009090791386823"},{"denom":"ASSET16","index":"0.000006338265608675"},{"denom":"ASSET17","index":"0.000004501407356839"},{"denom":"ASSET18","index":"0.000002144184836496"},{"denom":"ASSET2","index":"0.000004153051292327"},{"denom":"ASSET3","index":"0.000001214709312157"},{"denom":"ASSET4","index":"0.000011433811394910"},{"denom":"ASSET5","index":"0.000000942889008137"},{"denom":"ASSET6","index":"0.000003837834423079"},{"denom":"ASSET7","index":"0.000005877867503028"},{"denom":"ASSET8","index":"0.000007669751132718"},{"denom":"ASSET9","index":"0.000003312735983819"}],"last_reward_claim_height":"71"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET10","shares":"147039106.000000000000000000","reward_history":[],"last_reward_claim_height":"53"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET13","shares":"63034446.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002915106026686"},{"denom":"ASSET1","index":"0.000024751938975568"},{"denom":"ASSET10","index":"0.000019864528416862"},{"denom":"ASSET11","index":"0.000024625253839727"},{"denom":"ASSET12","index":"0.000023534700266806"},{"denom":"ASSET13","index":"0.000007739190454504"},{"denom":"ASSET14","index":"0.000022584902384729"},{"denom":"ASSET15","index":"0.000017872912229645"},{"denom":"ASSET16","index":"0.000010972881933217"},{"denom":"ASSET17","index":"0.000008648586457086"},{"denom":"ASSET18","index":"0.000003552999450219"},{"denom":"ASSET2","index":"0.000007504215303421"},{"denom":"ASSET3","index":"0.000002079538758775"},{"denom":"ASSET4","index":"0.000020065180146540"},{"denom":"ASSET5","index":"0.000001620267199228"},{"denom":"ASSET6","index":"0.000006536798446662"},{"denom":"ASSET7","index":"0.000010280222742310"},{"denom":"ASSET8","index":"0.000014068743113537"},{"denom":"ASSET9","index":"0.000005967789042866"}],"last_reward_claim_height":"145"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET0","shares":"516552486.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003306866574231"},{"denom":"ASSET1","index":"0.000028073670524533"},{"denom":"ASSET10","index":"0.000022410378668975"},{"denom":"ASSET11","index":"0.000027896117796052"},{"denom":"ASSET12","index":"0.000026601615360568"},{"denom":"ASSET13","index":"0.000008760019105133"},{"denom":"ASSET14","index":"0.000025604072816608"},{"denom":"ASSET15","index":"0.000020183975077340"},{"denom":"ASSET16","index":"0.000012452378452775"},{"denom":"ASSET17","index":"0.000009773941069454"},{"denom":"ASSET18","index":"0.000004038323507821"},{"denom":"ASSET2","index":"0.000008501686860316"},{"denom":"ASSET3","index":"0.000002358773872569"},{"denom":"ASSET4","index":"0.000022758821093429"},{"denom":"ASSET5","index":"0.000001837837668790"},{"denom":"ASSET6","index":"0.000007423905647148"},{"denom":"ASSET7","index":"0.000011659308440973"},{"denom":"ASSET8","index":"0.000015926660063085"},{"denom":"ASSET9","index":"0.000006759875068056"}],"last_reward_claim_height":"164"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET6","shares":"218352700.000000047600888600","reward_history":[{"denom":"ASSET0","index":"0.000003306866574231"},{"denom":"ASSET1","index":"0.000028073670524533"},{"denom":"ASSET10","index":"0.000022410378668975"},{"denom":"ASSET11","index":"0.000027896117796052"},{"denom":"ASSET12","index":"0.000026601615360568"},{"denom":"ASSET13","index":"0.000008760019105133"},{"denom":"ASSET14","index":"0.000025604072816608"},{"denom":"ASSET15","index":"0.000020183975077340"},{"denom":"ASSET16","index":"0.000012452378452775"},{"denom":"ASSET17","index":"0.000009773941069454"},{"denom":"ASSET18","index":"0.000004038323507821"},{"denom":"ASSET2","index":"0.000008501686860316"},{"denom":"ASSET3","index":"0.000002358773872569"},{"denom":"ASSET4","index":"0.000022758821093429"},{"denom":"ASSET5","index":"0.000001837837668790"},{"denom":"ASSET6","index":"0.000007423905647148"},{"denom":"ASSET7","index":"0.000011659308440973"},{"denom":"ASSET8","index":"0.000015926660063085"},{"denom":"ASSET9","index":"0.000006759875068056"}],"last_reward_claim_height":"165"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET7","shares":"816548660.000000000000000000","reward_history":[],"last_reward_claim_height":"34"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET12","shares":"34736528.829314928141501304","reward_history":[{"denom":"ASSET0","index":"0.000004934519090666"},{"denom":"ASSET1","index":"0.000040427425853445"},{"denom":"ASSET10","index":"0.000034956454364729"},{"denom":"ASSET11","index":"0.000041970150523959"},{"denom":"ASSET12","index":"0.000039953739652645"},{"denom":"ASSET13","index":"0.000013529847026884"},{"denom":"ASSET14","index":"0.000038720039011166"},{"denom":"ASSET15","index":"0.000031380979964511"},{"denom":"ASSET16","index":"0.000017937044208634"},{"denom":"ASSET17","index":"0.000014514779524145"},{"denom":"ASSET18","index":"0.000006029404952774"},{"denom":"ASSET2","index":"0.000012203146861853"},{"denom":"ASSET3","index":"0.000003503504291382"},{"denom":"ASSET4","index":"0.000033131393819799"},{"denom":"ASSET5","index":"0.000002750652351117"},{"denom":"ASSET6","index":"0.000011232838794861"},{"denom":"ASSET7","index":"0.000017353264007807"},{"denom":"ASSET8","index":"0.000024958646702939"},{"denom":"ASSET9","index":"0.000010021543642476"}],"last_reward_claim_height":"186"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET16","shares":"100450712.910252212935113658","reward_history":[{"denom":"ASSET0","index":"0.000003306866574231"},{"denom":"ASSET1","index":"0.000028073670524533"},{"denom":"ASSET10","index":"0.000022410378668975"},{"denom":"ASSET11","index":"0.000027896117796052"},{"denom":"ASSET12","index":"0.000026601615360568"},{"denom":"ASSET13","index":"0.000008760019105133"},{"denom":"ASSET14","index":"0.000025604072816608"},{"denom":"ASSET15","index":"0.000020183975077340"},{"denom":"ASSET16","index":"0.000012452378452775"},{"denom":"ASSET17","index":"0.000009773941069454"},{"denom":"ASSET18","index":"0.000004038323507821"},{"denom":"ASSET2","index":"0.000008501686860316"},{"denom":"ASSET3","index":"0.000002358773872569"},{"denom":"ASSET4","index":"0.000022758821093429"},{"denom":"ASSET5","index":"0.000001837837668790"},{"denom":"ASSET6","index":"0.000007423905647148"},{"denom":"ASSET7","index":"0.000011659308440973"},{"denom":"ASSET8","index":"0.000015926660063085"},{"denom":"ASSET9","index":"0.000006759875068056"}],"last_reward_claim_height":"130"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET0","shares":"639848752.000000000000000000","reward_history":[],"last_reward_claim_height":"7"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET3","shares":"58101.000000000753484809","reward_history":[],"last_reward_claim_height":"60"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET15","shares":"682861647.511418797476899861","reward_history":[{"denom":"ASSET0","index":"0.000004712919701194"},{"denom":"ASSET1","index":"0.000038551910188637"},{"denom":"ASSET10","index":"0.000033366472665064"},{"denom":"ASSET11","index":"0.000040061772796167"},{"denom":"ASSET12","index":"0.000038115593387847"},{"denom":"ASSET13","index":"0.000012923798257493"},{"denom":"ASSET14","index":"0.000036968911284872"},{"denom":"ASSET15","index":"0.000029958439689060"},{"denom":"ASSET16","index":"0.000017109313494010"},{"denom":"ASSET17","index":"0.000013844574846959"},{"denom":"ASSET18","index":"0.000005759646481226"},{"denom":"ASSET2","index":"0.000011633813263895"},{"denom":"ASSET3","index":"0.000003346860308295"},{"denom":"ASSET4","index":"0.000031605298521278"},{"denom":"ASSET5","index":"0.000002628206284514"},{"denom":"ASSET6","index":"0.000010728866620912"},{"denom":"ASSET7","index":"0.000016566279364856"},{"denom":"ASSET8","index":"0.000023846908582094"},{"denom":"ASSET9","index":"0.000009564372690576"}],"last_reward_claim_height":"197"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET2","shares":"246922000.000000007407660000","reward_history":[{"denom":"ASSET0","index":"0.000001543375593884"},{"denom":"ASSET1","index":"0.000012871309378663"},{"denom":"ASSET10","index":"0.000008967332198598"},{"denom":"ASSET11","index":"0.000012451619524186"},{"denom":"ASSET12","index":"0.000011213472915376"},{"denom":"ASSET13","index":"0.000003858438984711"},{"denom":"ASSET14","index":"0.000011631932007817"},{"denom":"ASSET15","index":"0.000008316259081242"},{"denom":"ASSET16","index":"0.000005798119954378"},{"denom":"ASSET17","index":"0.000004118129774432"},{"denom":"ASSET18","index":"0.000001961834686325"},{"denom":"ASSET2","index":"0.000003799362406955"},{"denom":"ASSET3","index":"0.000001111378119041"},{"denom":"ASSET4","index":"0.000010460246548983"},{"denom":"ASSET5","index":"0.000000862764187650"},{"denom":"ASSET6","index":"0.000003511364090393"},{"denom":"ASSET7","index":"0.000005377199337864"},{"denom":"ASSET8","index":"0.000007016574370602"},{"denom":"ASSET9","index":"0.000003030136134086"}],"last_reward_claim_height":"117"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET6","shares":"848041603.251515629145353470","reward_history":[{"denom":"ASSET0","index":"0.000003061984062566"},{"denom":"ASSET1","index":"0.000025984754387841"},{"denom":"ASSET10","index":"0.000020750278468036"},{"denom":"ASSET11","index":"0.000025825260107338"},{"denom":"ASSET12","index":"0.000024630365005548"},{"denom":"ASSET13","index":"0.000008111503841622"},{"denom":"ASSET14","index":"0.000023701848593669"},{"denom":"ASSET15","index":"0.000018689068915475"},{"denom":"ASSET16","index":"0.000011526541772952"},{"denom":"ASSET17","index":"0.000009050861170220"},{"denom":"ASSET18","index":"0.000003739265665267"},{"denom":"ASSET2","index":"0.000007869809789784"},{"denom":"ASSET3","index":"0.000002185113944095"},{"denom":"ASSET4","index":"0.000021066477214749"},{"denom":"ASSET5","index":"0.000001702392649313"},{"denom":"ASSET6","index":"0.000006871251000760"},{"denom":"ASSET7","index":"0.000010794622225013"},{"denom":"ASSET8","index":"0.000014746923085504"},{"denom":"ASSET9","index":"0.000006258895459680"}],"last_reward_claim_height":"174"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET11","shares":"1324085672.739272587835977120","reward_history":[{"denom":"ASSET0","index":"0.000004887144198005"},{"denom":"ASSET1","index":"0.000040023452786680"},{"denom":"ASSET10","index":"0.000034437802546936"},{"denom":"ASSET11","index":"0.000041494859984978"},{"denom":"ASSET12","index":"0.000039432934551770"},{"denom":"ASSET13","index":"0.000013368653429450"},{"denom":"ASSET14","index":"0.000038299674909876"},{"denom":"ASSET15","index":"0.000030940975323868"},{"denom":"ASSET16","index":"0.000017768457463154"},{"denom":"ASSET17","index":"0.000014327966130944"},{"denom":"ASSET18","index":"0.000005979301312257"},{"denom":"ASSET2","index":"0.000012071629758701"},{"denom":"ASSET3","index":"0.000003472888386423"},{"denom":"ASSET4","index":"0.000032798616202156"},{"denom":"ASSET5","index":"0.000002725831062282"},{"denom":"ASSET6","index":"0.000011125357279785"},{"denom":"ASSET7","index":"0.000017178460034926"},{"denom":"ASSET8","index":"0.000024656607892367"},{"denom":"ASSET9","index":"0.000009912524841079"}],"last_reward_claim_height":"198"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET8","shares":"460422774.802419080637033564","reward_history":[{"denom":"ASSET0","index":"0.000003278023650839"},{"denom":"ASSET1","index":"0.000027801084973989"},{"denom":"ASSET10","index":"0.000022126343818190"},{"denom":"ASSET11","index":"0.000027610641458424"},{"denom":"ASSET12","index":"0.000026294522151225"},{"denom":"ASSET13","index":"0.000008669795972838"},{"denom":"ASSET14","index":"0.000025352034708572"},{"denom":"ASSET15","index":"0.000019941753748345"},{"denom":"ASSET16","index":"0.000012337408081897"},{"denom":"ASSET17","index":"0.000009662232510971"},{"denom":"ASSET18","index":"0.000004006663612522"},{"denom":"ASSET2","index":"0.000008414274009770"},{"denom":"ASSET3","index":"0.000002339697370568"},{"denom":"ASSET4","index":"0.000022540556466857"},{"denom":"ASSET5","index":"0.000001822656991491"},{"denom":"ASSET6","index":"0.000007357334263189"},{"denom":"ASSET7","index":"0.000011551068960203"},{"denom":"ASSET8","index":"0.000015761386047857"},{"denom":"ASSET9","index":"0.000006692834331509"}],"last_reward_claim_height":"133"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET9","shares":"677357528.705922508817875398","reward_history":[{"denom":"ASSET0","index":"0.000003278023650839"},{"denom":"ASSET1","index":"0.000027801084973989"},{"denom":"ASSET10","index":"0.000022126343818190"},{"denom":"ASSET11","index":"0.000027610641458424"},{"denom":"ASSET12","index":"0.000026294522151225"},{"denom":"ASSET13","index":"0.000008669795972838"},{"denom":"ASSET14","index":"0.000025352034708572"},{"denom":"ASSET15","index":"0.000019941753748345"},{"denom":"ASSET16","index":"0.000012337408081897"},{"denom":"ASSET17","index":"0.000009662232510971"},{"denom":"ASSET18","index":"0.000004006663612522"},{"denom":"ASSET2","index":"0.000008414274009770"},{"denom":"ASSET3","index":"0.000002339697370568"},{"denom":"ASSET4","index":"0.000022540556466857"},{"denom":"ASSET5","index":"0.000001822656991491"},{"denom":"ASSET6","index":"0.000007357334263189"},{"denom":"ASSET7","index":"0.000011551068960203"},{"denom":"ASSET8","index":"0.000015761386047857"},{"denom":"ASSET9","index":"0.000006692834331509"}],"last_reward_claim_height":"165"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET15","shares":"645970630.000000000000000000","reward_history":[],"last_reward_claim_height":"37"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET17","shares":"685168872.000000000000000000","reward_history":[],"last_reward_claim_height":"29"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET1","shares":"320780533.190445589034218106","reward_history":[{"denom":"ASSET0","index":"0.000002735257365218"},{"denom":"ASSET1","index":"0.000023278157661741"},{"denom":"ASSET10","index":"0.000018999615823078"},{"denom":"ASSET11","index":"0.000023241706683585"},{"denom":"ASSET12","index":"0.000022372793234045"},{"denom":"ASSET13","index":"0.000007316911351959"},{"denom":"ASSET14","index":"0.000021266506066871"},{"denom":"ASSET15","index":"0.000017036720297506"},{"denom":"ASSET16","index":"0.000010298479660409"},{"denom":"ASSET17","index":"0.000008222611745720"},{"denom":"ASSET18","index":"0.000003315370510511"},{"denom":"ASSET2","index":"0.000007081336162231"},{"denom":"ASSET3","index":"0.000001948923871674"},{"denom":"ASSET4","index":"0.000018864412124408"},{"denom":"ASSET5","index":"0.000001519377842401"},{"denom":"ASSET6","index":"0.000006121992555640"},{"denom":"ASSET7","index":"0.000009661272655042"},{"denom":"ASSET8","index":"0.000013300968175029"},{"denom":"ASSET9","index":"0.000005629514833023"}],"last_reward_claim_height":"126"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET3","shares":"697612355.410650701365826811","reward_history":[{"denom":"ASSET0","index":"0.000001139195115521"},{"denom":"ASSET1","index":"0.000009496890331931"},{"denom":"ASSET10","index":"0.000006616523219856"},{"denom":"ASSET11","index":"0.000009187371854639"},{"denom":"ASSET12","index":"0.000008273091178185"},{"denom":"ASSET13","index":"0.000002846943294505"},{"denom":"ASSET14","index":"0.000008582261490710"},{"denom":"ASSET15","index":"0.000006136055842283"},{"denom":"ASSET16","index":"0.000004278248649000"},{"denom":"ASSET17","index":"0.000003038433916001"},{"denom":"ASSET18","index":"0.000001447320933748"},{"denom":"ASSET2","index":"0.000002803422698710"},{"denom":"ASSET3","index":"0.000000819928024772"},{"denom":"ASSET4","index":"0.000007718116540611"},{"denom":"ASSET5","index":"0.000000636445192901"},{"denom":"ASSET6","index":"0.000002590694026466"},{"denom":"ASSET7","index":"0.000003967685677409"},{"denom":"ASSET8","index":"0.000005177210075735"},{"denom":"ASSET9","index":"0.000002236262294314"}],"last_reward_claim_height":"85"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET4","shares":"102637298.081177346006385529","reward_history":[{"denom":"ASSET0","index":"0.000001139195115521"},{"denom":"ASSET1","index":"0.000009496890331931"},{"denom":"ASSET10","index":"0.000006616523219856"},{"denom":"ASSET11","index":"0.000009187371854639"},{"denom":"ASSET12","index":"0.000008273091178185"},{"denom":"ASSET13","index":"0.000002846943294505"},{"denom":"ASSET14","index":"0.000008582261490710"},{"denom":"ASSET15","index":"0.000006136055842283"},{"denom":"ASSET16","index":"0.000004278248649000"},{"denom":"ASSET17","index":"0.000003038433916001"},{"denom":"ASSET18","index":"0.000001447320933748"},{"denom":"ASSET2","index":"0.000002803422698710"},{"denom":"ASSET3","index":"0.000000819928024772"},{"denom":"ASSET4","index":"0.000007718116540611"},{"denom":"ASSET5","index":"0.000000636445192901"},{"denom":"ASSET6","index":"0.000002590694026466"},{"denom":"ASSET7","index":"0.000003967685677409"},{"denom":"ASSET8","index":"0.000005177210075735"},{"denom":"ASSET9","index":"0.000002236262294314"}],"last_reward_claim_height":"78"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET7","shares":"359864893.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001139195115521"},{"denom":"ASSET1","index":"0.000009496890331931"},{"denom":"ASSET10","index":"0.000006616523219856"},{"denom":"ASSET11","index":"0.000009187371854639"},{"denom":"ASSET12","index":"0.000008273091178185"},{"denom":"ASSET13","index":"0.000002846943294505"},{"denom":"ASSET14","index":"0.000008582261490710"},{"denom":"ASSET15","index":"0.000006136055842283"},{"denom":"ASSET16","index":"0.000004278248649000"},{"denom":"ASSET17","index":"0.000003038433916001"},{"denom":"ASSET18","index":"0.000001447320933748"},{"denom":"ASSET2","index":"0.000002803422698710"},{"denom":"ASSET3","index":"0.000000819928024772"},{"denom":"ASSET4","index":"0.000007718116540611"},{"denom":"ASSET5","index":"0.000000636445192901"},{"denom":"ASSET6","index":"0.000002590694026466"},{"denom":"ASSET7","index":"0.000003967685677409"},{"denom":"ASSET8","index":"0.000005177210075735"},{"denom":"ASSET9","index":"0.000002236262294314"}],"last_reward_claim_height":"88"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET10","shares":"248126844.070876021139214582","reward_history":[{"denom":"ASSET0","index":"0.000002735257365218"},{"denom":"ASSET1","index":"0.000023278157661741"},{"denom":"ASSET10","index":"0.000018999615823078"},{"denom":"ASSET11","index":"0.000023241706683585"},{"denom":"ASSET12","index":"0.000022372793234045"},{"denom":"ASSET13","index":"0.000007316911351959"},{"denom":"ASSET14","index":"0.000021266506066871"},{"denom":"ASSET15","index":"0.000017036720297506"},{"denom":"ASSET16","index":"0.000010298479660409"},{"denom":"ASSET17","index":"0.000008222611745720"},{"denom":"ASSET18","index":"0.000003315370510511"},{"denom":"ASSET2","index":"0.000007081336162231"},{"denom":"ASSET3","index":"0.000001948923871674"},{"denom":"ASSET4","index":"0.000018864412124408"},{"denom":"ASSET5","index":"0.000001519377842401"},{"denom":"ASSET6","index":"0.000006121992555640"},{"denom":"ASSET7","index":"0.000009661272655042"},{"denom":"ASSET8","index":"0.000013300968175029"},{"denom":"ASSET9","index":"0.000005629514833023"}],"last_reward_claim_height":"155"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET14","shares":"569650926.000000000000000000","reward_history":[],"last_reward_claim_height":"28"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET15","shares":"201818763.982223040484905665","reward_history":[{"denom":"ASSET0","index":"0.000001139195115521"},{"denom":"ASSET1","index":"0.000009496890331931"},{"denom":"ASSET10","index":"0.000006616523219856"},{"denom":"ASSET11","index":"0.000009187371854639"},{"denom":"ASSET12","index":"0.000008273091178185"},{"denom":"ASSET13","index":"0.000002846943294505"},{"denom":"ASSET14","index":"0.000008582261490710"},{"denom":"ASSET15","index":"0.000006136055842283"},{"denom":"ASSET16","index":"0.000004278248649000"},{"denom":"ASSET17","index":"0.000003038433916001"},{"denom":"ASSET18","index":"0.000001447320933748"},{"denom":"ASSET2","index":"0.000002803422698710"},{"denom":"ASSET3","index":"0.000000819928024772"},{"denom":"ASSET4","index":"0.000007718116540611"},{"denom":"ASSET5","index":"0.000000636445192901"},{"denom":"ASSET6","index":"0.000002590694026466"},{"denom":"ASSET7","index":"0.000003967685677409"},{"denom":"ASSET8","index":"0.000005177210075735"},{"denom":"ASSET9","index":"0.000002236262294314"}],"last_reward_claim_height":"79"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET16","shares":"589208421.000000000000000000","reward_history":[],"last_reward_claim_height":"25"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET6","shares":"33680305.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003310378542013"},{"denom":"ASSET1","index":"0.000028352771206955"},{"denom":"ASSET10","index":"0.000022778987578468"},{"denom":"ASSET11","index":"0.000028201706998458"},{"denom":"ASSET12","index":"0.000026949790221900"},{"denom":"ASSET13","index":"0.000008856641706946"},{"denom":"ASSET14","index":"0.000025865717784540"},{"denom":"ASSET15","index":"0.000020483790155485"},{"denom":"ASSET16","index":"0.000012564495758376"},{"denom":"ASSET17","index":"0.000009912517491786"},{"denom":"ASSET18","index":"0.000004051289802086"},{"denom":"ASSET2","index":"0.000008567503486413"},{"denom":"ASSET3","index":"0.000002358477605528"},{"denom":"ASSET4","index":"0.000022984011222606"},{"denom":"ASSET5","index":"0.000001848359330263"},{"denom":"ASSET6","index":"0.000007474666006436"},{"denom":"ASSET7","index":"0.000011763521743703"},{"denom":"ASSET8","index":"0.000016098224703406"},{"denom":"ASSET9","index":"0.000006837907042961"}],"last_reward_claim_height":"137"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET9","shares":"26057051.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001549911588522"},{"denom":"ASSET1","index":"0.000012922257740418"},{"denom":"ASSET10","index":"0.000009003081854783"},{"denom":"ASSET11","index":"0.000012500946332712"},{"denom":"ASSET12","index":"0.000011256607989023"},{"denom":"ASSET13","index":"0.000003873860414458"},{"denom":"ASSET14","index":"0.000011677307025497"},{"denom":"ASSET15","index":"0.000008349069378868"},{"denom":"ASSET16","index":"0.000005821200932633"},{"denom":"ASSET17","index":"0.000004134118188113"},{"denom":"ASSET18","index":"0.000001969385882532"},{"denom":"ASSET2","index":"0.000003814460404941"},{"denom":"ASSET3","index":"0.000001115740384942"},{"denom":"ASSET4","index":"0.000010501554259806"},{"denom":"ASSET5","index":"0.000000865892922233"},{"denom":"ASSET6","index":"0.000003524808812143"},{"denom":"ASSET7","index":"0.000005398664782463"},{"denom":"ASSET8","index":"0.000007044106283197"},{"denom":"ASSET9","index":"0.000003042260281224"}],"last_reward_claim_height":"91"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET10","shares":"889412346.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001549911588522"},{"denom":"ASSET1","index":"0.000012922257740418"},{"denom":"ASSET10","index":"0.000009003081854783"},{"denom":"ASSET11","index":"0.000012500946332712"},{"denom":"ASSET12","index":"0.000011256607989023"},{"denom":"ASSET13","index":"0.000003873860414458"},{"denom":"ASSET14","index":"0.000011677307025497"},{"denom":"ASSET15","index":"0.000008349069378868"},{"denom":"ASSET16","index":"0.000005821200932633"},{"denom":"ASSET17","index":"0.000004134118188113"},{"denom":"ASSET18","index":"0.000001969385882532"},{"denom":"ASSET2","index":"0.000003814460404941"},{"denom":"ASSET3","index":"0.000001115740384942"},{"denom":"ASSET4","index":"0.000010501554259806"},{"denom":"ASSET5","index":"0.000000865892922233"},{"denom":"ASSET6","index":"0.000003524808812143"},{"denom":"ASSET7","index":"0.000005398664782463"},{"denom":"ASSET8","index":"0.000007044106283197"},{"denom":"ASSET9","index":"0.000003042260281224"}],"last_reward_claim_height":"94"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET15","shares":"995515169.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001549911588522"},{"denom":"ASSET1","index":"0.000012922257740418"},{"denom":"ASSET10","index":"0.000009003081854783"},{"denom":"ASSET11","index":"0.000012500946332712"},{"denom":"ASSET12","index":"0.000011256607989023"},{"denom":"ASSET13","index":"0.000003873860414458"},{"denom":"ASSET14","index":"0.000011677307025497"},{"denom":"ASSET15","index":"0.000008349069378868"},{"denom":"ASSET16","index":"0.000005821200932633"},{"denom":"ASSET17","index":"0.000004134118188113"},{"denom":"ASSET18","index":"0.000001969385882532"},{"denom":"ASSET2","index":"0.000003814460404941"},{"denom":"ASSET3","index":"0.000001115740384942"},{"denom":"ASSET4","index":"0.000010501554259806"},{"denom":"ASSET5","index":"0.000000865892922233"},{"denom":"ASSET6","index":"0.000003524808812143"},{"denom":"ASSET7","index":"0.000005398664782463"},{"denom":"ASSET8","index":"0.000007044106283197"},{"denom":"ASSET9","index":"0.000003042260281224"}],"last_reward_claim_height":"76"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET17","shares":"414591241.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003086330633608"},{"denom":"ASSET1","index":"0.000026187842720704"},{"denom":"ASSET10","index":"0.000020922921087024"},{"denom":"ASSET11","index":"0.000026029396638226"},{"denom":"ASSET12","index":"0.000024828709288325"},{"denom":"ASSET13","index":"0.000008176601230700"},{"denom":"ASSET14","index":"0.000023887113573615"},{"denom":"ASSET15","index":"0.000018841856891118"},{"denom":"ASSET16","index":"0.000011616230118922"},{"denom":"ASSET17","index":"0.000009124242236202"},{"denom":"ASSET18","index":"0.000003767471049721"},{"denom":"ASSET2","index":"0.000007932284099147"},{"denom":"ASSET3","index":"0.000002202458257762"},{"denom":"ASSET4","index":"0.000021230824628511"},{"denom":"ASSET5","index":"0.000001715648257347"},{"denom":"ASSET6","index":"0.000006923830152599"},{"denom":"ASSET7","index":"0.000010879262909104"},{"denom":"ASSET8","index":"0.000014863870027497"},{"denom":"ASSET9","index":"0.000006308409915314"}],"last_reward_claim_height":"127"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET16","shares":"430274972.741291050983351520","reward_history":[{"denom":"ASSET0","index":"0.000003051773960929"},{"denom":"ASSET1","index":"0.000025898629359040"},{"denom":"ASSET10","index":"0.000020686863907037"},{"denom":"ASSET11","index":"0.000025740096441319"},{"denom":"ASSET12","index":"0.000024551000542772"},{"denom":"ASSET13","index":"0.000008085532012369"},{"denom":"ASSET14","index":"0.000023622558405526"},{"denom":"ASSET15","index":"0.000018629920308839"},{"denom":"ASSET16","index":"0.000011487540137638"},{"denom":"ASSET17","index":"0.000009021847693812"},{"denom":"ASSET18","index":"0.000003725572559942"},{"denom":"ASSET2","index":"0.000007844221178735"},{"denom":"ASSET3","index":"0.000002178252359768"},{"denom":"ASSET4","index":"0.000020996168979716"},{"denom":"ASSET5","index":"0.000001697004218389"},{"denom":"ASSET6","index":"0.000006847583721256"},{"denom":"ASSET7","index":"0.000010758483833946"},{"denom":"ASSET8","index":"0.000014699172267780"},{"denom":"ASSET9","index":"0.000006238834616461"}],"last_reward_claim_height":"163"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET4","shares":"64315159.000000001919640975","reward_history":[{"denom":"ASSET0","index":"0.000001813824295534"},{"denom":"ASSET1","index":"0.000015126179984122"},{"denom":"ASSET10","index":"0.000010538420488017"},{"denom":"ASSET11","index":"0.000014633035948465"},{"denom":"ASSET12","index":"0.000013177247733614"},{"denom":"ASSET13","index":"0.000004534560738834"},{"denom":"ASSET14","index":"0.000013669547344553"},{"denom":"ASSET15","index":"0.000009773371692973"},{"denom":"ASSET16","index":"0.000006813663054312"},{"denom":"ASSET17","index":"0.000004839398062246"},{"denom":"ASSET18","index":"0.000002305279481754"},{"denom":"ASSET2","index":"0.000004465317911910"},{"denom":"ASSET3","index":"0.000001306325039660"},{"denom":"ASSET4","index":"0.000012293135053249"},{"denom":"ASSET5","index":"0.000001013309662309"},{"denom":"ASSET6","index":"0.000004125859175036"},{"denom":"ASSET7","index":"0.000006318830169217"},{"denom":"ASSET8","index":"0.000008245807377042"},{"denom":"ASSET9","index":"0.000003561783463017"}],"last_reward_claim_height":"78"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET6","shares":"42040997.554158491601294702","reward_history":[{"denom":"ASSET0","index":"0.000003452880861936"},{"denom":"ASSET1","index":"0.000029278299049117"},{"denom":"ASSET10","index":"0.000023254773922096"},{"denom":"ASSET11","index":"0.000029065569213605"},{"denom":"ASSET12","index":"0.000027656204711461"},{"denom":"ASSET13","index":"0.000009124518140406"},{"denom":"ASSET14","index":"0.000026695142606829"},{"denom":"ASSET15","index":"0.000020967476611979"},{"denom":"ASSET16","index":"0.000012995878924798"},{"denom":"ASSET17","index":"0.000010163149632422"},{"denom":"ASSET18","index":"0.000004223627093961"},{"denom":"ASSET2","index":"0.000008858348919255"},{"denom":"ASSET3","index":"0.000002465420318230"},{"denom":"ASSET4","index":"0.000023739200929128"},{"denom":"ASSET5","index":"0.000001919695214447"},{"denom":"ASSET6","index":"0.000007752150153146"},{"denom":"ASSET7","index":"0.000012165597276913"},{"denom":"ASSET8","index":"0.000016587849042771"},{"denom":"ASSET9","index":"0.000007046182609545"}],"last_reward_claim_height":"139"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET11","shares":"14443051.074521229836199854","reward_history":[{"denom":"ASSET0","index":"0.000001813824295534"},{"denom":"ASSET1","index":"0.000015126179984122"},{"denom":"ASSET10","index":"0.000010538420488017"},{"denom":"ASSET11","index":"0.000014633035948465"},{"denom":"ASSET12","index":"0.000013177247733614"},{"denom":"ASSET13","index":"0.000004534560738834"},{"denom":"ASSET14","index":"0.000013669547344553"},{"denom":"ASSET15","index":"0.000009773371692973"},{"denom":"ASSET16","index":"0.000006813663054312"},{"denom":"ASSET17","index":"0.000004839398062246"},{"denom":"ASSET18","index":"0.000002305279481754"},{"denom":"ASSET2","index":"0.000004465317911910"},{"denom":"ASSET3","index":"0.000001306325039660"},{"denom":"ASSET4","index":"0.000012293135053249"},{"denom":"ASSET5","index":"0.000001013309662309"},{"denom":"ASSET6","index":"0.000004125859175036"},{"denom":"ASSET7","index":"0.000006318830169217"},{"denom":"ASSET8","index":"0.000008245807377042"},{"denom":"ASSET9","index":"0.000003561783463017"}],"last_reward_claim_height":"97"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET12","shares":"356346917.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003452880861936"},{"denom":"ASSET1","index":"0.000029278299049117"},{"denom":"ASSET10","index":"0.000023254773922096"},{"denom":"ASSET11","index":"0.000029065569213605"},{"denom":"ASSET12","index":"0.000027656204711461"},{"denom":"ASSET13","index":"0.000009124518140406"},{"denom":"ASSET14","index":"0.000026695142606829"},{"denom":"ASSET15","index":"0.000020967476611979"},{"denom":"ASSET16","index":"0.000012995878924798"},{"denom":"ASSET17","index":"0.000010163149632422"},{"denom":"ASSET18","index":"0.000004223627093961"},{"denom":"ASSET2","index":"0.000008858348919255"},{"denom":"ASSET3","index":"0.000002465420318230"},{"denom":"ASSET4","index":"0.000023739200929128"},{"denom":"ASSET5","index":"0.000001919695214447"},{"denom":"ASSET6","index":"0.000007752150153146"},{"denom":"ASSET7","index":"0.000012165597276913"},{"denom":"ASSET8","index":"0.000016587849042771"},{"denom":"ASSET9","index":"0.000007046182609545"}],"last_reward_claim_height":"126"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET14","shares":"172007978.973762759419140537","reward_history":[{"denom":"ASSET0","index":"0.000001813824295534"},{"denom":"ASSET1","index":"0.000015126179984122"},{"denom":"ASSET10","index":"0.000010538420488017"},{"denom":"ASSET11","index":"0.000014633035948465"},{"denom":"ASSET12","index":"0.000013177247733614"},{"denom":"ASSET13","index":"0.000004534560738834"},{"denom":"ASSET14","index":"0.000013669547344553"},{"denom":"ASSET15","index":"0.000009773371692973"},{"denom":"ASSET16","index":"0.000006813663054312"},{"denom":"ASSET17","index":"0.000004839398062246"},{"denom":"ASSET18","index":"0.000002305279481754"},{"denom":"ASSET2","index":"0.000004465317911910"},{"denom":"ASSET3","index":"0.000001306325039660"},{"denom":"ASSET4","index":"0.000012293135053249"},{"denom":"ASSET5","index":"0.000001013309662309"},{"denom":"ASSET6","index":"0.000004125859175036"},{"denom":"ASSET7","index":"0.000006318830169217"},{"denom":"ASSET8","index":"0.000008245807377042"},{"denom":"ASSET9","index":"0.000003561783463017"}],"last_reward_claim_height":"105"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET2","shares":"389117348.000000000000000000","reward_history":[],"last_reward_claim_height":"28"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET6","shares":"644429567.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004912340647587"},{"denom":"ASSET1","index":"0.000040199309595439"},{"denom":"ASSET10","index":"0.000034800768875367"},{"denom":"ASSET11","index":"0.000041767894394800"},{"denom":"ASSET12","index":"0.000039753547235653"},{"denom":"ASSET13","index":"0.000013472552474856"},{"denom":"ASSET14","index":"0.000038537764465707"},{"denom":"ASSET15","index":"0.000031242193966784"},{"denom":"ASSET16","index":"0.000017838437870347"},{"denom":"ASSET17","index":"0.000014440562344565"},{"denom":"ASSET18","index":"0.000006002059033299"},{"denom":"ASSET2","index":"0.000012133740101151"},{"denom":"ASSET3","index":"0.000003488688045009"},{"denom":"ASSET4","index":"0.000032952478616949"},{"denom":"ASSET5","index":"0.000002739203403453"},{"denom":"ASSET6","index":"0.000011180764418736"},{"denom":"ASSET7","index":"0.000017269876640579"},{"denom":"ASSET8","index":"0.000024857889435420"},{"denom":"ASSET9","index":"0.000009971931425304"}],"last_reward_claim_height":"200"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET9","shares":"385220358.000000000000000000","reward_history":[],"last_reward_claim_height":"7"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET13","shares":"186035752.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001655416114862"},{"denom":"ASSET1","index":"0.000013800538848519"},{"denom":"ASSET10","index":"0.000009615249134678"},{"denom":"ASSET11","index":"0.000013350879623065"},{"denom":"ASSET12","index":"0.000012022439267096"},{"denom":"ASSET13","index":"0.000004137189147657"},{"denom":"ASSET14","index":"0.000012471558036751"},{"denom":"ASSET15","index":"0.000008916980241305"},{"denom":"ASSET16","index":"0.000006216863065381"},{"denom":"ASSET17","index":"0.000004414983428766"},{"denom":"ASSET18","index":"0.000002102913517117"},{"denom":"ASSET2","index":"0.000004073955819077"},{"denom":"ASSET3","index":"0.000001191705038613"},{"denom":"ASSET4","index":"0.000011215538757958"},{"denom":"ASSET5","index":"0.000000924719873500"},{"denom":"ASSET6","index":"0.000003764274645778"},{"denom":"ASSET7","index":"0.000005765582472528"},{"denom":"ASSET8","index":"0.000007523144733557"},{"denom":"ASSET9","index":"0.000003249220268545"}],"last_reward_claim_height":"71"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET18","shares":"280748947.041478983299664314","reward_history":[{"denom":"ASSET0","index":"0.000003262792429801"},{"denom":"ASSET1","index":"0.000027679878715890"},{"denom":"ASSET10","index":"0.000022086570261210"},{"denom":"ASSET11","index":"0.000027505267384149"},{"denom":"ASSET12","index":"0.000026222420015979"},{"denom":"ASSET13","index":"0.000008638975204347"},{"denom":"ASSET14","index":"0.000025246236428505"},{"denom":"ASSET15","index":"0.000019895354512471"},{"denom":"ASSET16","index":"0.000012279836462442"},{"denom":"ASSET17","index":"0.000009636125515167"},{"denom":"ASSET18","index":"0.000003984145752232"},{"denom":"ASSET2","index":"0.000008382344169353"},{"denom":"ASSET3","index":"0.000002328549799735"},{"denom":"ASSET4","index":"0.000022441247538096"},{"denom":"ASSET5","index":"0.000001813932132265"},{"denom":"ASSET6","index":"0.000007320527694069"},{"denom":"ASSET7","index":"0.000011499571173317"},{"denom":"ASSET8","index":"0.000015704553099640"},{"denom":"ASSET9","index":"0.000006666608399750"}],"last_reward_claim_height":"131"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET4","shares":"1138183163.859022686464069191","reward_history":[{"denom":"ASSET0","index":"0.000003296156578493"},{"denom":"ASSET1","index":"0.000027968412540894"},{"denom":"ASSET10","index":"0.000022307812536905"},{"denom":"ASSET11","index":"0.000027788867279184"},{"denom":"ASSET12","index":"0.000026488589695468"},{"denom":"ASSET13","index":"0.000008728285856057"},{"denom":"ASSET14","index":"0.000025508064125070"},{"denom":"ASSET15","index":"0.000020096610749334"},{"denom":"ASSET16","index":"0.000012407784704791"},{"denom":"ASSET17","index":"0.000009734180928237"},{"denom":"ASSET18","index":"0.000004026678592252"},{"denom":"ASSET2","index":"0.000008468774984810"},{"denom":"ASSET3","index":"0.000002353220293961"},{"denom":"ASSET4","index":"0.000022675279511256"},{"denom":"ASSET5","index":"0.000001832728492238"},{"denom":"ASSET6","index":"0.000007397034942132"},{"denom":"ASSET7","index":"0.000011618881320506"},{"denom":"ASSET8","index":"0.000015866042832442"},{"denom":"ASSET9","index":"0.000006735898552490"}],"last_reward_claim_height":"165"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET14","shares":"353153341.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001676736923170"},{"denom":"ASSET1","index":"0.000013985463602132"},{"denom":"ASSET10","index":"0.000009743339709608"},{"denom":"ASSET11","index":"0.000013528824721587"},{"denom":"ASSET12","index":"0.000012182509640070"},{"denom":"ASSET13","index":"0.000004192868462713"},{"denom":"ASSET14","index":"0.000012638122365828"},{"denom":"ASSET15","index":"0.000009036319060854"},{"denom":"ASSET16","index":"0.000006299564241947"},{"denom":"ASSET17","index":"0.000004474034874554"},{"denom":"ASSET18","index":"0.000002131323494140"},{"denom":"ASSET2","index":"0.000004128220711085"},{"denom":"ASSET3","index":"0.000001207784185172"},{"denom":"ASSET4","index":"0.000011365690429028"},{"denom":"ASSET5","index":"0.000000936879321208"},{"denom":"ASSET6","index":"0.000003814217346036"},{"denom":"ASSET7","index":"0.000005841899206614"},{"denom":"ASSET8","index":"0.000007623303918134"},{"denom":"ASSET9","index":"0.000003292930713863"}],"last_reward_claim_height":"108"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET2","shares":"285442023.000000000000000000","reward_history":[],"last_reward_claim_height":"20"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET18","shares":"102361983.246491276416646706","reward_history":[{"denom":"ASSET0","index":"0.000003237925740153"},{"denom":"ASSET1","index":"0.000027468087048908"},{"denom":"ASSET10","index":"0.000021838560142362"},{"denom":"ASSET11","index":"0.000027274223261348"},{"denom":"ASSET12","index":"0.000025962125103579"},{"denom":"ASSET13","index":"0.000008562973508850"},{"denom":"ASSET14","index":"0.000025046299162567"},{"denom":"ASSET15","index":"0.000019687604125947"},{"denom":"ASSET16","index":"0.000012189946370622"},{"denom":"ASSET17","index":"0.000009540519193028"},{"denom":"ASSET18","index":"0.000003959057055270"},{"denom":"ASSET2","index":"0.000008312511220651"},{"denom":"ASSET3","index":"0.000002312646079660"},{"denom":"ASSET4","index":"0.000022269978905361"},{"denom":"ASSET5","index":"0.000001800462011039"},{"denom":"ASSET6","index":"0.000007270233858279"},{"denom":"ASSET7","index":"0.000011411601588483"},{"denom":"ASSET8","index":"0.000015567552190875"},{"denom":"ASSET9","index":"0.000006610637099613"}],"last_reward_claim_height":"149"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET2","shares":"94792122.891291841078493949","reward_history":[{"denom":"ASSET0","index":"0.000003224934301433"},{"denom":"ASSET1","index":"0.000027341438894536"},{"denom":"ASSET10","index":"0.000021706571274337"},{"denom":"ASSET11","index":"0.000027141091242061"},{"denom":"ASSET12","index":"0.000025819235056226"},{"denom":"ASSET13","index":"0.000008520116782966"},{"denom":"ASSET14","index":"0.000024928444433519"},{"denom":"ASSET15","index":"0.000019573794936329"},{"denom":"ASSET16","index":"0.000012137286393349"},{"denom":"ASSET17","index":"0.000009487995483061"},{"denom":"ASSET18","index":"0.000003945309126507"},{"denom":"ASSET2","index":"0.000008271045740629"},{"denom":"ASSET3","index":"0.000002302032616683"},{"denom":"ASSET4","index":"0.000022168721917699"},{"denom":"ASSET5","index":"0.000001793343624246"},{"denom":"ASSET6","index":"0.000007240378309003"},{"denom":"ASSET7","index":"0.000011361888746536"},{"denom":"ASSET8","index":"0.000015488944629697"},{"denom":"ASSET9","index":"0.000006579500326985"}],"last_reward_claim_height":"162"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET12","shares":"148510732.467747679800977490","reward_history":[{"denom":"ASSET0","index":"0.000003224934301433"},{"denom":"ASSET1","index":"0.000027341438894536"},{"denom":"ASSET10","index":"0.000021706571274337"},{"denom":"ASSET11","index":"0.000027141091242061"},{"denom":"ASSET12","index":"0.000025819235056226"},{"denom":"ASSET13","index":"0.000008520116782966"},{"denom":"ASSET14","index":"0.000024928444433519"},{"denom":"ASSET15","index":"0.000019573794936329"},{"denom":"ASSET16","index":"0.000012137286393349"},{"denom":"ASSET17","index":"0.000009487995483061"},{"denom":"ASSET18","index":"0.000003945309126507"},{"denom":"ASSET2","index":"0.000008271045740629"},{"denom":"ASSET3","index":"0.000002302032616683"},{"denom":"ASSET4","index":"0.000022168721917699"},{"denom":"ASSET5","index":"0.000001793343624246"},{"denom":"ASSET6","index":"0.000007240378309003"},{"denom":"ASSET7","index":"0.000011361888746536"},{"denom":"ASSET8","index":"0.000015488944629697"},{"denom":"ASSET9","index":"0.000006579500326985"}],"last_reward_claim_height":"158"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET12","shares":"154349195.000000004321777460","reward_history":[{"denom":"ASSET0","index":"0.000001505652349479"},{"denom":"ASSET1","index":"0.000012557843622987"},{"denom":"ASSET10","index":"0.000008748308836028"},{"denom":"ASSET11","index":"0.000012147743761261"},{"denom":"ASSET12","index":"0.000010939413811534"},{"denom":"ASSET13","index":"0.000003764130873697"},{"denom":"ASSET14","index":"0.000011348049030896"},{"denom":"ASSET15","index":"0.000008114118692716"},{"denom":"ASSET16","index":"0.000005656448807088"},{"denom":"ASSET17","index":"0.000004017514002549"},{"denom":"ASSET18","index":"0.000001912822926478"},{"denom":"ASSET2","index":"0.000003707009821528"},{"denom":"ASSET3","index":"0.000001083835348847"},{"denom":"ASSET4","index":"0.000010205627987517"},{"denom":"ASSET5","index":"0.000000840704716538"},{"denom":"ASSET6","index":"0.000003424333845410"},{"denom":"ASSET7","index":"0.000005246348945363"},{"denom":"ASSET8","index":"0.000006845738406093"},{"denom":"ASSET9","index":"0.000002955648289152"}],"last_reward_claim_height":"80"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET3","shares":"151098414.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001815877519749"},{"denom":"ASSET1","index":"0.000015137138459046"},{"denom":"ASSET10","index":"0.000010545739718907"},{"denom":"ASSET11","index":"0.000014644907422941"},{"denom":"ASSET12","index":"0.000013186828093302"},{"denom":"ASSET13","index":"0.000004537625601742"},{"denom":"ASSET14","index":"0.000013679059129408"},{"denom":"ASSET15","index":"0.000009780506595550"},{"denom":"ASSET16","index":"0.000006818847588397"},{"denom":"ASSET17","index":"0.000004841650653454"},{"denom":"ASSET18","index":"0.000002306040358223"},{"denom":"ASSET2","index":"0.000004467306882298"},{"denom":"ASSET3","index":"0.000001307100902598"},{"denom":"ASSET4","index":"0.000012301639507366"},{"denom":"ASSET5","index":"0.000001013416839040"},{"denom":"ASSET6","index":"0.000004128122470864"},{"denom":"ASSET7","index":"0.000006324548354661"},{"denom":"ASSET8","index":"0.000008252108546467"},{"denom":"ASSET9","index":"0.000003563504517685"}],"last_reward_claim_height":"122"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET11","shares":"705798551.344133690621818332","reward_history":[{"denom":"ASSET0","index":"0.000001815877519749"},{"denom":"ASSET1","index":"0.000015137138459046"},{"denom":"ASSET10","index":"0.000010545739718907"},{"denom":"ASSET11","index":"0.000014644907422941"},{"denom":"ASSET12","index":"0.000013186828093302"},{"denom":"ASSET13","index":"0.000004537625601742"},{"denom":"ASSET14","index":"0.000013679059129408"},{"denom":"ASSET15","index":"0.000009780506595550"},{"denom":"ASSET16","index":"0.000006818847588397"},{"denom":"ASSET17","index":"0.000004841650653454"},{"denom":"ASSET18","index":"0.000002306040358223"},{"denom":"ASSET2","index":"0.000004467306882298"},{"denom":"ASSET3","index":"0.000001307100902598"},{"denom":"ASSET4","index":"0.000012301639507366"},{"denom":"ASSET5","index":"0.000001013416839040"},{"denom":"ASSET6","index":"0.000004128122470864"},{"denom":"ASSET7","index":"0.000006324548354661"},{"denom":"ASSET8","index":"0.000008252108546467"},{"denom":"ASSET9","index":"0.000003563504517685"}],"last_reward_claim_height":"120"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET14","shares":"915735654.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001815877519749"},{"denom":"ASSET1","index":"0.000015137138459046"},{"denom":"ASSET10","index":"0.000010545739718907"},{"denom":"ASSET11","index":"0.000014644907422941"},{"denom":"ASSET12","index":"0.000013186828093302"},{"denom":"ASSET13","index":"0.000004537625601742"},{"denom":"ASSET14","index":"0.000013679059129408"},{"denom":"ASSET15","index":"0.000009780506595550"},{"denom":"ASSET16","index":"0.000006818847588397"},{"denom":"ASSET17","index":"0.000004841650653454"},{"denom":"ASSET18","index":"0.000002306040358223"},{"denom":"ASSET2","index":"0.000004467306882298"},{"denom":"ASSET3","index":"0.000001307100902598"},{"denom":"ASSET4","index":"0.000012301639507366"},{"denom":"ASSET5","index":"0.000001013416839040"},{"denom":"ASSET6","index":"0.000004128122470864"},{"denom":"ASSET7","index":"0.000006324548354661"},{"denom":"ASSET8","index":"0.000008252108546467"},{"denom":"ASSET9","index":"0.000003563504517685"}],"last_reward_claim_height":"69"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET15","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"28"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET16","shares":"972452795.963088499301908280","reward_history":[{"denom":"ASSET0","index":"0.000004565478059780"},{"denom":"ASSET1","index":"0.000037736114077554"},{"denom":"ASSET10","index":"0.000031825820517489"},{"denom":"ASSET11","index":"0.000038685850648716"},{"denom":"ASSET12","index":"0.000036788452071453"},{"denom":"ASSET13","index":"0.000012381244410564"},{"denom":"ASSET14","index":"0.000035654955133069"},{"denom":"ASSET15","index":"0.000028616198788550"},{"denom":"ASSET16","index":"0.000016750351619561"},{"denom":"ASSET17","index":"0.000013405640316386"},{"denom":"ASSET18","index":"0.000005582271545328"},{"denom":"ASSET2","index":"0.000011392477328809"},{"denom":"ASSET3","index":"0.000003247635140503"},{"denom":"ASSET4","index":"0.000030836249037897"},{"denom":"ASSET5","index":"0.000002543131552682"},{"denom":"ASSET6","index":"0.000010352525282998"},{"denom":"ASSET7","index":"0.000016058778639515"},{"denom":"ASSET8","index":"0.000022752754383051"},{"denom":"ASSET9","index":"0.000009275867790330"}],"last_reward_claim_height":"186"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET3","shares":"999999999.999999862000000000","reward_history":[],"last_reward_claim_height":"56"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET7","shares":"632796320.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003053196756625"},{"denom":"ASSET1","index":"0.000025905581999278"},{"denom":"ASSET10","index":"0.000020682143152818"},{"denom":"ASSET11","index":"0.000025745380902198"},{"denom":"ASSET12","index":"0.000024550499550641"},{"denom":"ASSET13","index":"0.000008086239198545"},{"denom":"ASSET14","index":"0.000023629161089906"},{"denom":"ASSET15","index":"0.000018628151539367"},{"denom":"ASSET16","index":"0.000011492271696690"},{"denom":"ASSET17","index":"0.000009021688715966"},{"denom":"ASSET18","index":"0.000003727673632537"},{"denom":"ASSET2","index":"0.000007845443656426"},{"denom":"ASSET3","index":"0.000002178852781858"},{"denom":"ASSET4","index":"0.000021002318737231"},{"denom":"ASSET5","index":"0.000001697417622442"},{"denom":"ASSET6","index":"0.000006850319017638"},{"denom":"ASSET7","index":"0.000010761758840612"},{"denom":"ASSET8","index":"0.000014701087498525"},{"denom":"ASSET9","index":"0.000006240132889304"}],"last_reward_claim_height":"129"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET8","shares":"871841094.999999988666065765","reward_history":[{"denom":"ASSET0","index":"0.000001541968050995"},{"denom":"ASSET1","index":"0.000012857487907975"},{"denom":"ASSET10","index":"0.000008957704485900"},{"denom":"ASSET11","index":"0.000012438763825161"},{"denom":"ASSET12","index":"0.000011200869215257"},{"denom":"ASSET13","index":"0.000003854089325736"},{"denom":"ASSET14","index":"0.000011619593298070"},{"denom":"ASSET15","index":"0.000008307186714386"},{"denom":"ASSET16","index":"0.000005792349812251"},{"denom":"ASSET17","index":"0.000004113299472240"},{"denom":"ASSET18","index":"0.000001959030530305"},{"denom":"ASSET2","index":"0.000003795102401372"},{"denom":"ASSET3","index":"0.000001109951140156"},{"denom":"ASSET4","index":"0.000010448993630046"},{"denom":"ASSET5","index":"0.000000861541416423"},{"denom":"ASSET6","index":"0.000003506814193562"},{"denom":"ASSET7","index":"0.000005371133324183"},{"denom":"ASSET8","index":"0.000007009474378365"},{"denom":"ASSET9","index":"0.000003027441582881"}],"last_reward_claim_height":"71"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET10","shares":"23476456.843105271868317418","reward_history":[{"denom":"ASSET0","index":"0.000004642329094444"},{"denom":"ASSET1","index":"0.000037967161482845"},{"denom":"ASSET10","index":"0.000032931253260152"},{"denom":"ASSET11","index":"0.000039486280861719"},{"denom":"ASSET12","index":"0.000037586804680979"},{"denom":"ASSET13","index":"0.000012743069023422"},{"denom":"ASSET14","index":"0.000036434359116272"},{"denom":"ASSET15","index":"0.000029559994513742"},{"denom":"ASSET16","index":"0.000016847409196889"},{"denom":"ASSET17","index":"0.000013650334747675"},{"denom":"ASSET18","index":"0.000005671704965855"},{"denom":"ASSET2","index":"0.000011459689932521"},{"denom":"ASSET3","index":"0.000003296448580147"},{"denom":"ASSET4","index":"0.000031129189219066"},{"denom":"ASSET5","index":"0.000002588892680165"},{"denom":"ASSET6","index":"0.000010569495723679"},{"denom":"ASSET7","index":"0.000016320903643661"},{"denom":"ASSET8","index":"0.000023519579582169"},{"denom":"ASSET9","index":"0.000009424684718802"}],"last_reward_claim_height":"185"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET16","shares":"723450971.496202348903610728","reward_history":[{"denom":"ASSET0","index":"0.000001541968050995"},{"denom":"ASSET1","index":"0.000012857487907975"},{"denom":"ASSET10","index":"0.000008957704485900"},{"denom":"ASSET11","index":"0.000012438763825161"},{"denom":"ASSET12","index":"0.000011200869215257"},{"denom":"ASSET13","index":"0.000003854089325736"},{"denom":"ASSET14","index":"0.000011619593298070"},{"denom":"ASSET15","index":"0.000008307186714386"},{"denom":"ASSET16","index":"0.000005792349812251"},{"denom":"ASSET17","index":"0.000004113299472240"},{"denom":"ASSET18","index":"0.000001959030530305"},{"denom":"ASSET2","index":"0.000003795102401372"},{"denom":"ASSET3","index":"0.000001109951140156"},{"denom":"ASSET4","index":"0.000010448993630046"},{"denom":"ASSET5","index":"0.000000861541416423"},{"denom":"ASSET6","index":"0.000003506814193562"},{"denom":"ASSET7","index":"0.000005371133324183"},{"denom":"ASSET8","index":"0.000007009474378365"},{"denom":"ASSET9","index":"0.000003027441582881"}],"last_reward_claim_height":"84"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET4","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002827520151011"},{"denom":"ASSET1","index":"0.000024027878888002"},{"denom":"ASSET10","index":"0.000019355847170480"},{"denom":"ASSET11","index":"0.000023924401086085"},{"denom":"ASSET12","index":"0.000022900407365256"},{"denom":"ASSET13","index":"0.000007521399074311"},{"denom":"ASSET14","index":"0.000021930603354990"},{"denom":"ASSET15","index":"0.000017401215805238"},{"denom":"ASSET16","index":"0.000010647310435771"},{"denom":"ASSET17","index":"0.000008415007538097"},{"denom":"ASSET18","index":"0.000003442593620109"},{"denom":"ASSET2","index":"0.000007289635767836"},{"denom":"ASSET3","index":"0.000002016810506595"},{"denom":"ASSET4","index":"0.000019477449509443"},{"denom":"ASSET5","index":"0.000001571692130579"},{"denom":"ASSET6","index":"0.000006339251488002"},{"denom":"ASSET7","index":"0.000009978075244424"},{"denom":"ASSET8","index":"0.000013673195599374"},{"denom":"ASSET9","index":"0.000005796522499795"}],"last_reward_claim_height":"133"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET9","shares":"278869670.790538177709623044","reward_history":[{"denom":"ASSET0","index":"0.000002827520151011"},{"denom":"ASSET1","index":"0.000024027878888002"},{"denom":"ASSET10","index":"0.000019355847170480"},{"denom":"ASSET11","index":"0.000023924401086085"},{"denom":"ASSET12","index":"0.000022900407365256"},{"denom":"ASSET13","index":"0.000007521399074311"},{"denom":"ASSET14","index":"0.000021930603354990"},{"denom":"ASSET15","index":"0.000017401215805238"},{"denom":"ASSET16","index":"0.000010647310435771"},{"denom":"ASSET17","index":"0.000008415007538097"},{"denom":"ASSET18","index":"0.000003442593620109"},{"denom":"ASSET2","index":"0.000007289635767836"},{"denom":"ASSET3","index":"0.000002016810506595"},{"denom":"ASSET4","index":"0.000019477449509443"},{"denom":"ASSET5","index":"0.000001571692130579"},{"denom":"ASSET6","index":"0.000006339251488002"},{"denom":"ASSET7","index":"0.000009978075244424"},{"denom":"ASSET8","index":"0.000013673195599374"},{"denom":"ASSET9","index":"0.000005796522499795"}],"last_reward_claim_height":"166"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET4","shares":"1481383.000000001719289795","reward_history":[{"denom":"ASSET0","index":"0.000001571435631869"},{"denom":"ASSET1","index":"0.000013104175099655"},{"denom":"ASSET10","index":"0.000009129715488355"},{"denom":"ASSET11","index":"0.000012677036600848"},{"denom":"ASSET12","index":"0.000011415350365342"},{"denom":"ASSET13","index":"0.000003928095848150"},{"denom":"ASSET14","index":"0.000011841502401104"},{"denom":"ASSET15","index":"0.000008466812321615"},{"denom":"ASSET16","index":"0.000005902994865728"},{"denom":"ASSET17","index":"0.000004192467944409"},{"denom":"ASSET18","index":"0.000001996601204585"},{"denom":"ASSET2","index":"0.000003867921602360"},{"denom":"ASSET3","index":"0.000001131473113468"},{"denom":"ASSET4","index":"0.000010648868578800"},{"denom":"ASSET5","index":"0.000000877952110712"},{"denom":"ASSET6","index":"0.000003573955614728"},{"denom":"ASSET7","index":"0.000005473883440830"},{"denom":"ASSET8","index":"0.000007142978914228"},{"denom":"ASSET9","index":"0.000003084669944040"}],"last_reward_claim_height":"72"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET11","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003141123056438"},{"denom":"ASSET1","index":"0.000026662100889972"},{"denom":"ASSET10","index":"0.000021312054987248"},{"denom":"ASSET11","index":"0.000026503481745319"},{"denom":"ASSET12","index":"0.000025286293002787"},{"denom":"ASSET13","index":"0.000008324908472884"},{"denom":"ASSET14","index":"0.000024319980387721"},{"denom":"ASSET15","index":"0.000019190708128374"},{"denom":"ASSET16","index":"0.000011824997422058"},{"denom":"ASSET17","index":"0.000009292034078872"},{"denom":"ASSET18","index":"0.000003834040785154"},{"denom":"ASSET2","index":"0.000008076003481032"},{"denom":"ASSET3","index":"0.000002241608843356"},{"denom":"ASSET4","index":"0.000021614431804298"},{"denom":"ASSET5","index":"0.000001746420421862"},{"denom":"ASSET6","index":"0.000007047828859327"},{"denom":"ASSET7","index":"0.000011075197168484"},{"denom":"ASSET8","index":"0.000015134882092008"},{"denom":"ASSET9","index":"0.000006422749115253"}],"last_reward_claim_height":"166"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET3","shares":"806459331.693762832860858848","reward_history":[{"denom":"ASSET0","index":"0.000003054120352223"},{"denom":"ASSET1","index":"0.000025909289170716"},{"denom":"ASSET10","index":"0.000020664041936079"},{"denom":"ASSET11","index":"0.000025743066158465"},{"denom":"ASSET12","index":"0.000024537849095602"},{"denom":"ASSET13","index":"0.000008085297309351"},{"denom":"ASSET14","index":"0.000023630023251940"},{"denom":"ASSET15","index":"0.000018615490114349"},{"denom":"ASSET16","index":"0.000011495216270003"},{"denom":"ASSET17","index":"0.000009017197770141"},{"denom":"ASSET18","index":"0.000003730110182262"},{"denom":"ASSET2","index":"0.000007845299155388"},{"denom":"ASSET3","index":"0.000002179886924088"},{"denom":"ASSET4","index":"0.000021005968780047"},{"denom":"ASSET5","index":"0.000001698230665763"},{"denom":"ASSET6","index":"0.000006853367473041"},{"denom":"ASSET7","index":"0.000010764057351149"},{"denom":"ASSET8","index":"0.000014698116791571"},{"denom":"ASSET9","index":"0.000006239964640655"}],"last_reward_claim_height":"135"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET8","shares":"12384552.008852341953009123","reward_history":[{"denom":"ASSET0","index":"0.000003054120352223"},{"denom":"ASSET1","index":"0.000025909289170716"},{"denom":"ASSET10","index":"0.000020664041936079"},{"denom":"ASSET11","index":"0.000025743066158465"},{"denom":"ASSET12","index":"0.000024537849095602"},{"denom":"ASSET13","index":"0.000008085297309351"},{"denom":"ASSET14","index":"0.000023630023251940"},{"denom":"ASSET15","index":"0.000018615490114349"},{"denom":"ASSET16","index":"0.000011495216270003"},{"denom":"ASSET17","index":"0.000009017197770141"},{"denom":"ASSET18","index":"0.000003730110182262"},{"denom":"ASSET2","index":"0.000007845299155388"},{"denom":"ASSET3","index":"0.000002179886924088"},{"denom":"ASSET4","index":"0.000021005968780047"},{"denom":"ASSET5","index":"0.000001698230665763"},{"denom":"ASSET6","index":"0.000006853367473041"},{"denom":"ASSET7","index":"0.000010764057351149"},{"denom":"ASSET8","index":"0.000014698116791571"},{"denom":"ASSET9","index":"0.000006239964640655"}],"last_reward_claim_height":"172"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET11","shares":"245040013.854277828031450707","reward_history":[{"denom":"ASSET0","index":"0.000003054120352223"},{"denom":"ASSET1","index":"0.000025909289170716"},{"denom":"ASSET10","index":"0.000020664041936079"},{"denom":"ASSET11","index":"0.000025743066158465"},{"denom":"ASSET12","index":"0.000024537849095602"},{"denom":"ASSET13","index":"0.000008085297309351"},{"denom":"ASSET14","index":"0.000023630023251940"},{"denom":"ASSET15","index":"0.000018615490114349"},{"denom":"ASSET16","index":"0.000011495216270003"},{"denom":"ASSET17","index":"0.000009017197770141"},{"denom":"ASSET18","index":"0.000003730110182262"},{"denom":"ASSET2","index":"0.000007845299155388"},{"denom":"ASSET3","index":"0.000002179886924088"},{"denom":"ASSET4","index":"0.000021005968780047"},{"denom":"ASSET5","index":"0.000001698230665763"},{"denom":"ASSET6","index":"0.000006853367473041"},{"denom":"ASSET7","index":"0.000010764057351149"},{"denom":"ASSET8","index":"0.000014698116791571"},{"denom":"ASSET9","index":"0.000006239964640655"}],"last_reward_claim_height":"134"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET13","shares":"703944009.999999807119341260","reward_history":[{"denom":"ASSET0","index":"0.000001554974273829"},{"denom":"ASSET1","index":"0.000012964145980643"},{"denom":"ASSET10","index":"0.000009032293690170"},{"denom":"ASSET11","index":"0.000012541598623624"},{"denom":"ASSET12","index":"0.000011293609918011"},{"denom":"ASSET13","index":"0.000003886649549954"},{"denom":"ASSET14","index":"0.000011715371140412"},{"denom":"ASSET15","index":"0.000008376264351692"},{"denom":"ASSET16","index":"0.000005840194074962"},{"denom":"ASSET17","index":"0.000004147646243034"},{"denom":"ASSET18","index":"0.000001975556294303"},{"denom":"ASSET2","index":"0.000003826903319009"},{"denom":"ASSET3","index":"0.000001119455695618"},{"denom":"ASSET4","index":"0.000010535776146539"},{"denom":"ASSET5","index":"0.000000869071819878"},{"denom":"ASSET6","index":"0.000003536426577765"},{"denom":"ASSET7","index":"0.000005416074448708"},{"denom":"ASSET8","index":"0.000007067350213206"},{"denom":"ASSET9","index":"0.000003052560720565"}],"last_reward_claim_height":"119"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET15","shares":"9783946.432753614101832982","reward_history":[{"denom":"ASSET0","index":"0.000001554974273829"},{"denom":"ASSET1","index":"0.000012964145980643"},{"denom":"ASSET10","index":"0.000009032293690170"},{"denom":"ASSET11","index":"0.000012541598623624"},{"denom":"ASSET12","index":"0.000011293609918011"},{"denom":"ASSET13","index":"0.000003886649549954"},{"denom":"ASSET14","index":"0.000011715371140412"},{"denom":"ASSET15","index":"0.000008376264351692"},{"denom":"ASSET16","index":"0.000005840194074962"},{"denom":"ASSET17","index":"0.000004147646243034"},{"denom":"ASSET18","index":"0.000001975556294303"},{"denom":"ASSET2","index":"0.000003826903319009"},{"denom":"ASSET3","index":"0.000001119455695618"},{"denom":"ASSET4","index":"0.000010535776146539"},{"denom":"ASSET5","index":"0.000000869071819878"},{"denom":"ASSET6","index":"0.000003536426577765"},{"denom":"ASSET7","index":"0.000005416074448708"},{"denom":"ASSET8","index":"0.000007067350213206"},{"denom":"ASSET9","index":"0.000003052560720565"}],"last_reward_claim_height":"100"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET16","shares":"357779313.715411945657225407","reward_history":[{"denom":"ASSET0","index":"0.000001554974273829"},{"denom":"ASSET1","index":"0.000012964145980643"},{"denom":"ASSET10","index":"0.000009032293690170"},{"denom":"ASSET11","index":"0.000012541598623624"},{"denom":"ASSET12","index":"0.000011293609918011"},{"denom":"ASSET13","index":"0.000003886649549954"},{"denom":"ASSET14","index":"0.000011715371140412"},{"denom":"ASSET15","index":"0.000008376264351692"},{"denom":"ASSET16","index":"0.000005840194074962"},{"denom":"ASSET17","index":"0.000004147646243034"},{"denom":"ASSET18","index":"0.000001975556294303"},{"denom":"ASSET2","index":"0.000003826903319009"},{"denom":"ASSET3","index":"0.000001119455695618"},{"denom":"ASSET4","index":"0.000010535776146539"},{"denom":"ASSET5","index":"0.000000869071819878"},{"denom":"ASSET6","index":"0.000003536426577765"},{"denom":"ASSET7","index":"0.000005416074448708"},{"denom":"ASSET8","index":"0.000007067350213206"},{"denom":"ASSET9","index":"0.000003052560720565"}],"last_reward_claim_height":"93"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET7","shares":"965075508.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003152887181228"},{"denom":"ASSET1","index":"0.000026760532918289"},{"denom":"ASSET10","index":"0.000021371603424459"},{"denom":"ASSET11","index":"0.000026596151859305"},{"denom":"ASSET12","index":"0.000025366346961436"},{"denom":"ASSET13","index":"0.000008353980761099"},{"denom":"ASSET14","index":"0.000024408754798213"},{"denom":"ASSET15","index":"0.000019248058608344"},{"denom":"ASSET16","index":"0.000011870971278696"},{"denom":"ASSET17","index":"0.000009321801721671"},{"denom":"ASSET18","index":"0.000003850124607081"},{"denom":"ASSET2","index":"0.000008105134387478"},{"denom":"ASSET3","index":"0.000002250596051831"},{"denom":"ASSET4","index":"0.000021694971342643"},{"denom":"ASSET5","index":"0.000001752750611640"},{"denom":"ASSET6","index":"0.000007075802880646"},{"denom":"ASSET7","index":"0.000011117440314842"},{"denom":"ASSET8","index":"0.000015186957305377"},{"denom":"ASSET9","index":"0.000006446159830056"}],"last_reward_claim_height":"127"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET14","shares":"834592283.014029196052693934","reward_history":[{"denom":"ASSET0","index":"0.000002831039632868"},{"denom":"ASSET1","index":"0.000024014703977493"},{"denom":"ASSET10","index":"0.000019136467933987"},{"denom":"ASSET11","index":"0.000023856136612857"},{"denom":"ASSET12","index":"0.000022731094165303"},{"denom":"ASSET13","index":"0.000007491812146677"},{"denom":"ASSET14","index":"0.000021900750691559"},{"denom":"ASSET15","index":"0.000017242457090593"},{"denom":"ASSET16","index":"0.000010655585625623"},{"denom":"ASSET17","index":"0.000008353141870908"},{"denom":"ASSET18","index":"0.000003458892129556"},{"denom":"ASSET2","index":"0.000007270317321266"},{"denom":"ASSET3","index":"0.000002020551075646"},{"denom":"ASSET4","index":"0.000019470118745656"},{"denom":"ASSET5","index":"0.000001574098937698"},{"denom":"ASSET6","index":"0.000006353413461243"},{"denom":"ASSET7","index":"0.000009977493764026"},{"denom":"ASSET8","index":"0.000013619759476676"},{"denom":"ASSET9","index":"0.000005782490697784"}],"last_reward_claim_height":"152"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET15","shares":"2153445500.641664771567240578","reward_history":[{"denom":"ASSET0","index":"0.000002831039632868"},{"denom":"ASSET1","index":"0.000024014703977493"},{"denom":"ASSET10","index":"0.000019136467933987"},{"denom":"ASSET11","index":"0.000023856136612857"},{"denom":"ASSET12","index":"0.000022731094165303"},{"denom":"ASSET13","index":"0.000007491812146677"},{"denom":"ASSET14","index":"0.000021900750691559"},{"denom":"ASSET15","index":"0.000017242457090593"},{"denom":"ASSET16","index":"0.000010655585625623"},{"denom":"ASSET17","index":"0.000008353141870908"},{"denom":"ASSET18","index":"0.000003458892129556"},{"denom":"ASSET2","index":"0.000007270317321266"},{"denom":"ASSET3","index":"0.000002020551075646"},{"denom":"ASSET4","index":"0.000019470118745656"},{"denom":"ASSET5","index":"0.000001574098937698"},{"denom":"ASSET6","index":"0.000006353413461243"},{"denom":"ASSET7","index":"0.000009977493764026"},{"denom":"ASSET8","index":"0.000013619759476676"},{"denom":"ASSET9","index":"0.000005782490697784"}],"last_reward_claim_height":"151"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET1","shares":"712938351.000000000000000000","reward_history":[],"last_reward_claim_height":"13"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET18","shares":"44767904.238236309696539732","reward_history":[{"denom":"ASSET0","index":"0.000001596167964962"},{"denom":"ASSET1","index":"0.000013307648687747"},{"denom":"ASSET10","index":"0.000009271254138767"},{"denom":"ASSET11","index":"0.000012873344596610"},{"denom":"ASSET12","index":"0.000011592750107942"},{"denom":"ASSET13","index":"0.000003989527201016"},{"denom":"ASSET14","index":"0.000012025715131995"},{"denom":"ASSET15","index":"0.000008598149750858"},{"denom":"ASSET16","index":"0.000005994556982506"},{"denom":"ASSET17","index":"0.000004257340617956"},{"denom":"ASSET18","index":"0.000002028240277625"},{"denom":"ASSET2","index":"0.000003928376470814"},{"denom":"ASSET3","index":"0.000001148919558672"},{"denom":"ASSET4","index":"0.000010814752131731"},{"denom":"ASSET5","index":"0.000000891818678410"},{"denom":"ASSET6","index":"0.000003630210866621"},{"denom":"ASSET7","index":"0.000005559360179979"},{"denom":"ASSET8","index":"0.000007254619109209"},{"denom":"ASSET9","index":"0.000003133416978198"}],"last_reward_claim_height":"63"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET5","shares":"46643626.182226834558848691","reward_history":[{"denom":"ASSET0","index":"0.000004708438426996"},{"denom":"ASSET1","index":"0.000038520493193901"},{"denom":"ASSET10","index":"0.000033447889442869"},{"denom":"ASSET11","index":"0.000040066635538605"},{"denom":"ASSET12","index":"0.000038162559600338"},{"denom":"ASSET13","index":"0.000012931064308163"},{"denom":"ASSET14","index":"0.000036961534886120"},{"denom":"ASSET15","index":"0.000030015502632007"},{"denom":"ASSET16","index":"0.000017089105961021"},{"denom":"ASSET17","index":"0.000013860849696398"},{"denom":"ASSET18","index":"0.000005749976668797"},{"denom":"ASSET2","index":"0.000011630369724417"},{"denom":"ASSET3","index":"0.000003343204166159"},{"denom":"ASSET4","index":"0.000031580339975976"},{"denom":"ASSET5","index":"0.000002625639366966"},{"denom":"ASSET6","index":"0.000010718023658977"},{"denom":"ASSET7","index":"0.000016555639039194"},{"denom":"ASSET8","index":"0.000023864339856305"},{"denom":"ASSET9","index":"0.000009563147004842"}],"last_reward_claim_height":"190"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET15","shares":"212894000.169264352893006496","reward_history":[{"denom":"ASSET0","index":"0.000004708438426996"},{"denom":"ASSET1","index":"0.000038520493193901"},{"denom":"ASSET10","index":"0.000033447889442869"},{"denom":"ASSET11","index":"0.000040066635538605"},{"denom":"ASSET12","index":"0.000038162559600338"},{"denom":"ASSET13","index":"0.000012931064308163"},{"denom":"ASSET14","index":"0.000036961534886120"},{"denom":"ASSET15","index":"0.000030015502632007"},{"denom":"ASSET16","index":"0.000017089105961021"},{"denom":"ASSET17","index":"0.000013860849696398"},{"denom":"ASSET18","index":"0.000005749976668797"},{"denom":"ASSET2","index":"0.000011630369724417"},{"denom":"ASSET3","index":"0.000003343204166159"},{"denom":"ASSET4","index":"0.000031580339975976"},{"denom":"ASSET5","index":"0.000002625639366966"},{"denom":"ASSET6","index":"0.000010718023658977"},{"denom":"ASSET7","index":"0.000016555639039194"},{"denom":"ASSET8","index":"0.000023864339856305"},{"denom":"ASSET9","index":"0.000009563147004842"}],"last_reward_claim_height":"190"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET17","shares":"88722121.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003102081054533"},{"denom":"ASSET1","index":"0.000026328097047411"},{"denom":"ASSET10","index":"0.000021065731925672"},{"denom":"ASSET11","index":"0.000026176422512857"},{"denom":"ASSET12","index":"0.000024984864029023"},{"denom":"ASSET13","index":"0.000008223750690350"},{"denom":"ASSET14","index":"0.000024017391771060"},{"denom":"ASSET15","index":"0.000018965095888316"},{"denom":"ASSET16","index":"0.000011675661088751"},{"denom":"ASSET17","index":"0.000009181817821335"},{"denom":"ASSET18","index":"0.000003784851704842"},{"denom":"ASSET2","index":"0.000007977007181168"},{"denom":"ASSET3","index":"0.000002213531006169"},{"denom":"ASSET4","index":"0.000021343717572048"},{"denom":"ASSET5","index":"0.000001724500934679"},{"denom":"ASSET6","index":"0.000006958604580417"},{"denom":"ASSET7","index":"0.000010936011139136"},{"denom":"ASSET8","index":"0.000014950117004491"},{"denom":"ASSET9","index":"0.000006344046059941"}],"last_reward_claim_height":"144"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET4","shares":"302395718.317005844576673391","reward_history":[{"denom":"ASSET0","index":"0.000003308323901116"},{"denom":"ASSET1","index":"0.000028066718381779"},{"denom":"ASSET10","index":"0.000022316311421496"},{"denom":"ASSET11","index":"0.000027867424204892"},{"denom":"ASSET12","index":"0.000026530665881565"},{"denom":"ASSET13","index":"0.000008749579510737"},{"denom":"ASSET14","index":"0.000025590688346390"},{"denom":"ASSET15","index":"0.000020116135001180"},{"denom":"ASSET16","index":"0.000012455644018572"},{"denom":"ASSET17","index":"0.000009747635771928"},{"denom":"ASSET18","index":"0.000004046709206696"},{"denom":"ASSET2","index":"0.000008491843085820"},{"denom":"ASSET3","index":"0.000002361259343526"},{"denom":"ASSET4","index":"0.000022756236881458"},{"denom":"ASSET5","index":"0.000001838827056256"},{"denom":"ASSET6","index":"0.000007428217086977"},{"denom":"ASSET7","index":"0.000011660835649526"},{"denom":"ASSET8","index":"0.000015906513514404"},{"denom":"ASSET9","index":"0.000006755948018281"}],"last_reward_claim_height":"133"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET8","shares":"48605191.401833842558427730","reward_history":[{"denom":"ASSET0","index":"0.000003308323901116"},{"denom":"ASSET1","index":"0.000028066718381779"},{"denom":"ASSET10","index":"0.000022316311421496"},{"denom":"ASSET11","index":"0.000027867424204892"},{"denom":"ASSET12","index":"0.000026530665881565"},{"denom":"ASSET13","index":"0.000008749579510737"},{"denom":"ASSET14","index":"0.000025590688346390"},{"denom":"ASSET15","index":"0.000020116135001180"},{"denom":"ASSET16","index":"0.000012455644018572"},{"denom":"ASSET17","index":"0.000009747635771928"},{"denom":"ASSET18","index":"0.000004046709206696"},{"denom":"ASSET2","index":"0.000008491843085820"},{"denom":"ASSET3","index":"0.000002361259343526"},{"denom":"ASSET4","index":"0.000022756236881458"},{"denom":"ASSET5","index":"0.000001838827056256"},{"denom":"ASSET6","index":"0.000007428217086977"},{"denom":"ASSET7","index":"0.000011660835649526"},{"denom":"ASSET8","index":"0.000015906513514404"},{"denom":"ASSET9","index":"0.000006755948018281"}],"last_reward_claim_height":"132"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET14","shares":"864217378.000000024198086584","reward_history":[{"denom":"ASSET0","index":"0.000001722784092424"},{"denom":"ASSET1","index":"0.000014376047839207"},{"denom":"ASSET10","index":"0.000010014727915911"},{"denom":"ASSET11","index":"0.000013905627425621"},{"denom":"ASSET12","index":"0.000012523636788373"},{"denom":"ASSET13","index":"0.000004309050988454"},{"denom":"ASSET14","index":"0.000012989875687172"},{"denom":"ASSET15","index":"0.000009287144342897"},{"denom":"ASSET16","index":"0.000006475075648346"},{"denom":"ASSET17","index":"0.000004597575508787"},{"denom":"ASSET18","index":"0.000002191113748617"},{"denom":"ASSET2","index":"0.000004242146751855"},{"denom":"ASSET3","index":"0.000001239819134475"},{"denom":"ASSET4","index":"0.000011683152316098"},{"denom":"ASSET5","index":"0.000000961748401110"},{"denom":"ASSET6","index":"0.000003920170113222"},{"denom":"ASSET7","index":"0.000006004655234759"},{"denom":"ASSET8","index":"0.000007836158711656"},{"denom":"ASSET9","index":"0.000003384936220430"}],"last_reward_claim_height":"122"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET16","shares":"1000071482.060628796000000000","reward_history":[{"denom":"ASSET0","index":"0.000004932922606577"},{"denom":"ASSET1","index":"0.000040396906160074"},{"denom":"ASSET10","index":"0.000034838303486914"},{"denom":"ASSET11","index":"0.000041914424288227"},{"denom":"ASSET12","index":"0.000039857170373527"},{"denom":"ASSET13","index":"0.000013510260278305"},{"denom":"ASSET14","index":"0.000038681126023432"},{"denom":"ASSET15","index":"0.000031291398674533"},{"denom":"ASSET16","index":"0.000017930058046877"},{"denom":"ASSET17","index":"0.000014479422944962"},{"denom":"ASSET18","index":"0.000006034014737166"},{"denom":"ASSET2","index":"0.000012186534642262"},{"denom":"ASSET3","index":"0.000003503888301858"},{"denom":"ASSET4","index":"0.000033108545408351"},{"denom":"ASSET5","index":"0.000002750102339201"},{"denom":"ASSET6","index":"0.000011230081338040"},{"denom":"ASSET7","index":"0.000017343857331989"},{"denom":"ASSET8","index":"0.000024921315009190"},{"denom":"ASSET9","index":"0.000010011497921619"}],"last_reward_claim_height":"187"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET15","shares":"826767435.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003299297789724"},{"denom":"ASSET1","index":"0.000027989603079017"},{"denom":"ASSET10","index":"0.000022326156077139"},{"denom":"ASSET11","index":"0.000027810817552502"},{"denom":"ASSET12","index":"0.000026510364756940"},{"denom":"ASSET13","index":"0.000008734817330461"},{"denom":"ASSET14","index":"0.000025527438517331"},{"denom":"ASSET15","index":"0.000020112836713905"},{"denom":"ASSET16","index":"0.000012417417558556"},{"denom":"ASSET17","index":"0.000009741881197111"},{"denom":"ASSET18","index":"0.000004029624902086"},{"denom":"ASSET2","index":"0.000008475129511821"},{"denom":"ASSET3","index":"0.000002354634361983"},{"denom":"ASSET4","index":"0.000022691681830907"},{"denom":"ASSET5","index":"0.000001834207215432"},{"denom":"ASSET6","index":"0.000007402948949368"},{"denom":"ASSET7","index":"0.000011627814435586"},{"denom":"ASSET8","index":"0.000015878876786083"},{"denom":"ASSET9","index":"0.000006740310437402"}],"last_reward_claim_height":"139"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET18","shares":"491360463.169595677341686624","reward_history":[{"denom":"ASSET0","index":"0.000001677980890787"},{"denom":"ASSET1","index":"0.000013990275877081"},{"denom":"ASSET10","index":"0.000009746835585844"},{"denom":"ASSET11","index":"0.000013534047272362"},{"denom":"ASSET12","index":"0.000012187401487418"},{"denom":"ASSET13","index":"0.000004194217559326"},{"denom":"ASSET14","index":"0.000012642160756856"},{"denom":"ASSET15","index":"0.000009039350648091"},{"denom":"ASSET16","index":"0.000006301979019776"},{"denom":"ASSET17","index":"0.000004475595265619"},{"denom":"ASSET18","index":"0.000002132005492585"},{"denom":"ASSET2","index":"0.000004129566806967"},{"denom":"ASSET3","index":"0.000001207793600899"},{"denom":"ASSET4","index":"0.000011368981735957"},{"denom":"ASSET5","index":"0.000000937435909214"},{"denom":"ASSET6","index":"0.000003815863724495"},{"denom":"ASSET7","index":"0.000005844281079776"},{"denom":"ASSET8","index":"0.000007626584775507"},{"denom":"ASSET9","index":"0.000003293515032135"}],"last_reward_claim_height":"84"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET10","shares":"166605763.999999997341807088","reward_history":[{"denom":"ASSET0","index":"0.000001570026110869"},{"denom":"ASSET1","index":"0.000013093495665706"},{"denom":"ASSET10","index":"0.000009121814411369"},{"denom":"ASSET11","index":"0.000012665871768525"},{"denom":"ASSET12","index":"0.000011405375746022"},{"denom":"ASSET13","index":"0.000003924443730811"},{"denom":"ASSET14","index":"0.000011831756550478"},{"denom":"ASSET15","index":"0.000008459245989284"},{"denom":"ASSET16","index":"0.000005898474977098"},{"denom":"ASSET17","index":"0.000004187979388376"},{"denom":"ASSET18","index":"0.000001995163822601"},{"denom":"ASSET2","index":"0.000003864775280042"},{"denom":"ASSET3","index":"0.000001129971286445"},{"denom":"ASSET4","index":"0.000010639630627815"},{"denom":"ASSET5","index":"0.000000877623463400"},{"denom":"ASSET6","index":"0.000003571405397092"},{"denom":"ASSET7","index":"0.000005469607987193"},{"denom":"ASSET8","index":"0.000007137838423287"},{"denom":"ASSET9","index":"0.000003082869956418"}],"last_reward_claim_height":"71"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET14","shares":"658908708.999999965736747132","reward_history":[{"denom":"ASSET0","index":"0.000003309574221953"},{"denom":"ASSET1","index":"0.000028041386020893"},{"denom":"ASSET10","index":"0.000022151472675705"},{"denom":"ASSET11","index":"0.000027806413413432"},{"denom":"ASSET12","index":"0.000026397319662942"},{"denom":"ASSET13","index":"0.000008723998941637"},{"denom":"ASSET14","index":"0.000025556208464743"},{"denom":"ASSET15","index":"0.000019995491235522"},{"denom":"ASSET16","index":"0.000012454763771642"},{"denom":"ASSET17","index":"0.000009698403814011"},{"denom":"ASSET18","index":"0.000004053515914738"},{"denom":"ASSET2","index":"0.000008473190716338"},{"denom":"ASSET3","index":"0.000002361530218445"},{"denom":"ASSET4","index":"0.000022738669483779"},{"denom":"ASSET5","index":"0.000001840125976242"},{"denom":"ASSET6","index":"0.000007434008870747"},{"denom":"ASSET7","index":"0.000011653935721338"},{"denom":"ASSET8","index":"0.000015861166565423"},{"denom":"ASSET9","index":"0.000006742103174023"}],"last_reward_claim_height":"160"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET15","shares":"266624801.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003309574221953"},{"denom":"ASSET1","index":"0.000028041386020893"},{"denom":"ASSET10","index":"0.000022151472675705"},{"denom":"ASSET11","index":"0.000027806413413432"},{"denom":"ASSET12","index":"0.000026397319662942"},{"denom":"ASSET13","index":"0.000008723998941637"},{"denom":"ASSET14","index":"0.000025556208464743"},{"denom":"ASSET15","index":"0.000019995491235522"},{"denom":"ASSET16","index":"0.000012454763771642"},{"denom":"ASSET17","index":"0.000009698403814011"},{"denom":"ASSET18","index":"0.000004053515914738"},{"denom":"ASSET2","index":"0.000008473190716338"},{"denom":"ASSET3","index":"0.000002361530218445"},{"denom":"ASSET4","index":"0.000022738669483779"},{"denom":"ASSET5","index":"0.000001840125976242"},{"denom":"ASSET6","index":"0.000007434008870747"},{"denom":"ASSET7","index":"0.000011653935721338"},{"denom":"ASSET8","index":"0.000015861166565423"},{"denom":"ASSET9","index":"0.000006742103174023"}],"last_reward_claim_height":"156"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET4","shares":"999999999.999999936000000000","reward_history":[{"denom":"ASSET0","index":"0.000004627557058124"},{"denom":"ASSET1","index":"0.000037837825372287"},{"denom":"ASSET10","index":"0.000032815057157167"},{"denom":"ASSET11","index":"0.000039353017894949"},{"denom":"ASSET12","index":"0.000037453386570472"},{"denom":"ASSET13","index":"0.000012700909348715"},{"denom":"ASSET14","index":"0.000036314118089889"},{"denom":"ASSET15","index":"0.000029456614298440"},{"denom":"ASSET16","index":"0.000016789422401669"},{"denom":"ASSET17","index":"0.000013600876897734"},{"denom":"ASSET18","index":"0.000005653931466374"},{"denom":"ASSET2","index":"0.000011419405679440"},{"denom":"ASSET3","index":"0.000003285045732610"},{"denom":"ASSET4","index":"0.000031022911612237"},{"denom":"ASSET5","index":"0.000002580636681166"},{"denom":"ASSET6","index":"0.000010536288519120"},{"denom":"ASSET7","index":"0.000016267441018645"},{"denom":"ASSET8","index":"0.000023441585233333"},{"denom":"ASSET9","index":"0.000009392113630570"}],"last_reward_claim_height":"197"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET8","shares":"294922247.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001541663174382"},{"denom":"ASSET1","index":"0.000012852134347969"},{"denom":"ASSET10","index":"0.000008953505358908"},{"denom":"ASSET11","index":"0.000012432624080325"},{"denom":"ASSET12","index":"0.000011194846435509"},{"denom":"ASSET13","index":"0.000003852675567517"},{"denom":"ASSET14","index":"0.000011614356703153"},{"denom":"ASSET15","index":"0.000008302745615107"},{"denom":"ASSET16","index":"0.000005788648746115"},{"denom":"ASSET17","index":"0.000004110607675539"},{"denom":"ASSET18","index":"0.000001958208705152"},{"denom":"ASSET2","index":"0.000003793380830041"},{"denom":"ASSET3","index":"0.000001108811590805"},{"denom":"ASSET4","index":"0.000010443285637998"},{"denom":"ASSET5","index":"0.000000861256061842"},{"denom":"ASSET6","index":"0.000003505801353281"},{"denom":"ASSET7","index":"0.000005369138478471"},{"denom":"ASSET8","index":"0.000007005673232815"},{"denom":"ASSET9","index":"0.000003025513979724"}],"last_reward_claim_height":"64"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET18","shares":"512533351.913299097510355264","reward_history":[{"denom":"ASSET0","index":"0.000001541663174382"},{"denom":"ASSET1","index":"0.000012852134347969"},{"denom":"ASSET10","index":"0.000008953505358908"},{"denom":"ASSET11","index":"0.000012432624080325"},{"denom":"ASSET12","index":"0.000011194846435509"},{"denom":"ASSET13","index":"0.000003852675567517"},{"denom":"ASSET14","index":"0.000011614356703153"},{"denom":"ASSET15","index":"0.000008302745615107"},{"denom":"ASSET16","index":"0.000005788648746115"},{"denom":"ASSET17","index":"0.000004110607675539"},{"denom":"ASSET18","index":"0.000001958208705152"},{"denom":"ASSET2","index":"0.000003793380830041"},{"denom":"ASSET3","index":"0.000001108811590805"},{"denom":"ASSET4","index":"0.000010443285637998"},{"denom":"ASSET5","index":"0.000000861256061842"},{"denom":"ASSET6","index":"0.000003505801353281"},{"denom":"ASSET7","index":"0.000005369138478471"},{"denom":"ASSET8","index":"0.000007005673232815"},{"denom":"ASSET9","index":"0.000003025513979724"}],"last_reward_claim_height":"78"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET4","shares":"999999999.999999983000000000","reward_history":[{"denom":"ASSET0","index":"0.000001647112085871"},{"denom":"ASSET1","index":"0.000013744257107488"},{"denom":"ASSET10","index":"0.000009576415679235"},{"denom":"ASSET11","index":"0.000013296650962579"},{"denom":"ASSET12","index":"0.000011973464376313"},{"denom":"ASSET13","index":"0.000004120724991946"},{"denom":"ASSET14","index":"0.000012421070521222"},{"denom":"ASSET15","index":"0.000008879485058873"},{"denom":"ASSET16","index":"0.000006191885004573"},{"denom":"ASSET17","index":"0.000004397534055245"},{"denom":"ASSET18","index":"0.000002094718230780"},{"denom":"ASSET2","index":"0.000004055939892025"},{"denom":"ASSET3","index":"0.000001185763647039"},{"denom":"ASSET4","index":"0.000011170521774262"},{"denom":"ASSET5","index":"0.000000920733692817"},{"denom":"ASSET6","index":"0.000003749683056035"},{"denom":"ASSET7","index":"0.000005742315674818"},{"denom":"ASSET8","index":"0.000007491513372686"},{"denom":"ASSET9","index":"0.000003235328626359"}],"last_reward_claim_height":"105"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET13","shares":"83432063.570314645379622262","reward_history":[{"denom":"ASSET0","index":"0.000003240628198198"},{"denom":"ASSET1","index":"0.000027504329283847"},{"denom":"ASSET10","index":"0.000021940320319100"},{"denom":"ASSET11","index":"0.000027329345632586"},{"denom":"ASSET12","index":"0.000026051323397008"},{"denom":"ASSET13","index":"0.000008583813762496"},{"denom":"ASSET14","index":"0.000025085743554439"},{"denom":"ASSET15","index":"0.000019763439018939"},{"denom":"ASSET16","index":"0.000012202670980955"},{"denom":"ASSET17","index":"0.000009573761377605"},{"denom":"ASSET18","index":"0.000003959875003044"},{"denom":"ASSET2","index":"0.000008327243811102"},{"denom":"ASSET3","index":"0.000002312908746824"},{"denom":"ASSET4","index":"0.000022299606884078"},{"denom":"ASSET5","index":"0.000001802093087045"},{"denom":"ASSET6","index":"0.000007275447910852"},{"denom":"ASSET7","index":"0.000011427132859276"},{"denom":"ASSET8","index":"0.000015602768933976"},{"denom":"ASSET9","index":"0.000006623309483786"}],"last_reward_claim_height":"142"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET15","shares":"372002087.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004841511007125"},{"denom":"ASSET1","index":"0.000039654695710024"},{"denom":"ASSET10","index":"0.000034279651777090"},{"denom":"ASSET11","index":"0.000041171672608249"},{"denom":"ASSET12","index":"0.000039183541914158"},{"denom":"ASSET13","index":"0.000013274955796632"},{"denom":"ASSET14","index":"0.000037985373355630"},{"denom":"ASSET15","index":"0.000030775759285055"},{"denom":"ASSET16","index":"0.000017597324721367"},{"denom":"ASSET17","index":"0.000014236601216661"},{"denom":"ASSET18","index":"0.000005918259223509"},{"denom":"ASSET2","index":"0.000011968012650386"},{"denom":"ASSET3","index":"0.000003438825394708"},{"denom":"ASSET4","index":"0.000032500952221997"},{"denom":"ASSET5","index":"0.000002700102585074"},{"denom":"ASSET6","index":"0.000011021977584383"},{"denom":"ASSET7","index":"0.000017027349911322"},{"denom":"ASSET8","index":"0.000024486253413768"},{"denom":"ASSET9","index":"0.000009831246256959"}],"last_reward_claim_height":"184"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET18","shares":"1384075989.901099424894009140","reward_history":[{"denom":"ASSET0","index":"0.000003240628198198"},{"denom":"ASSET1","index":"0.000027504329283847"},{"denom":"ASSET10","index":"0.000021940320319100"},{"denom":"ASSET11","index":"0.000027329345632586"},{"denom":"ASSET12","index":"0.000026051323397008"},{"denom":"ASSET13","index":"0.000008583813762496"},{"denom":"ASSET14","index":"0.000025085743554439"},{"denom":"ASSET15","index":"0.000019763439018939"},{"denom":"ASSET16","index":"0.000012202670980955"},{"denom":"ASSET17","index":"0.000009573761377605"},{"denom":"ASSET18","index":"0.000003959875003044"},{"denom":"ASSET2","index":"0.000008327243811102"},{"denom":"ASSET3","index":"0.000002312908746824"},{"denom":"ASSET4","index":"0.000022299606884078"},{"denom":"ASSET5","index":"0.000001802093087045"},{"denom":"ASSET6","index":"0.000007275447910852"},{"denom":"ASSET7","index":"0.000011427132859276"},{"denom":"ASSET8","index":"0.000015602768933976"},{"denom":"ASSET9","index":"0.000006623309483786"}],"last_reward_claim_height":"171"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET1","shares":"425945616.601945938106678832","reward_history":[{"denom":"ASSET0","index":"0.000003152920186871"},{"denom":"ASSET1","index":"0.000026760622644749"},{"denom":"ASSET10","index":"0.000021403995558307"},{"denom":"ASSET11","index":"0.000026604821287493"},{"denom":"ASSET12","index":"0.000025390105019040"},{"denom":"ASSET13","index":"0.000008358570294936"},{"denom":"ASSET14","index":"0.000024411618525071"},{"denom":"ASSET15","index":"0.000019270968708391"},{"denom":"ASSET16","index":"0.000011868219590271"},{"denom":"ASSET17","index":"0.000009330682788205"},{"denom":"ASSET18","index":"0.000003846613833157"},{"denom":"ASSET2","index":"0.000008107095494272"},{"denom":"ASSET3","index":"0.000002249072663818"},{"denom":"ASSET4","index":"0.000021694789218154"},{"denom":"ASSET5","index":"0.000001752328837510"},{"denom":"ASSET6","index":"0.000007072706136469"},{"denom":"ASSET7","index":"0.000011115912260277"},{"denom":"ASSET8","index":"0.000015194187602297"},{"denom":"ASSET9","index":"0.000006447849146068"}],"last_reward_claim_height":"180"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET6","shares":"352022248.106480452885708860","reward_history":[{"denom":"ASSET0","index":"0.000004815927975477"},{"denom":"ASSET1","index":"0.000039382289900864"},{"denom":"ASSET10","index":"0.000034222073494624"},{"denom":"ASSET11","index":"0.000040984100009475"},{"denom":"ASSET12","index":"0.000039031763191412"},{"denom":"ASSET13","index":"0.000013231620117309"},{"denom":"ASSET14","index":"0.000037811725176315"},{"denom":"ASSET15","index":"0.000030710570220454"},{"denom":"ASSET16","index":"0.000017472166858286"},{"denom":"ASSET17","index":"0.000014174439086147"},{"denom":"ASSET18","index":"0.000005881073115984"},{"denom":"ASSET2","index":"0.000011889081587014"},{"denom":"ASSET3","index":"0.000003418652643359"},{"denom":"ASSET4","index":"0.000032291841736538"},{"denom":"ASSET5","index":"0.000002685159513042"},{"denom":"ASSET6","index":"0.000010964422890400"},{"denom":"ASSET7","index":"0.000016933318079269"},{"denom":"ASSET8","index":"0.000024422128019811"},{"denom":"ASSET9","index":"0.000009780347716391"}],"last_reward_claim_height":"198"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET12","shares":"277690590.940840885153524501","reward_history":[{"denom":"ASSET0","index":"0.000003152920186871"},{"denom":"ASSET1","index":"0.000026760622644749"},{"denom":"ASSET10","index":"0.000021403995558307"},{"denom":"ASSET11","index":"0.000026604821287493"},{"denom":"ASSET12","index":"0.000025390105019040"},{"denom":"ASSET13","index":"0.000008358570294936"},{"denom":"ASSET14","index":"0.000024411618525071"},{"denom":"ASSET15","index":"0.000019270968708391"},{"denom":"ASSET16","index":"0.000011868219590271"},{"denom":"ASSET17","index":"0.000009330682788205"},{"denom":"ASSET18","index":"0.000003846613833157"},{"denom":"ASSET2","index":"0.000008107095494272"},{"denom":"ASSET3","index":"0.000002249072663818"},{"denom":"ASSET4","index":"0.000021694789218154"},{"denom":"ASSET5","index":"0.000001752328837510"},{"denom":"ASSET6","index":"0.000007072706136469"},{"denom":"ASSET7","index":"0.000011115912260277"},{"denom":"ASSET8","index":"0.000015194187602297"},{"denom":"ASSET9","index":"0.000006447849146068"}],"last_reward_claim_height":"127"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET0","shares":"283013613.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003218229550028"},{"denom":"ASSET1","index":"0.000027301798081180"},{"denom":"ASSET10","index":"0.000021745417841688"},{"denom":"ASSET11","index":"0.000027119412726222"},{"denom":"ASSET12","index":"0.000025834540696398"},{"denom":"ASSET13","index":"0.000008516471999212"},{"denom":"ASSET14","index":"0.000024897496810197"},{"denom":"ASSET15","index":"0.000019595694306931"},{"denom":"ASSET16","index":"0.000012114595919920"},{"denom":"ASSET17","index":"0.000009493460517354"},{"denom":"ASSET18","index":"0.000003932937797970"},{"denom":"ASSET2","index":"0.000008264095290285"},{"denom":"ASSET3","index":"0.000002297232512411"},{"denom":"ASSET4","index":"0.000022135581489268"},{"denom":"ASSET5","index":"0.000001789675045728"},{"denom":"ASSET6","index":"0.000007223884768794"},{"denom":"ASSET7","index":"0.000011342725097550"},{"denom":"ASSET8","index":"0.000015481678980085"},{"denom":"ASSET9","index":"0.000006573861400446"}],"last_reward_claim_height":"147"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET10","shares":"202049207.561428095412263069","reward_history":[{"denom":"ASSET0","index":"0.000003218229550028"},{"denom":"ASSET1","index":"0.000027301798081180"},{"denom":"ASSET10","index":"0.000021745417841688"},{"denom":"ASSET11","index":"0.000027119412726222"},{"denom":"ASSET12","index":"0.000025834540696398"},{"denom":"ASSET13","index":"0.000008516471999212"},{"denom":"ASSET14","index":"0.000024897496810197"},{"denom":"ASSET15","index":"0.000019595694306931"},{"denom":"ASSET16","index":"0.000012114595919920"},{"denom":"ASSET17","index":"0.000009493460517354"},{"denom":"ASSET18","index":"0.000003932937797970"},{"denom":"ASSET2","index":"0.000008264095290285"},{"denom":"ASSET3","index":"0.000002297232512411"},{"denom":"ASSET4","index":"0.000022135581489268"},{"denom":"ASSET5","index":"0.000001789675045728"},{"denom":"ASSET6","index":"0.000007223884768794"},{"denom":"ASSET7","index":"0.000011342725097550"},{"denom":"ASSET8","index":"0.000015481678980085"},{"denom":"ASSET9","index":"0.000006573861400446"}],"last_reward_claim_height":"124"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET14","shares":"63644757.000000000000000000","reward_history":[],"last_reward_claim_height":"10"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET8","shares":"818276824.587446348840215904","reward_history":[{"denom":"ASSET0","index":"0.000001621688869515"},{"denom":"ASSET1","index":"0.000013520143478358"},{"denom":"ASSET10","index":"0.000009419470546393"},{"denom":"ASSET11","index":"0.000013079418684764"},{"denom":"ASSET12","index":"0.000011778054243646"},{"denom":"ASSET13","index":"0.000004053107355591"},{"denom":"ASSET14","index":"0.000012218035825109"},{"denom":"ASSET15","index":"0.000008735715386011"},{"denom":"ASSET16","index":"0.000006090623412316"},{"denom":"ASSET17","index":"0.000004325494601547"},{"denom":"ASSET18","index":"0.000002060555632782"},{"denom":"ASSET2","index":"0.000003991049142665"},{"denom":"ASSET3","index":"0.000001167586257565"},{"denom":"ASSET4","index":"0.000010987648142487"},{"denom":"ASSET5","index":"0.000000905975587506"},{"denom":"ASSET6","index":"0.000003688190199343"},{"denom":"ASSET7","index":"0.000005648412194460"},{"denom":"ASSET8","index":"0.000007370434701640"},{"denom":"ASSET9","index":"0.000003183549162496"}],"last_reward_claim_height":"64"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET13","shares":"421629925.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001621688869515"},{"denom":"ASSET1","index":"0.000013520143478358"},{"denom":"ASSET10","index":"0.000009419470546393"},{"denom":"ASSET11","index":"0.000013079418684764"},{"denom":"ASSET12","index":"0.000011778054243646"},{"denom":"ASSET13","index":"0.000004053107355591"},{"denom":"ASSET14","index":"0.000012218035825109"},{"denom":"ASSET15","index":"0.000008735715386011"},{"denom":"ASSET16","index":"0.000006090623412316"},{"denom":"ASSET17","index":"0.000004325494601547"},{"denom":"ASSET18","index":"0.000002060555632782"},{"denom":"ASSET2","index":"0.000003991049142665"},{"denom":"ASSET3","index":"0.000001167586257565"},{"denom":"ASSET4","index":"0.000010987648142487"},{"denom":"ASSET5","index":"0.000000905975587506"},{"denom":"ASSET6","index":"0.000003688190199343"},{"denom":"ASSET7","index":"0.000005648412194460"},{"denom":"ASSET8","index":"0.000007370434701640"},{"denom":"ASSET9","index":"0.000003183549162496"}],"last_reward_claim_height":"87"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET16","shares":"50816288.000000000000000000","reward_history":[],"last_reward_claim_height":"4"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET6","shares":"11564864.198043636493745538","reward_history":[{"denom":"ASSET0","index":"0.000003193080094990"},{"denom":"ASSET1","index":"0.000027069824276969"},{"denom":"ASSET10","index":"0.000021489349079139"},{"denom":"ASSET11","index":"0.000026870184080824"},{"denom":"ASSET12","index":"0.000025561356340007"},{"denom":"ASSET13","index":"0.000008435097288603"},{"denom":"ASSET14","index":"0.000024680442306089"},{"denom":"ASSET15","index":"0.000019377704768171"},{"denom":"ASSET16","index":"0.000012016988086595"},{"denom":"ASSET17","index":"0.000009392966467546"},{"denom":"ASSET18","index":"0.000003905368596850"},{"denom":"ASSET2","index":"0.000008189075060838"},{"denom":"ASSET3","index":"0.000002279664955012"},{"denom":"ASSET4","index":"0.000021948593995488"},{"denom":"ASSET5","index":"0.000001775351671947"},{"denom":"ASSET6","index":"0.000007168631437760"},{"denom":"ASSET7","index":"0.000011248752159293"},{"denom":"ASSET8","index":"0.000015334459676317"},{"denom":"ASSET9","index":"0.000006513651901550"}],"last_reward_claim_height":"145"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET10","shares":"194366503.326951375014939775","reward_history":[{"denom":"ASSET0","index":"0.000001684197417987"},{"denom":"ASSET1","index":"0.000014041270025306"},{"denom":"ASSET10","index":"0.000009782380002809"},{"denom":"ASSET11","index":"0.000013583439347888"},{"denom":"ASSET12","index":"0.000012231725730520"},{"denom":"ASSET13","index":"0.000004209525615418"},{"denom":"ASSET14","index":"0.000012688588478388"},{"denom":"ASSET15","index":"0.000009072403677468"},{"denom":"ASSET16","index":"0.000006325419612958"},{"denom":"ASSET17","index":"0.000004492161044183"},{"denom":"ASSET18","index":"0.000002139608271529"},{"denom":"ASSET2","index":"0.000004144674335530"},{"denom":"ASSET3","index":"0.000001212331762086"},{"denom":"ASSET4","index":"0.000011410921471639"},{"denom":"ASSET5","index":"0.000000940827523152"},{"denom":"ASSET6","index":"0.000003830097231595"},{"denom":"ASSET7","index":"0.000005866137041214"},{"denom":"ASSET8","index":"0.000007654386885887"},{"denom":"ASSET9","index":"0.000003305963379963"}],"last_reward_claim_height":"76"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET0","shares":"51005447.816516490733174320","reward_history":[{"denom":"ASSET0","index":"0.000001677613648548"},{"denom":"ASSET1","index":"0.000013997394471820"},{"denom":"ASSET10","index":"0.000009752554992736"},{"denom":"ASSET11","index":"0.000013541183096442"},{"denom":"ASSET12","index":"0.000012193285851007"},{"denom":"ASSET13","index":"0.000004195070965406"},{"denom":"ASSET14","index":"0.000012649497226385"},{"denom":"ASSET15","index":"0.000009043353672830"},{"denom":"ASSET16","index":"0.000006306085420563"},{"denom":"ASSET17","index":"0.000004477092542912"},{"denom":"ASSET18","index":"0.000002131751335856"},{"denom":"ASSET2","index":"0.000004130786635239"},{"denom":"ASSET3","index":"0.000001208960144751"},{"denom":"ASSET4","index":"0.000011376252751467"},{"denom":"ASSET5","index":"0.000000937307007594"},{"denom":"ASSET6","index":"0.000003817659736684"},{"denom":"ASSET7","index":"0.000005847800357116"},{"denom":"ASSET8","index":"0.000007631172097229"},{"denom":"ASSET9","index":"0.000003295090343070"}],"last_reward_claim_height":"118"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET1","shares":"60646947.336113024690620760","reward_history":[{"denom":"ASSET0","index":"0.000003316222748087"},{"denom":"ASSET1","index":"0.000028147075207200"},{"denom":"ASSET10","index":"0.000022466702115272"},{"denom":"ASSET11","index":"0.000027971336509453"},{"denom":"ASSET12","index":"0.000026669877578580"},{"denom":"ASSET13","index":"0.000008784355829882"},{"denom":"ASSET14","index":"0.000025672864554615"},{"denom":"ASSET15","index":"0.000020235356040284"},{"denom":"ASSET16","index":"0.000012487172511964"},{"denom":"ASSET17","index":"0.000009799807931023"},{"denom":"ASSET18","index":"0.000004049727438870"},{"denom":"ASSET2","index":"0.000008522892941853"},{"denom":"ASSET3","index":"0.000002368075218536"},{"denom":"ASSET4","index":"0.000022820717384594"},{"denom":"ASSET5","index":"0.000001843591257654"},{"denom":"ASSET6","index":"0.000007443165294976"},{"denom":"ASSET7","index":"0.000011693499621126"},{"denom":"ASSET8","index":"0.000015972009373807"},{"denom":"ASSET9","index":"0.000006779069609364"}],"last_reward_claim_height":"152"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET12","shares":"9122322.000000000000000000","reward_history":[],"last_reward_claim_height":"60"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET3","shares":"1000006571.616374226000000000","reward_history":[{"denom":"ASSET0","index":"0.000001520550536467"},{"denom":"ASSET1","index":"0.000012675827554874"},{"denom":"ASSET10","index":"0.000008831388003026"},{"denom":"ASSET11","index":"0.000012262725604616"},{"denom":"ASSET12","index":"0.000011042474271843"},{"denom":"ASSET13","index":"0.000003800233070086"},{"denom":"ASSET14","index":"0.000011455195131741"},{"denom":"ASSET15","index":"0.000008190012927118"},{"denom":"ASSET16","index":"0.000005710257954490"},{"denom":"ASSET17","index":"0.000004055182520937"},{"denom":"ASSET18","index":"0.000001931747034924"},{"denom":"ASSET2","index":"0.000003741926245004"},{"denom":"ASSET3","index":"0.000001094491513968"},{"denom":"ASSET4","index":"0.000010301253521611"},{"denom":"ASSET5","index":"0.000000849450412477"},{"denom":"ASSET6","index":"0.000003457632836431"},{"denom":"ASSET7","index":"0.000005295631642792"},{"denom":"ASSET8","index":"0.000006910311498182"},{"denom":"ASSET9","index":"0.000002984699699651"}],"last_reward_claim_height":"90"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET4","shares":"469674160.999999998391483558","reward_history":[],"last_reward_claim_height":"61"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET6","shares":"75124322.656449781251683152","reward_history":[{"denom":"ASSET0","index":"0.000003365151784209"},{"denom":"ASSET1","index":"0.000028538337865727"},{"denom":"ASSET10","index":"0.000022670552359626"},{"denom":"ASSET11","index":"0.000028331786642422"},{"denom":"ASSET12","index":"0.000026959391418936"},{"denom":"ASSET13","index":"0.000008894072871450"},{"denom":"ASSET14","index":"0.000026020188745878"},{"denom":"ASSET15","index":"0.000020439828986765"},{"denom":"ASSET16","index":"0.000012667128947757"},{"denom":"ASSET17","index":"0.000009907060013179"},{"denom":"ASSET18","index":"0.000004116201786219"},{"denom":"ASSET2","index":"0.000008634485522558"},{"denom":"ASSET3","index":"0.000002403102945281"},{"denom":"ASSET4","index":"0.000023139017263426"},{"denom":"ASSET5","index":"0.000001871649891727"},{"denom":"ASSET6","index":"0.000007555863827839"},{"denom":"ASSET7","index":"0.000011857581945748"},{"denom":"ASSET8","index":"0.000016169532559731"},{"denom":"ASSET9","index":"0.000006867789268222"}],"last_reward_claim_height":"130"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET9","shares":"39231912.427285129471889016","reward_history":[{"denom":"ASSET0","index":"0.000003365151784209"},{"denom":"ASSET1","index":"0.000028538337865727"},{"denom":"ASSET10","index":"0.000022670552359626"},{"denom":"ASSET11","index":"0.000028331786642422"},{"denom":"ASSET12","index":"0.000026959391418936"},{"denom":"ASSET13","index":"0.000008894072871450"},{"denom":"ASSET14","index":"0.000026020188745878"},{"denom":"ASSET15","index":"0.000020439828986765"},{"denom":"ASSET16","index":"0.000012667128947757"},{"denom":"ASSET17","index":"0.000009907060013179"},{"denom":"ASSET18","index":"0.000004116201786219"},{"denom":"ASSET2","index":"0.000008634485522558"},{"denom":"ASSET3","index":"0.000002403102945281"},{"denom":"ASSET4","index":"0.000023139017263426"},{"denom":"ASSET5","index":"0.000001871649891727"},{"denom":"ASSET6","index":"0.000007555863827839"},{"denom":"ASSET7","index":"0.000011857581945748"},{"denom":"ASSET8","index":"0.000016169532559731"},{"denom":"ASSET9","index":"0.000006867789268222"}],"last_reward_claim_height":"147"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET12","shares":"413446715.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003365151784209"},{"denom":"ASSET1","index":"0.000028538337865727"},{"denom":"ASSET10","index":"0.000022670552359626"},{"denom":"ASSET11","index":"0.000028331786642422"},{"denom":"ASSET12","index":"0.000026959391418936"},{"denom":"ASSET13","index":"0.000008894072871450"},{"denom":"ASSET14","index":"0.000026020188745878"},{"denom":"ASSET15","index":"0.000020439828986765"},{"denom":"ASSET16","index":"0.000012667128947757"},{"denom":"ASSET17","index":"0.000009907060013179"},{"denom":"ASSET18","index":"0.000004116201786219"},{"denom":"ASSET2","index":"0.000008634485522558"},{"denom":"ASSET3","index":"0.000002403102945281"},{"denom":"ASSET4","index":"0.000023139017263426"},{"denom":"ASSET5","index":"0.000001871649891727"},{"denom":"ASSET6","index":"0.000007555863827839"},{"denom":"ASSET7","index":"0.000011857581945748"},{"denom":"ASSET8","index":"0.000016169532559731"},{"denom":"ASSET9","index":"0.000006867789268222"}],"last_reward_claim_height":"131"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET4","shares":"927856126.225817180206139200","reward_history":[{"denom":"ASSET0","index":"0.000005040570168850"},{"denom":"ASSET1","index":"0.000041355750359430"},{"denom":"ASSET10","index":"0.000035469281704739"},{"denom":"ASSET11","index":"0.000042803752649888"},{"denom":"ASSET12","index":"0.000040675443122671"},{"denom":"ASSET13","index":"0.000013775999252168"},{"denom":"ASSET14","index":"0.000039495576924183"},{"denom":"ASSET15","index":"0.000031873960565154"},{"denom":"ASSET16","index":"0.000018356948849581"},{"denom":"ASSET17","index":"0.000014782651582035"},{"denom":"ASSET18","index":"0.000006164254954174"},{"denom":"ASSET2","index":"0.000012468880818976"},{"denom":"ASSET3","index":"0.000003582052674901"},{"denom":"ASSET4","index":"0.000033871373778794"},{"denom":"ASSET5","index":"0.000002805429255147"},{"denom":"ASSET6","index":"0.000011472525623683"},{"denom":"ASSET7","index":"0.000017727043140390"},{"denom":"ASSET8","index":"0.000025392666272201"},{"denom":"ASSET9","index":"0.000010226777370208"}],"last_reward_claim_height":"186"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET9","shares":"71230565.254391885925119184","reward_history":[{"denom":"ASSET0","index":"0.000003461123478470"},{"denom":"ASSET1","index":"0.000029368181297786"},{"denom":"ASSET10","index":"0.000023294808028239"},{"denom":"ASSET11","index":"0.000029147392384169"},{"denom":"ASSET12","index":"0.000027719461688447"},{"denom":"ASSET13","index":"0.000009147542663388"},{"denom":"ASSET14","index":"0.000026768604990580"},{"denom":"ASSET15","index":"0.000021008846141082"},{"denom":"ASSET16","index":"0.000013035302068339"},{"denom":"ASSET17","index":"0.000010182949549387"},{"denom":"ASSET18","index":"0.000004232564951180"},{"denom":"ASSET2","index":"0.000008877642147806"},{"denom":"ASSET3","index":"0.000002471921418528"},{"denom":"ASSET4","index":"0.000023806252184245"},{"denom":"ASSET5","index":"0.000001920199705662"},{"denom":"ASSET6","index":"0.000007776538212319"},{"denom":"ASSET7","index":"0.000012202060569359"},{"denom":"ASSET8","index":"0.000016628688342614"},{"denom":"ASSET9","index":"0.000007061722298848"}],"last_reward_claim_height":"167"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET10","shares":"161539355.931705047602290600","reward_history":[{"denom":"ASSET0","index":"0.000001833509758465"},{"denom":"ASSET1","index":"0.000015308139656127"},{"denom":"ASSET10","index":"0.000010661025831945"},{"denom":"ASSET11","index":"0.000014808091540182"},{"denom":"ASSET12","index":"0.000013334616425197"},{"denom":"ASSET13","index":"0.000004587108050268"},{"denom":"ASSET14","index":"0.000013827997232930"},{"denom":"ASSET15","index":"0.000009887618079284"},{"denom":"ASSET16","index":"0.000006893996691827"},{"denom":"ASSET17","index":"0.000004893804228047"},{"denom":"ASSET18","index":"0.000002326890566197"},{"denom":"ASSET2","index":"0.000004513767659929"},{"denom":"ASSET3","index":"0.000001320127026095"},{"denom":"ASSET4","index":"0.000012434529816496"},{"denom":"ASSET5","index":"0.000001020098156528"},{"denom":"ASSET6","index":"0.000004173734941087"},{"denom":"ASSET7","index":"0.000006393948575882"},{"denom":"ASSET8","index":"0.000008340802573961"},{"denom":"ASSET9","index":"0.000003600346434803"}],"last_reward_claim_height":"83"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET15","shares":"17952068.954626672609845642","reward_history":[{"denom":"ASSET0","index":"0.000005040570168850"},{"denom":"ASSET1","index":"0.000041355750359430"},{"denom":"ASSET10","index":"0.000035469281704739"},{"denom":"ASSET11","index":"0.000042803752649888"},{"denom":"ASSET12","index":"0.000040675443122671"},{"denom":"ASSET13","index":"0.000013775999252168"},{"denom":"ASSET14","index":"0.000039495576924183"},{"denom":"ASSET15","index":"0.000031873960565154"},{"denom":"ASSET16","index":"0.000018356948849581"},{"denom":"ASSET17","index":"0.000014782651582035"},{"denom":"ASSET18","index":"0.000006164254954174"},{"denom":"ASSET2","index":"0.000012468880818976"},{"denom":"ASSET3","index":"0.000003582052674901"},{"denom":"ASSET4","index":"0.000033871373778794"},{"denom":"ASSET5","index":"0.000002805429255147"},{"denom":"ASSET6","index":"0.000011472525623683"},{"denom":"ASSET7","index":"0.000017727043140390"},{"denom":"ASSET8","index":"0.000025392666272201"},{"denom":"ASSET9","index":"0.000010226777370208"}],"last_reward_claim_height":"187"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET1","shares":"11315663.388555330667936216","reward_history":[{"denom":"ASSET0","index":"0.000003136420796654"},{"denom":"ASSET1","index":"0.000026617535879560"},{"denom":"ASSET10","index":"0.000021257162201233"},{"denom":"ASSET11","index":"0.000026454281403244"},{"denom":"ASSET12","index":"0.000025229520616223"},{"denom":"ASSET13","index":"0.000008309311482354"},{"denom":"ASSET14","index":"0.000024278363089230"},{"denom":"ASSET15","index":"0.000019144672836670"},{"denom":"ASSET16","index":"0.000011806881934189"},{"denom":"ASSET17","index":"0.000009271795054357"},{"denom":"ASSET18","index":"0.000003829937127836"},{"denom":"ASSET2","index":"0.000008061315465971"},{"denom":"ASSET3","index":"0.000002238409344787"},{"denom":"ASSET4","index":"0.000021579173085678"},{"denom":"ASSET5","index":"0.000001744155749232"},{"denom":"ASSET6","index":"0.000007037998659171"},{"denom":"ASSET7","index":"0.000011056982942661"},{"denom":"ASSET8","index":"0.000015105683491420"},{"denom":"ASSET9","index":"0.000006411626899884"}],"last_reward_claim_height":"152"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET2","shares":"707106235.351145716508263911","reward_history":[{"denom":"ASSET0","index":"0.000001580229076001"},{"denom":"ASSET1","index":"0.000013178675425859"},{"denom":"ASSET10","index":"0.000009181488308837"},{"denom":"ASSET11","index":"0.000012749045790152"},{"denom":"ASSET12","index":"0.000011480356468073"},{"denom":"ASSET13","index":"0.000003950572690002"},{"denom":"ASSET14","index":"0.000011909209196663"},{"denom":"ASSET15","index":"0.000008514902002442"},{"denom":"ASSET16","index":"0.000005936347281082"},{"denom":"ASSET17","index":"0.000004216274924019"},{"denom":"ASSET18","index":"0.000002008304897474"},{"denom":"ASSET2","index":"0.000003889973934875"},{"denom":"ASSET3","index":"0.000001137392019304"},{"denom":"ASSET4","index":"0.000010709664607998"},{"denom":"ASSET5","index":"0.000000883343392042"},{"denom":"ASSET6","index":"0.000003594749230410"},{"denom":"ASSET7","index":"0.000005505163831141"},{"denom":"ASSET8","index":"0.000007184060111002"},{"denom":"ASSET9","index":"0.000003102967025342"}],"last_reward_claim_height":"82"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET7","shares":"716253625.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001580229076001"},{"denom":"ASSET1","index":"0.000013178675425859"},{"denom":"ASSET10","index":"0.000009181488308837"},{"denom":"ASSET11","index":"0.000012749045790152"},{"denom":"ASSET12","index":"0.000011480356468073"},{"denom":"ASSET13","index":"0.000003950572690002"},{"denom":"ASSET14","index":"0.000011909209196663"},{"denom":"ASSET15","index":"0.000008514902002442"},{"denom":"ASSET16","index":"0.000005936347281082"},{"denom":"ASSET17","index":"0.000004216274924019"},{"denom":"ASSET18","index":"0.000002008304897474"},{"denom":"ASSET2","index":"0.000003889973934875"},{"denom":"ASSET3","index":"0.000001137392019304"},{"denom":"ASSET4","index":"0.000010709664607998"},{"denom":"ASSET5","index":"0.000000883343392042"},{"denom":"ASSET6","index":"0.000003594749230410"},{"denom":"ASSET7","index":"0.000005505163831141"},{"denom":"ASSET8","index":"0.000007184060111002"},{"denom":"ASSET9","index":"0.000003102967025342"}],"last_reward_claim_height":"70"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET12","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001580229076001"},{"denom":"ASSET1","index":"0.000013178675425859"},{"denom":"ASSET10","index":"0.000009181488308837"},{"denom":"ASSET11","index":"0.000012749045790152"},{"denom":"ASSET12","index":"0.000011480356468073"},{"denom":"ASSET13","index":"0.000003950572690002"},{"denom":"ASSET14","index":"0.000011909209196663"},{"denom":"ASSET15","index":"0.000008514902002442"},{"denom":"ASSET16","index":"0.000005936347281082"},{"denom":"ASSET17","index":"0.000004216274924019"},{"denom":"ASSET18","index":"0.000002008304897474"},{"denom":"ASSET2","index":"0.000003889973934875"},{"denom":"ASSET3","index":"0.000001137392019304"},{"denom":"ASSET4","index":"0.000010709664607998"},{"denom":"ASSET5","index":"0.000000883343392042"},{"denom":"ASSET6","index":"0.000003594749230410"},{"denom":"ASSET7","index":"0.000005505163831141"},{"denom":"ASSET8","index":"0.000007184060111002"},{"denom":"ASSET9","index":"0.000003102967025342"}],"last_reward_claim_height":"113"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET8","shares":"1814881375.979743618852812861","reward_history":[{"denom":"ASSET0","index":"0.000001065673750407"},{"denom":"ASSET1","index":"0.000008885137524612"},{"denom":"ASSET10","index":"0.000006190162379117"},{"denom":"ASSET11","index":"0.000008595321581390"},{"denom":"ASSET12","index":"0.000007740138401991"},{"denom":"ASSET13","index":"0.000002663662498568"},{"denom":"ASSET14","index":"0.000008029258508615"},{"denom":"ASSET15","index":"0.000005740999854868"},{"denom":"ASSET16","index":"0.000004002452113836"},{"denom":"ASSET17","index":"0.000002842492504350"},{"denom":"ASSET18","index":"0.000001354098020432"},{"denom":"ASSET2","index":"0.000002622608139264"},{"denom":"ASSET3","index":"0.000000767159849705"},{"denom":"ASSET4","index":"0.000007220696381306"},{"denom":"ASSET5","index":"0.000000595288209907"},{"denom":"ASSET6","index":"0.000002423598872130"},{"denom":"ASSET7","index":"0.000003711940334016"},{"denom":"ASSET8","index":"0.000004843718561268"},{"denom":"ASSET9","index":"0.000002092032733005"}],"last_reward_claim_height":"122"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET14","shares":"76223022.277127367318093552","reward_history":[{"denom":"ASSET0","index":"0.000001065673750407"},{"denom":"ASSET1","index":"0.000008885137524612"},{"denom":"ASSET10","index":"0.000006190162379117"},{"denom":"ASSET11","index":"0.000008595321581390"},{"denom":"ASSET12","index":"0.000007740138401991"},{"denom":"ASSET13","index":"0.000002663662498568"},{"denom":"ASSET14","index":"0.000008029258508615"},{"denom":"ASSET15","index":"0.000005740999854868"},{"denom":"ASSET16","index":"0.000004002452113836"},{"denom":"ASSET17","index":"0.000002842492504350"},{"denom":"ASSET18","index":"0.000001354098020432"},{"denom":"ASSET2","index":"0.000002622608139264"},{"denom":"ASSET3","index":"0.000000767159849705"},{"denom":"ASSET4","index":"0.000007220696381306"},{"denom":"ASSET5","index":"0.000000595288209907"},{"denom":"ASSET6","index":"0.000002423598872130"},{"denom":"ASSET7","index":"0.000003711940334016"},{"denom":"ASSET8","index":"0.000004843718561268"},{"denom":"ASSET9","index":"0.000002092032733005"}],"last_reward_claim_height":"79"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET18","shares":"978965429.000000000189311139","reward_history":[{"denom":"ASSET0","index":"0.000001065673750407"},{"denom":"ASSET1","index":"0.000008885137524612"},{"denom":"ASSET10","index":"0.000006190162379117"},{"denom":"ASSET11","index":"0.000008595321581390"},{"denom":"ASSET12","index":"0.000007740138401991"},{"denom":"ASSET13","index":"0.000002663662498568"},{"denom":"ASSET14","index":"0.000008029258508615"},{"denom":"ASSET15","index":"0.000005740999854868"},{"denom":"ASSET16","index":"0.000004002452113836"},{"denom":"ASSET17","index":"0.000002842492504350"},{"denom":"ASSET18","index":"0.000001354098020432"},{"denom":"ASSET2","index":"0.000002622608139264"},{"denom":"ASSET3","index":"0.000000767159849705"},{"denom":"ASSET4","index":"0.000007220696381306"},{"denom":"ASSET5","index":"0.000000595288209907"},{"denom":"ASSET6","index":"0.000002423598872130"},{"denom":"ASSET7","index":"0.000003711940334016"},{"denom":"ASSET8","index":"0.000004843718561268"},{"denom":"ASSET9","index":"0.000002092032733005"}],"last_reward_claim_height":"105"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET1","shares":"123716303.999999993937901104","reward_history":[],"last_reward_claim_height":"40"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET11","shares":"366060444.845151755872541270","reward_history":[{"denom":"ASSET0","index":"0.000003299045378029"},{"denom":"ASSET1","index":"0.000027992490930804"},{"denom":"ASSET10","index":"0.000022352284005938"},{"denom":"ASSET11","index":"0.000027819914533732"},{"denom":"ASSET12","index":"0.000026530494002155"},{"denom":"ASSET13","index":"0.000008738242797579"},{"denom":"ASSET14","index":"0.000025532401567106"},{"denom":"ASSET15","index":"0.000020131602968729"},{"denom":"ASSET16","index":"0.000012417136212826"},{"denom":"ASSET17","index":"0.000009749421325842"},{"denom":"ASSET18","index":"0.000004027997856345"},{"denom":"ASSET2","index":"0.000008477931503293"},{"denom":"ASSET3","index":"0.000002354450357881"},{"denom":"ASSET4","index":"0.000022693933657862"},{"denom":"ASSET5","index":"0.000001834114741991"},{"denom":"ASSET6","index":"0.000007402245947993"},{"denom":"ASSET7","index":"0.000011628988518089"},{"denom":"ASSET8","index":"0.000015885667960333"},{"denom":"ASSET9","index":"0.000006742956926982"}],"last_reward_claim_height":"178"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET12","shares":"802502401.000000000000000000","reward_history":[],"last_reward_claim_height":"37"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET15","shares":"311295989.346444587870475282","reward_history":[{"denom":"ASSET0","index":"0.000003299045378029"},{"denom":"ASSET1","index":"0.000027992490930804"},{"denom":"ASSET10","index":"0.000022352284005938"},{"denom":"ASSET11","index":"0.000027819914533732"},{"denom":"ASSET12","index":"0.000026530494002155"},{"denom":"ASSET13","index":"0.000008738242797579"},{"denom":"ASSET14","index":"0.000025532401567106"},{"denom":"ASSET15","index":"0.000020131602968729"},{"denom":"ASSET16","index":"0.000012417136212826"},{"denom":"ASSET17","index":"0.000009749421325842"},{"denom":"ASSET18","index":"0.000004027997856345"},{"denom":"ASSET2","index":"0.000008477931503293"},{"denom":"ASSET3","index":"0.000002354450357881"},{"denom":"ASSET4","index":"0.000022693933657862"},{"denom":"ASSET5","index":"0.000001834114741991"},{"denom":"ASSET6","index":"0.000007402245947993"},{"denom":"ASSET7","index":"0.000011628988518089"},{"denom":"ASSET8","index":"0.000015885667960333"},{"denom":"ASSET9","index":"0.000006742956926982"}],"last_reward_claim_height":"125"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET8","shares":"175609959.861550351076271129","reward_history":[{"denom":"ASSET0","index":"0.000004793394028488"},{"denom":"ASSET1","index":"0.000039220404580202"},{"denom":"ASSET10","index":"0.000034077494992257"},{"denom":"ASSET11","index":"0.000040800608166180"},{"denom":"ASSET12","index":"0.000038873410892672"},{"denom":"ASSET13","index":"0.000013168980031980"},{"denom":"ASSET14","index":"0.000037635915450234"},{"denom":"ASSET15","index":"0.000030577360428195"},{"denom":"ASSET16","index":"0.000017398839639336"},{"denom":"ASSET17","index":"0.000014118783753094"},{"denom":"ASSET18","index":"0.000005852832798439"},{"denom":"ASSET2","index":"0.000011842962776555"},{"denom":"ASSET3","index":"0.000003403276486052"},{"denom":"ASSET4","index":"0.000032153615485739"},{"denom":"ASSET5","index":"0.000002672876628231"},{"denom":"ASSET6","index":"0.000010911335074632"},{"denom":"ASSET7","index":"0.000016856474536988"},{"denom":"ASSET8","index":"0.000024303379662825"},{"denom":"ASSET9","index":"0.000009738097740305"}],"last_reward_claim_height":"198"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET10","shares":"245918632.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004793394028488"},{"denom":"ASSET1","index":"0.000039220404580202"},{"denom":"ASSET10","index":"0.000034077494992257"},{"denom":"ASSET11","index":"0.000040800608166180"},{"denom":"ASSET12","index":"0.000038873410892672"},{"denom":"ASSET13","index":"0.000013168980031980"},{"denom":"ASSET14","index":"0.000037635915450234"},{"denom":"ASSET15","index":"0.000030577360428195"},{"denom":"ASSET16","index":"0.000017398839639336"},{"denom":"ASSET17","index":"0.000014118783753094"},{"denom":"ASSET18","index":"0.000005852832798439"},{"denom":"ASSET2","index":"0.000011842962776555"},{"denom":"ASSET3","index":"0.000003403276486052"},{"denom":"ASSET4","index":"0.000032153615485739"},{"denom":"ASSET5","index":"0.000002672876628231"},{"denom":"ASSET6","index":"0.000010911335074632"},{"denom":"ASSET7","index":"0.000016856474536988"},{"denom":"ASSET8","index":"0.000024303379662825"},{"denom":"ASSET9","index":"0.000009738097740305"}],"last_reward_claim_height":"185"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET12","shares":"7898682.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001578706846766"},{"denom":"ASSET1","index":"0.000013164667632738"},{"denom":"ASSET10","index":"0.000009171819989970"},{"denom":"ASSET11","index":"0.000012734981690366"},{"denom":"ASSET12","index":"0.000011467468005207"},{"denom":"ASSET13","index":"0.000003946168668528"},{"denom":"ASSET14","index":"0.000011895957050803"},{"denom":"ASSET15","index":"0.000008505148486066"},{"denom":"ASSET16","index":"0.000005930623522158"},{"denom":"ASSET17","index":"0.000004211879752669"},{"denom":"ASSET18","index":"0.000002005998995588"},{"denom":"ASSET2","index":"0.000003886323829757"},{"denom":"ASSET3","index":"0.000001135855039864"},{"denom":"ASSET4","index":"0.000010697863378618"},{"denom":"ASSET5","index":"0.000000882112923477"},{"denom":"ASSET6","index":"0.000003590690326231"},{"denom":"ASSET7","index":"0.000005499740683011"},{"denom":"ASSET8","index":"0.000007176593065360"},{"denom":"ASSET9","index":"0.000003098765751537"}],"last_reward_claim_height":"95"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET13","shares":"59854669.203225171017581082","reward_history":[{"denom":"ASSET0","index":"0.000004771369973109"},{"denom":"ASSET1","index":"0.000039075310152038"},{"denom":"ASSET10","index":"0.000033862554414871"},{"denom":"ASSET11","index":"0.000040596859097080"},{"denom":"ASSET12","index":"0.000038671598570907"},{"denom":"ASSET13","index":"0.000013093360645348"},{"denom":"ASSET14","index":"0.000037444745013630"},{"denom":"ASSET15","index":"0.000030388777717539"},{"denom":"ASSET16","index":"0.000017335253118551"},{"denom":"ASSET17","index":"0.000014050047421762"},{"denom":"ASSET18","index":"0.000005826669662430"},{"denom":"ASSET2","index":"0.000011799629246551"},{"denom":"ASSET3","index":"0.000003387458203475"},{"denom":"ASSET4","index":"0.000032025073817120"},{"denom":"ASSET5","index":"0.000002660417616354"},{"denom":"ASSET6","index":"0.000010857215890221"},{"denom":"ASSET7","index":"0.000016779501987829"},{"denom":"ASSET8","index":"0.000024155503710162"},{"denom":"ASSET9","index":"0.000009692703418713"}],"last_reward_claim_height":"184"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET14","shares":"401843455.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003185213515607"},{"denom":"ASSET1","index":"0.000027035699090666"},{"denom":"ASSET10","index":"0.000021635640181728"},{"denom":"ASSET11","index":"0.000026880669357351"},{"denom":"ASSET12","index":"0.000025658872180332"},{"denom":"ASSET13","index":"0.000008444958797633"},{"denom":"ASSET14","index":"0.000024662649108986"},{"denom":"ASSET15","index":"0.000019476753279332"},{"denom":"ASSET16","index":"0.000011989846651744"},{"denom":"ASSET17","index":"0.000009429633404312"},{"denom":"ASSET18","index":"0.000003886090392826"},{"denom":"ASSET2","index":"0.000008191890279929"},{"denom":"ASSET3","index":"0.000002271981699175"},{"denom":"ASSET4","index":"0.000021916623044014"},{"denom":"ASSET5","index":"0.000001770727550439"},{"denom":"ASSET6","index":"0.000007144791673859"},{"denom":"ASSET7","index":"0.000011230376410345"},{"denom":"ASSET8","index":"0.000015353061978158"},{"denom":"ASSET9","index":"0.000006513931773648"}],"last_reward_claim_height":"137"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET16","shares":"242801725.000000000000000000","reward_history":[],"last_reward_claim_height":"59"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET6","shares":"572675426.912533659997464236","reward_history":[{"denom":"ASSET0","index":"0.000003356675502673"},{"denom":"ASSET1","index":"0.000028477076245214"},{"denom":"ASSET10","index":"0.000022663760086849"},{"denom":"ASSET11","index":"0.000028282539274294"},{"denom":"ASSET12","index":"0.000026934248109484"},{"denom":"ASSET13","index":"0.000008880550781135"},{"denom":"ASSET14","index":"0.000025969128454053"},{"denom":"ASSET15","index":"0.000020425731449718"},{"denom":"ASSET16","index":"0.000012636600959200"},{"denom":"ASSET17","index":"0.000009896936242996"},{"denom":"ASSET18","index":"0.000004102733083140"},{"denom":"ASSET2","index":"0.000008619316582261"},{"denom":"ASSET3","index":"0.000002396767404444"},{"denom":"ASSET4","index":"0.000023088672429632"},{"denom":"ASSET5","index":"0.000001866260713425"},{"denom":"ASSET6","index":"0.000007536521735823"},{"denom":"ASSET7","index":"0.000011831316132227"},{"denom":"ASSET8","index":"0.000016143846449802"},{"denom":"ASSET9","index":"0.000006854365607618"}],"last_reward_claim_height":"179"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET2","shares":"134543810.112561527676721290","reward_history":[{"denom":"ASSET0","index":"0.000002962853679956"},{"denom":"ASSET1","index":"0.000025162993314326"},{"denom":"ASSET10","index":"0.000020199688926412"},{"denom":"ASSET11","index":"0.000025035647772320"},{"denom":"ASSET12","index":"0.000023929456511577"},{"denom":"ASSET13","index":"0.000007867725037604"},{"denom":"ASSET14","index":"0.000022960507028012"},{"denom":"ASSET15","index":"0.000018173489333858"},{"denom":"ASSET16","index":"0.000011155286879957"},{"denom":"ASSET17","index":"0.000008793607250882"},{"denom":"ASSET18","index":"0.000003611579051495"},{"denom":"ASSET2","index":"0.000007628670547867"},{"denom":"ASSET3","index":"0.000002114031306235"},{"denom":"ASSET4","index":"0.000020398130246320"},{"denom":"ASSET5","index":"0.000001647096325587"},{"denom":"ASSET6","index":"0.000006645213242757"},{"denom":"ASSET7","index":"0.000010450616802650"},{"denom":"ASSET8","index":"0.000014303332598966"},{"denom":"ASSET9","index":"0.000006067112886031"}],"last_reward_claim_height":"126"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET6","shares":"262839434.000000000000000000","reward_history":[],"last_reward_claim_height":"30"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET11","shares":"519801966.000000003638613762","reward_history":[],"last_reward_claim_height":"26"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET16","shares":"171545575.621857234311843214","reward_history":[{"denom":"ASSET0","index":"0.000001432199402946"},{"denom":"ASSET1","index":"0.000011943338809449"},{"denom":"ASSET10","index":"0.000008321234131428"},{"denom":"ASSET11","index":"0.000011554338026882"},{"denom":"ASSET12","index":"0.000010404248756685"},{"denom":"ASSET13","index":"0.000003580160245814"},{"denom":"ASSET14","index":"0.000010793249539252"},{"denom":"ASSET15","index":"0.000007717099003024"},{"denom":"ASSET16","index":"0.000005380388215223"},{"denom":"ASSET17","index":"0.000003821002469456"},{"denom":"ASSET18","index":"0.000001819847139312"},{"denom":"ASSET2","index":"0.000003525361874705"},{"denom":"ASSET3","index":"0.000001031021204577"},{"denom":"ASSET4","index":"0.000009706076917365"},{"denom":"ASSET5","index":"0.000000800326827437"},{"denom":"ASSET6","index":"0.000003258135250159"},{"denom":"ASSET7","index":"0.000004989357863356"},{"denom":"ASSET8","index":"0.000006510858315517"},{"denom":"ASSET9","index":"0.000002812306527182"}],"last_reward_claim_height":"88"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET0","shares":"164490783.376743954700493446","reward_history":[{"denom":"ASSET0","index":"0.000001597673370668"},{"denom":"ASSET1","index":"0.000013327099930964"},{"denom":"ASSET10","index":"0.000009285285696821"},{"denom":"ASSET11","index":"0.000012892979142852"},{"denom":"ASSET12","index":"0.000011609669101507"},{"denom":"ASSET13","index":"0.000003995544306884"},{"denom":"ASSET14","index":"0.000012043789889618"},{"denom":"ASSET15","index":"0.000008610289110917"},{"denom":"ASSET16","index":"0.000006002842621820"},{"denom":"ASSET17","index":"0.000004263637708946"},{"denom":"ASSET18","index":"0.000002030433278566"},{"denom":"ASSET2","index":"0.000003934304697275"},{"denom":"ASSET3","index":"0.000001149943780421"},{"denom":"ASSET4","index":"0.000010829884739162"},{"denom":"ASSET5","index":"0.000000892737420067"},{"denom":"ASSET6","index":"0.000003634911050302"},{"denom":"ASSET7","index":"0.000005567360953495"},{"denom":"ASSET8","index":"0.000007264378579749"},{"denom":"ASSET9","index":"0.000003138189772368"}],"last_reward_claim_height":"119"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET12","shares":"754996965.000000000754996965","reward_history":[{"denom":"ASSET0","index":"0.000001597673370668"},{"denom":"ASSET1","index":"0.000013327099930964"},{"denom":"ASSET10","index":"0.000009285285696821"},{"denom":"ASSET11","index":"0.000012892979142852"},{"denom":"ASSET12","index":"0.000011609669101507"},{"denom":"ASSET13","index":"0.000003995544306884"},{"denom":"ASSET14","index":"0.000012043789889618"},{"denom":"ASSET15","index":"0.000008610289110917"},{"denom":"ASSET16","index":"0.000006002842621820"},{"denom":"ASSET17","index":"0.000004263637708946"},{"denom":"ASSET18","index":"0.000002030433278566"},{"denom":"ASSET2","index":"0.000003934304697275"},{"denom":"ASSET3","index":"0.000001149943780421"},{"denom":"ASSET4","index":"0.000010829884739162"},{"denom":"ASSET5","index":"0.000000892737420067"},{"denom":"ASSET6","index":"0.000003634911050302"},{"denom":"ASSET7","index":"0.000005567360953495"},{"denom":"ASSET8","index":"0.000007264378579749"},{"denom":"ASSET9","index":"0.000003138189772368"}],"last_reward_claim_height":"101"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET8","shares":"144029519.873767299863246824","reward_history":[{"denom":"ASSET0","index":"0.000003297864217859"},{"denom":"ASSET1","index":"0.000027973253972789"},{"denom":"ASSET10","index":"0.000022291630953866"},{"denom":"ASSET11","index":"0.000027789008146512"},{"denom":"ASSET12","index":"0.000026479178332828"},{"denom":"ASSET13","index":"0.000008727103479255"},{"denom":"ASSET14","index":"0.000025511286037616"},{"denom":"ASSET15","index":"0.000020085740117730"},{"denom":"ASSET16","index":"0.000012411485442612"},{"denom":"ASSET17","index":"0.000009730550155880"},{"denom":"ASSET18","index":"0.000004028926705548"},{"denom":"ASSET2","index":"0.000008468714781887"},{"denom":"ASSET3","index":"0.000002353891879987"},{"denom":"ASSET4","index":"0.000022679492169342"},{"denom":"ASSET5","index":"0.000001833514119464"},{"denom":"ASSET6","index":"0.000007400677249018"},{"denom":"ASSET7","index":"0.000011621769805761"},{"denom":"ASSET8","index":"0.000015864980999233"},{"denom":"ASSET9","index":"0.000006736116007098"}],"last_reward_claim_height":"152"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET14","shares":"788517080.000000000000000000","reward_history":[],"last_reward_claim_height":"50"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET3","shares":"72506974.965506946373930584","reward_history":[{"denom":"ASSET0","index":"0.000002930820438736"},{"denom":"ASSET1","index":"0.000024889799880283"},{"denom":"ASSET10","index":"0.000019988623694797"},{"denom":"ASSET11","index":"0.000024765615752571"},{"denom":"ASSET12","index":"0.000023676022623299"},{"denom":"ASSET13","index":"0.000007783195940338"},{"denom":"ASSET14","index":"0.000022712072914709"},{"denom":"ASSET15","index":"0.000017982209004670"},{"denom":"ASSET16","index":"0.000011033267632466"},{"denom":"ASSET17","index":"0.000008700651286884"},{"denom":"ASSET18","index":"0.000003571624768330"},{"denom":"ASSET2","index":"0.000007546215495169"},{"denom":"ASSET3","index":"0.000002090977414753"},{"denom":"ASSET4","index":"0.000020176663420937"},{"denom":"ASSET5","index":"0.000001628342560149"},{"denom":"ASSET6","index":"0.000006572371850885"},{"denom":"ASSET7","index":"0.000010337273058537"},{"denom":"ASSET8","index":"0.000014149515747938"},{"denom":"ASSET9","index":"0.000006000707920121"}],"last_reward_claim_height":"174"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET13","shares":"861287055.974067600309526020","reward_history":[{"denom":"ASSET0","index":"0.000002930820438736"},{"denom":"ASSET1","index":"0.000024889799880283"},{"denom":"ASSET10","index":"0.000019988623694797"},{"denom":"ASSET11","index":"0.000024765615752571"},{"denom":"ASSET12","index":"0.000023676022623299"},{"denom":"ASSET13","index":"0.000007783195940338"},{"denom":"ASSET14","index":"0.000022712072914709"},{"denom":"ASSET15","index":"0.000017982209004670"},{"denom":"ASSET16","index":"0.000011033267632466"},{"denom":"ASSET17","index":"0.000008700651286884"},{"denom":"ASSET18","index":"0.000003571624768330"},{"denom":"ASSET2","index":"0.000007546215495169"},{"denom":"ASSET3","index":"0.000002090977414753"},{"denom":"ASSET4","index":"0.000020176663420937"},{"denom":"ASSET5","index":"0.000001628342560149"},{"denom":"ASSET6","index":"0.000006572371850885"},{"denom":"ASSET7","index":"0.000010337273058537"},{"denom":"ASSET8","index":"0.000014149515747938"},{"denom":"ASSET9","index":"0.000006000707920121"}],"last_reward_claim_height":"152"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET18","shares":"8265829.830404324623727404","reward_history":[{"denom":"ASSET0","index":"0.000001411859688057"},{"denom":"ASSET1","index":"0.000011770485537623"},{"denom":"ASSET10","index":"0.000008200497469250"},{"denom":"ASSET11","index":"0.000011386615852852"},{"denom":"ASSET12","index":"0.000010253874969484"},{"denom":"ASSET13","index":"0.000003528347966974"},{"denom":"ASSET14","index":"0.000010637094027671"},{"denom":"ASSET15","index":"0.000007605174144562"},{"denom":"ASSET16","index":"0.000005302606662519"},{"denom":"ASSET17","index":"0.000003765826670265"},{"denom":"ASSET18","index":"0.000001793777493075"},{"denom":"ASSET2","index":"0.000003474345960472"},{"denom":"ASSET3","index":"0.000001016278724767"},{"denom":"ASSET4","index":"0.000009565512043233"},{"denom":"ASSET5","index":"0.000000788559420242"},{"denom":"ASSET6","index":"0.000003210842193807"},{"denom":"ASSET7","index":"0.000004917435724579"},{"denom":"ASSET8","index":"0.000006416479374940"},{"denom":"ASSET9","index":"0.000002771018622781"}],"last_reward_claim_height":"84"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET9","shares":"641308523.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001726304213109"},{"denom":"ASSET1","index":"0.000014431903221591"},{"denom":"ASSET10","index":"0.000010055058078201"},{"denom":"ASSET11","index":"0.000013959161452463"},{"denom":"ASSET12","index":"0.000012572806376704"},{"denom":"ASSET13","index":"0.000004323728090679"},{"denom":"ASSET14","index":"0.000013040236440562"},{"denom":"ASSET15","index":"0.000009322042750788"},{"denom":"ASSET16","index":"0.000006501527251832"},{"denom":"ASSET17","index":"0.000004615871880590"},{"denom":"ASSET18","index":"0.000002199045982237"},{"denom":"ASSET2","index":"0.000004259987627426"},{"denom":"ASSET3","index":"0.000001242939033438"},{"denom":"ASSET4","index":"0.000011728245238599"},{"denom":"ASSET5","index":"0.000000966730359341"},{"denom":"ASSET6","index":"0.000003935973605888"},{"denom":"ASSET7","index":"0.000006028785482704"},{"denom":"ASSET8","index":"0.000007866635506506"},{"denom":"ASSET9","index":"0.000003394179668236"}],"last_reward_claim_height":"82"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET10","shares":"135081762.000000018776364918","reward_history":[{"denom":"ASSET0","index":"0.000003313075721980"},{"denom":"ASSET1","index":"0.000028138029356789"},{"denom":"ASSET10","index":"0.000022370607880245"},{"denom":"ASSET11","index":"0.000027937207217164"},{"denom":"ASSET12","index":"0.000026595598409551"},{"denom":"ASSET13","index":"0.000008769097729958"},{"denom":"ASSET14","index":"0.000025655242037122"},{"denom":"ASSET15","index":"0.000020162686714325"},{"denom":"ASSET16","index":"0.000012488922131836"},{"denom":"ASSET17","index":"0.000009772018779266"},{"denom":"ASSET18","index":"0.000004056016110298"},{"denom":"ASSET2","index":"0.000008514325121927"},{"denom":"ASSET3","index":"0.000002365037757716"},{"denom":"ASSET4","index":"0.000022813272666626"},{"denom":"ASSET5","index":"0.000001844445619129"},{"denom":"ASSET6","index":"0.000007446834645040"},{"denom":"ASSET7","index":"0.000011690909413493"},{"denom":"ASSET8","index":"0.000015945057917181"},{"denom":"ASSET9","index":"0.000006769080892636"}],"last_reward_claim_height":"149"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET6","shares":"925459647.598579084198714623","reward_history":[{"denom":"ASSET0","index":"0.000001630255611072"},{"denom":"ASSET1","index":"0.000013593541268721"},{"denom":"ASSET10","index":"0.000009470169531707"},{"denom":"ASSET11","index":"0.000013149994246609"},{"denom":"ASSET12","index":"0.000011841383661505"},{"denom":"ASSET13","index":"0.000004074904678306"},{"denom":"ASSET14","index":"0.000012284196334242"},{"denom":"ASSET15","index":"0.000008782818517308"},{"denom":"ASSET16","index":"0.000006123739432762"},{"denom":"ASSET17","index":"0.000004348816994942"},{"denom":"ASSET18","index":"0.000002071599585061"},{"denom":"ASSET2","index":"0.000004012484981486"},{"denom":"ASSET3","index":"0.000001173490300222"},{"denom":"ASSET4","index":"0.000011046817638451"},{"denom":"ASSET5","index":"0.000000910593224203"},{"denom":"ASSET6","index":"0.000003707729991128"},{"denom":"ASSET7","index":"0.000005678723711902"},{"denom":"ASSET8","index":"0.000007410319536635"},{"denom":"ASSET9","index":"0.000003200294573447"}],"last_reward_claim_height":"79"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET17","shares":"43281762.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001630255611072"},{"denom":"ASSET1","index":"0.000013593541268721"},{"denom":"ASSET10","index":"0.000009470169531707"},{"denom":"ASSET11","index":"0.000013149994246609"},{"denom":"ASSET12","index":"0.000011841383661505"},{"denom":"ASSET13","index":"0.000004074904678306"},{"denom":"ASSET14","index":"0.000012284196334242"},{"denom":"ASSET15","index":"0.000008782818517308"},{"denom":"ASSET16","index":"0.000006123739432762"},{"denom":"ASSET17","index":"0.000004348816994942"},{"denom":"ASSET18","index":"0.000002071599585061"},{"denom":"ASSET2","index":"0.000004012484981486"},{"denom":"ASSET3","index":"0.000001173490300222"},{"denom":"ASSET4","index":"0.000011046817638451"},{"denom":"ASSET5","index":"0.000000910593224203"},{"denom":"ASSET6","index":"0.000003707729991128"},{"denom":"ASSET7","index":"0.000005678723711902"},{"denom":"ASSET8","index":"0.000007410319536635"},{"denom":"ASSET9","index":"0.000003200294573447"}],"last_reward_claim_height":"65"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET0","shares":"555816697.795554165516015813","reward_history":[{"denom":"ASSET0","index":"0.000002824624853437"},{"denom":"ASSET1","index":"0.000023976113690517"},{"denom":"ASSET10","index":"0.000019183481330878"},{"denom":"ASSET11","index":"0.000023837782846342"},{"denom":"ASSET12","index":"0.000022753084719682"},{"denom":"ASSET13","index":"0.000007489057952554"},{"denom":"ASSET14","index":"0.000021872315483076"},{"denom":"ASSET15","index":"0.000017271123733000"},{"denom":"ASSET16","index":"0.000010633084765839"},{"denom":"ASSET17","index":"0.000008361522972460"},{"denom":"ASSET18","index":"0.000003446219629870"},{"denom":"ASSET2","index":"0.000007263651822688"},{"denom":"ASSET3","index":"0.000002015414858276"},{"denom":"ASSET4","index":"0.000019437236646346"},{"denom":"ASSET5","index":"0.000001569802896992"},{"denom":"ASSET6","index":"0.000006336500403946"},{"denom":"ASSET7","index":"0.000009959182045961"},{"denom":"ASSET8","index":"0.000013614498977085"},{"denom":"ASSET9","index":"0.000005776799011181"}],"last_reward_claim_height":"154"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET12","shares":"48654894.056656916612228588","reward_history":[{"denom":"ASSET0","index":"0.000002824624853437"},{"denom":"ASSET1","index":"0.000023976113690517"},{"denom":"ASSET10","index":"0.000019183481330878"},{"denom":"ASSET11","index":"0.000023837782846342"},{"denom":"ASSET12","index":"0.000022753084719682"},{"denom":"ASSET13","index":"0.000007489057952554"},{"denom":"ASSET14","index":"0.000021872315483076"},{"denom":"ASSET15","index":"0.000017271123733000"},{"denom":"ASSET16","index":"0.000010633084765839"},{"denom":"ASSET17","index":"0.000008361522972460"},{"denom":"ASSET18","index":"0.000003446219629870"},{"denom":"ASSET2","index":"0.000007263651822688"},{"denom":"ASSET3","index":"0.000002015414858276"},{"denom":"ASSET4","index":"0.000019437236646346"},{"denom":"ASSET5","index":"0.000001569802896992"},{"denom":"ASSET6","index":"0.000006336500403946"},{"denom":"ASSET7","index":"0.000009959182045961"},{"denom":"ASSET8","index":"0.000013614498977085"},{"denom":"ASSET9","index":"0.000005776799011181"}],"last_reward_claim_height":"150"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET5","shares":"470191453.000000000000000000","reward_history":[],"last_reward_claim_height":"6"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET6","shares":"176376564.652739000448039040","reward_history":[{"denom":"ASSET0","index":"0.000004647286505128"},{"denom":"ASSET1","index":"0.000038009132036325"},{"denom":"ASSET10","index":"0.000033142388915443"},{"denom":"ASSET11","index":"0.000039594668374363"},{"denom":"ASSET12","index":"0.000037753435240155"},{"denom":"ASSET13","index":"0.000012789620691403"},{"denom":"ASSET14","index":"0.000036518112593773"},{"denom":"ASSET15","index":"0.000029725103813089"},{"denom":"ASSET16","index":"0.000016857301755173"},{"denom":"ASSET17","index":"0.000013707892451703"},{"denom":"ASSET18","index":"0.000005671073895044"},{"denom":"ASSET2","index":"0.000011481468896457"},{"denom":"ASSET3","index":"0.000003298652517557"},{"denom":"ASSET4","index":"0.000031167698742833"},{"denom":"ASSET5","index":"0.000002592256930151"},{"denom":"ASSET6","index":"0.000010580735913944"},{"denom":"ASSET7","index":"0.000016345764259168"},{"denom":"ASSET8","index":"0.000023608907458604"},{"denom":"ASSET9","index":"0.000009446179077200"}],"last_reward_claim_height":"184"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET10","shares":"475425207.104264187408988310","reward_history":[{"denom":"ASSET0","index":"0.000003086703561215"},{"denom":"ASSET1","index":"0.000026199550261878"},{"denom":"ASSET10","index":"0.000020936384793003"},{"denom":"ASSET11","index":"0.000026042194398185"},{"denom":"ASSET12","index":"0.000024843424443974"},{"denom":"ASSET13","index":"0.000008180415813801"},{"denom":"ASSET14","index":"0.000023898307142718"},{"denom":"ASSET15","index":"0.000018852934413068"},{"denom":"ASSET16","index":"0.000011621232923996"},{"denom":"ASSET17","index":"0.000009129550402498"},{"denom":"ASSET18","index":"0.000003767892160935"},{"denom":"ASSET2","index":"0.000007936188126371"},{"denom":"ASSET3","index":"0.000002203575710986"},{"denom":"ASSET4","index":"0.000021240180347210"},{"denom":"ASSET5","index":"0.000001716192200569"},{"denom":"ASSET6","index":"0.000006926674957775"},{"denom":"ASSET7","index":"0.000010883333770048"},{"denom":"ASSET8","index":"0.000014871024805414"},{"denom":"ASSET9","index":"0.000006311583255107"}],"last_reward_claim_height":"144"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET0","shares":"239481102.000000001197405510","reward_history":[],"last_reward_claim_height":"29"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET1","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"50"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET8","shares":"1051988995.914404311128783792","reward_history":[{"denom":"ASSET0","index":"0.000003050294937135"},{"denom":"ASSET1","index":"0.000025887230915803"},{"denom":"ASSET10","index":"0.000020718160619670"},{"denom":"ASSET11","index":"0.000025739685005463"},{"denom":"ASSET12","index":"0.000024570727404900"},{"denom":"ASSET13","index":"0.000008086966483560"},{"denom":"ASSET14","index":"0.000023616194455668"},{"denom":"ASSET15","index":"0.000018651338246959"},{"denom":"ASSET16","index":"0.000011480437826441"},{"denom":"ASSET17","index":"0.000009029688158762"},{"denom":"ASSET18","index":"0.000003721440260869"},{"denom":"ASSET2","index":"0.000007844134626406"},{"denom":"ASSET3","index":"0.000002176540273945"},{"denom":"ASSET4","index":"0.000020986445628896"},{"denom":"ASSET5","index":"0.000001695800268231"},{"denom":"ASSET6","index":"0.000006841569437153"},{"denom":"ASSET7","index":"0.000010753447417762"},{"denom":"ASSET8","index":"0.000014701309289649"},{"denom":"ASSET9","index":"0.000006238283490477"}],"last_reward_claim_height":"155"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET17","shares":"647366851.000000018773638679","reward_history":[],"last_reward_claim_height":"59"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET3","shares":"571814254.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002944371933765"},{"denom":"ASSET1","index":"0.000024968433937291"},{"denom":"ASSET10","index":"0.000019851368221906"},{"denom":"ASSET11","index":"0.000024791952485266"},{"denom":"ASSET12","index":"0.000023600048189968"},{"denom":"ASSET13","index":"0.000007784111470281"},{"denom":"ASSET14","index":"0.000022766914870589"},{"denom":"ASSET15","index":"0.000017894900322998"},{"denom":"ASSET16","index":"0.000011081662183182"},{"denom":"ASSET17","index":"0.000008672317440622"},{"denom":"ASSET18","index":"0.000003599691097086"},{"denom":"ASSET2","index":"0.000007555380586873"},{"denom":"ASSET3","index":"0.000002101847815188"},{"denom":"ASSET4","index":"0.000020244169178497"},{"denom":"ASSET5","index":"0.000001637098640985"},{"denom":"ASSET6","index":"0.000006609166185649"},{"denom":"ASSET7","index":"0.000010374399402552"},{"denom":"ASSET8","index":"0.000014150620453773"},{"denom":"ASSET9","index":"0.000006009906313007"}],"last_reward_claim_height":"127"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET9","shares":"289523636.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001535139489204"},{"denom":"ASSET1","index":"0.000012800845981431"},{"denom":"ASSET10","index":"0.000008918122145344"},{"denom":"ASSET11","index":"0.000012383184798277"},{"denom":"ASSET12","index":"0.000011151318949088"},{"denom":"ASSET13","index":"0.000003837555421617"},{"denom":"ASSET14","index":"0.000011567806926671"},{"denom":"ASSET15","index":"0.000008270512670342"},{"denom":"ASSET16","index":"0.000005766305379776"},{"denom":"ASSET17","index":"0.000004095074044376"},{"denom":"ASSET18","index":"0.000001950454261216"},{"denom":"ASSET2","index":"0.000003778308540299"},{"denom":"ASSET3","index":"0.000001105159647558"},{"denom":"ASSET4","index":"0.000010402813795010"},{"denom":"ASSET5","index":"0.000000857613272150"},{"denom":"ASSET6","index":"0.000003491459778273"},{"denom":"ASSET7","index":"0.000005347470991052"},{"denom":"ASSET8","index":"0.000006978226734264"},{"denom":"ASSET9","index":"0.000003013965111016"}],"last_reward_claim_height":"77"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET10","shares":"15666049.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001535139489204"},{"denom":"ASSET1","index":"0.000012800845981431"},{"denom":"ASSET10","index":"0.000008918122145344"},{"denom":"ASSET11","index":"0.000012383184798277"},{"denom":"ASSET12","index":"0.000011151318949088"},{"denom":"ASSET13","index":"0.000003837555421617"},{"denom":"ASSET14","index":"0.000011567806926671"},{"denom":"ASSET15","index":"0.000008270512670342"},{"denom":"ASSET16","index":"0.000005766305379776"},{"denom":"ASSET17","index":"0.000004095074044376"},{"denom":"ASSET18","index":"0.000001950454261216"},{"denom":"ASSET2","index":"0.000003778308540299"},{"denom":"ASSET3","index":"0.000001105159647558"},{"denom":"ASSET4","index":"0.000010402813795010"},{"denom":"ASSET5","index":"0.000000857613272150"},{"denom":"ASSET6","index":"0.000003491459778273"},{"denom":"ASSET7","index":"0.000005347470991052"},{"denom":"ASSET8","index":"0.000006978226734264"},{"denom":"ASSET9","index":"0.000003013965111016"}],"last_reward_claim_height":"117"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET15","shares":"344983829.000000000000000000","reward_history":[],"last_reward_claim_height":"16"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET0","shares":"6648808.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001449310882227"},{"denom":"ASSET1","index":"0.000012082282763787"},{"denom":"ASSET10","index":"0.000008417588941675"},{"denom":"ASSET11","index":"0.000011688148164511"},{"denom":"ASSET12","index":"0.000010525234539176"},{"denom":"ASSET13","index":"0.000003621923721366"},{"denom":"ASSET14","index":"0.000010918286351091"},{"denom":"ASSET15","index":"0.000007806355476589"},{"denom":"ASSET16","index":"0.000005442630668295"},{"denom":"ASSET17","index":"0.000003865550877512"},{"denom":"ASSET18","index":"0.000001841279906781"},{"denom":"ASSET2","index":"0.000003566701565973"},{"denom":"ASSET3","index":"0.000001043265621984"},{"denom":"ASSET4","index":"0.000009818715786353"},{"denom":"ASSET5","index":"0.000000809924945764"},{"denom":"ASSET6","index":"0.000003295463332131"},{"denom":"ASSET7","index":"0.000005047413281659"},{"denom":"ASSET8","index":"0.000006586595514820"},{"denom":"ASSET9","index":"0.000002844482396421"}],"last_reward_claim_height":"118"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET10","shares":"689500293.000000012411005274","reward_history":[],"last_reward_claim_height":"57"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET12","shares":"72801906.443243337415572147","reward_history":[{"denom":"ASSET0","index":"0.000002938303361264"},{"denom":"ASSET1","index":"0.000024939884544734"},{"denom":"ASSET10","index":"0.000019970621943114"},{"denom":"ASSET11","index":"0.000024800280810198"},{"denom":"ASSET12","index":"0.000023679745396670"},{"denom":"ASSET13","index":"0.000007792253675830"},{"denom":"ASSET14","index":"0.000022752532795075"},{"denom":"ASSET15","index":"0.000017976341528508"},{"denom":"ASSET16","index":"0.000011059313296089"},{"denom":"ASSET17","index":"0.000008702160495382"},{"denom":"ASSET18","index":"0.000003584018468858"},{"denom":"ASSET2","index":"0.000007557839698908"},{"denom":"ASSET3","index":"0.000002096442663552"},{"denom":"ASSET4","index":"0.000020217858094708"},{"denom":"ASSET5","index":"0.000001633684136995"},{"denom":"ASSET6","index":"0.000006589976909255"},{"denom":"ASSET7","index":"0.000010359339015905"},{"denom":"ASSET8","index":"0.000014165755580726"},{"denom":"ASSET9","index":"0.000006010291774725"}],"last_reward_claim_height":"172"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET13","shares":"8515227.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001449310882227"},{"denom":"ASSET1","index":"0.000012082282763787"},{"denom":"ASSET10","index":"0.000008417588941675"},{"denom":"ASSET11","index":"0.000011688148164511"},{"denom":"ASSET12","index":"0.000010525234539176"},{"denom":"ASSET13","index":"0.000003621923721366"},{"denom":"ASSET14","index":"0.000010918286351091"},{"denom":"ASSET15","index":"0.000007806355476589"},{"denom":"ASSET16","index":"0.000005442630668295"},{"denom":"ASSET17","index":"0.000003865550877512"},{"denom":"ASSET18","index":"0.000001841279906781"},{"denom":"ASSET2","index":"0.000003566701565973"},{"denom":"ASSET3","index":"0.000001043265621984"},{"denom":"ASSET4","index":"0.000009818715786353"},{"denom":"ASSET5","index":"0.000000809924945764"},{"denom":"ASSET6","index":"0.000003295463332131"},{"denom":"ASSET7","index":"0.000005047413281659"},{"denom":"ASSET8","index":"0.000006586595514820"},{"denom":"ASSET9","index":"0.000002844482396421"}],"last_reward_claim_height":"100"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET0","shares":"320488999.000000000000000000","reward_history":[],"last_reward_claim_height":"13"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET5","shares":"528329969.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001731982701050"},{"denom":"ASSET1","index":"0.000014440617081118"},{"denom":"ASSET10","index":"0.000010060714066040"},{"denom":"ASSET11","index":"0.000013969585405988"},{"denom":"ASSET12","index":"0.000012579542501729"},{"denom":"ASSET13","index":"0.000004329188348588"},{"denom":"ASSET14","index":"0.000013049805772821"},{"denom":"ASSET15","index":"0.000009329961826155"},{"denom":"ASSET16","index":"0.000006505308583448"},{"denom":"ASSET17","index":"0.000004619645074851"},{"denom":"ASSET18","index":"0.000002200709164068"},{"denom":"ASSET2","index":"0.000004262337197306"},{"denom":"ASSET3","index":"0.000001247119753241"},{"denom":"ASSET4","index":"0.000011735066464260"},{"denom":"ASSET5","index":"0.000000967420683506"},{"denom":"ASSET6","index":"0.000003938839097420"},{"denom":"ASSET7","index":"0.000006032740100243"},{"denom":"ASSET8","index":"0.000007872299366576"},{"denom":"ASSET9","index":"0.000003400187866969"}],"last_reward_claim_height":"105"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET0","shares":"542290595.000000000000000000","reward_history":[],"last_reward_claim_height":"32"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET8","shares":"830373951.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003269082759145"},{"denom":"ASSET1","index":"0.000027736662456421"},{"denom":"ASSET10","index":"0.000022145815740722"},{"denom":"ASSET11","index":"0.000027564157079872"},{"denom":"ASSET12","index":"0.000026286254396013"},{"denom":"ASSET13","index":"0.000008658548128401"},{"denom":"ASSET14","index":"0.000025298253418871"},{"denom":"ASSET15","index":"0.000019946084058089"},{"denom":"ASSET16","index":"0.000012303266096103"},{"denom":"ASSET17","index":"0.000009659898104260"},{"denom":"ASSET18","index":"0.000003991565584036"},{"denom":"ASSET2","index":"0.000008399501371576"},{"denom":"ASSET3","index":"0.000002333103515211"},{"denom":"ASSET4","index":"0.000022486071398850"},{"denom":"ASSET5","index":"0.000001817550334619"},{"denom":"ASSET6","index":"0.000007334517845971"},{"denom":"ASSET7","index":"0.000011522603065826"},{"denom":"ASSET8","index":"0.000015739883934035"},{"denom":"ASSET9","index":"0.000006680430297789"}],"last_reward_claim_height":"137"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET10","shares":"93260191.351327920982235280","reward_history":[{"denom":"ASSET0","index":"0.000001649988907243"},{"denom":"ASSET1","index":"0.000013756519537767"},{"denom":"ASSET10","index":"0.000009584361794534"},{"denom":"ASSET11","index":"0.000013307506163009"},{"denom":"ASSET12","index":"0.000011983307415229"},{"denom":"ASSET13","index":"0.000004124070634826"},{"denom":"ASSET14","index":"0.000012431118612277"},{"denom":"ASSET15","index":"0.000008888300900330"},{"denom":"ASSET16","index":"0.000006196625007203"},{"denom":"ASSET17","index":"0.000004401172597026"},{"denom":"ASSET18","index":"0.000002096597926581"},{"denom":"ASSET2","index":"0.000004060355216185"},{"denom":"ASSET3","index":"0.000001187751577673"},{"denom":"ASSET4","index":"0.000011179050527108"},{"denom":"ASSET5","index":"0.000000922070303720"},{"denom":"ASSET6","index":"0.000003752597722375"},{"denom":"ASSET7","index":"0.000005747010543590"},{"denom":"ASSET8","index":"0.000007499184556200"},{"denom":"ASSET9","index":"0.000003238666751267"}],"last_reward_claim_height":"108"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET0","shares":"82216810.835625508472129384","reward_history":[{"denom":"ASSET0","index":"0.000003075387603983"},{"denom":"ASSET1","index":"0.000026047450678709"},{"denom":"ASSET10","index":"0.000020531243448578"},{"denom":"ASSET11","index":"0.000025816927992783"},{"denom":"ASSET12","index":"0.000024485469945303"},{"denom":"ASSET13","index":"0.000008098391373250"},{"denom":"ASSET14","index":"0.000023735883509134"},{"denom":"ASSET15","index":"0.000018540774078871"},{"denom":"ASSET16","index":"0.000011572711306393"},{"denom":"ASSET17","index":"0.000008997644319689"},{"denom":"ASSET18","index":"0.000003770348288081"},{"denom":"ASSET2","index":"0.000007868945206789"},{"denom":"ASSET3","index":"0.000002196489262864"},{"denom":"ASSET4","index":"0.000021122354693053"},{"denom":"ASSET5","index":"0.000001710501624761"},{"denom":"ASSET6","index":"0.000006909892735753"},{"denom":"ASSET7","index":"0.000010827333344051"},{"denom":"ASSET8","index":"0.000014723239896475"},{"denom":"ASSET9","index":"0.000006260042064096"}],"last_reward_claim_height":"179"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET3","shares":"449218503.000000008085933054","reward_history":[{"denom":"ASSET0","index":"0.000004641387744542"},{"denom":"ASSET1","index":"0.000037932378567067"},{"denom":"ASSET10","index":"0.000032601101001776"},{"denom":"ASSET11","index":"0.000039356878014615"},{"denom":"ASSET12","index":"0.000037330950055556"},{"denom":"ASSET13","index":"0.000012687204599197"},{"denom":"ASSET14","index":"0.000036353644377842"},{"denom":"ASSET15","index":"0.000029312681138685"},{"denom":"ASSET16","index":"0.000016849600599124"},{"denom":"ASSET17","index":"0.000013558668912488"},{"denom":"ASSET18","index":"0.000005686042555505"},{"denom":"ASSET2","index":"0.000011430316757601"},{"denom":"ASSET3","index":"0.000003297706070248"},{"denom":"ASSET4","index":"0.000031100933164073"},{"denom":"ASSET5","index":"0.000002588917532750"},{"denom":"ASSET6","index":"0.000010574549471715"},{"denom":"ASSET7","index":"0.000016305136913609"},{"denom":"ASSET8","index":"0.000023412720889981"},{"denom":"ASSET9","index":"0.000009397944355794"}],"last_reward_claim_height":"195"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET14","shares":"356895236.393180136603455312","reward_history":[{"denom":"ASSET0","index":"0.000003075387603983"},{"denom":"ASSET1","index":"0.000026047450678709"},{"denom":"ASSET10","index":"0.000020531243448578"},{"denom":"ASSET11","index":"0.000025816927992783"},{"denom":"ASSET12","index":"0.000024485469945303"},{"denom":"ASSET13","index":"0.000008098391373250"},{"denom":"ASSET14","index":"0.000023735883509134"},{"denom":"ASSET15","index":"0.000018540774078871"},{"denom":"ASSET16","index":"0.000011572711306393"},{"denom":"ASSET17","index":"0.000008997644319689"},{"denom":"ASSET18","index":"0.000003770348288081"},{"denom":"ASSET2","index":"0.000007868945206789"},{"denom":"ASSET3","index":"0.000002196489262864"},{"denom":"ASSET4","index":"0.000021122354693053"},{"denom":"ASSET5","index":"0.000001710501624761"},{"denom":"ASSET6","index":"0.000006909892735753"},{"denom":"ASSET7","index":"0.000010827333344051"},{"denom":"ASSET8","index":"0.000014723239896475"},{"denom":"ASSET9","index":"0.000006260042064096"}],"last_reward_claim_height":"178"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET10","shares":"772770875.205573210712530850","reward_history":[{"denom":"ASSET0","index":"0.000003478645419875"},{"denom":"ASSET1","index":"0.000029510728520321"},{"denom":"ASSET10","index":"0.000023521700007579"},{"denom":"ASSET11","index":"0.000029317721838376"},{"denom":"ASSET12","index":"0.000027938200533330"},{"denom":"ASSET13","index":"0.000009206643656085"},{"denom":"ASSET14","index":"0.000026913511393693"},{"denom":"ASSET15","index":"0.000021192735957156"},{"denom":"ASSET16","index":"0.000013092928863665"},{"denom":"ASSET17","index":"0.000010265835619821"},{"denom":"ASSET18","index":"0.000004249633310572"},{"denom":"ASSET2","index":"0.000008933634051769"},{"denom":"ASSET3","index":"0.000002482776919113"},{"denom":"ASSET4","index":"0.000023925662277258"},{"denom":"ASSET5","index":"0.000001933519521756"},{"denom":"ASSET6","index":"0.000007806757132876"},{"denom":"ASSET7","index":"0.000012260200744601"},{"denom":"ASSET8","index":"0.000016737737824425"},{"denom":"ASSET9","index":"0.000007106044722519"}],"last_reward_claim_height":"166"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET7","shares":"750128680.000000000000000000","reward_history":[],"last_reward_claim_height":"48"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET9","shares":"584994006.091803964010173689","reward_history":[{"denom":"ASSET0","index":"0.000004969895200592"},{"denom":"ASSET1","index":"0.000040677229202184"},{"denom":"ASSET10","index":"0.000035058930288083"},{"denom":"ASSET11","index":"0.000042205040269932"},{"denom":"ASSET12","index":"0.000040115789411902"},{"denom":"ASSET13","index":"0.000013604140441016"},{"denom":"ASSET14","index":"0.000038956175529265"},{"denom":"ASSET15","index":"0.000031495411813590"},{"denom":"ASSET16","index":"0.000018058173463617"},{"denom":"ASSET17","index":"0.000014573820128939"},{"denom":"ASSET18","index":"0.000006078287757186"},{"denom":"ASSET2","index":"0.000012269650352482"},{"denom":"ASSET3","index":"0.000003530333075818"},{"denom":"ASSET4","index":"0.000033339356746661"},{"denom":"ASSET5","index":"0.000002771746740103"},{"denom":"ASSET6","index":"0.000011313791411467"},{"denom":"ASSET7","index":"0.000017468648188179"},{"denom":"ASSET8","index":"0.000025095367669757"},{"denom":"ASSET9","index":"0.000010079570522096"}],"last_reward_claim_height":"197"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET13","shares":"578356860.368323787832999525","reward_history":[{"denom":"ASSET0","index":"0.000001752700098923"},{"denom":"ASSET1","index":"0.000014612940709519"},{"denom":"ASSET10","index":"0.000010180696541309"},{"denom":"ASSET11","index":"0.000014136053678762"},{"denom":"ASSET12","index":"0.000012730078503378"},{"denom":"ASSET13","index":"0.000004380628160175"},{"denom":"ASSET14","index":"0.000013205843447004"},{"denom":"ASSET15","index":"0.000009441241121853"},{"denom":"ASSET16","index":"0.000006583285198706"},{"denom":"ASSET17","index":"0.000004674614988548"},{"denom":"ASSET18","index":"0.000002226220868286"},{"denom":"ASSET2","index":"0.000004313302932304"},{"denom":"ASSET3","index":"0.000001261225935460"},{"denom":"ASSET4","index":"0.000011875048109410"},{"denom":"ASSET5","index":"0.000000979582065531"},{"denom":"ASSET6","index":"0.000003985653489996"},{"denom":"ASSET7","index":"0.000006105276080818"},{"denom":"ASSET8","index":"0.000007965696544335"},{"denom":"ASSET9","index":"0.000003440319144236"}],"last_reward_claim_height":"87"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET14","shares":"442745903.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001752700098923"},{"denom":"ASSET1","index":"0.000014612940709519"},{"denom":"ASSET10","index":"0.000010180696541309"},{"denom":"ASSET11","index":"0.000014136053678762"},{"denom":"ASSET12","index":"0.000012730078503378"},{"denom":"ASSET13","index":"0.000004380628160175"},{"denom":"ASSET14","index":"0.000013205843447004"},{"denom":"ASSET15","index":"0.000009441241121853"},{"denom":"ASSET16","index":"0.000006583285198706"},{"denom":"ASSET17","index":"0.000004674614988548"},{"denom":"ASSET18","index":"0.000002226220868286"},{"denom":"ASSET2","index":"0.000004313302932304"},{"denom":"ASSET3","index":"0.000001261225935460"},{"denom":"ASSET4","index":"0.000011875048109410"},{"denom":"ASSET5","index":"0.000000979582065531"},{"denom":"ASSET6","index":"0.000003985653489996"},{"denom":"ASSET7","index":"0.000006105276080818"},{"denom":"ASSET8","index":"0.000007965696544335"},{"denom":"ASSET9","index":"0.000003440319144236"}],"last_reward_claim_height":"120"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET1","shares":"657423799.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002895048613815"},{"denom":"ASSET1","index":"0.000024589366099895"},{"denom":"ASSET10","index":"0.000019676065498265"},{"denom":"ASSET11","index":"0.000024447379266412"},{"denom":"ASSET12","index":"0.000023337478265694"},{"denom":"ASSET13","index":"0.000007679998629802"},{"denom":"ASSET14","index":"0.000022431328797509"},{"denom":"ASSET15","index":"0.000017714358679290"},{"denom":"ASSET16","index":"0.000010904445776568"},{"denom":"ASSET17","index":"0.000008574179211920"},{"denom":"ASSET18","index":"0.000003534399202209"},{"denom":"ASSET2","index":"0.000007450371795821"},{"denom":"ASSET3","index":"0.000002066219984895"},{"denom":"ASSET4","index":"0.000019933989143940"},{"denom":"ASSET5","index":"0.000001610899827710"},{"denom":"ASSET6","index":"0.000006497050827728"},{"denom":"ASSET7","index":"0.000010213894093182"},{"denom":"ASSET8","index":"0.000013962110633776"},{"denom":"ASSET9","index":"0.000005925048173997"}],"last_reward_claim_height":"174"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET3","shares":"16674121.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001434713876400"},{"denom":"ASSET1","index":"0.000011974044460331"},{"denom":"ASSET10","index":"0.000008340728508476"},{"denom":"ASSET11","index":"0.000011582406348125"},{"denom":"ASSET12","index":"0.000010430757641934"},{"denom":"ASSET13","index":"0.000003588723493535"},{"denom":"ASSET14","index":"0.000010820456951604"},{"denom":"ASSET15","index":"0.000007735822117345"},{"denom":"ASSET16","index":"0.000005393748654249"},{"denom":"ASSET17","index":"0.000003829135007959"},{"denom":"ASSET18","index":"0.000001824413186071"},{"denom":"ASSET2","index":"0.000003534437022536"},{"denom":"ASSET3","index":"0.000001033381751515"},{"denom":"ASSET4","index":"0.000009730849926555"},{"denom":"ASSET5","index":"0.000000802664249770"},{"denom":"ASSET6","index":"0.000003264943470077"},{"denom":"ASSET7","index":"0.000005002110542043"},{"denom":"ASSET8","index":"0.000006526009335083"},{"denom":"ASSET9","index":"0.000002819018886872"}],"last_reward_claim_height":"121"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET5","shares":"474611942.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004589138107131"},{"denom":"ASSET1","index":"0.000037446098475403"},{"denom":"ASSET10","index":"0.000032732808056967"},{"denom":"ASSET11","index":"0.000039094478322284"},{"denom":"ASSET12","index":"0.000037233161430730"},{"denom":"ASSET13","index":"0.000012643946661020"},{"denom":"ASSET14","index":"0.000036080970262311"},{"denom":"ASSET15","index":"0.000029367139968273"},{"denom":"ASSET16","index":"0.000016612678055137"},{"denom":"ASSET17","index":"0.000013507979841133"},{"denom":"ASSET18","index":"0.000005606465800233"},{"denom":"ASSET2","index":"0.000011302755940208"},{"denom":"ASSET3","index":"0.000003257528612514"},{"denom":"ASSET4","index":"0.000030728704055425"},{"denom":"ASSET5","index":"0.000002561029239288"},{"denom":"ASSET6","index":"0.000010461272108585"},{"denom":"ASSET7","index":"0.000016139641498045"},{"denom":"ASSET8","index":"0.000023361940912705"},{"denom":"ASSET9","index":"0.000009319386307275"}],"last_reward_claim_height":"188"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET10","shares":"274468709.000000000000000000","reward_history":[],"last_reward_claim_height":"31"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET12","shares":"845879633.000000016071713027","reward_history":[],"last_reward_claim_height":"45"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET14","shares":"441206272.999999997269604216","reward_history":[{"denom":"ASSET0","index":"0.000002895048613815"},{"denom":"ASSET1","index":"0.000024589366099895"},{"denom":"ASSET10","index":"0.000019676065498265"},{"denom":"ASSET11","index":"0.000024447379266412"},{"denom":"ASSET12","index":"0.000023337478265694"},{"denom":"ASSET13","index":"0.000007679998629802"},{"denom":"ASSET14","index":"0.000022431328797509"},{"denom":"ASSET15","index":"0.000017714358679290"},{"denom":"ASSET16","index":"0.000010904445776568"},{"denom":"ASSET17","index":"0.000008574179211920"},{"denom":"ASSET18","index":"0.000003534399202209"},{"denom":"ASSET2","index":"0.000007450371795821"},{"denom":"ASSET3","index":"0.000002066219984895"},{"denom":"ASSET4","index":"0.000019933989143940"},{"denom":"ASSET5","index":"0.000001610899827710"},{"denom":"ASSET6","index":"0.000006497050827728"},{"denom":"ASSET7","index":"0.000010213894093182"},{"denom":"ASSET8","index":"0.000013962110633776"},{"denom":"ASSET9","index":"0.000005925048173997"}],"last_reward_claim_height":"162"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET0","shares":"726186673.999999947714559472","reward_history":[],"last_reward_claim_height":"53"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET6","shares":"142671069.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001534549585700"},{"denom":"ASSET1","index":"0.000012795681230217"},{"denom":"ASSET10","index":"0.000008914897664776"},{"denom":"ASSET11","index":"0.000012378406858633"},{"denom":"ASSET12","index":"0.000011146809898878"},{"denom":"ASSET13","index":"0.000003835934265229"},{"denom":"ASSET14","index":"0.000011563204872419"},{"denom":"ASSET15","index":"0.000008267660704848"},{"denom":"ASSET16","index":"0.000005764014475342"},{"denom":"ASSET17","index":"0.000004093597891939"},{"denom":"ASSET18","index":"0.000001950065161198"},{"denom":"ASSET2","index":"0.000003777014596322"},{"denom":"ASSET3","index":"0.000001104963641508"},{"denom":"ASSET4","index":"0.000010398442163960"},{"denom":"ASSET5","index":"0.000000857413092297"},{"denom":"ASSET6","index":"0.000003490330834180"},{"denom":"ASSET7","index":"0.000005345421006692"},{"denom":"ASSET8","index":"0.000006975385280099"},{"denom":"ASSET9","index":"0.000003012817696624"}],"last_reward_claim_height":"101"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET10","shares":"274497501.000000000000000000","reward_history":[],"last_reward_claim_height":"23"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET13","shares":"159177069.999999990926907010","reward_history":[{"denom":"ASSET0","index":"0.000003188277912377"},{"denom":"ASSET1","index":"0.000027072180177666"},{"denom":"ASSET10","index":"0.000021525590492702"},{"denom":"ASSET11","index":"0.000026879695640981"},{"denom":"ASSET12","index":"0.000025588321740665"},{"denom":"ASSET13","index":"0.000008437670891103"},{"denom":"ASSET14","index":"0.000024686413843557"},{"denom":"ASSET15","index":"0.000019403734038796"},{"denom":"ASSET16","index":"0.000012012351193227"},{"denom":"ASSET17","index":"0.000009402991763462"},{"denom":"ASSET18","index":"0.000003903246578743"},{"denom":"ASSET2","index":"0.000008191237466303"},{"denom":"ASSET3","index":"0.000002276140738265"},{"denom":"ASSET4","index":"0.000021950324608304"},{"denom":"ASSET5","index":"0.000001774065663090"},{"denom":"ASSET6","index":"0.000007165524818145"},{"denom":"ASSET7","index":"0.000011244820309610"},{"denom":"ASSET8","index":"0.000015343724796373"},{"denom":"ASSET9","index":"0.000006516357987660"}],"last_reward_claim_height":"176"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET3","shares":"282188725.622842046353067154","reward_history":[{"denom":"ASSET0","index":"0.000002979919393708"},{"denom":"ASSET1","index":"0.000025298333716476"},{"denom":"ASSET10","index":"0.000020286143685892"},{"denom":"ASSET11","index":"0.000025164674259360"},{"denom":"ASSET12","index":"0.000024041723171534"},{"denom":"ASSET13","index":"0.000007907785176595"},{"denom":"ASSET14","index":"0.000023082402053339"},{"denom":"ASSET15","index":"0.000018255332392862"},{"denom":"ASSET16","index":"0.000011216675450010"},{"denom":"ASSET17","index":"0.000008835128154455"},{"denom":"ASSET18","index":"0.000003633337151635"},{"denom":"ASSET2","index":"0.000007668586747858"},{"denom":"ASSET3","index":"0.000002126085354033"},{"denom":"ASSET4","index":"0.000020508686269066"},{"denom":"ASSET5","index":"0.000001656307666438"},{"denom":"ASSET6","index":"0.000006683025235204"},{"denom":"ASSET7","index":"0.000010507859389263"},{"denom":"ASSET8","index":"0.000014375637436113"},{"denom":"ASSET9","index":"0.000006098257618497"}],"last_reward_claim_height":"174"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET7","shares":"83440948.000000008509322820","reward_history":[{"denom":"ASSET0","index":"0.000001453411320498"},{"denom":"ASSET1","index":"0.000012118137400313"},{"denom":"ASSET10","index":"0.000008442891188019"},{"denom":"ASSET11","index":"0.000011723343510399"},{"denom":"ASSET12","index":"0.000010556870017106"},{"denom":"ASSET13","index":"0.000003632917795231"},{"denom":"ASSET14","index":"0.000010951256903010"},{"denom":"ASSET15","index":"0.000007829943148627"},{"denom":"ASSET16","index":"0.000005459144789091"},{"denom":"ASSET17","index":"0.000003877120201363"},{"denom":"ASSET18","index":"0.000001846984198382"},{"denom":"ASSET2","index":"0.000003577158245830"},{"denom":"ASSET3","index":"0.000001046407310278"},{"denom":"ASSET4","index":"0.000009848276035312"},{"denom":"ASSET5","index":"0.000000811973000390"},{"denom":"ASSET6","index":"0.000003305686571013"},{"denom":"ASSET7","index":"0.000005062722883136"},{"denom":"ASSET8","index":"0.000006606082089893"},{"denom":"ASSET9","index":"0.000002853098111648"}],"last_reward_claim_height":"86"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET8","shares":"129332480.833791259706237253","reward_history":[{"denom":"ASSET0","index":"0.000002979919393708"},{"denom":"ASSET1","index":"0.000025298333716476"},{"denom":"ASSET10","index":"0.000020286143685892"},{"denom":"ASSET11","index":"0.000025164674259360"},{"denom":"ASSET12","index":"0.000024041723171534"},{"denom":"ASSET13","index":"0.000007907785176595"},{"denom":"ASSET14","index":"0.000023082402053339"},{"denom":"ASSET15","index":"0.000018255332392862"},{"denom":"ASSET16","index":"0.000011216675450010"},{"denom":"ASSET17","index":"0.000008835128154455"},{"denom":"ASSET18","index":"0.000003633337151635"},{"denom":"ASSET2","index":"0.000007668586747858"},{"denom":"ASSET3","index":"0.000002126085354033"},{"denom":"ASSET4","index":"0.000020508686269066"},{"denom":"ASSET5","index":"0.000001656307666438"},{"denom":"ASSET6","index":"0.000006683025235204"},{"denom":"ASSET7","index":"0.000010507859389263"},{"denom":"ASSET8","index":"0.000014375637436113"},{"denom":"ASSET9","index":"0.000006098257618497"}],"last_reward_claim_height":"139"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET10","shares":"673676810.000000010778828960","reward_history":[],"last_reward_claim_height":"61"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET11","shares":"224060093.640471063095502384","reward_history":[{"denom":"ASSET0","index":"0.000001453411320498"},{"denom":"ASSET1","index":"0.000012118137400313"},{"denom":"ASSET10","index":"0.000008442891188019"},{"denom":"ASSET11","index":"0.000011723343510399"},{"denom":"ASSET12","index":"0.000010556870017106"},{"denom":"ASSET13","index":"0.000003632917795231"},{"denom":"ASSET14","index":"0.000010951256903010"},{"denom":"ASSET15","index":"0.000007829943148627"},{"denom":"ASSET16","index":"0.000005459144789091"},{"denom":"ASSET17","index":"0.000003877120201363"},{"denom":"ASSET18","index":"0.000001846984198382"},{"denom":"ASSET2","index":"0.000003577158245830"},{"denom":"ASSET3","index":"0.000001046407310278"},{"denom":"ASSET4","index":"0.000009848276035312"},{"denom":"ASSET5","index":"0.000000811973000390"},{"denom":"ASSET6","index":"0.000003305686571013"},{"denom":"ASSET7","index":"0.000005062722883136"},{"denom":"ASSET8","index":"0.000006606082089893"},{"denom":"ASSET9","index":"0.000002853098111648"}],"last_reward_claim_height":"80"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET15","shares":"339676649.000000000000000000","reward_history":[],"last_reward_claim_height":"42"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET6","shares":"176687643.596812335710996850","reward_history":[{"denom":"ASSET0","index":"0.000003433377044021"},{"denom":"ASSET1","index":"0.000029119719093870"},{"denom":"ASSET10","index":"0.000023168779363922"},{"denom":"ASSET11","index":"0.000028918871222836"},{"denom":"ASSET12","index":"0.000027536680421684"},{"denom":"ASSET13","index":"0.000009079853140421"},{"denom":"ASSET14","index":"0.000026553415276013"},{"denom":"ASSET15","index":"0.000020883272198610"},{"denom":"ASSET16","index":"0.000012920460029656"},{"denom":"ASSET17","index":"0.000010116347697920"},{"denom":"ASSET18","index":"0.000004196183907349"},{"denom":"ASSET2","index":"0.000008810148159861"},{"denom":"ASSET3","index":"0.000002451192479374"},{"denom":"ASSET4","index":"0.000023608026429735"},{"denom":"ASSET5","index":"0.000001908186346512"},{"denom":"ASSET6","index":"0.000007706415634871"},{"denom":"ASSET7","index":"0.000012098308533034"},{"denom":"ASSET8","index":"0.000016505861275643"},{"denom":"ASSET9","index":"0.000007009790471677"}],"last_reward_claim_height":"125"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET12","shares":"238190813.785556708703251751","reward_history":[{"denom":"ASSET0","index":"0.000005110258502433"},{"denom":"ASSET1","index":"0.000041848139529843"},{"denom":"ASSET10","index":"0.000036095442313773"},{"denom":"ASSET11","index":"0.000043419926176109"},{"denom":"ASSET12","index":"0.000041293844776763"},{"denom":"ASSET13","index":"0.000013994054097310"},{"denom":"ASSET14","index":"0.000040066625857946"},{"denom":"ASSET15","index":"0.000032419831695563"},{"denom":"ASSET16","index":"0.000018571815188636"},{"denom":"ASSET17","index":"0.000015000716043498"},{"denom":"ASSET18","index":"0.000006247416520609"},{"denom":"ASSET2","index":"0.000012623910696266"},{"denom":"ASSET3","index":"0.000003630542968489"},{"denom":"ASSET4","index":"0.000034294837675452"},{"denom":"ASSET5","index":"0.000002848875945133"},{"denom":"ASSET6","index":"0.000011630847535820"},{"denom":"ASSET7","index":"0.000017964747196149"},{"denom":"ASSET8","index":"0.000025811711320315"},{"denom":"ASSET9","index":"0.000010370289784603"}],"last_reward_claim_height":"191"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET14","shares":"152315603.360656248966904165","reward_history":[{"denom":"ASSET0","index":"0.000001779729226299"},{"denom":"ASSET1","index":"0.000014840802182142"},{"denom":"ASSET10","index":"0.000010337989986643"},{"denom":"ASSET11","index":"0.000014356968690293"},{"denom":"ASSET12","index":"0.000012927350131463"},{"denom":"ASSET13","index":"0.000004449323065747"},{"denom":"ASSET14","index":"0.000013411183623312"},{"denom":"ASSET15","index":"0.000009589142170113"},{"denom":"ASSET16","index":"0.000006683709894939"},{"denom":"ASSET17","index":"0.000004745944603463"},{"denom":"ASSET18","index":"0.000002261131394068"},{"denom":"ASSET2","index":"0.000004378814667437"},{"denom":"ASSET3","index":"0.000001281307789972"},{"denom":"ASSET4","index":"0.000012059367435030"},{"denom":"ASSET5","index":"0.000000994411548574"},{"denom":"ASSET6","index":"0.000004048154592606"},{"denom":"ASSET7","index":"0.000006199876403090"},{"denom":"ASSET8","index":"0.000008089015212973"},{"denom":"ASSET9","index":"0.000003493812702447"}],"last_reward_claim_height":"81"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET14","shares":"478133033.573465405454383017","reward_history":[{"denom":"ASSET0","index":"0.000001595670533734"},{"denom":"ASSET1","index":"0.000013304245337308"},{"denom":"ASSET10","index":"0.000009268754359880"},{"denom":"ASSET11","index":"0.000012870227612725"},{"denom":"ASSET12","index":"0.000011589729681675"},{"denom":"ASSET13","index":"0.000003988302473145"},{"denom":"ASSET14","index":"0.000012022582258004"},{"denom":"ASSET15","index":"0.000008595881243245"},{"denom":"ASSET16","index":"0.000005992940044003"},{"denom":"ASSET17","index":"0.000004256286571545"},{"denom":"ASSET18","index":"0.000002027357961809"},{"denom":"ASSET2","index":"0.000003927132189815"},{"denom":"ASSET3","index":"0.000001148836178358"},{"denom":"ASSET4","index":"0.000010811993222188"},{"denom":"ASSET5","index":"0.000000891338414244"},{"denom":"ASSET6","index":"0.000003628854236813"},{"denom":"ASSET7","index":"0.000005557757171166"},{"denom":"ASSET8","index":"0.000007252465306483"},{"denom":"ASSET9","index":"0.000003132501080646"}],"last_reward_claim_height":"75"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET0","shares":"523767994.847630307395394725","reward_history":[{"denom":"ASSET0","index":"0.000003103831608428"},{"denom":"ASSET1","index":"0.000026343132935309"},{"denom":"ASSET10","index":"0.000021085436521682"},{"denom":"ASSET11","index":"0.000026194005406126"},{"denom":"ASSET12","index":"0.000025005394550642"},{"denom":"ASSET13","index":"0.000008229918727938"},{"denom":"ASSET14","index":"0.000024032248358707"},{"denom":"ASSET15","index":"0.000018981699828973"},{"denom":"ASSET16","index":"0.000011682673521897"},{"denom":"ASSET17","index":"0.000009189132473525"},{"denom":"ASSET18","index":"0.000003786361913516"},{"denom":"ASSET2","index":"0.000007982150766688"},{"denom":"ASSET3","index":"0.000002214601198569"},{"denom":"ASSET4","index":"0.000021356131094847"},{"denom":"ASSET5","index":"0.000001725369734459"},{"denom":"ASSET6","index":"0.000006962131899100"},{"denom":"ASSET7","index":"0.000010942547729288"},{"denom":"ASSET8","index":"0.000014960973970884"},{"denom":"ASSET9","index":"0.000006348281537724"}],"last_reward_claim_height":"125"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET11","shares":"155956187.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001536288093705"},{"denom":"ASSET1","index":"0.000012808796131863"},{"denom":"ASSET10","index":"0.000008924322337818"},{"denom":"ASSET11","index":"0.000012391382492026"},{"denom":"ASSET12","index":"0.000011158327625467"},{"denom":"ASSET13","index":"0.000003840018305497"},{"denom":"ASSET14","index":"0.000011575273312793"},{"denom":"ASSET15","index":"0.000008276208110044"},{"denom":"ASSET16","index":"0.000005770322413488"},{"denom":"ASSET17","index":"0.000004097860139074"},{"denom":"ASSET18","index":"0.000001951829923499"},{"denom":"ASSET2","index":"0.000003781056289108"},{"denom":"ASSET3","index":"0.000001105771783560"},{"denom":"ASSET4","index":"0.000010409603607822"},{"denom":"ASSET5","index":"0.000000858224905226"},{"denom":"ASSET6","index":"0.000003494201399847"},{"denom":"ASSET7","index":"0.000005351036963607"},{"denom":"ASSET8","index":"0.000006982787369562"},{"denom":"ASSET9","index":"0.000003015953933577"}],"last_reward_claim_height":"104"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET10","shares":"147677384.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001156201861882"},{"denom":"ASSET1","index":"0.000009641528249827"},{"denom":"ASSET10","index":"0.000006717693720376"},{"denom":"ASSET11","index":"0.000009327193051790"},{"denom":"ASSET12","index":"0.000008399128436016"},{"denom":"ASSET13","index":"0.000002890504654704"},{"denom":"ASSET14","index":"0.000008712888981039"},{"denom":"ASSET15","index":"0.000006229813312455"},{"denom":"ASSET16","index":"0.000004343227471224"},{"denom":"ASSET17","index":"0.000003084737373052"},{"denom":"ASSET18","index":"0.000001469387753892"},{"denom":"ASSET2","index":"0.000002846256372714"},{"denom":"ASSET3","index":"0.000000832672215639"},{"denom":"ASSET4","index":"0.000007835393830396"},{"denom":"ASSET5","index":"0.000000645909986459"},{"denom":"ASSET6","index":"0.000002630186839877"},{"denom":"ASSET7","index":"0.000004027742967162"},{"denom":"ASSET8","index":"0.000005256351108664"},{"denom":"ASSET9","index":"0.000002269879400812"}],"last_reward_claim_height":"71"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET16","shares":"377233615.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002648545180722"},{"denom":"ASSET1","index":"0.000022528915692996"},{"denom":"ASSET10","index":"0.000018297756458480"},{"denom":"ASSET11","index":"0.000022469822082599"},{"denom":"ASSET12","index":"0.000021584227648624"},{"denom":"ASSET13","index":"0.000007070243338634"},{"denom":"ASSET14","index":"0.000020574684608302"},{"denom":"ASSET15","index":"0.000016423497937791"},{"denom":"ASSET16","index":"0.000009972839292196"},{"denom":"ASSET17","index":"0.000007932645550822"},{"denom":"ASSET18","index":"0.000003216131666673"},{"denom":"ASSET2","index":"0.000006846442901912"},{"denom":"ASSET3","index":"0.000001888119307859"},{"denom":"ASSET4","index":"0.000018258669735553"},{"denom":"ASSET5","index":"0.000001471345302008"},{"denom":"ASSET6","index":"0.000005932348598922"},{"denom":"ASSET7","index":"0.000009352074075404"},{"denom":"ASSET8","index":"0.000012853047191550"},{"denom":"ASSET9","index":"0.000005442948627063"}],"last_reward_claim_height":"139"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET3","shares":"495467649.974612889987681038","reward_history":[{"denom":"ASSET0","index":"0.000003133427860009"},{"denom":"ASSET1","index":"0.000026571363581284"},{"denom":"ASSET10","index":"0.000021118003104150"},{"denom":"ASSET11","index":"0.000026381510155653"},{"denom":"ASSET12","index":"0.000025108485590780"},{"denom":"ASSET13","index":"0.000008282355352591"},{"denom":"ASSET14","index":"0.000024227637307493"},{"denom":"ASSET15","index":"0.000019037535386694"},{"denom":"ASSET16","index":"0.000011793447009555"},{"denom":"ASSET17","index":"0.000009226841180516"},{"denom":"ASSET18","index":"0.000003831770888939"},{"denom":"ASSET2","index":"0.000008040278303534"},{"denom":"ASSET3","index":"0.000002236402387063"},{"denom":"ASSET4","index":"0.000021543810534784"},{"denom":"ASSET5","index":"0.000001742508705183"},{"denom":"ASSET6","index":"0.000007033989161296"},{"denom":"ASSET7","index":"0.000011040340871930"},{"denom":"ASSET8","index":"0.000015056795520064"},{"denom":"ASSET9","index":"0.000006395464292965"}],"last_reward_claim_height":"134"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET11","shares":"124409143.999999998382681128","reward_history":[],"last_reward_claim_height":"47"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET1","shares":"107183829.288859736618668100","reward_history":[{"denom":"ASSET0","index":"0.000001556422065682"},{"denom":"ASSET1","index":"0.000012975233747354"},{"denom":"ASSET10","index":"0.000009039925804131"},{"denom":"ASSET11","index":"0.000012551842294036"},{"denom":"ASSET12","index":"0.000011303196313064"},{"denom":"ASSET13","index":"0.000003889859143149"},{"denom":"ASSET14","index":"0.000011725391745328"},{"denom":"ASSET15","index":"0.000008383310245172"},{"denom":"ASSET16","index":"0.000005844954893688"},{"denom":"ASSET17","index":"0.000004150990406731"},{"denom":"ASSET18","index":"0.000001977421476890"},{"denom":"ASSET2","index":"0.000003830058090421"},{"denom":"ASSET3","index":"0.000001120273054448"},{"denom":"ASSET4","index":"0.000010544520290781"},{"denom":"ASSET5","index":"0.000000869507306673"},{"denom":"ASSET6","index":"0.000003539424974160"},{"denom":"ASSET7","index":"0.000005420766093000"},{"denom":"ASSET8","index":"0.000007073268516732"},{"denom":"ASSET9","index":"0.000003055036447059"}],"last_reward_claim_height":"106"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET4","shares":"426343757.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003102345998156"},{"denom":"ASSET1","index":"0.000026324295521459"},{"denom":"ASSET10","index":"0.000021034709957123"},{"denom":"ASSET11","index":"0.000026165624152899"},{"denom":"ASSET12","index":"0.000024960753498443"},{"denom":"ASSET13","index":"0.000008219480216908"},{"denom":"ASSET14","index":"0.000024012126304297"},{"denom":"ASSET15","index":"0.000018942125813395"},{"denom":"ASSET16","index":"0.000011676379885795"},{"denom":"ASSET17","index":"0.000009172744202097"},{"denom":"ASSET18","index":"0.000003786686743681"},{"denom":"ASSET2","index":"0.000007973892542195"},{"denom":"ASSET3","index":"0.000002213622154517"},{"denom":"ASSET4","index":"0.000021341514997764"},{"denom":"ASSET5","index":"0.000001724677267981"},{"denom":"ASSET6","index":"0.000006959760131783"},{"denom":"ASSET7","index":"0.000010935767858794"},{"denom":"ASSET8","index":"0.000014942141973689"},{"denom":"ASSET9","index":"0.000006341977499472"}],"last_reward_claim_height":"180"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET3","shares":"472983864.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004740403563813"},{"denom":"ASSET1","index":"0.000038787543075749"},{"denom":"ASSET10","index":"0.000033573140721733"},{"denom":"ASSET11","index":"0.000040302495274603"},{"denom":"ASSET12","index":"0.000038352330073381"},{"denom":"ASSET13","index":"0.000013000611245324"},{"denom":"ASSET14","index":"0.000037188066303586"},{"denom":"ASSET15","index":"0.000030142616165685"},{"denom":"ASSET16","index":"0.000017212937490843"},{"denom":"ASSET17","index":"0.000013931077457526"},{"denom":"ASSET18","index":"0.000005793021452149"},{"denom":"ASSET2","index":"0.000011706190679885"},{"denom":"ASSET3","index":"0.000003366692331764"},{"denom":"ASSET4","index":"0.000031796327407459"},{"denom":"ASSET5","index":"0.000002643541838962"},{"denom":"ASSET6","index":"0.000010790963815934"},{"denom":"ASSET7","index":"0.000016665147437831"},{"denom":"ASSET8","index":"0.000023987873929249"},{"denom":"ASSET9","index":"0.000009622228618809"}],"last_reward_claim_height":"185"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET4","shares":"43599016.699280576574793873","reward_history":[{"denom":"ASSET0","index":"0.000003144114236048"},{"denom":"ASSET1","index":"0.000026672683120621"},{"denom":"ASSET10","index":"0.000021269722635007"},{"denom":"ASSET11","index":"0.000026500587720899"},{"denom":"ASSET12","index":"0.000025258297912053"},{"denom":"ASSET13","index":"0.000008323039503604"},{"denom":"ASSET14","index":"0.000024326015412045"},{"denom":"ASSET15","index":"0.000019162234595686"},{"denom":"ASSET16","index":"0.000011833945147558"},{"denom":"ASSET17","index":"0.000009281867675434"},{"denom":"ASSET18","index":"0.000003840349431676"},{"denom":"ASSET2","index":"0.000008076055447193"},{"denom":"ASSET3","index":"0.000002244145529651"},{"denom":"ASSET4","index":"0.000021624555086447"},{"denom":"ASSET5","index":"0.000001748086313596"},{"denom":"ASSET6","index":"0.000007055400333314"},{"denom":"ASSET7","index":"0.000011081362186058"},{"denom":"ASSET8","index":"0.000015130336137492"},{"denom":"ASSET9","index":"0.000006423586371910"}],"last_reward_claim_height":"170"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET15","shares":"2819807.195733174379141016","reward_history":[{"denom":"ASSET0","index":"0.000003144114236048"},{"denom":"ASSET1","index":"0.000026672683120621"},{"denom":"ASSET10","index":"0.000021269722635007"},{"denom":"ASSET11","index":"0.000026500587720899"},{"denom":"ASSET12","index":"0.000025258297912053"},{"denom":"ASSET13","index":"0.000008323039503604"},{"denom":"ASSET14","index":"0.000024326015412045"},{"denom":"ASSET15","index":"0.000019162234595686"},{"denom":"ASSET16","index":"0.000011833945147558"},{"denom":"ASSET17","index":"0.000009281867675434"},{"denom":"ASSET18","index":"0.000003840349431676"},{"denom":"ASSET2","index":"0.000008076055447193"},{"denom":"ASSET3","index":"0.000002244145529651"},{"denom":"ASSET4","index":"0.000021624555086447"},{"denom":"ASSET5","index":"0.000001748086313596"},{"denom":"ASSET6","index":"0.000007055400333314"},{"denom":"ASSET7","index":"0.000011081362186058"},{"denom":"ASSET8","index":"0.000015130336137492"},{"denom":"ASSET9","index":"0.000006423586371910"}],"last_reward_claim_height":"135"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET4","shares":"821513665.429731572622880800","reward_history":[{"denom":"ASSET0","index":"0.000002920257070141"},{"denom":"ASSET1","index":"0.000024811653868653"},{"denom":"ASSET10","index":"0.000020012294768332"},{"denom":"ASSET11","index":"0.000024710629923001"},{"denom":"ASSET12","index":"0.000023666550441425"},{"denom":"ASSET13","index":"0.000007769918885884"},{"denom":"ASSET14","index":"0.000022647790193256"},{"denom":"ASSET15","index":"0.000017987461600930"},{"denom":"ASSET16","index":"0.000010993196459757"},{"denom":"ASSET17","index":"0.000008697266331114"},{"denom":"ASSET18","index":"0.000003553540715950"},{"denom":"ASSET2","index":"0.000007529733395993"},{"denom":"ASSET3","index":"0.000002082581454906"},{"denom":"ASSET4","index":"0.000020111524804667"},{"denom":"ASSET5","index":"0.000001623122955496"},{"denom":"ASSET6","index":"0.000006544727800067"},{"denom":"ASSET7","index":"0.000010303065547743"},{"denom":"ASSET8","index":"0.000014124873274804"},{"denom":"ASSET9","index":"0.000005987532811110"}],"last_reward_claim_height":"132"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET5","shares":"15445294.329172415103653382","reward_history":[{"denom":"ASSET0","index":"0.000001356454583190"},{"denom":"ASSET1","index":"0.000011307707773056"},{"denom":"ASSET10","index":"0.000007878355411964"},{"denom":"ASSET11","index":"0.000010938987301217"},{"denom":"ASSET12","index":"0.000009850463994830"},{"denom":"ASSET13","index":"0.000003389876593037"},{"denom":"ASSET14","index":"0.000010218764511690"},{"denom":"ASSET15","index":"0.000007305956775156"},{"denom":"ASSET16","index":"0.000005094053899100"},{"denom":"ASSET17","index":"0.000003617492191826"},{"denom":"ASSET18","index":"0.000001723075280133"},{"denom":"ASSET2","index":"0.000003337802175602"},{"denom":"ASSET3","index":"0.000000976395326909"},{"denom":"ASSET4","index":"0.000009189454857387"},{"denom":"ASSET5","index":"0.000000758018737665"},{"denom":"ASSET6","index":"0.000003084569323074"},{"denom":"ASSET7","index":"0.000004724073562323"},{"denom":"ASSET8","index":"0.000006164519141376"},{"denom":"ASSET9","index":"0.000002662514568862"}],"last_reward_claim_height":"79"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET14","shares":"630128837.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001356454583190"},{"denom":"ASSET1","index":"0.000011307707773056"},{"denom":"ASSET10","index":"0.000007878355411964"},{"denom":"ASSET11","index":"0.000010938987301217"},{"denom":"ASSET12","index":"0.000009850463994830"},{"denom":"ASSET13","index":"0.000003389876593037"},{"denom":"ASSET14","index":"0.000010218764511690"},{"denom":"ASSET15","index":"0.000007305956775156"},{"denom":"ASSET16","index":"0.000005094053899100"},{"denom":"ASSET17","index":"0.000003617492191826"},{"denom":"ASSET18","index":"0.000001723075280133"},{"denom":"ASSET2","index":"0.000003337802175602"},{"denom":"ASSET3","index":"0.000000976395326909"},{"denom":"ASSET4","index":"0.000009189454857387"},{"denom":"ASSET5","index":"0.000000758018737665"},{"denom":"ASSET6","index":"0.000003084569323074"},{"denom":"ASSET7","index":"0.000004724073562323"},{"denom":"ASSET8","index":"0.000006164519141376"},{"denom":"ASSET9","index":"0.000002662514568862"}],"last_reward_claim_height":"112"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET4","shares":"115239097.000000000000000000","reward_history":[],"last_reward_claim_height":"14"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET8","shares":"736044071.000000000000000000","reward_history":[],"last_reward_claim_height":"27"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET9","shares":"11872792.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003079719434352"},{"denom":"ASSET1","index":"0.000026105925494605"},{"denom":"ASSET10","index":"0.000020711970439773"},{"denom":"ASSET11","index":"0.000025910008103106"},{"denom":"ASSET12","index":"0.000024641613628664"},{"denom":"ASSET13","index":"0.000008133110770201"},{"denom":"ASSET14","index":"0.000023800542954419"},{"denom":"ASSET15","index":"0.000018678884312278"},{"denom":"ASSET16","index":"0.000011589749383737"},{"denom":"ASSET17","index":"0.000009055208366452"},{"denom":"ASSET18","index":"0.000003767697278786"},{"denom":"ASSET2","index":"0.000007896757003962"},{"denom":"ASSET3","index":"0.000002198611212202"},{"denom":"ASSET4","index":"0.000021166859181475"},{"denom":"ASSET5","index":"0.000001712166144109"},{"denom":"ASSET6","index":"0.000006913910929446"},{"denom":"ASSET7","index":"0.000010848237821893"},{"denom":"ASSET8","index":"0.000014785764472138"},{"denom":"ASSET9","index":"0.000006281127943464"}],"last_reward_claim_height":"147"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET13","shares":"1025357664.011533143255872472","reward_history":[{"denom":"ASSET0","index":"0.000004596842351159"},{"denom":"ASSET1","index":"0.000037621247133778"},{"denom":"ASSET10","index":"0.000032406384323250"},{"denom":"ASSET11","index":"0.000039028902085371"},{"denom":"ASSET12","index":"0.000037087492375849"},{"denom":"ASSET13","index":"0.000012579191861147"},{"denom":"ASSET14","index":"0.000036026040179075"},{"denom":"ASSET15","index":"0.000029115781615792"},{"denom":"ASSET16","index":"0.000016702394260040"},{"denom":"ASSET17","index":"0.000013474193368563"},{"denom":"ASSET18","index":"0.000005623650335033"},{"denom":"ASSET2","index":"0.000011347250373690"},{"denom":"ASSET3","index":"0.000003265680996349"},{"denom":"ASSET4","index":"0.000030835001736023"},{"denom":"ASSET5","index":"0.000002563241391537"},{"denom":"ASSET6","index":"0.000010464530798872"},{"denom":"ASSET7","index":"0.000016155716479824"},{"denom":"ASSET8","index":"0.000023204906360357"},{"denom":"ASSET9","index":"0.000009321567168813"}],"last_reward_claim_height":"189"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET1","shares":"674227501.011724929105031764","reward_history":[{"denom":"ASSET0","index":"0.000001520990142264"},{"denom":"ASSET1","index":"0.000012680102108631"},{"denom":"ASSET10","index":"0.000008834326429376"},{"denom":"ASSET11","index":"0.000012266893306329"},{"denom":"ASSET12","index":"0.000011046354389007"},{"denom":"ASSET13","index":"0.000003801591675587"},{"denom":"ASSET14","index":"0.000011458856247250"},{"denom":"ASSET15","index":"0.000008193128168148"},{"denom":"ASSET16","index":"0.000005712107994187"},{"denom":"ASSET17","index":"0.000004056798480773"},{"denom":"ASSET18","index":"0.000001932431584420"},{"denom":"ASSET2","index":"0.000003743268790745"},{"denom":"ASSET3","index":"0.000001095056346905"},{"denom":"ASSET4","index":"0.000010304770071444"},{"denom":"ASSET5","index":"0.000000849746758541"},{"denom":"ASSET6","index":"0.000003459077279153"},{"denom":"ASSET7","index":"0.000005297485303768"},{"denom":"ASSET8","index":"0.000006912499005837"},{"denom":"ASSET9","index":"0.000002985778231863"}],"last_reward_claim_height":"75"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET3","shares":"161077222.528208455532666704","reward_history":[{"denom":"ASSET0","index":"0.000003063170165442"},{"denom":"ASSET1","index":"0.000025996358951928"},{"denom":"ASSET10","index":"0.000020799618544072"},{"denom":"ASSET11","index":"0.000025846936295403"},{"denom":"ASSET12","index":"0.000024670295822131"},{"denom":"ASSET13","index":"0.000008120644896033"},{"denom":"ASSET14","index":"0.000023715222729701"},{"denom":"ASSET15","index":"0.000018725986369791"},{"denom":"ASSET16","index":"0.000011529047312284"},{"denom":"ASSET17","index":"0.000009065966880203"},{"denom":"ASSET18","index":"0.000003737409049681"},{"denom":"ASSET2","index":"0.000007876841198043"},{"denom":"ASSET3","index":"0.000002185992003768"},{"denom":"ASSET4","index":"0.000021074917159843"},{"denom":"ASSET5","index":"0.000001702800306431"},{"denom":"ASSET6","index":"0.000006871093729972"},{"denom":"ASSET7","index":"0.000010798830402478"},{"denom":"ASSET8","index":"0.000014762015379742"},{"denom":"ASSET9","index":"0.000006264517424621"}],"last_reward_claim_height":"151"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET5","shares":"514159279.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003063170165442"},{"denom":"ASSET1","index":"0.000025996358951928"},{"denom":"ASSET10","index":"0.000020799618544072"},{"denom":"ASSET11","index":"0.000025846936295403"},{"denom":"ASSET12","index":"0.000024670295822131"},{"denom":"ASSET13","index":"0.000008120644896033"},{"denom":"ASSET14","index":"0.000023715222729701"},{"denom":"ASSET15","index":"0.000018725986369791"},{"denom":"ASSET16","index":"0.000011529047312284"},{"denom":"ASSET17","index":"0.000009065966880203"},{"denom":"ASSET18","index":"0.000003737409049681"},{"denom":"ASSET2","index":"0.000007876841198043"},{"denom":"ASSET3","index":"0.000002185992003768"},{"denom":"ASSET4","index":"0.000021074917159843"},{"denom":"ASSET5","index":"0.000001702800306431"},{"denom":"ASSET6","index":"0.000006871093729972"},{"denom":"ASSET7","index":"0.000010798830402478"},{"denom":"ASSET8","index":"0.000014762015379742"},{"denom":"ASSET9","index":"0.000006264517424621"}],"last_reward_claim_height":"182"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET10","shares":"593216340.435044822592724348","reward_history":[{"denom":"ASSET0","index":"0.000003063170165442"},{"denom":"ASSET1","index":"0.000025996358951928"},{"denom":"ASSET10","index":"0.000020799618544072"},{"denom":"ASSET11","index":"0.000025846936295403"},{"denom":"ASSET12","index":"0.000024670295822131"},{"denom":"ASSET13","index":"0.000008120644896033"},{"denom":"ASSET14","index":"0.000023715222729701"},{"denom":"ASSET15","index":"0.000018725986369791"},{"denom":"ASSET16","index":"0.000011529047312284"},{"denom":"ASSET17","index":"0.000009065966880203"},{"denom":"ASSET18","index":"0.000003737409049681"},{"denom":"ASSET2","index":"0.000007876841198043"},{"denom":"ASSET3","index":"0.000002185992003768"},{"denom":"ASSET4","index":"0.000021074917159843"},{"denom":"ASSET5","index":"0.000001702800306431"},{"denom":"ASSET6","index":"0.000006871093729972"},{"denom":"ASSET7","index":"0.000010798830402478"},{"denom":"ASSET8","index":"0.000014762015379742"},{"denom":"ASSET9","index":"0.000006264517424621"}],"last_reward_claim_height":"166"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET12","shares":"153483066.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003063170165442"},{"denom":"ASSET1","index":"0.000025996358951928"},{"denom":"ASSET10","index":"0.000020799618544072"},{"denom":"ASSET11","index":"0.000025846936295403"},{"denom":"ASSET12","index":"0.000024670295822131"},{"denom":"ASSET13","index":"0.000008120644896033"},{"denom":"ASSET14","index":"0.000023715222729701"},{"denom":"ASSET15","index":"0.000018725986369791"},{"denom":"ASSET16","index":"0.000011529047312284"},{"denom":"ASSET17","index":"0.000009065966880203"},{"denom":"ASSET18","index":"0.000003737409049681"},{"denom":"ASSET2","index":"0.000007876841198043"},{"denom":"ASSET3","index":"0.000002185992003768"},{"denom":"ASSET4","index":"0.000021074917159843"},{"denom":"ASSET5","index":"0.000001702800306431"},{"denom":"ASSET6","index":"0.000006871093729972"},{"denom":"ASSET7","index":"0.000010798830402478"},{"denom":"ASSET8","index":"0.000014762015379742"},{"denom":"ASSET9","index":"0.000006264517424621"}],"last_reward_claim_height":"147"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET13","shares":"72597228.253099013421167014","reward_history":[{"denom":"ASSET0","index":"0.000004647136802313"},{"denom":"ASSET1","index":"0.000038017659661295"},{"denom":"ASSET10","index":"0.000033007938061672"},{"denom":"ASSET11","index":"0.000039542203518497"},{"denom":"ASSET12","index":"0.000037663033677183"},{"denom":"ASSET13","index":"0.000012761955703194"},{"denom":"ASSET14","index":"0.000036477735596469"},{"denom":"ASSET15","index":"0.000029621430734014"},{"denom":"ASSET16","index":"0.000016866492348924"},{"denom":"ASSET17","index":"0.000013679201469281"},{"denom":"ASSET18","index":"0.000005674980055413"},{"denom":"ASSET2","index":"0.000011479019978141"},{"denom":"ASSET3","index":"0.000003299993945721"},{"denom":"ASSET4","index":"0.000031168005602839"},{"denom":"ASSET5","index":"0.000002591256629781"},{"denom":"ASSET6","index":"0.000010577778432935"},{"denom":"ASSET7","index":"0.000016339516062244"},{"denom":"ASSET8","index":"0.000023551119471754"},{"denom":"ASSET9","index":"0.000009438533878947"}],"last_reward_claim_height":"193"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET14","shares":"840205994.321141758059084204","reward_history":[{"denom":"ASSET0","index":"0.000001520990142264"},{"denom":"ASSET1","index":"0.000012680102108631"},{"denom":"ASSET10","index":"0.000008834326429376"},{"denom":"ASSET11","index":"0.000012266893306329"},{"denom":"ASSET12","index":"0.000011046354389007"},{"denom":"ASSET13","index":"0.000003801591675587"},{"denom":"ASSET14","index":"0.000011458856247250"},{"denom":"ASSET15","index":"0.000008193128168148"},{"denom":"ASSET16","index":"0.000005712107994187"},{"denom":"ASSET17","index":"0.000004056798480773"},{"denom":"ASSET18","index":"0.000001932431584420"},{"denom":"ASSET2","index":"0.000003743268790745"},{"denom":"ASSET3","index":"0.000001095056346905"},{"denom":"ASSET4","index":"0.000010304770071444"},{"denom":"ASSET5","index":"0.000000849746758541"},{"denom":"ASSET6","index":"0.000003459077279153"},{"denom":"ASSET7","index":"0.000005297485303768"},{"denom":"ASSET8","index":"0.000006912499005837"},{"denom":"ASSET9","index":"0.000002985778231863"}],"last_reward_claim_height":"116"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET15","shares":"52538222.999999977908456568","reward_history":[{"denom":"ASSET0","index":"0.000003063170165442"},{"denom":"ASSET1","index":"0.000025996358951928"},{"denom":"ASSET10","index":"0.000020799618544072"},{"denom":"ASSET11","index":"0.000025846936295403"},{"denom":"ASSET12","index":"0.000024670295822131"},{"denom":"ASSET13","index":"0.000008120644896033"},{"denom":"ASSET14","index":"0.000023715222729701"},{"denom":"ASSET15","index":"0.000018725986369791"},{"denom":"ASSET16","index":"0.000011529047312284"},{"denom":"ASSET17","index":"0.000009065966880203"},{"denom":"ASSET18","index":"0.000003737409049681"},{"denom":"ASSET2","index":"0.000007876841198043"},{"denom":"ASSET3","index":"0.000002185992003768"},{"denom":"ASSET4","index":"0.000021074917159843"},{"denom":"ASSET5","index":"0.000001702800306431"},{"denom":"ASSET6","index":"0.000006871093729972"},{"denom":"ASSET7","index":"0.000010798830402478"},{"denom":"ASSET8","index":"0.000014762015379742"},{"denom":"ASSET9","index":"0.000006264517424621"}],"last_reward_claim_height":"145"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET15","shares":"3843259.000000000000000000","reward_history":[],"last_reward_claim_height":"8"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET11","shares":"38111800.000000000000000000","reward_history":[],"last_reward_claim_height":"25"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET16","shares":"540513553.000000000000000000","reward_history":[],"last_reward_claim_height":"20"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET8","shares":"988434567.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002875427361068"},{"denom":"ASSET1","index":"0.000024372739255487"},{"denom":"ASSET10","index":"0.000019284464921318"},{"denom":"ASSET11","index":"0.000024174413552556"},{"denom":"ASSET12","index":"0.000022964657814992"},{"denom":"ASSET13","index":"0.000007586106071195"},{"denom":"ASSET14","index":"0.000022214775035212"},{"denom":"ASSET15","index":"0.000017399266119679"},{"denom":"ASSET16","index":"0.000010822432031544"},{"denom":"ASSET17","index":"0.000008437405253940"},{"denom":"ASSET18","index":"0.000003520101477575"},{"denom":"ASSET2","index":"0.000007366931162610"},{"denom":"ASSET3","index":"0.000002051556015935"},{"denom":"ASSET4","index":"0.000019761188522524"},{"denom":"ASSET5","index":"0.000001598363223465"},{"denom":"ASSET6","index":"0.000006458982880806"},{"denom":"ASSET7","index":"0.000010127316932433"},{"denom":"ASSET8","index":"0.000013792105044122"},{"denom":"ASSET9","index":"0.000005859963066840"}],"last_reward_claim_height":"166"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET12","shares":"29173080.021010385497975392","reward_history":[{"denom":"ASSET0","index":"0.000002875427361068"},{"denom":"ASSET1","index":"0.000024372739255487"},{"denom":"ASSET10","index":"0.000019284464921318"},{"denom":"ASSET11","index":"0.000024174413552556"},{"denom":"ASSET12","index":"0.000022964657814992"},{"denom":"ASSET13","index":"0.000007586106071195"},{"denom":"ASSET14","index":"0.000022214775035212"},{"denom":"ASSET15","index":"0.000017399266119679"},{"denom":"ASSET16","index":"0.000010822432031544"},{"denom":"ASSET17","index":"0.000008437405253940"},{"denom":"ASSET18","index":"0.000003520101477575"},{"denom":"ASSET2","index":"0.000007366931162610"},{"denom":"ASSET3","index":"0.000002051556015935"},{"denom":"ASSET4","index":"0.000019761188522524"},{"denom":"ASSET5","index":"0.000001598363223465"},{"denom":"ASSET6","index":"0.000006458982880806"},{"denom":"ASSET7","index":"0.000010127316932433"},{"denom":"ASSET8","index":"0.000013792105044122"},{"denom":"ASSET9","index":"0.000005859963066840"}],"last_reward_claim_height":"173"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET4","shares":"739722509.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004542168220425"},{"denom":"ASSET1","index":"0.000037175229845512"},{"denom":"ASSET10","index":"0.000032304674241554"},{"denom":"ASSET11","index":"0.000038672632069936"},{"denom":"ASSET12","index":"0.000036851023395808"},{"denom":"ASSET13","index":"0.000012481885513000"},{"denom":"ASSET14","index":"0.000035670802057849"},{"denom":"ASSET15","index":"0.000028984900879802"},{"denom":"ASSET16","index":"0.000016490847360466"},{"denom":"ASSET17","index":"0.000013382977851414"},{"denom":"ASSET18","index":"0.000005546749439604"},{"denom":"ASSET2","index":"0.000011227253751433"},{"denom":"ASSET3","index":"0.000003225304980636"},{"denom":"ASSET4","index":"0.000030476161145262"},{"denom":"ASSET5","index":"0.000002532159498537"},{"denom":"ASSET6","index":"0.000010340381443978"},{"denom":"ASSET7","index":"0.000015976599284168"},{"denom":"ASSET8","index":"0.000023032940664540"},{"denom":"ASSET9","index":"0.000009228940537517"}],"last_reward_claim_height":"195"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET15","shares":"924030892.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001468329025254"},{"denom":"ASSET1","index":"0.000012248466172689"},{"denom":"ASSET10","index":"0.000008533242661533"},{"denom":"ASSET11","index":"0.000011849890220686"},{"denom":"ASSET12","index":"0.000010670683647662"},{"denom":"ASSET13","index":"0.000003671855143322"},{"denom":"ASSET14","index":"0.000011069259599665"},{"denom":"ASSET15","index":"0.000007913694549611"},{"denom":"ASSET16","index":"0.000005518108516848"},{"denom":"ASSET17","index":"0.000003917609227717"},{"denom":"ASSET18","index":"0.000001866904977257"},{"denom":"ASSET2","index":"0.000003616095813249"},{"denom":"ASSET3","index":"0.000001057362111013"},{"denom":"ASSET4","index":"0.000009954072998206"},{"denom":"ASSET5","index":"0.000000819868668110"},{"denom":"ASSET6","index":"0.000003341429483630"},{"denom":"ASSET7","index":"0.000005117467404472"},{"denom":"ASSET8","index":"0.000006676663486141"},{"denom":"ASSET9","index":"0.000002882963880808"}],"last_reward_claim_height":"81"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET11","shares":"235510435.000000000000000000","reward_history":[],"last_reward_claim_height":"4"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET14","shares":"803850702.136452138221335142","reward_history":[{"denom":"ASSET0","index":"0.000002967027008461"},{"denom":"ASSET1","index":"0.000025180120058697"},{"denom":"ASSET10","index":"0.000020126919929476"},{"denom":"ASSET11","index":"0.000025029678796477"},{"denom":"ASSET12","index":"0.000023880507059092"},{"denom":"ASSET13","index":"0.000007862872062626"},{"denom":"ASSET14","index":"0.000022968832134984"},{"denom":"ASSET15","index":"0.000018123195207046"},{"denom":"ASSET16","index":"0.000011168095360491"},{"denom":"ASSET17","index":"0.000008775186029853"},{"denom":"ASSET18","index":"0.000003621217117579"},{"denom":"ASSET2","index":"0.000007627534970337"},{"denom":"ASSET3","index":"0.000002117298518473"},{"denom":"ASSET4","index":"0.000020413769751333"},{"denom":"ASSET5","index":"0.000001649183760435"},{"denom":"ASSET6","index":"0.000006656038319196"},{"denom":"ASSET7","index":"0.000010459966878994"},{"denom":"ASSET8","index":"0.000014293861494285"},{"denom":"ASSET9","index":"0.000006066597621916"}],"last_reward_claim_height":"147"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET16","shares":"80999148.324279072456929826","reward_history":[{"denom":"ASSET0","index":"0.000001484659776814"},{"denom":"ASSET1","index":"0.000012377911876883"},{"denom":"ASSET10","index":"0.000008623797972416"},{"denom":"ASSET11","index":"0.000011974339842928"},{"denom":"ASSET12","index":"0.000010782780641408"},{"denom":"ASSET13","index":"0.000003710691597017"},{"denom":"ASSET14","index":"0.000011185714112019"},{"denom":"ASSET15","index":"0.000007997367331102"},{"denom":"ASSET16","index":"0.000005575935127370"},{"denom":"ASSET17","index":"0.000003959731301514"},{"denom":"ASSET18","index":"0.000001886316120734"},{"denom":"ASSET2","index":"0.000003653859459324"},{"denom":"ASSET3","index":"0.000001068955039306"},{"denom":"ASSET4","index":"0.000010059288371675"},{"denom":"ASSET5","index":"0.000000829493784981"},{"denom":"ASSET6","index":"0.000003376084404307"},{"denom":"ASSET7","index":"0.000005171085966725"},{"denom":"ASSET8","index":"0.000006747698865199"},{"denom":"ASSET9","index":"0.000002914403105969"}],"last_reward_claim_height":"97"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET18","shares":"684946047.999999975341942272","reward_history":[{"denom":"ASSET0","index":"0.000002967027008461"},{"denom":"ASSET1","index":"0.000025180120058697"},{"denom":"ASSET10","index":"0.000020126919929476"},{"denom":"ASSET11","index":"0.000025029678796477"},{"denom":"ASSET12","index":"0.000023880507059092"},{"denom":"ASSET13","index":"0.000007862872062626"},{"denom":"ASSET14","index":"0.000022968832134984"},{"denom":"ASSET15","index":"0.000018123195207046"},{"denom":"ASSET16","index":"0.000011168095360491"},{"denom":"ASSET17","index":"0.000008775186029853"},{"denom":"ASSET18","index":"0.000003621217117579"},{"denom":"ASSET2","index":"0.000007627534970337"},{"denom":"ASSET3","index":"0.000002117298518473"},{"denom":"ASSET4","index":"0.000020413769751333"},{"denom":"ASSET5","index":"0.000001649183760435"},{"denom":"ASSET6","index":"0.000006656038319196"},{"denom":"ASSET7","index":"0.000010459966878994"},{"denom":"ASSET8","index":"0.000014293861494285"},{"denom":"ASSET9","index":"0.000006066597621916"}],"last_reward_claim_height":"177"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET1","shares":"688173484.542756460672825088","reward_history":[{"denom":"ASSET0","index":"0.000001508631993599"},{"denom":"ASSET1","index":"0.000012578103553994"},{"denom":"ASSET10","index":"0.000008763023138279"},{"denom":"ASSET11","index":"0.000012169014387632"},{"denom":"ASSET12","index":"0.000010956555546150"},{"denom":"ASSET13","index":"0.000003770654442897"},{"denom":"ASSET14","index":"0.000011367495794714"},{"denom":"ASSET15","index":"0.000008126250861227"},{"denom":"ASSET16","index":"0.000005666162616450"},{"denom":"ASSET17","index":"0.000004024252704398"},{"denom":"ASSET18","index":"0.000001915870077761"},{"denom":"ASSET2","index":"0.000003713270894674"},{"denom":"ASSET3","index":"0.000001084734169631"},{"denom":"ASSET4","index":"0.000010221675912459"},{"denom":"ASSET5","index":"0.000000842242401334"},{"denom":"ASSET6","index":"0.000003430055317962"},{"denom":"ASSET7","index":"0.000005255222367887"},{"denom":"ASSET8","index":"0.000006856408471522"},{"denom":"ASSET9","index":"0.000002961731521176"}],"last_reward_claim_height":"67"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET1","shares":"90852472.000000000000000000","reward_history":[],"last_reward_claim_height":"34"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET2","shares":"270744206.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001669758803356"},{"denom":"ASSET1","index":"0.000013919924903508"},{"denom":"ASSET10","index":"0.000009698114015232"},{"denom":"ASSET11","index":"0.000013466332119255"},{"denom":"ASSET12","index":"0.000012126099781115"},{"denom":"ASSET13","index":"0.000004173211661392"},{"denom":"ASSET14","index":"0.000012579297449702"},{"denom":"ASSET15","index":"0.000008994017898909"},{"denom":"ASSET16","index":"0.000006270880730729"},{"denom":"ASSET17","index":"0.000004453348668392"},{"denom":"ASSET18","index":"0.000002121376009280"},{"denom":"ASSET2","index":"0.000004109202923545"},{"denom":"ASSET3","index":"0.000001201941855137"},{"denom":"ASSET4","index":"0.000011312556625386"},{"denom":"ASSET5","index":"0.000000932868086778"},{"denom":"ASSET6","index":"0.000003797061547622"},{"denom":"ASSET7","index":"0.000005815312368147"},{"denom":"ASSET8","index":"0.000007588591475923"},{"denom":"ASSET9","index":"0.000003277484447193"}],"last_reward_claim_height":"84"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET5","shares":"834710388.000000000000000000","reward_history":[],"last_reward_claim_height":"36"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET0","shares":"548011077.357084534975602470","reward_history":[{"denom":"ASSET0","index":"0.000002933404194828"},{"denom":"ASSET1","index":"0.000024932632498194"},{"denom":"ASSET10","index":"0.000020157113753706"},{"denom":"ASSET11","index":"0.000024842878528839"},{"denom":"ASSET12","index":"0.000023817726072485"},{"denom":"ASSET13","index":"0.000007813243799971"},{"denom":"ASSET14","index":"0.000022761898108549"},{"denom":"ASSET15","index":"0.000018109267957138"},{"denom":"ASSET16","index":"0.000011043189892304"},{"denom":"ASSET17","index":"0.000008753164046701"},{"denom":"ASSET18","index":"0.000003567063844603"},{"denom":"ASSET2","index":"0.000007569762146700"},{"denom":"ASSET3","index":"0.000002091389836038"},{"denom":"ASSET4","index":"0.000020208488830330"},{"denom":"ASSET5","index":"0.000001630166870108"},{"denom":"ASSET6","index":"0.000006572642272968"},{"denom":"ASSET7","index":"0.000010351822041320"},{"denom":"ASSET8","index":"0.000014203644477234"},{"denom":"ASSET9","index":"0.000006019030096188"}],"last_reward_claim_height":"152"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET7","shares":"40259681.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001334597814253"},{"denom":"ASSET1","index":"0.000011126876577448"},{"denom":"ASSET10","index":"0.000007751884027943"},{"denom":"ASSET11","index":"0.000010763759508328"},{"denom":"ASSET12","index":"0.000009692944381721"},{"denom":"ASSET13","index":"0.000003335543967388"},{"denom":"ASSET14","index":"0.000010055110882597"},{"denom":"ASSET15","index":"0.000007189147627631"},{"denom":"ASSET16","index":"0.000005012346349398"},{"denom":"ASSET17","index":"0.000003559878072918"},{"denom":"ASSET18","index":"0.000001695813746885"},{"denom":"ASSET2","index":"0.000003284213282225"},{"denom":"ASSET3","index":"0.000000960549210329"},{"denom":"ASSET4","index":"0.000009042280418860"},{"denom":"ASSET5","index":"0.000000745720787237"},{"denom":"ASSET6","index":"0.000003035164402357"},{"denom":"ASSET7","index":"0.000004648278712034"},{"denom":"ASSET8","index":"0.000006065575963495"},{"denom":"ASSET9","index":"0.000002619766079830"}],"last_reward_claim_height":"70"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET8","shares":"295744414.721672257701499722","reward_history":[{"denom":"ASSET0","index":"0.000002933404194828"},{"denom":"ASSET1","index":"0.000024932632498194"},{"denom":"ASSET10","index":"0.000020157113753706"},{"denom":"ASSET11","index":"0.000024842878528839"},{"denom":"ASSET12","index":"0.000023817726072485"},{"denom":"ASSET13","index":"0.000007813243799971"},{"denom":"ASSET14","index":"0.000022761898108549"},{"denom":"ASSET15","index":"0.000018109267957138"},{"denom":"ASSET16","index":"0.000011043189892304"},{"denom":"ASSET17","index":"0.000008753164046701"},{"denom":"ASSET18","index":"0.000003567063844603"},{"denom":"ASSET2","index":"0.000007569762146700"},{"denom":"ASSET3","index":"0.000002091389836038"},{"denom":"ASSET4","index":"0.000020208488830330"},{"denom":"ASSET5","index":"0.000001630166870108"},{"denom":"ASSET6","index":"0.000006572642272968"},{"denom":"ASSET7","index":"0.000010351822041320"},{"denom":"ASSET8","index":"0.000014203644477234"},{"denom":"ASSET9","index":"0.000006019030096188"}],"last_reward_claim_height":"165"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET18","shares":"69489627.761763683996452084","reward_history":[],"last_reward_claim_height":"63"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET12","shares":"670041159.638188513665582400","reward_history":[{"denom":"ASSET0","index":"0.000003215122291080"},{"denom":"ASSET1","index":"0.000027271082473775"},{"denom":"ASSET10","index":"0.000021717714787675"},{"denom":"ASSET11","index":"0.000027088129911249"},{"denom":"ASSET12","index":"0.000025803190697535"},{"denom":"ASSET13","index":"0.000008506451165719"},{"denom":"ASSET14","index":"0.000024869823256717"},{"denom":"ASSET15","index":"0.000019571375436743"},{"denom":"ASSET16","index":"0.000012101015548893"},{"denom":"ASSET17","index":"0.000009481514658039"},{"denom":"ASSET18","index":"0.000003929002426467"},{"denom":"ASSET2","index":"0.000008255375778501"},{"denom":"ASSET3","index":"0.000002294279906946"},{"denom":"ASSET4","index":"0.000022110354928469"},{"denom":"ASSET5","index":"0.000001787716273475"},{"denom":"ASSET6","index":"0.000007215985074700"},{"denom":"ASSET7","index":"0.000011330188741735"},{"denom":"ASSET8","index":"0.000015463524362026"},{"denom":"ASSET9","index":"0.000006565858639552"}],"last_reward_claim_height":"172"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET17","shares":"455455075.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001655550281073"},{"denom":"ASSET1","index":"0.000013803766186213"},{"denom":"ASSET10","index":"0.000009616885369480"},{"denom":"ASSET11","index":"0.000013353770421464"},{"denom":"ASSET12","index":"0.000012024654915933"},{"denom":"ASSET13","index":"0.000004138458266908"},{"denom":"ASSET14","index":"0.000012474650680682"},{"denom":"ASSET15","index":"0.000008918932754767"},{"denom":"ASSET16","index":"0.000006218123294721"},{"denom":"ASSET17","index":"0.000004415635621077"},{"denom":"ASSET18","index":"0.000002103876302725"},{"denom":"ASSET2","index":"0.000004075008029207"},{"denom":"ASSET3","index":"0.000001191361699996"},{"denom":"ASSET4","index":"0.000011218168999888"},{"denom":"ASSET5","index":"0.000000925037675960"},{"denom":"ASSET6","index":"0.000003765270684639"},{"denom":"ASSET7","index":"0.000005766457786874"},{"denom":"ASSET8","index":"0.000007524697268437"},{"denom":"ASSET9","index":"0.000003250154939091"}],"last_reward_claim_height":"87"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET1","shares":"773230901.405287129079482636","reward_history":[{"denom":"ASSET0","index":"0.000001631513498845"},{"denom":"ASSET1","index":"0.000013601788709515"},{"denom":"ASSET10","index":"0.000009476711328689"},{"denom":"ASSET11","index":"0.000013158178840821"},{"denom":"ASSET12","index":"0.000011848922966954"},{"denom":"ASSET13","index":"0.000004077884841603"},{"denom":"ASSET14","index":"0.000012291633930140"},{"denom":"ASSET15","index":"0.000008788599161546"},{"denom":"ASSET16","index":"0.000006127389402135"},{"denom":"ASSET17","index":"0.000004351601569095"},{"denom":"ASSET18","index":"0.000002072876103766"},{"denom":"ASSET2","index":"0.000004014961455973"},{"denom":"ASSET3","index":"0.000001174420047516"},{"denom":"ASSET4","index":"0.000011053841044239"},{"denom":"ASSET5","index":"0.000000911490186131"},{"denom":"ASSET6","index":"0.000003710232488420"},{"denom":"ASSET7","index":"0.000005682431175178"},{"denom":"ASSET8","index":"0.000007415071543785"},{"denom":"ASSET9","index":"0.000003202800328586"}],"last_reward_claim_height":"104"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET13","shares":"265223782.177842023214643514","reward_history":[{"denom":"ASSET0","index":"0.000004745793526719"},{"denom":"ASSET1","index":"0.000038837120907884"},{"denom":"ASSET10","index":"0.000033561109505682"},{"denom":"ASSET11","index":"0.000040331758239538"},{"denom":"ASSET12","index":"0.000038362096616639"},{"denom":"ASSET13","index":"0.000013006193269554"},{"denom":"ASSET14","index":"0.000037219618636050"},{"denom":"ASSET15","index":"0.000030138700648405"},{"denom":"ASSET16","index":"0.000017237339667545"},{"denom":"ASSET17","index":"0.000013935435412403"},{"denom":"ASSET18","index":"0.000005802064373263"},{"denom":"ASSET2","index":"0.000011718369963314"},{"denom":"ASSET3","index":"0.000003370927946053"},{"denom":"ASSET4","index":"0.000031834884145314"},{"denom":"ASSET5","index":"0.000002646352292773"},{"denom":"ASSET6","index":"0.000010803831971165"},{"denom":"ASSET7","index":"0.000016683192889003"},{"denom":"ASSET8","index":"0.000023996426686690"},{"denom":"ASSET9","index":"0.000009630511936919"}],"last_reward_claim_height":"184"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET15","shares":"534161276.045373327936441696","reward_history":[{"denom":"ASSET0","index":"0.000004745793526719"},{"denom":"ASSET1","index":"0.000038837120907884"},{"denom":"ASSET10","index":"0.000033561109505682"},{"denom":"ASSET11","index":"0.000040331758239538"},{"denom":"ASSET12","index":"0.000038362096616639"},{"denom":"ASSET13","index":"0.000013006193269554"},{"denom":"ASSET14","index":"0.000037219618636050"},{"denom":"ASSET15","index":"0.000030138700648405"},{"denom":"ASSET16","index":"0.000017237339667545"},{"denom":"ASSET17","index":"0.000013935435412403"},{"denom":"ASSET18","index":"0.000005802064373263"},{"denom":"ASSET2","index":"0.000011718369963314"},{"denom":"ASSET3","index":"0.000003370927946053"},{"denom":"ASSET4","index":"0.000031834884145314"},{"denom":"ASSET5","index":"0.000002646352292773"},{"denom":"ASSET6","index":"0.000010803831971165"},{"denom":"ASSET7","index":"0.000016683192889003"},{"denom":"ASSET8","index":"0.000023996426686690"},{"denom":"ASSET9","index":"0.000009630511936919"}],"last_reward_claim_height":"187"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET18","shares":"444965271.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003159157648171"},{"denom":"ASSET1","index":"0.000026793811254639"},{"denom":"ASSET10","index":"0.000021330257270132"},{"denom":"ASSET11","index":"0.000026611245447042"},{"denom":"ASSET12","index":"0.000025345616114893"},{"denom":"ASSET13","index":"0.000008356504281369"},{"denom":"ASSET14","index":"0.000024433401122602"},{"denom":"ASSET15","index":"0.000019223209713353"},{"denom":"ASSET16","index":"0.000011890026449509"},{"denom":"ASSET17","index":"0.000009313941892173"},{"denom":"ASSET18","index":"0.000003860849124980"},{"denom":"ASSET2","index":"0.000008109777269158"},{"denom":"ASSET3","index":"0.000002255070941538"},{"denom":"ASSET4","index":"0.000021723391251034"},{"denom":"ASSET5","index":"0.000001756486235957"},{"denom":"ASSET6","index":"0.000007090574282328"},{"denom":"ASSET7","index":"0.000011132530538444"},{"denom":"ASSET8","index":"0.000015191323807650"},{"denom":"ASSET9","index":"0.000006450832118924"}],"last_reward_claim_height":"136"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET2","shares":"135556575.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003253063831874"},{"denom":"ASSET1","index":"0.000027597326034286"},{"denom":"ASSET10","index":"0.000022021617243178"},{"denom":"ASSET11","index":"0.000027423138617092"},{"denom":"ASSET12","index":"0.000026144931484859"},{"denom":"ASSET13","index":"0.000008613299773809"},{"denom":"ASSET14","index":"0.000025170855267573"},{"denom":"ASSET15","index":"0.000019836826910831"},{"denom":"ASSET16","index":"0.000012243184702458"},{"denom":"ASSET17","index":"0.000009607701845932"},{"denom":"ASSET18","index":"0.000003972764374377"},{"denom":"ASSET2","index":"0.000008357484440725"},{"denom":"ASSET3","index":"0.000002321502734814"},{"denom":"ASSET4","index":"0.000022373906168402"},{"denom":"ASSET5","index":"0.000001808481766797"},{"denom":"ASSET6","index":"0.000007298802623853"},{"denom":"ASSET7","index":"0.000011465220726545"},{"denom":"ASSET8","index":"0.000015658035812384"},{"denom":"ASSET9","index":"0.000006646717011605"}],"last_reward_claim_height":"170"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET4","shares":"419461092.677385279314248608","reward_history":[{"denom":"ASSET0","index":"0.000001649724724935"},{"denom":"ASSET1","index":"0.000013753740147655"},{"denom":"ASSET10","index":"0.000009582563441278"},{"denom":"ASSET11","index":"0.000013305204895691"},{"denom":"ASSET12","index":"0.000011981321923304"},{"denom":"ASSET13","index":"0.000004123306127916"},{"denom":"ASSET14","index":"0.000012429052627730"},{"denom":"ASSET15","index":"0.000008886629821639"},{"denom":"ASSET16","index":"0.000006195820583626"},{"denom":"ASSET17","index":"0.000004400070480698"},{"denom":"ASSET18","index":"0.000002096248608056"},{"denom":"ASSET2","index":"0.000004060149146250"},{"denom":"ASSET3","index":"0.000001187512164840"},{"denom":"ASSET4","index":"0.000011177176659918"},{"denom":"ASSET5","index":"0.000000921609203810"},{"denom":"ASSET6","index":"0.000003751605165751"},{"denom":"ASSET7","index":"0.000005746078510357"},{"denom":"ASSET8","index":"0.000007497578498742"},{"denom":"ASSET9","index":"0.000003238303837047"}],"last_reward_claim_height":"81"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET6","shares":"303943967.727687666203686570","reward_history":[{"denom":"ASSET0","index":"0.000003253063831874"},{"denom":"ASSET1","index":"0.000027597326034286"},{"denom":"ASSET10","index":"0.000022021617243178"},{"denom":"ASSET11","index":"0.000027423138617092"},{"denom":"ASSET12","index":"0.000026144931484859"},{"denom":"ASSET13","index":"0.000008613299773809"},{"denom":"ASSET14","index":"0.000025170855267573"},{"denom":"ASSET15","index":"0.000019836826910831"},{"denom":"ASSET16","index":"0.000012243184702458"},{"denom":"ASSET17","index":"0.000009607701845932"},{"denom":"ASSET18","index":"0.000003972764374377"},{"denom":"ASSET2","index":"0.000008357484440725"},{"denom":"ASSET3","index":"0.000002321502734814"},{"denom":"ASSET4","index":"0.000022373906168402"},{"denom":"ASSET5","index":"0.000001808481766797"},{"denom":"ASSET6","index":"0.000007298802623853"},{"denom":"ASSET7","index":"0.000011465220726545"},{"denom":"ASSET8","index":"0.000015658035812384"},{"denom":"ASSET9","index":"0.000006646717011605"}],"last_reward_claim_height":"151"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET15","shares":"654169293.169098417000548115","reward_history":[{"denom":"ASSET0","index":"0.000003253063831874"},{"denom":"ASSET1","index":"0.000027597326034286"},{"denom":"ASSET10","index":"0.000022021617243178"},{"denom":"ASSET11","index":"0.000027423138617092"},{"denom":"ASSET12","index":"0.000026144931484859"},{"denom":"ASSET13","index":"0.000008613299773809"},{"denom":"ASSET14","index":"0.000025170855267573"},{"denom":"ASSET15","index":"0.000019836826910831"},{"denom":"ASSET16","index":"0.000012243184702458"},{"denom":"ASSET17","index":"0.000009607701845932"},{"denom":"ASSET18","index":"0.000003972764374377"},{"denom":"ASSET2","index":"0.000008357484440725"},{"denom":"ASSET3","index":"0.000002321502734814"},{"denom":"ASSET4","index":"0.000022373906168402"},{"denom":"ASSET5","index":"0.000001808481766797"},{"denom":"ASSET6","index":"0.000007298802623853"},{"denom":"ASSET7","index":"0.000011465220726545"},{"denom":"ASSET8","index":"0.000015658035812384"},{"denom":"ASSET9","index":"0.000006646717011605"}],"last_reward_claim_height":"132"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET13","shares":"441499951.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000005103265091642"},{"denom":"ASSET1","index":"0.000041786439536935"},{"denom":"ASSET10","index":"0.000036197265493130"},{"denom":"ASSET11","index":"0.000043412428791565"},{"denom":"ASSET12","index":"0.000041343531000594"},{"denom":"ASSET13","index":"0.000014002193574026"},{"denom":"ASSET14","index":"0.000040046434504736"},{"denom":"ASSET15","index":"0.000032488195777718"},{"denom":"ASSET16","index":"0.000018539048370230"},{"denom":"ASSET17","index":"0.000015019703341469"},{"denom":"ASSET18","index":"0.000006233739153526"},{"denom":"ASSET2","index":"0.000012616239659622"},{"denom":"ASSET3","index":"0.000003624393703951"},{"denom":"ASSET4","index":"0.000034249425723540"},{"denom":"ASSET5","index":"0.000002845180080004"},{"denom":"ASSET6","index":"0.000011614027747767"},{"denom":"ASSET7","index":"0.000017945293871291"},{"denom":"ASSET8","index":"0.000025831476524037"},{"denom":"ASSET9","index":"0.000010365841709202"}],"last_reward_claim_height":"193"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET8","shares":"999999999.999999989000000000","reward_history":[{"denom":"ASSET0","index":"0.000001515088644413"},{"denom":"ASSET1","index":"0.000012634136557163"},{"denom":"ASSET10","index":"0.000008802109028204"},{"denom":"ASSET11","index":"0.000012222352143486"},{"denom":"ASSET12","index":"0.000011006111259210"},{"denom":"ASSET13","index":"0.000003787721611031"},{"denom":"ASSET14","index":"0.000011417895672887"},{"denom":"ASSET15","index":"0.000008163582563959"},{"denom":"ASSET16","index":"0.000005691138594924"},{"denom":"ASSET17","index":"0.000004042263453241"},{"denom":"ASSET18","index":"0.000001925135571111"},{"denom":"ASSET2","index":"0.000003729515797284"},{"denom":"ASSET3","index":"0.000001091141821893"},{"denom":"ASSET4","index":"0.000010267679293757"},{"denom":"ASSET5","index":"0.000000846156158061"},{"denom":"ASSET6","index":"0.000003446305419945"},{"denom":"ASSET7","index":"0.000005278485437758"},{"denom":"ASSET8","index":"0.000006887398378958"},{"denom":"ASSET9","index":"0.000002974577705544"}],"last_reward_claim_height":"110"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET13","shares":"144793528.000000000000000000","reward_history":[],"last_reward_claim_height":"5"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET16","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"41"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET1","shares":"669604778.986431336866327360","reward_history":[{"denom":"ASSET0","index":"0.000001650481631660"},{"denom":"ASSET1","index":"0.000013760556046882"},{"denom":"ASSET10","index":"0.000009587067899364"},{"denom":"ASSET11","index":"0.000013312100857594"},{"denom":"ASSET12","index":"0.000011987552175177"},{"denom":"ASSET13","index":"0.000004125311926918"},{"denom":"ASSET14","index":"0.000012435412596309"},{"denom":"ASSET15","index":"0.000008891189157367"},{"denom":"ASSET16","index":"0.000006198673717177"},{"denom":"ASSET17","index":"0.000004402473887406"},{"denom":"ASSET18","index":"0.000002097152516481"},{"denom":"ASSET2","index":"0.000004062266502429"},{"denom":"ASSET3","index":"0.000001188346774796"},{"denom":"ASSET4","index":"0.000011182830860714"},{"denom":"ASSET5","index":"0.000000921890641108"},{"denom":"ASSET6","index":"0.000003753581829697"},{"denom":"ASSET7","index":"0.000005749028991578"},{"denom":"ASSET8","index":"0.000007501810745994"},{"denom":"ASSET9","index":"0.000003239702143299"}],"last_reward_claim_height":"96"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET5","shares":"921197569.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004757972776933"},{"denom":"ASSET1","index":"0.000038970400118654"},{"denom":"ASSET10","index":"0.000033617836990995"},{"denom":"ASSET11","index":"0.000040428437524388"},{"denom":"ASSET12","index":"0.000038459846371488"},{"denom":"ASSET13","index":"0.000013029623770405"},{"denom":"ASSET14","index":"0.000037302820528116"},{"denom":"ASSET15","index":"0.000030190977215601"},{"denom":"ASSET16","index":"0.000017295602426422"},{"denom":"ASSET17","index":"0.000013975163103663"},{"denom":"ASSET18","index":"0.000005816089409694"},{"denom":"ASSET2","index":"0.000011760899716132"},{"denom":"ASSET3","index":"0.000003380086343079"},{"denom":"ASSET4","index":"0.000031935316700571"},{"denom":"ASSET5","index":"0.000002652933340978"},{"denom":"ASSET6","index":"0.000010827301916558"},{"denom":"ASSET7","index":"0.000016726845186415"},{"denom":"ASSET8","index":"0.000024031227508335"},{"denom":"ASSET9","index":"0.000009656515298543"}],"last_reward_claim_height":"189"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET11","shares":"161290573.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003205609047354"},{"denom":"ASSET1","index":"0.000027188537481167"},{"denom":"ASSET10","index":"0.000021652723818266"},{"denom":"ASSET11","index":"0.000027005979418132"},{"denom":"ASSET12","index":"0.000025725923481940"},{"denom":"ASSET13","index":"0.000008480657418555"},{"denom":"ASSET14","index":"0.000024794508770079"},{"denom":"ASSET15","index":"0.000019512596409105"},{"denom":"ASSET16","index":"0.000012064653878282"},{"denom":"ASSET17","index":"0.000009453813052143"},{"denom":"ASSET18","index":"0.000003917117707327"},{"denom":"ASSET2","index":"0.000008230459966291"},{"denom":"ASSET3","index":"0.000002288306334262"},{"denom":"ASSET4","index":"0.000022043298344156"},{"denom":"ASSET5","index":"0.000001782083734802"},{"denom":"ASSET6","index":"0.000007194354204475"},{"denom":"ASSET7","index":"0.000011296497588433"},{"denom":"ASSET8","index":"0.000015417282169744"},{"denom":"ASSET9","index":"0.000006545936928299"}],"last_reward_claim_height":"181"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET3","shares":"393736312.496523052172300618","reward_history":[{"denom":"ASSET0","index":"0.000003075918064869"},{"denom":"ASSET1","index":"0.000026136551234120"},{"denom":"ASSET10","index":"0.000021080163895542"},{"denom":"ASSET11","index":"0.000026029570124972"},{"denom":"ASSET12","index":"0.000024929671095533"},{"denom":"ASSET13","index":"0.000008184754658215"},{"denom":"ASSET14","index":"0.000023857159923959"},{"denom":"ASSET15","index":"0.000018947606922173"},{"denom":"ASSET16","index":"0.000011579925359638"},{"denom":"ASSET17","index":"0.000009161388302193"},{"denom":"ASSET18","index":"0.000003743573486430"},{"denom":"ASSET2","index":"0.000007931762150876"},{"denom":"ASSET3","index":"0.000002193704696765"},{"denom":"ASSET4","index":"0.000021185602196482"},{"denom":"ASSET5","index":"0.000001709259314500"},{"denom":"ASSET6","index":"0.000006893942979866"},{"denom":"ASSET7","index":"0.000010853088527538"},{"denom":"ASSET8","index":"0.000014878712124324"},{"denom":"ASSET9","index":"0.000006307130542486"}],"last_reward_claim_height":"127"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET4","shares":"848262087.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003075918064869"},{"denom":"ASSET1","index":"0.000026136551234120"},{"denom":"ASSET10","index":"0.000021080163895542"},{"denom":"ASSET11","index":"0.000026029570124972"},{"denom":"ASSET12","index":"0.000024929671095533"},{"denom":"ASSET13","index":"0.000008184754658215"},{"denom":"ASSET14","index":"0.000023857159923959"},{"denom":"ASSET15","index":"0.000018947606922173"},{"denom":"ASSET16","index":"0.000011579925359638"},{"denom":"ASSET17","index":"0.000009161388302193"},{"denom":"ASSET18","index":"0.000003743573486430"},{"denom":"ASSET2","index":"0.000007931762150876"},{"denom":"ASSET3","index":"0.000002193704696765"},{"denom":"ASSET4","index":"0.000021185602196482"},{"denom":"ASSET5","index":"0.000001709259314500"},{"denom":"ASSET6","index":"0.000006893942979866"},{"denom":"ASSET7","index":"0.000010853088527538"},{"denom":"ASSET8","index":"0.000014878712124324"},{"denom":"ASSET9","index":"0.000006307130542486"}],"last_reward_claim_height":"179"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET6","shares":"390031172.000000000788518302","reward_history":[],"last_reward_claim_height":"30"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET7","shares":"264319942.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001428935211366"},{"denom":"ASSET1","index":"0.000011914564237659"},{"denom":"ASSET10","index":"0.000008301159777028"},{"denom":"ASSET11","index":"0.000011525978642480"},{"denom":"ASSET12","index":"0.000010379209562159"},{"denom":"ASSET13","index":"0.000003571896453874"},{"denom":"ASSET14","index":"0.000010767353582799"},{"denom":"ASSET15","index":"0.000007698410529959"},{"denom":"ASSET16","index":"0.000005367338533420"},{"denom":"ASSET17","index":"0.000003811671429081"},{"denom":"ASSET18","index":"0.000001815754508385"},{"denom":"ASSET2","index":"0.000003517141210917"},{"denom":"ASSET3","index":"0.000001028868678146"},{"denom":"ASSET4","index":"0.000009682846512616"},{"denom":"ASSET5","index":"0.000000798366768278"},{"denom":"ASSET6","index":"0.000003249988614231"},{"denom":"ASSET7","index":"0.000004977428214621"},{"denom":"ASSET8","index":"0.000006495119908522"},{"denom":"ASSET9","index":"0.000002805323052474"}],"last_reward_claim_height":"68"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET6","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"55"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET18","shares":"594755896.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001556917620519"},{"denom":"ASSET1","index":"0.000012983455297040"},{"denom":"ASSET10","index":"0.000009045452282177"},{"denom":"ASSET11","index":"0.000012560119972943"},{"denom":"ASSET12","index":"0.000011310507230547"},{"denom":"ASSET13","index":"0.000003892294051298"},{"denom":"ASSET14","index":"0.000011733139339821"},{"denom":"ASSET15","index":"0.000008388649636483"},{"denom":"ASSET16","index":"0.000005848637691896"},{"denom":"ASSET17","index":"0.000004153889965857"},{"denom":"ASSET18","index":"0.000001978846514969"},{"denom":"ASSET2","index":"0.000003832520791251"},{"denom":"ASSET3","index":"0.000001120924429588"},{"denom":"ASSET4","index":"0.000010551035220538"},{"denom":"ASSET5","index":"0.000000869876737390"},{"denom":"ASSET6","index":"0.000003541389854081"},{"denom":"ASSET7","index":"0.000005423895938150"},{"denom":"ASSET8","index":"0.000007077857204393"},{"denom":"ASSET9","index":"0.000003056874840288"}],"last_reward_claim_height":"106"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET4","shares":"174105699.744351639457981264","reward_history":[{"denom":"ASSET0","index":"0.000004941758780646"},{"denom":"ASSET1","index":"0.000040473870434523"},{"denom":"ASSET10","index":"0.000035083402440859"},{"denom":"ASSET11","index":"0.000042051564730155"},{"denom":"ASSET12","index":"0.000040063832495883"},{"denom":"ASSET13","index":"0.000013563015527428"},{"denom":"ASSET14","index":"0.000038785366713261"},{"denom":"ASSET15","index":"0.000031483779525299"},{"denom":"ASSET16","index":"0.000017955292333607"},{"denom":"ASSET17","index":"0.000014555394021301"},{"denom":"ASSET18","index":"0.000006034476545538"},{"denom":"ASSET2","index":"0.000012222945573354"},{"denom":"ASSET3","index":"0.000003508847610589"},{"denom":"ASSET4","index":"0.000033172373205264"},{"denom":"ASSET5","index":"0.000002755599690062"},{"denom":"ASSET6","index":"0.000011244023937701"},{"denom":"ASSET7","index":"0.000017379505184359"},{"denom":"ASSET8","index":"0.000025019733274858"},{"denom":"ASSET9","index":"0.000010040653742801"}],"last_reward_claim_height":"188"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET14","shares":"390178411.830374418356058119","reward_history":[{"denom":"ASSET0","index":"0.000003300821213878"},{"denom":"ASSET1","index":"0.000028019420341436"},{"denom":"ASSET10","index":"0.000022435320069293"},{"denom":"ASSET11","index":"0.000027862926397945"},{"denom":"ASSET12","index":"0.000026603097941410"},{"denom":"ASSET13","index":"0.000008754572034100"},{"denom":"ASSET14","index":"0.000025562969906661"},{"denom":"ASSET15","index":"0.000020195785636702"},{"denom":"ASSET16","index":"0.000012425527462944"},{"denom":"ASSET17","index":"0.000009776022796414"},{"denom":"ASSET18","index":"0.000004027118689751"},{"denom":"ASSET2","index":"0.000008490998812362"},{"denom":"ASSET3","index":"0.000002354733406852"},{"denom":"ASSET4","index":"0.000022715681634045"},{"denom":"ASSET5","index":"0.000001835160700580"},{"denom":"ASSET6","index":"0.000007403741836767"},{"denom":"ASSET7","index":"0.000011639103500846"},{"denom":"ASSET8","index":"0.000015914079386056"},{"denom":"ASSET9","index":"0.000006752470475547"}],"last_reward_claim_height":"178"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET8","shares":"472884450.253801865106753183","reward_history":[{"denom":"ASSET0","index":"0.000003205518103121"},{"denom":"ASSET1","index":"0.000027209804037075"},{"denom":"ASSET10","index":"0.000021755111918776"},{"denom":"ASSET11","index":"0.000027048910570117"},{"denom":"ASSET12","index":"0.000025809934262776"},{"denom":"ASSET13","index":"0.000008496852467218"},{"denom":"ASSET14","index":"0.000024820667393427"},{"denom":"ASSET15","index":"0.000019589132093549"},{"denom":"ASSET16","index":"0.000012068310128279"},{"denom":"ASSET17","index":"0.000009484236214143"},{"denom":"ASSET18","index":"0.000003912244660385"},{"denom":"ASSET2","index":"0.000008242746790311"},{"denom":"ASSET3","index":"0.000002287536756020"},{"denom":"ASSET4","index":"0.000022059248469095"},{"denom":"ASSET5","index":"0.000001781848402938"},{"denom":"ASSET6","index":"0.000007192715838846"},{"denom":"ASSET7","index":"0.000011303047666497"},{"denom":"ASSET8","index":"0.000015447099928639"},{"denom":"ASSET9","index":"0.000006555210966575"}],"last_reward_claim_height":"144"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET15","shares":"1000000000.000000024000000000","reward_history":[{"denom":"ASSET0","index":"0.000003205518103121"},{"denom":"ASSET1","index":"0.000027209804037075"},{"denom":"ASSET10","index":"0.000021755111918776"},{"denom":"ASSET11","index":"0.000027048910570117"},{"denom":"ASSET12","index":"0.000025809934262776"},{"denom":"ASSET13","index":"0.000008496852467218"},{"denom":"ASSET14","index":"0.000024820667393427"},{"denom":"ASSET15","index":"0.000019589132093549"},{"denom":"ASSET16","index":"0.000012068310128279"},{"denom":"ASSET17","index":"0.000009484236214143"},{"denom":"ASSET18","index":"0.000003912244660385"},{"denom":"ASSET2","index":"0.000008242746790311"},{"denom":"ASSET3","index":"0.000002287536756020"},{"denom":"ASSET4","index":"0.000022059248469095"},{"denom":"ASSET5","index":"0.000001781848402938"},{"denom":"ASSET6","index":"0.000007192715838846"},{"denom":"ASSET7","index":"0.000011303047666497"},{"denom":"ASSET8","index":"0.000015447099928639"},{"denom":"ASSET9","index":"0.000006555210966575"}],"last_reward_claim_height":"159"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET18","shares":"397731428.000000000000000000","reward_history":[],"last_reward_claim_height":"30"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET1","shares":"310616649.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003374964488748"},{"denom":"ASSET1","index":"0.000028642371697541"},{"denom":"ASSET10","index":"0.000022886358038922"},{"denom":"ASSET11","index":"0.000028469467846578"},{"denom":"ASSET12","index":"0.000027158021136678"},{"denom":"ASSET13","index":"0.000008943216545101"},{"denom":"ASSET14","index":"0.000026126056006670"},{"denom":"ASSET15","index":"0.000020609372613995"},{"denom":"ASSET16","index":"0.000012704733728960"},{"denom":"ASSET17","index":"0.000009980025667275"},{"denom":"ASSET18","index":"0.000004119620826099"},{"denom":"ASSET2","index":"0.000008675935346246"},{"denom":"ASSET3","index":"0.000002408702445844"},{"denom":"ASSET4","index":"0.000023220763838917"},{"denom":"ASSET5","index":"0.000001876440105393"},{"denom":"ASSET6","index":"0.000007572949563502"},{"denom":"ASSET7","index":"0.000011897934490553"},{"denom":"ASSET8","index":"0.000016258236310419"},{"denom":"ASSET9","index":"0.000006900426530312"}],"last_reward_claim_height":"182"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET7","shares":"913998974.000000054839938440","reward_history":[],"last_reward_claim_height":"48"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET11","shares":"934672769.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003374964488748"},{"denom":"ASSET1","index":"0.000028642371697541"},{"denom":"ASSET10","index":"0.000022886358038922"},{"denom":"ASSET11","index":"0.000028469467846578"},{"denom":"ASSET12","index":"0.000027158021136678"},{"denom":"ASSET13","index":"0.000008943216545101"},{"denom":"ASSET14","index":"0.000026126056006670"},{"denom":"ASSET15","index":"0.000020609372613995"},{"denom":"ASSET16","index":"0.000012704733728960"},{"denom":"ASSET17","index":"0.000009980025667275"},{"denom":"ASSET18","index":"0.000004119620826099"},{"denom":"ASSET2","index":"0.000008675935346246"},{"denom":"ASSET3","index":"0.000002408702445844"},{"denom":"ASSET4","index":"0.000023220763838917"},{"denom":"ASSET5","index":"0.000001876440105393"},{"denom":"ASSET6","index":"0.000007572949563502"},{"denom":"ASSET7","index":"0.000011897934490553"},{"denom":"ASSET8","index":"0.000016258236310419"},{"denom":"ASSET9","index":"0.000006900426530312"}],"last_reward_claim_height":"155"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET13","shares":"425975198.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001693699328345"},{"denom":"ASSET1","index":"0.000014121235265065"},{"denom":"ASSET10","index":"0.000009838380374958"},{"denom":"ASSET11","index":"0.000013660499756586"},{"denom":"ASSET12","index":"0.000012301569616423"},{"denom":"ASSET13","index":"0.000004233563721295"},{"denom":"ASSET14","index":"0.000012760935925768"},{"denom":"ASSET15","index":"0.000009123658427184"},{"denom":"ASSET16","index":"0.000006361299175013"},{"denom":"ASSET17","index":"0.000004517672541531"},{"denom":"ASSET18","index":"0.000002151696438556"},{"denom":"ASSET2","index":"0.000004168526762446"},{"denom":"ASSET3","index":"0.000001219271828530"},{"denom":"ASSET4","index":"0.000011475942538822"},{"denom":"ASSET5","index":"0.000000946116601363"},{"denom":"ASSET6","index":"0.000003852241762569"},{"denom":"ASSET7","index":"0.000005899194467400"},{"denom":"ASSET8","index":"0.000007698322129037"},{"denom":"ASSET9","index":"0.000003325100096108"}],"last_reward_claim_height":"90"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET13","shares":"999999999.999999947000000000","reward_history":[{"denom":"ASSET0","index":"0.000001608105877482"},{"denom":"ASSET1","index":"0.000013418457239972"},{"denom":"ASSET10","index":"0.000009349233819318"},{"denom":"ASSET11","index":"0.000012981594753349"},{"denom":"ASSET12","index":"0.000011689837573077"},{"denom":"ASSET13","index":"0.000004022147721664"},{"denom":"ASSET14","index":"0.000012126700059700"},{"denom":"ASSET15","index":"0.000008669460725910"},{"denom":"ASSET16","index":"0.000006044519750254"},{"denom":"ASSET17","index":"0.000004293303747844"},{"denom":"ASSET18","index":"0.000002044968364105"},{"denom":"ASSET2","index":"0.000003960007798998"},{"denom":"ASSET3","index":"0.000001158062195142"},{"denom":"ASSET4","index":"0.000010904614913932"},{"denom":"ASSET5","index":"0.000000898204336720"},{"denom":"ASSET6","index":"0.000003660606353425"},{"denom":"ASSET7","index":"0.000005605774235672"},{"denom":"ASSET8","index":"0.000007313680595011"},{"denom":"ASSET9","index":"0.000003159720916176"}],"last_reward_claim_height":"122"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET16","shares":"501511195.308764676732035851","reward_history":[{"denom":"ASSET0","index":"0.000003135138573804"},{"denom":"ASSET1","index":"0.000026601246250396"},{"denom":"ASSET10","index":"0.000021147351718785"},{"denom":"ASSET11","index":"0.000026411423528042"},{"denom":"ASSET12","index":"0.000025139747174388"},{"denom":"ASSET13","index":"0.000008292603180789"},{"denom":"ASSET14","index":"0.000024256405788980"},{"denom":"ASSET15","index":"0.000019064302195638"},{"denom":"ASSET16","index":"0.000011804656377100"},{"denom":"ASSET17","index":"0.000009238224400983"},{"denom":"ASSET18","index":"0.000003834531376561"},{"denom":"ASSET2","index":"0.000008049169006780"},{"denom":"ASSET3","index":"0.000002239375819558"},{"denom":"ASSET4","index":"0.000021568278304468"},{"denom":"ASSET5","index":"0.000001743998311515"},{"denom":"ASSET6","index":"0.000007041675703373"},{"denom":"ASSET7","index":"0.000011051161098588"},{"denom":"ASSET8","index":"0.000015073103234225"},{"denom":"ASSET9","index":"0.000006402150772125"}],"last_reward_claim_height":"139"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET1","shares":"544723374.762024247950715889","reward_history":[{"denom":"ASSET0","index":"0.000003237426875283"},{"denom":"ASSET1","index":"0.000027451710154634"},{"denom":"ASSET10","index":"0.000021835512998164"},{"denom":"ASSET11","index":"0.000027259736654219"},{"denom":"ASSET12","index":"0.000025953768913429"},{"denom":"ASSET13","index":"0.000008559484494503"},{"denom":"ASSET14","index":"0.000025032165857410"},{"denom":"ASSET15","index":"0.000019681806512765"},{"denom":"ASSET16","index":"0.000012183244440341"},{"denom":"ASSET17","index":"0.000009537367134186"},{"denom":"ASSET18","index":"0.000003957397976948"},{"denom":"ASSET2","index":"0.000008307936552813"},{"denom":"ASSET3","index":"0.000002310954839376"},{"denom":"ASSET4","index":"0.000022256988295109"},{"denom":"ASSET5","index":"0.000001799896462688"},{"denom":"ASSET6","index":"0.000007265619632425"},{"denom":"ASSET7","index":"0.000011405823532836"},{"denom":"ASSET8","index":"0.000015559935461923"},{"denom":"ASSET9","index":"0.000006608212131764"}],"last_reward_claim_height":"182"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET12","shares":"450837475.000000000000000000","reward_history":[],"last_reward_claim_height":"38"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET17","shares":"3874360.000000000000000000","reward_history":[],"last_reward_claim_height":"31"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET13","shares":"29211969.000000002678794285","reward_history":[],"last_reward_claim_height":"56"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET8","shares":"165284968.558594317337747680","reward_history":[{"denom":"ASSET0","index":"0.000001735896630597"},{"denom":"ASSET1","index":"0.000014474259966527"},{"denom":"ASSET10","index":"0.000010084408758147"},{"denom":"ASSET11","index":"0.000014002239606889"},{"denom":"ASSET12","index":"0.000012609068112910"},{"denom":"ASSET13","index":"0.000004339122939062"},{"denom":"ASSET14","index":"0.000013079851197687"},{"denom":"ASSET15","index":"0.000009351942040176"},{"denom":"ASSET16","index":"0.000006520438519776"},{"denom":"ASSET17","index":"0.000004630501168930"},{"denom":"ASSET18","index":"0.000002205442440512"},{"denom":"ASSET2","index":"0.000004272310096544"},{"denom":"ASSET3","index":"0.000001249647610052"},{"denom":"ASSET4","index":"0.000011762772107687"},{"denom":"ASSET5","index":"0.000000970023491367"},{"denom":"ASSET6","index":"0.000003948144082847"},{"denom":"ASSET7","index":"0.000006046562247845"},{"denom":"ASSET8","index":"0.000007890101791387"},{"denom":"ASSET9","index":"0.000003408073605830"}],"last_reward_claim_height":"112"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET14","shares":"601137072.872461740447126420","reward_history":[{"denom":"ASSET0","index":"0.000003300304206809"},{"denom":"ASSET1","index":"0.000027981868665615"},{"denom":"ASSET10","index":"0.000022221493016134"},{"denom":"ASSET11","index":"0.000027777532118325"},{"denom":"ASSET12","index":"0.000026428557640091"},{"denom":"ASSET13","index":"0.000008720047886627"},{"denom":"ASSET14","index":"0.000025512138164618"},{"denom":"ASSET15","index":"0.000020036362120252"},{"denom":"ASSET16","index":"0.000012421157074829"},{"denom":"ASSET17","index":"0.000009711490167791"},{"denom":"ASSET18","index":"0.000004036282970136"},{"denom":"ASSET2","index":"0.000008465189250700"},{"denom":"ASSET3","index":"0.000002356240815614"},{"denom":"ASSET4","index":"0.000022687774056492"},{"denom":"ASSET5","index":"0.000001835200922241"},{"denom":"ASSET6","index":"0.000007409270759323"},{"denom":"ASSET7","index":"0.000011627060915230"},{"denom":"ASSET8","index":"0.000015852235873304"},{"denom":"ASSET9","index":"0.000006733690564218"}],"last_reward_claim_height":"125"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET13","shares":"128250814.166996427859369730","reward_history":[{"denom":"ASSET0","index":"0.000003383074331503"},{"denom":"ASSET1","index":"0.000028697774885580"},{"denom":"ASSET10","index":"0.000022880621123289"},{"denom":"ASSET11","index":"0.000028511966470743"},{"denom":"ASSET12","index":"0.000027173358086556"},{"denom":"ASSET13","index":"0.000008954537947194"},{"denom":"ASSET14","index":"0.000026172910691250"},{"denom":"ASSET15","index":"0.000020614154391480"},{"denom":"ASSET16","index":"0.000012732692592075"},{"denom":"ASSET17","index":"0.000009985655741818"},{"denom":"ASSET18","index":"0.000004132359094826"},{"denom":"ASSET2","index":"0.000008689052893949"},{"denom":"ASSET3","index":"0.000002414485946546"},{"denom":"ASSET4","index":"0.000023266612079392"},{"denom":"ASSET5","index":"0.000001880944791026"},{"denom":"ASSET6","index":"0.000007591453768301"},{"denom":"ASSET7","index":"0.000011922604903868"},{"denom":"ASSET8","index":"0.000016278329144958"},{"denom":"ASSET9","index":"0.000006911169878531"}],"last_reward_claim_height":"160"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET18","shares":"999150010.925057042015212232","reward_history":[{"denom":"ASSET0","index":"0.000001726734301691"},{"denom":"ASSET1","index":"0.000014395988805148"},{"denom":"ASSET10","index":"0.000010029746380297"},{"denom":"ASSET11","index":"0.000013926529312304"},{"denom":"ASSET12","index":"0.000012540835608608"},{"denom":"ASSET13","index":"0.000004315874534955"},{"denom":"ASSET14","index":"0.000013009526126035"},{"denom":"ASSET15","index":"0.000009301526659210"},{"denom":"ASSET16","index":"0.000006485154189852"},{"denom":"ASSET17","index":"0.000004605778267637"},{"denom":"ASSET18","index":"0.000002193886868281"},{"denom":"ASSET2","index":"0.000004249742648985"},{"denom":"ASSET3","index":"0.000001243048763609"},{"denom":"ASSET4","index":"0.000011699192013329"},{"denom":"ASSET5","index":"0.000000964679662201"},{"denom":"ASSET6","index":"0.000003926772973318"},{"denom":"ASSET7","index":"0.000006014156746171"},{"denom":"ASSET8","index":"0.000007847778630999"},{"denom":"ASSET9","index":"0.000003389643643667"}],"last_reward_claim_height":"83"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET12","shares":"878783642.000000000000000000","reward_history":[],"last_reward_claim_height":"25"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET15","shares":"80502820.000000000000000000","reward_history":[],"last_reward_claim_height":"6"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET18","shares":"812224181.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004128673807148"},{"denom":"ASSET1","index":"0.000033632560650143"},{"denom":"ASSET10","index":"0.000029081535724795"},{"denom":"ASSET11","index":"0.000035028568986164"},{"denom":"ASSET12","index":"0.000033201559527363"},{"denom":"ASSET13","index":"0.000011316100845703"},{"denom":"ASSET14","index":"0.000032375709917063"},{"denom":"ASSET15","index":"0.000026147141240153"},{"denom":"ASSET16","index":"0.000014941858705588"},{"denom":"ASSET17","index":"0.000012045897017741"},{"denom":"ASSET18","index":"0.000005061341273485"},{"denom":"ASSET2","index":"0.000010128476734526"},{"denom":"ASSET3","index":"0.000002932325287224"},{"denom":"ASSET4","index":"0.000027604756201839"},{"denom":"ASSET5","index":"0.000002304474576996"},{"denom":"ASSET6","index":"0.000009420924093825"},{"denom":"ASSET7","index":"0.000014501846151758"},{"denom":"ASSET8","index":"0.000020910001307184"},{"denom":"ASSET9","index":"0.000008353073446808"}],"last_reward_claim_height":"185"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET8","shares":"232875540.000000000000000000","reward_history":[],"last_reward_claim_height":"63"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET12","shares":"109365229.326155464945406696","reward_history":[{"denom":"ASSET0","index":"0.000002357406510396"},{"denom":"ASSET1","index":"0.000020099972826550"},{"denom":"ASSET10","index":"0.000016611857270119"},{"denom":"ASSET11","index":"0.000020122040980663"},{"denom":"ASSET12","index":"0.000019473664705632"},{"denom":"ASSET13","index":"0.000006342954228467"},{"denom":"ASSET14","index":"0.000018379978414574"},{"denom":"ASSET15","index":"0.000014858739059306"},{"denom":"ASSET16","index":"0.000008878274052948"},{"denom":"ASSET17","index":"0.000007156982288871"},{"denom":"ASSET18","index":"0.000002845018303307"},{"denom":"ASSET2","index":"0.000006129987919866"},{"denom":"ASSET3","index":"0.000001678183905493"},{"denom":"ASSET4","index":"0.000016284739258605"},{"denom":"ASSET5","index":"0.000001308892339296"},{"denom":"ASSET6","index":"0.000005269046474537"},{"denom":"ASSET7","index":"0.000008337197620164"},{"denom":"ASSET8","index":"0.000011530009666752"},{"denom":"ASSET9","index":"0.000004871853664260"}],"last_reward_claim_height":"176"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET17","shares":"427647392.425946169347541672","reward_history":[{"denom":"ASSET0","index":"0.000002357406510396"},{"denom":"ASSET1","index":"0.000020099972826550"},{"denom":"ASSET10","index":"0.000016611857270119"},{"denom":"ASSET11","index":"0.000020122040980663"},{"denom":"ASSET12","index":"0.000019473664705632"},{"denom":"ASSET13","index":"0.000006342954228467"},{"denom":"ASSET14","index":"0.000018379978414574"},{"denom":"ASSET15","index":"0.000014858739059306"},{"denom":"ASSET16","index":"0.000008878274052948"},{"denom":"ASSET17","index":"0.000007156982288871"},{"denom":"ASSET18","index":"0.000002845018303307"},{"denom":"ASSET2","index":"0.000006129987919866"},{"denom":"ASSET3","index":"0.000001678183905493"},{"denom":"ASSET4","index":"0.000016284739258605"},{"denom":"ASSET5","index":"0.000001308892339296"},{"denom":"ASSET6","index":"0.000005269046474537"},{"denom":"ASSET7","index":"0.000008337197620164"},{"denom":"ASSET8","index":"0.000011530009666752"},{"denom":"ASSET9","index":"0.000004871853664260"}],"last_reward_claim_height":"176"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET0","shares":"124091369.000000000000000000","reward_history":[],"last_reward_claim_height":"19"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET3","shares":"414208117.000000000000000000","reward_history":[],"last_reward_claim_height":"37"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET6","shares":"560668332.104733506011610634","reward_history":[{"denom":"ASSET0","index":"0.000002792091306062"},{"denom":"ASSET1","index":"0.000023760392481519"},{"denom":"ASSET10","index":"0.000019330735214415"},{"denom":"ASSET11","index":"0.000023705763948043"},{"denom":"ASSET12","index":"0.000022788595153270"},{"denom":"ASSET13","index":"0.000007460432475948"},{"denom":"ASSET14","index":"0.000021701401606991"},{"denom":"ASSET15","index":"0.000017344296121870"},{"denom":"ASSET16","index":"0.000010515175863945"},{"denom":"ASSET17","index":"0.000008375559402161"},{"denom":"ASSET18","index":"0.000003388923471278"},{"denom":"ASSET2","index":"0.000007222909907971"},{"denom":"ASSET3","index":"0.000001989926471838"},{"denom":"ASSET4","index":"0.000019255294602933"},{"denom":"ASSET5","index":"0.000001551437823125"},{"denom":"ASSET6","index":"0.000006253588147261"},{"denom":"ASSET7","index":"0.000009862028954195"},{"denom":"ASSET8","index":"0.000013562244421912"},{"denom":"ASSET9","index":"0.000005741841810541"}],"last_reward_claim_height":"146"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET14","shares":"981640238.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001198976216272"},{"denom":"ASSET1","index":"0.000010001315625623"},{"denom":"ASSET10","index":"0.000006967712250892"},{"denom":"ASSET11","index":"0.000009674322112094"},{"denom":"ASSET12","index":"0.000008711677656379"},{"denom":"ASSET13","index":"0.000002997949876371"},{"denom":"ASSET14","index":"0.000009037652498526"},{"denom":"ASSET15","index":"0.000006461432574183"},{"denom":"ASSET16","index":"0.000004504564849919"},{"denom":"ASSET17","index":"0.000003199646809949"},{"denom":"ASSET18","index":"0.000001523932387037"},{"denom":"ASSET2","index":"0.000002952109664194"},{"denom":"ASSET3","index":"0.000000862814660308"},{"denom":"ASSET4","index":"0.000008126960283277"},{"denom":"ASSET5","index":"0.000000670285769165"},{"denom":"ASSET6","index":"0.000002728001960218"},{"denom":"ASSET7","index":"0.000004177571336390"},{"denom":"ASSET8","index":"0.000005451929234909"},{"denom":"ASSET9","index":"0.000002354149563130"}],"last_reward_claim_height":"93"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET18","shares":"908488130.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004408639086951"},{"denom":"ASSET1","index":"0.000036028768930796"},{"denom":"ASSET10","index":"0.000031790158219615"},{"denom":"ASSET11","index":"0.000037682589230029"},{"denom":"ASSET12","index":"0.000036048426643578"},{"denom":"ASSET13","index":"0.000012197269347349"},{"denom":"ASSET14","index":"0.000034726305858976"},{"denom":"ASSET15","index":"0.000028463702439045"},{"denom":"ASSET16","index":"0.000015962383027793"},{"denom":"ASSET17","index":"0.000013083625448781"},{"denom":"ASSET18","index":"0.000005366451960217"},{"denom":"ASSET2","index":"0.000010899158965125"},{"denom":"ASSET3","index":"0.000003126684527234"},{"denom":"ASSET4","index":"0.000029555870827765"},{"denom":"ASSET5","index":"0.000002458236264620"},{"denom":"ASSET6","index":"0.000010036434145152"},{"denom":"ASSET7","index":"0.000015516634437691"},{"denom":"ASSET8","index":"0.000022532118254512"},{"denom":"ASSET9","index":"0.000008980939918496"}],"last_reward_claim_height":"190"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET0","shares":"1000020810.861425318000000000","reward_history":[{"denom":"ASSET0","index":"0.000004819510775519"},{"denom":"ASSET1","index":"0.000039403767247033"},{"denom":"ASSET10","index":"0.000034368618249032"},{"denom":"ASSET11","index":"0.000041056673813813"},{"denom":"ASSET12","index":"0.000039143604600199"},{"denom":"ASSET13","index":"0.000013264025816369"},{"denom":"ASSET14","index":"0.000037867402744776"},{"denom":"ASSET15","index":"0.000030827798147301"},{"denom":"ASSET16","index":"0.000017473948495290"},{"denom":"ASSET17","index":"0.000014210305839082"},{"denom":"ASSET18","index":"0.000005878424124691"},{"denom":"ASSET2","index":"0.000011900504471474"},{"denom":"ASSET3","index":"0.000003421471968689"},{"denom":"ASSET4","index":"0.000032315799104663"},{"denom":"ASSET5","index":"0.000002685067080734"},{"denom":"ASSET6","index":"0.000010972584355185"},{"denom":"ASSET7","index":"0.000016949352231472"},{"denom":"ASSET8","index":"0.000024486444648256"},{"denom":"ASSET9","index":"0.000009794702493328"}],"last_reward_claim_height":"188"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET4","shares":"285755387.209818811980314400","reward_history":[{"denom":"ASSET0","index":"0.000003131246414749"},{"denom":"ASSET1","index":"0.000026589761836242"},{"denom":"ASSET10","index":"0.000021355242603721"},{"denom":"ASSET11","index":"0.000026458316408852"},{"denom":"ASSET12","index":"0.000025293988029420"},{"denom":"ASSET13","index":"0.000008316673174883"},{"denom":"ASSET14","index":"0.000024263343459355"},{"denom":"ASSET15","index":"0.000019213959771091"},{"denom":"ASSET16","index":"0.000011784585795875"},{"denom":"ASSET17","index":"0.000009292893547134"},{"denom":"ASSET18","index":"0.000003813004198036"},{"denom":"ASSET2","index":"0.000008060944762894"},{"denom":"ASSET3","index":"0.000002234070199415"},{"denom":"ASSET4","index":"0.000021557233504015"},{"denom":"ASSET5","index":"0.000001738116490695"},{"denom":"ASSET6","index":"0.000007021386599103"},{"denom":"ASSET7","index":"0.000011043212117572"},{"denom":"ASSET8","index":"0.000015117900391662"},{"denom":"ASSET9","index":"0.000006411442995536"}],"last_reward_claim_height":"149"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET13","shares":"694150426.000000000000000000","reward_history":[],"last_reward_claim_height":"55"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET7","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001538667310820"},{"denom":"ASSET1","index":"0.000012827917927858"},{"denom":"ASSET10","index":"0.000008937244372687"},{"denom":"ASSET11","index":"0.000012409488429871"},{"denom":"ASSET12","index":"0.000011174685151587"},{"denom":"ASSET13","index":"0.000003845530209513"},{"denom":"ASSET14","index":"0.000011592355937882"},{"denom":"ASSET15","index":"0.000008288166520415"},{"denom":"ASSET16","index":"0.000005778727600031"},{"denom":"ASSET17","index":"0.000004103871540546"},{"denom":"ASSET18","index":"0.000001954820673732"},{"denom":"ASSET2","index":"0.000003786730053405"},{"denom":"ASSET3","index":"0.000001107719069920"},{"denom":"ASSET4","index":"0.000010424698644316"},{"denom":"ASSET5","index":"0.000000859620346726"},{"denom":"ASSET6","index":"0.000003499178322240"},{"denom":"ASSET7","index":"0.000005359160034507"},{"denom":"ASSET8","index":"0.000006993045662639"},{"denom":"ASSET9","index":"0.000003020431244761"}],"last_reward_claim_height":"116"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET15","shares":"880973940.080005811216582264","reward_history":[{"denom":"ASSET0","index":"0.000001538667310820"},{"denom":"ASSET1","index":"0.000012827917927858"},{"denom":"ASSET10","index":"0.000008937244372687"},{"denom":"ASSET11","index":"0.000012409488429871"},{"denom":"ASSET12","index":"0.000011174685151587"},{"denom":"ASSET13","index":"0.000003845530209513"},{"denom":"ASSET14","index":"0.000011592355937882"},{"denom":"ASSET15","index":"0.000008288166520415"},{"denom":"ASSET16","index":"0.000005778727600031"},{"denom":"ASSET17","index":"0.000004103871540546"},{"denom":"ASSET18","index":"0.000001954820673732"},{"denom":"ASSET2","index":"0.000003786730053405"},{"denom":"ASSET3","index":"0.000001107719069920"},{"denom":"ASSET4","index":"0.000010424698644316"},{"denom":"ASSET5","index":"0.000000859620346726"},{"denom":"ASSET6","index":"0.000003499178322240"},{"denom":"ASSET7","index":"0.000005359160034507"},{"denom":"ASSET8","index":"0.000006993045662639"},{"denom":"ASSET9","index":"0.000003020431244761"}],"last_reward_claim_height":"102"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET17","shares":"505640955.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001538667310820"},{"denom":"ASSET1","index":"0.000012827917927858"},{"denom":"ASSET10","index":"0.000008937244372687"},{"denom":"ASSET11","index":"0.000012409488429871"},{"denom":"ASSET12","index":"0.000011174685151587"},{"denom":"ASSET13","index":"0.000003845530209513"},{"denom":"ASSET14","index":"0.000011592355937882"},{"denom":"ASSET15","index":"0.000008288166520415"},{"denom":"ASSET16","index":"0.000005778727600031"},{"denom":"ASSET17","index":"0.000004103871540546"},{"denom":"ASSET18","index":"0.000001954820673732"},{"denom":"ASSET2","index":"0.000003786730053405"},{"denom":"ASSET3","index":"0.000001107719069920"},{"denom":"ASSET4","index":"0.000010424698644316"},{"denom":"ASSET5","index":"0.000000859620346726"},{"denom":"ASSET6","index":"0.000003499178322240"},{"denom":"ASSET7","index":"0.000005359160034507"},{"denom":"ASSET8","index":"0.000006993045662639"},{"denom":"ASSET9","index":"0.000003020431244761"}],"last_reward_claim_height":"77"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET18","shares":"151969385.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003070496060295"},{"denom":"ASSET1","index":"0.000026054009108675"},{"denom":"ASSET10","index":"0.000020821706468932"},{"denom":"ASSET11","index":"0.000025897661631707"},{"denom":"ASSET12","index":"0.000024706407518076"},{"denom":"ASSET13","index":"0.000008135385272267"},{"denom":"ASSET14","index":"0.000023765921524780"},{"denom":"ASSET15","index":"0.000018749935123185"},{"denom":"ASSET16","index":"0.000011556337558875"},{"denom":"ASSET17","index":"0.000009079232430047"},{"denom":"ASSET18","index":"0.000003747682066764"},{"denom":"ASSET2","index":"0.000007892419371659"},{"denom":"ASSET3","index":"0.000002191201298955"},{"denom":"ASSET4","index":"0.000021122052487200"},{"denom":"ASSET5","index":"0.000001706992646915"},{"denom":"ASSET6","index":"0.000006888142834266"},{"denom":"ASSET7","index":"0.000010823268476718"},{"denom":"ASSET8","index":"0.000014789657857476"},{"denom":"ASSET9","index":"0.000006276911852268"}],"last_reward_claim_height":"138"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET11","shares":"339446002.521728049962153529","reward_history":[{"denom":"ASSET0","index":"0.000004891719865072"},{"denom":"ASSET1","index":"0.000040072863779743"},{"denom":"ASSET10","index":"0.000034599304409835"},{"denom":"ASSET11","index":"0.000041579421937236"},{"denom":"ASSET12","index":"0.000039570241536796"},{"denom":"ASSET13","index":"0.000013401388142896"},{"denom":"ASSET14","index":"0.000038360085576662"},{"denom":"ASSET15","index":"0.000031066535588374"},{"denom":"ASSET16","index":"0.000017782615538969"},{"denom":"ASSET17","index":"0.000014378613126430"},{"denom":"ASSET18","index":"0.000005978292997826"},{"denom":"ASSET2","index":"0.000012095614431682"},{"denom":"ASSET3","index":"0.000003474461371717"},{"denom":"ASSET4","index":"0.000032837900054333"},{"denom":"ASSET5","index":"0.000002727819260398"},{"denom":"ASSET6","index":"0.000011131008136035"},{"denom":"ASSET7","index":"0.000017198777658106"},{"denom":"ASSET8","index":"0.000024717029214278"},{"denom":"ASSET9","index":"0.000009931445754815"}],"last_reward_claim_height":"187"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET7","shares":"951459924.314522150895292812","reward_history":[{"denom":"ASSET0","index":"0.000003140601357292"},{"denom":"ASSET1","index":"0.000026678854887219"},{"denom":"ASSET10","index":"0.000021467437308134"},{"denom":"ASSET11","index":"0.000026557150856893"},{"denom":"ASSET12","index":"0.000025409189778577"},{"denom":"ASSET13","index":"0.000008348678217638"},{"denom":"ASSET14","index":"0.000024348515645151"},{"denom":"ASSET15","index":"0.000019305257093893"},{"denom":"ASSET16","index":"0.000011824039078448"},{"denom":"ASSET17","index":"0.000009337874135725"},{"denom":"ASSET18","index":"0.000003825021517438"},{"denom":"ASSET2","index":"0.000008092644314938"},{"denom":"ASSET3","index":"0.000002240059115813"},{"denom":"ASSET4","index":"0.000021626536887159"},{"denom":"ASSET5","index":"0.000001745574888449"},{"denom":"ASSET6","index":"0.000007040920669072"},{"denom":"ASSET7","index":"0.000011079696231301"},{"denom":"ASSET8","index":"0.000015176664815864"},{"denom":"ASSET9","index":"0.000006434669973810"}],"last_reward_claim_height":"153"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET8","shares":"870090165.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004805025087286"},{"denom":"ASSET1","index":"0.000039311495219424"},{"denom":"ASSET10","index":"0.000034296630877274"},{"denom":"ASSET11","index":"0.000040948942659670"},{"denom":"ASSET12","index":"0.000039062814980419"},{"denom":"ASSET13","index":"0.000013225928399705"},{"denom":"ASSET14","index":"0.000037759998178713"},{"denom":"ASSET15","index":"0.000030754756135989"},{"denom":"ASSET16","index":"0.000017432904086886"},{"denom":"ASSET17","index":"0.000014185641332252"},{"denom":"ASSET18","index":"0.000005861258453968"},{"denom":"ASSET2","index":"0.000011877932069586"},{"denom":"ASSET3","index":"0.000003410642838006"},{"denom":"ASSET4","index":"0.000032232767944681"},{"denom":"ASSET5","index":"0.000002679202763892"},{"denom":"ASSET6","index":"0.000010936223638283"},{"denom":"ASSET7","index":"0.000016902039894300"},{"denom":"ASSET8","index":"0.000024412756017582"},{"denom":"ASSET9","index":"0.000009770069208362"}],"last_reward_claim_height":"189"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET13","shares":"410457467.052360319606626035","reward_history":[{"denom":"ASSET0","index":"0.000003140601357292"},{"denom":"ASSET1","index":"0.000026678854887219"},{"denom":"ASSET10","index":"0.000021467437308134"},{"denom":"ASSET11","index":"0.000026557150856893"},{"denom":"ASSET12","index":"0.000025409189778577"},{"denom":"ASSET13","index":"0.000008348678217638"},{"denom":"ASSET14","index":"0.000024348515645151"},{"denom":"ASSET15","index":"0.000019305257093893"},{"denom":"ASSET16","index":"0.000011824039078448"},{"denom":"ASSET17","index":"0.000009337874135725"},{"denom":"ASSET18","index":"0.000003825021517438"},{"denom":"ASSET2","index":"0.000008092644314938"},{"denom":"ASSET3","index":"0.000002240059115813"},{"denom":"ASSET4","index":"0.000021626536887159"},{"denom":"ASSET5","index":"0.000001745574888449"},{"denom":"ASSET6","index":"0.000007040920669072"},{"denom":"ASSET7","index":"0.000011079696231301"},{"denom":"ASSET8","index":"0.000015176664815864"},{"denom":"ASSET9","index":"0.000006434669973810"}],"last_reward_claim_height":"129"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET15","shares":"593852153.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001488486853561"},{"denom":"ASSET1","index":"0.000012409943784184"},{"denom":"ASSET10","index":"0.000008645838046025"},{"denom":"ASSET11","index":"0.000012005445379346"},{"denom":"ASSET12","index":"0.000010810451131374"},{"denom":"ASSET13","index":"0.000003720376180879"},{"denom":"ASSET14","index":"0.000011214949536212"},{"denom":"ASSET15","index":"0.000008018487089665"},{"denom":"ASSET16","index":"0.000005590655707614"},{"denom":"ASSET17","index":"0.000003970139229188"},{"denom":"ASSET18","index":"0.000001891303352350"},{"denom":"ASSET2","index":"0.000003663191375205"},{"denom":"ASSET3","index":"0.000001071374153354"},{"denom":"ASSET4","index":"0.000010085549624159"},{"denom":"ASSET5","index":"0.000000831702541340"},{"denom":"ASSET6","index":"0.000003384835924059"},{"denom":"ASSET7","index":"0.000005184475396726"},{"denom":"ASSET8","index":"0.000006765467082995"},{"denom":"ASSET9","index":"0.000002921470807498"}],"last_reward_claim_height":"113"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET5","shares":"544233951.625870856652441340","reward_history":[{"denom":"ASSET0","index":"0.000004571301207273"},{"denom":"ASSET1","index":"0.000037398660191278"},{"denom":"ASSET10","index":"0.000032687755580364"},{"denom":"ASSET11","index":"0.000038977675941701"},{"denom":"ASSET12","index":"0.000037204809376495"},{"denom":"ASSET13","index":"0.000012591938399451"},{"denom":"ASSET14","index":"0.000035936287844387"},{"denom":"ASSET15","index":"0.000029303202324073"},{"denom":"ASSET16","index":"0.000016581018522800"},{"denom":"ASSET17","index":"0.000013510277910648"},{"denom":"ASSET18","index":"0.000005573586522557"},{"denom":"ASSET2","index":"0.000011303144015187"},{"denom":"ASSET3","index":"0.000003243979553262"},{"denom":"ASSET4","index":"0.000030664188630460"},{"denom":"ASSET5","index":"0.000002548911246263"},{"denom":"ASSET6","index":"0.000010403330372967"},{"denom":"ASSET7","index":"0.000016081578326893"},{"denom":"ASSET8","index":"0.000023245084416019"},{"denom":"ASSET9","index":"0.000009298675918452"}],"last_reward_claim_height":"199"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET7","shares":"10354666.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002978674281858"},{"denom":"ASSET1","index":"0.000025310372422717"},{"denom":"ASSET10","index":"0.000020411345436720"},{"denom":"ASSET11","index":"0.000025206262983954"},{"denom":"ASSET12","index":"0.000024139567910062"},{"denom":"ASSET13","index":"0.000007924745788344"},{"denom":"ASSET14","index":"0.000023102636423037"},{"denom":"ASSET15","index":"0.000018346974201526"},{"denom":"ASSET16","index":"0.000011213830154915"},{"denom":"ASSET17","index":"0.000008871351161454"},{"denom":"ASSET18","index":"0.000003625142276595"},{"denom":"ASSET2","index":"0.000007680838181843"},{"denom":"ASSET3","index":"0.000002123796319816"},{"denom":"ASSET4","index":"0.000020514843977806"},{"denom":"ASSET5","index":"0.000001655567492872"},{"denom":"ASSET6","index":"0.000006676037052519"},{"denom":"ASSET7","index":"0.000010510115662832"},{"denom":"ASSET8","index":"0.000014407133239162"},{"denom":"ASSET9","index":"0.000006107008804836"}],"last_reward_claim_height":"124"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET3","shares":"800053452.172423013096226279","reward_history":[{"denom":"ASSET0","index":"0.000003115193601728"},{"denom":"ASSET1","index":"0.000026433576226141"},{"denom":"ASSET10","index":"0.000021120836274624"},{"denom":"ASSET11","index":"0.000026274076149270"},{"denom":"ASSET12","index":"0.000025063206789151"},{"denom":"ASSET13","index":"0.000008253838888439"},{"denom":"ASSET14","index":"0.000024111622086359"},{"denom":"ASSET15","index":"0.000019020166052921"},{"denom":"ASSET16","index":"0.000011725264187843"},{"denom":"ASSET17","index":"0.000009210335248597"},{"denom":"ASSET18","index":"0.000003802618681808"},{"denom":"ASSET2","index":"0.000008007094168018"},{"denom":"ASSET3","index":"0.000002223045227271"},{"denom":"ASSET4","index":"0.000021430343290469"},{"denom":"ASSET5","index":"0.000001731871182363"},{"denom":"ASSET6","index":"0.000006989160352022"},{"denom":"ASSET7","index":"0.000010981276608696"},{"denom":"ASSET8","index":"0.000015004007461071"},{"denom":"ASSET9","index":"0.000006368316319391"}],"last_reward_claim_height":"182"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET10","shares":"606384239.999999987872315200","reward_history":[{"denom":"ASSET0","index":"0.000001563741356289"},{"denom":"ASSET1","index":"0.000013036816883138"},{"denom":"ASSET10","index":"0.000009082880828100"},{"denom":"ASSET11","index":"0.000012611783735587"},{"denom":"ASSET12","index":"0.000011356772924286"},{"denom":"ASSET13","index":"0.000003908472310400"},{"denom":"ASSET14","index":"0.000011781101207579"},{"denom":"ASSET15","index":"0.000008423480314776"},{"denom":"ASSET16","index":"0.000005872928997340"},{"denom":"ASSET17","index":"0.000004170681814362"},{"denom":"ASSET18","index":"0.000001986659911066"},{"denom":"ASSET2","index":"0.000003848558848473"},{"denom":"ASSET3","index":"0.000001125668219966"},{"denom":"ASSET4","index":"0.000010594814661429"},{"denom":"ASSET5","index":"0.000000873679247744"},{"denom":"ASSET6","index":"0.000003556392613548"},{"denom":"ASSET7","index":"0.000005446486121273"},{"denom":"ASSET8","index":"0.000007106793880903"},{"denom":"ASSET9","index":"0.000003069683843425"}],"last_reward_claim_height":"108"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET13","shares":"75772456.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003115193601728"},{"denom":"ASSET1","index":"0.000026433576226141"},{"denom":"ASSET10","index":"0.000021120836274624"},{"denom":"ASSET11","index":"0.000026274076149270"},{"denom":"ASSET12","index":"0.000025063206789151"},{"denom":"ASSET13","index":"0.000008253838888439"},{"denom":"ASSET14","index":"0.000024111622086359"},{"denom":"ASSET15","index":"0.000019020166052921"},{"denom":"ASSET16","index":"0.000011725264187843"},{"denom":"ASSET17","index":"0.000009210335248597"},{"denom":"ASSET18","index":"0.000003802618681808"},{"denom":"ASSET2","index":"0.000008007094168018"},{"denom":"ASSET3","index":"0.000002223045227271"},{"denom":"ASSET4","index":"0.000021430343290469"},{"denom":"ASSET5","index":"0.000001731871182363"},{"denom":"ASSET6","index":"0.000006989160352022"},{"denom":"ASSET7","index":"0.000010981276608696"},{"denom":"ASSET8","index":"0.000015004007461071"},{"denom":"ASSET9","index":"0.000006368316319391"}],"last_reward_claim_height":"168"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET17","shares":"216412248.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003115193601728"},{"denom":"ASSET1","index":"0.000026433576226141"},{"denom":"ASSET10","index":"0.000021120836274624"},{"denom":"ASSET11","index":"0.000026274076149270"},{"denom":"ASSET12","index":"0.000025063206789151"},{"denom":"ASSET13","index":"0.000008253838888439"},{"denom":"ASSET14","index":"0.000024111622086359"},{"denom":"ASSET15","index":"0.000019020166052921"},{"denom":"ASSET16","index":"0.000011725264187843"},{"denom":"ASSET17","index":"0.000009210335248597"},{"denom":"ASSET18","index":"0.000003802618681808"},{"denom":"ASSET2","index":"0.000008007094168018"},{"denom":"ASSET3","index":"0.000002223045227271"},{"denom":"ASSET4","index":"0.000021430343290469"},{"denom":"ASSET5","index":"0.000001731871182363"},{"denom":"ASSET6","index":"0.000006989160352022"},{"denom":"ASSET7","index":"0.000010981276608696"},{"denom":"ASSET8","index":"0.000015004007461071"},{"denom":"ASSET9","index":"0.000006368316319391"}],"last_reward_claim_height":"161"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET7","shares":"958310631.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003342989987813"},{"denom":"ASSET1","index":"0.000028363859076608"},{"denom":"ASSET10","index":"0.000022643596968544"},{"denom":"ASSET11","index":"0.000028187678804911"},{"denom":"ASSET12","index":"0.000026879157824253"},{"denom":"ASSET13","index":"0.000008853292918908"},{"denom":"ASSET14","index":"0.000025870927331183"},{"denom":"ASSET15","index":"0.000020395094195043"},{"denom":"ASSET16","index":"0.000012581780801373"},{"denom":"ASSET17","index":"0.000009877287329505"},{"denom":"ASSET18","index":"0.000004080927248291"},{"denom":"ASSET2","index":"0.000008590241612281"},{"denom":"ASSET3","index":"0.000002384972961476"},{"denom":"ASSET4","index":"0.000022995501297970"},{"denom":"ASSET5","index":"0.000001858071035633"},{"denom":"ASSET6","index":"0.000007500418590266"},{"denom":"ASSET7","index":"0.000011782462758670"},{"denom":"ASSET8","index":"0.000016095075530395"},{"denom":"ASSET9","index":"0.000006831506736707"}],"last_reward_claim_height":"140"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET14","shares":"502612494.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001688791638136"},{"denom":"ASSET1","index":"0.000014080258863939"},{"denom":"ASSET10","index":"0.000009809129194434"},{"denom":"ASSET11","index":"0.000013620783833550"},{"denom":"ASSET12","index":"0.000012265553395360"},{"denom":"ASSET13","index":"0.000004220322334414"},{"denom":"ASSET14","index":"0.000012723923918464"},{"denom":"ASSET15","index":"0.000009096721995874"},{"denom":"ASSET16","index":"0.000006342080828109"},{"denom":"ASSET17","index":"0.000004504180706554"},{"denom":"ASSET18","index":"0.000002144953146672"},{"denom":"ASSET2","index":"0.000004156260911908"},{"denom":"ASSET3","index":"0.000001214958013048"},{"denom":"ASSET4","index":"0.000011442695468341"},{"denom":"ASSET5","index":"0.000000943249221039"},{"denom":"ASSET6","index":"0.000003840371828516"},{"denom":"ASSET7","index":"0.000005881501290436"},{"denom":"ASSET8","index":"0.000007675221120608"},{"denom":"ASSET9","index":"0.000003314626361051"}],"last_reward_claim_height":"79"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET15","shares":"1000062599.594424179000000000","reward_history":[{"denom":"ASSET0","index":"0.000001688791638136"},{"denom":"ASSET1","index":"0.000014080258863939"},{"denom":"ASSET10","index":"0.000009809129194434"},{"denom":"ASSET11","index":"0.000013620783833550"},{"denom":"ASSET12","index":"0.000012265553395360"},{"denom":"ASSET13","index":"0.000004220322334414"},{"denom":"ASSET14","index":"0.000012723923918464"},{"denom":"ASSET15","index":"0.000009096721995874"},{"denom":"ASSET16","index":"0.000006342080828109"},{"denom":"ASSET17","index":"0.000004504180706554"},{"denom":"ASSET18","index":"0.000002144953146672"},{"denom":"ASSET2","index":"0.000004156260911908"},{"denom":"ASSET3","index":"0.000001214958013048"},{"denom":"ASSET4","index":"0.000011442695468341"},{"denom":"ASSET5","index":"0.000000943249221039"},{"denom":"ASSET6","index":"0.000003840371828516"},{"denom":"ASSET7","index":"0.000005881501290436"},{"denom":"ASSET8","index":"0.000007675221120608"},{"denom":"ASSET9","index":"0.000003314626361051"}],"last_reward_claim_height":"123"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET18","shares":"693864091.005013983499327536","reward_history":[{"denom":"ASSET0","index":"0.000001688791638136"},{"denom":"ASSET1","index":"0.000014080258863939"},{"denom":"ASSET10","index":"0.000009809129194434"},{"denom":"ASSET11","index":"0.000013620783833550"},{"denom":"ASSET12","index":"0.000012265553395360"},{"denom":"ASSET13","index":"0.000004220322334414"},{"denom":"ASSET14","index":"0.000012723923918464"},{"denom":"ASSET15","index":"0.000009096721995874"},{"denom":"ASSET16","index":"0.000006342080828109"},{"denom":"ASSET17","index":"0.000004504180706554"},{"denom":"ASSET18","index":"0.000002144953146672"},{"denom":"ASSET2","index":"0.000004156260911908"},{"denom":"ASSET3","index":"0.000001214958013048"},{"denom":"ASSET4","index":"0.000011442695468341"},{"denom":"ASSET5","index":"0.000000943249221039"},{"denom":"ASSET6","index":"0.000003840371828516"},{"denom":"ASSET7","index":"0.000005881501290436"},{"denom":"ASSET8","index":"0.000007675221120608"},{"denom":"ASSET9","index":"0.000003314626361051"}],"last_reward_claim_height":"112"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET0","shares":"300382533.095664028604554556","reward_history":[{"denom":"ASSET0","index":"0.000003113134051861"},{"denom":"ASSET1","index":"0.000026415094552464"},{"denom":"ASSET10","index":"0.000021090707465492"},{"denom":"ASSET11","index":"0.000026251548228726"},{"denom":"ASSET12","index":"0.000025034408517114"},{"denom":"ASSET13","index":"0.000008245703890405"},{"denom":"ASSET14","index":"0.000024093200316600"},{"denom":"ASSET15","index":"0.000018995578271326"},{"denom":"ASSET16","index":"0.000011717396138812"},{"denom":"ASSET17","index":"0.000009199501798709"},{"denom":"ASSET18","index":"0.000003801350346824"},{"denom":"ASSET2","index":"0.000007999912620195"},{"denom":"ASSET3","index":"0.000002221641081089"},{"denom":"ASSET4","index":"0.000021415082747190"},{"denom":"ASSET5","index":"0.000001730738444371"},{"denom":"ASSET6","index":"0.000006985361363625"},{"denom":"ASSET7","index":"0.000010973556930807"},{"denom":"ASSET8","index":"0.000014990236718633"},{"denom":"ASSET9","index":"0.000006362695679170"}],"last_reward_claim_height":"170"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET2","shares":"543409619.000000000000000000","reward_history":[],"last_reward_claim_height":"25"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET3","shares":"558200981.999999999507234070","reward_history":[],"last_reward_claim_height":"18"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET4","shares":"130048154.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003113134051861"},{"denom":"ASSET1","index":"0.000026415094552464"},{"denom":"ASSET10","index":"0.000021090707465492"},{"denom":"ASSET11","index":"0.000026251548228726"},{"denom":"ASSET12","index":"0.000025034408517114"},{"denom":"ASSET13","index":"0.000008245703890405"},{"denom":"ASSET14","index":"0.000024093200316600"},{"denom":"ASSET15","index":"0.000018995578271326"},{"denom":"ASSET16","index":"0.000011717396138812"},{"denom":"ASSET17","index":"0.000009199501798709"},{"denom":"ASSET18","index":"0.000003801350346824"},{"denom":"ASSET2","index":"0.000007999912620195"},{"denom":"ASSET3","index":"0.000002221641081089"},{"denom":"ASSET4","index":"0.000021415082747190"},{"denom":"ASSET5","index":"0.000001730738444371"},{"denom":"ASSET6","index":"0.000006985361363625"},{"denom":"ASSET7","index":"0.000010973556930807"},{"denom":"ASSET8","index":"0.000014990236718633"},{"denom":"ASSET9","index":"0.000006362695679170"}],"last_reward_claim_height":"142"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET8","shares":"283559595.000000000000000000","reward_history":[],"last_reward_claim_height":"3"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET15","shares":"710015169.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001571496317510"},{"denom":"ASSET1","index":"0.000013101483241955"},{"denom":"ASSET10","index":"0.000009127906315185"},{"denom":"ASSET11","index":"0.000012674221268720"},{"denom":"ASSET12","index":"0.000011413128948859"},{"denom":"ASSET13","index":"0.000003927726401627"},{"denom":"ASSET14","index":"0.000011839579408375"},{"denom":"ASSET15","index":"0.000008464899606481"},{"denom":"ASSET16","index":"0.000005901733523932"},{"denom":"ASSET17","index":"0.000004191468360414"},{"denom":"ASSET18","index":"0.000001996729506447"},{"denom":"ASSET2","index":"0.000003867268629536"},{"denom":"ASSET3","index":"0.000001131250124766"},{"denom":"ASSET4","index":"0.000010647059997798"},{"denom":"ASSET5","index":"0.000000878057844331"},{"denom":"ASSET6","index":"0.000003573906419993"},{"denom":"ASSET7","index":"0.000005473254280118"},{"denom":"ASSET8","index":"0.000007142132243950"},{"denom":"ASSET9","index":"0.000003084563647228"}],"last_reward_claim_height":"105"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET0","shares":"438451061.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003023961266495"},{"denom":"ASSET1","index":"0.000025674667559579"},{"denom":"ASSET10","index":"0.000020567435721356"},{"denom":"ASSET11","index":"0.000025532965784321"},{"denom":"ASSET12","index":"0.000024383768132692"},{"denom":"ASSET13","index":"0.000008022807352722"},{"denom":"ASSET14","index":"0.000023423766496233"},{"denom":"ASSET15","index":"0.000018512228577533"},{"denom":"ASSET16","index":"0.000011384524743973"},{"denom":"ASSET17","index":"0.000008960010456843"},{"denom":"ASSET18","index":"0.000003688974211121"},{"denom":"ASSET2","index":"0.000007780619396113"},{"denom":"ASSET3","index":"0.000002157718690670"},{"denom":"ASSET4","index":"0.000020813357966886"},{"denom":"ASSET5","index":"0.000001681323481152"},{"denom":"ASSET6","index":"0.000006783427048921"},{"denom":"ASSET7","index":"0.000010664665966441"},{"denom":"ASSET8","index":"0.000014584270248941"},{"denom":"ASSET9","index":"0.000006187655866052"}],"last_reward_claim_height":"138"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET1","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003023961266495"},{"denom":"ASSET1","index":"0.000025674667559579"},{"denom":"ASSET10","index":"0.000020567435721356"},{"denom":"ASSET11","index":"0.000025532965784321"},{"denom":"ASSET12","index":"0.000024383768132692"},{"denom":"ASSET13","index":"0.000008022807352722"},{"denom":"ASSET14","index":"0.000023423766496233"},{"denom":"ASSET15","index":"0.000018512228577533"},{"denom":"ASSET16","index":"0.000011384524743973"},{"denom":"ASSET17","index":"0.000008960010456843"},{"denom":"ASSET18","index":"0.000003688974211121"},{"denom":"ASSET2","index":"0.000007780619396113"},{"denom":"ASSET3","index":"0.000002157718690670"},{"denom":"ASSET4","index":"0.000020813357966886"},{"denom":"ASSET5","index":"0.000001681323481152"},{"denom":"ASSET6","index":"0.000006783427048921"},{"denom":"ASSET7","index":"0.000010664665966441"},{"denom":"ASSET8","index":"0.000014584270248941"},{"denom":"ASSET9","index":"0.000006187655866052"}],"last_reward_claim_height":"130"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET12","shares":"57825079.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001486431692511"},{"denom":"ASSET1","index":"0.000012397696164316"},{"denom":"ASSET10","index":"0.000008637613387551"},{"denom":"ASSET11","index":"0.000011993186507636"},{"denom":"ASSET12","index":"0.000010799842650204"},{"denom":"ASSET13","index":"0.000003716482933529"},{"denom":"ASSET14","index":"0.000011203544902380"},{"denom":"ASSET15","index":"0.000008010260087670"},{"denom":"ASSET16","index":"0.000005584816956599"},{"denom":"ASSET17","index":"0.000003965970925374"},{"denom":"ASSET18","index":"0.000001889326540182"},{"denom":"ASSET2","index":"0.000003659157213720"},{"denom":"ASSET3","index":"0.000001070618372770"},{"denom":"ASSET4","index":"0.000010074793405297"},{"denom":"ASSET5","index":"0.000000830819234978"},{"denom":"ASSET6","index":"0.000003381410064224"},{"denom":"ASSET7","index":"0.000005179499895414"},{"denom":"ASSET8","index":"0.000006757975701421"},{"denom":"ASSET9","index":"0.000002918767283230"}],"last_reward_claim_height":"67"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET18","shares":"988813885.000000000000000000","reward_history":[],"last_reward_claim_height":"7"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET8","shares":"728511429.862860038415795690","reward_history":[{"denom":"ASSET0","index":"0.000003488279034648"},{"denom":"ASSET1","index":"0.000029592208548275"},{"denom":"ASSET10","index":"0.000023577626976592"},{"denom":"ASSET11","index":"0.000029395914355993"},{"denom":"ASSET12","index":"0.000028007798530295"},{"denom":"ASSET13","index":"0.000009231498766276"},{"denom":"ASSET14","index":"0.000026986732997785"},{"denom":"ASSET15","index":"0.000021244630549189"},{"denom":"ASSET16","index":"0.000013129960095172"},{"denom":"ASSET17","index":"0.000010292381952670"},{"denom":"ASSET18","index":"0.000004261641431672"},{"denom":"ASSET2","index":"0.000008958343988321"},{"denom":"ASSET3","index":"0.000002489657102823"},{"denom":"ASSET4","index":"0.000023991917258738"},{"denom":"ASSET5","index":"0.000001939742890351"},{"denom":"ASSET6","index":"0.000007829259808535"},{"denom":"ASSET7","index":"0.000012294264842111"},{"denom":"ASSET8","index":"0.000016782088113605"},{"denom":"ASSET9","index":"0.000007125719490615"}],"last_reward_claim_height":"140"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET11","shares":"865143339.612903333472887276","reward_history":[{"denom":"ASSET0","index":"0.000003488279034648"},{"denom":"ASSET1","index":"0.000029592208548275"},{"denom":"ASSET10","index":"0.000023577626976592"},{"denom":"ASSET11","index":"0.000029395914355993"},{"denom":"ASSET12","index":"0.000028007798530295"},{"denom":"ASSET13","index":"0.000009231498766276"},{"denom":"ASSET14","index":"0.000026986732997785"},{"denom":"ASSET15","index":"0.000021244630549189"},{"denom":"ASSET16","index":"0.000013129960095172"},{"denom":"ASSET17","index":"0.000010292381952670"},{"denom":"ASSET18","index":"0.000004261641431672"},{"denom":"ASSET2","index":"0.000008958343988321"},{"denom":"ASSET3","index":"0.000002489657102823"},{"denom":"ASSET4","index":"0.000023991917258738"},{"denom":"ASSET5","index":"0.000001939742890351"},{"denom":"ASSET6","index":"0.000007829259808535"},{"denom":"ASSET7","index":"0.000012294264842111"},{"denom":"ASSET8","index":"0.000016782088113605"},{"denom":"ASSET9","index":"0.000007125719490615"}],"last_reward_claim_height":"180"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET15","shares":"853190031.258241958780492508","reward_history":[{"denom":"ASSET0","index":"0.000003488279034648"},{"denom":"ASSET1","index":"0.000029592208548275"},{"denom":"ASSET10","index":"0.000023577626976592"},{"denom":"ASSET11","index":"0.000029395914355993"},{"denom":"ASSET12","index":"0.000028007798530295"},{"denom":"ASSET13","index":"0.000009231498766276"},{"denom":"ASSET14","index":"0.000026986732997785"},{"denom":"ASSET15","index":"0.000021244630549189"},{"denom":"ASSET16","index":"0.000013129960095172"},{"denom":"ASSET17","index":"0.000010292381952670"},{"denom":"ASSET18","index":"0.000004261641431672"},{"denom":"ASSET2","index":"0.000008958343988321"},{"denom":"ASSET3","index":"0.000002489657102823"},{"denom":"ASSET4","index":"0.000023991917258738"},{"denom":"ASSET5","index":"0.000001939742890351"},{"denom":"ASSET6","index":"0.000007829259808535"},{"denom":"ASSET7","index":"0.000012294264842111"},{"denom":"ASSET8","index":"0.000016782088113605"},{"denom":"ASSET9","index":"0.000007125719490615"}],"last_reward_claim_height":"138"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET3","shares":"889261090.424073409573947394","reward_history":[{"denom":"ASSET0","index":"0.000001504632489095"},{"denom":"ASSET1","index":"0.000012543084148708"},{"denom":"ASSET10","index":"0.000008738830231438"},{"denom":"ASSET11","index":"0.000012134501498699"},{"denom":"ASSET12","index":"0.000010926897843985"},{"denom":"ASSET13","index":"0.000003760573206331"},{"denom":"ASSET14","index":"0.000011335480493994"},{"denom":"ASSET15","index":"0.000008104451906425"},{"denom":"ASSET16","index":"0.000005650267962622"},{"denom":"ASSET17","index":"0.000004012577307899"},{"denom":"ASSET18","index":"0.000001911199106291"},{"denom":"ASSET2","index":"0.000003702780265705"},{"denom":"ASSET3","index":"0.000001083281631273"},{"denom":"ASSET4","index":"0.000010193733911157"},{"denom":"ASSET5","index":"0.000000840685682831"},{"denom":"ASSET6","index":"0.000003421207682886"},{"denom":"ASSET7","index":"0.000005240341290738"},{"denom":"ASSET8","index":"0.000006837711289210"},{"denom":"ASSET9","index":"0.000002953488070376"}],"last_reward_claim_height":"121"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET7","shares":"576431531.000000001366770428","reward_history":[],"last_reward_claim_height":"27"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET12","shares":"519605134.431577193000181438","reward_history":[{"denom":"ASSET0","index":"0.000004555079465444"},{"denom":"ASSET1","index":"0.000037273549067376"},{"denom":"ASSET10","index":"0.000032327684804267"},{"denom":"ASSET11","index":"0.000038750612688183"},{"denom":"ASSET12","index":"0.000036903207760820"},{"denom":"ASSET13","index":"0.000012503456656218"},{"denom":"ASSET14","index":"0.000035748189968481"},{"denom":"ASSET15","index":"0.000029013847228438"},{"denom":"ASSET16","index":"0.000016537106119195"},{"denom":"ASSET17","index":"0.000013404148016668"},{"denom":"ASSET18","index":"0.000005562876043231"},{"denom":"ASSET2","index":"0.000011253659411821"},{"denom":"ASSET3","index":"0.000003234713826536"},{"denom":"ASSET4","index":"0.000030555670866593"},{"denom":"ASSET5","index":"0.000002539995571455"},{"denom":"ASSET6","index":"0.000010366930709039"},{"denom":"ASSET7","index":"0.000016015414742941"},{"denom":"ASSET8","index":"0.000023070708179395"},{"denom":"ASSET9","index":"0.000009250489531619"}],"last_reward_claim_height":"186"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET14","shares":"149830585.000000000000000000","reward_history":[],"last_reward_claim_height":"5"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET18","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001504632489095"},{"denom":"ASSET1","index":"0.000012543084148708"},{"denom":"ASSET10","index":"0.000008738830231438"},{"denom":"ASSET11","index":"0.000012134501498699"},{"denom":"ASSET12","index":"0.000010926897843985"},{"denom":"ASSET13","index":"0.000003760573206331"},{"denom":"ASSET14","index":"0.000011335480493994"},{"denom":"ASSET15","index":"0.000008104451906425"},{"denom":"ASSET16","index":"0.000005650267962622"},{"denom":"ASSET17","index":"0.000004012577307899"},{"denom":"ASSET18","index":"0.000001911199106291"},{"denom":"ASSET2","index":"0.000003702780265705"},{"denom":"ASSET3","index":"0.000001083281631273"},{"denom":"ASSET4","index":"0.000010193733911157"},{"denom":"ASSET5","index":"0.000000840685682831"},{"denom":"ASSET6","index":"0.000003421207682886"},{"denom":"ASSET7","index":"0.000005240341290738"},{"denom":"ASSET8","index":"0.000006837711289210"},{"denom":"ASSET9","index":"0.000002953488070376"}],"last_reward_claim_height":"92"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET5","shares":"869918186.000000000000000000","reward_history":[],"last_reward_claim_height":"52"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET17","shares":"460670983.736086112730864295","reward_history":[{"denom":"ASSET0","index":"0.000003452635056994"},{"denom":"ASSET1","index":"0.000029280443630050"},{"denom":"ASSET10","index":"0.000023297581891953"},{"denom":"ASSET11","index":"0.000029078046899152"},{"denom":"ASSET12","index":"0.000027688393753974"},{"denom":"ASSET13","index":"0.000009130247174920"},{"denom":"ASSET14","index":"0.000026700258191979"},{"denom":"ASSET15","index":"0.000020998119885469"},{"denom":"ASSET16","index":"0.000012993858989816"},{"denom":"ASSET17","index":"0.000010174919177657"},{"denom":"ASSET18","index":"0.000004220034662939"},{"denom":"ASSET2","index":"0.000008861755768133"},{"denom":"ASSET3","index":"0.000002464736347038"},{"denom":"ASSET4","index":"0.000023740327943060"},{"denom":"ASSET5","index":"0.000001919615043943"},{"denom":"ASSET6","index":"0.000007749671229698"},{"denom":"ASSET7","index":"0.000012165961282812"},{"denom":"ASSET8","index":"0.000016598407083950"},{"denom":"ASSET9","index":"0.000007048985746822"}],"last_reward_claim_height":"129"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET18","shares":"412704607.635260829391712580","reward_history":[{"denom":"ASSET0","index":"0.000003452635056994"},{"denom":"ASSET1","index":"0.000029280443630050"},{"denom":"ASSET10","index":"0.000023297581891953"},{"denom":"ASSET11","index":"0.000029078046899152"},{"denom":"ASSET12","index":"0.000027688393753974"},{"denom":"ASSET13","index":"0.000009130247174920"},{"denom":"ASSET14","index":"0.000026700258191979"},{"denom":"ASSET15","index":"0.000020998119885469"},{"denom":"ASSET16","index":"0.000012993858989816"},{"denom":"ASSET17","index":"0.000010174919177657"},{"denom":"ASSET18","index":"0.000004220034662939"},{"denom":"ASSET2","index":"0.000008861755768133"},{"denom":"ASSET3","index":"0.000002464736347038"},{"denom":"ASSET4","index":"0.000023740327943060"},{"denom":"ASSET5","index":"0.000001919615043943"},{"denom":"ASSET6","index":"0.000007749671229698"},{"denom":"ASSET7","index":"0.000012165961282812"},{"denom":"ASSET8","index":"0.000016598407083950"},{"denom":"ASSET9","index":"0.000007048985746822"}],"last_reward_claim_height":"149"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET8","shares":"453534002.000000004988874022","reward_history":[{"denom":"ASSET0","index":"0.000001835550145227"},{"denom":"ASSET1","index":"0.000015324623289081"},{"denom":"ASSET10","index":"0.000010676536631006"},{"denom":"ASSET11","index":"0.000014825027987456"},{"denom":"ASSET12","index":"0.000013348446318211"},{"denom":"ASSET13","index":"0.000004592576069005"},{"denom":"ASSET14","index":"0.000013848041619836"},{"denom":"ASSET15","index":"0.000009899388384035"},{"denom":"ASSET16","index":"0.000006901816574290"},{"denom":"ASSET17","index":"0.000004903435367793"},{"denom":"ASSET18","index":"0.000002335145446851"},{"denom":"ASSET2","index":"0.000004522262656184"},{"denom":"ASSET3","index":"0.000001321152019851"},{"denom":"ASSET4","index":"0.000012452875481226"},{"denom":"ASSET5","index":"0.000001025095544814"},{"denom":"ASSET6","index":"0.000004178097003954"},{"denom":"ASSET7","index":"0.000006402221272666"},{"denom":"ASSET8","index":"0.000008352493301969"},{"denom":"ASSET9","index":"0.000003608188289508"}],"last_reward_claim_height":"87"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET10","shares":"656707188.065272292126319036","reward_history":[{"denom":"ASSET0","index":"0.000001835550145227"},{"denom":"ASSET1","index":"0.000015324623289081"},{"denom":"ASSET10","index":"0.000010676536631006"},{"denom":"ASSET11","index":"0.000014825027987456"},{"denom":"ASSET12","index":"0.000013348446318211"},{"denom":"ASSET13","index":"0.000004592576069005"},{"denom":"ASSET14","index":"0.000013848041619836"},{"denom":"ASSET15","index":"0.000009899388384035"},{"denom":"ASSET16","index":"0.000006901816574290"},{"denom":"ASSET17","index":"0.000004903435367793"},{"denom":"ASSET18","index":"0.000002335145446851"},{"denom":"ASSET2","index":"0.000004522262656184"},{"denom":"ASSET3","index":"0.000001321152019851"},{"denom":"ASSET4","index":"0.000012452875481226"},{"denom":"ASSET5","index":"0.000001025095544814"},{"denom":"ASSET6","index":"0.000004178097003954"},{"denom":"ASSET7","index":"0.000006402221272666"},{"denom":"ASSET8","index":"0.000008352493301969"},{"denom":"ASSET9","index":"0.000003608188289508"}],"last_reward_claim_height":"120"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET12","shares":"213826884.254021158649233031","reward_history":[{"denom":"ASSET0","index":"0.000003336473275634"},{"denom":"ASSET1","index":"0.000028284037775138"},{"denom":"ASSET10","index":"0.000022321061137243"},{"denom":"ASSET11","index":"0.000028041053149272"},{"denom":"ASSET12","index":"0.000026607048139233"},{"denom":"ASSET13","index":"0.000008795774551756"},{"denom":"ASSET14","index":"0.000025776026947277"},{"denom":"ASSET15","index":"0.000020150006768141"},{"denom":"ASSET16","index":"0.000012562977954735"},{"denom":"ASSET17","index":"0.000009778271060189"},{"denom":"ASSET18","index":"0.000004091528532498"},{"denom":"ASSET2","index":"0.000008544798017437"},{"denom":"ASSET3","index":"0.000002382883485470"},{"denom":"ASSET4","index":"0.000022934405116164"},{"denom":"ASSET5","index":"0.000001855148612588"},{"denom":"ASSET6","index":"0.000007498692848558"},{"denom":"ASSET7","index":"0.000011756140274513"},{"denom":"ASSET8","index":"0.000015991743254740"},{"denom":"ASSET9","index":"0.000006799136288961"}],"last_reward_claim_height":"141"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET14","shares":"688664665.572338846542540375","reward_history":[{"denom":"ASSET0","index":"0.000004910041973405"},{"denom":"ASSET1","index":"0.000040228080858216"},{"denom":"ASSET10","index":"0.000034450855857558"},{"denom":"ASSET11","index":"0.000041648044604994"},{"denom":"ASSET12","index":"0.000039516330908444"},{"denom":"ASSET13","index":"0.000013407340157723"},{"denom":"ASSET14","index":"0.000038456388304312"},{"denom":"ASSET15","index":"0.000030975283852804"},{"denom":"ASSET16","index":"0.000017865867984722"},{"denom":"ASSET17","index":"0.000014361867516195"},{"denom":"ASSET18","index":"0.000006016535679771"},{"denom":"ASSET2","index":"0.000012123633162367"},{"denom":"ASSET3","index":"0.000003489488983902"},{"denom":"ASSET4","index":"0.000032962561426957"},{"denom":"ASSET5","index":"0.000002738000911337"},{"denom":"ASSET6","index":"0.000011181500268340"},{"denom":"ASSET7","index":"0.000017261198616714"},{"denom":"ASSET8","index":"0.000024724198292368"},{"denom":"ASSET9","index":"0.000009952657946993"}],"last_reward_claim_height":"190"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET3","shares":"637266853.835688449895439168","reward_history":[{"denom":"ASSET0","index":"0.000003371223111771"},{"denom":"ASSET1","index":"0.000028586584995448"},{"denom":"ASSET10","index":"0.000022716281614844"},{"denom":"ASSET11","index":"0.000028381809067472"},{"denom":"ASSET12","index":"0.000027011101270499"},{"denom":"ASSET13","index":"0.000008910504058238"},{"denom":"ASSET14","index":"0.000026065694327630"},{"denom":"ASSET15","index":"0.000020479714095343"},{"denom":"ASSET16","index":"0.000012688778091614"},{"denom":"ASSET17","index":"0.000009925875585388"},{"denom":"ASSET18","index":"0.000004122881217339"},{"denom":"ASSET2","index":"0.000008649339803247"},{"denom":"ASSET3","index":"0.000002407313457267"},{"denom":"ASSET4","index":"0.000023177863483423"},{"denom":"ASSET5","index":"0.000001874397047373"},{"denom":"ASSET6","index":"0.000007568278053481"},{"denom":"ASSET7","index":"0.000011878402488901"},{"denom":"ASSET8","index":"0.000016198768839280"},{"denom":"ASSET9","index":"0.000006880150170591"}],"last_reward_claim_height":"161"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET10","shares":"793461527.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001764742979644"},{"denom":"ASSET1","index":"0.000014715413525055"},{"denom":"ASSET10","index":"0.000010252344388411"},{"denom":"ASSET11","index":"0.000014235671854472"},{"denom":"ASSET12","index":"0.000012819403806098"},{"denom":"ASSET13","index":"0.000004411268809023"},{"denom":"ASSET14","index":"0.000013298556836595"},{"denom":"ASSET15","index":"0.000009507714678855"},{"denom":"ASSET16","index":"0.000006629264655353"},{"denom":"ASSET17","index":"0.000004707943412672"},{"denom":"ASSET18","index":"0.000002242718729968"},{"denom":"ASSET2","index":"0.000004343575199063"},{"denom":"ASSET3","index":"0.000001270873946982"},{"denom":"ASSET4","index":"0.000011958811999481"},{"denom":"ASSET5","index":"0.000000985972145064"},{"denom":"ASSET6","index":"0.000004013936750564"},{"denom":"ASSET7","index":"0.000006147757064510"},{"denom":"ASSET8","index":"0.000008021987100262"},{"denom":"ASSET9","index":"0.000003464735549761"}],"last_reward_claim_height":"116"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET11","shares":"443403604.853046639995585256","reward_history":[{"denom":"ASSET0","index":"0.000003371223111771"},{"denom":"ASSET1","index":"0.000028586584995448"},{"denom":"ASSET10","index":"0.000022716281614844"},{"denom":"ASSET11","index":"0.000028381809067472"},{"denom":"ASSET12","index":"0.000027011101270499"},{"denom":"ASSET13","index":"0.000008910504058238"},{"denom":"ASSET14","index":"0.000026065694327630"},{"denom":"ASSET15","index":"0.000020479714095343"},{"denom":"ASSET16","index":"0.000012688778091614"},{"denom":"ASSET17","index":"0.000009925875585388"},{"denom":"ASSET18","index":"0.000004122881217339"},{"denom":"ASSET2","index":"0.000008649339803247"},{"denom":"ASSET3","index":"0.000002407313457267"},{"denom":"ASSET4","index":"0.000023177863483423"},{"denom":"ASSET5","index":"0.000001874397047373"},{"denom":"ASSET6","index":"0.000007568278053481"},{"denom":"ASSET7","index":"0.000011878402488901"},{"denom":"ASSET8","index":"0.000016198768839280"},{"denom":"ASSET9","index":"0.000006880150170591"}],"last_reward_claim_height":"148"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET3","shares":"620783332.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003090388166914"},{"denom":"ASSET1","index":"0.000026235396530584"},{"denom":"ASSET10","index":"0.000021016328726441"},{"denom":"ASSET11","index":"0.000026091077525301"},{"denom":"ASSET12","index":"0.000024916432469284"},{"denom":"ASSET13","index":"0.000008198423394567"},{"denom":"ASSET14","index":"0.000023935350029219"},{"denom":"ASSET15","index":"0.000018916111125702"},{"denom":"ASSET16","index":"0.000011633439861257"},{"denom":"ASSET17","index":"0.000009156707623184"},{"denom":"ASSET18","index":"0.000003769226369030"},{"denom":"ASSET2","index":"0.000007950992094695"},{"denom":"ASSET3","index":"0.000002205065882760"},{"denom":"ASSET4","index":"0.000021268551776440"},{"denom":"ASSET5","index":"0.000001717872208784"},{"denom":"ASSET6","index":"0.000006931889619894"},{"denom":"ASSET7","index":"0.000010897757198785"},{"denom":"ASSET8","index":"0.000014903243728132"},{"denom":"ASSET9","index":"0.000006323427167640"}],"last_reward_claim_height":"164"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET15","shares":"25885313.000000000000000000","reward_history":[],"last_reward_claim_height":"3"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET17","shares":"651903591.316343782966918720","reward_history":[{"denom":"ASSET0","index":"0.000004627764027420"},{"denom":"ASSET1","index":"0.000037903536607636"},{"denom":"ASSET10","index":"0.000032865942220262"},{"denom":"ASSET11","index":"0.000039383898049886"},{"denom":"ASSET12","index":"0.000037527333381682"},{"denom":"ASSET13","index":"0.000012703297183668"},{"denom":"ASSET14","index":"0.000036322948545804"},{"denom":"ASSET15","index":"0.000029491335058024"},{"denom":"ASSET16","index":"0.000016814012542586"},{"denom":"ASSET17","index":"0.000013634338949011"},{"denom":"ASSET18","index":"0.000005649814365271"},{"denom":"ASSET2","index":"0.000011447251219906"},{"denom":"ASSET3","index":"0.000003286184110324"},{"denom":"ASSET4","index":"0.000031065113175814"},{"denom":"ASSET5","index":"0.000002580192699817"},{"denom":"ASSET6","index":"0.000010529610832732"},{"denom":"ASSET7","index":"0.000016275676858161"},{"denom":"ASSET8","index":"0.000023433995869400"},{"denom":"ASSET9","index":"0.000009404185101028"}],"last_reward_claim_height":"196"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET3","shares":"810341369.519769282631356298","reward_history":[{"denom":"ASSET0","index":"0.000004580582438832"},{"denom":"ASSET1","index":"0.000037483984288658"},{"denom":"ASSET10","index":"0.000032499660214303"},{"denom":"ASSET11","index":"0.000038965700064047"},{"denom":"ASSET12","index":"0.000037103230568829"},{"denom":"ASSET13","index":"0.000012572310863615"},{"denom":"ASSET14","index":"0.000035948606907820"},{"denom":"ASSET15","index":"0.000029169852951154"},{"denom":"ASSET16","index":"0.000016631043190223"},{"denom":"ASSET17","index":"0.000013476854922794"},{"denom":"ASSET18","index":"0.000005595251304571"},{"denom":"ASSET2","index":"0.000011316458569232"},{"denom":"ASSET3","index":"0.000003252952025465"},{"denom":"ASSET4","index":"0.000030728353795456"},{"denom":"ASSET5","index":"0.000002554509941654"},{"denom":"ASSET6","index":"0.000010426461044140"},{"denom":"ASSET7","index":"0.000016105643609974"},{"denom":"ASSET8","index":"0.000023198729331950"},{"denom":"ASSET9","index":"0.000009302269752593"}],"last_reward_claim_height":"188"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET9","shares":"807005050.000000000000000000","reward_history":[],"last_reward_claim_height":"48"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET11","shares":"416654636.297524019221511784","reward_history":[{"denom":"ASSET0","index":"0.000003032310940473"},{"denom":"ASSET1","index":"0.000025733484746235"},{"denom":"ASSET10","index":"0.000020566326171769"},{"denom":"ASSET11","index":"0.000025579130700492"},{"denom":"ASSET12","index":"0.000024402998631681"},{"denom":"ASSET13","index":"0.000008035434808363"},{"denom":"ASSET14","index":"0.000023473377840860"},{"denom":"ASSET15","index":"0.000018519821992016"},{"denom":"ASSET16","index":"0.000011413808805814"},{"denom":"ASSET17","index":"0.000008967671528488"},{"denom":"ASSET18","index":"0.000003701450923042"},{"denom":"ASSET2","index":"0.000007795399667781"},{"denom":"ASSET3","index":"0.000002164126947351"},{"denom":"ASSET4","index":"0.000020862528644023"},{"denom":"ASSET5","index":"0.000001685967393794"},{"denom":"ASSET6","index":"0.000006803442800114"},{"denom":"ASSET7","index":"0.000010689840259007"},{"denom":"ASSET8","index":"0.000014607710652032"},{"denom":"ASSET9","index":"0.000006199747658625"}],"last_reward_claim_height":"126"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET15","shares":"24505362.000000000000000000","reward_history":[],"last_reward_claim_height":"4"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET1","shares":"979342912.999999057872117694","reward_history":[{"denom":"ASSET0","index":"0.000001387661284101"},{"denom":"ASSET1","index":"0.000011573014587468"},{"denom":"ASSET10","index":"0.000008062929395432"},{"denom":"ASSET11","index":"0.000011195232526081"},{"denom":"ASSET12","index":"0.000010081345808669"},{"denom":"ASSET13","index":"0.000003469153210252"},{"denom":"ASSET14","index":"0.000010458456853962"},{"denom":"ASSET15","index":"0.000007477132344649"},{"denom":"ASSET16","index":"0.000005213124040705"},{"denom":"ASSET17","index":"0.000003702666811251"},{"denom":"ASSET18","index":"0.000001763430297203"},{"denom":"ASSET2","index":"0.000003416142938760"},{"denom":"ASSET3","index":"0.000000999142965196"},{"denom":"ASSET4","index":"0.000009404961585085"},{"denom":"ASSET5","index":"0.000000775694605619"},{"denom":"ASSET6","index":"0.000003156459710063"},{"denom":"ASSET7","index":"0.000004834670963223"},{"denom":"ASSET8","index":"0.000006308893323556"},{"denom":"ASSET9","index":"0.000002724996361089"}],"last_reward_claim_height":"73"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET13","shares":"258284219.000000005423968599","reward_history":[{"denom":"ASSET0","index":"0.000002847838387483"},{"denom":"ASSET1","index":"0.000024182680336096"},{"denom":"ASSET10","index":"0.000019393227963423"},{"denom":"ASSET11","index":"0.000024054653395269"},{"denom":"ASSET12","index":"0.000022982316432831"},{"denom":"ASSET13","index":"0.000007558836235579"},{"denom":"ASSET14","index":"0.000022064079622497"},{"denom":"ASSET15","index":"0.000017450899901336"},{"denom":"ASSET16","index":"0.000010721434414440"},{"denom":"ASSET17","index":"0.000008446187739031"},{"denom":"ASSET18","index":"0.000003472449339717"},{"denom":"ASSET2","index":"0.000007330038539196"},{"denom":"ASSET3","index":"0.000002031951160271"},{"denom":"ASSET4","index":"0.000019603371773062"},{"denom":"ASSET5","index":"0.000001583403578691"},{"denom":"ASSET6","index":"0.000006387295602350"},{"denom":"ASSET7","index":"0.000010043914419286"},{"denom":"ASSET8","index":"0.000013741733556815"},{"denom":"ASSET9","index":"0.000005829813216311"}],"last_reward_claim_height":"162"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET16","shares":"753882794.960682396146315483","reward_history":[{"denom":"ASSET0","index":"0.000001387661284101"},{"denom":"ASSET1","index":"0.000011573014587468"},{"denom":"ASSET10","index":"0.000008062929395432"},{"denom":"ASSET11","index":"0.000011195232526081"},{"denom":"ASSET12","index":"0.000010081345808669"},{"denom":"ASSET13","index":"0.000003469153210252"},{"denom":"ASSET14","index":"0.000010458456853962"},{"denom":"ASSET15","index":"0.000007477132344649"},{"denom":"ASSET16","index":"0.000005213124040705"},{"denom":"ASSET17","index":"0.000003702666811251"},{"denom":"ASSET18","index":"0.000001763430297203"},{"denom":"ASSET2","index":"0.000003416142938760"},{"denom":"ASSET3","index":"0.000000999142965196"},{"denom":"ASSET4","index":"0.000009404961585085"},{"denom":"ASSET5","index":"0.000000775694605619"},{"denom":"ASSET6","index":"0.000003156459710063"},{"denom":"ASSET7","index":"0.000004834670963223"},{"denom":"ASSET8","index":"0.000006308893323556"},{"denom":"ASSET9","index":"0.000002724996361089"}],"last_reward_claim_height":"65"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET1","shares":"780590332.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001740203165372"},{"denom":"ASSET1","index":"0.000014506985633466"},{"denom":"ASSET10","index":"0.000010106727386233"},{"denom":"ASSET11","index":"0.000014033828203465"},{"denom":"ASSET12","index":"0.000012637643303754"},{"denom":"ASSET13","index":"0.000004348390877948"},{"denom":"ASSET14","index":"0.000013109742216014"},{"denom":"ASSET15","index":"0.000009373174592071"},{"denom":"ASSET16","index":"0.000006535288529808"},{"denom":"ASSET17","index":"0.000004640541774324"},{"denom":"ASSET18","index":"0.000002210185042151"},{"denom":"ASSET2","index":"0.000004281704260297"},{"denom":"ASSET3","index":"0.000001252226487004"},{"denom":"ASSET4","index":"0.000011789770593618"},{"denom":"ASSET5","index":"0.000000971719285773"},{"denom":"ASSET6","index":"0.000003956739313965"},{"denom":"ASSET7","index":"0.000006060014064326"},{"denom":"ASSET8","index":"0.000007908186039228"},{"denom":"ASSET9","index":"0.000003415836748573"}],"last_reward_claim_height":"81"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET10","shares":"963498140.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003351161845380"},{"denom":"ASSET1","index":"0.000028416485386018"},{"denom":"ASSET10","index":"0.000022605276372189"},{"denom":"ASSET11","index":"0.000028218825237526"},{"denom":"ASSET12","index":"0.000026868556551399"},{"denom":"ASSET13","index":"0.000008859853422879"},{"denom":"ASSET14","index":"0.000025912194276628"},{"denom":"ASSET15","index":"0.000020375555431981"},{"denom":"ASSET16","index":"0.000012611404420708"},{"denom":"ASSET17","index":"0.000009873044520717"},{"denom":"ASSET18","index":"0.000004095473642305"},{"denom":"ASSET2","index":"0.000008599384819082"},{"denom":"ASSET3","index":"0.000002391571176633"},{"denom":"ASSET4","index":"0.000023040021162794"},{"denom":"ASSET5","index":"0.000001862805125681"},{"denom":"ASSET6","index":"0.000007520693553142"},{"denom":"ASSET7","index":"0.000011806544930596"},{"denom":"ASSET8","index":"0.000016107343127742"},{"denom":"ASSET9","index":"0.000006840485865179"}],"last_reward_claim_height":"175"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET18","shares":"707022891.720605786982020811","reward_history":[{"denom":"ASSET0","index":"0.000001740203165372"},{"denom":"ASSET1","index":"0.000014506985633466"},{"denom":"ASSET10","index":"0.000010106727386233"},{"denom":"ASSET11","index":"0.000014033828203465"},{"denom":"ASSET12","index":"0.000012637643303754"},{"denom":"ASSET13","index":"0.000004348390877948"},{"denom":"ASSET14","index":"0.000013109742216014"},{"denom":"ASSET15","index":"0.000009373174592071"},{"denom":"ASSET16","index":"0.000006535288529808"},{"denom":"ASSET17","index":"0.000004640541774324"},{"denom":"ASSET18","index":"0.000002210185042151"},{"denom":"ASSET2","index":"0.000004281704260297"},{"denom":"ASSET3","index":"0.000001252226487004"},{"denom":"ASSET4","index":"0.000011789770593618"},{"denom":"ASSET5","index":"0.000000971719285773"},{"denom":"ASSET6","index":"0.000003956739313965"},{"denom":"ASSET7","index":"0.000006060014064326"},{"denom":"ASSET8","index":"0.000007908186039228"},{"denom":"ASSET9","index":"0.000003415836748573"}],"last_reward_claim_height":"82"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET0","shares":"532624511.155719882782251245","reward_history":[{"denom":"ASSET0","index":"0.000003408995344605"},{"denom":"ASSET1","index":"0.000028940875589883"},{"denom":"ASSET10","index":"0.000023121939135123"},{"denom":"ASSET11","index":"0.000028765460883304"},{"denom":"ASSET12","index":"0.000027437813762181"},{"denom":"ASSET13","index":"0.000009035078182388"},{"denom":"ASSET14","index":"0.000026397840013038"},{"denom":"ASSET15","index":"0.000020822021063845"},{"denom":"ASSET16","index":"0.000012835900360827"},{"denom":"ASSET17","index":"0.000010082289518918"},{"denom":"ASSET18","index":"0.000004163537456367"},{"denom":"ASSET2","index":"0.000008764373535196"},{"denom":"ASSET3","index":"0.000002432999591430"},{"denom":"ASSET4","index":"0.000023461370966582"},{"denom":"ASSET5","index":"0.000001895172356369"},{"denom":"ASSET6","index":"0.000007651446569151"},{"denom":"ASSET7","index":"0.000012022926111771"},{"denom":"ASSET8","index":"0.000016426068411072"},{"denom":"ASSET9","index":"0.000006969965423669"}],"last_reward_claim_height":"165"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET6","shares":"738468180.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001711866379191"},{"denom":"ASSET1","index":"0.000014286095556473"},{"denom":"ASSET10","index":"0.000009953932372868"},{"denom":"ASSET11","index":"0.000013820467901333"},{"denom":"ASSET12","index":"0.000012444127332464"},{"denom":"ASSET13","index":"0.000004281948436482"},{"denom":"ASSET14","index":"0.000012909754987604"},{"denom":"ASSET15","index":"0.000009230383516596"},{"denom":"ASSET16","index":"0.000006434335097252"},{"denom":"ASSET17","index":"0.000004569541988186"},{"denom":"ASSET18","index":"0.000002177494034331"},{"denom":"ASSET2","index":"0.000004215756269820"},{"denom":"ASSET3","index":"0.000001232543793017"},{"denom":"ASSET4","index":"0.000011608736539419"},{"denom":"ASSET5","index":"0.000000956362683841"},{"denom":"ASSET6","index":"0.000003896207879038"},{"denom":"ASSET7","index":"0.000005968707442112"},{"denom":"ASSET8","index":"0.000007787850781065"},{"denom":"ASSET9","index":"0.000003362105568731"}],"last_reward_claim_height":"90"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET7","shares":"881903681.000000014110458896","reward_history":[],"last_reward_claim_height":"52"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET18","shares":"35675373.101813573586257994","reward_history":[{"denom":"ASSET0","index":"0.000003408995344605"},{"denom":"ASSET1","index":"0.000028940875589883"},{"denom":"ASSET10","index":"0.000023121939135123"},{"denom":"ASSET11","index":"0.000028765460883304"},{"denom":"ASSET12","index":"0.000027437813762181"},{"denom":"ASSET13","index":"0.000009035078182388"},{"denom":"ASSET14","index":"0.000026397840013038"},{"denom":"ASSET15","index":"0.000020822021063845"},{"denom":"ASSET16","index":"0.000012835900360827"},{"denom":"ASSET17","index":"0.000010082289518918"},{"denom":"ASSET18","index":"0.000004163537456367"},{"denom":"ASSET2","index":"0.000008764373535196"},{"denom":"ASSET3","index":"0.000002432999591430"},{"denom":"ASSET4","index":"0.000023461370966582"},{"denom":"ASSET5","index":"0.000001895172356369"},{"denom":"ASSET6","index":"0.000007651446569151"},{"denom":"ASSET7","index":"0.000012022926111771"},{"denom":"ASSET8","index":"0.000016426068411072"},{"denom":"ASSET9","index":"0.000006969965423669"}],"last_reward_claim_height":"160"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET2","shares":"406245510.033379312870510784","reward_history":[{"denom":"ASSET0","index":"0.000002975317591563"},{"denom":"ASSET1","index":"0.000025265738469637"},{"denom":"ASSET10","index":"0.000020245724387946"},{"denom":"ASSET11","index":"0.000025128558675417"},{"denom":"ASSET12","index":"0.000023998925764885"},{"denom":"ASSET13","index":"0.000007895668684136"},{"denom":"ASSET14","index":"0.000023051238668493"},{"denom":"ASSET15","index":"0.000018221178423268"},{"denom":"ASSET16","index":"0.000011202197653725"},{"denom":"ASSET17","index":"0.000008818540737002"},{"denom":"ASSET18","index":"0.000003629428323701"},{"denom":"ASSET2","index":"0.000007657107369447"},{"denom":"ASSET3","index":"0.000002122660280404"},{"denom":"ASSET4","index":"0.000020482509156357"},{"denom":"ASSET5","index":"0.000001654309607539"},{"denom":"ASSET6","index":"0.000006675356935536"},{"denom":"ASSET7","index":"0.000010494215679887"},{"denom":"ASSET8","index":"0.000014353927855523"},{"denom":"ASSET9","index":"0.000006089535217587"}],"last_reward_claim_height":"157"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET11","shares":"622922364.007879666615447500","reward_history":[{"denom":"ASSET0","index":"0.000001459800105667"},{"denom":"ASSET1","index":"0.000012176396665923"},{"denom":"ASSET10","index":"0.000008484162206626"},{"denom":"ASSET11","index":"0.000011779823335110"},{"denom":"ASSET12","index":"0.000010607197020722"},{"denom":"ASSET13","index":"0.000003650070053435"},{"denom":"ASSET14","index":"0.000011003770351536"},{"denom":"ASSET15","index":"0.000007867650218206"},{"denom":"ASSET16","index":"0.000005484791497715"},{"denom":"ASSET17","index":"0.000003895079438851"},{"denom":"ASSET18","index":"0.000001855233857943"},{"denom":"ASSET2","index":"0.000003594230705131"},{"denom":"ASSET3","index":"0.000001050691410948"},{"denom":"ASSET4","index":"0.000009896100013746"},{"denom":"ASSET5","index":"0.000000815938232363"},{"denom":"ASSET6","index":"0.000003321871434831"},{"denom":"ASSET7","index":"0.000005087078588365"},{"denom":"ASSET8","index":"0.000006638044976977"},{"denom":"ASSET9","index":"0.000002867179598640"}],"last_reward_claim_height":"97"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET13","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002975317591563"},{"denom":"ASSET1","index":"0.000025265738469637"},{"denom":"ASSET10","index":"0.000020245724387946"},{"denom":"ASSET11","index":"0.000025128558675417"},{"denom":"ASSET12","index":"0.000023998925764885"},{"denom":"ASSET13","index":"0.000007895668684136"},{"denom":"ASSET14","index":"0.000023051238668493"},{"denom":"ASSET15","index":"0.000018221178423268"},{"denom":"ASSET16","index":"0.000011202197653725"},{"denom":"ASSET17","index":"0.000008818540737002"},{"denom":"ASSET18","index":"0.000003629428323701"},{"denom":"ASSET2","index":"0.000007657107369447"},{"denom":"ASSET3","index":"0.000002122660280404"},{"denom":"ASSET4","index":"0.000020482509156357"},{"denom":"ASSET5","index":"0.000001654309607539"},{"denom":"ASSET6","index":"0.000006675356935536"},{"denom":"ASSET7","index":"0.000010494215679887"},{"denom":"ASSET8","index":"0.000014353927855523"},{"denom":"ASSET9","index":"0.000006089535217587"}],"last_reward_claim_height":"169"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET1","shares":"163357744.199405190236833366","reward_history":[{"denom":"ASSET0","index":"0.000003091273620954"},{"denom":"ASSET1","index":"0.000026212594205506"},{"denom":"ASSET10","index":"0.000020831747389799"},{"denom":"ASSET11","index":"0.000026024829344923"},{"denom":"ASSET12","index":"0.000024768925461013"},{"denom":"ASSET13","index":"0.000008170539761157"},{"denom":"ASSET14","index":"0.000023900540063840"},{"denom":"ASSET15","index":"0.000018780610027247"},{"denom":"ASSET16","index":"0.000011634658240098"},{"denom":"ASSET17","index":"0.000009101405984603"},{"denom":"ASSET18","index":"0.000003780149264156"},{"denom":"ASSET2","index":"0.000007930960667726"},{"denom":"ASSET3","index":"0.000002206123035767"},{"denom":"ASSET4","index":"0.000021253166889363"},{"denom":"ASSET5","index":"0.000001718500807532"},{"denom":"ASSET6","index":"0.000006939076737962"},{"denom":"ASSET7","index":"0.000010891166816552"},{"denom":"ASSET8","index":"0.000014853628574871"},{"denom":"ASSET9","index":"0.000006308302102729"}],"last_reward_claim_height":"162"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET9","shares":"586319477.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004712304863435"},{"denom":"ASSET1","index":"0.000038516862421739"},{"denom":"ASSET10","index":"0.000033327636856773"},{"denom":"ASSET11","index":"0.000040042769224492"},{"denom":"ASSET12","index":"0.000038067581160411"},{"denom":"ASSET13","index":"0.000012921267350758"},{"denom":"ASSET14","index":"0.000036963543894220"},{"denom":"ASSET15","index":"0.000029932685024411"},{"denom":"ASSET16","index":"0.000017097625110945"},{"denom":"ASSET17","index":"0.000013823249488614"},{"denom":"ASSET18","index":"0.000005763288311346"},{"denom":"ASSET2","index":"0.000011617908519758"},{"denom":"ASSET3","index":"0.000003346339926665"},{"denom":"ASSET4","index":"0.000031583806671954"},{"denom":"ASSET5","index":"0.000002627997258659"},{"denom":"ASSET6","index":"0.000010733107053643"},{"denom":"ASSET7","index":"0.000016562310450612"},{"denom":"ASSET8","index":"0.000023849612256254"},{"denom":"ASSET9","index":"0.000009557057241669"}],"last_reward_claim_height":"199"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET16","shares":"599209949.697640469978969237","reward_history":[{"denom":"ASSET0","index":"0.000003091273620954"},{"denom":"ASSET1","index":"0.000026212594205506"},{"denom":"ASSET10","index":"0.000020831747389799"},{"denom":"ASSET11","index":"0.000026024829344923"},{"denom":"ASSET12","index":"0.000024768925461013"},{"denom":"ASSET13","index":"0.000008170539761157"},{"denom":"ASSET14","index":"0.000023900540063840"},{"denom":"ASSET15","index":"0.000018780610027247"},{"denom":"ASSET16","index":"0.000011634658240098"},{"denom":"ASSET17","index":"0.000009101405984603"},{"denom":"ASSET18","index":"0.000003780149264156"},{"denom":"ASSET2","index":"0.000007930960667726"},{"denom":"ASSET3","index":"0.000002206123035767"},{"denom":"ASSET4","index":"0.000021253166889363"},{"denom":"ASSET5","index":"0.000001718500807532"},{"denom":"ASSET6","index":"0.000006939076737962"},{"denom":"ASSET7","index":"0.000010891166816552"},{"denom":"ASSET8","index":"0.000014853628574871"},{"denom":"ASSET9","index":"0.000006308302102729"}],"last_reward_claim_height":"182"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET0","shares":"636873616.853550050866279970","reward_history":[{"denom":"ASSET0","index":"0.000001496654334782"},{"denom":"ASSET1","index":"0.000012477377024436"},{"denom":"ASSET10","index":"0.000008693096469902"},{"denom":"ASSET11","index":"0.000012070207597683"},{"denom":"ASSET12","index":"0.000010869145414891"},{"denom":"ASSET13","index":"0.000003740467488528"},{"denom":"ASSET14","index":"0.000011275146493218"},{"denom":"ASSET15","index":"0.000008061604145195"},{"denom":"ASSET16","index":"0.000005620924281527"},{"denom":"ASSET17","index":"0.000003991662400298"},{"denom":"ASSET18","index":"0.000001901487064682"},{"denom":"ASSET2","index":"0.000003683218415613"},{"denom":"ASSET3","index":"0.000001077217249546"},{"denom":"ASSET4","index":"0.000010139511822330"},{"denom":"ASSET5","index":"0.000000835953299404"},{"denom":"ASSET6","index":"0.000003403398967385"},{"denom":"ASSET7","index":"0.000005212586506346"},{"denom":"ASSET8","index":"0.000006801540366848"},{"denom":"ASSET9","index":"0.000002937812119289"}],"last_reward_claim_height":"93"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET1","shares":"85581307.094207133738266359","reward_history":[{"denom":"ASSET0","index":"0.000003012098530886"},{"denom":"ASSET1","index":"0.000025562058034330"},{"denom":"ASSET10","index":"0.000020450222858637"},{"denom":"ASSET11","index":"0.000025414193224582"},{"denom":"ASSET12","index":"0.000024256065084933"},{"denom":"ASSET13","index":"0.000007984561416691"},{"denom":"ASSET14","index":"0.000023318358139730"},{"denom":"ASSET15","index":"0.000018411259079989"},{"denom":"ASSET16","index":"0.000011336678183578"},{"denom":"ASSET17","index":"0.000008913774138499"},{"denom":"ASSET18","index":"0.000003674960609183"},{"denom":"ASSET2","index":"0.000007744948932800"},{"denom":"ASSET3","index":"0.000002148867969989"},{"denom":"ASSET4","index":"0.000020722540912428"},{"denom":"ASSET5","index":"0.000001674229864542"},{"denom":"ASSET6","index":"0.000006756080138401"},{"denom":"ASSET7","index":"0.000010618450136599"},{"denom":"ASSET8","index":"0.000014514789998911"},{"denom":"ASSET9","index":"0.000006159565713194"}],"last_reward_claim_height":"176"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET6","shares":"438227472.622679196898814160","reward_history":[{"denom":"ASSET0","index":"0.000003012098530886"},{"denom":"ASSET1","index":"0.000025562058034330"},{"denom":"ASSET10","index":"0.000020450222858637"},{"denom":"ASSET11","index":"0.000025414193224582"},{"denom":"ASSET12","index":"0.000024256065084933"},{"denom":"ASSET13","index":"0.000007984561416691"},{"denom":"ASSET14","index":"0.000023318358139730"},{"denom":"ASSET15","index":"0.000018411259079989"},{"denom":"ASSET16","index":"0.000011336678183578"},{"denom":"ASSET17","index":"0.000008913774138499"},{"denom":"ASSET18","index":"0.000003674960609183"},{"denom":"ASSET2","index":"0.000007744948932800"},{"denom":"ASSET3","index":"0.000002148867969989"},{"denom":"ASSET4","index":"0.000020722540912428"},{"denom":"ASSET5","index":"0.000001674229864542"},{"denom":"ASSET6","index":"0.000006756080138401"},{"denom":"ASSET7","index":"0.000010618450136599"},{"denom":"ASSET8","index":"0.000014514789998911"},{"denom":"ASSET9","index":"0.000006159565713194"}],"last_reward_claim_height":"155"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET10","shares":"276449808.516105731704704286","reward_history":[{"denom":"ASSET0","index":"0.000003012098530886"},{"denom":"ASSET1","index":"0.000025562058034330"},{"denom":"ASSET10","index":"0.000020450222858637"},{"denom":"ASSET11","index":"0.000025414193224582"},{"denom":"ASSET12","index":"0.000024256065084933"},{"denom":"ASSET13","index":"0.000007984561416691"},{"denom":"ASSET14","index":"0.000023318358139730"},{"denom":"ASSET15","index":"0.000018411259079989"},{"denom":"ASSET16","index":"0.000011336678183578"},{"denom":"ASSET17","index":"0.000008913774138499"},{"denom":"ASSET18","index":"0.000003674960609183"},{"denom":"ASSET2","index":"0.000007744948932800"},{"denom":"ASSET3","index":"0.000002148867969989"},{"denom":"ASSET4","index":"0.000020722540912428"},{"denom":"ASSET5","index":"0.000001674229864542"},{"denom":"ASSET6","index":"0.000006756080138401"},{"denom":"ASSET7","index":"0.000010618450136599"},{"denom":"ASSET8","index":"0.000014514789998911"},{"denom":"ASSET9","index":"0.000006159565713194"}],"last_reward_claim_height":"182"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET0","shares":"232456814.817828212412971147","reward_history":[{"denom":"ASSET0","index":"0.000002995147819628"},{"denom":"ASSET1","index":"0.000025426980115999"},{"denom":"ASSET10","index":"0.000020372034738960"},{"denom":"ASSET11","index":"0.000025287989623967"},{"denom":"ASSET12","index":"0.000024150599022202"},{"denom":"ASSET13","index":"0.000007946076587902"},{"denom":"ASSET14","index":"0.000023198024872944"},{"denom":"ASSET15","index":"0.000018335727027304"},{"denom":"ASSET16","index":"0.000011274635486105"},{"denom":"ASSET17","index":"0.000008875015361763"},{"denom":"ASSET18","index":"0.000003653177061349"},{"denom":"ASSET2","index":"0.000007706361997735"},{"denom":"ASSET3","index":"0.000002137037997503"},{"denom":"ASSET4","index":"0.000020612735071168"},{"denom":"ASSET5","index":"0.000001665450131859"},{"denom":"ASSET6","index":"0.000006718182222688"},{"denom":"ASSET7","index":"0.000010561635089256"},{"denom":"ASSET8","index":"0.000014445035982826"},{"denom":"ASSET9","index":"0.000006128513210961"}],"last_reward_claim_height":"155"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET7","shares":"756106813.566784486016391596","reward_history":[{"denom":"ASSET0","index":"0.000002995147819628"},{"denom":"ASSET1","index":"0.000025426980115999"},{"denom":"ASSET10","index":"0.000020372034738960"},{"denom":"ASSET11","index":"0.000025287989623967"},{"denom":"ASSET12","index":"0.000024150599022202"},{"denom":"ASSET13","index":"0.000007946076587902"},{"denom":"ASSET14","index":"0.000023198024872944"},{"denom":"ASSET15","index":"0.000018335727027304"},{"denom":"ASSET16","index":"0.000011274635486105"},{"denom":"ASSET17","index":"0.000008875015361763"},{"denom":"ASSET18","index":"0.000003653177061349"},{"denom":"ASSET2","index":"0.000007706361997735"},{"denom":"ASSET3","index":"0.000002137037997503"},{"denom":"ASSET4","index":"0.000020612735071168"},{"denom":"ASSET5","index":"0.000001665450131859"},{"denom":"ASSET6","index":"0.000006718182222688"},{"denom":"ASSET7","index":"0.000010561635089256"},{"denom":"ASSET8","index":"0.000014445035982826"},{"denom":"ASSET9","index":"0.000006128513210961"}],"last_reward_claim_height":"124"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET10","shares":"81345918.000000004029178187","reward_history":[],"last_reward_claim_height":"23"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET15","shares":"305011128.547553941272162840","reward_history":[{"denom":"ASSET0","index":"0.000004451028909096"},{"denom":"ASSET1","index":"0.000036477295358036"},{"denom":"ASSET10","index":"0.000031594285637271"},{"denom":"ASSET11","index":"0.000037877235122777"},{"denom":"ASSET12","index":"0.000036094024478773"},{"denom":"ASSET13","index":"0.000012212628058403"},{"denom":"ASSET14","index":"0.000034929714752807"},{"denom":"ASSET15","index":"0.000028351244338063"},{"denom":"ASSET16","index":"0.000016180904344378"},{"denom":"ASSET17","index":"0.000013115564217581"},{"denom":"ASSET18","index":"0.000005434356167162"},{"denom":"ASSET2","index":"0.000011017450045022"},{"denom":"ASSET3","index":"0.000003160957283863"},{"denom":"ASSET4","index":"0.000029890627189887"},{"denom":"ASSET5","index":"0.000002482144499160"},{"denom":"ASSET6","index":"0.000010125586077425"},{"denom":"ASSET7","index":"0.000015654963573568"},{"denom":"ASSET8","index":"0.000022524154498080"},{"denom":"ASSET9","index":"0.000009046112711560"}],"last_reward_claim_height":"191"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET3","shares":"575503962.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003356752793751"},{"denom":"ASSET1","index":"0.000028516406305775"},{"denom":"ASSET10","index":"0.000022616173055400"},{"denom":"ASSET11","index":"0.000028302061322789"},{"denom":"ASSET12","index":"0.000026910491325102"},{"denom":"ASSET13","index":"0.000008878873421079"},{"denom":"ASSET14","index":"0.000025995251505598"},{"denom":"ASSET15","index":"0.000020398635157595"},{"denom":"ASSET16","index":"0.000012658071469071"},{"denom":"ASSET17","index":"0.000009885849877285"},{"denom":"ASSET18","index":"0.000004110010202724"},{"denom":"ASSET2","index":"0.000008622285743228"},{"denom":"ASSET3","index":"0.000002402314047495"},{"denom":"ASSET4","index":"0.000023121698220749"},{"denom":"ASSET5","index":"0.000001866482592061"},{"denom":"ASSET6","index":"0.000007549939309511"},{"denom":"ASSET7","index":"0.000011851024307599"},{"denom":"ASSET8","index":"0.000016149793693754"},{"denom":"ASSET9","index":"0.000006862325287189"}],"last_reward_claim_height":"142"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET7","shares":"271450576.528206533449334576","reward_history":[{"denom":"ASSET0","index":"0.000003356752793751"},{"denom":"ASSET1","index":"0.000028516406305775"},{"denom":"ASSET10","index":"0.000022616173055400"},{"denom":"ASSET11","index":"0.000028302061322789"},{"denom":"ASSET12","index":"0.000026910491325102"},{"denom":"ASSET13","index":"0.000008878873421079"},{"denom":"ASSET14","index":"0.000025995251505598"},{"denom":"ASSET15","index":"0.000020398635157595"},{"denom":"ASSET16","index":"0.000012658071469071"},{"denom":"ASSET17","index":"0.000009885849877285"},{"denom":"ASSET18","index":"0.000004110010202724"},{"denom":"ASSET2","index":"0.000008622285743228"},{"denom":"ASSET3","index":"0.000002402314047495"},{"denom":"ASSET4","index":"0.000023121698220749"},{"denom":"ASSET5","index":"0.000001866482592061"},{"denom":"ASSET6","index":"0.000007549939309511"},{"denom":"ASSET7","index":"0.000011851024307599"},{"denom":"ASSET8","index":"0.000016149793693754"},{"denom":"ASSET9","index":"0.000006862325287189"}],"last_reward_claim_height":"172"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET18","shares":"1000014157.142585191000000000","reward_history":[{"denom":"ASSET0","index":"0.000003356752793751"},{"denom":"ASSET1","index":"0.000028516406305775"},{"denom":"ASSET10","index":"0.000022616173055400"},{"denom":"ASSET11","index":"0.000028302061322789"},{"denom":"ASSET12","index":"0.000026910491325102"},{"denom":"ASSET13","index":"0.000008878873421079"},{"denom":"ASSET14","index":"0.000025995251505598"},{"denom":"ASSET15","index":"0.000020398635157595"},{"denom":"ASSET16","index":"0.000012658071469071"},{"denom":"ASSET17","index":"0.000009885849877285"},{"denom":"ASSET18","index":"0.000004110010202724"},{"denom":"ASSET2","index":"0.000008622285743228"},{"denom":"ASSET3","index":"0.000002402314047495"},{"denom":"ASSET4","index":"0.000023121698220749"},{"denom":"ASSET5","index":"0.000001866482592061"},{"denom":"ASSET6","index":"0.000007549939309511"},{"denom":"ASSET7","index":"0.000011851024307599"},{"denom":"ASSET8","index":"0.000016149793693754"},{"denom":"ASSET9","index":"0.000006862325287189"}],"last_reward_claim_height":"139"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET4","shares":"629247510.200851044041833948","reward_history":[{"denom":"ASSET0","index":"0.000003200268554223"},{"denom":"ASSET1","index":"0.000027155061035589"},{"denom":"ASSET10","index":"0.000021699312128992"},{"denom":"ASSET11","index":"0.000026991580254755"},{"denom":"ASSET12","index":"0.000025748970079650"},{"denom":"ASSET13","index":"0.000008479073830121"},{"denom":"ASSET14","index":"0.000024769827936089"},{"denom":"ASSET15","index":"0.000019540730612944"},{"denom":"ASSET16","index":"0.000012044995213579"},{"denom":"ASSET17","index":"0.000009462424001901"},{"denom":"ASSET18","index":"0.000003906197580725"},{"denom":"ASSET2","index":"0.000008225756082433"},{"denom":"ASSET3","index":"0.000002283784004254"},{"denom":"ASSET4","index":"0.000022014648589339"},{"denom":"ASSET5","index":"0.000001779311895342"},{"denom":"ASSET6","index":"0.000007179475362032"},{"denom":"ASSET7","index":"0.000011280598785262"},{"denom":"ASSET8","index":"0.000015413911362487"},{"denom":"ASSET9","index":"0.000006542247148589"}],"last_reward_claim_height":"154"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET11","shares":"919271376.000000007688896524","reward_history":[{"denom":"ASSET0","index":"0.000001604942959288"},{"denom":"ASSET1","index":"0.000013380628695124"},{"denom":"ASSET10","index":"0.000009322365613635"},{"denom":"ASSET11","index":"0.000012944148427984"},{"denom":"ASSET12","index":"0.000011656280789193"},{"denom":"ASSET13","index":"0.000004011353995308"},{"denom":"ASSET14","index":"0.000012091757653420"},{"denom":"ASSET15","index":"0.000008645319498111"},{"denom":"ASSET16","index":"0.000006027692148913"},{"denom":"ASSET17","index":"0.000004280767677439"},{"denom":"ASSET18","index":"0.000002039165569874"},{"denom":"ASSET2","index":"0.000003949895566889"},{"denom":"ASSET3","index":"0.000001155418454280"},{"denom":"ASSET4","index":"0.000010873877367808"},{"denom":"ASSET5","index":"0.000000896791353463"},{"denom":"ASSET6","index":"0.000003649878095912"},{"denom":"ASSET7","index":"0.000005589957628131"},{"denom":"ASSET8","index":"0.000007294237475803"},{"denom":"ASSET9","index":"0.000003150685146712"}],"last_reward_claim_height":"100"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET15","shares":"481826379.079274468895180096","reward_history":[{"denom":"ASSET0","index":"0.000004836979013225"},{"denom":"ASSET1","index":"0.000039577282529760"},{"denom":"ASSET10","index":"0.000034314822965027"},{"denom":"ASSET11","index":"0.000041143647196390"},{"denom":"ASSET12","index":"0.000039175131964155"},{"denom":"ASSET13","index":"0.000013275183327871"},{"denom":"ASSET14","index":"0.000037958187432774"},{"denom":"ASSET15","index":"0.000030799620771454"},{"denom":"ASSET16","index":"0.000017560332811566"},{"denom":"ASSET17","index":"0.000014229600019779"},{"denom":"ASSET18","index":"0.000005908428628636"},{"denom":"ASSET2","index":"0.000011948073948502"},{"denom":"ASSET3","index":"0.000003434959854289"},{"denom":"ASSET4","index":"0.000032444397664905"},{"denom":"ASSET5","index":"0.000002697479070199"},{"denom":"ASSET6","index":"0.000011009822966557"},{"denom":"ASSET7","index":"0.000017006174923380"},{"denom":"ASSET8","index":"0.000024496113573743"},{"denom":"ASSET9","index":"0.000009822002615441"}],"last_reward_claim_height":"190"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET8","shares":"959475318.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001620184629837"},{"denom":"ASSET1","index":"0.000013508113244239"},{"denom":"ASSET10","index":"0.000009411159415052"},{"denom":"ASSET11","index":"0.000013068550109883"},{"denom":"ASSET12","index":"0.000011766766981214"},{"denom":"ASSET13","index":"0.000004049052718392"},{"denom":"ASSET14","index":"0.000012206330115570"},{"denom":"ASSET15","index":"0.000008726455301921"},{"denom":"ASSET16","index":"0.000006083441070987"},{"denom":"ASSET17","index":"0.000004319553108765"},{"denom":"ASSET18","index":"0.000002056930051793"},{"denom":"ASSET2","index":"0.000003987063045598"},{"denom":"ASSET3","index":"0.000001166532933482"},{"denom":"ASSET4","index":"0.000010977807509294"},{"denom":"ASSET5","index":"0.000000904485680309"},{"denom":"ASSET6","index":"0.000003682750106429"},{"denom":"ASSET7","index":"0.000005643877936631"},{"denom":"ASSET8","index":"0.000007362682500458"},{"denom":"ASSET9","index":"0.000003178379586880"}],"last_reward_claim_height":"113"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET3","shares":"5579416.665456695009580820","reward_history":[{"denom":"ASSET0","index":"0.000003010548827117"},{"denom":"ASSET1","index":"0.000025517681435823"},{"denom":"ASSET10","index":"0.000020207909525991"},{"denom":"ASSET11","index":"0.000025316824190850"},{"denom":"ASSET12","index":"0.000024059273468565"},{"denom":"ASSET13","index":"0.000007945703994160"},{"denom":"ASSET14","index":"0.000023261456497592"},{"denom":"ASSET15","index":"0.000018230653165683"},{"denom":"ASSET16","index":"0.000011330852554208"},{"denom":"ASSET17","index":"0.000008840468160143"},{"denom":"ASSET18","index":"0.000003685449036638"},{"denom":"ASSET2","index":"0.000007715875534239"},{"denom":"ASSET3","index":"0.000002150116713749"},{"denom":"ASSET4","index":"0.000020690763011385"},{"denom":"ASSET5","index":"0.000001674170167376"},{"denom":"ASSET6","index":"0.000006761947340508"},{"denom":"ASSET7","index":"0.000010605047135869"},{"denom":"ASSET8","index":"0.000014444866674878"},{"denom":"ASSET9","index":"0.000006137206230949"}],"last_reward_claim_height":"131"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET2","shares":"207113846.000000000000000000","reward_history":[],"last_reward_claim_height":"63"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET4","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"23"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET10","shares":"217124761.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003202417698287"},{"denom":"ASSET1","index":"0.000027176874960756"},{"denom":"ASSET10","index":"0.000021729724210241"},{"denom":"ASSET11","index":"0.000027016578438308"},{"denom":"ASSET12","index":"0.000025779554956391"},{"denom":"ASSET13","index":"0.000008487649506725"},{"denom":"ASSET14","index":"0.000024790682929963"},{"denom":"ASSET15","index":"0.000019565798539307"},{"denom":"ASSET16","index":"0.000012053877846841"},{"denom":"ASSET17","index":"0.000009473617164606"},{"denom":"ASSET18","index":"0.000003908301251667"},{"denom":"ASSET2","index":"0.000008233254558201"},{"denom":"ASSET3","index":"0.000002285025567503"},{"denom":"ASSET4","index":"0.000022032200437673"},{"denom":"ASSET5","index":"0.000001780306156687"},{"denom":"ASSET6","index":"0.000007184182778940"},{"denom":"ASSET7","index":"0.000011289430429576"},{"denom":"ASSET8","index":"0.000015429251463912"},{"denom":"ASSET9","index":"0.000006548040900334"}],"last_reward_claim_height":"183"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET11","shares":"661375499.767288227902607960","reward_history":[{"denom":"ASSET0","index":"0.000002874619638549"},{"denom":"ASSET1","index":"0.000024442633186143"},{"denom":"ASSET10","index":"0.000019689737510784"},{"denom":"ASSET11","index":"0.000024334399718263"},{"denom":"ASSET12","index":"0.000023294058494145"},{"denom":"ASSET13","index":"0.000007650065286478"},{"denom":"ASSET14","index":"0.000022306974942610"},{"denom":"ASSET15","index":"0.000017702453996022"},{"denom":"ASSET16","index":"0.000010830667352685"},{"denom":"ASSET17","index":"0.000008561334956642"},{"denom":"ASSET18","index":"0.000003501743239949"},{"denom":"ASSET2","index":"0.000007413384379561"},{"denom":"ASSET3","index":"0.000002050775894848"},{"denom":"ASSET4","index":"0.000019811877393900"},{"denom":"ASSET5","index":"0.000001596563839644"},{"denom":"ASSET6","index":"0.000006447875450380"},{"denom":"ASSET7","index":"0.000010149425285061"},{"denom":"ASSET8","index":"0.000013906577801610"},{"denom":"ASSET9","index":"0.000005896530335304"}],"last_reward_claim_height":"152"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET13","shares":"44626953.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001349258766758"},{"denom":"ASSET1","index":"0.000011264433664868"},{"denom":"ASSET10","index":"0.000007848225297969"},{"denom":"ASSET11","index":"0.000010895650990484"},{"denom":"ASSET12","index":"0.000009811385762205"},{"denom":"ASSET13","index":"0.000003376459336127"},{"denom":"ASSET14","index":"0.000010177960157102"},{"denom":"ASSET15","index":"0.000007278489190238"},{"denom":"ASSET16","index":"0.000005074626261883"},{"denom":"ASSET17","index":"0.000003603912123322"},{"denom":"ASSET18","index":"0.000001715833161655"},{"denom":"ASSET2","index":"0.000003323460628431"},{"denom":"ASSET3","index":"0.000000971642974425"},{"denom":"ASSET4","index":"0.000009153318474981"},{"denom":"ASSET5","index":"0.000000753023305179"},{"denom":"ASSET6","index":"0.000003071716766875"},{"denom":"ASSET7","index":"0.000004705843587499"},{"denom":"ASSET8","index":"0.000006139016974776"},{"denom":"ASSET9","index":"0.000002652143664283"}],"last_reward_claim_height":"79"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET2","shares":"33446969.000000000678990086","reward_history":[],"last_reward_claim_height":"24"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET8","shares":"61248682.000000002327449916","reward_history":[{"denom":"ASSET0","index":"0.000003377008276018"},{"denom":"ASSET1","index":"0.000028642142456639"},{"denom":"ASSET10","index":"0.000022800592191853"},{"denom":"ASSET11","index":"0.000028447577997463"},{"denom":"ASSET12","index":"0.000027093635853923"},{"denom":"ASSET13","index":"0.000008933092474106"},{"denom":"ASSET14","index":"0.000026119259559896"},{"denom":"ASSET15","index":"0.000020548756595198"},{"denom":"ASSET16","index":"0.000012710670192565"},{"denom":"ASSET17","index":"0.000009956402105067"},{"denom":"ASSET18","index":"0.000004127475104327"},{"denom":"ASSET2","index":"0.000008669602227225"},{"denom":"ASSET3","index":"0.000002410895003349"},{"denom":"ASSET4","index":"0.000023222264254358"},{"denom":"ASSET5","index":"0.000001877874241403"},{"denom":"ASSET6","index":"0.000007579654674160"},{"denom":"ASSET7","index":"0.000011900488798179"},{"denom":"ASSET8","index":"0.000016239324105118"},{"denom":"ASSET9","index":"0.000006895771583569"}],"last_reward_claim_height":"158"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET13","shares":"673857150.758496168052327362","reward_history":[{"denom":"ASSET0","index":"0.000003377008276018"},{"denom":"ASSET1","index":"0.000028642142456639"},{"denom":"ASSET10","index":"0.000022800592191853"},{"denom":"ASSET11","index":"0.000028447577997463"},{"denom":"ASSET12","index":"0.000027093635853923"},{"denom":"ASSET13","index":"0.000008933092474106"},{"denom":"ASSET14","index":"0.000026119259559896"},{"denom":"ASSET15","index":"0.000020548756595198"},{"denom":"ASSET16","index":"0.000012710670192565"},{"denom":"ASSET17","index":"0.000009956402105067"},{"denom":"ASSET18","index":"0.000004127475104327"},{"denom":"ASSET2","index":"0.000008669602227225"},{"denom":"ASSET3","index":"0.000002410895003349"},{"denom":"ASSET4","index":"0.000023222264254358"},{"denom":"ASSET5","index":"0.000001877874241403"},{"denom":"ASSET6","index":"0.000007579654674160"},{"denom":"ASSET7","index":"0.000011900488798179"},{"denom":"ASSET8","index":"0.000016239324105118"},{"denom":"ASSET9","index":"0.000006895771583569"}],"last_reward_claim_height":"145"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET15","shares":"14361773.913638871759816312","reward_history":[{"denom":"ASSET0","index":"0.000003377008276018"},{"denom":"ASSET1","index":"0.000028642142456639"},{"denom":"ASSET10","index":"0.000022800592191853"},{"denom":"ASSET11","index":"0.000028447577997463"},{"denom":"ASSET12","index":"0.000027093635853923"},{"denom":"ASSET13","index":"0.000008933092474106"},{"denom":"ASSET14","index":"0.000026119259559896"},{"denom":"ASSET15","index":"0.000020548756595198"},{"denom":"ASSET16","index":"0.000012710670192565"},{"denom":"ASSET17","index":"0.000009956402105067"},{"denom":"ASSET18","index":"0.000004127475104327"},{"denom":"ASSET2","index":"0.000008669602227225"},{"denom":"ASSET3","index":"0.000002410895003349"},{"denom":"ASSET4","index":"0.000023222264254358"},{"denom":"ASSET5","index":"0.000001877874241403"},{"denom":"ASSET6","index":"0.000007579654674160"},{"denom":"ASSET7","index":"0.000011900488798179"},{"denom":"ASSET8","index":"0.000016239324105118"},{"denom":"ASSET9","index":"0.000006895771583569"}],"last_reward_claim_height":"168"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET12","shares":"248222253.293711928088370421","reward_history":[{"denom":"ASSET0","index":"0.000003044385892570"},{"denom":"ASSET1","index":"0.000025830014188245"},{"denom":"ASSET10","index":"0.000020607856539150"},{"denom":"ASSET11","index":"0.000025666657138152"},{"denom":"ASSET12","index":"0.000024468008636658"},{"denom":"ASSET13","index":"0.000008060303383676"},{"denom":"ASSET14","index":"0.000023559408638801"},{"denom":"ASSET15","index":"0.000018562848593971"},{"denom":"ASSET16","index":"0.000011459854746185"},{"denom":"ASSET17","index":"0.000008991538648143"},{"denom":"ASSET18","index":"0.000003718456390600"},{"denom":"ASSET2","index":"0.000007821717005664"},{"denom":"ASSET3","index":"0.000002173111618200"},{"denom":"ASSET4","index":"0.000020942104557307"},{"denom":"ASSET5","index":"0.000001691598021351"},{"denom":"ASSET6","index":"0.000006831113312915"},{"denom":"ASSET7","index":"0.000010730587410374"},{"denom":"ASSET8","index":"0.000014654605067850"},{"denom":"ASSET9","index":"0.000006220578615076"}],"last_reward_claim_height":"131"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET15","shares":"456083816.708288850549061670","reward_history":[{"denom":"ASSET0","index":"0.000003044385892570"},{"denom":"ASSET1","index":"0.000025830014188245"},{"denom":"ASSET10","index":"0.000020607856539150"},{"denom":"ASSET11","index":"0.000025666657138152"},{"denom":"ASSET12","index":"0.000024468008636658"},{"denom":"ASSET13","index":"0.000008060303383676"},{"denom":"ASSET14","index":"0.000023559408638801"},{"denom":"ASSET15","index":"0.000018562848593971"},{"denom":"ASSET16","index":"0.000011459854746185"},{"denom":"ASSET17","index":"0.000008991538648143"},{"denom":"ASSET18","index":"0.000003718456390600"},{"denom":"ASSET2","index":"0.000007821717005664"},{"denom":"ASSET3","index":"0.000002173111618200"},{"denom":"ASSET4","index":"0.000020942104557307"},{"denom":"ASSET5","index":"0.000001691598021351"},{"denom":"ASSET6","index":"0.000006831113312915"},{"denom":"ASSET7","index":"0.000010730587410374"},{"denom":"ASSET8","index":"0.000014654605067850"},{"denom":"ASSET9","index":"0.000006220578615076"}],"last_reward_claim_height":"157"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET3","shares":"354844144.878654622774940494","reward_history":[{"denom":"ASSET0","index":"0.000003004514310835"},{"denom":"ASSET1","index":"0.000025497942224476"},{"denom":"ASSET10","index":"0.000020385999177782"},{"denom":"ASSET11","index":"0.000025346802479017"},{"denom":"ASSET12","index":"0.000024185328023735"},{"denom":"ASSET13","index":"0.000007962788555043"},{"denom":"ASSET14","index":"0.000023259189454501"},{"denom":"ASSET15","index":"0.000018355567065709"},{"denom":"ASSET16","index":"0.000011309092459120"},{"denom":"ASSET17","index":"0.000008887662321727"},{"denom":"ASSET18","index":"0.000003666570499762"},{"denom":"ASSET2","index":"0.000007723995884874"},{"denom":"ASSET3","index":"0.000002143405494402"},{"denom":"ASSET4","index":"0.000020670641097733"},{"denom":"ASSET5","index":"0.000001670336124344"},{"denom":"ASSET6","index":"0.000006739845385808"},{"denom":"ASSET7","index":"0.000010591422556410"},{"denom":"ASSET8","index":"0.000014475095162856"},{"denom":"ASSET9","index":"0.000006143360978771"}],"last_reward_claim_height":"179"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET4","shares":"154923435.254972909927210491","reward_history":[{"denom":"ASSET0","index":"0.000004545294507794"},{"denom":"ASSET1","index":"0.000037192694983912"},{"denom":"ASSET10","index":"0.000032262715242687"},{"denom":"ASSET11","index":"0.000038670034921742"},{"denom":"ASSET12","index":"0.000036825082134373"},{"denom":"ASSET13","index":"0.000012477999234476"},{"denom":"ASSET14","index":"0.000035675231103004"},{"denom":"ASSET15","index":"0.000028955126539269"},{"denom":"ASSET16","index":"0.000016501479711143"},{"denom":"ASSET17","index":"0.000013375565376674"},{"denom":"ASSET18","index":"0.000005551584309232"},{"denom":"ASSET2","index":"0.000011228299311701"},{"denom":"ASSET3","index":"0.000003227045554533"},{"denom":"ASSET4","index":"0.000030489570113631"},{"denom":"ASSET5","index":"0.000002534727468650"},{"denom":"ASSET6","index":"0.000010345764684520"},{"denom":"ASSET7","index":"0.000015981527512644"},{"denom":"ASSET8","index":"0.000023025532506718"},{"denom":"ASSET9","index":"0.000009230960558874"}],"last_reward_claim_height":"185"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET5","shares":"802993454.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001500850379058"},{"denom":"ASSET1","index":"0.000012511793460183"},{"denom":"ASSET10","index":"0.000008717304800227"},{"denom":"ASSET11","index":"0.000012103632089176"},{"denom":"ASSET12","index":"0.000010899320696303"},{"denom":"ASSET13","index":"0.000003750781099635"},{"denom":"ASSET14","index":"0.000011306809643305"},{"denom":"ASSET15","index":"0.000008083881387560"},{"denom":"ASSET16","index":"0.000005636258009526"},{"denom":"ASSET17","index":"0.000004002940101492"},{"denom":"ASSET18","index":"0.000001906322054045"},{"denom":"ASSET2","index":"0.000003692952635209"},{"denom":"ASSET3","index":"0.000001079912951956"},{"denom":"ASSET4","index":"0.000010167723378913"},{"denom":"ASSET5","index":"0.000000838512734178"},{"denom":"ASSET6","index":"0.000003412551825143"},{"denom":"ASSET7","index":"0.000005226751790509"},{"denom":"ASSET8","index":"0.000006820396682251"},{"denom":"ASSET9","index":"0.000002945889565704"}],"last_reward_claim_height":"71"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET7","shares":"368210261.284165965332623942","reward_history":[{"denom":"ASSET0","index":"0.000003004514310835"},{"denom":"ASSET1","index":"0.000025497942224476"},{"denom":"ASSET10","index":"0.000020385999177782"},{"denom":"ASSET11","index":"0.000025346802479017"},{"denom":"ASSET12","index":"0.000024185328023735"},{"denom":"ASSET13","index":"0.000007962788555043"},{"denom":"ASSET14","index":"0.000023259189454501"},{"denom":"ASSET15","index":"0.000018355567065709"},{"denom":"ASSET16","index":"0.000011309092459120"},{"denom":"ASSET17","index":"0.000008887662321727"},{"denom":"ASSET18","index":"0.000003666570499762"},{"denom":"ASSET2","index":"0.000007723995884874"},{"denom":"ASSET3","index":"0.000002143405494402"},{"denom":"ASSET4","index":"0.000020670641097733"},{"denom":"ASSET5","index":"0.000001670336124344"},{"denom":"ASSET6","index":"0.000006739845385808"},{"denom":"ASSET7","index":"0.000010591422556410"},{"denom":"ASSET8","index":"0.000014475095162856"},{"denom":"ASSET9","index":"0.000006143360978771"}],"last_reward_claim_height":"172"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET13","shares":"772894947.123471335933840264","reward_history":[{"denom":"ASSET0","index":"0.000004545294507794"},{"denom":"ASSET1","index":"0.000037192694983912"},{"denom":"ASSET10","index":"0.000032262715242687"},{"denom":"ASSET11","index":"0.000038670034921742"},{"denom":"ASSET12","index":"0.000036825082134373"},{"denom":"ASSET13","index":"0.000012477999234476"},{"denom":"ASSET14","index":"0.000035675231103004"},{"denom":"ASSET15","index":"0.000028955126539269"},{"denom":"ASSET16","index":"0.000016501479711143"},{"denom":"ASSET17","index":"0.000013375565376674"},{"denom":"ASSET18","index":"0.000005551584309232"},{"denom":"ASSET2","index":"0.000011228299311701"},{"denom":"ASSET3","index":"0.000003227045554533"},{"denom":"ASSET4","index":"0.000030489570113631"},{"denom":"ASSET5","index":"0.000002534727468650"},{"denom":"ASSET6","index":"0.000010345764684520"},{"denom":"ASSET7","index":"0.000015981527512644"},{"denom":"ASSET8","index":"0.000023025532506718"},{"denom":"ASSET9","index":"0.000009230960558874"}],"last_reward_claim_height":"190"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET18","shares":"848054626.564331854479217495","reward_history":[{"denom":"ASSET0","index":"0.000003004514310835"},{"denom":"ASSET1","index":"0.000025497942224476"},{"denom":"ASSET10","index":"0.000020385999177782"},{"denom":"ASSET11","index":"0.000025346802479017"},{"denom":"ASSET12","index":"0.000024185328023735"},{"denom":"ASSET13","index":"0.000007962788555043"},{"denom":"ASSET14","index":"0.000023259189454501"},{"denom":"ASSET15","index":"0.000018355567065709"},{"denom":"ASSET16","index":"0.000011309092459120"},{"denom":"ASSET17","index":"0.000008887662321727"},{"denom":"ASSET18","index":"0.000003666570499762"},{"denom":"ASSET2","index":"0.000007723995884874"},{"denom":"ASSET3","index":"0.000002143405494402"},{"denom":"ASSET4","index":"0.000020670641097733"},{"denom":"ASSET5","index":"0.000001670336124344"},{"denom":"ASSET6","index":"0.000006739845385808"},{"denom":"ASSET7","index":"0.000010591422556410"},{"denom":"ASSET8","index":"0.000014475095162856"},{"denom":"ASSET9","index":"0.000006143360978771"}],"last_reward_claim_height":"138"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET0","shares":"127195552.506385525687100106","reward_history":[{"denom":"ASSET0","index":"0.000001507842106347"},{"denom":"ASSET1","index":"0.000012572313391156"},{"denom":"ASSET10","index":"0.000008759356679472"},{"denom":"ASSET11","index":"0.000012162445176153"},{"denom":"ASSET12","index":"0.000010952151629736"},{"denom":"ASSET13","index":"0.000003769211161813"},{"denom":"ASSET14","index":"0.000011361231636633"},{"denom":"ASSET15","index":"0.000008123272738112"},{"denom":"ASSET16","index":"0.000005663669344042"},{"denom":"ASSET17","index":"0.000004022225963767"},{"denom":"ASSET18","index":"0.000001916133905138"},{"denom":"ASSET2","index":"0.000003711277866039"},{"denom":"ASSET3","index":"0.000001085756665704"},{"denom":"ASSET4","index":"0.000010217147571101"},{"denom":"ASSET5","index":"0.000000842594465073"},{"denom":"ASSET6","index":"0.000003429493468225"},{"denom":"ASSET7","index":"0.000005252224712828"},{"denom":"ASSET8","index":"0.000006853863583762"},{"denom":"ASSET9","index":"0.000002960115541236"}],"last_reward_claim_height":"111"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET13","shares":"458401444.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003064659144392"},{"denom":"ASSET1","index":"0.000026014545525120"},{"denom":"ASSET10","index":"0.000020837902255895"},{"denom":"ASSET11","index":"0.000025870951889592"},{"denom":"ASSET12","index":"0.000024704995690840"},{"denom":"ASSET13","index":"0.000008129050348807"},{"denom":"ASSET14","index":"0.000023733606076391"},{"denom":"ASSET15","index":"0.000018755969892396"},{"denom":"ASSET16","index":"0.000011535737727926"},{"denom":"ASSET17","index":"0.000009078938038909"},{"denom":"ASSET18","index":"0.000003738223548700"},{"denom":"ASSET2","index":"0.000007883998416280"},{"denom":"ASSET3","index":"0.000002186926046113"},{"denom":"ASSET4","index":"0.000021089316501471"},{"denom":"ASSET5","index":"0.000001703791082418"},{"denom":"ASSET6","index":"0.000006873778950624"},{"denom":"ASSET7","index":"0.000010805665377904"},{"denom":"ASSET8","index":"0.000014777724141198"},{"denom":"ASSET9","index":"0.000006269886019705"}],"last_reward_claim_height":"173"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET18","shares":"142268972.000000000000000000","reward_history":[],"last_reward_claim_height":"32"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET9","shares":"4429123.850470353282243210","reward_history":[{"denom":"ASSET0","index":"0.000001016570122529"},{"denom":"ASSET1","index":"0.000008477171470527"},{"denom":"ASSET10","index":"0.000005906463519680"},{"denom":"ASSET11","index":"0.000008200989896911"},{"denom":"ASSET12","index":"0.000007384774710599"},{"denom":"ASSET13","index":"0.000002541117067960"},{"denom":"ASSET14","index":"0.000007660956284215"},{"denom":"ASSET15","index":"0.000005477395717812"},{"denom":"ASSET16","index":"0.000003819073322661"},{"denom":"ASSET17","index":"0.000002711881121289"},{"denom":"ASSET18","index":"0.000001291518742692"},{"denom":"ASSET2","index":"0.000002502279034170"},{"denom":"ASSET3","index":"0.000000731757874738"},{"denom":"ASSET4","index":"0.000006889127422234"},{"denom":"ASSET5","index":"0.000000567775065403"},{"denom":"ASSET6","index":"0.000002312404202309"},{"denom":"ASSET7","index":"0.000003541658795591"},{"denom":"ASSET8","index":"0.000004621109544256"},{"denom":"ASSET9","index":"0.000001996151641449"}],"last_reward_claim_height":"75"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET0","shares":"110037446.999999998395560388","reward_history":[],"last_reward_claim_height":"43"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET4","shares":"44611208.000000030737122312","reward_history":[],"last_reward_claim_height":"61"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET16","shares":"166773324.000000000000000000","reward_history":[],"last_reward_claim_height":"49"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET17","shares":"130887379.002554565727132526","reward_history":[{"denom":"ASSET0","index":"0.000003043964098015"},{"denom":"ASSET1","index":"0.000025828331615061"},{"denom":"ASSET10","index":"0.000020594675215425"},{"denom":"ASSET11","index":"0.000025661520704142"},{"denom":"ASSET12","index":"0.000024456429429906"},{"denom":"ASSET13","index":"0.000008058244190043"},{"denom":"ASSET14","index":"0.000023555461855486"},{"denom":"ASSET15","index":"0.000018552812657155"},{"denom":"ASSET16","index":"0.000011456604402492"},{"denom":"ASSET17","index":"0.000008987560143691"},{"denom":"ASSET18","index":"0.000003716794339222"},{"denom":"ASSET2","index":"0.000007820148034807"},{"denom":"ASSET3","index":"0.000002173135080244"},{"denom":"ASSET4","index":"0.000020938599170426"},{"denom":"ASSET5","index":"0.000001690207511083"},{"denom":"ASSET6","index":"0.000006829800145738"},{"denom":"ASSET7","index":"0.000010729300481432"},{"denom":"ASSET8","index":"0.000014648719853803"},{"denom":"ASSET9","index":"0.000006217447736766"}],"last_reward_claim_height":"162"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET18","shares":"34870076.653658415861970782","reward_history":[{"denom":"ASSET0","index":"0.000003043964098015"},{"denom":"ASSET1","index":"0.000025828331615061"},{"denom":"ASSET10","index":"0.000020594675215425"},{"denom":"ASSET11","index":"0.000025661520704142"},{"denom":"ASSET12","index":"0.000024456429429906"},{"denom":"ASSET13","index":"0.000008058244190043"},{"denom":"ASSET14","index":"0.000023555461855486"},{"denom":"ASSET15","index":"0.000018552812657155"},{"denom":"ASSET16","index":"0.000011456604402492"},{"denom":"ASSET17","index":"0.000008987560143691"},{"denom":"ASSET18","index":"0.000003716794339222"},{"denom":"ASSET2","index":"0.000007820148034807"},{"denom":"ASSET3","index":"0.000002173135080244"},{"denom":"ASSET4","index":"0.000020938599170426"},{"denom":"ASSET5","index":"0.000001690207511083"},{"denom":"ASSET6","index":"0.000006829800145738"},{"denom":"ASSET7","index":"0.000010729300481432"},{"denom":"ASSET8","index":"0.000014648719853803"},{"denom":"ASSET9","index":"0.000006217447736766"}],"last_reward_claim_height":"139"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET1","shares":"418655786.070570529715873856","reward_history":[{"denom":"ASSET0","index":"0.000000977108719668"},{"denom":"ASSET1","index":"0.000008146517162771"},{"denom":"ASSET10","index":"0.000005675852121603"},{"denom":"ASSET11","index":"0.000007881108738917"},{"denom":"ASSET12","index":"0.000007096716963958"},{"denom":"ASSET13","index":"0.000002441926549413"},{"denom":"ASSET14","index":"0.000007362125387813"},{"denom":"ASSET15","index":"0.000005263370239944"},{"denom":"ASSET16","index":"0.000003670074447059"},{"denom":"ASSET17","index":"0.000002605905002368"},{"denom":"ASSET18","index":"0.000001241671893765"},{"denom":"ASSET2","index":"0.000002404735560083"},{"denom":"ASSET3","index":"0.000000703247798239"},{"denom":"ASSET4","index":"0.000006620841350486"},{"denom":"ASSET5","index":"0.000000546031343344"},{"denom":"ASSET6","index":"0.000002222161612464"},{"denom":"ASSET7","index":"0.000003402975523689"},{"denom":"ASSET8","index":"0.000004440942225898"},{"denom":"ASSET9","index":"0.000001917871699764"}],"last_reward_claim_height":"111"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET11","shares":"126680573.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002320380931676"},{"denom":"ASSET1","index":"0.000019748951316256"},{"denom":"ASSET10","index":"0.000016101172379351"},{"denom":"ASSET11","index":"0.000019714000020718"},{"denom":"ASSET12","index":"0.000018967805559844"},{"denom":"ASSET13","index":"0.000006204998608741"},{"denom":"ASSET14","index":"0.000018041457784230"},{"denom":"ASSET15","index":"0.000014440911570898"},{"denom":"ASSET16","index":"0.000008738221404310"},{"denom":"ASSET17","index":"0.000006970584758543"},{"denom":"ASSET18","index":"0.000002814127990287"},{"denom":"ASSET2","index":"0.000006006105656449"},{"denom":"ASSET3","index":"0.000001653724297068"},{"denom":"ASSET4","index":"0.000016005284799403"},{"denom":"ASSET5","index":"0.000001288969102308"},{"denom":"ASSET6","index":"0.000005195185892122"},{"denom":"ASSET7","index":"0.000008196101819524"},{"denom":"ASSET8","index":"0.000011280171312915"},{"denom":"ASSET9","index":"0.000004774394171461"}],"last_reward_claim_height":"150"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET14","shares":"120118948.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002320380931676"},{"denom":"ASSET1","index":"0.000019748951316256"},{"denom":"ASSET10","index":"0.000016101172379351"},{"denom":"ASSET11","index":"0.000019714000020718"},{"denom":"ASSET12","index":"0.000018967805559844"},{"denom":"ASSET13","index":"0.000006204998608741"},{"denom":"ASSET14","index":"0.000018041457784230"},{"denom":"ASSET15","index":"0.000014440911570898"},{"denom":"ASSET16","index":"0.000008738221404310"},{"denom":"ASSET17","index":"0.000006970584758543"},{"denom":"ASSET18","index":"0.000002814127990287"},{"denom":"ASSET2","index":"0.000006006105656449"},{"denom":"ASSET3","index":"0.000001653724297068"},{"denom":"ASSET4","index":"0.000016005284799403"},{"denom":"ASSET5","index":"0.000001288969102308"},{"denom":"ASSET6","index":"0.000005195185892122"},{"denom":"ASSET7","index":"0.000008196101819524"},{"denom":"ASSET8","index":"0.000011280171312915"},{"denom":"ASSET9","index":"0.000004774394171461"}],"last_reward_claim_height":"152"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET4","shares":"240763482.231981779806221962","reward_history":[{"denom":"ASSET0","index":"0.000003342998947188"},{"denom":"ASSET1","index":"0.000028345782457833"},{"denom":"ASSET10","index":"0.000022532322238539"},{"denom":"ASSET11","index":"0.000028144588841629"},{"denom":"ASSET12","index":"0.000026788988923046"},{"denom":"ASSET13","index":"0.000008836278349189"},{"denom":"ASSET14","index":"0.000025846526421467"},{"denom":"ASSET15","index":"0.000020312521464953"},{"denom":"ASSET16","index":"0.000012581099317360"},{"denom":"ASSET17","index":"0.000009844015126225"},{"denom":"ASSET18","index":"0.000004087085525414"},{"denom":"ASSET2","index":"0.000008577030596387"},{"denom":"ASSET3","index":"0.000002386540105172"},{"denom":"ASSET4","index":"0.000022982635628207"},{"denom":"ASSET5","index":"0.000001858980311097"},{"denom":"ASSET6","index":"0.000007503977785171"},{"denom":"ASSET7","index":"0.000011778054778213"},{"denom":"ASSET8","index":"0.000016064148587518"},{"denom":"ASSET9","index":"0.000006822246648031"}],"last_reward_claim_height":"154"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET6","shares":"395507150.296494036058770111","reward_history":[{"denom":"ASSET0","index":"0.000003342998947188"},{"denom":"ASSET1","index":"0.000028345782457833"},{"denom":"ASSET10","index":"0.000022532322238539"},{"denom":"ASSET11","index":"0.000028144588841629"},{"denom":"ASSET12","index":"0.000026788988923046"},{"denom":"ASSET13","index":"0.000008836278349189"},{"denom":"ASSET14","index":"0.000025846526421467"},{"denom":"ASSET15","index":"0.000020312521464953"},{"denom":"ASSET16","index":"0.000012581099317360"},{"denom":"ASSET17","index":"0.000009844015126225"},{"denom":"ASSET18","index":"0.000004087085525414"},{"denom":"ASSET2","index":"0.000008577030596387"},{"denom":"ASSET3","index":"0.000002386540105172"},{"denom":"ASSET4","index":"0.000022982635628207"},{"denom":"ASSET5","index":"0.000001858980311097"},{"denom":"ASSET6","index":"0.000007503977785171"},{"denom":"ASSET7","index":"0.000011778054778213"},{"denom":"ASSET8","index":"0.000016064148587518"},{"denom":"ASSET9","index":"0.000006822246648031"}],"last_reward_claim_height":"130"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET7","shares":"730431349.287277503222863973","reward_history":[{"denom":"ASSET0","index":"0.000004988100402711"},{"denom":"ASSET1","index":"0.000040830811222204"},{"denom":"ASSET10","index":"0.000035211557233449"},{"denom":"ASSET11","index":"0.000042368225765116"},{"denom":"ASSET12","index":"0.000040283068049268"},{"denom":"ASSET13","index":"0.000013656840057503"},{"denom":"ASSET14","index":"0.000039101529800040"},{"denom":"ASSET15","index":"0.000031628202661313"},{"denom":"ASSET16","index":"0.000018124368514983"},{"denom":"ASSET17","index":"0.000014635120510330"},{"denom":"ASSET18","index":"0.000006099363487354"},{"denom":"ASSET2","index":"0.000012317983770908"},{"denom":"ASSET3","index":"0.000003543214603465"},{"denom":"ASSET4","index":"0.000033464976861775"},{"denom":"ASSET5","index":"0.000002781716792708"},{"denom":"ASSET6","index":"0.000011353508340787"},{"denom":"ASSET7","index":"0.000017532655976265"},{"denom":"ASSET8","index":"0.000025192183938276"},{"denom":"ASSET9","index":"0.000010118614836237"}],"last_reward_claim_height":"192"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET10","shares":"938856649.000000221402547000","reward_history":[{"denom":"ASSET0","index":"0.000001745798220012"},{"denom":"ASSET1","index":"0.000014553743296829"},{"denom":"ASSET10","index":"0.000010139438249561"},{"denom":"ASSET11","index":"0.000014079320164724"},{"denom":"ASSET12","index":"0.000012678243118663"},{"denom":"ASSET13","index":"0.000004363016060013"},{"denom":"ASSET14","index":"0.000013152173087429"},{"denom":"ASSET15","index":"0.000009403145384454"},{"denom":"ASSET16","index":"0.000006556113428486"},{"denom":"ASSET17","index":"0.000004655955083371"},{"denom":"ASSET18","index":"0.000002217755535422"},{"denom":"ASSET2","index":"0.000004295945845911"},{"denom":"ASSET3","index":"0.000001256580187737"},{"denom":"ASSET4","index":"0.000011827536358912"},{"denom":"ASSET5","index":"0.000000975477084515"},{"denom":"ASSET6","index":"0.000003969964878841"},{"denom":"ASSET7","index":"0.000006080210806364"},{"denom":"ASSET8","index":"0.000007934011797614"},{"denom":"ASSET9","index":"0.000003426498879278"}],"last_reward_claim_height":"112"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET2","shares":"206673486.997761270716812205","reward_history":[{"denom":"ASSET0","index":"0.000004713052793206"},{"denom":"ASSET1","index":"0.000038540515083927"},{"denom":"ASSET10","index":"0.000033490360102272"},{"denom":"ASSET11","index":"0.000040107734635720"},{"denom":"ASSET12","index":"0.000038197935060603"},{"denom":"ASSET13","index":"0.000012948354360272"},{"denom":"ASSET14","index":"0.000037002954624969"},{"denom":"ASSET15","index":"0.000030054303395937"},{"denom":"ASSET16","index":"0.000017098583157054"},{"denom":"ASSET17","index":"0.000013871074640540"},{"denom":"ASSET18","index":"0.000005756151421242"},{"denom":"ASSET2","index":"0.000011635316491200"},{"denom":"ASSET3","index":"0.000003346046298358"},{"denom":"ASSET4","index":"0.000031600919386329"},{"denom":"ASSET5","index":"0.000002627879191745"},{"denom":"ASSET6","index":"0.000010730060131595"},{"denom":"ASSET7","index":"0.000016571778991047"},{"denom":"ASSET8","index":"0.000023899875611587"},{"denom":"ASSET9","index":"0.000009570555980860"}],"last_reward_claim_height":"200"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET8","shares":"141130377.126232692792034127","reward_history":[{"denom":"ASSET0","index":"0.000003086246918243"},{"denom":"ASSET1","index":"0.000026194228204796"},{"denom":"ASSET10","index":"0.000020951998769875"},{"denom":"ASSET11","index":"0.000026042273492864"},{"denom":"ASSET12","index":"0.000024853724280460"},{"denom":"ASSET13","index":"0.000008181454895403"},{"denom":"ASSET14","index":"0.000023895275980533"},{"denom":"ASSET15","index":"0.000018864347888264"},{"denom":"ASSET16","index":"0.000011616907749245"},{"denom":"ASSET17","index":"0.000009133094250657"},{"denom":"ASSET18","index":"0.000003766346411006"},{"denom":"ASSET2","index":"0.000007935833032906"},{"denom":"ASSET3","index":"0.000002202232138461"},{"denom":"ASSET4","index":"0.000021234941701767"},{"denom":"ASSET5","index":"0.000001715417631736"},{"denom":"ASSET6","index":"0.000006923101305069"},{"denom":"ASSET7","index":"0.000010881195638563"},{"denom":"ASSET8","index":"0.000014873239564067"},{"denom":"ASSET9","index":"0.000006310901439146"}],"last_reward_claim_height":"152"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET9","shares":"504776826.399699756706264506","reward_history":[{"denom":"ASSET0","index":"0.000001535240763659"},{"denom":"ASSET1","index":"0.000012802535686671"},{"denom":"ASSET10","index":"0.000008918976928097"},{"denom":"ASSET11","index":"0.000012384847277788"},{"denom":"ASSET12","index":"0.000011152366284839"},{"denom":"ASSET13","index":"0.000003838101909148"},{"denom":"ASSET14","index":"0.000011569197017318"},{"denom":"ASSET15","index":"0.000008271431242866"},{"denom":"ASSET16","index":"0.000005767016142371"},{"denom":"ASSET17","index":"0.000004095404830432"},{"denom":"ASSET18","index":"0.000001951213819735"},{"denom":"ASSET2","index":"0.000003778922237253"},{"denom":"ASSET3","index":"0.000001105544885116"},{"denom":"ASSET4","index":"0.000010403614783903"},{"denom":"ASSET5","index":"0.000000857676404279"},{"denom":"ASSET6","index":"0.000003491600641819"},{"denom":"ASSET7","index":"0.000005348470057083"},{"denom":"ASSET8","index":"0.000006978912901618"},{"denom":"ASSET9","index":"0.000003013874884636"}],"last_reward_claim_height":"81"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET12","shares":"72693675.000000019473432825","reward_history":[{"denom":"ASSET0","index":"0.000003086246918243"},{"denom":"ASSET1","index":"0.000026194228204796"},{"denom":"ASSET10","index":"0.000020951998769875"},{"denom":"ASSET11","index":"0.000026042273492864"},{"denom":"ASSET12","index":"0.000024853724280460"},{"denom":"ASSET13","index":"0.000008181454895403"},{"denom":"ASSET14","index":"0.000023895275980533"},{"denom":"ASSET15","index":"0.000018864347888264"},{"denom":"ASSET16","index":"0.000011616907749245"},{"denom":"ASSET17","index":"0.000009133094250657"},{"denom":"ASSET18","index":"0.000003766346411006"},{"denom":"ASSET2","index":"0.000007935833032906"},{"denom":"ASSET3","index":"0.000002202232138461"},{"denom":"ASSET4","index":"0.000021234941701767"},{"denom":"ASSET5","index":"0.000001715417631736"},{"denom":"ASSET6","index":"0.000006923101305069"},{"denom":"ASSET7","index":"0.000010881195638563"},{"denom":"ASSET8","index":"0.000014873239564067"},{"denom":"ASSET9","index":"0.000006310901439146"}],"last_reward_claim_height":"165"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET16","shares":"431397952.224610720928803975","reward_history":[{"denom":"ASSET0","index":"0.000004713052793206"},{"denom":"ASSET1","index":"0.000038540515083927"},{"denom":"ASSET10","index":"0.000033490360102272"},{"denom":"ASSET11","index":"0.000040107734635720"},{"denom":"ASSET12","index":"0.000038197935060603"},{"denom":"ASSET13","index":"0.000012948354360272"},{"denom":"ASSET14","index":"0.000037002954624969"},{"denom":"ASSET15","index":"0.000030054303395937"},{"denom":"ASSET16","index":"0.000017098583157054"},{"denom":"ASSET17","index":"0.000013871074640540"},{"denom":"ASSET18","index":"0.000005756151421242"},{"denom":"ASSET2","index":"0.000011635316491200"},{"denom":"ASSET3","index":"0.000003346046298358"},{"denom":"ASSET4","index":"0.000031600919386329"},{"denom":"ASSET5","index":"0.000002627879191745"},{"denom":"ASSET6","index":"0.000010730060131595"},{"denom":"ASSET7","index":"0.000016571778991047"},{"denom":"ASSET8","index":"0.000023899875611587"},{"denom":"ASSET9","index":"0.000009570555980860"}],"last_reward_claim_height":"198"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET18","shares":"700162406.999999971293341313","reward_history":[{"denom":"ASSET0","index":"0.000001535240763659"},{"denom":"ASSET1","index":"0.000012802535686671"},{"denom":"ASSET10","index":"0.000008918976928097"},{"denom":"ASSET11","index":"0.000012384847277788"},{"denom":"ASSET12","index":"0.000011152366284839"},{"denom":"ASSET13","index":"0.000003838101909148"},{"denom":"ASSET14","index":"0.000011569197017318"},{"denom":"ASSET15","index":"0.000008271431242866"},{"denom":"ASSET16","index":"0.000005767016142371"},{"denom":"ASSET17","index":"0.000004095404830432"},{"denom":"ASSET18","index":"0.000001951213819735"},{"denom":"ASSET2","index":"0.000003778922237253"},{"denom":"ASSET3","index":"0.000001105544885116"},{"denom":"ASSET4","index":"0.000010403614783903"},{"denom":"ASSET5","index":"0.000000857676404279"},{"denom":"ASSET6","index":"0.000003491600641819"},{"denom":"ASSET7","index":"0.000005348470057083"},{"denom":"ASSET8","index":"0.000006978912901618"},{"denom":"ASSET9","index":"0.000003013874884636"}],"last_reward_claim_height":"97"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET4","shares":"892268821.284796503320872040","reward_history":[{"denom":"ASSET0","index":"0.000003333609736915"},{"denom":"ASSET1","index":"0.000028281729059652"},{"denom":"ASSET10","index":"0.000022560289398652"},{"denom":"ASSET11","index":"0.000028101042421314"},{"denom":"ASSET12","index":"0.000026787599659919"},{"denom":"ASSET13","index":"0.000008826015241086"},{"denom":"ASSET14","index":"0.000025794402991537"},{"denom":"ASSET15","index":"0.000020323143219667"},{"denom":"ASSET16","index":"0.000012547562311789"},{"denom":"ASSET17","index":"0.000009844220733470"},{"denom":"ASSET18","index":"0.000004071528772633"},{"denom":"ASSET2","index":"0.000008563776406339"},{"denom":"ASSET3","index":"0.000002379222276435"},{"denom":"ASSET4","index":"0.000022929058250150"},{"denom":"ASSET5","index":"0.000001853699834530"},{"denom":"ASSET6","index":"0.000007480326246914"},{"denom":"ASSET7","index":"0.000011749530638760"},{"denom":"ASSET8","index":"0.000016044906214881"},{"denom":"ASSET9","index":"0.000006811209452101"}],"last_reward_claim_height":"155"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET4","shares":"92630873.000000001204201349","reward_history":[],"last_reward_claim_height":"54"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET8","shares":"148002418.712757250713499900","reward_history":[{"denom":"ASSET0","index":"0.000001763265776240"},{"denom":"ASSET1","index":"0.000014701143889842"},{"denom":"ASSET10","index":"0.000010242267715158"},{"denom":"ASSET11","index":"0.000014221824092125"},{"denom":"ASSET12","index":"0.000012807154532407"},{"denom":"ASSET13","index":"0.000004407037513175"},{"denom":"ASSET14","index":"0.000013285723045174"},{"denom":"ASSET15","index":"0.000009498495615253"},{"denom":"ASSET16","index":"0.000006622576828953"},{"denom":"ASSET17","index":"0.000004703043783239"},{"denom":"ASSET18","index":"0.000002240331719108"},{"denom":"ASSET2","index":"0.000004339421867729"},{"denom":"ASSET3","index":"0.000001269671564485"},{"denom":"ASSET4","index":"0.000011947684550294"},{"denom":"ASSET5","index":"0.000000984934568662"},{"denom":"ASSET6","index":"0.000004010359059893"},{"denom":"ASSET7","index":"0.000006141754461338"},{"denom":"ASSET8","index":"0.000008013956555240"},{"denom":"ASSET9","index":"0.000003461169761882"}],"last_reward_claim_height":"115"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET13","shares":"23530340.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003372790294110"},{"denom":"ASSET1","index":"0.000028600279733511"},{"denom":"ASSET10","index":"0.000022731421090197"},{"denom":"ASSET11","index":"0.000028396190348540"},{"denom":"ASSET12","index":"0.000027027392524280"},{"denom":"ASSET13","index":"0.000008915082315276"},{"denom":"ASSET14","index":"0.000026078776667620"},{"denom":"ASSET15","index":"0.000020492230414373"},{"denom":"ASSET16","index":"0.000012694274413467"},{"denom":"ASSET17","index":"0.000009931274832025"},{"denom":"ASSET18","index":"0.000004123939856338"},{"denom":"ASSET2","index":"0.000008653658587521"},{"denom":"ASSET3","index":"0.000002407864000528"},{"denom":"ASSET4","index":"0.000023189126720885"},{"denom":"ASSET5","index":"0.000001875419633234"},{"denom":"ASSET6","index":"0.000007571725921487"},{"denom":"ASSET7","index":"0.000011883748947250"},{"denom":"ASSET8","index":"0.000016207221904670"},{"denom":"ASSET9","index":"0.000006883201227023"}],"last_reward_claim_height":"162"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET14","shares":"448147709.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003372790294110"},{"denom":"ASSET1","index":"0.000028600279733511"},{"denom":"ASSET10","index":"0.000022731421090197"},{"denom":"ASSET11","index":"0.000028396190348540"},{"denom":"ASSET12","index":"0.000027027392524280"},{"denom":"ASSET13","index":"0.000008915082315276"},{"denom":"ASSET14","index":"0.000026078776667620"},{"denom":"ASSET15","index":"0.000020492230414373"},{"denom":"ASSET16","index":"0.000012694274413467"},{"denom":"ASSET17","index":"0.000009931274832025"},{"denom":"ASSET18","index":"0.000004123939856338"},{"denom":"ASSET2","index":"0.000008653658587521"},{"denom":"ASSET3","index":"0.000002407864000528"},{"denom":"ASSET4","index":"0.000023189126720885"},{"denom":"ASSET5","index":"0.000001875419633234"},{"denom":"ASSET6","index":"0.000007571725921487"},{"denom":"ASSET7","index":"0.000011883748947250"},{"denom":"ASSET8","index":"0.000016207221904670"},{"denom":"ASSET9","index":"0.000006883201227023"}],"last_reward_claim_height":"163"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET0","shares":"660753961.107796295589200580","reward_history":[{"denom":"ASSET0","index":"0.000002846126280344"},{"denom":"ASSET1","index":"0.000024142729904188"},{"denom":"ASSET10","index":"0.000019247649074564"},{"denom":"ASSET11","index":"0.000023985879136349"},{"denom":"ASSET12","index":"0.000022859091275790"},{"denom":"ASSET13","index":"0.000007532792628817"},{"denom":"ASSET14","index":"0.000022018595952129"},{"denom":"ASSET15","index":"0.000017341431925331"},{"denom":"ASSET16","index":"0.000010711928951149"},{"denom":"ASSET17","index":"0.000008400535387767"},{"denom":"ASSET18","index":"0.000003476353193421"},{"denom":"ASSET2","index":"0.000007309791035362"},{"denom":"ASSET3","index":"0.000002031285314481"},{"denom":"ASSET4","index":"0.000019573873127075"},{"denom":"ASSET5","index":"0.000001582650339951"},{"denom":"ASSET6","index":"0.000006386635795582"},{"denom":"ASSET7","index":"0.000010030235680714"},{"denom":"ASSET8","index":"0.000013694243666513"},{"denom":"ASSET9","index":"0.000005813799926422"}],"last_reward_claim_height":"142"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET14","shares":"960600771.999999922191337468","reward_history":[{"denom":"ASSET0","index":"0.000002846126280344"},{"denom":"ASSET1","index":"0.000024142729904188"},{"denom":"ASSET10","index":"0.000019247649074564"},{"denom":"ASSET11","index":"0.000023985879136349"},{"denom":"ASSET12","index":"0.000022859091275790"},{"denom":"ASSET13","index":"0.000007532792628817"},{"denom":"ASSET14","index":"0.000022018595952129"},{"denom":"ASSET15","index":"0.000017341431925331"},{"denom":"ASSET16","index":"0.000010711928951149"},{"denom":"ASSET17","index":"0.000008400535387767"},{"denom":"ASSET18","index":"0.000003476353193421"},{"denom":"ASSET2","index":"0.000007309791035362"},{"denom":"ASSET3","index":"0.000002031285314481"},{"denom":"ASSET4","index":"0.000019573873127075"},{"denom":"ASSET5","index":"0.000001582650339951"},{"denom":"ASSET6","index":"0.000006386635795582"},{"denom":"ASSET7","index":"0.000010030235680714"},{"denom":"ASSET8","index":"0.000013694243666513"},{"denom":"ASSET9","index":"0.000005813799926422"}],"last_reward_claim_height":"144"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET15","shares":"14302383.000000000216185660","reward_history":[],"last_reward_claim_height":"8"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET13","shares":"988669024.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001542334439671"},{"denom":"ASSET1","index":"0.000012860022908304"},{"denom":"ASSET10","index":"0.000008959505058412"},{"denom":"ASSET11","index":"0.000012440701863130"},{"denom":"ASSET12","index":"0.000011202637482986"},{"denom":"ASSET13","index":"0.000003855293405849"},{"denom":"ASSET14","index":"0.000011621234937056"},{"denom":"ASSET15","index":"0.000008308996655285"},{"denom":"ASSET16","index":"0.000005793070384239"},{"denom":"ASSET17","index":"0.000004114339021332"},{"denom":"ASSET18","index":"0.000001959846507084"},{"denom":"ASSET2","index":"0.000003796320730815"},{"denom":"ASSET3","index":"0.000001110350550164"},{"denom":"ASSET4","index":"0.000010450826325201"},{"denom":"ASSET5","index":"0.000000861797005699"},{"denom":"ASSET6","index":"0.000003507969675592"},{"denom":"ASSET7","index":"0.000005372663952407"},{"denom":"ASSET8","index":"0.000007010512417899"},{"denom":"ASSET9","index":"0.000003027866977623"}],"last_reward_claim_height":"113"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET9","shares":"724313227.156428476992086194","reward_history":[{"denom":"ASSET0","index":"0.000003500919125422"},{"denom":"ASSET1","index":"0.000029708744113596"},{"denom":"ASSET10","index":"0.000023658219501850"},{"denom":"ASSET11","index":"0.000029508250092955"},{"denom":"ASSET12","index":"0.000028107871580940"},{"denom":"ASSET13","index":"0.000009266072102552"},{"denom":"ASSET14","index":"0.000027092614384257"},{"denom":"ASSET15","index":"0.000021318431245277"},{"denom":"ASSET16","index":"0.000013180724612002"},{"denom":"ASSET17","index":"0.000010330094773179"},{"denom":"ASSET18","index":"0.000004277644880979"},{"denom":"ASSET2","index":"0.000008990842831989"},{"denom":"ASSET3","index":"0.000002500335792843"},{"denom":"ASSET4","index":"0.000024086210482120"},{"denom":"ASSET5","index":"0.000001946754653173"},{"denom":"ASSET6","index":"0.000007858889858659"},{"denom":"ASSET7","index":"0.000012341576470869"},{"denom":"ASSET8","index":"0.000016843078118646"},{"denom":"ASSET9","index":"0.000007150129263591"}],"last_reward_claim_height":"126"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET10","shares":"254128262.275289161144425036","reward_history":[{"denom":"ASSET0","index":"0.000003500919125422"},{"denom":"ASSET1","index":"0.000029708744113596"},{"denom":"ASSET10","index":"0.000023658219501850"},{"denom":"ASSET11","index":"0.000029508250092955"},{"denom":"ASSET12","index":"0.000028107871580940"},{"denom":"ASSET13","index":"0.000009266072102552"},{"denom":"ASSET14","index":"0.000027092614384257"},{"denom":"ASSET15","index":"0.000021318431245277"},{"denom":"ASSET16","index":"0.000013180724612002"},{"denom":"ASSET17","index":"0.000010330094773179"},{"denom":"ASSET18","index":"0.000004277644880979"},{"denom":"ASSET2","index":"0.000008990842831989"},{"denom":"ASSET3","index":"0.000002500335792843"},{"denom":"ASSET4","index":"0.000024086210482120"},{"denom":"ASSET5","index":"0.000001946754653173"},{"denom":"ASSET6","index":"0.000007858889858659"},{"denom":"ASSET7","index":"0.000012341576470869"},{"denom":"ASSET8","index":"0.000016843078118646"},{"denom":"ASSET9","index":"0.000007150129263591"}],"last_reward_claim_height":"127"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET13","shares":"212708427.999999993618747160","reward_history":[{"denom":"ASSET0","index":"0.000003500919125422"},{"denom":"ASSET1","index":"0.000029708744113596"},{"denom":"ASSET10","index":"0.000023658219501850"},{"denom":"ASSET11","index":"0.000029508250092955"},{"denom":"ASSET12","index":"0.000028107871580940"},{"denom":"ASSET13","index":"0.000009266072102552"},{"denom":"ASSET14","index":"0.000027092614384257"},{"denom":"ASSET15","index":"0.000021318431245277"},{"denom":"ASSET16","index":"0.000013180724612002"},{"denom":"ASSET17","index":"0.000010330094773179"},{"denom":"ASSET18","index":"0.000004277644880979"},{"denom":"ASSET2","index":"0.000008990842831989"},{"denom":"ASSET3","index":"0.000002500335792843"},{"denom":"ASSET4","index":"0.000024086210482120"},{"denom":"ASSET5","index":"0.000001946754653173"},{"denom":"ASSET6","index":"0.000007858889858659"},{"denom":"ASSET7","index":"0.000012341576470869"},{"denom":"ASSET8","index":"0.000016843078118646"},{"denom":"ASSET9","index":"0.000007150129263591"}],"last_reward_claim_height":"143"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET15","shares":"10368999.971763120501225323","reward_history":[{"denom":"ASSET0","index":"0.000003500919125422"},{"denom":"ASSET1","index":"0.000029708744113596"},{"denom":"ASSET10","index":"0.000023658219501850"},{"denom":"ASSET11","index":"0.000029508250092955"},{"denom":"ASSET12","index":"0.000028107871580940"},{"denom":"ASSET13","index":"0.000009266072102552"},{"denom":"ASSET14","index":"0.000027092614384257"},{"denom":"ASSET15","index":"0.000021318431245277"},{"denom":"ASSET16","index":"0.000013180724612002"},{"denom":"ASSET17","index":"0.000010330094773179"},{"denom":"ASSET18","index":"0.000004277644880979"},{"denom":"ASSET2","index":"0.000008990842831989"},{"denom":"ASSET3","index":"0.000002500335792843"},{"denom":"ASSET4","index":"0.000024086210482120"},{"denom":"ASSET5","index":"0.000001946754653173"},{"denom":"ASSET6","index":"0.000007858889858659"},{"denom":"ASSET7","index":"0.000012341576470869"},{"denom":"ASSET8","index":"0.000016843078118646"},{"denom":"ASSET9","index":"0.000007150129263591"}],"last_reward_claim_height":"131"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET18","shares":"832424597.006665487075178192","reward_history":[{"denom":"ASSET0","index":"0.000004959246898457"},{"denom":"ASSET1","index":"0.000040644134720716"},{"denom":"ASSET10","index":"0.000035353347669123"},{"denom":"ASSET11","index":"0.000042259329711737"},{"denom":"ASSET12","index":"0.000040324609330816"},{"denom":"ASSET13","index":"0.000013634496574458"},{"denom":"ASSET14","index":"0.000038957207426942"},{"denom":"ASSET15","index":"0.000031703303912562"},{"denom":"ASSET16","index":"0.000018020987420922"},{"denom":"ASSET17","index":"0.000014649010642136"},{"denom":"ASSET18","index":"0.000006048740887504"},{"denom":"ASSET2","index":"0.000012283177286373"},{"denom":"ASSET3","index":"0.000003521378987865"},{"denom":"ASSET4","index":"0.000033309186540081"},{"denom":"ASSET5","index":"0.000002764517824101"},{"denom":"ASSET6","index":"0.000011281385393492"},{"denom":"ASSET7","index":"0.000017449426350326"},{"denom":"ASSET8","index":"0.000025152281518201"},{"denom":"ASSET9","index":"0.000010089053949444"}],"last_reward_claim_height":"197"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET8","shares":"992460964.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001732863553160"},{"denom":"ASSET1","index":"0.000014476512568697"},{"denom":"ASSET10","index":"0.000010084697727409"},{"denom":"ASSET11","index":"0.000014004946421444"},{"denom":"ASSET12","index":"0.000012607292539223"},{"denom":"ASSET13","index":"0.000004334999642824"},{"denom":"ASSET14","index":"0.000013078858686476"},{"denom":"ASSET15","index":"0.000009351781667220"},{"denom":"ASSET16","index":"0.000006516703263852"},{"denom":"ASSET17","index":"0.000004630438674838"},{"denom":"ASSET18","index":"0.000002204429700414"},{"denom":"ASSET2","index":"0.000004272502924514"},{"denom":"ASSET3","index":"0.000001249934366214"},{"denom":"ASSET4","index":"0.000011760746082105"},{"denom":"ASSET5","index":"0.000000965858373893"},{"denom":"ASSET6","index":"0.000003948656293267"},{"denom":"ASSET7","index":"0.000006045137116599"},{"denom":"ASSET8","index":"0.000007891631066688"},{"denom":"ASSET9","index":"0.000003403230388010"}],"last_reward_claim_height":"107"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET11","shares":"65327230.999999963547762009","reward_history":[{"denom":"ASSET0","index":"0.000003203314564743"},{"denom":"ASSET1","index":"0.000027174750089688"},{"denom":"ASSET10","index":"0.000021494761442080"},{"denom":"ASSET11","index":"0.000026954579685264"},{"denom":"ASSET12","index":"0.000025598519259277"},{"denom":"ASSET13","index":"0.000008453363478510"},{"denom":"ASSET14","index":"0.000024766008219885"},{"denom":"ASSET15","index":"0.000019395989679368"},{"denom":"ASSET16","index":"0.000012063312986412"},{"denom":"ASSET17","index":"0.000009406957788586"},{"denom":"ASSET18","index":"0.000003925664786352"},{"denom":"ASSET2","index":"0.000008214094571203"},{"denom":"ASSET3","index":"0.000002289770772075"},{"denom":"ASSET4","index":"0.000022031271429646"},{"denom":"ASSET5","index":"0.000001779377444361"},{"denom":"ASSET6","index":"0.000007202120906665"},{"denom":"ASSET7","index":"0.000011290805949933"},{"denom":"ASSET8","index":"0.000015376618183469"},{"denom":"ASSET9","index":"0.000006529467958809"}],"last_reward_claim_height":"155"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET14","shares":"293168095.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001732863553160"},{"denom":"ASSET1","index":"0.000014476512568697"},{"denom":"ASSET10","index":"0.000010084697727409"},{"denom":"ASSET11","index":"0.000014004946421444"},{"denom":"ASSET12","index":"0.000012607292539223"},{"denom":"ASSET13","index":"0.000004334999642824"},{"denom":"ASSET14","index":"0.000013078858686476"},{"denom":"ASSET15","index":"0.000009351781667220"},{"denom":"ASSET16","index":"0.000006516703263852"},{"denom":"ASSET17","index":"0.000004630438674838"},{"denom":"ASSET18","index":"0.000002204429700414"},{"denom":"ASSET2","index":"0.000004272502924514"},{"denom":"ASSET3","index":"0.000001249934366214"},{"denom":"ASSET4","index":"0.000011760746082105"},{"denom":"ASSET5","index":"0.000000965858373893"},{"denom":"ASSET6","index":"0.000003948656293267"},{"denom":"ASSET7","index":"0.000006045137116599"},{"denom":"ASSET8","index":"0.000007891631066688"},{"denom":"ASSET9","index":"0.000003403230388010"}],"last_reward_claim_height":"111"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET15","shares":"794376619.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004819121490741"},{"denom":"ASSET1","index":"0.000039439037062385"},{"denom":"ASSET10","index":"0.000033949711699647"},{"denom":"ASSET11","index":"0.000040926462496439"},{"denom":"ASSET12","index":"0.000038853804420393"},{"denom":"ASSET13","index":"0.000013188383097013"},{"denom":"ASSET14","index":"0.000037786507004869"},{"denom":"ASSET15","index":"0.000030511465947454"},{"denom":"ASSET16","index":"0.000017508488927783"},{"denom":"ASSET17","index":"0.000014113313501087"},{"denom":"ASSET18","index":"0.000005902508101436"},{"denom":"ASSET2","index":"0.000011888871733978"},{"denom":"ASSET3","index":"0.000003426020888663"},{"denom":"ASSET4","index":"0.000032328377078046"},{"denom":"ASSET5","index":"0.000002685672180211"},{"denom":"ASSET6","index":"0.000010983824100820"},{"denom":"ASSET7","index":"0.000016943392626871"},{"denom":"ASSET8","index":"0.000024343267700456"},{"denom":"ASSET9","index":"0.000009767523137997"}],"last_reward_claim_height":"192"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET9","shares":"478948122.373212455711971535","reward_history":[{"denom":"ASSET0","index":"0.000001687731873143"},{"denom":"ASSET1","index":"0.000014069560961171"},{"denom":"ASSET10","index":"0.000009802495056563"},{"denom":"ASSET11","index":"0.000013610740912442"},{"denom":"ASSET12","index":"0.000012256373563096"},{"denom":"ASSET13","index":"0.000004217751625940"},{"denom":"ASSET14","index":"0.000012714404583367"},{"denom":"ASSET15","index":"0.000009090791386823"},{"denom":"ASSET16","index":"0.000006338265608675"},{"denom":"ASSET17","index":"0.000004501407356839"},{"denom":"ASSET18","index":"0.000002144184836496"},{"denom":"ASSET2","index":"0.000004153051292327"},{"denom":"ASSET3","index":"0.000001214709312157"},{"denom":"ASSET4","index":"0.000011433811394910"},{"denom":"ASSET5","index":"0.000000942889008137"},{"denom":"ASSET6","index":"0.000003837834423079"},{"denom":"ASSET7","index":"0.000005877867503028"},{"denom":"ASSET8","index":"0.000007669751132718"},{"denom":"ASSET9","index":"0.000003312735983819"}],"last_reward_claim_height":"79"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET12","shares":"853912000.658490649465768992","reward_history":[{"denom":"ASSET0","index":"0.000004954736972544"},{"denom":"ASSET1","index":"0.000040562621437536"},{"denom":"ASSET10","index":"0.000035068009959717"},{"denom":"ASSET11","index":"0.000042119207174838"},{"denom":"ASSET12","index":"0.000040082055175883"},{"denom":"ASSET13","index":"0.000013580869106236"},{"denom":"ASSET14","index":"0.000038861863580520"},{"denom":"ASSET15","index":"0.000031485762730084"},{"denom":"ASSET16","index":"0.000018000600433823"},{"denom":"ASSET17","index":"0.000014562026555578"},{"denom":"ASSET18","index":"0.000006054868189146"},{"denom":"ASSET2","index":"0.000012242446491443"},{"denom":"ASSET3","index":"0.000003518864143702"},{"denom":"ASSET4","index":"0.000033246162080602"},{"denom":"ASSET5","index":"0.000002762582727971"},{"denom":"ASSET6","index":"0.000011276343530113"},{"denom":"ASSET7","index":"0.000017419014271677"},{"denom":"ASSET8","index":"0.000025054480685761"},{"denom":"ASSET9","index":"0.000010057790704152"}],"last_reward_claim_height":"199"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET1","shares":"986719955.818040167192601770","reward_history":[{"denom":"ASSET0","index":"0.000002915106026686"},{"denom":"ASSET1","index":"0.000024751938975568"},{"denom":"ASSET10","index":"0.000019864528416862"},{"denom":"ASSET11","index":"0.000024625253839727"},{"denom":"ASSET12","index":"0.000023534700266806"},{"denom":"ASSET13","index":"0.000007739190454504"},{"denom":"ASSET14","index":"0.000022584902384729"},{"denom":"ASSET15","index":"0.000017872912229645"},{"denom":"ASSET16","index":"0.000010972881933217"},{"denom":"ASSET17","index":"0.000008648586457086"},{"denom":"ASSET18","index":"0.000003552999450219"},{"denom":"ASSET2","index":"0.000007504215303421"},{"denom":"ASSET3","index":"0.000002079538758775"},{"denom":"ASSET4","index":"0.000020065180146540"},{"denom":"ASSET5","index":"0.000001620267199228"},{"denom":"ASSET6","index":"0.000006536798446662"},{"denom":"ASSET7","index":"0.000010280222742310"},{"denom":"ASSET8","index":"0.000014068743113537"},{"denom":"ASSET9","index":"0.000005967789042866"}],"last_reward_claim_height":"123"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET4","shares":"566514856.082218009789251759","reward_history":[{"denom":"ASSET0","index":"0.000002915106026686"},{"denom":"ASSET1","index":"0.000024751938975568"},{"denom":"ASSET10","index":"0.000019864528416862"},{"denom":"ASSET11","index":"0.000024625253839727"},{"denom":"ASSET12","index":"0.000023534700266806"},{"denom":"ASSET13","index":"0.000007739190454504"},{"denom":"ASSET14","index":"0.000022584902384729"},{"denom":"ASSET15","index":"0.000017872912229645"},{"denom":"ASSET16","index":"0.000010972881933217"},{"denom":"ASSET17","index":"0.000008648586457086"},{"denom":"ASSET18","index":"0.000003552999450219"},{"denom":"ASSET2","index":"0.000007504215303421"},{"denom":"ASSET3","index":"0.000002079538758775"},{"denom":"ASSET4","index":"0.000020065180146540"},{"denom":"ASSET5","index":"0.000001620267199228"},{"denom":"ASSET6","index":"0.000006536798446662"},{"denom":"ASSET7","index":"0.000010280222742310"},{"denom":"ASSET8","index":"0.000014068743113537"},{"denom":"ASSET9","index":"0.000005967789042866"}],"last_reward_claim_height":"177"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET12","shares":"214498003.194639709946877312","reward_history":[{"denom":"ASSET0","index":"0.000004505151831120"},{"denom":"ASSET1","index":"0.000036819978927173"},{"denom":"ASSET10","index":"0.000032120266083166"},{"denom":"ASSET11","index":"0.000038373726814935"},{"denom":"ASSET12","index":"0.000036577960619268"},{"denom":"ASSET13","index":"0.000012398555446018"},{"denom":"ASSET14","index":"0.000035397002231999"},{"denom":"ASSET15","index":"0.000028810535001949"},{"denom":"ASSET16","index":"0.000016330920897579"},{"denom":"ASSET17","index":"0.000013279681403456"},{"denom":"ASSET18","index":"0.000005498055481430"},{"denom":"ASSET2","index":"0.000011120281009853"},{"denom":"ASSET3","index":"0.000003197840204443"},{"denom":"ASSET4","index":"0.000030197395102084"},{"denom":"ASSET5","index":"0.000002512215970511"},{"denom":"ASSET6","index":"0.000010257867177915"},{"denom":"ASSET7","index":"0.000015842498359347"},{"denom":"ASSET8","index":"0.000022891881896997"},{"denom":"ASSET9","index":"0.000009154034675168"}],"last_reward_claim_height":"189"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET14","shares":"1428697.999999998272694979","reward_history":[],"last_reward_claim_height":"53"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET15","shares":"529048197.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001670929391506"},{"denom":"ASSET1","index":"0.000013946161101263"},{"denom":"ASSET10","index":"0.000009716355120388"},{"denom":"ASSET11","index":"0.000013489421488305"},{"denom":"ASSET12","index":"0.000012147571569489"},{"denom":"ASSET13","index":"0.000004178741924768"},{"denom":"ASSET14","index":"0.000012601474290441"},{"denom":"ASSET15","index":"0.000009009969010905"},{"denom":"ASSET16","index":"0.000006280878901179"},{"denom":"ASSET17","index":"0.000004459594233357"},{"denom":"ASSET18","index":"0.000002124832112458"},{"denom":"ASSET2","index":"0.000004116330300637"},{"denom":"ASSET3","index":"0.000001202842210524"},{"denom":"ASSET4","index":"0.000011333383563781"},{"denom":"ASSET5","index":"0.000000933337469958"},{"denom":"ASSET6","index":"0.000003804272179982"},{"denom":"ASSET7","index":"0.000005824139288221"},{"denom":"ASSET8","index":"0.000007600033683947"},{"denom":"ASSET9","index":"0.000003282284050887"}],"last_reward_claim_height":"96"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET2","shares":"310299226.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003119961272076"},{"denom":"ASSET1","index":"0.000026462428012801"},{"denom":"ASSET10","index":"0.000021088828135750"},{"denom":"ASSET11","index":"0.000026288818556387"},{"denom":"ASSET12","index":"0.000025049012446876"},{"denom":"ASSET13","index":"0.000008256026418292"},{"denom":"ASSET14","index":"0.000024133914778951"},{"denom":"ASSET15","index":"0.000019001193386697"},{"denom":"ASSET16","index":"0.000011741691861213"},{"denom":"ASSET17","index":"0.000009205139483526"},{"denom":"ASSET18","index":"0.000003811157018018"},{"denom":"ASSET2","index":"0.000008011229275486"},{"denom":"ASSET3","index":"0.000002226652147557"},{"denom":"ASSET4","index":"0.000021454928269907"},{"denom":"ASSET5","index":"0.000001734689929917"},{"denom":"ASSET6","index":"0.000007001091110949"},{"denom":"ASSET7","index":"0.000010994186615549"},{"denom":"ASSET8","index":"0.000015007966738007"},{"denom":"ASSET9","index":"0.000006372340046203"}],"last_reward_claim_height":"142"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET10","shares":"37108429.700382183883304408","reward_history":[{"denom":"ASSET0","index":"0.000001598361255475"},{"denom":"ASSET1","index":"0.000013324868720531"},{"denom":"ASSET10","index":"0.000009283863630055"},{"denom":"ASSET11","index":"0.000012890721875256"},{"denom":"ASSET12","index":"0.000011607749807828"},{"denom":"ASSET13","index":"0.000003994929715268"},{"denom":"ASSET14","index":"0.000012041896653103"},{"denom":"ASSET15","index":"0.000008609605674538"},{"denom":"ASSET16","index":"0.000006002777756047"},{"denom":"ASSET17","index":"0.000004262945630213"},{"denom":"ASSET18","index":"0.000002030561253910"},{"denom":"ASSET2","index":"0.000003933279565341"},{"denom":"ASSET3","index":"0.000001150586482321"},{"denom":"ASSET4","index":"0.000010829011071909"},{"denom":"ASSET5","index":"0.000000892953750521"},{"denom":"ASSET6","index":"0.000003634763049905"},{"denom":"ASSET7","index":"0.000005566684063932"},{"denom":"ASSET8","index":"0.000007263685559290"},{"denom":"ASSET9","index":"0.000003137668156809"}],"last_reward_claim_height":"95"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET12","shares":"514154494.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001598361255475"},{"denom":"ASSET1","index":"0.000013324868720531"},{"denom":"ASSET10","index":"0.000009283863630055"},{"denom":"ASSET11","index":"0.000012890721875256"},{"denom":"ASSET12","index":"0.000011607749807828"},{"denom":"ASSET13","index":"0.000003994929715268"},{"denom":"ASSET14","index":"0.000012041896653103"},{"denom":"ASSET15","index":"0.000008609605674538"},{"denom":"ASSET16","index":"0.000006002777756047"},{"denom":"ASSET17","index":"0.000004262945630213"},{"denom":"ASSET18","index":"0.000002030561253910"},{"denom":"ASSET2","index":"0.000003933279565341"},{"denom":"ASSET3","index":"0.000001150586482321"},{"denom":"ASSET4","index":"0.000010829011071909"},{"denom":"ASSET5","index":"0.000000892953750521"},{"denom":"ASSET6","index":"0.000003634763049905"},{"denom":"ASSET7","index":"0.000005566684063932"},{"denom":"ASSET8","index":"0.000007263685559290"},{"denom":"ASSET9","index":"0.000003137668156809"}],"last_reward_claim_height":"102"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET15","shares":"83998264.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003119961272076"},{"denom":"ASSET1","index":"0.000026462428012801"},{"denom":"ASSET10","index":"0.000021088828135750"},{"denom":"ASSET11","index":"0.000026288818556387"},{"denom":"ASSET12","index":"0.000025049012446876"},{"denom":"ASSET13","index":"0.000008256026418292"},{"denom":"ASSET14","index":"0.000024133914778951"},{"denom":"ASSET15","index":"0.000019001193386697"},{"denom":"ASSET16","index":"0.000011741691861213"},{"denom":"ASSET17","index":"0.000009205139483526"},{"denom":"ASSET18","index":"0.000003811157018018"},{"denom":"ASSET2","index":"0.000008011229275486"},{"denom":"ASSET3","index":"0.000002226652147557"},{"denom":"ASSET4","index":"0.000021454928269907"},{"denom":"ASSET5","index":"0.000001734689929917"},{"denom":"ASSET6","index":"0.000007001091110949"},{"denom":"ASSET7","index":"0.000010994186615549"},{"denom":"ASSET8","index":"0.000015007966738007"},{"denom":"ASSET9","index":"0.000006372340046203"}],"last_reward_claim_height":"145"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET8","shares":"439318602.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004706688898441"},{"denom":"ASSET1","index":"0.000038469218208281"},{"denom":"ASSET10","index":"0.000033429119744638"},{"denom":"ASSET11","index":"0.000040048044376731"},{"denom":"ASSET12","index":"0.000038123876502831"},{"denom":"ASSET13","index":"0.000012931635980653"},{"denom":"ASSET14","index":"0.000036956318697253"},{"denom":"ASSET15","index":"0.000030004409506937"},{"denom":"ASSET16","index":"0.000017069515077087"},{"denom":"ASSET17","index":"0.000013841693766226"},{"denom":"ASSET18","index":"0.000005751286723449"},{"denom":"ASSET2","index":"0.000011610503886412"},{"denom":"ASSET3","index":"0.000003341731270562"},{"denom":"ASSET4","index":"0.000031548567387514"},{"denom":"ASSET5","index":"0.000002624970943084"},{"denom":"ASSET6","index":"0.000010720567793479"},{"denom":"ASSET7","index":"0.000016548766625825"},{"denom":"ASSET8","index":"0.000023874445360637"},{"denom":"ASSET9","index":"0.000009555094049936"}],"last_reward_claim_height":"198"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET16","shares":"16313177.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001543375593884"},{"denom":"ASSET1","index":"0.000012871309378663"},{"denom":"ASSET10","index":"0.000008967332198598"},{"denom":"ASSET11","index":"0.000012451619524186"},{"denom":"ASSET12","index":"0.000011213472915376"},{"denom":"ASSET13","index":"0.000003858438984711"},{"denom":"ASSET14","index":"0.000011631932007817"},{"denom":"ASSET15","index":"0.000008316259081242"},{"denom":"ASSET16","index":"0.000005798119954378"},{"denom":"ASSET17","index":"0.000004118129774432"},{"denom":"ASSET18","index":"0.000001961834686325"},{"denom":"ASSET2","index":"0.000003799362406955"},{"denom":"ASSET3","index":"0.000001111378119041"},{"denom":"ASSET4","index":"0.000010460246548983"},{"denom":"ASSET5","index":"0.000000862764187650"},{"denom":"ASSET6","index":"0.000003511364090393"},{"denom":"ASSET7","index":"0.000005377199337864"},{"denom":"ASSET8","index":"0.000007016574370602"},{"denom":"ASSET9","index":"0.000003030136134086"}],"last_reward_claim_height":"65"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET2","shares":"943918906.962035333124559917","reward_history":[{"denom":"ASSET0","index":"0.000001745217677213"},{"denom":"ASSET1","index":"0.000014553842410819"},{"denom":"ASSET10","index":"0.000010139729507131"},{"denom":"ASSET11","index":"0.000014078681363843"},{"denom":"ASSET12","index":"0.000012678362515121"},{"denom":"ASSET13","index":"0.000004362304066790"},{"denom":"ASSET14","index":"0.000013152043309614"},{"denom":"ASSET15","index":"0.000009402563770700"},{"denom":"ASSET16","index":"0.000006556038246289"},{"denom":"ASSET17","index":"0.000004655394058383"},{"denom":"ASSET18","index":"0.000002217418219224"},{"denom":"ASSET2","index":"0.000004295692705065"},{"denom":"ASSET3","index":"0.000001256734357891"},{"denom":"ASSET4","index":"0.000011827217337515"},{"denom":"ASSET5","index":"0.000000975486386160"},{"denom":"ASSET6","index":"0.000003970037158850"},{"denom":"ASSET7","index":"0.000006079396946830"},{"denom":"ASSET8","index":"0.000007932673055287"},{"denom":"ASSET9","index":"0.000003426784497665"}],"last_reward_claim_height":"96"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET7","shares":"297934684.999999996990363903","reward_history":[{"denom":"ASSET0","index":"0.000001745217677213"},{"denom":"ASSET1","index":"0.000014553842410819"},{"denom":"ASSET10","index":"0.000010139729507131"},{"denom":"ASSET11","index":"0.000014078681363843"},{"denom":"ASSET12","index":"0.000012678362515121"},{"denom":"ASSET13","index":"0.000004362304066790"},{"denom":"ASSET14","index":"0.000013152043309614"},{"denom":"ASSET15","index":"0.000009402563770700"},{"denom":"ASSET16","index":"0.000006556038246289"},{"denom":"ASSET17","index":"0.000004655394058383"},{"denom":"ASSET18","index":"0.000002217418219224"},{"denom":"ASSET2","index":"0.000004295692705065"},{"denom":"ASSET3","index":"0.000001256734357891"},{"denom":"ASSET4","index":"0.000011827217337515"},{"denom":"ASSET5","index":"0.000000975486386160"},{"denom":"ASSET6","index":"0.000003970037158850"},{"denom":"ASSET7","index":"0.000006079396946830"},{"denom":"ASSET8","index":"0.000007932673055287"},{"denom":"ASSET9","index":"0.000003426784497665"}],"last_reward_claim_height":"106"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET15","shares":"907506087.257049477275419780","reward_history":[{"denom":"ASSET0","index":"0.000003296605577903"},{"denom":"ASSET1","index":"0.000027950980635352"},{"denom":"ASSET10","index":"0.000022177590033485"},{"denom":"ASSET11","index":"0.000027741245317152"},{"denom":"ASSET12","index":"0.000026384837371861"},{"denom":"ASSET13","index":"0.000008707523198290"},{"denom":"ASSET14","index":"0.000025482773879389"},{"denom":"ASSET15","index":"0.000019999205716580"},{"denom":"ASSET16","index":"0.000012408342313410"},{"denom":"ASSET17","index":"0.000009694954350389"},{"denom":"ASSET18","index":"0.000004033447725414"},{"denom":"ASSET2","index":"0.000008454290496983"},{"denom":"ASSET3","index":"0.000002354114882033"},{"denom":"ASSET4","index":"0.000022662624820802"},{"denom":"ASSET5","index":"0.000001833709311257"},{"denom":"ASSET6","index":"0.000007402928859239"},{"denom":"ASSET7","index":"0.000011614131087351"},{"denom":"ASSET8","index":"0.000015829970625061"},{"denom":"ASSET9","index":"0.000006725199056296"}],"last_reward_claim_height":"162"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET1","shares":"286417362.646992669855586923","reward_history":[{"denom":"ASSET0","index":"0.000003278023650839"},{"denom":"ASSET1","index":"0.000027801084973989"},{"denom":"ASSET10","index":"0.000022126343818190"},{"denom":"ASSET11","index":"0.000027610641458424"},{"denom":"ASSET12","index":"0.000026294522151225"},{"denom":"ASSET13","index":"0.000008669795972838"},{"denom":"ASSET14","index":"0.000025352034708572"},{"denom":"ASSET15","index":"0.000019941753748345"},{"denom":"ASSET16","index":"0.000012337408081897"},{"denom":"ASSET17","index":"0.000009662232510971"},{"denom":"ASSET18","index":"0.000004006663612522"},{"denom":"ASSET2","index":"0.000008414274009770"},{"denom":"ASSET3","index":"0.000002339697370568"},{"denom":"ASSET4","index":"0.000022540556466857"},{"denom":"ASSET5","index":"0.000001822656991491"},{"denom":"ASSET6","index":"0.000007357334263189"},{"denom":"ASSET7","index":"0.000011551068960203"},{"denom":"ASSET8","index":"0.000015761386047857"},{"denom":"ASSET9","index":"0.000006692834331509"}],"last_reward_claim_height":"153"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET8","shares":"1000053538.016397304000000000","reward_history":[{"denom":"ASSET0","index":"0.000003278023650839"},{"denom":"ASSET1","index":"0.000027801084973989"},{"denom":"ASSET10","index":"0.000022126343818190"},{"denom":"ASSET11","index":"0.000027610641458424"},{"denom":"ASSET12","index":"0.000026294522151225"},{"denom":"ASSET13","index":"0.000008669795972838"},{"denom":"ASSET14","index":"0.000025352034708572"},{"denom":"ASSET15","index":"0.000019941753748345"},{"denom":"ASSET16","index":"0.000012337408081897"},{"denom":"ASSET17","index":"0.000009662232510971"},{"denom":"ASSET18","index":"0.000004006663612522"},{"denom":"ASSET2","index":"0.000008414274009770"},{"denom":"ASSET3","index":"0.000002339697370568"},{"denom":"ASSET4","index":"0.000022540556466857"},{"denom":"ASSET5","index":"0.000001822656991491"},{"denom":"ASSET6","index":"0.000007357334263189"},{"denom":"ASSET7","index":"0.000011551068960203"},{"denom":"ASSET8","index":"0.000015761386047857"},{"denom":"ASSET9","index":"0.000006692834331509"}],"last_reward_claim_height":"130"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET2","shares":"809104530.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001139195115521"},{"denom":"ASSET1","index":"0.000009496890331931"},{"denom":"ASSET10","index":"0.000006616523219856"},{"denom":"ASSET11","index":"0.000009187371854639"},{"denom":"ASSET12","index":"0.000008273091178185"},{"denom":"ASSET13","index":"0.000002846943294505"},{"denom":"ASSET14","index":"0.000008582261490710"},{"denom":"ASSET15","index":"0.000006136055842283"},{"denom":"ASSET16","index":"0.000004278248649000"},{"denom":"ASSET17","index":"0.000003038433916001"},{"denom":"ASSET18","index":"0.000001447320933748"},{"denom":"ASSET2","index":"0.000002803422698710"},{"denom":"ASSET3","index":"0.000000819928024772"},{"denom":"ASSET4","index":"0.000007718116540611"},{"denom":"ASSET5","index":"0.000000636445192901"},{"denom":"ASSET6","index":"0.000002590694026466"},{"denom":"ASSET7","index":"0.000003967685677409"},{"denom":"ASSET8","index":"0.000005177210075735"},{"denom":"ASSET9","index":"0.000002236262294314"}],"last_reward_claim_height":"122"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET4","shares":"374016362.155239293924637784","reward_history":[{"denom":"ASSET0","index":"0.000001139195115521"},{"denom":"ASSET1","index":"0.000009496890331931"},{"denom":"ASSET10","index":"0.000006616523219856"},{"denom":"ASSET11","index":"0.000009187371854639"},{"denom":"ASSET12","index":"0.000008273091178185"},{"denom":"ASSET13","index":"0.000002846943294505"},{"denom":"ASSET14","index":"0.000008582261490710"},{"denom":"ASSET15","index":"0.000006136055842283"},{"denom":"ASSET16","index":"0.000004278248649000"},{"denom":"ASSET17","index":"0.000003038433916001"},{"denom":"ASSET18","index":"0.000001447320933748"},{"denom":"ASSET2","index":"0.000002803422698710"},{"denom":"ASSET3","index":"0.000000819928024772"},{"denom":"ASSET4","index":"0.000007718116540611"},{"denom":"ASSET5","index":"0.000000636445192901"},{"denom":"ASSET6","index":"0.000002590694026466"},{"denom":"ASSET7","index":"0.000003967685677409"},{"denom":"ASSET8","index":"0.000005177210075735"},{"denom":"ASSET9","index":"0.000002236262294314"}],"last_reward_claim_height":"82"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET0","shares":"83008042.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001583959364947"},{"denom":"ASSET1","index":"0.000013443347430705"},{"denom":"ASSET10","index":"0.000009381913161610"},{"denom":"ASSET11","index":"0.000012996589661105"},{"denom":"ASSET12","index":"0.000011696930694994"},{"denom":"ASSET13","index":"0.000004020819926404"},{"denom":"ASSET14","index":"0.000012143688464595"},{"denom":"ASSET15","index":"0.000008691469335864"},{"denom":"ASSET16","index":"0.000006051537060952"},{"denom":"ASSET17","index":"0.000004305120325241"},{"denom":"ASSET18","index":"0.000002030717134548"},{"denom":"ASSET2","index":"0.000003939591241022"},{"denom":"ASSET3","index":"0.000001137201595347"},{"denom":"ASSET4","index":"0.000010925258183866"},{"denom":"ASSET5","index":"0.000000893515539201"},{"denom":"ASSET6","index":"0.000003655290842186"},{"denom":"ASSET7","index":"0.000005604779291351"},{"denom":"ASSET8","index":"0.000007310581684371"},{"denom":"ASSET9","index":"0.000003167918729894"}],"last_reward_claim_height":"110"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET5","shares":"931045411.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001583959364947"},{"denom":"ASSET1","index":"0.000013443347430705"},{"denom":"ASSET10","index":"0.000009381913161610"},{"denom":"ASSET11","index":"0.000012996589661105"},{"denom":"ASSET12","index":"0.000011696930694994"},{"denom":"ASSET13","index":"0.000004020819926404"},{"denom":"ASSET14","index":"0.000012143688464595"},{"denom":"ASSET15","index":"0.000008691469335864"},{"denom":"ASSET16","index":"0.000006051537060952"},{"denom":"ASSET17","index":"0.000004305120325241"},{"denom":"ASSET18","index":"0.000002030717134548"},{"denom":"ASSET2","index":"0.000003939591241022"},{"denom":"ASSET3","index":"0.000001137201595347"},{"denom":"ASSET4","index":"0.000010925258183866"},{"denom":"ASSET5","index":"0.000000893515539201"},{"denom":"ASSET6","index":"0.000003655290842186"},{"denom":"ASSET7","index":"0.000005604779291351"},{"denom":"ASSET8","index":"0.000007310581684371"},{"denom":"ASSET9","index":"0.000003167918729894"}],"last_reward_claim_height":"69"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET9","shares":"875210533.626787544703576930","reward_history":[{"denom":"ASSET0","index":"0.000001583959364947"},{"denom":"ASSET1","index":"0.000013443347430705"},{"denom":"ASSET10","index":"0.000009381913161610"},{"denom":"ASSET11","index":"0.000012996589661105"},{"denom":"ASSET12","index":"0.000011696930694994"},{"denom":"ASSET13","index":"0.000004020819926404"},{"denom":"ASSET14","index":"0.000012143688464595"},{"denom":"ASSET15","index":"0.000008691469335864"},{"denom":"ASSET16","index":"0.000006051537060952"},{"denom":"ASSET17","index":"0.000004305120325241"},{"denom":"ASSET18","index":"0.000002030717134548"},{"denom":"ASSET2","index":"0.000003939591241022"},{"denom":"ASSET3","index":"0.000001137201595347"},{"denom":"ASSET4","index":"0.000010925258183866"},{"denom":"ASSET5","index":"0.000000893515539201"},{"denom":"ASSET6","index":"0.000003655290842186"},{"denom":"ASSET7","index":"0.000005604779291351"},{"denom":"ASSET8","index":"0.000007310581684371"},{"denom":"ASSET9","index":"0.000003167918729894"}],"last_reward_claim_height":"79"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET12","shares":"695000285.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003310378542013"},{"denom":"ASSET1","index":"0.000028352771206955"},{"denom":"ASSET10","index":"0.000022778987578468"},{"denom":"ASSET11","index":"0.000028201706998458"},{"denom":"ASSET12","index":"0.000026949790221900"},{"denom":"ASSET13","index":"0.000008856641706946"},{"denom":"ASSET14","index":"0.000025865717784540"},{"denom":"ASSET15","index":"0.000020483790155485"},{"denom":"ASSET16","index":"0.000012564495758376"},{"denom":"ASSET17","index":"0.000009912517491786"},{"denom":"ASSET18","index":"0.000004051289802086"},{"denom":"ASSET2","index":"0.000008567503486413"},{"denom":"ASSET3","index":"0.000002358477605528"},{"denom":"ASSET4","index":"0.000022984011222606"},{"denom":"ASSET5","index":"0.000001848359330263"},{"denom":"ASSET6","index":"0.000007474666006436"},{"denom":"ASSET7","index":"0.000011763521743703"},{"denom":"ASSET8","index":"0.000016098224703406"},{"denom":"ASSET9","index":"0.000006837907042961"}],"last_reward_claim_height":"150"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET4","shares":"569390762.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003086330633608"},{"denom":"ASSET1","index":"0.000026187842720704"},{"denom":"ASSET10","index":"0.000020922921087024"},{"denom":"ASSET11","index":"0.000026029396638226"},{"denom":"ASSET12","index":"0.000024828709288325"},{"denom":"ASSET13","index":"0.000008176601230700"},{"denom":"ASSET14","index":"0.000023887113573615"},{"denom":"ASSET15","index":"0.000018841856891118"},{"denom":"ASSET16","index":"0.000011616230118922"},{"denom":"ASSET17","index":"0.000009124242236202"},{"denom":"ASSET18","index":"0.000003767471049721"},{"denom":"ASSET2","index":"0.000007932284099147"},{"denom":"ASSET3","index":"0.000002202458257762"},{"denom":"ASSET4","index":"0.000021230824628511"},{"denom":"ASSET5","index":"0.000001715648257347"},{"denom":"ASSET6","index":"0.000006923830152599"},{"denom":"ASSET7","index":"0.000010879262909104"},{"denom":"ASSET8","index":"0.000014863870027497"},{"denom":"ASSET9","index":"0.000006308409915314"}],"last_reward_claim_height":"172"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET1","shares":"173956333.000000000000000000","reward_history":[],"last_reward_claim_height":"23"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET6","shares":"660773855.000000000000000000","reward_history":[],"last_reward_claim_height":"42"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET14","shares":"193399801.000000000000000000","reward_history":[],"last_reward_claim_height":"27"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET5","shares":"99468399.000000000000000000","reward_history":[],"last_reward_claim_height":"21"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET6","shares":"998255043.000000000000000000","reward_history":[],"last_reward_claim_height":"58"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET16","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003452880861936"},{"denom":"ASSET1","index":"0.000029278299049117"},{"denom":"ASSET10","index":"0.000023254773922096"},{"denom":"ASSET11","index":"0.000029065569213605"},{"denom":"ASSET12","index":"0.000027656204711461"},{"denom":"ASSET13","index":"0.000009124518140406"},{"denom":"ASSET14","index":"0.000026695142606829"},{"denom":"ASSET15","index":"0.000020967476611979"},{"denom":"ASSET16","index":"0.000012995878924798"},{"denom":"ASSET17","index":"0.000010163149632422"},{"denom":"ASSET18","index":"0.000004223627093961"},{"denom":"ASSET2","index":"0.000008858348919255"},{"denom":"ASSET3","index":"0.000002465420318230"},{"denom":"ASSET4","index":"0.000023739200929128"},{"denom":"ASSET5","index":"0.000001919695214447"},{"denom":"ASSET6","index":"0.000007752150153146"},{"denom":"ASSET7","index":"0.000012165597276913"},{"denom":"ASSET8","index":"0.000016587849042771"},{"denom":"ASSET9","index":"0.000007046182609545"}],"last_reward_claim_height":"182"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET9","shares":"654634333.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001444852701297"},{"denom":"ASSET1","index":"0.000012048934466992"},{"denom":"ASSET10","index":"0.000008394653008080"},{"denom":"ASSET11","index":"0.000011656844181701"},{"denom":"ASSET12","index":"0.000010496256937239"},{"denom":"ASSET13","index":"0.000003612131753243"},{"denom":"ASSET14","index":"0.000010888347222530"},{"denom":"ASSET15","index":"0.000007784952614452"},{"denom":"ASSET16","index":"0.000005427509774140"},{"denom":"ASSET17","index":"0.000003854247504410"},{"denom":"ASSET18","index":"0.000001835962760875"},{"denom":"ASSET2","index":"0.000003556258887589"},{"denom":"ASSET3","index":"0.000001040019481734"},{"denom":"ASSET4","index":"0.000009792454875142"},{"denom":"ASSET5","index":"0.000000807705987699"},{"denom":"ASSET6","index":"0.000003286696816452"},{"denom":"ASSET7","index":"0.000005033459037423"},{"denom":"ASSET8","index":"0.000006568492504337"},{"denom":"ASSET9","index":"0.000002836773214080"}],"last_reward_claim_height":"119"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET16","shares":"1816360465.875367586377578903","reward_history":[{"denom":"ASSET0","index":"0.000001444852701297"},{"denom":"ASSET1","index":"0.000012048934466992"},{"denom":"ASSET10","index":"0.000008394653008080"},{"denom":"ASSET11","index":"0.000011656844181701"},{"denom":"ASSET12","index":"0.000010496256937239"},{"denom":"ASSET13","index":"0.000003612131753243"},{"denom":"ASSET14","index":"0.000010888347222530"},{"denom":"ASSET15","index":"0.000007784952614452"},{"denom":"ASSET16","index":"0.000005427509774140"},{"denom":"ASSET17","index":"0.000003854247504410"},{"denom":"ASSET18","index":"0.000001835962760875"},{"denom":"ASSET2","index":"0.000003556258887589"},{"denom":"ASSET3","index":"0.000001040019481734"},{"denom":"ASSET4","index":"0.000009792454875142"},{"denom":"ASSET5","index":"0.000000807705987699"},{"denom":"ASSET6","index":"0.000003286696816452"},{"denom":"ASSET7","index":"0.000005033459037423"},{"denom":"ASSET8","index":"0.000006568492504337"},{"denom":"ASSET9","index":"0.000002836773214080"}],"last_reward_claim_height":"97"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET4","shares":"506382944.000000000000000000","reward_history":[],"last_reward_claim_height":"25"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET11","shares":"970466458.999999992236268328","reward_history":[],"last_reward_claim_height":"61"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET18","shares":"1584348732.600649991624119140","reward_history":[{"denom":"ASSET0","index":"0.000001655416114862"},{"denom":"ASSET1","index":"0.000013800538848519"},{"denom":"ASSET10","index":"0.000009615249134678"},{"denom":"ASSET11","index":"0.000013350879623065"},{"denom":"ASSET12","index":"0.000012022439267096"},{"denom":"ASSET13","index":"0.000004137189147657"},{"denom":"ASSET14","index":"0.000012471558036751"},{"denom":"ASSET15","index":"0.000008916980241305"},{"denom":"ASSET16","index":"0.000006216863065381"},{"denom":"ASSET17","index":"0.000004414983428766"},{"denom":"ASSET18","index":"0.000002102913517117"},{"denom":"ASSET2","index":"0.000004073955819077"},{"denom":"ASSET3","index":"0.000001191705038613"},{"denom":"ASSET4","index":"0.000011215538757958"},{"denom":"ASSET5","index":"0.000000924719873500"},{"denom":"ASSET6","index":"0.000003764274645778"},{"denom":"ASSET7","index":"0.000005765582472528"},{"denom":"ASSET8","index":"0.000007523144733557"},{"denom":"ASSET9","index":"0.000003249220268545"}],"last_reward_claim_height":"95"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET4","shares":"517480377.000000000000000000","reward_history":[],"last_reward_claim_height":"44"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET10","shares":"331047205.596004885337851275","reward_history":[{"denom":"ASSET0","index":"0.000005006228103618"},{"denom":"ASSET1","index":"0.000040947325300376"},{"denom":"ASSET10","index":"0.000035488645967587"},{"denom":"ASSET11","index":"0.000042574940264102"},{"denom":"ASSET12","index":"0.000040516417800037"},{"denom":"ASSET13","index":"0.000013739373191785"},{"denom":"ASSET14","index":"0.000039287313389576"},{"denom":"ASSET15","index":"0.000031859830028224"},{"denom":"ASSET16","index":"0.000018170366377289"},{"denom":"ASSET17","index":"0.000014714890817855"},{"denom":"ASSET18","index":"0.000006118552920444"},{"denom":"ASSET2","index":"0.000012357882268468"},{"denom":"ASSET3","index":"0.000003555809778192"},{"denom":"ASSET4","index":"0.000033572245212516"},{"denom":"ASSET5","index":"0.000002791901316791"},{"denom":"ASSET6","index":"0.000011398916012655"},{"denom":"ASSET7","index":"0.000017601054204752"},{"denom":"ASSET8","index":"0.000025355321651880"},{"denom":"ASSET9","index":"0.000010162593600920"}],"last_reward_claim_height":"196"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET12","shares":"951409275.833625374922275490","reward_history":[{"denom":"ASSET0","index":"0.000001676736923170"},{"denom":"ASSET1","index":"0.000013985463602132"},{"denom":"ASSET10","index":"0.000009743339709608"},{"denom":"ASSET11","index":"0.000013528824721587"},{"denom":"ASSET12","index":"0.000012182509640070"},{"denom":"ASSET13","index":"0.000004192868462713"},{"denom":"ASSET14","index":"0.000012638122365828"},{"denom":"ASSET15","index":"0.000009036319060854"},{"denom":"ASSET16","index":"0.000006299564241947"},{"denom":"ASSET17","index":"0.000004474034874554"},{"denom":"ASSET18","index":"0.000002131323494140"},{"denom":"ASSET2","index":"0.000004128220711085"},{"denom":"ASSET3","index":"0.000001207784185172"},{"denom":"ASSET4","index":"0.000011365690429028"},{"denom":"ASSET5","index":"0.000000936879321208"},{"denom":"ASSET6","index":"0.000003814217346036"},{"denom":"ASSET7","index":"0.000005841899206614"},{"denom":"ASSET8","index":"0.000007623303918134"},{"denom":"ASSET9","index":"0.000003292930713863"}],"last_reward_claim_height":"77"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET13","shares":"404620559.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000005006228103618"},{"denom":"ASSET1","index":"0.000040947325300376"},{"denom":"ASSET10","index":"0.000035488645967587"},{"denom":"ASSET11","index":"0.000042574940264102"},{"denom":"ASSET12","index":"0.000040516417800037"},{"denom":"ASSET13","index":"0.000013739373191785"},{"denom":"ASSET14","index":"0.000039287313389576"},{"denom":"ASSET15","index":"0.000031859830028224"},{"denom":"ASSET16","index":"0.000018170366377289"},{"denom":"ASSET17","index":"0.000014714890817855"},{"denom":"ASSET18","index":"0.000006118552920444"},{"denom":"ASSET2","index":"0.000012357882268468"},{"denom":"ASSET3","index":"0.000003555809778192"},{"denom":"ASSET4","index":"0.000033572245212516"},{"denom":"ASSET5","index":"0.000002791901316791"},{"denom":"ASSET6","index":"0.000011398916012655"},{"denom":"ASSET7","index":"0.000017601054204752"},{"denom":"ASSET8","index":"0.000025355321651880"},{"denom":"ASSET9","index":"0.000010162593600920"}],"last_reward_claim_height":"188"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET5","shares":"1925424425.590934750649747875","reward_history":[{"denom":"ASSET0","index":"0.000004759364904599"},{"denom":"ASSET1","index":"0.000039014688598823"},{"denom":"ASSET10","index":"0.000033564746899774"},{"denom":"ASSET11","index":"0.000040428699846607"},{"denom":"ASSET12","index":"0.000038441898385906"},{"denom":"ASSET13","index":"0.000013020994461924"},{"denom":"ASSET14","index":"0.000037304807804505"},{"denom":"ASSET15","index":"0.000030152778242557"},{"denom":"ASSET16","index":"0.000017316516616402"},{"denom":"ASSET17","index":"0.000013971686283299"},{"denom":"ASSET18","index":"0.000005820085693082"},{"denom":"ASSET2","index":"0.000011772463606205"},{"denom":"ASSET3","index":"0.000003382604675726"},{"denom":"ASSET4","index":"0.000031964503105066"},{"denom":"ASSET5","index":"0.000002653911338254"},{"denom":"ASSET6","index":"0.000010830608501608"},{"denom":"ASSET7","index":"0.000016733421795061"},{"denom":"ASSET8","index":"0.000024009455581904"},{"denom":"ASSET9","index":"0.000009659109983255"}],"last_reward_claim_height":"194"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET18","shares":"477228204.428627743334738081","reward_history":[{"denom":"ASSET0","index":"0.000004759364904599"},{"denom":"ASSET1","index":"0.000039014688598823"},{"denom":"ASSET10","index":"0.000033564746899774"},{"denom":"ASSET11","index":"0.000040428699846607"},{"denom":"ASSET12","index":"0.000038441898385906"},{"denom":"ASSET13","index":"0.000013020994461924"},{"denom":"ASSET14","index":"0.000037304807804505"},{"denom":"ASSET15","index":"0.000030152778242557"},{"denom":"ASSET16","index":"0.000017316516616402"},{"denom":"ASSET17","index":"0.000013971686283299"},{"denom":"ASSET18","index":"0.000005820085693082"},{"denom":"ASSET2","index":"0.000011772463606205"},{"denom":"ASSET3","index":"0.000003382604675726"},{"denom":"ASSET4","index":"0.000031964503105066"},{"denom":"ASSET5","index":"0.000002653911338254"},{"denom":"ASSET6","index":"0.000010830608501608"},{"denom":"ASSET7","index":"0.000016733421795061"},{"denom":"ASSET8","index":"0.000024009455581904"},{"denom":"ASSET9","index":"0.000009659109983255"}],"last_reward_claim_height":"198"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET0","shares":"802058067.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003224934301433"},{"denom":"ASSET1","index":"0.000027341438894536"},{"denom":"ASSET10","index":"0.000021706571274337"},{"denom":"ASSET11","index":"0.000027141091242061"},{"denom":"ASSET12","index":"0.000025819235056226"},{"denom":"ASSET13","index":"0.000008520116782966"},{"denom":"ASSET14","index":"0.000024928444433519"},{"denom":"ASSET15","index":"0.000019573794936329"},{"denom":"ASSET16","index":"0.000012137286393349"},{"denom":"ASSET17","index":"0.000009487995483061"},{"denom":"ASSET18","index":"0.000003945309126507"},{"denom":"ASSET2","index":"0.000008271045740629"},{"denom":"ASSET3","index":"0.000002302032616683"},{"denom":"ASSET4","index":"0.000022168721917699"},{"denom":"ASSET5","index":"0.000001793343624246"},{"denom":"ASSET6","index":"0.000007240378309003"},{"denom":"ASSET7","index":"0.000011361888746536"},{"denom":"ASSET8","index":"0.000015488944629697"},{"denom":"ASSET9","index":"0.000006579500326985"}],"last_reward_claim_height":"150"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET12","shares":"17540736.531041238010767468","reward_history":[{"denom":"ASSET0","index":"0.000001700269946448"},{"denom":"ASSET1","index":"0.000014175647296985"},{"denom":"ASSET10","index":"0.000009876508679424"},{"denom":"ASSET11","index":"0.000013714231996791"},{"denom":"ASSET12","index":"0.000012349169664489"},{"denom":"ASSET13","index":"0.000004249665204630"},{"denom":"ASSET14","index":"0.000012810584964683"},{"denom":"ASSET15","index":"0.000009159649022667"},{"denom":"ASSET16","index":"0.000006386108914062"},{"denom":"ASSET17","index":"0.000004535399405845"},{"denom":"ASSET18","index":"0.000002160675585153"},{"denom":"ASSET2","index":"0.000004184037207885"},{"denom":"ASSET3","index":"0.000001223709723928"},{"denom":"ASSET4","index":"0.000011520237582522"},{"denom":"ASSET5","index":"0.000000950091460574"},{"denom":"ASSET6","index":"0.000003867003500531"},{"denom":"ASSET7","index":"0.000005922674290891"},{"denom":"ASSET8","index":"0.000007727949032131"},{"denom":"ASSET9","index":"0.000003337940880615"}],"last_reward_claim_height":"95"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET14","shares":"786895215.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001700269946448"},{"denom":"ASSET1","index":"0.000014175647296985"},{"denom":"ASSET10","index":"0.000009876508679424"},{"denom":"ASSET11","index":"0.000013714231996791"},{"denom":"ASSET12","index":"0.000012349169664489"},{"denom":"ASSET13","index":"0.000004249665204630"},{"denom":"ASSET14","index":"0.000012810584964683"},{"denom":"ASSET15","index":"0.000009159649022667"},{"denom":"ASSET16","index":"0.000006386108914062"},{"denom":"ASSET17","index":"0.000004535399405845"},{"denom":"ASSET18","index":"0.000002160675585153"},{"denom":"ASSET2","index":"0.000004184037207885"},{"denom":"ASSET3","index":"0.000001223709723928"},{"denom":"ASSET4","index":"0.000011520237582522"},{"denom":"ASSET5","index":"0.000000950091460574"},{"denom":"ASSET6","index":"0.000003867003500531"},{"denom":"ASSET7","index":"0.000005922674290891"},{"denom":"ASSET8","index":"0.000007727949032131"},{"denom":"ASSET9","index":"0.000003337940880615"}],"last_reward_claim_height":"64"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET17","shares":"321241540.274020048508747500","reward_history":[{"denom":"ASSET0","index":"0.000001700269946448"},{"denom":"ASSET1","index":"0.000014175647296985"},{"denom":"ASSET10","index":"0.000009876508679424"},{"denom":"ASSET11","index":"0.000013714231996791"},{"denom":"ASSET12","index":"0.000012349169664489"},{"denom":"ASSET13","index":"0.000004249665204630"},{"denom":"ASSET14","index":"0.000012810584964683"},{"denom":"ASSET15","index":"0.000009159649022667"},{"denom":"ASSET16","index":"0.000006386108914062"},{"denom":"ASSET17","index":"0.000004535399405845"},{"denom":"ASSET18","index":"0.000002160675585153"},{"denom":"ASSET2","index":"0.000004184037207885"},{"denom":"ASSET3","index":"0.000001223709723928"},{"denom":"ASSET4","index":"0.000011520237582522"},{"denom":"ASSET5","index":"0.000000950091460574"},{"denom":"ASSET6","index":"0.000003867003500531"},{"denom":"ASSET7","index":"0.000005922674290891"},{"denom":"ASSET8","index":"0.000007727949032131"},{"denom":"ASSET9","index":"0.000003337940880615"}],"last_reward_claim_height":"107"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET0","shares":"296481618.999999993180922763","reward_history":[],"last_reward_claim_height":"62"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET12","shares":"20778432.556756653506910000","reward_history":[{"denom":"ASSET0","index":"0.000002959758868257"},{"denom":"ASSET1","index":"0.000025116229265451"},{"denom":"ASSET10","index":"0.000020033024535037"},{"denom":"ASSET11","index":"0.000024955202637112"},{"denom":"ASSET12","index":"0.000023787913163340"},{"denom":"ASSET13","index":"0.000007837044315100"},{"denom":"ASSET14","index":"0.000022906603767748"},{"denom":"ASSET15","index":"0.000018047329062837"},{"denom":"ASSET16","index":"0.000011142428291313"},{"denom":"ASSET17","index":"0.000008741414303940"},{"denom":"ASSET18","index":"0.000003614587489816"},{"denom":"ASSET2","index":"0.000007605147442913"},{"denom":"ASSET3","index":"0.000002112677625393"},{"denom":"ASSET4","index":"0.000020363145786569"},{"denom":"ASSET5","index":"0.000001645239564154"},{"denom":"ASSET6","index":"0.000006641765641459"},{"denom":"ASSET7","index":"0.000010434431181702"},{"denom":"ASSET8","index":"0.000014248591155217"},{"denom":"ASSET9","index":"0.000006047835874095"}],"last_reward_claim_height":"172"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET15","shares":"762256.292567496150348124","reward_history":[{"denom":"ASSET0","index":"0.000002959758868257"},{"denom":"ASSET1","index":"0.000025116229265451"},{"denom":"ASSET10","index":"0.000020033024535037"},{"denom":"ASSET11","index":"0.000024955202637112"},{"denom":"ASSET12","index":"0.000023787913163340"},{"denom":"ASSET13","index":"0.000007837044315100"},{"denom":"ASSET14","index":"0.000022906603767748"},{"denom":"ASSET15","index":"0.000018047329062837"},{"denom":"ASSET16","index":"0.000011142428291313"},{"denom":"ASSET17","index":"0.000008741414303940"},{"denom":"ASSET18","index":"0.000003614587489816"},{"denom":"ASSET2","index":"0.000007605147442913"},{"denom":"ASSET3","index":"0.000002112677625393"},{"denom":"ASSET4","index":"0.000020363145786569"},{"denom":"ASSET5","index":"0.000001645239564154"},{"denom":"ASSET6","index":"0.000006641765641459"},{"denom":"ASSET7","index":"0.000010434431181702"},{"denom":"ASSET8","index":"0.000014248591155217"},{"denom":"ASSET9","index":"0.000006047835874095"}],"last_reward_claim_height":"168"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET1","shares":"1000146666.785537847000000000","reward_history":[{"denom":"ASSET0","index":"0.000003468946703322"},{"denom":"ASSET1","index":"0.000029412495408176"},{"denom":"ASSET10","index":"0.000023372734593498"},{"denom":"ASSET11","index":"0.000029203218600002"},{"denom":"ASSET12","index":"0.000027792166579196"},{"denom":"ASSET13","index":"0.000009167641990636"},{"denom":"ASSET14","index":"0.000026818252104650"},{"denom":"ASSET15","index":"0.000021072198152383"},{"denom":"ASSET16","index":"0.000013054905852031"},{"denom":"ASSET17","index":"0.000010211457984650"},{"denom":"ASSET18","index":"0.000004240878207320"},{"denom":"ASSET2","index":"0.000008898543974195"},{"denom":"ASSET3","index":"0.000002476460623897"},{"denom":"ASSET4","index":"0.000023847831794350"},{"denom":"ASSET5","index":"0.000001927880642719"},{"denom":"ASSET6","index":"0.000007785977685579"},{"denom":"ASSET7","index":"0.000012222326144679"},{"denom":"ASSET8","index":"0.000016667230515151"},{"denom":"ASSET9","index":"0.000007078301868557"}],"last_reward_claim_height":"183"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET7","shares":"20361722.000000000223978942","reward_history":[{"denom":"ASSET0","index":"0.000001815877519749"},{"denom":"ASSET1","index":"0.000015137138459046"},{"denom":"ASSET10","index":"0.000010545739718907"},{"denom":"ASSET11","index":"0.000014644907422941"},{"denom":"ASSET12","index":"0.000013186828093302"},{"denom":"ASSET13","index":"0.000004537625601742"},{"denom":"ASSET14","index":"0.000013679059129408"},{"denom":"ASSET15","index":"0.000009780506595550"},{"denom":"ASSET16","index":"0.000006818847588397"},{"denom":"ASSET17","index":"0.000004841650653454"},{"denom":"ASSET18","index":"0.000002306040358223"},{"denom":"ASSET2","index":"0.000004467306882298"},{"denom":"ASSET3","index":"0.000001307100902598"},{"denom":"ASSET4","index":"0.000012301639507366"},{"denom":"ASSET5","index":"0.000001013416839040"},{"denom":"ASSET6","index":"0.000004128122470864"},{"denom":"ASSET7","index":"0.000006324548354661"},{"denom":"ASSET8","index":"0.000008252108546467"},{"denom":"ASSET9","index":"0.000003563504517685"}],"last_reward_claim_height":"98"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET9","shares":"989226327.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003468946703322"},{"denom":"ASSET1","index":"0.000029412495408176"},{"denom":"ASSET10","index":"0.000023372734593498"},{"denom":"ASSET11","index":"0.000029203218600002"},{"denom":"ASSET12","index":"0.000027792166579196"},{"denom":"ASSET13","index":"0.000009167641990636"},{"denom":"ASSET14","index":"0.000026818252104650"},{"denom":"ASSET15","index":"0.000021072198152383"},{"denom":"ASSET16","index":"0.000013054905852031"},{"denom":"ASSET17","index":"0.000010211457984650"},{"denom":"ASSET18","index":"0.000004240878207320"},{"denom":"ASSET2","index":"0.000008898543974195"},{"denom":"ASSET3","index":"0.000002476460623897"},{"denom":"ASSET4","index":"0.000023847831794350"},{"denom":"ASSET5","index":"0.000001927880642719"},{"denom":"ASSET6","index":"0.000007785977685579"},{"denom":"ASSET7","index":"0.000012222326144679"},{"denom":"ASSET8","index":"0.000016667230515151"},{"denom":"ASSET9","index":"0.000007078301868557"}],"last_reward_claim_height":"134"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET11","shares":"79496319.379980047937431477","reward_history":[{"denom":"ASSET0","index":"0.000003468946703322"},{"denom":"ASSET1","index":"0.000029412495408176"},{"denom":"ASSET10","index":"0.000023372734593498"},{"denom":"ASSET11","index":"0.000029203218600002"},{"denom":"ASSET12","index":"0.000027792166579196"},{"denom":"ASSET13","index":"0.000009167641990636"},{"denom":"ASSET14","index":"0.000026818252104650"},{"denom":"ASSET15","index":"0.000021072198152383"},{"denom":"ASSET16","index":"0.000013054905852031"},{"denom":"ASSET17","index":"0.000010211457984650"},{"denom":"ASSET18","index":"0.000004240878207320"},{"denom":"ASSET2","index":"0.000008898543974195"},{"denom":"ASSET3","index":"0.000002476460623897"},{"denom":"ASSET4","index":"0.000023847831794350"},{"denom":"ASSET5","index":"0.000001927880642719"},{"denom":"ASSET6","index":"0.000007785977685579"},{"denom":"ASSET7","index":"0.000012222326144679"},{"denom":"ASSET8","index":"0.000016667230515151"},{"denom":"ASSET9","index":"0.000007078301868557"}],"last_reward_claim_height":"138"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET13","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004565478059780"},{"denom":"ASSET1","index":"0.000037736114077554"},{"denom":"ASSET10","index":"0.000031825820517489"},{"denom":"ASSET11","index":"0.000038685850648716"},{"denom":"ASSET12","index":"0.000036788452071453"},{"denom":"ASSET13","index":"0.000012381244410564"},{"denom":"ASSET14","index":"0.000035654955133069"},{"denom":"ASSET15","index":"0.000028616198788550"},{"denom":"ASSET16","index":"0.000016750351619561"},{"denom":"ASSET17","index":"0.000013405640316386"},{"denom":"ASSET18","index":"0.000005582271545328"},{"denom":"ASSET2","index":"0.000011392477328809"},{"denom":"ASSET3","index":"0.000003247635140503"},{"denom":"ASSET4","index":"0.000030836249037897"},{"denom":"ASSET5","index":"0.000002543131552682"},{"denom":"ASSET6","index":"0.000010352525282998"},{"denom":"ASSET7","index":"0.000016058778639515"},{"denom":"ASSET8","index":"0.000022752754383051"},{"denom":"ASSET9","index":"0.000009275867790330"}],"last_reward_claim_height":"196"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET16","shares":"825013142.425857339073126520","reward_history":[{"denom":"ASSET0","index":"0.000003468946703322"},{"denom":"ASSET1","index":"0.000029412495408176"},{"denom":"ASSET10","index":"0.000023372734593498"},{"denom":"ASSET11","index":"0.000029203218600002"},{"denom":"ASSET12","index":"0.000027792166579196"},{"denom":"ASSET13","index":"0.000009167641990636"},{"denom":"ASSET14","index":"0.000026818252104650"},{"denom":"ASSET15","index":"0.000021072198152383"},{"denom":"ASSET16","index":"0.000013054905852031"},{"denom":"ASSET17","index":"0.000010211457984650"},{"denom":"ASSET18","index":"0.000004240878207320"},{"denom":"ASSET2","index":"0.000008898543974195"},{"denom":"ASSET3","index":"0.000002476460623897"},{"denom":"ASSET4","index":"0.000023847831794350"},{"denom":"ASSET5","index":"0.000001927880642719"},{"denom":"ASSET6","index":"0.000007785977685579"},{"denom":"ASSET7","index":"0.000012222326144679"},{"denom":"ASSET8","index":"0.000016667230515151"},{"denom":"ASSET9","index":"0.000007078301868557"}],"last_reward_claim_height":"183"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET9","shares":"415016287.071378525863397677","reward_history":[{"denom":"ASSET0","index":"0.000004642329094444"},{"denom":"ASSET1","index":"0.000037967161482845"},{"denom":"ASSET10","index":"0.000032931253260152"},{"denom":"ASSET11","index":"0.000039486280861719"},{"denom":"ASSET12","index":"0.000037586804680979"},{"denom":"ASSET13","index":"0.000012743069023422"},{"denom":"ASSET14","index":"0.000036434359116272"},{"denom":"ASSET15","index":"0.000029559994513742"},{"denom":"ASSET16","index":"0.000016847409196889"},{"denom":"ASSET17","index":"0.000013650334747675"},{"denom":"ASSET18","index":"0.000005671704965855"},{"denom":"ASSET2","index":"0.000011459689932521"},{"denom":"ASSET3","index":"0.000003296448580147"},{"denom":"ASSET4","index":"0.000031129189219066"},{"denom":"ASSET5","index":"0.000002588892680165"},{"denom":"ASSET6","index":"0.000010569495723679"},{"denom":"ASSET7","index":"0.000016320903643661"},{"denom":"ASSET8","index":"0.000023519579582169"},{"denom":"ASSET9","index":"0.000009424684718802"}],"last_reward_claim_height":"197"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET12","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"22"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET15","shares":"797088368.000000000000000000","reward_history":[],"last_reward_claim_height":"36"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET16","shares":"750142642.432852811230596156","reward_history":[{"denom":"ASSET0","index":"0.000001541968050995"},{"denom":"ASSET1","index":"0.000012857487907975"},{"denom":"ASSET10","index":"0.000008957704485900"},{"denom":"ASSET11","index":"0.000012438763825161"},{"denom":"ASSET12","index":"0.000011200869215257"},{"denom":"ASSET13","index":"0.000003854089325736"},{"denom":"ASSET14","index":"0.000011619593298070"},{"denom":"ASSET15","index":"0.000008307186714386"},{"denom":"ASSET16","index":"0.000005792349812251"},{"denom":"ASSET17","index":"0.000004113299472240"},{"denom":"ASSET18","index":"0.000001959030530305"},{"denom":"ASSET2","index":"0.000003795102401372"},{"denom":"ASSET3","index":"0.000001109951140156"},{"denom":"ASSET4","index":"0.000010448993630046"},{"denom":"ASSET5","index":"0.000000861541416423"},{"denom":"ASSET6","index":"0.000003506814193562"},{"denom":"ASSET7","index":"0.000005371133324183"},{"denom":"ASSET8","index":"0.000007009474378365"},{"denom":"ASSET9","index":"0.000003027441582881"}],"last_reward_claim_height":"103"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET0","shares":"1000010405.378237137000000000","reward_history":[{"denom":"ASSET0","index":"0.000002827520151011"},{"denom":"ASSET1","index":"0.000024027878888002"},{"denom":"ASSET10","index":"0.000019355847170480"},{"denom":"ASSET11","index":"0.000023924401086085"},{"denom":"ASSET12","index":"0.000022900407365256"},{"denom":"ASSET13","index":"0.000007521399074311"},{"denom":"ASSET14","index":"0.000021930603354990"},{"denom":"ASSET15","index":"0.000017401215805238"},{"denom":"ASSET16","index":"0.000010647310435771"},{"denom":"ASSET17","index":"0.000008415007538097"},{"denom":"ASSET18","index":"0.000003442593620109"},{"denom":"ASSET2","index":"0.000007289635767836"},{"denom":"ASSET3","index":"0.000002016810506595"},{"denom":"ASSET4","index":"0.000019477449509443"},{"denom":"ASSET5","index":"0.000001571692130579"},{"denom":"ASSET6","index":"0.000006339251488002"},{"denom":"ASSET7","index":"0.000009978075244424"},{"denom":"ASSET8","index":"0.000013673195599374"},{"denom":"ASSET9","index":"0.000005796522499795"}],"last_reward_claim_height":"154"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET8","shares":"152737179.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002827520151011"},{"denom":"ASSET1","index":"0.000024027878888002"},{"denom":"ASSET10","index":"0.000019355847170480"},{"denom":"ASSET11","index":"0.000023924401086085"},{"denom":"ASSET12","index":"0.000022900407365256"},{"denom":"ASSET13","index":"0.000007521399074311"},{"denom":"ASSET14","index":"0.000021930603354990"},{"denom":"ASSET15","index":"0.000017401215805238"},{"denom":"ASSET16","index":"0.000010647310435771"},{"denom":"ASSET17","index":"0.000008415007538097"},{"denom":"ASSET18","index":"0.000003442593620109"},{"denom":"ASSET2","index":"0.000007289635767836"},{"denom":"ASSET3","index":"0.000002016810506595"},{"denom":"ASSET4","index":"0.000019477449509443"},{"denom":"ASSET5","index":"0.000001571692130579"},{"denom":"ASSET6","index":"0.000006339251488002"},{"denom":"ASSET7","index":"0.000009978075244424"},{"denom":"ASSET8","index":"0.000013673195599374"},{"denom":"ASSET9","index":"0.000005796522499795"}],"last_reward_claim_height":"151"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET11","shares":"7248216.000000000000000000","reward_history":[],"last_reward_claim_height":"12"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET2","shares":"22682342.996345047803807375","reward_history":[{"denom":"ASSET0","index":"0.000004668297440245"},{"denom":"ASSET1","index":"0.000038252783071288"},{"denom":"ASSET10","index":"0.000033083245025153"},{"denom":"ASSET11","index":"0.000039708345694553"},{"denom":"ASSET12","index":"0.000037813797973625"},{"denom":"ASSET13","index":"0.000012799944975093"},{"denom":"ASSET14","index":"0.000036625421736424"},{"denom":"ASSET15","index":"0.000029696005658341"},{"denom":"ASSET16","index":"0.000016971159537831"},{"denom":"ASSET17","index":"0.000013740059333476"},{"denom":"ASSET18","index":"0.000005702232169970"},{"denom":"ASSET2","index":"0.000011549026586519"},{"denom":"ASSET3","index":"0.000003315565659179"},{"denom":"ASSET4","index":"0.000031346012924510"},{"denom":"ASSET5","index":"0.000002602988639174"},{"denom":"ASSET6","index":"0.000010621884419797"},{"denom":"ASSET7","index":"0.000016417450552926"},{"denom":"ASSET8","index":"0.000023609141580926"},{"denom":"ASSET9","index":"0.000009483071524163"}],"last_reward_claim_height":"189"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET7","shares":"17564046.999999999051541462","reward_history":[{"denom":"ASSET0","index":"0.000003141123056438"},{"denom":"ASSET1","index":"0.000026662100889972"},{"denom":"ASSET10","index":"0.000021312054987248"},{"denom":"ASSET11","index":"0.000026503481745319"},{"denom":"ASSET12","index":"0.000025286293002787"},{"denom":"ASSET13","index":"0.000008324908472884"},{"denom":"ASSET14","index":"0.000024319980387721"},{"denom":"ASSET15","index":"0.000019190708128374"},{"denom":"ASSET16","index":"0.000011824997422058"},{"denom":"ASSET17","index":"0.000009292034078872"},{"denom":"ASSET18","index":"0.000003834040785154"},{"denom":"ASSET2","index":"0.000008076003481032"},{"denom":"ASSET3","index":"0.000002241608843356"},{"denom":"ASSET4","index":"0.000021614431804298"},{"denom":"ASSET5","index":"0.000001746420421862"},{"denom":"ASSET6","index":"0.000007047828859327"},{"denom":"ASSET7","index":"0.000011075197168484"},{"denom":"ASSET8","index":"0.000015134882092008"},{"denom":"ASSET9","index":"0.000006422749115253"}],"last_reward_claim_height":"164"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET8","shares":"318647632.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003141123056438"},{"denom":"ASSET1","index":"0.000026662100889972"},{"denom":"ASSET10","index":"0.000021312054987248"},{"denom":"ASSET11","index":"0.000026503481745319"},{"denom":"ASSET12","index":"0.000025286293002787"},{"denom":"ASSET13","index":"0.000008324908472884"},{"denom":"ASSET14","index":"0.000024319980387721"},{"denom":"ASSET15","index":"0.000019190708128374"},{"denom":"ASSET16","index":"0.000011824997422058"},{"denom":"ASSET17","index":"0.000009292034078872"},{"denom":"ASSET18","index":"0.000003834040785154"},{"denom":"ASSET2","index":"0.000008076003481032"},{"denom":"ASSET3","index":"0.000002241608843356"},{"denom":"ASSET4","index":"0.000021614431804298"},{"denom":"ASSET5","index":"0.000001746420421862"},{"denom":"ASSET6","index":"0.000007047828859327"},{"denom":"ASSET7","index":"0.000011075197168484"},{"denom":"ASSET8","index":"0.000015134882092008"},{"denom":"ASSET9","index":"0.000006422749115253"}],"last_reward_claim_height":"126"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET15","shares":"536259572.136325244109782032","reward_history":[{"denom":"ASSET0","index":"0.000004668297440245"},{"denom":"ASSET1","index":"0.000038252783071288"},{"denom":"ASSET10","index":"0.000033083245025153"},{"denom":"ASSET11","index":"0.000039708345694553"},{"denom":"ASSET12","index":"0.000037813797973625"},{"denom":"ASSET13","index":"0.000012799944975093"},{"denom":"ASSET14","index":"0.000036625421736424"},{"denom":"ASSET15","index":"0.000029696005658341"},{"denom":"ASSET16","index":"0.000016971159537831"},{"denom":"ASSET17","index":"0.000013740059333476"},{"denom":"ASSET18","index":"0.000005702232169970"},{"denom":"ASSET2","index":"0.000011549026586519"},{"denom":"ASSET3","index":"0.000003315565659179"},{"denom":"ASSET4","index":"0.000031346012924510"},{"denom":"ASSET5","index":"0.000002602988639174"},{"denom":"ASSET6","index":"0.000010621884419797"},{"denom":"ASSET7","index":"0.000016417450552926"},{"denom":"ASSET8","index":"0.000023609141580926"},{"denom":"ASSET9","index":"0.000009483071524163"}],"last_reward_claim_height":"193"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET18","shares":"30463697.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001571435631869"},{"denom":"ASSET1","index":"0.000013104175099655"},{"denom":"ASSET10","index":"0.000009129715488355"},{"denom":"ASSET11","index":"0.000012677036600848"},{"denom":"ASSET12","index":"0.000011415350365342"},{"denom":"ASSET13","index":"0.000003928095848150"},{"denom":"ASSET14","index":"0.000011841502401104"},{"denom":"ASSET15","index":"0.000008466812321615"},{"denom":"ASSET16","index":"0.000005902994865728"},{"denom":"ASSET17","index":"0.000004192467944409"},{"denom":"ASSET18","index":"0.000001996601204585"},{"denom":"ASSET2","index":"0.000003867921602360"},{"denom":"ASSET3","index":"0.000001131473113468"},{"denom":"ASSET4","index":"0.000010648868578800"},{"denom":"ASSET5","index":"0.000000877952110712"},{"denom":"ASSET6","index":"0.000003573955614728"},{"denom":"ASSET7","index":"0.000005473883440830"},{"denom":"ASSET8","index":"0.000007142978914228"},{"denom":"ASSET9","index":"0.000003084669944040"}],"last_reward_claim_height":"75"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET5","shares":"593004926.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003054120352223"},{"denom":"ASSET1","index":"0.000025909289170716"},{"denom":"ASSET10","index":"0.000020664041936079"},{"denom":"ASSET11","index":"0.000025743066158465"},{"denom":"ASSET12","index":"0.000024537849095602"},{"denom":"ASSET13","index":"0.000008085297309351"},{"denom":"ASSET14","index":"0.000023630023251940"},{"denom":"ASSET15","index":"0.000018615490114349"},{"denom":"ASSET16","index":"0.000011495216270003"},{"denom":"ASSET17","index":"0.000009017197770141"},{"denom":"ASSET18","index":"0.000003730110182262"},{"denom":"ASSET2","index":"0.000007845299155388"},{"denom":"ASSET3","index":"0.000002179886924088"},{"denom":"ASSET4","index":"0.000021005968780047"},{"denom":"ASSET5","index":"0.000001698230665763"},{"denom":"ASSET6","index":"0.000006853367473041"},{"denom":"ASSET7","index":"0.000010764057351149"},{"denom":"ASSET8","index":"0.000014698116791571"},{"denom":"ASSET9","index":"0.000006239964640655"}],"last_reward_claim_height":"128"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET8","shares":"151916060.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001554974273829"},{"denom":"ASSET1","index":"0.000012964145980643"},{"denom":"ASSET10","index":"0.000009032293690170"},{"denom":"ASSET11","index":"0.000012541598623624"},{"denom":"ASSET12","index":"0.000011293609918011"},{"denom":"ASSET13","index":"0.000003886649549954"},{"denom":"ASSET14","index":"0.000011715371140412"},{"denom":"ASSET15","index":"0.000008376264351692"},{"denom":"ASSET16","index":"0.000005840194074962"},{"denom":"ASSET17","index":"0.000004147646243034"},{"denom":"ASSET18","index":"0.000001975556294303"},{"denom":"ASSET2","index":"0.000003826903319009"},{"denom":"ASSET3","index":"0.000001119455695618"},{"denom":"ASSET4","index":"0.000010535776146539"},{"denom":"ASSET5","index":"0.000000869071819878"},{"denom":"ASSET6","index":"0.000003536426577765"},{"denom":"ASSET7","index":"0.000005416074448708"},{"denom":"ASSET8","index":"0.000007067350213206"},{"denom":"ASSET9","index":"0.000003052560720565"}],"last_reward_claim_height":"115"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET12","shares":"560080979.690482137168132280","reward_history":[{"denom":"ASSET0","index":"0.000004666078822529"},{"denom":"ASSET1","index":"0.000038144124395476"},{"denom":"ASSET10","index":"0.000033089052036549"},{"denom":"ASSET11","index":"0.000039681425534428"},{"denom":"ASSET12","index":"0.000037761291809173"},{"denom":"ASSET13","index":"0.000012808979605762"},{"denom":"ASSET14","index":"0.000036619269127831"},{"denom":"ASSET15","index":"0.000029704245003480"},{"denom":"ASSET16","index":"0.000016927274823028"},{"denom":"ASSET17","index":"0.000013712454456823"},{"denom":"ASSET18","index":"0.000005702042524448"},{"denom":"ASSET2","index":"0.000011511448148246"},{"denom":"ASSET3","index":"0.000003313641110366"},{"denom":"ASSET4","index":"0.000031278179163152"},{"denom":"ASSET5","index":"0.000002602567541660"},{"denom":"ASSET6","index":"0.000010625923836833"},{"denom":"ASSET7","index":"0.000016403144902467"},{"denom":"ASSET8","index":"0.000023643127909799"},{"denom":"ASSET9","index":"0.000009470170432977"}],"last_reward_claim_height":"194"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET15","shares":"261552214.050806132507103444","reward_history":[{"denom":"ASSET0","index":"0.000003054120352223"},{"denom":"ASSET1","index":"0.000025909289170716"},{"denom":"ASSET10","index":"0.000020664041936079"},{"denom":"ASSET11","index":"0.000025743066158465"},{"denom":"ASSET12","index":"0.000024537849095602"},{"denom":"ASSET13","index":"0.000008085297309351"},{"denom":"ASSET14","index":"0.000023630023251940"},{"denom":"ASSET15","index":"0.000018615490114349"},{"denom":"ASSET16","index":"0.000011495216270003"},{"denom":"ASSET17","index":"0.000009017197770141"},{"denom":"ASSET18","index":"0.000003730110182262"},{"denom":"ASSET2","index":"0.000007845299155388"},{"denom":"ASSET3","index":"0.000002179886924088"},{"denom":"ASSET4","index":"0.000021005968780047"},{"denom":"ASSET5","index":"0.000001698230665763"},{"denom":"ASSET6","index":"0.000006853367473041"},{"denom":"ASSET7","index":"0.000010764057351149"},{"denom":"ASSET8","index":"0.000014698116791571"},{"denom":"ASSET9","index":"0.000006239964640655"}],"last_reward_claim_height":"179"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET0","shares":"550714780.622366373585368416","reward_history":[{"denom":"ASSET0","index":"0.000003152887181228"},{"denom":"ASSET1","index":"0.000026760532918289"},{"denom":"ASSET10","index":"0.000021371603424459"},{"denom":"ASSET11","index":"0.000026596151859305"},{"denom":"ASSET12","index":"0.000025366346961436"},{"denom":"ASSET13","index":"0.000008353980761099"},{"denom":"ASSET14","index":"0.000024408754798213"},{"denom":"ASSET15","index":"0.000019248058608344"},{"denom":"ASSET16","index":"0.000011870971278696"},{"denom":"ASSET17","index":"0.000009321801721671"},{"denom":"ASSET18","index":"0.000003850124607081"},{"denom":"ASSET2","index":"0.000008105134387478"},{"denom":"ASSET3","index":"0.000002250596051831"},{"denom":"ASSET4","index":"0.000021694971342643"},{"denom":"ASSET5","index":"0.000001752750611640"},{"denom":"ASSET6","index":"0.000007075802880646"},{"denom":"ASSET7","index":"0.000011117440314842"},{"denom":"ASSET8","index":"0.000015186957305377"},{"denom":"ASSET9","index":"0.000006446159830056"}],"last_reward_claim_height":"172"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET7","shares":"955483867.999999977068387168","reward_history":[{"denom":"ASSET0","index":"0.000003152887181228"},{"denom":"ASSET1","index":"0.000026760532918289"},{"denom":"ASSET10","index":"0.000021371603424459"},{"denom":"ASSET11","index":"0.000026596151859305"},{"denom":"ASSET12","index":"0.000025366346961436"},{"denom":"ASSET13","index":"0.000008353980761099"},{"denom":"ASSET14","index":"0.000024408754798213"},{"denom":"ASSET15","index":"0.000019248058608344"},{"denom":"ASSET16","index":"0.000011870971278696"},{"denom":"ASSET17","index":"0.000009321801721671"},{"denom":"ASSET18","index":"0.000003850124607081"},{"denom":"ASSET2","index":"0.000008105134387478"},{"denom":"ASSET3","index":"0.000002250596051831"},{"denom":"ASSET4","index":"0.000021694971342643"},{"denom":"ASSET5","index":"0.000001752750611640"},{"denom":"ASSET6","index":"0.000007075802880646"},{"denom":"ASSET7","index":"0.000011117440314842"},{"denom":"ASSET8","index":"0.000015186957305377"},{"denom":"ASSET9","index":"0.000006446159830056"}],"last_reward_claim_height":"156"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET10","shares":"791129321.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003152887181228"},{"denom":"ASSET1","index":"0.000026760532918289"},{"denom":"ASSET10","index":"0.000021371603424459"},{"denom":"ASSET11","index":"0.000026596151859305"},{"denom":"ASSET12","index":"0.000025366346961436"},{"denom":"ASSET13","index":"0.000008353980761099"},{"denom":"ASSET14","index":"0.000024408754798213"},{"denom":"ASSET15","index":"0.000019248058608344"},{"denom":"ASSET16","index":"0.000011870971278696"},{"denom":"ASSET17","index":"0.000009321801721671"},{"denom":"ASSET18","index":"0.000003850124607081"},{"denom":"ASSET2","index":"0.000008105134387478"},{"denom":"ASSET3","index":"0.000002250596051831"},{"denom":"ASSET4","index":"0.000021694971342643"},{"denom":"ASSET5","index":"0.000001752750611640"},{"denom":"ASSET6","index":"0.000007075802880646"},{"denom":"ASSET7","index":"0.000011117440314842"},{"denom":"ASSET8","index":"0.000015186957305377"},{"denom":"ASSET9","index":"0.000006446159830056"}],"last_reward_claim_height":"126"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET18","shares":"598645381.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003152887181228"},{"denom":"ASSET1","index":"0.000026760532918289"},{"denom":"ASSET10","index":"0.000021371603424459"},{"denom":"ASSET11","index":"0.000026596151859305"},{"denom":"ASSET12","index":"0.000025366346961436"},{"denom":"ASSET13","index":"0.000008353980761099"},{"denom":"ASSET14","index":"0.000024408754798213"},{"denom":"ASSET15","index":"0.000019248058608344"},{"denom":"ASSET16","index":"0.000011870971278696"},{"denom":"ASSET17","index":"0.000009321801721671"},{"denom":"ASSET18","index":"0.000003850124607081"},{"denom":"ASSET2","index":"0.000008105134387478"},{"denom":"ASSET3","index":"0.000002250596051831"},{"denom":"ASSET4","index":"0.000021694971342643"},{"denom":"ASSET5","index":"0.000001752750611640"},{"denom":"ASSET6","index":"0.000007075802880646"},{"denom":"ASSET7","index":"0.000011117440314842"},{"denom":"ASSET8","index":"0.000015186957305377"},{"denom":"ASSET9","index":"0.000006446159830056"}],"last_reward_claim_height":"157"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET3","shares":"565773277.999999999341543881","reward_history":[],"last_reward_claim_height":"58"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET18","shares":"143418283.999999999569745148","reward_history":[{"denom":"ASSET0","index":"0.000002831039632868"},{"denom":"ASSET1","index":"0.000024014703977493"},{"denom":"ASSET10","index":"0.000019136467933987"},{"denom":"ASSET11","index":"0.000023856136612857"},{"denom":"ASSET12","index":"0.000022731094165303"},{"denom":"ASSET13","index":"0.000007491812146677"},{"denom":"ASSET14","index":"0.000021900750691559"},{"denom":"ASSET15","index":"0.000017242457090593"},{"denom":"ASSET16","index":"0.000010655585625623"},{"denom":"ASSET17","index":"0.000008353141870908"},{"denom":"ASSET18","index":"0.000003458892129556"},{"denom":"ASSET2","index":"0.000007270317321266"},{"denom":"ASSET3","index":"0.000002020551075646"},{"denom":"ASSET4","index":"0.000019470118745656"},{"denom":"ASSET5","index":"0.000001574098937698"},{"denom":"ASSET6","index":"0.000006353413461243"},{"denom":"ASSET7","index":"0.000009977493764026"},{"denom":"ASSET8","index":"0.000013619759476676"},{"denom":"ASSET9","index":"0.000005782490697784"}],"last_reward_claim_height":"179"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET0","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003160678210357"},{"denom":"ASSET1","index":"0.000026816731621709"},{"denom":"ASSET10","index":"0.000021409695697867"},{"denom":"ASSET11","index":"0.000026650151208928"},{"denom":"ASSET12","index":"0.000025413985003091"},{"denom":"ASSET13","index":"0.000008371194471357"},{"denom":"ASSET14","index":"0.000024459575922385"},{"denom":"ASSET15","index":"0.000019283728762326"},{"denom":"ASSET16","index":"0.000011895729224726"},{"denom":"ASSET17","index":"0.000009339186085895"},{"denom":"ASSET18","index":"0.000003859320220004"},{"denom":"ASSET2","index":"0.000008121656282140"},{"denom":"ASSET3","index":"0.000002255587694637"},{"denom":"ASSET4","index":"0.000021740936259308"},{"denom":"ASSET5","index":"0.000001757304707579"},{"denom":"ASSET6","index":"0.000007091577992612"},{"denom":"ASSET7","index":"0.000011140302591406"},{"denom":"ASSET8","index":"0.000015217956063596"},{"denom":"ASSET9","index":"0.000006459479788296"}],"last_reward_claim_height":"138"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET4","shares":"554371806.169728831059794212","reward_history":[{"denom":"ASSET0","index":"0.000003160678210357"},{"denom":"ASSET1","index":"0.000026816731621709"},{"denom":"ASSET10","index":"0.000021409695697867"},{"denom":"ASSET11","index":"0.000026650151208928"},{"denom":"ASSET12","index":"0.000025413985003091"},{"denom":"ASSET13","index":"0.000008371194471357"},{"denom":"ASSET14","index":"0.000024459575922385"},{"denom":"ASSET15","index":"0.000019283728762326"},{"denom":"ASSET16","index":"0.000011895729224726"},{"denom":"ASSET17","index":"0.000009339186085895"},{"denom":"ASSET18","index":"0.000003859320220004"},{"denom":"ASSET2","index":"0.000008121656282140"},{"denom":"ASSET3","index":"0.000002255587694637"},{"denom":"ASSET4","index":"0.000021740936259308"},{"denom":"ASSET5","index":"0.000001757304707579"},{"denom":"ASSET6","index":"0.000007091577992612"},{"denom":"ASSET7","index":"0.000011140302591406"},{"denom":"ASSET8","index":"0.000015217956063596"},{"denom":"ASSET9","index":"0.000006459479788296"}],"last_reward_claim_height":"173"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET5","shares":"646134522.193284724806451210","reward_history":[{"denom":"ASSET0","index":"0.000003160678210357"},{"denom":"ASSET1","index":"0.000026816731621709"},{"denom":"ASSET10","index":"0.000021409695697867"},{"denom":"ASSET11","index":"0.000026650151208928"},{"denom":"ASSET12","index":"0.000025413985003091"},{"denom":"ASSET13","index":"0.000008371194471357"},{"denom":"ASSET14","index":"0.000024459575922385"},{"denom":"ASSET15","index":"0.000019283728762326"},{"denom":"ASSET16","index":"0.000011895729224726"},{"denom":"ASSET17","index":"0.000009339186085895"},{"denom":"ASSET18","index":"0.000003859320220004"},{"denom":"ASSET2","index":"0.000008121656282140"},{"denom":"ASSET3","index":"0.000002255587694637"},{"denom":"ASSET4","index":"0.000021740936259308"},{"denom":"ASSET5","index":"0.000001757304707579"},{"denom":"ASSET6","index":"0.000007091577992612"},{"denom":"ASSET7","index":"0.000011140302591406"},{"denom":"ASSET8","index":"0.000015217956063596"},{"denom":"ASSET9","index":"0.000006459479788296"}],"last_reward_claim_height":"124"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET6","shares":"237838822.635010417362828041","reward_history":[{"denom":"ASSET0","index":"0.000003160678210357"},{"denom":"ASSET1","index":"0.000026816731621709"},{"denom":"ASSET10","index":"0.000021409695697867"},{"denom":"ASSET11","index":"0.000026650151208928"},{"denom":"ASSET12","index":"0.000025413985003091"},{"denom":"ASSET13","index":"0.000008371194471357"},{"denom":"ASSET14","index":"0.000024459575922385"},{"denom":"ASSET15","index":"0.000019283728762326"},{"denom":"ASSET16","index":"0.000011895729224726"},{"denom":"ASSET17","index":"0.000009339186085895"},{"denom":"ASSET18","index":"0.000003859320220004"},{"denom":"ASSET2","index":"0.000008121656282140"},{"denom":"ASSET3","index":"0.000002255587694637"},{"denom":"ASSET4","index":"0.000021740936259308"},{"denom":"ASSET5","index":"0.000001757304707579"},{"denom":"ASSET6","index":"0.000007091577992612"},{"denom":"ASSET7","index":"0.000011140302591406"},{"denom":"ASSET8","index":"0.000015217956063596"},{"denom":"ASSET9","index":"0.000006459479788296"}],"last_reward_claim_height":"135"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET4","shares":"272536335.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003102081054533"},{"denom":"ASSET1","index":"0.000026328097047411"},{"denom":"ASSET10","index":"0.000021065731925672"},{"denom":"ASSET11","index":"0.000026176422512857"},{"denom":"ASSET12","index":"0.000024984864029023"},{"denom":"ASSET13","index":"0.000008223750690350"},{"denom":"ASSET14","index":"0.000024017391771060"},{"denom":"ASSET15","index":"0.000018965095888316"},{"denom":"ASSET16","index":"0.000011675661088751"},{"denom":"ASSET17","index":"0.000009181817821335"},{"denom":"ASSET18","index":"0.000003784851704842"},{"denom":"ASSET2","index":"0.000007977007181168"},{"denom":"ASSET3","index":"0.000002213531006169"},{"denom":"ASSET4","index":"0.000021343717572048"},{"denom":"ASSET5","index":"0.000001724500934679"},{"denom":"ASSET6","index":"0.000006958604580417"},{"denom":"ASSET7","index":"0.000010936011139136"},{"denom":"ASSET8","index":"0.000014950117004491"},{"denom":"ASSET9","index":"0.000006344046059941"}],"last_reward_claim_height":"142"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET17","shares":"471373714.000000016026706276","reward_history":[{"denom":"ASSET0","index":"0.000003102081054533"},{"denom":"ASSET1","index":"0.000026328097047411"},{"denom":"ASSET10","index":"0.000021065731925672"},{"denom":"ASSET11","index":"0.000026176422512857"},{"denom":"ASSET12","index":"0.000024984864029023"},{"denom":"ASSET13","index":"0.000008223750690350"},{"denom":"ASSET14","index":"0.000024017391771060"},{"denom":"ASSET15","index":"0.000018965095888316"},{"denom":"ASSET16","index":"0.000011675661088751"},{"denom":"ASSET17","index":"0.000009181817821335"},{"denom":"ASSET18","index":"0.000003784851704842"},{"denom":"ASSET2","index":"0.000007977007181168"},{"denom":"ASSET3","index":"0.000002213531006169"},{"denom":"ASSET4","index":"0.000021343717572048"},{"denom":"ASSET5","index":"0.000001724500934679"},{"denom":"ASSET6","index":"0.000006958604580417"},{"denom":"ASSET7","index":"0.000010936011139136"},{"denom":"ASSET8","index":"0.000014950117004491"},{"denom":"ASSET9","index":"0.000006344046059941"}],"last_reward_claim_height":"163"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET0","shares":"263373680.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003308323901116"},{"denom":"ASSET1","index":"0.000028066718381779"},{"denom":"ASSET10","index":"0.000022316311421496"},{"denom":"ASSET11","index":"0.000027867424204892"},{"denom":"ASSET12","index":"0.000026530665881565"},{"denom":"ASSET13","index":"0.000008749579510737"},{"denom":"ASSET14","index":"0.000025590688346390"},{"denom":"ASSET15","index":"0.000020116135001180"},{"denom":"ASSET16","index":"0.000012455644018572"},{"denom":"ASSET17","index":"0.000009747635771928"},{"denom":"ASSET18","index":"0.000004046709206696"},{"denom":"ASSET2","index":"0.000008491843085820"},{"denom":"ASSET3","index":"0.000002361259343526"},{"denom":"ASSET4","index":"0.000022756236881458"},{"denom":"ASSET5","index":"0.000001838827056256"},{"denom":"ASSET6","index":"0.000007428217086977"},{"denom":"ASSET7","index":"0.000011660835649526"},{"denom":"ASSET8","index":"0.000015906513514404"},{"denom":"ASSET9","index":"0.000006755948018281"}],"last_reward_claim_height":"136"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET4","shares":"109248561.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001722784092424"},{"denom":"ASSET1","index":"0.000014376047839207"},{"denom":"ASSET10","index":"0.000010014727915911"},{"denom":"ASSET11","index":"0.000013905627425621"},{"denom":"ASSET12","index":"0.000012523636788373"},{"denom":"ASSET13","index":"0.000004309050988454"},{"denom":"ASSET14","index":"0.000012989875687172"},{"denom":"ASSET15","index":"0.000009287144342897"},{"denom":"ASSET16","index":"0.000006475075648346"},{"denom":"ASSET17","index":"0.000004597575508787"},{"denom":"ASSET18","index":"0.000002191113748617"},{"denom":"ASSET2","index":"0.000004242146751855"},{"denom":"ASSET3","index":"0.000001239819134475"},{"denom":"ASSET4","index":"0.000011683152316098"},{"denom":"ASSET5","index":"0.000000961748401110"},{"denom":"ASSET6","index":"0.000003920170113222"},{"denom":"ASSET7","index":"0.000006004655234759"},{"denom":"ASSET8","index":"0.000007836158711656"},{"denom":"ASSET9","index":"0.000003384936220430"}],"last_reward_claim_height":"121"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET10","shares":"708688590.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003308323901116"},{"denom":"ASSET1","index":"0.000028066718381779"},{"denom":"ASSET10","index":"0.000022316311421496"},{"denom":"ASSET11","index":"0.000027867424204892"},{"denom":"ASSET12","index":"0.000026530665881565"},{"denom":"ASSET13","index":"0.000008749579510737"},{"denom":"ASSET14","index":"0.000025590688346390"},{"denom":"ASSET15","index":"0.000020116135001180"},{"denom":"ASSET16","index":"0.000012455644018572"},{"denom":"ASSET17","index":"0.000009747635771928"},{"denom":"ASSET18","index":"0.000004046709206696"},{"denom":"ASSET2","index":"0.000008491843085820"},{"denom":"ASSET3","index":"0.000002361259343526"},{"denom":"ASSET4","index":"0.000022756236881458"},{"denom":"ASSET5","index":"0.000001838827056256"},{"denom":"ASSET6","index":"0.000007428217086977"},{"denom":"ASSET7","index":"0.000011660835649526"},{"denom":"ASSET8","index":"0.000015906513514404"},{"denom":"ASSET9","index":"0.000006755948018281"}],"last_reward_claim_height":"174"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET12","shares":"793790109.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001722784092424"},{"denom":"ASSET1","index":"0.000014376047839207"},{"denom":"ASSET10","index":"0.000010014727915911"},{"denom":"ASSET11","index":"0.000013905627425621"},{"denom":"ASSET12","index":"0.000012523636788373"},{"denom":"ASSET13","index":"0.000004309050988454"},{"denom":"ASSET14","index":"0.000012989875687172"},{"denom":"ASSET15","index":"0.000009287144342897"},{"denom":"ASSET16","index":"0.000006475075648346"},{"denom":"ASSET17","index":"0.000004597575508787"},{"denom":"ASSET18","index":"0.000002191113748617"},{"denom":"ASSET2","index":"0.000004242146751855"},{"denom":"ASSET3","index":"0.000001239819134475"},{"denom":"ASSET4","index":"0.000011683152316098"},{"denom":"ASSET5","index":"0.000000961748401110"},{"denom":"ASSET6","index":"0.000003920170113222"},{"denom":"ASSET7","index":"0.000006004655234759"},{"denom":"ASSET8","index":"0.000007836158711656"},{"denom":"ASSET9","index":"0.000003384936220430"}],"last_reward_claim_height":"122"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET14","shares":"30236265.510957901360255530","reward_history":[{"denom":"ASSET0","index":"0.000003308323901116"},{"denom":"ASSET1","index":"0.000028066718381779"},{"denom":"ASSET10","index":"0.000022316311421496"},{"denom":"ASSET11","index":"0.000027867424204892"},{"denom":"ASSET12","index":"0.000026530665881565"},{"denom":"ASSET13","index":"0.000008749579510737"},{"denom":"ASSET14","index":"0.000025590688346390"},{"denom":"ASSET15","index":"0.000020116135001180"},{"denom":"ASSET16","index":"0.000012455644018572"},{"denom":"ASSET17","index":"0.000009747635771928"},{"denom":"ASSET18","index":"0.000004046709206696"},{"denom":"ASSET2","index":"0.000008491843085820"},{"denom":"ASSET3","index":"0.000002361259343526"},{"denom":"ASSET4","index":"0.000022756236881458"},{"denom":"ASSET5","index":"0.000001838827056256"},{"denom":"ASSET6","index":"0.000007428217086977"},{"denom":"ASSET7","index":"0.000011660835649526"},{"denom":"ASSET8","index":"0.000015906513514404"},{"denom":"ASSET9","index":"0.000006755948018281"}],"last_reward_claim_height":"133"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET16","shares":"999999999.999999997000000000","reward_history":[{"denom":"ASSET0","index":"0.000001722784092424"},{"denom":"ASSET1","index":"0.000014376047839207"},{"denom":"ASSET10","index":"0.000010014727915911"},{"denom":"ASSET11","index":"0.000013905627425621"},{"denom":"ASSET12","index":"0.000012523636788373"},{"denom":"ASSET13","index":"0.000004309050988454"},{"denom":"ASSET14","index":"0.000012989875687172"},{"denom":"ASSET15","index":"0.000009287144342897"},{"denom":"ASSET16","index":"0.000006475075648346"},{"denom":"ASSET17","index":"0.000004597575508787"},{"denom":"ASSET18","index":"0.000002191113748617"},{"denom":"ASSET2","index":"0.000004242146751855"},{"denom":"ASSET3","index":"0.000001239819134475"},{"denom":"ASSET4","index":"0.000011683152316098"},{"denom":"ASSET5","index":"0.000000961748401110"},{"denom":"ASSET6","index":"0.000003920170113222"},{"denom":"ASSET7","index":"0.000006004655234759"},{"denom":"ASSET8","index":"0.000007836158711656"},{"denom":"ASSET9","index":"0.000003384936220430"}],"last_reward_claim_height":"119"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET18","shares":"114454583.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004932922606577"},{"denom":"ASSET1","index":"0.000040396906160074"},{"denom":"ASSET10","index":"0.000034838303486914"},{"denom":"ASSET11","index":"0.000041914424288227"},{"denom":"ASSET12","index":"0.000039857170373527"},{"denom":"ASSET13","index":"0.000013510260278305"},{"denom":"ASSET14","index":"0.000038681126023432"},{"denom":"ASSET15","index":"0.000031291398674533"},{"denom":"ASSET16","index":"0.000017930058046877"},{"denom":"ASSET17","index":"0.000014479422944962"},{"denom":"ASSET18","index":"0.000006034014737166"},{"denom":"ASSET2","index":"0.000012186534642262"},{"denom":"ASSET3","index":"0.000003503888301858"},{"denom":"ASSET4","index":"0.000033108545408351"},{"denom":"ASSET5","index":"0.000002750102339201"},{"denom":"ASSET6","index":"0.000011230081338040"},{"denom":"ASSET7","index":"0.000017343857331989"},{"denom":"ASSET8","index":"0.000024921315009190"},{"denom":"ASSET9","index":"0.000010011497921619"}],"last_reward_claim_height":"190"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET11","shares":"1066472015.534843614140340855","reward_history":[{"denom":"ASSET0","index":"0.000003299297789724"},{"denom":"ASSET1","index":"0.000027989603079017"},{"denom":"ASSET10","index":"0.000022326156077139"},{"denom":"ASSET11","index":"0.000027810817552502"},{"denom":"ASSET12","index":"0.000026510364756940"},{"denom":"ASSET13","index":"0.000008734817330461"},{"denom":"ASSET14","index":"0.000025527438517331"},{"denom":"ASSET15","index":"0.000020112836713905"},{"denom":"ASSET16","index":"0.000012417417558556"},{"denom":"ASSET17","index":"0.000009741881197111"},{"denom":"ASSET18","index":"0.000004029624902086"},{"denom":"ASSET2","index":"0.000008475129511821"},{"denom":"ASSET3","index":"0.000002354634361983"},{"denom":"ASSET4","index":"0.000022691681830907"},{"denom":"ASSET5","index":"0.000001834207215432"},{"denom":"ASSET6","index":"0.000007402948949368"},{"denom":"ASSET7","index":"0.000011627814435586"},{"denom":"ASSET8","index":"0.000015878876786083"},{"denom":"ASSET9","index":"0.000006740310437402"}],"last_reward_claim_height":"133"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET14","shares":"462389536.000000000000000000","reward_history":[],"last_reward_claim_height":"54"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET1","shares":"319328044.000000005428576748","reward_history":[],"last_reward_claim_height":"58"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET2","shares":"255415406.999999996826056085","reward_history":[{"denom":"ASSET0","index":"0.000001570026110869"},{"denom":"ASSET1","index":"0.000013093495665706"},{"denom":"ASSET10","index":"0.000009121814411369"},{"denom":"ASSET11","index":"0.000012665871768525"},{"denom":"ASSET12","index":"0.000011405375746022"},{"denom":"ASSET13","index":"0.000003924443730811"},{"denom":"ASSET14","index":"0.000011831756550478"},{"denom":"ASSET15","index":"0.000008459245989284"},{"denom":"ASSET16","index":"0.000005898474977098"},{"denom":"ASSET17","index":"0.000004187979388376"},{"denom":"ASSET18","index":"0.000001995163822601"},{"denom":"ASSET2","index":"0.000003864775280042"},{"denom":"ASSET3","index":"0.000001129971286445"},{"denom":"ASSET4","index":"0.000010639630627815"},{"denom":"ASSET5","index":"0.000000877623463400"},{"denom":"ASSET6","index":"0.000003571405397092"},{"denom":"ASSET7","index":"0.000005469607987193"},{"denom":"ASSET8","index":"0.000007137838423287"},{"denom":"ASSET9","index":"0.000003082869956418"}],"last_reward_claim_height":"67"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET6","shares":"766240791.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003142586597057"},{"denom":"ASSET1","index":"0.000026671940208455"},{"denom":"ASSET10","index":"0.000021322845581004"},{"denom":"ASSET11","index":"0.000026513185667064"},{"denom":"ASSET12","index":"0.000025297681895631"},{"denom":"ASSET13","index":"0.000008328263582513"},{"denom":"ASSET14","index":"0.000024329302916923"},{"denom":"ASSET15","index":"0.000019199384187435"},{"denom":"ASSET16","index":"0.000011829863063918"},{"denom":"ASSET17","index":"0.000009295955073087"},{"denom":"ASSET18","index":"0.000003835509513951"},{"denom":"ASSET2","index":"0.000008079410847125"},{"denom":"ASSET3","index":"0.000002242309830967"},{"denom":"ASSET4","index":"0.000021622076491366"},{"denom":"ASSET5","index":"0.000001747112267207"},{"denom":"ASSET6","index":"0.000007050444762949"},{"denom":"ASSET7","index":"0.000011079003337441"},{"denom":"ASSET8","index":"0.000015142122511204"},{"denom":"ASSET9","index":"0.000006425848418438"}],"last_reward_claim_height":"144"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET9","shares":"563018477.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003142586597057"},{"denom":"ASSET1","index":"0.000026671940208455"},{"denom":"ASSET10","index":"0.000021322845581004"},{"denom":"ASSET11","index":"0.000026513185667064"},{"denom":"ASSET12","index":"0.000025297681895631"},{"denom":"ASSET13","index":"0.000008328263582513"},{"denom":"ASSET14","index":"0.000024329302916923"},{"denom":"ASSET15","index":"0.000019199384187435"},{"denom":"ASSET16","index":"0.000011829863063918"},{"denom":"ASSET17","index":"0.000009295955073087"},{"denom":"ASSET18","index":"0.000003835509513951"},{"denom":"ASSET2","index":"0.000008079410847125"},{"denom":"ASSET3","index":"0.000002242309830967"},{"denom":"ASSET4","index":"0.000021622076491366"},{"denom":"ASSET5","index":"0.000001747112267207"},{"denom":"ASSET6","index":"0.000007050444762949"},{"denom":"ASSET7","index":"0.000011079003337441"},{"denom":"ASSET8","index":"0.000015142122511204"},{"denom":"ASSET9","index":"0.000006425848418438"}],"last_reward_claim_height":"183"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET10","shares":"595052535.643254953296038988","reward_history":[{"denom":"ASSET0","index":"0.000003142586597057"},{"denom":"ASSET1","index":"0.000026671940208455"},{"denom":"ASSET10","index":"0.000021322845581004"},{"denom":"ASSET11","index":"0.000026513185667064"},{"denom":"ASSET12","index":"0.000025297681895631"},{"denom":"ASSET13","index":"0.000008328263582513"},{"denom":"ASSET14","index":"0.000024329302916923"},{"denom":"ASSET15","index":"0.000019199384187435"},{"denom":"ASSET16","index":"0.000011829863063918"},{"denom":"ASSET17","index":"0.000009295955073087"},{"denom":"ASSET18","index":"0.000003835509513951"},{"denom":"ASSET2","index":"0.000008079410847125"},{"denom":"ASSET3","index":"0.000002242309830967"},{"denom":"ASSET4","index":"0.000021622076491366"},{"denom":"ASSET5","index":"0.000001747112267207"},{"denom":"ASSET6","index":"0.000007050444762949"},{"denom":"ASSET7","index":"0.000011079003337441"},{"denom":"ASSET8","index":"0.000015142122511204"},{"denom":"ASSET9","index":"0.000006425848418438"}],"last_reward_claim_height":"152"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET11","shares":"41453844.999999999834184620","reward_history":[{"denom":"ASSET0","index":"0.000001570026110869"},{"denom":"ASSET1","index":"0.000013093495665706"},{"denom":"ASSET10","index":"0.000009121814411369"},{"denom":"ASSET11","index":"0.000012665871768525"},{"denom":"ASSET12","index":"0.000011405375746022"},{"denom":"ASSET13","index":"0.000003924443730811"},{"denom":"ASSET14","index":"0.000011831756550478"},{"denom":"ASSET15","index":"0.000008459245989284"},{"denom":"ASSET16","index":"0.000005898474977098"},{"denom":"ASSET17","index":"0.000004187979388376"},{"denom":"ASSET18","index":"0.000001995163822601"},{"denom":"ASSET2","index":"0.000003864775280042"},{"denom":"ASSET3","index":"0.000001129971286445"},{"denom":"ASSET4","index":"0.000010639630627815"},{"denom":"ASSET5","index":"0.000000877623463400"},{"denom":"ASSET6","index":"0.000003571405397092"},{"denom":"ASSET7","index":"0.000005469607987193"},{"denom":"ASSET8","index":"0.000007137838423287"},{"denom":"ASSET9","index":"0.000003082869956418"}],"last_reward_claim_height":"120"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET14","shares":"298187550.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001570026110869"},{"denom":"ASSET1","index":"0.000013093495665706"},{"denom":"ASSET10","index":"0.000009121814411369"},{"denom":"ASSET11","index":"0.000012665871768525"},{"denom":"ASSET12","index":"0.000011405375746022"},{"denom":"ASSET13","index":"0.000003924443730811"},{"denom":"ASSET14","index":"0.000011831756550478"},{"denom":"ASSET15","index":"0.000008459245989284"},{"denom":"ASSET16","index":"0.000005898474977098"},{"denom":"ASSET17","index":"0.000004187979388376"},{"denom":"ASSET18","index":"0.000001995163822601"},{"denom":"ASSET2","index":"0.000003864775280042"},{"denom":"ASSET3","index":"0.000001129971286445"},{"denom":"ASSET4","index":"0.000010639630627815"},{"denom":"ASSET5","index":"0.000000877623463400"},{"denom":"ASSET6","index":"0.000003571405397092"},{"denom":"ASSET7","index":"0.000005469607987193"},{"denom":"ASSET8","index":"0.000007137838423287"},{"denom":"ASSET9","index":"0.000003082869956418"}],"last_reward_claim_height":"109"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET17","shares":"403175531.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004772719302966"},{"denom":"ASSET1","index":"0.000039045168205059"},{"denom":"ASSET10","index":"0.000033888596510929"},{"denom":"ASSET11","index":"0.000040609336111210"},{"denom":"ASSET12","index":"0.000038670766700041"},{"denom":"ASSET13","index":"0.000013105357219810"},{"denom":"ASSET14","index":"0.000037465363585392"},{"denom":"ASSET15","index":"0.000030413687247718"},{"denom":"ASSET16","index":"0.000017323394502263"},{"denom":"ASSET17","index":"0.000014044328076069"},{"denom":"ASSET18","index":"0.000005829857736340"},{"denom":"ASSET2","index":"0.000011786897564708"},{"denom":"ASSET3","index":"0.000003388925924010"},{"denom":"ASSET4","index":"0.000032010424606564"},{"denom":"ASSET5","index":"0.000002661438394800"},{"denom":"ASSET6","index":"0.000010865554956372"},{"denom":"ASSET7","index":"0.000016781785111511"},{"denom":"ASSET8","index":"0.000024188491097742"},{"denom":"ASSET9","index":"0.000009692741668944"}],"last_reward_claim_height":"196"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET18","shares":"902756059.381488985404169462","reward_history":[{"denom":"ASSET0","index":"0.000001570026110869"},{"denom":"ASSET1","index":"0.000013093495665706"},{"denom":"ASSET10","index":"0.000009121814411369"},{"denom":"ASSET11","index":"0.000012665871768525"},{"denom":"ASSET12","index":"0.000011405375746022"},{"denom":"ASSET13","index":"0.000003924443730811"},{"denom":"ASSET14","index":"0.000011831756550478"},{"denom":"ASSET15","index":"0.000008459245989284"},{"denom":"ASSET16","index":"0.000005898474977098"},{"denom":"ASSET17","index":"0.000004187979388376"},{"denom":"ASSET18","index":"0.000001995163822601"},{"denom":"ASSET2","index":"0.000003864775280042"},{"denom":"ASSET3","index":"0.000001129971286445"},{"denom":"ASSET4","index":"0.000010639630627815"},{"denom":"ASSET5","index":"0.000000877623463400"},{"denom":"ASSET6","index":"0.000003571405397092"},{"denom":"ASSET7","index":"0.000005469607987193"},{"denom":"ASSET8","index":"0.000007137838423287"},{"denom":"ASSET9","index":"0.000003082869956418"}],"last_reward_claim_height":"102"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET2","shares":"823957989.126568490228736954","reward_history":[{"denom":"ASSET0","index":"0.000003309574221953"},{"denom":"ASSET1","index":"0.000028041386020893"},{"denom":"ASSET10","index":"0.000022151472675705"},{"denom":"ASSET11","index":"0.000027806413413432"},{"denom":"ASSET12","index":"0.000026397319662942"},{"denom":"ASSET13","index":"0.000008723998941637"},{"denom":"ASSET14","index":"0.000025556208464743"},{"denom":"ASSET15","index":"0.000019995491235522"},{"denom":"ASSET16","index":"0.000012454763771642"},{"denom":"ASSET17","index":"0.000009698403814011"},{"denom":"ASSET18","index":"0.000004053515914738"},{"denom":"ASSET2","index":"0.000008473190716338"},{"denom":"ASSET3","index":"0.000002361530218445"},{"denom":"ASSET4","index":"0.000022738669483779"},{"denom":"ASSET5","index":"0.000001840125976242"},{"denom":"ASSET6","index":"0.000007434008870747"},{"denom":"ASSET7","index":"0.000011653935721338"},{"denom":"ASSET8","index":"0.000015861166565423"},{"denom":"ASSET9","index":"0.000006742103174023"}],"last_reward_claim_height":"175"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET13","shares":"943988937.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003309574221953"},{"denom":"ASSET1","index":"0.000028041386020893"},{"denom":"ASSET10","index":"0.000022151472675705"},{"denom":"ASSET11","index":"0.000027806413413432"},{"denom":"ASSET12","index":"0.000026397319662942"},{"denom":"ASSET13","index":"0.000008723998941637"},{"denom":"ASSET14","index":"0.000025556208464743"},{"denom":"ASSET15","index":"0.000019995491235522"},{"denom":"ASSET16","index":"0.000012454763771642"},{"denom":"ASSET17","index":"0.000009698403814011"},{"denom":"ASSET18","index":"0.000004053515914738"},{"denom":"ASSET2","index":"0.000008473190716338"},{"denom":"ASSET3","index":"0.000002361530218445"},{"denom":"ASSET4","index":"0.000022738669483779"},{"denom":"ASSET5","index":"0.000001840125976242"},{"denom":"ASSET6","index":"0.000007434008870747"},{"denom":"ASSET7","index":"0.000011653935721338"},{"denom":"ASSET8","index":"0.000015861166565423"},{"denom":"ASSET9","index":"0.000006742103174023"}],"last_reward_claim_height":"134"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET14","shares":"192210669.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003309574221953"},{"denom":"ASSET1","index":"0.000028041386020893"},{"denom":"ASSET10","index":"0.000022151472675705"},{"denom":"ASSET11","index":"0.000027806413413432"},{"denom":"ASSET12","index":"0.000026397319662942"},{"denom":"ASSET13","index":"0.000008723998941637"},{"denom":"ASSET14","index":"0.000025556208464743"},{"denom":"ASSET15","index":"0.000019995491235522"},{"denom":"ASSET16","index":"0.000012454763771642"},{"denom":"ASSET17","index":"0.000009698403814011"},{"denom":"ASSET18","index":"0.000004053515914738"},{"denom":"ASSET2","index":"0.000008473190716338"},{"denom":"ASSET3","index":"0.000002361530218445"},{"denom":"ASSET4","index":"0.000022738669483779"},{"denom":"ASSET5","index":"0.000001840125976242"},{"denom":"ASSET6","index":"0.000007434008870747"},{"denom":"ASSET7","index":"0.000011653935721338"},{"denom":"ASSET8","index":"0.000015861166565423"},{"denom":"ASSET9","index":"0.000006742103174023"}],"last_reward_claim_height":"154"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET2","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004627557058124"},{"denom":"ASSET1","index":"0.000037837825372287"},{"denom":"ASSET10","index":"0.000032815057157167"},{"denom":"ASSET11","index":"0.000039353017894949"},{"denom":"ASSET12","index":"0.000037453386570472"},{"denom":"ASSET13","index":"0.000012700909348715"},{"denom":"ASSET14","index":"0.000036314118089889"},{"denom":"ASSET15","index":"0.000029456614298440"},{"denom":"ASSET16","index":"0.000016789422401669"},{"denom":"ASSET17","index":"0.000013600876897734"},{"denom":"ASSET18","index":"0.000005653931466374"},{"denom":"ASSET2","index":"0.000011419405679440"},{"denom":"ASSET3","index":"0.000003285045732610"},{"denom":"ASSET4","index":"0.000031022911612237"},{"denom":"ASSET5","index":"0.000002580636681166"},{"denom":"ASSET6","index":"0.000010536288519120"},{"denom":"ASSET7","index":"0.000016267441018645"},{"denom":"ASSET8","index":"0.000023441585233333"},{"denom":"ASSET9","index":"0.000009392113630570"}],"last_reward_claim_height":"184"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET16","shares":"1000071482.056014630000000000","reward_history":[{"denom":"ASSET0","index":"0.000003039218640043"},{"denom":"ASSET1","index":"0.000025782167100542"},{"denom":"ASSET10","index":"0.000020571830356487"},{"denom":"ASSET11","index":"0.000025618833387376"},{"denom":"ASSET12","index":"0.000024423552320522"},{"denom":"ASSET13","index":"0.000008046369560384"},{"denom":"ASSET14","index":"0.000023515194162679"},{"denom":"ASSET15","index":"0.000018530055863607"},{"denom":"ASSET16","index":"0.000011436803083329"},{"denom":"ASSET17","index":"0.000008974370950503"},{"denom":"ASSET18","index":"0.000003710743638587"},{"denom":"ASSET2","index":"0.000007806913274081"},{"denom":"ASSET3","index":"0.000002167934051431"},{"denom":"ASSET4","index":"0.000020901035076857"},{"denom":"ASSET5","index":"0.000001689640060433"},{"denom":"ASSET6","index":"0.000006819038075969"},{"denom":"ASSET7","index":"0.000010710838619674"},{"denom":"ASSET8","index":"0.000014627524271874"},{"denom":"ASSET9","index":"0.000006209166066794"}],"last_reward_claim_height":"161"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET0","shares":"211351105.000000015639981770","reward_history":[{"denom":"ASSET0","index":"0.000003240628198198"},{"denom":"ASSET1","index":"0.000027504329283847"},{"denom":"ASSET10","index":"0.000021940320319100"},{"denom":"ASSET11","index":"0.000027329345632586"},{"denom":"ASSET12","index":"0.000026051323397008"},{"denom":"ASSET13","index":"0.000008583813762496"},{"denom":"ASSET14","index":"0.000025085743554439"},{"denom":"ASSET15","index":"0.000019763439018939"},{"denom":"ASSET16","index":"0.000012202670980955"},{"denom":"ASSET17","index":"0.000009573761377605"},{"denom":"ASSET18","index":"0.000003959875003044"},{"denom":"ASSET2","index":"0.000008327243811102"},{"denom":"ASSET3","index":"0.000002312908746824"},{"denom":"ASSET4","index":"0.000022299606884078"},{"denom":"ASSET5","index":"0.000001802093087045"},{"denom":"ASSET6","index":"0.000007275447910852"},{"denom":"ASSET7","index":"0.000011427132859276"},{"denom":"ASSET8","index":"0.000015602768933976"},{"denom":"ASSET9","index":"0.000006623309483786"}],"last_reward_claim_height":"176"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET3","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001647112085871"},{"denom":"ASSET1","index":"0.000013744257107488"},{"denom":"ASSET10","index":"0.000009576415679235"},{"denom":"ASSET11","index":"0.000013296650962579"},{"denom":"ASSET12","index":"0.000011973464376313"},{"denom":"ASSET13","index":"0.000004120724991946"},{"denom":"ASSET14","index":"0.000012421070521222"},{"denom":"ASSET15","index":"0.000008879485058873"},{"denom":"ASSET16","index":"0.000006191885004573"},{"denom":"ASSET17","index":"0.000004397534055245"},{"denom":"ASSET18","index":"0.000002094718230780"},{"denom":"ASSET2","index":"0.000004055939892025"},{"denom":"ASSET3","index":"0.000001185763647039"},{"denom":"ASSET4","index":"0.000011170521774262"},{"denom":"ASSET5","index":"0.000000920733692817"},{"denom":"ASSET6","index":"0.000003749683056035"},{"denom":"ASSET7","index":"0.000005742315674818"},{"denom":"ASSET8","index":"0.000007491513372686"},{"denom":"ASSET9","index":"0.000003235328626359"}],"last_reward_claim_height":"94"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET6","shares":"1095260.811813051608322170","reward_history":[{"denom":"ASSET0","index":"0.000003152920186871"},{"denom":"ASSET1","index":"0.000026760622644749"},{"denom":"ASSET10","index":"0.000021403995558307"},{"denom":"ASSET11","index":"0.000026604821287493"},{"denom":"ASSET12","index":"0.000025390105019040"},{"denom":"ASSET13","index":"0.000008358570294936"},{"denom":"ASSET14","index":"0.000024411618525071"},{"denom":"ASSET15","index":"0.000019270968708391"},{"denom":"ASSET16","index":"0.000011868219590271"},{"denom":"ASSET17","index":"0.000009330682788205"},{"denom":"ASSET18","index":"0.000003846613833157"},{"denom":"ASSET2","index":"0.000008107095494272"},{"denom":"ASSET3","index":"0.000002249072663818"},{"denom":"ASSET4","index":"0.000021694789218154"},{"denom":"ASSET5","index":"0.000001752328837510"},{"denom":"ASSET6","index":"0.000007072706136469"},{"denom":"ASSET7","index":"0.000011115912260277"},{"denom":"ASSET8","index":"0.000015194187602297"},{"denom":"ASSET9","index":"0.000006447849146068"}],"last_reward_claim_height":"179"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET16","shares":"197686576.342065639714760308","reward_history":[{"denom":"ASSET0","index":"0.000001570100817458"},{"denom":"ASSET1","index":"0.000013089401919768"},{"denom":"ASSET10","index":"0.000009119446705996"},{"denom":"ASSET11","index":"0.000012662761138201"},{"denom":"ASSET12","index":"0.000011403229713207"},{"denom":"ASSET13","index":"0.000003924467777503"},{"denom":"ASSET14","index":"0.000011828301962489"},{"denom":"ASSET15","index":"0.000008457526081653"},{"denom":"ASSET16","index":"0.000005896112859965"},{"denom":"ASSET17","index":"0.000004187981201412"},{"denom":"ASSET18","index":"0.000001993604534455"},{"denom":"ASSET2","index":"0.000003863295018381"},{"denom":"ASSET3","index":"0.000001129343245325"},{"denom":"ASSET4","index":"0.000010637785958043"},{"denom":"ASSET5","index":"0.000000876809547412"},{"denom":"ASSET6","index":"0.000003569979481054"},{"denom":"ASSET7","index":"0.000005467903546113"},{"denom":"ASSET8","index":"0.000007135253365252"},{"denom":"ASSET9","index":"0.000003082165940365"}],"last_reward_claim_height":"102"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET2","shares":"165374536.906029032211942440","reward_history":[{"denom":"ASSET0","index":"0.000003218229550028"},{"denom":"ASSET1","index":"0.000027301798081180"},{"denom":"ASSET10","index":"0.000021745417841688"},{"denom":"ASSET11","index":"0.000027119412726222"},{"denom":"ASSET12","index":"0.000025834540696398"},{"denom":"ASSET13","index":"0.000008516471999212"},{"denom":"ASSET14","index":"0.000024897496810197"},{"denom":"ASSET15","index":"0.000019595694306931"},{"denom":"ASSET16","index":"0.000012114595919920"},{"denom":"ASSET17","index":"0.000009493460517354"},{"denom":"ASSET18","index":"0.000003932937797970"},{"denom":"ASSET2","index":"0.000008264095290285"},{"denom":"ASSET3","index":"0.000002297232512411"},{"denom":"ASSET4","index":"0.000022135581489268"},{"denom":"ASSET5","index":"0.000001789675045728"},{"denom":"ASSET6","index":"0.000007223884768794"},{"denom":"ASSET7","index":"0.000011342725097550"},{"denom":"ASSET8","index":"0.000015481678980085"},{"denom":"ASSET9","index":"0.000006573861400446"}],"last_reward_claim_height":"136"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET2","shares":"96829690.956488632254358183","reward_history":[{"denom":"ASSET0","index":"0.000003224207736427"},{"denom":"ASSET1","index":"0.000027358045975387"},{"denom":"ASSET10","index":"0.000021853454393362"},{"denom":"ASSET11","index":"0.000027191663823691"},{"denom":"ASSET12","index":"0.000025935625558190"},{"denom":"ASSET13","index":"0.000008541293337334"},{"denom":"ASSET14","index":"0.000024954691173737"},{"denom":"ASSET15","index":"0.000019681390400685"},{"denom":"ASSET16","index":"0.000012135703886829"},{"denom":"ASSET17","index":"0.000009530848033034"},{"denom":"ASSET18","index":"0.000003936224347496"},{"denom":"ASSET2","index":"0.000008286598878032"},{"denom":"ASSET3","index":"0.000002301038846536"},{"denom":"ASSET4","index":"0.000022179933336345"},{"denom":"ASSET5","index":"0.000001792519798769"},{"denom":"ASSET6","index":"0.000007234068845872"},{"denom":"ASSET7","index":"0.000011365474292791"},{"denom":"ASSET8","index":"0.000015527655320242"},{"denom":"ASSET9","index":"0.000006590765495457"}],"last_reward_claim_height":"173"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET2","shares":"612350793.331691067402672304","reward_history":[{"denom":"ASSET0","index":"0.000003193080094990"},{"denom":"ASSET1","index":"0.000027069824276969"},{"denom":"ASSET10","index":"0.000021489349079139"},{"denom":"ASSET11","index":"0.000026870184080824"},{"denom":"ASSET12","index":"0.000025561356340007"},{"denom":"ASSET13","index":"0.000008435097288603"},{"denom":"ASSET14","index":"0.000024680442306089"},{"denom":"ASSET15","index":"0.000019377704768171"},{"denom":"ASSET16","index":"0.000012016988086595"},{"denom":"ASSET17","index":"0.000009392966467546"},{"denom":"ASSET18","index":"0.000003905368596850"},{"denom":"ASSET2","index":"0.000008189075060838"},{"denom":"ASSET3","index":"0.000002279664955012"},{"denom":"ASSET4","index":"0.000021948593995488"},{"denom":"ASSET5","index":"0.000001775351671947"},{"denom":"ASSET6","index":"0.000007168631437760"},{"denom":"ASSET7","index":"0.000011248752159293"},{"denom":"ASSET8","index":"0.000015334459676317"},{"denom":"ASSET9","index":"0.000006513651901550"}],"last_reward_claim_height":"142"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET18","shares":"1079244393.817897213325941827","reward_history":[{"denom":"ASSET0","index":"0.000001684197417987"},{"denom":"ASSET1","index":"0.000014041270025306"},{"denom":"ASSET10","index":"0.000009782380002809"},{"denom":"ASSET11","index":"0.000013583439347888"},{"denom":"ASSET12","index":"0.000012231725730520"},{"denom":"ASSET13","index":"0.000004209525615418"},{"denom":"ASSET14","index":"0.000012688588478388"},{"denom":"ASSET15","index":"0.000009072403677468"},{"denom":"ASSET16","index":"0.000006325419612958"},{"denom":"ASSET17","index":"0.000004492161044183"},{"denom":"ASSET18","index":"0.000002139608271529"},{"denom":"ASSET2","index":"0.000004144674335530"},{"denom":"ASSET3","index":"0.000001212331762086"},{"denom":"ASSET4","index":"0.000011410921471639"},{"denom":"ASSET5","index":"0.000000940827523152"},{"denom":"ASSET6","index":"0.000003830097231595"},{"denom":"ASSET7","index":"0.000005866137041214"},{"denom":"ASSET8","index":"0.000007654386885887"},{"denom":"ASSET9","index":"0.000003305963379963"}],"last_reward_claim_height":"91"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET4","shares":"398375013.683746813446405685","reward_history":[{"denom":"ASSET0","index":"0.000003316222748087"},{"denom":"ASSET1","index":"0.000028147075207200"},{"denom":"ASSET10","index":"0.000022466702115272"},{"denom":"ASSET11","index":"0.000027971336509453"},{"denom":"ASSET12","index":"0.000026669877578580"},{"denom":"ASSET13","index":"0.000008784355829882"},{"denom":"ASSET14","index":"0.000025672864554615"},{"denom":"ASSET15","index":"0.000020235356040284"},{"denom":"ASSET16","index":"0.000012487172511964"},{"denom":"ASSET17","index":"0.000009799807931023"},{"denom":"ASSET18","index":"0.000004049727438870"},{"denom":"ASSET2","index":"0.000008522892941853"},{"denom":"ASSET3","index":"0.000002368075218536"},{"denom":"ASSET4","index":"0.000022820717384594"},{"denom":"ASSET5","index":"0.000001843591257654"},{"denom":"ASSET6","index":"0.000007443165294976"},{"denom":"ASSET7","index":"0.000011693499621126"},{"denom":"ASSET8","index":"0.000015972009373807"},{"denom":"ASSET9","index":"0.000006779069609364"}],"last_reward_claim_height":"142"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET9","shares":"135810240.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003316222748087"},{"denom":"ASSET1","index":"0.000028147075207200"},{"denom":"ASSET10","index":"0.000022466702115272"},{"denom":"ASSET11","index":"0.000027971336509453"},{"denom":"ASSET12","index":"0.000026669877578580"},{"denom":"ASSET13","index":"0.000008784355829882"},{"denom":"ASSET14","index":"0.000025672864554615"},{"denom":"ASSET15","index":"0.000020235356040284"},{"denom":"ASSET16","index":"0.000012487172511964"},{"denom":"ASSET17","index":"0.000009799807931023"},{"denom":"ASSET18","index":"0.000004049727438870"},{"denom":"ASSET2","index":"0.000008522892941853"},{"denom":"ASSET3","index":"0.000002368075218536"},{"denom":"ASSET4","index":"0.000022820717384594"},{"denom":"ASSET5","index":"0.000001843591257654"},{"denom":"ASSET6","index":"0.000007443165294976"},{"denom":"ASSET7","index":"0.000011693499621126"},{"denom":"ASSET8","index":"0.000015972009373807"},{"denom":"ASSET9","index":"0.000006779069609364"}],"last_reward_claim_height":"169"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET0","shares":"84708829.417957325870523208","reward_history":[{"denom":"ASSET0","index":"0.000004554906597940"},{"denom":"ASSET1","index":"0.000037302168826374"},{"denom":"ASSET10","index":"0.000032297727075344"},{"denom":"ASSET11","index":"0.000038743254896762"},{"denom":"ASSET12","index":"0.000036898215140701"},{"denom":"ASSET13","index":"0.000012494026883502"},{"denom":"ASSET14","index":"0.000035737267820700"},{"denom":"ASSET15","index":"0.000028988621299322"},{"denom":"ASSET16","index":"0.000016549854639519"},{"denom":"ASSET17","index":"0.000013405669141672"},{"denom":"ASSET18","index":"0.000005562884057726"},{"denom":"ASSET2","index":"0.000011263270159473"},{"denom":"ASSET3","index":"0.000003234612773623"},{"denom":"ASSET4","index":"0.000030571483907801"},{"denom":"ASSET5","index":"0.000002539733895685"},{"denom":"ASSET6","index":"0.000010363874796083"},{"denom":"ASSET7","index":"0.000016016088508621"},{"denom":"ASSET8","index":"0.000023047152355900"},{"denom":"ASSET9","index":"0.000009251920345515"}],"last_reward_claim_height":"198"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET5","shares":"25864223.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001520550536467"},{"denom":"ASSET1","index":"0.000012675827554874"},{"denom":"ASSET10","index":"0.000008831388003026"},{"denom":"ASSET11","index":"0.000012262725604616"},{"denom":"ASSET12","index":"0.000011042474271843"},{"denom":"ASSET13","index":"0.000003800233070086"},{"denom":"ASSET14","index":"0.000011455195131741"},{"denom":"ASSET15","index":"0.000008190012927118"},{"denom":"ASSET16","index":"0.000005710257954490"},{"denom":"ASSET17","index":"0.000004055182520937"},{"denom":"ASSET18","index":"0.000001931747034924"},{"denom":"ASSET2","index":"0.000003741926245004"},{"denom":"ASSET3","index":"0.000001094491513968"},{"denom":"ASSET4","index":"0.000010301253521611"},{"denom":"ASSET5","index":"0.000000849450412477"},{"denom":"ASSET6","index":"0.000003457632836431"},{"denom":"ASSET7","index":"0.000005295631642792"},{"denom":"ASSET8","index":"0.000006910311498182"},{"denom":"ASSET9","index":"0.000002984699699651"}],"last_reward_claim_height":"76"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET15","shares":"229095183.062831014330259374","reward_history":[{"denom":"ASSET0","index":"0.000003365151784209"},{"denom":"ASSET1","index":"0.000028538337865727"},{"denom":"ASSET10","index":"0.000022670552359626"},{"denom":"ASSET11","index":"0.000028331786642422"},{"denom":"ASSET12","index":"0.000026959391418936"},{"denom":"ASSET13","index":"0.000008894072871450"},{"denom":"ASSET14","index":"0.000026020188745878"},{"denom":"ASSET15","index":"0.000020439828986765"},{"denom":"ASSET16","index":"0.000012667128947757"},{"denom":"ASSET17","index":"0.000009907060013179"},{"denom":"ASSET18","index":"0.000004116201786219"},{"denom":"ASSET2","index":"0.000008634485522558"},{"denom":"ASSET3","index":"0.000002403102945281"},{"denom":"ASSET4","index":"0.000023139017263426"},{"denom":"ASSET5","index":"0.000001871649891727"},{"denom":"ASSET6","index":"0.000007555863827839"},{"denom":"ASSET7","index":"0.000011857581945748"},{"denom":"ASSET8","index":"0.000016169532559731"},{"denom":"ASSET9","index":"0.000006867789268222"}],"last_reward_claim_height":"156"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET17","shares":"864076965.683783914315202946","reward_history":[{"denom":"ASSET0","index":"0.000003365151784209"},{"denom":"ASSET1","index":"0.000028538337865727"},{"denom":"ASSET10","index":"0.000022670552359626"},{"denom":"ASSET11","index":"0.000028331786642422"},{"denom":"ASSET12","index":"0.000026959391418936"},{"denom":"ASSET13","index":"0.000008894072871450"},{"denom":"ASSET14","index":"0.000026020188745878"},{"denom":"ASSET15","index":"0.000020439828986765"},{"denom":"ASSET16","index":"0.000012667128947757"},{"denom":"ASSET17","index":"0.000009907060013179"},{"denom":"ASSET18","index":"0.000004116201786219"},{"denom":"ASSET2","index":"0.000008634485522558"},{"denom":"ASSET3","index":"0.000002403102945281"},{"denom":"ASSET4","index":"0.000023139017263426"},{"denom":"ASSET5","index":"0.000001871649891727"},{"denom":"ASSET6","index":"0.000007555863827839"},{"denom":"ASSET7","index":"0.000011857581945748"},{"denom":"ASSET8","index":"0.000016169532559731"},{"denom":"ASSET9","index":"0.000006867789268222"}],"last_reward_claim_height":"131"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET16","shares":"498614083.000000005753165132","reward_history":[{"denom":"ASSET0","index":"0.000003461123478470"},{"denom":"ASSET1","index":"0.000029368181297786"},{"denom":"ASSET10","index":"0.000023294808028239"},{"denom":"ASSET11","index":"0.000029147392384169"},{"denom":"ASSET12","index":"0.000027719461688447"},{"denom":"ASSET13","index":"0.000009147542663388"},{"denom":"ASSET14","index":"0.000026768604990580"},{"denom":"ASSET15","index":"0.000021008846141082"},{"denom":"ASSET16","index":"0.000013035302068339"},{"denom":"ASSET17","index":"0.000010182949549387"},{"denom":"ASSET18","index":"0.000004232564951180"},{"denom":"ASSET2","index":"0.000008877642147806"},{"denom":"ASSET3","index":"0.000002471921418528"},{"denom":"ASSET4","index":"0.000023806252184245"},{"denom":"ASSET5","index":"0.000001920199705662"},{"denom":"ASSET6","index":"0.000007776538212319"},{"denom":"ASSET7","index":"0.000012202060569359"},{"denom":"ASSET8","index":"0.000016628688342614"},{"denom":"ASSET9","index":"0.000007061722298848"}],"last_reward_claim_height":"181"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET2","shares":"209896704.999999999580206590","reward_history":[],"last_reward_claim_height":"46"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET5","shares":"832622092.999999994171645349","reward_history":[{"denom":"ASSET0","index":"0.000001580229076001"},{"denom":"ASSET1","index":"0.000013178675425859"},{"denom":"ASSET10","index":"0.000009181488308837"},{"denom":"ASSET11","index":"0.000012749045790152"},{"denom":"ASSET12","index":"0.000011480356468073"},{"denom":"ASSET13","index":"0.000003950572690002"},{"denom":"ASSET14","index":"0.000011909209196663"},{"denom":"ASSET15","index":"0.000008514902002442"},{"denom":"ASSET16","index":"0.000005936347281082"},{"denom":"ASSET17","index":"0.000004216274924019"},{"denom":"ASSET18","index":"0.000002008304897474"},{"denom":"ASSET2","index":"0.000003889973934875"},{"denom":"ASSET3","index":"0.000001137392019304"},{"denom":"ASSET4","index":"0.000010709664607998"},{"denom":"ASSET5","index":"0.000000883343392042"},{"denom":"ASSET6","index":"0.000003594749230410"},{"denom":"ASSET7","index":"0.000005505163831141"},{"denom":"ASSET8","index":"0.000007184060111002"},{"denom":"ASSET9","index":"0.000003102967025342"}],"last_reward_claim_height":"104"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET11","shares":"935392389.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001580229076001"},{"denom":"ASSET1","index":"0.000013178675425859"},{"denom":"ASSET10","index":"0.000009181488308837"},{"denom":"ASSET11","index":"0.000012749045790152"},{"denom":"ASSET12","index":"0.000011480356468073"},{"denom":"ASSET13","index":"0.000003950572690002"},{"denom":"ASSET14","index":"0.000011909209196663"},{"denom":"ASSET15","index":"0.000008514902002442"},{"denom":"ASSET16","index":"0.000005936347281082"},{"denom":"ASSET17","index":"0.000004216274924019"},{"denom":"ASSET18","index":"0.000002008304897474"},{"denom":"ASSET2","index":"0.000003889973934875"},{"denom":"ASSET3","index":"0.000001137392019304"},{"denom":"ASSET4","index":"0.000010709664607998"},{"denom":"ASSET5","index":"0.000000883343392042"},{"denom":"ASSET6","index":"0.000003594749230410"},{"denom":"ASSET7","index":"0.000005505163831141"},{"denom":"ASSET8","index":"0.000007184060111002"},{"denom":"ASSET9","index":"0.000003102967025342"}],"last_reward_claim_height":"107"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET13","shares":"799178169.952935015854782127","reward_history":[{"denom":"ASSET0","index":"0.000003136420796654"},{"denom":"ASSET1","index":"0.000026617535879560"},{"denom":"ASSET10","index":"0.000021257162201233"},{"denom":"ASSET11","index":"0.000026454281403244"},{"denom":"ASSET12","index":"0.000025229520616223"},{"denom":"ASSET13","index":"0.000008309311482354"},{"denom":"ASSET14","index":"0.000024278363089230"},{"denom":"ASSET15","index":"0.000019144672836670"},{"denom":"ASSET16","index":"0.000011806881934189"},{"denom":"ASSET17","index":"0.000009271795054357"},{"denom":"ASSET18","index":"0.000003829937127836"},{"denom":"ASSET2","index":"0.000008061315465971"},{"denom":"ASSET3","index":"0.000002238409344787"},{"denom":"ASSET4","index":"0.000021579173085678"},{"denom":"ASSET5","index":"0.000001744155749232"},{"denom":"ASSET6","index":"0.000007037998659171"},{"denom":"ASSET7","index":"0.000011056982942661"},{"denom":"ASSET8","index":"0.000015105683491420"},{"denom":"ASSET9","index":"0.000006411626899884"}],"last_reward_claim_height":"161"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET17","shares":"126774879.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003136420796654"},{"denom":"ASSET1","index":"0.000026617535879560"},{"denom":"ASSET10","index":"0.000021257162201233"},{"denom":"ASSET11","index":"0.000026454281403244"},{"denom":"ASSET12","index":"0.000025229520616223"},{"denom":"ASSET13","index":"0.000008309311482354"},{"denom":"ASSET14","index":"0.000024278363089230"},{"denom":"ASSET15","index":"0.000019144672836670"},{"denom":"ASSET16","index":"0.000011806881934189"},{"denom":"ASSET17","index":"0.000009271795054357"},{"denom":"ASSET18","index":"0.000003829937127836"},{"denom":"ASSET2","index":"0.000008061315465971"},{"denom":"ASSET3","index":"0.000002238409344787"},{"denom":"ASSET4","index":"0.000021579173085678"},{"denom":"ASSET5","index":"0.000001744155749232"},{"denom":"ASSET6","index":"0.000007037998659171"},{"denom":"ASSET7","index":"0.000011056982942661"},{"denom":"ASSET8","index":"0.000015105683491420"},{"denom":"ASSET9","index":"0.000006411626899884"}],"last_reward_claim_height":"138"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET0","shares":"627848639.999999991210119040","reward_history":[{"denom":"ASSET0","index":"0.000001065673750407"},{"denom":"ASSET1","index":"0.000008885137524612"},{"denom":"ASSET10","index":"0.000006190162379117"},{"denom":"ASSET11","index":"0.000008595321581390"},{"denom":"ASSET12","index":"0.000007740138401991"},{"denom":"ASSET13","index":"0.000002663662498568"},{"denom":"ASSET14","index":"0.000008029258508615"},{"denom":"ASSET15","index":"0.000005740999854868"},{"denom":"ASSET16","index":"0.000004002452113836"},{"denom":"ASSET17","index":"0.000002842492504350"},{"denom":"ASSET18","index":"0.000001354098020432"},{"denom":"ASSET2","index":"0.000002622608139264"},{"denom":"ASSET3","index":"0.000000767159849705"},{"denom":"ASSET4","index":"0.000007220696381306"},{"denom":"ASSET5","index":"0.000000595288209907"},{"denom":"ASSET6","index":"0.000002423598872130"},{"denom":"ASSET7","index":"0.000003711940334016"},{"denom":"ASSET8","index":"0.000004843718561268"},{"denom":"ASSET9","index":"0.000002092032733005"}],"last_reward_claim_height":"107"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET9","shares":"119684665.723806363928482833","reward_history":[{"denom":"ASSET0","index":"0.000004068642377663"},{"denom":"ASSET1","index":"0.000033238444511498"},{"denom":"ASSET10","index":"0.000029412640141304"},{"denom":"ASSET11","index":"0.000034798715577226"},{"denom":"ASSET12","index":"0.000033316871490560"},{"denom":"ASSET13","index":"0.000011269568778181"},{"denom":"ASSET14","index":"0.000032061779098356"},{"denom":"ASSET15","index":"0.000026325023840151"},{"denom":"ASSET16","index":"0.000014722742660245"},{"denom":"ASSET17","index":"0.000012090364136859"},{"denom":"ASSET18","index":"0.000004948786772751"},{"denom":"ASSET2","index":"0.000010058951612285"},{"denom":"ASSET3","index":"0.000002885176745684"},{"denom":"ASSET4","index":"0.000027270323749471"},{"denom":"ASSET5","index":"0.000002268262209760"},{"denom":"ASSET6","index":"0.000009260606251413"},{"denom":"ASSET7","index":"0.000014320166209664"},{"denom":"ASSET8","index":"0.000020821468009834"},{"denom":"ASSET9","index":"0.000008292124658288"}],"last_reward_claim_height":"185"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET16","shares":"18953228.718918851384932808","reward_history":[{"denom":"ASSET0","index":"0.000002559869929403"},{"denom":"ASSET1","index":"0.000021787096732684"},{"denom":"ASSET10","index":"0.000017783238471081"},{"denom":"ASSET11","index":"0.000021752938768967"},{"denom":"ASSET12","index":"0.000020940235345308"},{"denom":"ASSET13","index":"0.000006848308161575"},{"denom":"ASSET14","index":"0.000019904298850841"},{"denom":"ASSET15","index":"0.000015946274018453"},{"denom":"ASSET16","index":"0.000009638424477568"},{"denom":"ASSET17","index":"0.000007695902028378"},{"denom":"ASSET18","index":"0.000003102977872608"},{"denom":"ASSET2","index":"0.000006627591716064"},{"denom":"ASSET3","index":"0.000001824087350341"},{"denom":"ASSET4","index":"0.000017655906837434"},{"denom":"ASSET5","index":"0.000001421889695470"},{"denom":"ASSET6","index":"0.000005729615091854"},{"denom":"ASSET7","index":"0.000009042175373173"},{"denom":"ASSET8","index":"0.000012449153729005"},{"denom":"ASSET9","index":"0.000005268661072858"}],"last_reward_claim_height":"156"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET8","shares":"43401339.130473242716805322","reward_history":[{"denom":"ASSET0","index":"0.000003299045378029"},{"denom":"ASSET1","index":"0.000027992490930804"},{"denom":"ASSET10","index":"0.000022352284005938"},{"denom":"ASSET11","index":"0.000027819914533732"},{"denom":"ASSET12","index":"0.000026530494002155"},{"denom":"ASSET13","index":"0.000008738242797579"},{"denom":"ASSET14","index":"0.000025532401567106"},{"denom":"ASSET15","index":"0.000020131602968729"},{"denom":"ASSET16","index":"0.000012417136212826"},{"denom":"ASSET17","index":"0.000009749421325842"},{"denom":"ASSET18","index":"0.000004027997856345"},{"denom":"ASSET2","index":"0.000008477931503293"},{"denom":"ASSET3","index":"0.000002354450357881"},{"denom":"ASSET4","index":"0.000022693933657862"},{"denom":"ASSET5","index":"0.000001834114741991"},{"denom":"ASSET6","index":"0.000007402245947993"},{"denom":"ASSET7","index":"0.000011628988518089"},{"denom":"ASSET8","index":"0.000015885667960333"},{"denom":"ASSET9","index":"0.000006742956926982"}],"last_reward_claim_height":"169"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET9","shares":"632771030.892904371000479806","reward_history":[{"denom":"ASSET0","index":"0.000001663945626017"},{"denom":"ASSET1","index":"0.000013874870096624"},{"denom":"ASSET10","index":"0.000009666844154779"},{"denom":"ASSET11","index":"0.000013422526194886"},{"denom":"ASSET12","index":"0.000012086742376498"},{"denom":"ASSET13","index":"0.000004159391889779"},{"denom":"ASSET14","index":"0.000012538614102973"},{"denom":"ASSET15","index":"0.000008964719539034"},{"denom":"ASSET16","index":"0.000006250183953344"},{"denom":"ASSET17","index":"0.000004438919645342"},{"denom":"ASSET18","index":"0.000002114400826704"},{"denom":"ASSET2","index":"0.000004095648229305"},{"denom":"ASSET3","index":"0.000001197908641659"},{"denom":"ASSET4","index":"0.000011275545275051"},{"denom":"ASSET5","index":"0.000000929713092403"},{"denom":"ASSET6","index":"0.000003784956906399"},{"denom":"ASSET7","index":"0.000005796423525818"},{"denom":"ASSET8","index":"0.000007563775534382"},{"denom":"ASSET9","index":"0.000003266980643136"}],"last_reward_claim_height":"114"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET13","shares":"187417122.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001663945626017"},{"denom":"ASSET1","index":"0.000013874870096624"},{"denom":"ASSET10","index":"0.000009666844154779"},{"denom":"ASSET11","index":"0.000013422526194886"},{"denom":"ASSET12","index":"0.000012086742376498"},{"denom":"ASSET13","index":"0.000004159391889779"},{"denom":"ASSET14","index":"0.000012538614102973"},{"denom":"ASSET15","index":"0.000008964719539034"},{"denom":"ASSET16","index":"0.000006250183953344"},{"denom":"ASSET17","index":"0.000004438919645342"},{"denom":"ASSET18","index":"0.000002114400826704"},{"denom":"ASSET2","index":"0.000004095648229305"},{"denom":"ASSET3","index":"0.000001197908641659"},{"denom":"ASSET4","index":"0.000011275545275051"},{"denom":"ASSET5","index":"0.000000929713092403"},{"denom":"ASSET6","index":"0.000003784956906399"},{"denom":"ASSET7","index":"0.000005796423525818"},{"denom":"ASSET8","index":"0.000007563775534382"},{"denom":"ASSET9","index":"0.000003266980643136"}],"last_reward_claim_height":"117"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET15","shares":"475354290.384348592971464856","reward_history":[{"denom":"ASSET0","index":"0.000003299045378029"},{"denom":"ASSET1","index":"0.000027992490930804"},{"denom":"ASSET10","index":"0.000022352284005938"},{"denom":"ASSET11","index":"0.000027819914533732"},{"denom":"ASSET12","index":"0.000026530494002155"},{"denom":"ASSET13","index":"0.000008738242797579"},{"denom":"ASSET14","index":"0.000025532401567106"},{"denom":"ASSET15","index":"0.000020131602968729"},{"denom":"ASSET16","index":"0.000012417136212826"},{"denom":"ASSET17","index":"0.000009749421325842"},{"denom":"ASSET18","index":"0.000004027997856345"},{"denom":"ASSET2","index":"0.000008477931503293"},{"denom":"ASSET3","index":"0.000002354450357881"},{"denom":"ASSET4","index":"0.000022693933657862"},{"denom":"ASSET5","index":"0.000001834114741991"},{"denom":"ASSET6","index":"0.000007402245947993"},{"denom":"ASSET7","index":"0.000011628988518089"},{"denom":"ASSET8","index":"0.000015885667960333"},{"denom":"ASSET9","index":"0.000006742956926982"}],"last_reward_claim_height":"154"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET3","shares":"555400942.000000000000000000","reward_history":[],"last_reward_claim_height":"60"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET6","shares":"1000028884.425967664000000000","reward_history":[{"denom":"ASSET0","index":"0.000001554670726054"},{"denom":"ASSET1","index":"0.000012963415617374"},{"denom":"ASSET10","index":"0.000009031685079156"},{"denom":"ASSET11","index":"0.000012540799003679"},{"denom":"ASSET12","index":"0.000011293255065955"},{"denom":"ASSET13","index":"0.000003886042255656"},{"denom":"ASSET14","index":"0.000011715237120170"},{"denom":"ASSET15","index":"0.000008376185136293"},{"denom":"ASSET16","index":"0.000005839850894644"},{"denom":"ASSET17","index":"0.000004147480761425"},{"denom":"ASSET18","index":"0.000001975383661309"},{"denom":"ASSET2","index":"0.000003826393664534"},{"denom":"ASSET3","index":"0.000001119362922759"},{"denom":"ASSET4","index":"0.000010534956487329"},{"denom":"ASSET5","index":"0.000000868711928150"},{"denom":"ASSET6","index":"0.000003536399982164"},{"denom":"ASSET7","index":"0.000005415965161990"},{"denom":"ASSET8","index":"0.000007067088929007"},{"denom":"ASSET9","index":"0.000003052231098907"}],"last_reward_claim_height":"92"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET7","shares":"72209746.427784123855523300","reward_history":[{"denom":"ASSET0","index":"0.000004793394028488"},{"denom":"ASSET1","index":"0.000039220404580202"},{"denom":"ASSET10","index":"0.000034077494992257"},{"denom":"ASSET11","index":"0.000040800608166180"},{"denom":"ASSET12","index":"0.000038873410892672"},{"denom":"ASSET13","index":"0.000013168980031980"},{"denom":"ASSET14","index":"0.000037635915450234"},{"denom":"ASSET15","index":"0.000030577360428195"},{"denom":"ASSET16","index":"0.000017398839639336"},{"denom":"ASSET17","index":"0.000014118783753094"},{"denom":"ASSET18","index":"0.000005852832798439"},{"denom":"ASSET2","index":"0.000011842962776555"},{"denom":"ASSET3","index":"0.000003403276486052"},{"denom":"ASSET4","index":"0.000032153615485739"},{"denom":"ASSET5","index":"0.000002672876628231"},{"denom":"ASSET6","index":"0.000010911335074632"},{"denom":"ASSET7","index":"0.000016856474536988"},{"denom":"ASSET8","index":"0.000024303379662825"},{"denom":"ASSET9","index":"0.000009738097740305"}],"last_reward_claim_height":"195"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET8","shares":"688587505.635561815640611540","reward_history":[{"denom":"ASSET0","index":"0.000003185213515607"},{"denom":"ASSET1","index":"0.000027035699090666"},{"denom":"ASSET10","index":"0.000021635640181728"},{"denom":"ASSET11","index":"0.000026880669357351"},{"denom":"ASSET12","index":"0.000025658872180332"},{"denom":"ASSET13","index":"0.000008444958797633"},{"denom":"ASSET14","index":"0.000024662649108986"},{"denom":"ASSET15","index":"0.000019476753279332"},{"denom":"ASSET16","index":"0.000011989846651744"},{"denom":"ASSET17","index":"0.000009429633404312"},{"denom":"ASSET18","index":"0.000003886090392826"},{"denom":"ASSET2","index":"0.000008191890279929"},{"denom":"ASSET3","index":"0.000002271981699175"},{"denom":"ASSET4","index":"0.000021916623044014"},{"denom":"ASSET5","index":"0.000001770727550439"},{"denom":"ASSET6","index":"0.000007144791673859"},{"denom":"ASSET7","index":"0.000011230376410345"},{"denom":"ASSET8","index":"0.000015353061978158"},{"denom":"ASSET9","index":"0.000006513931773648"}],"last_reward_claim_height":"131"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET4","shares":"791970.999999997478121564","reward_history":[{"denom":"ASSET0","index":"0.000003356675502673"},{"denom":"ASSET1","index":"0.000028477076245214"},{"denom":"ASSET10","index":"0.000022663760086849"},{"denom":"ASSET11","index":"0.000028282539274294"},{"denom":"ASSET12","index":"0.000026934248109484"},{"denom":"ASSET13","index":"0.000008880550781135"},{"denom":"ASSET14","index":"0.000025969128454053"},{"denom":"ASSET15","index":"0.000020425731449718"},{"denom":"ASSET16","index":"0.000012636600959200"},{"denom":"ASSET17","index":"0.000009896936242996"},{"denom":"ASSET18","index":"0.000004102733083140"},{"denom":"ASSET2","index":"0.000008619316582261"},{"denom":"ASSET3","index":"0.000002396767404444"},{"denom":"ASSET4","index":"0.000023088672429632"},{"denom":"ASSET5","index":"0.000001866260713425"},{"denom":"ASSET6","index":"0.000007536521735823"},{"denom":"ASSET7","index":"0.000011831316132227"},{"denom":"ASSET8","index":"0.000016143846449802"},{"denom":"ASSET9","index":"0.000006854365607618"}],"last_reward_claim_height":"147"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET7","shares":"124536735.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003356675502673"},{"denom":"ASSET1","index":"0.000028477076245214"},{"denom":"ASSET10","index":"0.000022663760086849"},{"denom":"ASSET11","index":"0.000028282539274294"},{"denom":"ASSET12","index":"0.000026934248109484"},{"denom":"ASSET13","index":"0.000008880550781135"},{"denom":"ASSET14","index":"0.000025969128454053"},{"denom":"ASSET15","index":"0.000020425731449718"},{"denom":"ASSET16","index":"0.000012636600959200"},{"denom":"ASSET17","index":"0.000009896936242996"},{"denom":"ASSET18","index":"0.000004102733083140"},{"denom":"ASSET2","index":"0.000008619316582261"},{"denom":"ASSET3","index":"0.000002396767404444"},{"denom":"ASSET4","index":"0.000023088672429632"},{"denom":"ASSET5","index":"0.000001866260713425"},{"denom":"ASSET6","index":"0.000007536521735823"},{"denom":"ASSET7","index":"0.000011831316132227"},{"denom":"ASSET8","index":"0.000016143846449802"},{"denom":"ASSET9","index":"0.000006854365607618"}],"last_reward_claim_height":"149"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET10","shares":"106747829.432607751445096589","reward_history":[{"denom":"ASSET0","index":"0.000003356675502673"},{"denom":"ASSET1","index":"0.000028477076245214"},{"denom":"ASSET10","index":"0.000022663760086849"},{"denom":"ASSET11","index":"0.000028282539274294"},{"denom":"ASSET12","index":"0.000026934248109484"},{"denom":"ASSET13","index":"0.000008880550781135"},{"denom":"ASSET14","index":"0.000025969128454053"},{"denom":"ASSET15","index":"0.000020425731449718"},{"denom":"ASSET16","index":"0.000012636600959200"},{"denom":"ASSET17","index":"0.000009896936242996"},{"denom":"ASSET18","index":"0.000004102733083140"},{"denom":"ASSET2","index":"0.000008619316582261"},{"denom":"ASSET3","index":"0.000002396767404444"},{"denom":"ASSET4","index":"0.000023088672429632"},{"denom":"ASSET5","index":"0.000001866260713425"},{"denom":"ASSET6","index":"0.000007536521735823"},{"denom":"ASSET7","index":"0.000011831316132227"},{"denom":"ASSET8","index":"0.000016143846449802"},{"denom":"ASSET9","index":"0.000006854365607618"}],"last_reward_claim_height":"169"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET13","shares":"362049175.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000005002676183029"},{"denom":"ASSET1","index":"0.000040970324905648"},{"denom":"ASSET10","index":"0.000035351419874368"},{"denom":"ASSET11","index":"0.000042515341359955"},{"denom":"ASSET12","index":"0.000040437095263911"},{"denom":"ASSET13","index":"0.000013704097837157"},{"denom":"ASSET14","index":"0.000039232715985481"},{"denom":"ASSET15","index":"0.000031748860528974"},{"denom":"ASSET16","index":"0.000018183406112225"},{"denom":"ASSET17","index":"0.000014691260749644"},{"denom":"ASSET18","index":"0.000006116450843117"},{"denom":"ASSET2","index":"0.000012362846917674"},{"denom":"ASSET3","index":"0.000003554507989012"},{"denom":"ASSET4","index":"0.000033577944179880"},{"denom":"ASSET5","index":"0.000002789612099891"},{"denom":"ASSET6","index":"0.000011388824893905"},{"denom":"ASSET7","index":"0.000017589578899471"},{"denom":"ASSET8","index":"0.000025277922472838"},{"denom":"ASSET9","index":"0.000010152860868192"}],"last_reward_claim_height":"185"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET10","shares":"230920659.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002962853679956"},{"denom":"ASSET1","index":"0.000025162993314326"},{"denom":"ASSET10","index":"0.000020199688926412"},{"denom":"ASSET11","index":"0.000025035647772320"},{"denom":"ASSET12","index":"0.000023929456511577"},{"denom":"ASSET13","index":"0.000007867725037604"},{"denom":"ASSET14","index":"0.000022960507028012"},{"denom":"ASSET15","index":"0.000018173489333858"},{"denom":"ASSET16","index":"0.000011155286879957"},{"denom":"ASSET17","index":"0.000008793607250882"},{"denom":"ASSET18","index":"0.000003611579051495"},{"denom":"ASSET2","index":"0.000007628670547867"},{"denom":"ASSET3","index":"0.000002114031306235"},{"denom":"ASSET4","index":"0.000020398130246320"},{"denom":"ASSET5","index":"0.000001647096325587"},{"denom":"ASSET6","index":"0.000006645213242757"},{"denom":"ASSET7","index":"0.000010450616802650"},{"denom":"ASSET8","index":"0.000014303332598966"},{"denom":"ASSET9","index":"0.000006067112886031"}],"last_reward_claim_height":"173"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET12","shares":"79121437.578248660880244804","reward_history":[{"denom":"ASSET0","index":"0.000002962853679956"},{"denom":"ASSET1","index":"0.000025162993314326"},{"denom":"ASSET10","index":"0.000020199688926412"},{"denom":"ASSET11","index":"0.000025035647772320"},{"denom":"ASSET12","index":"0.000023929456511577"},{"denom":"ASSET13","index":"0.000007867725037604"},{"denom":"ASSET14","index":"0.000022960507028012"},{"denom":"ASSET15","index":"0.000018173489333858"},{"denom":"ASSET16","index":"0.000011155286879957"},{"denom":"ASSET17","index":"0.000008793607250882"},{"denom":"ASSET18","index":"0.000003611579051495"},{"denom":"ASSET2","index":"0.000007628670547867"},{"denom":"ASSET3","index":"0.000002114031306235"},{"denom":"ASSET4","index":"0.000020398130246320"},{"denom":"ASSET5","index":"0.000001647096325587"},{"denom":"ASSET6","index":"0.000006645213242757"},{"denom":"ASSET7","index":"0.000010450616802650"},{"denom":"ASSET8","index":"0.000014303332598966"},{"denom":"ASSET9","index":"0.000006067112886031"}],"last_reward_claim_height":"151"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET15","shares":"1432074015.149004838754766746","reward_history":[{"denom":"ASSET0","index":"0.000002962853679956"},{"denom":"ASSET1","index":"0.000025162993314326"},{"denom":"ASSET10","index":"0.000020199688926412"},{"denom":"ASSET11","index":"0.000025035647772320"},{"denom":"ASSET12","index":"0.000023929456511577"},{"denom":"ASSET13","index":"0.000007867725037604"},{"denom":"ASSET14","index":"0.000022960507028012"},{"denom":"ASSET15","index":"0.000018173489333858"},{"denom":"ASSET16","index":"0.000011155286879957"},{"denom":"ASSET17","index":"0.000008793607250882"},{"denom":"ASSET18","index":"0.000003611579051495"},{"denom":"ASSET2","index":"0.000007628670547867"},{"denom":"ASSET3","index":"0.000002114031306235"},{"denom":"ASSET4","index":"0.000020398130246320"},{"denom":"ASSET5","index":"0.000001647096325587"},{"denom":"ASSET6","index":"0.000006645213242757"},{"denom":"ASSET7","index":"0.000010450616802650"},{"denom":"ASSET8","index":"0.000014303332598966"},{"denom":"ASSET9","index":"0.000006067112886031"}],"last_reward_claim_height":"162"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET16","shares":"571241634.083758684213111616","reward_history":[{"denom":"ASSET0","index":"0.000001432199402946"},{"denom":"ASSET1","index":"0.000011943338809449"},{"denom":"ASSET10","index":"0.000008321234131428"},{"denom":"ASSET11","index":"0.000011554338026882"},{"denom":"ASSET12","index":"0.000010404248756685"},{"denom":"ASSET13","index":"0.000003580160245814"},{"denom":"ASSET14","index":"0.000010793249539252"},{"denom":"ASSET15","index":"0.000007717099003024"},{"denom":"ASSET16","index":"0.000005380388215223"},{"denom":"ASSET17","index":"0.000003821002469456"},{"denom":"ASSET18","index":"0.000001819847139312"},{"denom":"ASSET2","index":"0.000003525361874705"},{"denom":"ASSET3","index":"0.000001031021204577"},{"denom":"ASSET4","index":"0.000009706076917365"},{"denom":"ASSET5","index":"0.000000800326827437"},{"denom":"ASSET6","index":"0.000003258135250159"},{"denom":"ASSET7","index":"0.000004989357863356"},{"denom":"ASSET8","index":"0.000006510858315517"},{"denom":"ASSET9","index":"0.000002812306527182"}],"last_reward_claim_height":"70"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET3","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003135234009226"},{"denom":"ASSET1","index":"0.000026602125077525"},{"denom":"ASSET10","index":"0.000021213712135644"},{"denom":"ASSET11","index":"0.000026430841190504"},{"denom":"ASSET12","index":"0.000025191219856579"},{"denom":"ASSET13","index":"0.000008300995957475"},{"denom":"ASSET14","index":"0.000024262534835813"},{"denom":"ASSET15","index":"0.000019110376679732"},{"denom":"ASSET16","index":"0.000011801461546978"},{"denom":"ASSET17","index":"0.000009257538829689"},{"denom":"ASSET18","index":"0.000003829421505073"},{"denom":"ASSET2","index":"0.000008055136326188"},{"denom":"ASSET3","index":"0.000002237228869924"},{"denom":"ASSET4","index":"0.000021566736915931"},{"denom":"ASSET5","index":"0.000001743257901616"},{"denom":"ASSET6","index":"0.000007036288319926"},{"denom":"ASSET7","index":"0.000011051703047857"},{"denom":"ASSET8","index":"0.000015089589803941"},{"denom":"ASSET9","index":"0.000006406386950018"}],"last_reward_claim_height":"160"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET8","shares":"213718981.346868288214458270","reward_history":[{"denom":"ASSET0","index":"0.000003135234009226"},{"denom":"ASSET1","index":"0.000026602125077525"},{"denom":"ASSET10","index":"0.000021213712135644"},{"denom":"ASSET11","index":"0.000026430841190504"},{"denom":"ASSET12","index":"0.000025191219856579"},{"denom":"ASSET13","index":"0.000008300995957475"},{"denom":"ASSET14","index":"0.000024262534835813"},{"denom":"ASSET15","index":"0.000019110376679732"},{"denom":"ASSET16","index":"0.000011801461546978"},{"denom":"ASSET17","index":"0.000009257538829689"},{"denom":"ASSET18","index":"0.000003829421505073"},{"denom":"ASSET2","index":"0.000008055136326188"},{"denom":"ASSET3","index":"0.000002237228869924"},{"denom":"ASSET4","index":"0.000021566736915931"},{"denom":"ASSET5","index":"0.000001743257901616"},{"denom":"ASSET6","index":"0.000007036288319926"},{"denom":"ASSET7","index":"0.000011051703047857"},{"denom":"ASSET8","index":"0.000015089589803941"},{"denom":"ASSET9","index":"0.000006406386950018"}],"last_reward_claim_height":"155"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET14","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003135234009226"},{"denom":"ASSET1","index":"0.000026602125077525"},{"denom":"ASSET10","index":"0.000021213712135644"},{"denom":"ASSET11","index":"0.000026430841190504"},{"denom":"ASSET12","index":"0.000025191219856579"},{"denom":"ASSET13","index":"0.000008300995957475"},{"denom":"ASSET14","index":"0.000024262534835813"},{"denom":"ASSET15","index":"0.000019110376679732"},{"denom":"ASSET16","index":"0.000011801461546978"},{"denom":"ASSET17","index":"0.000009257538829689"},{"denom":"ASSET18","index":"0.000003829421505073"},{"denom":"ASSET2","index":"0.000008055136326188"},{"denom":"ASSET3","index":"0.000002237228869924"},{"denom":"ASSET4","index":"0.000021566736915931"},{"denom":"ASSET5","index":"0.000001743257901616"},{"denom":"ASSET6","index":"0.000007036288319926"},{"denom":"ASSET7","index":"0.000011051703047857"},{"denom":"ASSET8","index":"0.000015089589803941"},{"denom":"ASSET9","index":"0.000006406386950018"}],"last_reward_claim_height":"146"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET11","shares":"151742140.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003297864217859"},{"denom":"ASSET1","index":"0.000027973253972789"},{"denom":"ASSET10","index":"0.000022291630953866"},{"denom":"ASSET11","index":"0.000027789008146512"},{"denom":"ASSET12","index":"0.000026479178332828"},{"denom":"ASSET13","index":"0.000008727103479255"},{"denom":"ASSET14","index":"0.000025511286037616"},{"denom":"ASSET15","index":"0.000020085740117730"},{"denom":"ASSET16","index":"0.000012411485442612"},{"denom":"ASSET17","index":"0.000009730550155880"},{"denom":"ASSET18","index":"0.000004028926705548"},{"denom":"ASSET2","index":"0.000008468714781887"},{"denom":"ASSET3","index":"0.000002353891879987"},{"denom":"ASSET4","index":"0.000022679492169342"},{"denom":"ASSET5","index":"0.000001833514119464"},{"denom":"ASSET6","index":"0.000007400677249018"},{"denom":"ASSET7","index":"0.000011621769805761"},{"denom":"ASSET8","index":"0.000015864980999233"},{"denom":"ASSET9","index":"0.000006736116007098"}],"last_reward_claim_height":"144"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET0","shares":"226819567.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001411859688057"},{"denom":"ASSET1","index":"0.000011770485537623"},{"denom":"ASSET10","index":"0.000008200497469250"},{"denom":"ASSET11","index":"0.000011386615852852"},{"denom":"ASSET12","index":"0.000010253874969484"},{"denom":"ASSET13","index":"0.000003528347966974"},{"denom":"ASSET14","index":"0.000010637094027671"},{"denom":"ASSET15","index":"0.000007605174144562"},{"denom":"ASSET16","index":"0.000005302606662519"},{"denom":"ASSET17","index":"0.000003765826670265"},{"denom":"ASSET18","index":"0.000001793777493075"},{"denom":"ASSET2","index":"0.000003474345960472"},{"denom":"ASSET3","index":"0.000001016278724767"},{"denom":"ASSET4","index":"0.000009565512043233"},{"denom":"ASSET5","index":"0.000000788559420242"},{"denom":"ASSET6","index":"0.000003210842193807"},{"denom":"ASSET7","index":"0.000004917435724579"},{"denom":"ASSET8","index":"0.000006416479374940"},{"denom":"ASSET9","index":"0.000002771018622781"}],"last_reward_claim_height":"120"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET3","shares":"482437890.278411531177197429","reward_history":[{"denom":"ASSET0","index":"0.000002930820438736"},{"denom":"ASSET1","index":"0.000024889799880283"},{"denom":"ASSET10","index":"0.000019988623694797"},{"denom":"ASSET11","index":"0.000024765615752571"},{"denom":"ASSET12","index":"0.000023676022623299"},{"denom":"ASSET13","index":"0.000007783195940338"},{"denom":"ASSET14","index":"0.000022712072914709"},{"denom":"ASSET15","index":"0.000017982209004670"},{"denom":"ASSET16","index":"0.000011033267632466"},{"denom":"ASSET17","index":"0.000008700651286884"},{"denom":"ASSET18","index":"0.000003571624768330"},{"denom":"ASSET2","index":"0.000007546215495169"},{"denom":"ASSET3","index":"0.000002090977414753"},{"denom":"ASSET4","index":"0.000020176663420937"},{"denom":"ASSET5","index":"0.000001628342560149"},{"denom":"ASSET6","index":"0.000006572371850885"},{"denom":"ASSET7","index":"0.000010337273058537"},{"denom":"ASSET8","index":"0.000014149515747938"},{"denom":"ASSET9","index":"0.000006000707920121"}],"last_reward_claim_height":"141"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET15","shares":"851903110.446575094563435855","reward_history":[{"denom":"ASSET0","index":"0.000002930820438736"},{"denom":"ASSET1","index":"0.000024889799880283"},{"denom":"ASSET10","index":"0.000019988623694797"},{"denom":"ASSET11","index":"0.000024765615752571"},{"denom":"ASSET12","index":"0.000023676022623299"},{"denom":"ASSET13","index":"0.000007783195940338"},{"denom":"ASSET14","index":"0.000022712072914709"},{"denom":"ASSET15","index":"0.000017982209004670"},{"denom":"ASSET16","index":"0.000011033267632466"},{"denom":"ASSET17","index":"0.000008700651286884"},{"denom":"ASSET18","index":"0.000003571624768330"},{"denom":"ASSET2","index":"0.000007546215495169"},{"denom":"ASSET3","index":"0.000002090977414753"},{"denom":"ASSET4","index":"0.000020176663420937"},{"denom":"ASSET5","index":"0.000001628342560149"},{"denom":"ASSET6","index":"0.000006572371850885"},{"denom":"ASSET7","index":"0.000010337273058537"},{"denom":"ASSET8","index":"0.000014149515747938"},{"denom":"ASSET9","index":"0.000006000707920121"}],"last_reward_claim_height":"136"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET4","shares":"56724453.000000000000000000","reward_history":[],"last_reward_claim_height":"29"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET0","shares":"482691015.000000000000000000","reward_history":[],"last_reward_claim_height":"10"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET7","shares":"109230726.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004953155424517"},{"denom":"ASSET1","index":"0.000040606888247052"},{"denom":"ASSET10","index":"0.000035170982695117"},{"denom":"ASSET11","index":"0.000042156301910947"},{"denom":"ASSET12","index":"0.000040183030492130"},{"denom":"ASSET13","index":"0.000013590071791821"},{"denom":"ASSET14","index":"0.000038871453551416"},{"denom":"ASSET15","index":"0.000031558024433710"},{"denom":"ASSET16","index":"0.000018011385345721"},{"denom":"ASSET17","index":"0.000014602864003856"},{"denom":"ASSET18","index":"0.000006046015291900"},{"denom":"ASSET2","index":"0.000012266366015467"},{"denom":"ASSET3","index":"0.000003517202576052"},{"denom":"ASSET4","index":"0.000033271184035282"},{"denom":"ASSET5","index":"0.000002760943248123"},{"denom":"ASSET6","index":"0.000011265372607182"},{"denom":"ASSET7","index":"0.000017421644422297"},{"denom":"ASSET8","index":"0.000025062942780506"},{"denom":"ASSET9","index":"0.000010068919846849"}],"last_reward_claim_height":"199"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET10","shares":"27080610.000000008879687124","reward_history":[{"denom":"ASSET0","index":"0.000003344718004914"},{"denom":"ASSET1","index":"0.000028399683918161"},{"denom":"ASSET10","index":"0.000022773943545696"},{"denom":"ASSET11","index":"0.000028249525692452"},{"denom":"ASSET12","index":"0.000026989510465266"},{"denom":"ASSET13","index":"0.000008877216029957"},{"denom":"ASSET14","index":"0.000025911788013611"},{"denom":"ASSET15","index":"0.000020494299775586"},{"denom":"ASSET16","index":"0.000012591463658113"},{"denom":"ASSET17","index":"0.000009918208342143"},{"denom":"ASSET18","index":"0.000004078542450859"},{"denom":"ASSET2","index":"0.000008608606683653"},{"denom":"ASSET3","index":"0.000002386103437058"},{"denom":"ASSET4","index":"0.000023022167148602"},{"denom":"ASSET5","index":"0.000001858883946943"},{"denom":"ASSET6","index":"0.000007501347044310"},{"denom":"ASSET7","index":"0.000011795380538461"},{"denom":"ASSET8","index":"0.000016137954986293"},{"denom":"ASSET9","index":"0.000006845854741756"}],"last_reward_claim_height":"166"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET5","shares":"277899449.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002824624853437"},{"denom":"ASSET1","index":"0.000023976113690517"},{"denom":"ASSET10","index":"0.000019183481330878"},{"denom":"ASSET11","index":"0.000023837782846342"},{"denom":"ASSET12","index":"0.000022753084719682"},{"denom":"ASSET13","index":"0.000007489057952554"},{"denom":"ASSET14","index":"0.000021872315483076"},{"denom":"ASSET15","index":"0.000017271123733000"},{"denom":"ASSET16","index":"0.000010633084765839"},{"denom":"ASSET17","index":"0.000008361522972460"},{"denom":"ASSET18","index":"0.000003446219629870"},{"denom":"ASSET2","index":"0.000007263651822688"},{"denom":"ASSET3","index":"0.000002015414858276"},{"denom":"ASSET4","index":"0.000019437236646346"},{"denom":"ASSET5","index":"0.000001569802896992"},{"denom":"ASSET6","index":"0.000006336500403946"},{"denom":"ASSET7","index":"0.000009959182045961"},{"denom":"ASSET8","index":"0.000013614498977085"},{"denom":"ASSET9","index":"0.000005776799011181"}],"last_reward_claim_height":"166"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET6","shares":"884611507.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002824624853437"},{"denom":"ASSET1","index":"0.000023976113690517"},{"denom":"ASSET10","index":"0.000019183481330878"},{"denom":"ASSET11","index":"0.000023837782846342"},{"denom":"ASSET12","index":"0.000022753084719682"},{"denom":"ASSET13","index":"0.000007489057952554"},{"denom":"ASSET14","index":"0.000021872315483076"},{"denom":"ASSET15","index":"0.000017271123733000"},{"denom":"ASSET16","index":"0.000010633084765839"},{"denom":"ASSET17","index":"0.000008361522972460"},{"denom":"ASSET18","index":"0.000003446219629870"},{"denom":"ASSET2","index":"0.000007263651822688"},{"denom":"ASSET3","index":"0.000002015414858276"},{"denom":"ASSET4","index":"0.000019437236646346"},{"denom":"ASSET5","index":"0.000001569802896992"},{"denom":"ASSET6","index":"0.000006336500403946"},{"denom":"ASSET7","index":"0.000009959182045961"},{"denom":"ASSET8","index":"0.000013614498977085"},{"denom":"ASSET9","index":"0.000005776799011181"}],"last_reward_claim_height":"126"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET7","shares":"13092624.999999982823521618","reward_history":[{"denom":"ASSET0","index":"0.000001401914217082"},{"denom":"ASSET1","index":"0.000011691084141249"},{"denom":"ASSET10","index":"0.000008144816837289"},{"denom":"ASSET11","index":"0.000011309282624399"},{"denom":"ASSET12","index":"0.000010184195671197"},{"denom":"ASSET13","index":"0.000003504785542706"},{"denom":"ASSET14","index":"0.000010565150621491"},{"denom":"ASSET15","index":"0.000007553913381055"},{"denom":"ASSET16","index":"0.000005266490546178"},{"denom":"ASSET17","index":"0.000003740131045332"},{"denom":"ASSET18","index":"0.000001781176034264"},{"denom":"ASSET2","index":"0.000003450605283109"},{"denom":"ASSET3","index":"0.000001009107335001"},{"denom":"ASSET4","index":"0.000009501016460336"},{"denom":"ASSET5","index":"0.000000783074064494"},{"denom":"ASSET6","index":"0.000003189016217240"},{"denom":"ASSET7","index":"0.000004883842462771"},{"denom":"ASSET8","index":"0.000006372953035143"},{"denom":"ASSET9","index":"0.000002752187874236"}],"last_reward_claim_height":"113"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET13","shares":"104334210.520897312995442315","reward_history":[{"denom":"ASSET0","index":"0.000001401914217082"},{"denom":"ASSET1","index":"0.000011691084141249"},{"denom":"ASSET10","index":"0.000008144816837289"},{"denom":"ASSET11","index":"0.000011309282624399"},{"denom":"ASSET12","index":"0.000010184195671197"},{"denom":"ASSET13","index":"0.000003504785542706"},{"denom":"ASSET14","index":"0.000010565150621491"},{"denom":"ASSET15","index":"0.000007553913381055"},{"denom":"ASSET16","index":"0.000005266490546178"},{"denom":"ASSET17","index":"0.000003740131045332"},{"denom":"ASSET18","index":"0.000001781176034264"},{"denom":"ASSET2","index":"0.000003450605283109"},{"denom":"ASSET3","index":"0.000001009107335001"},{"denom":"ASSET4","index":"0.000009501016460336"},{"denom":"ASSET5","index":"0.000000783074064494"},{"denom":"ASSET6","index":"0.000003189016217240"},{"denom":"ASSET7","index":"0.000004883842462771"},{"denom":"ASSET8","index":"0.000006372953035143"},{"denom":"ASSET9","index":"0.000002752187874236"}],"last_reward_claim_height":"86"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET2","shares":"636911661.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003026822568793"},{"denom":"ASSET1","index":"0.000025710421285725"},{"denom":"ASSET10","index":"0.000020652297735472"},{"denom":"ASSET11","index":"0.000025583400849235"},{"denom":"ASSET12","index":"0.000024460820755928"},{"denom":"ASSET13","index":"0.000008041083722059"},{"denom":"ASSET14","index":"0.000023461074878675"},{"denom":"ASSET15","index":"0.000018578170233019"},{"denom":"ASSET16","index":"0.000011396689804799"},{"denom":"ASSET17","index":"0.000008988134494295"},{"denom":"ASSET18","index":"0.000003688816665807"},{"denom":"ASSET2","index":"0.000007796110853756"},{"denom":"ASSET3","index":"0.000002159003644915"},{"denom":"ASSET4","index":"0.000020841789260406"},{"denom":"ASSET5","index":"0.000001683251281734"},{"denom":"ASSET6","index":"0.000006788484398340"},{"denom":"ASSET7","index":"0.000010677121165375"},{"denom":"ASSET8","index":"0.000014616905179383"},{"denom":"ASSET9","index":"0.000006199084273401"}],"last_reward_claim_height":"159"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET3","shares":"1822358239.911334500101516492","reward_history":[{"denom":"ASSET0","index":"0.000003026822568793"},{"denom":"ASSET1","index":"0.000025710421285725"},{"denom":"ASSET10","index":"0.000020652297735472"},{"denom":"ASSET11","index":"0.000025583400849235"},{"denom":"ASSET12","index":"0.000024460820755928"},{"denom":"ASSET13","index":"0.000008041083722059"},{"denom":"ASSET14","index":"0.000023461074878675"},{"denom":"ASSET15","index":"0.000018578170233019"},{"denom":"ASSET16","index":"0.000011396689804799"},{"denom":"ASSET17","index":"0.000008988134494295"},{"denom":"ASSET18","index":"0.000003688816665807"},{"denom":"ASSET2","index":"0.000007796110853756"},{"denom":"ASSET3","index":"0.000002159003644915"},{"denom":"ASSET4","index":"0.000020841789260406"},{"denom":"ASSET5","index":"0.000001683251281734"},{"denom":"ASSET6","index":"0.000006788484398340"},{"denom":"ASSET7","index":"0.000010677121165375"},{"denom":"ASSET8","index":"0.000014616905179383"},{"denom":"ASSET9","index":"0.000006199084273401"}],"last_reward_claim_height":"133"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET6","shares":"866076890.999999982678462180","reward_history":[{"denom":"ASSET0","index":"0.000003026822568793"},{"denom":"ASSET1","index":"0.000025710421285725"},{"denom":"ASSET10","index":"0.000020652297735472"},{"denom":"ASSET11","index":"0.000025583400849235"},{"denom":"ASSET12","index":"0.000024460820755928"},{"denom":"ASSET13","index":"0.000008041083722059"},{"denom":"ASSET14","index":"0.000023461074878675"},{"denom":"ASSET15","index":"0.000018578170233019"},{"denom":"ASSET16","index":"0.000011396689804799"},{"denom":"ASSET17","index":"0.000008988134494295"},{"denom":"ASSET18","index":"0.000003688816665807"},{"denom":"ASSET2","index":"0.000007796110853756"},{"denom":"ASSET3","index":"0.000002159003644915"},{"denom":"ASSET4","index":"0.000020841789260406"},{"denom":"ASSET5","index":"0.000001683251281734"},{"denom":"ASSET6","index":"0.000006788484398340"},{"denom":"ASSET7","index":"0.000010677121165375"},{"denom":"ASSET8","index":"0.000014616905179383"},{"denom":"ASSET9","index":"0.000006199084273401"}],"last_reward_claim_height":"163"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET5","shares":"499742809.000000016491512697","reward_history":[{"denom":"ASSET0","index":"0.000003086703561215"},{"denom":"ASSET1","index":"0.000026199550261878"},{"denom":"ASSET10","index":"0.000020936384793003"},{"denom":"ASSET11","index":"0.000026042194398185"},{"denom":"ASSET12","index":"0.000024843424443974"},{"denom":"ASSET13","index":"0.000008180415813801"},{"denom":"ASSET14","index":"0.000023898307142718"},{"denom":"ASSET15","index":"0.000018852934413068"},{"denom":"ASSET16","index":"0.000011621232923996"},{"denom":"ASSET17","index":"0.000009129550402498"},{"denom":"ASSET18","index":"0.000003767892160935"},{"denom":"ASSET2","index":"0.000007936188126371"},{"denom":"ASSET3","index":"0.000002203575710986"},{"denom":"ASSET4","index":"0.000021240180347210"},{"denom":"ASSET5","index":"0.000001716192200569"},{"denom":"ASSET6","index":"0.000006926674957775"},{"denom":"ASSET7","index":"0.000010883333770048"},{"denom":"ASSET8","index":"0.000014871024805414"},{"denom":"ASSET9","index":"0.000006311583255107"}],"last_reward_claim_height":"161"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET6","shares":"59500271.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001547699786520"},{"denom":"ASSET1","index":"0.000012908880828127"},{"denom":"ASSET10","index":"0.000008993933542043"},{"denom":"ASSET11","index":"0.000012488059147042"},{"denom":"ASSET12","index":"0.000011245681057538"},{"denom":"ASSET13","index":"0.000003869751640144"},{"denom":"ASSET14","index":"0.000011665498390936"},{"denom":"ASSET15","index":"0.000008340103197445"},{"denom":"ASSET16","index":"0.000005815173110936"},{"denom":"ASSET17","index":"0.000004129877691221"},{"denom":"ASSET18","index":"0.000001966512772230"},{"denom":"ASSET2","index":"0.000003810495126579"},{"denom":"ASSET3","index":"0.000001114825933185"},{"denom":"ASSET4","index":"0.000010490411596498"},{"denom":"ASSET5","index":"0.000000864743358984"},{"denom":"ASSET6","index":"0.000003521242992563"},{"denom":"ASSET7","index":"0.000005392342734476"},{"denom":"ASSET8","index":"0.000007036459899001"},{"denom":"ASSET9","index":"0.000003039156102537"}],"last_reward_claim_height":"84"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET0","shares":"905970657.000000000000000000","reward_history":[],"last_reward_claim_height":"27"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET3","shares":"926859759.798803297481604396","reward_history":[{"denom":"ASSET0","index":"0.000003050294937135"},{"denom":"ASSET1","index":"0.000025887230915803"},{"denom":"ASSET10","index":"0.000020718160619670"},{"denom":"ASSET11","index":"0.000025739685005463"},{"denom":"ASSET12","index":"0.000024570727404900"},{"denom":"ASSET13","index":"0.000008086966483560"},{"denom":"ASSET14","index":"0.000023616194455668"},{"denom":"ASSET15","index":"0.000018651338246959"},{"denom":"ASSET16","index":"0.000011480437826441"},{"denom":"ASSET17","index":"0.000009029688158762"},{"denom":"ASSET18","index":"0.000003721440260869"},{"denom":"ASSET2","index":"0.000007844134626406"},{"denom":"ASSET3","index":"0.000002176540273945"},{"denom":"ASSET4","index":"0.000020986445628896"},{"denom":"ASSET5","index":"0.000001695800268231"},{"denom":"ASSET6","index":"0.000006841569437153"},{"denom":"ASSET7","index":"0.000010753447417762"},{"denom":"ASSET8","index":"0.000014701309289649"},{"denom":"ASSET9","index":"0.000006238283490477"}],"last_reward_claim_height":"132"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET8","shares":"267084084.391384012296862878","reward_history":[{"denom":"ASSET0","index":"0.000001511232509129"},{"denom":"ASSET1","index":"0.000012598757210652"},{"denom":"ASSET10","index":"0.000008777665278232"},{"denom":"ASSET11","index":"0.000012187849575766"},{"denom":"ASSET12","index":"0.000010975073643675"},{"denom":"ASSET13","index":"0.000003776959255615"},{"denom":"ASSET14","index":"0.000011385233267090"},{"denom":"ASSET15","index":"0.000008140359504707"},{"denom":"ASSET16","index":"0.000005675412369706"},{"denom":"ASSET17","index":"0.000004030784481533"},{"denom":"ASSET18","index":"0.000001920145446758"},{"denom":"ASSET2","index":"0.000003719113035170"},{"denom":"ASSET3","index":"0.000001087858016388"},{"denom":"ASSET4","index":"0.000010238531681628"},{"denom":"ASSET5","index":"0.000000844504951067"},{"denom":"ASSET6","index":"0.000003436614036185"},{"denom":"ASSET7","index":"0.000005263507386191"},{"denom":"ASSET8","index":"0.000006867991992072"},{"denom":"ASSET9","index":"0.000002966364157912"}],"last_reward_claim_height":"94"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET9","shares":"356778022.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001511232509129"},{"denom":"ASSET1","index":"0.000012598757210652"},{"denom":"ASSET10","index":"0.000008777665278232"},{"denom":"ASSET11","index":"0.000012187849575766"},{"denom":"ASSET12","index":"0.000010975073643675"},{"denom":"ASSET13","index":"0.000003776959255615"},{"denom":"ASSET14","index":"0.000011385233267090"},{"denom":"ASSET15","index":"0.000008140359504707"},{"denom":"ASSET16","index":"0.000005675412369706"},{"denom":"ASSET17","index":"0.000004030784481533"},{"denom":"ASSET18","index":"0.000001920145446758"},{"denom":"ASSET2","index":"0.000003719113035170"},{"denom":"ASSET3","index":"0.000001087858016388"},{"denom":"ASSET4","index":"0.000010238531681628"},{"denom":"ASSET5","index":"0.000000844504951067"},{"denom":"ASSET6","index":"0.000003436614036185"},{"denom":"ASSET7","index":"0.000005263507386191"},{"denom":"ASSET8","index":"0.000006867991992072"},{"denom":"ASSET9","index":"0.000002966364157912"}],"last_reward_claim_height":"85"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET1","shares":"126240979.999999998611349220","reward_history":[{"denom":"ASSET0","index":"0.000001535139489204"},{"denom":"ASSET1","index":"0.000012800845981431"},{"denom":"ASSET10","index":"0.000008918122145344"},{"denom":"ASSET11","index":"0.000012383184798277"},{"denom":"ASSET12","index":"0.000011151318949088"},{"denom":"ASSET13","index":"0.000003837555421617"},{"denom":"ASSET14","index":"0.000011567806926671"},{"denom":"ASSET15","index":"0.000008270512670342"},{"denom":"ASSET16","index":"0.000005766305379776"},{"denom":"ASSET17","index":"0.000004095074044376"},{"denom":"ASSET18","index":"0.000001950454261216"},{"denom":"ASSET2","index":"0.000003778308540299"},{"denom":"ASSET3","index":"0.000001105159647558"},{"denom":"ASSET4","index":"0.000010402813795010"},{"denom":"ASSET5","index":"0.000000857613272150"},{"denom":"ASSET6","index":"0.000003491459778273"},{"denom":"ASSET7","index":"0.000005347470991052"},{"denom":"ASSET8","index":"0.000006978226734264"},{"denom":"ASSET9","index":"0.000003013965111016"}],"last_reward_claim_height":"98"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET10","shares":"361166399.222377726802882810","reward_history":[{"denom":"ASSET0","index":"0.000004555194098436"},{"denom":"ASSET1","index":"0.000037194020995645"},{"denom":"ASSET10","index":"0.000032267252901811"},{"denom":"ASSET11","index":"0.000038719949684547"},{"denom":"ASSET12","index":"0.000036813725422538"},{"denom":"ASSET13","index":"0.000012504453081971"},{"denom":"ASSET14","index":"0.000035746405125898"},{"denom":"ASSET15","index":"0.000028975554868050"},{"denom":"ASSET16","index":"0.000016509698953174"},{"denom":"ASSET17","index":"0.000013364006755943"},{"denom":"ASSET18","index":"0.000005570240358371"},{"denom":"ASSET2","index":"0.000011218734016892"},{"denom":"ASSET3","index":"0.000003234690053143"},{"denom":"ASSET4","index":"0.000030508812947759"},{"denom":"ASSET5","index":"0.000002540722507986"},{"denom":"ASSET6","index":"0.000010378847790634"},{"denom":"ASSET7","index":"0.000016009295815118"},{"denom":"ASSET8","index":"0.000023089143199744"},{"denom":"ASSET9","index":"0.000009237844210338"}],"last_reward_claim_height":"194"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET12","shares":"958250883.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002944371933765"},{"denom":"ASSET1","index":"0.000024968433937291"},{"denom":"ASSET10","index":"0.000019851368221906"},{"denom":"ASSET11","index":"0.000024791952485266"},{"denom":"ASSET12","index":"0.000023600048189968"},{"denom":"ASSET13","index":"0.000007784111470281"},{"denom":"ASSET14","index":"0.000022766914870589"},{"denom":"ASSET15","index":"0.000017894900322998"},{"denom":"ASSET16","index":"0.000011081662183182"},{"denom":"ASSET17","index":"0.000008672317440622"},{"denom":"ASSET18","index":"0.000003599691097086"},{"denom":"ASSET2","index":"0.000007555380586873"},{"denom":"ASSET3","index":"0.000002101847815188"},{"denom":"ASSET4","index":"0.000020244169178497"},{"denom":"ASSET5","index":"0.000001637098640985"},{"denom":"ASSET6","index":"0.000006609166185649"},{"denom":"ASSET7","index":"0.000010374399402552"},{"denom":"ASSET8","index":"0.000014150620453773"},{"denom":"ASSET9","index":"0.000006009906313007"}],"last_reward_claim_height":"156"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET1","shares":"708632605.645895699671578654","reward_history":[{"denom":"ASSET0","index":"0.000002938303361264"},{"denom":"ASSET1","index":"0.000024939884544734"},{"denom":"ASSET10","index":"0.000019970621943114"},{"denom":"ASSET11","index":"0.000024800280810198"},{"denom":"ASSET12","index":"0.000023679745396670"},{"denom":"ASSET13","index":"0.000007792253675830"},{"denom":"ASSET14","index":"0.000022752532795075"},{"denom":"ASSET15","index":"0.000017976341528508"},{"denom":"ASSET16","index":"0.000011059313296089"},{"denom":"ASSET17","index":"0.000008702160495382"},{"denom":"ASSET18","index":"0.000003584018468858"},{"denom":"ASSET2","index":"0.000007557839698908"},{"denom":"ASSET3","index":"0.000002096442663552"},{"denom":"ASSET4","index":"0.000020217858094708"},{"denom":"ASSET5","index":"0.000001633684136995"},{"denom":"ASSET6","index":"0.000006589976909255"},{"denom":"ASSET7","index":"0.000010359339015905"},{"denom":"ASSET8","index":"0.000014165755580726"},{"denom":"ASSET9","index":"0.000006010291774725"}],"last_reward_claim_height":"146"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET4","shares":"821796458.999999992603831869","reward_history":[{"denom":"ASSET0","index":"0.000001449310882227"},{"denom":"ASSET1","index":"0.000012082282763787"},{"denom":"ASSET10","index":"0.000008417588941675"},{"denom":"ASSET11","index":"0.000011688148164511"},{"denom":"ASSET12","index":"0.000010525234539176"},{"denom":"ASSET13","index":"0.000003621923721366"},{"denom":"ASSET14","index":"0.000010918286351091"},{"denom":"ASSET15","index":"0.000007806355476589"},{"denom":"ASSET16","index":"0.000005442630668295"},{"denom":"ASSET17","index":"0.000003865550877512"},{"denom":"ASSET18","index":"0.000001841279906781"},{"denom":"ASSET2","index":"0.000003566701565973"},{"denom":"ASSET3","index":"0.000001043265621984"},{"denom":"ASSET4","index":"0.000009818715786353"},{"denom":"ASSET5","index":"0.000000809924945764"},{"denom":"ASSET6","index":"0.000003295463332131"},{"denom":"ASSET7","index":"0.000005047413281659"},{"denom":"ASSET8","index":"0.000006586595514820"},{"denom":"ASSET9","index":"0.000002844482396421"}],"last_reward_claim_height":"118"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET6","shares":"10184410.472146079892293165","reward_history":[{"denom":"ASSET0","index":"0.000003329715418659"},{"denom":"ASSET1","index":"0.000028238028843607"},{"denom":"ASSET10","index":"0.000022458342297172"},{"denom":"ASSET11","index":"0.000028040237741643"},{"denom":"ASSET12","index":"0.000026695793846360"},{"denom":"ASSET13","index":"0.000008804253880653"},{"denom":"ASSET14","index":"0.000025748953032298"},{"denom":"ASSET15","index":"0.000020243324641083"},{"denom":"ASSET16","index":"0.000012532507824147"},{"denom":"ASSET17","index":"0.000009809802042254"},{"denom":"ASSET18","index":"0.000004070975493464"},{"denom":"ASSET2","index":"0.000008545109234155"},{"denom":"ASSET3","index":"0.000002377197518329"},{"denom":"ASSET4","index":"0.000022894451839245"},{"denom":"ASSET5","index":"0.000001851122407848"},{"denom":"ASSET6","index":"0.000007473999475476"},{"denom":"ASSET7","index":"0.000011732969702935"},{"denom":"ASSET8","index":"0.000016005536556726"},{"denom":"ASSET9","index":"0.000006797137295338"}],"last_reward_claim_height":"155"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET10","shares":"99102959.055665186020288723","reward_history":[{"denom":"ASSET0","index":"0.000003329715418659"},{"denom":"ASSET1","index":"0.000028238028843607"},{"denom":"ASSET10","index":"0.000022458342297172"},{"denom":"ASSET11","index":"0.000028040237741643"},{"denom":"ASSET12","index":"0.000026695793846360"},{"denom":"ASSET13","index":"0.000008804253880653"},{"denom":"ASSET14","index":"0.000025748953032298"},{"denom":"ASSET15","index":"0.000020243324641083"},{"denom":"ASSET16","index":"0.000012532507824147"},{"denom":"ASSET17","index":"0.000009809802042254"},{"denom":"ASSET18","index":"0.000004070975493464"},{"denom":"ASSET2","index":"0.000008545109234155"},{"denom":"ASSET3","index":"0.000002377197518329"},{"denom":"ASSET4","index":"0.000022894451839245"},{"denom":"ASSET5","index":"0.000001851122407848"},{"denom":"ASSET6","index":"0.000007473999475476"},{"denom":"ASSET7","index":"0.000011732969702935"},{"denom":"ASSET8","index":"0.000016005536556726"},{"denom":"ASSET9","index":"0.000006797137295338"}],"last_reward_claim_height":"136"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET4","shares":"173228772.487252567418686707","reward_history":[{"denom":"ASSET0","index":"0.000001649988907243"},{"denom":"ASSET1","index":"0.000013756519537767"},{"denom":"ASSET10","index":"0.000009584361794534"},{"denom":"ASSET11","index":"0.000013307506163009"},{"denom":"ASSET12","index":"0.000011983307415229"},{"denom":"ASSET13","index":"0.000004124070634826"},{"denom":"ASSET14","index":"0.000012431118612277"},{"denom":"ASSET15","index":"0.000008888300900330"},{"denom":"ASSET16","index":"0.000006196625007203"},{"denom":"ASSET17","index":"0.000004401172597026"},{"denom":"ASSET18","index":"0.000002096597926581"},{"denom":"ASSET2","index":"0.000004060355216185"},{"denom":"ASSET3","index":"0.000001187751577673"},{"denom":"ASSET4","index":"0.000011179050527108"},{"denom":"ASSET5","index":"0.000000922070303720"},{"denom":"ASSET6","index":"0.000003752597722375"},{"denom":"ASSET7","index":"0.000005747010543590"},{"denom":"ASSET8","index":"0.000007499184556200"},{"denom":"ASSET9","index":"0.000003238666751267"}],"last_reward_claim_height":"71"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET5","shares":"229808708.758629168728301408","reward_history":[{"denom":"ASSET0","index":"0.000001649988907243"},{"denom":"ASSET1","index":"0.000013756519537767"},{"denom":"ASSET10","index":"0.000009584361794534"},{"denom":"ASSET11","index":"0.000013307506163009"},{"denom":"ASSET12","index":"0.000011983307415229"},{"denom":"ASSET13","index":"0.000004124070634826"},{"denom":"ASSET14","index":"0.000012431118612277"},{"denom":"ASSET15","index":"0.000008888300900330"},{"denom":"ASSET16","index":"0.000006196625007203"},{"denom":"ASSET17","index":"0.000004401172597026"},{"denom":"ASSET18","index":"0.000002096597926581"},{"denom":"ASSET2","index":"0.000004060355216185"},{"denom":"ASSET3","index":"0.000001187751577673"},{"denom":"ASSET4","index":"0.000011179050527108"},{"denom":"ASSET5","index":"0.000000922070303720"},{"denom":"ASSET6","index":"0.000003752597722375"},{"denom":"ASSET7","index":"0.000005747010543590"},{"denom":"ASSET8","index":"0.000007499184556200"},{"denom":"ASSET9","index":"0.000003238666751267"}],"last_reward_claim_height":"82"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET7","shares":"403954951.770419625767554189","reward_history":[{"denom":"ASSET0","index":"0.000003269082759145"},{"denom":"ASSET1","index":"0.000027736662456421"},{"denom":"ASSET10","index":"0.000022145815740722"},{"denom":"ASSET11","index":"0.000027564157079872"},{"denom":"ASSET12","index":"0.000026286254396013"},{"denom":"ASSET13","index":"0.000008658548128401"},{"denom":"ASSET14","index":"0.000025298253418871"},{"denom":"ASSET15","index":"0.000019946084058089"},{"denom":"ASSET16","index":"0.000012303266096103"},{"denom":"ASSET17","index":"0.000009659898104260"},{"denom":"ASSET18","index":"0.000003991565584036"},{"denom":"ASSET2","index":"0.000008399501371576"},{"denom":"ASSET3","index":"0.000002333103515211"},{"denom":"ASSET4","index":"0.000022486071398850"},{"denom":"ASSET5","index":"0.000001817550334619"},{"denom":"ASSET6","index":"0.000007334517845971"},{"denom":"ASSET7","index":"0.000011522603065826"},{"denom":"ASSET8","index":"0.000015739883934035"},{"denom":"ASSET9","index":"0.000006680430297789"}],"last_reward_claim_height":"133"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET9","shares":"1000024802.444623810000000000","reward_history":[{"denom":"ASSET0","index":"0.000003269082759145"},{"denom":"ASSET1","index":"0.000027736662456421"},{"denom":"ASSET10","index":"0.000022145815740722"},{"denom":"ASSET11","index":"0.000027564157079872"},{"denom":"ASSET12","index":"0.000026286254396013"},{"denom":"ASSET13","index":"0.000008658548128401"},{"denom":"ASSET14","index":"0.000025298253418871"},{"denom":"ASSET15","index":"0.000019946084058089"},{"denom":"ASSET16","index":"0.000012303266096103"},{"denom":"ASSET17","index":"0.000009659898104260"},{"denom":"ASSET18","index":"0.000003991565584036"},{"denom":"ASSET2","index":"0.000008399501371576"},{"denom":"ASSET3","index":"0.000002333103515211"},{"denom":"ASSET4","index":"0.000022486071398850"},{"denom":"ASSET5","index":"0.000001817550334619"},{"denom":"ASSET6","index":"0.000007334517845971"},{"denom":"ASSET7","index":"0.000011522603065826"},{"denom":"ASSET8","index":"0.000015739883934035"},{"denom":"ASSET9","index":"0.000006680430297789"}],"last_reward_claim_height":"129"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET10","shares":"381434255.171491164823755690","reward_history":[{"denom":"ASSET0","index":"0.000003269082759145"},{"denom":"ASSET1","index":"0.000027736662456421"},{"denom":"ASSET10","index":"0.000022145815740722"},{"denom":"ASSET11","index":"0.000027564157079872"},{"denom":"ASSET12","index":"0.000026286254396013"},{"denom":"ASSET13","index":"0.000008658548128401"},{"denom":"ASSET14","index":"0.000025298253418871"},{"denom":"ASSET15","index":"0.000019946084058089"},{"denom":"ASSET16","index":"0.000012303266096103"},{"denom":"ASSET17","index":"0.000009659898104260"},{"denom":"ASSET18","index":"0.000003991565584036"},{"denom":"ASSET2","index":"0.000008399501371576"},{"denom":"ASSET3","index":"0.000002333103515211"},{"denom":"ASSET4","index":"0.000022486071398850"},{"denom":"ASSET5","index":"0.000001817550334619"},{"denom":"ASSET6","index":"0.000007334517845971"},{"denom":"ASSET7","index":"0.000011522603065826"},{"denom":"ASSET8","index":"0.000015739883934035"},{"denom":"ASSET9","index":"0.000006680430297789"}],"last_reward_claim_height":"152"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET3","shares":"413498747.000000015299453639","reward_history":[{"denom":"ASSET0","index":"0.000003075387603983"},{"denom":"ASSET1","index":"0.000026047450678709"},{"denom":"ASSET10","index":"0.000020531243448578"},{"denom":"ASSET11","index":"0.000025816927992783"},{"denom":"ASSET12","index":"0.000024485469945303"},{"denom":"ASSET13","index":"0.000008098391373250"},{"denom":"ASSET14","index":"0.000023735883509134"},{"denom":"ASSET15","index":"0.000018540774078871"},{"denom":"ASSET16","index":"0.000011572711306393"},{"denom":"ASSET17","index":"0.000008997644319689"},{"denom":"ASSET18","index":"0.000003770348288081"},{"denom":"ASSET2","index":"0.000007868945206789"},{"denom":"ASSET3","index":"0.000002196489262864"},{"denom":"ASSET4","index":"0.000021122354693053"},{"denom":"ASSET5","index":"0.000001710501624761"},{"denom":"ASSET6","index":"0.000006909892735753"},{"denom":"ASSET7","index":"0.000010827333344051"},{"denom":"ASSET8","index":"0.000014723239896475"},{"denom":"ASSET9","index":"0.000006260042064096"}],"last_reward_claim_height":"141"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET13","shares":"1872055031.642938824150945438","reward_history":[{"denom":"ASSET0","index":"0.000003075387603983"},{"denom":"ASSET1","index":"0.000026047450678709"},{"denom":"ASSET10","index":"0.000020531243448578"},{"denom":"ASSET11","index":"0.000025816927992783"},{"denom":"ASSET12","index":"0.000024485469945303"},{"denom":"ASSET13","index":"0.000008098391373250"},{"denom":"ASSET14","index":"0.000023735883509134"},{"denom":"ASSET15","index":"0.000018540774078871"},{"denom":"ASSET16","index":"0.000011572711306393"},{"denom":"ASSET17","index":"0.000008997644319689"},{"denom":"ASSET18","index":"0.000003770348288081"},{"denom":"ASSET2","index":"0.000007868945206789"},{"denom":"ASSET3","index":"0.000002196489262864"},{"denom":"ASSET4","index":"0.000021122354693053"},{"denom":"ASSET5","index":"0.000001710501624761"},{"denom":"ASSET6","index":"0.000006909892735753"},{"denom":"ASSET7","index":"0.000010827333344051"},{"denom":"ASSET8","index":"0.000014723239896475"},{"denom":"ASSET9","index":"0.000006260042064096"}],"last_reward_claim_height":"168"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET1","shares":"393631931.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000005166723047275"},{"denom":"ASSET1","index":"0.000042322847048766"},{"denom":"ASSET10","index":"0.000036533262543159"},{"denom":"ASSET11","index":"0.000043914144587354"},{"denom":"ASSET12","index":"0.000041785782999849"},{"denom":"ASSET13","index":"0.000014153266257788"},{"denom":"ASSET14","index":"0.000040516003905052"},{"denom":"ASSET15","index":"0.000032804900644736"},{"denom":"ASSET16","index":"0.000018781400926959"},{"denom":"ASSET17","index":"0.000015182438814265"},{"denom":"ASSET18","index":"0.000006314804040122"},{"denom":"ASSET2","index":"0.000012772828382927"},{"denom":"ASSET3","index":"0.000003669982792512"},{"denom":"ASSET4","index":"0.000034682890695078"},{"denom":"ASSET5","index":"0.000002880570137079"},{"denom":"ASSET6","index":"0.000011757393373176"},{"denom":"ASSET7","index":"0.000018165388254823"},{"denom":"ASSET8","index":"0.000026105026563655"},{"denom":"ASSET9","index":"0.000010488779573430"}],"last_reward_claim_height":"196"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET4","shares":"29824410.764344941272558628","reward_history":[{"denom":"ASSET0","index":"0.000001779156074987"},{"denom":"ASSET1","index":"0.000014834764457923"},{"denom":"ASSET10","index":"0.000010335215703318"},{"denom":"ASSET11","index":"0.000014351450406057"},{"denom":"ASSET12","index":"0.000012923397473821"},{"denom":"ASSET13","index":"0.000004447014618532"},{"denom":"ASSET14","index":"0.000013405835956753"},{"denom":"ASSET15","index":"0.000009584853126417"},{"denom":"ASSET16","index":"0.000006682342108415"},{"denom":"ASSET17","index":"0.000004745583625211"},{"denom":"ASSET18","index":"0.000002260718988984"},{"denom":"ASSET2","index":"0.000004378720241638"},{"denom":"ASSET3","index":"0.000001280957351233"},{"denom":"ASSET4","index":"0.000012055708659691"},{"denom":"ASSET5","index":"0.000000993770740704"},{"denom":"ASSET6","index":"0.000004046879615447"},{"denom":"ASSET7","index":"0.000006197276918679"},{"denom":"ASSET8","index":"0.000008086754679418"},{"denom":"ASSET9","index":"0.000003492644479883"}],"last_reward_claim_height":"121"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET11","shares":"465949561.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003478645419875"},{"denom":"ASSET1","index":"0.000029510728520321"},{"denom":"ASSET10","index":"0.000023521700007579"},{"denom":"ASSET11","index":"0.000029317721838376"},{"denom":"ASSET12","index":"0.000027938200533330"},{"denom":"ASSET13","index":"0.000009206643656085"},{"denom":"ASSET14","index":"0.000026913511393693"},{"denom":"ASSET15","index":"0.000021192735957156"},{"denom":"ASSET16","index":"0.000013092928863665"},{"denom":"ASSET17","index":"0.000010265835619821"},{"denom":"ASSET18","index":"0.000004249633310572"},{"denom":"ASSET2","index":"0.000008933634051769"},{"denom":"ASSET3","index":"0.000002482776919113"},{"denom":"ASSET4","index":"0.000023925662277258"},{"denom":"ASSET5","index":"0.000001933519521756"},{"denom":"ASSET6","index":"0.000007806757132876"},{"denom":"ASSET7","index":"0.000012260200744601"},{"denom":"ASSET8","index":"0.000016737737824425"},{"denom":"ASSET9","index":"0.000007106044722519"}],"last_reward_claim_height":"172"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET15","shares":"1345380.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003478645419875"},{"denom":"ASSET1","index":"0.000029510728520321"},{"denom":"ASSET10","index":"0.000023521700007579"},{"denom":"ASSET11","index":"0.000029317721838376"},{"denom":"ASSET12","index":"0.000027938200533330"},{"denom":"ASSET13","index":"0.000009206643656085"},{"denom":"ASSET14","index":"0.000026913511393693"},{"denom":"ASSET15","index":"0.000021192735957156"},{"denom":"ASSET16","index":"0.000013092928863665"},{"denom":"ASSET17","index":"0.000010265835619821"},{"denom":"ASSET18","index":"0.000004249633310572"},{"denom":"ASSET2","index":"0.000008933634051769"},{"denom":"ASSET3","index":"0.000002482776919113"},{"denom":"ASSET4","index":"0.000023925662277258"},{"denom":"ASSET5","index":"0.000001933519521756"},{"denom":"ASSET6","index":"0.000007806757132876"},{"denom":"ASSET7","index":"0.000012260200744601"},{"denom":"ASSET8","index":"0.000016737737824425"},{"denom":"ASSET9","index":"0.000007106044722519"}],"last_reward_claim_height":"156"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET2","shares":"434779051.305974785143037180","reward_history":[{"denom":"ASSET0","index":"0.000003327512121722"},{"denom":"ASSET1","index":"0.000028211822531533"},{"denom":"ASSET10","index":"0.000022399629444355"},{"denom":"ASSET11","index":"0.000028004032167971"},{"denom":"ASSET12","index":"0.000026643127370344"},{"denom":"ASSET13","index":"0.000008791339050068"},{"denom":"ASSET14","index":"0.000025722152469956"},{"denom":"ASSET15","index":"0.000020197596080044"},{"denom":"ASSET16","index":"0.000012523737733641"},{"denom":"ASSET17","index":"0.000009790102863953"},{"denom":"ASSET18","index":"0.000004069245825383"},{"denom":"ASSET2","index":"0.000008534453115749"},{"denom":"ASSET3","index":"0.000002375171252372"},{"denom":"ASSET4","index":"0.000022873545881432"},{"denom":"ASSET5","index":"0.000001850500835715"},{"denom":"ASSET6","index":"0.000007470212303630"},{"denom":"ASSET7","index":"0.000011723166108277"},{"denom":"ASSET8","index":"0.000015981595788329"},{"denom":"ASSET9","index":"0.000006788341225254"}],"last_reward_claim_height":"181"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET10","shares":"247126828.308869428117940000","reward_history":[{"denom":"ASSET0","index":"0.000001752700098923"},{"denom":"ASSET1","index":"0.000014612940709519"},{"denom":"ASSET10","index":"0.000010180696541309"},{"denom":"ASSET11","index":"0.000014136053678762"},{"denom":"ASSET12","index":"0.000012730078503378"},{"denom":"ASSET13","index":"0.000004380628160175"},{"denom":"ASSET14","index":"0.000013205843447004"},{"denom":"ASSET15","index":"0.000009441241121853"},{"denom":"ASSET16","index":"0.000006583285198706"},{"denom":"ASSET17","index":"0.000004674614988548"},{"denom":"ASSET18","index":"0.000002226220868286"},{"denom":"ASSET2","index":"0.000004313302932304"},{"denom":"ASSET3","index":"0.000001261225935460"},{"denom":"ASSET4","index":"0.000011875048109410"},{"denom":"ASSET5","index":"0.000000979582065531"},{"denom":"ASSET6","index":"0.000003985653489996"},{"denom":"ASSET7","index":"0.000006105276080818"},{"denom":"ASSET8","index":"0.000007965696544335"},{"denom":"ASSET9","index":"0.000003440319144236"}],"last_reward_claim_height":"108"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET13","shares":"459803968.622437529260052982","reward_history":[{"denom":"ASSET0","index":"0.000001752700098923"},{"denom":"ASSET1","index":"0.000014612940709519"},{"denom":"ASSET10","index":"0.000010180696541309"},{"denom":"ASSET11","index":"0.000014136053678762"},{"denom":"ASSET12","index":"0.000012730078503378"},{"denom":"ASSET13","index":"0.000004380628160175"},{"denom":"ASSET14","index":"0.000013205843447004"},{"denom":"ASSET15","index":"0.000009441241121853"},{"denom":"ASSET16","index":"0.000006583285198706"},{"denom":"ASSET17","index":"0.000004674614988548"},{"denom":"ASSET18","index":"0.000002226220868286"},{"denom":"ASSET2","index":"0.000004313302932304"},{"denom":"ASSET3","index":"0.000001261225935460"},{"denom":"ASSET4","index":"0.000011875048109410"},{"denom":"ASSET5","index":"0.000000979582065531"},{"denom":"ASSET6","index":"0.000003985653489996"},{"denom":"ASSET7","index":"0.000006105276080818"},{"denom":"ASSET8","index":"0.000007965696544335"},{"denom":"ASSET9","index":"0.000003440319144236"}],"last_reward_claim_height":"88"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET16","shares":"1000000000.000000043000000000","reward_history":[{"denom":"ASSET0","index":"0.000001752700098923"},{"denom":"ASSET1","index":"0.000014612940709519"},{"denom":"ASSET10","index":"0.000010180696541309"},{"denom":"ASSET11","index":"0.000014136053678762"},{"denom":"ASSET12","index":"0.000012730078503378"},{"denom":"ASSET13","index":"0.000004380628160175"},{"denom":"ASSET14","index":"0.000013205843447004"},{"denom":"ASSET15","index":"0.000009441241121853"},{"denom":"ASSET16","index":"0.000006583285198706"},{"denom":"ASSET17","index":"0.000004674614988548"},{"denom":"ASSET18","index":"0.000002226220868286"},{"denom":"ASSET2","index":"0.000004313302932304"},{"denom":"ASSET3","index":"0.000001261225935460"},{"denom":"ASSET4","index":"0.000011875048109410"},{"denom":"ASSET5","index":"0.000000979582065531"},{"denom":"ASSET6","index":"0.000003985653489996"},{"denom":"ASSET7","index":"0.000006105276080818"},{"denom":"ASSET8","index":"0.000007965696544335"},{"denom":"ASSET9","index":"0.000003440319144236"}],"last_reward_claim_height":"117"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET17","shares":"471071738.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001752700098923"},{"denom":"ASSET1","index":"0.000014612940709519"},{"denom":"ASSET10","index":"0.000010180696541309"},{"denom":"ASSET11","index":"0.000014136053678762"},{"denom":"ASSET12","index":"0.000012730078503378"},{"denom":"ASSET13","index":"0.000004380628160175"},{"denom":"ASSET14","index":"0.000013205843447004"},{"denom":"ASSET15","index":"0.000009441241121853"},{"denom":"ASSET16","index":"0.000006583285198706"},{"denom":"ASSET17","index":"0.000004674614988548"},{"denom":"ASSET18","index":"0.000002226220868286"},{"denom":"ASSET2","index":"0.000004313302932304"},{"denom":"ASSET3","index":"0.000001261225935460"},{"denom":"ASSET4","index":"0.000011875048109410"},{"denom":"ASSET5","index":"0.000000979582065531"},{"denom":"ASSET6","index":"0.000003985653489996"},{"denom":"ASSET7","index":"0.000006105276080818"},{"denom":"ASSET8","index":"0.000007965696544335"},{"denom":"ASSET9","index":"0.000003440319144236"}],"last_reward_claim_height":"111"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET18","shares":"37016842.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001434713876400"},{"denom":"ASSET1","index":"0.000011974044460331"},{"denom":"ASSET10","index":"0.000008340728508476"},{"denom":"ASSET11","index":"0.000011582406348125"},{"denom":"ASSET12","index":"0.000010430757641934"},{"denom":"ASSET13","index":"0.000003588723493535"},{"denom":"ASSET14","index":"0.000010820456951604"},{"denom":"ASSET15","index":"0.000007735822117345"},{"denom":"ASSET16","index":"0.000005393748654249"},{"denom":"ASSET17","index":"0.000003829135007959"},{"denom":"ASSET18","index":"0.000001824413186071"},{"denom":"ASSET2","index":"0.000003534437022536"},{"denom":"ASSET3","index":"0.000001033381751515"},{"denom":"ASSET4","index":"0.000009730849926555"},{"denom":"ASSET5","index":"0.000000802664249770"},{"denom":"ASSET6","index":"0.000003264943470077"},{"denom":"ASSET7","index":"0.000005002110542043"},{"denom":"ASSET8","index":"0.000006526009335083"},{"denom":"ASSET9","index":"0.000002819018886872"}],"last_reward_claim_height":"98"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET10","shares":"430941900.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001401536005232"},{"denom":"ASSET1","index":"0.000011690786017211"},{"denom":"ASSET10","index":"0.000008143726832164"},{"denom":"ASSET11","index":"0.000011307987636928"},{"denom":"ASSET12","index":"0.000010184289165772"},{"denom":"ASSET13","index":"0.000003503840013080"},{"denom":"ASSET14","index":"0.000010564000462344"},{"denom":"ASSET15","index":"0.000007554093843178"},{"denom":"ASSET16","index":"0.000005266564812612"},{"denom":"ASSET17","index":"0.000003738458375190"},{"denom":"ASSET18","index":"0.000001781247301804"},{"denom":"ASSET2","index":"0.000003448272506265"},{"denom":"ASSET3","index":"0.000001009476373813"},{"denom":"ASSET4","index":"0.000009498956581716"},{"denom":"ASSET5","index":"0.000000781032179127"},{"denom":"ASSET6","index":"0.000003188957474460"},{"denom":"ASSET7","index":"0.000004883766432329"},{"denom":"ASSET8","index":"0.000006371740781496"},{"denom":"ASSET9","index":"0.000002750591587361"}],"last_reward_claim_height":"79"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET4","shares":"456572288.357730324374314112","reward_history":[{"denom":"ASSET0","index":"0.000003188277912377"},{"denom":"ASSET1","index":"0.000027072180177666"},{"denom":"ASSET10","index":"0.000021525590492702"},{"denom":"ASSET11","index":"0.000026879695640981"},{"denom":"ASSET12","index":"0.000025588321740665"},{"denom":"ASSET13","index":"0.000008437670891103"},{"denom":"ASSET14","index":"0.000024686413843557"},{"denom":"ASSET15","index":"0.000019403734038796"},{"denom":"ASSET16","index":"0.000012012351193227"},{"denom":"ASSET17","index":"0.000009402991763462"},{"denom":"ASSET18","index":"0.000003903246578743"},{"denom":"ASSET2","index":"0.000008191237466303"},{"denom":"ASSET3","index":"0.000002276140738265"},{"denom":"ASSET4","index":"0.000021950324608304"},{"denom":"ASSET5","index":"0.000001774065663090"},{"denom":"ASSET6","index":"0.000007165524818145"},{"denom":"ASSET7","index":"0.000011244820309610"},{"denom":"ASSET8","index":"0.000015343724796373"},{"denom":"ASSET9","index":"0.000006516357987660"}],"last_reward_claim_height":"180"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET8","shares":"666904393.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001453411320498"},{"denom":"ASSET1","index":"0.000012118137400313"},{"denom":"ASSET10","index":"0.000008442891188019"},{"denom":"ASSET11","index":"0.000011723343510399"},{"denom":"ASSET12","index":"0.000010556870017106"},{"denom":"ASSET13","index":"0.000003632917795231"},{"denom":"ASSET14","index":"0.000010951256903010"},{"denom":"ASSET15","index":"0.000007829943148627"},{"denom":"ASSET16","index":"0.000005459144789091"},{"denom":"ASSET17","index":"0.000003877120201363"},{"denom":"ASSET18","index":"0.000001846984198382"},{"denom":"ASSET2","index":"0.000003577158245830"},{"denom":"ASSET3","index":"0.000001046407310278"},{"denom":"ASSET4","index":"0.000009848276035312"},{"denom":"ASSET5","index":"0.000000811973000390"},{"denom":"ASSET6","index":"0.000003305686571013"},{"denom":"ASSET7","index":"0.000005062722883136"},{"denom":"ASSET8","index":"0.000006606082089893"},{"denom":"ASSET9","index":"0.000002853098111648"}],"last_reward_claim_height":"96"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET13","shares":"648957656.861708162006794885","reward_history":[{"denom":"ASSET0","index":"0.000002979919393708"},{"denom":"ASSET1","index":"0.000025298333716476"},{"denom":"ASSET10","index":"0.000020286143685892"},{"denom":"ASSET11","index":"0.000025164674259360"},{"denom":"ASSET12","index":"0.000024041723171534"},{"denom":"ASSET13","index":"0.000007907785176595"},{"denom":"ASSET14","index":"0.000023082402053339"},{"denom":"ASSET15","index":"0.000018255332392862"},{"denom":"ASSET16","index":"0.000011216675450010"},{"denom":"ASSET17","index":"0.000008835128154455"},{"denom":"ASSET18","index":"0.000003633337151635"},{"denom":"ASSET2","index":"0.000007668586747858"},{"denom":"ASSET3","index":"0.000002126085354033"},{"denom":"ASSET4","index":"0.000020508686269066"},{"denom":"ASSET5","index":"0.000001656307666438"},{"denom":"ASSET6","index":"0.000006683025235204"},{"denom":"ASSET7","index":"0.000010507859389263"},{"denom":"ASSET8","index":"0.000014375637436113"},{"denom":"ASSET9","index":"0.000006098257618497"}],"last_reward_claim_height":"175"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET15","shares":"535226955.000000004281815640","reward_history":[],"last_reward_claim_height":"43"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET16","shares":"92792986.000000003433340482","reward_history":[{"denom":"ASSET0","index":"0.000002979919393708"},{"denom":"ASSET1","index":"0.000025298333716476"},{"denom":"ASSET10","index":"0.000020286143685892"},{"denom":"ASSET11","index":"0.000025164674259360"},{"denom":"ASSET12","index":"0.000024041723171534"},{"denom":"ASSET13","index":"0.000007907785176595"},{"denom":"ASSET14","index":"0.000023082402053339"},{"denom":"ASSET15","index":"0.000018255332392862"},{"denom":"ASSET16","index":"0.000011216675450010"},{"denom":"ASSET17","index":"0.000008835128154455"},{"denom":"ASSET18","index":"0.000003633337151635"},{"denom":"ASSET2","index":"0.000007668586747858"},{"denom":"ASSET3","index":"0.000002126085354033"},{"denom":"ASSET4","index":"0.000020508686269066"},{"denom":"ASSET5","index":"0.000001656307666438"},{"denom":"ASSET6","index":"0.000006683025235204"},{"denom":"ASSET7","index":"0.000010507859389263"},{"denom":"ASSET8","index":"0.000014375637436113"},{"denom":"ASSET9","index":"0.000006098257618497"}],"last_reward_claim_height":"181"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET9","shares":"320294752.999999999944484497","reward_history":[{"denom":"ASSET0","index":"0.000001779729226299"},{"denom":"ASSET1","index":"0.000014840802182142"},{"denom":"ASSET10","index":"0.000010337989986643"},{"denom":"ASSET11","index":"0.000014356968690293"},{"denom":"ASSET12","index":"0.000012927350131463"},{"denom":"ASSET13","index":"0.000004449323065747"},{"denom":"ASSET14","index":"0.000013411183623312"},{"denom":"ASSET15","index":"0.000009589142170113"},{"denom":"ASSET16","index":"0.000006683709894939"},{"denom":"ASSET17","index":"0.000004745944603463"},{"denom":"ASSET18","index":"0.000002261131394068"},{"denom":"ASSET2","index":"0.000004378814667437"},{"denom":"ASSET3","index":"0.000001281307789972"},{"denom":"ASSET4","index":"0.000012059367435030"},{"denom":"ASSET5","index":"0.000000994411548574"},{"denom":"ASSET6","index":"0.000004048154592606"},{"denom":"ASSET7","index":"0.000006199876403090"},{"denom":"ASSET8","index":"0.000008089015212973"},{"denom":"ASSET9","index":"0.000003493812702447"}],"last_reward_claim_height":"104"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET11","shares":"1575535256.000000086418109559","reward_history":[{"denom":"ASSET0","index":"0.000005110258502433"},{"denom":"ASSET1","index":"0.000041848139529843"},{"denom":"ASSET10","index":"0.000036095442313773"},{"denom":"ASSET11","index":"0.000043419926176109"},{"denom":"ASSET12","index":"0.000041293844776763"},{"denom":"ASSET13","index":"0.000013994054097310"},{"denom":"ASSET14","index":"0.000040066625857946"},{"denom":"ASSET15","index":"0.000032419831695563"},{"denom":"ASSET16","index":"0.000018571815188636"},{"denom":"ASSET17","index":"0.000015000716043498"},{"denom":"ASSET18","index":"0.000006247416520609"},{"denom":"ASSET2","index":"0.000012623910696266"},{"denom":"ASSET3","index":"0.000003630542968489"},{"denom":"ASSET4","index":"0.000034294837675452"},{"denom":"ASSET5","index":"0.000002848875945133"},{"denom":"ASSET6","index":"0.000011630847535820"},{"denom":"ASSET7","index":"0.000017964747196149"},{"denom":"ASSET8","index":"0.000025811711320315"},{"denom":"ASSET9","index":"0.000010370289784603"}],"last_reward_claim_height":"198"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET12","shares":"111344483.030551604124144399","reward_history":[{"denom":"ASSET0","index":"0.000003433377044021"},{"denom":"ASSET1","index":"0.000029119719093870"},{"denom":"ASSET10","index":"0.000023168779363922"},{"denom":"ASSET11","index":"0.000028918871222836"},{"denom":"ASSET12","index":"0.000027536680421684"},{"denom":"ASSET13","index":"0.000009079853140421"},{"denom":"ASSET14","index":"0.000026553415276013"},{"denom":"ASSET15","index":"0.000020883272198610"},{"denom":"ASSET16","index":"0.000012920460029656"},{"denom":"ASSET17","index":"0.000010116347697920"},{"denom":"ASSET18","index":"0.000004196183907349"},{"denom":"ASSET2","index":"0.000008810148159861"},{"denom":"ASSET3","index":"0.000002451192479374"},{"denom":"ASSET4","index":"0.000023608026429735"},{"denom":"ASSET5","index":"0.000001908186346512"},{"denom":"ASSET6","index":"0.000007706415634871"},{"denom":"ASSET7","index":"0.000012098308533034"},{"denom":"ASSET8","index":"0.000016505861275643"},{"denom":"ASSET9","index":"0.000007009790471677"}],"last_reward_claim_height":"168"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET14","shares":"1000185016.781235454000000000","reward_history":[{"denom":"ASSET0","index":"0.000003433377044021"},{"denom":"ASSET1","index":"0.000029119719093870"},{"denom":"ASSET10","index":"0.000023168779363922"},{"denom":"ASSET11","index":"0.000028918871222836"},{"denom":"ASSET12","index":"0.000027536680421684"},{"denom":"ASSET13","index":"0.000009079853140421"},{"denom":"ASSET14","index":"0.000026553415276013"},{"denom":"ASSET15","index":"0.000020883272198610"},{"denom":"ASSET16","index":"0.000012920460029656"},{"denom":"ASSET17","index":"0.000010116347697920"},{"denom":"ASSET18","index":"0.000004196183907349"},{"denom":"ASSET2","index":"0.000008810148159861"},{"denom":"ASSET3","index":"0.000002451192479374"},{"denom":"ASSET4","index":"0.000023608026429735"},{"denom":"ASSET5","index":"0.000001908186346512"},{"denom":"ASSET6","index":"0.000007706415634871"},{"denom":"ASSET7","index":"0.000012098308533034"},{"denom":"ASSET8","index":"0.000016505861275643"},{"denom":"ASSET9","index":"0.000007009790471677"}],"last_reward_claim_height":"143"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET15","shares":"1417517477.380100442894501577","reward_history":[{"denom":"ASSET0","index":"0.000005110258502433"},{"denom":"ASSET1","index":"0.000041848139529843"},{"denom":"ASSET10","index":"0.000036095442313773"},{"denom":"ASSET11","index":"0.000043419926176109"},{"denom":"ASSET12","index":"0.000041293844776763"},{"denom":"ASSET13","index":"0.000013994054097310"},{"denom":"ASSET14","index":"0.000040066625857946"},{"denom":"ASSET15","index":"0.000032419831695563"},{"denom":"ASSET16","index":"0.000018571815188636"},{"denom":"ASSET17","index":"0.000015000716043498"},{"denom":"ASSET18","index":"0.000006247416520609"},{"denom":"ASSET2","index":"0.000012623910696266"},{"denom":"ASSET3","index":"0.000003630542968489"},{"denom":"ASSET4","index":"0.000034294837675452"},{"denom":"ASSET5","index":"0.000002848875945133"},{"denom":"ASSET6","index":"0.000011630847535820"},{"denom":"ASSET7","index":"0.000017964747196149"},{"denom":"ASSET8","index":"0.000025811711320315"},{"denom":"ASSET9","index":"0.000010370289784603"}],"last_reward_claim_height":"199"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET16","shares":"117323206.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003433377044021"},{"denom":"ASSET1","index":"0.000029119719093870"},{"denom":"ASSET10","index":"0.000023168779363922"},{"denom":"ASSET11","index":"0.000028918871222836"},{"denom":"ASSET12","index":"0.000027536680421684"},{"denom":"ASSET13","index":"0.000009079853140421"},{"denom":"ASSET14","index":"0.000026553415276013"},{"denom":"ASSET15","index":"0.000020883272198610"},{"denom":"ASSET16","index":"0.000012920460029656"},{"denom":"ASSET17","index":"0.000010116347697920"},{"denom":"ASSET18","index":"0.000004196183907349"},{"denom":"ASSET2","index":"0.000008810148159861"},{"denom":"ASSET3","index":"0.000002451192479374"},{"denom":"ASSET4","index":"0.000023608026429735"},{"denom":"ASSET5","index":"0.000001908186346512"},{"denom":"ASSET6","index":"0.000007706415634871"},{"denom":"ASSET7","index":"0.000012098308533034"},{"denom":"ASSET8","index":"0.000016505861275643"},{"denom":"ASSET9","index":"0.000007009790471677"}],"last_reward_claim_height":"124"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET17","shares":"785366619.000000000000000000","reward_history":[],"last_reward_claim_height":"50"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET4","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003118409098775"},{"denom":"ASSET1","index":"0.000026454243753489"},{"denom":"ASSET10","index":"0.000021084585905412"},{"denom":"ASSET11","index":"0.000026280950742513"},{"denom":"ASSET12","index":"0.000025043390497745"},{"denom":"ASSET13","index":"0.000008253298424938"},{"denom":"ASSET14","index":"0.000024125697910719"},{"denom":"ASSET15","index":"0.000018997425080839"},{"denom":"ASSET16","index":"0.000011737294217995"},{"denom":"ASSET17","index":"0.000009202973625129"},{"denom":"ASSET18","index":"0.000003809493270778"},{"denom":"ASSET2","index":"0.000008008868325931"},{"denom":"ASSET3","index":"0.000002225819587877"},{"denom":"ASSET4","index":"0.000021447702379813"},{"denom":"ASSET5","index":"0.000001733713847172"},{"denom":"ASSET6","index":"0.000006998355968525"},{"denom":"ASSET7","index":"0.000010990481127196"},{"denom":"ASSET8","index":"0.000015003824321723"},{"denom":"ASSET9","index":"0.000006370091157596"}],"last_reward_claim_height":"153"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET8","shares":"457100954.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003118409098775"},{"denom":"ASSET1","index":"0.000026454243753489"},{"denom":"ASSET10","index":"0.000021084585905412"},{"denom":"ASSET11","index":"0.000026280950742513"},{"denom":"ASSET12","index":"0.000025043390497745"},{"denom":"ASSET13","index":"0.000008253298424938"},{"denom":"ASSET14","index":"0.000024125697910719"},{"denom":"ASSET15","index":"0.000018997425080839"},{"denom":"ASSET16","index":"0.000011737294217995"},{"denom":"ASSET17","index":"0.000009202973625129"},{"denom":"ASSET18","index":"0.000003809493270778"},{"denom":"ASSET2","index":"0.000008008868325931"},{"denom":"ASSET3","index":"0.000002225819587877"},{"denom":"ASSET4","index":"0.000021447702379813"},{"denom":"ASSET5","index":"0.000001733713847172"},{"denom":"ASSET6","index":"0.000006998355968525"},{"denom":"ASSET7","index":"0.000010990481127196"},{"denom":"ASSET8","index":"0.000015003824321723"},{"denom":"ASSET9","index":"0.000006370091157596"}],"last_reward_claim_height":"137"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET11","shares":"1484418498.528815497706587505","reward_history":[{"denom":"ASSET0","index":"0.000003118409098775"},{"denom":"ASSET1","index":"0.000026454243753489"},{"denom":"ASSET10","index":"0.000021084585905412"},{"denom":"ASSET11","index":"0.000026280950742513"},{"denom":"ASSET12","index":"0.000025043390497745"},{"denom":"ASSET13","index":"0.000008253298424938"},{"denom":"ASSET14","index":"0.000024125697910719"},{"denom":"ASSET15","index":"0.000018997425080839"},{"denom":"ASSET16","index":"0.000011737294217995"},{"denom":"ASSET17","index":"0.000009202973625129"},{"denom":"ASSET18","index":"0.000003809493270778"},{"denom":"ASSET2","index":"0.000008008868325931"},{"denom":"ASSET3","index":"0.000002225819587877"},{"denom":"ASSET4","index":"0.000021447702379813"},{"denom":"ASSET5","index":"0.000001733713847172"},{"denom":"ASSET6","index":"0.000006998355968525"},{"denom":"ASSET7","index":"0.000010990481127196"},{"denom":"ASSET8","index":"0.000015003824321723"},{"denom":"ASSET9","index":"0.000006370091157596"}],"last_reward_claim_height":"152"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET15","shares":"3117164.510521168322109259","reward_history":[{"denom":"ASSET0","index":"0.000003118409098775"},{"denom":"ASSET1","index":"0.000026454243753489"},{"denom":"ASSET10","index":"0.000021084585905412"},{"denom":"ASSET11","index":"0.000026280950742513"},{"denom":"ASSET12","index":"0.000025043390497745"},{"denom":"ASSET13","index":"0.000008253298424938"},{"denom":"ASSET14","index":"0.000024125697910719"},{"denom":"ASSET15","index":"0.000018997425080839"},{"denom":"ASSET16","index":"0.000011737294217995"},{"denom":"ASSET17","index":"0.000009202973625129"},{"denom":"ASSET18","index":"0.000003809493270778"},{"denom":"ASSET2","index":"0.000008008868325931"},{"denom":"ASSET3","index":"0.000002225819587877"},{"denom":"ASSET4","index":"0.000021447702379813"},{"denom":"ASSET5","index":"0.000001733713847172"},{"denom":"ASSET6","index":"0.000006998355968525"},{"denom":"ASSET7","index":"0.000010990481127196"},{"denom":"ASSET8","index":"0.000015003824321723"},{"denom":"ASSET9","index":"0.000006370091157596"}],"last_reward_claim_height":"157"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET17","shares":"475506983.000000000000000000","reward_history":[],"last_reward_claim_height":"11"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET7","shares":"142184396.488801072775557101","reward_history":[{"denom":"ASSET0","index":"0.000003103831608428"},{"denom":"ASSET1","index":"0.000026343132935309"},{"denom":"ASSET10","index":"0.000021085436521682"},{"denom":"ASSET11","index":"0.000026194005406126"},{"denom":"ASSET12","index":"0.000025005394550642"},{"denom":"ASSET13","index":"0.000008229918727938"},{"denom":"ASSET14","index":"0.000024032248358707"},{"denom":"ASSET15","index":"0.000018981699828973"},{"denom":"ASSET16","index":"0.000011682673521897"},{"denom":"ASSET17","index":"0.000009189132473525"},{"denom":"ASSET18","index":"0.000003786361913516"},{"denom":"ASSET2","index":"0.000007982150766688"},{"denom":"ASSET3","index":"0.000002214601198569"},{"denom":"ASSET4","index":"0.000021356131094847"},{"denom":"ASSET5","index":"0.000001725369734459"},{"denom":"ASSET6","index":"0.000006962131899100"},{"denom":"ASSET7","index":"0.000010942547729288"},{"denom":"ASSET8","index":"0.000014960973970884"},{"denom":"ASSET9","index":"0.000006348281537724"}],"last_reward_claim_height":"130"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET1","shares":"353830107.514320676489816940","reward_history":[{"denom":"ASSET0","index":"0.000004684522326330"},{"denom":"ASSET1","index":"0.000038343592790786"},{"denom":"ASSET10","index":"0.000033073465123627"},{"denom":"ASSET11","index":"0.000039792938806307"},{"denom":"ASSET12","index":"0.000037831993151719"},{"denom":"ASSET13","index":"0.000012827422858554"},{"denom":"ASSET14","index":"0.000036725774896582"},{"denom":"ASSET15","index":"0.000029707175527113"},{"denom":"ASSET16","index":"0.000017020370407689"},{"denom":"ASSET17","index":"0.000013744455687075"},{"denom":"ASSET18","index":"0.000005729220057041"},{"denom":"ASSET2","index":"0.000011567669506012"},{"denom":"ASSET3","index":"0.000003327180281983"},{"denom":"ASSET4","index":"0.000031427847982959"},{"denom":"ASSET5","index":"0.000002612385721179"},{"denom":"ASSET6","index":"0.000010663850280154"},{"denom":"ASSET7","index":"0.000016466138905281"},{"denom":"ASSET8","index":"0.000023663630054111"},{"denom":"ASSET9","index":"0.000009503718423149"}],"last_reward_claim_height":"193"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET4","shares":"74397089.437342247420875767","reward_history":[{"denom":"ASSET0","index":"0.000001638829976996"},{"denom":"ASSET1","index":"0.000013663699511091"},{"denom":"ASSET10","index":"0.000009519748943981"},{"denom":"ASSET11","index":"0.000013218199388741"},{"denom":"ASSET12","index":"0.000011902774883924"},{"denom":"ASSET13","index":"0.000004095984811686"},{"denom":"ASSET14","index":"0.000012347548252404"},{"denom":"ASSET15","index":"0.000008827879259679"},{"denom":"ASSET16","index":"0.000006154878525580"},{"denom":"ASSET17","index":"0.000004371424528441"},{"denom":"ASSET18","index":"0.000002082149837736"},{"denom":"ASSET2","index":"0.000004033483978861"},{"denom":"ASSET3","index":"0.000001179521531115"},{"denom":"ASSET4","index":"0.000011104072380722"},{"denom":"ASSET5","index":"0.000000915709876282"},{"denom":"ASSET6","index":"0.000003726793845693"},{"denom":"ASSET7","index":"0.000005707924895490"},{"denom":"ASSET8","index":"0.000007448500414296"},{"denom":"ASSET9","index":"0.000003217339382778"}],"last_reward_claim_height":"89"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET1","shares":"996475142.000000000000000000","reward_history":[],"last_reward_claim_height":"39"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET5","shares":"577765432.221258300847246550","reward_history":[{"denom":"ASSET0","index":"0.000001556422065682"},{"denom":"ASSET1","index":"0.000012975233747354"},{"denom":"ASSET10","index":"0.000009039925804131"},{"denom":"ASSET11","index":"0.000012551842294036"},{"denom":"ASSET12","index":"0.000011303196313064"},{"denom":"ASSET13","index":"0.000003889859143149"},{"denom":"ASSET14","index":"0.000011725391745328"},{"denom":"ASSET15","index":"0.000008383310245172"},{"denom":"ASSET16","index":"0.000005844954893688"},{"denom":"ASSET17","index":"0.000004150990406731"},{"denom":"ASSET18","index":"0.000001977421476890"},{"denom":"ASSET2","index":"0.000003830058090421"},{"denom":"ASSET3","index":"0.000001120273054448"},{"denom":"ASSET4","index":"0.000010544520290781"},{"denom":"ASSET5","index":"0.000000869507306673"},{"denom":"ASSET6","index":"0.000003539424974160"},{"denom":"ASSET7","index":"0.000005420766093000"},{"denom":"ASSET8","index":"0.000007073268516732"},{"denom":"ASSET9","index":"0.000003055036447059"}],"last_reward_claim_height":"99"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET6","shares":"538459919.000000000000000000","reward_history":[],"last_reward_claim_height":"42"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET4","shares":"186880885.618558706144249840","reward_history":[{"denom":"ASSET0","index":"0.000001602535700795"},{"denom":"ASSET1","index":"0.000013360208994045"},{"denom":"ASSET10","index":"0.000009307956057468"},{"denom":"ASSET11","index":"0.000012924500245282"},{"denom":"ASSET12","index":"0.000011638378499862"},{"denom":"ASSET13","index":"0.000004005127453862"},{"denom":"ASSET14","index":"0.000012073279383206"},{"denom":"ASSET15","index":"0.000008632311279566"},{"denom":"ASSET16","index":"0.000006018597363935"},{"denom":"ASSET17","index":"0.000004274146638048"},{"denom":"ASSET18","index":"0.000002036090141777"},{"denom":"ASSET2","index":"0.000003943729682095"},{"denom":"ASSET3","index":"0.000001153631816872"},{"denom":"ASSET4","index":"0.000010857441929150"},{"denom":"ASSET5","index":"0.000000895384171592"},{"denom":"ASSET6","index":"0.000003644280900498"},{"denom":"ASSET7","index":"0.000005581542172809"},{"denom":"ASSET8","index":"0.000007283176031543"},{"denom":"ASSET9","index":"0.000003145827937606"}],"last_reward_claim_height":"119"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET0","shares":"388564231.000000002331385386","reward_history":[],"last_reward_claim_height":"25"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET17","shares":"1000065446.983203368000000000","reward_history":[{"denom":"ASSET0","index":"0.000002920257070141"},{"denom":"ASSET1","index":"0.000024811653868653"},{"denom":"ASSET10","index":"0.000020012294768332"},{"denom":"ASSET11","index":"0.000024710629923001"},{"denom":"ASSET12","index":"0.000023666550441425"},{"denom":"ASSET13","index":"0.000007769918885884"},{"denom":"ASSET14","index":"0.000022647790193256"},{"denom":"ASSET15","index":"0.000017987461600930"},{"denom":"ASSET16","index":"0.000010993196459757"},{"denom":"ASSET17","index":"0.000008697266331114"},{"denom":"ASSET18","index":"0.000003553540715950"},{"denom":"ASSET2","index":"0.000007529733395993"},{"denom":"ASSET3","index":"0.000002082581454906"},{"denom":"ASSET4","index":"0.000020111524804667"},{"denom":"ASSET5","index":"0.000001623122955496"},{"denom":"ASSET6","index":"0.000006544727800067"},{"denom":"ASSET7","index":"0.000010303065547743"},{"denom":"ASSET8","index":"0.000014124873274804"},{"denom":"ASSET9","index":"0.000005987532811110"}],"last_reward_claim_height":"182"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET3","shares":"391398247.999999991780636792","reward_history":[{"denom":"ASSET0","index":"0.000003241945367060"},{"denom":"ASSET1","index":"0.000027480716546724"},{"denom":"ASSET10","index":"0.000021780901079221"},{"denom":"ASSET11","index":"0.000027265989011084"},{"denom":"ASSET12","index":"0.000025921947969478"},{"denom":"ASSET13","index":"0.000008556984130745"},{"denom":"ASSET14","index":"0.000025051754134356"},{"denom":"ASSET15","index":"0.000019643848931612"},{"denom":"ASSET16","index":"0.000012200322352703"},{"denom":"ASSET17","index":"0.000009524928673174"},{"denom":"ASSET18","index":"0.000003966981346299"},{"denom":"ASSET2","index":"0.000008309018225650"},{"denom":"ASSET3","index":"0.000002312540225621"},{"denom":"ASSET4","index":"0.000022282443818183"},{"denom":"ASSET5","index":"0.000001802193647755"},{"denom":"ASSET6","index":"0.000007278646216530"},{"denom":"ASSET7","index":"0.000011418356902196"},{"denom":"ASSET8","index":"0.000015557459098515"},{"denom":"ASSET9","index":"0.000006608754258977"}],"last_reward_claim_height":"176"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET11","shares":"334328629.000000000000000000","reward_history":[],"last_reward_claim_height":"61"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET16","shares":"711160432.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001730803097805"},{"denom":"ASSET1","index":"0.000014429128492036"},{"denom":"ASSET10","index":"0.000010053081326419"},{"denom":"ASSET11","index":"0.000013956042311970"},{"denom":"ASSET12","index":"0.000012568515161896"},{"denom":"ASSET13","index":"0.000004324123072683"},{"denom":"ASSET14","index":"0.000013038716670133"},{"denom":"ASSET15","index":"0.000009320374681681"},{"denom":"ASSET16","index":"0.000006499165632259"},{"denom":"ASSET17","index":"0.000004615474927481"},{"denom":"ASSET18","index":"0.000002198119934213"},{"denom":"ASSET2","index":"0.000004257775620601"},{"denom":"ASSET3","index":"0.000001243293558590"},{"denom":"ASSET4","index":"0.000011726190987631"},{"denom":"ASSET5","index":"0.000000966365062941"},{"denom":"ASSET6","index":"0.000003934692375677"},{"denom":"ASSET7","index":"0.000006026079452192"},{"denom":"ASSET8","index":"0.000007863615407695"},{"denom":"ASSET9","index":"0.000003395258743528"}],"last_reward_claim_height":"121"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET7","shares":"636848024.000000000000000000","reward_history":[],"last_reward_claim_height":"12"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET7","shares":"248853628.012490265634445670","reward_history":[{"denom":"ASSET0","index":"0.000004647136802313"},{"denom":"ASSET1","index":"0.000038017659661295"},{"denom":"ASSET10","index":"0.000033007938061672"},{"denom":"ASSET11","index":"0.000039542203518497"},{"denom":"ASSET12","index":"0.000037663033677183"},{"denom":"ASSET13","index":"0.000012761955703194"},{"denom":"ASSET14","index":"0.000036477735596469"},{"denom":"ASSET15","index":"0.000029621430734014"},{"denom":"ASSET16","index":"0.000016866492348924"},{"denom":"ASSET17","index":"0.000013679201469281"},{"denom":"ASSET18","index":"0.000005674980055413"},{"denom":"ASSET2","index":"0.000011479019978141"},{"denom":"ASSET3","index":"0.000003299993945721"},{"denom":"ASSET4","index":"0.000031168005602839"},{"denom":"ASSET5","index":"0.000002591256629781"},{"denom":"ASSET6","index":"0.000010577778432935"},{"denom":"ASSET7","index":"0.000016339516062244"},{"denom":"ASSET8","index":"0.000023551119471754"},{"denom":"ASSET9","index":"0.000009438533878947"}],"last_reward_claim_height":"186"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET8","shares":"797401910.036412523799684136","reward_history":[{"denom":"ASSET0","index":"0.000004647136802313"},{"denom":"ASSET1","index":"0.000038017659661295"},{"denom":"ASSET10","index":"0.000033007938061672"},{"denom":"ASSET11","index":"0.000039542203518497"},{"denom":"ASSET12","index":"0.000037663033677183"},{"denom":"ASSET13","index":"0.000012761955703194"},{"denom":"ASSET14","index":"0.000036477735596469"},{"denom":"ASSET15","index":"0.000029621430734014"},{"denom":"ASSET16","index":"0.000016866492348924"},{"denom":"ASSET17","index":"0.000013679201469281"},{"denom":"ASSET18","index":"0.000005674980055413"},{"denom":"ASSET2","index":"0.000011479019978141"},{"denom":"ASSET3","index":"0.000003299993945721"},{"denom":"ASSET4","index":"0.000031168005602839"},{"denom":"ASSET5","index":"0.000002591256629781"},{"denom":"ASSET6","index":"0.000010577778432935"},{"denom":"ASSET7","index":"0.000016339516062244"},{"denom":"ASSET8","index":"0.000023551119471754"},{"denom":"ASSET9","index":"0.000009438533878947"}],"last_reward_claim_height":"194"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET15","shares":"794909115.999999922098906632","reward_history":[{"denom":"ASSET0","index":"0.000003063170165442"},{"denom":"ASSET1","index":"0.000025996358951928"},{"denom":"ASSET10","index":"0.000020799618544072"},{"denom":"ASSET11","index":"0.000025846936295403"},{"denom":"ASSET12","index":"0.000024670295822131"},{"denom":"ASSET13","index":"0.000008120644896033"},{"denom":"ASSET14","index":"0.000023715222729701"},{"denom":"ASSET15","index":"0.000018725986369791"},{"denom":"ASSET16","index":"0.000011529047312284"},{"denom":"ASSET17","index":"0.000009065966880203"},{"denom":"ASSET18","index":"0.000003737409049681"},{"denom":"ASSET2","index":"0.000007876841198043"},{"denom":"ASSET3","index":"0.000002185992003768"},{"denom":"ASSET4","index":"0.000021074917159843"},{"denom":"ASSET5","index":"0.000001702800306431"},{"denom":"ASSET6","index":"0.000006871093729972"},{"denom":"ASSET7","index":"0.000010798830402478"},{"denom":"ASSET8","index":"0.000014762015379742"},{"denom":"ASSET9","index":"0.000006264517424621"}],"last_reward_claim_height":"162"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET17","shares":"488408152.737528627996580360","reward_history":[{"denom":"ASSET0","index":"0.000003051401969864"},{"denom":"ASSET1","index":"0.000025903543471827"},{"denom":"ASSET10","index":"0.000020717104247015"},{"denom":"ASSET11","index":"0.000025751820078700"},{"denom":"ASSET12","index":"0.000024575704795191"},{"denom":"ASSET13","index":"0.000008089460542782"},{"denom":"ASSET14","index":"0.000023629519286555"},{"denom":"ASSET15","index":"0.000018652475785738"},{"denom":"ASSET16","index":"0.000011487598582804"},{"denom":"ASSET17","index":"0.000009031027466449"},{"denom":"ASSET18","index":"0.000003724432134289"},{"denom":"ASSET2","index":"0.000007847588407204"},{"denom":"ASSET3","index":"0.000002177732310384"},{"denom":"ASSET4","index":"0.000021000151540181"},{"denom":"ASSET5","index":"0.000001696165098739"},{"denom":"ASSET6","index":"0.000006846477479182"},{"denom":"ASSET7","index":"0.000010760324594985"},{"denom":"ASSET8","index":"0.000014706911787677"},{"denom":"ASSET9","index":"0.000006241583848480"}],"last_reward_claim_height":"161"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET18","shares":"107541969.214935823201430195","reward_history":[{"denom":"ASSET0","index":"0.000003051401969864"},{"denom":"ASSET1","index":"0.000025903543471827"},{"denom":"ASSET10","index":"0.000020717104247015"},{"denom":"ASSET11","index":"0.000025751820078700"},{"denom":"ASSET12","index":"0.000024575704795191"},{"denom":"ASSET13","index":"0.000008089460542782"},{"denom":"ASSET14","index":"0.000023629519286555"},{"denom":"ASSET15","index":"0.000018652475785738"},{"denom":"ASSET16","index":"0.000011487598582804"},{"denom":"ASSET17","index":"0.000009031027466449"},{"denom":"ASSET18","index":"0.000003724432134289"},{"denom":"ASSET2","index":"0.000007847588407204"},{"denom":"ASSET3","index":"0.000002177732310384"},{"denom":"ASSET4","index":"0.000021000151540181"},{"denom":"ASSET5","index":"0.000001696165098739"},{"denom":"ASSET6","index":"0.000006846477479182"},{"denom":"ASSET7","index":"0.000010760324594985"},{"denom":"ASSET8","index":"0.000014706911787677"},{"denom":"ASSET9","index":"0.000006241583848480"}],"last_reward_claim_height":"168"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET2","shares":"89279779.646562346184170912","reward_history":[{"denom":"ASSET0","index":"0.000002834261839987"},{"denom":"ASSET1","index":"0.000024063735726127"},{"denom":"ASSET10","index":"0.000019278012414561"},{"denom":"ASSET11","index":"0.000023930766794440"},{"denom":"ASSET12","index":"0.000022855511266190"},{"denom":"ASSET13","index":"0.000007519422832827"},{"denom":"ASSET14","index":"0.000021953268691937"},{"denom":"ASSET15","index":"0.000017352048046781"},{"denom":"ASSET16","index":"0.000010669562284438"},{"denom":"ASSET17","index":"0.000008398158415340"},{"denom":"ASSET18","index":"0.000003456710779118"},{"denom":"ASSET2","index":"0.000007292324829772"},{"denom":"ASSET3","index":"0.000002022818722752"},{"denom":"ASSET4","index":"0.000019507505991506"},{"denom":"ASSET5","index":"0.000001575196067099"},{"denom":"ASSET6","index":"0.000006357416996111"},{"denom":"ASSET7","index":"0.000009994574317511"},{"denom":"ASSET8","index":"0.000013669954492341"},{"denom":"ASSET9","index":"0.000005799591528398"}],"last_reward_claim_height":"182"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET9","shares":"363167324.598464140484918255","reward_history":[{"denom":"ASSET0","index":"0.000001392192847149"},{"denom":"ASSET1","index":"0.000011611450847386"},{"denom":"ASSET10","index":"0.000008088781067478"},{"denom":"ASSET11","index":"0.000011231761889073"},{"denom":"ASSET12","index":"0.000010115195100551"},{"denom":"ASSET13","index":"0.000003480482117873"},{"denom":"ASSET14","index":"0.000010492071548062"},{"denom":"ASSET15","index":"0.000007502372565194"},{"denom":"ASSET16","index":"0.000005229863836918"},{"denom":"ASSET17","index":"0.000003713920514466"},{"denom":"ASSET18","index":"0.000001769069294661"},{"denom":"ASSET2","index":"0.000003427044412629"},{"denom":"ASSET3","index":"0.000001002660101028"},{"denom":"ASSET4","index":"0.000009435973741790"},{"denom":"ASSET5","index":"0.000000777659236842"},{"denom":"ASSET6","index":"0.000003166887163415"},{"denom":"ASSET7","index":"0.000004850174878604"},{"denom":"ASSET8","index":"0.000006329555560626"},{"denom":"ASSET9","index":"0.000002733760499857"}],"last_reward_claim_height":"63"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET17","shares":"742607587.999999356149401290","reward_history":[{"denom":"ASSET0","index":"0.000001392192847149"},{"denom":"ASSET1","index":"0.000011611450847386"},{"denom":"ASSET10","index":"0.000008088781067478"},{"denom":"ASSET11","index":"0.000011231761889073"},{"denom":"ASSET12","index":"0.000010115195100551"},{"denom":"ASSET13","index":"0.000003480482117873"},{"denom":"ASSET14","index":"0.000010492071548062"},{"denom":"ASSET15","index":"0.000007502372565194"},{"denom":"ASSET16","index":"0.000005229863836918"},{"denom":"ASSET17","index":"0.000003713920514466"},{"denom":"ASSET18","index":"0.000001769069294661"},{"denom":"ASSET2","index":"0.000003427044412629"},{"denom":"ASSET3","index":"0.000001002660101028"},{"denom":"ASSET4","index":"0.000009435973741790"},{"denom":"ASSET5","index":"0.000000777659236842"},{"denom":"ASSET6","index":"0.000003166887163415"},{"denom":"ASSET7","index":"0.000004850174878604"},{"denom":"ASSET8","index":"0.000006329555560626"},{"denom":"ASSET9","index":"0.000002733760499857"}],"last_reward_claim_height":"120"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET11","shares":"784370057.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002875427361068"},{"denom":"ASSET1","index":"0.000024372739255487"},{"denom":"ASSET10","index":"0.000019284464921318"},{"denom":"ASSET11","index":"0.000024174413552556"},{"denom":"ASSET12","index":"0.000022964657814992"},{"denom":"ASSET13","index":"0.000007586106071195"},{"denom":"ASSET14","index":"0.000022214775035212"},{"denom":"ASSET15","index":"0.000017399266119679"},{"denom":"ASSET16","index":"0.000010822432031544"},{"denom":"ASSET17","index":"0.000008437405253940"},{"denom":"ASSET18","index":"0.000003520101477575"},{"denom":"ASSET2","index":"0.000007366931162610"},{"denom":"ASSET3","index":"0.000002051556015935"},{"denom":"ASSET4","index":"0.000019761188522524"},{"denom":"ASSET5","index":"0.000001598363223465"},{"denom":"ASSET6","index":"0.000006458982880806"},{"denom":"ASSET7","index":"0.000010127316932433"},{"denom":"ASSET8","index":"0.000013792105044122"},{"denom":"ASSET9","index":"0.000005859963066840"}],"last_reward_claim_height":"126"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET14","shares":"23984554.728987729641981798","reward_history":[{"denom":"ASSET0","index":"0.000002875427361068"},{"denom":"ASSET1","index":"0.000024372739255487"},{"denom":"ASSET10","index":"0.000019284464921318"},{"denom":"ASSET11","index":"0.000024174413552556"},{"denom":"ASSET12","index":"0.000022964657814992"},{"denom":"ASSET13","index":"0.000007586106071195"},{"denom":"ASSET14","index":"0.000022214775035212"},{"denom":"ASSET15","index":"0.000017399266119679"},{"denom":"ASSET16","index":"0.000010822432031544"},{"denom":"ASSET17","index":"0.000008437405253940"},{"denom":"ASSET18","index":"0.000003520101477575"},{"denom":"ASSET2","index":"0.000007366931162610"},{"denom":"ASSET3","index":"0.000002051556015935"},{"denom":"ASSET4","index":"0.000019761188522524"},{"denom":"ASSET5","index":"0.000001598363223465"},{"denom":"ASSET6","index":"0.000006458982880806"},{"denom":"ASSET7","index":"0.000010127316932433"},{"denom":"ASSET8","index":"0.000013792105044122"},{"denom":"ASSET9","index":"0.000005859963066840"}],"last_reward_claim_height":"133"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET0","shares":"230392148.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002995432004660"},{"denom":"ASSET1","index":"0.000025434255671185"},{"denom":"ASSET10","index":"0.000020381248485322"},{"denom":"ASSET11","index":"0.000025297016742096"},{"denom":"ASSET12","index":"0.000024161457271020"},{"denom":"ASSET13","index":"0.000007948725545453"},{"denom":"ASSET14","index":"0.000023205881885085"},{"denom":"ASSET15","index":"0.000018343715148864"},{"denom":"ASSET16","index":"0.000011277889207663"},{"denom":"ASSET17","index":"0.000008877556775335"},{"denom":"ASSET18","index":"0.000003654253802028"},{"denom":"ASSET2","index":"0.000007709102798424"},{"denom":"ASSET3","index":"0.000002137627884226"},{"denom":"ASSET4","index":"0.000020618696770430"},{"denom":"ASSET5","index":"0.000001664440090804"},{"denom":"ASSET6","index":"0.000006720260763181"},{"denom":"ASSET7","index":"0.000010565171316359"},{"denom":"ASSET8","index":"0.000014449121165534"},{"denom":"ASSET9","index":"0.000006129217088192"}],"last_reward_claim_height":"147"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET3","shares":"416046698.486406746812639667","reward_history":[{"denom":"ASSET0","index":"0.000001468329025254"},{"denom":"ASSET1","index":"0.000012248466172689"},{"denom":"ASSET10","index":"0.000008533242661533"},{"denom":"ASSET11","index":"0.000011849890220686"},{"denom":"ASSET12","index":"0.000010670683647662"},{"denom":"ASSET13","index":"0.000003671855143322"},{"denom":"ASSET14","index":"0.000011069259599665"},{"denom":"ASSET15","index":"0.000007913694549611"},{"denom":"ASSET16","index":"0.000005518108516848"},{"denom":"ASSET17","index":"0.000003917609227717"},{"denom":"ASSET18","index":"0.000001866904977257"},{"denom":"ASSET2","index":"0.000003616095813249"},{"denom":"ASSET3","index":"0.000001057362111013"},{"denom":"ASSET4","index":"0.000009954072998206"},{"denom":"ASSET5","index":"0.000000819868668110"},{"denom":"ASSET6","index":"0.000003341429483630"},{"denom":"ASSET7","index":"0.000005117467404472"},{"denom":"ASSET8","index":"0.000006676663486141"},{"denom":"ASSET9","index":"0.000002882963880808"}],"last_reward_claim_height":"118"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET17","shares":"755736489.999999999332998108","reward_history":[],"last_reward_claim_height":"44"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET3","shares":"645175974.000000000000000000","reward_history":[],"last_reward_claim_height":"34"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET6","shares":"422812508.715311905567352644","reward_history":[{"denom":"ASSET0","index":"0.000002967027008461"},{"denom":"ASSET1","index":"0.000025180120058697"},{"denom":"ASSET10","index":"0.000020126919929476"},{"denom":"ASSET11","index":"0.000025029678796477"},{"denom":"ASSET12","index":"0.000023880507059092"},{"denom":"ASSET13","index":"0.000007862872062626"},{"denom":"ASSET14","index":"0.000022968832134984"},{"denom":"ASSET15","index":"0.000018123195207046"},{"denom":"ASSET16","index":"0.000011168095360491"},{"denom":"ASSET17","index":"0.000008775186029853"},{"denom":"ASSET18","index":"0.000003621217117579"},{"denom":"ASSET2","index":"0.000007627534970337"},{"denom":"ASSET3","index":"0.000002117298518473"},{"denom":"ASSET4","index":"0.000020413769751333"},{"denom":"ASSET5","index":"0.000001649183760435"},{"denom":"ASSET6","index":"0.000006656038319196"},{"denom":"ASSET7","index":"0.000010459966878994"},{"denom":"ASSET8","index":"0.000014293861494285"},{"denom":"ASSET9","index":"0.000006066597621916"}],"last_reward_claim_height":"136"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET14","shares":"734959264.530023446600432666","reward_history":[{"denom":"ASSET0","index":"0.000004570705498703"},{"denom":"ASSET1","index":"0.000037351903122491"},{"denom":"ASSET10","index":"0.000032488228633026"},{"denom":"ASSET11","index":"0.000038896486241790"},{"denom":"ASSET12","index":"0.000037036137764840"},{"denom":"ASSET13","index":"0.000012562287865708"},{"denom":"ASSET14","index":"0.000035891200514879"},{"denom":"ASSET15","index":"0.000029155090889424"},{"denom":"ASSET16","index":"0.000016572309636415"},{"denom":"ASSET17","index":"0.000013446355223163"},{"denom":"ASSET18","index":"0.000005582989725245"},{"denom":"ASSET2","index":"0.000011274764559437"},{"denom":"ASSET3","index":"0.000003245112752165"},{"denom":"ASSET4","index":"0.000030633347607545"},{"denom":"ASSET5","index":"0.000002548747163555"},{"denom":"ASSET6","index":"0.000010409192694939"},{"denom":"ASSET7","index":"0.000016070108051960"},{"denom":"ASSET8","index":"0.000023193138138929"},{"denom":"ASSET9","index":"0.000009280332869123"}],"last_reward_claim_height":"188"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET16","shares":"117424133.118503677823287320","reward_history":[{"denom":"ASSET0","index":"0.000002967027008461"},{"denom":"ASSET1","index":"0.000025180120058697"},{"denom":"ASSET10","index":"0.000020126919929476"},{"denom":"ASSET11","index":"0.000025029678796477"},{"denom":"ASSET12","index":"0.000023880507059092"},{"denom":"ASSET13","index":"0.000007862872062626"},{"denom":"ASSET14","index":"0.000022968832134984"},{"denom":"ASSET15","index":"0.000018123195207046"},{"denom":"ASSET16","index":"0.000011168095360491"},{"denom":"ASSET17","index":"0.000008775186029853"},{"denom":"ASSET18","index":"0.000003621217117579"},{"denom":"ASSET2","index":"0.000007627534970337"},{"denom":"ASSET3","index":"0.000002117298518473"},{"denom":"ASSET4","index":"0.000020413769751333"},{"denom":"ASSET5","index":"0.000001649183760435"},{"denom":"ASSET6","index":"0.000006656038319196"},{"denom":"ASSET7","index":"0.000010459966878994"},{"denom":"ASSET8","index":"0.000014293861494285"},{"denom":"ASSET9","index":"0.000006066597621916"}],"last_reward_claim_height":"129"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET1","shares":"522839749.000000000000000000","reward_history":[],"last_reward_claim_height":"7"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET0","shares":"321863375.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003314119794923"},{"denom":"ASSET1","index":"0.000028119315186385"},{"denom":"ASSET10","index":"0.000022456877991933"},{"denom":"ASSET11","index":"0.000027947185249485"},{"denom":"ASSET12","index":"0.000026653541530161"},{"denom":"ASSET13","index":"0.000008778725953540"},{"denom":"ASSET14","index":"0.000025648491290636"},{"denom":"ASSET15","index":"0.000020225495910600"},{"denom":"ASSET16","index":"0.000012473684612014"},{"denom":"ASSET17","index":"0.000009794866581105"},{"denom":"ASSET18","index":"0.000004045992889163"},{"denom":"ASSET2","index":"0.000008517017325485"},{"denom":"ASSET3","index":"0.000002365208974685"},{"denom":"ASSET4","index":"0.000022797013251164"},{"denom":"ASSET5","index":"0.000001842432416817"},{"denom":"ASSET6","index":"0.000007435560259585"},{"denom":"ASSET7","index":"0.000011681616070006"},{"denom":"ASSET8","index":"0.000015958852395270"},{"denom":"ASSET9","index":"0.000006773561992828"}],"last_reward_claim_height":"157"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET1","shares":"611383950.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003314119794923"},{"denom":"ASSET1","index":"0.000028119315186385"},{"denom":"ASSET10","index":"0.000022456877991933"},{"denom":"ASSET11","index":"0.000027947185249485"},{"denom":"ASSET12","index":"0.000026653541530161"},{"denom":"ASSET13","index":"0.000008778725953540"},{"denom":"ASSET14","index":"0.000025648491290636"},{"denom":"ASSET15","index":"0.000020225495910600"},{"denom":"ASSET16","index":"0.000012473684612014"},{"denom":"ASSET17","index":"0.000009794866581105"},{"denom":"ASSET18","index":"0.000004045992889163"},{"denom":"ASSET2","index":"0.000008517017325485"},{"denom":"ASSET3","index":"0.000002365208974685"},{"denom":"ASSET4","index":"0.000022797013251164"},{"denom":"ASSET5","index":"0.000001842432416817"},{"denom":"ASSET6","index":"0.000007435560259585"},{"denom":"ASSET7","index":"0.000011681616070006"},{"denom":"ASSET8","index":"0.000015958852395270"},{"denom":"ASSET9","index":"0.000006773561992828"}],"last_reward_claim_height":"180"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET8","shares":"2444001.000000000078208032","reward_history":[{"denom":"ASSET0","index":"0.000001669758803356"},{"denom":"ASSET1","index":"0.000013919924903508"},{"denom":"ASSET10","index":"0.000009698114015232"},{"denom":"ASSET11","index":"0.000013466332119255"},{"denom":"ASSET12","index":"0.000012126099781115"},{"denom":"ASSET13","index":"0.000004173211661392"},{"denom":"ASSET14","index":"0.000012579297449702"},{"denom":"ASSET15","index":"0.000008994017898909"},{"denom":"ASSET16","index":"0.000006270880730729"},{"denom":"ASSET17","index":"0.000004453348668392"},{"denom":"ASSET18","index":"0.000002121376009280"},{"denom":"ASSET2","index":"0.000004109202923545"},{"denom":"ASSET3","index":"0.000001201941855137"},{"denom":"ASSET4","index":"0.000011312556625386"},{"denom":"ASSET5","index":"0.000000932868086778"},{"denom":"ASSET6","index":"0.000003797061547622"},{"denom":"ASSET7","index":"0.000005815312368147"},{"denom":"ASSET8","index":"0.000007588591475923"},{"denom":"ASSET9","index":"0.000003277484447193"}],"last_reward_claim_height":"84"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET13","shares":"171530457.209508224674154925","reward_history":[{"denom":"ASSET0","index":"0.000003314119794923"},{"denom":"ASSET1","index":"0.000028119315186385"},{"denom":"ASSET10","index":"0.000022456877991933"},{"denom":"ASSET11","index":"0.000027947185249485"},{"denom":"ASSET12","index":"0.000026653541530161"},{"denom":"ASSET13","index":"0.000008778725953540"},{"denom":"ASSET14","index":"0.000025648491290636"},{"denom":"ASSET15","index":"0.000020225495910600"},{"denom":"ASSET16","index":"0.000012473684612014"},{"denom":"ASSET17","index":"0.000009794866581105"},{"denom":"ASSET18","index":"0.000004045992889163"},{"denom":"ASSET2","index":"0.000008517017325485"},{"denom":"ASSET3","index":"0.000002365208974685"},{"denom":"ASSET4","index":"0.000022797013251164"},{"denom":"ASSET5","index":"0.000001842432416817"},{"denom":"ASSET6","index":"0.000007435560259585"},{"denom":"ASSET7","index":"0.000011681616070006"},{"denom":"ASSET8","index":"0.000015958852395270"},{"denom":"ASSET9","index":"0.000006773561992828"}],"last_reward_claim_height":"163"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET0","shares":"874570133.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003215122291080"},{"denom":"ASSET1","index":"0.000027271082473775"},{"denom":"ASSET10","index":"0.000021717714787675"},{"denom":"ASSET11","index":"0.000027088129911249"},{"denom":"ASSET12","index":"0.000025803190697535"},{"denom":"ASSET13","index":"0.000008506451165719"},{"denom":"ASSET14","index":"0.000024869823256717"},{"denom":"ASSET15","index":"0.000019571375436743"},{"denom":"ASSET16","index":"0.000012101015548893"},{"denom":"ASSET17","index":"0.000009481514658039"},{"denom":"ASSET18","index":"0.000003929002426467"},{"denom":"ASSET2","index":"0.000008255375778501"},{"denom":"ASSET3","index":"0.000002294279906946"},{"denom":"ASSET4","index":"0.000022110354928469"},{"denom":"ASSET5","index":"0.000001787716273475"},{"denom":"ASSET6","index":"0.000007215985074700"},{"denom":"ASSET7","index":"0.000011330188741735"},{"denom":"ASSET8","index":"0.000015463524362026"},{"denom":"ASSET9","index":"0.000006565858639552"}],"last_reward_claim_height":"182"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET8","shares":"220797599.000000016559819925","reward_history":[],"last_reward_claim_height":"42"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET10","shares":"67641716.528523137019045544","reward_history":[{"denom":"ASSET0","index":"0.000004823716104736"},{"denom":"ASSET1","index":"0.000039480365070270"},{"denom":"ASSET10","index":"0.000034116928375488"},{"denom":"ASSET11","index":"0.000040997532955099"},{"denom":"ASSET12","index":"0.000038999162148649"},{"denom":"ASSET13","index":"0.000013220337329072"},{"denom":"ASSET14","index":"0.000037831952094564"},{"denom":"ASSET15","index":"0.000030637104167684"},{"denom":"ASSET16","index":"0.000017521720108905"},{"denom":"ASSET17","index":"0.000014166831814341"},{"denom":"ASSET18","index":"0.000005896825051000"},{"denom":"ASSET2","index":"0.000011913795848039"},{"denom":"ASSET3","index":"0.000003425665491719"},{"denom":"ASSET4","index":"0.000032361073374938"},{"denom":"ASSET5","index":"0.000002690020746157"},{"denom":"ASSET6","index":"0.000010980480809306"},{"denom":"ASSET7","index":"0.000016957489547178"},{"denom":"ASSET8","index":"0.000024390016426130"},{"denom":"ASSET9","index":"0.000009789394935097"}],"last_reward_claim_height":"193"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET6","shares":"426263158.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003159157648171"},{"denom":"ASSET1","index":"0.000026793811254639"},{"denom":"ASSET10","index":"0.000021330257270132"},{"denom":"ASSET11","index":"0.000026611245447042"},{"denom":"ASSET12","index":"0.000025345616114893"},{"denom":"ASSET13","index":"0.000008356504281369"},{"denom":"ASSET14","index":"0.000024433401122602"},{"denom":"ASSET15","index":"0.000019223209713353"},{"denom":"ASSET16","index":"0.000011890026449509"},{"denom":"ASSET17","index":"0.000009313941892173"},{"denom":"ASSET18","index":"0.000003860849124980"},{"denom":"ASSET2","index":"0.000008109777269158"},{"denom":"ASSET3","index":"0.000002255070941538"},{"denom":"ASSET4","index":"0.000021723391251034"},{"denom":"ASSET5","index":"0.000001756486235957"},{"denom":"ASSET6","index":"0.000007090574282328"},{"denom":"ASSET7","index":"0.000011132530538444"},{"denom":"ASSET8","index":"0.000015191323807650"},{"denom":"ASSET9","index":"0.000006450832118924"}],"last_reward_claim_height":"159"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET8","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004745793526719"},{"denom":"ASSET1","index":"0.000038837120907884"},{"denom":"ASSET10","index":"0.000033561109505682"},{"denom":"ASSET11","index":"0.000040331758239538"},{"denom":"ASSET12","index":"0.000038362096616639"},{"denom":"ASSET13","index":"0.000013006193269554"},{"denom":"ASSET14","index":"0.000037219618636050"},{"denom":"ASSET15","index":"0.000030138700648405"},{"denom":"ASSET16","index":"0.000017237339667545"},{"denom":"ASSET17","index":"0.000013935435412403"},{"denom":"ASSET18","index":"0.000005802064373263"},{"denom":"ASSET2","index":"0.000011718369963314"},{"denom":"ASSET3","index":"0.000003370927946053"},{"denom":"ASSET4","index":"0.000031834884145314"},{"denom":"ASSET5","index":"0.000002646352292773"},{"denom":"ASSET6","index":"0.000010803831971165"},{"denom":"ASSET7","index":"0.000016683192889003"},{"denom":"ASSET8","index":"0.000023996426686690"},{"denom":"ASSET9","index":"0.000009630511936919"}],"last_reward_claim_height":"190"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET10","shares":"815855619.415400725230141150","reward_history":[{"denom":"ASSET0","index":"0.000001631513498845"},{"denom":"ASSET1","index":"0.000013601788709515"},{"denom":"ASSET10","index":"0.000009476711328689"},{"denom":"ASSET11","index":"0.000013158178840821"},{"denom":"ASSET12","index":"0.000011848922966954"},{"denom":"ASSET13","index":"0.000004077884841603"},{"denom":"ASSET14","index":"0.000012291633930140"},{"denom":"ASSET15","index":"0.000008788599161546"},{"denom":"ASSET16","index":"0.000006127389402135"},{"denom":"ASSET17","index":"0.000004351601569095"},{"denom":"ASSET18","index":"0.000002072876103766"},{"denom":"ASSET2","index":"0.000004014961455973"},{"denom":"ASSET3","index":"0.000001174420047516"},{"denom":"ASSET4","index":"0.000011053841044239"},{"denom":"ASSET5","index":"0.000000911490186131"},{"denom":"ASSET6","index":"0.000003710232488420"},{"denom":"ASSET7","index":"0.000005682431175178"},{"denom":"ASSET8","index":"0.000007415071543785"},{"denom":"ASSET9","index":"0.000003202800328586"}],"last_reward_claim_height":"72"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET14","shares":"48033659.389105045930135050","reward_history":[{"denom":"ASSET0","index":"0.000003159157648171"},{"denom":"ASSET1","index":"0.000026793811254639"},{"denom":"ASSET10","index":"0.000021330257270132"},{"denom":"ASSET11","index":"0.000026611245447042"},{"denom":"ASSET12","index":"0.000025345616114893"},{"denom":"ASSET13","index":"0.000008356504281369"},{"denom":"ASSET14","index":"0.000024433401122602"},{"denom":"ASSET15","index":"0.000019223209713353"},{"denom":"ASSET16","index":"0.000011890026449509"},{"denom":"ASSET17","index":"0.000009313941892173"},{"denom":"ASSET18","index":"0.000003860849124980"},{"denom":"ASSET2","index":"0.000008109777269158"},{"denom":"ASSET3","index":"0.000002255070941538"},{"denom":"ASSET4","index":"0.000021723391251034"},{"denom":"ASSET5","index":"0.000001756486235957"},{"denom":"ASSET6","index":"0.000007090574282328"},{"denom":"ASSET7","index":"0.000011132530538444"},{"denom":"ASSET8","index":"0.000015191323807650"},{"denom":"ASSET9","index":"0.000006450832118924"}],"last_reward_claim_height":"133"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET6","shares":"165447619.000000000000000000","reward_history":[],"last_reward_claim_height":"31"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET8","shares":"616129114.721029329796741062","reward_history":[{"denom":"ASSET0","index":"0.000003253063831874"},{"denom":"ASSET1","index":"0.000027597326034286"},{"denom":"ASSET10","index":"0.000022021617243178"},{"denom":"ASSET11","index":"0.000027423138617092"},{"denom":"ASSET12","index":"0.000026144931484859"},{"denom":"ASSET13","index":"0.000008613299773809"},{"denom":"ASSET14","index":"0.000025170855267573"},{"denom":"ASSET15","index":"0.000019836826910831"},{"denom":"ASSET16","index":"0.000012243184702458"},{"denom":"ASSET17","index":"0.000009607701845932"},{"denom":"ASSET18","index":"0.000003972764374377"},{"denom":"ASSET2","index":"0.000008357484440725"},{"denom":"ASSET3","index":"0.000002321502734814"},{"denom":"ASSET4","index":"0.000022373906168402"},{"denom":"ASSET5","index":"0.000001808481766797"},{"denom":"ASSET6","index":"0.000007298802623853"},{"denom":"ASSET7","index":"0.000011465220726545"},{"denom":"ASSET8","index":"0.000015658035812384"},{"denom":"ASSET9","index":"0.000006646717011605"}],"last_reward_claim_height":"181"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET9","shares":"115570189.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003253063831874"},{"denom":"ASSET1","index":"0.000027597326034286"},{"denom":"ASSET10","index":"0.000022021617243178"},{"denom":"ASSET11","index":"0.000027423138617092"},{"denom":"ASSET12","index":"0.000026144931484859"},{"denom":"ASSET13","index":"0.000008613299773809"},{"denom":"ASSET14","index":"0.000025170855267573"},{"denom":"ASSET15","index":"0.000019836826910831"},{"denom":"ASSET16","index":"0.000012243184702458"},{"denom":"ASSET17","index":"0.000009607701845932"},{"denom":"ASSET18","index":"0.000003972764374377"},{"denom":"ASSET2","index":"0.000008357484440725"},{"denom":"ASSET3","index":"0.000002321502734814"},{"denom":"ASSET4","index":"0.000022373906168402"},{"denom":"ASSET5","index":"0.000001808481766797"},{"denom":"ASSET6","index":"0.000007298802623853"},{"denom":"ASSET7","index":"0.000011465220726545"},{"denom":"ASSET8","index":"0.000015658035812384"},{"denom":"ASSET9","index":"0.000006646717011605"}],"last_reward_claim_height":"138"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET11","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"17"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET15","shares":"858515984.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001649724724935"},{"denom":"ASSET1","index":"0.000013753740147655"},{"denom":"ASSET10","index":"0.000009582563441278"},{"denom":"ASSET11","index":"0.000013305204895691"},{"denom":"ASSET12","index":"0.000011981321923304"},{"denom":"ASSET13","index":"0.000004123306127916"},{"denom":"ASSET14","index":"0.000012429052627730"},{"denom":"ASSET15","index":"0.000008886629821639"},{"denom":"ASSET16","index":"0.000006195820583626"},{"denom":"ASSET17","index":"0.000004400070480698"},{"denom":"ASSET18","index":"0.000002096248608056"},{"denom":"ASSET2","index":"0.000004060149146250"},{"denom":"ASSET3","index":"0.000001187512164840"},{"denom":"ASSET4","index":"0.000011177176659918"},{"denom":"ASSET5","index":"0.000000921609203810"},{"denom":"ASSET6","index":"0.000003751605165751"},{"denom":"ASSET7","index":"0.000005746078510357"},{"denom":"ASSET8","index":"0.000007497578498742"},{"denom":"ASSET9","index":"0.000003238303837047"}],"last_reward_claim_height":"117"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET7","shares":"999999999.999999916000000000","reward_history":[{"denom":"ASSET0","index":"0.000003402845442317"},{"denom":"ASSET1","index":"0.000028880571174740"},{"denom":"ASSET10","index":"0.000023090578471272"},{"denom":"ASSET11","index":"0.000028709364204549"},{"denom":"ASSET12","index":"0.000027394626213612"},{"denom":"ASSET13","index":"0.000009019217107214"},{"denom":"ASSET14","index":"0.000026344557012563"},{"denom":"ASSET15","index":"0.000020791017438004"},{"denom":"ASSET16","index":"0.000012808886991708"},{"denom":"ASSET17","index":"0.000010066951390727"},{"denom":"ASSET18","index":"0.000004153478710890"},{"denom":"ASSET2","index":"0.000008748954704305"},{"denom":"ASSET3","index":"0.000002428490976730"},{"denom":"ASSET4","index":"0.000023413646091842"},{"denom":"ASSET5","index":"0.000001891364101695"},{"denom":"ASSET6","index":"0.000007634563338572"},{"denom":"ASSET7","index":"0.000011996876612297"},{"denom":"ASSET8","index":"0.000016395615103037"},{"denom":"ASSET9","index":"0.000006958318142576"}],"last_reward_claim_height":"178"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET9","shares":"5028798.000000000000000000","reward_history":[],"last_reward_claim_height":"37"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET18","shares":"638160007.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001698975992122"},{"denom":"ASSET1","index":"0.000014167905922226"},{"denom":"ASSET10","index":"0.000009870625403756"},{"denom":"ASSET11","index":"0.000013705415046027"},{"denom":"ASSET12","index":"0.000012342129737421"},{"denom":"ASSET13","index":"0.000004247439980305"},{"denom":"ASSET14","index":"0.000012803154715439"},{"denom":"ASSET15","index":"0.000009153801193103"},{"denom":"ASSET16","index":"0.000006381787732272"},{"denom":"ASSET17","index":"0.000004532557176567"},{"denom":"ASSET18","index":"0.000002159268021049"},{"denom":"ASSET2","index":"0.000004182207511237"},{"denom":"ASSET3","index":"0.000001223292032291"},{"denom":"ASSET4","index":"0.000011513897264989"},{"denom":"ASSET5","index":"0.000000949169072389"},{"denom":"ASSET6","index":"0.000003864840554987"},{"denom":"ASSET7","index":"0.000005918563906982"},{"denom":"ASSET8","index":"0.000007723084568158"},{"denom":"ASSET9","index":"0.000003335651311539"}],"last_reward_claim_height":"81"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET1","shares":"379275480.784067903223458900","reward_history":[{"denom":"ASSET0","index":"0.000003029367235848"},{"denom":"ASSET1","index":"0.000025709657584098"},{"denom":"ASSET10","index":"0.000020551027857005"},{"denom":"ASSET11","index":"0.000025556791271547"},{"denom":"ASSET12","index":"0.000024383546484064"},{"denom":"ASSET13","index":"0.000008028643187417"},{"denom":"ASSET14","index":"0.000023452409013233"},{"denom":"ASSET15","index":"0.000018505869963369"},{"denom":"ASSET16","index":"0.000011403028825829"},{"denom":"ASSET17","index":"0.000008960765854271"},{"denom":"ASSET18","index":"0.000003697390743305"},{"denom":"ASSET2","index":"0.000007788410102575"},{"denom":"ASSET3","index":"0.000002162278160249"},{"denom":"ASSET4","index":"0.000020843149904241"},{"denom":"ASSET5","index":"0.000001683795445220"},{"denom":"ASSET6","index":"0.000006796548728457"},{"denom":"ASSET7","index":"0.000010680301627557"},{"denom":"ASSET8","index":"0.000014594997949332"},{"denom":"ASSET9","index":"0.000006193949682941"}],"last_reward_claim_height":"180"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET12","shares":"209601180.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001515088644413"},{"denom":"ASSET1","index":"0.000012634136557163"},{"denom":"ASSET10","index":"0.000008802109028204"},{"denom":"ASSET11","index":"0.000012222352143486"},{"denom":"ASSET12","index":"0.000011006111259210"},{"denom":"ASSET13","index":"0.000003787721611031"},{"denom":"ASSET14","index":"0.000011417895672887"},{"denom":"ASSET15","index":"0.000008163582563959"},{"denom":"ASSET16","index":"0.000005691138594924"},{"denom":"ASSET17","index":"0.000004042263453241"},{"denom":"ASSET18","index":"0.000001925135571111"},{"denom":"ASSET2","index":"0.000003729515797284"},{"denom":"ASSET3","index":"0.000001091141821893"},{"denom":"ASSET4","index":"0.000010267679293757"},{"denom":"ASSET5","index":"0.000000846156158061"},{"denom":"ASSET6","index":"0.000003446305419945"},{"denom":"ASSET7","index":"0.000005278485437758"},{"denom":"ASSET8","index":"0.000006887398378958"},{"denom":"ASSET9","index":"0.000002974577705544"}],"last_reward_claim_height":"88"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET13","shares":"764847824.106872012324228718","reward_history":[{"denom":"ASSET0","index":"0.000003029367235848"},{"denom":"ASSET1","index":"0.000025709657584098"},{"denom":"ASSET10","index":"0.000020551027857005"},{"denom":"ASSET11","index":"0.000025556791271547"},{"denom":"ASSET12","index":"0.000024383546484064"},{"denom":"ASSET13","index":"0.000008028643187417"},{"denom":"ASSET14","index":"0.000023452409013233"},{"denom":"ASSET15","index":"0.000018505869963369"},{"denom":"ASSET16","index":"0.000011403028825829"},{"denom":"ASSET17","index":"0.000008960765854271"},{"denom":"ASSET18","index":"0.000003697390743305"},{"denom":"ASSET2","index":"0.000007788410102575"},{"denom":"ASSET3","index":"0.000002162278160249"},{"denom":"ASSET4","index":"0.000020843149904241"},{"denom":"ASSET5","index":"0.000001683795445220"},{"denom":"ASSET6","index":"0.000006796548728457"},{"denom":"ASSET7","index":"0.000010680301627557"},{"denom":"ASSET8","index":"0.000014594997949332"},{"denom":"ASSET9","index":"0.000006193949682941"}],"last_reward_claim_height":"180"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET0","shares":"858017333.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001650481631660"},{"denom":"ASSET1","index":"0.000013760556046882"},{"denom":"ASSET10","index":"0.000009587067899364"},{"denom":"ASSET11","index":"0.000013312100857594"},{"denom":"ASSET12","index":"0.000011987552175177"},{"denom":"ASSET13","index":"0.000004125311926918"},{"denom":"ASSET14","index":"0.000012435412596309"},{"denom":"ASSET15","index":"0.000008891189157367"},{"denom":"ASSET16","index":"0.000006198673717177"},{"denom":"ASSET17","index":"0.000004402473887406"},{"denom":"ASSET18","index":"0.000002097152516481"},{"denom":"ASSET2","index":"0.000004062266502429"},{"denom":"ASSET3","index":"0.000001188346774796"},{"denom":"ASSET4","index":"0.000011182830860714"},{"denom":"ASSET5","index":"0.000000921890641108"},{"denom":"ASSET6","index":"0.000003753581829697"},{"denom":"ASSET7","index":"0.000005749028991578"},{"denom":"ASSET8","index":"0.000007501810745994"},{"denom":"ASSET9","index":"0.000003239702143299"}],"last_reward_claim_height":"110"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET14","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"42"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET17","shares":"1000032722.963318177000000000","reward_history":[{"denom":"ASSET0","index":"0.000001650481631660"},{"denom":"ASSET1","index":"0.000013760556046882"},{"denom":"ASSET10","index":"0.000009587067899364"},{"denom":"ASSET11","index":"0.000013312100857594"},{"denom":"ASSET12","index":"0.000011987552175177"},{"denom":"ASSET13","index":"0.000004125311926918"},{"denom":"ASSET14","index":"0.000012435412596309"},{"denom":"ASSET15","index":"0.000008891189157367"},{"denom":"ASSET16","index":"0.000006198673717177"},{"denom":"ASSET17","index":"0.000004402473887406"},{"denom":"ASSET18","index":"0.000002097152516481"},{"denom":"ASSET2","index":"0.000004062266502429"},{"denom":"ASSET3","index":"0.000001188346774796"},{"denom":"ASSET4","index":"0.000011182830860714"},{"denom":"ASSET5","index":"0.000000921890641108"},{"denom":"ASSET6","index":"0.000003753581829697"},{"denom":"ASSET7","index":"0.000005749028991578"},{"denom":"ASSET8","index":"0.000007501810745994"},{"denom":"ASSET9","index":"0.000003239702143299"}],"last_reward_claim_height":"121"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET14","shares":"818279457.000000000000000000","reward_history":[],"last_reward_claim_height":"50"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET6","shares":"215171862.688930435431328488","reward_history":[{"denom":"ASSET0","index":"0.000003155948059833"},{"denom":"ASSET1","index":"0.000026789841893667"},{"denom":"ASSET10","index":"0.000021451154188244"},{"denom":"ASSET11","index":"0.000026640130662201"},{"denom":"ASSET12","index":"0.000025435769508540"},{"denom":"ASSET13","index":"0.000008370086775831"},{"denom":"ASSET14","index":"0.000024440800445484"},{"denom":"ASSET15","index":"0.000019309084443140"},{"denom":"ASSET16","index":"0.000011879786354964"},{"denom":"ASSET17","index":"0.000009347672781307"},{"denom":"ASSET18","index":"0.000003850232310781"},{"denom":"ASSET2","index":"0.000008118311447694"},{"denom":"ASSET3","index":"0.000002251791235916"},{"denom":"ASSET4","index":"0.000021717604836949"},{"denom":"ASSET5","index":"0.000001754185821919"},{"denom":"ASSET6","index":"0.000007079049104243"},{"denom":"ASSET7","index":"0.000011127710678967"},{"denom":"ASSET8","index":"0.000015216376583965"},{"denom":"ASSET9","index":"0.000006456241851980"}],"last_reward_claim_height":"161"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET8","shares":"200510733.689843692748755520","reward_history":[{"denom":"ASSET0","index":"0.000003155948059833"},{"denom":"ASSET1","index":"0.000026789841893667"},{"denom":"ASSET10","index":"0.000021451154188244"},{"denom":"ASSET11","index":"0.000026640130662201"},{"denom":"ASSET12","index":"0.000025435769508540"},{"denom":"ASSET13","index":"0.000008370086775831"},{"denom":"ASSET14","index":"0.000024440800445484"},{"denom":"ASSET15","index":"0.000019309084443140"},{"denom":"ASSET16","index":"0.000011879786354964"},{"denom":"ASSET17","index":"0.000009347672781307"},{"denom":"ASSET18","index":"0.000003850232310781"},{"denom":"ASSET2","index":"0.000008118311447694"},{"denom":"ASSET3","index":"0.000002251791235916"},{"denom":"ASSET4","index":"0.000021717604836949"},{"denom":"ASSET5","index":"0.000001754185821919"},{"denom":"ASSET6","index":"0.000007079049104243"},{"denom":"ASSET7","index":"0.000011127710678967"},{"denom":"ASSET8","index":"0.000015216376583965"},{"denom":"ASSET9","index":"0.000006456241851980"}],"last_reward_claim_height":"138"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET17","shares":"251994956.748316252438538295","reward_history":[{"denom":"ASSET0","index":"0.000004795768020357"},{"denom":"ASSET1","index":"0.000039235640540163"},{"denom":"ASSET10","index":"0.000034090813500731"},{"denom":"ASSET11","index":"0.000040819172716073"},{"denom":"ASSET12","index":"0.000038887343100883"},{"denom":"ASSET13","index":"0.000013175362444583"},{"denom":"ASSET14","index":"0.000037654186330986"},{"denom":"ASSET15","index":"0.000030589194135662"},{"denom":"ASSET16","index":"0.000017405797263851"},{"denom":"ASSET17","index":"0.000014123771157348"},{"denom":"ASSET18","index":"0.000005856171184647"},{"denom":"ASSET2","index":"0.000011847674447736"},{"denom":"ASSET3","index":"0.000003405135950666"},{"denom":"ASSET4","index":"0.000032167283890779"},{"denom":"ASSET5","index":"0.000002674112194983"},{"denom":"ASSET6","index":"0.000010916704748385"},{"denom":"ASSET7","index":"0.000016864134756441"},{"denom":"ASSET8","index":"0.000024315764197247"},{"denom":"ASSET9","index":"0.000009742334443531"}],"last_reward_claim_height":"195"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET16","shares":"1000502308.501311702398412042","reward_history":[{"denom":"ASSET0","index":"0.000004941758780646"},{"denom":"ASSET1","index":"0.000040473870434523"},{"denom":"ASSET10","index":"0.000035083402440859"},{"denom":"ASSET11","index":"0.000042051564730155"},{"denom":"ASSET12","index":"0.000040063832495883"},{"denom":"ASSET13","index":"0.000013563015527428"},{"denom":"ASSET14","index":"0.000038785366713261"},{"denom":"ASSET15","index":"0.000031483779525299"},{"denom":"ASSET16","index":"0.000017955292333607"},{"denom":"ASSET17","index":"0.000014555394021301"},{"denom":"ASSET18","index":"0.000006034476545538"},{"denom":"ASSET2","index":"0.000012222945573354"},{"denom":"ASSET3","index":"0.000003508847610589"},{"denom":"ASSET4","index":"0.000033172373205264"},{"denom":"ASSET5","index":"0.000002755599690062"},{"denom":"ASSET6","index":"0.000011244023937701"},{"denom":"ASSET7","index":"0.000017379505184359"},{"denom":"ASSET8","index":"0.000025019733274858"},{"denom":"ASSET9","index":"0.000010040653742801"}],"last_reward_claim_height":"185"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET18","shares":"79650393.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003300821213878"},{"denom":"ASSET1","index":"0.000028019420341436"},{"denom":"ASSET10","index":"0.000022435320069293"},{"denom":"ASSET11","index":"0.000027862926397945"},{"denom":"ASSET12","index":"0.000026603097941410"},{"denom":"ASSET13","index":"0.000008754572034100"},{"denom":"ASSET14","index":"0.000025562969906661"},{"denom":"ASSET15","index":"0.000020195785636702"},{"denom":"ASSET16","index":"0.000012425527462944"},{"denom":"ASSET17","index":"0.000009776022796414"},{"denom":"ASSET18","index":"0.000004027118689751"},{"denom":"ASSET2","index":"0.000008490998812362"},{"denom":"ASSET3","index":"0.000002354733406852"},{"denom":"ASSET4","index":"0.000022715681634045"},{"denom":"ASSET5","index":"0.000001835160700580"},{"denom":"ASSET6","index":"0.000007403741836767"},{"denom":"ASSET7","index":"0.000011639103500846"},{"denom":"ASSET8","index":"0.000015914079386056"},{"denom":"ASSET9","index":"0.000006752470475547"}],"last_reward_claim_height":"142"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET5","shares":"611983273.746800029673634288","reward_history":[{"denom":"ASSET0","index":"0.000003205518103121"},{"denom":"ASSET1","index":"0.000027209804037075"},{"denom":"ASSET10","index":"0.000021755111918776"},{"denom":"ASSET11","index":"0.000027048910570117"},{"denom":"ASSET12","index":"0.000025809934262776"},{"denom":"ASSET13","index":"0.000008496852467218"},{"denom":"ASSET14","index":"0.000024820667393427"},{"denom":"ASSET15","index":"0.000019589132093549"},{"denom":"ASSET16","index":"0.000012068310128279"},{"denom":"ASSET17","index":"0.000009484236214143"},{"denom":"ASSET18","index":"0.000003912244660385"},{"denom":"ASSET2","index":"0.000008242746790311"},{"denom":"ASSET3","index":"0.000002287536756020"},{"denom":"ASSET4","index":"0.000022059248469095"},{"denom":"ASSET5","index":"0.000001781848402938"},{"denom":"ASSET6","index":"0.000007192715838846"},{"denom":"ASSET7","index":"0.000011303047666497"},{"denom":"ASSET8","index":"0.000015447099928639"},{"denom":"ASSET9","index":"0.000006555210966575"}],"last_reward_claim_height":"150"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET7","shares":"90502306.627812049379103025","reward_history":[{"denom":"ASSET0","index":"0.000003374964488748"},{"denom":"ASSET1","index":"0.000028642371697541"},{"denom":"ASSET10","index":"0.000022886358038922"},{"denom":"ASSET11","index":"0.000028469467846578"},{"denom":"ASSET12","index":"0.000027158021136678"},{"denom":"ASSET13","index":"0.000008943216545101"},{"denom":"ASSET14","index":"0.000026126056006670"},{"denom":"ASSET15","index":"0.000020609372613995"},{"denom":"ASSET16","index":"0.000012704733728960"},{"denom":"ASSET17","index":"0.000009980025667275"},{"denom":"ASSET18","index":"0.000004119620826099"},{"denom":"ASSET2","index":"0.000008675935346246"},{"denom":"ASSET3","index":"0.000002408702445844"},{"denom":"ASSET4","index":"0.000023220763838917"},{"denom":"ASSET5","index":"0.000001876440105393"},{"denom":"ASSET6","index":"0.000007572949563502"},{"denom":"ASSET7","index":"0.000011897934490553"},{"denom":"ASSET8","index":"0.000016258236310419"},{"denom":"ASSET9","index":"0.000006900426530312"}],"last_reward_claim_height":"149"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET8","shares":"110218210.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001693699328345"},{"denom":"ASSET1","index":"0.000014121235265065"},{"denom":"ASSET10","index":"0.000009838380374958"},{"denom":"ASSET11","index":"0.000013660499756586"},{"denom":"ASSET12","index":"0.000012301569616423"},{"denom":"ASSET13","index":"0.000004233563721295"},{"denom":"ASSET14","index":"0.000012760935925768"},{"denom":"ASSET15","index":"0.000009123658427184"},{"denom":"ASSET16","index":"0.000006361299175013"},{"denom":"ASSET17","index":"0.000004517672541531"},{"denom":"ASSET18","index":"0.000002151696438556"},{"denom":"ASSET2","index":"0.000004168526762446"},{"denom":"ASSET3","index":"0.000001219271828530"},{"denom":"ASSET4","index":"0.000011475942538822"},{"denom":"ASSET5","index":"0.000000946116601363"},{"denom":"ASSET6","index":"0.000003852241762569"},{"denom":"ASSET7","index":"0.000005899194467400"},{"denom":"ASSET8","index":"0.000007698322129037"},{"denom":"ASSET9","index":"0.000003325100096108"}],"last_reward_claim_height":"84"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET13","shares":"30538942.252679029547792268","reward_history":[{"denom":"ASSET0","index":"0.000005011502465784"},{"denom":"ASSET1","index":"0.000041062504292010"},{"denom":"ASSET10","index":"0.000035499667721994"},{"denom":"ASSET11","index":"0.000042618778374096"},{"denom":"ASSET12","index":"0.000040581702631690"},{"denom":"ASSET13","index":"0.000013738625153388"},{"denom":"ASSET14","index":"0.000039311910991656"},{"denom":"ASSET15","index":"0.000031866190350994"},{"denom":"ASSET16","index":"0.000018219089143418"},{"denom":"ASSET17","index":"0.000014746275469735"},{"denom":"ASSET18","index":"0.000006121555088654"},{"denom":"ASSET2","index":"0.000012397631677469"},{"denom":"ASSET3","index":"0.000003559564063326"},{"denom":"ASSET4","index":"0.000033648681772773"},{"denom":"ASSET5","index":"0.000002794335013820"},{"denom":"ASSET6","index":"0.000011402472728772"},{"denom":"ASSET7","index":"0.000017622476297013"},{"denom":"ASSET8","index":"0.000025338774425022"},{"denom":"ASSET9","index":"0.000010179577235599"}],"last_reward_claim_height":"188"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET7","shares":"361795030.404078172820066852","reward_history":[{"denom":"ASSET0","index":"0.000004646072432784"},{"denom":"ASSET1","index":"0.000038080040286229"},{"denom":"ASSET10","index":"0.000032847486902383"},{"denom":"ASSET11","index":"0.000039497924523924"},{"denom":"ASSET12","index":"0.000037580996460881"},{"denom":"ASSET13","index":"0.000012727008214209"},{"denom":"ASSET14","index":"0.000036441395391337"},{"denom":"ASSET15","index":"0.000029495995455198"},{"denom":"ASSET16","index":"0.000016898944682339"},{"denom":"ASSET17","index":"0.000013656744319509"},{"denom":"ASSET18","index":"0.000005680448810265"},{"denom":"ASSET2","index":"0.000011491675895035"},{"denom":"ASSET3","index":"0.000003300791246888"},{"denom":"ASSET4","index":"0.000031203283155516"},{"denom":"ASSET5","index":"0.000002590315755126"},{"denom":"ASSET6","index":"0.000010575594364390"},{"denom":"ASSET7","index":"0.000016340844103827"},{"denom":"ASSET8","index":"0.000023471391786119"},{"denom":"ASSET9","index":"0.000009435755908534"}],"last_reward_claim_height":"199"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET8","shares":"1221376655.999999994022830288","reward_history":[{"denom":"ASSET0","index":"0.000001608105877482"},{"denom":"ASSET1","index":"0.000013418457239972"},{"denom":"ASSET10","index":"0.000009349233819318"},{"denom":"ASSET11","index":"0.000012981594753349"},{"denom":"ASSET12","index":"0.000011689837573077"},{"denom":"ASSET13","index":"0.000004022147721664"},{"denom":"ASSET14","index":"0.000012126700059700"},{"denom":"ASSET15","index":"0.000008669460725910"},{"denom":"ASSET16","index":"0.000006044519750254"},{"denom":"ASSET17","index":"0.000004293303747844"},{"denom":"ASSET18","index":"0.000002044968364105"},{"denom":"ASSET2","index":"0.000003960007798998"},{"denom":"ASSET3","index":"0.000001158062195142"},{"denom":"ASSET4","index":"0.000010904614913932"},{"denom":"ASSET5","index":"0.000000898204336720"},{"denom":"ASSET6","index":"0.000003660606353425"},{"denom":"ASSET7","index":"0.000005605774235672"},{"denom":"ASSET8","index":"0.000007313680595011"},{"denom":"ASSET9","index":"0.000003159720916176"}],"last_reward_claim_height":"110"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET1","shares":"389915453.678440297273813622","reward_history":[{"denom":"ASSET0","index":"0.000003135138573804"},{"denom":"ASSET1","index":"0.000026601246250396"},{"denom":"ASSET10","index":"0.000021147351718785"},{"denom":"ASSET11","index":"0.000026411423528042"},{"denom":"ASSET12","index":"0.000025139747174388"},{"denom":"ASSET13","index":"0.000008292603180789"},{"denom":"ASSET14","index":"0.000024256405788980"},{"denom":"ASSET15","index":"0.000019064302195638"},{"denom":"ASSET16","index":"0.000011804656377100"},{"denom":"ASSET17","index":"0.000009238224400983"},{"denom":"ASSET18","index":"0.000003834531376561"},{"denom":"ASSET2","index":"0.000008049169006780"},{"denom":"ASSET3","index":"0.000002239375819558"},{"denom":"ASSET4","index":"0.000021568278304468"},{"denom":"ASSET5","index":"0.000001743998311515"},{"denom":"ASSET6","index":"0.000007041675703373"},{"denom":"ASSET7","index":"0.000011051161098588"},{"denom":"ASSET8","index":"0.000015073103234225"},{"denom":"ASSET9","index":"0.000006402150772125"}],"last_reward_claim_height":"180"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET6","shares":"509597301.566134806148124208","reward_history":[{"denom":"ASSET0","index":"0.000003135138573804"},{"denom":"ASSET1","index":"0.000026601246250396"},{"denom":"ASSET10","index":"0.000021147351718785"},{"denom":"ASSET11","index":"0.000026411423528042"},{"denom":"ASSET12","index":"0.000025139747174388"},{"denom":"ASSET13","index":"0.000008292603180789"},{"denom":"ASSET14","index":"0.000024256405788980"},{"denom":"ASSET15","index":"0.000019064302195638"},{"denom":"ASSET16","index":"0.000011804656377100"},{"denom":"ASSET17","index":"0.000009238224400983"},{"denom":"ASSET18","index":"0.000003834531376561"},{"denom":"ASSET2","index":"0.000008049169006780"},{"denom":"ASSET3","index":"0.000002239375819558"},{"denom":"ASSET4","index":"0.000021568278304468"},{"denom":"ASSET5","index":"0.000001743998311515"},{"denom":"ASSET6","index":"0.000007041675703373"},{"denom":"ASSET7","index":"0.000011051161098588"},{"denom":"ASSET8","index":"0.000015073103234225"},{"denom":"ASSET9","index":"0.000006402150772125"}],"last_reward_claim_height":"141"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET9","shares":"763012367.000000000000000000","reward_history":[],"last_reward_claim_height":"46"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET15","shares":"302136540.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003135138573804"},{"denom":"ASSET1","index":"0.000026601246250396"},{"denom":"ASSET10","index":"0.000021147351718785"},{"denom":"ASSET11","index":"0.000026411423528042"},{"denom":"ASSET12","index":"0.000025139747174388"},{"denom":"ASSET13","index":"0.000008292603180789"},{"denom":"ASSET14","index":"0.000024256405788980"},{"denom":"ASSET15","index":"0.000019064302195638"},{"denom":"ASSET16","index":"0.000011804656377100"},{"denom":"ASSET17","index":"0.000009238224400983"},{"denom":"ASSET18","index":"0.000003834531376561"},{"denom":"ASSET2","index":"0.000008049169006780"},{"denom":"ASSET3","index":"0.000002239375819558"},{"denom":"ASSET4","index":"0.000021568278304468"},{"denom":"ASSET5","index":"0.000001743998311515"},{"denom":"ASSET6","index":"0.000007041675703373"},{"denom":"ASSET7","index":"0.000011051161098588"},{"denom":"ASSET8","index":"0.000015073103234225"},{"denom":"ASSET9","index":"0.000006402150772125"}],"last_reward_claim_height":"138"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET17","shares":"279428325.544129286236041469","reward_history":[{"denom":"ASSET0","index":"0.000004741115250856"},{"denom":"ASSET1","index":"0.000038790779474096"},{"denom":"ASSET10","index":"0.000033526543709442"},{"denom":"ASSET11","index":"0.000040298328047202"},{"denom":"ASSET12","index":"0.000038314311285370"},{"denom":"ASSET13","index":"0.000012998828678335"},{"denom":"ASSET14","index":"0.000037197405875143"},{"denom":"ASSET15","index":"0.000030112000039690"},{"denom":"ASSET16","index":"0.000017216651427905"},{"denom":"ASSET17","index":"0.000013916075752291"},{"denom":"ASSET18","index":"0.000005799216997102"},{"denom":"ASSET2","index":"0.000011701668315626"},{"denom":"ASSET3","index":"0.000003368965515041"},{"denom":"ASSET4","index":"0.000031802384839558"},{"denom":"ASSET5","index":"0.000002644802785755"},{"denom":"ASSET6","index":"0.000010800204716581"},{"denom":"ASSET7","index":"0.000016669242053645"},{"denom":"ASSET8","index":"0.000023984974554640"},{"denom":"ASSET9","index":"0.000009620376305923"}],"last_reward_claim_height":"194"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET10","shares":"12230973.999999999474068118","reward_history":[{"denom":"ASSET0","index":"0.000003237426875283"},{"denom":"ASSET1","index":"0.000027451710154634"},{"denom":"ASSET10","index":"0.000021835512998164"},{"denom":"ASSET11","index":"0.000027259736654219"},{"denom":"ASSET12","index":"0.000025953768913429"},{"denom":"ASSET13","index":"0.000008559484494503"},{"denom":"ASSET14","index":"0.000025032165857410"},{"denom":"ASSET15","index":"0.000019681806512765"},{"denom":"ASSET16","index":"0.000012183244440341"},{"denom":"ASSET17","index":"0.000009537367134186"},{"denom":"ASSET18","index":"0.000003957397976948"},{"denom":"ASSET2","index":"0.000008307936552813"},{"denom":"ASSET3","index":"0.000002310954839376"},{"denom":"ASSET4","index":"0.000022256988295109"},{"denom":"ASSET5","index":"0.000001799896462688"},{"denom":"ASSET6","index":"0.000007265619632425"},{"denom":"ASSET7","index":"0.000011405823532836"},{"denom":"ASSET8","index":"0.000015559935461923"},{"denom":"ASSET9","index":"0.000006608212131764"}],"last_reward_claim_height":"166"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET15","shares":"1771292721.590303477714313246","reward_history":[{"denom":"ASSET0","index":"0.000001682560247115"},{"denom":"ASSET1","index":"0.000014026482890055"},{"denom":"ASSET10","index":"0.000009772411969975"},{"denom":"ASSET11","index":"0.000013568579422963"},{"denom":"ASSET12","index":"0.000012218368466479"},{"denom":"ASSET13","index":"0.000004205057792371"},{"denom":"ASSET14","index":"0.000012675600520863"},{"denom":"ASSET15","index":"0.000009062728737253"},{"denom":"ASSET16","index":"0.000006318664998244"},{"denom":"ASSET17","index":"0.000004487051129876"},{"denom":"ASSET18","index":"0.000002137778063373"},{"denom":"ASSET2","index":"0.000004140602172369"},{"denom":"ASSET3","index":"0.000001211228525856"},{"denom":"ASSET4","index":"0.000011398573549589"},{"denom":"ASSET5","index":"0.000000939977791684"},{"denom":"ASSET6","index":"0.000003825709612155"},{"denom":"ASSET7","index":"0.000005859418705735"},{"denom":"ASSET8","index":"0.000007646047922643"},{"denom":"ASSET9","index":"0.000003302679112354"}],"last_reward_claim_height":"93"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET17","shares":"460101624.537498404414257590","reward_history":[{"denom":"ASSET0","index":"0.000004889429454812"},{"denom":"ASSET1","index":"0.000039989731936733"},{"denom":"ASSET10","index":"0.000034568578318127"},{"denom":"ASSET11","index":"0.000041543640892993"},{"denom":"ASSET12","index":"0.000039505045921282"},{"denom":"ASSET13","index":"0.000013400367987193"},{"denom":"ASSET14","index":"0.000038343482662039"},{"denom":"ASSET15","index":"0.000031045520521246"},{"denom":"ASSET16","index":"0.000017750078362345"},{"denom":"ASSET17","index":"0.000014348913165267"},{"denom":"ASSET18","index":"0.000005978243263456"},{"denom":"ASSET2","index":"0.000012064952584567"},{"denom":"ASSET3","index":"0.000003472718319064"},{"denom":"ASSET4","index":"0.000032783876502129"},{"denom":"ASSET5","index":"0.000002726555594867"},{"denom":"ASSET6","index":"0.000011131690090434"},{"denom":"ASSET7","index":"0.000017184696487705"},{"denom":"ASSET8","index":"0.000024726779414247"},{"denom":"ASSET9","index":"0.000009918489437787"}],"last_reward_claim_height":"194"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET8","shares":"675374161.999999927059590504","reward_history":[{"denom":"ASSET0","index":"0.000003150995592381"},{"denom":"ASSET1","index":"0.000026735906318713"},{"denom":"ASSET10","index":"0.000021370928366269"},{"denom":"ASSET11","index":"0.000026577057751538"},{"denom":"ASSET12","index":"0.000025356196217934"},{"denom":"ASSET13","index":"0.000008349049177946"},{"denom":"ASSET14","index":"0.000024388519635576"},{"denom":"ASSET15","index":"0.000019243917228958"},{"denom":"ASSET16","index":"0.000011858566692713"},{"denom":"ASSET17","index":"0.000009317567603522"},{"denom":"ASSET18","index":"0.000003845362315572"},{"denom":"ASSET2","index":"0.000008099062572798"},{"denom":"ASSET3","index":"0.000002247710476517"},{"denom":"ASSET4","index":"0.000021674805285583"},{"denom":"ASSET5","index":"0.000001751018453776"},{"denom":"ASSET6","index":"0.000007067532365991"},{"denom":"ASSET7","index":"0.000011106766164564"},{"denom":"ASSET8","index":"0.000015177641578730"},{"denom":"ASSET9","index":"0.000006441123951375"}],"last_reward_claim_height":"178"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET9","shares":"1982319225.444623960760609610","reward_history":[{"denom":"ASSET0","index":"0.000003150995592381"},{"denom":"ASSET1","index":"0.000026735906318713"},{"denom":"ASSET10","index":"0.000021370928366269"},{"denom":"ASSET11","index":"0.000026577057751538"},{"denom":"ASSET12","index":"0.000025356196217934"},{"denom":"ASSET13","index":"0.000008349049177946"},{"denom":"ASSET14","index":"0.000024388519635576"},{"denom":"ASSET15","index":"0.000019243917228958"},{"denom":"ASSET16","index":"0.000011858566692713"},{"denom":"ASSET17","index":"0.000009317567603522"},{"denom":"ASSET18","index":"0.000003845362315572"},{"denom":"ASSET2","index":"0.000008099062572798"},{"denom":"ASSET3","index":"0.000002247710476517"},{"denom":"ASSET4","index":"0.000021674805285583"},{"denom":"ASSET5","index":"0.000001751018453776"},{"denom":"ASSET6","index":"0.000007067532365991"},{"denom":"ASSET7","index":"0.000011106766164564"},{"denom":"ASSET8","index":"0.000015177641578730"},{"denom":"ASSET9","index":"0.000006441123951375"}],"last_reward_claim_height":"162"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET13","shares":"38792956.761634035494154173","reward_history":[{"denom":"ASSET0","index":"0.000003150995592381"},{"denom":"ASSET1","index":"0.000026735906318713"},{"denom":"ASSET10","index":"0.000021370928366269"},{"denom":"ASSET11","index":"0.000026577057751538"},{"denom":"ASSET12","index":"0.000025356196217934"},{"denom":"ASSET13","index":"0.000008349049177946"},{"denom":"ASSET14","index":"0.000024388519635576"},{"denom":"ASSET15","index":"0.000019243917228958"},{"denom":"ASSET16","index":"0.000011858566692713"},{"denom":"ASSET17","index":"0.000009317567603522"},{"denom":"ASSET18","index":"0.000003845362315572"},{"denom":"ASSET2","index":"0.000008099062572798"},{"denom":"ASSET3","index":"0.000002247710476517"},{"denom":"ASSET4","index":"0.000021674805285583"},{"denom":"ASSET5","index":"0.000001751018453776"},{"denom":"ASSET6","index":"0.000007067532365991"},{"denom":"ASSET7","index":"0.000011106766164564"},{"denom":"ASSET8","index":"0.000015177641578730"},{"denom":"ASSET9","index":"0.000006441123951375"}],"last_reward_claim_height":"168"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET15","shares":"530441876.657976793427598912","reward_history":[{"denom":"ASSET0","index":"0.000003150995592381"},{"denom":"ASSET1","index":"0.000026735906318713"},{"denom":"ASSET10","index":"0.000021370928366269"},{"denom":"ASSET11","index":"0.000026577057751538"},{"denom":"ASSET12","index":"0.000025356196217934"},{"denom":"ASSET13","index":"0.000008349049177946"},{"denom":"ASSET14","index":"0.000024388519635576"},{"denom":"ASSET15","index":"0.000019243917228958"},{"denom":"ASSET16","index":"0.000011858566692713"},{"denom":"ASSET17","index":"0.000009317567603522"},{"denom":"ASSET18","index":"0.000003845362315572"},{"denom":"ASSET2","index":"0.000008099062572798"},{"denom":"ASSET3","index":"0.000002247710476517"},{"denom":"ASSET4","index":"0.000021674805285583"},{"denom":"ASSET5","index":"0.000001751018453776"},{"denom":"ASSET6","index":"0.000007067532365991"},{"denom":"ASSET7","index":"0.000011106766164564"},{"denom":"ASSET8","index":"0.000015177641578730"},{"denom":"ASSET9","index":"0.000006441123951375"}],"last_reward_claim_height":"137"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET3","shares":"551078069.441147368657696064","reward_history":[{"denom":"ASSET0","index":"0.000003300304206809"},{"denom":"ASSET1","index":"0.000027981868665615"},{"denom":"ASSET10","index":"0.000022221493016134"},{"denom":"ASSET11","index":"0.000027777532118325"},{"denom":"ASSET12","index":"0.000026428557640091"},{"denom":"ASSET13","index":"0.000008720047886627"},{"denom":"ASSET14","index":"0.000025512138164618"},{"denom":"ASSET15","index":"0.000020036362120252"},{"denom":"ASSET16","index":"0.000012421157074829"},{"denom":"ASSET17","index":"0.000009711490167791"},{"denom":"ASSET18","index":"0.000004036282970136"},{"denom":"ASSET2","index":"0.000008465189250700"},{"denom":"ASSET3","index":"0.000002356240815614"},{"denom":"ASSET4","index":"0.000022687774056492"},{"denom":"ASSET5","index":"0.000001835200922241"},{"denom":"ASSET6","index":"0.000007409270759323"},{"denom":"ASSET7","index":"0.000011627060915230"},{"denom":"ASSET8","index":"0.000015852235873304"},{"denom":"ASSET9","index":"0.000006733690564218"}],"last_reward_claim_height":"133"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET13","shares":"428853844.227764110282108444","reward_history":[{"denom":"ASSET0","index":"0.000001735896630597"},{"denom":"ASSET1","index":"0.000014474259966527"},{"denom":"ASSET10","index":"0.000010084408758147"},{"denom":"ASSET11","index":"0.000014002239606889"},{"denom":"ASSET12","index":"0.000012609068112910"},{"denom":"ASSET13","index":"0.000004339122939062"},{"denom":"ASSET14","index":"0.000013079851197687"},{"denom":"ASSET15","index":"0.000009351942040176"},{"denom":"ASSET16","index":"0.000006520438519776"},{"denom":"ASSET17","index":"0.000004630501168930"},{"denom":"ASSET18","index":"0.000002205442440512"},{"denom":"ASSET2","index":"0.000004272310096544"},{"denom":"ASSET3","index":"0.000001249647610052"},{"denom":"ASSET4","index":"0.000011762772107687"},{"denom":"ASSET5","index":"0.000000970023491367"},{"denom":"ASSET6","index":"0.000003948144082847"},{"denom":"ASSET7","index":"0.000006046562247845"},{"denom":"ASSET8","index":"0.000007890101791387"},{"denom":"ASSET9","index":"0.000003408073605830"}],"last_reward_claim_height":"76"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET18","shares":"26582493.946691773082284152","reward_history":[{"denom":"ASSET0","index":"0.000001735896630597"},{"denom":"ASSET1","index":"0.000014474259966527"},{"denom":"ASSET10","index":"0.000010084408758147"},{"denom":"ASSET11","index":"0.000014002239606889"},{"denom":"ASSET12","index":"0.000012609068112910"},{"denom":"ASSET13","index":"0.000004339122939062"},{"denom":"ASSET14","index":"0.000013079851197687"},{"denom":"ASSET15","index":"0.000009351942040176"},{"denom":"ASSET16","index":"0.000006520438519776"},{"denom":"ASSET17","index":"0.000004630501168930"},{"denom":"ASSET18","index":"0.000002205442440512"},{"denom":"ASSET2","index":"0.000004272310096544"},{"denom":"ASSET3","index":"0.000001249647610052"},{"denom":"ASSET4","index":"0.000011762772107687"},{"denom":"ASSET5","index":"0.000000970023491367"},{"denom":"ASSET6","index":"0.000003948144082847"},{"denom":"ASSET7","index":"0.000006046562247845"},{"denom":"ASSET8","index":"0.000007890101791387"},{"denom":"ASSET9","index":"0.000003408073605830"}],"last_reward_claim_height":"98"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET4","shares":"264154163.183374786313759088","reward_history":[{"denom":"ASSET0","index":"0.000003383074331503"},{"denom":"ASSET1","index":"0.000028697774885580"},{"denom":"ASSET10","index":"0.000022880621123289"},{"denom":"ASSET11","index":"0.000028511966470743"},{"denom":"ASSET12","index":"0.000027173358086556"},{"denom":"ASSET13","index":"0.000008954537947194"},{"denom":"ASSET14","index":"0.000026172910691250"},{"denom":"ASSET15","index":"0.000020614154391480"},{"denom":"ASSET16","index":"0.000012732692592075"},{"denom":"ASSET17","index":"0.000009985655741818"},{"denom":"ASSET18","index":"0.000004132359094826"},{"denom":"ASSET2","index":"0.000008689052893949"},{"denom":"ASSET3","index":"0.000002414485946546"},{"denom":"ASSET4","index":"0.000023266612079392"},{"denom":"ASSET5","index":"0.000001880944791026"},{"denom":"ASSET6","index":"0.000007591453768301"},{"denom":"ASSET7","index":"0.000011922604903868"},{"denom":"ASSET8","index":"0.000016278329144958"},{"denom":"ASSET9","index":"0.000006911169878531"}],"last_reward_claim_height":"135"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET7","shares":"21331092.974932055627194092","reward_history":[{"denom":"ASSET0","index":"0.000003383074331503"},{"denom":"ASSET1","index":"0.000028697774885580"},{"denom":"ASSET10","index":"0.000022880621123289"},{"denom":"ASSET11","index":"0.000028511966470743"},{"denom":"ASSET12","index":"0.000027173358086556"},{"denom":"ASSET13","index":"0.000008954537947194"},{"denom":"ASSET14","index":"0.000026172910691250"},{"denom":"ASSET15","index":"0.000020614154391480"},{"denom":"ASSET16","index":"0.000012732692592075"},{"denom":"ASSET17","index":"0.000009985655741818"},{"denom":"ASSET18","index":"0.000004132359094826"},{"denom":"ASSET2","index":"0.000008689052893949"},{"denom":"ASSET3","index":"0.000002414485946546"},{"denom":"ASSET4","index":"0.000023266612079392"},{"denom":"ASSET5","index":"0.000001880944791026"},{"denom":"ASSET6","index":"0.000007591453768301"},{"denom":"ASSET7","index":"0.000011922604903868"},{"denom":"ASSET8","index":"0.000016278329144958"},{"denom":"ASSET9","index":"0.000006911169878531"}],"last_reward_claim_height":"166"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET12","shares":"156121322.000000000000000000","reward_history":[],"last_reward_claim_height":"20"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET3","shares":"256485554.513593021069458888","reward_history":[{"denom":"ASSET0","index":"0.000001436232590899"},{"denom":"ASSET1","index":"0.000011976183987962"},{"denom":"ASSET10","index":"0.000008344549248442"},{"denom":"ASSET11","index":"0.000011585862202045"},{"denom":"ASSET12","index":"0.000010432581326504"},{"denom":"ASSET13","index":"0.000003589949888597"},{"denom":"ASSET14","index":"0.000010822903112421"},{"denom":"ASSET15","index":"0.000007738224144105"},{"denom":"ASSET16","index":"0.000005395030251301"},{"denom":"ASSET17","index":"0.000003831216753031"},{"denom":"ASSET18","index":"0.000001825291199515"},{"denom":"ASSET2","index":"0.000003535633264667"},{"denom":"ASSET3","index":"0.000001033279031975"},{"denom":"ASSET4","index":"0.000009732781101914"},{"denom":"ASSET5","index":"0.000000802117585946"},{"denom":"ASSET6","index":"0.000003266576499617"},{"denom":"ASSET7","index":"0.000005003445288083"},{"denom":"ASSET8","index":"0.000006528100290032"},{"denom":"ASSET9","index":"0.000002819411735168"}],"last_reward_claim_height":"118"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET8","shares":"1245417844.016397342412249290","reward_history":[{"denom":"ASSET0","index":"0.000003006064648013"},{"denom":"ASSET1","index":"0.000025531157590212"},{"denom":"ASSET10","index":"0.000020524407173472"},{"denom":"ASSET11","index":"0.000025409258384489"},{"denom":"ASSET12","index":"0.000024300714605646"},{"denom":"ASSET13","index":"0.000007986286383048"},{"denom":"ASSET14","index":"0.000023298685931189"},{"denom":"ASSET15","index":"0.000018459726056254"},{"denom":"ASSET16","index":"0.000011316095008653"},{"denom":"ASSET17","index":"0.000008930145684163"},{"denom":"ASSET18","index":"0.000003662445744281"},{"denom":"ASSET2","index":"0.000007743120539446"},{"denom":"ASSET3","index":"0.000002143639104141"},{"denom":"ASSET4","index":"0.000020695936675740"},{"denom":"ASSET5","index":"0.000001670457298921"},{"denom":"ASSET6","index":"0.000006739935351518"},{"denom":"ASSET7","index":"0.000010603283023237"},{"denom":"ASSET8","index":"0.000014518439118465"},{"denom":"ASSET9","index":"0.000006156725809403"}],"last_reward_claim_height":"123"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET10","shares":"1000080135.054991977000000000","reward_history":[{"denom":"ASSET0","index":"0.000003006064648013"},{"denom":"ASSET1","index":"0.000025531157590212"},{"denom":"ASSET10","index":"0.000020524407173472"},{"denom":"ASSET11","index":"0.000025409258384489"},{"denom":"ASSET12","index":"0.000024300714605646"},{"denom":"ASSET13","index":"0.000007986286383048"},{"denom":"ASSET14","index":"0.000023298685931189"},{"denom":"ASSET15","index":"0.000018459726056254"},{"denom":"ASSET16","index":"0.000011316095008653"},{"denom":"ASSET17","index":"0.000008930145684163"},{"denom":"ASSET18","index":"0.000003662445744281"},{"denom":"ASSET2","index":"0.000007743120539446"},{"denom":"ASSET3","index":"0.000002143639104141"},{"denom":"ASSET4","index":"0.000020695936675740"},{"denom":"ASSET5","index":"0.000001670457298921"},{"denom":"ASSET6","index":"0.000006739935351518"},{"denom":"ASSET7","index":"0.000010603283023237"},{"denom":"ASSET8","index":"0.000014518439118465"},{"denom":"ASSET9","index":"0.000006156725809403"}],"last_reward_claim_height":"154"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET14","shares":"149294382.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001436232590899"},{"denom":"ASSET1","index":"0.000011976183987962"},{"denom":"ASSET10","index":"0.000008344549248442"},{"denom":"ASSET11","index":"0.000011585862202045"},{"denom":"ASSET12","index":"0.000010432581326504"},{"denom":"ASSET13","index":"0.000003589949888597"},{"denom":"ASSET14","index":"0.000010822903112421"},{"denom":"ASSET15","index":"0.000007738224144105"},{"denom":"ASSET16","index":"0.000005395030251301"},{"denom":"ASSET17","index":"0.000003831216753031"},{"denom":"ASSET18","index":"0.000001825291199515"},{"denom":"ASSET2","index":"0.000003535633264667"},{"denom":"ASSET3","index":"0.000001033279031975"},{"denom":"ASSET4","index":"0.000009732781101914"},{"denom":"ASSET5","index":"0.000000802117585946"},{"denom":"ASSET6","index":"0.000003266576499617"},{"denom":"ASSET7","index":"0.000005003445288083"},{"denom":"ASSET8","index":"0.000006528100290032"},{"denom":"ASSET9","index":"0.000002819411735168"}],"last_reward_claim_height":"110"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET16","shares":"994268836.000000000000000000","reward_history":[],"last_reward_claim_height":"45"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET1","shares":"577056302.000000000000000000","reward_history":[],"last_reward_claim_height":"12"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET12","shares":"563859049.333630856949867812","reward_history":[{"denom":"ASSET0","index":"0.000002611689387046"},{"denom":"ASSET1","index":"0.000022118950462866"},{"denom":"ASSET10","index":"0.000017388824351878"},{"denom":"ASSET11","index":"0.000021911701626113"},{"denom":"ASSET12","index":"0.000020757567192719"},{"denom":"ASSET13","index":"0.000006870825151743"},{"denom":"ASSET14","index":"0.000020152250667519"},{"denom":"ASSET15","index":"0.000015711809347683"},{"denom":"ASSET16","index":"0.000009830001439303"},{"denom":"ASSET17","index":"0.000007627368499381"},{"denom":"ASSET18","index":"0.000003205559295774"},{"denom":"ASSET2","index":"0.000006678615536452"},{"denom":"ASSET3","index":"0.000001865584989735"},{"denom":"ASSET4","index":"0.000017938012267073"},{"denom":"ASSET5","index":"0.000001453547274796"},{"denom":"ASSET6","index":"0.000005870892100855"},{"denom":"ASSET7","index":"0.000009195154067126"},{"denom":"ASSET8","index":"0.000012492245582088"},{"denom":"ASSET9","index":"0.000005313335607946"}],"last_reward_claim_height":"158"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET2","shares":"129953514.862553971530680820","reward_history":[{"denom":"ASSET0","index":"0.000000860911540335"},{"denom":"ASSET1","index":"0.000007178593209511"},{"denom":"ASSET10","index":"0.000005001581264509"},{"denom":"ASSET11","index":"0.000006944753046495"},{"denom":"ASSET12","index":"0.000006253725385275"},{"denom":"ASSET13","index":"0.000002152029021603"},{"denom":"ASSET14","index":"0.000006487065889823"},{"denom":"ASSET15","index":"0.000004638329558286"},{"denom":"ASSET16","index":"0.000003233789604786"},{"denom":"ASSET17","index":"0.000002296430318850"},{"denom":"ASSET18","index":"0.000001093752386415"},{"denom":"ASSET2","index":"0.000002119051562716"},{"denom":"ASSET3","index":"0.000000619576500299"},{"denom":"ASSET4","index":"0.000005834012272169"},{"denom":"ASSET5","index":"0.000000481171104668"},{"denom":"ASSET6","index":"0.000001958161536025"},{"denom":"ASSET7","index":"0.000002998950124834"},{"denom":"ASSET8","index":"0.000003913325121242"},{"denom":"ASSET9","index":"0.000001690344597186"}],"last_reward_claim_height":"75"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET9","shares":"366714772.289820488951845335","reward_history":[{"denom":"ASSET0","index":"0.000001198976216272"},{"denom":"ASSET1","index":"0.000010001315625623"},{"denom":"ASSET10","index":"0.000006967712250892"},{"denom":"ASSET11","index":"0.000009674322112094"},{"denom":"ASSET12","index":"0.000008711677656379"},{"denom":"ASSET13","index":"0.000002997949876371"},{"denom":"ASSET14","index":"0.000009037652498526"},{"denom":"ASSET15","index":"0.000006461432574183"},{"denom":"ASSET16","index":"0.000004504564849919"},{"denom":"ASSET17","index":"0.000003199646809949"},{"denom":"ASSET18","index":"0.000001523932387037"},{"denom":"ASSET2","index":"0.000002952109664194"},{"denom":"ASSET3","index":"0.000000862814660308"},{"denom":"ASSET4","index":"0.000008126960283277"},{"denom":"ASSET5","index":"0.000000670285769165"},{"denom":"ASSET6","index":"0.000002728001960218"},{"denom":"ASSET7","index":"0.000004177571336390"},{"denom":"ASSET8","index":"0.000005451929234909"},{"denom":"ASSET9","index":"0.000002354149563130"}],"last_reward_claim_height":"78"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET15","shares":"188766035.999999993706772200","reward_history":[],"last_reward_claim_height":"58"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET11","shares":"265629578.000000017000292992","reward_history":[{"denom":"ASSET0","index":"0.000001507638919625"},{"denom":"ASSET1","index":"0.000012569401049902"},{"denom":"ASSET10","index":"0.000008757228353136"},{"denom":"ASSET11","index":"0.000012160184771718"},{"denom":"ASSET12","index":"0.000010949766096248"},{"denom":"ASSET13","index":"0.000003769097299062"},{"denom":"ASSET14","index":"0.000011358982374432"},{"denom":"ASSET15","index":"0.000008124020006893"},{"denom":"ASSET16","index":"0.000005660107258249"},{"denom":"ASSET17","index":"0.000004018934605743"},{"denom":"ASSET18","index":"0.000001912547658039"},{"denom":"ASSET2","index":"0.000003708791742277"},{"denom":"ASSET3","index":"0.000001085500022130"},{"denom":"ASSET4","index":"0.000010217484335287"},{"denom":"ASSET5","index":"0.000000839970255220"},{"denom":"ASSET6","index":"0.000003428801657204"},{"denom":"ASSET7","index":"0.000005250890980065"},{"denom":"ASSET8","index":"0.000006853295774638"},{"denom":"ASSET9","index":"0.000002959279822235"}],"last_reward_claim_height":"91"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET2","shares":"238342755.000000000000000000","reward_history":[],"last_reward_claim_height":"28"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET12","shares":"770361998.581391530107033090","reward_history":[{"denom":"ASSET0","index":"0.000001538667310820"},{"denom":"ASSET1","index":"0.000012827917927858"},{"denom":"ASSET10","index":"0.000008937244372687"},{"denom":"ASSET11","index":"0.000012409488429871"},{"denom":"ASSET12","index":"0.000011174685151587"},{"denom":"ASSET13","index":"0.000003845530209513"},{"denom":"ASSET14","index":"0.000011592355937882"},{"denom":"ASSET15","index":"0.000008288166520415"},{"denom":"ASSET16","index":"0.000005778727600031"},{"denom":"ASSET17","index":"0.000004103871540546"},{"denom":"ASSET18","index":"0.000001954820673732"},{"denom":"ASSET2","index":"0.000003786730053405"},{"denom":"ASSET3","index":"0.000001107719069920"},{"denom":"ASSET4","index":"0.000010424698644316"},{"denom":"ASSET5","index":"0.000000859620346726"},{"denom":"ASSET6","index":"0.000003499178322240"},{"denom":"ASSET7","index":"0.000005359160034507"},{"denom":"ASSET8","index":"0.000006993045662639"},{"denom":"ASSET9","index":"0.000003020431244761"}],"last_reward_claim_height":"87"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET1","shares":"208670307.514369935411398961","reward_history":[{"denom":"ASSET0","index":"0.000003295755498274"},{"denom":"ASSET1","index":"0.000027960125957180"},{"denom":"ASSET10","index":"0.000022298091456525"},{"denom":"ASSET11","index":"0.000027779779629540"},{"denom":"ASSET12","index":"0.000026478335493542"},{"denom":"ASSET13","index":"0.000008724566942758"},{"denom":"ASSET14","index":"0.000025500389224880"},{"denom":"ASSET15","index":"0.000020088119547171"},{"denom":"ASSET16","index":"0.000012404652968467"},{"denom":"ASSET17","index":"0.000009730254100732"},{"denom":"ASSET18","index":"0.000004025857251145"},{"denom":"ASSET2","index":"0.000008465992991141"},{"denom":"ASSET3","index":"0.000002352288079447"},{"denom":"ASSET4","index":"0.000022667879187178"},{"denom":"ASSET5","index":"0.000001832649164275"},{"denom":"ASSET6","index":"0.000007396215489940"},{"denom":"ASSET7","index":"0.000011616026271508"},{"denom":"ASSET8","index":"0.000015861127767022"},{"denom":"ASSET9","index":"0.000006733269226830"}],"last_reward_claim_height":"158"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET2","shares":"16782850.949387558728748584","reward_history":[{"denom":"ASSET0","index":"0.000001679222100186"},{"denom":"ASSET1","index":"0.000013999028794594"},{"denom":"ASSET10","index":"0.000009753438641601"},{"denom":"ASSET11","index":"0.000013542280383343"},{"denom":"ASSET12","index":"0.000012194769233410"},{"denom":"ASSET13","index":"0.000004196505199295"},{"denom":"ASSET14","index":"0.000012650484277214"},{"denom":"ASSET15","index":"0.000009045065257184"},{"denom":"ASSET16","index":"0.000006306124840851"},{"denom":"ASSET17","index":"0.000004478614512126"},{"denom":"ASSET18","index":"0.000002133387092820"},{"denom":"ASSET2","index":"0.000004132436417626"},{"denom":"ASSET3","index":"0.000001208523228411"},{"denom":"ASSET4","index":"0.000011376342215965"},{"denom":"ASSET5","index":"0.000000938297641211"},{"denom":"ASSET6","index":"0.000003818809397684"},{"denom":"ASSET7","index":"0.000005848343062154"},{"denom":"ASSET8","index":"0.000007631418590690"},{"denom":"ASSET9","index":"0.000003295925469872"}],"last_reward_claim_height":"84"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET3","shares":"12800858.000000000000000000","reward_history":[],"last_reward_claim_height":"14"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET7","shares":"418653154.857454094201216540","reward_history":[{"denom":"ASSET0","index":"0.000003295755498274"},{"denom":"ASSET1","index":"0.000027960125957180"},{"denom":"ASSET10","index":"0.000022298091456525"},{"denom":"ASSET11","index":"0.000027779779629540"},{"denom":"ASSET12","index":"0.000026478335493542"},{"denom":"ASSET13","index":"0.000008724566942758"},{"denom":"ASSET14","index":"0.000025500389224880"},{"denom":"ASSET15","index":"0.000020088119547171"},{"denom":"ASSET16","index":"0.000012404652968467"},{"denom":"ASSET17","index":"0.000009730254100732"},{"denom":"ASSET18","index":"0.000004025857251145"},{"denom":"ASSET2","index":"0.000008465992991141"},{"denom":"ASSET3","index":"0.000002352288079447"},{"denom":"ASSET4","index":"0.000022667879187178"},{"denom":"ASSET5","index":"0.000001832649164275"},{"denom":"ASSET6","index":"0.000007396215489940"},{"denom":"ASSET7","index":"0.000011616026271508"},{"denom":"ASSET8","index":"0.000015861127767022"},{"denom":"ASSET9","index":"0.000006733269226830"}],"last_reward_claim_height":"156"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET8","shares":"757700544.626109087010791186","reward_history":[{"denom":"ASSET0","index":"0.000001679222100186"},{"denom":"ASSET1","index":"0.000013999028794594"},{"denom":"ASSET10","index":"0.000009753438641601"},{"denom":"ASSET11","index":"0.000013542280383343"},{"denom":"ASSET12","index":"0.000012194769233410"},{"denom":"ASSET13","index":"0.000004196505199295"},{"denom":"ASSET14","index":"0.000012650484277214"},{"denom":"ASSET15","index":"0.000009045065257184"},{"denom":"ASSET16","index":"0.000006306124840851"},{"denom":"ASSET17","index":"0.000004478614512126"},{"denom":"ASSET18","index":"0.000002133387092820"},{"denom":"ASSET2","index":"0.000004132436417626"},{"denom":"ASSET3","index":"0.000001208523228411"},{"denom":"ASSET4","index":"0.000011376342215965"},{"denom":"ASSET5","index":"0.000000938297641211"},{"denom":"ASSET6","index":"0.000003818809397684"},{"denom":"ASSET7","index":"0.000005848343062154"},{"denom":"ASSET8","index":"0.000007631418590690"},{"denom":"ASSET9","index":"0.000003295925469872"}],"last_reward_claim_height":"100"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET9","shares":"473418440.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003295755498274"},{"denom":"ASSET1","index":"0.000027960125957180"},{"denom":"ASSET10","index":"0.000022298091456525"},{"denom":"ASSET11","index":"0.000027779779629540"},{"denom":"ASSET12","index":"0.000026478335493542"},{"denom":"ASSET13","index":"0.000008724566942758"},{"denom":"ASSET14","index":"0.000025500389224880"},{"denom":"ASSET15","index":"0.000020088119547171"},{"denom":"ASSET16","index":"0.000012404652968467"},{"denom":"ASSET17","index":"0.000009730254100732"},{"denom":"ASSET18","index":"0.000004025857251145"},{"denom":"ASSET2","index":"0.000008465992991141"},{"denom":"ASSET3","index":"0.000002352288079447"},{"denom":"ASSET4","index":"0.000022667879187178"},{"denom":"ASSET5","index":"0.000001832649164275"},{"denom":"ASSET6","index":"0.000007396215489940"},{"denom":"ASSET7","index":"0.000011616026271508"},{"denom":"ASSET8","index":"0.000015861127767022"},{"denom":"ASSET9","index":"0.000006733269226830"}],"last_reward_claim_height":"183"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET11","shares":"234481125.497399343339035200","reward_history":[{"denom":"ASSET0","index":"0.000003295755498274"},{"denom":"ASSET1","index":"0.000027960125957180"},{"denom":"ASSET10","index":"0.000022298091456525"},{"denom":"ASSET11","index":"0.000027779779629540"},{"denom":"ASSET12","index":"0.000026478335493542"},{"denom":"ASSET13","index":"0.000008724566942758"},{"denom":"ASSET14","index":"0.000025500389224880"},{"denom":"ASSET15","index":"0.000020088119547171"},{"denom":"ASSET16","index":"0.000012404652968467"},{"denom":"ASSET17","index":"0.000009730254100732"},{"denom":"ASSET18","index":"0.000004025857251145"},{"denom":"ASSET2","index":"0.000008465992991141"},{"denom":"ASSET3","index":"0.000002352288079447"},{"denom":"ASSET4","index":"0.000022667879187178"},{"denom":"ASSET5","index":"0.000001832649164275"},{"denom":"ASSET6","index":"0.000007396215489940"},{"denom":"ASSET7","index":"0.000011616026271508"},{"denom":"ASSET8","index":"0.000015861127767022"},{"denom":"ASSET9","index":"0.000006733269226830"}],"last_reward_claim_height":"157"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET15","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"17"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET18","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001679222100186"},{"denom":"ASSET1","index":"0.000013999028794594"},{"denom":"ASSET10","index":"0.000009753438641601"},{"denom":"ASSET11","index":"0.000013542280383343"},{"denom":"ASSET12","index":"0.000012194769233410"},{"denom":"ASSET13","index":"0.000004196505199295"},{"denom":"ASSET14","index":"0.000012650484277214"},{"denom":"ASSET15","index":"0.000009045065257184"},{"denom":"ASSET16","index":"0.000006306124840851"},{"denom":"ASSET17","index":"0.000004478614512126"},{"denom":"ASSET18","index":"0.000002133387092820"},{"denom":"ASSET2","index":"0.000004132436417626"},{"denom":"ASSET3","index":"0.000001208523228411"},{"denom":"ASSET4","index":"0.000011376342215965"},{"denom":"ASSET5","index":"0.000000938297641211"},{"denom":"ASSET6","index":"0.000003818809397684"},{"denom":"ASSET7","index":"0.000005848343062154"},{"denom":"ASSET8","index":"0.000007631418590690"},{"denom":"ASSET9","index":"0.000003295925469872"}],"last_reward_claim_height":"68"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET4","shares":"153515341.823360084753969748","reward_history":[{"denom":"ASSET0","index":"0.000003140601357292"},{"denom":"ASSET1","index":"0.000026678854887219"},{"denom":"ASSET10","index":"0.000021467437308134"},{"denom":"ASSET11","index":"0.000026557150856893"},{"denom":"ASSET12","index":"0.000025409189778577"},{"denom":"ASSET13","index":"0.000008348678217638"},{"denom":"ASSET14","index":"0.000024348515645151"},{"denom":"ASSET15","index":"0.000019305257093893"},{"denom":"ASSET16","index":"0.000011824039078448"},{"denom":"ASSET17","index":"0.000009337874135725"},{"denom":"ASSET18","index":"0.000003825021517438"},{"denom":"ASSET2","index":"0.000008092644314938"},{"denom":"ASSET3","index":"0.000002240059115813"},{"denom":"ASSET4","index":"0.000021626536887159"},{"denom":"ASSET5","index":"0.000001745574888449"},{"denom":"ASSET6","index":"0.000007040920669072"},{"denom":"ASSET7","index":"0.000011079696231301"},{"denom":"ASSET8","index":"0.000015176664815864"},{"denom":"ASSET9","index":"0.000006434669973810"}],"last_reward_claim_height":"130"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET10","shares":"177434187.000000010784174648","reward_history":[{"denom":"ASSET0","index":"0.000004805025087286"},{"denom":"ASSET1","index":"0.000039311495219424"},{"denom":"ASSET10","index":"0.000034296630877274"},{"denom":"ASSET11","index":"0.000040948942659670"},{"denom":"ASSET12","index":"0.000039062814980419"},{"denom":"ASSET13","index":"0.000013225928399705"},{"denom":"ASSET14","index":"0.000037759998178713"},{"denom":"ASSET15","index":"0.000030754756135989"},{"denom":"ASSET16","index":"0.000017432904086886"},{"denom":"ASSET17","index":"0.000014185641332252"},{"denom":"ASSET18","index":"0.000005861258453968"},{"denom":"ASSET2","index":"0.000011877932069586"},{"denom":"ASSET3","index":"0.000003410642838006"},{"denom":"ASSET4","index":"0.000032232767944681"},{"denom":"ASSET5","index":"0.000002679202763892"},{"denom":"ASSET6","index":"0.000010936223638283"},{"denom":"ASSET7","index":"0.000016902039894300"},{"denom":"ASSET8","index":"0.000024412756017582"},{"denom":"ASSET9","index":"0.000009770069208362"}],"last_reward_claim_height":"197"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET16","shares":"288756552.134791082324750375","reward_history":[{"denom":"ASSET0","index":"0.000001488486853561"},{"denom":"ASSET1","index":"0.000012409943784184"},{"denom":"ASSET10","index":"0.000008645838046025"},{"denom":"ASSET11","index":"0.000012005445379346"},{"denom":"ASSET12","index":"0.000010810451131374"},{"denom":"ASSET13","index":"0.000003720376180879"},{"denom":"ASSET14","index":"0.000011214949536212"},{"denom":"ASSET15","index":"0.000008018487089665"},{"denom":"ASSET16","index":"0.000005590655707614"},{"denom":"ASSET17","index":"0.000003970139229188"},{"denom":"ASSET18","index":"0.000001891303352350"},{"denom":"ASSET2","index":"0.000003663191375205"},{"denom":"ASSET3","index":"0.000001071374153354"},{"denom":"ASSET4","index":"0.000010085549624159"},{"denom":"ASSET5","index":"0.000000831702541340"},{"denom":"ASSET6","index":"0.000003384835924059"},{"denom":"ASSET7","index":"0.000005184475396726"},{"denom":"ASSET8","index":"0.000006765467082995"},{"denom":"ASSET9","index":"0.000002921470807498"}],"last_reward_claim_height":"88"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET6","shares":"184227673.156887925569131648","reward_history":[{"denom":"ASSET0","index":"0.000001385039568420"},{"denom":"ASSET1","index":"0.000011547928050470"},{"denom":"ASSET10","index":"0.000008045290512347"},{"denom":"ASSET11","index":"0.000011171268467624"},{"denom":"ASSET12","index":"0.000010059084660007"},{"denom":"ASSET13","index":"0.000003461116009305"},{"denom":"ASSET14","index":"0.000010435744242853"},{"denom":"ASSET15","index":"0.000007461023285412"},{"denom":"ASSET16","index":"0.000005202054396163"},{"denom":"ASSET17","index":"0.000003694427456948"},{"denom":"ASSET18","index":"0.000001759721935608"},{"denom":"ASSET2","index":"0.000003408719794369"},{"denom":"ASSET3","index":"0.000000996516691625"},{"denom":"ASSET4","index":"0.000009383865512804"},{"denom":"ASSET5","index":"0.000000774079930102"},{"denom":"ASSET6","index":"0.000003149704543173"},{"denom":"ASSET7","index":"0.000004824406205487"},{"denom":"ASSET8","index":"0.000006294466047200"},{"denom":"ASSET9","index":"0.000002718671529731"}],"last_reward_claim_height":"75"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET12","shares":"229708402.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001385039568420"},{"denom":"ASSET1","index":"0.000011547928050470"},{"denom":"ASSET10","index":"0.000008045290512347"},{"denom":"ASSET11","index":"0.000011171268467624"},{"denom":"ASSET12","index":"0.000010059084660007"},{"denom":"ASSET13","index":"0.000003461116009305"},{"denom":"ASSET14","index":"0.000010435744242853"},{"denom":"ASSET15","index":"0.000007461023285412"},{"denom":"ASSET16","index":"0.000005202054396163"},{"denom":"ASSET17","index":"0.000003694427456948"},{"denom":"ASSET18","index":"0.000001759721935608"},{"denom":"ASSET2","index":"0.000003408719794369"},{"denom":"ASSET3","index":"0.000000996516691625"},{"denom":"ASSET4","index":"0.000009383865512804"},{"denom":"ASSET5","index":"0.000000774079930102"},{"denom":"ASSET6","index":"0.000003149704543173"},{"denom":"ASSET7","index":"0.000004824406205487"},{"denom":"ASSET8","index":"0.000006294466047200"},{"denom":"ASSET9","index":"0.000002718671529731"}],"last_reward_claim_height":"87"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET16","shares":"1543963282.658387887374599758","reward_history":[{"denom":"ASSET0","index":"0.000002978674281858"},{"denom":"ASSET1","index":"0.000025310372422717"},{"denom":"ASSET10","index":"0.000020411345436720"},{"denom":"ASSET11","index":"0.000025206262983954"},{"denom":"ASSET12","index":"0.000024139567910062"},{"denom":"ASSET13","index":"0.000007924745788344"},{"denom":"ASSET14","index":"0.000023102636423037"},{"denom":"ASSET15","index":"0.000018346974201526"},{"denom":"ASSET16","index":"0.000011213830154915"},{"denom":"ASSET17","index":"0.000008871351161454"},{"denom":"ASSET18","index":"0.000003625142276595"},{"denom":"ASSET2","index":"0.000007680838181843"},{"denom":"ASSET3","index":"0.000002123796319816"},{"denom":"ASSET4","index":"0.000020514843977806"},{"denom":"ASSET5","index":"0.000001655567492872"},{"denom":"ASSET6","index":"0.000006676037052519"},{"denom":"ASSET7","index":"0.000010510115662832"},{"denom":"ASSET8","index":"0.000014407133239162"},{"denom":"ASSET9","index":"0.000006107008804836"}],"last_reward_claim_height":"144"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET6","shares":"32769954.513985604571186404","reward_history":[{"denom":"ASSET0","index":"0.000001563741356289"},{"denom":"ASSET1","index":"0.000013036816883138"},{"denom":"ASSET10","index":"0.000009082880828100"},{"denom":"ASSET11","index":"0.000012611783735587"},{"denom":"ASSET12","index":"0.000011356772924286"},{"denom":"ASSET13","index":"0.000003908472310400"},{"denom":"ASSET14","index":"0.000011781101207579"},{"denom":"ASSET15","index":"0.000008423480314776"},{"denom":"ASSET16","index":"0.000005872928997340"},{"denom":"ASSET17","index":"0.000004170681814362"},{"denom":"ASSET18","index":"0.000001986659911066"},{"denom":"ASSET2","index":"0.000003848558848473"},{"denom":"ASSET3","index":"0.000001125668219966"},{"denom":"ASSET4","index":"0.000010594814661429"},{"denom":"ASSET5","index":"0.000000873679247744"},{"denom":"ASSET6","index":"0.000003556392613548"},{"denom":"ASSET7","index":"0.000005446486121273"},{"denom":"ASSET8","index":"0.000007106793880903"},{"denom":"ASSET9","index":"0.000003069683843425"}],"last_reward_claim_height":"102"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET15","shares":"10657848.999999999563028191","reward_history":[{"denom":"ASSET0","index":"0.000003115193601728"},{"denom":"ASSET1","index":"0.000026433576226141"},{"denom":"ASSET10","index":"0.000021120836274624"},{"denom":"ASSET11","index":"0.000026274076149270"},{"denom":"ASSET12","index":"0.000025063206789151"},{"denom":"ASSET13","index":"0.000008253838888439"},{"denom":"ASSET14","index":"0.000024111622086359"},{"denom":"ASSET15","index":"0.000019020166052921"},{"denom":"ASSET16","index":"0.000011725264187843"},{"denom":"ASSET17","index":"0.000009210335248597"},{"denom":"ASSET18","index":"0.000003802618681808"},{"denom":"ASSET2","index":"0.000008007094168018"},{"denom":"ASSET3","index":"0.000002223045227271"},{"denom":"ASSET4","index":"0.000021430343290469"},{"denom":"ASSET5","index":"0.000001731871182363"},{"denom":"ASSET6","index":"0.000006989160352022"},{"denom":"ASSET7","index":"0.000010981276608696"},{"denom":"ASSET8","index":"0.000015004007461071"},{"denom":"ASSET9","index":"0.000006368316319391"}],"last_reward_claim_height":"167"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET3","shares":"868304107.110252414188022869","reward_history":[{"denom":"ASSET0","index":"0.000003342989987813"},{"denom":"ASSET1","index":"0.000028363859076608"},{"denom":"ASSET10","index":"0.000022643596968544"},{"denom":"ASSET11","index":"0.000028187678804911"},{"denom":"ASSET12","index":"0.000026879157824253"},{"denom":"ASSET13","index":"0.000008853292918908"},{"denom":"ASSET14","index":"0.000025870927331183"},{"denom":"ASSET15","index":"0.000020395094195043"},{"denom":"ASSET16","index":"0.000012581780801373"},{"denom":"ASSET17","index":"0.000009877287329505"},{"denom":"ASSET18","index":"0.000004080927248291"},{"denom":"ASSET2","index":"0.000008590241612281"},{"denom":"ASSET3","index":"0.000002384972961476"},{"denom":"ASSET4","index":"0.000022995501297970"},{"denom":"ASSET5","index":"0.000001858071035633"},{"denom":"ASSET6","index":"0.000007500418590266"},{"denom":"ASSET7","index":"0.000011782462758670"},{"denom":"ASSET8","index":"0.000016095075530395"},{"denom":"ASSET9","index":"0.000006831506736707"}],"last_reward_claim_height":"181"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET8","shares":"726698261.000000000000000000","reward_history":[],"last_reward_claim_height":"4"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET11","shares":"12516095.658238533313771254","reward_history":[{"denom":"ASSET0","index":"0.000003342989987813"},{"denom":"ASSET1","index":"0.000028363859076608"},{"denom":"ASSET10","index":"0.000022643596968544"},{"denom":"ASSET11","index":"0.000028187678804911"},{"denom":"ASSET12","index":"0.000026879157824253"},{"denom":"ASSET13","index":"0.000008853292918908"},{"denom":"ASSET14","index":"0.000025870927331183"},{"denom":"ASSET15","index":"0.000020395094195043"},{"denom":"ASSET16","index":"0.000012581780801373"},{"denom":"ASSET17","index":"0.000009877287329505"},{"denom":"ASSET18","index":"0.000004080927248291"},{"denom":"ASSET2","index":"0.000008590241612281"},{"denom":"ASSET3","index":"0.000002384972961476"},{"denom":"ASSET4","index":"0.000022995501297970"},{"denom":"ASSET5","index":"0.000001858071035633"},{"denom":"ASSET6","index":"0.000007500418590266"},{"denom":"ASSET7","index":"0.000011782462758670"},{"denom":"ASSET8","index":"0.000016095075530395"},{"denom":"ASSET9","index":"0.000006831506736707"}],"last_reward_claim_height":"133"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET9","shares":"583074886.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004669971272186"},{"denom":"ASSET1","index":"0.000038231704002672"},{"denom":"ASSET10","index":"0.000033091250938378"},{"denom":"ASSET11","index":"0.000039713430623018"},{"denom":"ASSET12","index":"0.000037806000956516"},{"denom":"ASSET13","index":"0.000012808127444565"},{"denom":"ASSET14","index":"0.000036638483282357"},{"denom":"ASSET15","index":"0.000029705512900617"},{"denom":"ASSET16","index":"0.000016963968278157"},{"denom":"ASSET17","index":"0.000013734289189195"},{"denom":"ASSET18","index":"0.000005705789092476"},{"denom":"ASSET2","index":"0.000011540719323858"},{"denom":"ASSET3","index":"0.000003316647299566"},{"denom":"ASSET4","index":"0.000031336158437819"},{"denom":"ASSET5","index":"0.000002604041216482"},{"denom":"ASSET6","index":"0.000010629036009854"},{"denom":"ASSET7","index":"0.000016420030654063"},{"denom":"ASSET8","index":"0.000023629608551740"},{"denom":"ASSET9","index":"0.000009482511489526"}],"last_reward_claim_height":"192"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET12","shares":"380427609.000000000000000000","reward_history":[],"last_reward_claim_height":"41"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET7","shares":"618365681.601627902372366872","reward_history":[{"denom":"ASSET0","index":"0.000003023961266495"},{"denom":"ASSET1","index":"0.000025674667559579"},{"denom":"ASSET10","index":"0.000020567435721356"},{"denom":"ASSET11","index":"0.000025532965784321"},{"denom":"ASSET12","index":"0.000024383768132692"},{"denom":"ASSET13","index":"0.000008022807352722"},{"denom":"ASSET14","index":"0.000023423766496233"},{"denom":"ASSET15","index":"0.000018512228577533"},{"denom":"ASSET16","index":"0.000011384524743973"},{"denom":"ASSET17","index":"0.000008960010456843"},{"denom":"ASSET18","index":"0.000003688974211121"},{"denom":"ASSET2","index":"0.000007780619396113"},{"denom":"ASSET3","index":"0.000002157718690670"},{"denom":"ASSET4","index":"0.000020813357966886"},{"denom":"ASSET5","index":"0.000001681323481152"},{"denom":"ASSET6","index":"0.000006783427048921"},{"denom":"ASSET7","index":"0.000010664665966441"},{"denom":"ASSET8","index":"0.000014584270248941"},{"denom":"ASSET9","index":"0.000006187655866052"}],"last_reward_claim_height":"131"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET8","shares":"184077393.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001486431692511"},{"denom":"ASSET1","index":"0.000012397696164316"},{"denom":"ASSET10","index":"0.000008637613387551"},{"denom":"ASSET11","index":"0.000011993186507636"},{"denom":"ASSET12","index":"0.000010799842650204"},{"denom":"ASSET13","index":"0.000003716482933529"},{"denom":"ASSET14","index":"0.000011203544902380"},{"denom":"ASSET15","index":"0.000008010260087670"},{"denom":"ASSET16","index":"0.000005584816956599"},{"denom":"ASSET17","index":"0.000003965970925374"},{"denom":"ASSET18","index":"0.000001889326540182"},{"denom":"ASSET2","index":"0.000003659157213720"},{"denom":"ASSET3","index":"0.000001070618372770"},{"denom":"ASSET4","index":"0.000010074793405297"},{"denom":"ASSET5","index":"0.000000830819234978"},{"denom":"ASSET6","index":"0.000003381410064224"},{"denom":"ASSET7","index":"0.000005179499895414"},{"denom":"ASSET8","index":"0.000006757975701421"},{"denom":"ASSET9","index":"0.000002918767283230"}],"last_reward_claim_height":"87"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET5","shares":"268392927.300803059480142888","reward_history":[{"denom":"ASSET0","index":"0.000001789525520762"},{"denom":"ASSET1","index":"0.000014923544215299"},{"denom":"ASSET10","index":"0.000010397506905977"},{"denom":"ASSET11","index":"0.000014436898494348"},{"denom":"ASSET12","index":"0.000013000171779235"},{"denom":"ASSET13","index":"0.000004474200642702"},{"denom":"ASSET14","index":"0.000013486043818595"},{"denom":"ASSET15","index":"0.000009642393672833"},{"denom":"ASSET16","index":"0.000006722519347127"},{"denom":"ASSET17","index":"0.000004774389100140"},{"denom":"ASSET18","index":"0.000002273850196939"},{"denom":"ASSET2","index":"0.000004405342981073"},{"denom":"ASSET3","index":"0.000001288179849576"},{"denom":"ASSET4","index":"0.000012128232625798"},{"denom":"ASSET5","index":"0.000001000370297599"},{"denom":"ASSET6","index":"0.000004071112533615"},{"denom":"ASSET7","index":"0.000006234326262993"},{"denom":"ASSET8","index":"0.000008135261932908"},{"denom":"ASSET9","index":"0.000003514061787852"}],"last_reward_claim_height":"74"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET8","shares":"353204708.737672341872673929","reward_history":[{"denom":"ASSET0","index":"0.000001789525520762"},{"denom":"ASSET1","index":"0.000014923544215299"},{"denom":"ASSET10","index":"0.000010397506905977"},{"denom":"ASSET11","index":"0.000014436898494348"},{"denom":"ASSET12","index":"0.000013000171779235"},{"denom":"ASSET13","index":"0.000004474200642702"},{"denom":"ASSET14","index":"0.000013486043818595"},{"denom":"ASSET15","index":"0.000009642393672833"},{"denom":"ASSET16","index":"0.000006722519347127"},{"denom":"ASSET17","index":"0.000004774389100140"},{"denom":"ASSET18","index":"0.000002273850196939"},{"denom":"ASSET2","index":"0.000004405342981073"},{"denom":"ASSET3","index":"0.000001288179849576"},{"denom":"ASSET4","index":"0.000012128232625798"},{"denom":"ASSET5","index":"0.000001000370297599"},{"denom":"ASSET6","index":"0.000004071112533615"},{"denom":"ASSET7","index":"0.000006234326262993"},{"denom":"ASSET8","index":"0.000008135261932908"},{"denom":"ASSET9","index":"0.000003514061787852"}],"last_reward_claim_height":"77"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET14","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"60"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET1","shares":"121257949.000000000000000000","reward_history":[],"last_reward_claim_height":"21"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET1","shares":"465039140.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003452635056994"},{"denom":"ASSET1","index":"0.000029280443630050"},{"denom":"ASSET10","index":"0.000023297581891953"},{"denom":"ASSET11","index":"0.000029078046899152"},{"denom":"ASSET12","index":"0.000027688393753974"},{"denom":"ASSET13","index":"0.000009130247174920"},{"denom":"ASSET14","index":"0.000026700258191979"},{"denom":"ASSET15","index":"0.000020998119885469"},{"denom":"ASSET16","index":"0.000012993858989816"},{"denom":"ASSET17","index":"0.000010174919177657"},{"denom":"ASSET18","index":"0.000004220034662939"},{"denom":"ASSET2","index":"0.000008861755768133"},{"denom":"ASSET3","index":"0.000002464736347038"},{"denom":"ASSET4","index":"0.000023740327943060"},{"denom":"ASSET5","index":"0.000001919615043943"},{"denom":"ASSET6","index":"0.000007749671229698"},{"denom":"ASSET7","index":"0.000012165961282812"},{"denom":"ASSET8","index":"0.000016598407083950"},{"denom":"ASSET9","index":"0.000007048985746822"}],"last_reward_claim_height":"128"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET2","shares":"744997372.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003452635056994"},{"denom":"ASSET1","index":"0.000029280443630050"},{"denom":"ASSET10","index":"0.000023297581891953"},{"denom":"ASSET11","index":"0.000029078046899152"},{"denom":"ASSET12","index":"0.000027688393753974"},{"denom":"ASSET13","index":"0.000009130247174920"},{"denom":"ASSET14","index":"0.000026700258191979"},{"denom":"ASSET15","index":"0.000020998119885469"},{"denom":"ASSET16","index":"0.000012993858989816"},{"denom":"ASSET17","index":"0.000010174919177657"},{"denom":"ASSET18","index":"0.000004220034662939"},{"denom":"ASSET2","index":"0.000008861755768133"},{"denom":"ASSET3","index":"0.000002464736347038"},{"denom":"ASSET4","index":"0.000023740327943060"},{"denom":"ASSET5","index":"0.000001919615043943"},{"denom":"ASSET6","index":"0.000007749671229698"},{"denom":"ASSET7","index":"0.000012165961282812"},{"denom":"ASSET8","index":"0.000016598407083950"},{"denom":"ASSET9","index":"0.000007048985746822"}],"last_reward_claim_height":"172"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET9","shares":"114618002.294386592129972860","reward_history":[{"denom":"ASSET0","index":"0.000001790270882045"},{"denom":"ASSET1","index":"0.000014924962381265"},{"denom":"ASSET10","index":"0.000010398687848362"},{"denom":"ASSET11","index":"0.000014438353512768"},{"denom":"ASSET12","index":"0.000013001639266884"},{"denom":"ASSET13","index":"0.000004474427888377"},{"denom":"ASSET14","index":"0.000013487623477013"},{"denom":"ASSET15","index":"0.000009643475881721"},{"denom":"ASSET16","index":"0.000006723198012370"},{"denom":"ASSET17","index":"0.000004774888563278"},{"denom":"ASSET18","index":"0.000002274381117071"},{"denom":"ASSET2","index":"0.000004405715467922"},{"denom":"ASSET3","index":"0.000001288670212721"},{"denom":"ASSET4","index":"0.000012129616185469"},{"denom":"ASSET5","index":"0.000001000078046809"},{"denom":"ASSET6","index":"0.000004071523241162"},{"denom":"ASSET7","index":"0.000006235339827137"},{"denom":"ASSET8","index":"0.000008136175240279"},{"denom":"ASSET9","index":"0.000003514327977106"}],"last_reward_claim_height":"105"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET12","shares":"23050665.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003452635056994"},{"denom":"ASSET1","index":"0.000029280443630050"},{"denom":"ASSET10","index":"0.000023297581891953"},{"denom":"ASSET11","index":"0.000029078046899152"},{"denom":"ASSET12","index":"0.000027688393753974"},{"denom":"ASSET13","index":"0.000009130247174920"},{"denom":"ASSET14","index":"0.000026700258191979"},{"denom":"ASSET15","index":"0.000020998119885469"},{"denom":"ASSET16","index":"0.000012993858989816"},{"denom":"ASSET17","index":"0.000010174919177657"},{"denom":"ASSET18","index":"0.000004220034662939"},{"denom":"ASSET2","index":"0.000008861755768133"},{"denom":"ASSET3","index":"0.000002464736347038"},{"denom":"ASSET4","index":"0.000023740327943060"},{"denom":"ASSET5","index":"0.000001919615043943"},{"denom":"ASSET6","index":"0.000007749671229698"},{"denom":"ASSET7","index":"0.000012165961282812"},{"denom":"ASSET8","index":"0.000016598407083950"},{"denom":"ASSET9","index":"0.000007048985746822"}],"last_reward_claim_height":"153"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET6","shares":"328550091.999999948746185648","reward_history":[],"last_reward_claim_height":"60"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET8","shares":"186574984.319815018977465612","reward_history":[{"denom":"ASSET0","index":"0.000003336473275634"},{"denom":"ASSET1","index":"0.000028284037775138"},{"denom":"ASSET10","index":"0.000022321061137243"},{"denom":"ASSET11","index":"0.000028041053149272"},{"denom":"ASSET12","index":"0.000026607048139233"},{"denom":"ASSET13","index":"0.000008795774551756"},{"denom":"ASSET14","index":"0.000025776026947277"},{"denom":"ASSET15","index":"0.000020150006768141"},{"denom":"ASSET16","index":"0.000012562977954735"},{"denom":"ASSET17","index":"0.000009778271060189"},{"denom":"ASSET18","index":"0.000004091528532498"},{"denom":"ASSET2","index":"0.000008544798017437"},{"denom":"ASSET3","index":"0.000002382883485470"},{"denom":"ASSET4","index":"0.000022934405116164"},{"denom":"ASSET5","index":"0.000001855148612588"},{"denom":"ASSET6","index":"0.000007498692848558"},{"denom":"ASSET7","index":"0.000011756140274513"},{"denom":"ASSET8","index":"0.000015991743254740"},{"denom":"ASSET9","index":"0.000006799136288961"}],"last_reward_claim_height":"134"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET10","shares":"1000240424.380414063000000000","reward_history":[{"denom":"ASSET0","index":"0.000004910041973405"},{"denom":"ASSET1","index":"0.000040228080858216"},{"denom":"ASSET10","index":"0.000034450855857558"},{"denom":"ASSET11","index":"0.000041648044604994"},{"denom":"ASSET12","index":"0.000039516330908444"},{"denom":"ASSET13","index":"0.000013407340157723"},{"denom":"ASSET14","index":"0.000038456388304312"},{"denom":"ASSET15","index":"0.000030975283852804"},{"denom":"ASSET16","index":"0.000017865867984722"},{"denom":"ASSET17","index":"0.000014361867516195"},{"denom":"ASSET18","index":"0.000006016535679771"},{"denom":"ASSET2","index":"0.000012123633162367"},{"denom":"ASSET3","index":"0.000003489488983902"},{"denom":"ASSET4","index":"0.000032962561426957"},{"denom":"ASSET5","index":"0.000002738000911337"},{"denom":"ASSET6","index":"0.000011181500268340"},{"denom":"ASSET7","index":"0.000017261198616714"},{"denom":"ASSET8","index":"0.000024724198292368"},{"denom":"ASSET9","index":"0.000009952657946993"}],"last_reward_claim_height":"192"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET13","shares":"18044473.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001835550145227"},{"denom":"ASSET1","index":"0.000015324623289081"},{"denom":"ASSET10","index":"0.000010676536631006"},{"denom":"ASSET11","index":"0.000014825027987456"},{"denom":"ASSET12","index":"0.000013348446318211"},{"denom":"ASSET13","index":"0.000004592576069005"},{"denom":"ASSET14","index":"0.000013848041619836"},{"denom":"ASSET15","index":"0.000009899388384035"},{"denom":"ASSET16","index":"0.000006901816574290"},{"denom":"ASSET17","index":"0.000004903435367793"},{"denom":"ASSET18","index":"0.000002335145446851"},{"denom":"ASSET2","index":"0.000004522262656184"},{"denom":"ASSET3","index":"0.000001321152019851"},{"denom":"ASSET4","index":"0.000012452875481226"},{"denom":"ASSET5","index":"0.000001025095544814"},{"denom":"ASSET6","index":"0.000004178097003954"},{"denom":"ASSET7","index":"0.000006402221272666"},{"denom":"ASSET8","index":"0.000008352493301969"},{"denom":"ASSET9","index":"0.000003608188289508"}],"last_reward_claim_height":"107"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET11","shares":"199393534.696714709489610707","reward_history":[{"denom":"ASSET0","index":"0.000004966120290331"},{"denom":"ASSET1","index":"0.000040690544144156"},{"denom":"ASSET10","index":"0.000035008616018986"},{"denom":"ASSET11","index":"0.000042171157431549"},{"denom":"ASSET12","index":"0.000040093293320436"},{"denom":"ASSET13","index":"0.000013583728581688"},{"denom":"ASSET14","index":"0.000038916162839599"},{"denom":"ASSET15","index":"0.000031450025763049"},{"denom":"ASSET16","index":"0.000018062966317414"},{"denom":"ASSET17","index":"0.000014570933713275"},{"denom":"ASSET18","index":"0.000006073753693017"},{"denom":"ASSET2","index":"0.000012276212695773"},{"denom":"ASSET3","index":"0.000003528975238030"},{"denom":"ASSET4","index":"0.000033340338954974"},{"denom":"ASSET5","index":"0.000002768929808594"},{"denom":"ASSET6","index":"0.000011300425346446"},{"denom":"ASSET7","index":"0.000017457146665459"},{"denom":"ASSET8","index":"0.000025048210849575"},{"denom":"ASSET9","index":"0.000010075937377830"}],"last_reward_claim_height":"192"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET14","shares":"657951267.507422743499841044","reward_history":[{"denom":"ASSET0","index":"0.000003371223111771"},{"denom":"ASSET1","index":"0.000028586584995448"},{"denom":"ASSET10","index":"0.000022716281614844"},{"denom":"ASSET11","index":"0.000028381809067472"},{"denom":"ASSET12","index":"0.000027011101270499"},{"denom":"ASSET13","index":"0.000008910504058238"},{"denom":"ASSET14","index":"0.000026065694327630"},{"denom":"ASSET15","index":"0.000020479714095343"},{"denom":"ASSET16","index":"0.000012688778091614"},{"denom":"ASSET17","index":"0.000009925875585388"},{"denom":"ASSET18","index":"0.000004122881217339"},{"denom":"ASSET2","index":"0.000008649339803247"},{"denom":"ASSET3","index":"0.000002407313457267"},{"denom":"ASSET4","index":"0.000023177863483423"},{"denom":"ASSET5","index":"0.000001874397047373"},{"denom":"ASSET6","index":"0.000007568278053481"},{"denom":"ASSET7","index":"0.000011878402488901"},{"denom":"ASSET8","index":"0.000016198768839280"},{"denom":"ASSET9","index":"0.000006880150170591"}],"last_reward_claim_height":"136"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET0","shares":"910274644.000000000000000000","reward_history":[],"last_reward_claim_height":"48"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET10","shares":"492436555.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004627764027420"},{"denom":"ASSET1","index":"0.000037903536607636"},{"denom":"ASSET10","index":"0.000032865942220262"},{"denom":"ASSET11","index":"0.000039383898049886"},{"denom":"ASSET12","index":"0.000037527333381682"},{"denom":"ASSET13","index":"0.000012703297183668"},{"denom":"ASSET14","index":"0.000036322948545804"},{"denom":"ASSET15","index":"0.000029491335058024"},{"denom":"ASSET16","index":"0.000016814012542586"},{"denom":"ASSET17","index":"0.000013634338949011"},{"denom":"ASSET18","index":"0.000005649814365271"},{"denom":"ASSET2","index":"0.000011447251219906"},{"denom":"ASSET3","index":"0.000003286184110324"},{"denom":"ASSET4","index":"0.000031065113175814"},{"denom":"ASSET5","index":"0.000002580192699817"},{"denom":"ASSET6","index":"0.000010529610832732"},{"denom":"ASSET7","index":"0.000016275676858161"},{"denom":"ASSET8","index":"0.000023433995869400"},{"denom":"ASSET9","index":"0.000009404185101028"}],"last_reward_claim_height":"193"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET13","shares":"591448603.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003090388166914"},{"denom":"ASSET1","index":"0.000026235396530584"},{"denom":"ASSET10","index":"0.000021016328726441"},{"denom":"ASSET11","index":"0.000026091077525301"},{"denom":"ASSET12","index":"0.000024916432469284"},{"denom":"ASSET13","index":"0.000008198423394567"},{"denom":"ASSET14","index":"0.000023935350029219"},{"denom":"ASSET15","index":"0.000018916111125702"},{"denom":"ASSET16","index":"0.000011633439861257"},{"denom":"ASSET17","index":"0.000009156707623184"},{"denom":"ASSET18","index":"0.000003769226369030"},{"denom":"ASSET2","index":"0.000007950992094695"},{"denom":"ASSET3","index":"0.000002205065882760"},{"denom":"ASSET4","index":"0.000021268551776440"},{"denom":"ASSET5","index":"0.000001717872208784"},{"denom":"ASSET6","index":"0.000006931889619894"},{"denom":"ASSET7","index":"0.000010897757198785"},{"denom":"ASSET8","index":"0.000014903243728132"},{"denom":"ASSET9","index":"0.000006323427167640"}],"last_reward_claim_height":"155"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET0","shares":"1523467693.000000006969301000","reward_history":[],"last_reward_claim_height":"48"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET8","shares":"249427541.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001518878942956"},{"denom":"ASSET1","index":"0.000012665267621292"},{"denom":"ASSET10","index":"0.000008823986077449"},{"denom":"ASSET11","index":"0.000012252067733139"},{"denom":"ASSET12","index":"0.000011032961258059"},{"denom":"ASSET13","index":"0.000003796959064490"},{"denom":"ASSET14","index":"0.000011445207974612"},{"denom":"ASSET15","index":"0.000008182978177143"},{"denom":"ASSET16","index":"0.000005705208605625"},{"denom":"ASSET17","index":"0.000004051932467214"},{"denom":"ASSET18","index":"0.000001930172487911"},{"denom":"ASSET2","index":"0.000003738815596953"},{"denom":"ASSET3","index":"0.000001093764409816"},{"denom":"ASSET4","index":"0.000010292823511460"},{"denom":"ASSET5","index":"0.000000848799308881"},{"denom":"ASSET6","index":"0.000003454770460461"},{"denom":"ASSET7","index":"0.000005291055545873"},{"denom":"ASSET8","index":"0.000006904298477127"},{"denom":"ASSET9","index":"0.000002981997347372"}],"last_reward_claim_height":"98"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET11","shares":"630889532.622975639021628930","reward_history":[{"denom":"ASSET0","index":"0.000001518878942956"},{"denom":"ASSET1","index":"0.000012665267621292"},{"denom":"ASSET10","index":"0.000008823986077449"},{"denom":"ASSET11","index":"0.000012252067733139"},{"denom":"ASSET12","index":"0.000011032961258059"},{"denom":"ASSET13","index":"0.000003796959064490"},{"denom":"ASSET14","index":"0.000011445207974612"},{"denom":"ASSET15","index":"0.000008182978177143"},{"denom":"ASSET16","index":"0.000005705208605625"},{"denom":"ASSET17","index":"0.000004051932467214"},{"denom":"ASSET18","index":"0.000001930172487911"},{"denom":"ASSET2","index":"0.000003738815596953"},{"denom":"ASSET3","index":"0.000001093764409816"},{"denom":"ASSET4","index":"0.000010292823511460"},{"denom":"ASSET5","index":"0.000000848799308881"},{"denom":"ASSET6","index":"0.000003454770460461"},{"denom":"ASSET7","index":"0.000005291055545873"},{"denom":"ASSET8","index":"0.000006904298477127"},{"denom":"ASSET9","index":"0.000002981997347372"}],"last_reward_claim_height":"120"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET4","shares":"233337259.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001387661284101"},{"denom":"ASSET1","index":"0.000011573014587468"},{"denom":"ASSET10","index":"0.000008062929395432"},{"denom":"ASSET11","index":"0.000011195232526081"},{"denom":"ASSET12","index":"0.000010081345808669"},{"denom":"ASSET13","index":"0.000003469153210252"},{"denom":"ASSET14","index":"0.000010458456853962"},{"denom":"ASSET15","index":"0.000007477132344649"},{"denom":"ASSET16","index":"0.000005213124040705"},{"denom":"ASSET17","index":"0.000003702666811251"},{"denom":"ASSET18","index":"0.000001763430297203"},{"denom":"ASSET2","index":"0.000003416142938760"},{"denom":"ASSET3","index":"0.000000999142965196"},{"denom":"ASSET4","index":"0.000009404961585085"},{"denom":"ASSET5","index":"0.000000775694605619"},{"denom":"ASSET6","index":"0.000003156459710063"},{"denom":"ASSET7","index":"0.000004834670963223"},{"denom":"ASSET8","index":"0.000006308893323556"},{"denom":"ASSET9","index":"0.000002724996361089"}],"last_reward_claim_height":"72"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET1","shares":"255896904.999999997185134045","reward_history":[{"denom":"ASSET0","index":"0.000001740203165372"},{"denom":"ASSET1","index":"0.000014506985633466"},{"denom":"ASSET10","index":"0.000010106727386233"},{"denom":"ASSET11","index":"0.000014033828203465"},{"denom":"ASSET12","index":"0.000012637643303754"},{"denom":"ASSET13","index":"0.000004348390877948"},{"denom":"ASSET14","index":"0.000013109742216014"},{"denom":"ASSET15","index":"0.000009373174592071"},{"denom":"ASSET16","index":"0.000006535288529808"},{"denom":"ASSET17","index":"0.000004640541774324"},{"denom":"ASSET18","index":"0.000002210185042151"},{"denom":"ASSET2","index":"0.000004281704260297"},{"denom":"ASSET3","index":"0.000001252226487004"},{"denom":"ASSET4","index":"0.000011789770593618"},{"denom":"ASSET5","index":"0.000000971719285773"},{"denom":"ASSET6","index":"0.000003956739313965"},{"denom":"ASSET7","index":"0.000006060014064326"},{"denom":"ASSET8","index":"0.000007908186039228"},{"denom":"ASSET9","index":"0.000003415836748573"}],"last_reward_claim_height":"92"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET2","shares":"937910332.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001740203165372"},{"denom":"ASSET1","index":"0.000014506985633466"},{"denom":"ASSET10","index":"0.000010106727386233"},{"denom":"ASSET11","index":"0.000014033828203465"},{"denom":"ASSET12","index":"0.000012637643303754"},{"denom":"ASSET13","index":"0.000004348390877948"},{"denom":"ASSET14","index":"0.000013109742216014"},{"denom":"ASSET15","index":"0.000009373174592071"},{"denom":"ASSET16","index":"0.000006535288529808"},{"denom":"ASSET17","index":"0.000004640541774324"},{"denom":"ASSET18","index":"0.000002210185042151"},{"denom":"ASSET2","index":"0.000004281704260297"},{"denom":"ASSET3","index":"0.000001252226487004"},{"denom":"ASSET4","index":"0.000011789770593618"},{"denom":"ASSET5","index":"0.000000971719285773"},{"denom":"ASSET6","index":"0.000003956739313965"},{"denom":"ASSET7","index":"0.000006060014064326"},{"denom":"ASSET8","index":"0.000007908186039228"},{"denom":"ASSET9","index":"0.000003415836748573"}],"last_reward_claim_height":"82"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET4","shares":"98468348.000000000107796920","reward_history":[{"denom":"ASSET0","index":"0.000001740203165372"},{"denom":"ASSET1","index":"0.000014506985633466"},{"denom":"ASSET10","index":"0.000010106727386233"},{"denom":"ASSET11","index":"0.000014033828203465"},{"denom":"ASSET12","index":"0.000012637643303754"},{"denom":"ASSET13","index":"0.000004348390877948"},{"denom":"ASSET14","index":"0.000013109742216014"},{"denom":"ASSET15","index":"0.000009373174592071"},{"denom":"ASSET16","index":"0.000006535288529808"},{"denom":"ASSET17","index":"0.000004640541774324"},{"denom":"ASSET18","index":"0.000002210185042151"},{"denom":"ASSET2","index":"0.000004281704260297"},{"denom":"ASSET3","index":"0.000001252226487004"},{"denom":"ASSET4","index":"0.000011789770593618"},{"denom":"ASSET5","index":"0.000000971719285773"},{"denom":"ASSET6","index":"0.000003956739313965"},{"denom":"ASSET7","index":"0.000006060014064326"},{"denom":"ASSET8","index":"0.000007908186039228"},{"denom":"ASSET9","index":"0.000003415836748573"}],"last_reward_claim_height":"74"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET6","shares":"440324166.911344840902903113","reward_history":[{"denom":"ASSET0","index":"0.000003351161845380"},{"denom":"ASSET1","index":"0.000028416485386018"},{"denom":"ASSET10","index":"0.000022605276372189"},{"denom":"ASSET11","index":"0.000028218825237526"},{"denom":"ASSET12","index":"0.000026868556551399"},{"denom":"ASSET13","index":"0.000008859853422879"},{"denom":"ASSET14","index":"0.000025912194276628"},{"denom":"ASSET15","index":"0.000020375555431981"},{"denom":"ASSET16","index":"0.000012611404420708"},{"denom":"ASSET17","index":"0.000009873044520717"},{"denom":"ASSET18","index":"0.000004095473642305"},{"denom":"ASSET2","index":"0.000008599384819082"},{"denom":"ASSET3","index":"0.000002391571176633"},{"denom":"ASSET4","index":"0.000023040021162794"},{"denom":"ASSET5","index":"0.000001862805125681"},{"denom":"ASSET6","index":"0.000007520693553142"},{"denom":"ASSET7","index":"0.000011806544930596"},{"denom":"ASSET8","index":"0.000016107343127742"},{"denom":"ASSET9","index":"0.000006840485865179"}],"last_reward_claim_height":"172"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET8","shares":"455859990.536144311397986346","reward_history":[{"denom":"ASSET0","index":"0.000004962972541432"},{"denom":"ASSET1","index":"0.000040650098665327"},{"denom":"ASSET10","index":"0.000035029276691044"},{"denom":"ASSET11","index":"0.000042155953964920"},{"denom":"ASSET12","index":"0.000040090986287408"},{"denom":"ASSET13","index":"0.000013583146547951"},{"denom":"ASSET14","index":"0.000038900128980945"},{"denom":"ASSET15","index":"0.000031463357706274"},{"denom":"ASSET16","index":"0.000018043166594771"},{"denom":"ASSET17","index":"0.000014567679910779"},{"denom":"ASSET18","index":"0.000006067375008702"},{"denom":"ASSET2","index":"0.000012265082923430"},{"denom":"ASSET3","index":"0.000003525171494558"},{"denom":"ASSET4","index":"0.000033311451785840"},{"denom":"ASSET5","index":"0.000002766894365829"},{"denom":"ASSET6","index":"0.000011292799073571"},{"denom":"ASSET7","index":"0.000017445141192124"},{"denom":"ASSET8","index":"0.000025051796020968"},{"denom":"ASSET9","index":"0.000010070586397372"}],"last_reward_claim_height":"187"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET5","shares":"279836667.669639453920831951","reward_history":[{"denom":"ASSET0","index":"0.000001711866379191"},{"denom":"ASSET1","index":"0.000014286095556473"},{"denom":"ASSET10","index":"0.000009953932372868"},{"denom":"ASSET11","index":"0.000013820467901333"},{"denom":"ASSET12","index":"0.000012444127332464"},{"denom":"ASSET13","index":"0.000004281948436482"},{"denom":"ASSET14","index":"0.000012909754987604"},{"denom":"ASSET15","index":"0.000009230383516596"},{"denom":"ASSET16","index":"0.000006434335097252"},{"denom":"ASSET17","index":"0.000004569541988186"},{"denom":"ASSET18","index":"0.000002177494034331"},{"denom":"ASSET2","index":"0.000004215756269820"},{"denom":"ASSET3","index":"0.000001232543793017"},{"denom":"ASSET4","index":"0.000011608736539419"},{"denom":"ASSET5","index":"0.000000956362683841"},{"denom":"ASSET6","index":"0.000003896207879038"},{"denom":"ASSET7","index":"0.000005968707442112"},{"denom":"ASSET8","index":"0.000007787850781065"},{"denom":"ASSET9","index":"0.000003362105568731"}],"last_reward_claim_height":"76"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET16","shares":"796597071.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003408995344605"},{"denom":"ASSET1","index":"0.000028940875589883"},{"denom":"ASSET10","index":"0.000023121939135123"},{"denom":"ASSET11","index":"0.000028765460883304"},{"denom":"ASSET12","index":"0.000027437813762181"},{"denom":"ASSET13","index":"0.000009035078182388"},{"denom":"ASSET14","index":"0.000026397840013038"},{"denom":"ASSET15","index":"0.000020822021063845"},{"denom":"ASSET16","index":"0.000012835900360827"},{"denom":"ASSET17","index":"0.000010082289518918"},{"denom":"ASSET18","index":"0.000004163537456367"},{"denom":"ASSET2","index":"0.000008764373535196"},{"denom":"ASSET3","index":"0.000002432999591430"},{"denom":"ASSET4","index":"0.000023461370966582"},{"denom":"ASSET5","index":"0.000001895172356369"},{"denom":"ASSET6","index":"0.000007651446569151"},{"denom":"ASSET7","index":"0.000012022926111771"},{"denom":"ASSET8","index":"0.000016426068411072"},{"denom":"ASSET9","index":"0.000006969965423669"}],"last_reward_claim_height":"138"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET6","shares":"850089499.550969785298262580","reward_history":[{"denom":"ASSET0","index":"0.000002975317591563"},{"denom":"ASSET1","index":"0.000025265738469637"},{"denom":"ASSET10","index":"0.000020245724387946"},{"denom":"ASSET11","index":"0.000025128558675417"},{"denom":"ASSET12","index":"0.000023998925764885"},{"denom":"ASSET13","index":"0.000007895668684136"},{"denom":"ASSET14","index":"0.000023051238668493"},{"denom":"ASSET15","index":"0.000018221178423268"},{"denom":"ASSET16","index":"0.000011202197653725"},{"denom":"ASSET17","index":"0.000008818540737002"},{"denom":"ASSET18","index":"0.000003629428323701"},{"denom":"ASSET2","index":"0.000007657107369447"},{"denom":"ASSET3","index":"0.000002122660280404"},{"denom":"ASSET4","index":"0.000020482509156357"},{"denom":"ASSET5","index":"0.000001654309607539"},{"denom":"ASSET6","index":"0.000006675356935536"},{"denom":"ASSET7","index":"0.000010494215679887"},{"denom":"ASSET8","index":"0.000014353927855523"},{"denom":"ASSET9","index":"0.000006089535217587"}],"last_reward_claim_height":"168"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET11","shares":"10611991.712462952438716832","reward_history":[{"denom":"ASSET0","index":"0.000004660804205407"},{"denom":"ASSET1","index":"0.000038057537045202"},{"denom":"ASSET10","index":"0.000033236768377738"},{"denom":"ASSET11","index":"0.000039701821838753"},{"denom":"ASSET12","index":"0.000037824613654517"},{"denom":"ASSET13","index":"0.000012834687122975"},{"denom":"ASSET14","index":"0.000036631919493883"},{"denom":"ASSET15","index":"0.000029815074691348"},{"denom":"ASSET16","index":"0.000016881501899894"},{"denom":"ASSET17","index":"0.000013727591369636"},{"denom":"ASSET18","index":"0.000005691132396522"},{"denom":"ASSET2","index":"0.000011490151771186"},{"denom":"ASSET3","index":"0.000003308008506911"},{"denom":"ASSET4","index":"0.000031222727917954"},{"denom":"ASSET5","index":"0.000002599510414053"},{"denom":"ASSET6","index":"0.000010619768184658"},{"denom":"ASSET7","index":"0.000016390179065509"},{"denom":"ASSET8","index":"0.000023706313213553"},{"denom":"ASSET9","index":"0.000009466987970942"}],"last_reward_claim_height":"195"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET1","shares":"962865782.444114894309305720","reward_history":[{"denom":"ASSET0","index":"0.000001617402557586"},{"denom":"ASSET1","index":"0.000013485147451276"},{"denom":"ASSET10","index":"0.000009395521488362"},{"denom":"ASSET11","index":"0.000013045402724081"},{"denom":"ASSET12","index":"0.000011747619504798"},{"denom":"ASSET13","index":"0.000004042433845849"},{"denom":"ASSET14","index":"0.000012186291683878"},{"denom":"ASSET15","index":"0.000008713380887153"},{"denom":"ASSET16","index":"0.000006074912523982"},{"denom":"ASSET17","index":"0.000004313788518972"},{"denom":"ASSET18","index":"0.000002055002188551"},{"denom":"ASSET2","index":"0.000003980226055173"},{"denom":"ASSET3","index":"0.000001163714704894"},{"denom":"ASSET4","index":"0.000010959296640193"},{"denom":"ASSET5","index":"0.000000903085512923"},{"denom":"ASSET6","index":"0.000003677767486712"},{"denom":"ASSET7","index":"0.000005633022700557"},{"denom":"ASSET8","index":"0.000007351244780963"},{"denom":"ASSET9","index":"0.000003174742420725"}],"last_reward_claim_height":"94"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET10","shares":"256357970.000000002563579700","reward_history":[{"denom":"ASSET0","index":"0.000003091273620954"},{"denom":"ASSET1","index":"0.000026212594205506"},{"denom":"ASSET10","index":"0.000020831747389799"},{"denom":"ASSET11","index":"0.000026024829344923"},{"denom":"ASSET12","index":"0.000024768925461013"},{"denom":"ASSET13","index":"0.000008170539761157"},{"denom":"ASSET14","index":"0.000023900540063840"},{"denom":"ASSET15","index":"0.000018780610027247"},{"denom":"ASSET16","index":"0.000011634658240098"},{"denom":"ASSET17","index":"0.000009101405984603"},{"denom":"ASSET18","index":"0.000003780149264156"},{"denom":"ASSET2","index":"0.000007930960667726"},{"denom":"ASSET3","index":"0.000002206123035767"},{"denom":"ASSET4","index":"0.000021253166889363"},{"denom":"ASSET5","index":"0.000001718500807532"},{"denom":"ASSET6","index":"0.000006939076737962"},{"denom":"ASSET7","index":"0.000010891166816552"},{"denom":"ASSET8","index":"0.000014853628574871"},{"denom":"ASSET9","index":"0.000006308302102729"}],"last_reward_claim_height":"147"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET0","shares":"78426287.086320401082927021","reward_history":[{"denom":"ASSET0","index":"0.000003012098530886"},{"denom":"ASSET1","index":"0.000025562058034330"},{"denom":"ASSET10","index":"0.000020450222858637"},{"denom":"ASSET11","index":"0.000025414193224582"},{"denom":"ASSET12","index":"0.000024256065084933"},{"denom":"ASSET13","index":"0.000007984561416691"},{"denom":"ASSET14","index":"0.000023318358139730"},{"denom":"ASSET15","index":"0.000018411259079989"},{"denom":"ASSET16","index":"0.000011336678183578"},{"denom":"ASSET17","index":"0.000008913774138499"},{"denom":"ASSET18","index":"0.000003674960609183"},{"denom":"ASSET2","index":"0.000007744948932800"},{"denom":"ASSET3","index":"0.000002148867969989"},{"denom":"ASSET4","index":"0.000020722540912428"},{"denom":"ASSET5","index":"0.000001674229864542"},{"denom":"ASSET6","index":"0.000006756080138401"},{"denom":"ASSET7","index":"0.000010618450136599"},{"denom":"ASSET8","index":"0.000014514789998911"},{"denom":"ASSET9","index":"0.000006159565713194"}],"last_reward_claim_height":"171"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET11","shares":"160247513.828891231898405600","reward_history":[{"denom":"ASSET0","index":"0.000003012098530886"},{"denom":"ASSET1","index":"0.000025562058034330"},{"denom":"ASSET10","index":"0.000020450222858637"},{"denom":"ASSET11","index":"0.000025414193224582"},{"denom":"ASSET12","index":"0.000024256065084933"},{"denom":"ASSET13","index":"0.000007984561416691"},{"denom":"ASSET14","index":"0.000023318358139730"},{"denom":"ASSET15","index":"0.000018411259079989"},{"denom":"ASSET16","index":"0.000011336678183578"},{"denom":"ASSET17","index":"0.000008913774138499"},{"denom":"ASSET18","index":"0.000003674960609183"},{"denom":"ASSET2","index":"0.000007744948932800"},{"denom":"ASSET3","index":"0.000002148867969989"},{"denom":"ASSET4","index":"0.000020722540912428"},{"denom":"ASSET5","index":"0.000001674229864542"},{"denom":"ASSET6","index":"0.000006756080138401"},{"denom":"ASSET7","index":"0.000010618450136599"},{"denom":"ASSET8","index":"0.000014514789998911"},{"denom":"ASSET9","index":"0.000006159565713194"}],"last_reward_claim_height":"127"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET12","shares":"62899163.888149979858580725","reward_history":[{"denom":"ASSET0","index":"0.000003012098530886"},{"denom":"ASSET1","index":"0.000025562058034330"},{"denom":"ASSET10","index":"0.000020450222858637"},{"denom":"ASSET11","index":"0.000025414193224582"},{"denom":"ASSET12","index":"0.000024256065084933"},{"denom":"ASSET13","index":"0.000007984561416691"},{"denom":"ASSET14","index":"0.000023318358139730"},{"denom":"ASSET15","index":"0.000018411259079989"},{"denom":"ASSET16","index":"0.000011336678183578"},{"denom":"ASSET17","index":"0.000008913774138499"},{"denom":"ASSET18","index":"0.000003674960609183"},{"denom":"ASSET2","index":"0.000007744948932800"},{"denom":"ASSET3","index":"0.000002148867969989"},{"denom":"ASSET4","index":"0.000020722540912428"},{"denom":"ASSET5","index":"0.000001674229864542"},{"denom":"ASSET6","index":"0.000006756080138401"},{"denom":"ASSET7","index":"0.000010618450136599"},{"denom":"ASSET8","index":"0.000014514789998911"},{"denom":"ASSET9","index":"0.000006159565713194"}],"last_reward_claim_height":"124"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET13","shares":"84270541.521896630706135626","reward_history":[{"denom":"ASSET0","index":"0.000001496654334782"},{"denom":"ASSET1","index":"0.000012477377024436"},{"denom":"ASSET10","index":"0.000008693096469902"},{"denom":"ASSET11","index":"0.000012070207597683"},{"denom":"ASSET12","index":"0.000010869145414891"},{"denom":"ASSET13","index":"0.000003740467488528"},{"denom":"ASSET14","index":"0.000011275146493218"},{"denom":"ASSET15","index":"0.000008061604145195"},{"denom":"ASSET16","index":"0.000005620924281527"},{"denom":"ASSET17","index":"0.000003991662400298"},{"denom":"ASSET18","index":"0.000001901487064682"},{"denom":"ASSET2","index":"0.000003683218415613"},{"denom":"ASSET3","index":"0.000001077217249546"},{"denom":"ASSET4","index":"0.000010139511822330"},{"denom":"ASSET5","index":"0.000000835953299404"},{"denom":"ASSET6","index":"0.000003403398967385"},{"denom":"ASSET7","index":"0.000005212586506346"},{"denom":"ASSET8","index":"0.000006801540366848"},{"denom":"ASSET9","index":"0.000002937812119289"}],"last_reward_claim_height":"83"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET2","shares":"222078908.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001470615438656"},{"denom":"ASSET1","index":"0.000012263141624205"},{"denom":"ASSET10","index":"0.000008543710077270"},{"denom":"ASSET11","index":"0.000011863435889596"},{"denom":"ASSET12","index":"0.000010682701378752"},{"denom":"ASSET13","index":"0.000003676538596641"},{"denom":"ASSET14","index":"0.000011081935762259"},{"denom":"ASSET15","index":"0.000007923412026863"},{"denom":"ASSET16","index":"0.000005524234917004"},{"denom":"ASSET17","index":"0.000003923055223056"},{"denom":"ASSET18","index":"0.000001868907119959"},{"denom":"ASSET2","index":"0.000003619976464385"},{"denom":"ASSET3","index":"0.000001058654575392"},{"denom":"ASSET4","index":"0.000009965776352407"},{"denom":"ASSET5","index":"0.000000822036322121"},{"denom":"ASSET6","index":"0.000003345178771841"},{"denom":"ASSET7","index":"0.000005123115129088"},{"denom":"ASSET8","index":"0.000006685172681558"},{"denom":"ASSET9","index":"0.000002887496851669"}],"last_reward_claim_height":"75"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET3","shares":"588182904.000000011823634192","reward_history":[],"last_reward_claim_height":"53"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET15","shares":"81012401.000000003040074681","reward_history":[],"last_reward_claim_height":"52"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET18","shares":"228318436.672620298634897943","reward_history":[{"denom":"ASSET0","index":"0.000002995147819628"},{"denom":"ASSET1","index":"0.000025426980115999"},{"denom":"ASSET10","index":"0.000020372034738960"},{"denom":"ASSET11","index":"0.000025287989623967"},{"denom":"ASSET12","index":"0.000024150599022202"},{"denom":"ASSET13","index":"0.000007946076587902"},{"denom":"ASSET14","index":"0.000023198024872944"},{"denom":"ASSET15","index":"0.000018335727027304"},{"denom":"ASSET16","index":"0.000011274635486105"},{"denom":"ASSET17","index":"0.000008875015361763"},{"denom":"ASSET18","index":"0.000003653177061349"},{"denom":"ASSET2","index":"0.000007706361997735"},{"denom":"ASSET3","index":"0.000002137037997503"},{"denom":"ASSET4","index":"0.000020612735071168"},{"denom":"ASSET5","index":"0.000001665450131859"},{"denom":"ASSET6","index":"0.000006718182222688"},{"denom":"ASSET7","index":"0.000010561635089256"},{"denom":"ASSET8","index":"0.000014445035982826"},{"denom":"ASSET9","index":"0.000006128513210961"}],"last_reward_claim_height":"142"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET5","shares":"676191291.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001778581753434"},{"denom":"ASSET1","index":"0.000014888315804569"},{"denom":"ASSET10","index":"0.000010370885153828"},{"denom":"ASSET11","index":"0.000014404007158094"},{"denom":"ASSET12","index":"0.000012967781516823"},{"denom":"ASSET13","index":"0.000004458979607201"},{"denom":"ASSET14","index":"0.000013452090163298"},{"denom":"ASSET15","index":"0.000009619371736884"},{"denom":"ASSET16","index":"0.000006705169708956"},{"denom":"ASSET17","index":"0.000004759584973979"},{"denom":"ASSET18","index":"0.000002262890399909"},{"denom":"ASSET2","index":"0.000004392178414584"},{"denom":"ASSET3","index":"0.000001285922957882"},{"denom":"ASSET4","index":"0.000012099366012799"},{"denom":"ASSET5","index":"0.000000993667740182"},{"denom":"ASSET6","index":"0.000004058172451498"},{"denom":"ASSET7","index":"0.000006220861062481"},{"denom":"ASSET8","index":"0.000008116344902996"},{"denom":"ASSET9","index":"0.000003507062612406"}],"last_reward_claim_height":"82"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET8","shares":"245514235.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001778581753434"},{"denom":"ASSET1","index":"0.000014888315804569"},{"denom":"ASSET10","index":"0.000010370885153828"},{"denom":"ASSET11","index":"0.000014404007158094"},{"denom":"ASSET12","index":"0.000012967781516823"},{"denom":"ASSET13","index":"0.000004458979607201"},{"denom":"ASSET14","index":"0.000013452090163298"},{"denom":"ASSET15","index":"0.000009619371736884"},{"denom":"ASSET16","index":"0.000006705169708956"},{"denom":"ASSET17","index":"0.000004759584973979"},{"denom":"ASSET18","index":"0.000002262890399909"},{"denom":"ASSET2","index":"0.000004392178414584"},{"denom":"ASSET3","index":"0.000001285922957882"},{"denom":"ASSET4","index":"0.000012099366012799"},{"denom":"ASSET5","index":"0.000000993667740182"},{"denom":"ASSET6","index":"0.000004058172451498"},{"denom":"ASSET7","index":"0.000006220861062481"},{"denom":"ASSET8","index":"0.000008116344902996"},{"denom":"ASSET9","index":"0.000003507062612406"}],"last_reward_claim_height":"87"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET10","shares":"432693787.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001778581753434"},{"denom":"ASSET1","index":"0.000014888315804569"},{"denom":"ASSET10","index":"0.000010370885153828"},{"denom":"ASSET11","index":"0.000014404007158094"},{"denom":"ASSET12","index":"0.000012967781516823"},{"denom":"ASSET13","index":"0.000004458979607201"},{"denom":"ASSET14","index":"0.000013452090163298"},{"denom":"ASSET15","index":"0.000009619371736884"},{"denom":"ASSET16","index":"0.000006705169708956"},{"denom":"ASSET17","index":"0.000004759584973979"},{"denom":"ASSET18","index":"0.000002262890399909"},{"denom":"ASSET2","index":"0.000004392178414584"},{"denom":"ASSET3","index":"0.000001285922957882"},{"denom":"ASSET4","index":"0.000012099366012799"},{"denom":"ASSET5","index":"0.000000993667740182"},{"denom":"ASSET6","index":"0.000004058172451498"},{"denom":"ASSET7","index":"0.000006220861062481"},{"denom":"ASSET8","index":"0.000008116344902996"},{"denom":"ASSET9","index":"0.000003507062612406"}],"last_reward_claim_height":"82"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET11","shares":"36680921.000000007504972737","reward_history":[],"last_reward_claim_height":"62"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET14","shares":"425307813.082276497277782096","reward_history":[{"denom":"ASSET0","index":"0.000003356752793751"},{"denom":"ASSET1","index":"0.000028516406305775"},{"denom":"ASSET10","index":"0.000022616173055400"},{"denom":"ASSET11","index":"0.000028302061322789"},{"denom":"ASSET12","index":"0.000026910491325102"},{"denom":"ASSET13","index":"0.000008878873421079"},{"denom":"ASSET14","index":"0.000025995251505598"},{"denom":"ASSET15","index":"0.000020398635157595"},{"denom":"ASSET16","index":"0.000012658071469071"},{"denom":"ASSET17","index":"0.000009885849877285"},{"denom":"ASSET18","index":"0.000004110010202724"},{"denom":"ASSET2","index":"0.000008622285743228"},{"denom":"ASSET3","index":"0.000002402314047495"},{"denom":"ASSET4","index":"0.000023121698220749"},{"denom":"ASSET5","index":"0.000001866482592061"},{"denom":"ASSET6","index":"0.000007549939309511"},{"denom":"ASSET7","index":"0.000011851024307599"},{"denom":"ASSET8","index":"0.000016149793693754"},{"denom":"ASSET9","index":"0.000006862325287189"}],"last_reward_claim_height":"142"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET7","shares":"599510726.000000000000000000","reward_history":[],"last_reward_claim_height":"9"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET9","shares":"910330246.490371807341312300","reward_history":[{"denom":"ASSET0","index":"0.000004836979013225"},{"denom":"ASSET1","index":"0.000039577282529760"},{"denom":"ASSET10","index":"0.000034314822965027"},{"denom":"ASSET11","index":"0.000041143647196390"},{"denom":"ASSET12","index":"0.000039175131964155"},{"denom":"ASSET13","index":"0.000013275183327871"},{"denom":"ASSET14","index":"0.000037958187432774"},{"denom":"ASSET15","index":"0.000030799620771454"},{"denom":"ASSET16","index":"0.000017560332811566"},{"denom":"ASSET17","index":"0.000014229600019779"},{"denom":"ASSET18","index":"0.000005908428628636"},{"denom":"ASSET2","index":"0.000011948073948502"},{"denom":"ASSET3","index":"0.000003434959854289"},{"denom":"ASSET4","index":"0.000032444397664905"},{"denom":"ASSET5","index":"0.000002697479070199"},{"denom":"ASSET6","index":"0.000011009822966557"},{"denom":"ASSET7","index":"0.000017006174923380"},{"denom":"ASSET8","index":"0.000024496113573743"},{"denom":"ASSET9","index":"0.000009822002615441"}],"last_reward_claim_height":"198"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET13","shares":"708970908.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003200268554223"},{"denom":"ASSET1","index":"0.000027155061035589"},{"denom":"ASSET10","index":"0.000021699312128992"},{"denom":"ASSET11","index":"0.000026991580254755"},{"denom":"ASSET12","index":"0.000025748970079650"},{"denom":"ASSET13","index":"0.000008479073830121"},{"denom":"ASSET14","index":"0.000024769827936089"},{"denom":"ASSET15","index":"0.000019540730612944"},{"denom":"ASSET16","index":"0.000012044995213579"},{"denom":"ASSET17","index":"0.000009462424001901"},{"denom":"ASSET18","index":"0.000003906197580725"},{"denom":"ASSET2","index":"0.000008225756082433"},{"denom":"ASSET3","index":"0.000002283784004254"},{"denom":"ASSET4","index":"0.000022014648589339"},{"denom":"ASSET5","index":"0.000001779311895342"},{"denom":"ASSET6","index":"0.000007179475362032"},{"denom":"ASSET7","index":"0.000011280598785262"},{"denom":"ASSET8","index":"0.000015413911362487"},{"denom":"ASSET9","index":"0.000006542247148589"}],"last_reward_claim_height":"146"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET16","shares":"761639522.999494898947694952","reward_history":[],"last_reward_claim_height":"29"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET18","shares":"16514044.573704854030517640","reward_history":[{"denom":"ASSET0","index":"0.000003200268554223"},{"denom":"ASSET1","index":"0.000027155061035589"},{"denom":"ASSET10","index":"0.000021699312128992"},{"denom":"ASSET11","index":"0.000026991580254755"},{"denom":"ASSET12","index":"0.000025748970079650"},{"denom":"ASSET13","index":"0.000008479073830121"},{"denom":"ASSET14","index":"0.000024769827936089"},{"denom":"ASSET15","index":"0.000019540730612944"},{"denom":"ASSET16","index":"0.000012044995213579"},{"denom":"ASSET17","index":"0.000009462424001901"},{"denom":"ASSET18","index":"0.000003906197580725"},{"denom":"ASSET2","index":"0.000008225756082433"},{"denom":"ASSET3","index":"0.000002283784004254"},{"denom":"ASSET4","index":"0.000022014648589339"},{"denom":"ASSET5","index":"0.000001779311895342"},{"denom":"ASSET6","index":"0.000007179475362032"},{"denom":"ASSET7","index":"0.000011280598785262"},{"denom":"ASSET8","index":"0.000015413911362487"},{"denom":"ASSET9","index":"0.000006542247148589"}],"last_reward_claim_height":"168"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET15","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001620184629837"},{"denom":"ASSET1","index":"0.000013508113244239"},{"denom":"ASSET10","index":"0.000009411159415052"},{"denom":"ASSET11","index":"0.000013068550109883"},{"denom":"ASSET12","index":"0.000011766766981214"},{"denom":"ASSET13","index":"0.000004049052718392"},{"denom":"ASSET14","index":"0.000012206330115570"},{"denom":"ASSET15","index":"0.000008726455301921"},{"denom":"ASSET16","index":"0.000006083441070987"},{"denom":"ASSET17","index":"0.000004319553108765"},{"denom":"ASSET18","index":"0.000002056930051793"},{"denom":"ASSET2","index":"0.000003987063045598"},{"denom":"ASSET3","index":"0.000001166532933482"},{"denom":"ASSET4","index":"0.000010977807509294"},{"denom":"ASSET5","index":"0.000000904485680309"},{"denom":"ASSET6","index":"0.000003682750106429"},{"denom":"ASSET7","index":"0.000005643877936631"},{"denom":"ASSET8","index":"0.000007362682500458"},{"denom":"ASSET9","index":"0.000003178379586880"}],"last_reward_claim_height":"119"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET6","shares":"359965199.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001565910537906"},{"denom":"ASSET1","index":"0.000013053983025959"},{"denom":"ASSET10","index":"0.000009094819386579"},{"denom":"ASSET11","index":"0.000012628414118813"},{"denom":"ASSET12","index":"0.000011371841840295"},{"denom":"ASSET13","index":"0.000003913403541838"},{"denom":"ASSET14","index":"0.000011796953146466"},{"denom":"ASSET15","index":"0.000008434501179040"},{"denom":"ASSET16","index":"0.000005880630135191"},{"denom":"ASSET17","index":"0.000004176066501732"},{"denom":"ASSET18","index":"0.000001989191440174"},{"denom":"ASSET2","index":"0.000003853457814057"},{"denom":"ASSET3","index":"0.000001127071202473"},{"denom":"ASSET4","index":"0.000010608563413286"},{"denom":"ASSET5","index":"0.000000874933065013"},{"denom":"ASSET6","index":"0.000003561050790760"},{"denom":"ASSET7","index":"0.000005453688425119"},{"denom":"ASSET8","index":"0.000007116152768840"},{"denom":"ASSET9","index":"0.000003073705751932"}],"last_reward_claim_height":"121"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET0","shares":"125420766.766971359475610197","reward_history":[{"denom":"ASSET0","index":"0.000003010548827117"},{"denom":"ASSET1","index":"0.000025517681435823"},{"denom":"ASSET10","index":"0.000020207909525991"},{"denom":"ASSET11","index":"0.000025316824190850"},{"denom":"ASSET12","index":"0.000024059273468565"},{"denom":"ASSET13","index":"0.000007945703994160"},{"denom":"ASSET14","index":"0.000023261456497592"},{"denom":"ASSET15","index":"0.000018230653165683"},{"denom":"ASSET16","index":"0.000011330852554208"},{"denom":"ASSET17","index":"0.000008840468160143"},{"denom":"ASSET18","index":"0.000003685449036638"},{"denom":"ASSET2","index":"0.000007715875534239"},{"denom":"ASSET3","index":"0.000002150116713749"},{"denom":"ASSET4","index":"0.000020690763011385"},{"denom":"ASSET5","index":"0.000001674170167376"},{"denom":"ASSET6","index":"0.000006761947340508"},{"denom":"ASSET7","index":"0.000010605047135869"},{"denom":"ASSET8","index":"0.000014444866674878"},{"denom":"ASSET9","index":"0.000006137206230949"}],"last_reward_claim_height":"182"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET5","shares":"169059653.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001616793771814"},{"denom":"ASSET1","index":"0.000013481664806896"},{"denom":"ASSET10","index":"0.000009392973001731"},{"denom":"ASSET11","index":"0.000013042136425966"},{"denom":"ASSET12","index":"0.000011745108533466"},{"denom":"ASSET13","index":"0.000004041984429535"},{"denom":"ASSET14","index":"0.000012183439289380"},{"denom":"ASSET15","index":"0.000008710326742521"},{"denom":"ASSET16","index":"0.000006073156456940"},{"denom":"ASSET17","index":"0.000004312647683187"},{"denom":"ASSET18","index":"0.000002053926902712"},{"denom":"ASSET2","index":"0.000003979707928695"},{"denom":"ASSET3","index":"0.000001164091515706"},{"denom":"ASSET4","index":"0.000010955873647818"},{"denom":"ASSET5","index":"0.000000903009262183"},{"denom":"ASSET6","index":"0.000003677906424623"},{"denom":"ASSET7","index":"0.000005632430450993"},{"denom":"ASSET8","index":"0.000007349824724165"},{"denom":"ASSET9","index":"0.000003173706292820"}],"last_reward_claim_height":"92"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET11","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003010548827117"},{"denom":"ASSET1","index":"0.000025517681435823"},{"denom":"ASSET10","index":"0.000020207909525991"},{"denom":"ASSET11","index":"0.000025316824190850"},{"denom":"ASSET12","index":"0.000024059273468565"},{"denom":"ASSET13","index":"0.000007945703994160"},{"denom":"ASSET14","index":"0.000023261456497592"},{"denom":"ASSET15","index":"0.000018230653165683"},{"denom":"ASSET16","index":"0.000011330852554208"},{"denom":"ASSET17","index":"0.000008840468160143"},{"denom":"ASSET18","index":"0.000003685449036638"},{"denom":"ASSET2","index":"0.000007715875534239"},{"denom":"ASSET3","index":"0.000002150116713749"},{"denom":"ASSET4","index":"0.000020690763011385"},{"denom":"ASSET5","index":"0.000001674170167376"},{"denom":"ASSET6","index":"0.000006761947340508"},{"denom":"ASSET7","index":"0.000010605047135869"},{"denom":"ASSET8","index":"0.000014444866674878"},{"denom":"ASSET9","index":"0.000006137206230949"}],"last_reward_claim_height":"145"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET13","shares":"101735298.462414180341389900","reward_history":[{"denom":"ASSET0","index":"0.000003010548827117"},{"denom":"ASSET1","index":"0.000025517681435823"},{"denom":"ASSET10","index":"0.000020207909525991"},{"denom":"ASSET11","index":"0.000025316824190850"},{"denom":"ASSET12","index":"0.000024059273468565"},{"denom":"ASSET13","index":"0.000007945703994160"},{"denom":"ASSET14","index":"0.000023261456497592"},{"denom":"ASSET15","index":"0.000018230653165683"},{"denom":"ASSET16","index":"0.000011330852554208"},{"denom":"ASSET17","index":"0.000008840468160143"},{"denom":"ASSET18","index":"0.000003685449036638"},{"denom":"ASSET2","index":"0.000007715875534239"},{"denom":"ASSET3","index":"0.000002150116713749"},{"denom":"ASSET4","index":"0.000020690763011385"},{"denom":"ASSET5","index":"0.000001674170167376"},{"denom":"ASSET6","index":"0.000006761947340508"},{"denom":"ASSET7","index":"0.000010605047135869"},{"denom":"ASSET8","index":"0.000014444866674878"},{"denom":"ASSET9","index":"0.000006137206230949"}],"last_reward_claim_height":"161"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET16","shares":"5731164.000000011931226032","reward_history":[],"last_reward_claim_height":"45"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET17","shares":"664734651.030464055634853494","reward_history":[{"denom":"ASSET0","index":"0.000003010548827117"},{"denom":"ASSET1","index":"0.000025517681435823"},{"denom":"ASSET10","index":"0.000020207909525991"},{"denom":"ASSET11","index":"0.000025316824190850"},{"denom":"ASSET12","index":"0.000024059273468565"},{"denom":"ASSET13","index":"0.000007945703994160"},{"denom":"ASSET14","index":"0.000023261456497592"},{"denom":"ASSET15","index":"0.000018230653165683"},{"denom":"ASSET16","index":"0.000011330852554208"},{"denom":"ASSET17","index":"0.000008840468160143"},{"denom":"ASSET18","index":"0.000003685449036638"},{"denom":"ASSET2","index":"0.000007715875534239"},{"denom":"ASSET3","index":"0.000002150116713749"},{"denom":"ASSET4","index":"0.000020690763011385"},{"denom":"ASSET5","index":"0.000001674170167376"},{"denom":"ASSET6","index":"0.000006761947340508"},{"denom":"ASSET7","index":"0.000010605047135869"},{"denom":"ASSET8","index":"0.000014444866674878"},{"denom":"ASSET9","index":"0.000006137206230949"}],"last_reward_claim_height":"129"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET0","shares":"554038534.000000000000000000","reward_history":[],"last_reward_claim_height":"55"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET9","shares":"655711141.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001598496813351"},{"denom":"ASSET1","index":"0.000013327209301876"},{"denom":"ASSET10","index":"0.000009285082513510"},{"denom":"ASSET11","index":"0.000012892549064690"},{"denom":"ASSET12","index":"0.000011609910099638"},{"denom":"ASSET13","index":"0.000003995530641827"},{"denom":"ASSET14","index":"0.000012043503249499"},{"denom":"ASSET15","index":"0.000008611039019674"},{"denom":"ASSET16","index":"0.000006003788988106"},{"denom":"ASSET17","index":"0.000004263725256261"},{"denom":"ASSET18","index":"0.000002031022875886"},{"denom":"ASSET2","index":"0.000003933995272733"},{"denom":"ASSET3","index":"0.000001150675832486"},{"denom":"ASSET4","index":"0.000010830580656369"},{"denom":"ASSET5","index":"0.000000893152091305"},{"denom":"ASSET6","index":"0.000003635566517414"},{"denom":"ASSET7","index":"0.000005567705967820"},{"denom":"ASSET8","index":"0.000007265086206652"},{"denom":"ASSET9","index":"0.000003137948128033"}],"last_reward_claim_height":"80"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET11","shares":"326059435.999999996403367905","reward_history":[],"last_reward_claim_height":"32"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET17","shares":"649740678.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003202417698287"},{"denom":"ASSET1","index":"0.000027176874960756"},{"denom":"ASSET10","index":"0.000021729724210241"},{"denom":"ASSET11","index":"0.000027016578438308"},{"denom":"ASSET12","index":"0.000025779554956391"},{"denom":"ASSET13","index":"0.000008487649506725"},{"denom":"ASSET14","index":"0.000024790682929963"},{"denom":"ASSET15","index":"0.000019565798539307"},{"denom":"ASSET16","index":"0.000012053877846841"},{"denom":"ASSET17","index":"0.000009473617164606"},{"denom":"ASSET18","index":"0.000003908301251667"},{"denom":"ASSET2","index":"0.000008233254558201"},{"denom":"ASSET3","index":"0.000002285025567503"},{"denom":"ASSET4","index":"0.000022032200437673"},{"denom":"ASSET5","index":"0.000001780306156687"},{"denom":"ASSET6","index":"0.000007184182778940"},{"denom":"ASSET7","index":"0.000011289430429576"},{"denom":"ASSET8","index":"0.000015429251463912"},{"denom":"ASSET9","index":"0.000006548040900334"}],"last_reward_claim_height":"133"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET18","shares":"8469756.010981904913536323","reward_history":[{"denom":"ASSET0","index":"0.000003202417698287"},{"denom":"ASSET1","index":"0.000027176874960756"},{"denom":"ASSET10","index":"0.000021729724210241"},{"denom":"ASSET11","index":"0.000027016578438308"},{"denom":"ASSET12","index":"0.000025779554956391"},{"denom":"ASSET13","index":"0.000008487649506725"},{"denom":"ASSET14","index":"0.000024790682929963"},{"denom":"ASSET15","index":"0.000019565798539307"},{"denom":"ASSET16","index":"0.000012053877846841"},{"denom":"ASSET17","index":"0.000009473617164606"},{"denom":"ASSET18","index":"0.000003908301251667"},{"denom":"ASSET2","index":"0.000008233254558201"},{"denom":"ASSET3","index":"0.000002285025567503"},{"denom":"ASSET4","index":"0.000022032200437673"},{"denom":"ASSET5","index":"0.000001780306156687"},{"denom":"ASSET6","index":"0.000007184182778940"},{"denom":"ASSET7","index":"0.000011289430429576"},{"denom":"ASSET8","index":"0.000015429251463912"},{"denom":"ASSET9","index":"0.000006548040900334"}],"last_reward_claim_height":"128"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET4","shares":"471407096.999999966875858812","reward_history":[{"denom":"ASSET0","index":"0.000001349258766758"},{"denom":"ASSET1","index":"0.000011264433664868"},{"denom":"ASSET10","index":"0.000007848225297969"},{"denom":"ASSET11","index":"0.000010895650990484"},{"denom":"ASSET12","index":"0.000009811385762205"},{"denom":"ASSET13","index":"0.000003376459336127"},{"denom":"ASSET14","index":"0.000010177960157102"},{"denom":"ASSET15","index":"0.000007278489190238"},{"denom":"ASSET16","index":"0.000005074626261883"},{"denom":"ASSET17","index":"0.000003603912123322"},{"denom":"ASSET18","index":"0.000001715833161655"},{"denom":"ASSET2","index":"0.000003323460628431"},{"denom":"ASSET3","index":"0.000000971642974425"},{"denom":"ASSET4","index":"0.000009153318474981"},{"denom":"ASSET5","index":"0.000000753023305179"},{"denom":"ASSET6","index":"0.000003071716766875"},{"denom":"ASSET7","index":"0.000004705843587499"},{"denom":"ASSET8","index":"0.000006139016974776"},{"denom":"ASSET9","index":"0.000002652143664283"}],"last_reward_claim_height":"117"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET7","shares":"205931760.454396412952705016","reward_history":[{"denom":"ASSET0","index":"0.000002874619638549"},{"denom":"ASSET1","index":"0.000024442633186143"},{"denom":"ASSET10","index":"0.000019689737510784"},{"denom":"ASSET11","index":"0.000024334399718263"},{"denom":"ASSET12","index":"0.000023294058494145"},{"denom":"ASSET13","index":"0.000007650065286478"},{"denom":"ASSET14","index":"0.000022306974942610"},{"denom":"ASSET15","index":"0.000017702453996022"},{"denom":"ASSET16","index":"0.000010830667352685"},{"denom":"ASSET17","index":"0.000008561334956642"},{"denom":"ASSET18","index":"0.000003501743239949"},{"denom":"ASSET2","index":"0.000007413384379561"},{"denom":"ASSET3","index":"0.000002050775894848"},{"denom":"ASSET4","index":"0.000019811877393900"},{"denom":"ASSET5","index":"0.000001596563839644"},{"denom":"ASSET6","index":"0.000006447875450380"},{"denom":"ASSET7","index":"0.000010149425285061"},{"denom":"ASSET8","index":"0.000013906577801610"},{"denom":"ASSET9","index":"0.000005896530335304"}],"last_reward_claim_height":"177"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET13","shares":"981561513.891951469523061657","reward_history":[{"denom":"ASSET0","index":"0.000002874619638549"},{"denom":"ASSET1","index":"0.000024442633186143"},{"denom":"ASSET10","index":"0.000019689737510784"},{"denom":"ASSET11","index":"0.000024334399718263"},{"denom":"ASSET12","index":"0.000023294058494145"},{"denom":"ASSET13","index":"0.000007650065286478"},{"denom":"ASSET14","index":"0.000022306974942610"},{"denom":"ASSET15","index":"0.000017702453996022"},{"denom":"ASSET16","index":"0.000010830667352685"},{"denom":"ASSET17","index":"0.000008561334956642"},{"denom":"ASSET18","index":"0.000003501743239949"},{"denom":"ASSET2","index":"0.000007413384379561"},{"denom":"ASSET3","index":"0.000002050775894848"},{"denom":"ASSET4","index":"0.000019811877393900"},{"denom":"ASSET5","index":"0.000001596563839644"},{"denom":"ASSET6","index":"0.000006447875450380"},{"denom":"ASSET7","index":"0.000010149425285061"},{"denom":"ASSET8","index":"0.000013906577801610"},{"denom":"ASSET9","index":"0.000005896530335304"}],"last_reward_claim_height":"133"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET16","shares":"1055205174.395195398400086414","reward_history":[{"denom":"ASSET0","index":"0.000004345312717672"},{"denom":"ASSET1","index":"0.000035604481385598"},{"denom":"ASSET10","index":"0.000031025251807557"},{"denom":"ASSET11","index":"0.000037050439443017"},{"denom":"ASSET12","index":"0.000035357849973215"},{"denom":"ASSET13","index":"0.000011959438767370"},{"denom":"ASSET14","index":"0.000034157085094566"},{"denom":"ASSET15","index":"0.000027818837624992"},{"denom":"ASSET16","index":"0.000015786420178891"},{"denom":"ASSET17","index":"0.000012844831922266"},{"denom":"ASSET18","index":"0.000005300827971603"},{"denom":"ASSET2","index":"0.000010757857285958"},{"denom":"ASSET3","index":"0.000003085036200990"},{"denom":"ASSET4","index":"0.000029183444212257"},{"denom":"ASSET5","index":"0.000002421411109851"},{"denom":"ASSET6","index":"0.000009889451981084"},{"denom":"ASSET7","index":"0.000015294049995907"},{"denom":"ASSET8","index":"0.000022067283766323"},{"denom":"ASSET9","index":"0.000008843518625722"}],"last_reward_claim_height":"188"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET1","shares":"216180761.000000000000000000","reward_history":[],"last_reward_claim_height":"47"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET2","shares":"155874978.000000000000000000","reward_history":[],"last_reward_claim_height":"21"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET3","shares":"356226123.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003377008276018"},{"denom":"ASSET1","index":"0.000028642142456639"},{"denom":"ASSET10","index":"0.000022800592191853"},{"denom":"ASSET11","index":"0.000028447577997463"},{"denom":"ASSET12","index":"0.000027093635853923"},{"denom":"ASSET13","index":"0.000008933092474106"},{"denom":"ASSET14","index":"0.000026119259559896"},{"denom":"ASSET15","index":"0.000020548756595198"},{"denom":"ASSET16","index":"0.000012710670192565"},{"denom":"ASSET17","index":"0.000009956402105067"},{"denom":"ASSET18","index":"0.000004127475104327"},{"denom":"ASSET2","index":"0.000008669602227225"},{"denom":"ASSET3","index":"0.000002410895003349"},{"denom":"ASSET4","index":"0.000023222264254358"},{"denom":"ASSET5","index":"0.000001877874241403"},{"denom":"ASSET6","index":"0.000007579654674160"},{"denom":"ASSET7","index":"0.000011900488798179"},{"denom":"ASSET8","index":"0.000016239324105118"},{"denom":"ASSET9","index":"0.000006895771583569"}],"last_reward_claim_height":"181"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET17","shares":"9038364.262471371367642432","reward_history":[{"denom":"ASSET0","index":"0.000003377008276018"},{"denom":"ASSET1","index":"0.000028642142456639"},{"denom":"ASSET10","index":"0.000022800592191853"},{"denom":"ASSET11","index":"0.000028447577997463"},{"denom":"ASSET12","index":"0.000027093635853923"},{"denom":"ASSET13","index":"0.000008933092474106"},{"denom":"ASSET14","index":"0.000026119259559896"},{"denom":"ASSET15","index":"0.000020548756595198"},{"denom":"ASSET16","index":"0.000012710670192565"},{"denom":"ASSET17","index":"0.000009956402105067"},{"denom":"ASSET18","index":"0.000004127475104327"},{"denom":"ASSET2","index":"0.000008669602227225"},{"denom":"ASSET3","index":"0.000002410895003349"},{"denom":"ASSET4","index":"0.000023222264254358"},{"denom":"ASSET5","index":"0.000001877874241403"},{"denom":"ASSET6","index":"0.000007579654674160"},{"denom":"ASSET7","index":"0.000011900488798179"},{"denom":"ASSET8","index":"0.000016239324105118"},{"denom":"ASSET9","index":"0.000006895771583569"}],"last_reward_claim_height":"161"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET0","shares":"299041943.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001546168277317"},{"denom":"ASSET1","index":"0.000012892123182452"},{"denom":"ASSET10","index":"0.000008982377260299"},{"denom":"ASSET11","index":"0.000012472337191477"},{"denom":"ASSET12","index":"0.000011231230783378"},{"denom":"ASSET13","index":"0.000003864117010091"},{"denom":"ASSET14","index":"0.000011651016774353"},{"denom":"ASSET15","index":"0.000008329231976204"},{"denom":"ASSET16","index":"0.000005807908663952"},{"denom":"ASSET17","index":"0.000004124853650448"},{"denom":"ASSET18","index":"0.000001964650585090"},{"denom":"ASSET2","index":"0.000003805451266010"},{"denom":"ASSET3","index":"0.000001113345454324"},{"denom":"ASSET4","index":"0.000010477701892746"},{"denom":"ASSET5","index":"0.000000863038279582"},{"denom":"ASSET6","index":"0.000003516033595214"},{"denom":"ASSET7","index":"0.000005385515306574"},{"denom":"ASSET8","index":"0.000007028156140823"},{"denom":"ASSET9","index":"0.000003034974493755"}],"last_reward_claim_height":"64"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET8","shares":"503719273.686991307555299696","reward_history":[{"denom":"ASSET0","index":"0.000003044385892570"},{"denom":"ASSET1","index":"0.000025830014188245"},{"denom":"ASSET10","index":"0.000020607856539150"},{"denom":"ASSET11","index":"0.000025666657138152"},{"denom":"ASSET12","index":"0.000024468008636658"},{"denom":"ASSET13","index":"0.000008060303383676"},{"denom":"ASSET14","index":"0.000023559408638801"},{"denom":"ASSET15","index":"0.000018562848593971"},{"denom":"ASSET16","index":"0.000011459854746185"},{"denom":"ASSET17","index":"0.000008991538648143"},{"denom":"ASSET18","index":"0.000003718456390600"},{"denom":"ASSET2","index":"0.000007821717005664"},{"denom":"ASSET3","index":"0.000002173111618200"},{"denom":"ASSET4","index":"0.000020942104557307"},{"denom":"ASSET5","index":"0.000001691598021351"},{"denom":"ASSET6","index":"0.000006831113312915"},{"denom":"ASSET7","index":"0.000010730587410374"},{"denom":"ASSET8","index":"0.000014654605067850"},{"denom":"ASSET9","index":"0.000006220578615076"}],"last_reward_claim_height":"180"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET17","shares":"407671496.000000000000000000","reward_history":[],"last_reward_claim_height":"47"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET3","shares":"533803212.000000000000000000","reward_history":[],"last_reward_claim_height":"36"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET3","shares":"514502769.084462845079390192","reward_history":[{"denom":"ASSET0","index":"0.000003004514310835"},{"denom":"ASSET1","index":"0.000025497942224476"},{"denom":"ASSET10","index":"0.000020385999177782"},{"denom":"ASSET11","index":"0.000025346802479017"},{"denom":"ASSET12","index":"0.000024185328023735"},{"denom":"ASSET13","index":"0.000007962788555043"},{"denom":"ASSET14","index":"0.000023259189454501"},{"denom":"ASSET15","index":"0.000018355567065709"},{"denom":"ASSET16","index":"0.000011309092459120"},{"denom":"ASSET17","index":"0.000008887662321727"},{"denom":"ASSET18","index":"0.000003666570499762"},{"denom":"ASSET2","index":"0.000007723995884874"},{"denom":"ASSET3","index":"0.000002143405494402"},{"denom":"ASSET4","index":"0.000020670641097733"},{"denom":"ASSET5","index":"0.000001670336124344"},{"denom":"ASSET6","index":"0.000006739845385808"},{"denom":"ASSET7","index":"0.000010591422556410"},{"denom":"ASSET8","index":"0.000014475095162856"},{"denom":"ASSET9","index":"0.000006143360978771"}],"last_reward_claim_height":"128"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET7","shares":"37492808.000000018164019610","reward_history":[{"denom":"ASSET0","index":"0.000001500850379058"},{"denom":"ASSET1","index":"0.000012511793460183"},{"denom":"ASSET10","index":"0.000008717304800227"},{"denom":"ASSET11","index":"0.000012103632089176"},{"denom":"ASSET12","index":"0.000010899320696303"},{"denom":"ASSET13","index":"0.000003750781099635"},{"denom":"ASSET14","index":"0.000011306809643305"},{"denom":"ASSET15","index":"0.000008083881387560"},{"denom":"ASSET16","index":"0.000005636258009526"},{"denom":"ASSET17","index":"0.000004002940101492"},{"denom":"ASSET18","index":"0.000001906322054045"},{"denom":"ASSET2","index":"0.000003692952635209"},{"denom":"ASSET3","index":"0.000001079912951956"},{"denom":"ASSET4","index":"0.000010167723378913"},{"denom":"ASSET5","index":"0.000000838512734178"},{"denom":"ASSET6","index":"0.000003412551825143"},{"denom":"ASSET7","index":"0.000005226751790509"},{"denom":"ASSET8","index":"0.000006820396682251"},{"denom":"ASSET9","index":"0.000002945889565704"}],"last_reward_claim_height":"102"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET8","shares":"1000053538.016397401000000000","reward_history":[{"denom":"ASSET0","index":"0.000003004514310835"},{"denom":"ASSET1","index":"0.000025497942224476"},{"denom":"ASSET10","index":"0.000020385999177782"},{"denom":"ASSET11","index":"0.000025346802479017"},{"denom":"ASSET12","index":"0.000024185328023735"},{"denom":"ASSET13","index":"0.000007962788555043"},{"denom":"ASSET14","index":"0.000023259189454501"},{"denom":"ASSET15","index":"0.000018355567065709"},{"denom":"ASSET16","index":"0.000011309092459120"},{"denom":"ASSET17","index":"0.000008887662321727"},{"denom":"ASSET18","index":"0.000003666570499762"},{"denom":"ASSET2","index":"0.000007723995884874"},{"denom":"ASSET3","index":"0.000002143405494402"},{"denom":"ASSET4","index":"0.000020670641097733"},{"denom":"ASSET5","index":"0.000001670336124344"},{"denom":"ASSET6","index":"0.000006739845385808"},{"denom":"ASSET7","index":"0.000010591422556410"},{"denom":"ASSET8","index":"0.000014475095162856"},{"denom":"ASSET9","index":"0.000006143360978771"}],"last_reward_claim_height":"134"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET10","shares":"289990683.472150290241523122","reward_history":[{"denom":"ASSET0","index":"0.000003004514310835"},{"denom":"ASSET1","index":"0.000025497942224476"},{"denom":"ASSET10","index":"0.000020385999177782"},{"denom":"ASSET11","index":"0.000025346802479017"},{"denom":"ASSET12","index":"0.000024185328023735"},{"denom":"ASSET13","index":"0.000007962788555043"},{"denom":"ASSET14","index":"0.000023259189454501"},{"denom":"ASSET15","index":"0.000018355567065709"},{"denom":"ASSET16","index":"0.000011309092459120"},{"denom":"ASSET17","index":"0.000008887662321727"},{"denom":"ASSET18","index":"0.000003666570499762"},{"denom":"ASSET2","index":"0.000007723995884874"},{"denom":"ASSET3","index":"0.000002143405494402"},{"denom":"ASSET4","index":"0.000020670641097733"},{"denom":"ASSET5","index":"0.000001670336124344"},{"denom":"ASSET6","index":"0.000006739845385808"},{"denom":"ASSET7","index":"0.000010591422556410"},{"denom":"ASSET8","index":"0.000014475095162856"},{"denom":"ASSET9","index":"0.000006143360978771"}],"last_reward_claim_height":"163"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET0","shares":"435544736.000000019163968384","reward_history":[],"last_reward_claim_height":"60"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET6","shares":"283384389.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001507842106347"},{"denom":"ASSET1","index":"0.000012572313391156"},{"denom":"ASSET10","index":"0.000008759356679472"},{"denom":"ASSET11","index":"0.000012162445176153"},{"denom":"ASSET12","index":"0.000010952151629736"},{"denom":"ASSET13","index":"0.000003769211161813"},{"denom":"ASSET14","index":"0.000011361231636633"},{"denom":"ASSET15","index":"0.000008123272738112"},{"denom":"ASSET16","index":"0.000005663669344042"},{"denom":"ASSET17","index":"0.000004022225963767"},{"denom":"ASSET18","index":"0.000001916133905138"},{"denom":"ASSET2","index":"0.000003711277866039"},{"denom":"ASSET3","index":"0.000001085756665704"},{"denom":"ASSET4","index":"0.000010217147571101"},{"denom":"ASSET5","index":"0.000000842594465073"},{"denom":"ASSET6","index":"0.000003429493468225"},{"denom":"ASSET7","index":"0.000005252224712828"},{"denom":"ASSET8","index":"0.000006853863583762"},{"denom":"ASSET9","index":"0.000002960115541236"}],"last_reward_claim_height":"89"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET11","shares":"609172344.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001507842106347"},{"denom":"ASSET1","index":"0.000012572313391156"},{"denom":"ASSET10","index":"0.000008759356679472"},{"denom":"ASSET11","index":"0.000012162445176153"},{"denom":"ASSET12","index":"0.000010952151629736"},{"denom":"ASSET13","index":"0.000003769211161813"},{"denom":"ASSET14","index":"0.000011361231636633"},{"denom":"ASSET15","index":"0.000008123272738112"},{"denom":"ASSET16","index":"0.000005663669344042"},{"denom":"ASSET17","index":"0.000004022225963767"},{"denom":"ASSET18","index":"0.000001916133905138"},{"denom":"ASSET2","index":"0.000003711277866039"},{"denom":"ASSET3","index":"0.000001085756665704"},{"denom":"ASSET4","index":"0.000010217147571101"},{"denom":"ASSET5","index":"0.000000842594465073"},{"denom":"ASSET6","index":"0.000003429493468225"},{"denom":"ASSET7","index":"0.000005252224712828"},{"denom":"ASSET8","index":"0.000006853863583762"},{"denom":"ASSET9","index":"0.000002960115541236"}],"last_reward_claim_height":"118"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET16","shares":"952697475.000000000000000000","reward_history":[],"last_reward_claim_height":"23"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET0","shares":"42916278.653097787072405851","reward_history":[{"denom":"ASSET0","index":"0.000004025900971927"},{"denom":"ASSET1","index":"0.000032866990223703"},{"denom":"ASSET10","index":"0.000029177590451167"},{"denom":"ASSET11","index":"0.000034457399555284"},{"denom":"ASSET12","index":"0.000033006816481640"},{"denom":"ASSET13","index":"0.000011167120321398"},{"denom":"ASSET14","index":"0.000031745829379235"},{"denom":"ASSET15","index":"0.000026105610144876"},{"denom":"ASSET16","index":"0.000014556334682662"},{"denom":"ASSET17","index":"0.000011974632893267"},{"denom":"ASSET18","index":"0.000004894173072333"},{"denom":"ASSET2","index":"0.000009948255093659"},{"denom":"ASSET3","index":"0.000002854082481256"},{"denom":"ASSET4","index":"0.000026972415235685"},{"denom":"ASSET5","index":"0.000002244012673462"},{"denom":"ASSET6","index":"0.000009165742222560"},{"denom":"ASSET7","index":"0.000014171217677897"},{"denom":"ASSET8","index":"0.000020639253265734"},{"denom":"ASSET9","index":"0.000008207596762469"}],"last_reward_claim_height":"186"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET5","shares":"30386366.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001016570122529"},{"denom":"ASSET1","index":"0.000008477171470527"},{"denom":"ASSET10","index":"0.000005906463519680"},{"denom":"ASSET11","index":"0.000008200989896911"},{"denom":"ASSET12","index":"0.000007384774710599"},{"denom":"ASSET13","index":"0.000002541117067960"},{"denom":"ASSET14","index":"0.000007660956284215"},{"denom":"ASSET15","index":"0.000005477395717812"},{"denom":"ASSET16","index":"0.000003819073322661"},{"denom":"ASSET17","index":"0.000002711881121289"},{"denom":"ASSET18","index":"0.000001291518742692"},{"denom":"ASSET2","index":"0.000002502279034170"},{"denom":"ASSET3","index":"0.000000731757874738"},{"denom":"ASSET4","index":"0.000006889127422234"},{"denom":"ASSET5","index":"0.000000567775065403"},{"denom":"ASSET6","index":"0.000002312404202309"},{"denom":"ASSET7","index":"0.000003541658795591"},{"denom":"ASSET8","index":"0.000004621109544256"},{"denom":"ASSET9","index":"0.000001996151641449"}],"last_reward_claim_height":"111"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET6","shares":"953844958.105295501322834344","reward_history":[{"denom":"ASSET0","index":"0.000004025900971927"},{"denom":"ASSET1","index":"0.000032866990223703"},{"denom":"ASSET10","index":"0.000029177590451167"},{"denom":"ASSET11","index":"0.000034457399555284"},{"denom":"ASSET12","index":"0.000033006816481640"},{"denom":"ASSET13","index":"0.000011167120321398"},{"denom":"ASSET14","index":"0.000031745829379235"},{"denom":"ASSET15","index":"0.000026105610144876"},{"denom":"ASSET16","index":"0.000014556334682662"},{"denom":"ASSET17","index":"0.000011974632893267"},{"denom":"ASSET18","index":"0.000004894173072333"},{"denom":"ASSET2","index":"0.000009948255093659"},{"denom":"ASSET3","index":"0.000002854082481256"},{"denom":"ASSET4","index":"0.000026972415235685"},{"denom":"ASSET5","index":"0.000002244012673462"},{"denom":"ASSET6","index":"0.000009165742222560"},{"denom":"ASSET7","index":"0.000014171217677897"},{"denom":"ASSET8","index":"0.000020639253265734"},{"denom":"ASSET9","index":"0.000008207596762469"}],"last_reward_claim_height":"195"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET9","shares":"509842501.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001016570122529"},{"denom":"ASSET1","index":"0.000008477171470527"},{"denom":"ASSET10","index":"0.000005906463519680"},{"denom":"ASSET11","index":"0.000008200989896911"},{"denom":"ASSET12","index":"0.000007384774710599"},{"denom":"ASSET13","index":"0.000002541117067960"},{"denom":"ASSET14","index":"0.000007660956284215"},{"denom":"ASSET15","index":"0.000005477395717812"},{"denom":"ASSET16","index":"0.000003819073322661"},{"denom":"ASSET17","index":"0.000002711881121289"},{"denom":"ASSET18","index":"0.000001291518742692"},{"denom":"ASSET2","index":"0.000002502279034170"},{"denom":"ASSET3","index":"0.000000731757874738"},{"denom":"ASSET4","index":"0.000006889127422234"},{"denom":"ASSET5","index":"0.000000567775065403"},{"denom":"ASSET6","index":"0.000002312404202309"},{"denom":"ASSET7","index":"0.000003541658795591"},{"denom":"ASSET8","index":"0.000004621109544256"},{"denom":"ASSET9","index":"0.000001996151641449"}],"last_reward_claim_height":"65"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET10","shares":"77580855.399624418113704535","reward_history":[{"denom":"ASSET0","index":"0.000002499545170163"},{"denom":"ASSET1","index":"0.000021282413071401"},{"denom":"ASSET10","index":"0.000017412808765385"},{"denom":"ASSET11","index":"0.000021259874812403"},{"denom":"ASSET12","index":"0.000020486111882687"},{"denom":"ASSET13","index":"0.000006694303381301"},{"denom":"ASSET14","index":"0.000019446986985139"},{"denom":"ASSET15","index":"0.000015606004703242"},{"denom":"ASSET16","index":"0.000009412782427040"},{"denom":"ASSET17","index":"0.000007528963649123"},{"denom":"ASSET18","index":"0.000003027066879988"},{"denom":"ASSET2","index":"0.000006477094521478"},{"denom":"ASSET3","index":"0.000001780578331809"},{"denom":"ASSET4","index":"0.000017246051064985"},{"denom":"ASSET5","index":"0.000001387924123500"},{"denom":"ASSET6","index":"0.000005593713918003"},{"denom":"ASSET7","index":"0.000008831780754063"},{"denom":"ASSET8","index":"0.000012169406160300"},{"denom":"ASSET9","index":"0.000005149034362400"}],"last_reward_claim_height":"174"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET4","shares":"311686230.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002320380931676"},{"denom":"ASSET1","index":"0.000019748951316256"},{"denom":"ASSET10","index":"0.000016101172379351"},{"denom":"ASSET11","index":"0.000019714000020718"},{"denom":"ASSET12","index":"0.000018967805559844"},{"denom":"ASSET13","index":"0.000006204998608741"},{"denom":"ASSET14","index":"0.000018041457784230"},{"denom":"ASSET15","index":"0.000014440911570898"},{"denom":"ASSET16","index":"0.000008738221404310"},{"denom":"ASSET17","index":"0.000006970584758543"},{"denom":"ASSET18","index":"0.000002814127990287"},{"denom":"ASSET2","index":"0.000006006105656449"},{"denom":"ASSET3","index":"0.000001653724297068"},{"denom":"ASSET4","index":"0.000016005284799403"},{"denom":"ASSET5","index":"0.000001288969102308"},{"denom":"ASSET6","index":"0.000005195185892122"},{"denom":"ASSET7","index":"0.000008196101819524"},{"denom":"ASSET8","index":"0.000011280171312915"},{"denom":"ASSET9","index":"0.000004774394171461"}],"last_reward_claim_height":"151"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET14","shares":"854398137.999999790672456190","reward_history":[{"denom":"ASSET0","index":"0.000002320380931676"},{"denom":"ASSET1","index":"0.000019748951316256"},{"denom":"ASSET10","index":"0.000016101172379351"},{"denom":"ASSET11","index":"0.000019714000020718"},{"denom":"ASSET12","index":"0.000018967805559844"},{"denom":"ASSET13","index":"0.000006204998608741"},{"denom":"ASSET14","index":"0.000018041457784230"},{"denom":"ASSET15","index":"0.000014440911570898"},{"denom":"ASSET16","index":"0.000008738221404310"},{"denom":"ASSET17","index":"0.000006970584758543"},{"denom":"ASSET18","index":"0.000002814127990287"},{"denom":"ASSET2","index":"0.000006006105656449"},{"denom":"ASSET3","index":"0.000001653724297068"},{"denom":"ASSET4","index":"0.000016005284799403"},{"denom":"ASSET5","index":"0.000001288969102308"},{"denom":"ASSET6","index":"0.000005195185892122"},{"denom":"ASSET7","index":"0.000008196101819524"},{"denom":"ASSET8","index":"0.000011280171312915"},{"denom":"ASSET9","index":"0.000004774394171461"}],"last_reward_claim_height":"162"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET1","shares":"548003930.163969455050430569","reward_history":[{"denom":"ASSET0","index":"0.000001745798220012"},{"denom":"ASSET1","index":"0.000014553743296829"},{"denom":"ASSET10","index":"0.000010139438249561"},{"denom":"ASSET11","index":"0.000014079320164724"},{"denom":"ASSET12","index":"0.000012678243118663"},{"denom":"ASSET13","index":"0.000004363016060013"},{"denom":"ASSET14","index":"0.000013152173087429"},{"denom":"ASSET15","index":"0.000009403145384454"},{"denom":"ASSET16","index":"0.000006556113428486"},{"denom":"ASSET17","index":"0.000004655955083371"},{"denom":"ASSET18","index":"0.000002217755535422"},{"denom":"ASSET2","index":"0.000004295945845911"},{"denom":"ASSET3","index":"0.000001256580187737"},{"denom":"ASSET4","index":"0.000011827536358912"},{"denom":"ASSET5","index":"0.000000975477084515"},{"denom":"ASSET6","index":"0.000003969964878841"},{"denom":"ASSET7","index":"0.000006080210806364"},{"denom":"ASSET8","index":"0.000007934011797614"},{"denom":"ASSET9","index":"0.000003426498879278"}],"last_reward_claim_height":"114"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET11","shares":"17768288.947761480229728000","reward_history":[{"denom":"ASSET0","index":"0.000004988100402711"},{"denom":"ASSET1","index":"0.000040830811222204"},{"denom":"ASSET10","index":"0.000035211557233449"},{"denom":"ASSET11","index":"0.000042368225765116"},{"denom":"ASSET12","index":"0.000040283068049268"},{"denom":"ASSET13","index":"0.000013656840057503"},{"denom":"ASSET14","index":"0.000039101529800040"},{"denom":"ASSET15","index":"0.000031628202661313"},{"denom":"ASSET16","index":"0.000018124368514983"},{"denom":"ASSET17","index":"0.000014635120510330"},{"denom":"ASSET18","index":"0.000006099363487354"},{"denom":"ASSET2","index":"0.000012317983770908"},{"denom":"ASSET3","index":"0.000003543214603465"},{"denom":"ASSET4","index":"0.000033464976861775"},{"denom":"ASSET5","index":"0.000002781716792708"},{"denom":"ASSET6","index":"0.000011353508340787"},{"denom":"ASSET7","index":"0.000017532655976265"},{"denom":"ASSET8","index":"0.000025192183938276"},{"denom":"ASSET9","index":"0.000010118614836237"}],"last_reward_claim_height":"193"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET17","shares":"393781829.407411878598016450","reward_history":[{"denom":"ASSET0","index":"0.000003342998947188"},{"denom":"ASSET1","index":"0.000028345782457833"},{"denom":"ASSET10","index":"0.000022532322238539"},{"denom":"ASSET11","index":"0.000028144588841629"},{"denom":"ASSET12","index":"0.000026788988923046"},{"denom":"ASSET13","index":"0.000008836278349189"},{"denom":"ASSET14","index":"0.000025846526421467"},{"denom":"ASSET15","index":"0.000020312521464953"},{"denom":"ASSET16","index":"0.000012581099317360"},{"denom":"ASSET17","index":"0.000009844015126225"},{"denom":"ASSET18","index":"0.000004087085525414"},{"denom":"ASSET2","index":"0.000008577030596387"},{"denom":"ASSET3","index":"0.000002386540105172"},{"denom":"ASSET4","index":"0.000022982635628207"},{"denom":"ASSET5","index":"0.000001858980311097"},{"denom":"ASSET6","index":"0.000007503977785171"},{"denom":"ASSET7","index":"0.000011778054778213"},{"denom":"ASSET8","index":"0.000016064148587518"},{"denom":"ASSET9","index":"0.000006822246648031"}],"last_reward_claim_height":"159"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET12","shares":"577565014.999999890262647150","reward_history":[{"denom":"ASSET0","index":"0.000003086246918243"},{"denom":"ASSET1","index":"0.000026194228204796"},{"denom":"ASSET10","index":"0.000020951998769875"},{"denom":"ASSET11","index":"0.000026042273492864"},{"denom":"ASSET12","index":"0.000024853724280460"},{"denom":"ASSET13","index":"0.000008181454895403"},{"denom":"ASSET14","index":"0.000023895275980533"},{"denom":"ASSET15","index":"0.000018864347888264"},{"denom":"ASSET16","index":"0.000011616907749245"},{"denom":"ASSET17","index":"0.000009133094250657"},{"denom":"ASSET18","index":"0.000003766346411006"},{"denom":"ASSET2","index":"0.000007935833032906"},{"denom":"ASSET3","index":"0.000002202232138461"},{"denom":"ASSET4","index":"0.000021234941701767"},{"denom":"ASSET5","index":"0.000001715417631736"},{"denom":"ASSET6","index":"0.000006923101305069"},{"denom":"ASSET7","index":"0.000010881195638563"},{"denom":"ASSET8","index":"0.000014873239564067"},{"denom":"ASSET9","index":"0.000006310901439146"}],"last_reward_claim_height":"179"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET2","shares":"183255510.000000000000000000","reward_history":[],"last_reward_claim_height":"50"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET18","shares":"732126728.000000000000000000","reward_history":[],"last_reward_claim_height":"30"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET0","shares":"19140851.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001763265776240"},{"denom":"ASSET1","index":"0.000014701143889842"},{"denom":"ASSET10","index":"0.000010242267715158"},{"denom":"ASSET11","index":"0.000014221824092125"},{"denom":"ASSET12","index":"0.000012807154532407"},{"denom":"ASSET13","index":"0.000004407037513175"},{"denom":"ASSET14","index":"0.000013285723045174"},{"denom":"ASSET15","index":"0.000009498495615253"},{"denom":"ASSET16","index":"0.000006622576828953"},{"denom":"ASSET17","index":"0.000004703043783239"},{"denom":"ASSET18","index":"0.000002240331719108"},{"denom":"ASSET2","index":"0.000004339421867729"},{"denom":"ASSET3","index":"0.000001269671564485"},{"denom":"ASSET4","index":"0.000011947684550294"},{"denom":"ASSET5","index":"0.000000984934568662"},{"denom":"ASSET6","index":"0.000004010359059893"},{"denom":"ASSET7","index":"0.000006141754461338"},{"denom":"ASSET8","index":"0.000008013956555240"},{"denom":"ASSET9","index":"0.000003461169761882"}],"last_reward_claim_height":"108"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET2","shares":"1000028958.779262338000000000","reward_history":[{"denom":"ASSET0","index":"0.000003372790294110"},{"denom":"ASSET1","index":"0.000028600279733511"},{"denom":"ASSET10","index":"0.000022731421090197"},{"denom":"ASSET11","index":"0.000028396190348540"},{"denom":"ASSET12","index":"0.000027027392524280"},{"denom":"ASSET13","index":"0.000008915082315276"},{"denom":"ASSET14","index":"0.000026078776667620"},{"denom":"ASSET15","index":"0.000020492230414373"},{"denom":"ASSET16","index":"0.000012694274413467"},{"denom":"ASSET17","index":"0.000009931274832025"},{"denom":"ASSET18","index":"0.000004123939856338"},{"denom":"ASSET2","index":"0.000008653658587521"},{"denom":"ASSET3","index":"0.000002407864000528"},{"denom":"ASSET4","index":"0.000023189126720885"},{"denom":"ASSET5","index":"0.000001875419633234"},{"denom":"ASSET6","index":"0.000007571725921487"},{"denom":"ASSET7","index":"0.000011883748947250"},{"denom":"ASSET8","index":"0.000016207221904670"},{"denom":"ASSET9","index":"0.000006883201227023"}],"last_reward_claim_height":"156"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET6","shares":"357705769.611858558419770038","reward_history":[{"denom":"ASSET0","index":"0.000001763265776240"},{"denom":"ASSET1","index":"0.000014701143889842"},{"denom":"ASSET10","index":"0.000010242267715158"},{"denom":"ASSET11","index":"0.000014221824092125"},{"denom":"ASSET12","index":"0.000012807154532407"},{"denom":"ASSET13","index":"0.000004407037513175"},{"denom":"ASSET14","index":"0.000013285723045174"},{"denom":"ASSET15","index":"0.000009498495615253"},{"denom":"ASSET16","index":"0.000006622576828953"},{"denom":"ASSET17","index":"0.000004703043783239"},{"denom":"ASSET18","index":"0.000002240331719108"},{"denom":"ASSET2","index":"0.000004339421867729"},{"denom":"ASSET3","index":"0.000001269671564485"},{"denom":"ASSET4","index":"0.000011947684550294"},{"denom":"ASSET5","index":"0.000000984934568662"},{"denom":"ASSET6","index":"0.000004010359059893"},{"denom":"ASSET7","index":"0.000006141754461338"},{"denom":"ASSET8","index":"0.000008013956555240"},{"denom":"ASSET9","index":"0.000003461169761882"}],"last_reward_claim_height":"121"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET7","shares":"217046886.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001763265776240"},{"denom":"ASSET1","index":"0.000014701143889842"},{"denom":"ASSET10","index":"0.000010242267715158"},{"denom":"ASSET11","index":"0.000014221824092125"},{"denom":"ASSET12","index":"0.000012807154532407"},{"denom":"ASSET13","index":"0.000004407037513175"},{"denom":"ASSET14","index":"0.000013285723045174"},{"denom":"ASSET15","index":"0.000009498495615253"},{"denom":"ASSET16","index":"0.000006622576828953"},{"denom":"ASSET17","index":"0.000004703043783239"},{"denom":"ASSET18","index":"0.000002240331719108"},{"denom":"ASSET2","index":"0.000004339421867729"},{"denom":"ASSET3","index":"0.000001269671564485"},{"denom":"ASSET4","index":"0.000011947684550294"},{"denom":"ASSET5","index":"0.000000984934568662"},{"denom":"ASSET6","index":"0.000004010359059893"},{"denom":"ASSET7","index":"0.000006141754461338"},{"denom":"ASSET8","index":"0.000008013956555240"},{"denom":"ASSET9","index":"0.000003461169761882"}],"last_reward_claim_height":"123"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET12","shares":"848582030.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001763265776240"},{"denom":"ASSET1","index":"0.000014701143889842"},{"denom":"ASSET10","index":"0.000010242267715158"},{"denom":"ASSET11","index":"0.000014221824092125"},{"denom":"ASSET12","index":"0.000012807154532407"},{"denom":"ASSET13","index":"0.000004407037513175"},{"denom":"ASSET14","index":"0.000013285723045174"},{"denom":"ASSET15","index":"0.000009498495615253"},{"denom":"ASSET16","index":"0.000006622576828953"},{"denom":"ASSET17","index":"0.000004703043783239"},{"denom":"ASSET18","index":"0.000002240331719108"},{"denom":"ASSET2","index":"0.000004339421867729"},{"denom":"ASSET3","index":"0.000001269671564485"},{"denom":"ASSET4","index":"0.000011947684550294"},{"denom":"ASSET5","index":"0.000000984934568662"},{"denom":"ASSET6","index":"0.000004010359059893"},{"denom":"ASSET7","index":"0.000006141754461338"},{"denom":"ASSET8","index":"0.000008013956555240"},{"denom":"ASSET9","index":"0.000003461169761882"}],"last_reward_claim_height":"97"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET0","shares":"758922346.000000002985301106","reward_history":[],"last_reward_claim_height":"55"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET3","shares":"996543096.000000000000000000","reward_history":[],"last_reward_claim_height":"40"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET4","shares":"530665519.450385594525179855","reward_history":[{"denom":"ASSET0","index":"0.000001542334439671"},{"denom":"ASSET1","index":"0.000012860022908304"},{"denom":"ASSET10","index":"0.000008959505058412"},{"denom":"ASSET11","index":"0.000012440701863130"},{"denom":"ASSET12","index":"0.000011202637482986"},{"denom":"ASSET13","index":"0.000003855293405849"},{"denom":"ASSET14","index":"0.000011621234937056"},{"denom":"ASSET15","index":"0.000008308996655285"},{"denom":"ASSET16","index":"0.000005793070384239"},{"denom":"ASSET17","index":"0.000004114339021332"},{"denom":"ASSET18","index":"0.000001959846507084"},{"denom":"ASSET2","index":"0.000003796320730815"},{"denom":"ASSET3","index":"0.000001110350550164"},{"denom":"ASSET4","index":"0.000010450826325201"},{"denom":"ASSET5","index":"0.000000861797005699"},{"denom":"ASSET6","index":"0.000003507969675592"},{"denom":"ASSET7","index":"0.000005372663952407"},{"denom":"ASSET8","index":"0.000007010512417899"},{"denom":"ASSET9","index":"0.000003027866977623"}],"last_reward_claim_height":"108"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET10","shares":"914651894.999999959755316620","reward_history":[{"denom":"ASSET0","index":"0.000003036454064443"},{"denom":"ASSET1","index":"0.000025762443856573"},{"denom":"ASSET10","index":"0.000020552854458451"},{"denom":"ASSET11","index":"0.000025598594042577"},{"denom":"ASSET12","index":"0.000024403233064712"},{"denom":"ASSET13","index":"0.000008040226829205"},{"denom":"ASSET14","index":"0.000023496526683137"},{"denom":"ASSET15","index":"0.000018514610345002"},{"denom":"ASSET16","index":"0.000011429420030088"},{"denom":"ASSET17","index":"0.000008967792958730"},{"denom":"ASSET18","index":"0.000003708688180539"},{"denom":"ASSET2","index":"0.000007801450355100"},{"denom":"ASSET3","index":"0.000002167197324698"},{"denom":"ASSET4","index":"0.000020886439041228"},{"denom":"ASSET5","index":"0.000001688395026424"},{"denom":"ASSET6","index":"0.000006814112030993"},{"denom":"ASSET7","index":"0.000010703097412338"},{"denom":"ASSET8","index":"0.000014616213118562"},{"denom":"ASSET9","index":"0.000006204650488693"}],"last_reward_claim_height":"161"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET4","shares":"24950641.643464671365431043","reward_history":[{"denom":"ASSET0","index":"0.000001802604811891"},{"denom":"ASSET1","index":"0.000015041134377282"},{"denom":"ASSET10","index":"0.000010478421042795"},{"denom":"ASSET11","index":"0.000014549893343095"},{"denom":"ASSET12","index":"0.000013101148598203"},{"denom":"ASSET13","index":"0.000004508593559534"},{"denom":"ASSET14","index":"0.000013592389632390"},{"denom":"ASSET15","index":"0.000009716581133843"},{"denom":"ASSET16","index":"0.000006773297988330"},{"denom":"ASSET17","index":"0.000004812496911192"},{"denom":"ASSET18","index":"0.000002289682786467"},{"denom":"ASSET2","index":"0.000004437821546134"},{"denom":"ASSET3","index":"0.000001298874598869"},{"denom":"ASSET4","index":"0.000012222743020122"},{"denom":"ASSET5","index":"0.000001007460426045"},{"denom":"ASSET6","index":"0.000004100613717582"},{"denom":"ASSET7","index":"0.000006282056954143"},{"denom":"ASSET8","index":"0.000008197064375552"},{"denom":"ASSET9","index":"0.000003538600669994"}],"last_reward_claim_height":"64"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET9","shares":"1284757320.792278260217275160","reward_history":[{"denom":"ASSET0","index":"0.000001802604811891"},{"denom":"ASSET1","index":"0.000015041134377282"},{"denom":"ASSET10","index":"0.000010478421042795"},{"denom":"ASSET11","index":"0.000014549893343095"},{"denom":"ASSET12","index":"0.000013101148598203"},{"denom":"ASSET13","index":"0.000004508593559534"},{"denom":"ASSET14","index":"0.000013592389632390"},{"denom":"ASSET15","index":"0.000009716581133843"},{"denom":"ASSET16","index":"0.000006773297988330"},{"denom":"ASSET17","index":"0.000004812496911192"},{"denom":"ASSET18","index":"0.000002289682786467"},{"denom":"ASSET2","index":"0.000004437821546134"},{"denom":"ASSET3","index":"0.000001298874598869"},{"denom":"ASSET4","index":"0.000012222743020122"},{"denom":"ASSET5","index":"0.000001007460426045"},{"denom":"ASSET6","index":"0.000004100613717582"},{"denom":"ASSET7","index":"0.000006282056954143"},{"denom":"ASSET8","index":"0.000008197064375552"},{"denom":"ASSET9","index":"0.000003538600669994"}],"last_reward_claim_height":"106"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET2","shares":"685326482.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004959246898457"},{"denom":"ASSET1","index":"0.000040644134720716"},{"denom":"ASSET10","index":"0.000035353347669123"},{"denom":"ASSET11","index":"0.000042259329711737"},{"denom":"ASSET12","index":"0.000040324609330816"},{"denom":"ASSET13","index":"0.000013634496574458"},{"denom":"ASSET14","index":"0.000038957207426942"},{"denom":"ASSET15","index":"0.000031703303912562"},{"denom":"ASSET16","index":"0.000018020987420922"},{"denom":"ASSET17","index":"0.000014649010642136"},{"denom":"ASSET18","index":"0.000006048740887504"},{"denom":"ASSET2","index":"0.000012283177286373"},{"denom":"ASSET3","index":"0.000003521378987865"},{"denom":"ASSET4","index":"0.000033309186540081"},{"denom":"ASSET5","index":"0.000002764517824101"},{"denom":"ASSET6","index":"0.000011281385393492"},{"denom":"ASSET7","index":"0.000017449426350326"},{"denom":"ASSET8","index":"0.000025152281518201"},{"denom":"ASSET9","index":"0.000010089053949444"}],"last_reward_claim_height":"186"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET7","shares":"140259453.000000000000000000","reward_history":[],"last_reward_claim_height":"62"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET14","shares":"65131995.515424880102469295","reward_history":[{"denom":"ASSET0","index":"0.000003311345528520"},{"denom":"ASSET1","index":"0.000028134750769747"},{"denom":"ASSET10","index":"0.000022648872120201"},{"denom":"ASSET11","index":"0.000028007957662740"},{"denom":"ASSET12","index":"0.000026803793052874"},{"denom":"ASSET13","index":"0.000008804941803873"},{"denom":"ASSET14","index":"0.000025676450668466"},{"denom":"ASSET15","index":"0.000020365161363483"},{"denom":"ASSET16","index":"0.000012467103206876"},{"denom":"ASSET17","index":"0.000009848512066991"},{"denom":"ASSET18","index":"0.000004032794375330"},{"denom":"ASSET2","index":"0.000008534928074651"},{"denom":"ASSET3","index":"0.000002362590241163"},{"denom":"ASSET4","index":"0.000022806063702805"},{"denom":"ASSET5","index":"0.000001840254083448"},{"denom":"ASSET6","index":"0.000007424521355960"},{"denom":"ASSET7","index":"0.000011683846998076"},{"denom":"ASSET8","index":"0.000016006498096466"},{"denom":"ASSET9","index":"0.000006786333067798"}],"last_reward_claim_height":"154"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET18","shares":"331047106.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001563811170888"},{"denom":"ASSET1","index":"0.000013038374863878"},{"denom":"ASSET10","index":"0.000009083864212622"},{"denom":"ASSET11","index":"0.000012612362006834"},{"denom":"ASSET12","index":"0.000011358137819015"},{"denom":"ASSET13","index":"0.000003908204905926"},{"denom":"ASSET14","index":"0.000011781504633469"},{"denom":"ASSET15","index":"0.000008423676586333"},{"denom":"ASSET16","index":"0.000005872891529250"},{"denom":"ASSET17","index":"0.000004170163122369"},{"denom":"ASSET18","index":"0.000001987177985342"},{"denom":"ASSET2","index":"0.000003848668947643"},{"denom":"ASSET3","index":"0.000001125891122188"},{"denom":"ASSET4","index":"0.000010596077552999"},{"denom":"ASSET5","index":"0.000000873194054811"},{"denom":"ASSET6","index":"0.000003556281241411"},{"denom":"ASSET7","index":"0.000005446878672206"},{"denom":"ASSET8","index":"0.000007107270397641"},{"denom":"ASSET9","index":"0.000003069409404789"}],"last_reward_claim_height":"104"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET3","shares":"411817096.000000000000000000","reward_history":[],"last_reward_claim_height":"53"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET10","shares":"92152219.471476864300226296","reward_history":[{"denom":"ASSET0","index":"0.000004570366380068"},{"denom":"ASSET1","index":"0.000037387120318498"},{"denom":"ASSET10","index":"0.000032261509452601"},{"denom":"ASSET11","index":"0.000038817463478610"},{"denom":"ASSET12","index":"0.000036894062034502"},{"denom":"ASSET13","index":"0.000012516582661637"},{"denom":"ASSET14","index":"0.000035830728510526"},{"denom":"ASSET15","index":"0.000028981323182880"},{"denom":"ASSET16","index":"0.000016597035677072"},{"denom":"ASSET17","index":"0.000013401965035997"},{"denom":"ASSET18","index":"0.000005590155550400"},{"denom":"ASSET2","index":"0.000011277033561355"},{"denom":"ASSET3","index":"0.000003246418139164"},{"denom":"ASSET4","index":"0.000030648574600701"},{"denom":"ASSET5","index":"0.000002548630973095"},{"denom":"ASSET6","index":"0.000010406123697859"},{"denom":"ASSET7","index":"0.000016063189038053"},{"denom":"ASSET8","index":"0.000023094558959157"},{"denom":"ASSET9","index":"0.000009268753871352"}],"last_reward_claim_height":"193"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET16","shares":"409718846.999999999706523720","reward_history":[],"last_reward_claim_height":"57"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET7","shares":"96588643.142545907491672942","reward_history":[{"denom":"ASSET0","index":"0.000003203314564743"},{"denom":"ASSET1","index":"0.000027174750089688"},{"denom":"ASSET10","index":"0.000021494761442080"},{"denom":"ASSET11","index":"0.000026954579685264"},{"denom":"ASSET12","index":"0.000025598519259277"},{"denom":"ASSET13","index":"0.000008453363478510"},{"denom":"ASSET14","index":"0.000024766008219885"},{"denom":"ASSET15","index":"0.000019395989679368"},{"denom":"ASSET16","index":"0.000012063312986412"},{"denom":"ASSET17","index":"0.000009406957788586"},{"denom":"ASSET18","index":"0.000003925664786352"},{"denom":"ASSET2","index":"0.000008214094571203"},{"denom":"ASSET3","index":"0.000002289770772075"},{"denom":"ASSET4","index":"0.000022031271429646"},{"denom":"ASSET5","index":"0.000001779377444361"},{"denom":"ASSET6","index":"0.000007202120906665"},{"denom":"ASSET7","index":"0.000011290805949933"},{"denom":"ASSET8","index":"0.000015376618183469"},{"denom":"ASSET9","index":"0.000006529467958809"}],"last_reward_claim_height":"156"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET0","shares":"456349084.443757531952247392","reward_history":[{"denom":"ASSET0","index":"0.000001687731873143"},{"denom":"ASSET1","index":"0.000014069560961171"},{"denom":"ASSET10","index":"0.000009802495056563"},{"denom":"ASSET11","index":"0.000013610740912442"},{"denom":"ASSET12","index":"0.000012256373563096"},{"denom":"ASSET13","index":"0.000004217751625940"},{"denom":"ASSET14","index":"0.000012714404583367"},{"denom":"ASSET15","index":"0.000009090791386823"},{"denom":"ASSET16","index":"0.000006338265608675"},{"denom":"ASSET17","index":"0.000004501407356839"},{"denom":"ASSET18","index":"0.000002144184836496"},{"denom":"ASSET2","index":"0.000004153051292327"},{"denom":"ASSET3","index":"0.000001214709312157"},{"denom":"ASSET4","index":"0.000011433811394910"},{"denom":"ASSET5","index":"0.000000942889008137"},{"denom":"ASSET6","index":"0.000003837834423079"},{"denom":"ASSET7","index":"0.000005877867503028"},{"denom":"ASSET8","index":"0.000007669751132718"},{"denom":"ASSET9","index":"0.000003312735983819"}],"last_reward_claim_height":"110"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET11","shares":"618527242.999999998578387138","reward_history":[],"last_reward_claim_height":"50"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET7","shares":"825671974.599375583550758090","reward_history":[{"denom":"ASSET0","index":"0.000001411639939639"},{"denom":"ASSET1","index":"0.000011770559134781"},{"denom":"ASSET10","index":"0.000008200405560598"},{"denom":"ASSET11","index":"0.000011386782830640"},{"denom":"ASSET12","index":"0.000010253700018254"},{"denom":"ASSET13","index":"0.000003528795747429"},{"denom":"ASSET14","index":"0.000010636868119061"},{"denom":"ASSET15","index":"0.000007604974496011"},{"denom":"ASSET16","index":"0.000005302316671163"},{"denom":"ASSET17","index":"0.000003765386844594"},{"denom":"ASSET18","index":"0.000001793591633776"},{"denom":"ASSET2","index":"0.000003474665650649"},{"denom":"ASSET3","index":"0.000001016307772140"},{"denom":"ASSET4","index":"0.000009565822046806"},{"denom":"ASSET5","index":"0.000000788839724994"},{"denom":"ASSET6","index":"0.000003210705403426"},{"denom":"ASSET7","index":"0.000004917323960353"},{"denom":"ASSET8","index":"0.000006416545180176"},{"denom":"ASSET9","index":"0.000002771582595835"}],"last_reward_claim_height":"102"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET8","shares":"76040196.798703163621924808","reward_history":[{"denom":"ASSET0","index":"0.000002915106026686"},{"denom":"ASSET1","index":"0.000024751938975568"},{"denom":"ASSET10","index":"0.000019864528416862"},{"denom":"ASSET11","index":"0.000024625253839727"},{"denom":"ASSET12","index":"0.000023534700266806"},{"denom":"ASSET13","index":"0.000007739190454504"},{"denom":"ASSET14","index":"0.000022584902384729"},{"denom":"ASSET15","index":"0.000017872912229645"},{"denom":"ASSET16","index":"0.000010972881933217"},{"denom":"ASSET17","index":"0.000008648586457086"},{"denom":"ASSET18","index":"0.000003552999450219"},{"denom":"ASSET2","index":"0.000007504215303421"},{"denom":"ASSET3","index":"0.000002079538758775"},{"denom":"ASSET4","index":"0.000020065180146540"},{"denom":"ASSET5","index":"0.000001620267199228"},{"denom":"ASSET6","index":"0.000006536798446662"},{"denom":"ASSET7","index":"0.000010280222742310"},{"denom":"ASSET8","index":"0.000014068743113537"},{"denom":"ASSET9","index":"0.000005967789042866"}],"last_reward_claim_height":"145"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET9","shares":"183833319.200476738892939320","reward_history":[{"denom":"ASSET0","index":"0.000002915106026686"},{"denom":"ASSET1","index":"0.000024751938975568"},{"denom":"ASSET10","index":"0.000019864528416862"},{"denom":"ASSET11","index":"0.000024625253839727"},{"denom":"ASSET12","index":"0.000023534700266806"},{"denom":"ASSET13","index":"0.000007739190454504"},{"denom":"ASSET14","index":"0.000022584902384729"},{"denom":"ASSET15","index":"0.000017872912229645"},{"denom":"ASSET16","index":"0.000010972881933217"},{"denom":"ASSET17","index":"0.000008648586457086"},{"denom":"ASSET18","index":"0.000003552999450219"},{"denom":"ASSET2","index":"0.000007504215303421"},{"denom":"ASSET3","index":"0.000002079538758775"},{"denom":"ASSET4","index":"0.000020065180146540"},{"denom":"ASSET5","index":"0.000001620267199228"},{"denom":"ASSET6","index":"0.000006536798446662"},{"denom":"ASSET7","index":"0.000010280222742310"},{"denom":"ASSET8","index":"0.000014068743113537"},{"denom":"ASSET9","index":"0.000005967789042866"}],"last_reward_claim_height":"175"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET10","shares":"357902408.239445804317082830","reward_history":[{"denom":"ASSET0","index":"0.000001411639939639"},{"denom":"ASSET1","index":"0.000011770559134781"},{"denom":"ASSET10","index":"0.000008200405560598"},{"denom":"ASSET11","index":"0.000011386782830640"},{"denom":"ASSET12","index":"0.000010253700018254"},{"denom":"ASSET13","index":"0.000003528795747429"},{"denom":"ASSET14","index":"0.000010636868119061"},{"denom":"ASSET15","index":"0.000007604974496011"},{"denom":"ASSET16","index":"0.000005302316671163"},{"denom":"ASSET17","index":"0.000003765386844594"},{"denom":"ASSET18","index":"0.000001793591633776"},{"denom":"ASSET2","index":"0.000003474665650649"},{"denom":"ASSET3","index":"0.000001016307772140"},{"denom":"ASSET4","index":"0.000009565822046806"},{"denom":"ASSET5","index":"0.000000788839724994"},{"denom":"ASSET6","index":"0.000003210705403426"},{"denom":"ASSET7","index":"0.000004917323960353"},{"denom":"ASSET8","index":"0.000006416545180176"},{"denom":"ASSET9","index":"0.000002771582595835"}],"last_reward_claim_height":"120"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET7","shares":"47132601.332983928228327777","reward_history":[{"denom":"ASSET0","index":"0.000004934519090666"},{"denom":"ASSET1","index":"0.000040427425853445"},{"denom":"ASSET10","index":"0.000034956454364729"},{"denom":"ASSET11","index":"0.000041970150523959"},{"denom":"ASSET12","index":"0.000039953739652645"},{"denom":"ASSET13","index":"0.000013529847026884"},{"denom":"ASSET14","index":"0.000038720039011166"},{"denom":"ASSET15","index":"0.000031380979964511"},{"denom":"ASSET16","index":"0.000017937044208634"},{"denom":"ASSET17","index":"0.000014514779524145"},{"denom":"ASSET18","index":"0.000006029404952774"},{"denom":"ASSET2","index":"0.000012203146861853"},{"denom":"ASSET3","index":"0.000003503504291382"},{"denom":"ASSET4","index":"0.000033131393819799"},{"denom":"ASSET5","index":"0.000002750652351117"},{"denom":"ASSET6","index":"0.000011232838794861"},{"denom":"ASSET7","index":"0.000017353264007807"},{"denom":"ASSET8","index":"0.000024958646702939"},{"denom":"ASSET9","index":"0.000010021543642476"}],"last_reward_claim_height":"195"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET13","shares":"907174504.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001670929391506"},{"denom":"ASSET1","index":"0.000013946161101263"},{"denom":"ASSET10","index":"0.000009716355120388"},{"denom":"ASSET11","index":"0.000013489421488305"},{"denom":"ASSET12","index":"0.000012147571569489"},{"denom":"ASSET13","index":"0.000004178741924768"},{"denom":"ASSET14","index":"0.000012601474290441"},{"denom":"ASSET15","index":"0.000009009969010905"},{"denom":"ASSET16","index":"0.000006280878901179"},{"denom":"ASSET17","index":"0.000004459594233357"},{"denom":"ASSET18","index":"0.000002124832112458"},{"denom":"ASSET2","index":"0.000004116330300637"},{"denom":"ASSET3","index":"0.000001202842210524"},{"denom":"ASSET4","index":"0.000011333383563781"},{"denom":"ASSET5","index":"0.000000933337469958"},{"denom":"ASSET6","index":"0.000003804272179982"},{"denom":"ASSET7","index":"0.000005824139288221"},{"denom":"ASSET8","index":"0.000007600033683947"},{"denom":"ASSET9","index":"0.000003282284050887"}],"last_reward_claim_height":"107"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET15","shares":"670090372.759837375455351312","reward_history":[{"denom":"ASSET0","index":"0.000003306866574231"},{"denom":"ASSET1","index":"0.000028073670524533"},{"denom":"ASSET10","index":"0.000022410378668975"},{"denom":"ASSET11","index":"0.000027896117796052"},{"denom":"ASSET12","index":"0.000026601615360568"},{"denom":"ASSET13","index":"0.000008760019105133"},{"denom":"ASSET14","index":"0.000025604072816608"},{"denom":"ASSET15","index":"0.000020183975077340"},{"denom":"ASSET16","index":"0.000012452378452775"},{"denom":"ASSET17","index":"0.000009773941069454"},{"denom":"ASSET18","index":"0.000004038323507821"},{"denom":"ASSET2","index":"0.000008501686860316"},{"denom":"ASSET3","index":"0.000002358773872569"},{"denom":"ASSET4","index":"0.000022758821093429"},{"denom":"ASSET5","index":"0.000001837837668790"},{"denom":"ASSET6","index":"0.000007423905647148"},{"denom":"ASSET7","index":"0.000011659308440973"},{"denom":"ASSET8","index":"0.000015926660063085"},{"denom":"ASSET9","index":"0.000006759875068056"}],"last_reward_claim_height":"161"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET16","shares":"93687817.281081147651203270","reward_history":[{"denom":"ASSET0","index":"0.000003306866574231"},{"denom":"ASSET1","index":"0.000028073670524533"},{"denom":"ASSET10","index":"0.000022410378668975"},{"denom":"ASSET11","index":"0.000027896117796052"},{"denom":"ASSET12","index":"0.000026601615360568"},{"denom":"ASSET13","index":"0.000008760019105133"},{"denom":"ASSET14","index":"0.000025604072816608"},{"denom":"ASSET15","index":"0.000020183975077340"},{"denom":"ASSET16","index":"0.000012452378452775"},{"denom":"ASSET17","index":"0.000009773941069454"},{"denom":"ASSET18","index":"0.000004038323507821"},{"denom":"ASSET2","index":"0.000008501686860316"},{"denom":"ASSET3","index":"0.000002358773872569"},{"denom":"ASSET4","index":"0.000022758821093429"},{"denom":"ASSET5","index":"0.000001837837668790"},{"denom":"ASSET6","index":"0.000007423905647148"},{"denom":"ASSET7","index":"0.000011659308440973"},{"denom":"ASSET8","index":"0.000015926660063085"},{"denom":"ASSET9","index":"0.000006759875068056"}],"last_reward_claim_height":"156"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET3","shares":"13080283.551066028164895604","reward_history":[{"denom":"ASSET0","index":"0.000003119961272076"},{"denom":"ASSET1","index":"0.000026462428012801"},{"denom":"ASSET10","index":"0.000021088828135750"},{"denom":"ASSET11","index":"0.000026288818556387"},{"denom":"ASSET12","index":"0.000025049012446876"},{"denom":"ASSET13","index":"0.000008256026418292"},{"denom":"ASSET14","index":"0.000024133914778951"},{"denom":"ASSET15","index":"0.000019001193386697"},{"denom":"ASSET16","index":"0.000011741691861213"},{"denom":"ASSET17","index":"0.000009205139483526"},{"denom":"ASSET18","index":"0.000003811157018018"},{"denom":"ASSET2","index":"0.000008011229275486"},{"denom":"ASSET3","index":"0.000002226652147557"},{"denom":"ASSET4","index":"0.000021454928269907"},{"denom":"ASSET5","index":"0.000001734689929917"},{"denom":"ASSET6","index":"0.000007001091110949"},{"denom":"ASSET7","index":"0.000010994186615549"},{"denom":"ASSET8","index":"0.000015007966738007"},{"denom":"ASSET9","index":"0.000006372340046203"}],"last_reward_claim_height":"142"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET13","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001598361255475"},{"denom":"ASSET1","index":"0.000013324868720531"},{"denom":"ASSET10","index":"0.000009283863630055"},{"denom":"ASSET11","index":"0.000012890721875256"},{"denom":"ASSET12","index":"0.000011607749807828"},{"denom":"ASSET13","index":"0.000003994929715268"},{"denom":"ASSET14","index":"0.000012041896653103"},{"denom":"ASSET15","index":"0.000008609605674538"},{"denom":"ASSET16","index":"0.000006002777756047"},{"denom":"ASSET17","index":"0.000004262945630213"},{"denom":"ASSET18","index":"0.000002030561253910"},{"denom":"ASSET2","index":"0.000003933279565341"},{"denom":"ASSET3","index":"0.000001150586482321"},{"denom":"ASSET4","index":"0.000010829011071909"},{"denom":"ASSET5","index":"0.000000892953750521"},{"denom":"ASSET6","index":"0.000003634763049905"},{"denom":"ASSET7","index":"0.000005566684063932"},{"denom":"ASSET8","index":"0.000007263685559290"},{"denom":"ASSET9","index":"0.000003137668156809"}],"last_reward_claim_height":"65"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET15","shares":"1000062599.591378637000000000","reward_history":[{"denom":"ASSET0","index":"0.000004712919701194"},{"denom":"ASSET1","index":"0.000038551910188637"},{"denom":"ASSET10","index":"0.000033366472665064"},{"denom":"ASSET11","index":"0.000040061772796167"},{"denom":"ASSET12","index":"0.000038115593387847"},{"denom":"ASSET13","index":"0.000012923798257493"},{"denom":"ASSET14","index":"0.000036968911284872"},{"denom":"ASSET15","index":"0.000029958439689060"},{"denom":"ASSET16","index":"0.000017109313494010"},{"denom":"ASSET17","index":"0.000013844574846959"},{"denom":"ASSET18","index":"0.000005759646481226"},{"denom":"ASSET2","index":"0.000011633813263895"},{"denom":"ASSET3","index":"0.000003346860308295"},{"denom":"ASSET4","index":"0.000031605298521278"},{"denom":"ASSET5","index":"0.000002628206284514"},{"denom":"ASSET6","index":"0.000010728866620912"},{"denom":"ASSET7","index":"0.000016566279364856"},{"denom":"ASSET8","index":"0.000023846908582094"},{"denom":"ASSET9","index":"0.000009564372690576"}],"last_reward_claim_height":"196"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET18","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003119961272076"},{"denom":"ASSET1","index":"0.000026462428012801"},{"denom":"ASSET10","index":"0.000021088828135750"},{"denom":"ASSET11","index":"0.000026288818556387"},{"denom":"ASSET12","index":"0.000025049012446876"},{"denom":"ASSET13","index":"0.000008256026418292"},{"denom":"ASSET14","index":"0.000024133914778951"},{"denom":"ASSET15","index":"0.000019001193386697"},{"denom":"ASSET16","index":"0.000011741691861213"},{"denom":"ASSET17","index":"0.000009205139483526"},{"denom":"ASSET18","index":"0.000003811157018018"},{"denom":"ASSET2","index":"0.000008011229275486"},{"denom":"ASSET3","index":"0.000002226652147557"},{"denom":"ASSET4","index":"0.000021454928269907"},{"denom":"ASSET5","index":"0.000001734689929917"},{"denom":"ASSET6","index":"0.000007001091110949"},{"denom":"ASSET7","index":"0.000010994186615549"},{"denom":"ASSET8","index":"0.000015007966738007"},{"denom":"ASSET9","index":"0.000006372340046203"}],"last_reward_claim_height":"174"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET0","shares":"133060724.000000000000000000","reward_history":[],"last_reward_claim_height":"51"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET2","shares":"462072088.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001543375593884"},{"denom":"ASSET1","index":"0.000012871309378663"},{"denom":"ASSET10","index":"0.000008967332198598"},{"denom":"ASSET11","index":"0.000012451619524186"},{"denom":"ASSET12","index":"0.000011213472915376"},{"denom":"ASSET13","index":"0.000003858438984711"},{"denom":"ASSET14","index":"0.000011631932007817"},{"denom":"ASSET15","index":"0.000008316259081242"},{"denom":"ASSET16","index":"0.000005798119954378"},{"denom":"ASSET17","index":"0.000004118129774432"},{"denom":"ASSET18","index":"0.000001961834686325"},{"denom":"ASSET2","index":"0.000003799362406955"},{"denom":"ASSET3","index":"0.000001111378119041"},{"denom":"ASSET4","index":"0.000010460246548983"},{"denom":"ASSET5","index":"0.000000862764187650"},{"denom":"ASSET6","index":"0.000003511364090393"},{"denom":"ASSET7","index":"0.000005377199337864"},{"denom":"ASSET8","index":"0.000007016574370602"},{"denom":"ASSET9","index":"0.000003030136134086"}],"last_reward_claim_height":"84"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET3","shares":"27065491.000000000243589419","reward_history":[],"last_reward_claim_height":"36"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET5","shares":"201892445.371562420921516226","reward_history":[{"denom":"ASSET0","index":"0.000001543375593884"},{"denom":"ASSET1","index":"0.000012871309378663"},{"denom":"ASSET10","index":"0.000008967332198598"},{"denom":"ASSET11","index":"0.000012451619524186"},{"denom":"ASSET12","index":"0.000011213472915376"},{"denom":"ASSET13","index":"0.000003858438984711"},{"denom":"ASSET14","index":"0.000011631932007817"},{"denom":"ASSET15","index":"0.000008316259081242"},{"denom":"ASSET16","index":"0.000005798119954378"},{"denom":"ASSET17","index":"0.000004118129774432"},{"denom":"ASSET18","index":"0.000001961834686325"},{"denom":"ASSET2","index":"0.000003799362406955"},{"denom":"ASSET3","index":"0.000001111378119041"},{"denom":"ASSET4","index":"0.000010460246548983"},{"denom":"ASSET5","index":"0.000000862764187650"},{"denom":"ASSET6","index":"0.000003511364090393"},{"denom":"ASSET7","index":"0.000005377199337864"},{"denom":"ASSET8","index":"0.000007016574370602"},{"denom":"ASSET9","index":"0.000003030136134086"}],"last_reward_claim_height":"111"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET17","shares":"176188541.592588118619622325","reward_history":[{"denom":"ASSET0","index":"0.000003061984062566"},{"denom":"ASSET1","index":"0.000025984754387841"},{"denom":"ASSET10","index":"0.000020750278468036"},{"denom":"ASSET11","index":"0.000025825260107338"},{"denom":"ASSET12","index":"0.000024630365005548"},{"denom":"ASSET13","index":"0.000008111503841622"},{"denom":"ASSET14","index":"0.000023701848593669"},{"denom":"ASSET15","index":"0.000018689068915475"},{"denom":"ASSET16","index":"0.000011526541772952"},{"denom":"ASSET17","index":"0.000009050861170220"},{"denom":"ASSET18","index":"0.000003739265665267"},{"denom":"ASSET2","index":"0.000007869809789784"},{"denom":"ASSET3","index":"0.000002185113944095"},{"denom":"ASSET4","index":"0.000021066477214749"},{"denom":"ASSET5","index":"0.000001702392649313"},{"denom":"ASSET6","index":"0.000006871251000760"},{"denom":"ASSET7","index":"0.000010794622225013"},{"denom":"ASSET8","index":"0.000014746923085504"},{"denom":"ASSET9","index":"0.000006258895459680"}],"last_reward_claim_height":"159"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET2","shares":"175184293.000000000000000000","reward_history":[],"last_reward_claim_height":"39"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET4","shares":"632928126.000000000000000000","reward_history":[],"last_reward_claim_height":"61"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET13","shares":"944402387.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003296605577903"},{"denom":"ASSET1","index":"0.000027950980635352"},{"denom":"ASSET10","index":"0.000022177590033485"},{"denom":"ASSET11","index":"0.000027741245317152"},{"denom":"ASSET12","index":"0.000026384837371861"},{"denom":"ASSET13","index":"0.000008707523198290"},{"denom":"ASSET14","index":"0.000025482773879389"},{"denom":"ASSET15","index":"0.000019999205716580"},{"denom":"ASSET16","index":"0.000012408342313410"},{"denom":"ASSET17","index":"0.000009694954350389"},{"denom":"ASSET18","index":"0.000004033447725414"},{"denom":"ASSET2","index":"0.000008454290496983"},{"denom":"ASSET3","index":"0.000002354114882033"},{"denom":"ASSET4","index":"0.000022662624820802"},{"denom":"ASSET5","index":"0.000001833709311257"},{"denom":"ASSET6","index":"0.000007402928859239"},{"denom":"ASSET7","index":"0.000011614131087351"},{"denom":"ASSET8","index":"0.000015829970625061"},{"denom":"ASSET9","index":"0.000006725199056296"}],"last_reward_claim_height":"154"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET1","shares":"506517256.363641437596050972","reward_history":[{"denom":"ASSET0","index":"0.000004817835879767"},{"denom":"ASSET1","index":"0.000039488204780396"},{"denom":"ASSET10","index":"0.000033995250485661"},{"denom":"ASSET11","index":"0.000040925091239801"},{"denom":"ASSET12","index":"0.000038926083462773"},{"denom":"ASSET13","index":"0.000013182210958747"},{"denom":"ASSET14","index":"0.000037759800640957"},{"denom":"ASSET15","index":"0.000030534401627825"},{"denom":"ASSET16","index":"0.000017526460270060"},{"denom":"ASSET17","index":"0.000014147141919553"},{"denom":"ASSET18","index":"0.000005890295558042"},{"denom":"ASSET2","index":"0.000011916234104952"},{"denom":"ASSET3","index":"0.000003422666965158"},{"denom":"ASSET4","index":"0.000032353046153051"},{"denom":"ASSET5","index":"0.000002686332119571"},{"denom":"ASSET6","index":"0.000010961064994483"},{"denom":"ASSET7","index":"0.000016937661203717"},{"denom":"ASSET8","index":"0.000024306118669962"},{"denom":"ASSET9","index":"0.000009778460006236"}],"last_reward_claim_height":"200"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET4","shares":"252137288.307620841988250616","reward_history":[{"denom":"ASSET0","index":"0.000003278023650839"},{"denom":"ASSET1","index":"0.000027801084973989"},{"denom":"ASSET10","index":"0.000022126343818190"},{"denom":"ASSET11","index":"0.000027610641458424"},{"denom":"ASSET12","index":"0.000026294522151225"},{"denom":"ASSET13","index":"0.000008669795972838"},{"denom":"ASSET14","index":"0.000025352034708572"},{"denom":"ASSET15","index":"0.000019941753748345"},{"denom":"ASSET16","index":"0.000012337408081897"},{"denom":"ASSET17","index":"0.000009662232510971"},{"denom":"ASSET18","index":"0.000004006663612522"},{"denom":"ASSET2","index":"0.000008414274009770"},{"denom":"ASSET3","index":"0.000002339697370568"},{"denom":"ASSET4","index":"0.000022540556466857"},{"denom":"ASSET5","index":"0.000001822656991491"},{"denom":"ASSET6","index":"0.000007357334263189"},{"denom":"ASSET7","index":"0.000011551068960203"},{"denom":"ASSET8","index":"0.000015761386047857"},{"denom":"ASSET9","index":"0.000006692834331509"}],"last_reward_claim_height":"129"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET5","shares":"365391888.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003278023650839"},{"denom":"ASSET1","index":"0.000027801084973989"},{"denom":"ASSET10","index":"0.000022126343818190"},{"denom":"ASSET11","index":"0.000027610641458424"},{"denom":"ASSET12","index":"0.000026294522151225"},{"denom":"ASSET13","index":"0.000008669795972838"},{"denom":"ASSET14","index":"0.000025352034708572"},{"denom":"ASSET15","index":"0.000019941753748345"},{"denom":"ASSET16","index":"0.000012337408081897"},{"denom":"ASSET17","index":"0.000009662232510971"},{"denom":"ASSET18","index":"0.000004006663612522"},{"denom":"ASSET2","index":"0.000008414274009770"},{"denom":"ASSET3","index":"0.000002339697370568"},{"denom":"ASSET4","index":"0.000022540556466857"},{"denom":"ASSET5","index":"0.000001822656991491"},{"denom":"ASSET6","index":"0.000007357334263189"},{"denom":"ASSET7","index":"0.000011551068960203"},{"denom":"ASSET8","index":"0.000015761386047857"},{"denom":"ASSET9","index":"0.000006692834331509"}],"last_reward_claim_height":"132"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET12","shares":"16948289.878130239733841704","reward_history":[{"denom":"ASSET0","index":"0.000003278023650839"},{"denom":"ASSET1","index":"0.000027801084973989"},{"denom":"ASSET10","index":"0.000022126343818190"},{"denom":"ASSET11","index":"0.000027610641458424"},{"denom":"ASSET12","index":"0.000026294522151225"},{"denom":"ASSET13","index":"0.000008669795972838"},{"denom":"ASSET14","index":"0.000025352034708572"},{"denom":"ASSET15","index":"0.000019941753748345"},{"denom":"ASSET16","index":"0.000012337408081897"},{"denom":"ASSET17","index":"0.000009662232510971"},{"denom":"ASSET18","index":"0.000004006663612522"},{"denom":"ASSET2","index":"0.000008414274009770"},{"denom":"ASSET3","index":"0.000002339697370568"},{"denom":"ASSET4","index":"0.000022540556466857"},{"denom":"ASSET5","index":"0.000001822656991491"},{"denom":"ASSET6","index":"0.000007357334263189"},{"denom":"ASSET7","index":"0.000011551068960203"},{"denom":"ASSET8","index":"0.000015761386047857"},{"denom":"ASSET9","index":"0.000006692834331509"}],"last_reward_claim_height":"130"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET3","shares":"1233077280.808676033733362040","reward_history":[{"denom":"ASSET0","index":"0.000002735257365218"},{"denom":"ASSET1","index":"0.000023278157661741"},{"denom":"ASSET10","index":"0.000018999615823078"},{"denom":"ASSET11","index":"0.000023241706683585"},{"denom":"ASSET12","index":"0.000022372793234045"},{"denom":"ASSET13","index":"0.000007316911351959"},{"denom":"ASSET14","index":"0.000021266506066871"},{"denom":"ASSET15","index":"0.000017036720297506"},{"denom":"ASSET16","index":"0.000010298479660409"},{"denom":"ASSET17","index":"0.000008222611745720"},{"denom":"ASSET18","index":"0.000003315370510511"},{"denom":"ASSET2","index":"0.000007081336162231"},{"denom":"ASSET3","index":"0.000001948923871674"},{"denom":"ASSET4","index":"0.000018864412124408"},{"denom":"ASSET5","index":"0.000001519377842401"},{"denom":"ASSET6","index":"0.000006121992555640"},{"denom":"ASSET7","index":"0.000009661272655042"},{"denom":"ASSET8","index":"0.000013300968175029"},{"denom":"ASSET9","index":"0.000005629514833023"}],"last_reward_claim_height":"178"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET4","shares":"492226830.042658290785045985","reward_history":[{"denom":"ASSET0","index":"0.000001139195115521"},{"denom":"ASSET1","index":"0.000009496890331931"},{"denom":"ASSET10","index":"0.000006616523219856"},{"denom":"ASSET11","index":"0.000009187371854639"},{"denom":"ASSET12","index":"0.000008273091178185"},{"denom":"ASSET13","index":"0.000002846943294505"},{"denom":"ASSET14","index":"0.000008582261490710"},{"denom":"ASSET15","index":"0.000006136055842283"},{"denom":"ASSET16","index":"0.000004278248649000"},{"denom":"ASSET17","index":"0.000003038433916001"},{"denom":"ASSET18","index":"0.000001447320933748"},{"denom":"ASSET2","index":"0.000002803422698710"},{"denom":"ASSET3","index":"0.000000819928024772"},{"denom":"ASSET4","index":"0.000007718116540611"},{"denom":"ASSET5","index":"0.000000636445192901"},{"denom":"ASSET6","index":"0.000002590694026466"},{"denom":"ASSET7","index":"0.000003967685677409"},{"denom":"ASSET8","index":"0.000005177210075735"},{"denom":"ASSET9","index":"0.000002236262294314"}],"last_reward_claim_height":"93"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET9","shares":"583523106.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002735257365218"},{"denom":"ASSET1","index":"0.000023278157661741"},{"denom":"ASSET10","index":"0.000018999615823078"},{"denom":"ASSET11","index":"0.000023241706683585"},{"denom":"ASSET12","index":"0.000022372793234045"},{"denom":"ASSET13","index":"0.000007316911351959"},{"denom":"ASSET14","index":"0.000021266506066871"},{"denom":"ASSET15","index":"0.000017036720297506"},{"denom":"ASSET16","index":"0.000010298479660409"},{"denom":"ASSET17","index":"0.000008222611745720"},{"denom":"ASSET18","index":"0.000003315370510511"},{"denom":"ASSET2","index":"0.000007081336162231"},{"denom":"ASSET3","index":"0.000001948923871674"},{"denom":"ASSET4","index":"0.000018864412124408"},{"denom":"ASSET5","index":"0.000001519377842401"},{"denom":"ASSET6","index":"0.000006121992555640"},{"denom":"ASSET7","index":"0.000009661272655042"},{"denom":"ASSET8","index":"0.000013300968175029"},{"denom":"ASSET9","index":"0.000005629514833023"}],"last_reward_claim_height":"175"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET13","shares":"89748011.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002735257365218"},{"denom":"ASSET1","index":"0.000023278157661741"},{"denom":"ASSET10","index":"0.000018999615823078"},{"denom":"ASSET11","index":"0.000023241706683585"},{"denom":"ASSET12","index":"0.000022372793234045"},{"denom":"ASSET13","index":"0.000007316911351959"},{"denom":"ASSET14","index":"0.000021266506066871"},{"denom":"ASSET15","index":"0.000017036720297506"},{"denom":"ASSET16","index":"0.000010298479660409"},{"denom":"ASSET17","index":"0.000008222611745720"},{"denom":"ASSET18","index":"0.000003315370510511"},{"denom":"ASSET2","index":"0.000007081336162231"},{"denom":"ASSET3","index":"0.000001948923871674"},{"denom":"ASSET4","index":"0.000018864412124408"},{"denom":"ASSET5","index":"0.000001519377842401"},{"denom":"ASSET6","index":"0.000006121992555640"},{"denom":"ASSET7","index":"0.000009661272655042"},{"denom":"ASSET8","index":"0.000013300968175029"},{"denom":"ASSET9","index":"0.000005629514833023"}],"last_reward_claim_height":"154"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET15","shares":"89734776.398655527791124274","reward_history":[{"denom":"ASSET0","index":"0.000001139195115521"},{"denom":"ASSET1","index":"0.000009496890331931"},{"denom":"ASSET10","index":"0.000006616523219856"},{"denom":"ASSET11","index":"0.000009187371854639"},{"denom":"ASSET12","index":"0.000008273091178185"},{"denom":"ASSET13","index":"0.000002846943294505"},{"denom":"ASSET14","index":"0.000008582261490710"},{"denom":"ASSET15","index":"0.000006136055842283"},{"denom":"ASSET16","index":"0.000004278248649000"},{"denom":"ASSET17","index":"0.000003038433916001"},{"denom":"ASSET18","index":"0.000001447320933748"},{"denom":"ASSET2","index":"0.000002803422698710"},{"denom":"ASSET3","index":"0.000000819928024772"},{"denom":"ASSET4","index":"0.000007718116540611"},{"denom":"ASSET5","index":"0.000000636445192901"},{"denom":"ASSET6","index":"0.000002590694026466"},{"denom":"ASSET7","index":"0.000003967685677409"},{"denom":"ASSET8","index":"0.000005177210075735"},{"denom":"ASSET9","index":"0.000002236262294314"}],"last_reward_claim_height":"80"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET11","shares":"174214787.208726966558266498","reward_history":[{"denom":"ASSET0","index":"0.000003310378542013"},{"denom":"ASSET1","index":"0.000028352771206955"},{"denom":"ASSET10","index":"0.000022778987578468"},{"denom":"ASSET11","index":"0.000028201706998458"},{"denom":"ASSET12","index":"0.000026949790221900"},{"denom":"ASSET13","index":"0.000008856641706946"},{"denom":"ASSET14","index":"0.000025865717784540"},{"denom":"ASSET15","index":"0.000020483790155485"},{"denom":"ASSET16","index":"0.000012564495758376"},{"denom":"ASSET17","index":"0.000009912517491786"},{"denom":"ASSET18","index":"0.000004051289802086"},{"denom":"ASSET2","index":"0.000008567503486413"},{"denom":"ASSET3","index":"0.000002358477605528"},{"denom":"ASSET4","index":"0.000022984011222606"},{"denom":"ASSET5","index":"0.000001848359330263"},{"denom":"ASSET6","index":"0.000007474666006436"},{"denom":"ASSET7","index":"0.000011763521743703"},{"denom":"ASSET8","index":"0.000016098224703406"},{"denom":"ASSET9","index":"0.000006837907042961"}],"last_reward_claim_height":"157"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET17","shares":"437479015.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004884846200251"},{"denom":"ASSET1","index":"0.000040304484797617"},{"denom":"ASSET10","index":"0.000034917109179481"},{"denom":"ASSET11","index":"0.000041818292132207"},{"denom":"ASSET12","index":"0.000039867945342619"},{"denom":"ASSET13","index":"0.000013471240006092"},{"denom":"ASSET14","index":"0.000038555063072812"},{"denom":"ASSET15","index":"0.000031316255649666"},{"denom":"ASSET16","index":"0.000017871123795518"},{"denom":"ASSET17","index":"0.000014499114587660"},{"denom":"ASSET18","index":"0.000005977772587166"},{"denom":"ASSET2","index":"0.000012148457367650"},{"denom":"ASSET3","index":"0.000003465725186322"},{"denom":"ASSET4","index":"0.000033018842440738"},{"denom":"ASSET5","index":"0.000002731597284885"},{"denom":"ASSET6","index":"0.000011159624356967"},{"denom":"ASSET7","index":"0.000017271758444400"},{"denom":"ASSET8","index":"0.000024836200192877"},{"denom":"ASSET9","index":"0.000009993242634471"}],"last_reward_claim_height":"196"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET0","shares":"763941434.016859345608548185","reward_history":[{"denom":"ASSET0","index":"0.000003086330633608"},{"denom":"ASSET1","index":"0.000026187842720704"},{"denom":"ASSET10","index":"0.000020922921087024"},{"denom":"ASSET11","index":"0.000026029396638226"},{"denom":"ASSET12","index":"0.000024828709288325"},{"denom":"ASSET13","index":"0.000008176601230700"},{"denom":"ASSET14","index":"0.000023887113573615"},{"denom":"ASSET15","index":"0.000018841856891118"},{"denom":"ASSET16","index":"0.000011616230118922"},{"denom":"ASSET17","index":"0.000009124242236202"},{"denom":"ASSET18","index":"0.000003767471049721"},{"denom":"ASSET2","index":"0.000007932284099147"},{"denom":"ASSET3","index":"0.000002202458257762"},{"denom":"ASSET4","index":"0.000021230824628511"},{"denom":"ASSET5","index":"0.000001715648257347"},{"denom":"ASSET6","index":"0.000006923830152599"},{"denom":"ASSET7","index":"0.000010879262909104"},{"denom":"ASSET8","index":"0.000014863870027497"},{"denom":"ASSET9","index":"0.000006308409915314"}],"last_reward_claim_height":"176"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET7","shares":"247064573.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003086330633608"},{"denom":"ASSET1","index":"0.000026187842720704"},{"denom":"ASSET10","index":"0.000020922921087024"},{"denom":"ASSET11","index":"0.000026029396638226"},{"denom":"ASSET12","index":"0.000024828709288325"},{"denom":"ASSET13","index":"0.000008176601230700"},{"denom":"ASSET14","index":"0.000023887113573615"},{"denom":"ASSET15","index":"0.000018841856891118"},{"denom":"ASSET16","index":"0.000011616230118922"},{"denom":"ASSET17","index":"0.000009124242236202"},{"denom":"ASSET18","index":"0.000003767471049721"},{"denom":"ASSET2","index":"0.000007932284099147"},{"denom":"ASSET3","index":"0.000002202458257762"},{"denom":"ASSET4","index":"0.000021230824628511"},{"denom":"ASSET5","index":"0.000001715648257347"},{"denom":"ASSET6","index":"0.000006923830152599"},{"denom":"ASSET7","index":"0.000010879262909104"},{"denom":"ASSET8","index":"0.000014863870027497"},{"denom":"ASSET9","index":"0.000006308409915314"}],"last_reward_claim_height":"143"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET16","shares":"681686734.881496323937948780","reward_history":[{"denom":"ASSET0","index":"0.000003086330633608"},{"denom":"ASSET1","index":"0.000026187842720704"},{"denom":"ASSET10","index":"0.000020922921087024"},{"denom":"ASSET11","index":"0.000026029396638226"},{"denom":"ASSET12","index":"0.000024828709288325"},{"denom":"ASSET13","index":"0.000008176601230700"},{"denom":"ASSET14","index":"0.000023887113573615"},{"denom":"ASSET15","index":"0.000018841856891118"},{"denom":"ASSET16","index":"0.000011616230118922"},{"denom":"ASSET17","index":"0.000009124242236202"},{"denom":"ASSET18","index":"0.000003767471049721"},{"denom":"ASSET2","index":"0.000007932284099147"},{"denom":"ASSET3","index":"0.000002202458257762"},{"denom":"ASSET4","index":"0.000021230824628511"},{"denom":"ASSET5","index":"0.000001715648257347"},{"denom":"ASSET6","index":"0.000006923830152599"},{"denom":"ASSET7","index":"0.000010879262909104"},{"denom":"ASSET8","index":"0.000014863870027497"},{"denom":"ASSET9","index":"0.000006308409915314"}],"last_reward_claim_height":"129"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET7","shares":"487560658.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003051773960929"},{"denom":"ASSET1","index":"0.000025898629359040"},{"denom":"ASSET10","index":"0.000020686863907037"},{"denom":"ASSET11","index":"0.000025740096441319"},{"denom":"ASSET12","index":"0.000024551000542772"},{"denom":"ASSET13","index":"0.000008085532012369"},{"denom":"ASSET14","index":"0.000023622558405526"},{"denom":"ASSET15","index":"0.000018629920308839"},{"denom":"ASSET16","index":"0.000011487540137638"},{"denom":"ASSET17","index":"0.000009021847693812"},{"denom":"ASSET18","index":"0.000003725572559942"},{"denom":"ASSET2","index":"0.000007844221178735"},{"denom":"ASSET3","index":"0.000002178252359768"},{"denom":"ASSET4","index":"0.000020996168979716"},{"denom":"ASSET5","index":"0.000001697004218389"},{"denom":"ASSET6","index":"0.000006847583721256"},{"denom":"ASSET7","index":"0.000010758483833946"},{"denom":"ASSET8","index":"0.000014699172267780"},{"denom":"ASSET9","index":"0.000006238834616461"}],"last_reward_claim_height":"147"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET11","shares":"213783241.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003051773960929"},{"denom":"ASSET1","index":"0.000025898629359040"},{"denom":"ASSET10","index":"0.000020686863907037"},{"denom":"ASSET11","index":"0.000025740096441319"},{"denom":"ASSET12","index":"0.000024551000542772"},{"denom":"ASSET13","index":"0.000008085532012369"},{"denom":"ASSET14","index":"0.000023622558405526"},{"denom":"ASSET15","index":"0.000018629920308839"},{"denom":"ASSET16","index":"0.000011487540137638"},{"denom":"ASSET17","index":"0.000009021847693812"},{"denom":"ASSET18","index":"0.000003725572559942"},{"denom":"ASSET2","index":"0.000007844221178735"},{"denom":"ASSET3","index":"0.000002178252359768"},{"denom":"ASSET4","index":"0.000020996168979716"},{"denom":"ASSET5","index":"0.000001697004218389"},{"denom":"ASSET6","index":"0.000006847583721256"},{"denom":"ASSET7","index":"0.000010758483833946"},{"denom":"ASSET8","index":"0.000014699172267780"},{"denom":"ASSET9","index":"0.000006238834616461"}],"last_reward_claim_height":"168"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET16","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"24"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET2","shares":"230946030.543592837383443660","reward_history":[{"denom":"ASSET0","index":"0.000003452880861936"},{"denom":"ASSET1","index":"0.000029278299049117"},{"denom":"ASSET10","index":"0.000023254773922096"},{"denom":"ASSET11","index":"0.000029065569213605"},{"denom":"ASSET12","index":"0.000027656204711461"},{"denom":"ASSET13","index":"0.000009124518140406"},{"denom":"ASSET14","index":"0.000026695142606829"},{"denom":"ASSET15","index":"0.000020967476611979"},{"denom":"ASSET16","index":"0.000012995878924798"},{"denom":"ASSET17","index":"0.000010163149632422"},{"denom":"ASSET18","index":"0.000004223627093961"},{"denom":"ASSET2","index":"0.000008858348919255"},{"denom":"ASSET3","index":"0.000002465420318230"},{"denom":"ASSET4","index":"0.000023739200929128"},{"denom":"ASSET5","index":"0.000001919695214447"},{"denom":"ASSET6","index":"0.000007752150153146"},{"denom":"ASSET7","index":"0.000012165597276913"},{"denom":"ASSET8","index":"0.000016587849042771"},{"denom":"ASSET9","index":"0.000007046182609545"}],"last_reward_claim_height":"170"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET8","shares":"2139903.463855745125626318","reward_history":[{"denom":"ASSET0","index":"0.000005032492628219"},{"denom":"ASSET1","index":"0.000041266859936301"},{"denom":"ASSET10","index":"0.000035429889399779"},{"denom":"ASSET11","index":"0.000042723656696405"},{"denom":"ASSET12","index":"0.000040613653925804"},{"denom":"ASSET13","index":"0.000013753263814422"},{"denom":"ASSET14","index":"0.000039422947852626"},{"denom":"ASSET15","index":"0.000031833222954476"},{"denom":"ASSET16","index":"0.000018318787006987"},{"denom":"ASSET17","index":"0.000014763750221356"},{"denom":"ASSET18","index":"0.000006155924174192"},{"denom":"ASSET2","index":"0.000012450707876225"},{"denom":"ASSET3","index":"0.000003576279428546"},{"denom":"ASSET4","index":"0.000033804929454957"},{"denom":"ASSET5","index":"0.000002805642715656"},{"denom":"ASSET6","index":"0.000011448870089314"},{"denom":"ASSET7","index":"0.000017691249600312"},{"denom":"ASSET8","index":"0.000025352925937643"},{"denom":"ASSET9","index":"0.000010211383859297"}],"last_reward_claim_height":"187"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET6","shares":"247189664.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002868026198866"},{"denom":"ASSET1","index":"0.000024339331661302"},{"denom":"ASSET10","index":"0.000019438063504597"},{"denom":"ASSET11","index":"0.000024190729344646"},{"denom":"ASSET12","index":"0.000023070632234294"},{"denom":"ASSET13","index":"0.000007598221307181"},{"denom":"ASSET14","index":"0.000022200415230506"},{"denom":"ASSET15","index":"0.000017506414948675"},{"denom":"ASSET16","index":"0.000010796282691537"},{"denom":"ASSET17","index":"0.000008477235924619"},{"denom":"ASSET18","index":"0.000003501529899130"},{"denom":"ASSET2","index":"0.000007371086117521"},{"denom":"ASSET3","index":"0.000002046801194740"},{"denom":"ASSET4","index":"0.000019732782799148"},{"denom":"ASSET5","index":"0.000001595074946946"},{"denom":"ASSET6","index":"0.000006435625489467"},{"denom":"ASSET7","index":"0.000010111140720407"},{"denom":"ASSET8","index":"0.000013813490690156"},{"denom":"ASSET9","index":"0.000005862589992841"}],"last_reward_claim_height":"133"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET9","shares":"57161377.706742600166366920","reward_history":[{"denom":"ASSET0","index":"0.000002868026198866"},{"denom":"ASSET1","index":"0.000024339331661302"},{"denom":"ASSET10","index":"0.000019438063504597"},{"denom":"ASSET11","index":"0.000024190729344646"},{"denom":"ASSET12","index":"0.000023070632234294"},{"denom":"ASSET13","index":"0.000007598221307181"},{"denom":"ASSET14","index":"0.000022200415230506"},{"denom":"ASSET15","index":"0.000017506414948675"},{"denom":"ASSET16","index":"0.000010796282691537"},{"denom":"ASSET17","index":"0.000008477235924619"},{"denom":"ASSET18","index":"0.000003501529899130"},{"denom":"ASSET2","index":"0.000007371086117521"},{"denom":"ASSET3","index":"0.000002046801194740"},{"denom":"ASSET4","index":"0.000019732782799148"},{"denom":"ASSET5","index":"0.000001595074946946"},{"denom":"ASSET6","index":"0.000006435625489467"},{"denom":"ASSET7","index":"0.000010111140720407"},{"denom":"ASSET8","index":"0.000013813490690156"},{"denom":"ASSET9","index":"0.000005862589992841"}],"last_reward_claim_height":"177"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET15","shares":"999937404.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001444852701297"},{"denom":"ASSET1","index":"0.000012048934466992"},{"denom":"ASSET10","index":"0.000008394653008080"},{"denom":"ASSET11","index":"0.000011656844181701"},{"denom":"ASSET12","index":"0.000010496256937239"},{"denom":"ASSET13","index":"0.000003612131753243"},{"denom":"ASSET14","index":"0.000010888347222530"},{"denom":"ASSET15","index":"0.000007784952614452"},{"denom":"ASSET16","index":"0.000005427509774140"},{"denom":"ASSET17","index":"0.000003854247504410"},{"denom":"ASSET18","index":"0.000001835962760875"},{"denom":"ASSET2","index":"0.000003556258887589"},{"denom":"ASSET3","index":"0.000001040019481734"},{"denom":"ASSET4","index":"0.000009792454875142"},{"denom":"ASSET5","index":"0.000000807705987699"},{"denom":"ASSET6","index":"0.000003286696816452"},{"denom":"ASSET7","index":"0.000005033459037423"},{"denom":"ASSET8","index":"0.000006568492504337"},{"denom":"ASSET9","index":"0.000002836773214080"}],"last_reward_claim_height":"81"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET16","shares":"332291914.000000000000000000","reward_history":[],"last_reward_claim_height":"10"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET8","shares":"242299455.373890715044796274","reward_history":[{"denom":"ASSET0","index":"0.000001655416114862"},{"denom":"ASSET1","index":"0.000013800538848519"},{"denom":"ASSET10","index":"0.000009615249134678"},{"denom":"ASSET11","index":"0.000013350879623065"},{"denom":"ASSET12","index":"0.000012022439267096"},{"denom":"ASSET13","index":"0.000004137189147657"},{"denom":"ASSET14","index":"0.000012471558036751"},{"denom":"ASSET15","index":"0.000008916980241305"},{"denom":"ASSET16","index":"0.000006216863065381"},{"denom":"ASSET17","index":"0.000004414983428766"},{"denom":"ASSET18","index":"0.000002102913517117"},{"denom":"ASSET2","index":"0.000004073955819077"},{"denom":"ASSET3","index":"0.000001191705038613"},{"denom":"ASSET4","index":"0.000011215538757958"},{"denom":"ASSET5","index":"0.000000924719873500"},{"denom":"ASSET6","index":"0.000003764274645778"},{"denom":"ASSET7","index":"0.000005765582472528"},{"denom":"ASSET8","index":"0.000007523144733557"},{"denom":"ASSET9","index":"0.000003249220268545"}],"last_reward_claim_height":"100"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET11","shares":"513804585.000000000000000000","reward_history":[],"last_reward_claim_height":"32"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET1","shares":"177889485.000000000000000000","reward_history":[],"last_reward_claim_height":"16"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET8","shares":"445090574.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003237925740153"},{"denom":"ASSET1","index":"0.000027468087048908"},{"denom":"ASSET10","index":"0.000021838560142362"},{"denom":"ASSET11","index":"0.000027274223261348"},{"denom":"ASSET12","index":"0.000025962125103579"},{"denom":"ASSET13","index":"0.000008562973508850"},{"denom":"ASSET14","index":"0.000025046299162567"},{"denom":"ASSET15","index":"0.000019687604125947"},{"denom":"ASSET16","index":"0.000012189946370622"},{"denom":"ASSET17","index":"0.000009540519193028"},{"denom":"ASSET18","index":"0.000003959057055270"},{"denom":"ASSET2","index":"0.000008312511220651"},{"denom":"ASSET3","index":"0.000002312646079660"},{"denom":"ASSET4","index":"0.000022269978905361"},{"denom":"ASSET5","index":"0.000001800462011039"},{"denom":"ASSET6","index":"0.000007270233858279"},{"denom":"ASSET7","index":"0.000011411601588483"},{"denom":"ASSET8","index":"0.000015567552190875"},{"denom":"ASSET9","index":"0.000006610637099613"}],"last_reward_claim_height":"169"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET10","shares":"207404593.047238667247822500","reward_history":[{"denom":"ASSET0","index":"0.000004759364904599"},{"denom":"ASSET1","index":"0.000039014688598823"},{"denom":"ASSET10","index":"0.000033564746899774"},{"denom":"ASSET11","index":"0.000040428699846607"},{"denom":"ASSET12","index":"0.000038441898385906"},{"denom":"ASSET13","index":"0.000013020994461924"},{"denom":"ASSET14","index":"0.000037304807804505"},{"denom":"ASSET15","index":"0.000030152778242557"},{"denom":"ASSET16","index":"0.000017316516616402"},{"denom":"ASSET17","index":"0.000013971686283299"},{"denom":"ASSET18","index":"0.000005820085693082"},{"denom":"ASSET2","index":"0.000011772463606205"},{"denom":"ASSET3","index":"0.000003382604675726"},{"denom":"ASSET4","index":"0.000031964503105066"},{"denom":"ASSET5","index":"0.000002653911338254"},{"denom":"ASSET6","index":"0.000010830608501608"},{"denom":"ASSET7","index":"0.000016733421795061"},{"denom":"ASSET8","index":"0.000024009455581904"},{"denom":"ASSET9","index":"0.000009659109983255"}],"last_reward_claim_height":"197"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET11","shares":"129608894.650037609599481115","reward_history":[{"denom":"ASSET0","index":"0.000003237925740153"},{"denom":"ASSET1","index":"0.000027468087048908"},{"denom":"ASSET10","index":"0.000021838560142362"},{"denom":"ASSET11","index":"0.000027274223261348"},{"denom":"ASSET12","index":"0.000025962125103579"},{"denom":"ASSET13","index":"0.000008562973508850"},{"denom":"ASSET14","index":"0.000025046299162567"},{"denom":"ASSET15","index":"0.000019687604125947"},{"denom":"ASSET16","index":"0.000012189946370622"},{"denom":"ASSET17","index":"0.000009540519193028"},{"denom":"ASSET18","index":"0.000003959057055270"},{"denom":"ASSET2","index":"0.000008312511220651"},{"denom":"ASSET3","index":"0.000002312646079660"},{"denom":"ASSET4","index":"0.000022269978905361"},{"denom":"ASSET5","index":"0.000001800462011039"},{"denom":"ASSET6","index":"0.000007270233858279"},{"denom":"ASSET7","index":"0.000011411601588483"},{"denom":"ASSET8","index":"0.000015567552190875"},{"denom":"ASSET9","index":"0.000006610637099613"}],"last_reward_claim_height":"173"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET4","shares":"247521161.000000003532987100","reward_history":[],"last_reward_claim_height":"56"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET9","shares":"546990164.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004829962844284"},{"denom":"ASSET1","index":"0.000039524111522190"},{"denom":"ASSET10","index":"0.000034078647298627"},{"denom":"ASSET11","index":"0.000041019961315880"},{"denom":"ASSET12","index":"0.000038986303917418"},{"denom":"ASSET13","index":"0.000013223748427218"},{"denom":"ASSET14","index":"0.000037862348824484"},{"denom":"ASSET15","index":"0.000030615488739002"},{"denom":"ASSET16","index":"0.000017546337426996"},{"denom":"ASSET17","index":"0.000014163136845027"},{"denom":"ASSET18","index":"0.000005908859381642"},{"denom":"ASSET2","index":"0.000011921448629340"},{"denom":"ASSET3","index":"0.000003430931561974"},{"denom":"ASSET4","index":"0.000032397189102807"},{"denom":"ASSET5","index":"0.000002693636544476"},{"denom":"ASSET6","index":"0.000010996765047817"},{"denom":"ASSET7","index":"0.000016976981501674"},{"denom":"ASSET8","index":"0.000024395918561262"},{"denom":"ASSET9","index":"0.000009795939235919"}],"last_reward_claim_height":"188"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET11","shares":"501756779.000000000000000000","reward_history":[],"last_reward_claim_height":"63"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET16","shares":"617752327.918850020187891250","reward_history":[{"denom":"ASSET0","index":"0.000003224934301433"},{"denom":"ASSET1","index":"0.000027341438894536"},{"denom":"ASSET10","index":"0.000021706571274337"},{"denom":"ASSET11","index":"0.000027141091242061"},{"denom":"ASSET12","index":"0.000025819235056226"},{"denom":"ASSET13","index":"0.000008520116782966"},{"denom":"ASSET14","index":"0.000024928444433519"},{"denom":"ASSET15","index":"0.000019573794936329"},{"denom":"ASSET16","index":"0.000012137286393349"},{"denom":"ASSET17","index":"0.000009487995483061"},{"denom":"ASSET18","index":"0.000003945309126507"},{"denom":"ASSET2","index":"0.000008271045740629"},{"denom":"ASSET3","index":"0.000002302032616683"},{"denom":"ASSET4","index":"0.000022168721917699"},{"denom":"ASSET5","index":"0.000001793343624246"},{"denom":"ASSET6","index":"0.000007240378309003"},{"denom":"ASSET7","index":"0.000011361888746536"},{"denom":"ASSET8","index":"0.000015488944629697"},{"denom":"ASSET9","index":"0.000006579500326985"}],"last_reward_claim_height":"167"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET12","shares":"356247214.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002959758868257"},{"denom":"ASSET1","index":"0.000025116229265451"},{"denom":"ASSET10","index":"0.000020033024535037"},{"denom":"ASSET11","index":"0.000024955202637112"},{"denom":"ASSET12","index":"0.000023787913163340"},{"denom":"ASSET13","index":"0.000007837044315100"},{"denom":"ASSET14","index":"0.000022906603767748"},{"denom":"ASSET15","index":"0.000018047329062837"},{"denom":"ASSET16","index":"0.000011142428291313"},{"denom":"ASSET17","index":"0.000008741414303940"},{"denom":"ASSET18","index":"0.000003614587489816"},{"denom":"ASSET2","index":"0.000007605147442913"},{"denom":"ASSET3","index":"0.000002112677625393"},{"denom":"ASSET4","index":"0.000020363145786569"},{"denom":"ASSET5","index":"0.000001645239564154"},{"denom":"ASSET6","index":"0.000006641765641459"},{"denom":"ASSET7","index":"0.000010434431181702"},{"denom":"ASSET8","index":"0.000014248591155217"},{"denom":"ASSET9","index":"0.000006047835874095"}],"last_reward_claim_height":"173"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET17","shares":"592939724.109949599128803106","reward_history":[{"denom":"ASSET0","index":"0.000001505652349479"},{"denom":"ASSET1","index":"0.000012557843622987"},{"denom":"ASSET10","index":"0.000008748308836028"},{"denom":"ASSET11","index":"0.000012147743761261"},{"denom":"ASSET12","index":"0.000010939413811534"},{"denom":"ASSET13","index":"0.000003764130873697"},{"denom":"ASSET14","index":"0.000011348049030896"},{"denom":"ASSET15","index":"0.000008114118692716"},{"denom":"ASSET16","index":"0.000005656448807088"},{"denom":"ASSET17","index":"0.000004017514002549"},{"denom":"ASSET18","index":"0.000001912822926478"},{"denom":"ASSET2","index":"0.000003707009821528"},{"denom":"ASSET3","index":"0.000001083835348847"},{"denom":"ASSET4","index":"0.000010205627987517"},{"denom":"ASSET5","index":"0.000000840704716538"},{"denom":"ASSET6","index":"0.000003424333845410"},{"denom":"ASSET7","index":"0.000005246348945363"},{"denom":"ASSET8","index":"0.000006845738406093"},{"denom":"ASSET9","index":"0.000002955648289152"}],"last_reward_claim_height":"122"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET11","shares":"25399078.028717571972390153","reward_history":[{"denom":"ASSET0","index":"0.000001815877519749"},{"denom":"ASSET1","index":"0.000015137138459046"},{"denom":"ASSET10","index":"0.000010545739718907"},{"denom":"ASSET11","index":"0.000014644907422941"},{"denom":"ASSET12","index":"0.000013186828093302"},{"denom":"ASSET13","index":"0.000004537625601742"},{"denom":"ASSET14","index":"0.000013679059129408"},{"denom":"ASSET15","index":"0.000009780506595550"},{"denom":"ASSET16","index":"0.000006818847588397"},{"denom":"ASSET17","index":"0.000004841650653454"},{"denom":"ASSET18","index":"0.000002306040358223"},{"denom":"ASSET2","index":"0.000004467306882298"},{"denom":"ASSET3","index":"0.000001307100902598"},{"denom":"ASSET4","index":"0.000012301639507366"},{"denom":"ASSET5","index":"0.000001013416839040"},{"denom":"ASSET6","index":"0.000004128122470864"},{"denom":"ASSET7","index":"0.000006324548354661"},{"denom":"ASSET8","index":"0.000008252108546467"},{"denom":"ASSET9","index":"0.000003563504517685"}],"last_reward_claim_height":"93"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET15","shares":"1000125203.108896343000000000","reward_history":[{"denom":"ASSET0","index":"0.000003468946703322"},{"denom":"ASSET1","index":"0.000029412495408176"},{"denom":"ASSET10","index":"0.000023372734593498"},{"denom":"ASSET11","index":"0.000029203218600002"},{"denom":"ASSET12","index":"0.000027792166579196"},{"denom":"ASSET13","index":"0.000009167641990636"},{"denom":"ASSET14","index":"0.000026818252104650"},{"denom":"ASSET15","index":"0.000021072198152383"},{"denom":"ASSET16","index":"0.000013054905852031"},{"denom":"ASSET17","index":"0.000010211457984650"},{"denom":"ASSET18","index":"0.000004240878207320"},{"denom":"ASSET2","index":"0.000008898543974195"},{"denom":"ASSET3","index":"0.000002476460623897"},{"denom":"ASSET4","index":"0.000023847831794350"},{"denom":"ASSET5","index":"0.000001927880642719"},{"denom":"ASSET6","index":"0.000007785977685579"},{"denom":"ASSET7","index":"0.000012222326144679"},{"denom":"ASSET8","index":"0.000016667230515151"},{"denom":"ASSET9","index":"0.000007078301868557"}],"last_reward_claim_height":"126"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET4","shares":"394376588.000000000000000000","reward_history":[],"last_reward_claim_height":"57"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET14","shares":"39917086.000000000000000000","reward_history":[],"last_reward_claim_height":"34"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET6","shares":"166180562.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002827520151011"},{"denom":"ASSET1","index":"0.000024027878888002"},{"denom":"ASSET10","index":"0.000019355847170480"},{"denom":"ASSET11","index":"0.000023924401086085"},{"denom":"ASSET12","index":"0.000022900407365256"},{"denom":"ASSET13","index":"0.000007521399074311"},{"denom":"ASSET14","index":"0.000021930603354990"},{"denom":"ASSET15","index":"0.000017401215805238"},{"denom":"ASSET16","index":"0.000010647310435771"},{"denom":"ASSET17","index":"0.000008415007538097"},{"denom":"ASSET18","index":"0.000003442593620109"},{"denom":"ASSET2","index":"0.000007289635767836"},{"denom":"ASSET3","index":"0.000002016810506595"},{"denom":"ASSET4","index":"0.000019477449509443"},{"denom":"ASSET5","index":"0.000001571692130579"},{"denom":"ASSET6","index":"0.000006339251488002"},{"denom":"ASSET7","index":"0.000009978075244424"},{"denom":"ASSET8","index":"0.000013673195599374"},{"denom":"ASSET9","index":"0.000005796522499795"}],"last_reward_claim_height":"171"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET9","shares":"249840824.870793465626962512","reward_history":[{"denom":"ASSET0","index":"0.000002827520151011"},{"denom":"ASSET1","index":"0.000024027878888002"},{"denom":"ASSET10","index":"0.000019355847170480"},{"denom":"ASSET11","index":"0.000023924401086085"},{"denom":"ASSET12","index":"0.000022900407365256"},{"denom":"ASSET13","index":"0.000007521399074311"},{"denom":"ASSET14","index":"0.000021930603354990"},{"denom":"ASSET15","index":"0.000017401215805238"},{"denom":"ASSET16","index":"0.000010647310435771"},{"denom":"ASSET17","index":"0.000008415007538097"},{"denom":"ASSET18","index":"0.000003442593620109"},{"denom":"ASSET2","index":"0.000007289635767836"},{"denom":"ASSET3","index":"0.000002016810506595"},{"denom":"ASSET4","index":"0.000019477449509443"},{"denom":"ASSET5","index":"0.000001571692130579"},{"denom":"ASSET6","index":"0.000006339251488002"},{"denom":"ASSET7","index":"0.000009978075244424"},{"denom":"ASSET8","index":"0.000013673195599374"},{"denom":"ASSET9","index":"0.000005796522499795"}],"last_reward_claim_height":"164"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET11","shares":"1000176173.649824227000000000","reward_history":[{"denom":"ASSET0","index":"0.000002827520151011"},{"denom":"ASSET1","index":"0.000024027878888002"},{"denom":"ASSET10","index":"0.000019355847170480"},{"denom":"ASSET11","index":"0.000023924401086085"},{"denom":"ASSET12","index":"0.000022900407365256"},{"denom":"ASSET13","index":"0.000007521399074311"},{"denom":"ASSET14","index":"0.000021930603354990"},{"denom":"ASSET15","index":"0.000017401215805238"},{"denom":"ASSET16","index":"0.000010647310435771"},{"denom":"ASSET17","index":"0.000008415007538097"},{"denom":"ASSET18","index":"0.000003442593620109"},{"denom":"ASSET2","index":"0.000007289635767836"},{"denom":"ASSET3","index":"0.000002016810506595"},{"denom":"ASSET4","index":"0.000019477449509443"},{"denom":"ASSET5","index":"0.000001571692130579"},{"denom":"ASSET6","index":"0.000006339251488002"},{"denom":"ASSET7","index":"0.000009978075244424"},{"denom":"ASSET8","index":"0.000013673195599374"},{"denom":"ASSET9","index":"0.000005796522499795"}],"last_reward_claim_height":"141"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET0","shares":"1823844698.883011214000000000","reward_history":[{"denom":"ASSET0","index":"0.000003141123056438"},{"denom":"ASSET1","index":"0.000026662100889972"},{"denom":"ASSET10","index":"0.000021312054987248"},{"denom":"ASSET11","index":"0.000026503481745319"},{"denom":"ASSET12","index":"0.000025286293002787"},{"denom":"ASSET13","index":"0.000008324908472884"},{"denom":"ASSET14","index":"0.000024319980387721"},{"denom":"ASSET15","index":"0.000019190708128374"},{"denom":"ASSET16","index":"0.000011824997422058"},{"denom":"ASSET17","index":"0.000009292034078872"},{"denom":"ASSET18","index":"0.000003834040785154"},{"denom":"ASSET2","index":"0.000008076003481032"},{"denom":"ASSET3","index":"0.000002241608843356"},{"denom":"ASSET4","index":"0.000021614431804298"},{"denom":"ASSET5","index":"0.000001746420421862"},{"denom":"ASSET6","index":"0.000007047828859327"},{"denom":"ASSET7","index":"0.000011075197168484"},{"denom":"ASSET8","index":"0.000015134882092008"},{"denom":"ASSET9","index":"0.000006422749115253"}],"last_reward_claim_height":"169"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET5","shares":"894636003.229857282471556622","reward_history":[{"denom":"ASSET0","index":"0.000003141123056438"},{"denom":"ASSET1","index":"0.000026662100889972"},{"denom":"ASSET10","index":"0.000021312054987248"},{"denom":"ASSET11","index":"0.000026503481745319"},{"denom":"ASSET12","index":"0.000025286293002787"},{"denom":"ASSET13","index":"0.000008324908472884"},{"denom":"ASSET14","index":"0.000024319980387721"},{"denom":"ASSET15","index":"0.000019190708128374"},{"denom":"ASSET16","index":"0.000011824997422058"},{"denom":"ASSET17","index":"0.000009292034078872"},{"denom":"ASSET18","index":"0.000003834040785154"},{"denom":"ASSET2","index":"0.000008076003481032"},{"denom":"ASSET3","index":"0.000002241608843356"},{"denom":"ASSET4","index":"0.000021614431804298"},{"denom":"ASSET5","index":"0.000001746420421862"},{"denom":"ASSET6","index":"0.000007047828859327"},{"denom":"ASSET7","index":"0.000011075197168484"},{"denom":"ASSET8","index":"0.000015134882092008"},{"denom":"ASSET9","index":"0.000006422749115253"}],"last_reward_claim_height":"160"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET14","shares":"2955249.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003141123056438"},{"denom":"ASSET1","index":"0.000026662100889972"},{"denom":"ASSET10","index":"0.000021312054987248"},{"denom":"ASSET11","index":"0.000026503481745319"},{"denom":"ASSET12","index":"0.000025286293002787"},{"denom":"ASSET13","index":"0.000008324908472884"},{"denom":"ASSET14","index":"0.000024319980387721"},{"denom":"ASSET15","index":"0.000019190708128374"},{"denom":"ASSET16","index":"0.000011824997422058"},{"denom":"ASSET17","index":"0.000009292034078872"},{"denom":"ASSET18","index":"0.000003834040785154"},{"denom":"ASSET2","index":"0.000008076003481032"},{"denom":"ASSET3","index":"0.000002241608843356"},{"denom":"ASSET4","index":"0.000021614431804298"},{"denom":"ASSET5","index":"0.000001746420421862"},{"denom":"ASSET6","index":"0.000007047828859327"},{"denom":"ASSET7","index":"0.000011075197168484"},{"denom":"ASSET8","index":"0.000015134882092008"},{"denom":"ASSET9","index":"0.000006422749115253"}],"last_reward_claim_height":"133"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET15","shares":"783740254.752072437051425744","reward_history":[{"denom":"ASSET0","index":"0.000001571435631869"},{"denom":"ASSET1","index":"0.000013104175099655"},{"denom":"ASSET10","index":"0.000009129715488355"},{"denom":"ASSET11","index":"0.000012677036600848"},{"denom":"ASSET12","index":"0.000011415350365342"},{"denom":"ASSET13","index":"0.000003928095848150"},{"denom":"ASSET14","index":"0.000011841502401104"},{"denom":"ASSET15","index":"0.000008466812321615"},{"denom":"ASSET16","index":"0.000005902994865728"},{"denom":"ASSET17","index":"0.000004192467944409"},{"denom":"ASSET18","index":"0.000001996601204585"},{"denom":"ASSET2","index":"0.000003867921602360"},{"denom":"ASSET3","index":"0.000001131473113468"},{"denom":"ASSET4","index":"0.000010648868578800"},{"denom":"ASSET5","index":"0.000000877952110712"},{"denom":"ASSET6","index":"0.000003573955614728"},{"denom":"ASSET7","index":"0.000005473883440830"},{"denom":"ASSET8","index":"0.000007142978914228"},{"denom":"ASSET9","index":"0.000003084669944040"}],"last_reward_claim_height":"98"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET4","shares":"382902195.999999996170978040","reward_history":[],"last_reward_claim_height":"45"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET15","shares":"155390971.000000000000000000","reward_history":[],"last_reward_claim_height":"52"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET4","shares":"93829393.999999991454858710","reward_history":[],"last_reward_claim_height":"62"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET10","shares":"81195259.065186389259449837","reward_history":[{"denom":"ASSET0","index":"0.000003152887181228"},{"denom":"ASSET1","index":"0.000026760532918289"},{"denom":"ASSET10","index":"0.000021371603424459"},{"denom":"ASSET11","index":"0.000026596151859305"},{"denom":"ASSET12","index":"0.000025366346961436"},{"denom":"ASSET13","index":"0.000008353980761099"},{"denom":"ASSET14","index":"0.000024408754798213"},{"denom":"ASSET15","index":"0.000019248058608344"},{"denom":"ASSET16","index":"0.000011870971278696"},{"denom":"ASSET17","index":"0.000009321801721671"},{"denom":"ASSET18","index":"0.000003850124607081"},{"denom":"ASSET2","index":"0.000008105134387478"},{"denom":"ASSET3","index":"0.000002250596051831"},{"denom":"ASSET4","index":"0.000021694971342643"},{"denom":"ASSET5","index":"0.000001752750611640"},{"denom":"ASSET6","index":"0.000007075802880646"},{"denom":"ASSET7","index":"0.000011117440314842"},{"denom":"ASSET8","index":"0.000015186957305377"},{"denom":"ASSET9","index":"0.000006446159830056"}],"last_reward_claim_height":"151"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET13","shares":"731736825.000000000000000000","reward_history":[],"last_reward_claim_height":"44"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET17","shares":"1108995867.449385780140896264","reward_history":[{"denom":"ASSET0","index":"0.000001587610635106"},{"denom":"ASSET1","index":"0.000013244938725362"},{"denom":"ASSET10","index":"0.000009227311812032"},{"denom":"ASSET11","index":"0.000012812935831455"},{"denom":"ASSET12","index":"0.000011538527294432"},{"denom":"ASSET13","index":"0.000003970376596809"},{"denom":"ASSET14","index":"0.000011969180179294"},{"denom":"ASSET15","index":"0.000008557707326477"},{"denom":"ASSET16","index":"0.000005967039972082"},{"denom":"ASSET17","index":"0.000004237678387413"},{"denom":"ASSET18","index":"0.000002018263519969"},{"denom":"ASSET2","index":"0.000003909626189853"},{"denom":"ASSET3","index":"0.000001143457659809"},{"denom":"ASSET4","index":"0.000010763622103487"},{"denom":"ASSET5","index":"0.000000886955941552"},{"denom":"ASSET6","index":"0.000003612624200292"},{"denom":"ASSET7","index":"0.000005533687069132"},{"denom":"ASSET8","index":"0.000007219848364411"},{"denom":"ASSET9","index":"0.000003118520890387"}],"last_reward_claim_height":"92"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET3","shares":"430497763.069712846830983275","reward_history":[{"denom":"ASSET0","index":"0.000002831039632868"},{"denom":"ASSET1","index":"0.000024014703977493"},{"denom":"ASSET10","index":"0.000019136467933987"},{"denom":"ASSET11","index":"0.000023856136612857"},{"denom":"ASSET12","index":"0.000022731094165303"},{"denom":"ASSET13","index":"0.000007491812146677"},{"denom":"ASSET14","index":"0.000021900750691559"},{"denom":"ASSET15","index":"0.000017242457090593"},{"denom":"ASSET16","index":"0.000010655585625623"},{"denom":"ASSET17","index":"0.000008353141870908"},{"denom":"ASSET18","index":"0.000003458892129556"},{"denom":"ASSET2","index":"0.000007270317321266"},{"denom":"ASSET3","index":"0.000002020551075646"},{"denom":"ASSET4","index":"0.000019470118745656"},{"denom":"ASSET5","index":"0.000001574098937698"},{"denom":"ASSET6","index":"0.000006353413461243"},{"denom":"ASSET7","index":"0.000009977493764026"},{"denom":"ASSET8","index":"0.000013619759476676"},{"denom":"ASSET9","index":"0.000005782490697784"}],"last_reward_claim_height":"170"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET10","shares":"383510781.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001450981944084"},{"denom":"ASSET1","index":"0.000012097851501865"},{"denom":"ASSET10","index":"0.000008428524260541"},{"denom":"ASSET11","index":"0.000011703479004578"},{"denom":"ASSET12","index":"0.000010538773481717"},{"denom":"ASSET13","index":"0.000003626563958485"},{"denom":"ASSET14","index":"0.000010932552044520"},{"denom":"ASSET15","index":"0.000007816771742159"},{"denom":"ASSET16","index":"0.000005449942823954"},{"denom":"ASSET17","index":"0.000003870671031354"},{"denom":"ASSET18","index":"0.000001843572637920"},{"denom":"ASSET2","index":"0.000003571328051486"},{"denom":"ASSET3","index":"0.000001044730757120"},{"denom":"ASSET4","index":"0.000009831991445917"},{"denom":"ASSET5","index":"0.000000810720570477"},{"denom":"ASSET6","index":"0.000003299899992359"},{"denom":"ASSET7","index":"0.000005054382457699"},{"denom":"ASSET8","index":"0.000006595048508847"},{"denom":"ASSET9","index":"0.000002848509784621"}],"last_reward_claim_height":"79"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET14","shares":"82643304.099754814649259530","reward_history":[{"denom":"ASSET0","index":"0.000001450981944084"},{"denom":"ASSET1","index":"0.000012097851501865"},{"denom":"ASSET10","index":"0.000008428524260541"},{"denom":"ASSET11","index":"0.000011703479004578"},{"denom":"ASSET12","index":"0.000010538773481717"},{"denom":"ASSET13","index":"0.000003626563958485"},{"denom":"ASSET14","index":"0.000010932552044520"},{"denom":"ASSET15","index":"0.000007816771742159"},{"denom":"ASSET16","index":"0.000005449942823954"},{"denom":"ASSET17","index":"0.000003870671031354"},{"denom":"ASSET18","index":"0.000001843572637920"},{"denom":"ASSET2","index":"0.000003571328051486"},{"denom":"ASSET3","index":"0.000001044730757120"},{"denom":"ASSET4","index":"0.000009831991445917"},{"denom":"ASSET5","index":"0.000000810720570477"},{"denom":"ASSET6","index":"0.000003299899992359"},{"denom":"ASSET7","index":"0.000005054382457699"},{"denom":"ASSET8","index":"0.000006595048508847"},{"denom":"ASSET9","index":"0.000002848509784621"}],"last_reward_claim_height":"79"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET15","shares":"232956748.000000002795480976","reward_history":[{"denom":"ASSET0","index":"0.000001450981944084"},{"denom":"ASSET1","index":"0.000012097851501865"},{"denom":"ASSET10","index":"0.000008428524260541"},{"denom":"ASSET11","index":"0.000011703479004578"},{"denom":"ASSET12","index":"0.000010538773481717"},{"denom":"ASSET13","index":"0.000003626563958485"},{"denom":"ASSET14","index":"0.000010932552044520"},{"denom":"ASSET15","index":"0.000007816771742159"},{"denom":"ASSET16","index":"0.000005449942823954"},{"denom":"ASSET17","index":"0.000003870671031354"},{"denom":"ASSET18","index":"0.000001843572637920"},{"denom":"ASSET2","index":"0.000003571328051486"},{"denom":"ASSET3","index":"0.000001044730757120"},{"denom":"ASSET4","index":"0.000009831991445917"},{"denom":"ASSET5","index":"0.000000810720570477"},{"denom":"ASSET6","index":"0.000003299899992359"},{"denom":"ASSET7","index":"0.000005054382457699"},{"denom":"ASSET8","index":"0.000006595048508847"},{"denom":"ASSET9","index":"0.000002848509784621"}],"last_reward_claim_height":"100"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET16","shares":"889691658.443245918888079640","reward_history":[{"denom":"ASSET0","index":"0.000002831039632868"},{"denom":"ASSET1","index":"0.000024014703977493"},{"denom":"ASSET10","index":"0.000019136467933987"},{"denom":"ASSET11","index":"0.000023856136612857"},{"denom":"ASSET12","index":"0.000022731094165303"},{"denom":"ASSET13","index":"0.000007491812146677"},{"denom":"ASSET14","index":"0.000021900750691559"},{"denom":"ASSET15","index":"0.000017242457090593"},{"denom":"ASSET16","index":"0.000010655585625623"},{"denom":"ASSET17","index":"0.000008353141870908"},{"denom":"ASSET18","index":"0.000003458892129556"},{"denom":"ASSET2","index":"0.000007270317321266"},{"denom":"ASSET3","index":"0.000002020551075646"},{"denom":"ASSET4","index":"0.000019470118745656"},{"denom":"ASSET5","index":"0.000001574098937698"},{"denom":"ASSET6","index":"0.000006353413461243"},{"denom":"ASSET7","index":"0.000009977493764026"},{"denom":"ASSET8","index":"0.000013619759476676"},{"denom":"ASSET9","index":"0.000005782490697784"}],"last_reward_claim_height":"144"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET3","shares":"1281770866.815303630287544654","reward_history":[{"denom":"ASSET0","index":"0.000001596167964962"},{"denom":"ASSET1","index":"0.000013307648687747"},{"denom":"ASSET10","index":"0.000009271254138767"},{"denom":"ASSET11","index":"0.000012873344596610"},{"denom":"ASSET12","index":"0.000011592750107942"},{"denom":"ASSET13","index":"0.000003989527201016"},{"denom":"ASSET14","index":"0.000012025715131995"},{"denom":"ASSET15","index":"0.000008598149750858"},{"denom":"ASSET16","index":"0.000005994556982506"},{"denom":"ASSET17","index":"0.000004257340617956"},{"denom":"ASSET18","index":"0.000002028240277625"},{"denom":"ASSET2","index":"0.000003928376470814"},{"denom":"ASSET3","index":"0.000001148919558672"},{"denom":"ASSET4","index":"0.000010814752131731"},{"denom":"ASSET5","index":"0.000000891818678410"},{"denom":"ASSET6","index":"0.000003630210866621"},{"denom":"ASSET7","index":"0.000005559360179979"},{"denom":"ASSET8","index":"0.000007254619109209"},{"denom":"ASSET9","index":"0.000003133416978198"}],"last_reward_claim_height":"73"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET16","shares":"658460433.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001596167964962"},{"denom":"ASSET1","index":"0.000013307648687747"},{"denom":"ASSET10","index":"0.000009271254138767"},{"denom":"ASSET11","index":"0.000012873344596610"},{"denom":"ASSET12","index":"0.000011592750107942"},{"denom":"ASSET13","index":"0.000003989527201016"},{"denom":"ASSET14","index":"0.000012025715131995"},{"denom":"ASSET15","index":"0.000008598149750858"},{"denom":"ASSET16","index":"0.000005994556982506"},{"denom":"ASSET17","index":"0.000004257340617956"},{"denom":"ASSET18","index":"0.000002028240277625"},{"denom":"ASSET2","index":"0.000003928376470814"},{"denom":"ASSET3","index":"0.000001148919558672"},{"denom":"ASSET4","index":"0.000010814752131731"},{"denom":"ASSET5","index":"0.000000891818678410"},{"denom":"ASSET6","index":"0.000003630210866621"},{"denom":"ASSET7","index":"0.000005559360179979"},{"denom":"ASSET8","index":"0.000007254619109209"},{"denom":"ASSET9","index":"0.000003133416978198"}],"last_reward_claim_height":"76"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET1","shares":"1033322566.745967739480043338","reward_history":[{"denom":"ASSET0","index":"0.000003102081054533"},{"denom":"ASSET1","index":"0.000026328097047411"},{"denom":"ASSET10","index":"0.000021065731925672"},{"denom":"ASSET11","index":"0.000026176422512857"},{"denom":"ASSET12","index":"0.000024984864029023"},{"denom":"ASSET13","index":"0.000008223750690350"},{"denom":"ASSET14","index":"0.000024017391771060"},{"denom":"ASSET15","index":"0.000018965095888316"},{"denom":"ASSET16","index":"0.000011675661088751"},{"denom":"ASSET17","index":"0.000009181817821335"},{"denom":"ASSET18","index":"0.000003784851704842"},{"denom":"ASSET2","index":"0.000007977007181168"},{"denom":"ASSET3","index":"0.000002213531006169"},{"denom":"ASSET4","index":"0.000021343717572048"},{"denom":"ASSET5","index":"0.000001724500934679"},{"denom":"ASSET6","index":"0.000006958604580417"},{"denom":"ASSET7","index":"0.000010936011139136"},{"denom":"ASSET8","index":"0.000014950117004491"},{"denom":"ASSET9","index":"0.000006344046059941"}],"last_reward_claim_height":"166"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET5","shares":"842515362.972013512523228380","reward_history":[{"denom":"ASSET0","index":"0.000001539653287763"},{"denom":"ASSET1","index":"0.000012837628062054"},{"denom":"ASSET10","index":"0.000008944076712630"},{"denom":"ASSET11","index":"0.000012418678362380"},{"denom":"ASSET12","index":"0.000011182855597091"},{"denom":"ASSET13","index":"0.000003848344731893"},{"denom":"ASSET14","index":"0.000011600753980079"},{"denom":"ASSET15","index":"0.000008294363000211"},{"denom":"ASSET16","index":"0.000005782767435536"},{"denom":"ASSET17","index":"0.000004106968636837"},{"denom":"ASSET18","index":"0.000001956500354065"},{"denom":"ASSET2","index":"0.000003789470997435"},{"denom":"ASSET3","index":"0.000001108613446191"},{"denom":"ASSET4","index":"0.000010432741141086"},{"denom":"ASSET5","index":"0.000000860502708115"},{"denom":"ASSET6","index":"0.000003501935883605"},{"denom":"ASSET7","index":"0.000005362766419174"},{"denom":"ASSET8","index":"0.000006998089525433"},{"denom":"ASSET9","index":"0.000003022535474442"}],"last_reward_claim_height":"84"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET0","shares":"194072427.999999994177827160","reward_history":[{"denom":"ASSET0","index":"0.000003308323901116"},{"denom":"ASSET1","index":"0.000028066718381779"},{"denom":"ASSET10","index":"0.000022316311421496"},{"denom":"ASSET11","index":"0.000027867424204892"},{"denom":"ASSET12","index":"0.000026530665881565"},{"denom":"ASSET13","index":"0.000008749579510737"},{"denom":"ASSET14","index":"0.000025590688346390"},{"denom":"ASSET15","index":"0.000020116135001180"},{"denom":"ASSET16","index":"0.000012455644018572"},{"denom":"ASSET17","index":"0.000009747635771928"},{"denom":"ASSET18","index":"0.000004046709206696"},{"denom":"ASSET2","index":"0.000008491843085820"},{"denom":"ASSET3","index":"0.000002361259343526"},{"denom":"ASSET4","index":"0.000022756236881458"},{"denom":"ASSET5","index":"0.000001838827056256"},{"denom":"ASSET6","index":"0.000007428217086977"},{"denom":"ASSET7","index":"0.000011660835649526"},{"denom":"ASSET8","index":"0.000015906513514404"},{"denom":"ASSET9","index":"0.000006755948018281"}],"last_reward_claim_height":"136"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET5","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001722784092424"},{"denom":"ASSET1","index":"0.000014376047839207"},{"denom":"ASSET10","index":"0.000010014727915911"},{"denom":"ASSET11","index":"0.000013905627425621"},{"denom":"ASSET12","index":"0.000012523636788373"},{"denom":"ASSET13","index":"0.000004309050988454"},{"denom":"ASSET14","index":"0.000012989875687172"},{"denom":"ASSET15","index":"0.000009287144342897"},{"denom":"ASSET16","index":"0.000006475075648346"},{"denom":"ASSET17","index":"0.000004597575508787"},{"denom":"ASSET18","index":"0.000002191113748617"},{"denom":"ASSET2","index":"0.000004242146751855"},{"denom":"ASSET3","index":"0.000001239819134475"},{"denom":"ASSET4","index":"0.000011683152316098"},{"denom":"ASSET5","index":"0.000000961748401110"},{"denom":"ASSET6","index":"0.000003920170113222"},{"denom":"ASSET7","index":"0.000006004655234759"},{"denom":"ASSET8","index":"0.000007836158711656"},{"denom":"ASSET9","index":"0.000003384936220430"}],"last_reward_claim_height":"87"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET15","shares":"319600553.000000000231580068","reward_history":[],"last_reward_claim_height":"53"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET12","shares":"954557497.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003299297789724"},{"denom":"ASSET1","index":"0.000027989603079017"},{"denom":"ASSET10","index":"0.000022326156077139"},{"denom":"ASSET11","index":"0.000027810817552502"},{"denom":"ASSET12","index":"0.000026510364756940"},{"denom":"ASSET13","index":"0.000008734817330461"},{"denom":"ASSET14","index":"0.000025527438517331"},{"denom":"ASSET15","index":"0.000020112836713905"},{"denom":"ASSET16","index":"0.000012417417558556"},{"denom":"ASSET17","index":"0.000009741881197111"},{"denom":"ASSET18","index":"0.000004029624902086"},{"denom":"ASSET2","index":"0.000008475129511821"},{"denom":"ASSET3","index":"0.000002354634361983"},{"denom":"ASSET4","index":"0.000022691681830907"},{"denom":"ASSET5","index":"0.000001834207215432"},{"denom":"ASSET6","index":"0.000007402948949368"},{"denom":"ASSET7","index":"0.000011627814435586"},{"denom":"ASSET8","index":"0.000015878876786083"},{"denom":"ASSET9","index":"0.000006740310437402"}],"last_reward_claim_height":"170"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET18","shares":"276510383.000000000081783370","reward_history":[],"last_reward_claim_height":"31"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET1","shares":"781881925.288977837848093374","reward_history":[{"denom":"ASSET0","index":"0.000003142586597057"},{"denom":"ASSET1","index":"0.000026671940208455"},{"denom":"ASSET10","index":"0.000021322845581004"},{"denom":"ASSET11","index":"0.000026513185667064"},{"denom":"ASSET12","index":"0.000025297681895631"},{"denom":"ASSET13","index":"0.000008328263582513"},{"denom":"ASSET14","index":"0.000024329302916923"},{"denom":"ASSET15","index":"0.000019199384187435"},{"denom":"ASSET16","index":"0.000011829863063918"},{"denom":"ASSET17","index":"0.000009295955073087"},{"denom":"ASSET18","index":"0.000003835509513951"},{"denom":"ASSET2","index":"0.000008079410847125"},{"denom":"ASSET3","index":"0.000002242309830967"},{"denom":"ASSET4","index":"0.000021622076491366"},{"denom":"ASSET5","index":"0.000001747112267207"},{"denom":"ASSET6","index":"0.000007050444762949"},{"denom":"ASSET7","index":"0.000011079003337441"},{"denom":"ASSET8","index":"0.000015142122511204"},{"denom":"ASSET9","index":"0.000006425848418438"}],"last_reward_claim_height":"143"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET12","shares":"876916899.148613100278818680","reward_history":[{"denom":"ASSET0","index":"0.000003309574221953"},{"denom":"ASSET1","index":"0.000028041386020893"},{"denom":"ASSET10","index":"0.000022151472675705"},{"denom":"ASSET11","index":"0.000027806413413432"},{"denom":"ASSET12","index":"0.000026397319662942"},{"denom":"ASSET13","index":"0.000008723998941637"},{"denom":"ASSET14","index":"0.000025556208464743"},{"denom":"ASSET15","index":"0.000019995491235522"},{"denom":"ASSET16","index":"0.000012454763771642"},{"denom":"ASSET17","index":"0.000009698403814011"},{"denom":"ASSET18","index":"0.000004053515914738"},{"denom":"ASSET2","index":"0.000008473190716338"},{"denom":"ASSET3","index":"0.000002361530218445"},{"denom":"ASSET4","index":"0.000022738669483779"},{"denom":"ASSET5","index":"0.000001840125976242"},{"denom":"ASSET6","index":"0.000007434008870747"},{"denom":"ASSET7","index":"0.000011653935721338"},{"denom":"ASSET8","index":"0.000015861166565423"},{"denom":"ASSET9","index":"0.000006742103174023"}],"last_reward_claim_height":"136"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET1","shares":"790350515.170656144223239864","reward_history":[{"denom":"ASSET0","index":"0.000004815927975477"},{"denom":"ASSET1","index":"0.000039382289900864"},{"denom":"ASSET10","index":"0.000034222073494624"},{"denom":"ASSET11","index":"0.000040984100009475"},{"denom":"ASSET12","index":"0.000039031763191412"},{"denom":"ASSET13","index":"0.000013231620117309"},{"denom":"ASSET14","index":"0.000037811725176315"},{"denom":"ASSET15","index":"0.000030710570220454"},{"denom":"ASSET16","index":"0.000017472166858286"},{"denom":"ASSET17","index":"0.000014174439086147"},{"denom":"ASSET18","index":"0.000005881073115984"},{"denom":"ASSET2","index":"0.000011889081587014"},{"denom":"ASSET3","index":"0.000003418652643359"},{"denom":"ASSET4","index":"0.000032291841736538"},{"denom":"ASSET5","index":"0.000002685159513042"},{"denom":"ASSET6","index":"0.000010964422890400"},{"denom":"ASSET7","index":"0.000016933318079269"},{"denom":"ASSET8","index":"0.000024422128019811"},{"denom":"ASSET9","index":"0.000009780347716391"}],"last_reward_claim_height":"189"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET4","shares":"920736219.046209697097301577","reward_history":[{"denom":"ASSET0","index":"0.000004815927975477"},{"denom":"ASSET1","index":"0.000039382289900864"},{"denom":"ASSET10","index":"0.000034222073494624"},{"denom":"ASSET11","index":"0.000040984100009475"},{"denom":"ASSET12","index":"0.000039031763191412"},{"denom":"ASSET13","index":"0.000013231620117309"},{"denom":"ASSET14","index":"0.000037811725176315"},{"denom":"ASSET15","index":"0.000030710570220454"},{"denom":"ASSET16","index":"0.000017472166858286"},{"denom":"ASSET17","index":"0.000014174439086147"},{"denom":"ASSET18","index":"0.000005881073115984"},{"denom":"ASSET2","index":"0.000011889081587014"},{"denom":"ASSET3","index":"0.000003418652643359"},{"denom":"ASSET4","index":"0.000032291841736538"},{"denom":"ASSET5","index":"0.000002685159513042"},{"denom":"ASSET6","index":"0.000010964422890400"},{"denom":"ASSET7","index":"0.000016933318079269"},{"denom":"ASSET8","index":"0.000024422128019811"},{"denom":"ASSET9","index":"0.000009780347716391"}],"last_reward_claim_height":"196"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET1","shares":"85877274.999999998883595425","reward_history":[],"last_reward_claim_height":"28"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET2","shares":"23039713.092407889502142814","reward_history":[{"denom":"ASSET0","index":"0.000001684197417987"},{"denom":"ASSET1","index":"0.000014041270025306"},{"denom":"ASSET10","index":"0.000009782380002809"},{"denom":"ASSET11","index":"0.000013583439347888"},{"denom":"ASSET12","index":"0.000012231725730520"},{"denom":"ASSET13","index":"0.000004209525615418"},{"denom":"ASSET14","index":"0.000012688588478388"},{"denom":"ASSET15","index":"0.000009072403677468"},{"denom":"ASSET16","index":"0.000006325419612958"},{"denom":"ASSET17","index":"0.000004492161044183"},{"denom":"ASSET18","index":"0.000002139608271529"},{"denom":"ASSET2","index":"0.000004144674335530"},{"denom":"ASSET3","index":"0.000001212331762086"},{"denom":"ASSET4","index":"0.000011410921471639"},{"denom":"ASSET5","index":"0.000000940827523152"},{"denom":"ASSET6","index":"0.000003830097231595"},{"denom":"ASSET7","index":"0.000005866137041214"},{"denom":"ASSET8","index":"0.000007654386885887"},{"denom":"ASSET9","index":"0.000003305963379963"}],"last_reward_claim_height":"121"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET10","shares":"2925917.361017772311624504","reward_history":[{"denom":"ASSET0","index":"0.000001684197417987"},{"denom":"ASSET1","index":"0.000014041270025306"},{"denom":"ASSET10","index":"0.000009782380002809"},{"denom":"ASSET11","index":"0.000013583439347888"},{"denom":"ASSET12","index":"0.000012231725730520"},{"denom":"ASSET13","index":"0.000004209525615418"},{"denom":"ASSET14","index":"0.000012688588478388"},{"denom":"ASSET15","index":"0.000009072403677468"},{"denom":"ASSET16","index":"0.000006325419612958"},{"denom":"ASSET17","index":"0.000004492161044183"},{"denom":"ASSET18","index":"0.000002139608271529"},{"denom":"ASSET2","index":"0.000004144674335530"},{"denom":"ASSET3","index":"0.000001212331762086"},{"denom":"ASSET4","index":"0.000011410921471639"},{"denom":"ASSET5","index":"0.000000940827523152"},{"denom":"ASSET6","index":"0.000003830097231595"},{"denom":"ASSET7","index":"0.000005866137041214"},{"denom":"ASSET8","index":"0.000007654386885887"},{"denom":"ASSET9","index":"0.000003305963379963"}],"last_reward_claim_height":"83"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET16","shares":"457925629.999999997710371850","reward_history":[],"last_reward_claim_height":"61"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET17","shares":"546851936.000000000000000000","reward_history":[],"last_reward_claim_height":"33"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET10","shares":"609697450.238096388462722952","reward_history":[{"denom":"ASSET0","index":"0.000001677613648548"},{"denom":"ASSET1","index":"0.000013997394471820"},{"denom":"ASSET10","index":"0.000009752554992736"},{"denom":"ASSET11","index":"0.000013541183096442"},{"denom":"ASSET12","index":"0.000012193285851007"},{"denom":"ASSET13","index":"0.000004195070965406"},{"denom":"ASSET14","index":"0.000012649497226385"},{"denom":"ASSET15","index":"0.000009043353672830"},{"denom":"ASSET16","index":"0.000006306085420563"},{"denom":"ASSET17","index":"0.000004477092542912"},{"denom":"ASSET18","index":"0.000002131751335856"},{"denom":"ASSET2","index":"0.000004130786635239"},{"denom":"ASSET3","index":"0.000001208960144751"},{"denom":"ASSET4","index":"0.000011376252751467"},{"denom":"ASSET5","index":"0.000000937307007594"},{"denom":"ASSET6","index":"0.000003817659736684"},{"denom":"ASSET7","index":"0.000005847800357116"},{"denom":"ASSET8","index":"0.000007631172097229"},{"denom":"ASSET9","index":"0.000003295090343070"}],"last_reward_claim_height":"80"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET0","shares":"261784837.335621770628656576","reward_history":[{"denom":"ASSET0","index":"0.000004554906597940"},{"denom":"ASSET1","index":"0.000037302168826374"},{"denom":"ASSET10","index":"0.000032297727075344"},{"denom":"ASSET11","index":"0.000038743254896762"},{"denom":"ASSET12","index":"0.000036898215140701"},{"denom":"ASSET13","index":"0.000012494026883502"},{"denom":"ASSET14","index":"0.000035737267820700"},{"denom":"ASSET15","index":"0.000028988621299322"},{"denom":"ASSET16","index":"0.000016549854639519"},{"denom":"ASSET17","index":"0.000013405669141672"},{"denom":"ASSET18","index":"0.000005562884057726"},{"denom":"ASSET2","index":"0.000011263270159473"},{"denom":"ASSET3","index":"0.000003234612773623"},{"denom":"ASSET4","index":"0.000030571483907801"},{"denom":"ASSET5","index":"0.000002539733895685"},{"denom":"ASSET6","index":"0.000010363874796083"},{"denom":"ASSET7","index":"0.000016016088508621"},{"denom":"ASSET8","index":"0.000023047152355900"},{"denom":"ASSET9","index":"0.000009251920345515"}],"last_reward_claim_height":"188"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET6","shares":"377155120.000000000000000000","reward_history":[],"last_reward_claim_height":"55"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET14","shares":"641900143.910155501671067563","reward_history":[{"denom":"ASSET0","index":"0.000003047858420945"},{"denom":"ASSET1","index":"0.000025863853767953"},{"denom":"ASSET10","index":"0.000020681482671570"},{"denom":"ASSET11","index":"0.000025712271525236"},{"denom":"ASSET12","index":"0.000024535470175220"},{"denom":"ASSET13","index":"0.000008077733573885"},{"denom":"ASSET14","index":"0.000023593590000343"},{"denom":"ASSET15","index":"0.000018621561303244"},{"denom":"ASSET16","index":"0.000011471343089677"},{"denom":"ASSET17","index":"0.000009016132124589"},{"denom":"ASSET18","index":"0.000003719208275283"},{"denom":"ASSET2","index":"0.000007835789085827"},{"denom":"ASSET3","index":"0.000002174729135607"},{"denom":"ASSET4","index":"0.000020967814383093"},{"denom":"ASSET5","index":"0.000001694402278429"},{"denom":"ASSET6","index":"0.000006836893759575"},{"denom":"ASSET7","index":"0.000010744095518390"},{"denom":"ASSET8","index":"0.000014684305897471"},{"denom":"ASSET9","index":"0.000006231971052532"}],"last_reward_claim_height":"177"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET18","shares":"784196080.000000000000000000","reward_history":[],"last_reward_claim_height":"18"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET4","shares":"488144535.733660234537581972","reward_history":[{"denom":"ASSET0","index":"0.000001765508823557"},{"denom":"ASSET1","index":"0.000014724618911480"},{"denom":"ASSET10","index":"0.000010258363403154"},{"denom":"ASSET11","index":"0.000014244524406828"},{"denom":"ASSET12","index":"0.000012826610887714"},{"denom":"ASSET13","index":"0.000004413772058893"},{"denom":"ASSET14","index":"0.000013305845007949"},{"denom":"ASSET15","index":"0.000009513270498085"},{"denom":"ASSET16","index":"0.000006632703470176"},{"denom":"ASSET17","index":"0.000004710604682736"},{"denom":"ASSET18","index":"0.000002243882559375"},{"denom":"ASSET2","index":"0.000004346662074372"},{"denom":"ASSET3","index":"0.000001271648168235"},{"denom":"ASSET4","index":"0.000011966226470776"},{"denom":"ASSET5","index":"0.000000986860926228"},{"denom":"ASSET6","index":"0.000004016274458267"},{"denom":"ASSET7","index":"0.000006150888196691"},{"denom":"ASSET8","index":"0.000008026526225616"},{"denom":"ASSET9","index":"0.000003466488815844"}],"last_reward_claim_height":"115"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET4","shares":"130400936.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001833509758465"},{"denom":"ASSET1","index":"0.000015308139656127"},{"denom":"ASSET10","index":"0.000010661025831945"},{"denom":"ASSET11","index":"0.000014808091540182"},{"denom":"ASSET12","index":"0.000013334616425197"},{"denom":"ASSET13","index":"0.000004587108050268"},{"denom":"ASSET14","index":"0.000013827997232930"},{"denom":"ASSET15","index":"0.000009887618079284"},{"denom":"ASSET16","index":"0.000006893996691827"},{"denom":"ASSET17","index":"0.000004893804228047"},{"denom":"ASSET18","index":"0.000002326890566197"},{"denom":"ASSET2","index":"0.000004513767659929"},{"denom":"ASSET3","index":"0.000001320127026095"},{"denom":"ASSET4","index":"0.000012434529816496"},{"denom":"ASSET5","index":"0.000001020098156528"},{"denom":"ASSET6","index":"0.000004173734941087"},{"denom":"ASSET7","index":"0.000006393948575882"},{"denom":"ASSET8","index":"0.000008340802573961"},{"denom":"ASSET9","index":"0.000003600346434803"}],"last_reward_claim_height":"74"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET9","shares":"901190793.825948458167642076","reward_history":[{"denom":"ASSET0","index":"0.000003461123478470"},{"denom":"ASSET1","index":"0.000029368181297786"},{"denom":"ASSET10","index":"0.000023294808028239"},{"denom":"ASSET11","index":"0.000029147392384169"},{"denom":"ASSET12","index":"0.000027719461688447"},{"denom":"ASSET13","index":"0.000009147542663388"},{"denom":"ASSET14","index":"0.000026768604990580"},{"denom":"ASSET15","index":"0.000021008846141082"},{"denom":"ASSET16","index":"0.000013035302068339"},{"denom":"ASSET17","index":"0.000010182949549387"},{"denom":"ASSET18","index":"0.000004232564951180"},{"denom":"ASSET2","index":"0.000008877642147806"},{"denom":"ASSET3","index":"0.000002471921418528"},{"denom":"ASSET4","index":"0.000023806252184245"},{"denom":"ASSET5","index":"0.000001920199705662"},{"denom":"ASSET6","index":"0.000007776538212319"},{"denom":"ASSET7","index":"0.000012202060569359"},{"denom":"ASSET8","index":"0.000016628688342614"},{"denom":"ASSET9","index":"0.000007061722298848"}],"last_reward_claim_height":"170"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET10","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"33"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET12","shares":"880813132.000000000000000000","reward_history":[],"last_reward_claim_height":"14"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET13","shares":"423326218.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001833509758465"},{"denom":"ASSET1","index":"0.000015308139656127"},{"denom":"ASSET10","index":"0.000010661025831945"},{"denom":"ASSET11","index":"0.000014808091540182"},{"denom":"ASSET12","index":"0.000013334616425197"},{"denom":"ASSET13","index":"0.000004587108050268"},{"denom":"ASSET14","index":"0.000013827997232930"},{"denom":"ASSET15","index":"0.000009887618079284"},{"denom":"ASSET16","index":"0.000006893996691827"},{"denom":"ASSET17","index":"0.000004893804228047"},{"denom":"ASSET18","index":"0.000002326890566197"},{"denom":"ASSET2","index":"0.000004513767659929"},{"denom":"ASSET3","index":"0.000001320127026095"},{"denom":"ASSET4","index":"0.000012434529816496"},{"denom":"ASSET5","index":"0.000001020098156528"},{"denom":"ASSET6","index":"0.000004173734941087"},{"denom":"ASSET7","index":"0.000006393948575882"},{"denom":"ASSET8","index":"0.000008340802573961"},{"denom":"ASSET9","index":"0.000003600346434803"}],"last_reward_claim_height":"64"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET1","shares":"948576497.000000000000000000","reward_history":[],"last_reward_claim_height":"24"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET5","shares":"628668381.167887559719907920","reward_history":[{"denom":"ASSET0","index":"0.000003136420796654"},{"denom":"ASSET1","index":"0.000026617535879560"},{"denom":"ASSET10","index":"0.000021257162201233"},{"denom":"ASSET11","index":"0.000026454281403244"},{"denom":"ASSET12","index":"0.000025229520616223"},{"denom":"ASSET13","index":"0.000008309311482354"},{"denom":"ASSET14","index":"0.000024278363089230"},{"denom":"ASSET15","index":"0.000019144672836670"},{"denom":"ASSET16","index":"0.000011806881934189"},{"denom":"ASSET17","index":"0.000009271795054357"},{"denom":"ASSET18","index":"0.000003829937127836"},{"denom":"ASSET2","index":"0.000008061315465971"},{"denom":"ASSET3","index":"0.000002238409344787"},{"denom":"ASSET4","index":"0.000021579173085678"},{"denom":"ASSET5","index":"0.000001744155749232"},{"denom":"ASSET6","index":"0.000007037998659171"},{"denom":"ASSET7","index":"0.000011056982942661"},{"denom":"ASSET8","index":"0.000015105683491420"},{"denom":"ASSET9","index":"0.000006411626899884"}],"last_reward_claim_height":"134"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET3","shares":"230314104.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001065673750407"},{"denom":"ASSET1","index":"0.000008885137524612"},{"denom":"ASSET10","index":"0.000006190162379117"},{"denom":"ASSET11","index":"0.000008595321581390"},{"denom":"ASSET12","index":"0.000007740138401991"},{"denom":"ASSET13","index":"0.000002663662498568"},{"denom":"ASSET14","index":"0.000008029258508615"},{"denom":"ASSET15","index":"0.000005740999854868"},{"denom":"ASSET16","index":"0.000004002452113836"},{"denom":"ASSET17","index":"0.000002842492504350"},{"denom":"ASSET18","index":"0.000001354098020432"},{"denom":"ASSET2","index":"0.000002622608139264"},{"denom":"ASSET3","index":"0.000000767159849705"},{"denom":"ASSET4","index":"0.000007220696381306"},{"denom":"ASSET5","index":"0.000000595288209907"},{"denom":"ASSET6","index":"0.000002423598872130"},{"denom":"ASSET7","index":"0.000003711940334016"},{"denom":"ASSET8","index":"0.000004843718561268"},{"denom":"ASSET9","index":"0.000002092032733005"}],"last_reward_claim_height":"108"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET5","shares":"893623325.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002559869929403"},{"denom":"ASSET1","index":"0.000021787096732684"},{"denom":"ASSET10","index":"0.000017783238471081"},{"denom":"ASSET11","index":"0.000021752938768967"},{"denom":"ASSET12","index":"0.000020940235345308"},{"denom":"ASSET13","index":"0.000006848308161575"},{"denom":"ASSET14","index":"0.000019904298850841"},{"denom":"ASSET15","index":"0.000015946274018453"},{"denom":"ASSET16","index":"0.000009638424477568"},{"denom":"ASSET17","index":"0.000007695902028378"},{"denom":"ASSET18","index":"0.000003102977872608"},{"denom":"ASSET2","index":"0.000006627591716064"},{"denom":"ASSET3","index":"0.000001824087350341"},{"denom":"ASSET4","index":"0.000017655906837434"},{"denom":"ASSET5","index":"0.000001421889695470"},{"denom":"ASSET6","index":"0.000005729615091854"},{"denom":"ASSET7","index":"0.000009042175373173"},{"denom":"ASSET8","index":"0.000012449153729005"},{"denom":"ASSET9","index":"0.000005268661072858"}],"last_reward_claim_height":"156"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET8","shares":"1859771717.314152927154206697","reward_history":[{"denom":"ASSET0","index":"0.000001065673750407"},{"denom":"ASSET1","index":"0.000008885137524612"},{"denom":"ASSET10","index":"0.000006190162379117"},{"denom":"ASSET11","index":"0.000008595321581390"},{"denom":"ASSET12","index":"0.000007740138401991"},{"denom":"ASSET13","index":"0.000002663662498568"},{"denom":"ASSET14","index":"0.000008029258508615"},{"denom":"ASSET15","index":"0.000005740999854868"},{"denom":"ASSET16","index":"0.000004002452113836"},{"denom":"ASSET17","index":"0.000002842492504350"},{"denom":"ASSET18","index":"0.000001354098020432"},{"denom":"ASSET2","index":"0.000002622608139264"},{"denom":"ASSET3","index":"0.000000767159849705"},{"denom":"ASSET4","index":"0.000007220696381306"},{"denom":"ASSET5","index":"0.000000595288209907"},{"denom":"ASSET6","index":"0.000002423598872130"},{"denom":"ASSET7","index":"0.000003711940334016"},{"denom":"ASSET8","index":"0.000004843718561268"},{"denom":"ASSET9","index":"0.000002092032733005"}],"last_reward_claim_height":"114"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET9","shares":"35821217.999999996685962920","reward_history":[{"denom":"ASSET0","index":"0.000001065673750407"},{"denom":"ASSET1","index":"0.000008885137524612"},{"denom":"ASSET10","index":"0.000006190162379117"},{"denom":"ASSET11","index":"0.000008595321581390"},{"denom":"ASSET12","index":"0.000007740138401991"},{"denom":"ASSET13","index":"0.000002663662498568"},{"denom":"ASSET14","index":"0.000008029258508615"},{"denom":"ASSET15","index":"0.000005740999854868"},{"denom":"ASSET16","index":"0.000004002452113836"},{"denom":"ASSET17","index":"0.000002842492504350"},{"denom":"ASSET18","index":"0.000001354098020432"},{"denom":"ASSET2","index":"0.000002622608139264"},{"denom":"ASSET3","index":"0.000000767159849705"},{"denom":"ASSET4","index":"0.000007220696381306"},{"denom":"ASSET5","index":"0.000000595288209907"},{"denom":"ASSET6","index":"0.000002423598872130"},{"denom":"ASSET7","index":"0.000003711940334016"},{"denom":"ASSET8","index":"0.000004843718561268"},{"denom":"ASSET9","index":"0.000002092032733005"}],"last_reward_claim_height":"70"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET13","shares":"310715655.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002559869929403"},{"denom":"ASSET1","index":"0.000021787096732684"},{"denom":"ASSET10","index":"0.000017783238471081"},{"denom":"ASSET11","index":"0.000021752938768967"},{"denom":"ASSET12","index":"0.000020940235345308"},{"denom":"ASSET13","index":"0.000006848308161575"},{"denom":"ASSET14","index":"0.000019904298850841"},{"denom":"ASSET15","index":"0.000015946274018453"},{"denom":"ASSET16","index":"0.000009638424477568"},{"denom":"ASSET17","index":"0.000007695902028378"},{"denom":"ASSET18","index":"0.000003102977872608"},{"denom":"ASSET2","index":"0.000006627591716064"},{"denom":"ASSET3","index":"0.000001824087350341"},{"denom":"ASSET4","index":"0.000017655906837434"},{"denom":"ASSET5","index":"0.000001421889695470"},{"denom":"ASSET6","index":"0.000005729615091854"},{"denom":"ASSET7","index":"0.000009042175373173"},{"denom":"ASSET8","index":"0.000012449153729005"},{"denom":"ASSET9","index":"0.000005268661072858"}],"last_reward_claim_height":"160"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET15","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002559869929403"},{"denom":"ASSET1","index":"0.000021787096732684"},{"denom":"ASSET10","index":"0.000017783238471081"},{"denom":"ASSET11","index":"0.000021752938768967"},{"denom":"ASSET12","index":"0.000020940235345308"},{"denom":"ASSET13","index":"0.000006848308161575"},{"denom":"ASSET14","index":"0.000019904298850841"},{"denom":"ASSET15","index":"0.000015946274018453"},{"denom":"ASSET16","index":"0.000009638424477568"},{"denom":"ASSET17","index":"0.000007695902028378"},{"denom":"ASSET18","index":"0.000003102977872608"},{"denom":"ASSET2","index":"0.000006627591716064"},{"denom":"ASSET3","index":"0.000001824087350341"},{"denom":"ASSET4","index":"0.000017655906837434"},{"denom":"ASSET5","index":"0.000001421889695470"},{"denom":"ASSET6","index":"0.000005729615091854"},{"denom":"ASSET7","index":"0.000009042175373173"},{"denom":"ASSET8","index":"0.000012449153729005"},{"denom":"ASSET9","index":"0.000005268661072858"}],"last_reward_claim_height":"128"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET7","shares":"654484887.165365872256921086","reward_history":[{"denom":"ASSET0","index":"0.000003299045378029"},{"denom":"ASSET1","index":"0.000027992490930804"},{"denom":"ASSET10","index":"0.000022352284005938"},{"denom":"ASSET11","index":"0.000027819914533732"},{"denom":"ASSET12","index":"0.000026530494002155"},{"denom":"ASSET13","index":"0.000008738242797579"},{"denom":"ASSET14","index":"0.000025532401567106"},{"denom":"ASSET15","index":"0.000020131602968729"},{"denom":"ASSET16","index":"0.000012417136212826"},{"denom":"ASSET17","index":"0.000009749421325842"},{"denom":"ASSET18","index":"0.000004027997856345"},{"denom":"ASSET2","index":"0.000008477931503293"},{"denom":"ASSET3","index":"0.000002354450357881"},{"denom":"ASSET4","index":"0.000022693933657862"},{"denom":"ASSET5","index":"0.000001834114741991"},{"denom":"ASSET6","index":"0.000007402245947993"},{"denom":"ASSET7","index":"0.000011628988518089"},{"denom":"ASSET8","index":"0.000015885667960333"},{"denom":"ASSET9","index":"0.000006742956926982"}],"last_reward_claim_height":"167"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET18","shares":"77584659.736254284386751486","reward_history":[{"denom":"ASSET0","index":"0.000004922134568655"},{"denom":"ASSET1","index":"0.000040310768470971"},{"denom":"ASSET10","index":"0.000034862317636591"},{"denom":"ASSET11","index":"0.000041853360655044"},{"denom":"ASSET12","index":"0.000039844322972483"},{"denom":"ASSET13","index":"0.000013494158512482"},{"denom":"ASSET14","index":"0.000038610410052146"},{"denom":"ASSET15","index":"0.000031296305042201"},{"denom":"ASSET16","index":"0.000017886287338776"},{"denom":"ASSET17","index":"0.000014476771157218"},{"denom":"ASSET18","index":"0.000006013326761486"},{"denom":"ASSET2","index":"0.000012169008325863"},{"denom":"ASSET3","index":"0.000003495870129458"},{"denom":"ASSET4","index":"0.000033036302956604"},{"denom":"ASSET5","index":"0.000002744576306327"},{"denom":"ASSET6","index":"0.000011200596779979"},{"denom":"ASSET7","index":"0.000017306609815312"},{"denom":"ASSET8","index":"0.000024891822473233"},{"denom":"ASSET9","index":"0.000009995213155793"}],"last_reward_claim_height":"186"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET2","shares":"894260593.999999988374612278","reward_history":[],"last_reward_claim_height":"56"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET2","shares":"78233951.999999997743144798","reward_history":[],"last_reward_claim_height":"62"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET6","shares":"671328685.999999999328671314","reward_history":[{"denom":"ASSET0","index":"0.000001578706846766"},{"denom":"ASSET1","index":"0.000013164667632738"},{"denom":"ASSET10","index":"0.000009171819989970"},{"denom":"ASSET11","index":"0.000012734981690366"},{"denom":"ASSET12","index":"0.000011467468005207"},{"denom":"ASSET13","index":"0.000003946168668528"},{"denom":"ASSET14","index":"0.000011895957050803"},{"denom":"ASSET15","index":"0.000008505148486066"},{"denom":"ASSET16","index":"0.000005930623522158"},{"denom":"ASSET17","index":"0.000004211879752669"},{"denom":"ASSET18","index":"0.000002005998995588"},{"denom":"ASSET2","index":"0.000003886323829757"},{"denom":"ASSET3","index":"0.000001135855039864"},{"denom":"ASSET4","index":"0.000010697863378618"},{"denom":"ASSET5","index":"0.000000882112923477"},{"denom":"ASSET6","index":"0.000003590690326231"},{"denom":"ASSET7","index":"0.000005499740683011"},{"denom":"ASSET8","index":"0.000007176593065360"},{"denom":"ASSET9","index":"0.000003098765751537"}],"last_reward_claim_height":"110"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET17","shares":"211128287.635804484853187501","reward_history":[{"denom":"ASSET0","index":"0.000003185213515607"},{"denom":"ASSET1","index":"0.000027035699090666"},{"denom":"ASSET10","index":"0.000021635640181728"},{"denom":"ASSET11","index":"0.000026880669357351"},{"denom":"ASSET12","index":"0.000025658872180332"},{"denom":"ASSET13","index":"0.000008444958797633"},{"denom":"ASSET14","index":"0.000024662649108986"},{"denom":"ASSET15","index":"0.000019476753279332"},{"denom":"ASSET16","index":"0.000011989846651744"},{"denom":"ASSET17","index":"0.000009429633404312"},{"denom":"ASSET18","index":"0.000003886090392826"},{"denom":"ASSET2","index":"0.000008191890279929"},{"denom":"ASSET3","index":"0.000002271981699175"},{"denom":"ASSET4","index":"0.000021916623044014"},{"denom":"ASSET5","index":"0.000001770727550439"},{"denom":"ASSET6","index":"0.000007144791673859"},{"denom":"ASSET7","index":"0.000011230376410345"},{"denom":"ASSET8","index":"0.000015353061978158"},{"denom":"ASSET9","index":"0.000006513931773648"}],"last_reward_claim_height":"182"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET0","shares":"507709163.999999886273147264","reward_history":[{"denom":"ASSET0","index":"0.000001736464555496"},{"denom":"ASSET1","index":"0.000014486324003877"},{"denom":"ASSET10","index":"0.000010092542477093"},{"denom":"ASSET11","index":"0.000014014496766071"},{"denom":"ASSET12","index":"0.000012620063107870"},{"denom":"ASSET13","index":"0.000004342915393341"},{"denom":"ASSET14","index":"0.000013091890345676"},{"denom":"ASSET15","index":"0.000009359368553661"},{"denom":"ASSET16","index":"0.000006524897117620"},{"denom":"ASSET17","index":"0.000004634080157191"},{"denom":"ASSET18","index":"0.000002206537788701"},{"denom":"ASSET2","index":"0.000004276263218483"},{"denom":"ASSET3","index":"0.000001250605280877"},{"denom":"ASSET4","index":"0.000011772878885340"},{"denom":"ASSET5","index":"0.000000969964544635"},{"denom":"ASSET6","index":"0.000003951772367204"},{"denom":"ASSET7","index":"0.000006051315875212"},{"denom":"ASSET8","index":"0.000007896528716001"},{"denom":"ASSET9","index":"0.000003409784945337"}],"last_reward_claim_height":"93"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET4","shares":"266064029.355785135902679496","reward_history":[{"denom":"ASSET0","index":"0.000005002676183029"},{"denom":"ASSET1","index":"0.000040970324905648"},{"denom":"ASSET10","index":"0.000035351419874368"},{"denom":"ASSET11","index":"0.000042515341359955"},{"denom":"ASSET12","index":"0.000040437095263911"},{"denom":"ASSET13","index":"0.000013704097837157"},{"denom":"ASSET14","index":"0.000039232715985481"},{"denom":"ASSET15","index":"0.000031748860528974"},{"denom":"ASSET16","index":"0.000018183406112225"},{"denom":"ASSET17","index":"0.000014691260749644"},{"denom":"ASSET18","index":"0.000006116450843117"},{"denom":"ASSET2","index":"0.000012362846917674"},{"denom":"ASSET3","index":"0.000003554507989012"},{"denom":"ASSET4","index":"0.000033577944179880"},{"denom":"ASSET5","index":"0.000002789612099891"},{"denom":"ASSET6","index":"0.000011388824893905"},{"denom":"ASSET7","index":"0.000017589578899471"},{"denom":"ASSET8","index":"0.000025277922472838"},{"denom":"ASSET9","index":"0.000010152860868192"}],"last_reward_claim_height":"199"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET14","shares":"60225277.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000005002676183029"},{"denom":"ASSET1","index":"0.000040970324905648"},{"denom":"ASSET10","index":"0.000035351419874368"},{"denom":"ASSET11","index":"0.000042515341359955"},{"denom":"ASSET12","index":"0.000040437095263911"},{"denom":"ASSET13","index":"0.000013704097837157"},{"denom":"ASSET14","index":"0.000039232715985481"},{"denom":"ASSET15","index":"0.000031748860528974"},{"denom":"ASSET16","index":"0.000018183406112225"},{"denom":"ASSET17","index":"0.000014691260749644"},{"denom":"ASSET18","index":"0.000006116450843117"},{"denom":"ASSET2","index":"0.000012362846917674"},{"denom":"ASSET3","index":"0.000003554507989012"},{"denom":"ASSET4","index":"0.000033577944179880"},{"denom":"ASSET5","index":"0.000002789612099891"},{"denom":"ASSET6","index":"0.000011388824893905"},{"denom":"ASSET7","index":"0.000017589578899471"},{"denom":"ASSET8","index":"0.000025277922472838"},{"denom":"ASSET9","index":"0.000010152860868192"}],"last_reward_claim_height":"187"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET2","shares":"37195456.000000000000000000","reward_history":[],"last_reward_claim_height":"52"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET6","shares":"213416430.156997920891424152","reward_history":[{"denom":"ASSET0","index":"0.000004537599353463"},{"denom":"ASSET1","index":"0.000037117847669619"},{"denom":"ASSET10","index":"0.000032340600561623"},{"denom":"ASSET11","index":"0.000038655579958761"},{"denom":"ASSET12","index":"0.000036850325657168"},{"denom":"ASSET13","index":"0.000012483428644838"},{"denom":"ASSET14","index":"0.000035652849297182"},{"denom":"ASSET15","index":"0.000029008629406748"},{"denom":"ASSET16","index":"0.000016463312322248"},{"denom":"ASSET17","index":"0.000013380997793781"},{"denom":"ASSET18","index":"0.000005538215667455"},{"denom":"ASSET2","index":"0.000011210947306863"},{"denom":"ASSET3","index":"0.000003221611418209"},{"denom":"ASSET4","index":"0.000030435785673766"},{"denom":"ASSET5","index":"0.000002530194284617"},{"denom":"ASSET6","index":"0.000010331304570982"},{"denom":"ASSET7","index":"0.000015960878418764"},{"denom":"ASSET8","index":"0.000023043980031623"},{"denom":"ASSET9","index":"0.000009223345438838"}],"last_reward_claim_height":"196"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET9","shares":"226608147.301533064296908622","reward_history":[{"denom":"ASSET0","index":"0.000001432199402946"},{"denom":"ASSET1","index":"0.000011943338809449"},{"denom":"ASSET10","index":"0.000008321234131428"},{"denom":"ASSET11","index":"0.000011554338026882"},{"denom":"ASSET12","index":"0.000010404248756685"},{"denom":"ASSET13","index":"0.000003580160245814"},{"denom":"ASSET14","index":"0.000010793249539252"},{"denom":"ASSET15","index":"0.000007717099003024"},{"denom":"ASSET16","index":"0.000005380388215223"},{"denom":"ASSET17","index":"0.000003821002469456"},{"denom":"ASSET18","index":"0.000001819847139312"},{"denom":"ASSET2","index":"0.000003525361874705"},{"denom":"ASSET3","index":"0.000001031021204577"},{"denom":"ASSET4","index":"0.000009706076917365"},{"denom":"ASSET5","index":"0.000000800326827437"},{"denom":"ASSET6","index":"0.000003258135250159"},{"denom":"ASSET7","index":"0.000004989357863356"},{"denom":"ASSET8","index":"0.000006510858315517"},{"denom":"ASSET9","index":"0.000002812306527182"}],"last_reward_claim_height":"70"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET13","shares":"832602648.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002962853679956"},{"denom":"ASSET1","index":"0.000025162993314326"},{"denom":"ASSET10","index":"0.000020199688926412"},{"denom":"ASSET11","index":"0.000025035647772320"},{"denom":"ASSET12","index":"0.000023929456511577"},{"denom":"ASSET13","index":"0.000007867725037604"},{"denom":"ASSET14","index":"0.000022960507028012"},{"denom":"ASSET15","index":"0.000018173489333858"},{"denom":"ASSET16","index":"0.000011155286879957"},{"denom":"ASSET17","index":"0.000008793607250882"},{"denom":"ASSET18","index":"0.000003611579051495"},{"denom":"ASSET2","index":"0.000007628670547867"},{"denom":"ASSET3","index":"0.000002114031306235"},{"denom":"ASSET4","index":"0.000020398130246320"},{"denom":"ASSET5","index":"0.000001647096325587"},{"denom":"ASSET6","index":"0.000006645213242757"},{"denom":"ASSET7","index":"0.000010450616802650"},{"denom":"ASSET8","index":"0.000014303332598966"},{"denom":"ASSET9","index":"0.000006067112886031"}],"last_reward_claim_height":"156"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET12","shares":"784775674.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003135234009226"},{"denom":"ASSET1","index":"0.000026602125077525"},{"denom":"ASSET10","index":"0.000021213712135644"},{"denom":"ASSET11","index":"0.000026430841190504"},{"denom":"ASSET12","index":"0.000025191219856579"},{"denom":"ASSET13","index":"0.000008300995957475"},{"denom":"ASSET14","index":"0.000024262534835813"},{"denom":"ASSET15","index":"0.000019110376679732"},{"denom":"ASSET16","index":"0.000011801461546978"},{"denom":"ASSET17","index":"0.000009257538829689"},{"denom":"ASSET18","index":"0.000003829421505073"},{"denom":"ASSET2","index":"0.000008055136326188"},{"denom":"ASSET3","index":"0.000002237228869924"},{"denom":"ASSET4","index":"0.000021566736915931"},{"denom":"ASSET5","index":"0.000001743257901616"},{"denom":"ASSET6","index":"0.000007036288319926"},{"denom":"ASSET7","index":"0.000011051703047857"},{"denom":"ASSET8","index":"0.000015089589803941"},{"denom":"ASSET9","index":"0.000006406386950018"}],"last_reward_claim_height":"171"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET8","shares":"895125589.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003297864217859"},{"denom":"ASSET1","index":"0.000027973253972789"},{"denom":"ASSET10","index":"0.000022291630953866"},{"denom":"ASSET11","index":"0.000027789008146512"},{"denom":"ASSET12","index":"0.000026479178332828"},{"denom":"ASSET13","index":"0.000008727103479255"},{"denom":"ASSET14","index":"0.000025511286037616"},{"denom":"ASSET15","index":"0.000020085740117730"},{"denom":"ASSET16","index":"0.000012411485442612"},{"denom":"ASSET17","index":"0.000009730550155880"},{"denom":"ASSET18","index":"0.000004028926705548"},{"denom":"ASSET2","index":"0.000008468714781887"},{"denom":"ASSET3","index":"0.000002353891879987"},{"denom":"ASSET4","index":"0.000022679492169342"},{"denom":"ASSET5","index":"0.000001833514119464"},{"denom":"ASSET6","index":"0.000007400677249018"},{"denom":"ASSET7","index":"0.000011621769805761"},{"denom":"ASSET8","index":"0.000015864980999233"},{"denom":"ASSET9","index":"0.000006736116007098"}],"last_reward_claim_height":"136"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET11","shares":"415059241.000000001660236964","reward_history":[{"denom":"ASSET0","index":"0.000003297864217859"},{"denom":"ASSET1","index":"0.000027973253972789"},{"denom":"ASSET10","index":"0.000022291630953866"},{"denom":"ASSET11","index":"0.000027789008146512"},{"denom":"ASSET12","index":"0.000026479178332828"},{"denom":"ASSET13","index":"0.000008727103479255"},{"denom":"ASSET14","index":"0.000025511286037616"},{"denom":"ASSET15","index":"0.000020085740117730"},{"denom":"ASSET16","index":"0.000012411485442612"},{"denom":"ASSET17","index":"0.000009730550155880"},{"denom":"ASSET18","index":"0.000004028926705548"},{"denom":"ASSET2","index":"0.000008468714781887"},{"denom":"ASSET3","index":"0.000002353891879987"},{"denom":"ASSET4","index":"0.000022679492169342"},{"denom":"ASSET5","index":"0.000001833514119464"},{"denom":"ASSET6","index":"0.000007400677249018"},{"denom":"ASSET7","index":"0.000011621769805761"},{"denom":"ASSET8","index":"0.000015864980999233"},{"denom":"ASSET9","index":"0.000006736116007098"}],"last_reward_claim_height":"178"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET13","shares":"634119048.000000000000000000","reward_history":[],"last_reward_claim_height":"61"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET16","shares":"579448792.000000000000000000","reward_history":[],"last_reward_claim_height":"28"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET6","shares":"491227108.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001411859688057"},{"denom":"ASSET1","index":"0.000011770485537623"},{"denom":"ASSET10","index":"0.000008200497469250"},{"denom":"ASSET11","index":"0.000011386615852852"},{"denom":"ASSET12","index":"0.000010253874969484"},{"denom":"ASSET13","index":"0.000003528347966974"},{"denom":"ASSET14","index":"0.000010637094027671"},{"denom":"ASSET15","index":"0.000007605174144562"},{"denom":"ASSET16","index":"0.000005302606662519"},{"denom":"ASSET17","index":"0.000003765826670265"},{"denom":"ASSET18","index":"0.000001793777493075"},{"denom":"ASSET2","index":"0.000003474345960472"},{"denom":"ASSET3","index":"0.000001016278724767"},{"denom":"ASSET4","index":"0.000009565512043233"},{"denom":"ASSET5","index":"0.000000788559420242"},{"denom":"ASSET6","index":"0.000003210842193807"},{"denom":"ASSET7","index":"0.000004917435724579"},{"denom":"ASSET8","index":"0.000006416479374940"},{"denom":"ASSET9","index":"0.000002771018622781"}],"last_reward_claim_height":"109"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET8","shares":"115294326.999999999827398759","reward_history":[],"last_reward_claim_height":"34"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET0","shares":"30030567.315601153012661019","reward_history":[{"denom":"ASSET0","index":"0.000001630255611072"},{"denom":"ASSET1","index":"0.000013593541268721"},{"denom":"ASSET10","index":"0.000009470169531707"},{"denom":"ASSET11","index":"0.000013149994246609"},{"denom":"ASSET12","index":"0.000011841383661505"},{"denom":"ASSET13","index":"0.000004074904678306"},{"denom":"ASSET14","index":"0.000012284196334242"},{"denom":"ASSET15","index":"0.000008782818517308"},{"denom":"ASSET16","index":"0.000006123739432762"},{"denom":"ASSET17","index":"0.000004348816994942"},{"denom":"ASSET18","index":"0.000002071599585061"},{"denom":"ASSET2","index":"0.000004012484981486"},{"denom":"ASSET3","index":"0.000001173490300222"},{"denom":"ASSET4","index":"0.000011046817638451"},{"denom":"ASSET5","index":"0.000000910593224203"},{"denom":"ASSET6","index":"0.000003707729991128"},{"denom":"ASSET7","index":"0.000005678723711902"},{"denom":"ASSET8","index":"0.000007410319536635"},{"denom":"ASSET9","index":"0.000003200294573447"}],"last_reward_claim_height":"120"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET3","shares":"264046677.562841087600474112","reward_history":[{"denom":"ASSET0","index":"0.000004953155424517"},{"denom":"ASSET1","index":"0.000040606888247052"},{"denom":"ASSET10","index":"0.000035170982695117"},{"denom":"ASSET11","index":"0.000042156301910947"},{"denom":"ASSET12","index":"0.000040183030492130"},{"denom":"ASSET13","index":"0.000013590071791821"},{"denom":"ASSET14","index":"0.000038871453551416"},{"denom":"ASSET15","index":"0.000031558024433710"},{"denom":"ASSET16","index":"0.000018011385345721"},{"denom":"ASSET17","index":"0.000014602864003856"},{"denom":"ASSET18","index":"0.000006046015291900"},{"denom":"ASSET2","index":"0.000012266366015467"},{"denom":"ASSET3","index":"0.000003517202576052"},{"denom":"ASSET4","index":"0.000033271184035282"},{"denom":"ASSET5","index":"0.000002760943248123"},{"denom":"ASSET6","index":"0.000011265372607182"},{"denom":"ASSET7","index":"0.000017421644422297"},{"denom":"ASSET8","index":"0.000025062942780506"},{"denom":"ASSET9","index":"0.000010068919846849"}],"last_reward_claim_height":"193"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET5","shares":"404984219.868089802061194868","reward_history":[{"denom":"ASSET0","index":"0.000004953155424517"},{"denom":"ASSET1","index":"0.000040606888247052"},{"denom":"ASSET10","index":"0.000035170982695117"},{"denom":"ASSET11","index":"0.000042156301910947"},{"denom":"ASSET12","index":"0.000040183030492130"},{"denom":"ASSET13","index":"0.000013590071791821"},{"denom":"ASSET14","index":"0.000038871453551416"},{"denom":"ASSET15","index":"0.000031558024433710"},{"denom":"ASSET16","index":"0.000018011385345721"},{"denom":"ASSET17","index":"0.000014602864003856"},{"denom":"ASSET18","index":"0.000006046015291900"},{"denom":"ASSET2","index":"0.000012266366015467"},{"denom":"ASSET3","index":"0.000003517202576052"},{"denom":"ASSET4","index":"0.000033271184035282"},{"denom":"ASSET5","index":"0.000002760943248123"},{"denom":"ASSET6","index":"0.000011265372607182"},{"denom":"ASSET7","index":"0.000017421644422297"},{"denom":"ASSET8","index":"0.000025062942780506"},{"denom":"ASSET9","index":"0.000010068919846849"}],"last_reward_claim_height":"190"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET8","shares":"381353573.574020748839341010","reward_history":[{"denom":"ASSET0","index":"0.000001630255611072"},{"denom":"ASSET1","index":"0.000013593541268721"},{"denom":"ASSET10","index":"0.000009470169531707"},{"denom":"ASSET11","index":"0.000013149994246609"},{"denom":"ASSET12","index":"0.000011841383661505"},{"denom":"ASSET13","index":"0.000004074904678306"},{"denom":"ASSET14","index":"0.000012284196334242"},{"denom":"ASSET15","index":"0.000008782818517308"},{"denom":"ASSET16","index":"0.000006123739432762"},{"denom":"ASSET17","index":"0.000004348816994942"},{"denom":"ASSET18","index":"0.000002071599585061"},{"denom":"ASSET2","index":"0.000004012484981486"},{"denom":"ASSET3","index":"0.000001173490300222"},{"denom":"ASSET4","index":"0.000011046817638451"},{"denom":"ASSET5","index":"0.000000910593224203"},{"denom":"ASSET6","index":"0.000003707729991128"},{"denom":"ASSET7","index":"0.000005678723711902"},{"denom":"ASSET8","index":"0.000007410319536635"},{"denom":"ASSET9","index":"0.000003200294573447"}],"last_reward_claim_height":"122"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET2","shares":"109174363.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002824624853437"},{"denom":"ASSET1","index":"0.000023976113690517"},{"denom":"ASSET10","index":"0.000019183481330878"},{"denom":"ASSET11","index":"0.000023837782846342"},{"denom":"ASSET12","index":"0.000022753084719682"},{"denom":"ASSET13","index":"0.000007489057952554"},{"denom":"ASSET14","index":"0.000021872315483076"},{"denom":"ASSET15","index":"0.000017271123733000"},{"denom":"ASSET16","index":"0.000010633084765839"},{"denom":"ASSET17","index":"0.000008361522972460"},{"denom":"ASSET18","index":"0.000003446219629870"},{"denom":"ASSET2","index":"0.000007263651822688"},{"denom":"ASSET3","index":"0.000002015414858276"},{"denom":"ASSET4","index":"0.000019437236646346"},{"denom":"ASSET5","index":"0.000001569802896992"},{"denom":"ASSET6","index":"0.000006336500403946"},{"denom":"ASSET7","index":"0.000009959182045961"},{"denom":"ASSET8","index":"0.000013614498977085"},{"denom":"ASSET9","index":"0.000005776799011181"}],"last_reward_claim_height":"158"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET4","shares":"291307145.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001401914217082"},{"denom":"ASSET1","index":"0.000011691084141249"},{"denom":"ASSET10","index":"0.000008144816837289"},{"denom":"ASSET11","index":"0.000011309282624399"},{"denom":"ASSET12","index":"0.000010184195671197"},{"denom":"ASSET13","index":"0.000003504785542706"},{"denom":"ASSET14","index":"0.000010565150621491"},{"denom":"ASSET15","index":"0.000007553913381055"},{"denom":"ASSET16","index":"0.000005266490546178"},{"denom":"ASSET17","index":"0.000003740131045332"},{"denom":"ASSET18","index":"0.000001781176034264"},{"denom":"ASSET2","index":"0.000003450605283109"},{"denom":"ASSET3","index":"0.000001009107335001"},{"denom":"ASSET4","index":"0.000009501016460336"},{"denom":"ASSET5","index":"0.000000783074064494"},{"denom":"ASSET6","index":"0.000003189016217240"},{"denom":"ASSET7","index":"0.000004883842462771"},{"denom":"ASSET8","index":"0.000006372953035143"},{"denom":"ASSET9","index":"0.000002752187874236"}],"last_reward_claim_height":"90"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET9","shares":"77098363.837800213661421000","reward_history":[{"denom":"ASSET0","index":"0.000002824624853437"},{"denom":"ASSET1","index":"0.000023976113690517"},{"denom":"ASSET10","index":"0.000019183481330878"},{"denom":"ASSET11","index":"0.000023837782846342"},{"denom":"ASSET12","index":"0.000022753084719682"},{"denom":"ASSET13","index":"0.000007489057952554"},{"denom":"ASSET14","index":"0.000021872315483076"},{"denom":"ASSET15","index":"0.000017271123733000"},{"denom":"ASSET16","index":"0.000010633084765839"},{"denom":"ASSET17","index":"0.000008361522972460"},{"denom":"ASSET18","index":"0.000003446219629870"},{"denom":"ASSET2","index":"0.000007263651822688"},{"denom":"ASSET3","index":"0.000002015414858276"},{"denom":"ASSET4","index":"0.000019437236646346"},{"denom":"ASSET5","index":"0.000001569802896992"},{"denom":"ASSET6","index":"0.000006336500403946"},{"denom":"ASSET7","index":"0.000009959182045961"},{"denom":"ASSET8","index":"0.000013614498977085"},{"denom":"ASSET9","index":"0.000005776799011181"}],"last_reward_claim_height":"123"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET3","shares":"324046014.965086754180994484","reward_history":[{"denom":"ASSET0","index":"0.000003026822568793"},{"denom":"ASSET1","index":"0.000025710421285725"},{"denom":"ASSET10","index":"0.000020652297735472"},{"denom":"ASSET11","index":"0.000025583400849235"},{"denom":"ASSET12","index":"0.000024460820755928"},{"denom":"ASSET13","index":"0.000008041083722059"},{"denom":"ASSET14","index":"0.000023461074878675"},{"denom":"ASSET15","index":"0.000018578170233019"},{"denom":"ASSET16","index":"0.000011396689804799"},{"denom":"ASSET17","index":"0.000008988134494295"},{"denom":"ASSET18","index":"0.000003688816665807"},{"denom":"ASSET2","index":"0.000007796110853756"},{"denom":"ASSET3","index":"0.000002159003644915"},{"denom":"ASSET4","index":"0.000020841789260406"},{"denom":"ASSET5","index":"0.000001683251281734"},{"denom":"ASSET6","index":"0.000006788484398340"},{"denom":"ASSET7","index":"0.000010677121165375"},{"denom":"ASSET8","index":"0.000014616905179383"},{"denom":"ASSET9","index":"0.000006199084273401"}],"last_reward_claim_height":"178"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET13","shares":"579226328.243451502451899092","reward_history":[{"denom":"ASSET0","index":"0.000003026822568793"},{"denom":"ASSET1","index":"0.000025710421285725"},{"denom":"ASSET10","index":"0.000020652297735472"},{"denom":"ASSET11","index":"0.000025583400849235"},{"denom":"ASSET12","index":"0.000024460820755928"},{"denom":"ASSET13","index":"0.000008041083722059"},{"denom":"ASSET14","index":"0.000023461074878675"},{"denom":"ASSET15","index":"0.000018578170233019"},{"denom":"ASSET16","index":"0.000011396689804799"},{"denom":"ASSET17","index":"0.000008988134494295"},{"denom":"ASSET18","index":"0.000003688816665807"},{"denom":"ASSET2","index":"0.000007796110853756"},{"denom":"ASSET3","index":"0.000002159003644915"},{"denom":"ASSET4","index":"0.000020841789260406"},{"denom":"ASSET5","index":"0.000001683251281734"},{"denom":"ASSET6","index":"0.000006788484398340"},{"denom":"ASSET7","index":"0.000010677121165375"},{"denom":"ASSET8","index":"0.000014616905179383"},{"denom":"ASSET9","index":"0.000006199084273401"}],"last_reward_claim_height":"182"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET0","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001547699786520"},{"denom":"ASSET1","index":"0.000012908880828127"},{"denom":"ASSET10","index":"0.000008993933542043"},{"denom":"ASSET11","index":"0.000012488059147042"},{"denom":"ASSET12","index":"0.000011245681057538"},{"denom":"ASSET13","index":"0.000003869751640144"},{"denom":"ASSET14","index":"0.000011665498390936"},{"denom":"ASSET15","index":"0.000008340103197445"},{"denom":"ASSET16","index":"0.000005815173110936"},{"denom":"ASSET17","index":"0.000004129877691221"},{"denom":"ASSET18","index":"0.000001966512772230"},{"denom":"ASSET2","index":"0.000003810495126579"},{"denom":"ASSET3","index":"0.000001114825933185"},{"denom":"ASSET4","index":"0.000010490411596498"},{"denom":"ASSET5","index":"0.000000864743358984"},{"denom":"ASSET6","index":"0.000003521242992563"},{"denom":"ASSET7","index":"0.000005392342734476"},{"denom":"ASSET8","index":"0.000007036459899001"},{"denom":"ASSET9","index":"0.000003039156102537"}],"last_reward_claim_height":"71"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET6","shares":"967863126.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004616721479176"},{"denom":"ASSET1","index":"0.000037776223870921"},{"denom":"ASSET10","index":"0.000032792106235622"},{"denom":"ASSET11","index":"0.000039284178188011"},{"denom":"ASSET12","index":"0.000037420627315813"},{"denom":"ASSET13","index":"0.000012677210240132"},{"denom":"ASSET14","index":"0.000036238343992734"},{"denom":"ASSET15","index":"0.000029426834520377"},{"denom":"ASSET16","index":"0.000016759074479265"},{"denom":"ASSET17","index":"0.000013592257069110"},{"denom":"ASSET18","index":"0.000005637809940416"},{"denom":"ASSET2","index":"0.000011406628355974"},{"denom":"ASSET3","index":"0.000003278241119549"},{"denom":"ASSET4","index":"0.000030968445081876"},{"denom":"ASSET5","index":"0.000002574590057360"},{"denom":"ASSET6","index":"0.000010507503575560"},{"denom":"ASSET7","index":"0.000016233218198884"},{"denom":"ASSET8","index":"0.000023393630662833"},{"denom":"ASSET9","index":"0.000009377336949943"}],"last_reward_claim_height":"196"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET18","shares":"180454.999999997881132304","reward_history":[],"last_reward_claim_height":"56"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET3","shares":"858354140.423462550747811107","reward_history":[{"denom":"ASSET0","index":"0.000002938303361264"},{"denom":"ASSET1","index":"0.000024939884544734"},{"denom":"ASSET10","index":"0.000019970621943114"},{"denom":"ASSET11","index":"0.000024800280810198"},{"denom":"ASSET12","index":"0.000023679745396670"},{"denom":"ASSET13","index":"0.000007792253675830"},{"denom":"ASSET14","index":"0.000022752532795075"},{"denom":"ASSET15","index":"0.000017976341528508"},{"denom":"ASSET16","index":"0.000011059313296089"},{"denom":"ASSET17","index":"0.000008702160495382"},{"denom":"ASSET18","index":"0.000003584018468858"},{"denom":"ASSET2","index":"0.000007557839698908"},{"denom":"ASSET3","index":"0.000002096442663552"},{"denom":"ASSET4","index":"0.000020217858094708"},{"denom":"ASSET5","index":"0.000001633684136995"},{"denom":"ASSET6","index":"0.000006589976909255"},{"denom":"ASSET7","index":"0.000010359339015905"},{"denom":"ASSET8","index":"0.000014165755580726"},{"denom":"ASSET9","index":"0.000006010291774725"}],"last_reward_claim_height":"175"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET3","shares":"645400430.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003329715418659"},{"denom":"ASSET1","index":"0.000028238028843607"},{"denom":"ASSET10","index":"0.000022458342297172"},{"denom":"ASSET11","index":"0.000028040237741643"},{"denom":"ASSET12","index":"0.000026695793846360"},{"denom":"ASSET13","index":"0.000008804253880653"},{"denom":"ASSET14","index":"0.000025748953032298"},{"denom":"ASSET15","index":"0.000020243324641083"},{"denom":"ASSET16","index":"0.000012532507824147"},{"denom":"ASSET17","index":"0.000009809802042254"},{"denom":"ASSET18","index":"0.000004070975493464"},{"denom":"ASSET2","index":"0.000008545109234155"},{"denom":"ASSET3","index":"0.000002377197518329"},{"denom":"ASSET4","index":"0.000022894451839245"},{"denom":"ASSET5","index":"0.000001851122407848"},{"denom":"ASSET6","index":"0.000007473999475476"},{"denom":"ASSET7","index":"0.000011732969702935"},{"denom":"ASSET8","index":"0.000016005536556726"},{"denom":"ASSET9","index":"0.000006797137295338"}],"last_reward_claim_height":"155"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET7","shares":"174754847.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003329715418659"},{"denom":"ASSET1","index":"0.000028238028843607"},{"denom":"ASSET10","index":"0.000022458342297172"},{"denom":"ASSET11","index":"0.000028040237741643"},{"denom":"ASSET12","index":"0.000026695793846360"},{"denom":"ASSET13","index":"0.000008804253880653"},{"denom":"ASSET14","index":"0.000025748953032298"},{"denom":"ASSET15","index":"0.000020243324641083"},{"denom":"ASSET16","index":"0.000012532507824147"},{"denom":"ASSET17","index":"0.000009809802042254"},{"denom":"ASSET18","index":"0.000004070975493464"},{"denom":"ASSET2","index":"0.000008545109234155"},{"denom":"ASSET3","index":"0.000002377197518329"},{"denom":"ASSET4","index":"0.000022894451839245"},{"denom":"ASSET5","index":"0.000001851122407848"},{"denom":"ASSET6","index":"0.000007473999475476"},{"denom":"ASSET7","index":"0.000011732969702935"},{"denom":"ASSET8","index":"0.000016005536556726"},{"denom":"ASSET9","index":"0.000006797137295338"}],"last_reward_claim_height":"127"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET14","shares":"925127152.000000000000000000","reward_history":[],"last_reward_claim_height":"43"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET9","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001649988907243"},{"denom":"ASSET1","index":"0.000013756519537767"},{"denom":"ASSET10","index":"0.000009584361794534"},{"denom":"ASSET11","index":"0.000013307506163009"},{"denom":"ASSET12","index":"0.000011983307415229"},{"denom":"ASSET13","index":"0.000004124070634826"},{"denom":"ASSET14","index":"0.000012431118612277"},{"denom":"ASSET15","index":"0.000008888300900330"},{"denom":"ASSET16","index":"0.000006196625007203"},{"denom":"ASSET17","index":"0.000004401172597026"},{"denom":"ASSET18","index":"0.000002096597926581"},{"denom":"ASSET2","index":"0.000004060355216185"},{"denom":"ASSET3","index":"0.000001187751577673"},{"denom":"ASSET4","index":"0.000011179050527108"},{"denom":"ASSET5","index":"0.000000922070303720"},{"denom":"ASSET6","index":"0.000003752597722375"},{"denom":"ASSET7","index":"0.000005747010543590"},{"denom":"ASSET8","index":"0.000007499184556200"},{"denom":"ASSET9","index":"0.000003238666751267"}],"last_reward_claim_height":"105"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET7","shares":"956088515.999999392883792340","reward_history":[{"denom":"ASSET0","index":"0.000003075387603983"},{"denom":"ASSET1","index":"0.000026047450678709"},{"denom":"ASSET10","index":"0.000020531243448578"},{"denom":"ASSET11","index":"0.000025816927992783"},{"denom":"ASSET12","index":"0.000024485469945303"},{"denom":"ASSET13","index":"0.000008098391373250"},{"denom":"ASSET14","index":"0.000023735883509134"},{"denom":"ASSET15","index":"0.000018540774078871"},{"denom":"ASSET16","index":"0.000011572711306393"},{"denom":"ASSET17","index":"0.000008997644319689"},{"denom":"ASSET18","index":"0.000003770348288081"},{"denom":"ASSET2","index":"0.000007868945206789"},{"denom":"ASSET3","index":"0.000002196489262864"},{"denom":"ASSET4","index":"0.000021122354693053"},{"denom":"ASSET5","index":"0.000001710501624761"},{"denom":"ASSET6","index":"0.000006909892735753"},{"denom":"ASSET7","index":"0.000010827333344051"},{"denom":"ASSET8","index":"0.000014723239896475"},{"denom":"ASSET9","index":"0.000006260042064096"}],"last_reward_claim_height":"179"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET9","shares":"230240826.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003075387603983"},{"denom":"ASSET1","index":"0.000026047450678709"},{"denom":"ASSET10","index":"0.000020531243448578"},{"denom":"ASSET11","index":"0.000025816927992783"},{"denom":"ASSET12","index":"0.000024485469945303"},{"denom":"ASSET13","index":"0.000008098391373250"},{"denom":"ASSET14","index":"0.000023735883509134"},{"denom":"ASSET15","index":"0.000018540774078871"},{"denom":"ASSET16","index":"0.000011572711306393"},{"denom":"ASSET17","index":"0.000008997644319689"},{"denom":"ASSET18","index":"0.000003770348288081"},{"denom":"ASSET2","index":"0.000007868945206789"},{"denom":"ASSET3","index":"0.000002196489262864"},{"denom":"ASSET4","index":"0.000021122354693053"},{"denom":"ASSET5","index":"0.000001710501624761"},{"denom":"ASSET6","index":"0.000006909892735753"},{"denom":"ASSET7","index":"0.000010827333344051"},{"denom":"ASSET8","index":"0.000014723239896475"},{"denom":"ASSET9","index":"0.000006260042064096"}],"last_reward_claim_height":"146"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET11","shares":"56260463.000000004263522426","reward_history":[],"last_reward_claim_height":"20"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET2","shares":"44450291.000000000000000000","reward_history":[],"last_reward_claim_height":"15"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET5","shares":"1171527785.632785466110581108","reward_history":[{"denom":"ASSET0","index":"0.000003478645419875"},{"denom":"ASSET1","index":"0.000029510728520321"},{"denom":"ASSET10","index":"0.000023521700007579"},{"denom":"ASSET11","index":"0.000029317721838376"},{"denom":"ASSET12","index":"0.000027938200533330"},{"denom":"ASSET13","index":"0.000009206643656085"},{"denom":"ASSET14","index":"0.000026913511393693"},{"denom":"ASSET15","index":"0.000021192735957156"},{"denom":"ASSET16","index":"0.000013092928863665"},{"denom":"ASSET17","index":"0.000010265835619821"},{"denom":"ASSET18","index":"0.000004249633310572"},{"denom":"ASSET2","index":"0.000008933634051769"},{"denom":"ASSET3","index":"0.000002482776919113"},{"denom":"ASSET4","index":"0.000023925662277258"},{"denom":"ASSET5","index":"0.000001933519521756"},{"denom":"ASSET6","index":"0.000007806757132876"},{"denom":"ASSET7","index":"0.000012260200744601"},{"denom":"ASSET8","index":"0.000016737737824425"},{"denom":"ASSET9","index":"0.000007106044722519"}],"last_reward_claim_height":"164"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET7","shares":"819691002.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001779156074987"},{"denom":"ASSET1","index":"0.000014834764457923"},{"denom":"ASSET10","index":"0.000010335215703318"},{"denom":"ASSET11","index":"0.000014351450406057"},{"denom":"ASSET12","index":"0.000012923397473821"},{"denom":"ASSET13","index":"0.000004447014618532"},{"denom":"ASSET14","index":"0.000013405835956753"},{"denom":"ASSET15","index":"0.000009584853126417"},{"denom":"ASSET16","index":"0.000006682342108415"},{"denom":"ASSET17","index":"0.000004745583625211"},{"denom":"ASSET18","index":"0.000002260718988984"},{"denom":"ASSET2","index":"0.000004378720241638"},{"denom":"ASSET3","index":"0.000001280957351233"},{"denom":"ASSET4","index":"0.000012055708659691"},{"denom":"ASSET5","index":"0.000000993770740704"},{"denom":"ASSET6","index":"0.000004046879615447"},{"denom":"ASSET7","index":"0.000006197276918679"},{"denom":"ASSET8","index":"0.000008086754679418"},{"denom":"ASSET9","index":"0.000003492644479883"}],"last_reward_claim_height":"85"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET2","shares":"758410616.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001752700098923"},{"denom":"ASSET1","index":"0.000014612940709519"},{"denom":"ASSET10","index":"0.000010180696541309"},{"denom":"ASSET11","index":"0.000014136053678762"},{"denom":"ASSET12","index":"0.000012730078503378"},{"denom":"ASSET13","index":"0.000004380628160175"},{"denom":"ASSET14","index":"0.000013205843447004"},{"denom":"ASSET15","index":"0.000009441241121853"},{"denom":"ASSET16","index":"0.000006583285198706"},{"denom":"ASSET17","index":"0.000004674614988548"},{"denom":"ASSET18","index":"0.000002226220868286"},{"denom":"ASSET2","index":"0.000004313302932304"},{"denom":"ASSET3","index":"0.000001261225935460"},{"denom":"ASSET4","index":"0.000011875048109410"},{"denom":"ASSET5","index":"0.000000979582065531"},{"denom":"ASSET6","index":"0.000003985653489996"},{"denom":"ASSET7","index":"0.000006105276080818"},{"denom":"ASSET8","index":"0.000007965696544335"},{"denom":"ASSET9","index":"0.000003440319144236"}],"last_reward_claim_height":"64"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET4","shares":"623405375.129193743058773440","reward_history":[{"denom":"ASSET0","index":"0.000003327512121722"},{"denom":"ASSET1","index":"0.000028211822531533"},{"denom":"ASSET10","index":"0.000022399629444355"},{"denom":"ASSET11","index":"0.000028004032167971"},{"denom":"ASSET12","index":"0.000026643127370344"},{"denom":"ASSET13","index":"0.000008791339050068"},{"denom":"ASSET14","index":"0.000025722152469956"},{"denom":"ASSET15","index":"0.000020197596080044"},{"denom":"ASSET16","index":"0.000012523737733641"},{"denom":"ASSET17","index":"0.000009790102863953"},{"denom":"ASSET18","index":"0.000004069245825383"},{"denom":"ASSET2","index":"0.000008534453115749"},{"denom":"ASSET3","index":"0.000002375171252372"},{"denom":"ASSET4","index":"0.000022873545881432"},{"denom":"ASSET5","index":"0.000001850500835715"},{"denom":"ASSET6","index":"0.000007470212303630"},{"denom":"ASSET7","index":"0.000011723166108277"},{"denom":"ASSET8","index":"0.000015981595788329"},{"denom":"ASSET9","index":"0.000006788341225254"}],"last_reward_claim_height":"153"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET12","shares":"808257152.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003327512121722"},{"denom":"ASSET1","index":"0.000028211822531533"},{"denom":"ASSET10","index":"0.000022399629444355"},{"denom":"ASSET11","index":"0.000028004032167971"},{"denom":"ASSET12","index":"0.000026643127370344"},{"denom":"ASSET13","index":"0.000008791339050068"},{"denom":"ASSET14","index":"0.000025722152469956"},{"denom":"ASSET15","index":"0.000020197596080044"},{"denom":"ASSET16","index":"0.000012523737733641"},{"denom":"ASSET17","index":"0.000009790102863953"},{"denom":"ASSET18","index":"0.000004069245825383"},{"denom":"ASSET2","index":"0.000008534453115749"},{"denom":"ASSET3","index":"0.000002375171252372"},{"denom":"ASSET4","index":"0.000022873545881432"},{"denom":"ASSET5","index":"0.000001850500835715"},{"denom":"ASSET6","index":"0.000007470212303630"},{"denom":"ASSET7","index":"0.000011723166108277"},{"denom":"ASSET8","index":"0.000015981595788329"},{"denom":"ASSET9","index":"0.000006788341225254"}],"last_reward_claim_height":"176"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET13","shares":"40868376.653640218174718870","reward_history":[{"denom":"ASSET0","index":"0.000003327512121722"},{"denom":"ASSET1","index":"0.000028211822531533"},{"denom":"ASSET10","index":"0.000022399629444355"},{"denom":"ASSET11","index":"0.000028004032167971"},{"denom":"ASSET12","index":"0.000026643127370344"},{"denom":"ASSET13","index":"0.000008791339050068"},{"denom":"ASSET14","index":"0.000025722152469956"},{"denom":"ASSET15","index":"0.000020197596080044"},{"denom":"ASSET16","index":"0.000012523737733641"},{"denom":"ASSET17","index":"0.000009790102863953"},{"denom":"ASSET18","index":"0.000004069245825383"},{"denom":"ASSET2","index":"0.000008534453115749"},{"denom":"ASSET3","index":"0.000002375171252372"},{"denom":"ASSET4","index":"0.000022873545881432"},{"denom":"ASSET5","index":"0.000001850500835715"},{"denom":"ASSET6","index":"0.000007470212303630"},{"denom":"ASSET7","index":"0.000011723166108277"},{"denom":"ASSET8","index":"0.000015981595788329"},{"denom":"ASSET9","index":"0.000006788341225254"}],"last_reward_claim_height":"170"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET15","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003327512121722"},{"denom":"ASSET1","index":"0.000028211822531533"},{"denom":"ASSET10","index":"0.000022399629444355"},{"denom":"ASSET11","index":"0.000028004032167971"},{"denom":"ASSET12","index":"0.000026643127370344"},{"denom":"ASSET13","index":"0.000008791339050068"},{"denom":"ASSET14","index":"0.000025722152469956"},{"denom":"ASSET15","index":"0.000020197596080044"},{"denom":"ASSET16","index":"0.000012523737733641"},{"denom":"ASSET17","index":"0.000009790102863953"},{"denom":"ASSET18","index":"0.000004069245825383"},{"denom":"ASSET2","index":"0.000008534453115749"},{"denom":"ASSET3","index":"0.000002375171252372"},{"denom":"ASSET4","index":"0.000022873545881432"},{"denom":"ASSET5","index":"0.000001850500835715"},{"denom":"ASSET6","index":"0.000007470212303630"},{"denom":"ASSET7","index":"0.000011723166108277"},{"denom":"ASSET8","index":"0.000015981595788329"},{"denom":"ASSET9","index":"0.000006788341225254"}],"last_reward_claim_height":"155"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET9","shares":"895454690.111172877300479865","reward_history":[{"denom":"ASSET0","index":"0.000004589138107131"},{"denom":"ASSET1","index":"0.000037446098475403"},{"denom":"ASSET10","index":"0.000032732808056967"},{"denom":"ASSET11","index":"0.000039094478322284"},{"denom":"ASSET12","index":"0.000037233161430730"},{"denom":"ASSET13","index":"0.000012643946661020"},{"denom":"ASSET14","index":"0.000036080970262311"},{"denom":"ASSET15","index":"0.000029367139968273"},{"denom":"ASSET16","index":"0.000016612678055137"},{"denom":"ASSET17","index":"0.000013507979841133"},{"denom":"ASSET18","index":"0.000005606465800233"},{"denom":"ASSET2","index":"0.000011302755940208"},{"denom":"ASSET3","index":"0.000003257528612514"},{"denom":"ASSET4","index":"0.000030728704055425"},{"denom":"ASSET5","index":"0.000002561029239288"},{"denom":"ASSET6","index":"0.000010461272108585"},{"denom":"ASSET7","index":"0.000016139641498045"},{"denom":"ASSET8","index":"0.000023361940912705"},{"denom":"ASSET9","index":"0.000009319386307275"}],"last_reward_claim_height":"195"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET12","shares":"93700199.999999997973122992","reward_history":[],"last_reward_claim_height":"51"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET7","shares":"149095472.000000000000000000","reward_history":[],"last_reward_claim_height":"5"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET12","shares":"540453165.049229399982548900","reward_history":[{"denom":"ASSET0","index":"0.000001401536005232"},{"denom":"ASSET1","index":"0.000011690786017211"},{"denom":"ASSET10","index":"0.000008143726832164"},{"denom":"ASSET11","index":"0.000011307987636928"},{"denom":"ASSET12","index":"0.000010184289165772"},{"denom":"ASSET13","index":"0.000003503840013080"},{"denom":"ASSET14","index":"0.000010564000462344"},{"denom":"ASSET15","index":"0.000007554093843178"},{"denom":"ASSET16","index":"0.000005266564812612"},{"denom":"ASSET17","index":"0.000003738458375190"},{"denom":"ASSET18","index":"0.000001781247301804"},{"denom":"ASSET2","index":"0.000003448272506265"},{"denom":"ASSET3","index":"0.000001009476373813"},{"denom":"ASSET4","index":"0.000009498956581716"},{"denom":"ASSET5","index":"0.000000781032179127"},{"denom":"ASSET6","index":"0.000003188957474460"},{"denom":"ASSET7","index":"0.000004883766432329"},{"denom":"ASSET8","index":"0.000006371740781496"},{"denom":"ASSET9","index":"0.000002750591587361"}],"last_reward_claim_height":"96"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET16","shares":"483248390.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003071913026336"},{"denom":"ASSET1","index":"0.000026115211920195"},{"denom":"ASSET10","index":"0.000021104918039272"},{"denom":"ASSET11","index":"0.000026018207650283"},{"denom":"ASSET12","index":"0.000024942011742431"},{"denom":"ASSET13","index":"0.000008182453133262"},{"denom":"ASSET14","index":"0.000023839798810024"},{"denom":"ASSET15","index":"0.000018963275072170"},{"denom":"ASSET16","index":"0.000011567273660047"},{"denom":"ASSET17","index":"0.000009164652819502"},{"denom":"ASSET18","index":"0.000003735860972186"},{"denom":"ASSET2","index":"0.000007925194415041"},{"denom":"ASSET3","index":"0.000002190810612048"},{"denom":"ASSET4","index":"0.000021165118890878"},{"denom":"ASSET5","index":"0.000001704606606646"},{"denom":"ASSET6","index":"0.000006884812645629"},{"denom":"ASSET7","index":"0.000010842612570084"},{"denom":"ASSET8","index":"0.000014874699612932"},{"denom":"ASSET9","index":"0.000006301602876980"}],"last_reward_claim_height":"163"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET1","shares":"854828664.999999990596884685","reward_history":[{"denom":"ASSET0","index":"0.000001534549585700"},{"denom":"ASSET1","index":"0.000012795681230217"},{"denom":"ASSET10","index":"0.000008914897664776"},{"denom":"ASSET11","index":"0.000012378406858633"},{"denom":"ASSET12","index":"0.000011146809898878"},{"denom":"ASSET13","index":"0.000003835934265229"},{"denom":"ASSET14","index":"0.000011563204872419"},{"denom":"ASSET15","index":"0.000008267660704848"},{"denom":"ASSET16","index":"0.000005764014475342"},{"denom":"ASSET17","index":"0.000004093597891939"},{"denom":"ASSET18","index":"0.000001950065161198"},{"denom":"ASSET2","index":"0.000003777014596322"},{"denom":"ASSET3","index":"0.000001104963641508"},{"denom":"ASSET4","index":"0.000010398442163960"},{"denom":"ASSET5","index":"0.000000857413092297"},{"denom":"ASSET6","index":"0.000003490330834180"},{"denom":"ASSET7","index":"0.000005345421006692"},{"denom":"ASSET8","index":"0.000006975385280099"},{"denom":"ASSET9","index":"0.000003012817696624"}],"last_reward_claim_height":"81"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET10","shares":"57096036.689590802392148946","reward_history":[{"denom":"ASSET0","index":"0.000003034954909236"},{"denom":"ASSET1","index":"0.000025752158165977"},{"denom":"ASSET10","index":"0.000020556858138008"},{"denom":"ASSET11","index":"0.000025591676311293"},{"denom":"ASSET12","index":"0.000024402528250789"},{"denom":"ASSET13","index":"0.000008038375291107"},{"denom":"ASSET14","index":"0.000023488313497799"},{"denom":"ASSET15","index":"0.000018516037809802"},{"denom":"ASSET16","index":"0.000011423945454084"},{"denom":"ASSET17","index":"0.000008967524527402"},{"denom":"ASSET18","index":"0.000003706330058793"},{"denom":"ASSET2","index":"0.000007798931182527"},{"denom":"ASSET3","index":"0.000002166419358500"},{"denom":"ASSET4","index":"0.000020877722621984"},{"denom":"ASSET5","index":"0.000001687498984799"},{"denom":"ASSET6","index":"0.000006810207932767"},{"denom":"ASSET7","index":"0.000010698180555138"},{"denom":"ASSET8","index":"0.000014612921845389"},{"denom":"ASSET9","index":"0.000006203015740356"}],"last_reward_claim_height":"157"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET13","shares":"161515871.000000038601968982","reward_history":[{"denom":"ASSET0","index":"0.000003034954909236"},{"denom":"ASSET1","index":"0.000025752158165977"},{"denom":"ASSET10","index":"0.000020556858138008"},{"denom":"ASSET11","index":"0.000025591676311293"},{"denom":"ASSET12","index":"0.000024402528250789"},{"denom":"ASSET13","index":"0.000008038375291107"},{"denom":"ASSET14","index":"0.000023488313497799"},{"denom":"ASSET15","index":"0.000018516037809802"},{"denom":"ASSET16","index":"0.000011423945454084"},{"denom":"ASSET17","index":"0.000008967524527402"},{"denom":"ASSET18","index":"0.000003706330058793"},{"denom":"ASSET2","index":"0.000007798931182527"},{"denom":"ASSET3","index":"0.000002166419358500"},{"denom":"ASSET4","index":"0.000020877722621984"},{"denom":"ASSET5","index":"0.000001687498984799"},{"denom":"ASSET6","index":"0.000006810207932767"},{"denom":"ASSET7","index":"0.000010698180555138"},{"denom":"ASSET8","index":"0.000014612921845389"},{"denom":"ASSET9","index":"0.000006203015740356"}],"last_reward_claim_height":"181"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET3","shares":"976726257.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001658482037183"},{"denom":"ASSET1","index":"0.000013862588923046"},{"denom":"ASSET10","index":"0.000009655943522610"},{"denom":"ASSET11","index":"0.000013408077810815"},{"denom":"ASSET12","index":"0.000012073555821711"},{"denom":"ASSET13","index":"0.000004153457929856"},{"denom":"ASSET14","index":"0.000012528066933942"},{"denom":"ASSET15","index":"0.000008954835955871"},{"denom":"ASSET16","index":"0.000006242274956279"},{"denom":"ASSET17","index":"0.000004433900956551"},{"denom":"ASSET18","index":"0.000002112993149414"},{"denom":"ASSET2","index":"0.000004090600010079"},{"denom":"ASSET3","index":"0.000001194300475756"},{"denom":"ASSET4","index":"0.000011266073313811"},{"denom":"ASSET5","index":"0.000000928363122855"},{"denom":"ASSET6","index":"0.000003781145635794"},{"denom":"ASSET7","index":"0.000005787763844048"},{"denom":"ASSET8","index":"0.000007557456046990"},{"denom":"ASSET9","index":"0.000003263776603787"}],"last_reward_claim_height":"93"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET10","shares":"419562378.227635008803796135","reward_history":[{"denom":"ASSET0","index":"0.000004821253659137"},{"denom":"ASSET1","index":"0.000039465245308483"},{"denom":"ASSET10","index":"0.000034111324062195"},{"denom":"ASSET11","index":"0.000040998472045794"},{"denom":"ASSET12","index":"0.000038982930565630"},{"denom":"ASSET13","index":"0.000013222547274006"},{"denom":"ASSET14","index":"0.000037843785812280"},{"denom":"ASSET15","index":"0.000030636082555583"},{"denom":"ASSET16","index":"0.000017514751416713"},{"denom":"ASSET17","index":"0.000014158801787082"},{"denom":"ASSET18","index":"0.000005900797517651"},{"denom":"ASSET2","index":"0.000011904810892779"},{"denom":"ASSET3","index":"0.000003424400341174"},{"denom":"ASSET4","index":"0.000032355527586641"},{"denom":"ASSET5","index":"0.000002690071214205"},{"denom":"ASSET6","index":"0.000010986782185203"},{"denom":"ASSET7","index":"0.000016956775142402"},{"denom":"ASSET8","index":"0.000024404677863493"},{"denom":"ASSET9","index":"0.000009788399575506"}],"last_reward_claim_height":"192"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET2","shares":"322209599.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002979919393708"},{"denom":"ASSET1","index":"0.000025298333716476"},{"denom":"ASSET10","index":"0.000020286143685892"},{"denom":"ASSET11","index":"0.000025164674259360"},{"denom":"ASSET12","index":"0.000024041723171534"},{"denom":"ASSET13","index":"0.000007907785176595"},{"denom":"ASSET14","index":"0.000023082402053339"},{"denom":"ASSET15","index":"0.000018255332392862"},{"denom":"ASSET16","index":"0.000011216675450010"},{"denom":"ASSET17","index":"0.000008835128154455"},{"denom":"ASSET18","index":"0.000003633337151635"},{"denom":"ASSET2","index":"0.000007668586747858"},{"denom":"ASSET3","index":"0.000002126085354033"},{"denom":"ASSET4","index":"0.000020508686269066"},{"denom":"ASSET5","index":"0.000001656307666438"},{"denom":"ASSET6","index":"0.000006683025235204"},{"denom":"ASSET7","index":"0.000010507859389263"},{"denom":"ASSET8","index":"0.000014375637436113"},{"denom":"ASSET9","index":"0.000006098257618497"}],"last_reward_claim_height":"142"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET11","shares":"227968224.358188555870925038","reward_history":[{"denom":"ASSET0","index":"0.000002979919393708"},{"denom":"ASSET1","index":"0.000025298333716476"},{"denom":"ASSET10","index":"0.000020286143685892"},{"denom":"ASSET11","index":"0.000025164674259360"},{"denom":"ASSET12","index":"0.000024041723171534"},{"denom":"ASSET13","index":"0.000007907785176595"},{"denom":"ASSET14","index":"0.000023082402053339"},{"denom":"ASSET15","index":"0.000018255332392862"},{"denom":"ASSET16","index":"0.000011216675450010"},{"denom":"ASSET17","index":"0.000008835128154455"},{"denom":"ASSET18","index":"0.000003633337151635"},{"denom":"ASSET2","index":"0.000007668586747858"},{"denom":"ASSET3","index":"0.000002126085354033"},{"denom":"ASSET4","index":"0.000020508686269066"},{"denom":"ASSET5","index":"0.000001656307666438"},{"denom":"ASSET6","index":"0.000006683025235204"},{"denom":"ASSET7","index":"0.000010507859389263"},{"denom":"ASSET8","index":"0.000014375637436113"},{"denom":"ASSET9","index":"0.000006098257618497"}],"last_reward_claim_height":"146"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET4","shares":"242319788.000069784948786756","reward_history":[{"denom":"ASSET0","index":"0.000005110258502433"},{"denom":"ASSET1","index":"0.000041848139529843"},{"denom":"ASSET10","index":"0.000036095442313773"},{"denom":"ASSET11","index":"0.000043419926176109"},{"denom":"ASSET12","index":"0.000041293844776763"},{"denom":"ASSET13","index":"0.000013994054097310"},{"denom":"ASSET14","index":"0.000040066625857946"},{"denom":"ASSET15","index":"0.000032419831695563"},{"denom":"ASSET16","index":"0.000018571815188636"},{"denom":"ASSET17","index":"0.000015000716043498"},{"denom":"ASSET18","index":"0.000006247416520609"},{"denom":"ASSET2","index":"0.000012623910696266"},{"denom":"ASSET3","index":"0.000003630542968489"},{"denom":"ASSET4","index":"0.000034294837675452"},{"denom":"ASSET5","index":"0.000002848875945133"},{"denom":"ASSET6","index":"0.000011630847535820"},{"denom":"ASSET7","index":"0.000017964747196149"},{"denom":"ASSET8","index":"0.000025811711320315"},{"denom":"ASSET9","index":"0.000010370289784603"}],"last_reward_claim_height":"187"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET12","shares":"552712936.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001779729226299"},{"denom":"ASSET1","index":"0.000014840802182142"},{"denom":"ASSET10","index":"0.000010337989986643"},{"denom":"ASSET11","index":"0.000014356968690293"},{"denom":"ASSET12","index":"0.000012927350131463"},{"denom":"ASSET13","index":"0.000004449323065747"},{"denom":"ASSET14","index":"0.000013411183623312"},{"denom":"ASSET15","index":"0.000009589142170113"},{"denom":"ASSET16","index":"0.000006683709894939"},{"denom":"ASSET17","index":"0.000004745944603463"},{"denom":"ASSET18","index":"0.000002261131394068"},{"denom":"ASSET2","index":"0.000004378814667437"},{"denom":"ASSET3","index":"0.000001281307789972"},{"denom":"ASSET4","index":"0.000012059367435030"},{"denom":"ASSET5","index":"0.000000994411548574"},{"denom":"ASSET6","index":"0.000004048154592606"},{"denom":"ASSET7","index":"0.000006199876403090"},{"denom":"ASSET8","index":"0.000008089015212973"},{"denom":"ASSET9","index":"0.000003493812702447"}],"last_reward_claim_height":"72"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET0","shares":"962315141.878189273178002258","reward_history":[{"denom":"ASSET0","index":"0.000001595670533734"},{"denom":"ASSET1","index":"0.000013304245337308"},{"denom":"ASSET10","index":"0.000009268754359880"},{"denom":"ASSET11","index":"0.000012870227612725"},{"denom":"ASSET12","index":"0.000011589729681675"},{"denom":"ASSET13","index":"0.000003988302473145"},{"denom":"ASSET14","index":"0.000012022582258004"},{"denom":"ASSET15","index":"0.000008595881243245"},{"denom":"ASSET16","index":"0.000005992940044003"},{"denom":"ASSET17","index":"0.000004256286571545"},{"denom":"ASSET18","index":"0.000002027357961809"},{"denom":"ASSET2","index":"0.000003927132189815"},{"denom":"ASSET3","index":"0.000001148836178358"},{"denom":"ASSET4","index":"0.000010811993222188"},{"denom":"ASSET5","index":"0.000000891338414244"},{"denom":"ASSET6","index":"0.000003628854236813"},{"denom":"ASSET7","index":"0.000005557757171166"},{"denom":"ASSET8","index":"0.000007252465306483"},{"denom":"ASSET9","index":"0.000003132501080646"}],"last_reward_claim_height":"121"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET8","shares":"722403231.000000035397758319","reward_history":[{"denom":"ASSET0","index":"0.000003118409098775"},{"denom":"ASSET1","index":"0.000026454243753489"},{"denom":"ASSET10","index":"0.000021084585905412"},{"denom":"ASSET11","index":"0.000026280950742513"},{"denom":"ASSET12","index":"0.000025043390497745"},{"denom":"ASSET13","index":"0.000008253298424938"},{"denom":"ASSET14","index":"0.000024125697910719"},{"denom":"ASSET15","index":"0.000018997425080839"},{"denom":"ASSET16","index":"0.000011737294217995"},{"denom":"ASSET17","index":"0.000009202973625129"},{"denom":"ASSET18","index":"0.000003809493270778"},{"denom":"ASSET2","index":"0.000008008868325931"},{"denom":"ASSET3","index":"0.000002225819587877"},{"denom":"ASSET4","index":"0.000021447702379813"},{"denom":"ASSET5","index":"0.000001733713847172"},{"denom":"ASSET6","index":"0.000006998355968525"},{"denom":"ASSET7","index":"0.000010990481127196"},{"denom":"ASSET8","index":"0.000015003824321723"},{"denom":"ASSET9","index":"0.000006370091157596"}],"last_reward_claim_height":"175"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET18","shares":"552659453.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004711127852933"},{"denom":"ASSET1","index":"0.000038541984650791"},{"denom":"ASSET10","index":"0.000033360389515629"},{"denom":"ASSET11","index":"0.000040051832871078"},{"denom":"ASSET12","index":"0.000038107934739741"},{"denom":"ASSET13","index":"0.000012920381400678"},{"denom":"ASSET14","index":"0.000036958872887572"},{"denom":"ASSET15","index":"0.000029952980327999"},{"denom":"ASSET16","index":"0.000017104098801491"},{"denom":"ASSET17","index":"0.000013841787045943"},{"denom":"ASSET18","index":"0.000005757887134437"},{"denom":"ASSET2","index":"0.000011630980235877"},{"denom":"ASSET3","index":"0.000003345975640178"},{"denom":"ASSET4","index":"0.000031596472598431"},{"denom":"ASSET5","index":"0.000002627111980169"},{"denom":"ASSET6","index":"0.000010725526366283"},{"denom":"ASSET7","index":"0.000016561788873990"},{"denom":"ASSET8","index":"0.000023841368375665"},{"denom":"ASSET9","index":"0.000009561543464832"}],"last_reward_claim_height":"192"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET17","shares":"6679039.000000020912875170","reward_history":[{"denom":"ASSET0","index":"0.000001536288093705"},{"denom":"ASSET1","index":"0.000012808796131863"},{"denom":"ASSET10","index":"0.000008924322337818"},{"denom":"ASSET11","index":"0.000012391382492026"},{"denom":"ASSET12","index":"0.000011158327625467"},{"denom":"ASSET13","index":"0.000003840018305497"},{"denom":"ASSET14","index":"0.000011575273312793"},{"denom":"ASSET15","index":"0.000008276208110044"},{"denom":"ASSET16","index":"0.000005770322413488"},{"denom":"ASSET17","index":"0.000004097860139074"},{"denom":"ASSET18","index":"0.000001951829923499"},{"denom":"ASSET2","index":"0.000003781056289108"},{"denom":"ASSET3","index":"0.000001105771783560"},{"denom":"ASSET4","index":"0.000010409603607822"},{"denom":"ASSET5","index":"0.000000858224905226"},{"denom":"ASSET6","index":"0.000003494201399847"},{"denom":"ASSET7","index":"0.000005351036963607"},{"denom":"ASSET8","index":"0.000006982787369562"},{"denom":"ASSET9","index":"0.000003015953933577"}],"last_reward_claim_height":"94"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET14","shares":"898876305.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002648545180722"},{"denom":"ASSET1","index":"0.000022528915692996"},{"denom":"ASSET10","index":"0.000018297756458480"},{"denom":"ASSET11","index":"0.000022469822082599"},{"denom":"ASSET12","index":"0.000021584227648624"},{"denom":"ASSET13","index":"0.000007070243338634"},{"denom":"ASSET14","index":"0.000020574684608302"},{"denom":"ASSET15","index":"0.000016423497937791"},{"denom":"ASSET16","index":"0.000009972839292196"},{"denom":"ASSET17","index":"0.000007932645550822"},{"denom":"ASSET18","index":"0.000003216131666673"},{"denom":"ASSET2","index":"0.000006846442901912"},{"denom":"ASSET3","index":"0.000001888119307859"},{"denom":"ASSET4","index":"0.000018258669735553"},{"denom":"ASSET5","index":"0.000001471345302008"},{"denom":"ASSET6","index":"0.000005932348598922"},{"denom":"ASSET7","index":"0.000009352074075404"},{"denom":"ASSET8","index":"0.000012853047191550"},{"denom":"ASSET9","index":"0.000005442948627063"}],"last_reward_claim_height":"173"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET3","shares":"757266912.000000000000000000","reward_history":[],"last_reward_claim_height":"21"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET15","shares":"1279672087.263349477697243049","reward_history":[{"denom":"ASSET0","index":"0.000003133427860009"},{"denom":"ASSET1","index":"0.000026571363581284"},{"denom":"ASSET10","index":"0.000021118003104150"},{"denom":"ASSET11","index":"0.000026381510155653"},{"denom":"ASSET12","index":"0.000025108485590780"},{"denom":"ASSET13","index":"0.000008282355352591"},{"denom":"ASSET14","index":"0.000024227637307493"},{"denom":"ASSET15","index":"0.000019037535386694"},{"denom":"ASSET16","index":"0.000011793447009555"},{"denom":"ASSET17","index":"0.000009226841180516"},{"denom":"ASSET18","index":"0.000003831770888939"},{"denom":"ASSET2","index":"0.000008040278303534"},{"denom":"ASSET3","index":"0.000002236402387063"},{"denom":"ASSET4","index":"0.000021543810534784"},{"denom":"ASSET5","index":"0.000001742508705183"},{"denom":"ASSET6","index":"0.000007033989161296"},{"denom":"ASSET7","index":"0.000011040340871930"},{"denom":"ASSET8","index":"0.000015056795520064"},{"denom":"ASSET9","index":"0.000006395464292965"}],"last_reward_claim_height":"139"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET16","shares":"980824730.361494977367171712","reward_history":[{"denom":"ASSET0","index":"0.000004684522326330"},{"denom":"ASSET1","index":"0.000038343592790786"},{"denom":"ASSET10","index":"0.000033073465123627"},{"denom":"ASSET11","index":"0.000039792938806307"},{"denom":"ASSET12","index":"0.000037831993151719"},{"denom":"ASSET13","index":"0.000012827422858554"},{"denom":"ASSET14","index":"0.000036725774896582"},{"denom":"ASSET15","index":"0.000029707175527113"},{"denom":"ASSET16","index":"0.000017020370407689"},{"denom":"ASSET17","index":"0.000013744455687075"},{"denom":"ASSET18","index":"0.000005729220057041"},{"denom":"ASSET2","index":"0.000011567669506012"},{"denom":"ASSET3","index":"0.000003327180281983"},{"denom":"ASSET4","index":"0.000031427847982959"},{"denom":"ASSET5","index":"0.000002612385721179"},{"denom":"ASSET6","index":"0.000010663850280154"},{"denom":"ASSET7","index":"0.000016466138905281"},{"denom":"ASSET8","index":"0.000023663630054111"},{"denom":"ASSET9","index":"0.000009503718423149"}],"last_reward_claim_height":"188"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET5","shares":"1029448091.508164532395390823","reward_history":[{"denom":"ASSET0","index":"0.000001556422065682"},{"denom":"ASSET1","index":"0.000012975233747354"},{"denom":"ASSET10","index":"0.000009039925804131"},{"denom":"ASSET11","index":"0.000012551842294036"},{"denom":"ASSET12","index":"0.000011303196313064"},{"denom":"ASSET13","index":"0.000003889859143149"},{"denom":"ASSET14","index":"0.000011725391745328"},{"denom":"ASSET15","index":"0.000008383310245172"},{"denom":"ASSET16","index":"0.000005844954893688"},{"denom":"ASSET17","index":"0.000004150990406731"},{"denom":"ASSET18","index":"0.000001977421476890"},{"denom":"ASSET2","index":"0.000003830058090421"},{"denom":"ASSET3","index":"0.000001120273054448"},{"denom":"ASSET4","index":"0.000010544520290781"},{"denom":"ASSET5","index":"0.000000869507306673"},{"denom":"ASSET6","index":"0.000003539424974160"},{"denom":"ASSET7","index":"0.000005420766093000"},{"denom":"ASSET8","index":"0.000007073268516732"},{"denom":"ASSET9","index":"0.000003055036447059"}],"last_reward_claim_height":"96"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET13","shares":"589528315.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001556422065682"},{"denom":"ASSET1","index":"0.000012975233747354"},{"denom":"ASSET10","index":"0.000009039925804131"},{"denom":"ASSET11","index":"0.000012551842294036"},{"denom":"ASSET12","index":"0.000011303196313064"},{"denom":"ASSET13","index":"0.000003889859143149"},{"denom":"ASSET14","index":"0.000011725391745328"},{"denom":"ASSET15","index":"0.000008383310245172"},{"denom":"ASSET16","index":"0.000005844954893688"},{"denom":"ASSET17","index":"0.000004150990406731"},{"denom":"ASSET18","index":"0.000001977421476890"},{"denom":"ASSET2","index":"0.000003830058090421"},{"denom":"ASSET3","index":"0.000001120273054448"},{"denom":"ASSET4","index":"0.000010544520290781"},{"denom":"ASSET5","index":"0.000000869507306673"},{"denom":"ASSET6","index":"0.000003539424974160"},{"denom":"ASSET7","index":"0.000005420766093000"},{"denom":"ASSET8","index":"0.000007073268516732"},{"denom":"ASSET9","index":"0.000003055036447059"}],"last_reward_claim_height":"100"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET17","shares":"921643219.820911843600183245","reward_history":[{"denom":"ASSET0","index":"0.000003144114236048"},{"denom":"ASSET1","index":"0.000026672683120621"},{"denom":"ASSET10","index":"0.000021269722635007"},{"denom":"ASSET11","index":"0.000026500587720899"},{"denom":"ASSET12","index":"0.000025258297912053"},{"denom":"ASSET13","index":"0.000008323039503604"},{"denom":"ASSET14","index":"0.000024326015412045"},{"denom":"ASSET15","index":"0.000019162234595686"},{"denom":"ASSET16","index":"0.000011833945147558"},{"denom":"ASSET17","index":"0.000009281867675434"},{"denom":"ASSET18","index":"0.000003840349431676"},{"denom":"ASSET2","index":"0.000008076055447193"},{"denom":"ASSET3","index":"0.000002244145529651"},{"denom":"ASSET4","index":"0.000021624555086447"},{"denom":"ASSET5","index":"0.000001748086313596"},{"denom":"ASSET6","index":"0.000007055400333314"},{"denom":"ASSET7","index":"0.000011081362186058"},{"denom":"ASSET8","index":"0.000015130336137492"},{"denom":"ASSET9","index":"0.000006423586371910"}],"last_reward_claim_height":"177"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET9","shares":"505378603.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003109600829404"},{"denom":"ASSET1","index":"0.000026362702045617"},{"denom":"ASSET10","index":"0.000020937844947102"},{"denom":"ASSET11","index":"0.000026169598808926"},{"denom":"ASSET12","index":"0.000024901798461360"},{"denom":"ASSET13","index":"0.000008215149609138"},{"denom":"ASSET14","index":"0.000024035954930107"},{"denom":"ASSET15","index":"0.000018878331344314"},{"denom":"ASSET16","index":"0.000011701775976010"},{"denom":"ASSET17","index":"0.000009149505282332"},{"denom":"ASSET18","index":"0.000003801954966508"},{"denom":"ASSET2","index":"0.000007974718303805"},{"denom":"ASSET3","index":"0.000002219037761573"},{"denom":"ASSET4","index":"0.000021373555319687"},{"denom":"ASSET5","index":"0.000001728657323000"},{"denom":"ASSET6","index":"0.000006980294033305"},{"denom":"ASSET7","index":"0.000010954522542925"},{"denom":"ASSET8","index":"0.000014935013269095"},{"denom":"ASSET9","index":"0.000006344057182602"}],"last_reward_claim_height":"131"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET11","shares":"312597741.000001262269678158","reward_history":[{"denom":"ASSET0","index":"0.000001633811359009"},{"denom":"ASSET1","index":"0.000013620164108551"},{"denom":"ASSET10","index":"0.000009487838038290"},{"denom":"ASSET11","index":"0.000013174776703502"},{"denom":"ASSET12","index":"0.000011864685946211"},{"denom":"ASSET13","index":"0.000004082355776036"},{"denom":"ASSET14","index":"0.000012307900729772"},{"denom":"ASSET15","index":"0.000008799117026580"},{"denom":"ASSET16","index":"0.000006135483082238"},{"denom":"ASSET17","index":"0.000004356106083529"},{"denom":"ASSET18","index":"0.000002074853521082"},{"denom":"ASSET2","index":"0.000004019349752882"},{"denom":"ASSET3","index":"0.000001175388225032"},{"denom":"ASSET4","index":"0.000011067333860098"},{"denom":"ASSET5","index":"0.000000912501024979"},{"denom":"ASSET6","index":"0.000003715182744556"},{"denom":"ASSET7","index":"0.000005690095677188"},{"denom":"ASSET8","index":"0.000007423847624648"},{"denom":"ASSET9","index":"0.000003206789316354"}],"last_reward_claim_height":"112"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET3","shares":"11628319.102589557177872979","reward_history":[{"denom":"ASSET0","index":"0.000001356454583190"},{"denom":"ASSET1","index":"0.000011307707773056"},{"denom":"ASSET10","index":"0.000007878355411964"},{"denom":"ASSET11","index":"0.000010938987301217"},{"denom":"ASSET12","index":"0.000009850463994830"},{"denom":"ASSET13","index":"0.000003389876593037"},{"denom":"ASSET14","index":"0.000010218764511690"},{"denom":"ASSET15","index":"0.000007305956775156"},{"denom":"ASSET16","index":"0.000005094053899100"},{"denom":"ASSET17","index":"0.000003617492191826"},{"denom":"ASSET18","index":"0.000001723075280133"},{"denom":"ASSET2","index":"0.000003337802175602"},{"denom":"ASSET3","index":"0.000000976395326909"},{"denom":"ASSET4","index":"0.000009189454857387"},{"denom":"ASSET5","index":"0.000000758018737665"},{"denom":"ASSET6","index":"0.000003084569323074"},{"denom":"ASSET7","index":"0.000004724073562323"},{"denom":"ASSET8","index":"0.000006164519141376"},{"denom":"ASSET9","index":"0.000002662514568862"}],"last_reward_claim_height":"108"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET7","shares":"736282020.741764324678990280","reward_history":[{"denom":"ASSET0","index":"0.000001730803097805"},{"denom":"ASSET1","index":"0.000014429128492036"},{"denom":"ASSET10","index":"0.000010053081326419"},{"denom":"ASSET11","index":"0.000013956042311970"},{"denom":"ASSET12","index":"0.000012568515161896"},{"denom":"ASSET13","index":"0.000004324123072683"},{"denom":"ASSET14","index":"0.000013038716670133"},{"denom":"ASSET15","index":"0.000009320374681681"},{"denom":"ASSET16","index":"0.000006499165632259"},{"denom":"ASSET17","index":"0.000004615474927481"},{"denom":"ASSET18","index":"0.000002198119934213"},{"denom":"ASSET2","index":"0.000004257775620601"},{"denom":"ASSET3","index":"0.000001243293558590"},{"denom":"ASSET4","index":"0.000011726190987631"},{"denom":"ASSET5","index":"0.000000966365062941"},{"denom":"ASSET6","index":"0.000003934692375677"},{"denom":"ASSET7","index":"0.000006026079452192"},{"denom":"ASSET8","index":"0.000007863615407695"},{"denom":"ASSET9","index":"0.000003395258743528"}],"last_reward_claim_height":"106"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET0","shares":"779734732.441593646216828696","reward_history":[{"denom":"ASSET0","index":"0.000003079719434352"},{"denom":"ASSET1","index":"0.000026105925494605"},{"denom":"ASSET10","index":"0.000020711970439773"},{"denom":"ASSET11","index":"0.000025910008103106"},{"denom":"ASSET12","index":"0.000024641613628664"},{"denom":"ASSET13","index":"0.000008133110770201"},{"denom":"ASSET14","index":"0.000023800542954419"},{"denom":"ASSET15","index":"0.000018678884312278"},{"denom":"ASSET16","index":"0.000011589749383737"},{"denom":"ASSET17","index":"0.000009055208366452"},{"denom":"ASSET18","index":"0.000003767697278786"},{"denom":"ASSET2","index":"0.000007896757003962"},{"denom":"ASSET3","index":"0.000002198611212202"},{"denom":"ASSET4","index":"0.000021166859181475"},{"denom":"ASSET5","index":"0.000001712166144109"},{"denom":"ASSET6","index":"0.000006913910929446"},{"denom":"ASSET7","index":"0.000010848237821893"},{"denom":"ASSET8","index":"0.000014785764472138"},{"denom":"ASSET9","index":"0.000006281127943464"}],"last_reward_claim_height":"124"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET2","shares":"865667868.000000000000000000","reward_history":[],"last_reward_claim_height":"48"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET3","shares":"746342433.632118504057344888","reward_history":[{"denom":"ASSET0","index":"0.000003079719434352"},{"denom":"ASSET1","index":"0.000026105925494605"},{"denom":"ASSET10","index":"0.000020711970439773"},{"denom":"ASSET11","index":"0.000025910008103106"},{"denom":"ASSET12","index":"0.000024641613628664"},{"denom":"ASSET13","index":"0.000008133110770201"},{"denom":"ASSET14","index":"0.000023800542954419"},{"denom":"ASSET15","index":"0.000018678884312278"},{"denom":"ASSET16","index":"0.000011589749383737"},{"denom":"ASSET17","index":"0.000009055208366452"},{"denom":"ASSET18","index":"0.000003767697278786"},{"denom":"ASSET2","index":"0.000007896757003962"},{"denom":"ASSET3","index":"0.000002198611212202"},{"denom":"ASSET4","index":"0.000021166859181475"},{"denom":"ASSET5","index":"0.000001712166144109"},{"denom":"ASSET6","index":"0.000006913910929446"},{"denom":"ASSET7","index":"0.000010848237821893"},{"denom":"ASSET8","index":"0.000014785764472138"},{"denom":"ASSET9","index":"0.000006281127943464"}],"last_reward_claim_height":"125"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET18","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003079719434352"},{"denom":"ASSET1","index":"0.000026105925494605"},{"denom":"ASSET10","index":"0.000020711970439773"},{"denom":"ASSET11","index":"0.000025910008103106"},{"denom":"ASSET12","index":"0.000024641613628664"},{"denom":"ASSET13","index":"0.000008133110770201"},{"denom":"ASSET14","index":"0.000023800542954419"},{"denom":"ASSET15","index":"0.000018678884312278"},{"denom":"ASSET16","index":"0.000011589749383737"},{"denom":"ASSET17","index":"0.000009055208366452"},{"denom":"ASSET18","index":"0.000003767697278786"},{"denom":"ASSET2","index":"0.000007896757003962"},{"denom":"ASSET3","index":"0.000002198611212202"},{"denom":"ASSET4","index":"0.000021166859181475"},{"denom":"ASSET5","index":"0.000001712166144109"},{"denom":"ASSET6","index":"0.000006913910929446"},{"denom":"ASSET7","index":"0.000010848237821893"},{"denom":"ASSET8","index":"0.000014785764472138"},{"denom":"ASSET9","index":"0.000006281127943464"}],"last_reward_claim_height":"129"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET0","shares":"217343976.500906018911683040","reward_history":[{"denom":"ASSET0","index":"0.000004647136802313"},{"denom":"ASSET1","index":"0.000038017659661295"},{"denom":"ASSET10","index":"0.000033007938061672"},{"denom":"ASSET11","index":"0.000039542203518497"},{"denom":"ASSET12","index":"0.000037663033677183"},{"denom":"ASSET13","index":"0.000012761955703194"},{"denom":"ASSET14","index":"0.000036477735596469"},{"denom":"ASSET15","index":"0.000029621430734014"},{"denom":"ASSET16","index":"0.000016866492348924"},{"denom":"ASSET17","index":"0.000013679201469281"},{"denom":"ASSET18","index":"0.000005674980055413"},{"denom":"ASSET2","index":"0.000011479019978141"},{"denom":"ASSET3","index":"0.000003299993945721"},{"denom":"ASSET4","index":"0.000031168005602839"},{"denom":"ASSET5","index":"0.000002591256629781"},{"denom":"ASSET6","index":"0.000010577778432935"},{"denom":"ASSET7","index":"0.000016339516062244"},{"denom":"ASSET8","index":"0.000023551119471754"},{"denom":"ASSET9","index":"0.000009438533878947"}],"last_reward_claim_height":"185"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET4","shares":"163617829.422559229036515353","reward_history":[{"denom":"ASSET0","index":"0.000001520990142264"},{"denom":"ASSET1","index":"0.000012680102108631"},{"denom":"ASSET10","index":"0.000008834326429376"},{"denom":"ASSET11","index":"0.000012266893306329"},{"denom":"ASSET12","index":"0.000011046354389007"},{"denom":"ASSET13","index":"0.000003801591675587"},{"denom":"ASSET14","index":"0.000011458856247250"},{"denom":"ASSET15","index":"0.000008193128168148"},{"denom":"ASSET16","index":"0.000005712107994187"},{"denom":"ASSET17","index":"0.000004056798480773"},{"denom":"ASSET18","index":"0.000001932431584420"},{"denom":"ASSET2","index":"0.000003743268790745"},{"denom":"ASSET3","index":"0.000001095056346905"},{"denom":"ASSET4","index":"0.000010304770071444"},{"denom":"ASSET5","index":"0.000000849746758541"},{"denom":"ASSET6","index":"0.000003459077279153"},{"denom":"ASSET7","index":"0.000005297485303768"},{"denom":"ASSET8","index":"0.000006912499005837"},{"denom":"ASSET9","index":"0.000002985778231863"}],"last_reward_claim_height":"99"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET16","shares":"488063516.000000000000000000","reward_history":[],"last_reward_claim_height":"46"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET10","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001519669987195"},{"denom":"ASSET1","index":"0.000012676623405048"},{"denom":"ASSET10","index":"0.000008831600766261"},{"denom":"ASSET11","index":"0.000012262448940742"},{"denom":"ASSET12","index":"0.000011042591812037"},{"denom":"ASSET13","index":"0.000003799690110356"},{"denom":"ASSET14","index":"0.000011454705706870"},{"denom":"ASSET15","index":"0.000008189733375059"},{"denom":"ASSET16","index":"0.000005709838012905"},{"denom":"ASSET17","index":"0.000004055200725152"},{"denom":"ASSET18","index":"0.000001931783882027"},{"denom":"ASSET2","index":"0.000003741994165079"},{"denom":"ASSET3","index":"0.000001094162390780"},{"denom":"ASSET4","index":"0.000010301817086076"},{"denom":"ASSET5","index":"0.000000848954623355"},{"denom":"ASSET6","index":"0.000003457635577645"},{"denom":"ASSET7","index":"0.000005295663548598"},{"denom":"ASSET8","index":"0.000006910119731604"},{"denom":"ASSET9","index":"0.000002984734883325"}],"last_reward_claim_height":"102"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET3","shares":"990619604.883194186452803970","reward_history":[{"denom":"ASSET0","index":"0.000002834261839987"},{"denom":"ASSET1","index":"0.000024063735726127"},{"denom":"ASSET10","index":"0.000019278012414561"},{"denom":"ASSET11","index":"0.000023930766794440"},{"denom":"ASSET12","index":"0.000022855511266190"},{"denom":"ASSET13","index":"0.000007519422832827"},{"denom":"ASSET14","index":"0.000021953268691937"},{"denom":"ASSET15","index":"0.000017352048046781"},{"denom":"ASSET16","index":"0.000010669562284438"},{"denom":"ASSET17","index":"0.000008398158415340"},{"denom":"ASSET18","index":"0.000003456710779118"},{"denom":"ASSET2","index":"0.000007292324829772"},{"denom":"ASSET3","index":"0.000002022818722752"},{"denom":"ASSET4","index":"0.000019507505991506"},{"denom":"ASSET5","index":"0.000001575196067099"},{"denom":"ASSET6","index":"0.000006357416996111"},{"denom":"ASSET7","index":"0.000009994574317511"},{"denom":"ASSET8","index":"0.000013669954492341"},{"denom":"ASSET9","index":"0.000005799591528398"}],"last_reward_claim_height":"163"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET1","shares":"817641962.864918630074047194","reward_history":[{"denom":"ASSET0","index":"0.000002875427361068"},{"denom":"ASSET1","index":"0.000024372739255487"},{"denom":"ASSET10","index":"0.000019284464921318"},{"denom":"ASSET11","index":"0.000024174413552556"},{"denom":"ASSET12","index":"0.000022964657814992"},{"denom":"ASSET13","index":"0.000007586106071195"},{"denom":"ASSET14","index":"0.000022214775035212"},{"denom":"ASSET15","index":"0.000017399266119679"},{"denom":"ASSET16","index":"0.000010822432031544"},{"denom":"ASSET17","index":"0.000008437405253940"},{"denom":"ASSET18","index":"0.000003520101477575"},{"denom":"ASSET2","index":"0.000007366931162610"},{"denom":"ASSET3","index":"0.000002051556015935"},{"denom":"ASSET4","index":"0.000019761188522524"},{"denom":"ASSET5","index":"0.000001598363223465"},{"denom":"ASSET6","index":"0.000006458982880806"},{"denom":"ASSET7","index":"0.000010127316932433"},{"denom":"ASSET8","index":"0.000013792105044122"},{"denom":"ASSET9","index":"0.000005859963066840"}],"last_reward_claim_height":"172"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET2","shares":"11241387.275410588017939657","reward_history":[{"denom":"ASSET0","index":"0.000002875427361068"},{"denom":"ASSET1","index":"0.000024372739255487"},{"denom":"ASSET10","index":"0.000019284464921318"},{"denom":"ASSET11","index":"0.000024174413552556"},{"denom":"ASSET12","index":"0.000022964657814992"},{"denom":"ASSET13","index":"0.000007586106071195"},{"denom":"ASSET14","index":"0.000022214775035212"},{"denom":"ASSET15","index":"0.000017399266119679"},{"denom":"ASSET16","index":"0.000010822432031544"},{"denom":"ASSET17","index":"0.000008437405253940"},{"denom":"ASSET18","index":"0.000003520101477575"},{"denom":"ASSET2","index":"0.000007366931162610"},{"denom":"ASSET3","index":"0.000002051556015935"},{"denom":"ASSET4","index":"0.000019761188522524"},{"denom":"ASSET5","index":"0.000001598363223465"},{"denom":"ASSET6","index":"0.000006458982880806"},{"denom":"ASSET7","index":"0.000010127316932433"},{"denom":"ASSET8","index":"0.000013792105044122"},{"denom":"ASSET9","index":"0.000005859963066840"}],"last_reward_claim_height":"144"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET9","shares":"345952095.000000000000000000","reward_history":[],"last_reward_claim_height":"26"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET17","shares":"40275281.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001553840185331"},{"denom":"ASSET1","index":"0.000012958259817171"},{"denom":"ASSET10","index":"0.000009028099224953"},{"denom":"ASSET11","index":"0.000012533831248030"},{"denom":"ASSET12","index":"0.000011286922457332"},{"denom":"ASSET13","index":"0.000003884600463327"},{"denom":"ASSET14","index":"0.000011708953124953"},{"denom":"ASSET15","index":"0.000008371074208317"},{"denom":"ASSET16","index":"0.000005836492301072"},{"denom":"ASSET17","index":"0.000004143573827548"},{"denom":"ASSET18","index":"0.000001973472951431"},{"denom":"ASSET2","index":"0.000003824652925312"},{"denom":"ASSET3","index":"0.000001117422108587"},{"denom":"ASSET4","index":"0.000010529185576831"},{"denom":"ASSET5","index":"0.000000868040350447"},{"denom":"ASSET6","index":"0.000003534506841323"},{"denom":"ASSET7","index":"0.000005412063731931"},{"denom":"ASSET8","index":"0.000007064217879605"},{"denom":"ASSET9","index":"0.000003050130734168"}],"last_reward_claim_height":"116"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET8","shares":"970779850.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001468329025254"},{"denom":"ASSET1","index":"0.000012248466172689"},{"denom":"ASSET10","index":"0.000008533242661533"},{"denom":"ASSET11","index":"0.000011849890220686"},{"denom":"ASSET12","index":"0.000010670683647662"},{"denom":"ASSET13","index":"0.000003671855143322"},{"denom":"ASSET14","index":"0.000011069259599665"},{"denom":"ASSET15","index":"0.000007913694549611"},{"denom":"ASSET16","index":"0.000005518108516848"},{"denom":"ASSET17","index":"0.000003917609227717"},{"denom":"ASSET18","index":"0.000001866904977257"},{"denom":"ASSET2","index":"0.000003616095813249"},{"denom":"ASSET3","index":"0.000001057362111013"},{"denom":"ASSET4","index":"0.000009954072998206"},{"denom":"ASSET5","index":"0.000000819868668110"},{"denom":"ASSET6","index":"0.000003341429483630"},{"denom":"ASSET7","index":"0.000005117467404472"},{"denom":"ASSET8","index":"0.000006676663486141"},{"denom":"ASSET9","index":"0.000002882963880808"}],"last_reward_claim_height":"93"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET12","shares":"862852538.935514895242924220","reward_history":[{"denom":"ASSET0","index":"0.000002995432004660"},{"denom":"ASSET1","index":"0.000025434255671185"},{"denom":"ASSET10","index":"0.000020381248485322"},{"denom":"ASSET11","index":"0.000025297016742096"},{"denom":"ASSET12","index":"0.000024161457271020"},{"denom":"ASSET13","index":"0.000007948725545453"},{"denom":"ASSET14","index":"0.000023205881885085"},{"denom":"ASSET15","index":"0.000018343715148864"},{"denom":"ASSET16","index":"0.000011277889207663"},{"denom":"ASSET17","index":"0.000008877556775335"},{"denom":"ASSET18","index":"0.000003654253802028"},{"denom":"ASSET2","index":"0.000007709102798424"},{"denom":"ASSET3","index":"0.000002137627884226"},{"denom":"ASSET4","index":"0.000020618696770430"},{"denom":"ASSET5","index":"0.000001664440090804"},{"denom":"ASSET6","index":"0.000006720260763181"},{"denom":"ASSET7","index":"0.000010565171316359"},{"denom":"ASSET8","index":"0.000014449121165534"},{"denom":"ASSET9","index":"0.000006129217088192"}],"last_reward_claim_height":"163"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET9","shares":"896670517.000000000929965347","reward_history":[],"last_reward_claim_height":"59"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET2","shares":"931504105.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001508631993599"},{"denom":"ASSET1","index":"0.000012578103553994"},{"denom":"ASSET10","index":"0.000008763023138279"},{"denom":"ASSET11","index":"0.000012169014387632"},{"denom":"ASSET12","index":"0.000010956555546150"},{"denom":"ASSET13","index":"0.000003770654442897"},{"denom":"ASSET14","index":"0.000011367495794714"},{"denom":"ASSET15","index":"0.000008126250861227"},{"denom":"ASSET16","index":"0.000005666162616450"},{"denom":"ASSET17","index":"0.000004024252704398"},{"denom":"ASSET18","index":"0.000001915870077761"},{"denom":"ASSET2","index":"0.000003713270894674"},{"denom":"ASSET3","index":"0.000001084734169631"},{"denom":"ASSET4","index":"0.000010221675912459"},{"denom":"ASSET5","index":"0.000000842242401334"},{"denom":"ASSET6","index":"0.000003430055317962"},{"denom":"ASSET7","index":"0.000005255222367887"},{"denom":"ASSET8","index":"0.000006856408471522"},{"denom":"ASSET9","index":"0.000002961731521176"}],"last_reward_claim_height":"66"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET7","shares":"555110721.470180636824575436","reward_history":[{"denom":"ASSET0","index":"0.000002968383248598"},{"denom":"ASSET1","index":"0.000025185581850199"},{"denom":"ASSET10","index":"0.000020091193699906"},{"denom":"ASSET11","index":"0.000025026167595767"},{"denom":"ASSET12","index":"0.000023854952987524"},{"denom":"ASSET13","index":"0.000007859725566891"},{"denom":"ASSET14","index":"0.000022971118914045"},{"denom":"ASSET15","index":"0.000018098517255117"},{"denom":"ASSET16","index":"0.000011173004258039"},{"denom":"ASSET17","index":"0.000008766603022733"},{"denom":"ASSET18","index":"0.000003624559740525"},{"denom":"ASSET2","index":"0.000007626317523237"},{"denom":"ASSET3","index":"0.000002117313008939"},{"denom":"ASSET4","index":"0.000020418576076670"},{"denom":"ASSET5","index":"0.000001649450966157"},{"denom":"ASSET6","index":"0.000006660362585584"},{"denom":"ASSET7","index":"0.000010463779822658"},{"denom":"ASSET8","index":"0.000014287735496216"},{"denom":"ASSET9","index":"0.000006065360072421"}],"last_reward_claim_height":"172"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET9","shares":"1636047766.156731832748664930","reward_history":[{"denom":"ASSET0","index":"0.000002968383248598"},{"denom":"ASSET1","index":"0.000025185581850199"},{"denom":"ASSET10","index":"0.000020091193699906"},{"denom":"ASSET11","index":"0.000025026167595767"},{"denom":"ASSET12","index":"0.000023854952987524"},{"denom":"ASSET13","index":"0.000007859725566891"},{"denom":"ASSET14","index":"0.000022971118914045"},{"denom":"ASSET15","index":"0.000018098517255117"},{"denom":"ASSET16","index":"0.000011173004258039"},{"denom":"ASSET17","index":"0.000008766603022733"},{"denom":"ASSET18","index":"0.000003624559740525"},{"denom":"ASSET2","index":"0.000007626317523237"},{"denom":"ASSET3","index":"0.000002117313008939"},{"denom":"ASSET4","index":"0.000020418576076670"},{"denom":"ASSET5","index":"0.000001649450966157"},{"denom":"ASSET6","index":"0.000006660362585584"},{"denom":"ASSET7","index":"0.000010463779822658"},{"denom":"ASSET8","index":"0.000014287735496216"},{"denom":"ASSET9","index":"0.000006065360072421"}],"last_reward_claim_height":"165"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET14","shares":"132154886.450958117134860640","reward_history":[{"denom":"ASSET0","index":"0.000002968383248598"},{"denom":"ASSET1","index":"0.000025185581850199"},{"denom":"ASSET10","index":"0.000020091193699906"},{"denom":"ASSET11","index":"0.000025026167595767"},{"denom":"ASSET12","index":"0.000023854952987524"},{"denom":"ASSET13","index":"0.000007859725566891"},{"denom":"ASSET14","index":"0.000022971118914045"},{"denom":"ASSET15","index":"0.000018098517255117"},{"denom":"ASSET16","index":"0.000011173004258039"},{"denom":"ASSET17","index":"0.000008766603022733"},{"denom":"ASSET18","index":"0.000003624559740525"},{"denom":"ASSET2","index":"0.000007626317523237"},{"denom":"ASSET3","index":"0.000002117313008939"},{"denom":"ASSET4","index":"0.000020418576076670"},{"denom":"ASSET5","index":"0.000001649450966157"},{"denom":"ASSET6","index":"0.000006660362585584"},{"denom":"ASSET7","index":"0.000010463779822658"},{"denom":"ASSET8","index":"0.000014287735496216"},{"denom":"ASSET9","index":"0.000006065360072421"}],"last_reward_claim_height":"181"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET4","shares":"1048285232.191168652131483383","reward_history":[{"denom":"ASSET0","index":"0.000003259379166935"},{"denom":"ASSET1","index":"0.000027669546155668"},{"denom":"ASSET10","index":"0.000022163157427920"},{"denom":"ASSET11","index":"0.000027516665793422"},{"denom":"ASSET12","index":"0.000026276569409586"},{"denom":"ASSET13","index":"0.000008645229164029"},{"denom":"ASSET14","index":"0.000025243382728696"},{"denom":"ASSET15","index":"0.000019947981783747"},{"denom":"ASSET16","index":"0.000012268920188963"},{"denom":"ASSET17","index":"0.000009656339783182"},{"denom":"ASSET18","index":"0.000003975233530089"},{"denom":"ASSET2","index":"0.000008385350610200"},{"denom":"ASSET3","index":"0.000002325230588439"},{"denom":"ASSET4","index":"0.000022430515898086"},{"denom":"ASSET5","index":"0.000001812256369527"},{"denom":"ASSET6","index":"0.000007311001085881"},{"denom":"ASSET7","index":"0.000011492885803011"},{"denom":"ASSET8","index":"0.000015716897251793"},{"denom":"ASSET9","index":"0.000006668589151432"}],"last_reward_claim_height":"135"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET14","shares":"938893797.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001603618851190"},{"denom":"ASSET1","index":"0.000013373450792115"},{"denom":"ASSET10","index":"0.000009317368604669"},{"denom":"ASSET11","index":"0.000012937408123124"},{"denom":"ASSET12","index":"0.000011650307554501"},{"denom":"ASSET13","index":"0.000004008493774333"},{"denom":"ASSET14","index":"0.000012085243516211"},{"denom":"ASSET15","index":"0.000008640063748266"},{"denom":"ASSET16","index":"0.000006023807734317"},{"denom":"ASSET17","index":"0.000004278530351069"},{"denom":"ASSET18","index":"0.000002037448105618"},{"denom":"ASSET2","index":"0.000003947624873839"},{"denom":"ASSET3","index":"0.000001154295694818"},{"denom":"ASSET4","index":"0.000010867865506336"},{"denom":"ASSET5","index":"0.000000896432898181"},{"denom":"ASSET6","index":"0.000003647707200497"},{"denom":"ASSET7","index":"0.000005586658358043"},{"denom":"ASSET8","index":"0.000007289880864586"},{"denom":"ASSET9","index":"0.000003148582216449"}],"last_reward_claim_height":"119"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET11","shares":"285475361.297747362932046192","reward_history":[{"denom":"ASSET0","index":"0.000001669758803356"},{"denom":"ASSET1","index":"0.000013919924903508"},{"denom":"ASSET10","index":"0.000009698114015232"},{"denom":"ASSET11","index":"0.000013466332119255"},{"denom":"ASSET12","index":"0.000012126099781115"},{"denom":"ASSET13","index":"0.000004173211661392"},{"denom":"ASSET14","index":"0.000012579297449702"},{"denom":"ASSET15","index":"0.000008994017898909"},{"denom":"ASSET16","index":"0.000006270880730729"},{"denom":"ASSET17","index":"0.000004453348668392"},{"denom":"ASSET18","index":"0.000002121376009280"},{"denom":"ASSET2","index":"0.000004109202923545"},{"denom":"ASSET3","index":"0.000001201941855137"},{"denom":"ASSET4","index":"0.000011312556625386"},{"denom":"ASSET5","index":"0.000000932868086778"},{"denom":"ASSET6","index":"0.000003797061547622"},{"denom":"ASSET7","index":"0.000005815312368147"},{"denom":"ASSET8","index":"0.000007588591475923"},{"denom":"ASSET9","index":"0.000003277484447193"}],"last_reward_claim_height":"63"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET13","shares":"40982143.413001422391317553","reward_history":[{"denom":"ASSET0","index":"0.000001669758803356"},{"denom":"ASSET1","index":"0.000013919924903508"},{"denom":"ASSET10","index":"0.000009698114015232"},{"denom":"ASSET11","index":"0.000013466332119255"},{"denom":"ASSET12","index":"0.000012126099781115"},{"denom":"ASSET13","index":"0.000004173211661392"},{"denom":"ASSET14","index":"0.000012579297449702"},{"denom":"ASSET15","index":"0.000008994017898909"},{"denom":"ASSET16","index":"0.000006270880730729"},{"denom":"ASSET17","index":"0.000004453348668392"},{"denom":"ASSET18","index":"0.000002121376009280"},{"denom":"ASSET2","index":"0.000004109202923545"},{"denom":"ASSET3","index":"0.000001201941855137"},{"denom":"ASSET4","index":"0.000011312556625386"},{"denom":"ASSET5","index":"0.000000932868086778"},{"denom":"ASSET6","index":"0.000003797061547622"},{"denom":"ASSET7","index":"0.000005815312368147"},{"denom":"ASSET8","index":"0.000007588591475923"},{"denom":"ASSET9","index":"0.000003277484447193"}],"last_reward_claim_height":"115"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET14","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"51"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET15","shares":"135093842.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003314119794923"},{"denom":"ASSET1","index":"0.000028119315186385"},{"denom":"ASSET10","index":"0.000022456877991933"},{"denom":"ASSET11","index":"0.000027947185249485"},{"denom":"ASSET12","index":"0.000026653541530161"},{"denom":"ASSET13","index":"0.000008778725953540"},{"denom":"ASSET14","index":"0.000025648491290636"},{"denom":"ASSET15","index":"0.000020225495910600"},{"denom":"ASSET16","index":"0.000012473684612014"},{"denom":"ASSET17","index":"0.000009794866581105"},{"denom":"ASSET18","index":"0.000004045992889163"},{"denom":"ASSET2","index":"0.000008517017325485"},{"denom":"ASSET3","index":"0.000002365208974685"},{"denom":"ASSET4","index":"0.000022797013251164"},{"denom":"ASSET5","index":"0.000001842432416817"},{"denom":"ASSET6","index":"0.000007435560259585"},{"denom":"ASSET7","index":"0.000011681616070006"},{"denom":"ASSET8","index":"0.000015958852395270"},{"denom":"ASSET9","index":"0.000006773561992828"}],"last_reward_claim_height":"129"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET16","shares":"590207479.491951472577243418","reward_history":[{"denom":"ASSET0","index":"0.000001669758803356"},{"denom":"ASSET1","index":"0.000013919924903508"},{"denom":"ASSET10","index":"0.000009698114015232"},{"denom":"ASSET11","index":"0.000013466332119255"},{"denom":"ASSET12","index":"0.000012126099781115"},{"denom":"ASSET13","index":"0.000004173211661392"},{"denom":"ASSET14","index":"0.000012579297449702"},{"denom":"ASSET15","index":"0.000008994017898909"},{"denom":"ASSET16","index":"0.000006270880730729"},{"denom":"ASSET17","index":"0.000004453348668392"},{"denom":"ASSET18","index":"0.000002121376009280"},{"denom":"ASSET2","index":"0.000004109202923545"},{"denom":"ASSET3","index":"0.000001201941855137"},{"denom":"ASSET4","index":"0.000011312556625386"},{"denom":"ASSET5","index":"0.000000932868086778"},{"denom":"ASSET6","index":"0.000003797061547622"},{"denom":"ASSET7","index":"0.000005815312368147"},{"denom":"ASSET8","index":"0.000007588591475923"},{"denom":"ASSET9","index":"0.000003277484447193"}],"last_reward_claim_height":"80"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET0","shares":"951630468.999999235840733393","reward_history":[],"last_reward_claim_height":"60"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET2","shares":"875115484.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001334597814253"},{"denom":"ASSET1","index":"0.000011126876577448"},{"denom":"ASSET10","index":"0.000007751884027943"},{"denom":"ASSET11","index":"0.000010763759508328"},{"denom":"ASSET12","index":"0.000009692944381721"},{"denom":"ASSET13","index":"0.000003335543967388"},{"denom":"ASSET14","index":"0.000010055110882597"},{"denom":"ASSET15","index":"0.000007189147627631"},{"denom":"ASSET16","index":"0.000005012346349398"},{"denom":"ASSET17","index":"0.000003559878072918"},{"denom":"ASSET18","index":"0.000001695813746885"},{"denom":"ASSET2","index":"0.000003284213282225"},{"denom":"ASSET3","index":"0.000000960549210329"},{"denom":"ASSET4","index":"0.000009042280418860"},{"denom":"ASSET5","index":"0.000000745720787237"},{"denom":"ASSET6","index":"0.000003035164402357"},{"denom":"ASSET7","index":"0.000004648278712034"},{"denom":"ASSET8","index":"0.000006065575963495"},{"denom":"ASSET9","index":"0.000002619766079830"}],"last_reward_claim_height":"70"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET13","shares":"684834408.712398121009160107","reward_history":[{"denom":"ASSET0","index":"0.000004555136197767"},{"denom":"ASSET1","index":"0.000037240722570861"},{"denom":"ASSET10","index":"0.000032656570809308"},{"denom":"ASSET11","index":"0.000038864800037776"},{"denom":"ASSET12","index":"0.000037120446581994"},{"denom":"ASSET13","index":"0.000012565270457927"},{"denom":"ASSET14","index":"0.000035828939643615"},{"denom":"ASSET15","index":"0.000029264594603660"},{"denom":"ASSET16","index":"0.000016507901080348"},{"denom":"ASSET17","index":"0.000013476518239563"},{"denom":"ASSET18","index":"0.000005550894327170"},{"denom":"ASSET2","index":"0.000011257866577172"},{"denom":"ASSET3","index":"0.000003231771970438"},{"denom":"ASSET4","index":"0.000030542305908795"},{"denom":"ASSET5","index":"0.000002539865989892"},{"denom":"ASSET6","index":"0.000010367834016251"},{"denom":"ASSET7","index":"0.000016024625816937"},{"denom":"ASSET8","index":"0.000023202454203695"},{"denom":"ASSET9","index":"0.000009268576140116"}],"last_reward_claim_height":"196"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET14","shares":"303635363.000000000000000000","reward_history":[],"last_reward_claim_height":"63"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET7","shares":"678876291.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001655550281073"},{"denom":"ASSET1","index":"0.000013803766186213"},{"denom":"ASSET10","index":"0.000009616885369480"},{"denom":"ASSET11","index":"0.000013353770421464"},{"denom":"ASSET12","index":"0.000012024654915933"},{"denom":"ASSET13","index":"0.000004138458266908"},{"denom":"ASSET14","index":"0.000012474650680682"},{"denom":"ASSET15","index":"0.000008918932754767"},{"denom":"ASSET16","index":"0.000006218123294721"},{"denom":"ASSET17","index":"0.000004415635621077"},{"denom":"ASSET18","index":"0.000002103876302725"},{"denom":"ASSET2","index":"0.000004075008029207"},{"denom":"ASSET3","index":"0.000001191361699996"},{"denom":"ASSET4","index":"0.000011218168999888"},{"denom":"ASSET5","index":"0.000000925037675960"},{"denom":"ASSET6","index":"0.000003765270684639"},{"denom":"ASSET7","index":"0.000005766457786874"},{"denom":"ASSET8","index":"0.000007524697268437"},{"denom":"ASSET9","index":"0.000003250154939091"}],"last_reward_claim_height":"70"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET8","shares":"45546408.000000000000000000","reward_history":[],"last_reward_claim_height":"34"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET1","shares":"85033736.150934970585236642","reward_history":[{"denom":"ASSET0","index":"0.000003159157648171"},{"denom":"ASSET1","index":"0.000026793811254639"},{"denom":"ASSET10","index":"0.000021330257270132"},{"denom":"ASSET11","index":"0.000026611245447042"},{"denom":"ASSET12","index":"0.000025345616114893"},{"denom":"ASSET13","index":"0.000008356504281369"},{"denom":"ASSET14","index":"0.000024433401122602"},{"denom":"ASSET15","index":"0.000019223209713353"},{"denom":"ASSET16","index":"0.000011890026449509"},{"denom":"ASSET17","index":"0.000009313941892173"},{"denom":"ASSET18","index":"0.000003860849124980"},{"denom":"ASSET2","index":"0.000008109777269158"},{"denom":"ASSET3","index":"0.000002255070941538"},{"denom":"ASSET4","index":"0.000021723391251034"},{"denom":"ASSET5","index":"0.000001756486235957"},{"denom":"ASSET6","index":"0.000007090574282328"},{"denom":"ASSET7","index":"0.000011132530538444"},{"denom":"ASSET8","index":"0.000015191323807650"},{"denom":"ASSET9","index":"0.000006450832118924"}],"last_reward_claim_height":"124"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET7","shares":"32139380.810083503234269135","reward_history":[{"denom":"ASSET0","index":"0.000003159157648171"},{"denom":"ASSET1","index":"0.000026793811254639"},{"denom":"ASSET10","index":"0.000021330257270132"},{"denom":"ASSET11","index":"0.000026611245447042"},{"denom":"ASSET12","index":"0.000025345616114893"},{"denom":"ASSET13","index":"0.000008356504281369"},{"denom":"ASSET14","index":"0.000024433401122602"},{"denom":"ASSET15","index":"0.000019223209713353"},{"denom":"ASSET16","index":"0.000011890026449509"},{"denom":"ASSET17","index":"0.000009313941892173"},{"denom":"ASSET18","index":"0.000003860849124980"},{"denom":"ASSET2","index":"0.000008109777269158"},{"denom":"ASSET3","index":"0.000002255070941538"},{"denom":"ASSET4","index":"0.000021723391251034"},{"denom":"ASSET5","index":"0.000001756486235957"},{"denom":"ASSET6","index":"0.000007090574282328"},{"denom":"ASSET7","index":"0.000011132530538444"},{"denom":"ASSET8","index":"0.000015191323807650"},{"denom":"ASSET9","index":"0.000006450832118924"}],"last_reward_claim_height":"176"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET10","shares":"112688048.231835698242907840","reward_history":[{"denom":"ASSET0","index":"0.000003159157648171"},{"denom":"ASSET1","index":"0.000026793811254639"},{"denom":"ASSET10","index":"0.000021330257270132"},{"denom":"ASSET11","index":"0.000026611245447042"},{"denom":"ASSET12","index":"0.000025345616114893"},{"denom":"ASSET13","index":"0.000008356504281369"},{"denom":"ASSET14","index":"0.000024433401122602"},{"denom":"ASSET15","index":"0.000019223209713353"},{"denom":"ASSET16","index":"0.000011890026449509"},{"denom":"ASSET17","index":"0.000009313941892173"},{"denom":"ASSET18","index":"0.000003860849124980"},{"denom":"ASSET2","index":"0.000008109777269158"},{"denom":"ASSET3","index":"0.000002255070941538"},{"denom":"ASSET4","index":"0.000021723391251034"},{"denom":"ASSET5","index":"0.000001756486235957"},{"denom":"ASSET6","index":"0.000007090574282328"},{"denom":"ASSET7","index":"0.000011132530538444"},{"denom":"ASSET8","index":"0.000015191323807650"},{"denom":"ASSET9","index":"0.000006450832118924"}],"last_reward_claim_height":"174"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET11","shares":"536328315.000000000000000000","reward_history":[],"last_reward_claim_height":"30"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET13","shares":"30507846.140186054510031283","reward_history":[{"denom":"ASSET0","index":"0.000001631513498845"},{"denom":"ASSET1","index":"0.000013601788709515"},{"denom":"ASSET10","index":"0.000009476711328689"},{"denom":"ASSET11","index":"0.000013158178840821"},{"denom":"ASSET12","index":"0.000011848922966954"},{"denom":"ASSET13","index":"0.000004077884841603"},{"denom":"ASSET14","index":"0.000012291633930140"},{"denom":"ASSET15","index":"0.000008788599161546"},{"denom":"ASSET16","index":"0.000006127389402135"},{"denom":"ASSET17","index":"0.000004351601569095"},{"denom":"ASSET18","index":"0.000002072876103766"},{"denom":"ASSET2","index":"0.000004014961455973"},{"denom":"ASSET3","index":"0.000001174420047516"},{"denom":"ASSET4","index":"0.000011053841044239"},{"denom":"ASSET5","index":"0.000000911490186131"},{"denom":"ASSET6","index":"0.000003710232488420"},{"denom":"ASSET7","index":"0.000005682431175178"},{"denom":"ASSET8","index":"0.000007415071543785"},{"denom":"ASSET9","index":"0.000003202800328586"}],"last_reward_claim_height":"115"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET15","shares":"1000125203.108896301000000000","reward_history":[{"denom":"ASSET0","index":"0.000003159157648171"},{"denom":"ASSET1","index":"0.000026793811254639"},{"denom":"ASSET10","index":"0.000021330257270132"},{"denom":"ASSET11","index":"0.000026611245447042"},{"denom":"ASSET12","index":"0.000025345616114893"},{"denom":"ASSET13","index":"0.000008356504281369"},{"denom":"ASSET14","index":"0.000024433401122602"},{"denom":"ASSET15","index":"0.000019223209713353"},{"denom":"ASSET16","index":"0.000011890026449509"},{"denom":"ASSET17","index":"0.000009313941892173"},{"denom":"ASSET18","index":"0.000003860849124980"},{"denom":"ASSET2","index":"0.000008109777269158"},{"denom":"ASSET3","index":"0.000002255070941538"},{"denom":"ASSET4","index":"0.000021723391251034"},{"denom":"ASSET5","index":"0.000001756486235957"},{"denom":"ASSET6","index":"0.000007090574282328"},{"denom":"ASSET7","index":"0.000011132530538444"},{"denom":"ASSET8","index":"0.000015191323807650"},{"denom":"ASSET9","index":"0.000006450832118924"}],"last_reward_claim_height":"158"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET2","shares":"934639391.226701404402807158","reward_history":[{"denom":"ASSET0","index":"0.000004925875885411"},{"denom":"ASSET1","index":"0.000040292562025913"},{"denom":"ASSET10","index":"0.000034914390996922"},{"denom":"ASSET11","index":"0.000041886139125963"},{"denom":"ASSET12","index":"0.000039866325773975"},{"denom":"ASSET13","index":"0.000013514800906768"},{"denom":"ASSET14","index":"0.000038648914786353"},{"denom":"ASSET15","index":"0.000031343172569099"},{"denom":"ASSET16","index":"0.000017879880474022"},{"denom":"ASSET17","index":"0.000014479587580243"},{"denom":"ASSET18","index":"0.000006018974701591"},{"denom":"ASSET2","index":"0.000012161689256763"},{"denom":"ASSET3","index":"0.000003497875219260"},{"denom":"ASSET4","index":"0.000033033007174623"},{"denom":"ASSET5","index":"0.000002746709808505"},{"denom":"ASSET6","index":"0.000011213225573004"},{"denom":"ASSET7","index":"0.000017316551809961"},{"denom":"ASSET8","index":"0.000024939868124773"},{"denom":"ASSET9","index":"0.000009998447386442"}],"last_reward_claim_height":"185"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET6","shares":"931437639.999999984165560120","reward_history":[],"last_reward_claim_height":"33"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET7","shares":"781491734.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003253063831874"},{"denom":"ASSET1","index":"0.000027597326034286"},{"denom":"ASSET10","index":"0.000022021617243178"},{"denom":"ASSET11","index":"0.000027423138617092"},{"denom":"ASSET12","index":"0.000026144931484859"},{"denom":"ASSET13","index":"0.000008613299773809"},{"denom":"ASSET14","index":"0.000025170855267573"},{"denom":"ASSET15","index":"0.000019836826910831"},{"denom":"ASSET16","index":"0.000012243184702458"},{"denom":"ASSET17","index":"0.000009607701845932"},{"denom":"ASSET18","index":"0.000003972764374377"},{"denom":"ASSET2","index":"0.000008357484440725"},{"denom":"ASSET3","index":"0.000002321502734814"},{"denom":"ASSET4","index":"0.000022373906168402"},{"denom":"ASSET5","index":"0.000001808481766797"},{"denom":"ASSET6","index":"0.000007298802623853"},{"denom":"ASSET7","index":"0.000011465220726545"},{"denom":"ASSET8","index":"0.000015658035812384"},{"denom":"ASSET9","index":"0.000006646717011605"}],"last_reward_claim_height":"157"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET8","shares":"338218912.606378064993919114","reward_history":[{"denom":"ASSET0","index":"0.000001649724724935"},{"denom":"ASSET1","index":"0.000013753740147655"},{"denom":"ASSET10","index":"0.000009582563441278"},{"denom":"ASSET11","index":"0.000013305204895691"},{"denom":"ASSET12","index":"0.000011981321923304"},{"denom":"ASSET13","index":"0.000004123306127916"},{"denom":"ASSET14","index":"0.000012429052627730"},{"denom":"ASSET15","index":"0.000008886629821639"},{"denom":"ASSET16","index":"0.000006195820583626"},{"denom":"ASSET17","index":"0.000004400070480698"},{"denom":"ASSET18","index":"0.000002096248608056"},{"denom":"ASSET2","index":"0.000004060149146250"},{"denom":"ASSET3","index":"0.000001187512164840"},{"denom":"ASSET4","index":"0.000011177176659918"},{"denom":"ASSET5","index":"0.000000921609203810"},{"denom":"ASSET6","index":"0.000003751605165751"},{"denom":"ASSET7","index":"0.000005746078510357"},{"denom":"ASSET8","index":"0.000007497578498742"},{"denom":"ASSET9","index":"0.000003238303837047"}],"last_reward_claim_height":"84"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET12","shares":"262478386.000000012598962528","reward_history":[{"denom":"ASSET0","index":"0.000003253063831874"},{"denom":"ASSET1","index":"0.000027597326034286"},{"denom":"ASSET10","index":"0.000022021617243178"},{"denom":"ASSET11","index":"0.000027423138617092"},{"denom":"ASSET12","index":"0.000026144931484859"},{"denom":"ASSET13","index":"0.000008613299773809"},{"denom":"ASSET14","index":"0.000025170855267573"},{"denom":"ASSET15","index":"0.000019836826910831"},{"denom":"ASSET16","index":"0.000012243184702458"},{"denom":"ASSET17","index":"0.000009607701845932"},{"denom":"ASSET18","index":"0.000003972764374377"},{"denom":"ASSET2","index":"0.000008357484440725"},{"denom":"ASSET3","index":"0.000002321502734814"},{"denom":"ASSET4","index":"0.000022373906168402"},{"denom":"ASSET5","index":"0.000001808481766797"},{"denom":"ASSET6","index":"0.000007298802623853"},{"denom":"ASSET7","index":"0.000011465220726545"},{"denom":"ASSET8","index":"0.000015658035812384"},{"denom":"ASSET9","index":"0.000006646717011605"}],"last_reward_claim_height":"171"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET13","shares":"97185753.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001649724724935"},{"denom":"ASSET1","index":"0.000013753740147655"},{"denom":"ASSET10","index":"0.000009582563441278"},{"denom":"ASSET11","index":"0.000013305204895691"},{"denom":"ASSET12","index":"0.000011981321923304"},{"denom":"ASSET13","index":"0.000004123306127916"},{"denom":"ASSET14","index":"0.000012429052627730"},{"denom":"ASSET15","index":"0.000008886629821639"},{"denom":"ASSET16","index":"0.000006195820583626"},{"denom":"ASSET17","index":"0.000004400070480698"},{"denom":"ASSET18","index":"0.000002096248608056"},{"denom":"ASSET2","index":"0.000004060149146250"},{"denom":"ASSET3","index":"0.000001187512164840"},{"denom":"ASSET4","index":"0.000011177176659918"},{"denom":"ASSET5","index":"0.000000921609203810"},{"denom":"ASSET6","index":"0.000003751605165751"},{"denom":"ASSET7","index":"0.000005746078510357"},{"denom":"ASSET8","index":"0.000007497578498742"},{"denom":"ASSET9","index":"0.000003238303837047"}],"last_reward_claim_height":"81"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET18","shares":"729760950.000000000000000000","reward_history":[],"last_reward_claim_height":"20"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET2","shares":"983843.619601021281029765","reward_history":[{"denom":"ASSET0","index":"0.000003402845442317"},{"denom":"ASSET1","index":"0.000028880571174740"},{"denom":"ASSET10","index":"0.000023090578471272"},{"denom":"ASSET11","index":"0.000028709364204549"},{"denom":"ASSET12","index":"0.000027394626213612"},{"denom":"ASSET13","index":"0.000009019217107214"},{"denom":"ASSET14","index":"0.000026344557012563"},{"denom":"ASSET15","index":"0.000020791017438004"},{"denom":"ASSET16","index":"0.000012808886991708"},{"denom":"ASSET17","index":"0.000010066951390727"},{"denom":"ASSET18","index":"0.000004153478710890"},{"denom":"ASSET2","index":"0.000008748954704305"},{"denom":"ASSET3","index":"0.000002428490976730"},{"denom":"ASSET4","index":"0.000023413646091842"},{"denom":"ASSET5","index":"0.000001891364101695"},{"denom":"ASSET6","index":"0.000007634563338572"},{"denom":"ASSET7","index":"0.000011996876612297"},{"denom":"ASSET8","index":"0.000016395615103037"},{"denom":"ASSET9","index":"0.000006958318142576"}],"last_reward_claim_height":"174"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET12","shares":"284345647.000000003980839058","reward_history":[{"denom":"ASSET0","index":"0.000001698975992122"},{"denom":"ASSET1","index":"0.000014167905922226"},{"denom":"ASSET10","index":"0.000009870625403756"},{"denom":"ASSET11","index":"0.000013705415046027"},{"denom":"ASSET12","index":"0.000012342129737421"},{"denom":"ASSET13","index":"0.000004247439980305"},{"denom":"ASSET14","index":"0.000012803154715439"},{"denom":"ASSET15","index":"0.000009153801193103"},{"denom":"ASSET16","index":"0.000006381787732272"},{"denom":"ASSET17","index":"0.000004532557176567"},{"denom":"ASSET18","index":"0.000002159268021049"},{"denom":"ASSET2","index":"0.000004182207511237"},{"denom":"ASSET3","index":"0.000001223292032291"},{"denom":"ASSET4","index":"0.000011513897264989"},{"denom":"ASSET5","index":"0.000000949169072389"},{"denom":"ASSET6","index":"0.000003864840554987"},{"denom":"ASSET7","index":"0.000005918563906982"},{"denom":"ASSET8","index":"0.000007723084568158"},{"denom":"ASSET9","index":"0.000003335651311539"}],"last_reward_claim_height":"72"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET4","shares":"1020609753.735288477255929080","reward_history":[{"denom":"ASSET0","index":"0.000004603569948956"},{"denom":"ASSET1","index":"0.000037657747163858"},{"denom":"ASSET10","index":"0.000032685028331762"},{"denom":"ASSET11","index":"0.000039168650778486"},{"denom":"ASSET12","index":"0.000037297135276037"},{"denom":"ASSET13","index":"0.000012641649341100"},{"denom":"ASSET14","index":"0.000036137365706128"},{"denom":"ASSET15","index":"0.000029334958625221"},{"denom":"ASSET16","index":"0.000016707823856618"},{"denom":"ASSET17","index":"0.000013546076882550"},{"denom":"ASSET18","index":"0.000005623085845845"},{"denom":"ASSET2","index":"0.000011368447004498"},{"denom":"ASSET3","index":"0.000003269493918411"},{"denom":"ASSET4","index":"0.000030874677880264"},{"denom":"ASSET5","index":"0.000002566798539209"},{"denom":"ASSET6","index":"0.000010480589665140"},{"denom":"ASSET7","index":"0.000016187212147994"},{"denom":"ASSET8","index":"0.000023330452982259"},{"denom":"ASSET9","index":"0.000009348542318023"}],"last_reward_claim_height":"195"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET7","shares":"426990417.000000000000000000","reward_history":[],"last_reward_claim_height":"8"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET11","shares":"817935470.284839597991799329","reward_history":[{"denom":"ASSET0","index":"0.000004603569948956"},{"denom":"ASSET1","index":"0.000037657747163858"},{"denom":"ASSET10","index":"0.000032685028331762"},{"denom":"ASSET11","index":"0.000039168650778486"},{"denom":"ASSET12","index":"0.000037297135276037"},{"denom":"ASSET13","index":"0.000012641649341100"},{"denom":"ASSET14","index":"0.000036137365706128"},{"denom":"ASSET15","index":"0.000029334958625221"},{"denom":"ASSET16","index":"0.000016707823856618"},{"denom":"ASSET17","index":"0.000013546076882550"},{"denom":"ASSET18","index":"0.000005623085845845"},{"denom":"ASSET2","index":"0.000011368447004498"},{"denom":"ASSET3","index":"0.000003269493918411"},{"denom":"ASSET4","index":"0.000030874677880264"},{"denom":"ASSET5","index":"0.000002566798539209"},{"denom":"ASSET6","index":"0.000010480589665140"},{"denom":"ASSET7","index":"0.000016187212147994"},{"denom":"ASSET8","index":"0.000023330452982259"},{"denom":"ASSET9","index":"0.000009348542318023"}],"last_reward_claim_height":"185"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET13","shares":"47450457.873389983799940615","reward_history":[{"denom":"ASSET0","index":"0.000003029367235848"},{"denom":"ASSET1","index":"0.000025709657584098"},{"denom":"ASSET10","index":"0.000020551027857005"},{"denom":"ASSET11","index":"0.000025556791271547"},{"denom":"ASSET12","index":"0.000024383546484064"},{"denom":"ASSET13","index":"0.000008028643187417"},{"denom":"ASSET14","index":"0.000023452409013233"},{"denom":"ASSET15","index":"0.000018505869963369"},{"denom":"ASSET16","index":"0.000011403028825829"},{"denom":"ASSET17","index":"0.000008960765854271"},{"denom":"ASSET18","index":"0.000003697390743305"},{"denom":"ASSET2","index":"0.000007788410102575"},{"denom":"ASSET3","index":"0.000002162278160249"},{"denom":"ASSET4","index":"0.000020843149904241"},{"denom":"ASSET5","index":"0.000001683795445220"},{"denom":"ASSET6","index":"0.000006796548728457"},{"denom":"ASSET7","index":"0.000010680301627557"},{"denom":"ASSET8","index":"0.000014594997949332"},{"denom":"ASSET9","index":"0.000006193949682941"}],"last_reward_claim_height":"128"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET1","shares":"157891562.290097273465482666","reward_history":[{"denom":"ASSET0","index":"0.000004757972776933"},{"denom":"ASSET1","index":"0.000038970400118654"},{"denom":"ASSET10","index":"0.000033617836990995"},{"denom":"ASSET11","index":"0.000040428437524388"},{"denom":"ASSET12","index":"0.000038459846371488"},{"denom":"ASSET13","index":"0.000013029623770405"},{"denom":"ASSET14","index":"0.000037302820528116"},{"denom":"ASSET15","index":"0.000030190977215601"},{"denom":"ASSET16","index":"0.000017295602426422"},{"denom":"ASSET17","index":"0.000013975163103663"},{"denom":"ASSET18","index":"0.000005816089409694"},{"denom":"ASSET2","index":"0.000011760899716132"},{"denom":"ASSET3","index":"0.000003380086343079"},{"denom":"ASSET4","index":"0.000031935316700571"},{"denom":"ASSET5","index":"0.000002652933340978"},{"denom":"ASSET6","index":"0.000010827301916558"},{"denom":"ASSET7","index":"0.000016726845186415"},{"denom":"ASSET8","index":"0.000024031227508335"},{"denom":"ASSET9","index":"0.000009656515298543"}],"last_reward_claim_height":"194"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET14","shares":"460204882.790225960509181526","reward_history":[{"denom":"ASSET0","index":"0.000004757972776933"},{"denom":"ASSET1","index":"0.000038970400118654"},{"denom":"ASSET10","index":"0.000033617836990995"},{"denom":"ASSET11","index":"0.000040428437524388"},{"denom":"ASSET12","index":"0.000038459846371488"},{"denom":"ASSET13","index":"0.000013029623770405"},{"denom":"ASSET14","index":"0.000037302820528116"},{"denom":"ASSET15","index":"0.000030190977215601"},{"denom":"ASSET16","index":"0.000017295602426422"},{"denom":"ASSET17","index":"0.000013975163103663"},{"denom":"ASSET18","index":"0.000005816089409694"},{"denom":"ASSET2","index":"0.000011760899716132"},{"denom":"ASSET3","index":"0.000003380086343079"},{"denom":"ASSET4","index":"0.000031935316700571"},{"denom":"ASSET5","index":"0.000002652933340978"},{"denom":"ASSET6","index":"0.000010827301916558"},{"denom":"ASSET7","index":"0.000016726845186415"},{"denom":"ASSET8","index":"0.000024031227508335"},{"denom":"ASSET9","index":"0.000009656515298543"}],"last_reward_claim_height":"187"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET15","shares":"575626490.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004757972776933"},{"denom":"ASSET1","index":"0.000038970400118654"},{"denom":"ASSET10","index":"0.000033617836990995"},{"denom":"ASSET11","index":"0.000040428437524388"},{"denom":"ASSET12","index":"0.000038459846371488"},{"denom":"ASSET13","index":"0.000013029623770405"},{"denom":"ASSET14","index":"0.000037302820528116"},{"denom":"ASSET15","index":"0.000030190977215601"},{"denom":"ASSET16","index":"0.000017295602426422"},{"denom":"ASSET17","index":"0.000013975163103663"},{"denom":"ASSET18","index":"0.000005816089409694"},{"denom":"ASSET2","index":"0.000011760899716132"},{"denom":"ASSET3","index":"0.000003380086343079"},{"denom":"ASSET4","index":"0.000031935316700571"},{"denom":"ASSET5","index":"0.000002652933340978"},{"denom":"ASSET6","index":"0.000010827301916558"},{"denom":"ASSET7","index":"0.000016726845186415"},{"denom":"ASSET8","index":"0.000024031227508335"},{"denom":"ASSET9","index":"0.000009656515298543"}],"last_reward_claim_height":"190"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET6","shares":"220786224.099145809113397506","reward_history":[{"denom":"ASSET0","index":"0.000001428935211366"},{"denom":"ASSET1","index":"0.000011914564237659"},{"denom":"ASSET10","index":"0.000008301159777028"},{"denom":"ASSET11","index":"0.000011525978642480"},{"denom":"ASSET12","index":"0.000010379209562159"},{"denom":"ASSET13","index":"0.000003571896453874"},{"denom":"ASSET14","index":"0.000010767353582799"},{"denom":"ASSET15","index":"0.000007698410529959"},{"denom":"ASSET16","index":"0.000005367338533420"},{"denom":"ASSET17","index":"0.000003811671429081"},{"denom":"ASSET18","index":"0.000001815754508385"},{"denom":"ASSET2","index":"0.000003517141210917"},{"denom":"ASSET3","index":"0.000001028868678146"},{"denom":"ASSET4","index":"0.000009682846512616"},{"denom":"ASSET5","index":"0.000000798366768278"},{"denom":"ASSET6","index":"0.000003249988614231"},{"denom":"ASSET7","index":"0.000004977428214621"},{"denom":"ASSET8","index":"0.000006495119908522"},{"denom":"ASSET9","index":"0.000002805323052474"}],"last_reward_claim_height":"112"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET10","shares":"419920373.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004797932273463"},{"denom":"ASSET1","index":"0.000039207124912078"},{"denom":"ASSET10","index":"0.000034353978435423"},{"denom":"ASSET11","index":"0.000040920134682013"},{"denom":"ASSET12","index":"0.000039056395494217"},{"denom":"ASSET13","index":"0.000013231227958855"},{"denom":"ASSET14","index":"0.000037733679436848"},{"denom":"ASSET15","index":"0.000030793877081294"},{"denom":"ASSET16","index":"0.000017383221205873"},{"denom":"ASSET17","index":"0.000014177361978135"},{"denom":"ASSET18","index":"0.000005850206856034"},{"denom":"ASSET2","index":"0.000011848399796786"},{"denom":"ASSET3","index":"0.000003404782714627"},{"denom":"ASSET4","index":"0.000032159529107613"},{"denom":"ASSET5","index":"0.000002675260702048"},{"denom":"ASSET6","index":"0.000010924211970889"},{"denom":"ASSET7","index":"0.000016877439175785"},{"denom":"ASSET8","index":"0.000024434811349288"},{"denom":"ASSET9","index":"0.000009758176572436"}],"last_reward_claim_height":"199"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET5","shares":"228214620.459038993387979855","reward_history":[{"denom":"ASSET0","index":"0.000004795768020357"},{"denom":"ASSET1","index":"0.000039235640540163"},{"denom":"ASSET10","index":"0.000034090813500731"},{"denom":"ASSET11","index":"0.000040819172716073"},{"denom":"ASSET12","index":"0.000038887343100883"},{"denom":"ASSET13","index":"0.000013175362444583"},{"denom":"ASSET14","index":"0.000037654186330986"},{"denom":"ASSET15","index":"0.000030589194135662"},{"denom":"ASSET16","index":"0.000017405797263851"},{"denom":"ASSET17","index":"0.000014123771157348"},{"denom":"ASSET18","index":"0.000005856171184647"},{"denom":"ASSET2","index":"0.000011847674447736"},{"denom":"ASSET3","index":"0.000003405135950666"},{"denom":"ASSET4","index":"0.000032167283890779"},{"denom":"ASSET5","index":"0.000002674112194983"},{"denom":"ASSET6","index":"0.000010916704748385"},{"denom":"ASSET7","index":"0.000016864134756441"},{"denom":"ASSET8","index":"0.000024315764197247"},{"denom":"ASSET9","index":"0.000009742334443531"}],"last_reward_claim_height":"184"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET9","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001556917620519"},{"denom":"ASSET1","index":"0.000012983455297040"},{"denom":"ASSET10","index":"0.000009045452282177"},{"denom":"ASSET11","index":"0.000012560119972943"},{"denom":"ASSET12","index":"0.000011310507230547"},{"denom":"ASSET13","index":"0.000003892294051298"},{"denom":"ASSET14","index":"0.000011733139339821"},{"denom":"ASSET15","index":"0.000008388649636483"},{"denom":"ASSET16","index":"0.000005848637691896"},{"denom":"ASSET17","index":"0.000004153889965857"},{"denom":"ASSET18","index":"0.000001978846514969"},{"denom":"ASSET2","index":"0.000003832520791251"},{"denom":"ASSET3","index":"0.000001120924429588"},{"denom":"ASSET4","index":"0.000010551035220538"},{"denom":"ASSET5","index":"0.000000869876737390"},{"denom":"ASSET6","index":"0.000003541389854081"},{"denom":"ASSET7","index":"0.000005423895938150"},{"denom":"ASSET8","index":"0.000007077857204393"},{"denom":"ASSET9","index":"0.000003056874840288"}],"last_reward_claim_height":"114"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET3","shares":"798818570.854189875018330848","reward_history":[{"denom":"ASSET0","index":"0.000004941758780646"},{"denom":"ASSET1","index":"0.000040473870434523"},{"denom":"ASSET10","index":"0.000035083402440859"},{"denom":"ASSET11","index":"0.000042051564730155"},{"denom":"ASSET12","index":"0.000040063832495883"},{"denom":"ASSET13","index":"0.000013563015527428"},{"denom":"ASSET14","index":"0.000038785366713261"},{"denom":"ASSET15","index":"0.000031483779525299"},{"denom":"ASSET16","index":"0.000017955292333607"},{"denom":"ASSET17","index":"0.000014555394021301"},{"denom":"ASSET18","index":"0.000006034476545538"},{"denom":"ASSET2","index":"0.000012222945573354"},{"denom":"ASSET3","index":"0.000003508847610589"},{"denom":"ASSET4","index":"0.000033172373205264"},{"denom":"ASSET5","index":"0.000002755599690062"},{"denom":"ASSET6","index":"0.000011244023937701"},{"denom":"ASSET7","index":"0.000017379505184359"},{"denom":"ASSET8","index":"0.000025019733274858"},{"denom":"ASSET9","index":"0.000010040653742801"}],"last_reward_claim_height":"184"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET10","shares":"159344749.166173090914693264","reward_history":[{"denom":"ASSET0","index":"0.000004941758780646"},{"denom":"ASSET1","index":"0.000040473870434523"},{"denom":"ASSET10","index":"0.000035083402440859"},{"denom":"ASSET11","index":"0.000042051564730155"},{"denom":"ASSET12","index":"0.000040063832495883"},{"denom":"ASSET13","index":"0.000013563015527428"},{"denom":"ASSET14","index":"0.000038785366713261"},{"denom":"ASSET15","index":"0.000031483779525299"},{"denom":"ASSET16","index":"0.000017955292333607"},{"denom":"ASSET17","index":"0.000014555394021301"},{"denom":"ASSET18","index":"0.000006034476545538"},{"denom":"ASSET2","index":"0.000012222945573354"},{"denom":"ASSET3","index":"0.000003508847610589"},{"denom":"ASSET4","index":"0.000033172373205264"},{"denom":"ASSET5","index":"0.000002755599690062"},{"denom":"ASSET6","index":"0.000011244023937701"},{"denom":"ASSET7","index":"0.000017379505184359"},{"denom":"ASSET8","index":"0.000025019733274858"},{"denom":"ASSET9","index":"0.000010040653742801"}],"last_reward_claim_height":"190"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET7","shares":"311550465.732116697631399865","reward_history":[{"denom":"ASSET0","index":"0.000001599876133405"},{"denom":"ASSET1","index":"0.000013345434681176"},{"denom":"ASSET10","index":"0.000009297530322905"},{"denom":"ASSET11","index":"0.000012909953167223"},{"denom":"ASSET12","index":"0.000011625282701060"},{"denom":"ASSET13","index":"0.000004000208763886"},{"denom":"ASSET14","index":"0.000012059727354266"},{"denom":"ASSET15","index":"0.000008622533976277"},{"denom":"ASSET16","index":"0.000006011718614052"},{"denom":"ASSET17","index":"0.000004268755697491"},{"denom":"ASSET18","index":"0.000002033283925863"},{"denom":"ASSET2","index":"0.000003939033979783"},{"denom":"ASSET3","index":"0.000001151952290481"},{"denom":"ASSET4","index":"0.000010845563418934"},{"denom":"ASSET5","index":"0.000000893773964352"},{"denom":"ASSET6","index":"0.000003640418084501"},{"denom":"ASSET7","index":"0.000005575200239351"},{"denom":"ASSET8","index":"0.000007274615004517"},{"denom":"ASSET9","index":"0.000003141688064949"}],"last_reward_claim_height":"103"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET9","shares":"492607688.000000000000000000","reward_history":[],"last_reward_claim_height":"6"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET14","shares":"164304919.000000000000000000","reward_history":[],"last_reward_claim_height":"14"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET15","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001693699328345"},{"denom":"ASSET1","index":"0.000014121235265065"},{"denom":"ASSET10","index":"0.000009838380374958"},{"denom":"ASSET11","index":"0.000013660499756586"},{"denom":"ASSET12","index":"0.000012301569616423"},{"denom":"ASSET13","index":"0.000004233563721295"},{"denom":"ASSET14","index":"0.000012760935925768"},{"denom":"ASSET15","index":"0.000009123658427184"},{"denom":"ASSET16","index":"0.000006361299175013"},{"denom":"ASSET17","index":"0.000004517672541531"},{"denom":"ASSET18","index":"0.000002151696438556"},{"denom":"ASSET2","index":"0.000004168526762446"},{"denom":"ASSET3","index":"0.000001219271828530"},{"denom":"ASSET4","index":"0.000011475942538822"},{"denom":"ASSET5","index":"0.000000946116601363"},{"denom":"ASSET6","index":"0.000003852241762569"},{"denom":"ASSET7","index":"0.000005899194467400"},{"denom":"ASSET8","index":"0.000007698322129037"},{"denom":"ASSET9","index":"0.000003325100096108"}],"last_reward_claim_height":"99"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET1","shares":"311072170.263565744143427387","reward_history":[{"denom":"ASSET0","index":"0.000003138779820137"},{"denom":"ASSET1","index":"0.000026638851971456"},{"denom":"ASSET10","index":"0.000021228354320839"},{"denom":"ASSET11","index":"0.000026463611656062"},{"denom":"ASSET12","index":"0.000025215335343685"},{"denom":"ASSET13","index":"0.000008309803474369"},{"denom":"ASSET14","index":"0.000024294710395367"},{"denom":"ASSET15","index":"0.000019126240972581"},{"denom":"ASSET16","index":"0.000011819368577720"},{"denom":"ASSET17","index":"0.000009266335892783"},{"denom":"ASSET18","index":"0.000003836527514127"},{"denom":"ASSET2","index":"0.000008063422586049"},{"denom":"ASSET3","index":"0.000002240662109326"},{"denom":"ASSET4","index":"0.000021597223596640"},{"denom":"ASSET5","index":"0.000001744975814867"},{"denom":"ASSET6","index":"0.000007047692266012"},{"denom":"ASSET7","index":"0.000011067413421526"},{"denom":"ASSET8","index":"0.000015106336478322"},{"denom":"ASSET9","index":"0.000006414890297355"}],"last_reward_claim_height":"127"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET17","shares":"237096089.232758465159062741","reward_history":[{"denom":"ASSET0","index":"0.000001608105877482"},{"denom":"ASSET1","index":"0.000013418457239972"},{"denom":"ASSET10","index":"0.000009349233819318"},{"denom":"ASSET11","index":"0.000012981594753349"},{"denom":"ASSET12","index":"0.000011689837573077"},{"denom":"ASSET13","index":"0.000004022147721664"},{"denom":"ASSET14","index":"0.000012126700059700"},{"denom":"ASSET15","index":"0.000008669460725910"},{"denom":"ASSET16","index":"0.000006044519750254"},{"denom":"ASSET17","index":"0.000004293303747844"},{"denom":"ASSET18","index":"0.000002044968364105"},{"denom":"ASSET2","index":"0.000003960007798998"},{"denom":"ASSET3","index":"0.000001158062195142"},{"denom":"ASSET4","index":"0.000010904614913932"},{"denom":"ASSET5","index":"0.000000898204336720"},{"denom":"ASSET6","index":"0.000003660606353425"},{"denom":"ASSET7","index":"0.000005605774235672"},{"denom":"ASSET8","index":"0.000007313680595011"},{"denom":"ASSET9","index":"0.000003159720916176"}],"last_reward_claim_height":"89"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET18","shares":"991987944.849134405762503824","reward_history":[{"denom":"ASSET0","index":"0.000003135138573804"},{"denom":"ASSET1","index":"0.000026601246250396"},{"denom":"ASSET10","index":"0.000021147351718785"},{"denom":"ASSET11","index":"0.000026411423528042"},{"denom":"ASSET12","index":"0.000025139747174388"},{"denom":"ASSET13","index":"0.000008292603180789"},{"denom":"ASSET14","index":"0.000024256405788980"},{"denom":"ASSET15","index":"0.000019064302195638"},{"denom":"ASSET16","index":"0.000011804656377100"},{"denom":"ASSET17","index":"0.000009238224400983"},{"denom":"ASSET18","index":"0.000003834531376561"},{"denom":"ASSET2","index":"0.000008049169006780"},{"denom":"ASSET3","index":"0.000002239375819558"},{"denom":"ASSET4","index":"0.000021568278304468"},{"denom":"ASSET5","index":"0.000001743998311515"},{"denom":"ASSET6","index":"0.000007041675703373"},{"denom":"ASSET7","index":"0.000011051161098588"},{"denom":"ASSET8","index":"0.000015073103234225"},{"denom":"ASSET9","index":"0.000006402150772125"}],"last_reward_claim_height":"171"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET1","shares":"957804601.336324294609797300","reward_history":[{"denom":"ASSET0","index":"0.000003237426875283"},{"denom":"ASSET1","index":"0.000027451710154634"},{"denom":"ASSET10","index":"0.000021835512998164"},{"denom":"ASSET11","index":"0.000027259736654219"},{"denom":"ASSET12","index":"0.000025953768913429"},{"denom":"ASSET13","index":"0.000008559484494503"},{"denom":"ASSET14","index":"0.000025032165857410"},{"denom":"ASSET15","index":"0.000019681806512765"},{"denom":"ASSET16","index":"0.000012183244440341"},{"denom":"ASSET17","index":"0.000009537367134186"},{"denom":"ASSET18","index":"0.000003957397976948"},{"denom":"ASSET2","index":"0.000008307936552813"},{"denom":"ASSET3","index":"0.000002310954839376"},{"denom":"ASSET4","index":"0.000022256988295109"},{"denom":"ASSET5","index":"0.000001799896462688"},{"denom":"ASSET6","index":"0.000007265619632425"},{"denom":"ASSET7","index":"0.000011405823532836"},{"denom":"ASSET8","index":"0.000015559935461923"},{"denom":"ASSET9","index":"0.000006608212131764"}],"last_reward_claim_height":"177"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET13","shares":"7819513.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001682560247115"},{"denom":"ASSET1","index":"0.000014026482890055"},{"denom":"ASSET10","index":"0.000009772411969975"},{"denom":"ASSET11","index":"0.000013568579422963"},{"denom":"ASSET12","index":"0.000012218368466479"},{"denom":"ASSET13","index":"0.000004205057792371"},{"denom":"ASSET14","index":"0.000012675600520863"},{"denom":"ASSET15","index":"0.000009062728737253"},{"denom":"ASSET16","index":"0.000006318664998244"},{"denom":"ASSET17","index":"0.000004487051129876"},{"denom":"ASSET18","index":"0.000002137778063373"},{"denom":"ASSET2","index":"0.000004140602172369"},{"denom":"ASSET3","index":"0.000001211228525856"},{"denom":"ASSET4","index":"0.000011398573549589"},{"denom":"ASSET5","index":"0.000000939977791684"},{"denom":"ASSET6","index":"0.000003825709612155"},{"denom":"ASSET7","index":"0.000005859418705735"},{"denom":"ASSET8","index":"0.000007646047922643"},{"denom":"ASSET9","index":"0.000003302679112354"}],"last_reward_claim_height":"83"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET16","shares":"897545857.493049416534619180","reward_history":[{"denom":"ASSET0","index":"0.000001682560247115"},{"denom":"ASSET1","index":"0.000014026482890055"},{"denom":"ASSET10","index":"0.000009772411969975"},{"denom":"ASSET11","index":"0.000013568579422963"},{"denom":"ASSET12","index":"0.000012218368466479"},{"denom":"ASSET13","index":"0.000004205057792371"},{"denom":"ASSET14","index":"0.000012675600520863"},{"denom":"ASSET15","index":"0.000009062728737253"},{"denom":"ASSET16","index":"0.000006318664998244"},{"denom":"ASSET17","index":"0.000004487051129876"},{"denom":"ASSET18","index":"0.000002137778063373"},{"denom":"ASSET2","index":"0.000004140602172369"},{"denom":"ASSET3","index":"0.000001211228525856"},{"denom":"ASSET4","index":"0.000011398573549589"},{"denom":"ASSET5","index":"0.000000939977791684"},{"denom":"ASSET6","index":"0.000003825709612155"},{"denom":"ASSET7","index":"0.000005859418705735"},{"denom":"ASSET8","index":"0.000007646047922643"},{"denom":"ASSET9","index":"0.000003302679112354"}],"last_reward_claim_height":"94"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET18","shares":"487004687.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003237426875283"},{"denom":"ASSET1","index":"0.000027451710154634"},{"denom":"ASSET10","index":"0.000021835512998164"},{"denom":"ASSET11","index":"0.000027259736654219"},{"denom":"ASSET12","index":"0.000025953768913429"},{"denom":"ASSET13","index":"0.000008559484494503"},{"denom":"ASSET14","index":"0.000025032165857410"},{"denom":"ASSET15","index":"0.000019681806512765"},{"denom":"ASSET16","index":"0.000012183244440341"},{"denom":"ASSET17","index":"0.000009537367134186"},{"denom":"ASSET18","index":"0.000003957397976948"},{"denom":"ASSET2","index":"0.000008307936552813"},{"denom":"ASSET3","index":"0.000002310954839376"},{"denom":"ASSET4","index":"0.000022256988295109"},{"denom":"ASSET5","index":"0.000001799896462688"},{"denom":"ASSET6","index":"0.000007265619632425"},{"denom":"ASSET7","index":"0.000011405823532836"},{"denom":"ASSET8","index":"0.000015559935461923"},{"denom":"ASSET9","index":"0.000006608212131764"}],"last_reward_claim_height":"182"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET3","shares":"629438211.399272939349210475","reward_history":[{"denom":"ASSET0","index":"0.000001576738934866"},{"denom":"ASSET1","index":"0.000013143695761043"},{"denom":"ASSET10","index":"0.000009157699733702"},{"denom":"ASSET11","index":"0.000012715663698192"},{"denom":"ASSET12","index":"0.000011450067913139"},{"denom":"ASSET13","index":"0.000003940585946017"},{"denom":"ASSET14","index":"0.000011878099975991"},{"denom":"ASSET15","index":"0.000008492526135047"},{"denom":"ASSET16","index":"0.000005920970048209"},{"denom":"ASSET17","index":"0.000004204637159643"},{"denom":"ASSET18","index":"0.000002003089142854"},{"denom":"ASSET2","index":"0.000003880039170918"},{"denom":"ASSET3","index":"0.000001134411105672"},{"denom":"ASSET4","index":"0.000010681460240357"},{"denom":"ASSET5","index":"0.000000880451021229"},{"denom":"ASSET6","index":"0.000003584873642311"},{"denom":"ASSET7","index":"0.000005491256130493"},{"denom":"ASSET8","index":"0.000007165542647463"},{"denom":"ASSET9","index":"0.000003094612949497"}],"last_reward_claim_height":"108"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET15","shares":"60073854.000000000000000000","reward_history":[],"last_reward_claim_height":"7"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET1","shares":"7360371.832480818437819341","reward_history":[{"denom":"ASSET0","index":"0.000005041218570922"},{"denom":"ASSET1","index":"0.000041283005448016"},{"denom":"ASSET10","index":"0.000035661761804363"},{"denom":"ASSET11","index":"0.000042849750447417"},{"denom":"ASSET12","index":"0.000040775814264996"},{"denom":"ASSET13","index":"0.000013813729419195"},{"denom":"ASSET14","index":"0.000039534246723674"},{"denom":"ASSET15","index":"0.000032020821593153"},{"denom":"ASSET16","index":"0.000018320563328873"},{"denom":"ASSET17","index":"0.000014815150431129"},{"denom":"ASSET18","index":"0.000006160605028957"},{"denom":"ASSET2","index":"0.000012460101059942"},{"denom":"ASSET3","index":"0.000003580638711559"},{"denom":"ASSET4","index":"0.000033833347890073"},{"denom":"ASSET5","index":"0.000002810853001211"},{"denom":"ASSET6","index":"0.000011471981118239"},{"denom":"ASSET7","index":"0.000017723228710680"},{"denom":"ASSET8","index":"0.000025479899423051"},{"denom":"ASSET9","index":"0.000010234106890808"}],"last_reward_claim_height":"198"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET8","shares":"115696919.685847082572606432","reward_history":[{"denom":"ASSET0","index":"0.000001726734301691"},{"denom":"ASSET1","index":"0.000014395988805148"},{"denom":"ASSET10","index":"0.000010029746380297"},{"denom":"ASSET11","index":"0.000013926529312304"},{"denom":"ASSET12","index":"0.000012540835608608"},{"denom":"ASSET13","index":"0.000004315874534955"},{"denom":"ASSET14","index":"0.000013009526126035"},{"denom":"ASSET15","index":"0.000009301526659210"},{"denom":"ASSET16","index":"0.000006485154189852"},{"denom":"ASSET17","index":"0.000004605778267637"},{"denom":"ASSET18","index":"0.000002193886868281"},{"denom":"ASSET2","index":"0.000004249742648985"},{"denom":"ASSET3","index":"0.000001243048763609"},{"denom":"ASSET4","index":"0.000011699192013329"},{"denom":"ASSET5","index":"0.000000964679662201"},{"denom":"ASSET6","index":"0.000003926772973318"},{"denom":"ASSET7","index":"0.000006014156746171"},{"denom":"ASSET8","index":"0.000007847778630999"},{"denom":"ASSET9","index":"0.000003389643643667"}],"last_reward_claim_height":"114"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET18","shares":"55321439.354640830936835725","reward_history":[{"denom":"ASSET0","index":"0.000003383074331503"},{"denom":"ASSET1","index":"0.000028697774885580"},{"denom":"ASSET10","index":"0.000022880621123289"},{"denom":"ASSET11","index":"0.000028511966470743"},{"denom":"ASSET12","index":"0.000027173358086556"},{"denom":"ASSET13","index":"0.000008954537947194"},{"denom":"ASSET14","index":"0.000026172910691250"},{"denom":"ASSET15","index":"0.000020614154391480"},{"denom":"ASSET16","index":"0.000012732692592075"},{"denom":"ASSET17","index":"0.000009985655741818"},{"denom":"ASSET18","index":"0.000004132359094826"},{"denom":"ASSET2","index":"0.000008689052893949"},{"denom":"ASSET3","index":"0.000002414485946546"},{"denom":"ASSET4","index":"0.000023266612079392"},{"denom":"ASSET5","index":"0.000001880944791026"},{"denom":"ASSET6","index":"0.000007591453768301"},{"denom":"ASSET7","index":"0.000011922604903868"},{"denom":"ASSET8","index":"0.000016278329144958"},{"denom":"ASSET9","index":"0.000006911169878531"}],"last_reward_claim_height":"172"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET2","shares":"566295287.000000000000000000","reward_history":[],"last_reward_claim_height":"32"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET10","shares":"425775746.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004616748816299"},{"denom":"ASSET1","index":"0.000037755207818878"},{"denom":"ASSET10","index":"0.000032938660396482"},{"denom":"ASSET11","index":"0.000039335391556387"},{"denom":"ASSET12","index":"0.000037512612148171"},{"denom":"ASSET13","index":"0.000012705893060308"},{"denom":"ASSET14","index":"0.000036276532453011"},{"denom":"ASSET15","index":"0.000029538855596635"},{"denom":"ASSET16","index":"0.000016743506271421"},{"denom":"ASSET17","index":"0.000013621299864319"},{"denom":"ASSET18","index":"0.000005632683728718"},{"denom":"ASSET2","index":"0.000011406087221492"},{"denom":"ASSET3","index":"0.000003276282345046"},{"denom":"ASSET4","index":"0.000030959298045710"},{"denom":"ASSET5","index":"0.000002573921522052"},{"denom":"ASSET6","index":"0.000010509111697413"},{"denom":"ASSET7","index":"0.000016237462090306"},{"denom":"ASSET8","index":"0.000023455836171312"},{"denom":"ASSET9","index":"0.000009384135429607"}],"last_reward_claim_height":"193"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET11","shares":"933701453.925171272626323990","reward_history":[{"denom":"ASSET0","index":"0.000003006064648013"},{"denom":"ASSET1","index":"0.000025531157590212"},{"denom":"ASSET10","index":"0.000020524407173472"},{"denom":"ASSET11","index":"0.000025409258384489"},{"denom":"ASSET12","index":"0.000024300714605646"},{"denom":"ASSET13","index":"0.000007986286383048"},{"denom":"ASSET14","index":"0.000023298685931189"},{"denom":"ASSET15","index":"0.000018459726056254"},{"denom":"ASSET16","index":"0.000011316095008653"},{"denom":"ASSET17","index":"0.000008930145684163"},{"denom":"ASSET18","index":"0.000003662445744281"},{"denom":"ASSET2","index":"0.000007743120539446"},{"denom":"ASSET3","index":"0.000002143639104141"},{"denom":"ASSET4","index":"0.000020695936675740"},{"denom":"ASSET5","index":"0.000001670457298921"},{"denom":"ASSET6","index":"0.000006739935351518"},{"denom":"ASSET7","index":"0.000010603283023237"},{"denom":"ASSET8","index":"0.000014518439118465"},{"denom":"ASSET9","index":"0.000006156725809403"}],"last_reward_claim_height":"175"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET2","shares":"19131537.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001476546163568"},{"denom":"ASSET1","index":"0.000012315891963405"},{"denom":"ASSET10","index":"0.000008580298213179"},{"denom":"ASSET11","index":"0.000011914434711559"},{"denom":"ASSET12","index":"0.000010728207916557"},{"denom":"ASSET13","index":"0.000003691365408921"},{"denom":"ASSET14","index":"0.000011129665168403"},{"denom":"ASSET15","index":"0.000007957699254808"},{"denom":"ASSET16","index":"0.000005547821683700"},{"denom":"ASSET17","index":"0.000003939724556249"},{"denom":"ASSET18","index":"0.000001876869355381"},{"denom":"ASSET2","index":"0.000003635796467281"},{"denom":"ASSET3","index":"0.000001062614251355"},{"denom":"ASSET4","index":"0.000010009213855342"},{"denom":"ASSET5","index":"0.000000825595704361"},{"denom":"ASSET6","index":"0.000003359085819117"},{"denom":"ASSET7","index":"0.000005145230371820"},{"denom":"ASSET8","index":"0.000006713635398099"},{"denom":"ASSET9","index":"0.000002899791505564"}],"last_reward_claim_height":"66"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET1","shares":"430880451.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002792091306062"},{"denom":"ASSET1","index":"0.000023760392481519"},{"denom":"ASSET10","index":"0.000019330735214415"},{"denom":"ASSET11","index":"0.000023705763948043"},{"denom":"ASSET12","index":"0.000022788595153270"},{"denom":"ASSET13","index":"0.000007460432475948"},{"denom":"ASSET14","index":"0.000021701401606991"},{"denom":"ASSET15","index":"0.000017344296121870"},{"denom":"ASSET16","index":"0.000010515175863945"},{"denom":"ASSET17","index":"0.000008375559402161"},{"denom":"ASSET18","index":"0.000003388923471278"},{"denom":"ASSET2","index":"0.000007222909907971"},{"denom":"ASSET3","index":"0.000001989926471838"},{"denom":"ASSET4","index":"0.000019255294602933"},{"denom":"ASSET5","index":"0.000001551437823125"},{"denom":"ASSET6","index":"0.000006253588147261"},{"denom":"ASSET7","index":"0.000009862028954195"},{"denom":"ASSET8","index":"0.000013562244421912"},{"denom":"ASSET9","index":"0.000005741841810541"}],"last_reward_claim_height":"124"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET0","shares":"41966144.333439457839367140","reward_history":[{"denom":"ASSET0","index":"0.000004819510775519"},{"denom":"ASSET1","index":"0.000039403767247033"},{"denom":"ASSET10","index":"0.000034368618249032"},{"denom":"ASSET11","index":"0.000041056673813813"},{"denom":"ASSET12","index":"0.000039143604600199"},{"denom":"ASSET13","index":"0.000013264025816369"},{"denom":"ASSET14","index":"0.000037867402744776"},{"denom":"ASSET15","index":"0.000030827798147301"},{"denom":"ASSET16","index":"0.000017473948495290"},{"denom":"ASSET17","index":"0.000014210305839082"},{"denom":"ASSET18","index":"0.000005878424124691"},{"denom":"ASSET2","index":"0.000011900504471474"},{"denom":"ASSET3","index":"0.000003421471968689"},{"denom":"ASSET4","index":"0.000032315799104663"},{"denom":"ASSET5","index":"0.000002685067080734"},{"denom":"ASSET6","index":"0.000010972584355185"},{"denom":"ASSET7","index":"0.000016949352231472"},{"denom":"ASSET8","index":"0.000024486444648256"},{"denom":"ASSET9","index":"0.000009794702493328"}],"last_reward_claim_height":"188"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET11","shares":"406811204.771903206814149549","reward_history":[{"denom":"ASSET0","index":"0.000003131246414749"},{"denom":"ASSET1","index":"0.000026589761836242"},{"denom":"ASSET10","index":"0.000021355242603721"},{"denom":"ASSET11","index":"0.000026458316408852"},{"denom":"ASSET12","index":"0.000025293988029420"},{"denom":"ASSET13","index":"0.000008316673174883"},{"denom":"ASSET14","index":"0.000024263343459355"},{"denom":"ASSET15","index":"0.000019213959771091"},{"denom":"ASSET16","index":"0.000011784585795875"},{"denom":"ASSET17","index":"0.000009292893547134"},{"denom":"ASSET18","index":"0.000003813004198036"},{"denom":"ASSET2","index":"0.000008060944762894"},{"denom":"ASSET3","index":"0.000002234070199415"},{"denom":"ASSET4","index":"0.000021557233504015"},{"denom":"ASSET5","index":"0.000001738116490695"},{"denom":"ASSET6","index":"0.000007021386599103"},{"denom":"ASSET7","index":"0.000011043212117572"},{"denom":"ASSET8","index":"0.000015117900391662"},{"denom":"ASSET9","index":"0.000006411442995536"}],"last_reward_claim_height":"148"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET13","shares":"754174977.126610002340774315","reward_history":[{"denom":"ASSET0","index":"0.000003131246414749"},{"denom":"ASSET1","index":"0.000026589761836242"},{"denom":"ASSET10","index":"0.000021355242603721"},{"denom":"ASSET11","index":"0.000026458316408852"},{"denom":"ASSET12","index":"0.000025293988029420"},{"denom":"ASSET13","index":"0.000008316673174883"},{"denom":"ASSET14","index":"0.000024263343459355"},{"denom":"ASSET15","index":"0.000019213959771091"},{"denom":"ASSET16","index":"0.000011784585795875"},{"denom":"ASSET17","index":"0.000009292893547134"},{"denom":"ASSET18","index":"0.000003813004198036"},{"denom":"ASSET2","index":"0.000008060944762894"},{"denom":"ASSET3","index":"0.000002234070199415"},{"denom":"ASSET4","index":"0.000021557233504015"},{"denom":"ASSET5","index":"0.000001738116490695"},{"denom":"ASSET6","index":"0.000007021386599103"},{"denom":"ASSET7","index":"0.000011043212117572"},{"denom":"ASSET8","index":"0.000015117900391662"},{"denom":"ASSET9","index":"0.000006411442995536"}],"last_reward_claim_height":"128"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET15","shares":"485645663.000000001436019726","reward_history":[],"last_reward_claim_height":"20"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET18","shares":"460205656.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001507638919625"},{"denom":"ASSET1","index":"0.000012569401049902"},{"denom":"ASSET10","index":"0.000008757228353136"},{"denom":"ASSET11","index":"0.000012160184771718"},{"denom":"ASSET12","index":"0.000010949766096248"},{"denom":"ASSET13","index":"0.000003769097299062"},{"denom":"ASSET14","index":"0.000011358982374432"},{"denom":"ASSET15","index":"0.000008124020006893"},{"denom":"ASSET16","index":"0.000005660107258249"},{"denom":"ASSET17","index":"0.000004018934605743"},{"denom":"ASSET18","index":"0.000001912547658039"},{"denom":"ASSET2","index":"0.000003708791742277"},{"denom":"ASSET3","index":"0.000001085500022130"},{"denom":"ASSET4","index":"0.000010217484335287"},{"denom":"ASSET5","index":"0.000000839970255220"},{"denom":"ASSET6","index":"0.000003428801657204"},{"denom":"ASSET7","index":"0.000005250890980065"},{"denom":"ASSET8","index":"0.000006853295774638"},{"denom":"ASSET9","index":"0.000002959279822235"}],"last_reward_claim_height":"106"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET0","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001538667310820"},{"denom":"ASSET1","index":"0.000012827917927858"},{"denom":"ASSET10","index":"0.000008937244372687"},{"denom":"ASSET11","index":"0.000012409488429871"},{"denom":"ASSET12","index":"0.000011174685151587"},{"denom":"ASSET13","index":"0.000003845530209513"},{"denom":"ASSET14","index":"0.000011592355937882"},{"denom":"ASSET15","index":"0.000008288166520415"},{"denom":"ASSET16","index":"0.000005778727600031"},{"denom":"ASSET17","index":"0.000004103871540546"},{"denom":"ASSET18","index":"0.000001954820673732"},{"denom":"ASSET2","index":"0.000003786730053405"},{"denom":"ASSET3","index":"0.000001107719069920"},{"denom":"ASSET4","index":"0.000010424698644316"},{"denom":"ASSET5","index":"0.000000859620346726"},{"denom":"ASSET6","index":"0.000003499178322240"},{"denom":"ASSET7","index":"0.000005359160034507"},{"denom":"ASSET8","index":"0.000006993045662639"},{"denom":"ASSET9","index":"0.000003020431244761"}],"last_reward_claim_height":"107"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET1","shares":"354713885.000000000709427770","reward_history":[],"last_reward_claim_height":"42"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET2","shares":"284351029.224550641592199345","reward_history":[{"denom":"ASSET0","index":"0.000001538667310820"},{"denom":"ASSET1","index":"0.000012827917927858"},{"denom":"ASSET10","index":"0.000008937244372687"},{"denom":"ASSET11","index":"0.000012409488429871"},{"denom":"ASSET12","index":"0.000011174685151587"},{"denom":"ASSET13","index":"0.000003845530209513"},{"denom":"ASSET14","index":"0.000011592355937882"},{"denom":"ASSET15","index":"0.000008288166520415"},{"denom":"ASSET16","index":"0.000005778727600031"},{"denom":"ASSET17","index":"0.000004103871540546"},{"denom":"ASSET18","index":"0.000001954820673732"},{"denom":"ASSET2","index":"0.000003786730053405"},{"denom":"ASSET3","index":"0.000001107719069920"},{"denom":"ASSET4","index":"0.000010424698644316"},{"denom":"ASSET5","index":"0.000000859620346726"},{"denom":"ASSET6","index":"0.000003499178322240"},{"denom":"ASSET7","index":"0.000005359160034507"},{"denom":"ASSET8","index":"0.000006993045662639"},{"denom":"ASSET9","index":"0.000003020431244761"}],"last_reward_claim_height":"114"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET8","shares":"1145125812.108104289528588002","reward_history":[{"denom":"ASSET0","index":"0.000003070496060295"},{"denom":"ASSET1","index":"0.000026054009108675"},{"denom":"ASSET10","index":"0.000020821706468932"},{"denom":"ASSET11","index":"0.000025897661631707"},{"denom":"ASSET12","index":"0.000024706407518076"},{"denom":"ASSET13","index":"0.000008135385272267"},{"denom":"ASSET14","index":"0.000023765921524780"},{"denom":"ASSET15","index":"0.000018749935123185"},{"denom":"ASSET16","index":"0.000011556337558875"},{"denom":"ASSET17","index":"0.000009079232430047"},{"denom":"ASSET18","index":"0.000003747682066764"},{"denom":"ASSET2","index":"0.000007892419371659"},{"denom":"ASSET3","index":"0.000002191201298955"},{"denom":"ASSET4","index":"0.000021122052487200"},{"denom":"ASSET5","index":"0.000001706992646915"},{"denom":"ASSET6","index":"0.000006888142834266"},{"denom":"ASSET7","index":"0.000010823268476718"},{"denom":"ASSET8","index":"0.000014789657857476"},{"denom":"ASSET9","index":"0.000006276911852268"}],"last_reward_claim_height":"125"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET12","shares":"624074855.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001538667310820"},{"denom":"ASSET1","index":"0.000012827917927858"},{"denom":"ASSET10","index":"0.000008937244372687"},{"denom":"ASSET11","index":"0.000012409488429871"},{"denom":"ASSET12","index":"0.000011174685151587"},{"denom":"ASSET13","index":"0.000003845530209513"},{"denom":"ASSET14","index":"0.000011592355937882"},{"denom":"ASSET15","index":"0.000008288166520415"},{"denom":"ASSET16","index":"0.000005778727600031"},{"denom":"ASSET17","index":"0.000004103871540546"},{"denom":"ASSET18","index":"0.000001954820673732"},{"denom":"ASSET2","index":"0.000003786730053405"},{"denom":"ASSET3","index":"0.000001107719069920"},{"denom":"ASSET4","index":"0.000010424698644316"},{"denom":"ASSET5","index":"0.000000859620346726"},{"denom":"ASSET6","index":"0.000003499178322240"},{"denom":"ASSET7","index":"0.000005359160034507"},{"denom":"ASSET8","index":"0.000006993045662639"},{"denom":"ASSET9","index":"0.000003020431244761"}],"last_reward_claim_height":"91"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET13","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003070496060295"},{"denom":"ASSET1","index":"0.000026054009108675"},{"denom":"ASSET10","index":"0.000020821706468932"},{"denom":"ASSET11","index":"0.000025897661631707"},{"denom":"ASSET12","index":"0.000024706407518076"},{"denom":"ASSET13","index":"0.000008135385272267"},{"denom":"ASSET14","index":"0.000023765921524780"},{"denom":"ASSET15","index":"0.000018749935123185"},{"denom":"ASSET16","index":"0.000011556337558875"},{"denom":"ASSET17","index":"0.000009079232430047"},{"denom":"ASSET18","index":"0.000003747682066764"},{"denom":"ASSET2","index":"0.000007892419371659"},{"denom":"ASSET3","index":"0.000002191201298955"},{"denom":"ASSET4","index":"0.000021122052487200"},{"denom":"ASSET5","index":"0.000001706992646915"},{"denom":"ASSET6","index":"0.000006888142834266"},{"denom":"ASSET7","index":"0.000010823268476718"},{"denom":"ASSET8","index":"0.000014789657857476"},{"denom":"ASSET9","index":"0.000006276911852268"}],"last_reward_claim_height":"156"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET13","shares":"16271167.244089896434823904","reward_history":[{"denom":"ASSET0","index":"0.000003295755498274"},{"denom":"ASSET1","index":"0.000027960125957180"},{"denom":"ASSET10","index":"0.000022298091456525"},{"denom":"ASSET11","index":"0.000027779779629540"},{"denom":"ASSET12","index":"0.000026478335493542"},{"denom":"ASSET13","index":"0.000008724566942758"},{"denom":"ASSET14","index":"0.000025500389224880"},{"denom":"ASSET15","index":"0.000020088119547171"},{"denom":"ASSET16","index":"0.000012404652968467"},{"denom":"ASSET17","index":"0.000009730254100732"},{"denom":"ASSET18","index":"0.000004025857251145"},{"denom":"ASSET2","index":"0.000008465992991141"},{"denom":"ASSET3","index":"0.000002352288079447"},{"denom":"ASSET4","index":"0.000022667879187178"},{"denom":"ASSET5","index":"0.000001832649164275"},{"denom":"ASSET6","index":"0.000007396215489940"},{"denom":"ASSET7","index":"0.000011616026271508"},{"denom":"ASSET8","index":"0.000015861127767022"},{"denom":"ASSET9","index":"0.000006733269226830"}],"last_reward_claim_height":"175"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET15","shares":"658854088.355761734771958356","reward_history":[{"denom":"ASSET0","index":"0.000004891719865072"},{"denom":"ASSET1","index":"0.000040072863779743"},{"denom":"ASSET10","index":"0.000034599304409835"},{"denom":"ASSET11","index":"0.000041579421937236"},{"denom":"ASSET12","index":"0.000039570241536796"},{"denom":"ASSET13","index":"0.000013401388142896"},{"denom":"ASSET14","index":"0.000038360085576662"},{"denom":"ASSET15","index":"0.000031066535588374"},{"denom":"ASSET16","index":"0.000017782615538969"},{"denom":"ASSET17","index":"0.000014378613126430"},{"denom":"ASSET18","index":"0.000005978292997826"},{"denom":"ASSET2","index":"0.000012095614431682"},{"denom":"ASSET3","index":"0.000003474461371717"},{"denom":"ASSET4","index":"0.000032837900054333"},{"denom":"ASSET5","index":"0.000002727819260398"},{"denom":"ASSET6","index":"0.000011131008136035"},{"denom":"ASSET7","index":"0.000017198777658106"},{"denom":"ASSET8","index":"0.000024717029214278"},{"denom":"ASSET9","index":"0.000009931445754815"}],"last_reward_claim_height":"187"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET7","shares":"7185613.532318211389166561","reward_history":[{"denom":"ASSET0","index":"0.000001488486853561"},{"denom":"ASSET1","index":"0.000012409943784184"},{"denom":"ASSET10","index":"0.000008645838046025"},{"denom":"ASSET11","index":"0.000012005445379346"},{"denom":"ASSET12","index":"0.000010810451131374"},{"denom":"ASSET13","index":"0.000003720376180879"},{"denom":"ASSET14","index":"0.000011214949536212"},{"denom":"ASSET15","index":"0.000008018487089665"},{"denom":"ASSET16","index":"0.000005590655707614"},{"denom":"ASSET17","index":"0.000003970139229188"},{"denom":"ASSET18","index":"0.000001891303352350"},{"denom":"ASSET2","index":"0.000003663191375205"},{"denom":"ASSET3","index":"0.000001071374153354"},{"denom":"ASSET4","index":"0.000010085549624159"},{"denom":"ASSET5","index":"0.000000831702541340"},{"denom":"ASSET6","index":"0.000003384835924059"},{"denom":"ASSET7","index":"0.000005184475396726"},{"denom":"ASSET8","index":"0.000006765467082995"},{"denom":"ASSET9","index":"0.000002921470807498"}],"last_reward_claim_height":"63"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET17","shares":"924666330.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003140601357292"},{"denom":"ASSET1","index":"0.000026678854887219"},{"denom":"ASSET10","index":"0.000021467437308134"},{"denom":"ASSET11","index":"0.000026557150856893"},{"denom":"ASSET12","index":"0.000025409189778577"},{"denom":"ASSET13","index":"0.000008348678217638"},{"denom":"ASSET14","index":"0.000024348515645151"},{"denom":"ASSET15","index":"0.000019305257093893"},{"denom":"ASSET16","index":"0.000011824039078448"},{"denom":"ASSET17","index":"0.000009337874135725"},{"denom":"ASSET18","index":"0.000003825021517438"},{"denom":"ASSET2","index":"0.000008092644314938"},{"denom":"ASSET3","index":"0.000002240059115813"},{"denom":"ASSET4","index":"0.000021626536887159"},{"denom":"ASSET5","index":"0.000001745574888449"},{"denom":"ASSET6","index":"0.000007040920669072"},{"denom":"ASSET7","index":"0.000011079696231301"},{"denom":"ASSET8","index":"0.000015176664815864"},{"denom":"ASSET9","index":"0.000006434669973810"}],"last_reward_claim_height":"153"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET18","shares":"680280413.255578339254085760","reward_history":[{"denom":"ASSET0","index":"0.000003140601357292"},{"denom":"ASSET1","index":"0.000026678854887219"},{"denom":"ASSET10","index":"0.000021467437308134"},{"denom":"ASSET11","index":"0.000026557150856893"},{"denom":"ASSET12","index":"0.000025409189778577"},{"denom":"ASSET13","index":"0.000008348678217638"},{"denom":"ASSET14","index":"0.000024348515645151"},{"denom":"ASSET15","index":"0.000019305257093893"},{"denom":"ASSET16","index":"0.000011824039078448"},{"denom":"ASSET17","index":"0.000009337874135725"},{"denom":"ASSET18","index":"0.000003825021517438"},{"denom":"ASSET2","index":"0.000008092644314938"},{"denom":"ASSET3","index":"0.000002240059115813"},{"denom":"ASSET4","index":"0.000021626536887159"},{"denom":"ASSET5","index":"0.000001745574888449"},{"denom":"ASSET6","index":"0.000007040920669072"},{"denom":"ASSET7","index":"0.000011079696231301"},{"denom":"ASSET8","index":"0.000015176664815864"},{"denom":"ASSET9","index":"0.000006434669973810"}],"last_reward_claim_height":"157"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET8","shares":"267679428.754504131610311951","reward_history":[{"denom":"ASSET0","index":"0.000002978674281858"},{"denom":"ASSET1","index":"0.000025310372422717"},{"denom":"ASSET10","index":"0.000020411345436720"},{"denom":"ASSET11","index":"0.000025206262983954"},{"denom":"ASSET12","index":"0.000024139567910062"},{"denom":"ASSET13","index":"0.000007924745788344"},{"denom":"ASSET14","index":"0.000023102636423037"},{"denom":"ASSET15","index":"0.000018346974201526"},{"denom":"ASSET16","index":"0.000011213830154915"},{"denom":"ASSET17","index":"0.000008871351161454"},{"denom":"ASSET18","index":"0.000003625142276595"},{"denom":"ASSET2","index":"0.000007680838181843"},{"denom":"ASSET3","index":"0.000002123796319816"},{"denom":"ASSET4","index":"0.000020514843977806"},{"denom":"ASSET5","index":"0.000001655567492872"},{"denom":"ASSET6","index":"0.000006676037052519"},{"denom":"ASSET7","index":"0.000010510115662832"},{"denom":"ASSET8","index":"0.000014407133239162"},{"denom":"ASSET9","index":"0.000006107008804836"}],"last_reward_claim_height":"165"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET6","shares":"960954349.998364719577623435","reward_history":[{"denom":"ASSET0","index":"0.000003115193601728"},{"denom":"ASSET1","index":"0.000026433576226141"},{"denom":"ASSET10","index":"0.000021120836274624"},{"denom":"ASSET11","index":"0.000026274076149270"},{"denom":"ASSET12","index":"0.000025063206789151"},{"denom":"ASSET13","index":"0.000008253838888439"},{"denom":"ASSET14","index":"0.000024111622086359"},{"denom":"ASSET15","index":"0.000019020166052921"},{"denom":"ASSET16","index":"0.000011725264187843"},{"denom":"ASSET17","index":"0.000009210335248597"},{"denom":"ASSET18","index":"0.000003802618681808"},{"denom":"ASSET2","index":"0.000008007094168018"},{"denom":"ASSET3","index":"0.000002223045227271"},{"denom":"ASSET4","index":"0.000021430343290469"},{"denom":"ASSET5","index":"0.000001731871182363"},{"denom":"ASSET6","index":"0.000006989160352022"},{"denom":"ASSET7","index":"0.000010981276608696"},{"denom":"ASSET8","index":"0.000015004007461071"},{"denom":"ASSET9","index":"0.000006368316319391"}],"last_reward_claim_height":"183"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET8","shares":"1000053538.034377310000000000","reward_history":[{"denom":"ASSET0","index":"0.000001563741356289"},{"denom":"ASSET1","index":"0.000013036816883138"},{"denom":"ASSET10","index":"0.000009082880828100"},{"denom":"ASSET11","index":"0.000012611783735587"},{"denom":"ASSET12","index":"0.000011356772924286"},{"denom":"ASSET13","index":"0.000003908472310400"},{"denom":"ASSET14","index":"0.000011781101207579"},{"denom":"ASSET15","index":"0.000008423480314776"},{"denom":"ASSET16","index":"0.000005872928997340"},{"denom":"ASSET17","index":"0.000004170681814362"},{"denom":"ASSET18","index":"0.000001986659911066"},{"denom":"ASSET2","index":"0.000003848558848473"},{"denom":"ASSET3","index":"0.000001125668219966"},{"denom":"ASSET4","index":"0.000010594814661429"},{"denom":"ASSET5","index":"0.000000873679247744"},{"denom":"ASSET6","index":"0.000003556392613548"},{"denom":"ASSET7","index":"0.000005446486121273"},{"denom":"ASSET8","index":"0.000007106793880903"},{"denom":"ASSET9","index":"0.000003069683843425"}],"last_reward_claim_height":"99"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET18","shares":"247341017.999999971308441912","reward_history":[],"last_reward_claim_height":"59"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET5","shares":"802645291.865535496334771500","reward_history":[{"denom":"ASSET0","index":"0.000001688791638136"},{"denom":"ASSET1","index":"0.000014080258863939"},{"denom":"ASSET10","index":"0.000009809129194434"},{"denom":"ASSET11","index":"0.000013620783833550"},{"denom":"ASSET12","index":"0.000012265553395360"},{"denom":"ASSET13","index":"0.000004220322334414"},{"denom":"ASSET14","index":"0.000012723923918464"},{"denom":"ASSET15","index":"0.000009096721995874"},{"denom":"ASSET16","index":"0.000006342080828109"},{"denom":"ASSET17","index":"0.000004504180706554"},{"denom":"ASSET18","index":"0.000002144953146672"},{"denom":"ASSET2","index":"0.000004156260911908"},{"denom":"ASSET3","index":"0.000001214958013048"},{"denom":"ASSET4","index":"0.000011442695468341"},{"denom":"ASSET5","index":"0.000000943249221039"},{"denom":"ASSET6","index":"0.000003840371828516"},{"denom":"ASSET7","index":"0.000005881501290436"},{"denom":"ASSET8","index":"0.000007675221120608"},{"denom":"ASSET9","index":"0.000003314626361051"}],"last_reward_claim_height":"85"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET8","shares":"870491745.333532461983485296","reward_history":[{"denom":"ASSET0","index":"0.000003342989987813"},{"denom":"ASSET1","index":"0.000028363859076608"},{"denom":"ASSET10","index":"0.000022643596968544"},{"denom":"ASSET11","index":"0.000028187678804911"},{"denom":"ASSET12","index":"0.000026879157824253"},{"denom":"ASSET13","index":"0.000008853292918908"},{"denom":"ASSET14","index":"0.000025870927331183"},{"denom":"ASSET15","index":"0.000020395094195043"},{"denom":"ASSET16","index":"0.000012581780801373"},{"denom":"ASSET17","index":"0.000009877287329505"},{"denom":"ASSET18","index":"0.000004080927248291"},{"denom":"ASSET2","index":"0.000008590241612281"},{"denom":"ASSET3","index":"0.000002384972961476"},{"denom":"ASSET4","index":"0.000022995501297970"},{"denom":"ASSET5","index":"0.000001858071035633"},{"denom":"ASSET6","index":"0.000007500418590266"},{"denom":"ASSET7","index":"0.000011782462758670"},{"denom":"ASSET8","index":"0.000016095075530395"},{"denom":"ASSET9","index":"0.000006831506736707"}],"last_reward_claim_height":"161"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET9","shares":"401624372.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001688791638136"},{"denom":"ASSET1","index":"0.000014080258863939"},{"denom":"ASSET10","index":"0.000009809129194434"},{"denom":"ASSET11","index":"0.000013620783833550"},{"denom":"ASSET12","index":"0.000012265553395360"},{"denom":"ASSET13","index":"0.000004220322334414"},{"denom":"ASSET14","index":"0.000012723923918464"},{"denom":"ASSET15","index":"0.000009096721995874"},{"denom":"ASSET16","index":"0.000006342080828109"},{"denom":"ASSET17","index":"0.000004504180706554"},{"denom":"ASSET18","index":"0.000002144953146672"},{"denom":"ASSET2","index":"0.000004156260911908"},{"denom":"ASSET3","index":"0.000001214958013048"},{"denom":"ASSET4","index":"0.000011442695468341"},{"denom":"ASSET5","index":"0.000000943249221039"},{"denom":"ASSET6","index":"0.000003840371828516"},{"denom":"ASSET7","index":"0.000005881501290436"},{"denom":"ASSET8","index":"0.000007675221120608"},{"denom":"ASSET9","index":"0.000003314626361051"}],"last_reward_claim_height":"101"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET17","shares":"1000065446.983203437000000000","reward_history":[{"denom":"ASSET0","index":"0.000003342989987813"},{"denom":"ASSET1","index":"0.000028363859076608"},{"denom":"ASSET10","index":"0.000022643596968544"},{"denom":"ASSET11","index":"0.000028187678804911"},{"denom":"ASSET12","index":"0.000026879157824253"},{"denom":"ASSET13","index":"0.000008853292918908"},{"denom":"ASSET14","index":"0.000025870927331183"},{"denom":"ASSET15","index":"0.000020395094195043"},{"denom":"ASSET16","index":"0.000012581780801373"},{"denom":"ASSET17","index":"0.000009877287329505"},{"denom":"ASSET18","index":"0.000004080927248291"},{"denom":"ASSET2","index":"0.000008590241612281"},{"denom":"ASSET3","index":"0.000002384972961476"},{"denom":"ASSET4","index":"0.000022995501297970"},{"denom":"ASSET5","index":"0.000001858071035633"},{"denom":"ASSET6","index":"0.000007500418590266"},{"denom":"ASSET7","index":"0.000011782462758670"},{"denom":"ASSET8","index":"0.000016095075530395"},{"denom":"ASSET9","index":"0.000006831506736707"}],"last_reward_claim_height":"146"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET7","shares":"2312461.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001571496317510"},{"denom":"ASSET1","index":"0.000013101483241955"},{"denom":"ASSET10","index":"0.000009127906315185"},{"denom":"ASSET11","index":"0.000012674221268720"},{"denom":"ASSET12","index":"0.000011413128948859"},{"denom":"ASSET13","index":"0.000003927726401627"},{"denom":"ASSET14","index":"0.000011839579408375"},{"denom":"ASSET15","index":"0.000008464899606481"},{"denom":"ASSET16","index":"0.000005901733523932"},{"denom":"ASSET17","index":"0.000004191468360414"},{"denom":"ASSET18","index":"0.000001996729506447"},{"denom":"ASSET2","index":"0.000003867268629536"},{"denom":"ASSET3","index":"0.000001131250124766"},{"denom":"ASSET4","index":"0.000010647059997798"},{"denom":"ASSET5","index":"0.000000878057844331"},{"denom":"ASSET6","index":"0.000003573906419993"},{"denom":"ASSET7","index":"0.000005473254280118"},{"denom":"ASSET8","index":"0.000007142132243950"},{"denom":"ASSET9","index":"0.000003084563647228"}],"last_reward_claim_height":"115"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET15","shares":"479272425.883581096146541683","reward_history":[{"denom":"ASSET0","index":"0.000004669971272186"},{"denom":"ASSET1","index":"0.000038231704002672"},{"denom":"ASSET10","index":"0.000033091250938378"},{"denom":"ASSET11","index":"0.000039713430623018"},{"denom":"ASSET12","index":"0.000037806000956516"},{"denom":"ASSET13","index":"0.000012808127444565"},{"denom":"ASSET14","index":"0.000036638483282357"},{"denom":"ASSET15","index":"0.000029705512900617"},{"denom":"ASSET16","index":"0.000016963968278157"},{"denom":"ASSET17","index":"0.000013734289189195"},{"denom":"ASSET18","index":"0.000005705789092476"},{"denom":"ASSET2","index":"0.000011540719323858"},{"denom":"ASSET3","index":"0.000003316647299566"},{"denom":"ASSET4","index":"0.000031336158437819"},{"denom":"ASSET5","index":"0.000002604041216482"},{"denom":"ASSET6","index":"0.000010629036009854"},{"denom":"ASSET7","index":"0.000016420030654063"},{"denom":"ASSET8","index":"0.000023629608551740"},{"denom":"ASSET9","index":"0.000009482511489526"}],"last_reward_claim_height":"187"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET7","shares":"104682741.627565327747477018","reward_history":[{"denom":"ASSET0","index":"0.000001486431692511"},{"denom":"ASSET1","index":"0.000012397696164316"},{"denom":"ASSET10","index":"0.000008637613387551"},{"denom":"ASSET11","index":"0.000011993186507636"},{"denom":"ASSET12","index":"0.000010799842650204"},{"denom":"ASSET13","index":"0.000003716482933529"},{"denom":"ASSET14","index":"0.000011203544902380"},{"denom":"ASSET15","index":"0.000008010260087670"},{"denom":"ASSET16","index":"0.000005584816956599"},{"denom":"ASSET17","index":"0.000003965970925374"},{"denom":"ASSET18","index":"0.000001889326540182"},{"denom":"ASSET2","index":"0.000003659157213720"},{"denom":"ASSET3","index":"0.000001070618372770"},{"denom":"ASSET4","index":"0.000010074793405297"},{"denom":"ASSET5","index":"0.000000830819234978"},{"denom":"ASSET6","index":"0.000003381410064224"},{"denom":"ASSET7","index":"0.000005179499895414"},{"denom":"ASSET8","index":"0.000006757975701421"},{"denom":"ASSET9","index":"0.000002918767283230"}],"last_reward_claim_height":"84"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET18","shares":"319433774.210626525168258008","reward_history":[{"denom":"ASSET0","index":"0.000001486431692511"},{"denom":"ASSET1","index":"0.000012397696164316"},{"denom":"ASSET10","index":"0.000008637613387551"},{"denom":"ASSET11","index":"0.000011993186507636"},{"denom":"ASSET12","index":"0.000010799842650204"},{"denom":"ASSET13","index":"0.000003716482933529"},{"denom":"ASSET14","index":"0.000011203544902380"},{"denom":"ASSET15","index":"0.000008010260087670"},{"denom":"ASSET16","index":"0.000005584816956599"},{"denom":"ASSET17","index":"0.000003965970925374"},{"denom":"ASSET18","index":"0.000001889326540182"},{"denom":"ASSET2","index":"0.000003659157213720"},{"denom":"ASSET3","index":"0.000001070618372770"},{"denom":"ASSET4","index":"0.000010074793405297"},{"denom":"ASSET5","index":"0.000000830819234978"},{"denom":"ASSET6","index":"0.000003381410064224"},{"denom":"ASSET7","index":"0.000005179499895414"},{"denom":"ASSET8","index":"0.000006757975701421"},{"denom":"ASSET9","index":"0.000002918767283230"}],"last_reward_claim_height":"100"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET7","shares":"345618470.000000000000000000","reward_history":[],"last_reward_claim_height":"5"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET0","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004555079465444"},{"denom":"ASSET1","index":"0.000037273549067376"},{"denom":"ASSET10","index":"0.000032327684804267"},{"denom":"ASSET11","index":"0.000038750612688183"},{"denom":"ASSET12","index":"0.000036903207760820"},{"denom":"ASSET13","index":"0.000012503456656218"},{"denom":"ASSET14","index":"0.000035748189968481"},{"denom":"ASSET15","index":"0.000029013847228438"},{"denom":"ASSET16","index":"0.000016537106119195"},{"denom":"ASSET17","index":"0.000013404148016668"},{"denom":"ASSET18","index":"0.000005562876043231"},{"denom":"ASSET2","index":"0.000011253659411821"},{"denom":"ASSET3","index":"0.000003234713826536"},{"denom":"ASSET4","index":"0.000030555670866593"},{"denom":"ASSET5","index":"0.000002539995571455"},{"denom":"ASSET6","index":"0.000010366930709039"},{"denom":"ASSET7","index":"0.000016015414742941"},{"denom":"ASSET8","index":"0.000023070708179395"},{"denom":"ASSET9","index":"0.000009250489531619"}],"last_reward_claim_height":"199"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET10","shares":"442236422.000000000000000000","reward_history":[],"last_reward_claim_height":"9"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET11","shares":"1000088082.939582032000000000","reward_history":[{"denom":"ASSET0","index":"0.000003015423229771"},{"denom":"ASSET1","index":"0.000025588098096649"},{"denom":"ASSET10","index":"0.000020460473772645"},{"denom":"ASSET11","index":"0.000025438043766359"},{"denom":"ASSET12","index":"0.000024273358860204"},{"denom":"ASSET13","index":"0.000007991752317173"},{"denom":"ASSET14","index":"0.000023342063892494"},{"denom":"ASSET15","index":"0.000018422728556898"},{"denom":"ASSET16","index":"0.000011348811151398"},{"denom":"ASSET17","index":"0.000008919790197810"},{"denom":"ASSET18","index":"0.000003679502338318"},{"denom":"ASSET2","index":"0.000007752126098631"},{"denom":"ASSET3","index":"0.000002151933074669"},{"denom":"ASSET4","index":"0.000020744635257959"},{"denom":"ASSET5","index":"0.000001676458472807"},{"denom":"ASSET6","index":"0.000006763790928604"},{"denom":"ASSET7","index":"0.000010629564741383"},{"denom":"ASSET8","index":"0.000014527278079751"},{"denom":"ASSET9","index":"0.000006165283413682"}],"last_reward_claim_height":"182"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET0","shares":"90220026.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003452635056994"},{"denom":"ASSET1","index":"0.000029280443630050"},{"denom":"ASSET10","index":"0.000023297581891953"},{"denom":"ASSET11","index":"0.000029078046899152"},{"denom":"ASSET12","index":"0.000027688393753974"},{"denom":"ASSET13","index":"0.000009130247174920"},{"denom":"ASSET14","index":"0.000026700258191979"},{"denom":"ASSET15","index":"0.000020998119885469"},{"denom":"ASSET16","index":"0.000012993858989816"},{"denom":"ASSET17","index":"0.000010174919177657"},{"denom":"ASSET18","index":"0.000004220034662939"},{"denom":"ASSET2","index":"0.000008861755768133"},{"denom":"ASSET3","index":"0.000002464736347038"},{"denom":"ASSET4","index":"0.000023740327943060"},{"denom":"ASSET5","index":"0.000001919615043943"},{"denom":"ASSET6","index":"0.000007749671229698"},{"denom":"ASSET7","index":"0.000012165961282812"},{"denom":"ASSET8","index":"0.000016598407083950"},{"denom":"ASSET9","index":"0.000007048985746822"}],"last_reward_claim_height":"124"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET3","shares":"453737273.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001790270882045"},{"denom":"ASSET1","index":"0.000014924962381265"},{"denom":"ASSET10","index":"0.000010398687848362"},{"denom":"ASSET11","index":"0.000014438353512768"},{"denom":"ASSET12","index":"0.000013001639266884"},{"denom":"ASSET13","index":"0.000004474427888377"},{"denom":"ASSET14","index":"0.000013487623477013"},{"denom":"ASSET15","index":"0.000009643475881721"},{"denom":"ASSET16","index":"0.000006723198012370"},{"denom":"ASSET17","index":"0.000004774888563278"},{"denom":"ASSET18","index":"0.000002274381117071"},{"denom":"ASSET2","index":"0.000004405715467922"},{"denom":"ASSET3","index":"0.000001288670212721"},{"denom":"ASSET4","index":"0.000012129616185469"},{"denom":"ASSET5","index":"0.000001000078046809"},{"denom":"ASSET6","index":"0.000004071523241162"},{"denom":"ASSET7","index":"0.000006235339827137"},{"denom":"ASSET8","index":"0.000008136175240279"},{"denom":"ASSET9","index":"0.000003514327977106"}],"last_reward_claim_height":"103"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET8","shares":"693708890.000000000000000000","reward_history":[],"last_reward_claim_height":"40"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET17","shares":"697095839.000000016033204297","reward_history":[{"denom":"ASSET0","index":"0.000001790270882045"},{"denom":"ASSET1","index":"0.000014924962381265"},{"denom":"ASSET10","index":"0.000010398687848362"},{"denom":"ASSET11","index":"0.000014438353512768"},{"denom":"ASSET12","index":"0.000013001639266884"},{"denom":"ASSET13","index":"0.000004474427888377"},{"denom":"ASSET14","index":"0.000013487623477013"},{"denom":"ASSET15","index":"0.000009643475881721"},{"denom":"ASSET16","index":"0.000006723198012370"},{"denom":"ASSET17","index":"0.000004774888563278"},{"denom":"ASSET18","index":"0.000002274381117071"},{"denom":"ASSET2","index":"0.000004405715467922"},{"denom":"ASSET3","index":"0.000001288670212721"},{"denom":"ASSET4","index":"0.000012129616185469"},{"denom":"ASSET5","index":"0.000001000078046809"},{"denom":"ASSET6","index":"0.000004071523241162"},{"denom":"ASSET7","index":"0.000006235339827137"},{"denom":"ASSET8","index":"0.000008136175240279"},{"denom":"ASSET9","index":"0.000003514327977106"}],"last_reward_claim_height":"94"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET5","shares":"489023711.380273746637990656","reward_history":[{"denom":"ASSET0","index":"0.000004966120290331"},{"denom":"ASSET1","index":"0.000040690544144156"},{"denom":"ASSET10","index":"0.000035008616018986"},{"denom":"ASSET11","index":"0.000042171157431549"},{"denom":"ASSET12","index":"0.000040093293320436"},{"denom":"ASSET13","index":"0.000013583728581688"},{"denom":"ASSET14","index":"0.000038916162839599"},{"denom":"ASSET15","index":"0.000031450025763049"},{"denom":"ASSET16","index":"0.000018062966317414"},{"denom":"ASSET17","index":"0.000014570933713275"},{"denom":"ASSET18","index":"0.000006073753693017"},{"denom":"ASSET2","index":"0.000012276212695773"},{"denom":"ASSET3","index":"0.000003528975238030"},{"denom":"ASSET4","index":"0.000033340338954974"},{"denom":"ASSET5","index":"0.000002768929808594"},{"denom":"ASSET6","index":"0.000011300425346446"},{"denom":"ASSET7","index":"0.000017457146665459"},{"denom":"ASSET8","index":"0.000025048210849575"},{"denom":"ASSET9","index":"0.000010075937377830"}],"last_reward_claim_height":"193"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET7","shares":"753531065.068626723717395685","reward_history":[{"denom":"ASSET0","index":"0.000003371223111771"},{"denom":"ASSET1","index":"0.000028586584995448"},{"denom":"ASSET10","index":"0.000022716281614844"},{"denom":"ASSET11","index":"0.000028381809067472"},{"denom":"ASSET12","index":"0.000027011101270499"},{"denom":"ASSET13","index":"0.000008910504058238"},{"denom":"ASSET14","index":"0.000026065694327630"},{"denom":"ASSET15","index":"0.000020479714095343"},{"denom":"ASSET16","index":"0.000012688778091614"},{"denom":"ASSET17","index":"0.000009925875585388"},{"denom":"ASSET18","index":"0.000004122881217339"},{"denom":"ASSET2","index":"0.000008649339803247"},{"denom":"ASSET3","index":"0.000002407313457267"},{"denom":"ASSET4","index":"0.000023177863483423"},{"denom":"ASSET5","index":"0.000001874397047373"},{"denom":"ASSET6","index":"0.000007568278053481"},{"denom":"ASSET7","index":"0.000011878402488901"},{"denom":"ASSET8","index":"0.000016198768839280"},{"denom":"ASSET9","index":"0.000006880150170591"}],"last_reward_claim_height":"179"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET8","shares":"1000000000.000000003000000000","reward_history":[],"last_reward_claim_height":"34"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET10","shares":"540919203.116784993971947400","reward_history":[{"denom":"ASSET0","index":"0.000003090388166914"},{"denom":"ASSET1","index":"0.000026235396530584"},{"denom":"ASSET10","index":"0.000021016328726441"},{"denom":"ASSET11","index":"0.000026091077525301"},{"denom":"ASSET12","index":"0.000024916432469284"},{"denom":"ASSET13","index":"0.000008198423394567"},{"denom":"ASSET14","index":"0.000023935350029219"},{"denom":"ASSET15","index":"0.000018916111125702"},{"denom":"ASSET16","index":"0.000011633439861257"},{"denom":"ASSET17","index":"0.000009156707623184"},{"denom":"ASSET18","index":"0.000003769226369030"},{"denom":"ASSET2","index":"0.000007950992094695"},{"denom":"ASSET3","index":"0.000002205065882760"},{"denom":"ASSET4","index":"0.000021268551776440"},{"denom":"ASSET5","index":"0.000001717872208784"},{"denom":"ASSET6","index":"0.000006931889619894"},{"denom":"ASSET7","index":"0.000010897757198785"},{"denom":"ASSET8","index":"0.000014903243728132"},{"denom":"ASSET9","index":"0.000006323427167640"}],"last_reward_claim_height":"135"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET2","shares":"166351175.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001518878942956"},{"denom":"ASSET1","index":"0.000012665267621292"},{"denom":"ASSET10","index":"0.000008823986077449"},{"denom":"ASSET11","index":"0.000012252067733139"},{"denom":"ASSET12","index":"0.000011032961258059"},{"denom":"ASSET13","index":"0.000003796959064490"},{"denom":"ASSET14","index":"0.000011445207974612"},{"denom":"ASSET15","index":"0.000008182978177143"},{"denom":"ASSET16","index":"0.000005705208605625"},{"denom":"ASSET17","index":"0.000004051932467214"},{"denom":"ASSET18","index":"0.000001930172487911"},{"denom":"ASSET2","index":"0.000003738815596953"},{"denom":"ASSET3","index":"0.000001093764409816"},{"denom":"ASSET4","index":"0.000010292823511460"},{"denom":"ASSET5","index":"0.000000848799308881"},{"denom":"ASSET6","index":"0.000003454770460461"},{"denom":"ASSET7","index":"0.000005291055545873"},{"denom":"ASSET8","index":"0.000006904298477127"},{"denom":"ASSET9","index":"0.000002981997347372"}],"last_reward_claim_height":"84"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET10","shares":"466768532.984638474883376770","reward_history":[{"denom":"ASSET0","index":"0.000003032310940473"},{"denom":"ASSET1","index":"0.000025733484746235"},{"denom":"ASSET10","index":"0.000020566326171769"},{"denom":"ASSET11","index":"0.000025579130700492"},{"denom":"ASSET12","index":"0.000024402998631681"},{"denom":"ASSET13","index":"0.000008035434808363"},{"denom":"ASSET14","index":"0.000023473377840860"},{"denom":"ASSET15","index":"0.000018519821992016"},{"denom":"ASSET16","index":"0.000011413808805814"},{"denom":"ASSET17","index":"0.000008967671528488"},{"denom":"ASSET18","index":"0.000003701450923042"},{"denom":"ASSET2","index":"0.000007795399667781"},{"denom":"ASSET3","index":"0.000002164126947351"},{"denom":"ASSET4","index":"0.000020862528644023"},{"denom":"ASSET5","index":"0.000001685967393794"},{"denom":"ASSET6","index":"0.000006803442800114"},{"denom":"ASSET7","index":"0.000010689840259007"},{"denom":"ASSET8","index":"0.000014607710652032"},{"denom":"ASSET9","index":"0.000006199747658625"}],"last_reward_claim_height":"179"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET6","shares":"166299561.000000005280171680","reward_history":[],"last_reward_claim_height":"55"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET13","shares":"414907424.930158305160772000","reward_history":[{"denom":"ASSET0","index":"0.000004425863510700"},{"denom":"ASSET1","index":"0.000036160672221872"},{"denom":"ASSET10","index":"0.000031557458061761"},{"denom":"ASSET11","index":"0.000037700664708319"},{"denom":"ASSET12","index":"0.000035928372047662"},{"denom":"ASSET13","index":"0.000012183543527385"},{"denom":"ASSET14","index":"0.000034780774754072"},{"denom":"ASSET15","index":"0.000028307087788627"},{"denom":"ASSET16","index":"0.000016039535319794"},{"denom":"ASSET17","index":"0.000013042771810819"},{"denom":"ASSET18","index":"0.000005402952153823"},{"denom":"ASSET2","index":"0.000010919186373904"},{"denom":"ASSET3","index":"0.000003141880910304"},{"denom":"ASSET4","index":"0.000029659922771182"},{"denom":"ASSET5","index":"0.000002468660048805"},{"denom":"ASSET6","index":"0.000010080499351124"},{"denom":"ASSET7","index":"0.000015564502508768"},{"denom":"ASSET8","index":"0.000022498991790116"},{"denom":"ASSET9","index":"0.000008992113067194"}],"last_reward_claim_height":"188"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET15","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001387661284101"},{"denom":"ASSET1","index":"0.000011573014587468"},{"denom":"ASSET10","index":"0.000008062929395432"},{"denom":"ASSET11","index":"0.000011195232526081"},{"denom":"ASSET12","index":"0.000010081345808669"},{"denom":"ASSET13","index":"0.000003469153210252"},{"denom":"ASSET14","index":"0.000010458456853962"},{"denom":"ASSET15","index":"0.000007477132344649"},{"denom":"ASSET16","index":"0.000005213124040705"},{"denom":"ASSET17","index":"0.000003702666811251"},{"denom":"ASSET18","index":"0.000001763430297203"},{"denom":"ASSET2","index":"0.000003416142938760"},{"denom":"ASSET3","index":"0.000000999142965196"},{"denom":"ASSET4","index":"0.000009404961585085"},{"denom":"ASSET5","index":"0.000000775694605619"},{"denom":"ASSET6","index":"0.000003156459710063"},{"denom":"ASSET7","index":"0.000004834670963223"},{"denom":"ASSET8","index":"0.000006308893323556"},{"denom":"ASSET9","index":"0.000002724996361089"}],"last_reward_claim_height":"73"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET1","shares":"195366306.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003408995344605"},{"denom":"ASSET1","index":"0.000028940875589883"},{"denom":"ASSET10","index":"0.000023121939135123"},{"denom":"ASSET11","index":"0.000028765460883304"},{"denom":"ASSET12","index":"0.000027437813762181"},{"denom":"ASSET13","index":"0.000009035078182388"},{"denom":"ASSET14","index":"0.000026397840013038"},{"denom":"ASSET15","index":"0.000020822021063845"},{"denom":"ASSET16","index":"0.000012835900360827"},{"denom":"ASSET17","index":"0.000010082289518918"},{"denom":"ASSET18","index":"0.000004163537456367"},{"denom":"ASSET2","index":"0.000008764373535196"},{"denom":"ASSET3","index":"0.000002432999591430"},{"denom":"ASSET4","index":"0.000023461370966582"},{"denom":"ASSET5","index":"0.000001895172356369"},{"denom":"ASSET6","index":"0.000007651446569151"},{"denom":"ASSET7","index":"0.000012022926111771"},{"denom":"ASSET8","index":"0.000016426068411072"},{"denom":"ASSET9","index":"0.000006969965423669"}],"last_reward_claim_height":"162"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET2","shares":"371531725.670518468755682825","reward_history":[{"denom":"ASSET0","index":"0.000001711866379191"},{"denom":"ASSET1","index":"0.000014286095556473"},{"denom":"ASSET10","index":"0.000009953932372868"},{"denom":"ASSET11","index":"0.000013820467901333"},{"denom":"ASSET12","index":"0.000012444127332464"},{"denom":"ASSET13","index":"0.000004281948436482"},{"denom":"ASSET14","index":"0.000012909754987604"},{"denom":"ASSET15","index":"0.000009230383516596"},{"denom":"ASSET16","index":"0.000006434335097252"},{"denom":"ASSET17","index":"0.000004569541988186"},{"denom":"ASSET18","index":"0.000002177494034331"},{"denom":"ASSET2","index":"0.000004215756269820"},{"denom":"ASSET3","index":"0.000001232543793017"},{"denom":"ASSET4","index":"0.000011608736539419"},{"denom":"ASSET5","index":"0.000000956362683841"},{"denom":"ASSET6","index":"0.000003896207879038"},{"denom":"ASSET7","index":"0.000005968707442112"},{"denom":"ASSET8","index":"0.000007787850781065"},{"denom":"ASSET9","index":"0.000003362105568731"}],"last_reward_claim_height":"84"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET7","shares":"259496613.861792296929000530","reward_history":[{"denom":"ASSET0","index":"0.000001711866379191"},{"denom":"ASSET1","index":"0.000014286095556473"},{"denom":"ASSET10","index":"0.000009953932372868"},{"denom":"ASSET11","index":"0.000013820467901333"},{"denom":"ASSET12","index":"0.000012444127332464"},{"denom":"ASSET13","index":"0.000004281948436482"},{"denom":"ASSET14","index":"0.000012909754987604"},{"denom":"ASSET15","index":"0.000009230383516596"},{"denom":"ASSET16","index":"0.000006434335097252"},{"denom":"ASSET17","index":"0.000004569541988186"},{"denom":"ASSET18","index":"0.000002177494034331"},{"denom":"ASSET2","index":"0.000004215756269820"},{"denom":"ASSET3","index":"0.000001232543793017"},{"denom":"ASSET4","index":"0.000011608736539419"},{"denom":"ASSET5","index":"0.000000956362683841"},{"denom":"ASSET6","index":"0.000003896207879038"},{"denom":"ASSET7","index":"0.000005968707442112"},{"denom":"ASSET8","index":"0.000007787850781065"},{"denom":"ASSET9","index":"0.000003362105568731"}],"last_reward_claim_height":"91"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET8","shares":"594734780.000000016057839060","reward_history":[{"denom":"ASSET0","index":"0.000003408995344605"},{"denom":"ASSET1","index":"0.000028940875589883"},{"denom":"ASSET10","index":"0.000023121939135123"},{"denom":"ASSET11","index":"0.000028765460883304"},{"denom":"ASSET12","index":"0.000027437813762181"},{"denom":"ASSET13","index":"0.000009035078182388"},{"denom":"ASSET14","index":"0.000026397840013038"},{"denom":"ASSET15","index":"0.000020822021063845"},{"denom":"ASSET16","index":"0.000012835900360827"},{"denom":"ASSET17","index":"0.000010082289518918"},{"denom":"ASSET18","index":"0.000004163537456367"},{"denom":"ASSET2","index":"0.000008764373535196"},{"denom":"ASSET3","index":"0.000002432999591430"},{"denom":"ASSET4","index":"0.000023461370966582"},{"denom":"ASSET5","index":"0.000001895172356369"},{"denom":"ASSET6","index":"0.000007651446569151"},{"denom":"ASSET7","index":"0.000012022926111771"},{"denom":"ASSET8","index":"0.000016426068411072"},{"denom":"ASSET9","index":"0.000006969965423669"}],"last_reward_claim_height":"160"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET0","shares":"327786690.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002975317591563"},{"denom":"ASSET1","index":"0.000025265738469637"},{"denom":"ASSET10","index":"0.000020245724387946"},{"denom":"ASSET11","index":"0.000025128558675417"},{"denom":"ASSET12","index":"0.000023998925764885"},{"denom":"ASSET13","index":"0.000007895668684136"},{"denom":"ASSET14","index":"0.000023051238668493"},{"denom":"ASSET15","index":"0.000018221178423268"},{"denom":"ASSET16","index":"0.000011202197653725"},{"denom":"ASSET17","index":"0.000008818540737002"},{"denom":"ASSET18","index":"0.000003629428323701"},{"denom":"ASSET2","index":"0.000007657107369447"},{"denom":"ASSET3","index":"0.000002122660280404"},{"denom":"ASSET4","index":"0.000020482509156357"},{"denom":"ASSET5","index":"0.000001654309607539"},{"denom":"ASSET6","index":"0.000006675356935536"},{"denom":"ASSET7","index":"0.000010494215679887"},{"denom":"ASSET8","index":"0.000014353927855523"},{"denom":"ASSET9","index":"0.000006089535217587"}],"last_reward_claim_height":"130"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET7","shares":"841378181.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001459800105667"},{"denom":"ASSET1","index":"0.000012176396665923"},{"denom":"ASSET10","index":"0.000008484162206626"},{"denom":"ASSET11","index":"0.000011779823335110"},{"denom":"ASSET12","index":"0.000010607197020722"},{"denom":"ASSET13","index":"0.000003650070053435"},{"denom":"ASSET14","index":"0.000011003770351536"},{"denom":"ASSET15","index":"0.000007867650218206"},{"denom":"ASSET16","index":"0.000005484791497715"},{"denom":"ASSET17","index":"0.000003895079438851"},{"denom":"ASSET18","index":"0.000001855233857943"},{"denom":"ASSET2","index":"0.000003594230705131"},{"denom":"ASSET3","index":"0.000001050691410948"},{"denom":"ASSET4","index":"0.000009896100013746"},{"denom":"ASSET5","index":"0.000000815938232363"},{"denom":"ASSET6","index":"0.000003321871434831"},{"denom":"ASSET7","index":"0.000005087078588365"},{"denom":"ASSET8","index":"0.000006638044976977"},{"denom":"ASSET9","index":"0.000002867179598640"}],"last_reward_claim_height":"73"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET10","shares":"888140809.337966033488246364","reward_history":[{"denom":"ASSET0","index":"0.000003012098530886"},{"denom":"ASSET1","index":"0.000025562058034330"},{"denom":"ASSET10","index":"0.000020450222858637"},{"denom":"ASSET11","index":"0.000025414193224582"},{"denom":"ASSET12","index":"0.000024256065084933"},{"denom":"ASSET13","index":"0.000007984561416691"},{"denom":"ASSET14","index":"0.000023318358139730"},{"denom":"ASSET15","index":"0.000018411259079989"},{"denom":"ASSET16","index":"0.000011336678183578"},{"denom":"ASSET17","index":"0.000008913774138499"},{"denom":"ASSET18","index":"0.000003674960609183"},{"denom":"ASSET2","index":"0.000007744948932800"},{"denom":"ASSET3","index":"0.000002148867969989"},{"denom":"ASSET4","index":"0.000020722540912428"},{"denom":"ASSET5","index":"0.000001674229864542"},{"denom":"ASSET6","index":"0.000006756080138401"},{"denom":"ASSET7","index":"0.000010618450136599"},{"denom":"ASSET8","index":"0.000014514789998911"},{"denom":"ASSET9","index":"0.000006159565713194"}],"last_reward_claim_height":"141"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET15","shares":"754459470.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003012098530886"},{"denom":"ASSET1","index":"0.000025562058034330"},{"denom":"ASSET10","index":"0.000020450222858637"},{"denom":"ASSET11","index":"0.000025414193224582"},{"denom":"ASSET12","index":"0.000024256065084933"},{"denom":"ASSET13","index":"0.000007984561416691"},{"denom":"ASSET14","index":"0.000023318358139730"},{"denom":"ASSET15","index":"0.000018411259079989"},{"denom":"ASSET16","index":"0.000011336678183578"},{"denom":"ASSET17","index":"0.000008913774138499"},{"denom":"ASSET18","index":"0.000003674960609183"},{"denom":"ASSET2","index":"0.000007744948932800"},{"denom":"ASSET3","index":"0.000002148867969989"},{"denom":"ASSET4","index":"0.000020722540912428"},{"denom":"ASSET5","index":"0.000001674229864542"},{"denom":"ASSET6","index":"0.000006756080138401"},{"denom":"ASSET7","index":"0.000010618450136599"},{"denom":"ASSET8","index":"0.000014514789998911"},{"denom":"ASSET9","index":"0.000006159565713194"}],"last_reward_claim_height":"162"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET7","shares":"153404233.059412444134990264","reward_history":[{"denom":"ASSET0","index":"0.000004451028909096"},{"denom":"ASSET1","index":"0.000036477295358036"},{"denom":"ASSET10","index":"0.000031594285637271"},{"denom":"ASSET11","index":"0.000037877235122777"},{"denom":"ASSET12","index":"0.000036094024478773"},{"denom":"ASSET13","index":"0.000012212628058403"},{"denom":"ASSET14","index":"0.000034929714752807"},{"denom":"ASSET15","index":"0.000028351244338063"},{"denom":"ASSET16","index":"0.000016180904344378"},{"denom":"ASSET17","index":"0.000013115564217581"},{"denom":"ASSET18","index":"0.000005434356167162"},{"denom":"ASSET2","index":"0.000011017450045022"},{"denom":"ASSET3","index":"0.000003160957283863"},{"denom":"ASSET4","index":"0.000029890627189887"},{"denom":"ASSET5","index":"0.000002482144499160"},{"denom":"ASSET6","index":"0.000010125586077425"},{"denom":"ASSET7","index":"0.000015654963573568"},{"denom":"ASSET8","index":"0.000022524154498080"},{"denom":"ASSET9","index":"0.000009046112711560"}],"last_reward_claim_height":"192"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET13","shares":"15374773.000000000061499092","reward_history":[],"last_reward_claim_height":"33"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET3","shares":"530236207.000000002120944828","reward_history":[{"denom":"ASSET0","index":"0.000003356752793751"},{"denom":"ASSET1","index":"0.000028516406305775"},{"denom":"ASSET10","index":"0.000022616173055400"},{"denom":"ASSET11","index":"0.000028302061322789"},{"denom":"ASSET12","index":"0.000026910491325102"},{"denom":"ASSET13","index":"0.000008878873421079"},{"denom":"ASSET14","index":"0.000025995251505598"},{"denom":"ASSET15","index":"0.000020398635157595"},{"denom":"ASSET16","index":"0.000012658071469071"},{"denom":"ASSET17","index":"0.000009885849877285"},{"denom":"ASSET18","index":"0.000004110010202724"},{"denom":"ASSET2","index":"0.000008622285743228"},{"denom":"ASSET3","index":"0.000002402314047495"},{"denom":"ASSET4","index":"0.000023121698220749"},{"denom":"ASSET5","index":"0.000001866482592061"},{"denom":"ASSET6","index":"0.000007549939309511"},{"denom":"ASSET7","index":"0.000011851024307599"},{"denom":"ASSET8","index":"0.000016149793693754"},{"denom":"ASSET9","index":"0.000006862325287189"}],"last_reward_claim_height":"160"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET11","shares":"915804636.677979753755587579","reward_history":[{"denom":"ASSET0","index":"0.000005006929389050"},{"denom":"ASSET1","index":"0.000041040719024259"},{"denom":"ASSET10","index":"0.000035335236957082"},{"denom":"ASSET11","index":"0.000042570302950344"},{"denom":"ASSET12","index":"0.000040446830831619"},{"denom":"ASSET13","index":"0.000013714364135971"},{"denom":"ASSET14","index":"0.000039291775310945"},{"denom":"ASSET15","index":"0.000031749911679613"},{"denom":"ASSET16","index":"0.000018218670659075"},{"denom":"ASSET17","index":"0.000014692127914697"},{"denom":"ASSET18","index":"0.000006128628862048"},{"denom":"ASSET2","index":"0.000012375095752463"},{"denom":"ASSET3","index":"0.000003562895226431"},{"denom":"ASSET4","index":"0.000033637129839069"},{"denom":"ASSET5","index":"0.000002792230076840"},{"denom":"ASSET6","index":"0.000011411674108417"},{"denom":"ASSET7","index":"0.000017623585250478"},{"denom":"ASSET8","index":"0.000025306496126979"},{"denom":"ASSET9","index":"0.000010169019213984"}],"last_reward_claim_height":"193"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET13","shares":"1000031341.778400122000000000","reward_history":[{"denom":"ASSET0","index":"0.000001778581753434"},{"denom":"ASSET1","index":"0.000014888315804569"},{"denom":"ASSET10","index":"0.000010370885153828"},{"denom":"ASSET11","index":"0.000014404007158094"},{"denom":"ASSET12","index":"0.000012967781516823"},{"denom":"ASSET13","index":"0.000004458979607201"},{"denom":"ASSET14","index":"0.000013452090163298"},{"denom":"ASSET15","index":"0.000009619371736884"},{"denom":"ASSET16","index":"0.000006705169708956"},{"denom":"ASSET17","index":"0.000004759584973979"},{"denom":"ASSET18","index":"0.000002262890399909"},{"denom":"ASSET2","index":"0.000004392178414584"},{"denom":"ASSET3","index":"0.000001285922957882"},{"denom":"ASSET4","index":"0.000012099366012799"},{"denom":"ASSET5","index":"0.000000993667740182"},{"denom":"ASSET6","index":"0.000004058172451498"},{"denom":"ASSET7","index":"0.000006220861062481"},{"denom":"ASSET8","index":"0.000008116344902996"},{"denom":"ASSET9","index":"0.000003507062612406"}],"last_reward_claim_height":"66"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET0","shares":"622562166.938788678075001388","reward_history":[{"denom":"ASSET0","index":"0.000001604942959288"},{"denom":"ASSET1","index":"0.000013380628695124"},{"denom":"ASSET10","index":"0.000009322365613635"},{"denom":"ASSET11","index":"0.000012944148427984"},{"denom":"ASSET12","index":"0.000011656280789193"},{"denom":"ASSET13","index":"0.000004011353995308"},{"denom":"ASSET14","index":"0.000012091757653420"},{"denom":"ASSET15","index":"0.000008645319498111"},{"denom":"ASSET16","index":"0.000006027692148913"},{"denom":"ASSET17","index":"0.000004280767677439"},{"denom":"ASSET18","index":"0.000002039165569874"},{"denom":"ASSET2","index":"0.000003949895566889"},{"denom":"ASSET3","index":"0.000001155418454280"},{"denom":"ASSET4","index":"0.000010873877367808"},{"denom":"ASSET5","index":"0.000000896791353463"},{"denom":"ASSET6","index":"0.000003649878095912"},{"denom":"ASSET7","index":"0.000005589957628131"},{"denom":"ASSET8","index":"0.000007294237475803"},{"denom":"ASSET9","index":"0.000003150685146712"}],"last_reward_claim_height":"97"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET9","shares":"579963458.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003200268554223"},{"denom":"ASSET1","index":"0.000027155061035589"},{"denom":"ASSET10","index":"0.000021699312128992"},{"denom":"ASSET11","index":"0.000026991580254755"},{"denom":"ASSET12","index":"0.000025748970079650"},{"denom":"ASSET13","index":"0.000008479073830121"},{"denom":"ASSET14","index":"0.000024769827936089"},{"denom":"ASSET15","index":"0.000019540730612944"},{"denom":"ASSET16","index":"0.000012044995213579"},{"denom":"ASSET17","index":"0.000009462424001901"},{"denom":"ASSET18","index":"0.000003906197580725"},{"denom":"ASSET2","index":"0.000008225756082433"},{"denom":"ASSET3","index":"0.000002283784004254"},{"denom":"ASSET4","index":"0.000022014648589339"},{"denom":"ASSET5","index":"0.000001779311895342"},{"denom":"ASSET6","index":"0.000007179475362032"},{"denom":"ASSET7","index":"0.000011280598785262"},{"denom":"ASSET8","index":"0.000015413911362487"},{"denom":"ASSET9","index":"0.000006542247148589"}],"last_reward_claim_height":"163"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET11","shares":"371445268.342060701223775256","reward_history":[{"denom":"ASSET0","index":"0.000003200268554223"},{"denom":"ASSET1","index":"0.000027155061035589"},{"denom":"ASSET10","index":"0.000021699312128992"},{"denom":"ASSET11","index":"0.000026991580254755"},{"denom":"ASSET12","index":"0.000025748970079650"},{"denom":"ASSET13","index":"0.000008479073830121"},{"denom":"ASSET14","index":"0.000024769827936089"},{"denom":"ASSET15","index":"0.000019540730612944"},{"denom":"ASSET16","index":"0.000012044995213579"},{"denom":"ASSET17","index":"0.000009462424001901"},{"denom":"ASSET18","index":"0.000003906197580725"},{"denom":"ASSET2","index":"0.000008225756082433"},{"denom":"ASSET3","index":"0.000002283784004254"},{"denom":"ASSET4","index":"0.000022014648589339"},{"denom":"ASSET5","index":"0.000001779311895342"},{"denom":"ASSET6","index":"0.000007179475362032"},{"denom":"ASSET7","index":"0.000011280598785262"},{"denom":"ASSET8","index":"0.000015413911362487"},{"denom":"ASSET9","index":"0.000006542247148589"}],"last_reward_claim_height":"148"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET16","shares":"3020.738022940902876973","reward_history":[{"denom":"ASSET0","index":"0.000001604942959288"},{"denom":"ASSET1","index":"0.000013380628695124"},{"denom":"ASSET10","index":"0.000009322365613635"},{"denom":"ASSET11","index":"0.000012944148427984"},{"denom":"ASSET12","index":"0.000011656280789193"},{"denom":"ASSET13","index":"0.000004011353995308"},{"denom":"ASSET14","index":"0.000012091757653420"},{"denom":"ASSET15","index":"0.000008645319498111"},{"denom":"ASSET16","index":"0.000006027692148913"},{"denom":"ASSET17","index":"0.000004280767677439"},{"denom":"ASSET18","index":"0.000002039165569874"},{"denom":"ASSET2","index":"0.000003949895566889"},{"denom":"ASSET3","index":"0.000001155418454280"},{"denom":"ASSET4","index":"0.000010873877367808"},{"denom":"ASSET5","index":"0.000000896791353463"},{"denom":"ASSET6","index":"0.000003649878095912"},{"denom":"ASSET7","index":"0.000005589957628131"},{"denom":"ASSET8","index":"0.000007294237475803"},{"denom":"ASSET9","index":"0.000003150685146712"}],"last_reward_claim_height":"84"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET2","shares":"415906213.232447232181579022","reward_history":[{"denom":"ASSET0","index":"0.000003154859072778"},{"denom":"ASSET1","index":"0.000026759958230198"},{"denom":"ASSET10","index":"0.000021318547828682"},{"denom":"ASSET11","index":"0.000026582778956839"},{"denom":"ASSET12","index":"0.000025324795995745"},{"denom":"ASSET13","index":"0.000008347309163095"},{"denom":"ASSET14","index":"0.000024403216779648"},{"denom":"ASSET15","index":"0.000019208461119321"},{"denom":"ASSET16","index":"0.000011872154646602"},{"denom":"ASSET17","index":"0.000009304429323264"},{"denom":"ASSET18","index":"0.000003853154066825"},{"denom":"ASSET2","index":"0.000008100524497579"},{"denom":"ASSET3","index":"0.000002251942800438"},{"denom":"ASSET4","index":"0.000021695917087147"},{"denom":"ASSET5","index":"0.000001753374642360"},{"denom":"ASSET6","index":"0.000007078305954632"},{"denom":"ASSET7","index":"0.000011118481739065"},{"denom":"ASSET8","index":"0.000015174129529137"},{"denom":"ASSET9","index":"0.000006441283498998"}],"last_reward_claim_height":"140"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET8","shares":"264703028.075887900954761126","reward_history":[{"denom":"ASSET0","index":"0.000004736121968577"},{"denom":"ASSET1","index":"0.000038761893571018"},{"denom":"ASSET10","index":"0.000033507102183548"},{"denom":"ASSET11","index":"0.000040255954218087"},{"denom":"ASSET12","index":"0.000038296483713125"},{"denom":"ASSET13","index":"0.000012981125931500"},{"denom":"ASSET14","index":"0.000037144963211864"},{"denom":"ASSET15","index":"0.000030086100212575"},{"denom":"ASSET16","index":"0.000017200793994088"},{"denom":"ASSET17","index":"0.000013910336551622"},{"denom":"ASSET18","index":"0.000005787660096353"},{"denom":"ASSET2","index":"0.000011696689560653"},{"denom":"ASSET3","index":"0.000003364158799327"},{"denom":"ASSET4","index":"0.000031772510725021"},{"denom":"ASSET5","index":"0.000002640231519377"},{"denom":"ASSET6","index":"0.000010779027652808"},{"denom":"ASSET7","index":"0.000016649985952266"},{"denom":"ASSET8","index":"0.000023948972231982"},{"denom":"ASSET9","index":"0.000009610057695084"}],"last_reward_claim_height":"199"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET9","shares":"263282170.698466930038028203","reward_history":[{"denom":"ASSET0","index":"0.000001565910537906"},{"denom":"ASSET1","index":"0.000013053983025959"},{"denom":"ASSET10","index":"0.000009094819386579"},{"denom":"ASSET11","index":"0.000012628414118813"},{"denom":"ASSET12","index":"0.000011371841840295"},{"denom":"ASSET13","index":"0.000003913403541838"},{"denom":"ASSET14","index":"0.000011796953146466"},{"denom":"ASSET15","index":"0.000008434501179040"},{"denom":"ASSET16","index":"0.000005880630135191"},{"denom":"ASSET17","index":"0.000004176066501732"},{"denom":"ASSET18","index":"0.000001989191440174"},{"denom":"ASSET2","index":"0.000003853457814057"},{"denom":"ASSET3","index":"0.000001127071202473"},{"denom":"ASSET4","index":"0.000010608563413286"},{"denom":"ASSET5","index":"0.000000874933065013"},{"denom":"ASSET6","index":"0.000003561050790760"},{"denom":"ASSET7","index":"0.000005453688425119"},{"denom":"ASSET8","index":"0.000007116152768840"},{"denom":"ASSET9","index":"0.000003073705751932"}],"last_reward_claim_height":"70"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET16","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"45"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET12","shares":"640446243.043219303034172838","reward_history":[{"denom":"ASSET0","index":"0.000001616793771814"},{"denom":"ASSET1","index":"0.000013481664806896"},{"denom":"ASSET10","index":"0.000009392973001731"},{"denom":"ASSET11","index":"0.000013042136425966"},{"denom":"ASSET12","index":"0.000011745108533466"},{"denom":"ASSET13","index":"0.000004041984429535"},{"denom":"ASSET14","index":"0.000012183439289380"},{"denom":"ASSET15","index":"0.000008710326742521"},{"denom":"ASSET16","index":"0.000006073156456940"},{"denom":"ASSET17","index":"0.000004312647683187"},{"denom":"ASSET18","index":"0.000002053926902712"},{"denom":"ASSET2","index":"0.000003979707928695"},{"denom":"ASSET3","index":"0.000001164091515706"},{"denom":"ASSET4","index":"0.000010955873647818"},{"denom":"ASSET5","index":"0.000000903009262183"},{"denom":"ASSET6","index":"0.000003677906424623"},{"denom":"ASSET7","index":"0.000005632430450993"},{"denom":"ASSET8","index":"0.000007349824724165"},{"denom":"ASSET9","index":"0.000003173706292820"}],"last_reward_claim_height":"103"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET13","shares":"1000031341.750546348000000000","reward_history":[{"denom":"ASSET0","index":"0.000003010548827117"},{"denom":"ASSET1","index":"0.000025517681435823"},{"denom":"ASSET10","index":"0.000020207909525991"},{"denom":"ASSET11","index":"0.000025316824190850"},{"denom":"ASSET12","index":"0.000024059273468565"},{"denom":"ASSET13","index":"0.000007945703994160"},{"denom":"ASSET14","index":"0.000023261456497592"},{"denom":"ASSET15","index":"0.000018230653165683"},{"denom":"ASSET16","index":"0.000011330852554208"},{"denom":"ASSET17","index":"0.000008840468160143"},{"denom":"ASSET18","index":"0.000003685449036638"},{"denom":"ASSET2","index":"0.000007715875534239"},{"denom":"ASSET3","index":"0.000002150116713749"},{"denom":"ASSET4","index":"0.000020690763011385"},{"denom":"ASSET5","index":"0.000001674170167376"},{"denom":"ASSET6","index":"0.000006761947340508"},{"denom":"ASSET7","index":"0.000010605047135869"},{"denom":"ASSET8","index":"0.000014444866674878"},{"denom":"ASSET9","index":"0.000006137206230949"}],"last_reward_claim_height":"160"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET17","shares":"879895999.000000000000000000","reward_history":[],"last_reward_claim_height":"10"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET6","shares":"1737823134.803655530747041752","reward_history":[{"denom":"ASSET0","index":"0.000003202417698287"},{"denom":"ASSET1","index":"0.000027176874960756"},{"denom":"ASSET10","index":"0.000021729724210241"},{"denom":"ASSET11","index":"0.000027016578438308"},{"denom":"ASSET12","index":"0.000025779554956391"},{"denom":"ASSET13","index":"0.000008487649506725"},{"denom":"ASSET14","index":"0.000024790682929963"},{"denom":"ASSET15","index":"0.000019565798539307"},{"denom":"ASSET16","index":"0.000012053877846841"},{"denom":"ASSET17","index":"0.000009473617164606"},{"denom":"ASSET18","index":"0.000003908301251667"},{"denom":"ASSET2","index":"0.000008233254558201"},{"denom":"ASSET3","index":"0.000002285025567503"},{"denom":"ASSET4","index":"0.000022032200437673"},{"denom":"ASSET5","index":"0.000001780306156687"},{"denom":"ASSET6","index":"0.000007184182778940"},{"denom":"ASSET7","index":"0.000011289430429576"},{"denom":"ASSET8","index":"0.000015429251463912"},{"denom":"ASSET9","index":"0.000006548040900334"}],"last_reward_claim_height":"123"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET8","shares":"473184706.014323768075983908","reward_history":[{"denom":"ASSET0","index":"0.000002874619638549"},{"denom":"ASSET1","index":"0.000024442633186143"},{"denom":"ASSET10","index":"0.000019689737510784"},{"denom":"ASSET11","index":"0.000024334399718263"},{"denom":"ASSET12","index":"0.000023294058494145"},{"denom":"ASSET13","index":"0.000007650065286478"},{"denom":"ASSET14","index":"0.000022306974942610"},{"denom":"ASSET15","index":"0.000017702453996022"},{"denom":"ASSET16","index":"0.000010830667352685"},{"denom":"ASSET17","index":"0.000008561334956642"},{"denom":"ASSET18","index":"0.000003501743239949"},{"denom":"ASSET2","index":"0.000007413384379561"},{"denom":"ASSET3","index":"0.000002050775894848"},{"denom":"ASSET4","index":"0.000019811877393900"},{"denom":"ASSET5","index":"0.000001596563839644"},{"denom":"ASSET6","index":"0.000006447875450380"},{"denom":"ASSET7","index":"0.000010149425285061"},{"denom":"ASSET8","index":"0.000013906577801610"},{"denom":"ASSET9","index":"0.000005896530335304"}],"last_reward_claim_height":"178"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET12","shares":"664941340.555445216035180020","reward_history":[{"denom":"ASSET0","index":"0.000002874619638549"},{"denom":"ASSET1","index":"0.000024442633186143"},{"denom":"ASSET10","index":"0.000019689737510784"},{"denom":"ASSET11","index":"0.000024334399718263"},{"denom":"ASSET12","index":"0.000023294058494145"},{"denom":"ASSET13","index":"0.000007650065286478"},{"denom":"ASSET14","index":"0.000022306974942610"},{"denom":"ASSET15","index":"0.000017702453996022"},{"denom":"ASSET16","index":"0.000010830667352685"},{"denom":"ASSET17","index":"0.000008561334956642"},{"denom":"ASSET18","index":"0.000003501743239949"},{"denom":"ASSET2","index":"0.000007413384379561"},{"denom":"ASSET3","index":"0.000002050775894848"},{"denom":"ASSET4","index":"0.000019811877393900"},{"denom":"ASSET5","index":"0.000001596563839644"},{"denom":"ASSET6","index":"0.000006447875450380"},{"denom":"ASSET7","index":"0.000010149425285061"},{"denom":"ASSET8","index":"0.000013906577801610"},{"denom":"ASSET9","index":"0.000005896530335304"}],"last_reward_claim_height":"171"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET0","shares":"131379770.041975399839567270","reward_history":[{"denom":"ASSET0","index":"0.000003377008276018"},{"denom":"ASSET1","index":"0.000028642142456639"},{"denom":"ASSET10","index":"0.000022800592191853"},{"denom":"ASSET11","index":"0.000028447577997463"},{"denom":"ASSET12","index":"0.000027093635853923"},{"denom":"ASSET13","index":"0.000008933092474106"},{"denom":"ASSET14","index":"0.000026119259559896"},{"denom":"ASSET15","index":"0.000020548756595198"},{"denom":"ASSET16","index":"0.000012710670192565"},{"denom":"ASSET17","index":"0.000009956402105067"},{"denom":"ASSET18","index":"0.000004127475104327"},{"denom":"ASSET2","index":"0.000008669602227225"},{"denom":"ASSET3","index":"0.000002410895003349"},{"denom":"ASSET4","index":"0.000023222264254358"},{"denom":"ASSET5","index":"0.000001877874241403"},{"denom":"ASSET6","index":"0.000007579654674160"},{"denom":"ASSET7","index":"0.000011900488798179"},{"denom":"ASSET8","index":"0.000016239324105118"},{"denom":"ASSET9","index":"0.000006895771583569"}],"last_reward_claim_height":"146"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET1","shares":"479051457.602669094367658089","reward_history":[{"denom":"ASSET0","index":"0.000001744355646452"},{"denom":"ASSET1","index":"0.000014544558741461"},{"denom":"ASSET10","index":"0.000010133244841823"},{"denom":"ASSET11","index":"0.000014070651242217"},{"denom":"ASSET12","index":"0.000012670295178174"},{"denom":"ASSET13","index":"0.000004360461787457"},{"denom":"ASSET14","index":"0.000013143775348745"},{"denom":"ASSET15","index":"0.000009397812194213"},{"denom":"ASSET16","index":"0.000006552230555377"},{"denom":"ASSET17","index":"0.000004653181929010"},{"denom":"ASSET18","index":"0.000002216553831001"},{"denom":"ASSET2","index":"0.000004293371185670"},{"denom":"ASSET3","index":"0.000001255918972299"},{"denom":"ASSET4","index":"0.000011819911117312"},{"denom":"ASSET5","index":"0.000000974736704938"},{"denom":"ASSET6","index":"0.000003967319407560"},{"denom":"ASSET7","index":"0.000006076186412764"},{"denom":"ASSET8","index":"0.000007929083542361"},{"denom":"ASSET9","index":"0.000003424611991834"}],"last_reward_claim_height":"77"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET6","shares":"990324315.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001744355646452"},{"denom":"ASSET1","index":"0.000014544558741461"},{"denom":"ASSET10","index":"0.000010133244841823"},{"denom":"ASSET11","index":"0.000014070651242217"},{"denom":"ASSET12","index":"0.000012670295178174"},{"denom":"ASSET13","index":"0.000004360461787457"},{"denom":"ASSET14","index":"0.000013143775348745"},{"denom":"ASSET15","index":"0.000009397812194213"},{"denom":"ASSET16","index":"0.000006552230555377"},{"denom":"ASSET17","index":"0.000004653181929010"},{"denom":"ASSET18","index":"0.000002216553831001"},{"denom":"ASSET2","index":"0.000004293371185670"},{"denom":"ASSET3","index":"0.000001255918972299"},{"denom":"ASSET4","index":"0.000011819911117312"},{"denom":"ASSET5","index":"0.000000974736704938"},{"denom":"ASSET6","index":"0.000003967319407560"},{"denom":"ASSET7","index":"0.000006076186412764"},{"denom":"ASSET8","index":"0.000007929083542361"},{"denom":"ASSET9","index":"0.000003424611991834"}],"last_reward_claim_height":"72"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET7","shares":"738779375.207840251750072720","reward_history":[{"denom":"ASSET0","index":"0.000003377008276018"},{"denom":"ASSET1","index":"0.000028642142456639"},{"denom":"ASSET10","index":"0.000022800592191853"},{"denom":"ASSET11","index":"0.000028447577997463"},{"denom":"ASSET12","index":"0.000027093635853923"},{"denom":"ASSET13","index":"0.000008933092474106"},{"denom":"ASSET14","index":"0.000026119259559896"},{"denom":"ASSET15","index":"0.000020548756595198"},{"denom":"ASSET16","index":"0.000012710670192565"},{"denom":"ASSET17","index":"0.000009956402105067"},{"denom":"ASSET18","index":"0.000004127475104327"},{"denom":"ASSET2","index":"0.000008669602227225"},{"denom":"ASSET3","index":"0.000002410895003349"},{"denom":"ASSET4","index":"0.000023222264254358"},{"denom":"ASSET5","index":"0.000001877874241403"},{"denom":"ASSET6","index":"0.000007579654674160"},{"denom":"ASSET7","index":"0.000011900488798179"},{"denom":"ASSET8","index":"0.000016239324105118"},{"denom":"ASSET9","index":"0.000006895771583569"}],"last_reward_claim_height":"170"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET11","shares":"333350026.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000005025135283889"},{"denom":"ASSET1","index":"0.000041150902230665"},{"denom":"ASSET10","index":"0.000035503906252523"},{"denom":"ASSET11","index":"0.000042698139065522"},{"denom":"ASSET12","index":"0.000040613177204205"},{"denom":"ASSET13","index":"0.000013762722497172"},{"denom":"ASSET14","index":"0.000039399391051892"},{"denom":"ASSET15","index":"0.000031885867220772"},{"denom":"ASSET16","index":"0.000018264474504804"},{"denom":"ASSET17","index":"0.000014756668842278"},{"denom":"ASSET18","index":"0.000006143633971099"},{"denom":"ASSET2","index":"0.000012417834673698"},{"denom":"ASSET3","index":"0.000003569934151742"},{"denom":"ASSET4","index":"0.000033724592875945"},{"denom":"ASSET5","index":"0.000002802367388675"},{"denom":"ASSET6","index":"0.000011436693406867"},{"denom":"ASSET7","index":"0.000017665780825714"},{"denom":"ASSET8","index":"0.000025384816720225"},{"denom":"ASSET9","index":"0.000010198330599342"}],"last_reward_claim_height":"196"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET3","shares":"161226241.746013451320720778","reward_history":[{"denom":"ASSET0","index":"0.000003044385892570"},{"denom":"ASSET1","index":"0.000025830014188245"},{"denom":"ASSET10","index":"0.000020607856539150"},{"denom":"ASSET11","index":"0.000025666657138152"},{"denom":"ASSET12","index":"0.000024468008636658"},{"denom":"ASSET13","index":"0.000008060303383676"},{"denom":"ASSET14","index":"0.000023559408638801"},{"denom":"ASSET15","index":"0.000018562848593971"},{"denom":"ASSET16","index":"0.000011459854746185"},{"denom":"ASSET17","index":"0.000008991538648143"},{"denom":"ASSET18","index":"0.000003718456390600"},{"denom":"ASSET2","index":"0.000007821717005664"},{"denom":"ASSET3","index":"0.000002173111618200"},{"denom":"ASSET4","index":"0.000020942104557307"},{"denom":"ASSET5","index":"0.000001691598021351"},{"denom":"ASSET6","index":"0.000006831113312915"},{"denom":"ASSET7","index":"0.000010730587410374"},{"denom":"ASSET8","index":"0.000014654605067850"},{"denom":"ASSET9","index":"0.000006220578615076"}],"last_reward_claim_height":"147"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET13","shares":"732394928.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003044385892570"},{"denom":"ASSET1","index":"0.000025830014188245"},{"denom":"ASSET10","index":"0.000020607856539150"},{"denom":"ASSET11","index":"0.000025666657138152"},{"denom":"ASSET12","index":"0.000024468008636658"},{"denom":"ASSET13","index":"0.000008060303383676"},{"denom":"ASSET14","index":"0.000023559408638801"},{"denom":"ASSET15","index":"0.000018562848593971"},{"denom":"ASSET16","index":"0.000011459854746185"},{"denom":"ASSET17","index":"0.000008991538648143"},{"denom":"ASSET18","index":"0.000003718456390600"},{"denom":"ASSET2","index":"0.000007821717005664"},{"denom":"ASSET3","index":"0.000002173111618200"},{"denom":"ASSET4","index":"0.000020942104557307"},{"denom":"ASSET5","index":"0.000001691598021351"},{"denom":"ASSET6","index":"0.000006831113312915"},{"denom":"ASSET7","index":"0.000010730587410374"},{"denom":"ASSET8","index":"0.000014654605067850"},{"denom":"ASSET9","index":"0.000006220578615076"}],"last_reward_claim_height":"145"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET2","shares":"973788051.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002956721491824"},{"denom":"ASSET1","index":"0.000025136116728129"},{"denom":"ASSET10","index":"0.000020247681325291"},{"denom":"ASSET11","index":"0.000025026479369709"},{"denom":"ASSET12","index":"0.000023957412844230"},{"denom":"ASSET13","index":"0.000007866588644670"},{"denom":"ASSET14","index":"0.000022940688787988"},{"denom":"ASSET15","index":"0.000018203641219753"},{"denom":"ASSET16","index":"0.000011138902531601"},{"denom":"ASSET17","index":"0.000008803888891481"},{"denom":"ASSET18","index":"0.000003602115317706"},{"denom":"ASSET2","index":"0.000007623974866010"},{"denom":"ASSET3","index":"0.000002110544057177"},{"denom":"ASSET4","index":"0.000020374365248917"},{"denom":"ASSET5","index":"0.000001641905652861"},{"denom":"ASSET6","index":"0.000006630874494768"},{"denom":"ASSET7","index":"0.000010436528568948"},{"denom":"ASSET8","index":"0.000014302572224422"},{"denom":"ASSET9","index":"0.000006063325997423"}],"last_reward_claim_height":"149"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET3","shares":"889100184.214779749316266624","reward_history":[{"denom":"ASSET0","index":"0.000004648549344493"},{"denom":"ASSET1","index":"0.000037978316533688"},{"denom":"ASSET10","index":"0.000033290219143121"},{"denom":"ASSET11","index":"0.000039657248197361"},{"denom":"ASSET12","index":"0.000037837866302733"},{"denom":"ASSET13","index":"0.000012824764012983"},{"denom":"ASSET14","index":"0.000036575099744730"},{"denom":"ASSET15","index":"0.000029843051210200"},{"denom":"ASSET16","index":"0.000016840537595639"},{"denom":"ASSET17","index":"0.000013732356341625"},{"denom":"ASSET18","index":"0.000005671766950170"},{"denom":"ASSET2","index":"0.000011472292881176"},{"denom":"ASSET3","index":"0.000003300384266933"},{"denom":"ASSET4","index":"0.000031156816061403"},{"denom":"ASSET5","index":"0.000002591035551297"},{"denom":"ASSET6","index":"0.000010590406767696"},{"denom":"ASSET7","index":"0.000016355259958069"},{"denom":"ASSET8","index":"0.000023691797848915"},{"denom":"ASSET9","index":"0.000009453837376185"}],"last_reward_claim_height":"193"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET13","shares":"238448851.000000006716236278","reward_history":[{"denom":"ASSET0","index":"0.000001387821916020"},{"denom":"ASSET1","index":"0.000011588015182905"},{"denom":"ASSET10","index":"0.000008073788013584"},{"denom":"ASSET11","index":"0.000011209789038410"},{"denom":"ASSET12","index":"0.000010095957715252"},{"denom":"ASSET13","index":"0.000003472532948668"},{"denom":"ASSET14","index":"0.000010471205701129"},{"denom":"ASSET15","index":"0.000007487090765824"},{"denom":"ASSET16","index":"0.000005220712057474"},{"denom":"ASSET17","index":"0.000003707807479495"},{"denom":"ASSET18","index":"0.000001766048060515"},{"denom":"ASSET2","index":"0.000003418926093543"},{"denom":"ASSET3","index":"0.000001000661295671"},{"denom":"ASSET4","index":"0.000009416937550333"},{"denom":"ASSET5","index":"0.000000774321240698"},{"denom":"ASSET6","index":"0.000003159826293771"},{"denom":"ASSET7","index":"0.000004839507754361"},{"denom":"ASSET8","index":"0.000006316674428923"},{"denom":"ASSET9","index":"0.000002727993294151"}],"last_reward_claim_height":"87"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET8","shares":"350810481.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001500850379058"},{"denom":"ASSET1","index":"0.000012511793460183"},{"denom":"ASSET10","index":"0.000008717304800227"},{"denom":"ASSET11","index":"0.000012103632089176"},{"denom":"ASSET12","index":"0.000010899320696303"},{"denom":"ASSET13","index":"0.000003750781099635"},{"denom":"ASSET14","index":"0.000011306809643305"},{"denom":"ASSET15","index":"0.000008083881387560"},{"denom":"ASSET16","index":"0.000005636258009526"},{"denom":"ASSET17","index":"0.000004002940101492"},{"denom":"ASSET18","index":"0.000001906322054045"},{"denom":"ASSET2","index":"0.000003692952635209"},{"denom":"ASSET3","index":"0.000001079912951956"},{"denom":"ASSET4","index":"0.000010167723378913"},{"denom":"ASSET5","index":"0.000000838512734178"},{"denom":"ASSET6","index":"0.000003412551825143"},{"denom":"ASSET7","index":"0.000005226751790509"},{"denom":"ASSET8","index":"0.000006820396682251"},{"denom":"ASSET9","index":"0.000002945889565704"}],"last_reward_claim_height":"122"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET10","shares":"999839749.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003064659144392"},{"denom":"ASSET1","index":"0.000026014545525120"},{"denom":"ASSET10","index":"0.000020837902255895"},{"denom":"ASSET11","index":"0.000025870951889592"},{"denom":"ASSET12","index":"0.000024704995690840"},{"denom":"ASSET13","index":"0.000008129050348807"},{"denom":"ASSET14","index":"0.000023733606076391"},{"denom":"ASSET15","index":"0.000018755969892396"},{"denom":"ASSET16","index":"0.000011535737727926"},{"denom":"ASSET17","index":"0.000009078938038909"},{"denom":"ASSET18","index":"0.000003738223548700"},{"denom":"ASSET2","index":"0.000007883998416280"},{"denom":"ASSET3","index":"0.000002186926046113"},{"denom":"ASSET4","index":"0.000021089316501471"},{"denom":"ASSET5","index":"0.000001703791082418"},{"denom":"ASSET6","index":"0.000006873778950624"},{"denom":"ASSET7","index":"0.000010805665377904"},{"denom":"ASSET8","index":"0.000014777724141198"},{"denom":"ASSET9","index":"0.000006269886019705"}],"last_reward_claim_height":"149"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET3","shares":"181316713.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001016570122529"},{"denom":"ASSET1","index":"0.000008477171470527"},{"denom":"ASSET10","index":"0.000005906463519680"},{"denom":"ASSET11","index":"0.000008200989896911"},{"denom":"ASSET12","index":"0.000007384774710599"},{"denom":"ASSET13","index":"0.000002541117067960"},{"denom":"ASSET14","index":"0.000007660956284215"},{"denom":"ASSET15","index":"0.000005477395717812"},{"denom":"ASSET16","index":"0.000003819073322661"},{"denom":"ASSET17","index":"0.000002711881121289"},{"denom":"ASSET18","index":"0.000001291518742692"},{"denom":"ASSET2","index":"0.000002502279034170"},{"denom":"ASSET3","index":"0.000000731757874738"},{"denom":"ASSET4","index":"0.000006889127422234"},{"denom":"ASSET5","index":"0.000000567775065403"},{"denom":"ASSET6","index":"0.000002312404202309"},{"denom":"ASSET7","index":"0.000003541658795591"},{"denom":"ASSET8","index":"0.000004621109544256"},{"denom":"ASSET9","index":"0.000001996151641449"}],"last_reward_claim_height":"87"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET9","shares":"26900761.360226982497906087","reward_history":[{"denom":"ASSET0","index":"0.000004025900971927"},{"denom":"ASSET1","index":"0.000032866990223703"},{"denom":"ASSET10","index":"0.000029177590451167"},{"denom":"ASSET11","index":"0.000034457399555284"},{"denom":"ASSET12","index":"0.000033006816481640"},{"denom":"ASSET13","index":"0.000011167120321398"},{"denom":"ASSET14","index":"0.000031745829379235"},{"denom":"ASSET15","index":"0.000026105610144876"},{"denom":"ASSET16","index":"0.000014556334682662"},{"denom":"ASSET17","index":"0.000011974632893267"},{"denom":"ASSET18","index":"0.000004894173072333"},{"denom":"ASSET2","index":"0.000009948255093659"},{"denom":"ASSET3","index":"0.000002854082481256"},{"denom":"ASSET4","index":"0.000026972415235685"},{"denom":"ASSET5","index":"0.000002244012673462"},{"denom":"ASSET6","index":"0.000009165742222560"},{"denom":"ASSET7","index":"0.000014171217677897"},{"denom":"ASSET8","index":"0.000020639253265734"},{"denom":"ASSET9","index":"0.000008207596762469"}],"last_reward_claim_height":"194"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET13","shares":"227846627.000000000000000000","reward_history":[],"last_reward_claim_height":"28"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET14","shares":"691062526.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001016570122529"},{"denom":"ASSET1","index":"0.000008477171470527"},{"denom":"ASSET10","index":"0.000005906463519680"},{"denom":"ASSET11","index":"0.000008200989896911"},{"denom":"ASSET12","index":"0.000007384774710599"},{"denom":"ASSET13","index":"0.000002541117067960"},{"denom":"ASSET14","index":"0.000007660956284215"},{"denom":"ASSET15","index":"0.000005477395717812"},{"denom":"ASSET16","index":"0.000003819073322661"},{"denom":"ASSET17","index":"0.000002711881121289"},{"denom":"ASSET18","index":"0.000001291518742692"},{"denom":"ASSET2","index":"0.000002502279034170"},{"denom":"ASSET3","index":"0.000000731757874738"},{"denom":"ASSET4","index":"0.000006889127422234"},{"denom":"ASSET5","index":"0.000000567775065403"},{"denom":"ASSET6","index":"0.000002312404202309"},{"denom":"ASSET7","index":"0.000003541658795591"},{"denom":"ASSET8","index":"0.000004621109544256"},{"denom":"ASSET9","index":"0.000001996151641449"}],"last_reward_claim_height":"98"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET0","shares":"1000031216.474472217000000000","reward_history":[{"denom":"ASSET0","index":"0.000004613485224377"},{"denom":"ASSET1","index":"0.000037740369506725"},{"denom":"ASSET10","index":"0.000032691878864798"},{"denom":"ASSET11","index":"0.000039232152349692"},{"denom":"ASSET12","index":"0.000037331153749090"},{"denom":"ASSET13","index":"0.000012657550996453"},{"denom":"ASSET14","index":"0.000036202019838156"},{"denom":"ASSET15","index":"0.000029349029406985"},{"denom":"ASSET16","index":"0.000016745236814022"},{"denom":"ASSET17","index":"0.000013558784939453"},{"denom":"ASSET18","index":"0.000005636901817265"},{"denom":"ASSET2","index":"0.000011389634856992"},{"denom":"ASSET3","index":"0.000003276670342419"},{"denom":"ASSET4","index":"0.000030939743993790"},{"denom":"ASSET5","index":"0.000002570403032325"},{"denom":"ASSET6","index":"0.000010502839382187"},{"denom":"ASSET7","index":"0.000016219772344493"},{"denom":"ASSET8","index":"0.000023358092187368"},{"denom":"ASSET9","index":"0.000009362632929320"}],"last_reward_claim_height":"191"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET3","shares":"1000013143.241260128000000000","reward_history":[{"denom":"ASSET0","index":"0.000004613485224377"},{"denom":"ASSET1","index":"0.000037740369506725"},{"denom":"ASSET10","index":"0.000032691878864798"},{"denom":"ASSET11","index":"0.000039232152349692"},{"denom":"ASSET12","index":"0.000037331153749090"},{"denom":"ASSET13","index":"0.000012657550996453"},{"denom":"ASSET14","index":"0.000036202019838156"},{"denom":"ASSET15","index":"0.000029349029406985"},{"denom":"ASSET16","index":"0.000016745236814022"},{"denom":"ASSET17","index":"0.000013558784939453"},{"denom":"ASSET18","index":"0.000005636901817265"},{"denom":"ASSET2","index":"0.000011389634856992"},{"denom":"ASSET3","index":"0.000003276670342419"},{"denom":"ASSET4","index":"0.000030939743993790"},{"denom":"ASSET5","index":"0.000002570403032325"},{"denom":"ASSET6","index":"0.000010502839382187"},{"denom":"ASSET7","index":"0.000016219772344493"},{"denom":"ASSET8","index":"0.000023358092187368"},{"denom":"ASSET9","index":"0.000009362632929320"}],"last_reward_claim_height":"191"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET4","shares":"12947778.000000011168016617","reward_history":[],"last_reward_claim_height":"59"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET12","shares":"965958319.999999999861135750","reward_history":[{"denom":"ASSET0","index":"0.000001552339226368"},{"denom":"ASSET1","index":"0.000012948480372324"},{"denom":"ASSET10","index":"0.000009021431734191"},{"denom":"ASSET11","index":"0.000012526515146109"},{"denom":"ASSET12","index":"0.000011279099696349"},{"denom":"ASSET13","index":"0.000003880848065920"},{"denom":"ASSET14","index":"0.000011701064922564"},{"denom":"ASSET15","index":"0.000008365383608761"},{"denom":"ASSET16","index":"0.000005830512213323"},{"denom":"ASSET17","index":"0.000004142651308462"},{"denom":"ASSET18","index":"0.000001971224414436"},{"denom":"ASSET2","index":"0.000003822327341117"},{"denom":"ASSET3","index":"0.000001118053847563"},{"denom":"ASSET4","index":"0.000010521410312050"},{"denom":"ASSET5","index":"0.000000865490719463"},{"denom":"ASSET6","index":"0.000003529723717099"},{"denom":"ASSET7","index":"0.000005408546987108"},{"denom":"ASSET8","index":"0.000007056367396050"},{"denom":"ASSET9","index":"0.000003046157727933"}],"last_reward_claim_height":"77"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET5","shares":"444089533.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003932141229954"},{"denom":"ASSET1","index":"0.000031982273733453"},{"denom":"ASSET10","index":"0.000028524807141068"},{"denom":"ASSET11","index":"0.000033650870548373"},{"denom":"ASSET12","index":"0.000032189741660520"},{"denom":"ASSET13","index":"0.000010928281530915"},{"denom":"ASSET14","index":"0.000031029292859346"},{"denom":"ASSET15","index":"0.000025528430167550"},{"denom":"ASSET16","index":"0.000014169702033303"},{"denom":"ASSET17","index":"0.000011665236620037"},{"denom":"ASSET18","index":"0.000004785741423778"},{"denom":"ASSET2","index":"0.000009671723513504"},{"denom":"ASSET3","index":"0.000002787177463987"},{"denom":"ASSET4","index":"0.000026276537470003"},{"denom":"ASSET5","index":"0.000002193093087113"},{"denom":"ASSET6","index":"0.000008967187788370"},{"denom":"ASSET7","index":"0.000013834455896763"},{"denom":"ASSET8","index":"0.000020224290111997"},{"denom":"ASSET9","index":"0.000008004370791503"}],"last_reward_claim_height":"184"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET9","shares":"12084580.432234374946633752","reward_history":[{"denom":"ASSET0","index":"0.000002320380931676"},{"denom":"ASSET1","index":"0.000019748951316256"},{"denom":"ASSET10","index":"0.000016101172379351"},{"denom":"ASSET11","index":"0.000019714000020718"},{"denom":"ASSET12","index":"0.000018967805559844"},{"denom":"ASSET13","index":"0.000006204998608741"},{"denom":"ASSET14","index":"0.000018041457784230"},{"denom":"ASSET15","index":"0.000014440911570898"},{"denom":"ASSET16","index":"0.000008738221404310"},{"denom":"ASSET17","index":"0.000006970584758543"},{"denom":"ASSET18","index":"0.000002814127990287"},{"denom":"ASSET2","index":"0.000006006105656449"},{"denom":"ASSET3","index":"0.000001653724297068"},{"denom":"ASSET4","index":"0.000016005284799403"},{"denom":"ASSET5","index":"0.000001288969102308"},{"denom":"ASSET6","index":"0.000005195185892122"},{"denom":"ASSET7","index":"0.000008196101819524"},{"denom":"ASSET8","index":"0.000011280171312915"},{"denom":"ASSET9","index":"0.000004774394171461"}],"last_reward_claim_height":"148"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET10","shares":"348206629.000000000000000000","reward_history":[],"last_reward_claim_height":"10"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET12","shares":"225003068.539963860216949296","reward_history":[{"denom":"ASSET0","index":"0.000002320380931676"},{"denom":"ASSET1","index":"0.000019748951316256"},{"denom":"ASSET10","index":"0.000016101172379351"},{"denom":"ASSET11","index":"0.000019714000020718"},{"denom":"ASSET12","index":"0.000018967805559844"},{"denom":"ASSET13","index":"0.000006204998608741"},{"denom":"ASSET14","index":"0.000018041457784230"},{"denom":"ASSET15","index":"0.000014440911570898"},{"denom":"ASSET16","index":"0.000008738221404310"},{"denom":"ASSET17","index":"0.000006970584758543"},{"denom":"ASSET18","index":"0.000002814127990287"},{"denom":"ASSET2","index":"0.000006006105656449"},{"denom":"ASSET3","index":"0.000001653724297068"},{"denom":"ASSET4","index":"0.000016005284799403"},{"denom":"ASSET5","index":"0.000001288969102308"},{"denom":"ASSET6","index":"0.000005195185892122"},{"denom":"ASSET7","index":"0.000008196101819524"},{"denom":"ASSET8","index":"0.000011280171312915"},{"denom":"ASSET9","index":"0.000004774394171461"}],"last_reward_claim_height":"167"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET18","shares":"519301390.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002320380931676"},{"denom":"ASSET1","index":"0.000019748951316256"},{"denom":"ASSET10","index":"0.000016101172379351"},{"denom":"ASSET11","index":"0.000019714000020718"},{"denom":"ASSET12","index":"0.000018967805559844"},{"denom":"ASSET13","index":"0.000006204998608741"},{"denom":"ASSET14","index":"0.000018041457784230"},{"denom":"ASSET15","index":"0.000014440911570898"},{"denom":"ASSET16","index":"0.000008738221404310"},{"denom":"ASSET17","index":"0.000006970584758543"},{"denom":"ASSET18","index":"0.000002814127990287"},{"denom":"ASSET2","index":"0.000006006105656449"},{"denom":"ASSET3","index":"0.000001653724297068"},{"denom":"ASSET4","index":"0.000016005284799403"},{"denom":"ASSET5","index":"0.000001288969102308"},{"denom":"ASSET6","index":"0.000005195185892122"},{"denom":"ASSET7","index":"0.000008196101819524"},{"denom":"ASSET8","index":"0.000011280171312915"},{"denom":"ASSET9","index":"0.000004774394171461"}],"last_reward_claim_height":"138"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET8","shares":"407203956.732319410098936729","reward_history":[{"denom":"ASSET0","index":"0.000001745798220012"},{"denom":"ASSET1","index":"0.000014553743296829"},{"denom":"ASSET10","index":"0.000010139438249561"},{"denom":"ASSET11","index":"0.000014079320164724"},{"denom":"ASSET12","index":"0.000012678243118663"},{"denom":"ASSET13","index":"0.000004363016060013"},{"denom":"ASSET14","index":"0.000013152173087429"},{"denom":"ASSET15","index":"0.000009403145384454"},{"denom":"ASSET16","index":"0.000006556113428486"},{"denom":"ASSET17","index":"0.000004655955083371"},{"denom":"ASSET18","index":"0.000002217755535422"},{"denom":"ASSET2","index":"0.000004295945845911"},{"denom":"ASSET3","index":"0.000001256580187737"},{"denom":"ASSET4","index":"0.000011827536358912"},{"denom":"ASSET5","index":"0.000000975477084515"},{"denom":"ASSET6","index":"0.000003969964878841"},{"denom":"ASSET7","index":"0.000006080210806364"},{"denom":"ASSET8","index":"0.000007934011797614"},{"denom":"ASSET9","index":"0.000003426498879278"}],"last_reward_claim_height":"122"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET9","shares":"356627651.000000000000000000","reward_history":[],"last_reward_claim_height":"6"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET10","shares":"84217676.954296113763515056","reward_history":[{"denom":"ASSET0","index":"0.000003342998947188"},{"denom":"ASSET1","index":"0.000028345782457833"},{"denom":"ASSET10","index":"0.000022532322238539"},{"denom":"ASSET11","index":"0.000028144588841629"},{"denom":"ASSET12","index":"0.000026788988923046"},{"denom":"ASSET13","index":"0.000008836278349189"},{"denom":"ASSET14","index":"0.000025846526421467"},{"denom":"ASSET15","index":"0.000020312521464953"},{"denom":"ASSET16","index":"0.000012581099317360"},{"denom":"ASSET17","index":"0.000009844015126225"},{"denom":"ASSET18","index":"0.000004087085525414"},{"denom":"ASSET2","index":"0.000008577030596387"},{"denom":"ASSET3","index":"0.000002386540105172"},{"denom":"ASSET4","index":"0.000022982635628207"},{"denom":"ASSET5","index":"0.000001858980311097"},{"denom":"ASSET6","index":"0.000007503977785171"},{"denom":"ASSET7","index":"0.000011778054778213"},{"denom":"ASSET8","index":"0.000016064148587518"},{"denom":"ASSET9","index":"0.000006822246648031"}],"last_reward_claim_height":"183"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET6","shares":"37539773.900854183380087696","reward_history":[{"denom":"ASSET0","index":"0.000001535240763659"},{"denom":"ASSET1","index":"0.000012802535686671"},{"denom":"ASSET10","index":"0.000008918976928097"},{"denom":"ASSET11","index":"0.000012384847277788"},{"denom":"ASSET12","index":"0.000011152366284839"},{"denom":"ASSET13","index":"0.000003838101909148"},{"denom":"ASSET14","index":"0.000011569197017318"},{"denom":"ASSET15","index":"0.000008271431242866"},{"denom":"ASSET16","index":"0.000005767016142371"},{"denom":"ASSET17","index":"0.000004095404830432"},{"denom":"ASSET18","index":"0.000001951213819735"},{"denom":"ASSET2","index":"0.000003778922237253"},{"denom":"ASSET3","index":"0.000001105544885116"},{"denom":"ASSET4","index":"0.000010403614783903"},{"denom":"ASSET5","index":"0.000000857676404279"},{"denom":"ASSET6","index":"0.000003491600641819"},{"denom":"ASSET7","index":"0.000005348470057083"},{"denom":"ASSET8","index":"0.000006978912901618"},{"denom":"ASSET9","index":"0.000003013874884636"}],"last_reward_claim_height":"112"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET1","shares":"973315763.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003333609736915"},{"denom":"ASSET1","index":"0.000028281729059652"},{"denom":"ASSET10","index":"0.000022560289398652"},{"denom":"ASSET11","index":"0.000028101042421314"},{"denom":"ASSET12","index":"0.000026787599659919"},{"denom":"ASSET13","index":"0.000008826015241086"},{"denom":"ASSET14","index":"0.000025794402991537"},{"denom":"ASSET15","index":"0.000020323143219667"},{"denom":"ASSET16","index":"0.000012547562311789"},{"denom":"ASSET17","index":"0.000009844220733470"},{"denom":"ASSET18","index":"0.000004071528772633"},{"denom":"ASSET2","index":"0.000008563776406339"},{"denom":"ASSET3","index":"0.000002379222276435"},{"denom":"ASSET4","index":"0.000022929058250150"},{"denom":"ASSET5","index":"0.000001853699834530"},{"denom":"ASSET6","index":"0.000007480326246914"},{"denom":"ASSET7","index":"0.000011749530638760"},{"denom":"ASSET8","index":"0.000016044906214881"},{"denom":"ASSET9","index":"0.000006811209452101"}],"last_reward_claim_height":"158"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET4","shares":"928748962.967171170474180992","reward_history":[{"denom":"ASSET0","index":"0.000003333609736915"},{"denom":"ASSET1","index":"0.000028281729059652"},{"denom":"ASSET10","index":"0.000022560289398652"},{"denom":"ASSET11","index":"0.000028101042421314"},{"denom":"ASSET12","index":"0.000026787599659919"},{"denom":"ASSET13","index":"0.000008826015241086"},{"denom":"ASSET14","index":"0.000025794402991537"},{"denom":"ASSET15","index":"0.000020323143219667"},{"denom":"ASSET16","index":"0.000012547562311789"},{"denom":"ASSET17","index":"0.000009844220733470"},{"denom":"ASSET18","index":"0.000004071528772633"},{"denom":"ASSET2","index":"0.000008563776406339"},{"denom":"ASSET3","index":"0.000002379222276435"},{"denom":"ASSET4","index":"0.000022929058250150"},{"denom":"ASSET5","index":"0.000001853699834530"},{"denom":"ASSET6","index":"0.000007480326246914"},{"denom":"ASSET7","index":"0.000011749530638760"},{"denom":"ASSET8","index":"0.000016044906214881"},{"denom":"ASSET9","index":"0.000006811209452101"}],"last_reward_claim_height":"149"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET5","shares":"659676780.000000001651556255","reward_history":[],"last_reward_claim_height":"45"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET6","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000005022043474041"},{"denom":"ASSET1","index":"0.000041096794239441"},{"denom":"ASSET10","index":"0.000035574671940647"},{"denom":"ASSET11","index":"0.000042700481411828"},{"denom":"ASSET12","index":"0.000040638297029532"},{"denom":"ASSET13","index":"0.000013773808455342"},{"denom":"ASSET14","index":"0.000039399672265895"},{"denom":"ASSET15","index":"0.000031937841897211"},{"denom":"ASSET16","index":"0.000018237403653439"},{"denom":"ASSET17","index":"0.000014762079157320"},{"denom":"ASSET18","index":"0.000006137029310650"},{"denom":"ASSET2","index":"0.000012403796445196"},{"denom":"ASSET3","index":"0.000003566759582791"},{"denom":"ASSET4","index":"0.000033688477201807"},{"denom":"ASSET5","index":"0.000002800829165762"},{"denom":"ASSET6","index":"0.000011431718580511"},{"denom":"ASSET7","index":"0.000017656166797885"},{"denom":"ASSET8","index":"0.000025414309681597"},{"denom":"ASSET9","index":"0.000010194770419860"}],"last_reward_claim_height":"188"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET16","shares":"281136001.550689076139755706","reward_history":[{"denom":"ASSET0","index":"0.000003333609736915"},{"denom":"ASSET1","index":"0.000028281729059652"},{"denom":"ASSET10","index":"0.000022560289398652"},{"denom":"ASSET11","index":"0.000028101042421314"},{"denom":"ASSET12","index":"0.000026787599659919"},{"denom":"ASSET13","index":"0.000008826015241086"},{"denom":"ASSET14","index":"0.000025794402991537"},{"denom":"ASSET15","index":"0.000020323143219667"},{"denom":"ASSET16","index":"0.000012547562311789"},{"denom":"ASSET17","index":"0.000009844220733470"},{"denom":"ASSET18","index":"0.000004071528772633"},{"denom":"ASSET2","index":"0.000008563776406339"},{"denom":"ASSET3","index":"0.000002379222276435"},{"denom":"ASSET4","index":"0.000022929058250150"},{"denom":"ASSET5","index":"0.000001853699834530"},{"denom":"ASSET6","index":"0.000007480326246914"},{"denom":"ASSET7","index":"0.000011749530638760"},{"denom":"ASSET8","index":"0.000016044906214881"},{"denom":"ASSET9","index":"0.000006811209452101"}],"last_reward_claim_height":"162"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET18","shares":"492757987.954295815501882132","reward_history":[{"denom":"ASSET0","index":"0.000001694764141112"},{"denom":"ASSET1","index":"0.000014130580032100"},{"denom":"ASSET10","index":"0.000009844524497723"},{"denom":"ASSET11","index":"0.000013669508873851"},{"denom":"ASSET12","index":"0.000012309527666765"},{"denom":"ASSET13","index":"0.000004236016804025"},{"denom":"ASSET14","index":"0.000012769407426673"},{"denom":"ASSET15","index":"0.000009129685492685"},{"denom":"ASSET16","index":"0.000006365641339869"},{"denom":"ASSET17","index":"0.000004520761007698"},{"denom":"ASSET18","index":"0.000002153452502679"},{"denom":"ASSET2","index":"0.000004171085594400"},{"denom":"ASSET3","index":"0.000001219991901933"},{"denom":"ASSET4","index":"0.000011483292916774"},{"denom":"ASSET5","index":"0.000000947161681676"},{"denom":"ASSET6","index":"0.000003854173635500"},{"denom":"ASSET7","index":"0.000005903378783277"},{"denom":"ASSET8","index":"0.000007702985978462"},{"denom":"ASSET9","index":"0.000003326979869284"}],"last_reward_claim_height":"100"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET4","shares":"61422034.870806258108058664","reward_history":[{"denom":"ASSET0","index":"0.000003372790294110"},{"denom":"ASSET1","index":"0.000028600279733511"},{"denom":"ASSET10","index":"0.000022731421090197"},{"denom":"ASSET11","index":"0.000028396190348540"},{"denom":"ASSET12","index":"0.000027027392524280"},{"denom":"ASSET13","index":"0.000008915082315276"},{"denom":"ASSET14","index":"0.000026078776667620"},{"denom":"ASSET15","index":"0.000020492230414373"},{"denom":"ASSET16","index":"0.000012694274413467"},{"denom":"ASSET17","index":"0.000009931274832025"},{"denom":"ASSET18","index":"0.000004123939856338"},{"denom":"ASSET2","index":"0.000008653658587521"},{"denom":"ASSET3","index":"0.000002407864000528"},{"denom":"ASSET4","index":"0.000023189126720885"},{"denom":"ASSET5","index":"0.000001875419633234"},{"denom":"ASSET6","index":"0.000007571725921487"},{"denom":"ASSET7","index":"0.000011883748947250"},{"denom":"ASSET8","index":"0.000016207221904670"},{"denom":"ASSET9","index":"0.000006883201227023"}],"last_reward_claim_height":"153"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET12","shares":"204241081.000000002450892972","reward_history":[{"denom":"ASSET0","index":"0.000001763265776240"},{"denom":"ASSET1","index":"0.000014701143889842"},{"denom":"ASSET10","index":"0.000010242267715158"},{"denom":"ASSET11","index":"0.000014221824092125"},{"denom":"ASSET12","index":"0.000012807154532407"},{"denom":"ASSET13","index":"0.000004407037513175"},{"denom":"ASSET14","index":"0.000013285723045174"},{"denom":"ASSET15","index":"0.000009498495615253"},{"denom":"ASSET16","index":"0.000006622576828953"},{"denom":"ASSET17","index":"0.000004703043783239"},{"denom":"ASSET18","index":"0.000002240331719108"},{"denom":"ASSET2","index":"0.000004339421867729"},{"denom":"ASSET3","index":"0.000001269671564485"},{"denom":"ASSET4","index":"0.000011947684550294"},{"denom":"ASSET5","index":"0.000000984934568662"},{"denom":"ASSET6","index":"0.000004010359059893"},{"denom":"ASSET7","index":"0.000006141754461338"},{"denom":"ASSET8","index":"0.000008013956555240"},{"denom":"ASSET9","index":"0.000003461169761882"}],"last_reward_claim_height":"108"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET16","shares":"1444501.000000000000000000","reward_history":[],"last_reward_claim_height":"1"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET10","shares":"159024385.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002846126280344"},{"denom":"ASSET1","index":"0.000024142729904188"},{"denom":"ASSET10","index":"0.000019247649074564"},{"denom":"ASSET11","index":"0.000023985879136349"},{"denom":"ASSET12","index":"0.000022859091275790"},{"denom":"ASSET13","index":"0.000007532792628817"},{"denom":"ASSET14","index":"0.000022018595952129"},{"denom":"ASSET15","index":"0.000017341431925331"},{"denom":"ASSET16","index":"0.000010711928951149"},{"denom":"ASSET17","index":"0.000008400535387767"},{"denom":"ASSET18","index":"0.000003476353193421"},{"denom":"ASSET2","index":"0.000007309791035362"},{"denom":"ASSET3","index":"0.000002031285314481"},{"denom":"ASSET4","index":"0.000019573873127075"},{"denom":"ASSET5","index":"0.000001582650339951"},{"denom":"ASSET6","index":"0.000006386635795582"},{"denom":"ASSET7","index":"0.000010030235680714"},{"denom":"ASSET8","index":"0.000013694243666513"},{"denom":"ASSET9","index":"0.000005813799926422"}],"last_reward_claim_height":"168"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET14","shares":"135233041.454593683587529186","reward_history":[{"denom":"ASSET0","index":"0.000004406145269356"},{"denom":"ASSET1","index":"0.000035982671068665"},{"denom":"ASSET10","index":"0.000031271738130447"},{"denom":"ASSET11","index":"0.000037474537578871"},{"denom":"ASSET12","index":"0.000035655856503069"},{"denom":"ASSET13","index":"0.000012104130170712"},{"denom":"ASSET14","index":"0.000034588610172798"},{"denom":"ASSET15","index":"0.000028072528074935"},{"denom":"ASSET16","index":"0.000015968874002764"},{"denom":"ASSET17","index":"0.000012944169264583"},{"denom":"ASSET18","index":"0.000005384646829137"},{"denom":"ASSET2","index":"0.000010857489792794"},{"denom":"ASSET3","index":"0.000003128490133943"},{"denom":"ASSET4","index":"0.000029514600008257"},{"denom":"ASSET5","index":"0.000002457760230967"},{"denom":"ASSET6","index":"0.000010037466684357"},{"denom":"ASSET7","index":"0.000015487392093402"},{"denom":"ASSET8","index":"0.000022350591386021"},{"denom":"ASSET9","index":"0.000008939890806059"}],"last_reward_claim_height":"199"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET16","shares":"546490558.087946417911583745","reward_history":[{"denom":"ASSET0","index":"0.000001453309126336"},{"denom":"ASSET1","index":"0.000012116886392617"},{"denom":"ASSET10","index":"0.000008441923956558"},{"denom":"ASSET11","index":"0.000011721955689254"},{"denom":"ASSET12","index":"0.000010555542874101"},{"denom":"ASSET13","index":"0.000003632376264868"},{"denom":"ASSET14","index":"0.000010950025301978"},{"denom":"ASSET15","index":"0.000007829131366891"},{"denom":"ASSET16","index":"0.000005458650595742"},{"denom":"ASSET17","index":"0.000003876686404859"},{"denom":"ASSET18","index":"0.000001846446727754"},{"denom":"ASSET2","index":"0.000003576790104576"},{"denom":"ASSET3","index":"0.000001046274984845"},{"denom":"ASSET4","index":"0.000009847267605868"},{"denom":"ASSET5","index":"0.000000812275181037"},{"denom":"ASSET6","index":"0.000003305135159925"},{"denom":"ASSET7","index":"0.000005061926790434"},{"denom":"ASSET8","index":"0.000006605339289501"},{"denom":"ASSET9","index":"0.000002852825194325"}],"last_reward_claim_height":"95"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET1","shares":"351661044.242143563311367702","reward_history":[{"denom":"ASSET0","index":"0.000003036454064443"},{"denom":"ASSET1","index":"0.000025762443856573"},{"denom":"ASSET10","index":"0.000020552854458451"},{"denom":"ASSET11","index":"0.000025598594042577"},{"denom":"ASSET12","index":"0.000024403233064712"},{"denom":"ASSET13","index":"0.000008040226829205"},{"denom":"ASSET14","index":"0.000023496526683137"},{"denom":"ASSET15","index":"0.000018514610345002"},{"denom":"ASSET16","index":"0.000011429420030088"},{"denom":"ASSET17","index":"0.000008967792958730"},{"denom":"ASSET18","index":"0.000003708688180539"},{"denom":"ASSET2","index":"0.000007801450355100"},{"denom":"ASSET3","index":"0.000002167197324698"},{"denom":"ASSET4","index":"0.000020886439041228"},{"denom":"ASSET5","index":"0.000001688395026424"},{"denom":"ASSET6","index":"0.000006814112030993"},{"denom":"ASSET7","index":"0.000010703097412338"},{"denom":"ASSET8","index":"0.000014616213118562"},{"denom":"ASSET9","index":"0.000006204650488693"}],"last_reward_claim_height":"127"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET6","shares":"409161503.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004579400192033"},{"denom":"ASSET1","index":"0.000037472260458931"},{"denom":"ASSET10","index":"0.000032444794741920"},{"denom":"ASSET11","index":"0.000038938975596945"},{"denom":"ASSET12","index":"0.000037059285480927"},{"denom":"ASSET13","index":"0.000012561263189519"},{"denom":"ASSET14","index":"0.000035928426876446"},{"denom":"ASSET15","index":"0.000029127648221084"},{"denom":"ASSET16","index":"0.000016628374395061"},{"denom":"ASSET17","index":"0.000013461522639347"},{"denom":"ASSET18","index":"0.000005595935921704"},{"denom":"ASSET2","index":"0.000011310239971506"},{"denom":"ASSET3","index":"0.000003252341030929"},{"denom":"ASSET4","index":"0.000030717793529802"},{"denom":"ASSET5","index":"0.000002553898048133"},{"denom":"ASSET6","index":"0.000010424767435139"},{"denom":"ASSET7","index":"0.000016100084567463"},{"denom":"ASSET8","index":"0.000023177450827129"},{"denom":"ASSET9","index":"0.000009296241529202"}],"last_reward_claim_height":"200"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET9","shares":"1117500380.466271892000000000","reward_history":[{"denom":"ASSET0","index":"0.000001542334439671"},{"denom":"ASSET1","index":"0.000012860022908304"},{"denom":"ASSET10","index":"0.000008959505058412"},{"denom":"ASSET11","index":"0.000012440701863130"},{"denom":"ASSET12","index":"0.000011202637482986"},{"denom":"ASSET13","index":"0.000003855293405849"},{"denom":"ASSET14","index":"0.000011621234937056"},{"denom":"ASSET15","index":"0.000008308996655285"},{"denom":"ASSET16","index":"0.000005793070384239"},{"denom":"ASSET17","index":"0.000004114339021332"},{"denom":"ASSET18","index":"0.000001959846507084"},{"denom":"ASSET2","index":"0.000003796320730815"},{"denom":"ASSET3","index":"0.000001110350550164"},{"denom":"ASSET4","index":"0.000010450826325201"},{"denom":"ASSET5","index":"0.000000861797005699"},{"denom":"ASSET6","index":"0.000003507969675592"},{"denom":"ASSET7","index":"0.000005372663952407"},{"denom":"ASSET8","index":"0.000007010512417899"},{"denom":"ASSET9","index":"0.000003027866977623"}],"last_reward_claim_height":"81"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET11","shares":"1000176173.649825836000000000","reward_history":[{"denom":"ASSET0","index":"0.000003036454064443"},{"denom":"ASSET1","index":"0.000025762443856573"},{"denom":"ASSET10","index":"0.000020552854458451"},{"denom":"ASSET11","index":"0.000025598594042577"},{"denom":"ASSET12","index":"0.000024403233064712"},{"denom":"ASSET13","index":"0.000008040226829205"},{"denom":"ASSET14","index":"0.000023496526683137"},{"denom":"ASSET15","index":"0.000018514610345002"},{"denom":"ASSET16","index":"0.000011429420030088"},{"denom":"ASSET17","index":"0.000008967792958730"},{"denom":"ASSET18","index":"0.000003708688180539"},{"denom":"ASSET2","index":"0.000007801450355100"},{"denom":"ASSET3","index":"0.000002167197324698"},{"denom":"ASSET4","index":"0.000020886439041228"},{"denom":"ASSET5","index":"0.000001688395026424"},{"denom":"ASSET6","index":"0.000006814112030993"},{"denom":"ASSET7","index":"0.000010703097412338"},{"denom":"ASSET8","index":"0.000014616213118562"},{"denom":"ASSET9","index":"0.000006204650488693"}],"last_reward_claim_height":"148"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET8","shares":"278912430.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001802604811891"},{"denom":"ASSET1","index":"0.000015041134377282"},{"denom":"ASSET10","index":"0.000010478421042795"},{"denom":"ASSET11","index":"0.000014549893343095"},{"denom":"ASSET12","index":"0.000013101148598203"},{"denom":"ASSET13","index":"0.000004508593559534"},{"denom":"ASSET14","index":"0.000013592389632390"},{"denom":"ASSET15","index":"0.000009716581133843"},{"denom":"ASSET16","index":"0.000006773297988330"},{"denom":"ASSET17","index":"0.000004812496911192"},{"denom":"ASSET18","index":"0.000002289682786467"},{"denom":"ASSET2","index":"0.000004437821546134"},{"denom":"ASSET3","index":"0.000001298874598869"},{"denom":"ASSET4","index":"0.000012222743020122"},{"denom":"ASSET5","index":"0.000001007460426045"},{"denom":"ASSET6","index":"0.000004100613717582"},{"denom":"ASSET7","index":"0.000006282056954143"},{"denom":"ASSET8","index":"0.000008197064375552"},{"denom":"ASSET9","index":"0.000003538600669994"}],"last_reward_claim_height":"80"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET10","shares":"84434452.556999519950649390","reward_history":[{"denom":"ASSET0","index":"0.000005180085583978"},{"denom":"ASSET1","index":"0.000042453398829291"},{"denom":"ASSET10","index":"0.000036601166522925"},{"denom":"ASSET11","index":"0.000044027815346030"},{"denom":"ASSET12","index":"0.000041882382657179"},{"denom":"ASSET13","index":"0.000014186442935092"},{"denom":"ASSET14","index":"0.000040623148163189"},{"denom":"ASSET15","index":"0.000032869444044267"},{"denom":"ASSET16","index":"0.000018839345473644"},{"denom":"ASSET17","index":"0.000015220818962022"},{"denom":"ASSET18","index":"0.000006331525475439"},{"denom":"ASSET2","index":"0.000012809427742229"},{"denom":"ASSET3","index":"0.000003681341435185"},{"denom":"ASSET4","index":"0.000034786704814403"},{"denom":"ASSET5","index":"0.000002888643103732"},{"denom":"ASSET6","index":"0.000011788771185399"},{"denom":"ASSET7","index":"0.000018215500007226"},{"denom":"ASSET8","index":"0.000026160872429339"},{"denom":"ASSET9","index":"0.000010514780317885"}],"last_reward_claim_height":"187"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET18","shares":"820585114.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001802604811891"},{"denom":"ASSET1","index":"0.000015041134377282"},{"denom":"ASSET10","index":"0.000010478421042795"},{"denom":"ASSET11","index":"0.000014549893343095"},{"denom":"ASSET12","index":"0.000013101148598203"},{"denom":"ASSET13","index":"0.000004508593559534"},{"denom":"ASSET14","index":"0.000013592389632390"},{"denom":"ASSET15","index":"0.000009716581133843"},{"denom":"ASSET16","index":"0.000006773297988330"},{"denom":"ASSET17","index":"0.000004812496911192"},{"denom":"ASSET18","index":"0.000002289682786467"},{"denom":"ASSET2","index":"0.000004437821546134"},{"denom":"ASSET3","index":"0.000001298874598869"},{"denom":"ASSET4","index":"0.000012222743020122"},{"denom":"ASSET5","index":"0.000001007460426045"},{"denom":"ASSET6","index":"0.000004100613717582"},{"denom":"ASSET7","index":"0.000006282056954143"},{"denom":"ASSET8","index":"0.000008197064375552"},{"denom":"ASSET9","index":"0.000003538600669994"}],"last_reward_claim_height":"91"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET10","shares":"16231884.471820043382326190","reward_history":[{"denom":"ASSET0","index":"0.000003311345528520"},{"denom":"ASSET1","index":"0.000028134750769747"},{"denom":"ASSET10","index":"0.000022648872120201"},{"denom":"ASSET11","index":"0.000028007957662740"},{"denom":"ASSET12","index":"0.000026803793052874"},{"denom":"ASSET13","index":"0.000008804941803873"},{"denom":"ASSET14","index":"0.000025676450668466"},{"denom":"ASSET15","index":"0.000020365161363483"},{"denom":"ASSET16","index":"0.000012467103206876"},{"denom":"ASSET17","index":"0.000009848512066991"},{"denom":"ASSET18","index":"0.000004032794375330"},{"denom":"ASSET2","index":"0.000008534928074651"},{"denom":"ASSET3","index":"0.000002362590241163"},{"denom":"ASSET4","index":"0.000022806063702805"},{"denom":"ASSET5","index":"0.000001840254083448"},{"denom":"ASSET6","index":"0.000007424521355960"},{"denom":"ASSET7","index":"0.000011683846998076"},{"denom":"ASSET8","index":"0.000016006498096466"},{"denom":"ASSET9","index":"0.000006786333067798"}],"last_reward_claim_height":"133"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET11","shares":"240013.721539905905590163","reward_history":[{"denom":"ASSET0","index":"0.000003311345528520"},{"denom":"ASSET1","index":"0.000028134750769747"},{"denom":"ASSET10","index":"0.000022648872120201"},{"denom":"ASSET11","index":"0.000028007957662740"},{"denom":"ASSET12","index":"0.000026803793052874"},{"denom":"ASSET13","index":"0.000008804941803873"},{"denom":"ASSET14","index":"0.000025676450668466"},{"denom":"ASSET15","index":"0.000020365161363483"},{"denom":"ASSET16","index":"0.000012467103206876"},{"denom":"ASSET17","index":"0.000009848512066991"},{"denom":"ASSET18","index":"0.000004032794375330"},{"denom":"ASSET2","index":"0.000008534928074651"},{"denom":"ASSET3","index":"0.000002362590241163"},{"denom":"ASSET4","index":"0.000022806063702805"},{"denom":"ASSET5","index":"0.000001840254083448"},{"denom":"ASSET6","index":"0.000007424521355960"},{"denom":"ASSET7","index":"0.000011683846998076"},{"denom":"ASSET8","index":"0.000016006498096466"},{"denom":"ASSET9","index":"0.000006786333067798"}],"last_reward_claim_height":"125"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET4","shares":"75891537.000000000000000000","reward_history":[],"last_reward_claim_height":"38"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET1","shares":"631911356.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003203314564743"},{"denom":"ASSET1","index":"0.000027174750089688"},{"denom":"ASSET10","index":"0.000021494761442080"},{"denom":"ASSET11","index":"0.000026954579685264"},{"denom":"ASSET12","index":"0.000025598519259277"},{"denom":"ASSET13","index":"0.000008453363478510"},{"denom":"ASSET14","index":"0.000024766008219885"},{"denom":"ASSET15","index":"0.000019395989679368"},{"denom":"ASSET16","index":"0.000012063312986412"},{"denom":"ASSET17","index":"0.000009406957788586"},{"denom":"ASSET18","index":"0.000003925664786352"},{"denom":"ASSET2","index":"0.000008214094571203"},{"denom":"ASSET3","index":"0.000002289770772075"},{"denom":"ASSET4","index":"0.000022031271429646"},{"denom":"ASSET5","index":"0.000001779377444361"},{"denom":"ASSET6","index":"0.000007202120906665"},{"denom":"ASSET7","index":"0.000011290805949933"},{"denom":"ASSET8","index":"0.000015376618183469"},{"denom":"ASSET9","index":"0.000006529467958809"}],"last_reward_claim_height":"158"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET2","shares":"6281782.907592107752797549","reward_history":[{"denom":"ASSET0","index":"0.000001732863553160"},{"denom":"ASSET1","index":"0.000014476512568697"},{"denom":"ASSET10","index":"0.000010084697727409"},{"denom":"ASSET11","index":"0.000014004946421444"},{"denom":"ASSET12","index":"0.000012607292539223"},{"denom":"ASSET13","index":"0.000004334999642824"},{"denom":"ASSET14","index":"0.000013078858686476"},{"denom":"ASSET15","index":"0.000009351781667220"},{"denom":"ASSET16","index":"0.000006516703263852"},{"denom":"ASSET17","index":"0.000004630438674838"},{"denom":"ASSET18","index":"0.000002204429700414"},{"denom":"ASSET2","index":"0.000004272502924514"},{"denom":"ASSET3","index":"0.000001249934366214"},{"denom":"ASSET4","index":"0.000011760746082105"},{"denom":"ASSET5","index":"0.000000965858373893"},{"denom":"ASSET6","index":"0.000003948656293267"},{"denom":"ASSET7","index":"0.000006045137116599"},{"denom":"ASSET8","index":"0.000007891631066688"},{"denom":"ASSET9","index":"0.000003403230388010"}],"last_reward_claim_height":"121"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET10","shares":"1010536592.917830310135414526","reward_history":[{"denom":"ASSET0","index":"0.000003203314564743"},{"denom":"ASSET1","index":"0.000027174750089688"},{"denom":"ASSET10","index":"0.000021494761442080"},{"denom":"ASSET11","index":"0.000026954579685264"},{"denom":"ASSET12","index":"0.000025598519259277"},{"denom":"ASSET13","index":"0.000008453363478510"},{"denom":"ASSET14","index":"0.000024766008219885"},{"denom":"ASSET15","index":"0.000019395989679368"},{"denom":"ASSET16","index":"0.000012063312986412"},{"denom":"ASSET17","index":"0.000009406957788586"},{"denom":"ASSET18","index":"0.000003925664786352"},{"denom":"ASSET2","index":"0.000008214094571203"},{"denom":"ASSET3","index":"0.000002289770772075"},{"denom":"ASSET4","index":"0.000022031271429646"},{"denom":"ASSET5","index":"0.000001779377444361"},{"denom":"ASSET6","index":"0.000007202120906665"},{"denom":"ASSET7","index":"0.000011290805949933"},{"denom":"ASSET8","index":"0.000015376618183469"},{"denom":"ASSET9","index":"0.000006529467958809"}],"last_reward_claim_height":"177"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET13","shares":"789412777.338345145545740736","reward_history":[{"denom":"ASSET0","index":"0.000004819121490741"},{"denom":"ASSET1","index":"0.000039439037062385"},{"denom":"ASSET10","index":"0.000033949711699647"},{"denom":"ASSET11","index":"0.000040926462496439"},{"denom":"ASSET12","index":"0.000038853804420393"},{"denom":"ASSET13","index":"0.000013188383097013"},{"denom":"ASSET14","index":"0.000037786507004869"},{"denom":"ASSET15","index":"0.000030511465947454"},{"denom":"ASSET16","index":"0.000017508488927783"},{"denom":"ASSET17","index":"0.000014113313501087"},{"denom":"ASSET18","index":"0.000005902508101436"},{"denom":"ASSET2","index":"0.000011888871733978"},{"denom":"ASSET3","index":"0.000003426020888663"},{"denom":"ASSET4","index":"0.000032328377078046"},{"denom":"ASSET5","index":"0.000002685672180211"},{"denom":"ASSET6","index":"0.000010983824100820"},{"denom":"ASSET7","index":"0.000016943392626871"},{"denom":"ASSET8","index":"0.000024343267700456"},{"denom":"ASSET9","index":"0.000009767523137997"}],"last_reward_claim_height":"199"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET4","shares":"176496174.065816592009872868","reward_history":[{"denom":"ASSET0","index":"0.000001687731873143"},{"denom":"ASSET1","index":"0.000014069560961171"},{"denom":"ASSET10","index":"0.000009802495056563"},{"denom":"ASSET11","index":"0.000013610740912442"},{"denom":"ASSET12","index":"0.000012256373563096"},{"denom":"ASSET13","index":"0.000004217751625940"},{"denom":"ASSET14","index":"0.000012714404583367"},{"denom":"ASSET15","index":"0.000009090791386823"},{"denom":"ASSET16","index":"0.000006338265608675"},{"denom":"ASSET17","index":"0.000004501407356839"},{"denom":"ASSET18","index":"0.000002144184836496"},{"denom":"ASSET2","index":"0.000004153051292327"},{"denom":"ASSET3","index":"0.000001214709312157"},{"denom":"ASSET4","index":"0.000011433811394910"},{"denom":"ASSET5","index":"0.000000942889008137"},{"denom":"ASSET6","index":"0.000003837834423079"},{"denom":"ASSET7","index":"0.000005877867503028"},{"denom":"ASSET8","index":"0.000007669751132718"},{"denom":"ASSET9","index":"0.000003312735983819"}],"last_reward_claim_height":"86"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET9","shares":"852704005.732624120659085236","reward_history":[{"denom":"ASSET0","index":"0.000003310751488522"},{"denom":"ASSET1","index":"0.000028084250149300"},{"denom":"ASSET10","index":"0.000022395324527460"},{"denom":"ASSET11","index":"0.000027902986790638"},{"denom":"ASSET12","index":"0.000026594787286768"},{"denom":"ASSET13","index":"0.000008763085936534"},{"denom":"ASSET14","index":"0.000025613920456358"},{"denom":"ASSET15","index":"0.000020176020856033"},{"denom":"ASSET16","index":"0.000012460451689171"},{"denom":"ASSET17","index":"0.000009773335616478"},{"denom":"ASSET18","index":"0.000004043661907525"},{"denom":"ASSET2","index":"0.000008503271494062"},{"denom":"ASSET3","index":"0.000002362859659779"},{"denom":"ASSET4","index":"0.000022769116693783"},{"denom":"ASSET5","index":"0.000001840413908887"},{"denom":"ASSET6","index":"0.000007429033260494"},{"denom":"ASSET7","index":"0.000011667535172652"},{"denom":"ASSET8","index":"0.000015931047386954"},{"denom":"ASSET9","index":"0.000006763232815972"}],"last_reward_claim_height":"143"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET7","shares":"1688907231.880732529000000000","reward_history":[{"denom":"ASSET0","index":"0.000001411639939639"},{"denom":"ASSET1","index":"0.000011770559134781"},{"denom":"ASSET10","index":"0.000008200405560598"},{"denom":"ASSET11","index":"0.000011386782830640"},{"denom":"ASSET12","index":"0.000010253700018254"},{"denom":"ASSET13","index":"0.000003528795747429"},{"denom":"ASSET14","index":"0.000010636868119061"},{"denom":"ASSET15","index":"0.000007604974496011"},{"denom":"ASSET16","index":"0.000005302316671163"},{"denom":"ASSET17","index":"0.000003765386844594"},{"denom":"ASSET18","index":"0.000001793591633776"},{"denom":"ASSET2","index":"0.000003474665650649"},{"denom":"ASSET3","index":"0.000001016307772140"},{"denom":"ASSET4","index":"0.000009565822046806"},{"denom":"ASSET5","index":"0.000000788839724994"},{"denom":"ASSET6","index":"0.000003210705403426"},{"denom":"ASSET7","index":"0.000004917323960353"},{"denom":"ASSET8","index":"0.000006416545180176"},{"denom":"ASSET9","index":"0.000002771582595835"}],"last_reward_claim_height":"97"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET11","shares":"599143498.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001411639939639"},{"denom":"ASSET1","index":"0.000011770559134781"},{"denom":"ASSET10","index":"0.000008200405560598"},{"denom":"ASSET11","index":"0.000011386782830640"},{"denom":"ASSET12","index":"0.000010253700018254"},{"denom":"ASSET13","index":"0.000003528795747429"},{"denom":"ASSET14","index":"0.000010636868119061"},{"denom":"ASSET15","index":"0.000007604974496011"},{"denom":"ASSET16","index":"0.000005302316671163"},{"denom":"ASSET17","index":"0.000003765386844594"},{"denom":"ASSET18","index":"0.000001793591633776"},{"denom":"ASSET2","index":"0.000003474665650649"},{"denom":"ASSET3","index":"0.000001016307772140"},{"denom":"ASSET4","index":"0.000009565822046806"},{"denom":"ASSET5","index":"0.000000788839724994"},{"denom":"ASSET6","index":"0.000003210705403426"},{"denom":"ASSET7","index":"0.000004917323960353"},{"denom":"ASSET8","index":"0.000006416545180176"},{"denom":"ASSET9","index":"0.000002771582595835"}],"last_reward_claim_height":"84"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET18","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001411639939639"},{"denom":"ASSET1","index":"0.000011770559134781"},{"denom":"ASSET10","index":"0.000008200405560598"},{"denom":"ASSET11","index":"0.000011386782830640"},{"denom":"ASSET12","index":"0.000010253700018254"},{"denom":"ASSET13","index":"0.000003528795747429"},{"denom":"ASSET14","index":"0.000010636868119061"},{"denom":"ASSET15","index":"0.000007604974496011"},{"denom":"ASSET16","index":"0.000005302316671163"},{"denom":"ASSET17","index":"0.000003765386844594"},{"denom":"ASSET18","index":"0.000001793591633776"},{"denom":"ASSET2","index":"0.000003474665650649"},{"denom":"ASSET3","index":"0.000001016307772140"},{"denom":"ASSET4","index":"0.000009565822046806"},{"denom":"ASSET5","index":"0.000000788839724994"},{"denom":"ASSET6","index":"0.000003210705403426"},{"denom":"ASSET7","index":"0.000004917323960353"},{"denom":"ASSET8","index":"0.000006416545180176"},{"denom":"ASSET9","index":"0.000002771582595835"}],"last_reward_claim_height":"118"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET5","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"25"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET16","shares":"86631400.147970525359394952","reward_history":[{"denom":"ASSET0","index":"0.000003306866574231"},{"denom":"ASSET1","index":"0.000028073670524533"},{"denom":"ASSET10","index":"0.000022410378668975"},{"denom":"ASSET11","index":"0.000027896117796052"},{"denom":"ASSET12","index":"0.000026601615360568"},{"denom":"ASSET13","index":"0.000008760019105133"},{"denom":"ASSET14","index":"0.000025604072816608"},{"denom":"ASSET15","index":"0.000020183975077340"},{"denom":"ASSET16","index":"0.000012452378452775"},{"denom":"ASSET17","index":"0.000009773941069454"},{"denom":"ASSET18","index":"0.000004038323507821"},{"denom":"ASSET2","index":"0.000008501686860316"},{"denom":"ASSET3","index":"0.000002358773872569"},{"denom":"ASSET4","index":"0.000022758821093429"},{"denom":"ASSET5","index":"0.000001837837668790"},{"denom":"ASSET6","index":"0.000007423905647148"},{"denom":"ASSET7","index":"0.000011659308440973"},{"denom":"ASSET8","index":"0.000015926660063085"},{"denom":"ASSET9","index":"0.000006759875068056"}],"last_reward_claim_height":"161"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET6","shares":"747595990.330359773837766343","reward_history":[{"denom":"ASSET0","index":"0.000003119961272076"},{"denom":"ASSET1","index":"0.000026462428012801"},{"denom":"ASSET10","index":"0.000021088828135750"},{"denom":"ASSET11","index":"0.000026288818556387"},{"denom":"ASSET12","index":"0.000025049012446876"},{"denom":"ASSET13","index":"0.000008256026418292"},{"denom":"ASSET14","index":"0.000024133914778951"},{"denom":"ASSET15","index":"0.000019001193386697"},{"denom":"ASSET16","index":"0.000011741691861213"},{"denom":"ASSET17","index":"0.000009205139483526"},{"denom":"ASSET18","index":"0.000003811157018018"},{"denom":"ASSET2","index":"0.000008011229275486"},{"denom":"ASSET3","index":"0.000002226652147557"},{"denom":"ASSET4","index":"0.000021454928269907"},{"denom":"ASSET5","index":"0.000001734689929917"},{"denom":"ASSET6","index":"0.000007001091110949"},{"denom":"ASSET7","index":"0.000010994186615549"},{"denom":"ASSET8","index":"0.000015007966738007"},{"denom":"ASSET9","index":"0.000006372340046203"}],"last_reward_claim_height":"127"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET3","shares":"654618213.999999997884922288","reward_history":[],"last_reward_claim_height":"36"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET5","shares":"151225227.000000000000000000","reward_history":[],"last_reward_claim_height":"22"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET6","shares":"590431197.000000000000000000","reward_history":[],"last_reward_claim_height":"52"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET14","shares":"953632152.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003061984062566"},{"denom":"ASSET1","index":"0.000025984754387841"},{"denom":"ASSET10","index":"0.000020750278468036"},{"denom":"ASSET11","index":"0.000025825260107338"},{"denom":"ASSET12","index":"0.000024630365005548"},{"denom":"ASSET13","index":"0.000008111503841622"},{"denom":"ASSET14","index":"0.000023701848593669"},{"denom":"ASSET15","index":"0.000018689068915475"},{"denom":"ASSET16","index":"0.000011526541772952"},{"denom":"ASSET17","index":"0.000009050861170220"},{"denom":"ASSET18","index":"0.000003739265665267"},{"denom":"ASSET2","index":"0.000007869809789784"},{"denom":"ASSET3","index":"0.000002185113944095"},{"denom":"ASSET4","index":"0.000021066477214749"},{"denom":"ASSET5","index":"0.000001702392649313"},{"denom":"ASSET6","index":"0.000006871251000760"},{"denom":"ASSET7","index":"0.000010794622225013"},{"denom":"ASSET8","index":"0.000014746923085504"},{"denom":"ASSET9","index":"0.000006258895459680"}],"last_reward_claim_height":"136"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET2","shares":"279882028.383897104254841390","reward_history":[{"denom":"ASSET0","index":"0.000003296605577903"},{"denom":"ASSET1","index":"0.000027950980635352"},{"denom":"ASSET10","index":"0.000022177590033485"},{"denom":"ASSET11","index":"0.000027741245317152"},{"denom":"ASSET12","index":"0.000026384837371861"},{"denom":"ASSET13","index":"0.000008707523198290"},{"denom":"ASSET14","index":"0.000025482773879389"},{"denom":"ASSET15","index":"0.000019999205716580"},{"denom":"ASSET16","index":"0.000012408342313410"},{"denom":"ASSET17","index":"0.000009694954350389"},{"denom":"ASSET18","index":"0.000004033447725414"},{"denom":"ASSET2","index":"0.000008454290496983"},{"denom":"ASSET3","index":"0.000002354114882033"},{"denom":"ASSET4","index":"0.000022662624820802"},{"denom":"ASSET5","index":"0.000001833709311257"},{"denom":"ASSET6","index":"0.000007402928859239"},{"denom":"ASSET7","index":"0.000011614131087351"},{"denom":"ASSET8","index":"0.000015829970625061"},{"denom":"ASSET9","index":"0.000006725199056296"}],"last_reward_claim_height":"164"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET3","shares":"601018737.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001745217677213"},{"denom":"ASSET1","index":"0.000014553842410819"},{"denom":"ASSET10","index":"0.000010139729507131"},{"denom":"ASSET11","index":"0.000014078681363843"},{"denom":"ASSET12","index":"0.000012678362515121"},{"denom":"ASSET13","index":"0.000004362304066790"},{"denom":"ASSET14","index":"0.000013152043309614"},{"denom":"ASSET15","index":"0.000009402563770700"},{"denom":"ASSET16","index":"0.000006556038246289"},{"denom":"ASSET17","index":"0.000004655394058383"},{"denom":"ASSET18","index":"0.000002217418219224"},{"denom":"ASSET2","index":"0.000004295692705065"},{"denom":"ASSET3","index":"0.000001256734357891"},{"denom":"ASSET4","index":"0.000011827217337515"},{"denom":"ASSET5","index":"0.000000975486386160"},{"denom":"ASSET6","index":"0.000003970037158850"},{"denom":"ASSET7","index":"0.000006079396946830"},{"denom":"ASSET8","index":"0.000007932673055287"},{"denom":"ASSET9","index":"0.000003426784497665"}],"last_reward_claim_height":"90"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET11","shares":"91206696.000000000000000000","reward_history":[],"last_reward_claim_height":"22"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET15","shares":"792344110.638960358545605390","reward_history":[{"denom":"ASSET0","index":"0.000001745217677213"},{"denom":"ASSET1","index":"0.000014553842410819"},{"denom":"ASSET10","index":"0.000010139729507131"},{"denom":"ASSET11","index":"0.000014078681363843"},{"denom":"ASSET12","index":"0.000012678362515121"},{"denom":"ASSET13","index":"0.000004362304066790"},{"denom":"ASSET14","index":"0.000013152043309614"},{"denom":"ASSET15","index":"0.000009402563770700"},{"denom":"ASSET16","index":"0.000006556038246289"},{"denom":"ASSET17","index":"0.000004655394058383"},{"denom":"ASSET18","index":"0.000002217418219224"},{"denom":"ASSET2","index":"0.000004295692705065"},{"denom":"ASSET3","index":"0.000001256734357891"},{"denom":"ASSET4","index":"0.000011827217337515"},{"denom":"ASSET5","index":"0.000000975486386160"},{"denom":"ASSET6","index":"0.000003970037158850"},{"denom":"ASSET7","index":"0.000006079396946830"},{"denom":"ASSET8","index":"0.000007932673055287"},{"denom":"ASSET9","index":"0.000003426784497665"}],"last_reward_claim_height":"79"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET7","shares":"466531674.094960380885223874","reward_history":[{"denom":"ASSET0","index":"0.000001696105704481"},{"denom":"ASSET1","index":"0.000014140754037071"},{"denom":"ASSET10","index":"0.000009851931515387"},{"denom":"ASSET11","index":"0.000013679695806241"},{"denom":"ASSET12","index":"0.000012318593050331"},{"denom":"ASSET13","index":"0.000004239283286244"},{"denom":"ASSET14","index":"0.000012779160793682"},{"denom":"ASSET15","index":"0.000009136800770120"},{"denom":"ASSET16","index":"0.000006369960897657"},{"denom":"ASSET17","index":"0.000004523766024416"},{"denom":"ASSET18","index":"0.000002155201985393"},{"denom":"ASSET2","index":"0.000004174048451456"},{"denom":"ASSET3","index":"0.000001220823336742"},{"denom":"ASSET4","index":"0.000011492121647193"},{"denom":"ASSET5","index":"0.000000947621810601"},{"denom":"ASSET6","index":"0.000003857193539630"},{"denom":"ASSET7","index":"0.000005907431204387"},{"denom":"ASSET8","index":"0.000007708991716984"},{"denom":"ASSET9","index":"0.000003329429011573"}],"last_reward_claim_height":"118"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET8","shares":"770971293.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001696105704481"},{"denom":"ASSET1","index":"0.000014140754037071"},{"denom":"ASSET10","index":"0.000009851931515387"},{"denom":"ASSET11","index":"0.000013679695806241"},{"denom":"ASSET12","index":"0.000012318593050331"},{"denom":"ASSET13","index":"0.000004239283286244"},{"denom":"ASSET14","index":"0.000012779160793682"},{"denom":"ASSET15","index":"0.000009136800770120"},{"denom":"ASSET16","index":"0.000006369960897657"},{"denom":"ASSET17","index":"0.000004523766024416"},{"denom":"ASSET18","index":"0.000002155201985393"},{"denom":"ASSET2","index":"0.000004174048451456"},{"denom":"ASSET3","index":"0.000001220823336742"},{"denom":"ASSET4","index":"0.000011492121647193"},{"denom":"ASSET5","index":"0.000000947621810601"},{"denom":"ASSET6","index":"0.000003857193539630"},{"denom":"ASSET7","index":"0.000005907431204387"},{"denom":"ASSET8","index":"0.000007708991716984"},{"denom":"ASSET9","index":"0.000003329429011573"}],"last_reward_claim_height":"119"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET10","shares":"366148215.964947832049964612","reward_history":[{"denom":"ASSET0","index":"0.000001696105704481"},{"denom":"ASSET1","index":"0.000014140754037071"},{"denom":"ASSET10","index":"0.000009851931515387"},{"denom":"ASSET11","index":"0.000013679695806241"},{"denom":"ASSET12","index":"0.000012318593050331"},{"denom":"ASSET13","index":"0.000004239283286244"},{"denom":"ASSET14","index":"0.000012779160793682"},{"denom":"ASSET15","index":"0.000009136800770120"},{"denom":"ASSET16","index":"0.000006369960897657"},{"denom":"ASSET17","index":"0.000004523766024416"},{"denom":"ASSET18","index":"0.000002155201985393"},{"denom":"ASSET2","index":"0.000004174048451456"},{"denom":"ASSET3","index":"0.000001220823336742"},{"denom":"ASSET4","index":"0.000011492121647193"},{"denom":"ASSET5","index":"0.000000947621810601"},{"denom":"ASSET6","index":"0.000003857193539630"},{"denom":"ASSET7","index":"0.000005907431204387"},{"denom":"ASSET8","index":"0.000007708991716984"},{"denom":"ASSET9","index":"0.000003329429011573"}],"last_reward_claim_height":"119"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET14","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"52"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET1","shares":"43477130.974878861505902205","reward_history":[{"denom":"ASSET0","index":"0.000002735257365218"},{"denom":"ASSET1","index":"0.000023278157661741"},{"denom":"ASSET10","index":"0.000018999615823078"},{"denom":"ASSET11","index":"0.000023241706683585"},{"denom":"ASSET12","index":"0.000022372793234045"},{"denom":"ASSET13","index":"0.000007316911351959"},{"denom":"ASSET14","index":"0.000021266506066871"},{"denom":"ASSET15","index":"0.000017036720297506"},{"denom":"ASSET16","index":"0.000010298479660409"},{"denom":"ASSET17","index":"0.000008222611745720"},{"denom":"ASSET18","index":"0.000003315370510511"},{"denom":"ASSET2","index":"0.000007081336162231"},{"denom":"ASSET3","index":"0.000001948923871674"},{"denom":"ASSET4","index":"0.000018864412124408"},{"denom":"ASSET5","index":"0.000001519377842401"},{"denom":"ASSET6","index":"0.000006121992555640"},{"denom":"ASSET7","index":"0.000009661272655042"},{"denom":"ASSET8","index":"0.000013300968175029"},{"denom":"ASSET9","index":"0.000005629514833023"}],"last_reward_claim_height":"168"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET4","shares":"470341154.105901796640373064","reward_history":[{"denom":"ASSET0","index":"0.000002735257365218"},{"denom":"ASSET1","index":"0.000023278157661741"},{"denom":"ASSET10","index":"0.000018999615823078"},{"denom":"ASSET11","index":"0.000023241706683585"},{"denom":"ASSET12","index":"0.000022372793234045"},{"denom":"ASSET13","index":"0.000007316911351959"},{"denom":"ASSET14","index":"0.000021266506066871"},{"denom":"ASSET15","index":"0.000017036720297506"},{"denom":"ASSET16","index":"0.000010298479660409"},{"denom":"ASSET17","index":"0.000008222611745720"},{"denom":"ASSET18","index":"0.000003315370510511"},{"denom":"ASSET2","index":"0.000007081336162231"},{"denom":"ASSET3","index":"0.000001948923871674"},{"denom":"ASSET4","index":"0.000018864412124408"},{"denom":"ASSET5","index":"0.000001519377842401"},{"denom":"ASSET6","index":"0.000006121992555640"},{"denom":"ASSET7","index":"0.000009661272655042"},{"denom":"ASSET8","index":"0.000013300968175029"},{"denom":"ASSET9","index":"0.000005629514833023"}],"last_reward_claim_height":"146"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET6","shares":"707285320.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001139195115521"},{"denom":"ASSET1","index":"0.000009496890331931"},{"denom":"ASSET10","index":"0.000006616523219856"},{"denom":"ASSET11","index":"0.000009187371854639"},{"denom":"ASSET12","index":"0.000008273091178185"},{"denom":"ASSET13","index":"0.000002846943294505"},{"denom":"ASSET14","index":"0.000008582261490710"},{"denom":"ASSET15","index":"0.000006136055842283"},{"denom":"ASSET16","index":"0.000004278248649000"},{"denom":"ASSET17","index":"0.000003038433916001"},{"denom":"ASSET18","index":"0.000001447320933748"},{"denom":"ASSET2","index":"0.000002803422698710"},{"denom":"ASSET3","index":"0.000000819928024772"},{"denom":"ASSET4","index":"0.000007718116540611"},{"denom":"ASSET5","index":"0.000000636445192901"},{"denom":"ASSET6","index":"0.000002590694026466"},{"denom":"ASSET7","index":"0.000003967685677409"},{"denom":"ASSET8","index":"0.000005177210075735"},{"denom":"ASSET9","index":"0.000002236262294314"}],"last_reward_claim_height":"116"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET12","shares":"576322076.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001139195115521"},{"denom":"ASSET1","index":"0.000009496890331931"},{"denom":"ASSET10","index":"0.000006616523219856"},{"denom":"ASSET11","index":"0.000009187371854639"},{"denom":"ASSET12","index":"0.000008273091178185"},{"denom":"ASSET13","index":"0.000002846943294505"},{"denom":"ASSET14","index":"0.000008582261490710"},{"denom":"ASSET15","index":"0.000006136055842283"},{"denom":"ASSET16","index":"0.000004278248649000"},{"denom":"ASSET17","index":"0.000003038433916001"},{"denom":"ASSET18","index":"0.000001447320933748"},{"denom":"ASSET2","index":"0.000002803422698710"},{"denom":"ASSET3","index":"0.000000819928024772"},{"denom":"ASSET4","index":"0.000007718116540611"},{"denom":"ASSET5","index":"0.000000636445192901"},{"denom":"ASSET6","index":"0.000002590694026466"},{"denom":"ASSET7","index":"0.000003967685677409"},{"denom":"ASSET8","index":"0.000005177210075735"},{"denom":"ASSET9","index":"0.000002236262294314"}],"last_reward_claim_height":"96"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET5","shares":"537941170.819605096588108336","reward_history":[{"denom":"ASSET0","index":"0.000004884846200251"},{"denom":"ASSET1","index":"0.000040304484797617"},{"denom":"ASSET10","index":"0.000034917109179481"},{"denom":"ASSET11","index":"0.000041818292132207"},{"denom":"ASSET12","index":"0.000039867945342619"},{"denom":"ASSET13","index":"0.000013471240006092"},{"denom":"ASSET14","index":"0.000038555063072812"},{"denom":"ASSET15","index":"0.000031316255649666"},{"denom":"ASSET16","index":"0.000017871123795518"},{"denom":"ASSET17","index":"0.000014499114587660"},{"denom":"ASSET18","index":"0.000005977772587166"},{"denom":"ASSET2","index":"0.000012148457367650"},{"denom":"ASSET3","index":"0.000003465725186322"},{"denom":"ASSET4","index":"0.000033018842440738"},{"denom":"ASSET5","index":"0.000002731597284885"},{"denom":"ASSET6","index":"0.000011159624356967"},{"denom":"ASSET7","index":"0.000017271758444400"},{"denom":"ASSET8","index":"0.000024836200192877"},{"denom":"ASSET9","index":"0.000009993242634471"}],"last_reward_claim_height":"190"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET9","shares":"367940638.608941595052303234","reward_history":[{"denom":"ASSET0","index":"0.000001583959364947"},{"denom":"ASSET1","index":"0.000013443347430705"},{"denom":"ASSET10","index":"0.000009381913161610"},{"denom":"ASSET11","index":"0.000012996589661105"},{"denom":"ASSET12","index":"0.000011696930694994"},{"denom":"ASSET13","index":"0.000004020819926404"},{"denom":"ASSET14","index":"0.000012143688464595"},{"denom":"ASSET15","index":"0.000008691469335864"},{"denom":"ASSET16","index":"0.000006051537060952"},{"denom":"ASSET17","index":"0.000004305120325241"},{"denom":"ASSET18","index":"0.000002030717134548"},{"denom":"ASSET2","index":"0.000003939591241022"},{"denom":"ASSET3","index":"0.000001137201595347"},{"denom":"ASSET4","index":"0.000010925258183866"},{"denom":"ASSET5","index":"0.000000893515539201"},{"denom":"ASSET6","index":"0.000003655290842186"},{"denom":"ASSET7","index":"0.000005604779291351"},{"denom":"ASSET8","index":"0.000007310581684371"},{"denom":"ASSET9","index":"0.000003167918729894"}],"last_reward_claim_height":"110"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET15","shares":"832606152.544927281164889100","reward_history":[{"denom":"ASSET0","index":"0.000003310378542013"},{"denom":"ASSET1","index":"0.000028352771206955"},{"denom":"ASSET10","index":"0.000022778987578468"},{"denom":"ASSET11","index":"0.000028201706998458"},{"denom":"ASSET12","index":"0.000026949790221900"},{"denom":"ASSET13","index":"0.000008856641706946"},{"denom":"ASSET14","index":"0.000025865717784540"},{"denom":"ASSET15","index":"0.000020483790155485"},{"denom":"ASSET16","index":"0.000012564495758376"},{"denom":"ASSET17","index":"0.000009912517491786"},{"denom":"ASSET18","index":"0.000004051289802086"},{"denom":"ASSET2","index":"0.000008567503486413"},{"denom":"ASSET3","index":"0.000002358477605528"},{"denom":"ASSET4","index":"0.000022984011222606"},{"denom":"ASSET5","index":"0.000001848359330263"},{"denom":"ASSET6","index":"0.000007474666006436"},{"denom":"ASSET7","index":"0.000011763521743703"},{"denom":"ASSET8","index":"0.000016098224703406"},{"denom":"ASSET9","index":"0.000006837907042961"}],"last_reward_claim_height":"143"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET2","shares":"788811292.000000000000000000","reward_history":[],"last_reward_claim_height":"49"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET5","shares":"1000006624.223810270000000000","reward_history":[{"denom":"ASSET0","index":"0.000003051773960929"},{"denom":"ASSET1","index":"0.000025898629359040"},{"denom":"ASSET10","index":"0.000020686863907037"},{"denom":"ASSET11","index":"0.000025740096441319"},{"denom":"ASSET12","index":"0.000024551000542772"},{"denom":"ASSET13","index":"0.000008085532012369"},{"denom":"ASSET14","index":"0.000023622558405526"},{"denom":"ASSET15","index":"0.000018629920308839"},{"denom":"ASSET16","index":"0.000011487540137638"},{"denom":"ASSET17","index":"0.000009021847693812"},{"denom":"ASSET18","index":"0.000003725572559942"},{"denom":"ASSET2","index":"0.000007844221178735"},{"denom":"ASSET3","index":"0.000002178252359768"},{"denom":"ASSET4","index":"0.000020996168979716"},{"denom":"ASSET5","index":"0.000001697004218389"},{"denom":"ASSET6","index":"0.000006847583721256"},{"denom":"ASSET7","index":"0.000010758483833946"},{"denom":"ASSET8","index":"0.000014699172267780"},{"denom":"ASSET9","index":"0.000006238834616461"}],"last_reward_claim_height":"155"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET15","shares":"929690936.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004647505809556"},{"denom":"ASSET1","index":"0.000038009017612926"},{"denom":"ASSET10","index":"0.000032985806125997"},{"denom":"ASSET11","index":"0.000039536736758564"},{"denom":"ASSET12","index":"0.000037639937363025"},{"denom":"ASSET13","index":"0.000012761097886329"},{"denom":"ASSET14","index":"0.000036479648984095"},{"denom":"ASSET15","index":"0.000029606122473006"},{"denom":"ASSET16","index":"0.000016864369335210"},{"denom":"ASSET17","index":"0.000013669148362381"},{"denom":"ASSET18","index":"0.000005677302881525"},{"denom":"ASSET2","index":"0.000011472901091017"},{"denom":"ASSET3","index":"0.000003300273677547"},{"denom":"ASSET4","index":"0.000031164129384679"},{"denom":"ASSET5","index":"0.000002591830530814"},{"denom":"ASSET6","index":"0.000010581810919490"},{"denom":"ASSET7","index":"0.000016340325217451"},{"denom":"ASSET8","index":"0.000023553337303201"},{"denom":"ASSET9","index":"0.000009436380699685"}],"last_reward_claim_height":"192"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET0","shares":"983321160.334544609888692977","reward_history":[{"denom":"ASSET0","index":"0.000005032492628219"},{"denom":"ASSET1","index":"0.000041266859936301"},{"denom":"ASSET10","index":"0.000035429889399779"},{"denom":"ASSET11","index":"0.000042723656696405"},{"denom":"ASSET12","index":"0.000040613653925804"},{"denom":"ASSET13","index":"0.000013753263814422"},{"denom":"ASSET14","index":"0.000039422947852626"},{"denom":"ASSET15","index":"0.000031833222954476"},{"denom":"ASSET16","index":"0.000018318787006987"},{"denom":"ASSET17","index":"0.000014763750221356"},{"denom":"ASSET18","index":"0.000006155924174192"},{"denom":"ASSET2","index":"0.000012450707876225"},{"denom":"ASSET3","index":"0.000003576279428546"},{"denom":"ASSET4","index":"0.000033804929454957"},{"denom":"ASSET5","index":"0.000002805642715656"},{"denom":"ASSET6","index":"0.000011448870089314"},{"denom":"ASSET7","index":"0.000017691249600312"},{"denom":"ASSET8","index":"0.000025352925937643"},{"denom":"ASSET9","index":"0.000010211383859297"}],"last_reward_claim_height":"196"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET1","shares":"836399381.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003452880861936"},{"denom":"ASSET1","index":"0.000029278299049117"},{"denom":"ASSET10","index":"0.000023254773922096"},{"denom":"ASSET11","index":"0.000029065569213605"},{"denom":"ASSET12","index":"0.000027656204711461"},{"denom":"ASSET13","index":"0.000009124518140406"},{"denom":"ASSET14","index":"0.000026695142606829"},{"denom":"ASSET15","index":"0.000020967476611979"},{"denom":"ASSET16","index":"0.000012995878924798"},{"denom":"ASSET17","index":"0.000010163149632422"},{"denom":"ASSET18","index":"0.000004223627093961"},{"denom":"ASSET2","index":"0.000008858348919255"},{"denom":"ASSET3","index":"0.000002465420318230"},{"denom":"ASSET4","index":"0.000023739200929128"},{"denom":"ASSET5","index":"0.000001919695214447"},{"denom":"ASSET6","index":"0.000007752150153146"},{"denom":"ASSET7","index":"0.000012165597276913"},{"denom":"ASSET8","index":"0.000016587849042771"},{"denom":"ASSET9","index":"0.000007046182609545"}],"last_reward_claim_height":"172"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET3","shares":"918446571.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001813824295534"},{"denom":"ASSET1","index":"0.000015126179984122"},{"denom":"ASSET10","index":"0.000010538420488017"},{"denom":"ASSET11","index":"0.000014633035948465"},{"denom":"ASSET12","index":"0.000013177247733614"},{"denom":"ASSET13","index":"0.000004534560738834"},{"denom":"ASSET14","index":"0.000013669547344553"},{"denom":"ASSET15","index":"0.000009773371692973"},{"denom":"ASSET16","index":"0.000006813663054312"},{"denom":"ASSET17","index":"0.000004839398062246"},{"denom":"ASSET18","index":"0.000002305279481754"},{"denom":"ASSET2","index":"0.000004465317911910"},{"denom":"ASSET3","index":"0.000001306325039660"},{"denom":"ASSET4","index":"0.000012293135053249"},{"denom":"ASSET5","index":"0.000001013309662309"},{"denom":"ASSET6","index":"0.000004125859175036"},{"denom":"ASSET7","index":"0.000006318830169217"},{"denom":"ASSET8","index":"0.000008245807377042"},{"denom":"ASSET9","index":"0.000003561783463017"}],"last_reward_claim_height":"114"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET5","shares":"489590198.000000004895901980","reward_history":[],"last_reward_claim_height":"37"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET10","shares":"7105542.747793056089313746","reward_history":[{"denom":"ASSET0","index":"0.000003452880861936"},{"denom":"ASSET1","index":"0.000029278299049117"},{"denom":"ASSET10","index":"0.000023254773922096"},{"denom":"ASSET11","index":"0.000029065569213605"},{"denom":"ASSET12","index":"0.000027656204711461"},{"denom":"ASSET13","index":"0.000009124518140406"},{"denom":"ASSET14","index":"0.000026695142606829"},{"denom":"ASSET15","index":"0.000020967476611979"},{"denom":"ASSET16","index":"0.000012995878924798"},{"denom":"ASSET17","index":"0.000010163149632422"},{"denom":"ASSET18","index":"0.000004223627093961"},{"denom":"ASSET2","index":"0.000008858348919255"},{"denom":"ASSET3","index":"0.000002465420318230"},{"denom":"ASSET4","index":"0.000023739200929128"},{"denom":"ASSET5","index":"0.000001919695214447"},{"denom":"ASSET6","index":"0.000007752150153146"},{"denom":"ASSET7","index":"0.000012165597276913"},{"denom":"ASSET8","index":"0.000016587849042771"},{"denom":"ASSET9","index":"0.000007046182609545"}],"last_reward_claim_height":"167"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET14","shares":"605208921.000000000000000000","reward_history":[],"last_reward_claim_height":"32"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET15","shares":"31071870.000000000000000000","reward_history":[],"last_reward_claim_height":"53"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET11","shares":"524652668.000000000000000000","reward_history":[],"last_reward_claim_height":"38"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET14","shares":"346641395.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002868026198866"},{"denom":"ASSET1","index":"0.000024339331661302"},{"denom":"ASSET10","index":"0.000019438063504597"},{"denom":"ASSET11","index":"0.000024190729344646"},{"denom":"ASSET12","index":"0.000023070632234294"},{"denom":"ASSET13","index":"0.000007598221307181"},{"denom":"ASSET14","index":"0.000022200415230506"},{"denom":"ASSET15","index":"0.000017506414948675"},{"denom":"ASSET16","index":"0.000010796282691537"},{"denom":"ASSET17","index":"0.000008477235924619"},{"denom":"ASSET18","index":"0.000003501529899130"},{"denom":"ASSET2","index":"0.000007371086117521"},{"denom":"ASSET3","index":"0.000002046801194740"},{"denom":"ASSET4","index":"0.000019732782799148"},{"denom":"ASSET5","index":"0.000001595074946946"},{"denom":"ASSET6","index":"0.000006435625489467"},{"denom":"ASSET7","index":"0.000010111140720407"},{"denom":"ASSET8","index":"0.000013813490690156"},{"denom":"ASSET9","index":"0.000005862589992841"}],"last_reward_claim_height":"141"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET15","shares":"591034527.205746352619445273","reward_history":[{"denom":"ASSET0","index":"0.000002868026198866"},{"denom":"ASSET1","index":"0.000024339331661302"},{"denom":"ASSET10","index":"0.000019438063504597"},{"denom":"ASSET11","index":"0.000024190729344646"},{"denom":"ASSET12","index":"0.000023070632234294"},{"denom":"ASSET13","index":"0.000007598221307181"},{"denom":"ASSET14","index":"0.000022200415230506"},{"denom":"ASSET15","index":"0.000017506414948675"},{"denom":"ASSET16","index":"0.000010796282691537"},{"denom":"ASSET17","index":"0.000008477235924619"},{"denom":"ASSET18","index":"0.000003501529899130"},{"denom":"ASSET2","index":"0.000007371086117521"},{"denom":"ASSET3","index":"0.000002046801194740"},{"denom":"ASSET4","index":"0.000019732782799148"},{"denom":"ASSET5","index":"0.000001595074946946"},{"denom":"ASSET6","index":"0.000006435625489467"},{"denom":"ASSET7","index":"0.000010111140720407"},{"denom":"ASSET8","index":"0.000013813490690156"},{"denom":"ASSET9","index":"0.000005862589992841"}],"last_reward_claim_height":"149"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET3","shares":"104879698.429106169644575101","reward_history":[{"denom":"ASSET0","index":"0.000001655416114862"},{"denom":"ASSET1","index":"0.000013800538848519"},{"denom":"ASSET10","index":"0.000009615249134678"},{"denom":"ASSET11","index":"0.000013350879623065"},{"denom":"ASSET12","index":"0.000012022439267096"},{"denom":"ASSET13","index":"0.000004137189147657"},{"denom":"ASSET14","index":"0.000012471558036751"},{"denom":"ASSET15","index":"0.000008916980241305"},{"denom":"ASSET16","index":"0.000006216863065381"},{"denom":"ASSET17","index":"0.000004414983428766"},{"denom":"ASSET18","index":"0.000002102913517117"},{"denom":"ASSET2","index":"0.000004073955819077"},{"denom":"ASSET3","index":"0.000001191705038613"},{"denom":"ASSET4","index":"0.000011215538757958"},{"denom":"ASSET5","index":"0.000000924719873500"},{"denom":"ASSET6","index":"0.000003764274645778"},{"denom":"ASSET7","index":"0.000005765582472528"},{"denom":"ASSET8","index":"0.000007523144733557"},{"denom":"ASSET9","index":"0.000003249220268545"}],"last_reward_claim_height":"90"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET5","shares":"214205901.000000000000000000","reward_history":[],"last_reward_claim_height":"39"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET7","shares":"179704969.614179415513812152","reward_history":[{"denom":"ASSET0","index":"0.000001655416114862"},{"denom":"ASSET1","index":"0.000013800538848519"},{"denom":"ASSET10","index":"0.000009615249134678"},{"denom":"ASSET11","index":"0.000013350879623065"},{"denom":"ASSET12","index":"0.000012022439267096"},{"denom":"ASSET13","index":"0.000004137189147657"},{"denom":"ASSET14","index":"0.000012471558036751"},{"denom":"ASSET15","index":"0.000008916980241305"},{"denom":"ASSET16","index":"0.000006216863065381"},{"denom":"ASSET17","index":"0.000004414983428766"},{"denom":"ASSET18","index":"0.000002102913517117"},{"denom":"ASSET2","index":"0.000004073955819077"},{"denom":"ASSET3","index":"0.000001191705038613"},{"denom":"ASSET4","index":"0.000011215538757958"},{"denom":"ASSET5","index":"0.000000924719873500"},{"denom":"ASSET6","index":"0.000003764274645778"},{"denom":"ASSET7","index":"0.000005765582472528"},{"denom":"ASSET8","index":"0.000007523144733557"},{"denom":"ASSET9","index":"0.000003249220268545"}],"last_reward_claim_height":"109"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET11","shares":"193404129.468120276779551693","reward_history":[{"denom":"ASSET0","index":"0.000003262792429801"},{"denom":"ASSET1","index":"0.000027679878715890"},{"denom":"ASSET10","index":"0.000022086570261210"},{"denom":"ASSET11","index":"0.000027505267384149"},{"denom":"ASSET12","index":"0.000026222420015979"},{"denom":"ASSET13","index":"0.000008638975204347"},{"denom":"ASSET14","index":"0.000025246236428505"},{"denom":"ASSET15","index":"0.000019895354512471"},{"denom":"ASSET16","index":"0.000012279836462442"},{"denom":"ASSET17","index":"0.000009636125515167"},{"denom":"ASSET18","index":"0.000003984145752232"},{"denom":"ASSET2","index":"0.000008382344169353"},{"denom":"ASSET3","index":"0.000002328549799735"},{"denom":"ASSET4","index":"0.000022441247538096"},{"denom":"ASSET5","index":"0.000001813932132265"},{"denom":"ASSET6","index":"0.000007320527694069"},{"denom":"ASSET7","index":"0.000011499571173317"},{"denom":"ASSET8","index":"0.000015704553099640"},{"denom":"ASSET9","index":"0.000006666608399750"}],"last_reward_claim_height":"178"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET15","shares":"975774924.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003262792429801"},{"denom":"ASSET1","index":"0.000027679878715890"},{"denom":"ASSET10","index":"0.000022086570261210"},{"denom":"ASSET11","index":"0.000027505267384149"},{"denom":"ASSET12","index":"0.000026222420015979"},{"denom":"ASSET13","index":"0.000008638975204347"},{"denom":"ASSET14","index":"0.000025246236428505"},{"denom":"ASSET15","index":"0.000019895354512471"},{"denom":"ASSET16","index":"0.000012279836462442"},{"denom":"ASSET17","index":"0.000009636125515167"},{"denom":"ASSET18","index":"0.000003984145752232"},{"denom":"ASSET2","index":"0.000008382344169353"},{"denom":"ASSET3","index":"0.000002328549799735"},{"denom":"ASSET4","index":"0.000022441247538096"},{"denom":"ASSET5","index":"0.000001813932132265"},{"denom":"ASSET6","index":"0.000007320527694069"},{"denom":"ASSET7","index":"0.000011499571173317"},{"denom":"ASSET8","index":"0.000015704553099640"},{"denom":"ASSET9","index":"0.000006666608399750"}],"last_reward_claim_height":"177"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET16","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001655416114862"},{"denom":"ASSET1","index":"0.000013800538848519"},{"denom":"ASSET10","index":"0.000009615249134678"},{"denom":"ASSET11","index":"0.000013350879623065"},{"denom":"ASSET12","index":"0.000012022439267096"},{"denom":"ASSET13","index":"0.000004137189147657"},{"denom":"ASSET14","index":"0.000012471558036751"},{"denom":"ASSET15","index":"0.000008916980241305"},{"denom":"ASSET16","index":"0.000006216863065381"},{"denom":"ASSET17","index":"0.000004414983428766"},{"denom":"ASSET18","index":"0.000002102913517117"},{"denom":"ASSET2","index":"0.000004073955819077"},{"denom":"ASSET3","index":"0.000001191705038613"},{"denom":"ASSET4","index":"0.000011215538757958"},{"denom":"ASSET5","index":"0.000000924719873500"},{"denom":"ASSET6","index":"0.000003764274645778"},{"denom":"ASSET7","index":"0.000005765582472528"},{"denom":"ASSET8","index":"0.000007523144733557"},{"denom":"ASSET9","index":"0.000003249220268545"}],"last_reward_claim_height":"91"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET18","shares":"221687761.424397861791552750","reward_history":[{"denom":"ASSET0","index":"0.000001655416114862"},{"denom":"ASSET1","index":"0.000013800538848519"},{"denom":"ASSET10","index":"0.000009615249134678"},{"denom":"ASSET11","index":"0.000013350879623065"},{"denom":"ASSET12","index":"0.000012022439267096"},{"denom":"ASSET13","index":"0.000004137189147657"},{"denom":"ASSET14","index":"0.000012471558036751"},{"denom":"ASSET15","index":"0.000008916980241305"},{"denom":"ASSET16","index":"0.000006216863065381"},{"denom":"ASSET17","index":"0.000004414983428766"},{"denom":"ASSET18","index":"0.000002102913517117"},{"denom":"ASSET2","index":"0.000004073955819077"},{"denom":"ASSET3","index":"0.000001191705038613"},{"denom":"ASSET4","index":"0.000011215538757958"},{"denom":"ASSET5","index":"0.000000924719873500"},{"denom":"ASSET6","index":"0.000003764274645778"},{"denom":"ASSET7","index":"0.000005765582472528"},{"denom":"ASSET8","index":"0.000007523144733557"},{"denom":"ASSET9","index":"0.000003249220268545"}],"last_reward_claim_height":"113"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET11","shares":"265784062.000000000000000000","reward_history":[],"last_reward_claim_height":"60"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET12","shares":"121058036.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003237925740153"},{"denom":"ASSET1","index":"0.000027468087048908"},{"denom":"ASSET10","index":"0.000021838560142362"},{"denom":"ASSET11","index":"0.000027274223261348"},{"denom":"ASSET12","index":"0.000025962125103579"},{"denom":"ASSET13","index":"0.000008562973508850"},{"denom":"ASSET14","index":"0.000025046299162567"},{"denom":"ASSET15","index":"0.000019687604125947"},{"denom":"ASSET16","index":"0.000012189946370622"},{"denom":"ASSET17","index":"0.000009540519193028"},{"denom":"ASSET18","index":"0.000003959057055270"},{"denom":"ASSET2","index":"0.000008312511220651"},{"denom":"ASSET3","index":"0.000002312646079660"},{"denom":"ASSET4","index":"0.000022269978905361"},{"denom":"ASSET5","index":"0.000001800462011039"},{"denom":"ASSET6","index":"0.000007270233858279"},{"denom":"ASSET7","index":"0.000011411601588483"},{"denom":"ASSET8","index":"0.000015567552190875"},{"denom":"ASSET9","index":"0.000006610637099613"}],"last_reward_claim_height":"159"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET1","shares":"3481871.309350200219860432","reward_history":[{"denom":"ASSET0","index":"0.000004829962844284"},{"denom":"ASSET1","index":"0.000039524111522190"},{"denom":"ASSET10","index":"0.000034078647298627"},{"denom":"ASSET11","index":"0.000041019961315880"},{"denom":"ASSET12","index":"0.000038986303917418"},{"denom":"ASSET13","index":"0.000013223748427218"},{"denom":"ASSET14","index":"0.000037862348824484"},{"denom":"ASSET15","index":"0.000030615488739002"},{"denom":"ASSET16","index":"0.000017546337426996"},{"denom":"ASSET17","index":"0.000014163136845027"},{"denom":"ASSET18","index":"0.000005908859381642"},{"denom":"ASSET2","index":"0.000011921448629340"},{"denom":"ASSET3","index":"0.000003430931561974"},{"denom":"ASSET4","index":"0.000032397189102807"},{"denom":"ASSET5","index":"0.000002693636544476"},{"denom":"ASSET6","index":"0.000010996765047817"},{"denom":"ASSET7","index":"0.000016976981501674"},{"denom":"ASSET8","index":"0.000024395918561262"},{"denom":"ASSET9","index":"0.000009795939235919"}],"last_reward_claim_height":"198"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET6","shares":"479783416.999999977929962818","reward_history":[],"last_reward_claim_height":"48"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET8","shares":"727092255.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003224934301433"},{"denom":"ASSET1","index":"0.000027341438894536"},{"denom":"ASSET10","index":"0.000021706571274337"},{"denom":"ASSET11","index":"0.000027141091242061"},{"denom":"ASSET12","index":"0.000025819235056226"},{"denom":"ASSET13","index":"0.000008520116782966"},{"denom":"ASSET14","index":"0.000024928444433519"},{"denom":"ASSET15","index":"0.000019573794936329"},{"denom":"ASSET16","index":"0.000012137286393349"},{"denom":"ASSET17","index":"0.000009487995483061"},{"denom":"ASSET18","index":"0.000003945309126507"},{"denom":"ASSET2","index":"0.000008271045740629"},{"denom":"ASSET3","index":"0.000002302032616683"},{"denom":"ASSET4","index":"0.000022168721917699"},{"denom":"ASSET5","index":"0.000001793343624246"},{"denom":"ASSET6","index":"0.000007240378309003"},{"denom":"ASSET7","index":"0.000011361888746536"},{"denom":"ASSET8","index":"0.000015488944629697"},{"denom":"ASSET9","index":"0.000006579500326985"}],"last_reward_claim_height":"150"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET3","shares":"1399920.199655902062963153","reward_history":[{"denom":"ASSET0","index":"0.000002959758868257"},{"denom":"ASSET1","index":"0.000025116229265451"},{"denom":"ASSET10","index":"0.000020033024535037"},{"denom":"ASSET11","index":"0.000024955202637112"},{"denom":"ASSET12","index":"0.000023787913163340"},{"denom":"ASSET13","index":"0.000007837044315100"},{"denom":"ASSET14","index":"0.000022906603767748"},{"denom":"ASSET15","index":"0.000018047329062837"},{"denom":"ASSET16","index":"0.000011142428291313"},{"denom":"ASSET17","index":"0.000008741414303940"},{"denom":"ASSET18","index":"0.000003614587489816"},{"denom":"ASSET2","index":"0.000007605147442913"},{"denom":"ASSET3","index":"0.000002112677625393"},{"denom":"ASSET4","index":"0.000020363145786569"},{"denom":"ASSET5","index":"0.000001645239564154"},{"denom":"ASSET6","index":"0.000006641765641459"},{"denom":"ASSET7","index":"0.000010434431181702"},{"denom":"ASSET8","index":"0.000014248591155217"},{"denom":"ASSET9","index":"0.000006047835874095"}],"last_reward_claim_height":"139"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET15","shares":"930548254.298236041381071100","reward_history":[{"denom":"ASSET0","index":"0.000001505652349479"},{"denom":"ASSET1","index":"0.000012557843622987"},{"denom":"ASSET10","index":"0.000008748308836028"},{"denom":"ASSET11","index":"0.000012147743761261"},{"denom":"ASSET12","index":"0.000010939413811534"},{"denom":"ASSET13","index":"0.000003764130873697"},{"denom":"ASSET14","index":"0.000011348049030896"},{"denom":"ASSET15","index":"0.000008114118692716"},{"denom":"ASSET16","index":"0.000005656448807088"},{"denom":"ASSET17","index":"0.000004017514002549"},{"denom":"ASSET18","index":"0.000001912822926478"},{"denom":"ASSET2","index":"0.000003707009821528"},{"denom":"ASSET3","index":"0.000001083835348847"},{"denom":"ASSET4","index":"0.000010205627987517"},{"denom":"ASSET5","index":"0.000000840704716538"},{"denom":"ASSET6","index":"0.000003424333845410"},{"denom":"ASSET7","index":"0.000005246348945363"},{"denom":"ASSET8","index":"0.000006845738406093"},{"denom":"ASSET9","index":"0.000002955648289152"}],"last_reward_claim_height":"115"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET4","shares":"38953813.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001815877519749"},{"denom":"ASSET1","index":"0.000015137138459046"},{"denom":"ASSET10","index":"0.000010545739718907"},{"denom":"ASSET11","index":"0.000014644907422941"},{"denom":"ASSET12","index":"0.000013186828093302"},{"denom":"ASSET13","index":"0.000004537625601742"},{"denom":"ASSET14","index":"0.000013679059129408"},{"denom":"ASSET15","index":"0.000009780506595550"},{"denom":"ASSET16","index":"0.000006818847588397"},{"denom":"ASSET17","index":"0.000004841650653454"},{"denom":"ASSET18","index":"0.000002306040358223"},{"denom":"ASSET2","index":"0.000004467306882298"},{"denom":"ASSET3","index":"0.000001307100902598"},{"denom":"ASSET4","index":"0.000012301639507366"},{"denom":"ASSET5","index":"0.000001013416839040"},{"denom":"ASSET6","index":"0.000004128122470864"},{"denom":"ASSET7","index":"0.000006324548354661"},{"denom":"ASSET8","index":"0.000008252108546467"},{"denom":"ASSET9","index":"0.000003563504517685"}],"last_reward_claim_height":"86"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET5","shares":"442745503.000000052686714857","reward_history":[{"denom":"ASSET0","index":"0.000001815877519749"},{"denom":"ASSET1","index":"0.000015137138459046"},{"denom":"ASSET10","index":"0.000010545739718907"},{"denom":"ASSET11","index":"0.000014644907422941"},{"denom":"ASSET12","index":"0.000013186828093302"},{"denom":"ASSET13","index":"0.000004537625601742"},{"denom":"ASSET14","index":"0.000013679059129408"},{"denom":"ASSET15","index":"0.000009780506595550"},{"denom":"ASSET16","index":"0.000006818847588397"},{"denom":"ASSET17","index":"0.000004841650653454"},{"denom":"ASSET18","index":"0.000002306040358223"},{"denom":"ASSET2","index":"0.000004467306882298"},{"denom":"ASSET3","index":"0.000001307100902598"},{"denom":"ASSET4","index":"0.000012301639507366"},{"denom":"ASSET5","index":"0.000001013416839040"},{"denom":"ASSET6","index":"0.000004128122470864"},{"denom":"ASSET7","index":"0.000006324548354661"},{"denom":"ASSET8","index":"0.000008252108546467"},{"denom":"ASSET9","index":"0.000003563504517685"}],"last_reward_claim_height":"114"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET10","shares":"118690749.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001815877519749"},{"denom":"ASSET1","index":"0.000015137138459046"},{"denom":"ASSET10","index":"0.000010545739718907"},{"denom":"ASSET11","index":"0.000014644907422941"},{"denom":"ASSET12","index":"0.000013186828093302"},{"denom":"ASSET13","index":"0.000004537625601742"},{"denom":"ASSET14","index":"0.000013679059129408"},{"denom":"ASSET15","index":"0.000009780506595550"},{"denom":"ASSET16","index":"0.000006818847588397"},{"denom":"ASSET17","index":"0.000004841650653454"},{"denom":"ASSET18","index":"0.000002306040358223"},{"denom":"ASSET2","index":"0.000004467306882298"},{"denom":"ASSET3","index":"0.000001307100902598"},{"denom":"ASSET4","index":"0.000012301639507366"},{"denom":"ASSET5","index":"0.000001013416839040"},{"denom":"ASSET6","index":"0.000004128122470864"},{"denom":"ASSET7","index":"0.000006324548354661"},{"denom":"ASSET8","index":"0.000008252108546467"},{"denom":"ASSET9","index":"0.000003563504517685"}],"last_reward_claim_height":"112"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET11","shares":"927071725.379192292857575756","reward_history":[{"denom":"ASSET0","index":"0.000003468946703322"},{"denom":"ASSET1","index":"0.000029412495408176"},{"denom":"ASSET10","index":"0.000023372734593498"},{"denom":"ASSET11","index":"0.000029203218600002"},{"denom":"ASSET12","index":"0.000027792166579196"},{"denom":"ASSET13","index":"0.000009167641990636"},{"denom":"ASSET14","index":"0.000026818252104650"},{"denom":"ASSET15","index":"0.000021072198152383"},{"denom":"ASSET16","index":"0.000013054905852031"},{"denom":"ASSET17","index":"0.000010211457984650"},{"denom":"ASSET18","index":"0.000004240878207320"},{"denom":"ASSET2","index":"0.000008898543974195"},{"denom":"ASSET3","index":"0.000002476460623897"},{"denom":"ASSET4","index":"0.000023847831794350"},{"denom":"ASSET5","index":"0.000001927880642719"},{"denom":"ASSET6","index":"0.000007785977685579"},{"denom":"ASSET7","index":"0.000012222326144679"},{"denom":"ASSET8","index":"0.000016667230515151"},{"denom":"ASSET9","index":"0.000007078301868557"}],"last_reward_claim_height":"127"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET16","shares":"7330.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001815877519749"},{"denom":"ASSET1","index":"0.000015137138459046"},{"denom":"ASSET10","index":"0.000010545739718907"},{"denom":"ASSET11","index":"0.000014644907422941"},{"denom":"ASSET12","index":"0.000013186828093302"},{"denom":"ASSET13","index":"0.000004537625601742"},{"denom":"ASSET14","index":"0.000013679059129408"},{"denom":"ASSET15","index":"0.000009780506595550"},{"denom":"ASSET16","index":"0.000006818847588397"},{"denom":"ASSET17","index":"0.000004841650653454"},{"denom":"ASSET18","index":"0.000002306040358223"},{"denom":"ASSET2","index":"0.000004467306882298"},{"denom":"ASSET3","index":"0.000001307100902598"},{"denom":"ASSET4","index":"0.000012301639507366"},{"denom":"ASSET5","index":"0.000001013416839040"},{"denom":"ASSET6","index":"0.000004128122470864"},{"denom":"ASSET7","index":"0.000006324548354661"},{"denom":"ASSET8","index":"0.000008252108546467"},{"denom":"ASSET9","index":"0.000003563504517685"}],"last_reward_claim_height":"84"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET10","shares":"506647687.999004401051336269","reward_history":[{"denom":"ASSET0","index":"0.000001541968050995"},{"denom":"ASSET1","index":"0.000012857487907975"},{"denom":"ASSET10","index":"0.000008957704485900"},{"denom":"ASSET11","index":"0.000012438763825161"},{"denom":"ASSET12","index":"0.000011200869215257"},{"denom":"ASSET13","index":"0.000003854089325736"},{"denom":"ASSET14","index":"0.000011619593298070"},{"denom":"ASSET15","index":"0.000008307186714386"},{"denom":"ASSET16","index":"0.000005792349812251"},{"denom":"ASSET17","index":"0.000004113299472240"},{"denom":"ASSET18","index":"0.000001959030530305"},{"denom":"ASSET2","index":"0.000003795102401372"},{"denom":"ASSET3","index":"0.000001109951140156"},{"denom":"ASSET4","index":"0.000010448993630046"},{"denom":"ASSET5","index":"0.000000861541416423"},{"denom":"ASSET6","index":"0.000003506814193562"},{"denom":"ASSET7","index":"0.000005371133324183"},{"denom":"ASSET8","index":"0.000007009474378365"},{"denom":"ASSET9","index":"0.000003027441582881"}],"last_reward_claim_height":"74"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET13","shares":"265606570.000000000000000000","reward_history":[],"last_reward_claim_height":"15"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET16","shares":"127616651.000000000000000000","reward_history":[],"last_reward_claim_height":"27"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET0","shares":"318615346.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001327266579501"},{"denom":"ASSET1","index":"0.000011071143497688"},{"denom":"ASSET10","index":"0.000007713614824674"},{"denom":"ASSET11","index":"0.000010710668391289"},{"denom":"ASSET12","index":"0.000009644435509525"},{"denom":"ASSET13","index":"0.000003318857014090"},{"denom":"ASSET14","index":"0.000010004910615924"},{"denom":"ASSET15","index":"0.000007152875770275"},{"denom":"ASSET16","index":"0.000004987262870528"},{"denom":"ASSET17","index":"0.000003541219052903"},{"denom":"ASSET18","index":"0.000001686360555224"},{"denom":"ASSET2","index":"0.000003267755179083"},{"denom":"ASSET3","index":"0.000000955742427695"},{"denom":"ASSET4","index":"0.000008998066353223"},{"denom":"ASSET5","index":"0.000000741667172936"},{"denom":"ASSET6","index":"0.000003019151657428"},{"denom":"ASSET7","index":"0.000004625406633453"},{"denom":"ASSET8","index":"0.000006035541053505"},{"denom":"ASSET9","index":"0.000002606193585346"}],"last_reward_claim_height":"122"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET9","shares":"103329483.000000000000000000","reward_history":[],"last_reward_claim_height":"59"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET14","shares":"756667312.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002827520151011"},{"denom":"ASSET1","index":"0.000024027878888002"},{"denom":"ASSET10","index":"0.000019355847170480"},{"denom":"ASSET11","index":"0.000023924401086085"},{"denom":"ASSET12","index":"0.000022900407365256"},{"denom":"ASSET13","index":"0.000007521399074311"},{"denom":"ASSET14","index":"0.000021930603354990"},{"denom":"ASSET15","index":"0.000017401215805238"},{"denom":"ASSET16","index":"0.000010647310435771"},{"denom":"ASSET17","index":"0.000008415007538097"},{"denom":"ASSET18","index":"0.000003442593620109"},{"denom":"ASSET2","index":"0.000007289635767836"},{"denom":"ASSET3","index":"0.000002016810506595"},{"denom":"ASSET4","index":"0.000019477449509443"},{"denom":"ASSET5","index":"0.000001571692130579"},{"denom":"ASSET6","index":"0.000006339251488002"},{"denom":"ASSET7","index":"0.000009978075244424"},{"denom":"ASSET8","index":"0.000013673195599374"},{"denom":"ASSET9","index":"0.000005796522499795"}],"last_reward_claim_height":"138"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET18","shares":"299596747.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001327266579501"},{"denom":"ASSET1","index":"0.000011071143497688"},{"denom":"ASSET10","index":"0.000007713614824674"},{"denom":"ASSET11","index":"0.000010710668391289"},{"denom":"ASSET12","index":"0.000009644435509525"},{"denom":"ASSET13","index":"0.000003318857014090"},{"denom":"ASSET14","index":"0.000010004910615924"},{"denom":"ASSET15","index":"0.000007152875770275"},{"denom":"ASSET16","index":"0.000004987262870528"},{"denom":"ASSET17","index":"0.000003541219052903"},{"denom":"ASSET18","index":"0.000001686360555224"},{"denom":"ASSET2","index":"0.000003267755179083"},{"denom":"ASSET3","index":"0.000000955742427695"},{"denom":"ASSET4","index":"0.000008998066353223"},{"denom":"ASSET5","index":"0.000000741667172936"},{"denom":"ASSET6","index":"0.000003019151657428"},{"denom":"ASSET7","index":"0.000004625406633453"},{"denom":"ASSET8","index":"0.000006035541053505"},{"denom":"ASSET9","index":"0.000002606193585346"}],"last_reward_claim_height":"87"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET1","shares":"1000073330.703386201000000000","reward_history":[{"denom":"ASSET0","index":"0.000004668297440245"},{"denom":"ASSET1","index":"0.000038252783071288"},{"denom":"ASSET10","index":"0.000033083245025153"},{"denom":"ASSET11","index":"0.000039708345694553"},{"denom":"ASSET12","index":"0.000037813797973625"},{"denom":"ASSET13","index":"0.000012799944975093"},{"denom":"ASSET14","index":"0.000036625421736424"},{"denom":"ASSET15","index":"0.000029696005658341"},{"denom":"ASSET16","index":"0.000016971159537831"},{"denom":"ASSET17","index":"0.000013740059333476"},{"denom":"ASSET18","index":"0.000005702232169970"},{"denom":"ASSET2","index":"0.000011549026586519"},{"denom":"ASSET3","index":"0.000003315565659179"},{"denom":"ASSET4","index":"0.000031346012924510"},{"denom":"ASSET5","index":"0.000002602988639174"},{"denom":"ASSET6","index":"0.000010621884419797"},{"denom":"ASSET7","index":"0.000016417450552926"},{"denom":"ASSET8","index":"0.000023609141580926"},{"denom":"ASSET9","index":"0.000009483071524163"}],"last_reward_claim_height":"185"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET9","shares":"714312383.000000010000373362","reward_history":[{"denom":"ASSET0","index":"0.000004668297440245"},{"denom":"ASSET1","index":"0.000038252783071288"},{"denom":"ASSET10","index":"0.000033083245025153"},{"denom":"ASSET11","index":"0.000039708345694553"},{"denom":"ASSET12","index":"0.000037813797973625"},{"denom":"ASSET13","index":"0.000012799944975093"},{"denom":"ASSET14","index":"0.000036625421736424"},{"denom":"ASSET15","index":"0.000029696005658341"},{"denom":"ASSET16","index":"0.000016971159537831"},{"denom":"ASSET17","index":"0.000013740059333476"},{"denom":"ASSET18","index":"0.000005702232169970"},{"denom":"ASSET2","index":"0.000011549026586519"},{"denom":"ASSET3","index":"0.000003315565659179"},{"denom":"ASSET4","index":"0.000031346012924510"},{"denom":"ASSET5","index":"0.000002602988639174"},{"denom":"ASSET6","index":"0.000010621884419797"},{"denom":"ASSET7","index":"0.000016417450552926"},{"denom":"ASSET8","index":"0.000023609141580926"},{"denom":"ASSET9","index":"0.000009483071524163"}],"last_reward_claim_height":"200"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET12","shares":"999999999.999999880000000000","reward_history":[{"denom":"ASSET0","index":"0.000003054120352223"},{"denom":"ASSET1","index":"0.000025909289170716"},{"denom":"ASSET10","index":"0.000020664041936079"},{"denom":"ASSET11","index":"0.000025743066158465"},{"denom":"ASSET12","index":"0.000024537849095602"},{"denom":"ASSET13","index":"0.000008085297309351"},{"denom":"ASSET14","index":"0.000023630023251940"},{"denom":"ASSET15","index":"0.000018615490114349"},{"denom":"ASSET16","index":"0.000011495216270003"},{"denom":"ASSET17","index":"0.000009017197770141"},{"denom":"ASSET18","index":"0.000003730110182262"},{"denom":"ASSET2","index":"0.000007845299155388"},{"denom":"ASSET3","index":"0.000002179886924088"},{"denom":"ASSET4","index":"0.000021005968780047"},{"denom":"ASSET5","index":"0.000001698230665763"},{"denom":"ASSET6","index":"0.000006853367473041"},{"denom":"ASSET7","index":"0.000010764057351149"},{"denom":"ASSET8","index":"0.000014698116791571"},{"denom":"ASSET9","index":"0.000006239964640655"}],"last_reward_claim_height":"153"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET1","shares":"77412693.030532108224537776","reward_history":[{"denom":"ASSET0","index":"0.000002831039632868"},{"denom":"ASSET1","index":"0.000024014703977493"},{"denom":"ASSET10","index":"0.000019136467933987"},{"denom":"ASSET11","index":"0.000023856136612857"},{"denom":"ASSET12","index":"0.000022731094165303"},{"denom":"ASSET13","index":"0.000007491812146677"},{"denom":"ASSET14","index":"0.000021900750691559"},{"denom":"ASSET15","index":"0.000017242457090593"},{"denom":"ASSET16","index":"0.000010655585625623"},{"denom":"ASSET17","index":"0.000008353141870908"},{"denom":"ASSET18","index":"0.000003458892129556"},{"denom":"ASSET2","index":"0.000007270317321266"},{"denom":"ASSET3","index":"0.000002020551075646"},{"denom":"ASSET4","index":"0.000019470118745656"},{"denom":"ASSET5","index":"0.000001574098937698"},{"denom":"ASSET6","index":"0.000006353413461243"},{"denom":"ASSET7","index":"0.000009977493764026"},{"denom":"ASSET8","index":"0.000013619759476676"},{"denom":"ASSET9","index":"0.000005782490697784"}],"last_reward_claim_height":"161"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET7","shares":"369865965.754768553351993988","reward_history":[{"denom":"ASSET0","index":"0.000004387090645510"},{"denom":"ASSET1","index":"0.000035824337138935"},{"denom":"ASSET10","index":"0.000031129793332261"},{"denom":"ASSET11","index":"0.000037310407849542"},{"denom":"ASSET12","index":"0.000035495334402665"},{"denom":"ASSET13","index":"0.000012051527509311"},{"denom":"ASSET14","index":"0.000034438634688697"},{"denom":"ASSET15","index":"0.000027946085219630"},{"denom":"ASSET16","index":"0.000015899110153752"},{"denom":"ASSET17","index":"0.000012885303398018"},{"denom":"ASSET18","index":"0.000005362477003170"},{"denom":"ASSET2","index":"0.000010809059380480"},{"denom":"ASSET3","index":"0.000003114704995997"},{"denom":"ASSET4","index":"0.000029385647923127"},{"denom":"ASSET5","index":"0.000002446933340448"},{"denom":"ASSET6","index":"0.000009994963917522"},{"denom":"ASSET7","index":"0.000015420709530258"},{"denom":"ASSET8","index":"0.000022254183441150"},{"denom":"ASSET9","index":"0.000008900518279094"}],"last_reward_claim_height":"191"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET9","shares":"332862516.606581900048229548","reward_history":[{"denom":"ASSET0","index":"0.000001450981944084"},{"denom":"ASSET1","index":"0.000012097851501865"},{"denom":"ASSET10","index":"0.000008428524260541"},{"denom":"ASSET11","index":"0.000011703479004578"},{"denom":"ASSET12","index":"0.000010538773481717"},{"denom":"ASSET13","index":"0.000003626563958485"},{"denom":"ASSET14","index":"0.000010932552044520"},{"denom":"ASSET15","index":"0.000007816771742159"},{"denom":"ASSET16","index":"0.000005449942823954"},{"denom":"ASSET17","index":"0.000003870671031354"},{"denom":"ASSET18","index":"0.000001843572637920"},{"denom":"ASSET2","index":"0.000003571328051486"},{"denom":"ASSET3","index":"0.000001044730757120"},{"denom":"ASSET4","index":"0.000009831991445917"},{"denom":"ASSET5","index":"0.000000810720570477"},{"denom":"ASSET6","index":"0.000003299899992359"},{"denom":"ASSET7","index":"0.000005054382457699"},{"denom":"ASSET8","index":"0.000006595048508847"},{"denom":"ASSET9","index":"0.000002848509784621"}],"last_reward_claim_height":"118"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET16","shares":"125568876.999999996752536880","reward_history":[],"last_reward_claim_height":"33"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET5","shares":"338319948.000000000000000000","reward_history":[],"last_reward_claim_height":"50"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET9","shares":"259142850.387413083850511913","reward_history":[{"denom":"ASSET0","index":"0.000004782315839318"},{"denom":"ASSET1","index":"0.000039124109697701"},{"denom":"ASSET10","index":"0.000033908667533337"},{"denom":"ASSET11","index":"0.000040671415761037"},{"denom":"ASSET12","index":"0.000038716119372205"},{"denom":"ASSET13","index":"0.000013122943792699"},{"denom":"ASSET14","index":"0.000037525859494012"},{"denom":"ASSET15","index":"0.000030438556464533"},{"denom":"ASSET16","index":"0.000017360072879568"},{"denom":"ASSET17","index":"0.000014062364408016"},{"denom":"ASSET18","index":"0.000005843043910982"},{"denom":"ASSET2","index":"0.000011809556044271"},{"denom":"ASSET3","index":"0.000003396000062217"},{"denom":"ASSET4","index":"0.000032074301049286"},{"denom":"ASSET5","index":"0.000002666908218711"},{"denom":"ASSET6","index":"0.000010886478947902"},{"denom":"ASSET7","index":"0.000016812859737299"},{"denom":"ASSET8","index":"0.000024216326909603"},{"denom":"ASSET9","index":"0.000009708917418598"}],"last_reward_claim_height":"198"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET17","shares":"159941669.701571151262789696","reward_history":[{"denom":"ASSET0","index":"0.000001596167964962"},{"denom":"ASSET1","index":"0.000013307648687747"},{"denom":"ASSET10","index":"0.000009271254138767"},{"denom":"ASSET11","index":"0.000012873344596610"},{"denom":"ASSET12","index":"0.000011592750107942"},{"denom":"ASSET13","index":"0.000003989527201016"},{"denom":"ASSET14","index":"0.000012025715131995"},{"denom":"ASSET15","index":"0.000008598149750858"},{"denom":"ASSET16","index":"0.000005994556982506"},{"denom":"ASSET17","index":"0.000004257340617956"},{"denom":"ASSET18","index":"0.000002028240277625"},{"denom":"ASSET2","index":"0.000003928376470814"},{"denom":"ASSET3","index":"0.000001148919558672"},{"denom":"ASSET4","index":"0.000010814752131731"},{"denom":"ASSET5","index":"0.000000891818678410"},{"denom":"ASSET6","index":"0.000003630210866621"},{"denom":"ASSET7","index":"0.000005559360179979"},{"denom":"ASSET8","index":"0.000007254619109209"},{"denom":"ASSET9","index":"0.000003133416978198"}],"last_reward_claim_height":"114"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET6","shares":"147996083.000000000000000000","reward_history":[],"last_reward_claim_height":"55"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET14","shares":"420988174.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001539653287763"},{"denom":"ASSET1","index":"0.000012837628062054"},{"denom":"ASSET10","index":"0.000008944076712630"},{"denom":"ASSET11","index":"0.000012418678362380"},{"denom":"ASSET12","index":"0.000011182855597091"},{"denom":"ASSET13","index":"0.000003848344731893"},{"denom":"ASSET14","index":"0.000011600753980079"},{"denom":"ASSET15","index":"0.000008294363000211"},{"denom":"ASSET16","index":"0.000005782767435536"},{"denom":"ASSET17","index":"0.000004106968636837"},{"denom":"ASSET18","index":"0.000001956500354065"},{"denom":"ASSET2","index":"0.000003789470997435"},{"denom":"ASSET3","index":"0.000001108613446191"},{"denom":"ASSET4","index":"0.000010432741141086"},{"denom":"ASSET5","index":"0.000000860502708115"},{"denom":"ASSET6","index":"0.000003501935883605"},{"denom":"ASSET7","index":"0.000005362766419174"},{"denom":"ASSET8","index":"0.000006998089525433"},{"denom":"ASSET9","index":"0.000003022535474442"}],"last_reward_claim_height":"100"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET2","shares":"997186962.000000000000000000","reward_history":[],"last_reward_claim_height":"56"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET11","shares":"161964691.882821933914615373","reward_history":[{"denom":"ASSET0","index":"0.000004932922606577"},{"denom":"ASSET1","index":"0.000040396906160074"},{"denom":"ASSET10","index":"0.000034838303486914"},{"denom":"ASSET11","index":"0.000041914424288227"},{"denom":"ASSET12","index":"0.000039857170373527"},{"denom":"ASSET13","index":"0.000013510260278305"},{"denom":"ASSET14","index":"0.000038681126023432"},{"denom":"ASSET15","index":"0.000031291398674533"},{"denom":"ASSET16","index":"0.000017930058046877"},{"denom":"ASSET17","index":"0.000014479422944962"},{"denom":"ASSET18","index":"0.000006034014737166"},{"denom":"ASSET2","index":"0.000012186534642262"},{"denom":"ASSET3","index":"0.000003503888301858"},{"denom":"ASSET4","index":"0.000033108545408351"},{"denom":"ASSET5","index":"0.000002750102339201"},{"denom":"ASSET6","index":"0.000011230081338040"},{"denom":"ASSET7","index":"0.000017343857331989"},{"denom":"ASSET8","index":"0.000024921315009190"},{"denom":"ASSET9","index":"0.000010011497921619"}],"last_reward_claim_height":"200"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET17","shares":"967847144.389496281065753440","reward_history":[{"denom":"ASSET0","index":"0.000003308323901116"},{"denom":"ASSET1","index":"0.000028066718381779"},{"denom":"ASSET10","index":"0.000022316311421496"},{"denom":"ASSET11","index":"0.000027867424204892"},{"denom":"ASSET12","index":"0.000026530665881565"},{"denom":"ASSET13","index":"0.000008749579510737"},{"denom":"ASSET14","index":"0.000025590688346390"},{"denom":"ASSET15","index":"0.000020116135001180"},{"denom":"ASSET16","index":"0.000012455644018572"},{"denom":"ASSET17","index":"0.000009747635771928"},{"denom":"ASSET18","index":"0.000004046709206696"},{"denom":"ASSET2","index":"0.000008491843085820"},{"denom":"ASSET3","index":"0.000002361259343526"},{"denom":"ASSET4","index":"0.000022756236881458"},{"denom":"ASSET5","index":"0.000001838827056256"},{"denom":"ASSET6","index":"0.000007428217086977"},{"denom":"ASSET7","index":"0.000011660835649526"},{"denom":"ASSET8","index":"0.000015906513514404"},{"denom":"ASSET9","index":"0.000006755948018281"}],"last_reward_claim_height":"179"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET4","shares":"813532307.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004913983609001"},{"denom":"ASSET1","index":"0.000040244987929815"},{"denom":"ASSET10","index":"0.000034772305497303"},{"denom":"ASSET11","index":"0.000041772863997093"},{"denom":"ASSET12","index":"0.000039756115018181"},{"denom":"ASSET13","index":"0.000013466459952772"},{"denom":"ASSET14","index":"0.000038538449259774"},{"denom":"ASSET15","index":"0.000031220537321082"},{"denom":"ASSET16","index":"0.000017858853026625"},{"denom":"ASSET17","index":"0.000014445033007114"},{"denom":"ASSET18","index":"0.000006004781433606"},{"denom":"ASSET2","index":"0.000012147347472117"},{"denom":"ASSET3","index":"0.000003490240978647"},{"denom":"ASSET4","index":"0.000032981200632459"},{"denom":"ASSET5","index":"0.000002740029237178"},{"denom":"ASSET6","index":"0.000011181697773076"},{"denom":"ASSET7","index":"0.000017276427658373"},{"denom":"ASSET8","index":"0.000024839237256922"},{"denom":"ASSET9","index":"0.000009975875730805"}],"last_reward_claim_height":"197"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET10","shares":"91778964.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001677980890787"},{"denom":"ASSET1","index":"0.000013990275877081"},{"denom":"ASSET10","index":"0.000009746835585844"},{"denom":"ASSET11","index":"0.000013534047272362"},{"denom":"ASSET12","index":"0.000012187401487418"},{"denom":"ASSET13","index":"0.000004194217559326"},{"denom":"ASSET14","index":"0.000012642160756856"},{"denom":"ASSET15","index":"0.000009039350648091"},{"denom":"ASSET16","index":"0.000006301979019776"},{"denom":"ASSET17","index":"0.000004475595265619"},{"denom":"ASSET18","index":"0.000002132005492585"},{"denom":"ASSET2","index":"0.000004129566806967"},{"denom":"ASSET3","index":"0.000001207793600899"},{"denom":"ASSET4","index":"0.000011368981735957"},{"denom":"ASSET5","index":"0.000000937435909214"},{"denom":"ASSET6","index":"0.000003815863724495"},{"denom":"ASSET7","index":"0.000005844281079776"},{"denom":"ASSET8","index":"0.000007626584775507"},{"denom":"ASSET9","index":"0.000003293515032135"}],"last_reward_claim_height":"120"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET14","shares":"170393903.301676747811155422","reward_history":[{"denom":"ASSET0","index":"0.000003299297789724"},{"denom":"ASSET1","index":"0.000027989603079017"},{"denom":"ASSET10","index":"0.000022326156077139"},{"denom":"ASSET11","index":"0.000027810817552502"},{"denom":"ASSET12","index":"0.000026510364756940"},{"denom":"ASSET13","index":"0.000008734817330461"},{"denom":"ASSET14","index":"0.000025527438517331"},{"denom":"ASSET15","index":"0.000020112836713905"},{"denom":"ASSET16","index":"0.000012417417558556"},{"denom":"ASSET17","index":"0.000009741881197111"},{"denom":"ASSET18","index":"0.000004029624902086"},{"denom":"ASSET2","index":"0.000008475129511821"},{"denom":"ASSET3","index":"0.000002354634361983"},{"denom":"ASSET4","index":"0.000022691681830907"},{"denom":"ASSET5","index":"0.000001834207215432"},{"denom":"ASSET6","index":"0.000007402948949368"},{"denom":"ASSET7","index":"0.000011627814435586"},{"denom":"ASSET8","index":"0.000015878876786083"},{"denom":"ASSET9","index":"0.000006740310437402"}],"last_reward_claim_height":"177"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET16","shares":"98257454.773136447530328029","reward_history":[{"denom":"ASSET0","index":"0.000003299297789724"},{"denom":"ASSET1","index":"0.000027989603079017"},{"denom":"ASSET10","index":"0.000022326156077139"},{"denom":"ASSET11","index":"0.000027810817552502"},{"denom":"ASSET12","index":"0.000026510364756940"},{"denom":"ASSET13","index":"0.000008734817330461"},{"denom":"ASSET14","index":"0.000025527438517331"},{"denom":"ASSET15","index":"0.000020112836713905"},{"denom":"ASSET16","index":"0.000012417417558556"},{"denom":"ASSET17","index":"0.000009741881197111"},{"denom":"ASSET18","index":"0.000004029624902086"},{"denom":"ASSET2","index":"0.000008475129511821"},{"denom":"ASSET3","index":"0.000002354634361983"},{"denom":"ASSET4","index":"0.000022691681830907"},{"denom":"ASSET5","index":"0.000001834207215432"},{"denom":"ASSET6","index":"0.000007402948949368"},{"denom":"ASSET7","index":"0.000011627814435586"},{"denom":"ASSET8","index":"0.000015878876786083"},{"denom":"ASSET9","index":"0.000006740310437402"}],"last_reward_claim_height":"154"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET4","shares":"628580322.999999988114570336","reward_history":[{"denom":"ASSET0","index":"0.000003142586597057"},{"denom":"ASSET1","index":"0.000026671940208455"},{"denom":"ASSET10","index":"0.000021322845581004"},{"denom":"ASSET11","index":"0.000026513185667064"},{"denom":"ASSET12","index":"0.000025297681895631"},{"denom":"ASSET13","index":"0.000008328263582513"},{"denom":"ASSET14","index":"0.000024329302916923"},{"denom":"ASSET15","index":"0.000019199384187435"},{"denom":"ASSET16","index":"0.000011829863063918"},{"denom":"ASSET17","index":"0.000009295955073087"},{"denom":"ASSET18","index":"0.000003835509513951"},{"denom":"ASSET2","index":"0.000008079410847125"},{"denom":"ASSET3","index":"0.000002242309830967"},{"denom":"ASSET4","index":"0.000021622076491366"},{"denom":"ASSET5","index":"0.000001747112267207"},{"denom":"ASSET6","index":"0.000007050444762949"},{"denom":"ASSET7","index":"0.000011079003337441"},{"denom":"ASSET8","index":"0.000015142122511204"},{"denom":"ASSET9","index":"0.000006425848418438"}],"last_reward_claim_height":"179"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET16","shares":"6095473.000000000000000000","reward_history":[],"last_reward_claim_height":"37"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET6","shares":"382154973.000000000000000000","reward_history":[],"last_reward_claim_height":"1"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET7","shares":"1000084105.533288651000000000","reward_history":[{"denom":"ASSET0","index":"0.000003309574221953"},{"denom":"ASSET1","index":"0.000028041386020893"},{"denom":"ASSET10","index":"0.000022151472675705"},{"denom":"ASSET11","index":"0.000027806413413432"},{"denom":"ASSET12","index":"0.000026397319662942"},{"denom":"ASSET13","index":"0.000008723998941637"},{"denom":"ASSET14","index":"0.000025556208464743"},{"denom":"ASSET15","index":"0.000019995491235522"},{"denom":"ASSET16","index":"0.000012454763771642"},{"denom":"ASSET17","index":"0.000009698403814011"},{"denom":"ASSET18","index":"0.000004053515914738"},{"denom":"ASSET2","index":"0.000008473190716338"},{"denom":"ASSET3","index":"0.000002361530218445"},{"denom":"ASSET4","index":"0.000022738669483779"},{"denom":"ASSET5","index":"0.000001840125976242"},{"denom":"ASSET6","index":"0.000007434008870747"},{"denom":"ASSET7","index":"0.000011653935721338"},{"denom":"ASSET8","index":"0.000015861166565423"},{"denom":"ASSET9","index":"0.000006742103174023"}],"last_reward_claim_height":"175"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET1","shares":"577525932.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001541663174382"},{"denom":"ASSET1","index":"0.000012852134347969"},{"denom":"ASSET10","index":"0.000008953505358908"},{"denom":"ASSET11","index":"0.000012432624080325"},{"denom":"ASSET12","index":"0.000011194846435509"},{"denom":"ASSET13","index":"0.000003852675567517"},{"denom":"ASSET14","index":"0.000011614356703153"},{"denom":"ASSET15","index":"0.000008302745615107"},{"denom":"ASSET16","index":"0.000005788648746115"},{"denom":"ASSET17","index":"0.000004110607675539"},{"denom":"ASSET18","index":"0.000001958208705152"},{"denom":"ASSET2","index":"0.000003793380830041"},{"denom":"ASSET3","index":"0.000001108811590805"},{"denom":"ASSET4","index":"0.000010443285637998"},{"denom":"ASSET5","index":"0.000000861256061842"},{"denom":"ASSET6","index":"0.000003505801353281"},{"denom":"ASSET7","index":"0.000005369138478471"},{"denom":"ASSET8","index":"0.000007005673232815"},{"denom":"ASSET9","index":"0.000003025513979724"}],"last_reward_claim_height":"120"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET6","shares":"1168634320.667623346000000000","reward_history":[{"denom":"ASSET0","index":"0.000003039218640043"},{"denom":"ASSET1","index":"0.000025782167100542"},{"denom":"ASSET10","index":"0.000020571830356487"},{"denom":"ASSET11","index":"0.000025618833387376"},{"denom":"ASSET12","index":"0.000024423552320522"},{"denom":"ASSET13","index":"0.000008046369560384"},{"denom":"ASSET14","index":"0.000023515194162679"},{"denom":"ASSET15","index":"0.000018530055863607"},{"denom":"ASSET16","index":"0.000011436803083329"},{"denom":"ASSET17","index":"0.000008974370950503"},{"denom":"ASSET18","index":"0.000003710743638587"},{"denom":"ASSET2","index":"0.000007806913274081"},{"denom":"ASSET3","index":"0.000002167934051431"},{"denom":"ASSET4","index":"0.000020901035076857"},{"denom":"ASSET5","index":"0.000001689640060433"},{"denom":"ASSET6","index":"0.000006819038075969"},{"denom":"ASSET7","index":"0.000010710838619674"},{"denom":"ASSET8","index":"0.000014627524271874"},{"denom":"ASSET9","index":"0.000006209166066794"}],"last_reward_claim_height":"128"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET15","shares":"299935791.524534603169057349","reward_history":[{"denom":"ASSET0","index":"0.000003039218640043"},{"denom":"ASSET1","index":"0.000025782167100542"},{"denom":"ASSET10","index":"0.000020571830356487"},{"denom":"ASSET11","index":"0.000025618833387376"},{"denom":"ASSET12","index":"0.000024423552320522"},{"denom":"ASSET13","index":"0.000008046369560384"},{"denom":"ASSET14","index":"0.000023515194162679"},{"denom":"ASSET15","index":"0.000018530055863607"},{"denom":"ASSET16","index":"0.000011436803083329"},{"denom":"ASSET17","index":"0.000008974370950503"},{"denom":"ASSET18","index":"0.000003710743638587"},{"denom":"ASSET2","index":"0.000007806913274081"},{"denom":"ASSET3","index":"0.000002167934051431"},{"denom":"ASSET4","index":"0.000020901035076857"},{"denom":"ASSET5","index":"0.000001689640060433"},{"denom":"ASSET6","index":"0.000006819038075969"},{"denom":"ASSET7","index":"0.000010710838619674"},{"denom":"ASSET8","index":"0.000014627524271874"},{"denom":"ASSET9","index":"0.000006209166066794"}],"last_reward_claim_height":"155"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET16","shares":"26660107.500039958938990272","reward_history":[{"denom":"ASSET0","index":"0.000003039218640043"},{"denom":"ASSET1","index":"0.000025782167100542"},{"denom":"ASSET10","index":"0.000020571830356487"},{"denom":"ASSET11","index":"0.000025618833387376"},{"denom":"ASSET12","index":"0.000024423552320522"},{"denom":"ASSET13","index":"0.000008046369560384"},{"denom":"ASSET14","index":"0.000023515194162679"},{"denom":"ASSET15","index":"0.000018530055863607"},{"denom":"ASSET16","index":"0.000011436803083329"},{"denom":"ASSET17","index":"0.000008974370950503"},{"denom":"ASSET18","index":"0.000003710743638587"},{"denom":"ASSET2","index":"0.000007806913274081"},{"denom":"ASSET3","index":"0.000002167934051431"},{"denom":"ASSET4","index":"0.000020901035076857"},{"denom":"ASSET5","index":"0.000001689640060433"},{"denom":"ASSET6","index":"0.000006819038075969"},{"denom":"ASSET7","index":"0.000010710838619674"},{"denom":"ASSET8","index":"0.000014627524271874"},{"denom":"ASSET9","index":"0.000006209166066794"}],"last_reward_claim_height":"161"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET18","shares":"1000028313.767711924000000000","reward_history":[{"denom":"ASSET0","index":"0.000003039218640043"},{"denom":"ASSET1","index":"0.000025782167100542"},{"denom":"ASSET10","index":"0.000020571830356487"},{"denom":"ASSET11","index":"0.000025618833387376"},{"denom":"ASSET12","index":"0.000024423552320522"},{"denom":"ASSET13","index":"0.000008046369560384"},{"denom":"ASSET14","index":"0.000023515194162679"},{"denom":"ASSET15","index":"0.000018530055863607"},{"denom":"ASSET16","index":"0.000011436803083329"},{"denom":"ASSET17","index":"0.000008974370950503"},{"denom":"ASSET18","index":"0.000003710743638587"},{"denom":"ASSET2","index":"0.000007806913274081"},{"denom":"ASSET3","index":"0.000002167934051431"},{"denom":"ASSET4","index":"0.000020901035076857"},{"denom":"ASSET5","index":"0.000001689640060433"},{"denom":"ASSET6","index":"0.000006819038075969"},{"denom":"ASSET7","index":"0.000010710838619674"},{"denom":"ASSET8","index":"0.000014627524271874"},{"denom":"ASSET9","index":"0.000006209166066794"}],"last_reward_claim_height":"165"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET3","shares":"406592463.074272385228090745","reward_history":[{"denom":"ASSET0","index":"0.000003240628198198"},{"denom":"ASSET1","index":"0.000027504329283847"},{"denom":"ASSET10","index":"0.000021940320319100"},{"denom":"ASSET11","index":"0.000027329345632586"},{"denom":"ASSET12","index":"0.000026051323397008"},{"denom":"ASSET13","index":"0.000008583813762496"},{"denom":"ASSET14","index":"0.000025085743554439"},{"denom":"ASSET15","index":"0.000019763439018939"},{"denom":"ASSET16","index":"0.000012202670980955"},{"denom":"ASSET17","index":"0.000009573761377605"},{"denom":"ASSET18","index":"0.000003959875003044"},{"denom":"ASSET2","index":"0.000008327243811102"},{"denom":"ASSET3","index":"0.000002312908746824"},{"denom":"ASSET4","index":"0.000022299606884078"},{"denom":"ASSET5","index":"0.000001802093087045"},{"denom":"ASSET6","index":"0.000007275447910852"},{"denom":"ASSET7","index":"0.000011427132859276"},{"denom":"ASSET8","index":"0.000015602768933976"},{"denom":"ASSET9","index":"0.000006623309483786"}],"last_reward_claim_height":"175"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET1","shares":"772337271.883603367904321600","reward_history":[{"denom":"ASSET0","index":"0.000003152920186871"},{"denom":"ASSET1","index":"0.000026760622644749"},{"denom":"ASSET10","index":"0.000021403995558307"},{"denom":"ASSET11","index":"0.000026604821287493"},{"denom":"ASSET12","index":"0.000025390105019040"},{"denom":"ASSET13","index":"0.000008358570294936"},{"denom":"ASSET14","index":"0.000024411618525071"},{"denom":"ASSET15","index":"0.000019270968708391"},{"denom":"ASSET16","index":"0.000011868219590271"},{"denom":"ASSET17","index":"0.000009330682788205"},{"denom":"ASSET18","index":"0.000003846613833157"},{"denom":"ASSET2","index":"0.000008107095494272"},{"denom":"ASSET3","index":"0.000002249072663818"},{"denom":"ASSET4","index":"0.000021694789218154"},{"denom":"ASSET5","index":"0.000001752328837510"},{"denom":"ASSET6","index":"0.000007072706136469"},{"denom":"ASSET7","index":"0.000011115912260277"},{"denom":"ASSET8","index":"0.000015194187602297"},{"denom":"ASSET9","index":"0.000006447849146068"}],"last_reward_claim_height":"139"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET12","shares":"125259679.999999996839893190","reward_history":[],"last_reward_claim_height":"48"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET15","shares":"112145259.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003152920186871"},{"denom":"ASSET1","index":"0.000026760622644749"},{"denom":"ASSET10","index":"0.000021403995558307"},{"denom":"ASSET11","index":"0.000026604821287493"},{"denom":"ASSET12","index":"0.000025390105019040"},{"denom":"ASSET13","index":"0.000008358570294936"},{"denom":"ASSET14","index":"0.000024411618525071"},{"denom":"ASSET15","index":"0.000019270968708391"},{"denom":"ASSET16","index":"0.000011868219590271"},{"denom":"ASSET17","index":"0.000009330682788205"},{"denom":"ASSET18","index":"0.000003846613833157"},{"denom":"ASSET2","index":"0.000008107095494272"},{"denom":"ASSET3","index":"0.000002249072663818"},{"denom":"ASSET4","index":"0.000021694789218154"},{"denom":"ASSET5","index":"0.000001752328837510"},{"denom":"ASSET6","index":"0.000007072706136469"},{"denom":"ASSET7","index":"0.000011115912260277"},{"denom":"ASSET8","index":"0.000015194187602297"},{"denom":"ASSET9","index":"0.000006447849146068"}],"last_reward_claim_height":"165"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET18","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004815927975477"},{"denom":"ASSET1","index":"0.000039382289900864"},{"denom":"ASSET10","index":"0.000034222073494624"},{"denom":"ASSET11","index":"0.000040984100009475"},{"denom":"ASSET12","index":"0.000039031763191412"},{"denom":"ASSET13","index":"0.000013231620117309"},{"denom":"ASSET14","index":"0.000037811725176315"},{"denom":"ASSET15","index":"0.000030710570220454"},{"denom":"ASSET16","index":"0.000017472166858286"},{"denom":"ASSET17","index":"0.000014174439086147"},{"denom":"ASSET18","index":"0.000005881073115984"},{"denom":"ASSET2","index":"0.000011889081587014"},{"denom":"ASSET3","index":"0.000003418652643359"},{"denom":"ASSET4","index":"0.000032291841736538"},{"denom":"ASSET5","index":"0.000002685159513042"},{"denom":"ASSET6","index":"0.000010964422890400"},{"denom":"ASSET7","index":"0.000016933318079269"},{"denom":"ASSET8","index":"0.000024422128019811"},{"denom":"ASSET9","index":"0.000009780347716391"}],"last_reward_claim_height":"199"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET2","shares":"230548988.000000013526558280","reward_history":[{"denom":"ASSET0","index":"0.000001655272585709"},{"denom":"ASSET1","index":"0.000013804891217292"},{"denom":"ASSET10","index":"0.000009617831976915"},{"denom":"ASSET11","index":"0.000013354722791997"},{"denom":"ASSET12","index":"0.000012025575872058"},{"denom":"ASSET13","index":"0.000004138592201887"},{"denom":"ASSET14","index":"0.000012474922822124"},{"denom":"ASSET15","index":"0.000008919578032571"},{"denom":"ASSET16","index":"0.000006218567480803"},{"denom":"ASSET17","index":"0.000004416250829168"},{"denom":"ASSET18","index":"0.000002103798060547"},{"denom":"ASSET2","index":"0.000004074517134053"},{"denom":"ASSET3","index":"0.000001191960556756"},{"denom":"ASSET4","index":"0.000011218887197534"},{"denom":"ASSET5","index":"0.000000924981107448"},{"denom":"ASSET6","index":"0.000003765642448085"},{"denom":"ASSET7","index":"0.000005766756105051"},{"denom":"ASSET8","index":"0.000007525534569569"},{"denom":"ASSET9","index":"0.000003250577479728"}],"last_reward_claim_height":"106"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET15","shares":"237329131.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004805221581489"},{"denom":"ASSET1","index":"0.000039345873089839"},{"denom":"ASSET10","index":"0.000033976974059511"},{"denom":"ASSET11","index":"0.000040840579959096"},{"denom":"ASSET12","index":"0.000038851970817686"},{"denom":"ASSET13","index":"0.000013166643058567"},{"denom":"ASSET14","index":"0.000037684443357597"},{"denom":"ASSET15","index":"0.000030511924225991"},{"denom":"ASSET16","index":"0.000017462133370161"},{"denom":"ASSET17","index":"0.000014115418385039"},{"denom":"ASSET18","index":"0.000005874187405486"},{"denom":"ASSET2","index":"0.000011873108566706"},{"denom":"ASSET3","index":"0.000003413246263568"},{"denom":"ASSET4","index":"0.000032247735445721"},{"denom":"ASSET5","index":"0.000002679755737782"},{"denom":"ASSET6","index":"0.000010937559885283"},{"denom":"ASSET7","index":"0.000016893898084444"},{"denom":"ASSET8","index":"0.000024287380141606"},{"denom":"ASSET9","index":"0.000009753761132589"}],"last_reward_claim_height":"185"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET8","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001621688869515"},{"denom":"ASSET1","index":"0.000013520143478358"},{"denom":"ASSET10","index":"0.000009419470546393"},{"denom":"ASSET11","index":"0.000013079418684764"},{"denom":"ASSET12","index":"0.000011778054243646"},{"denom":"ASSET13","index":"0.000004053107355591"},{"denom":"ASSET14","index":"0.000012218035825109"},{"denom":"ASSET15","index":"0.000008735715386011"},{"denom":"ASSET16","index":"0.000006090623412316"},{"denom":"ASSET17","index":"0.000004325494601547"},{"denom":"ASSET18","index":"0.000002060555632782"},{"denom":"ASSET2","index":"0.000003991049142665"},{"denom":"ASSET3","index":"0.000001167586257565"},{"denom":"ASSET4","index":"0.000010987648142487"},{"denom":"ASSET5","index":"0.000000905975587506"},{"denom":"ASSET6","index":"0.000003688190199343"},{"denom":"ASSET7","index":"0.000005648412194460"},{"denom":"ASSET8","index":"0.000007370434701640"},{"denom":"ASSET9","index":"0.000003183549162496"}],"last_reward_claim_height":"101"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET10","shares":"665057460.511882666704148558","reward_history":[{"denom":"ASSET0","index":"0.000003224207736427"},{"denom":"ASSET1","index":"0.000027358045975387"},{"denom":"ASSET10","index":"0.000021853454393362"},{"denom":"ASSET11","index":"0.000027191663823691"},{"denom":"ASSET12","index":"0.000025935625558190"},{"denom":"ASSET13","index":"0.000008541293337334"},{"denom":"ASSET14","index":"0.000024954691173737"},{"denom":"ASSET15","index":"0.000019681390400685"},{"denom":"ASSET16","index":"0.000012135703886829"},{"denom":"ASSET17","index":"0.000009530848033034"},{"denom":"ASSET18","index":"0.000003936224347496"},{"denom":"ASSET2","index":"0.000008286598878032"},{"denom":"ASSET3","index":"0.000002301038846536"},{"denom":"ASSET4","index":"0.000022179933336345"},{"denom":"ASSET5","index":"0.000001792519798769"},{"denom":"ASSET6","index":"0.000007234068845872"},{"denom":"ASSET7","index":"0.000011365474292791"},{"denom":"ASSET8","index":"0.000015527655320242"},{"denom":"ASSET9","index":"0.000006590765495457"}],"last_reward_claim_height":"125"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET13","shares":"475556744.545459100522342056","reward_history":[{"denom":"ASSET0","index":"0.000003224207736427"},{"denom":"ASSET1","index":"0.000027358045975387"},{"denom":"ASSET10","index":"0.000021853454393362"},{"denom":"ASSET11","index":"0.000027191663823691"},{"denom":"ASSET12","index":"0.000025935625558190"},{"denom":"ASSET13","index":"0.000008541293337334"},{"denom":"ASSET14","index":"0.000024954691173737"},{"denom":"ASSET15","index":"0.000019681390400685"},{"denom":"ASSET16","index":"0.000012135703886829"},{"denom":"ASSET17","index":"0.000009530848033034"},{"denom":"ASSET18","index":"0.000003936224347496"},{"denom":"ASSET2","index":"0.000008286598878032"},{"denom":"ASSET3","index":"0.000002301038846536"},{"denom":"ASSET4","index":"0.000022179933336345"},{"denom":"ASSET5","index":"0.000001792519798769"},{"denom":"ASSET6","index":"0.000007234068845872"},{"denom":"ASSET7","index":"0.000011365474292791"},{"denom":"ASSET8","index":"0.000015527655320242"},{"denom":"ASSET9","index":"0.000006590765495457"}],"last_reward_claim_height":"135"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET15","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"42"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET11","shares":"514231551.967180352969879084","reward_history":[{"denom":"ASSET0","index":"0.000004792917406928"},{"denom":"ASSET1","index":"0.000039212809339041"},{"denom":"ASSET10","index":"0.000033821158916912"},{"denom":"ASSET11","index":"0.000040703969988334"},{"denom":"ASSET12","index":"0.000038685540464857"},{"denom":"ASSET13","index":"0.000013123383671606"},{"denom":"ASSET14","index":"0.000037572259869060"},{"denom":"ASSET15","index":"0.000030383430108095"},{"denom":"ASSET16","index":"0.000017408409650349"},{"denom":"ASSET17","index":"0.000014052799802155"},{"denom":"ASSET18","index":"0.000005862593440880"},{"denom":"ASSET2","index":"0.000011827616400842"},{"denom":"ASSET3","index":"0.000003404853686933"},{"denom":"ASSET4","index":"0.000032143838562994"},{"denom":"ASSET5","index":"0.000002672916016720"},{"denom":"ASSET6","index":"0.000010912793942254"},{"denom":"ASSET7","index":"0.000016845380556915"},{"denom":"ASSET8","index":"0.000024212241881850"},{"denom":"ASSET9","index":"0.000009719793127333"}],"last_reward_claim_height":"197"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET17","shares":"687177781.000000012369200058","reward_history":[],"last_reward_claim_height":"52"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET18","shares":"115797788.000000000000000000","reward_history":[],"last_reward_claim_height":"20"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET18","shares":"800627067.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003316222748087"},{"denom":"ASSET1","index":"0.000028147075207200"},{"denom":"ASSET10","index":"0.000022466702115272"},{"denom":"ASSET11","index":"0.000027971336509453"},{"denom":"ASSET12","index":"0.000026669877578580"},{"denom":"ASSET13","index":"0.000008784355829882"},{"denom":"ASSET14","index":"0.000025672864554615"},{"denom":"ASSET15","index":"0.000020235356040284"},{"denom":"ASSET16","index":"0.000012487172511964"},{"denom":"ASSET17","index":"0.000009799807931023"},{"denom":"ASSET18","index":"0.000004049727438870"},{"denom":"ASSET2","index":"0.000008522892941853"},{"denom":"ASSET3","index":"0.000002368075218536"},{"denom":"ASSET4","index":"0.000022820717384594"},{"denom":"ASSET5","index":"0.000001843591257654"},{"denom":"ASSET6","index":"0.000007443165294976"},{"denom":"ASSET7","index":"0.000011693499621126"},{"denom":"ASSET8","index":"0.000015972009373807"},{"denom":"ASSET9","index":"0.000006779069609364"}],"last_reward_claim_height":"127"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET16","shares":"366120328.163180262834510421","reward_history":[{"denom":"ASSET0","index":"0.000003047858420945"},{"denom":"ASSET1","index":"0.000025863853767953"},{"denom":"ASSET10","index":"0.000020681482671570"},{"denom":"ASSET11","index":"0.000025712271525236"},{"denom":"ASSET12","index":"0.000024535470175220"},{"denom":"ASSET13","index":"0.000008077733573885"},{"denom":"ASSET14","index":"0.000023593590000343"},{"denom":"ASSET15","index":"0.000018621561303244"},{"denom":"ASSET16","index":"0.000011471343089677"},{"denom":"ASSET17","index":"0.000009016132124589"},{"denom":"ASSET18","index":"0.000003719208275283"},{"denom":"ASSET2","index":"0.000007835789085827"},{"denom":"ASSET3","index":"0.000002174729135607"},{"denom":"ASSET4","index":"0.000020967814383093"},{"denom":"ASSET5","index":"0.000001694402278429"},{"denom":"ASSET6","index":"0.000006836893759575"},{"denom":"ASSET7","index":"0.000010744095518390"},{"denom":"ASSET8","index":"0.000014684305897471"},{"denom":"ASSET9","index":"0.000006231971052532"}],"last_reward_claim_height":"137"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET2","shares":"299916064.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003365151784209"},{"denom":"ASSET1","index":"0.000028538337865727"},{"denom":"ASSET10","index":"0.000022670552359626"},{"denom":"ASSET11","index":"0.000028331786642422"},{"denom":"ASSET12","index":"0.000026959391418936"},{"denom":"ASSET13","index":"0.000008894072871450"},{"denom":"ASSET14","index":"0.000026020188745878"},{"denom":"ASSET15","index":"0.000020439828986765"},{"denom":"ASSET16","index":"0.000012667128947757"},{"denom":"ASSET17","index":"0.000009907060013179"},{"denom":"ASSET18","index":"0.000004116201786219"},{"denom":"ASSET2","index":"0.000008634485522558"},{"denom":"ASSET3","index":"0.000002403102945281"},{"denom":"ASSET4","index":"0.000023139017263426"},{"denom":"ASSET5","index":"0.000001871649891727"},{"denom":"ASSET6","index":"0.000007555863827839"},{"denom":"ASSET7","index":"0.000011857581945748"},{"denom":"ASSET8","index":"0.000016169532559731"},{"denom":"ASSET9","index":"0.000006867789268222"}],"last_reward_claim_height":"144"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET5","shares":"463174260.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001765508823557"},{"denom":"ASSET1","index":"0.000014724618911480"},{"denom":"ASSET10","index":"0.000010258363403154"},{"denom":"ASSET11","index":"0.000014244524406828"},{"denom":"ASSET12","index":"0.000012826610887714"},{"denom":"ASSET13","index":"0.000004413772058893"},{"denom":"ASSET14","index":"0.000013305845007949"},{"denom":"ASSET15","index":"0.000009513270498085"},{"denom":"ASSET16","index":"0.000006632703470176"},{"denom":"ASSET17","index":"0.000004710604682736"},{"denom":"ASSET18","index":"0.000002243882559375"},{"denom":"ASSET2","index":"0.000004346662074372"},{"denom":"ASSET3","index":"0.000001271648168235"},{"denom":"ASSET4","index":"0.000011966226470776"},{"denom":"ASSET5","index":"0.000000986860926228"},{"denom":"ASSET6","index":"0.000004016274458267"},{"denom":"ASSET7","index":"0.000006150888196691"},{"denom":"ASSET8","index":"0.000008026526225616"},{"denom":"ASSET9","index":"0.000003466488815844"}],"last_reward_claim_height":"66"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET10","shares":"202023980.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000005034266255964"},{"denom":"ASSET1","index":"0.000041206698521448"},{"denom":"ASSET10","index":"0.000035536058655568"},{"denom":"ASSET11","index":"0.000042764328047000"},{"denom":"ASSET12","index":"0.000040651662632960"},{"denom":"ASSET13","index":"0.000013785310751564"},{"denom":"ASSET14","index":"0.000039470118876468"},{"denom":"ASSET15","index":"0.000031921809258150"},{"denom":"ASSET16","index":"0.000018292013548299"},{"denom":"ASSET17","index":"0.000014768687085671"},{"denom":"ASSET18","index":"0.000006158178664479"},{"denom":"ASSET2","index":"0.000012430513136542"},{"denom":"ASSET3","index":"0.000003577015621144"},{"denom":"ASSET4","index":"0.000033775531054020"},{"denom":"ASSET5","index":"0.000002807896874833"},{"denom":"ASSET6","index":"0.000011462152738626"},{"denom":"ASSET7","index":"0.000017696755285661"},{"denom":"ASSET8","index":"0.000025431871107123"},{"denom":"ASSET9","index":"0.000010212641681858"}],"last_reward_claim_height":"195"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET15","shares":"832798700.498179966306487984","reward_history":[{"denom":"ASSET0","index":"0.000003365151784209"},{"denom":"ASSET1","index":"0.000028538337865727"},{"denom":"ASSET10","index":"0.000022670552359626"},{"denom":"ASSET11","index":"0.000028331786642422"},{"denom":"ASSET12","index":"0.000026959391418936"},{"denom":"ASSET13","index":"0.000008894072871450"},{"denom":"ASSET14","index":"0.000026020188745878"},{"denom":"ASSET15","index":"0.000020439828986765"},{"denom":"ASSET16","index":"0.000012667128947757"},{"denom":"ASSET17","index":"0.000009907060013179"},{"denom":"ASSET18","index":"0.000004116201786219"},{"denom":"ASSET2","index":"0.000008634485522558"},{"denom":"ASSET3","index":"0.000002403102945281"},{"denom":"ASSET4","index":"0.000023139017263426"},{"denom":"ASSET5","index":"0.000001871649891727"},{"denom":"ASSET6","index":"0.000007555863827839"},{"denom":"ASSET7","index":"0.000011857581945748"},{"denom":"ASSET8","index":"0.000016169532559731"},{"denom":"ASSET9","index":"0.000006867789268222"}],"last_reward_claim_height":"150"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET9","shares":"155741175.669452972071076305","reward_history":[{"denom":"ASSET0","index":"0.000001833509758465"},{"denom":"ASSET1","index":"0.000015308139656127"},{"denom":"ASSET10","index":"0.000010661025831945"},{"denom":"ASSET11","index":"0.000014808091540182"},{"denom":"ASSET12","index":"0.000013334616425197"},{"denom":"ASSET13","index":"0.000004587108050268"},{"denom":"ASSET14","index":"0.000013827997232930"},{"denom":"ASSET15","index":"0.000009887618079284"},{"denom":"ASSET16","index":"0.000006893996691827"},{"denom":"ASSET17","index":"0.000004893804228047"},{"denom":"ASSET18","index":"0.000002326890566197"},{"denom":"ASSET2","index":"0.000004513767659929"},{"denom":"ASSET3","index":"0.000001320127026095"},{"denom":"ASSET4","index":"0.000012434529816496"},{"denom":"ASSET5","index":"0.000001020098156528"},{"denom":"ASSET6","index":"0.000004173734941087"},{"denom":"ASSET7","index":"0.000006393948575882"},{"denom":"ASSET8","index":"0.000008340802573961"},{"denom":"ASSET9","index":"0.000003600346434803"}],"last_reward_claim_height":"76"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET10","shares":"314048273.736661890041406775","reward_history":[{"denom":"ASSET0","index":"0.000005040570168850"},{"denom":"ASSET1","index":"0.000041355750359430"},{"denom":"ASSET10","index":"0.000035469281704739"},{"denom":"ASSET11","index":"0.000042803752649888"},{"denom":"ASSET12","index":"0.000040675443122671"},{"denom":"ASSET13","index":"0.000013775999252168"},{"denom":"ASSET14","index":"0.000039495576924183"},{"denom":"ASSET15","index":"0.000031873960565154"},{"denom":"ASSET16","index":"0.000018356948849581"},{"denom":"ASSET17","index":"0.000014782651582035"},{"denom":"ASSET18","index":"0.000006164254954174"},{"denom":"ASSET2","index":"0.000012468880818976"},{"denom":"ASSET3","index":"0.000003582052674901"},{"denom":"ASSET4","index":"0.000033871373778794"},{"denom":"ASSET5","index":"0.000002805429255147"},{"denom":"ASSET6","index":"0.000011472525623683"},{"denom":"ASSET7","index":"0.000017727043140390"},{"denom":"ASSET8","index":"0.000025392666272201"},{"denom":"ASSET9","index":"0.000010226777370208"}],"last_reward_claim_height":"194"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET11","shares":"507942234.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001833509758465"},{"denom":"ASSET1","index":"0.000015308139656127"},{"denom":"ASSET10","index":"0.000010661025831945"},{"denom":"ASSET11","index":"0.000014808091540182"},{"denom":"ASSET12","index":"0.000013334616425197"},{"denom":"ASSET13","index":"0.000004587108050268"},{"denom":"ASSET14","index":"0.000013827997232930"},{"denom":"ASSET15","index":"0.000009887618079284"},{"denom":"ASSET16","index":"0.000006893996691827"},{"denom":"ASSET17","index":"0.000004893804228047"},{"denom":"ASSET18","index":"0.000002326890566197"},{"denom":"ASSET2","index":"0.000004513767659929"},{"denom":"ASSET3","index":"0.000001320127026095"},{"denom":"ASSET4","index":"0.000012434529816496"},{"denom":"ASSET5","index":"0.000001020098156528"},{"denom":"ASSET6","index":"0.000004173734941087"},{"denom":"ASSET7","index":"0.000006393948575882"},{"denom":"ASSET8","index":"0.000008340802573961"},{"denom":"ASSET9","index":"0.000003600346434803"}],"last_reward_claim_height":"112"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET0","shares":"184425398.975531642631464396","reward_history":[{"denom":"ASSET0","index":"0.000003136420796654"},{"denom":"ASSET1","index":"0.000026617535879560"},{"denom":"ASSET10","index":"0.000021257162201233"},{"denom":"ASSET11","index":"0.000026454281403244"},{"denom":"ASSET12","index":"0.000025229520616223"},{"denom":"ASSET13","index":"0.000008309311482354"},{"denom":"ASSET14","index":"0.000024278363089230"},{"denom":"ASSET15","index":"0.000019144672836670"},{"denom":"ASSET16","index":"0.000011806881934189"},{"denom":"ASSET17","index":"0.000009271795054357"},{"denom":"ASSET18","index":"0.000003829937127836"},{"denom":"ASSET2","index":"0.000008061315465971"},{"denom":"ASSET3","index":"0.000002238409344787"},{"denom":"ASSET4","index":"0.000021579173085678"},{"denom":"ASSET5","index":"0.000001744155749232"},{"denom":"ASSET6","index":"0.000007037998659171"},{"denom":"ASSET7","index":"0.000011056982942661"},{"denom":"ASSET8","index":"0.000015105683491420"},{"denom":"ASSET9","index":"0.000006411626899884"}],"last_reward_claim_height":"125"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET2","shares":"458048272.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003136420796654"},{"denom":"ASSET1","index":"0.000026617535879560"},{"denom":"ASSET10","index":"0.000021257162201233"},{"denom":"ASSET11","index":"0.000026454281403244"},{"denom":"ASSET12","index":"0.000025229520616223"},{"denom":"ASSET13","index":"0.000008309311482354"},{"denom":"ASSET14","index":"0.000024278363089230"},{"denom":"ASSET15","index":"0.000019144672836670"},{"denom":"ASSET16","index":"0.000011806881934189"},{"denom":"ASSET17","index":"0.000009271795054357"},{"denom":"ASSET18","index":"0.000003829937127836"},{"denom":"ASSET2","index":"0.000008061315465971"},{"denom":"ASSET3","index":"0.000002238409344787"},{"denom":"ASSET4","index":"0.000021579173085678"},{"denom":"ASSET5","index":"0.000001744155749232"},{"denom":"ASSET6","index":"0.000007037998659171"},{"denom":"ASSET7","index":"0.000011056982942661"},{"denom":"ASSET8","index":"0.000015105683491420"},{"denom":"ASSET9","index":"0.000006411626899884"}],"last_reward_claim_height":"181"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET6","shares":"32701822.043724525000526800","reward_history":[{"denom":"ASSET0","index":"0.000004775784724633"},{"denom":"ASSET1","index":"0.000039059123105112"},{"denom":"ASSET10","index":"0.000033892192800766"},{"denom":"ASSET11","index":"0.000040628226633110"},{"denom":"ASSET12","index":"0.000038676385578367"},{"denom":"ASSET13","index":"0.000013112828286164"},{"denom":"ASSET14","index":"0.000037487053349535"},{"denom":"ASSET15","index":"0.000030420891257507"},{"denom":"ASSET16","index":"0.000017330808544550"},{"denom":"ASSET17","index":"0.000014046275733066"},{"denom":"ASSET18","index":"0.000005834999280055"},{"denom":"ASSET2","index":"0.000011789318500851"},{"denom":"ASSET3","index":"0.000003391221987296"},{"denom":"ASSET4","index":"0.000032025115280665"},{"denom":"ASSET5","index":"0.000002663502250729"},{"denom":"ASSET6","index":"0.000010874298593075"},{"denom":"ASSET7","index":"0.000016791225269967"},{"denom":"ASSET8","index":"0.000024201838249296"},{"denom":"ASSET9","index":"0.000009696240456876"}],"last_reward_claim_height":"192"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET13","shares":"342699785.484108536351862085","reward_history":[{"denom":"ASSET0","index":"0.000001580229076001"},{"denom":"ASSET1","index":"0.000013178675425859"},{"denom":"ASSET10","index":"0.000009181488308837"},{"denom":"ASSET11","index":"0.000012749045790152"},{"denom":"ASSET12","index":"0.000011480356468073"},{"denom":"ASSET13","index":"0.000003950572690002"},{"denom":"ASSET14","index":"0.000011909209196663"},{"denom":"ASSET15","index":"0.000008514902002442"},{"denom":"ASSET16","index":"0.000005936347281082"},{"denom":"ASSET17","index":"0.000004216274924019"},{"denom":"ASSET18","index":"0.000002008304897474"},{"denom":"ASSET2","index":"0.000003889973934875"},{"denom":"ASSET3","index":"0.000001137392019304"},{"denom":"ASSET4","index":"0.000010709664607998"},{"denom":"ASSET5","index":"0.000000883343392042"},{"denom":"ASSET6","index":"0.000003594749230410"},{"denom":"ASSET7","index":"0.000005505163831141"},{"denom":"ASSET8","index":"0.000007184060111002"},{"denom":"ASSET9","index":"0.000003102967025342"}],"last_reward_claim_height":"95"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET16","shares":"746135982.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004775784724633"},{"denom":"ASSET1","index":"0.000039059123105112"},{"denom":"ASSET10","index":"0.000033892192800766"},{"denom":"ASSET11","index":"0.000040628226633110"},{"denom":"ASSET12","index":"0.000038676385578367"},{"denom":"ASSET13","index":"0.000013112828286164"},{"denom":"ASSET14","index":"0.000037487053349535"},{"denom":"ASSET15","index":"0.000030420891257507"},{"denom":"ASSET16","index":"0.000017330808544550"},{"denom":"ASSET17","index":"0.000014046275733066"},{"denom":"ASSET18","index":"0.000005834999280055"},{"denom":"ASSET2","index":"0.000011789318500851"},{"denom":"ASSET3","index":"0.000003391221987296"},{"denom":"ASSET4","index":"0.000032025115280665"},{"denom":"ASSET5","index":"0.000002663502250729"},{"denom":"ASSET6","index":"0.000010874298593075"},{"denom":"ASSET7","index":"0.000016791225269967"},{"denom":"ASSET8","index":"0.000024201838249296"},{"denom":"ASSET9","index":"0.000009696240456876"}],"last_reward_claim_height":"188"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET16","shares":"75973948.999999999762276553","reward_history":[],"last_reward_claim_height":"37"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET14","shares":"918608611.000000000000000000","reward_history":[],"last_reward_claim_height":"17"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET6","shares":"1000057769.667623363000000000","reward_history":[{"denom":"ASSET0","index":"0.000003157426180098"},{"denom":"ASSET1","index":"0.000026803913890418"},{"denom":"ASSET10","index":"0.000021467927303389"},{"denom":"ASSET11","index":"0.000026655124661377"},{"denom":"ASSET12","index":"0.000025453388278707"},{"denom":"ASSET13","index":"0.000008375182650914"},{"denom":"ASSET14","index":"0.000024453809207757"},{"denom":"ASSET15","index":"0.000019323681821282"},{"denom":"ASSET16","index":"0.000011885939188892"},{"denom":"ASSET17","index":"0.000009353763879690"},{"denom":"ASSET18","index":"0.000003851457527173"},{"denom":"ASSET2","index":"0.000008122633355733"},{"denom":"ASSET3","index":"0.000002252845423920"},{"denom":"ASSET4","index":"0.000021728796023940"},{"denom":"ASSET5","index":"0.000001755342604855"},{"denom":"ASSET6","index":"0.000007082922688985"},{"denom":"ASSET7","index":"0.000011133765978354"},{"denom":"ASSET8","index":"0.000015225414484063"},{"denom":"ASSET9","index":"0.000006459804222065"}],"last_reward_claim_height":"162"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET8","shares":"240504212.000000000000000000","reward_history":[],"last_reward_claim_height":"56"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET16","shares":"829914802.000000000000000000","reward_history":[],"last_reward_claim_height":"40"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET8","shares":"836510325.578900858597419050","reward_history":[{"denom":"ASSET0","index":"0.000004771369973109"},{"denom":"ASSET1","index":"0.000039075310152038"},{"denom":"ASSET10","index":"0.000033862554414871"},{"denom":"ASSET11","index":"0.000040596859097080"},{"denom":"ASSET12","index":"0.000038671598570907"},{"denom":"ASSET13","index":"0.000013093360645348"},{"denom":"ASSET14","index":"0.000037444745013630"},{"denom":"ASSET15","index":"0.000030388777717539"},{"denom":"ASSET16","index":"0.000017335253118551"},{"denom":"ASSET17","index":"0.000014050047421762"},{"denom":"ASSET18","index":"0.000005826669662430"},{"denom":"ASSET2","index":"0.000011799629246551"},{"denom":"ASSET3","index":"0.000003387458203475"},{"denom":"ASSET4","index":"0.000032025073817120"},{"denom":"ASSET5","index":"0.000002660417616354"},{"denom":"ASSET6","index":"0.000010857215890221"},{"denom":"ASSET7","index":"0.000016779501987829"},{"denom":"ASSET8","index":"0.000024155503710162"},{"denom":"ASSET9","index":"0.000009692703418713"}],"last_reward_claim_height":"191"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET15","shares":"191860080.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003185213515607"},{"denom":"ASSET1","index":"0.000027035699090666"},{"denom":"ASSET10","index":"0.000021635640181728"},{"denom":"ASSET11","index":"0.000026880669357351"},{"denom":"ASSET12","index":"0.000025658872180332"},{"denom":"ASSET13","index":"0.000008444958797633"},{"denom":"ASSET14","index":"0.000024662649108986"},{"denom":"ASSET15","index":"0.000019476753279332"},{"denom":"ASSET16","index":"0.000011989846651744"},{"denom":"ASSET17","index":"0.000009429633404312"},{"denom":"ASSET18","index":"0.000003886090392826"},{"denom":"ASSET2","index":"0.000008191890279929"},{"denom":"ASSET3","index":"0.000002271981699175"},{"denom":"ASSET4","index":"0.000021916623044014"},{"denom":"ASSET5","index":"0.000001770727550439"},{"denom":"ASSET6","index":"0.000007144791673859"},{"denom":"ASSET7","index":"0.000011230376410345"},{"denom":"ASSET8","index":"0.000015353061978158"},{"denom":"ASSET9","index":"0.000006513931773648"}],"last_reward_claim_height":"178"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET0","shares":"1000010405.378236857000000000","reward_history":[{"denom":"ASSET0","index":"0.000003356675502673"},{"denom":"ASSET1","index":"0.000028477076245214"},{"denom":"ASSET10","index":"0.000022663760086849"},{"denom":"ASSET11","index":"0.000028282539274294"},{"denom":"ASSET12","index":"0.000026934248109484"},{"denom":"ASSET13","index":"0.000008880550781135"},{"denom":"ASSET14","index":"0.000025969128454053"},{"denom":"ASSET15","index":"0.000020425731449718"},{"denom":"ASSET16","index":"0.000012636600959200"},{"denom":"ASSET17","index":"0.000009896936242996"},{"denom":"ASSET18","index":"0.000004102733083140"},{"denom":"ASSET2","index":"0.000008619316582261"},{"denom":"ASSET3","index":"0.000002396767404444"},{"denom":"ASSET4","index":"0.000023088672429632"},{"denom":"ASSET5","index":"0.000001866260713425"},{"denom":"ASSET6","index":"0.000007536521735823"},{"denom":"ASSET7","index":"0.000011831316132227"},{"denom":"ASSET8","index":"0.000016143846449802"},{"denom":"ASSET9","index":"0.000006854365607618"}],"last_reward_claim_height":"133"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET11","shares":"371484355.552099511938960192","reward_history":[{"denom":"ASSET0","index":"0.000003356675502673"},{"denom":"ASSET1","index":"0.000028477076245214"},{"denom":"ASSET10","index":"0.000022663760086849"},{"denom":"ASSET11","index":"0.000028282539274294"},{"denom":"ASSET12","index":"0.000026934248109484"},{"denom":"ASSET13","index":"0.000008880550781135"},{"denom":"ASSET14","index":"0.000025969128454053"},{"denom":"ASSET15","index":"0.000020425731449718"},{"denom":"ASSET16","index":"0.000012636600959200"},{"denom":"ASSET17","index":"0.000009896936242996"},{"denom":"ASSET18","index":"0.000004102733083140"},{"denom":"ASSET2","index":"0.000008619316582261"},{"denom":"ASSET3","index":"0.000002396767404444"},{"denom":"ASSET4","index":"0.000023088672429632"},{"denom":"ASSET5","index":"0.000001866260713425"},{"denom":"ASSET6","index":"0.000007536521735823"},{"denom":"ASSET7","index":"0.000011831316132227"},{"denom":"ASSET8","index":"0.000016143846449802"},{"denom":"ASSET9","index":"0.000006854365607618"}],"last_reward_claim_height":"166"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET12","shares":"767862111.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003356675502673"},{"denom":"ASSET1","index":"0.000028477076245214"},{"denom":"ASSET10","index":"0.000022663760086849"},{"denom":"ASSET11","index":"0.000028282539274294"},{"denom":"ASSET12","index":"0.000026934248109484"},{"denom":"ASSET13","index":"0.000008880550781135"},{"denom":"ASSET14","index":"0.000025969128454053"},{"denom":"ASSET15","index":"0.000020425731449718"},{"denom":"ASSET16","index":"0.000012636600959200"},{"denom":"ASSET17","index":"0.000009896936242996"},{"denom":"ASSET18","index":"0.000004102733083140"},{"denom":"ASSET2","index":"0.000008619316582261"},{"denom":"ASSET3","index":"0.000002396767404444"},{"denom":"ASSET4","index":"0.000023088672429632"},{"denom":"ASSET5","index":"0.000001866260713425"},{"denom":"ASSET6","index":"0.000007536521735823"},{"denom":"ASSET7","index":"0.000011831316132227"},{"denom":"ASSET8","index":"0.000016143846449802"},{"denom":"ASSET9","index":"0.000006854365607618"}],"last_reward_claim_height":"165"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET1","shares":"6579129.999999999980262610","reward_history":[],"last_reward_claim_height":"27"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET5","shares":"198693632.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002962853679956"},{"denom":"ASSET1","index":"0.000025162993314326"},{"denom":"ASSET10","index":"0.000020199688926412"},{"denom":"ASSET11","index":"0.000025035647772320"},{"denom":"ASSET12","index":"0.000023929456511577"},{"denom":"ASSET13","index":"0.000007867725037604"},{"denom":"ASSET14","index":"0.000022960507028012"},{"denom":"ASSET15","index":"0.000018173489333858"},{"denom":"ASSET16","index":"0.000011155286879957"},{"denom":"ASSET17","index":"0.000008793607250882"},{"denom":"ASSET18","index":"0.000003611579051495"},{"denom":"ASSET2","index":"0.000007628670547867"},{"denom":"ASSET3","index":"0.000002114031306235"},{"denom":"ASSET4","index":"0.000020398130246320"},{"denom":"ASSET5","index":"0.000001647096325587"},{"denom":"ASSET6","index":"0.000006645213242757"},{"denom":"ASSET7","index":"0.000010450616802650"},{"denom":"ASSET8","index":"0.000014303332598966"},{"denom":"ASSET9","index":"0.000006067112886031"}],"last_reward_claim_height":"168"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET8","shares":"163472170.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004537599353463"},{"denom":"ASSET1","index":"0.000037117847669619"},{"denom":"ASSET10","index":"0.000032340600561623"},{"denom":"ASSET11","index":"0.000038655579958761"},{"denom":"ASSET12","index":"0.000036850325657168"},{"denom":"ASSET13","index":"0.000012483428644838"},{"denom":"ASSET14","index":"0.000035652849297182"},{"denom":"ASSET15","index":"0.000029008629406748"},{"denom":"ASSET16","index":"0.000016463312322248"},{"denom":"ASSET17","index":"0.000013380997793781"},{"denom":"ASSET18","index":"0.000005538215667455"},{"denom":"ASSET2","index":"0.000011210947306863"},{"denom":"ASSET3","index":"0.000003221611418209"},{"denom":"ASSET4","index":"0.000030435785673766"},{"denom":"ASSET5","index":"0.000002530194284617"},{"denom":"ASSET6","index":"0.000010331304570982"},{"denom":"ASSET7","index":"0.000015960878418764"},{"denom":"ASSET8","index":"0.000023043980031623"},{"denom":"ASSET9","index":"0.000009223345438838"}],"last_reward_claim_height":"191"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET5","shares":"55709005.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004710092433654"},{"denom":"ASSET1","index":"0.000038556135792355"},{"denom":"ASSET10","index":"0.000033353659193614"},{"denom":"ASSET11","index":"0.000040049318205974"},{"denom":"ASSET12","index":"0.000038111075465724"},{"denom":"ASSET13","index":"0.000012916441638659"},{"denom":"ASSET14","index":"0.000036953570332487"},{"denom":"ASSET15","index":"0.000029944608970039"},{"denom":"ASSET16","index":"0.000017108808043772"},{"denom":"ASSET17","index":"0.000013844822035492"},{"denom":"ASSET18","index":"0.000005755990843634"},{"denom":"ASSET2","index":"0.000011636891149639"},{"denom":"ASSET3","index":"0.000003344846225532"},{"denom":"ASSET4","index":"0.000031603139079821"},{"denom":"ASSET5","index":"0.000002626855566694"},{"denom":"ASSET6","index":"0.000010722052285409"},{"denom":"ASSET7","index":"0.000016561307322387"},{"denom":"ASSET8","index":"0.000023829558015918"},{"denom":"ASSET9","index":"0.000009562504361461"}],"last_reward_claim_height":"194"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET9","shares":"119640826.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003135234009226"},{"denom":"ASSET1","index":"0.000026602125077525"},{"denom":"ASSET10","index":"0.000021213712135644"},{"denom":"ASSET11","index":"0.000026430841190504"},{"denom":"ASSET12","index":"0.000025191219856579"},{"denom":"ASSET13","index":"0.000008300995957475"},{"denom":"ASSET14","index":"0.000024262534835813"},{"denom":"ASSET15","index":"0.000019110376679732"},{"denom":"ASSET16","index":"0.000011801461546978"},{"denom":"ASSET17","index":"0.000009257538829689"},{"denom":"ASSET18","index":"0.000003829421505073"},{"denom":"ASSET2","index":"0.000008055136326188"},{"denom":"ASSET3","index":"0.000002237228869924"},{"denom":"ASSET4","index":"0.000021566736915931"},{"denom":"ASSET5","index":"0.000001743257901616"},{"denom":"ASSET6","index":"0.000007036288319926"},{"denom":"ASSET7","index":"0.000011051703047857"},{"denom":"ASSET8","index":"0.000015089589803941"},{"denom":"ASSET9","index":"0.000006406386950018"}],"last_reward_claim_height":"170"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET10","shares":"47828685.263338084204751794","reward_history":[{"denom":"ASSET0","index":"0.000004710092433654"},{"denom":"ASSET1","index":"0.000038556135792355"},{"denom":"ASSET10","index":"0.000033353659193614"},{"denom":"ASSET11","index":"0.000040049318205974"},{"denom":"ASSET12","index":"0.000038111075465724"},{"denom":"ASSET13","index":"0.000012916441638659"},{"denom":"ASSET14","index":"0.000036953570332487"},{"denom":"ASSET15","index":"0.000029944608970039"},{"denom":"ASSET16","index":"0.000017108808043772"},{"denom":"ASSET17","index":"0.000013844822035492"},{"denom":"ASSET18","index":"0.000005755990843634"},{"denom":"ASSET2","index":"0.000011636891149639"},{"denom":"ASSET3","index":"0.000003344846225532"},{"denom":"ASSET4","index":"0.000031603139079821"},{"denom":"ASSET5","index":"0.000002626855566694"},{"denom":"ASSET6","index":"0.000010722052285409"},{"denom":"ASSET7","index":"0.000016561307322387"},{"denom":"ASSET8","index":"0.000023829558015918"},{"denom":"ASSET9","index":"0.000009562504361461"}],"last_reward_claim_height":"194"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET11","shares":"457795454.999993649311996412","reward_history":[{"denom":"ASSET0","index":"0.000001597673370668"},{"denom":"ASSET1","index":"0.000013327099930964"},{"denom":"ASSET10","index":"0.000009285285696821"},{"denom":"ASSET11","index":"0.000012892979142852"},{"denom":"ASSET12","index":"0.000011609669101507"},{"denom":"ASSET13","index":"0.000003995544306884"},{"denom":"ASSET14","index":"0.000012043789889618"},{"denom":"ASSET15","index":"0.000008610289110917"},{"denom":"ASSET16","index":"0.000006002842621820"},{"denom":"ASSET17","index":"0.000004263637708946"},{"denom":"ASSET18","index":"0.000002030433278566"},{"denom":"ASSET2","index":"0.000003934304697275"},{"denom":"ASSET3","index":"0.000001149943780421"},{"denom":"ASSET4","index":"0.000010829884739162"},{"denom":"ASSET5","index":"0.000000892737420067"},{"denom":"ASSET6","index":"0.000003634911050302"},{"denom":"ASSET7","index":"0.000005567360953495"},{"denom":"ASSET8","index":"0.000007264378579749"},{"denom":"ASSET9","index":"0.000003138189772368"}],"last_reward_claim_height":"109"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET17","shares":"421396871.897173827261419868","reward_history":[{"denom":"ASSET0","index":"0.000003135234009226"},{"denom":"ASSET1","index":"0.000026602125077525"},{"denom":"ASSET10","index":"0.000021213712135644"},{"denom":"ASSET11","index":"0.000026430841190504"},{"denom":"ASSET12","index":"0.000025191219856579"},{"denom":"ASSET13","index":"0.000008300995957475"},{"denom":"ASSET14","index":"0.000024262534835813"},{"denom":"ASSET15","index":"0.000019110376679732"},{"denom":"ASSET16","index":"0.000011801461546978"},{"denom":"ASSET17","index":"0.000009257538829689"},{"denom":"ASSET18","index":"0.000003829421505073"},{"denom":"ASSET2","index":"0.000008055136326188"},{"denom":"ASSET3","index":"0.000002237228869924"},{"denom":"ASSET4","index":"0.000021566736915931"},{"denom":"ASSET5","index":"0.000001743257901616"},{"denom":"ASSET6","index":"0.000007036288319926"},{"denom":"ASSET7","index":"0.000011051703047857"},{"denom":"ASSET8","index":"0.000015089589803941"},{"denom":"ASSET9","index":"0.000006406386950018"}],"last_reward_claim_height":"146"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET1","shares":"116918980.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001689516061942"},{"denom":"ASSET1","index":"0.000014086551658080"},{"denom":"ASSET10","index":"0.000009813816295422"},{"denom":"ASSET11","index":"0.000013627312671286"},{"denom":"ASSET12","index":"0.000012271349136594"},{"denom":"ASSET13","index":"0.000004223185893030"},{"denom":"ASSET14","index":"0.000012729983861563"},{"denom":"ASSET15","index":"0.000009101391604066"},{"denom":"ASSET16","index":"0.000006345353421478"},{"denom":"ASSET17","index":"0.000004506584688828"},{"denom":"ASSET18","index":"0.000002146942263262"},{"denom":"ASSET2","index":"0.000004157925615959"},{"denom":"ASSET3","index":"0.000001216379053179"},{"denom":"ASSET4","index":"0.000011447740269489"},{"denom":"ASSET5","index":"0.000000943856970227"},{"denom":"ASSET6","index":"0.000003842500943451"},{"denom":"ASSET7","index":"0.000005884905911035"},{"denom":"ASSET8","index":"0.000007678959268655"},{"denom":"ASSET9","index":"0.000003316793155937"}],"last_reward_claim_height":"109"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET3","shares":"946795838.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003297864217859"},{"denom":"ASSET1","index":"0.000027973253972789"},{"denom":"ASSET10","index":"0.000022291630953866"},{"denom":"ASSET11","index":"0.000027789008146512"},{"denom":"ASSET12","index":"0.000026479178332828"},{"denom":"ASSET13","index":"0.000008727103479255"},{"denom":"ASSET14","index":"0.000025511286037616"},{"denom":"ASSET15","index":"0.000020085740117730"},{"denom":"ASSET16","index":"0.000012411485442612"},{"denom":"ASSET17","index":"0.000009730550155880"},{"denom":"ASSET18","index":"0.000004028926705548"},{"denom":"ASSET2","index":"0.000008468714781887"},{"denom":"ASSET3","index":"0.000002353891879987"},{"denom":"ASSET4","index":"0.000022679492169342"},{"denom":"ASSET5","index":"0.000001833514119464"},{"denom":"ASSET6","index":"0.000007400677249018"},{"denom":"ASSET7","index":"0.000011621769805761"},{"denom":"ASSET8","index":"0.000015864980999233"},{"denom":"ASSET9","index":"0.000006736116007098"}],"last_reward_claim_height":"137"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET15","shares":"946436275.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001689516061942"},{"denom":"ASSET1","index":"0.000014086551658080"},{"denom":"ASSET10","index":"0.000009813816295422"},{"denom":"ASSET11","index":"0.000013627312671286"},{"denom":"ASSET12","index":"0.000012271349136594"},{"denom":"ASSET13","index":"0.000004223185893030"},{"denom":"ASSET14","index":"0.000012729983861563"},{"denom":"ASSET15","index":"0.000009101391604066"},{"denom":"ASSET16","index":"0.000006345353421478"},{"denom":"ASSET17","index":"0.000004506584688828"},{"denom":"ASSET18","index":"0.000002146942263262"},{"denom":"ASSET2","index":"0.000004157925615959"},{"denom":"ASSET3","index":"0.000001216379053179"},{"denom":"ASSET4","index":"0.000011447740269489"},{"denom":"ASSET5","index":"0.000000943856970227"},{"denom":"ASSET6","index":"0.000003842500943451"},{"denom":"ASSET7","index":"0.000005884905911035"},{"denom":"ASSET8","index":"0.000007678959268655"},{"denom":"ASSET9","index":"0.000003316793155937"}],"last_reward_claim_height":"68"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET17","shares":"172031900.232067591786147044","reward_history":[{"denom":"ASSET0","index":"0.000003297864217859"},{"denom":"ASSET1","index":"0.000027973253972789"},{"denom":"ASSET10","index":"0.000022291630953866"},{"denom":"ASSET11","index":"0.000027789008146512"},{"denom":"ASSET12","index":"0.000026479178332828"},{"denom":"ASSET13","index":"0.000008727103479255"},{"denom":"ASSET14","index":"0.000025511286037616"},{"denom":"ASSET15","index":"0.000020085740117730"},{"denom":"ASSET16","index":"0.000012411485442612"},{"denom":"ASSET17","index":"0.000009730550155880"},{"denom":"ASSET18","index":"0.000004028926705548"},{"denom":"ASSET2","index":"0.000008468714781887"},{"denom":"ASSET3","index":"0.000002353891879987"},{"denom":"ASSET4","index":"0.000022679492169342"},{"denom":"ASSET5","index":"0.000001833514119464"},{"denom":"ASSET6","index":"0.000007400677249018"},{"denom":"ASSET7","index":"0.000011621769805761"},{"denom":"ASSET8","index":"0.000015864980999233"},{"denom":"ASSET9","index":"0.000006736116007098"}],"last_reward_claim_height":"134"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET4","shares":"525780156.739158736351718548","reward_history":[{"denom":"ASSET0","index":"0.000002930820438736"},{"denom":"ASSET1","index":"0.000024889799880283"},{"denom":"ASSET10","index":"0.000019988623694797"},{"denom":"ASSET11","index":"0.000024765615752571"},{"denom":"ASSET12","index":"0.000023676022623299"},{"denom":"ASSET13","index":"0.000007783195940338"},{"denom":"ASSET14","index":"0.000022712072914709"},{"denom":"ASSET15","index":"0.000017982209004670"},{"denom":"ASSET16","index":"0.000011033267632466"},{"denom":"ASSET17","index":"0.000008700651286884"},{"denom":"ASSET18","index":"0.000003571624768330"},{"denom":"ASSET2","index":"0.000007546215495169"},{"denom":"ASSET3","index":"0.000002090977414753"},{"denom":"ASSET4","index":"0.000020176663420937"},{"denom":"ASSET5","index":"0.000001628342560149"},{"denom":"ASSET6","index":"0.000006572371850885"},{"denom":"ASSET7","index":"0.000010337273058537"},{"denom":"ASSET8","index":"0.000014149515747938"},{"denom":"ASSET9","index":"0.000006000707920121"}],"last_reward_claim_height":"143"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET5","shares":"540534690.604068253671066720","reward_history":[{"denom":"ASSET0","index":"0.000004540879401916"},{"denom":"ASSET1","index":"0.000037109326653163"},{"denom":"ASSET10","index":"0.000032398334841051"},{"denom":"ASSET11","index":"0.000038686678002821"},{"denom":"ASSET12","index":"0.000036882989555273"},{"denom":"ASSET13","index":"0.000012500925415203"},{"denom":"ASSET14","index":"0.000035685105836088"},{"denom":"ASSET15","index":"0.000029057375432061"},{"denom":"ASSET16","index":"0.000016458584215111"},{"denom":"ASSET17","index":"0.000013389816949018"},{"denom":"ASSET18","index":"0.000005541081577771"},{"denom":"ASSET2","index":"0.000011207807033486"},{"denom":"ASSET3","index":"0.000003223044473751"},{"denom":"ASSET4","index":"0.000030436134132870"},{"denom":"ASSET5","index":"0.000002531537550049"},{"denom":"ASSET6","index":"0.000010340264160631"},{"denom":"ASSET7","index":"0.000015969406108044"},{"denom":"ASSET8","index":"0.000023083480922251"},{"denom":"ASSET9","index":"0.000009226972489727"}],"last_reward_claim_height":"185"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET9","shares":"93964945.999999997338143776","reward_history":[],"last_reward_claim_height":"59"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET11","shares":"808955966.554261024266832524","reward_history":[{"denom":"ASSET0","index":"0.000004540879401916"},{"denom":"ASSET1","index":"0.000037109326653163"},{"denom":"ASSET10","index":"0.000032398334841051"},{"denom":"ASSET11","index":"0.000038686678002821"},{"denom":"ASSET12","index":"0.000036882989555273"},{"denom":"ASSET13","index":"0.000012500925415203"},{"denom":"ASSET14","index":"0.000035685105836088"},{"denom":"ASSET15","index":"0.000029057375432061"},{"denom":"ASSET16","index":"0.000016458584215111"},{"denom":"ASSET17","index":"0.000013389816949018"},{"denom":"ASSET18","index":"0.000005541081577771"},{"denom":"ASSET2","index":"0.000011207807033486"},{"denom":"ASSET3","index":"0.000003223044473751"},{"denom":"ASSET4","index":"0.000030436134132870"},{"denom":"ASSET5","index":"0.000002531537550049"},{"denom":"ASSET6","index":"0.000010340264160631"},{"denom":"ASSET7","index":"0.000015969406108044"},{"denom":"ASSET8","index":"0.000023083480922251"},{"denom":"ASSET9","index":"0.000009226972489727"}],"last_reward_claim_height":"198"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET13","shares":"906964155.978704211793510235","reward_history":[{"denom":"ASSET0","index":"0.000002930820438736"},{"denom":"ASSET1","index":"0.000024889799880283"},{"denom":"ASSET10","index":"0.000019988623694797"},{"denom":"ASSET11","index":"0.000024765615752571"},{"denom":"ASSET12","index":"0.000023676022623299"},{"denom":"ASSET13","index":"0.000007783195940338"},{"denom":"ASSET14","index":"0.000022712072914709"},{"denom":"ASSET15","index":"0.000017982209004670"},{"denom":"ASSET16","index":"0.000011033267632466"},{"denom":"ASSET17","index":"0.000008700651286884"},{"denom":"ASSET18","index":"0.000003571624768330"},{"denom":"ASSET2","index":"0.000007546215495169"},{"denom":"ASSET3","index":"0.000002090977414753"},{"denom":"ASSET4","index":"0.000020176663420937"},{"denom":"ASSET5","index":"0.000001628342560149"},{"denom":"ASSET6","index":"0.000006572371850885"},{"denom":"ASSET7","index":"0.000010337273058537"},{"denom":"ASSET8","index":"0.000014149515747938"},{"denom":"ASSET9","index":"0.000006000707920121"}],"last_reward_claim_height":"148"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET16","shares":"81370881.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002930820438736"},{"denom":"ASSET1","index":"0.000024889799880283"},{"denom":"ASSET10","index":"0.000019988623694797"},{"denom":"ASSET11","index":"0.000024765615752571"},{"denom":"ASSET12","index":"0.000023676022623299"},{"denom":"ASSET13","index":"0.000007783195940338"},{"denom":"ASSET14","index":"0.000022712072914709"},{"denom":"ASSET15","index":"0.000017982209004670"},{"denom":"ASSET16","index":"0.000011033267632466"},{"denom":"ASSET17","index":"0.000008700651286884"},{"denom":"ASSET18","index":"0.000003571624768330"},{"denom":"ASSET2","index":"0.000007546215495169"},{"denom":"ASSET3","index":"0.000002090977414753"},{"denom":"ASSET4","index":"0.000020176663420937"},{"denom":"ASSET5","index":"0.000001628342560149"},{"denom":"ASSET6","index":"0.000006572371850885"},{"denom":"ASSET7","index":"0.000010337273058537"},{"denom":"ASSET8","index":"0.000014149515747938"},{"denom":"ASSET9","index":"0.000006000707920121"}],"last_reward_claim_height":"154"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET1","shares":"1137339349.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003344718004914"},{"denom":"ASSET1","index":"0.000028399683918161"},{"denom":"ASSET10","index":"0.000022773943545696"},{"denom":"ASSET11","index":"0.000028249525692452"},{"denom":"ASSET12","index":"0.000026989510465266"},{"denom":"ASSET13","index":"0.000008877216029957"},{"denom":"ASSET14","index":"0.000025911788013611"},{"denom":"ASSET15","index":"0.000020494299775586"},{"denom":"ASSET16","index":"0.000012591463658113"},{"denom":"ASSET17","index":"0.000009918208342143"},{"denom":"ASSET18","index":"0.000004078542450859"},{"denom":"ASSET2","index":"0.000008608606683653"},{"denom":"ASSET3","index":"0.000002386103437058"},{"denom":"ASSET4","index":"0.000023022167148602"},{"denom":"ASSET5","index":"0.000001858883946943"},{"denom":"ASSET6","index":"0.000007501347044310"},{"denom":"ASSET7","index":"0.000011795380538461"},{"denom":"ASSET8","index":"0.000016137954986293"},{"denom":"ASSET9","index":"0.000006845854741756"}],"last_reward_claim_height":"161"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET11","shares":"181401296.499298992511229952","reward_history":[{"denom":"ASSET0","index":"0.000003344718004914"},{"denom":"ASSET1","index":"0.000028399683918161"},{"denom":"ASSET10","index":"0.000022773943545696"},{"denom":"ASSET11","index":"0.000028249525692452"},{"denom":"ASSET12","index":"0.000026989510465266"},{"denom":"ASSET13","index":"0.000008877216029957"},{"denom":"ASSET14","index":"0.000025911788013611"},{"denom":"ASSET15","index":"0.000020494299775586"},{"denom":"ASSET16","index":"0.000012591463658113"},{"denom":"ASSET17","index":"0.000009918208342143"},{"denom":"ASSET18","index":"0.000004078542450859"},{"denom":"ASSET2","index":"0.000008608606683653"},{"denom":"ASSET3","index":"0.000002386103437058"},{"denom":"ASSET4","index":"0.000023022167148602"},{"denom":"ASSET5","index":"0.000001858883946943"},{"denom":"ASSET6","index":"0.000007501347044310"},{"denom":"ASSET7","index":"0.000011795380538461"},{"denom":"ASSET8","index":"0.000016137954986293"},{"denom":"ASSET9","index":"0.000006845854741756"}],"last_reward_claim_height":"134"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET15","shares":"59991.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003344718004914"},{"denom":"ASSET1","index":"0.000028399683918161"},{"denom":"ASSET10","index":"0.000022773943545696"},{"denom":"ASSET11","index":"0.000028249525692452"},{"denom":"ASSET12","index":"0.000026989510465266"},{"denom":"ASSET13","index":"0.000008877216029957"},{"denom":"ASSET14","index":"0.000025911788013611"},{"denom":"ASSET15","index":"0.000020494299775586"},{"denom":"ASSET16","index":"0.000012591463658113"},{"denom":"ASSET17","index":"0.000009918208342143"},{"denom":"ASSET18","index":"0.000004078542450859"},{"denom":"ASSET2","index":"0.000008608606683653"},{"denom":"ASSET3","index":"0.000002386103437058"},{"denom":"ASSET4","index":"0.000023022167148602"},{"denom":"ASSET5","index":"0.000001858883946943"},{"denom":"ASSET6","index":"0.000007501347044310"},{"denom":"ASSET7","index":"0.000011795380538461"},{"denom":"ASSET8","index":"0.000016137954986293"},{"denom":"ASSET9","index":"0.000006845854741756"}],"last_reward_claim_height":"144"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET0","shares":"2410513.317595390819862033","reward_history":[{"denom":"ASSET0","index":"0.000001401914217082"},{"denom":"ASSET1","index":"0.000011691084141249"},{"denom":"ASSET10","index":"0.000008144816837289"},{"denom":"ASSET11","index":"0.000011309282624399"},{"denom":"ASSET12","index":"0.000010184195671197"},{"denom":"ASSET13","index":"0.000003504785542706"},{"denom":"ASSET14","index":"0.000010565150621491"},{"denom":"ASSET15","index":"0.000007553913381055"},{"denom":"ASSET16","index":"0.000005266490546178"},{"denom":"ASSET17","index":"0.000003740131045332"},{"denom":"ASSET18","index":"0.000001781176034264"},{"denom":"ASSET2","index":"0.000003450605283109"},{"denom":"ASSET3","index":"0.000001009107335001"},{"denom":"ASSET4","index":"0.000009501016460336"},{"denom":"ASSET5","index":"0.000000783074064494"},{"denom":"ASSET6","index":"0.000003189016217240"},{"denom":"ASSET7","index":"0.000004883842462771"},{"denom":"ASSET8","index":"0.000006372953035143"},{"denom":"ASSET9","index":"0.000002752187874236"}],"last_reward_claim_height":"73"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET5","shares":"889147369.703887973797544370","reward_history":[{"denom":"ASSET0","index":"0.000003026822568793"},{"denom":"ASSET1","index":"0.000025710421285725"},{"denom":"ASSET10","index":"0.000020652297735472"},{"denom":"ASSET11","index":"0.000025583400849235"},{"denom":"ASSET12","index":"0.000024460820755928"},{"denom":"ASSET13","index":"0.000008041083722059"},{"denom":"ASSET14","index":"0.000023461074878675"},{"denom":"ASSET15","index":"0.000018578170233019"},{"denom":"ASSET16","index":"0.000011396689804799"},{"denom":"ASSET17","index":"0.000008988134494295"},{"denom":"ASSET18","index":"0.000003688816665807"},{"denom":"ASSET2","index":"0.000007796110853756"},{"denom":"ASSET3","index":"0.000002159003644915"},{"denom":"ASSET4","index":"0.000020841789260406"},{"denom":"ASSET5","index":"0.000001683251281734"},{"denom":"ASSET6","index":"0.000006788484398340"},{"denom":"ASSET7","index":"0.000010677121165375"},{"denom":"ASSET8","index":"0.000014616905179383"},{"denom":"ASSET9","index":"0.000006199084273401"}],"last_reward_claim_height":"164"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET13","shares":"659151963.347297888612100075","reward_history":[{"denom":"ASSET0","index":"0.000001454934724421"},{"denom":"ASSET1","index":"0.000012138554241533"},{"denom":"ASSET10","index":"0.000008457231031836"},{"denom":"ASSET11","index":"0.000011742676653726"},{"denom":"ASSET12","index":"0.000010575345305063"},{"denom":"ASSET13","index":"0.000003639028595615"},{"denom":"ASSET14","index":"0.000010969531108307"},{"denom":"ASSET15","index":"0.000007843113235366"},{"denom":"ASSET16","index":"0.000005467847708521"},{"denom":"ASSET17","index":"0.000003882645572727"},{"denom":"ASSET18","index":"0.000001849120527665"},{"denom":"ASSET2","index":"0.000003583199705027"},{"denom":"ASSET3","index":"0.000001047214644670"},{"denom":"ASSET4","index":"0.000009864795788485"},{"denom":"ASSET5","index":"0.000000813748374938"},{"denom":"ASSET6","index":"0.000003310822390339"},{"denom":"ASSET7","index":"0.000005070278336150"},{"denom":"ASSET8","index":"0.000006616569426988"},{"denom":"ASSET9","index":"0.000002857424127380"}],"last_reward_claim_height":"77"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET8","shares":"806751487.576590813474708810","reward_history":[{"denom":"ASSET0","index":"0.000001547699786520"},{"denom":"ASSET1","index":"0.000012908880828127"},{"denom":"ASSET10","index":"0.000008993933542043"},{"denom":"ASSET11","index":"0.000012488059147042"},{"denom":"ASSET12","index":"0.000011245681057538"},{"denom":"ASSET13","index":"0.000003869751640144"},{"denom":"ASSET14","index":"0.000011665498390936"},{"denom":"ASSET15","index":"0.000008340103197445"},{"denom":"ASSET16","index":"0.000005815173110936"},{"denom":"ASSET17","index":"0.000004129877691221"},{"denom":"ASSET18","index":"0.000001966512772230"},{"denom":"ASSET2","index":"0.000003810495126579"},{"denom":"ASSET3","index":"0.000001114825933185"},{"denom":"ASSET4","index":"0.000010490411596498"},{"denom":"ASSET5","index":"0.000000864743358984"},{"denom":"ASSET6","index":"0.000003521242992563"},{"denom":"ASSET7","index":"0.000005392342734476"},{"denom":"ASSET8","index":"0.000007036459899001"},{"denom":"ASSET9","index":"0.000003039156102537"}],"last_reward_claim_height":"108"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET13","shares":"1000094028.229074620000000000","reward_history":[{"denom":"ASSET0","index":"0.000004619384085878"},{"denom":"ASSET1","index":"0.000037832417098439"},{"denom":"ASSET10","index":"0.000032750145056484"},{"denom":"ASSET11","index":"0.000039294730751429"},{"denom":"ASSET12","index":"0.000037416427541567"},{"denom":"ASSET13","index":"0.000012671813979164"},{"denom":"ASSET14","index":"0.000036248560185433"},{"denom":"ASSET15","index":"0.000029396437010656"},{"denom":"ASSET16","index":"0.000016785976843486"},{"denom":"ASSET17","index":"0.000013593650767018"},{"denom":"ASSET18","index":"0.000005642705122830"},{"denom":"ASSET2","index":"0.000011421935308679"},{"denom":"ASSET3","index":"0.000003281292888266"},{"denom":"ASSET4","index":"0.000031006969518146"},{"denom":"ASSET5","index":"0.000002575890941784"},{"denom":"ASSET6","index":"0.000010513605988541"},{"denom":"ASSET7","index":"0.000016244985826285"},{"denom":"ASSET8","index":"0.000023375927636049"},{"denom":"ASSET9","index":"0.000009382767835280"}],"last_reward_claim_height":"191"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET15","shares":"833416069.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003086703561215"},{"denom":"ASSET1","index":"0.000026199550261878"},{"denom":"ASSET10","index":"0.000020936384793003"},{"denom":"ASSET11","index":"0.000026042194398185"},{"denom":"ASSET12","index":"0.000024843424443974"},{"denom":"ASSET13","index":"0.000008180415813801"},{"denom":"ASSET14","index":"0.000023898307142718"},{"denom":"ASSET15","index":"0.000018852934413068"},{"denom":"ASSET16","index":"0.000011621232923996"},{"denom":"ASSET17","index":"0.000009129550402498"},{"denom":"ASSET18","index":"0.000003767892160935"},{"denom":"ASSET2","index":"0.000007936188126371"},{"denom":"ASSET3","index":"0.000002203575710986"},{"denom":"ASSET4","index":"0.000021240180347210"},{"denom":"ASSET5","index":"0.000001716192200569"},{"denom":"ASSET6","index":"0.000006926674957775"},{"denom":"ASSET7","index":"0.000010883333770048"},{"denom":"ASSET8","index":"0.000014871024805414"},{"denom":"ASSET9","index":"0.000006311583255107"}],"last_reward_claim_height":"155"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET0","shares":"995257982.999999993033194119","reward_history":[],"last_reward_claim_height":"59"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET7","shares":"953927626.651520032619939536","reward_history":[{"denom":"ASSET0","index":"0.000001511232509129"},{"denom":"ASSET1","index":"0.000012598757210652"},{"denom":"ASSET10","index":"0.000008777665278232"},{"denom":"ASSET11","index":"0.000012187849575766"},{"denom":"ASSET12","index":"0.000010975073643675"},{"denom":"ASSET13","index":"0.000003776959255615"},{"denom":"ASSET14","index":"0.000011385233267090"},{"denom":"ASSET15","index":"0.000008140359504707"},{"denom":"ASSET16","index":"0.000005675412369706"},{"denom":"ASSET17","index":"0.000004030784481533"},{"denom":"ASSET18","index":"0.000001920145446758"},{"denom":"ASSET2","index":"0.000003719113035170"},{"denom":"ASSET3","index":"0.000001087858016388"},{"denom":"ASSET4","index":"0.000010238531681628"},{"denom":"ASSET5","index":"0.000000844504951067"},{"denom":"ASSET6","index":"0.000003436614036185"},{"denom":"ASSET7","index":"0.000005263507386191"},{"denom":"ASSET8","index":"0.000006867991992072"},{"denom":"ASSET9","index":"0.000002966364157912"}],"last_reward_claim_height":"116"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET0","shares":"814674221.905213524896816305","reward_history":[{"denom":"ASSET0","index":"0.000002944371933765"},{"denom":"ASSET1","index":"0.000024968433937291"},{"denom":"ASSET10","index":"0.000019851368221906"},{"denom":"ASSET11","index":"0.000024791952485266"},{"denom":"ASSET12","index":"0.000023600048189968"},{"denom":"ASSET13","index":"0.000007784111470281"},{"denom":"ASSET14","index":"0.000022766914870589"},{"denom":"ASSET15","index":"0.000017894900322998"},{"denom":"ASSET16","index":"0.000011081662183182"},{"denom":"ASSET17","index":"0.000008672317440622"},{"denom":"ASSET18","index":"0.000003599691097086"},{"denom":"ASSET2","index":"0.000007555380586873"},{"denom":"ASSET3","index":"0.000002101847815188"},{"denom":"ASSET4","index":"0.000020244169178497"},{"denom":"ASSET5","index":"0.000001637098640985"},{"denom":"ASSET6","index":"0.000006609166185649"},{"denom":"ASSET7","index":"0.000010374399402552"},{"denom":"ASSET8","index":"0.000014150620453773"},{"denom":"ASSET9","index":"0.000006009906313007"}],"last_reward_claim_height":"168"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET1","shares":"282732127.000000002544589143","reward_history":[],"last_reward_claim_height":"59"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET7","shares":"365528853.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002938303361264"},{"denom":"ASSET1","index":"0.000024939884544734"},{"denom":"ASSET10","index":"0.000019970621943114"},{"denom":"ASSET11","index":"0.000024800280810198"},{"denom":"ASSET12","index":"0.000023679745396670"},{"denom":"ASSET13","index":"0.000007792253675830"},{"denom":"ASSET14","index":"0.000022752532795075"},{"denom":"ASSET15","index":"0.000017976341528508"},{"denom":"ASSET16","index":"0.000011059313296089"},{"denom":"ASSET17","index":"0.000008702160495382"},{"denom":"ASSET18","index":"0.000003584018468858"},{"denom":"ASSET2","index":"0.000007557839698908"},{"denom":"ASSET3","index":"0.000002096442663552"},{"denom":"ASSET4","index":"0.000020217858094708"},{"denom":"ASSET5","index":"0.000001633684136995"},{"denom":"ASSET6","index":"0.000006589976909255"},{"denom":"ASSET7","index":"0.000010359339015905"},{"denom":"ASSET8","index":"0.000014165755580726"},{"denom":"ASSET9","index":"0.000006010291774725"}],"last_reward_claim_height":"130"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET10","shares":"119250246.000000000000000000","reward_history":[],"last_reward_claim_height":"18"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET9","shares":"302060526.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004895773732889"},{"denom":"ASSET1","index":"0.000040125045885881"},{"denom":"ASSET10","index":"0.000034530347890850"},{"denom":"ASSET11","index":"0.000041582468230322"},{"denom":"ASSET12","index":"0.000039543482481393"},{"denom":"ASSET13","index":"0.000013393572744357"},{"denom":"ASSET14","index":"0.000038368912078780"},{"denom":"ASSET15","index":"0.000031017071231408"},{"denom":"ASSET16","index":"0.000017810358083148"},{"denom":"ASSET17","index":"0.000014371406014683"},{"denom":"ASSET18","index":"0.000005986976049338"},{"denom":"ASSET2","index":"0.000012106973634558"},{"denom":"ASSET3","index":"0.000003478447053581"},{"denom":"ASSET4","index":"0.000032874817927521"},{"denom":"ASSET5","index":"0.000002729651069839"},{"denom":"ASSET6","index":"0.000011139377325220"},{"denom":"ASSET7","index":"0.000017211836402270"},{"denom":"ASSET8","index":"0.000024696325414819"},{"denom":"ASSET9","index":"0.000009935598296499"}],"last_reward_claim_height":"200"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET15","shares":"428100838.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001731982701050"},{"denom":"ASSET1","index":"0.000014440617081118"},{"denom":"ASSET10","index":"0.000010060714066040"},{"denom":"ASSET11","index":"0.000013969585405988"},{"denom":"ASSET12","index":"0.000012579542501729"},{"denom":"ASSET13","index":"0.000004329188348588"},{"denom":"ASSET14","index":"0.000013049805772821"},{"denom":"ASSET15","index":"0.000009329961826155"},{"denom":"ASSET16","index":"0.000006505308583448"},{"denom":"ASSET17","index":"0.000004619645074851"},{"denom":"ASSET18","index":"0.000002200709164068"},{"denom":"ASSET2","index":"0.000004262337197306"},{"denom":"ASSET3","index":"0.000001247119753241"},{"denom":"ASSET4","index":"0.000011735066464260"},{"denom":"ASSET5","index":"0.000000967420683506"},{"denom":"ASSET6","index":"0.000003938839097420"},{"denom":"ASSET7","index":"0.000006032740100243"},{"denom":"ASSET8","index":"0.000007872299366576"},{"denom":"ASSET9","index":"0.000003400187866969"}],"last_reward_claim_height":"113"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET14","shares":"975310655.000000001950621310","reward_history":[],"last_reward_claim_height":"31"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET15","shares":"321200352.999999999321200353","reward_history":[],"last_reward_claim_height":"35"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET7","shares":"304031449.557693816154898355","reward_history":[{"denom":"ASSET0","index":"0.000005166723047275"},{"denom":"ASSET1","index":"0.000042322847048766"},{"denom":"ASSET10","index":"0.000036533262543159"},{"denom":"ASSET11","index":"0.000043914144587354"},{"denom":"ASSET12","index":"0.000041785782999849"},{"denom":"ASSET13","index":"0.000014153266257788"},{"denom":"ASSET14","index":"0.000040516003905052"},{"denom":"ASSET15","index":"0.000032804900644736"},{"denom":"ASSET16","index":"0.000018781400926959"},{"denom":"ASSET17","index":"0.000015182438814265"},{"denom":"ASSET18","index":"0.000006314804040122"},{"denom":"ASSET2","index":"0.000012772828382927"},{"denom":"ASSET3","index":"0.000003669982792512"},{"denom":"ASSET4","index":"0.000034682890695078"},{"denom":"ASSET5","index":"0.000002880570137079"},{"denom":"ASSET6","index":"0.000011757393373176"},{"denom":"ASSET7","index":"0.000018165388254823"},{"denom":"ASSET8","index":"0.000026105026563655"},{"denom":"ASSET9","index":"0.000010488779573430"}],"last_reward_claim_height":"191"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET16","shares":"70461807.000000000000000000","reward_history":[],"last_reward_claim_height":"36"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET16","shares":"1116586532.606865663540424324","reward_history":[{"denom":"ASSET0","index":"0.000003327512121722"},{"denom":"ASSET1","index":"0.000028211822531533"},{"denom":"ASSET10","index":"0.000022399629444355"},{"denom":"ASSET11","index":"0.000028004032167971"},{"denom":"ASSET12","index":"0.000026643127370344"},{"denom":"ASSET13","index":"0.000008791339050068"},{"denom":"ASSET14","index":"0.000025722152469956"},{"denom":"ASSET15","index":"0.000020197596080044"},{"denom":"ASSET16","index":"0.000012523737733641"},{"denom":"ASSET17","index":"0.000009790102863953"},{"denom":"ASSET18","index":"0.000004069245825383"},{"denom":"ASSET2","index":"0.000008534453115749"},{"denom":"ASSET3","index":"0.000002375171252372"},{"denom":"ASSET4","index":"0.000022873545881432"},{"denom":"ASSET5","index":"0.000001850500835715"},{"denom":"ASSET6","index":"0.000007470212303630"},{"denom":"ASSET7","index":"0.000011723166108277"},{"denom":"ASSET8","index":"0.000015981595788329"},{"denom":"ASSET9","index":"0.000006788341225254"}],"last_reward_claim_height":"161"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET13","shares":"14629865.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001434713876400"},{"denom":"ASSET1","index":"0.000011974044460331"},{"denom":"ASSET10","index":"0.000008340728508476"},{"denom":"ASSET11","index":"0.000011582406348125"},{"denom":"ASSET12","index":"0.000010430757641934"},{"denom":"ASSET13","index":"0.000003588723493535"},{"denom":"ASSET14","index":"0.000010820456951604"},{"denom":"ASSET15","index":"0.000007735822117345"},{"denom":"ASSET16","index":"0.000005393748654249"},{"denom":"ASSET17","index":"0.000003829135007959"},{"denom":"ASSET18","index":"0.000001824413186071"},{"denom":"ASSET2","index":"0.000003534437022536"},{"denom":"ASSET3","index":"0.000001033381751515"},{"denom":"ASSET4","index":"0.000009730849926555"},{"denom":"ASSET5","index":"0.000000802664249770"},{"denom":"ASSET6","index":"0.000003264943470077"},{"denom":"ASSET7","index":"0.000005002110542043"},{"denom":"ASSET8","index":"0.000006526009335083"},{"denom":"ASSET9","index":"0.000002819018886872"}],"last_reward_claim_height":"105"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET17","shares":"740004453.634219902775772681","reward_history":[{"denom":"ASSET0","index":"0.000004589138107131"},{"denom":"ASSET1","index":"0.000037446098475403"},{"denom":"ASSET10","index":"0.000032732808056967"},{"denom":"ASSET11","index":"0.000039094478322284"},{"denom":"ASSET12","index":"0.000037233161430730"},{"denom":"ASSET13","index":"0.000012643946661020"},{"denom":"ASSET14","index":"0.000036080970262311"},{"denom":"ASSET15","index":"0.000029367139968273"},{"denom":"ASSET16","index":"0.000016612678055137"},{"denom":"ASSET17","index":"0.000013507979841133"},{"denom":"ASSET18","index":"0.000005606465800233"},{"denom":"ASSET2","index":"0.000011302755940208"},{"denom":"ASSET3","index":"0.000003257528612514"},{"denom":"ASSET4","index":"0.000030728704055425"},{"denom":"ASSET5","index":"0.000002561029239288"},{"denom":"ASSET6","index":"0.000010461272108585"},{"denom":"ASSET7","index":"0.000016139641498045"},{"denom":"ASSET8","index":"0.000023361940912705"},{"denom":"ASSET9","index":"0.000009319386307275"}],"last_reward_claim_height":"196"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET2","shares":"139466067.185365190122468000","reward_history":[{"denom":"ASSET0","index":"0.000003071913026336"},{"denom":"ASSET1","index":"0.000026115211920195"},{"denom":"ASSET10","index":"0.000021104918039272"},{"denom":"ASSET11","index":"0.000026018207650283"},{"denom":"ASSET12","index":"0.000024942011742431"},{"denom":"ASSET13","index":"0.000008182453133262"},{"denom":"ASSET14","index":"0.000023839798810024"},{"denom":"ASSET15","index":"0.000018963275072170"},{"denom":"ASSET16","index":"0.000011567273660047"},{"denom":"ASSET17","index":"0.000009164652819502"},{"denom":"ASSET18","index":"0.000003735860972186"},{"denom":"ASSET2","index":"0.000007925194415041"},{"denom":"ASSET3","index":"0.000002190810612048"},{"denom":"ASSET4","index":"0.000021165118890878"},{"denom":"ASSET5","index":"0.000001704606606646"},{"denom":"ASSET6","index":"0.000006884812645629"},{"denom":"ASSET7","index":"0.000010842612570084"},{"denom":"ASSET8","index":"0.000014874699612932"},{"denom":"ASSET9","index":"0.000006301602876980"}],"last_reward_claim_height":"135"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET0","shares":"167237597.000000000000000000","reward_history":[],"last_reward_claim_height":"47"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET10","shares":"21258419.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001658482037183"},{"denom":"ASSET1","index":"0.000013862588923046"},{"denom":"ASSET10","index":"0.000009655943522610"},{"denom":"ASSET11","index":"0.000013408077810815"},{"denom":"ASSET12","index":"0.000012073555821711"},{"denom":"ASSET13","index":"0.000004153457929856"},{"denom":"ASSET14","index":"0.000012528066933942"},{"denom":"ASSET15","index":"0.000008954835955871"},{"denom":"ASSET16","index":"0.000006242274956279"},{"denom":"ASSET17","index":"0.000004433900956551"},{"denom":"ASSET18","index":"0.000002112993149414"},{"denom":"ASSET2","index":"0.000004090600010079"},{"denom":"ASSET3","index":"0.000001194300475756"},{"denom":"ASSET4","index":"0.000011266073313811"},{"denom":"ASSET5","index":"0.000000928363122855"},{"denom":"ASSET6","index":"0.000003781145635794"},{"denom":"ASSET7","index":"0.000005787763844048"},{"denom":"ASSET8","index":"0.000007557456046990"},{"denom":"ASSET9","index":"0.000003263776603787"}],"last_reward_claim_height":"118"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET14","shares":"650336821.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003188277912377"},{"denom":"ASSET1","index":"0.000027072180177666"},{"denom":"ASSET10","index":"0.000021525590492702"},{"denom":"ASSET11","index":"0.000026879695640981"},{"denom":"ASSET12","index":"0.000025588321740665"},{"denom":"ASSET13","index":"0.000008437670891103"},{"denom":"ASSET14","index":"0.000024686413843557"},{"denom":"ASSET15","index":"0.000019403734038796"},{"denom":"ASSET16","index":"0.000012012351193227"},{"denom":"ASSET17","index":"0.000009402991763462"},{"denom":"ASSET18","index":"0.000003903246578743"},{"denom":"ASSET2","index":"0.000008191237466303"},{"denom":"ASSET3","index":"0.000002276140738265"},{"denom":"ASSET4","index":"0.000021950324608304"},{"denom":"ASSET5","index":"0.000001774065663090"},{"denom":"ASSET6","index":"0.000007165524818145"},{"denom":"ASSET7","index":"0.000011244820309610"},{"denom":"ASSET8","index":"0.000015343724796373"},{"denom":"ASSET9","index":"0.000006516357987660"}],"last_reward_claim_height":"126"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET18","shares":"585694451.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003188277912377"},{"denom":"ASSET1","index":"0.000027072180177666"},{"denom":"ASSET10","index":"0.000021525590492702"},{"denom":"ASSET11","index":"0.000026879695640981"},{"denom":"ASSET12","index":"0.000025588321740665"},{"denom":"ASSET13","index":"0.000008437670891103"},{"denom":"ASSET14","index":"0.000024686413843557"},{"denom":"ASSET15","index":"0.000019403734038796"},{"denom":"ASSET16","index":"0.000012012351193227"},{"denom":"ASSET17","index":"0.000009402991763462"},{"denom":"ASSET18","index":"0.000003903246578743"},{"denom":"ASSET2","index":"0.000008191237466303"},{"denom":"ASSET3","index":"0.000002276140738265"},{"denom":"ASSET4","index":"0.000021950324608304"},{"denom":"ASSET5","index":"0.000001774065663090"},{"denom":"ASSET6","index":"0.000007165524818145"},{"denom":"ASSET7","index":"0.000011244820309610"},{"denom":"ASSET8","index":"0.000015343724796373"},{"denom":"ASSET9","index":"0.000006516357987660"}],"last_reward_claim_height":"131"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET3","shares":"766095172.855790986471388992","reward_history":[{"denom":"ASSET0","index":"0.000002979919393708"},{"denom":"ASSET1","index":"0.000025298333716476"},{"denom":"ASSET10","index":"0.000020286143685892"},{"denom":"ASSET11","index":"0.000025164674259360"},{"denom":"ASSET12","index":"0.000024041723171534"},{"denom":"ASSET13","index":"0.000007907785176595"},{"denom":"ASSET14","index":"0.000023082402053339"},{"denom":"ASSET15","index":"0.000018255332392862"},{"denom":"ASSET16","index":"0.000011216675450010"},{"denom":"ASSET17","index":"0.000008835128154455"},{"denom":"ASSET18","index":"0.000003633337151635"},{"denom":"ASSET2","index":"0.000007668586747858"},{"denom":"ASSET3","index":"0.000002126085354033"},{"denom":"ASSET4","index":"0.000020508686269066"},{"denom":"ASSET5","index":"0.000001656307666438"},{"denom":"ASSET6","index":"0.000006683025235204"},{"denom":"ASSET7","index":"0.000010507859389263"},{"denom":"ASSET8","index":"0.000014375637436113"},{"denom":"ASSET9","index":"0.000006098257618497"}],"last_reward_claim_height":"131"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET6","shares":"78135117.000000000000000000","reward_history":[],"last_reward_claim_height":"53"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET12","shares":"1498879434.607751475261477524","reward_history":[{"denom":"ASSET0","index":"0.000002979919393708"},{"denom":"ASSET1","index":"0.000025298333716476"},{"denom":"ASSET10","index":"0.000020286143685892"},{"denom":"ASSET11","index":"0.000025164674259360"},{"denom":"ASSET12","index":"0.000024041723171534"},{"denom":"ASSET13","index":"0.000007907785176595"},{"denom":"ASSET14","index":"0.000023082402053339"},{"denom":"ASSET15","index":"0.000018255332392862"},{"denom":"ASSET16","index":"0.000011216675450010"},{"denom":"ASSET17","index":"0.000008835128154455"},{"denom":"ASSET18","index":"0.000003633337151635"},{"denom":"ASSET2","index":"0.000007668586747858"},{"denom":"ASSET3","index":"0.000002126085354033"},{"denom":"ASSET4","index":"0.000020508686269066"},{"denom":"ASSET5","index":"0.000001656307666438"},{"denom":"ASSET6","index":"0.000006683025235204"},{"denom":"ASSET7","index":"0.000010507859389263"},{"denom":"ASSET8","index":"0.000014375637436113"},{"denom":"ASSET9","index":"0.000006098257618497"}],"last_reward_claim_height":"164"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET13","shares":"896043780.725449738572973874","reward_history":[{"denom":"ASSET0","index":"0.000001453411320498"},{"denom":"ASSET1","index":"0.000012118137400313"},{"denom":"ASSET10","index":"0.000008442891188019"},{"denom":"ASSET11","index":"0.000011723343510399"},{"denom":"ASSET12","index":"0.000010556870017106"},{"denom":"ASSET13","index":"0.000003632917795231"},{"denom":"ASSET14","index":"0.000010951256903010"},{"denom":"ASSET15","index":"0.000007829943148627"},{"denom":"ASSET16","index":"0.000005459144789091"},{"denom":"ASSET17","index":"0.000003877120201363"},{"denom":"ASSET18","index":"0.000001846984198382"},{"denom":"ASSET2","index":"0.000003577158245830"},{"denom":"ASSET3","index":"0.000001046407310278"},{"denom":"ASSET4","index":"0.000009848276035312"},{"denom":"ASSET5","index":"0.000000811973000390"},{"denom":"ASSET6","index":"0.000003305686571013"},{"denom":"ASSET7","index":"0.000005062722883136"},{"denom":"ASSET8","index":"0.000006606082089893"},{"denom":"ASSET9","index":"0.000002853098111648"}],"last_reward_claim_height":"94"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET18","shares":"1524361337.365447091549636858","reward_history":[{"denom":"ASSET0","index":"0.000002979919393708"},{"denom":"ASSET1","index":"0.000025298333716476"},{"denom":"ASSET10","index":"0.000020286143685892"},{"denom":"ASSET11","index":"0.000025164674259360"},{"denom":"ASSET12","index":"0.000024041723171534"},{"denom":"ASSET13","index":"0.000007907785176595"},{"denom":"ASSET14","index":"0.000023082402053339"},{"denom":"ASSET15","index":"0.000018255332392862"},{"denom":"ASSET16","index":"0.000011216675450010"},{"denom":"ASSET17","index":"0.000008835128154455"},{"denom":"ASSET18","index":"0.000003633337151635"},{"denom":"ASSET2","index":"0.000007668586747858"},{"denom":"ASSET3","index":"0.000002126085354033"},{"denom":"ASSET4","index":"0.000020508686269066"},{"denom":"ASSET5","index":"0.000001656307666438"},{"denom":"ASSET6","index":"0.000006683025235204"},{"denom":"ASSET7","index":"0.000010507859389263"},{"denom":"ASSET8","index":"0.000014375637436113"},{"denom":"ASSET9","index":"0.000006098257618497"}],"last_reward_claim_height":"177"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET5","shares":"788703098.000000000000000000","reward_history":[],"last_reward_claim_height":"33"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET17","shares":"360074422.113646016588798366","reward_history":[{"denom":"ASSET0","index":"0.000005110258502433"},{"denom":"ASSET1","index":"0.000041848139529843"},{"denom":"ASSET10","index":"0.000036095442313773"},{"denom":"ASSET11","index":"0.000043419926176109"},{"denom":"ASSET12","index":"0.000041293844776763"},{"denom":"ASSET13","index":"0.000013994054097310"},{"denom":"ASSET14","index":"0.000040066625857946"},{"denom":"ASSET15","index":"0.000032419831695563"},{"denom":"ASSET16","index":"0.000018571815188636"},{"denom":"ASSET17","index":"0.000015000716043498"},{"denom":"ASSET18","index":"0.000006247416520609"},{"denom":"ASSET2","index":"0.000012623910696266"},{"denom":"ASSET3","index":"0.000003630542968489"},{"denom":"ASSET4","index":"0.000034294837675452"},{"denom":"ASSET5","index":"0.000002848875945133"},{"denom":"ASSET6","index":"0.000011630847535820"},{"denom":"ASSET7","index":"0.000017964747196149"},{"denom":"ASSET8","index":"0.000025811711320315"},{"denom":"ASSET9","index":"0.000010370289784603"}],"last_reward_claim_height":"185"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET0","shares":"41622574.709647027773530624","reward_history":[{"denom":"ASSET0","index":"0.000001595670533734"},{"denom":"ASSET1","index":"0.000013304245337308"},{"denom":"ASSET10","index":"0.000009268754359880"},{"denom":"ASSET11","index":"0.000012870227612725"},{"denom":"ASSET12","index":"0.000011589729681675"},{"denom":"ASSET13","index":"0.000003988302473145"},{"denom":"ASSET14","index":"0.000012022582258004"},{"denom":"ASSET15","index":"0.000008595881243245"},{"denom":"ASSET16","index":"0.000005992940044003"},{"denom":"ASSET17","index":"0.000004256286571545"},{"denom":"ASSET18","index":"0.000002027357961809"},{"denom":"ASSET2","index":"0.000003927132189815"},{"denom":"ASSET3","index":"0.000001148836178358"},{"denom":"ASSET4","index":"0.000010811993222188"},{"denom":"ASSET5","index":"0.000000891338414244"},{"denom":"ASSET6","index":"0.000003628854236813"},{"denom":"ASSET7","index":"0.000005557757171166"},{"denom":"ASSET8","index":"0.000007252465306483"},{"denom":"ASSET9","index":"0.000003132501080646"}],"last_reward_claim_height":"107"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET1","shares":"171722104.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003118409098775"},{"denom":"ASSET1","index":"0.000026454243753489"},{"denom":"ASSET10","index":"0.000021084585905412"},{"denom":"ASSET11","index":"0.000026280950742513"},{"denom":"ASSET12","index":"0.000025043390497745"},{"denom":"ASSET13","index":"0.000008253298424938"},{"denom":"ASSET14","index":"0.000024125697910719"},{"denom":"ASSET15","index":"0.000018997425080839"},{"denom":"ASSET16","index":"0.000011737294217995"},{"denom":"ASSET17","index":"0.000009202973625129"},{"denom":"ASSET18","index":"0.000003809493270778"},{"denom":"ASSET2","index":"0.000008008868325931"},{"denom":"ASSET3","index":"0.000002225819587877"},{"denom":"ASSET4","index":"0.000021447702379813"},{"denom":"ASSET5","index":"0.000001733713847172"},{"denom":"ASSET6","index":"0.000006998355968525"},{"denom":"ASSET7","index":"0.000010990481127196"},{"denom":"ASSET8","index":"0.000015003824321723"},{"denom":"ASSET9","index":"0.000006370091157596"}],"last_reward_claim_height":"154"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET11","shares":"241620366.643976096502652225","reward_history":[{"denom":"ASSET0","index":"0.000003118409098775"},{"denom":"ASSET1","index":"0.000026454243753489"},{"denom":"ASSET10","index":"0.000021084585905412"},{"denom":"ASSET11","index":"0.000026280950742513"},{"denom":"ASSET12","index":"0.000025043390497745"},{"denom":"ASSET13","index":"0.000008253298424938"},{"denom":"ASSET14","index":"0.000024125697910719"},{"denom":"ASSET15","index":"0.000018997425080839"},{"denom":"ASSET16","index":"0.000011737294217995"},{"denom":"ASSET17","index":"0.000009202973625129"},{"denom":"ASSET18","index":"0.000003809493270778"},{"denom":"ASSET2","index":"0.000008008868325931"},{"denom":"ASSET3","index":"0.000002225819587877"},{"denom":"ASSET4","index":"0.000021447702379813"},{"denom":"ASSET5","index":"0.000001733713847172"},{"denom":"ASSET6","index":"0.000006998355968525"},{"denom":"ASSET7","index":"0.000010990481127196"},{"denom":"ASSET8","index":"0.000015003824321723"},{"denom":"ASSET9","index":"0.000006370091157596"}],"last_reward_claim_height":"176"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET6","shares":"736402954.296208306839827180","reward_history":[{"denom":"ASSET0","index":"0.000004714671796454"},{"denom":"ASSET1","index":"0.000038568145744730"},{"denom":"ASSET10","index":"0.000033500773571076"},{"denom":"ASSET11","index":"0.000040121424280653"},{"denom":"ASSET12","index":"0.000038218267623062"},{"denom":"ASSET13","index":"0.000012949849225638"},{"denom":"ASSET14","index":"0.000037011089008137"},{"denom":"ASSET15","index":"0.000030061724223790"},{"denom":"ASSET16","index":"0.000017110510604031"},{"denom":"ASSET17","index":"0.000013880569662043"},{"denom":"ASSET18","index":"0.000005756826392189"},{"denom":"ASSET2","index":"0.000011645339118027"},{"denom":"ASSET3","index":"0.000003347417714105"},{"denom":"ASSET4","index":"0.000031620361618036"},{"denom":"ASSET5","index":"0.000002628856606191"},{"denom":"ASSET6","index":"0.000010731547733214"},{"denom":"ASSET7","index":"0.000016577030461508"},{"denom":"ASSET8","index":"0.000023899020763797"},{"denom":"ASSET9","index":"0.000009576047863311"}],"last_reward_claim_height":"196"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET13","shares":"109885156.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004194934031479"},{"denom":"ASSET1","index":"0.000034265361391889"},{"denom":"ASSET10","index":"0.000030216676473654"},{"denom":"ASSET11","index":"0.000035840546628375"},{"denom":"ASSET12","index":"0.000034269107900306"},{"denom":"ASSET13","index":"0.000011601652868627"},{"denom":"ASSET14","index":"0.000033034765140163"},{"denom":"ASSET15","index":"0.000027060778820269"},{"denom":"ASSET16","index":"0.000015183830684126"},{"denom":"ASSET17","index":"0.000012436629946888"},{"denom":"ASSET18","index":"0.000005107818069777"},{"denom":"ASSET2","index":"0.000010363122476632"},{"denom":"ASSET3","index":"0.000002975623043707"},{"denom":"ASSET4","index":"0.000028112498760672"},{"denom":"ASSET5","index":"0.000002338800128637"},{"denom":"ASSET6","index":"0.000009551170601572"},{"denom":"ASSET7","index":"0.000014761519782911"},{"denom":"ASSET8","index":"0.000021433874921429"},{"denom":"ASSET9","index":"0.000008541556868860"}],"last_reward_claim_height":"198"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET15","shares":"617127705.000000000000000000","reward_history":[],"last_reward_claim_height":"57"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET1","shares":"315900477.313172601997570864","reward_history":[{"denom":"ASSET0","index":"0.000004684522326330"},{"denom":"ASSET1","index":"0.000038343592790786"},{"denom":"ASSET10","index":"0.000033073465123627"},{"denom":"ASSET11","index":"0.000039792938806307"},{"denom":"ASSET12","index":"0.000037831993151719"},{"denom":"ASSET13","index":"0.000012827422858554"},{"denom":"ASSET14","index":"0.000036725774896582"},{"denom":"ASSET15","index":"0.000029707175527113"},{"denom":"ASSET16","index":"0.000017020370407689"},{"denom":"ASSET17","index":"0.000013744455687075"},{"denom":"ASSET18","index":"0.000005729220057041"},{"denom":"ASSET2","index":"0.000011567669506012"},{"denom":"ASSET3","index":"0.000003327180281983"},{"denom":"ASSET4","index":"0.000031427847982959"},{"denom":"ASSET5","index":"0.000002612385721179"},{"denom":"ASSET6","index":"0.000010663850280154"},{"denom":"ASSET7","index":"0.000016466138905281"},{"denom":"ASSET8","index":"0.000023663630054111"},{"denom":"ASSET9","index":"0.000009503718423149"}],"last_reward_claim_height":"195"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET10","shares":"287945694.548254445492889459","reward_history":[{"denom":"ASSET0","index":"0.000003133427860009"},{"denom":"ASSET1","index":"0.000026571363581284"},{"denom":"ASSET10","index":"0.000021118003104150"},{"denom":"ASSET11","index":"0.000026381510155653"},{"denom":"ASSET12","index":"0.000025108485590780"},{"denom":"ASSET13","index":"0.000008282355352591"},{"denom":"ASSET14","index":"0.000024227637307493"},{"denom":"ASSET15","index":"0.000019037535386694"},{"denom":"ASSET16","index":"0.000011793447009555"},{"denom":"ASSET17","index":"0.000009226841180516"},{"denom":"ASSET18","index":"0.000003831770888939"},{"denom":"ASSET2","index":"0.000008040278303534"},{"denom":"ASSET3","index":"0.000002236402387063"},{"denom":"ASSET4","index":"0.000021543810534784"},{"denom":"ASSET5","index":"0.000001742508705183"},{"denom":"ASSET6","index":"0.000007033989161296"},{"denom":"ASSET7","index":"0.000011040340871930"},{"denom":"ASSET8","index":"0.000015056795520064"},{"denom":"ASSET9","index":"0.000006395464292965"}],"last_reward_claim_height":"138"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET0","shares":"527977805.455683198802029780","reward_history":[{"denom":"ASSET0","index":"0.000003102345998156"},{"denom":"ASSET1","index":"0.000026324295521459"},{"denom":"ASSET10","index":"0.000021034709957123"},{"denom":"ASSET11","index":"0.000026165624152899"},{"denom":"ASSET12","index":"0.000024960753498443"},{"denom":"ASSET13","index":"0.000008219480216908"},{"denom":"ASSET14","index":"0.000024012126304297"},{"denom":"ASSET15","index":"0.000018942125813395"},{"denom":"ASSET16","index":"0.000011676379885795"},{"denom":"ASSET17","index":"0.000009172744202097"},{"denom":"ASSET18","index":"0.000003786686743681"},{"denom":"ASSET2","index":"0.000007973892542195"},{"denom":"ASSET3","index":"0.000002213622154517"},{"denom":"ASSET4","index":"0.000021341514997764"},{"denom":"ASSET5","index":"0.000001724677267981"},{"denom":"ASSET6","index":"0.000006959760131783"},{"denom":"ASSET7","index":"0.000010935767858794"},{"denom":"ASSET8","index":"0.000014942141973689"},{"denom":"ASSET9","index":"0.000006341977499472"}],"last_reward_claim_height":"149"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET9","shares":"447381987.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001556422065682"},{"denom":"ASSET1","index":"0.000012975233747354"},{"denom":"ASSET10","index":"0.000009039925804131"},{"denom":"ASSET11","index":"0.000012551842294036"},{"denom":"ASSET12","index":"0.000011303196313064"},{"denom":"ASSET13","index":"0.000003889859143149"},{"denom":"ASSET14","index":"0.000011725391745328"},{"denom":"ASSET15","index":"0.000008383310245172"},{"denom":"ASSET16","index":"0.000005844954893688"},{"denom":"ASSET17","index":"0.000004150990406731"},{"denom":"ASSET18","index":"0.000001977421476890"},{"denom":"ASSET2","index":"0.000003830058090421"},{"denom":"ASSET3","index":"0.000001120273054448"},{"denom":"ASSET4","index":"0.000010544520290781"},{"denom":"ASSET5","index":"0.000000869507306673"},{"denom":"ASSET6","index":"0.000003539424974160"},{"denom":"ASSET7","index":"0.000005420766093000"},{"denom":"ASSET8","index":"0.000007073268516732"},{"denom":"ASSET9","index":"0.000003055036447059"}],"last_reward_claim_height":"77"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET18","shares":"658110661.000000000000000000","reward_history":[],"last_reward_claim_height":"60"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET7","shares":"1485733650.263501578114192308","reward_history":[{"denom":"ASSET0","index":"0.000004740403563813"},{"denom":"ASSET1","index":"0.000038787543075749"},{"denom":"ASSET10","index":"0.000033573140721733"},{"denom":"ASSET11","index":"0.000040302495274603"},{"denom":"ASSET12","index":"0.000038352330073381"},{"denom":"ASSET13","index":"0.000013000611245324"},{"denom":"ASSET14","index":"0.000037188066303586"},{"denom":"ASSET15","index":"0.000030142616165685"},{"denom":"ASSET16","index":"0.000017212937490843"},{"denom":"ASSET17","index":"0.000013931077457526"},{"denom":"ASSET18","index":"0.000005793021452149"},{"denom":"ASSET2","index":"0.000011706190679885"},{"denom":"ASSET3","index":"0.000003366692331764"},{"denom":"ASSET4","index":"0.000031796327407459"},{"denom":"ASSET5","index":"0.000002643541838962"},{"denom":"ASSET6","index":"0.000010790963815934"},{"denom":"ASSET7","index":"0.000016665147437831"},{"denom":"ASSET8","index":"0.000023987873929249"},{"denom":"ASSET9","index":"0.000009622228618809"}],"last_reward_claim_height":"191"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET14","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"27"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET16","shares":"359035400.289886026800648075","reward_history":[{"denom":"ASSET0","index":"0.000001602535700795"},{"denom":"ASSET1","index":"0.000013360208994045"},{"denom":"ASSET10","index":"0.000009307956057468"},{"denom":"ASSET11","index":"0.000012924500245282"},{"denom":"ASSET12","index":"0.000011638378499862"},{"denom":"ASSET13","index":"0.000004005127453862"},{"denom":"ASSET14","index":"0.000012073279383206"},{"denom":"ASSET15","index":"0.000008632311279566"},{"denom":"ASSET16","index":"0.000006018597363935"},{"denom":"ASSET17","index":"0.000004274146638048"},{"denom":"ASSET18","index":"0.000002036090141777"},{"denom":"ASSET2","index":"0.000003943729682095"},{"denom":"ASSET3","index":"0.000001153631816872"},{"denom":"ASSET4","index":"0.000010857441929150"},{"denom":"ASSET5","index":"0.000000895384171592"},{"denom":"ASSET6","index":"0.000003644280900498"},{"denom":"ASSET7","index":"0.000005581542172809"},{"denom":"ASSET8","index":"0.000007283176031543"},{"denom":"ASSET9","index":"0.000003145827937606"}],"last_reward_claim_height":"107"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET17","shares":"4668437.000000000000000000","reward_history":[],"last_reward_claim_height":"49"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET8","shares":"668169957.000003054204873447","reward_history":[],"last_reward_claim_height":"36"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET11","shares":"7283274.000000018531532652","reward_history":[{"denom":"ASSET0","index":"0.000001633811359009"},{"denom":"ASSET1","index":"0.000013620164108551"},{"denom":"ASSET10","index":"0.000009487838038290"},{"denom":"ASSET11","index":"0.000013174776703502"},{"denom":"ASSET12","index":"0.000011864685946211"},{"denom":"ASSET13","index":"0.000004082355776036"},{"denom":"ASSET14","index":"0.000012307900729772"},{"denom":"ASSET15","index":"0.000008799117026580"},{"denom":"ASSET16","index":"0.000006135483082238"},{"denom":"ASSET17","index":"0.000004356106083529"},{"denom":"ASSET18","index":"0.000002074853521082"},{"denom":"ASSET2","index":"0.000004019349752882"},{"denom":"ASSET3","index":"0.000001175388225032"},{"denom":"ASSET4","index":"0.000011067333860098"},{"denom":"ASSET5","index":"0.000000912501024979"},{"denom":"ASSET6","index":"0.000003715182744556"},{"denom":"ASSET7","index":"0.000005690095677188"},{"denom":"ASSET8","index":"0.000007423847624648"},{"denom":"ASSET9","index":"0.000003206789316354"}],"last_reward_claim_height":"102"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET7","shares":"736174563.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004565111961250"},{"denom":"ASSET1","index":"0.000037295669635619"},{"denom":"ASSET10","index":"0.000032690518840863"},{"denom":"ASSET11","index":"0.000038932997595939"},{"denom":"ASSET12","index":"0.000037159410541605"},{"denom":"ASSET13","index":"0.000012589920858900"},{"denom":"ASSET14","index":"0.000035901713477675"},{"denom":"ASSET15","index":"0.000029302331825558"},{"denom":"ASSET16","index":"0.000016536068871761"},{"denom":"ASSET17","index":"0.000013488122629744"},{"denom":"ASSET18","index":"0.000005565746532740"},{"denom":"ASSET2","index":"0.000011270479703615"},{"denom":"ASSET3","index":"0.000003239462728319"},{"denom":"ASSET4","index":"0.000030593146169983"},{"denom":"ASSET5","index":"0.000002545828835201"},{"denom":"ASSET6","index":"0.000010394121101812"},{"denom":"ASSET7","index":"0.000016057027670772"},{"denom":"ASSET8","index":"0.000023252230779774"},{"denom":"ASSET9","index":"0.000009283591156065"}],"last_reward_claim_height":"199"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET11","shares":"85671799.455056589256128644","reward_history":[{"denom":"ASSET0","index":"0.000002920257070141"},{"denom":"ASSET1","index":"0.000024811653868653"},{"denom":"ASSET10","index":"0.000020012294768332"},{"denom":"ASSET11","index":"0.000024710629923001"},{"denom":"ASSET12","index":"0.000023666550441425"},{"denom":"ASSET13","index":"0.000007769918885884"},{"denom":"ASSET14","index":"0.000022647790193256"},{"denom":"ASSET15","index":"0.000017987461600930"},{"denom":"ASSET16","index":"0.000010993196459757"},{"denom":"ASSET17","index":"0.000008697266331114"},{"denom":"ASSET18","index":"0.000003553540715950"},{"denom":"ASSET2","index":"0.000007529733395993"},{"denom":"ASSET3","index":"0.000002082581454906"},{"denom":"ASSET4","index":"0.000020111524804667"},{"denom":"ASSET5","index":"0.000001623122955496"},{"denom":"ASSET6","index":"0.000006544727800067"},{"denom":"ASSET7","index":"0.000010303065547743"},{"denom":"ASSET8","index":"0.000014124873274804"},{"denom":"ASSET9","index":"0.000005987532811110"}],"last_reward_claim_height":"176"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET17","shares":"124594339.999999998380916944","reward_history":[],"last_reward_claim_height":"36"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET2","shares":"171270946.000000000000000000","reward_history":[],"last_reward_claim_height":"4"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET3","shares":"142419753.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003241945367060"},{"denom":"ASSET1","index":"0.000027480716546724"},{"denom":"ASSET10","index":"0.000021780901079221"},{"denom":"ASSET11","index":"0.000027265989011084"},{"denom":"ASSET12","index":"0.000025921947969478"},{"denom":"ASSET13","index":"0.000008556984130745"},{"denom":"ASSET14","index":"0.000025051754134356"},{"denom":"ASSET15","index":"0.000019643848931612"},{"denom":"ASSET16","index":"0.000012200322352703"},{"denom":"ASSET17","index":"0.000009524928673174"},{"denom":"ASSET18","index":"0.000003966981346299"},{"denom":"ASSET2","index":"0.000008309018225650"},{"denom":"ASSET3","index":"0.000002312540225621"},{"denom":"ASSET4","index":"0.000022282443818183"},{"denom":"ASSET5","index":"0.000001802193647755"},{"denom":"ASSET6","index":"0.000007278646216530"},{"denom":"ASSET7","index":"0.000011418356902196"},{"denom":"ASSET8","index":"0.000015557459098515"},{"denom":"ASSET9","index":"0.000006608754258977"}],"last_reward_claim_height":"175"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET7","shares":"614719751.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001730803097805"},{"denom":"ASSET1","index":"0.000014429128492036"},{"denom":"ASSET10","index":"0.000010053081326419"},{"denom":"ASSET11","index":"0.000013956042311970"},{"denom":"ASSET12","index":"0.000012568515161896"},{"denom":"ASSET13","index":"0.000004324123072683"},{"denom":"ASSET14","index":"0.000013038716670133"},{"denom":"ASSET15","index":"0.000009320374681681"},{"denom":"ASSET16","index":"0.000006499165632259"},{"denom":"ASSET17","index":"0.000004615474927481"},{"denom":"ASSET18","index":"0.000002198119934213"},{"denom":"ASSET2","index":"0.000004257775620601"},{"denom":"ASSET3","index":"0.000001243293558590"},{"denom":"ASSET4","index":"0.000011726190987631"},{"denom":"ASSET5","index":"0.000000966365062941"},{"denom":"ASSET6","index":"0.000003934692375677"},{"denom":"ASSET7","index":"0.000006026079452192"},{"denom":"ASSET8","index":"0.000007863615407695"},{"denom":"ASSET9","index":"0.000003395258743528"}],"last_reward_claim_height":"63"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET12","shares":"868121196.418839073960246780","reward_history":[{"denom":"ASSET0","index":"0.000003241945367060"},{"denom":"ASSET1","index":"0.000027480716546724"},{"denom":"ASSET10","index":"0.000021780901079221"},{"denom":"ASSET11","index":"0.000027265989011084"},{"denom":"ASSET12","index":"0.000025921947969478"},{"denom":"ASSET13","index":"0.000008556984130745"},{"denom":"ASSET14","index":"0.000025051754134356"},{"denom":"ASSET15","index":"0.000019643848931612"},{"denom":"ASSET16","index":"0.000012200322352703"},{"denom":"ASSET17","index":"0.000009524928673174"},{"denom":"ASSET18","index":"0.000003966981346299"},{"denom":"ASSET2","index":"0.000008309018225650"},{"denom":"ASSET3","index":"0.000002312540225621"},{"denom":"ASSET4","index":"0.000022282443818183"},{"denom":"ASSET5","index":"0.000001802193647755"},{"denom":"ASSET6","index":"0.000007278646216530"},{"denom":"ASSET7","index":"0.000011418356902196"},{"denom":"ASSET8","index":"0.000015557459098515"},{"denom":"ASSET9","index":"0.000006608754258977"}],"last_reward_claim_height":"156"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET16","shares":"128604297.203217855250321986","reward_history":[{"denom":"ASSET0","index":"0.000003241945367060"},{"denom":"ASSET1","index":"0.000027480716546724"},{"denom":"ASSET10","index":"0.000021780901079221"},{"denom":"ASSET11","index":"0.000027265989011084"},{"denom":"ASSET12","index":"0.000025921947969478"},{"denom":"ASSET13","index":"0.000008556984130745"},{"denom":"ASSET14","index":"0.000025051754134356"},{"denom":"ASSET15","index":"0.000019643848931612"},{"denom":"ASSET16","index":"0.000012200322352703"},{"denom":"ASSET17","index":"0.000009524928673174"},{"denom":"ASSET18","index":"0.000003966981346299"},{"denom":"ASSET2","index":"0.000008309018225650"},{"denom":"ASSET3","index":"0.000002312540225621"},{"denom":"ASSET4","index":"0.000022282443818183"},{"denom":"ASSET5","index":"0.000001802193647755"},{"denom":"ASSET6","index":"0.000007278646216530"},{"denom":"ASSET7","index":"0.000011418356902196"},{"denom":"ASSET8","index":"0.000015557459098515"},{"denom":"ASSET9","index":"0.000006608754258977"}],"last_reward_claim_height":"181"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET17","shares":"713455055.475285895036953752","reward_history":[{"denom":"ASSET0","index":"0.000003241945367060"},{"denom":"ASSET1","index":"0.000027480716546724"},{"denom":"ASSET10","index":"0.000021780901079221"},{"denom":"ASSET11","index":"0.000027265989011084"},{"denom":"ASSET12","index":"0.000025921947969478"},{"denom":"ASSET13","index":"0.000008556984130745"},{"denom":"ASSET14","index":"0.000025051754134356"},{"denom":"ASSET15","index":"0.000019643848931612"},{"denom":"ASSET16","index":"0.000012200322352703"},{"denom":"ASSET17","index":"0.000009524928673174"},{"denom":"ASSET18","index":"0.000003966981346299"},{"denom":"ASSET2","index":"0.000008309018225650"},{"denom":"ASSET3","index":"0.000002312540225621"},{"denom":"ASSET4","index":"0.000022282443818183"},{"denom":"ASSET5","index":"0.000001802193647755"},{"denom":"ASSET6","index":"0.000007278646216530"},{"denom":"ASSET7","index":"0.000011418356902196"},{"denom":"ASSET8","index":"0.000015557459098515"},{"denom":"ASSET9","index":"0.000006608754258977"}],"last_reward_claim_height":"160"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET3","shares":"499870843.000000014496254447","reward_history":[{"denom":"ASSET0","index":"0.000001631665384825"},{"denom":"ASSET1","index":"0.000013602742609312"},{"denom":"ASSET10","index":"0.000009477179623123"},{"denom":"ASSET11","index":"0.000013159027954757"},{"denom":"ASSET12","index":"0.000011849393704263"},{"denom":"ASSET13","index":"0.000004077627053980"},{"denom":"ASSET14","index":"0.000012292493795584"},{"denom":"ASSET15","index":"0.000008788868801652"},{"denom":"ASSET16","index":"0.000006127810000788"},{"denom":"ASSET17","index":"0.000004351722256101"},{"denom":"ASSET18","index":"0.000002072921786447"},{"denom":"ASSET2","index":"0.000004015556167401"},{"denom":"ASSET3","index":"0.000001174430339134"},{"denom":"ASSET4","index":"0.000011054148880171"},{"denom":"ASSET5","index":"0.000000911397275215"},{"denom":"ASSET6","index":"0.000003710118240373"},{"denom":"ASSET7","index":"0.000005682866219766"},{"denom":"ASSET8","index":"0.000007415319974879"},{"denom":"ASSET9","index":"0.000003202489009539"}],"last_reward_claim_height":"87"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET8","shares":"423853638.929322494375463042","reward_history":[{"denom":"ASSET0","index":"0.000003079719434352"},{"denom":"ASSET1","index":"0.000026105925494605"},{"denom":"ASSET10","index":"0.000020711970439773"},{"denom":"ASSET11","index":"0.000025910008103106"},{"denom":"ASSET12","index":"0.000024641613628664"},{"denom":"ASSET13","index":"0.000008133110770201"},{"denom":"ASSET14","index":"0.000023800542954419"},{"denom":"ASSET15","index":"0.000018678884312278"},{"denom":"ASSET16","index":"0.000011589749383737"},{"denom":"ASSET17","index":"0.000009055208366452"},{"denom":"ASSET18","index":"0.000003767697278786"},{"denom":"ASSET2","index":"0.000007896757003962"},{"denom":"ASSET3","index":"0.000002198611212202"},{"denom":"ASSET4","index":"0.000021166859181475"},{"denom":"ASSET5","index":"0.000001712166144109"},{"denom":"ASSET6","index":"0.000006913910929446"},{"denom":"ASSET7","index":"0.000010848237821893"},{"denom":"ASSET8","index":"0.000014785764472138"},{"denom":"ASSET9","index":"0.000006281127943464"}],"last_reward_claim_height":"163"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET17","shares":"57393556.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003079719434352"},{"denom":"ASSET1","index":"0.000026105925494605"},{"denom":"ASSET10","index":"0.000020711970439773"},{"denom":"ASSET11","index":"0.000025910008103106"},{"denom":"ASSET12","index":"0.000024641613628664"},{"denom":"ASSET13","index":"0.000008133110770201"},{"denom":"ASSET14","index":"0.000023800542954419"},{"denom":"ASSET15","index":"0.000018678884312278"},{"denom":"ASSET16","index":"0.000011589749383737"},{"denom":"ASSET17","index":"0.000009055208366452"},{"denom":"ASSET18","index":"0.000003767697278786"},{"denom":"ASSET2","index":"0.000007896757003962"},{"denom":"ASSET3","index":"0.000002198611212202"},{"denom":"ASSET4","index":"0.000021166859181475"},{"denom":"ASSET5","index":"0.000001712166144109"},{"denom":"ASSET6","index":"0.000006913910929446"},{"denom":"ASSET7","index":"0.000010848237821893"},{"denom":"ASSET8","index":"0.000014785764472138"},{"denom":"ASSET9","index":"0.000006281127943464"}],"last_reward_claim_height":"130"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET7","shares":"152928381.088475384655126125","reward_history":[{"denom":"ASSET0","index":"0.000003063170165442"},{"denom":"ASSET1","index":"0.000025996358951928"},{"denom":"ASSET10","index":"0.000020799618544072"},{"denom":"ASSET11","index":"0.000025846936295403"},{"denom":"ASSET12","index":"0.000024670295822131"},{"denom":"ASSET13","index":"0.000008120644896033"},{"denom":"ASSET14","index":"0.000023715222729701"},{"denom":"ASSET15","index":"0.000018725986369791"},{"denom":"ASSET16","index":"0.000011529047312284"},{"denom":"ASSET17","index":"0.000009065966880203"},{"denom":"ASSET18","index":"0.000003737409049681"},{"denom":"ASSET2","index":"0.000007876841198043"},{"denom":"ASSET3","index":"0.000002185992003768"},{"denom":"ASSET4","index":"0.000021074917159843"},{"denom":"ASSET5","index":"0.000001702800306431"},{"denom":"ASSET6","index":"0.000006871093729972"},{"denom":"ASSET7","index":"0.000010798830402478"},{"denom":"ASSET8","index":"0.000014762015379742"},{"denom":"ASSET9","index":"0.000006264517424621"}],"last_reward_claim_height":"151"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET13","shares":"934436127.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003063170165442"},{"denom":"ASSET1","index":"0.000025996358951928"},{"denom":"ASSET10","index":"0.000020799618544072"},{"denom":"ASSET11","index":"0.000025846936295403"},{"denom":"ASSET12","index":"0.000024670295822131"},{"denom":"ASSET13","index":"0.000008120644896033"},{"denom":"ASSET14","index":"0.000023715222729701"},{"denom":"ASSET15","index":"0.000018725986369791"},{"denom":"ASSET16","index":"0.000011529047312284"},{"denom":"ASSET17","index":"0.000009065966880203"},{"denom":"ASSET18","index":"0.000003737409049681"},{"denom":"ASSET2","index":"0.000007876841198043"},{"denom":"ASSET3","index":"0.000002185992003768"},{"denom":"ASSET4","index":"0.000021074917159843"},{"denom":"ASSET5","index":"0.000001702800306431"},{"denom":"ASSET6","index":"0.000006871093729972"},{"denom":"ASSET7","index":"0.000010798830402478"},{"denom":"ASSET8","index":"0.000014762015379742"},{"denom":"ASSET9","index":"0.000006264517424621"}],"last_reward_claim_height":"132"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET3","shares":"139823456.860080201044204068","reward_history":[{"denom":"ASSET0","index":"0.000001519669987195"},{"denom":"ASSET1","index":"0.000012676623405048"},{"denom":"ASSET10","index":"0.000008831600766261"},{"denom":"ASSET11","index":"0.000012262448940742"},{"denom":"ASSET12","index":"0.000011042591812037"},{"denom":"ASSET13","index":"0.000003799690110356"},{"denom":"ASSET14","index":"0.000011454705706870"},{"denom":"ASSET15","index":"0.000008189733375059"},{"denom":"ASSET16","index":"0.000005709838012905"},{"denom":"ASSET17","index":"0.000004055200725152"},{"denom":"ASSET18","index":"0.000001931783882027"},{"denom":"ASSET2","index":"0.000003741994165079"},{"denom":"ASSET3","index":"0.000001094162390780"},{"denom":"ASSET4","index":"0.000010301817086076"},{"denom":"ASSET5","index":"0.000000848954623355"},{"denom":"ASSET6","index":"0.000003457635577645"},{"denom":"ASSET7","index":"0.000005295663548598"},{"denom":"ASSET8","index":"0.000006910119731604"},{"denom":"ASSET9","index":"0.000002984734883325"}],"last_reward_claim_height":"97"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET13","shares":"874375087.339492741003347063","reward_history":[{"denom":"ASSET0","index":"0.000003051401969864"},{"denom":"ASSET1","index":"0.000025903543471827"},{"denom":"ASSET10","index":"0.000020717104247015"},{"denom":"ASSET11","index":"0.000025751820078700"},{"denom":"ASSET12","index":"0.000024575704795191"},{"denom":"ASSET13","index":"0.000008089460542782"},{"denom":"ASSET14","index":"0.000023629519286555"},{"denom":"ASSET15","index":"0.000018652475785738"},{"denom":"ASSET16","index":"0.000011487598582804"},{"denom":"ASSET17","index":"0.000009031027466449"},{"denom":"ASSET18","index":"0.000003724432134289"},{"denom":"ASSET2","index":"0.000007847588407204"},{"denom":"ASSET3","index":"0.000002177732310384"},{"denom":"ASSET4","index":"0.000021000151540181"},{"denom":"ASSET5","index":"0.000001696165098739"},{"denom":"ASSET6","index":"0.000006846477479182"},{"denom":"ASSET7","index":"0.000010760324594985"},{"denom":"ASSET8","index":"0.000014706911787677"},{"denom":"ASSET9","index":"0.000006241583848480"}],"last_reward_claim_height":"167"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET3","shares":"159072650.000000003181453000","reward_history":[],"last_reward_claim_height":"40"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET0","shares":"201718180.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002875427361068"},{"denom":"ASSET1","index":"0.000024372739255487"},{"denom":"ASSET10","index":"0.000019284464921318"},{"denom":"ASSET11","index":"0.000024174413552556"},{"denom":"ASSET12","index":"0.000022964657814992"},{"denom":"ASSET13","index":"0.000007586106071195"},{"denom":"ASSET14","index":"0.000022214775035212"},{"denom":"ASSET15","index":"0.000017399266119679"},{"denom":"ASSET16","index":"0.000010822432031544"},{"denom":"ASSET17","index":"0.000008437405253940"},{"denom":"ASSET18","index":"0.000003520101477575"},{"denom":"ASSET2","index":"0.000007366931162610"},{"denom":"ASSET3","index":"0.000002051556015935"},{"denom":"ASSET4","index":"0.000019761188522524"},{"denom":"ASSET5","index":"0.000001598363223465"},{"denom":"ASSET6","index":"0.000006458982880806"},{"denom":"ASSET7","index":"0.000010127316932433"},{"denom":"ASSET8","index":"0.000013792105044122"},{"denom":"ASSET9","index":"0.000005859963066840"}],"last_reward_claim_height":"146"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET15","shares":"472251608.000000014639799848","reward_history":[{"denom":"ASSET0","index":"0.000001468329025254"},{"denom":"ASSET1","index":"0.000012248466172689"},{"denom":"ASSET10","index":"0.000008533242661533"},{"denom":"ASSET11","index":"0.000011849890220686"},{"denom":"ASSET12","index":"0.000010670683647662"},{"denom":"ASSET13","index":"0.000003671855143322"},{"denom":"ASSET14","index":"0.000011069259599665"},{"denom":"ASSET15","index":"0.000007913694549611"},{"denom":"ASSET16","index":"0.000005518108516848"},{"denom":"ASSET17","index":"0.000003917609227717"},{"denom":"ASSET18","index":"0.000001866904977257"},{"denom":"ASSET2","index":"0.000003616095813249"},{"denom":"ASSET3","index":"0.000001057362111013"},{"denom":"ASSET4","index":"0.000009954072998206"},{"denom":"ASSET5","index":"0.000000819868668110"},{"denom":"ASSET6","index":"0.000003341429483630"},{"denom":"ASSET7","index":"0.000005117467404472"},{"denom":"ASSET8","index":"0.000006676663486141"},{"denom":"ASSET9","index":"0.000002882963880808"}],"last_reward_claim_height":"112"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET10","shares":"703301298.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002967027008461"},{"denom":"ASSET1","index":"0.000025180120058697"},{"denom":"ASSET10","index":"0.000020126919929476"},{"denom":"ASSET11","index":"0.000025029678796477"},{"denom":"ASSET12","index":"0.000023880507059092"},{"denom":"ASSET13","index":"0.000007862872062626"},{"denom":"ASSET14","index":"0.000022968832134984"},{"denom":"ASSET15","index":"0.000018123195207046"},{"denom":"ASSET16","index":"0.000011168095360491"},{"denom":"ASSET17","index":"0.000008775186029853"},{"denom":"ASSET18","index":"0.000003621217117579"},{"denom":"ASSET2","index":"0.000007627534970337"},{"denom":"ASSET3","index":"0.000002117298518473"},{"denom":"ASSET4","index":"0.000020413769751333"},{"denom":"ASSET5","index":"0.000001649183760435"},{"denom":"ASSET6","index":"0.000006656038319196"},{"denom":"ASSET7","index":"0.000010459966878994"},{"denom":"ASSET8","index":"0.000014293861494285"},{"denom":"ASSET9","index":"0.000006066597621916"}],"last_reward_claim_height":"153"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET11","shares":"250812607.295898435928333280","reward_history":[{"denom":"ASSET0","index":"0.000002967027008461"},{"denom":"ASSET1","index":"0.000025180120058697"},{"denom":"ASSET10","index":"0.000020126919929476"},{"denom":"ASSET11","index":"0.000025029678796477"},{"denom":"ASSET12","index":"0.000023880507059092"},{"denom":"ASSET13","index":"0.000007862872062626"},{"denom":"ASSET14","index":"0.000022968832134984"},{"denom":"ASSET15","index":"0.000018123195207046"},{"denom":"ASSET16","index":"0.000011168095360491"},{"denom":"ASSET17","index":"0.000008775186029853"},{"denom":"ASSET18","index":"0.000003621217117579"},{"denom":"ASSET2","index":"0.000007627534970337"},{"denom":"ASSET3","index":"0.000002117298518473"},{"denom":"ASSET4","index":"0.000020413769751333"},{"denom":"ASSET5","index":"0.000001649183760435"},{"denom":"ASSET6","index":"0.000006656038319196"},{"denom":"ASSET7","index":"0.000010459966878994"},{"denom":"ASSET8","index":"0.000014293861494285"},{"denom":"ASSET9","index":"0.000006066597621916"}],"last_reward_claim_height":"163"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET16","shares":"84325262.710113960969379363","reward_history":[{"denom":"ASSET0","index":"0.000001484659776814"},{"denom":"ASSET1","index":"0.000012377911876883"},{"denom":"ASSET10","index":"0.000008623797972416"},{"denom":"ASSET11","index":"0.000011974339842928"},{"denom":"ASSET12","index":"0.000010782780641408"},{"denom":"ASSET13","index":"0.000003710691597017"},{"denom":"ASSET14","index":"0.000011185714112019"},{"denom":"ASSET15","index":"0.000007997367331102"},{"denom":"ASSET16","index":"0.000005575935127370"},{"denom":"ASSET17","index":"0.000003959731301514"},{"denom":"ASSET18","index":"0.000001886316120734"},{"denom":"ASSET2","index":"0.000003653859459324"},{"denom":"ASSET3","index":"0.000001068955039306"},{"denom":"ASSET4","index":"0.000010059288371675"},{"denom":"ASSET5","index":"0.000000829493784981"},{"denom":"ASSET6","index":"0.000003376084404307"},{"denom":"ASSET7","index":"0.000005171085966725"},{"denom":"ASSET8","index":"0.000006747698865199"},{"denom":"ASSET9","index":"0.000002914403105969"}],"last_reward_claim_height":"107"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET0","shares":"379917460.999999999620082539","reward_history":[{"denom":"ASSET0","index":"0.000002968383248598"},{"denom":"ASSET1","index":"0.000025185581850199"},{"denom":"ASSET10","index":"0.000020091193699906"},{"denom":"ASSET11","index":"0.000025026167595767"},{"denom":"ASSET12","index":"0.000023854952987524"},{"denom":"ASSET13","index":"0.000007859725566891"},{"denom":"ASSET14","index":"0.000022971118914045"},{"denom":"ASSET15","index":"0.000018098517255117"},{"denom":"ASSET16","index":"0.000011173004258039"},{"denom":"ASSET17","index":"0.000008766603022733"},{"denom":"ASSET18","index":"0.000003624559740525"},{"denom":"ASSET2","index":"0.000007626317523237"},{"denom":"ASSET3","index":"0.000002117313008939"},{"denom":"ASSET4","index":"0.000020418576076670"},{"denom":"ASSET5","index":"0.000001649450966157"},{"denom":"ASSET6","index":"0.000006660362585584"},{"denom":"ASSET7","index":"0.000010463779822658"},{"denom":"ASSET8","index":"0.000014287735496216"},{"denom":"ASSET9","index":"0.000006065360072421"}],"last_reward_claim_height":"145"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET6","shares":"439205113.005022003834834790","reward_history":[{"denom":"ASSET0","index":"0.000002968383248598"},{"denom":"ASSET1","index":"0.000025185581850199"},{"denom":"ASSET10","index":"0.000020091193699906"},{"denom":"ASSET11","index":"0.000025026167595767"},{"denom":"ASSET12","index":"0.000023854952987524"},{"denom":"ASSET13","index":"0.000007859725566891"},{"denom":"ASSET14","index":"0.000022971118914045"},{"denom":"ASSET15","index":"0.000018098517255117"},{"denom":"ASSET16","index":"0.000011173004258039"},{"denom":"ASSET17","index":"0.000008766603022733"},{"denom":"ASSET18","index":"0.000003624559740525"},{"denom":"ASSET2","index":"0.000007626317523237"},{"denom":"ASSET3","index":"0.000002117313008939"},{"denom":"ASSET4","index":"0.000020418576076670"},{"denom":"ASSET5","index":"0.000001649450966157"},{"denom":"ASSET6","index":"0.000006660362585584"},{"denom":"ASSET7","index":"0.000010463779822658"},{"denom":"ASSET8","index":"0.000014287735496216"},{"denom":"ASSET9","index":"0.000006065360072421"}],"last_reward_claim_height":"137"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET7","shares":"4472473.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001508631993599"},{"denom":"ASSET1","index":"0.000012578103553994"},{"denom":"ASSET10","index":"0.000008763023138279"},{"denom":"ASSET11","index":"0.000012169014387632"},{"denom":"ASSET12","index":"0.000010956555546150"},{"denom":"ASSET13","index":"0.000003770654442897"},{"denom":"ASSET14","index":"0.000011367495794714"},{"denom":"ASSET15","index":"0.000008126250861227"},{"denom":"ASSET16","index":"0.000005666162616450"},{"denom":"ASSET17","index":"0.000004024252704398"},{"denom":"ASSET18","index":"0.000001915870077761"},{"denom":"ASSET2","index":"0.000003713270894674"},{"denom":"ASSET3","index":"0.000001084734169631"},{"denom":"ASSET4","index":"0.000010221675912459"},{"denom":"ASSET5","index":"0.000000842242401334"},{"denom":"ASSET6","index":"0.000003430055317962"},{"denom":"ASSET7","index":"0.000005255222367887"},{"denom":"ASSET8","index":"0.000006856408471522"},{"denom":"ASSET9","index":"0.000002961731521176"}],"last_reward_claim_height":"98"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET13","shares":"14863191.520797849938764627","reward_history":[{"denom":"ASSET0","index":"0.000002968383248598"},{"denom":"ASSET1","index":"0.000025185581850199"},{"denom":"ASSET10","index":"0.000020091193699906"},{"denom":"ASSET11","index":"0.000025026167595767"},{"denom":"ASSET12","index":"0.000023854952987524"},{"denom":"ASSET13","index":"0.000007859725566891"},{"denom":"ASSET14","index":"0.000022971118914045"},{"denom":"ASSET15","index":"0.000018098517255117"},{"denom":"ASSET16","index":"0.000011173004258039"},{"denom":"ASSET17","index":"0.000008766603022733"},{"denom":"ASSET18","index":"0.000003624559740525"},{"denom":"ASSET2","index":"0.000007626317523237"},{"denom":"ASSET3","index":"0.000002117313008939"},{"denom":"ASSET4","index":"0.000020418576076670"},{"denom":"ASSET5","index":"0.000001649450966157"},{"denom":"ASSET6","index":"0.000006660362585584"},{"denom":"ASSET7","index":"0.000010463779822658"},{"denom":"ASSET8","index":"0.000014287735496216"},{"denom":"ASSET9","index":"0.000006065360072421"}],"last_reward_claim_height":"180"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET14","shares":"271116966.114696960519140493","reward_history":[{"denom":"ASSET0","index":"0.000001508631993599"},{"denom":"ASSET1","index":"0.000012578103553994"},{"denom":"ASSET10","index":"0.000008763023138279"},{"denom":"ASSET11","index":"0.000012169014387632"},{"denom":"ASSET12","index":"0.000010956555546150"},{"denom":"ASSET13","index":"0.000003770654442897"},{"denom":"ASSET14","index":"0.000011367495794714"},{"denom":"ASSET15","index":"0.000008126250861227"},{"denom":"ASSET16","index":"0.000005666162616450"},{"denom":"ASSET17","index":"0.000004024252704398"},{"denom":"ASSET18","index":"0.000001915870077761"},{"denom":"ASSET2","index":"0.000003713270894674"},{"denom":"ASSET3","index":"0.000001084734169631"},{"denom":"ASSET4","index":"0.000010221675912459"},{"denom":"ASSET5","index":"0.000000842242401334"},{"denom":"ASSET6","index":"0.000003430055317962"},{"denom":"ASSET7","index":"0.000005255222367887"},{"denom":"ASSET8","index":"0.000006856408471522"},{"denom":"ASSET9","index":"0.000002961731521176"}],"last_reward_claim_height":"89"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET17","shares":"438606951.623230269001637784","reward_history":[{"denom":"ASSET0","index":"0.000002968383248598"},{"denom":"ASSET1","index":"0.000025185581850199"},{"denom":"ASSET10","index":"0.000020091193699906"},{"denom":"ASSET11","index":"0.000025026167595767"},{"denom":"ASSET12","index":"0.000023854952987524"},{"denom":"ASSET13","index":"0.000007859725566891"},{"denom":"ASSET14","index":"0.000022971118914045"},{"denom":"ASSET15","index":"0.000018098517255117"},{"denom":"ASSET16","index":"0.000011173004258039"},{"denom":"ASSET17","index":"0.000008766603022733"},{"denom":"ASSET18","index":"0.000003624559740525"},{"denom":"ASSET2","index":"0.000007626317523237"},{"denom":"ASSET3","index":"0.000002117313008939"},{"denom":"ASSET4","index":"0.000020418576076670"},{"denom":"ASSET5","index":"0.000001649450966157"},{"denom":"ASSET6","index":"0.000006660362585584"},{"denom":"ASSET7","index":"0.000010463779822658"},{"denom":"ASSET8","index":"0.000014287735496216"},{"denom":"ASSET9","index":"0.000006065360072421"}],"last_reward_claim_height":"159"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET3","shares":"1000013143.260113657000000000","reward_history":[{"denom":"ASSET0","index":"0.000003259379166935"},{"denom":"ASSET1","index":"0.000027669546155668"},{"denom":"ASSET10","index":"0.000022163157427920"},{"denom":"ASSET11","index":"0.000027516665793422"},{"denom":"ASSET12","index":"0.000026276569409586"},{"denom":"ASSET13","index":"0.000008645229164029"},{"denom":"ASSET14","index":"0.000025243382728696"},{"denom":"ASSET15","index":"0.000019947981783747"},{"denom":"ASSET16","index":"0.000012268920188963"},{"denom":"ASSET17","index":"0.000009656339783182"},{"denom":"ASSET18","index":"0.000003975233530089"},{"denom":"ASSET2","index":"0.000008385350610200"},{"denom":"ASSET3","index":"0.000002325230588439"},{"denom":"ASSET4","index":"0.000022430515898086"},{"denom":"ASSET5","index":"0.000001812256369527"},{"denom":"ASSET6","index":"0.000007311001085881"},{"denom":"ASSET7","index":"0.000011492885803011"},{"denom":"ASSET8","index":"0.000015716897251793"},{"denom":"ASSET9","index":"0.000006668589151432"}],"last_reward_claim_height":"182"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET11","shares":"992505346.000000000000000000","reward_history":[],"last_reward_claim_height":"6"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET6","shares":"449930826.999999997300415038","reward_history":[{"denom":"ASSET0","index":"0.000001669758803356"},{"denom":"ASSET1","index":"0.000013919924903508"},{"denom":"ASSET10","index":"0.000009698114015232"},{"denom":"ASSET11","index":"0.000013466332119255"},{"denom":"ASSET12","index":"0.000012126099781115"},{"denom":"ASSET13","index":"0.000004173211661392"},{"denom":"ASSET14","index":"0.000012579297449702"},{"denom":"ASSET15","index":"0.000008994017898909"},{"denom":"ASSET16","index":"0.000006270880730729"},{"denom":"ASSET17","index":"0.000004453348668392"},{"denom":"ASSET18","index":"0.000002121376009280"},{"denom":"ASSET2","index":"0.000004109202923545"},{"denom":"ASSET3","index":"0.000001201941855137"},{"denom":"ASSET4","index":"0.000011312556625386"},{"denom":"ASSET5","index":"0.000000932868086778"},{"denom":"ASSET6","index":"0.000003797061547622"},{"denom":"ASSET7","index":"0.000005815312368147"},{"denom":"ASSET8","index":"0.000007588591475923"},{"denom":"ASSET9","index":"0.000003277484447193"}],"last_reward_claim_height":"81"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET11","shares":"49562763.999999999152496658","reward_history":[],"last_reward_claim_height":"6"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET13","shares":"556355894.636666082108645846","reward_history":[{"denom":"ASSET0","index":"0.000001669758803356"},{"denom":"ASSET1","index":"0.000013919924903508"},{"denom":"ASSET10","index":"0.000009698114015232"},{"denom":"ASSET11","index":"0.000013466332119255"},{"denom":"ASSET12","index":"0.000012126099781115"},{"denom":"ASSET13","index":"0.000004173211661392"},{"denom":"ASSET14","index":"0.000012579297449702"},{"denom":"ASSET15","index":"0.000008994017898909"},{"denom":"ASSET16","index":"0.000006270880730729"},{"denom":"ASSET17","index":"0.000004453348668392"},{"denom":"ASSET18","index":"0.000002121376009280"},{"denom":"ASSET2","index":"0.000004109202923545"},{"denom":"ASSET3","index":"0.000001201941855137"},{"denom":"ASSET4","index":"0.000011312556625386"},{"denom":"ASSET5","index":"0.000000932868086778"},{"denom":"ASSET6","index":"0.000003797061547622"},{"denom":"ASSET7","index":"0.000005815312368147"},{"denom":"ASSET8","index":"0.000007588591475923"},{"denom":"ASSET9","index":"0.000003277484447193"}],"last_reward_claim_height":"107"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET16","shares":"389714467.999999996492569788","reward_history":[],"last_reward_claim_height":"33"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET4","shares":"883002299.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001334597814253"},{"denom":"ASSET1","index":"0.000011126876577448"},{"denom":"ASSET10","index":"0.000007751884027943"},{"denom":"ASSET11","index":"0.000010763759508328"},{"denom":"ASSET12","index":"0.000009692944381721"},{"denom":"ASSET13","index":"0.000003335543967388"},{"denom":"ASSET14","index":"0.000010055110882597"},{"denom":"ASSET15","index":"0.000007189147627631"},{"denom":"ASSET16","index":"0.000005012346349398"},{"denom":"ASSET17","index":"0.000003559878072918"},{"denom":"ASSET18","index":"0.000001695813746885"},{"denom":"ASSET2","index":"0.000003284213282225"},{"denom":"ASSET3","index":"0.000000960549210329"},{"denom":"ASSET4","index":"0.000009042280418860"},{"denom":"ASSET5","index":"0.000000745720787237"},{"denom":"ASSET6","index":"0.000003035164402357"},{"denom":"ASSET7","index":"0.000004648278712034"},{"denom":"ASSET8","index":"0.000006065575963495"},{"denom":"ASSET9","index":"0.000002619766079830"}],"last_reward_claim_height":"118"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET6","shares":"184097398.390656811988613471","reward_history":[{"denom":"ASSET0","index":"0.000002933404194828"},{"denom":"ASSET1","index":"0.000024932632498194"},{"denom":"ASSET10","index":"0.000020157113753706"},{"denom":"ASSET11","index":"0.000024842878528839"},{"denom":"ASSET12","index":"0.000023817726072485"},{"denom":"ASSET13","index":"0.000007813243799971"},{"denom":"ASSET14","index":"0.000022761898108549"},{"denom":"ASSET15","index":"0.000018109267957138"},{"denom":"ASSET16","index":"0.000011043189892304"},{"denom":"ASSET17","index":"0.000008753164046701"},{"denom":"ASSET18","index":"0.000003567063844603"},{"denom":"ASSET2","index":"0.000007569762146700"},{"denom":"ASSET3","index":"0.000002091389836038"},{"denom":"ASSET4","index":"0.000020208488830330"},{"denom":"ASSET5","index":"0.000001630166870108"},{"denom":"ASSET6","index":"0.000006572642272968"},{"denom":"ASSET7","index":"0.000010351822041320"},{"denom":"ASSET8","index":"0.000014203644477234"},{"denom":"ASSET9","index":"0.000006019030096188"}],"last_reward_claim_height":"127"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET6","shares":"794425293.549543385478969010","reward_history":[{"denom":"ASSET0","index":"0.000004823716104736"},{"denom":"ASSET1","index":"0.000039480365070270"},{"denom":"ASSET10","index":"0.000034116928375488"},{"denom":"ASSET11","index":"0.000040997532955099"},{"denom":"ASSET12","index":"0.000038999162148649"},{"denom":"ASSET13","index":"0.000013220337329072"},{"denom":"ASSET14","index":"0.000037831952094564"},{"denom":"ASSET15","index":"0.000030637104167684"},{"denom":"ASSET16","index":"0.000017521720108905"},{"denom":"ASSET17","index":"0.000014166831814341"},{"denom":"ASSET18","index":"0.000005896825051000"},{"denom":"ASSET2","index":"0.000011913795848039"},{"denom":"ASSET3","index":"0.000003425665491719"},{"denom":"ASSET4","index":"0.000032361073374938"},{"denom":"ASSET5","index":"0.000002690020746157"},{"denom":"ASSET6","index":"0.000010980480809306"},{"denom":"ASSET7","index":"0.000016957489547178"},{"denom":"ASSET8","index":"0.000024390016426130"},{"denom":"ASSET9","index":"0.000009789394935097"}],"last_reward_claim_height":"195"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET10","shares":"144835458.467424330192577803","reward_history":[{"denom":"ASSET0","index":"0.000003215122291080"},{"denom":"ASSET1","index":"0.000027271082473775"},{"denom":"ASSET10","index":"0.000021717714787675"},{"denom":"ASSET11","index":"0.000027088129911249"},{"denom":"ASSET12","index":"0.000025803190697535"},{"denom":"ASSET13","index":"0.000008506451165719"},{"denom":"ASSET14","index":"0.000024869823256717"},{"denom":"ASSET15","index":"0.000019571375436743"},{"denom":"ASSET16","index":"0.000012101015548893"},{"denom":"ASSET17","index":"0.000009481514658039"},{"denom":"ASSET18","index":"0.000003929002426467"},{"denom":"ASSET2","index":"0.000008255375778501"},{"denom":"ASSET3","index":"0.000002294279906946"},{"denom":"ASSET4","index":"0.000022110354928469"},{"denom":"ASSET5","index":"0.000001787716273475"},{"denom":"ASSET6","index":"0.000007215985074700"},{"denom":"ASSET7","index":"0.000011330188741735"},{"denom":"ASSET8","index":"0.000015463524362026"},{"denom":"ASSET9","index":"0.000006565858639552"}],"last_reward_claim_height":"181"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET13","shares":"204543993.000000000000000000","reward_history":[],"last_reward_claim_height":"25"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET14","shares":"30248090.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003215122291080"},{"denom":"ASSET1","index":"0.000027271082473775"},{"denom":"ASSET10","index":"0.000021717714787675"},{"denom":"ASSET11","index":"0.000027088129911249"},{"denom":"ASSET12","index":"0.000025803190697535"},{"denom":"ASSET13","index":"0.000008506451165719"},{"denom":"ASSET14","index":"0.000024869823256717"},{"denom":"ASSET15","index":"0.000019571375436743"},{"denom":"ASSET16","index":"0.000012101015548893"},{"denom":"ASSET17","index":"0.000009481514658039"},{"denom":"ASSET18","index":"0.000003929002426467"},{"denom":"ASSET2","index":"0.000008255375778501"},{"denom":"ASSET3","index":"0.000002294279906946"},{"denom":"ASSET4","index":"0.000022110354928469"},{"denom":"ASSET5","index":"0.000001787716273475"},{"denom":"ASSET6","index":"0.000007215985074700"},{"denom":"ASSET7","index":"0.000011330188741735"},{"denom":"ASSET8","index":"0.000015463524362026"},{"denom":"ASSET9","index":"0.000006565858639552"}],"last_reward_claim_height":"180"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET2","shares":"250491820.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001631513498845"},{"denom":"ASSET1","index":"0.000013601788709515"},{"denom":"ASSET10","index":"0.000009476711328689"},{"denom":"ASSET11","index":"0.000013158178840821"},{"denom":"ASSET12","index":"0.000011848922966954"},{"denom":"ASSET13","index":"0.000004077884841603"},{"denom":"ASSET14","index":"0.000012291633930140"},{"denom":"ASSET15","index":"0.000008788599161546"},{"denom":"ASSET16","index":"0.000006127389402135"},{"denom":"ASSET17","index":"0.000004351601569095"},{"denom":"ASSET18","index":"0.000002072876103766"},{"denom":"ASSET2","index":"0.000004014961455973"},{"denom":"ASSET3","index":"0.000001174420047516"},{"denom":"ASSET4","index":"0.000011053841044239"},{"denom":"ASSET5","index":"0.000000911490186131"},{"denom":"ASSET6","index":"0.000003710232488420"},{"denom":"ASSET7","index":"0.000005682431175178"},{"denom":"ASSET8","index":"0.000007415071543785"},{"denom":"ASSET9","index":"0.000003202800328586"}],"last_reward_claim_height":"106"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET8","shares":"986259018.229668663997160300","reward_history":[{"denom":"ASSET0","index":"0.000003029367235848"},{"denom":"ASSET1","index":"0.000025709657584098"},{"denom":"ASSET10","index":"0.000020551027857005"},{"denom":"ASSET11","index":"0.000025556791271547"},{"denom":"ASSET12","index":"0.000024383546484064"},{"denom":"ASSET13","index":"0.000008028643187417"},{"denom":"ASSET14","index":"0.000023452409013233"},{"denom":"ASSET15","index":"0.000018505869963369"},{"denom":"ASSET16","index":"0.000011403028825829"},{"denom":"ASSET17","index":"0.000008960765854271"},{"denom":"ASSET18","index":"0.000003697390743305"},{"denom":"ASSET2","index":"0.000007788410102575"},{"denom":"ASSET3","index":"0.000002162278160249"},{"denom":"ASSET4","index":"0.000020843149904241"},{"denom":"ASSET5","index":"0.000001683795445220"},{"denom":"ASSET6","index":"0.000006796548728457"},{"denom":"ASSET7","index":"0.000010680301627557"},{"denom":"ASSET8","index":"0.000014594997949332"},{"denom":"ASSET9","index":"0.000006193949682941"}],"last_reward_claim_height":"124"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET9","shares":"98315290.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001515088644413"},{"denom":"ASSET1","index":"0.000012634136557163"},{"denom":"ASSET10","index":"0.000008802109028204"},{"denom":"ASSET11","index":"0.000012222352143486"},{"denom":"ASSET12","index":"0.000011006111259210"},{"denom":"ASSET13","index":"0.000003787721611031"},{"denom":"ASSET14","index":"0.000011417895672887"},{"denom":"ASSET15","index":"0.000008163582563959"},{"denom":"ASSET16","index":"0.000005691138594924"},{"denom":"ASSET17","index":"0.000004042263453241"},{"denom":"ASSET18","index":"0.000001925135571111"},{"denom":"ASSET2","index":"0.000003729515797284"},{"denom":"ASSET3","index":"0.000001091141821893"},{"denom":"ASSET4","index":"0.000010267679293757"},{"denom":"ASSET5","index":"0.000000846156158061"},{"denom":"ASSET6","index":"0.000003446305419945"},{"denom":"ASSET7","index":"0.000005278485437758"},{"denom":"ASSET8","index":"0.000006887398378958"},{"denom":"ASSET9","index":"0.000002974577705544"}],"last_reward_claim_height":"96"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET10","shares":"980540881.000000000000000000","reward_history":[],"last_reward_claim_height":"47"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET18","shares":"350382351.822954568549063956","reward_history":[{"denom":"ASSET0","index":"0.000004757972776933"},{"denom":"ASSET1","index":"0.000038970400118654"},{"denom":"ASSET10","index":"0.000033617836990995"},{"denom":"ASSET11","index":"0.000040428437524388"},{"denom":"ASSET12","index":"0.000038459846371488"},{"denom":"ASSET13","index":"0.000013029623770405"},{"denom":"ASSET14","index":"0.000037302820528116"},{"denom":"ASSET15","index":"0.000030190977215601"},{"denom":"ASSET16","index":"0.000017295602426422"},{"denom":"ASSET17","index":"0.000013975163103663"},{"denom":"ASSET18","index":"0.000005816089409694"},{"denom":"ASSET2","index":"0.000011760899716132"},{"denom":"ASSET3","index":"0.000003380086343079"},{"denom":"ASSET4","index":"0.000031935316700571"},{"denom":"ASSET5","index":"0.000002652933340978"},{"denom":"ASSET6","index":"0.000010827301916558"},{"denom":"ASSET7","index":"0.000016726845186415"},{"denom":"ASSET8","index":"0.000024031227508335"},{"denom":"ASSET9","index":"0.000009656515298543"}],"last_reward_claim_height":"186"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET14","shares":"156831831.379639132139950364","reward_history":[{"denom":"ASSET0","index":"0.000004797932273463"},{"denom":"ASSET1","index":"0.000039207124912078"},{"denom":"ASSET10","index":"0.000034353978435423"},{"denom":"ASSET11","index":"0.000040920134682013"},{"denom":"ASSET12","index":"0.000039056395494217"},{"denom":"ASSET13","index":"0.000013231227958855"},{"denom":"ASSET14","index":"0.000037733679436848"},{"denom":"ASSET15","index":"0.000030793877081294"},{"denom":"ASSET16","index":"0.000017383221205873"},{"denom":"ASSET17","index":"0.000014177361978135"},{"denom":"ASSET18","index":"0.000005850206856034"},{"denom":"ASSET2","index":"0.000011848399796786"},{"denom":"ASSET3","index":"0.000003404782714627"},{"denom":"ASSET4","index":"0.000032159529107613"},{"denom":"ASSET5","index":"0.000002675260702048"},{"denom":"ASSET6","index":"0.000010924211970889"},{"denom":"ASSET7","index":"0.000016877439175785"},{"denom":"ASSET8","index":"0.000024434811349288"},{"denom":"ASSET9","index":"0.000009758176572436"}],"last_reward_claim_height":"188"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET18","shares":"572110009.337554910131107610","reward_history":[{"denom":"ASSET0","index":"0.000001428935211366"},{"denom":"ASSET1","index":"0.000011914564237659"},{"denom":"ASSET10","index":"0.000008301159777028"},{"denom":"ASSET11","index":"0.000011525978642480"},{"denom":"ASSET12","index":"0.000010379209562159"},{"denom":"ASSET13","index":"0.000003571896453874"},{"denom":"ASSET14","index":"0.000010767353582799"},{"denom":"ASSET15","index":"0.000007698410529959"},{"denom":"ASSET16","index":"0.000005367338533420"},{"denom":"ASSET17","index":"0.000003811671429081"},{"denom":"ASSET18","index":"0.000001815754508385"},{"denom":"ASSET2","index":"0.000003517141210917"},{"denom":"ASSET3","index":"0.000001028868678146"},{"denom":"ASSET4","index":"0.000009682846512616"},{"denom":"ASSET5","index":"0.000000798366768278"},{"denom":"ASSET6","index":"0.000003249988614231"},{"denom":"ASSET7","index":"0.000004977428214621"},{"denom":"ASSET8","index":"0.000006495119908522"},{"denom":"ASSET9","index":"0.000002805323052474"}],"last_reward_claim_height":"106"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET1","shares":"49301336.040837629692747422","reward_history":[{"denom":"ASSET0","index":"0.000003155948059833"},{"denom":"ASSET1","index":"0.000026789841893667"},{"denom":"ASSET10","index":"0.000021451154188244"},{"denom":"ASSET11","index":"0.000026640130662201"},{"denom":"ASSET12","index":"0.000025435769508540"},{"denom":"ASSET13","index":"0.000008370086775831"},{"denom":"ASSET14","index":"0.000024440800445484"},{"denom":"ASSET15","index":"0.000019309084443140"},{"denom":"ASSET16","index":"0.000011879786354964"},{"denom":"ASSET17","index":"0.000009347672781307"},{"denom":"ASSET18","index":"0.000003850232310781"},{"denom":"ASSET2","index":"0.000008118311447694"},{"denom":"ASSET3","index":"0.000002251791235916"},{"denom":"ASSET4","index":"0.000021717604836949"},{"denom":"ASSET5","index":"0.000001754185821919"},{"denom":"ASSET6","index":"0.000007079049104243"},{"denom":"ASSET7","index":"0.000011127710678967"},{"denom":"ASSET8","index":"0.000015216376583965"},{"denom":"ASSET9","index":"0.000006456241851980"}],"last_reward_claim_height":"154"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET8","shares":"914009537.637910505105157740","reward_history":[{"denom":"ASSET0","index":"0.000003155948059833"},{"denom":"ASSET1","index":"0.000026789841893667"},{"denom":"ASSET10","index":"0.000021451154188244"},{"denom":"ASSET11","index":"0.000026640130662201"},{"denom":"ASSET12","index":"0.000025435769508540"},{"denom":"ASSET13","index":"0.000008370086775831"},{"denom":"ASSET14","index":"0.000024440800445484"},{"denom":"ASSET15","index":"0.000019309084443140"},{"denom":"ASSET16","index":"0.000011879786354964"},{"denom":"ASSET17","index":"0.000009347672781307"},{"denom":"ASSET18","index":"0.000003850232310781"},{"denom":"ASSET2","index":"0.000008118311447694"},{"denom":"ASSET3","index":"0.000002251791235916"},{"denom":"ASSET4","index":"0.000021717604836949"},{"denom":"ASSET5","index":"0.000001754185821919"},{"denom":"ASSET6","index":"0.000007079049104243"},{"denom":"ASSET7","index":"0.000011127710678967"},{"denom":"ASSET8","index":"0.000015216376583965"},{"denom":"ASSET9","index":"0.000006456241851980"}],"last_reward_claim_height":"164"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET13","shares":"642002351.000000798008922293","reward_history":[{"denom":"ASSET0","index":"0.000001556917620519"},{"denom":"ASSET1","index":"0.000012983455297040"},{"denom":"ASSET10","index":"0.000009045452282177"},{"denom":"ASSET11","index":"0.000012560119972943"},{"denom":"ASSET12","index":"0.000011310507230547"},{"denom":"ASSET13","index":"0.000003892294051298"},{"denom":"ASSET14","index":"0.000011733139339821"},{"denom":"ASSET15","index":"0.000008388649636483"},{"denom":"ASSET16","index":"0.000005848637691896"},{"denom":"ASSET17","index":"0.000004153889965857"},{"denom":"ASSET18","index":"0.000001978846514969"},{"denom":"ASSET2","index":"0.000003832520791251"},{"denom":"ASSET3","index":"0.000001120924429588"},{"denom":"ASSET4","index":"0.000010551035220538"},{"denom":"ASSET5","index":"0.000000869876737390"},{"denom":"ASSET6","index":"0.000003541389854081"},{"denom":"ASSET7","index":"0.000005423895938150"},{"denom":"ASSET8","index":"0.000007077857204393"},{"denom":"ASSET9","index":"0.000003056874840288"}],"last_reward_claim_height":"88"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET16","shares":"526316447.000000000000000000","reward_history":[],"last_reward_claim_height":"30"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET11","shares":"205633840.056157491077199696","reward_history":[{"denom":"ASSET0","index":"0.000003300821213878"},{"denom":"ASSET1","index":"0.000028019420341436"},{"denom":"ASSET10","index":"0.000022435320069293"},{"denom":"ASSET11","index":"0.000027862926397945"},{"denom":"ASSET12","index":"0.000026603097941410"},{"denom":"ASSET13","index":"0.000008754572034100"},{"denom":"ASSET14","index":"0.000025562969906661"},{"denom":"ASSET15","index":"0.000020195785636702"},{"denom":"ASSET16","index":"0.000012425527462944"},{"denom":"ASSET17","index":"0.000009776022796414"},{"denom":"ASSET18","index":"0.000004027118689751"},{"denom":"ASSET2","index":"0.000008490998812362"},{"denom":"ASSET3","index":"0.000002354733406852"},{"denom":"ASSET4","index":"0.000022715681634045"},{"denom":"ASSET5","index":"0.000001835160700580"},{"denom":"ASSET6","index":"0.000007403741836767"},{"denom":"ASSET7","index":"0.000011639103500846"},{"denom":"ASSET8","index":"0.000015914079386056"},{"denom":"ASSET9","index":"0.000006752470475547"}],"last_reward_claim_height":"150"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET15","shares":"786895699.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003300821213878"},{"denom":"ASSET1","index":"0.000028019420341436"},{"denom":"ASSET10","index":"0.000022435320069293"},{"denom":"ASSET11","index":"0.000027862926397945"},{"denom":"ASSET12","index":"0.000026603097941410"},{"denom":"ASSET13","index":"0.000008754572034100"},{"denom":"ASSET14","index":"0.000025562969906661"},{"denom":"ASSET15","index":"0.000020195785636702"},{"denom":"ASSET16","index":"0.000012425527462944"},{"denom":"ASSET17","index":"0.000009776022796414"},{"denom":"ASSET18","index":"0.000004027118689751"},{"denom":"ASSET2","index":"0.000008490998812362"},{"denom":"ASSET3","index":"0.000002354733406852"},{"denom":"ASSET4","index":"0.000022715681634045"},{"denom":"ASSET5","index":"0.000001835160700580"},{"denom":"ASSET6","index":"0.000007403741836767"},{"denom":"ASSET7","index":"0.000011639103500846"},{"denom":"ASSET8","index":"0.000015914079386056"},{"denom":"ASSET9","index":"0.000006752470475547"}],"last_reward_claim_height":"128"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET18","shares":"824239671.000000078302768745","reward_history":[{"denom":"ASSET0","index":"0.000003300821213878"},{"denom":"ASSET1","index":"0.000028019420341436"},{"denom":"ASSET10","index":"0.000022435320069293"},{"denom":"ASSET11","index":"0.000027862926397945"},{"denom":"ASSET12","index":"0.000026603097941410"},{"denom":"ASSET13","index":"0.000008754572034100"},{"denom":"ASSET14","index":"0.000025562969906661"},{"denom":"ASSET15","index":"0.000020195785636702"},{"denom":"ASSET16","index":"0.000012425527462944"},{"denom":"ASSET17","index":"0.000009776022796414"},{"denom":"ASSET18","index":"0.000004027118689751"},{"denom":"ASSET2","index":"0.000008490998812362"},{"denom":"ASSET3","index":"0.000002354733406852"},{"denom":"ASSET4","index":"0.000022715681634045"},{"denom":"ASSET5","index":"0.000001835160700580"},{"denom":"ASSET6","index":"0.000007403741836767"},{"denom":"ASSET7","index":"0.000011639103500846"},{"denom":"ASSET8","index":"0.000015914079386056"},{"denom":"ASSET9","index":"0.000006752470475547"}],"last_reward_claim_height":"143"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET9","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001599876133405"},{"denom":"ASSET1","index":"0.000013345434681176"},{"denom":"ASSET10","index":"0.000009297530322905"},{"denom":"ASSET11","index":"0.000012909953167223"},{"denom":"ASSET12","index":"0.000011625282701060"},{"denom":"ASSET13","index":"0.000004000208763886"},{"denom":"ASSET14","index":"0.000012059727354266"},{"denom":"ASSET15","index":"0.000008622533976277"},{"denom":"ASSET16","index":"0.000006011718614052"},{"denom":"ASSET17","index":"0.000004268755697491"},{"denom":"ASSET18","index":"0.000002033283925863"},{"denom":"ASSET2","index":"0.000003939033979783"},{"denom":"ASSET3","index":"0.000001151952290481"},{"denom":"ASSET4","index":"0.000010845563418934"},{"denom":"ASSET5","index":"0.000000893773964352"},{"denom":"ASSET6","index":"0.000003640418084501"},{"denom":"ASSET7","index":"0.000005575200239351"},{"denom":"ASSET8","index":"0.000007274615004517"},{"denom":"ASSET9","index":"0.000003141688064949"}],"last_reward_claim_height":"85"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET11","shares":"213387633.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003205518103121"},{"denom":"ASSET1","index":"0.000027209804037075"},{"denom":"ASSET10","index":"0.000021755111918776"},{"denom":"ASSET11","index":"0.000027048910570117"},{"denom":"ASSET12","index":"0.000025809934262776"},{"denom":"ASSET13","index":"0.000008496852467218"},{"denom":"ASSET14","index":"0.000024820667393427"},{"denom":"ASSET15","index":"0.000019589132093549"},{"denom":"ASSET16","index":"0.000012068310128279"},{"denom":"ASSET17","index":"0.000009484236214143"},{"denom":"ASSET18","index":"0.000003912244660385"},{"denom":"ASSET2","index":"0.000008242746790311"},{"denom":"ASSET3","index":"0.000002287536756020"},{"denom":"ASSET4","index":"0.000022059248469095"},{"denom":"ASSET5","index":"0.000001781848402938"},{"denom":"ASSET6","index":"0.000007192715838846"},{"denom":"ASSET7","index":"0.000011303047666497"},{"denom":"ASSET8","index":"0.000015447099928639"},{"denom":"ASSET9","index":"0.000006555210966575"}],"last_reward_claim_height":"135"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET5","shares":"236318735.824907158010744140","reward_history":[{"denom":"ASSET0","index":"0.000003374964488748"},{"denom":"ASSET1","index":"0.000028642371697541"},{"denom":"ASSET10","index":"0.000022886358038922"},{"denom":"ASSET11","index":"0.000028469467846578"},{"denom":"ASSET12","index":"0.000027158021136678"},{"denom":"ASSET13","index":"0.000008943216545101"},{"denom":"ASSET14","index":"0.000026126056006670"},{"denom":"ASSET15","index":"0.000020609372613995"},{"denom":"ASSET16","index":"0.000012704733728960"},{"denom":"ASSET17","index":"0.000009980025667275"},{"denom":"ASSET18","index":"0.000004119620826099"},{"denom":"ASSET2","index":"0.000008675935346246"},{"denom":"ASSET3","index":"0.000002408702445844"},{"denom":"ASSET4","index":"0.000023220763838917"},{"denom":"ASSET5","index":"0.000001876440105393"},{"denom":"ASSET6","index":"0.000007572949563502"},{"denom":"ASSET7","index":"0.000011897934490553"},{"denom":"ASSET8","index":"0.000016258236310419"},{"denom":"ASSET9","index":"0.000006900426530312"}],"last_reward_claim_height":"143"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET7","shares":"440993020.806112903495075304","reward_history":[{"denom":"ASSET0","index":"0.000001693699328345"},{"denom":"ASSET1","index":"0.000014121235265065"},{"denom":"ASSET10","index":"0.000009838380374958"},{"denom":"ASSET11","index":"0.000013660499756586"},{"denom":"ASSET12","index":"0.000012301569616423"},{"denom":"ASSET13","index":"0.000004233563721295"},{"denom":"ASSET14","index":"0.000012760935925768"},{"denom":"ASSET15","index":"0.000009123658427184"},{"denom":"ASSET16","index":"0.000006361299175013"},{"denom":"ASSET17","index":"0.000004517672541531"},{"denom":"ASSET18","index":"0.000002151696438556"},{"denom":"ASSET2","index":"0.000004168526762446"},{"denom":"ASSET3","index":"0.000001219271828530"},{"denom":"ASSET4","index":"0.000011475942538822"},{"denom":"ASSET5","index":"0.000000946116601363"},{"denom":"ASSET6","index":"0.000003852241762569"},{"denom":"ASSET7","index":"0.000005899194467400"},{"denom":"ASSET8","index":"0.000007698322129037"},{"denom":"ASSET9","index":"0.000003325100096108"}],"last_reward_claim_height":"96"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET10","shares":"928527877.672763175480974364","reward_history":[{"denom":"ASSET0","index":"0.000005011502465784"},{"denom":"ASSET1","index":"0.000041062504292010"},{"denom":"ASSET10","index":"0.000035499667721994"},{"denom":"ASSET11","index":"0.000042618778374096"},{"denom":"ASSET12","index":"0.000040581702631690"},{"denom":"ASSET13","index":"0.000013738625153388"},{"denom":"ASSET14","index":"0.000039311910991656"},{"denom":"ASSET15","index":"0.000031866190350994"},{"denom":"ASSET16","index":"0.000018219089143418"},{"denom":"ASSET17","index":"0.000014746275469735"},{"denom":"ASSET18","index":"0.000006121555088654"},{"denom":"ASSET2","index":"0.000012397631677469"},{"denom":"ASSET3","index":"0.000003559564063326"},{"denom":"ASSET4","index":"0.000033648681772773"},{"denom":"ASSET5","index":"0.000002794335013820"},{"denom":"ASSET6","index":"0.000011402472728772"},{"denom":"ASSET7","index":"0.000017622476297013"},{"denom":"ASSET8","index":"0.000025338774425022"},{"denom":"ASSET9","index":"0.000010179577235599"}],"last_reward_claim_height":"200"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET13","shares":"524459692.438836795895966712","reward_history":[{"denom":"ASSET0","index":"0.000003374964488748"},{"denom":"ASSET1","index":"0.000028642371697541"},{"denom":"ASSET10","index":"0.000022886358038922"},{"denom":"ASSET11","index":"0.000028469467846578"},{"denom":"ASSET12","index":"0.000027158021136678"},{"denom":"ASSET13","index":"0.000008943216545101"},{"denom":"ASSET14","index":"0.000026126056006670"},{"denom":"ASSET15","index":"0.000020609372613995"},{"denom":"ASSET16","index":"0.000012704733728960"},{"denom":"ASSET17","index":"0.000009980025667275"},{"denom":"ASSET18","index":"0.000004119620826099"},{"denom":"ASSET2","index":"0.000008675935346246"},{"denom":"ASSET3","index":"0.000002408702445844"},{"denom":"ASSET4","index":"0.000023220763838917"},{"denom":"ASSET5","index":"0.000001876440105393"},{"denom":"ASSET6","index":"0.000007572949563502"},{"denom":"ASSET7","index":"0.000011897934490553"},{"denom":"ASSET8","index":"0.000016258236310419"},{"denom":"ASSET9","index":"0.000006900426530312"}],"last_reward_claim_height":"135"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET1","shares":"361481000.000000000000000000","reward_history":[],"last_reward_claim_height":"31"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET8","shares":"365848714.768368054642302529","reward_history":[{"denom":"ASSET0","index":"0.000004741115250856"},{"denom":"ASSET1","index":"0.000038790779474096"},{"denom":"ASSET10","index":"0.000033526543709442"},{"denom":"ASSET11","index":"0.000040298328047202"},{"denom":"ASSET12","index":"0.000038314311285370"},{"denom":"ASSET13","index":"0.000012998828678335"},{"denom":"ASSET14","index":"0.000037197405875143"},{"denom":"ASSET15","index":"0.000030112000039690"},{"denom":"ASSET16","index":"0.000017216651427905"},{"denom":"ASSET17","index":"0.000013916075752291"},{"denom":"ASSET18","index":"0.000005799216997102"},{"denom":"ASSET2","index":"0.000011701668315626"},{"denom":"ASSET3","index":"0.000003368965515041"},{"denom":"ASSET4","index":"0.000031802384839558"},{"denom":"ASSET5","index":"0.000002644802785755"},{"denom":"ASSET6","index":"0.000010800204716581"},{"denom":"ASSET7","index":"0.000016669242053645"},{"denom":"ASSET8","index":"0.000023984974554640"},{"denom":"ASSET9","index":"0.000009620376305923"}],"last_reward_claim_height":"189"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET14","shares":"935811133.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003135138573804"},{"denom":"ASSET1","index":"0.000026601246250396"},{"denom":"ASSET10","index":"0.000021147351718785"},{"denom":"ASSET11","index":"0.000026411423528042"},{"denom":"ASSET12","index":"0.000025139747174388"},{"denom":"ASSET13","index":"0.000008292603180789"},{"denom":"ASSET14","index":"0.000024256405788980"},{"denom":"ASSET15","index":"0.000019064302195638"},{"denom":"ASSET16","index":"0.000011804656377100"},{"denom":"ASSET17","index":"0.000009238224400983"},{"denom":"ASSET18","index":"0.000003834531376561"},{"denom":"ASSET2","index":"0.000008049169006780"},{"denom":"ASSET3","index":"0.000002239375819558"},{"denom":"ASSET4","index":"0.000021568278304468"},{"denom":"ASSET5","index":"0.000001743998311515"},{"denom":"ASSET6","index":"0.000007041675703373"},{"denom":"ASSET7","index":"0.000011051161098588"},{"denom":"ASSET8","index":"0.000015073103234225"},{"denom":"ASSET9","index":"0.000006402150772125"}],"last_reward_claim_height":"177"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET14","shares":"348115065.352977000654343020","reward_history":[{"denom":"ASSET0","index":"0.000004889429454812"},{"denom":"ASSET1","index":"0.000039989731936733"},{"denom":"ASSET10","index":"0.000034568578318127"},{"denom":"ASSET11","index":"0.000041543640892993"},{"denom":"ASSET12","index":"0.000039505045921282"},{"denom":"ASSET13","index":"0.000013400367987193"},{"denom":"ASSET14","index":"0.000038343482662039"},{"denom":"ASSET15","index":"0.000031045520521246"},{"denom":"ASSET16","index":"0.000017750078362345"},{"denom":"ASSET17","index":"0.000014348913165267"},{"denom":"ASSET18","index":"0.000005978243263456"},{"denom":"ASSET2","index":"0.000012064952584567"},{"denom":"ASSET3","index":"0.000003472718319064"},{"denom":"ASSET4","index":"0.000032783876502129"},{"denom":"ASSET5","index":"0.000002726555594867"},{"denom":"ASSET6","index":"0.000011131690090434"},{"denom":"ASSET7","index":"0.000017184696487705"},{"denom":"ASSET8","index":"0.000024726779414247"},{"denom":"ASSET9","index":"0.000009918489437787"}],"last_reward_claim_height":"188"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET3","shares":"17327307.000000000000000000","reward_history":[],"last_reward_claim_height":"55"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET7","shares":"63308578.029999366713507630","reward_history":[{"denom":"ASSET0","index":"0.000004735743633450"},{"denom":"ASSET1","index":"0.000038764276524740"},{"denom":"ASSET10","index":"0.000033586519367190"},{"denom":"ASSET11","index":"0.000040280391200319"},{"denom":"ASSET12","index":"0.000038356885819899"},{"denom":"ASSET13","index":"0.000012993030276872"},{"denom":"ASSET14","index":"0.000037158659277679"},{"denom":"ASSET15","index":"0.000030145729145842"},{"denom":"ASSET16","index":"0.000017199047950885"},{"denom":"ASSET17","index":"0.000013933740432395"},{"denom":"ASSET18","index":"0.000005784180771857"},{"denom":"ASSET2","index":"0.000011703467064493"},{"denom":"ASSET3","index":"0.000003362304742497"},{"denom":"ASSET4","index":"0.000031774057594646"},{"denom":"ASSET5","index":"0.000002639913039554"},{"denom":"ASSET6","index":"0.000010776379546376"},{"denom":"ASSET7","index":"0.000016650635816499"},{"denom":"ASSET8","index":"0.000023971845307145"},{"denom":"ASSET9","index":"0.000009616763721083"}],"last_reward_claim_height":"188"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET15","shares":"439597559.090872596539818826","reward_history":[{"denom":"ASSET0","index":"0.000003150995592381"},{"denom":"ASSET1","index":"0.000026735906318713"},{"denom":"ASSET10","index":"0.000021370928366269"},{"denom":"ASSET11","index":"0.000026577057751538"},{"denom":"ASSET12","index":"0.000025356196217934"},{"denom":"ASSET13","index":"0.000008349049177946"},{"denom":"ASSET14","index":"0.000024388519635576"},{"denom":"ASSET15","index":"0.000019243917228958"},{"denom":"ASSET16","index":"0.000011858566692713"},{"denom":"ASSET17","index":"0.000009317567603522"},{"denom":"ASSET18","index":"0.000003845362315572"},{"denom":"ASSET2","index":"0.000008099062572798"},{"denom":"ASSET3","index":"0.000002247710476517"},{"denom":"ASSET4","index":"0.000021674805285583"},{"denom":"ASSET5","index":"0.000001751018453776"},{"denom":"ASSET6","index":"0.000007067532365991"},{"denom":"ASSET7","index":"0.000011106766164564"},{"denom":"ASSET8","index":"0.000015177641578730"},{"denom":"ASSET9","index":"0.000006441123951375"}],"last_reward_claim_height":"129"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET1","shares":"113645747.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004888700900011"},{"denom":"ASSET1","index":"0.000040037627149470"},{"denom":"ASSET10","index":"0.000034464755587246"},{"denom":"ASSET11","index":"0.000041511937107496"},{"denom":"ASSET12","index":"0.000039458475289926"},{"denom":"ASSET13","index":"0.000013374782972304"},{"denom":"ASSET14","index":"0.000038311177936897"},{"denom":"ASSET15","index":"0.000030963055044200"},{"denom":"ASSET16","index":"0.000017773913841661"},{"denom":"ASSET17","index":"0.000014337937998925"},{"denom":"ASSET18","index":"0.000005979482656036"},{"denom":"ASSET2","index":"0.000012077606357069"},{"denom":"ASSET3","index":"0.000003473452668855"},{"denom":"ASSET4","index":"0.000032809761939294"},{"denom":"ASSET5","index":"0.000002726114739137"},{"denom":"ASSET6","index":"0.000011126485408714"},{"denom":"ASSET7","index":"0.000017183485914772"},{"denom":"ASSET8","index":"0.000024666544388941"},{"denom":"ASSET9","index":"0.000009916680206380"}],"last_reward_claim_height":"184"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET6","shares":"892928178.956275436604670516","reward_history":[{"denom":"ASSET0","index":"0.000004888700900011"},{"denom":"ASSET1","index":"0.000040037627149470"},{"denom":"ASSET10","index":"0.000034464755587246"},{"denom":"ASSET11","index":"0.000041511937107496"},{"denom":"ASSET12","index":"0.000039458475289926"},{"denom":"ASSET13","index":"0.000013374782972304"},{"denom":"ASSET14","index":"0.000038311177936897"},{"denom":"ASSET15","index":"0.000030963055044200"},{"denom":"ASSET16","index":"0.000017773913841661"},{"denom":"ASSET17","index":"0.000014337937998925"},{"denom":"ASSET18","index":"0.000005979482656036"},{"denom":"ASSET2","index":"0.000012077606357069"},{"denom":"ASSET3","index":"0.000003473452668855"},{"denom":"ASSET4","index":"0.000032809761939294"},{"denom":"ASSET5","index":"0.000002726114739137"},{"denom":"ASSET6","index":"0.000011126485408714"},{"denom":"ASSET7","index":"0.000017183485914772"},{"denom":"ASSET8","index":"0.000024666544388941"},{"denom":"ASSET9","index":"0.000009916680206380"}],"last_reward_claim_height":"192"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET10","shares":"175139735.454924703369171391","reward_history":[{"denom":"ASSET0","index":"0.000001735896630597"},{"denom":"ASSET1","index":"0.000014474259966527"},{"denom":"ASSET10","index":"0.000010084408758147"},{"denom":"ASSET11","index":"0.000014002239606889"},{"denom":"ASSET12","index":"0.000012609068112910"},{"denom":"ASSET13","index":"0.000004339122939062"},{"denom":"ASSET14","index":"0.000013079851197687"},{"denom":"ASSET15","index":"0.000009351942040176"},{"denom":"ASSET16","index":"0.000006520438519776"},{"denom":"ASSET17","index":"0.000004630501168930"},{"denom":"ASSET18","index":"0.000002205442440512"},{"denom":"ASSET2","index":"0.000004272310096544"},{"denom":"ASSET3","index":"0.000001249647610052"},{"denom":"ASSET4","index":"0.000011762772107687"},{"denom":"ASSET5","index":"0.000000970023491367"},{"denom":"ASSET6","index":"0.000003948144082847"},{"denom":"ASSET7","index":"0.000006046562247845"},{"denom":"ASSET8","index":"0.000007890101791387"},{"denom":"ASSET9","index":"0.000003408073605830"}],"last_reward_claim_height":"118"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET12","shares":"523953916.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003300304206809"},{"denom":"ASSET1","index":"0.000027981868665615"},{"denom":"ASSET10","index":"0.000022221493016134"},{"denom":"ASSET11","index":"0.000027777532118325"},{"denom":"ASSET12","index":"0.000026428557640091"},{"denom":"ASSET13","index":"0.000008720047886627"},{"denom":"ASSET14","index":"0.000025512138164618"},{"denom":"ASSET15","index":"0.000020036362120252"},{"denom":"ASSET16","index":"0.000012421157074829"},{"denom":"ASSET17","index":"0.000009711490167791"},{"denom":"ASSET18","index":"0.000004036282970136"},{"denom":"ASSET2","index":"0.000008465189250700"},{"denom":"ASSET3","index":"0.000002356240815614"},{"denom":"ASSET4","index":"0.000022687774056492"},{"denom":"ASSET5","index":"0.000001835200922241"},{"denom":"ASSET6","index":"0.000007409270759323"},{"denom":"ASSET7","index":"0.000011627060915230"},{"denom":"ASSET8","index":"0.000015852235873304"},{"denom":"ASSET9","index":"0.000006733690564218"}],"last_reward_claim_height":"127"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET15","shares":"31336069.882212793724275351","reward_history":[{"denom":"ASSET0","index":"0.000003300304206809"},{"denom":"ASSET1","index":"0.000027981868665615"},{"denom":"ASSET10","index":"0.000022221493016134"},{"denom":"ASSET11","index":"0.000027777532118325"},{"denom":"ASSET12","index":"0.000026428557640091"},{"denom":"ASSET13","index":"0.000008720047886627"},{"denom":"ASSET14","index":"0.000025512138164618"},{"denom":"ASSET15","index":"0.000020036362120252"},{"denom":"ASSET16","index":"0.000012421157074829"},{"denom":"ASSET17","index":"0.000009711490167791"},{"denom":"ASSET18","index":"0.000004036282970136"},{"denom":"ASSET2","index":"0.000008465189250700"},{"denom":"ASSET3","index":"0.000002356240815614"},{"denom":"ASSET4","index":"0.000022687774056492"},{"denom":"ASSET5","index":"0.000001835200922241"},{"denom":"ASSET6","index":"0.000007409270759323"},{"denom":"ASSET7","index":"0.000011627060915230"},{"denom":"ASSET8","index":"0.000015852235873304"},{"denom":"ASSET9","index":"0.000006733690564218"}],"last_reward_claim_height":"182"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET18","shares":"860921121.606140685427948638","reward_history":[{"denom":"ASSET0","index":"0.000001735896630597"},{"denom":"ASSET1","index":"0.000014474259966527"},{"denom":"ASSET10","index":"0.000010084408758147"},{"denom":"ASSET11","index":"0.000014002239606889"},{"denom":"ASSET12","index":"0.000012609068112910"},{"denom":"ASSET13","index":"0.000004339122939062"},{"denom":"ASSET14","index":"0.000013079851197687"},{"denom":"ASSET15","index":"0.000009351942040176"},{"denom":"ASSET16","index":"0.000006520438519776"},{"denom":"ASSET17","index":"0.000004630501168930"},{"denom":"ASSET18","index":"0.000002205442440512"},{"denom":"ASSET2","index":"0.000004272310096544"},{"denom":"ASSET3","index":"0.000001249647610052"},{"denom":"ASSET4","index":"0.000011762772107687"},{"denom":"ASSET5","index":"0.000000970023491367"},{"denom":"ASSET6","index":"0.000003948144082847"},{"denom":"ASSET7","index":"0.000006046562247845"},{"denom":"ASSET8","index":"0.000007890101791387"},{"denom":"ASSET9","index":"0.000003408073605830"}],"last_reward_claim_height":"63"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET17","shares":"322380407.444347052501165010","reward_history":[{"denom":"ASSET0","index":"0.000003383074331503"},{"denom":"ASSET1","index":"0.000028697774885580"},{"denom":"ASSET10","index":"0.000022880621123289"},{"denom":"ASSET11","index":"0.000028511966470743"},{"denom":"ASSET12","index":"0.000027173358086556"},{"denom":"ASSET13","index":"0.000008954537947194"},{"denom":"ASSET14","index":"0.000026172910691250"},{"denom":"ASSET15","index":"0.000020614154391480"},{"denom":"ASSET16","index":"0.000012732692592075"},{"denom":"ASSET17","index":"0.000009985655741818"},{"denom":"ASSET18","index":"0.000004132359094826"},{"denom":"ASSET2","index":"0.000008689052893949"},{"denom":"ASSET3","index":"0.000002414485946546"},{"denom":"ASSET4","index":"0.000023266612079392"},{"denom":"ASSET5","index":"0.000001880944791026"},{"denom":"ASSET6","index":"0.000007591453768301"},{"denom":"ASSET7","index":"0.000011922604903868"},{"denom":"ASSET8","index":"0.000016278329144958"},{"denom":"ASSET9","index":"0.000006911169878531"}],"last_reward_claim_height":"129"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET5","shares":"188767050.568793283177805812","reward_history":[{"denom":"ASSET0","index":"0.000003006064648013"},{"denom":"ASSET1","index":"0.000025531157590212"},{"denom":"ASSET10","index":"0.000020524407173472"},{"denom":"ASSET11","index":"0.000025409258384489"},{"denom":"ASSET12","index":"0.000024300714605646"},{"denom":"ASSET13","index":"0.000007986286383048"},{"denom":"ASSET14","index":"0.000023298685931189"},{"denom":"ASSET15","index":"0.000018459726056254"},{"denom":"ASSET16","index":"0.000011316095008653"},{"denom":"ASSET17","index":"0.000008930145684163"},{"denom":"ASSET18","index":"0.000003662445744281"},{"denom":"ASSET2","index":"0.000007743120539446"},{"denom":"ASSET3","index":"0.000002143639104141"},{"denom":"ASSET4","index":"0.000020695936675740"},{"denom":"ASSET5","index":"0.000001670457298921"},{"denom":"ASSET6","index":"0.000006739935351518"},{"denom":"ASSET7","index":"0.000010603283023237"},{"denom":"ASSET8","index":"0.000014518439118465"},{"denom":"ASSET9","index":"0.000006156725809403"}],"last_reward_claim_height":"161"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET14","shares":"895224478.285093838544599832","reward_history":[{"denom":"ASSET0","index":"0.000003006064648013"},{"denom":"ASSET1","index":"0.000025531157590212"},{"denom":"ASSET10","index":"0.000020524407173472"},{"denom":"ASSET11","index":"0.000025409258384489"},{"denom":"ASSET12","index":"0.000024300714605646"},{"denom":"ASSET13","index":"0.000007986286383048"},{"denom":"ASSET14","index":"0.000023298685931189"},{"denom":"ASSET15","index":"0.000018459726056254"},{"denom":"ASSET16","index":"0.000011316095008653"},{"denom":"ASSET17","index":"0.000008930145684163"},{"denom":"ASSET18","index":"0.000003662445744281"},{"denom":"ASSET2","index":"0.000007743120539446"},{"denom":"ASSET3","index":"0.000002143639104141"},{"denom":"ASSET4","index":"0.000020695936675740"},{"denom":"ASSET5","index":"0.000001670457298921"},{"denom":"ASSET6","index":"0.000006739935351518"},{"denom":"ASSET7","index":"0.000010603283023237"},{"denom":"ASSET8","index":"0.000014518439118465"},{"denom":"ASSET9","index":"0.000006156725809403"}],"last_reward_claim_height":"152"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET18","shares":"17684951.000000000000000000","reward_history":[],"last_reward_claim_height":"22"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET0","shares":"443571384.000000000000000000","reward_history":[],"last_reward_claim_height":"6"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET8","shares":"646313014.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002611689387046"},{"denom":"ASSET1","index":"0.000022118950462866"},{"denom":"ASSET10","index":"0.000017388824351878"},{"denom":"ASSET11","index":"0.000021911701626113"},{"denom":"ASSET12","index":"0.000020757567192719"},{"denom":"ASSET13","index":"0.000006870825151743"},{"denom":"ASSET14","index":"0.000020152250667519"},{"denom":"ASSET15","index":"0.000015711809347683"},{"denom":"ASSET16","index":"0.000009830001439303"},{"denom":"ASSET17","index":"0.000007627368499381"},{"denom":"ASSET18","index":"0.000003205559295774"},{"denom":"ASSET2","index":"0.000006678615536452"},{"denom":"ASSET3","index":"0.000001865584989735"},{"denom":"ASSET4","index":"0.000017938012267073"},{"denom":"ASSET5","index":"0.000001453547274796"},{"denom":"ASSET6","index":"0.000005870892100855"},{"denom":"ASSET7","index":"0.000009195154067126"},{"denom":"ASSET8","index":"0.000012492245582088"},{"denom":"ASSET9","index":"0.000005313335607946"}],"last_reward_claim_height":"179"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET17","shares":"842658369.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004128673807148"},{"denom":"ASSET1","index":"0.000033632560650143"},{"denom":"ASSET10","index":"0.000029081535724795"},{"denom":"ASSET11","index":"0.000035028568986164"},{"denom":"ASSET12","index":"0.000033201559527363"},{"denom":"ASSET13","index":"0.000011316100845703"},{"denom":"ASSET14","index":"0.000032375709917063"},{"denom":"ASSET15","index":"0.000026147141240153"},{"denom":"ASSET16","index":"0.000014941858705588"},{"denom":"ASSET17","index":"0.000012045897017741"},{"denom":"ASSET18","index":"0.000005061341273485"},{"denom":"ASSET2","index":"0.000010128476734526"},{"denom":"ASSET3","index":"0.000002932325287224"},{"denom":"ASSET4","index":"0.000027604756201839"},{"denom":"ASSET5","index":"0.000002304474576996"},{"denom":"ASSET6","index":"0.000009420924093825"},{"denom":"ASSET7","index":"0.000014501846151758"},{"denom":"ASSET8","index":"0.000020910001307184"},{"denom":"ASSET9","index":"0.000008353073446808"}],"last_reward_claim_height":"190"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET3","shares":"775161339.000000000000000000","reward_history":[],"last_reward_claim_height":"37"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET8","shares":"16610353.428038587570419875","reward_history":[{"denom":"ASSET0","index":"0.000003939201132718"},{"denom":"ASSET1","index":"0.000032105787247280"},{"denom":"ASSET10","index":"0.000028804547526948"},{"denom":"ASSET11","index":"0.000033799593882103"},{"denom":"ASSET12","index":"0.000032449700596289"},{"denom":"ASSET13","index":"0.000010978331571892"},{"denom":"ASSET14","index":"0.000031126082637172"},{"denom":"ASSET15","index":"0.000025740142538588"},{"denom":"ASSET16","index":"0.000014208856557445"},{"denom":"ASSET17","index":"0.000011764407155003"},{"denom":"ASSET18","index":"0.000004780051086265"},{"denom":"ASSET2","index":"0.000009727516832171"},{"denom":"ASSET3","index":"0.000002790647417131"},{"denom":"ASSET4","index":"0.000026364763247740"},{"denom":"ASSET5","index":"0.000002196158070158"},{"denom":"ASSET6","index":"0.000008970946330284"},{"denom":"ASSET7","index":"0.000013870661008242"},{"denom":"ASSET8","index":"0.000020307763806499"},{"denom":"ASSET9","index":"0.000008041754758616"}],"last_reward_claim_height":"195"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET11","shares":"121071906.000000000000000000","reward_history":[],"last_reward_claim_height":"6"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET15","shares":"666428804.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000000860911540335"},{"denom":"ASSET1","index":"0.000007178593209511"},{"denom":"ASSET10","index":"0.000005001581264509"},{"denom":"ASSET11","index":"0.000006944753046495"},{"denom":"ASSET12","index":"0.000006253725385275"},{"denom":"ASSET13","index":"0.000002152029021603"},{"denom":"ASSET14","index":"0.000006487065889823"},{"denom":"ASSET15","index":"0.000004638329558286"},{"denom":"ASSET16","index":"0.000003233789604786"},{"denom":"ASSET17","index":"0.000002296430318850"},{"denom":"ASSET18","index":"0.000001093752386415"},{"denom":"ASSET2","index":"0.000002119051562716"},{"denom":"ASSET3","index":"0.000000619576500299"},{"denom":"ASSET4","index":"0.000005834012272169"},{"denom":"ASSET5","index":"0.000000481171104668"},{"denom":"ASSET6","index":"0.000001958161536025"},{"denom":"ASSET7","index":"0.000002998950124834"},{"denom":"ASSET8","index":"0.000003913325121242"},{"denom":"ASSET9","index":"0.000001690344597186"}],"last_reward_claim_height":"118"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET16","shares":"1000035740.388057776000000000","reward_history":[{"denom":"ASSET0","index":"0.000002357406510396"},{"denom":"ASSET1","index":"0.000020099972826550"},{"denom":"ASSET10","index":"0.000016611857270119"},{"denom":"ASSET11","index":"0.000020122040980663"},{"denom":"ASSET12","index":"0.000019473664705632"},{"denom":"ASSET13","index":"0.000006342954228467"},{"denom":"ASSET14","index":"0.000018379978414574"},{"denom":"ASSET15","index":"0.000014858739059306"},{"denom":"ASSET16","index":"0.000008878274052948"},{"denom":"ASSET17","index":"0.000007156982288871"},{"denom":"ASSET18","index":"0.000002845018303307"},{"denom":"ASSET2","index":"0.000006129987919866"},{"denom":"ASSET3","index":"0.000001678183905493"},{"denom":"ASSET4","index":"0.000016284739258605"},{"denom":"ASSET5","index":"0.000001308892339296"},{"denom":"ASSET6","index":"0.000005269046474537"},{"denom":"ASSET7","index":"0.000008337197620164"},{"denom":"ASSET8","index":"0.000011530009666752"},{"denom":"ASSET9","index":"0.000004871853664260"}],"last_reward_claim_height":"161"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET1","shares":"250053358.977540309571933008","reward_history":[{"denom":"ASSET0","index":"0.000004408639086951"},{"denom":"ASSET1","index":"0.000036028768930796"},{"denom":"ASSET10","index":"0.000031790158219615"},{"denom":"ASSET11","index":"0.000037682589230029"},{"denom":"ASSET12","index":"0.000036048426643578"},{"denom":"ASSET13","index":"0.000012197269347349"},{"denom":"ASSET14","index":"0.000034726305858976"},{"denom":"ASSET15","index":"0.000028463702439045"},{"denom":"ASSET16","index":"0.000015962383027793"},{"denom":"ASSET17","index":"0.000013083625448781"},{"denom":"ASSET18","index":"0.000005366451960217"},{"denom":"ASSET2","index":"0.000010899158965125"},{"denom":"ASSET3","index":"0.000003126684527234"},{"denom":"ASSET4","index":"0.000029555870827765"},{"denom":"ASSET5","index":"0.000002458236264620"},{"denom":"ASSET6","index":"0.000010036434145152"},{"denom":"ASSET7","index":"0.000015516634437691"},{"denom":"ASSET8","index":"0.000022532118254512"},{"denom":"ASSET9","index":"0.000008980939918496"}],"last_reward_claim_height":"198"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET4","shares":"750109376.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002792091306062"},{"denom":"ASSET1","index":"0.000023760392481519"},{"denom":"ASSET10","index":"0.000019330735214415"},{"denom":"ASSET11","index":"0.000023705763948043"},{"denom":"ASSET12","index":"0.000022788595153270"},{"denom":"ASSET13","index":"0.000007460432475948"},{"denom":"ASSET14","index":"0.000021701401606991"},{"denom":"ASSET15","index":"0.000017344296121870"},{"denom":"ASSET16","index":"0.000010515175863945"},{"denom":"ASSET17","index":"0.000008375559402161"},{"denom":"ASSET18","index":"0.000003388923471278"},{"denom":"ASSET2","index":"0.000007222909907971"},{"denom":"ASSET3","index":"0.000001989926471838"},{"denom":"ASSET4","index":"0.000019255294602933"},{"denom":"ASSET5","index":"0.000001551437823125"},{"denom":"ASSET6","index":"0.000006253588147261"},{"denom":"ASSET7","index":"0.000009862028954195"},{"denom":"ASSET8","index":"0.000013562244421912"},{"denom":"ASSET9","index":"0.000005741841810541"}],"last_reward_claim_height":"173"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET1","shares":"16431250.000000000000000000","reward_history":[],"last_reward_claim_height":"63"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET2","shares":"377228558.767950792595457140","reward_history":[{"denom":"ASSET0","index":"0.000001507638919625"},{"denom":"ASSET1","index":"0.000012569401049902"},{"denom":"ASSET10","index":"0.000008757228353136"},{"denom":"ASSET11","index":"0.000012160184771718"},{"denom":"ASSET12","index":"0.000010949766096248"},{"denom":"ASSET13","index":"0.000003769097299062"},{"denom":"ASSET14","index":"0.000011358982374432"},{"denom":"ASSET15","index":"0.000008124020006893"},{"denom":"ASSET16","index":"0.000005660107258249"},{"denom":"ASSET17","index":"0.000004018934605743"},{"denom":"ASSET18","index":"0.000001912547658039"},{"denom":"ASSET2","index":"0.000003708791742277"},{"denom":"ASSET3","index":"0.000001085500022130"},{"denom":"ASSET4","index":"0.000010217484335287"},{"denom":"ASSET5","index":"0.000000839970255220"},{"denom":"ASSET6","index":"0.000003428801657204"},{"denom":"ASSET7","index":"0.000005250890980065"},{"denom":"ASSET8","index":"0.000006853295774638"},{"denom":"ASSET9","index":"0.000002959279822235"}],"last_reward_claim_height":"103"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET15","shares":"1044153700.999927438378855527","reward_history":[{"denom":"ASSET0","index":"0.000003131246414749"},{"denom":"ASSET1","index":"0.000026589761836242"},{"denom":"ASSET10","index":"0.000021355242603721"},{"denom":"ASSET11","index":"0.000026458316408852"},{"denom":"ASSET12","index":"0.000025293988029420"},{"denom":"ASSET13","index":"0.000008316673174883"},{"denom":"ASSET14","index":"0.000024263343459355"},{"denom":"ASSET15","index":"0.000019213959771091"},{"denom":"ASSET16","index":"0.000011784585795875"},{"denom":"ASSET17","index":"0.000009292893547134"},{"denom":"ASSET18","index":"0.000003813004198036"},{"denom":"ASSET2","index":"0.000008060944762894"},{"denom":"ASSET3","index":"0.000002234070199415"},{"denom":"ASSET4","index":"0.000021557233504015"},{"denom":"ASSET5","index":"0.000001738116490695"},{"denom":"ASSET6","index":"0.000007021386599103"},{"denom":"ASSET7","index":"0.000011043212117572"},{"denom":"ASSET8","index":"0.000015117900391662"},{"denom":"ASSET9","index":"0.000006411442995536"}],"last_reward_claim_height":"157"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET6","shares":"725162516.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001538667310820"},{"denom":"ASSET1","index":"0.000012827917927858"},{"denom":"ASSET10","index":"0.000008937244372687"},{"denom":"ASSET11","index":"0.000012409488429871"},{"denom":"ASSET12","index":"0.000011174685151587"},{"denom":"ASSET13","index":"0.000003845530209513"},{"denom":"ASSET14","index":"0.000011592355937882"},{"denom":"ASSET15","index":"0.000008288166520415"},{"denom":"ASSET16","index":"0.000005778727600031"},{"denom":"ASSET17","index":"0.000004103871540546"},{"denom":"ASSET18","index":"0.000001954820673732"},{"denom":"ASSET2","index":"0.000003786730053405"},{"denom":"ASSET3","index":"0.000001107719069920"},{"denom":"ASSET4","index":"0.000010424698644316"},{"denom":"ASSET5","index":"0.000000859620346726"},{"denom":"ASSET6","index":"0.000003499178322240"},{"denom":"ASSET7","index":"0.000005359160034507"},{"denom":"ASSET8","index":"0.000006993045662639"},{"denom":"ASSET9","index":"0.000003020431244761"}],"last_reward_claim_height":"122"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET10","shares":"644625756.999999996132245458","reward_history":[{"denom":"ASSET0","index":"0.000001538667310820"},{"denom":"ASSET1","index":"0.000012827917927858"},{"denom":"ASSET10","index":"0.000008937244372687"},{"denom":"ASSET11","index":"0.000012409488429871"},{"denom":"ASSET12","index":"0.000011174685151587"},{"denom":"ASSET13","index":"0.000003845530209513"},{"denom":"ASSET14","index":"0.000011592355937882"},{"denom":"ASSET15","index":"0.000008288166520415"},{"denom":"ASSET16","index":"0.000005778727600031"},{"denom":"ASSET17","index":"0.000004103871540546"},{"denom":"ASSET18","index":"0.000001954820673732"},{"denom":"ASSET2","index":"0.000003786730053405"},{"denom":"ASSET3","index":"0.000001107719069920"},{"denom":"ASSET4","index":"0.000010424698644316"},{"denom":"ASSET5","index":"0.000000859620346726"},{"denom":"ASSET6","index":"0.000003499178322240"},{"denom":"ASSET7","index":"0.000005359160034507"},{"denom":"ASSET8","index":"0.000006993045662639"},{"denom":"ASSET9","index":"0.000003020431244761"}],"last_reward_claim_height":"82"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET6","shares":"192653104.000000000000000000","reward_history":[],"last_reward_claim_height":"38"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET11","shares":"457691602.271014752587192286","reward_history":[{"denom":"ASSET0","index":"0.000003140601357292"},{"denom":"ASSET1","index":"0.000026678854887219"},{"denom":"ASSET10","index":"0.000021467437308134"},{"denom":"ASSET11","index":"0.000026557150856893"},{"denom":"ASSET12","index":"0.000025409189778577"},{"denom":"ASSET13","index":"0.000008348678217638"},{"denom":"ASSET14","index":"0.000024348515645151"},{"denom":"ASSET15","index":"0.000019305257093893"},{"denom":"ASSET16","index":"0.000011824039078448"},{"denom":"ASSET17","index":"0.000009337874135725"},{"denom":"ASSET18","index":"0.000003825021517438"},{"denom":"ASSET2","index":"0.000008092644314938"},{"denom":"ASSET3","index":"0.000002240059115813"},{"denom":"ASSET4","index":"0.000021626536887159"},{"denom":"ASSET5","index":"0.000001745574888449"},{"denom":"ASSET6","index":"0.000007040920669072"},{"denom":"ASSET7","index":"0.000011079696231301"},{"denom":"ASSET8","index":"0.000015176664815864"},{"denom":"ASSET9","index":"0.000006434669973810"}],"last_reward_claim_height":"169"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET18","shares":"641587879.974556513398465638","reward_history":[{"denom":"ASSET0","index":"0.000001488486853561"},{"denom":"ASSET1","index":"0.000012409943784184"},{"denom":"ASSET10","index":"0.000008645838046025"},{"denom":"ASSET11","index":"0.000012005445379346"},{"denom":"ASSET12","index":"0.000010810451131374"},{"denom":"ASSET13","index":"0.000003720376180879"},{"denom":"ASSET14","index":"0.000011214949536212"},{"denom":"ASSET15","index":"0.000008018487089665"},{"denom":"ASSET16","index":"0.000005590655707614"},{"denom":"ASSET17","index":"0.000003970139229188"},{"denom":"ASSET18","index":"0.000001891303352350"},{"denom":"ASSET2","index":"0.000003663191375205"},{"denom":"ASSET3","index":"0.000001071374153354"},{"denom":"ASSET4","index":"0.000010085549624159"},{"denom":"ASSET5","index":"0.000000831702541340"},{"denom":"ASSET6","index":"0.000003384835924059"},{"denom":"ASSET7","index":"0.000005184475396726"},{"denom":"ASSET8","index":"0.000006765467082995"},{"denom":"ASSET9","index":"0.000002921470807498"}],"last_reward_claim_height":"98"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET3","shares":"19621236.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004571301207273"},{"denom":"ASSET1","index":"0.000037398660191278"},{"denom":"ASSET10","index":"0.000032687755580364"},{"denom":"ASSET11","index":"0.000038977675941701"},{"denom":"ASSET12","index":"0.000037204809376495"},{"denom":"ASSET13","index":"0.000012591938399451"},{"denom":"ASSET14","index":"0.000035936287844387"},{"denom":"ASSET15","index":"0.000029303202324073"},{"denom":"ASSET16","index":"0.000016581018522800"},{"denom":"ASSET17","index":"0.000013510277910648"},{"denom":"ASSET18","index":"0.000005573586522557"},{"denom":"ASSET2","index":"0.000011303144015187"},{"denom":"ASSET3","index":"0.000003243979553262"},{"denom":"ASSET4","index":"0.000030664188630460"},{"denom":"ASSET5","index":"0.000002548911246263"},{"denom":"ASSET6","index":"0.000010403330372967"},{"denom":"ASSET7","index":"0.000016081578326893"},{"denom":"ASSET8","index":"0.000023245084416019"},{"denom":"ASSET9","index":"0.000009298675918452"}],"last_reward_claim_height":"189"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET4","shares":"537112425.000000000000000000","reward_history":[],"last_reward_claim_height":"59"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET6","shares":"207777724.940745483297443640","reward_history":[{"denom":"ASSET0","index":"0.000003115193601728"},{"denom":"ASSET1","index":"0.000026433576226141"},{"denom":"ASSET10","index":"0.000021120836274624"},{"denom":"ASSET11","index":"0.000026274076149270"},{"denom":"ASSET12","index":"0.000025063206789151"},{"denom":"ASSET13","index":"0.000008253838888439"},{"denom":"ASSET14","index":"0.000024111622086359"},{"denom":"ASSET15","index":"0.000019020166052921"},{"denom":"ASSET16","index":"0.000011725264187843"},{"denom":"ASSET17","index":"0.000009210335248597"},{"denom":"ASSET18","index":"0.000003802618681808"},{"denom":"ASSET2","index":"0.000008007094168018"},{"denom":"ASSET3","index":"0.000002223045227271"},{"denom":"ASSET4","index":"0.000021430343290469"},{"denom":"ASSET5","index":"0.000001731871182363"},{"denom":"ASSET6","index":"0.000006989160352022"},{"denom":"ASSET7","index":"0.000010981276608696"},{"denom":"ASSET8","index":"0.000015004007461071"},{"denom":"ASSET9","index":"0.000006368316319391"}],"last_reward_claim_height":"132"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET7","shares":"233982883.005980693914909468","reward_history":[{"denom":"ASSET0","index":"0.000004552871680963"},{"denom":"ASSET1","index":"0.000037344847719320"},{"denom":"ASSET10","index":"0.000032201926145827"},{"denom":"ASSET11","index":"0.000038704703073052"},{"denom":"ASSET12","index":"0.000036856280286787"},{"denom":"ASSET13","index":"0.000012466588224704"},{"denom":"ASSET14","index":"0.000035695703416346"},{"denom":"ASSET15","index":"0.000028909589243734"},{"denom":"ASSET16","index":"0.000016569690881810"},{"denom":"ASSET17","index":"0.000013397621621605"},{"denom":"ASSET18","index":"0.000005561325967019"},{"denom":"ASSET2","index":"0.000011276538650114"},{"denom":"ASSET3","index":"0.000003234120737490"},{"denom":"ASSET4","index":"0.000030591329863206"},{"denom":"ASSET5","index":"0.000002538263641792"},{"denom":"ASSET6","index":"0.000010353601273959"},{"denom":"ASSET7","index":"0.000016010407720744"},{"denom":"ASSET8","index":"0.000022981553849239"},{"denom":"ASSET9","index":"0.000009249156808408"}],"last_reward_claim_height":"184"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET14","shares":"132105020.000000000000000000","reward_history":[],"last_reward_claim_height":"53"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET16","shares":"53982569.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001563741356289"},{"denom":"ASSET1","index":"0.000013036816883138"},{"denom":"ASSET10","index":"0.000009082880828100"},{"denom":"ASSET11","index":"0.000012611783735587"},{"denom":"ASSET12","index":"0.000011356772924286"},{"denom":"ASSET13","index":"0.000003908472310400"},{"denom":"ASSET14","index":"0.000011781101207579"},{"denom":"ASSET15","index":"0.000008423480314776"},{"denom":"ASSET16","index":"0.000005872928997340"},{"denom":"ASSET17","index":"0.000004170681814362"},{"denom":"ASSET18","index":"0.000001986659911066"},{"denom":"ASSET2","index":"0.000003848558848473"},{"denom":"ASSET3","index":"0.000001125668219966"},{"denom":"ASSET4","index":"0.000010594814661429"},{"denom":"ASSET5","index":"0.000000873679247744"},{"denom":"ASSET6","index":"0.000003556392613548"},{"denom":"ASSET7","index":"0.000005446486121273"},{"denom":"ASSET8","index":"0.000007106793880903"},{"denom":"ASSET9","index":"0.000003069683843425"}],"last_reward_claim_height":"99"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET18","shares":"936537774.287233940998242697","reward_history":[{"denom":"ASSET0","index":"0.000003115193601728"},{"denom":"ASSET1","index":"0.000026433576226141"},{"denom":"ASSET10","index":"0.000021120836274624"},{"denom":"ASSET11","index":"0.000026274076149270"},{"denom":"ASSET12","index":"0.000025063206789151"},{"denom":"ASSET13","index":"0.000008253838888439"},{"denom":"ASSET14","index":"0.000024111622086359"},{"denom":"ASSET15","index":"0.000019020166052921"},{"denom":"ASSET16","index":"0.000011725264187843"},{"denom":"ASSET17","index":"0.000009210335248597"},{"denom":"ASSET18","index":"0.000003802618681808"},{"denom":"ASSET2","index":"0.000008007094168018"},{"denom":"ASSET3","index":"0.000002223045227271"},{"denom":"ASSET4","index":"0.000021430343290469"},{"denom":"ASSET5","index":"0.000001731871182363"},{"denom":"ASSET6","index":"0.000006989160352022"},{"denom":"ASSET7","index":"0.000010981276608696"},{"denom":"ASSET8","index":"0.000015004007461071"},{"denom":"ASSET9","index":"0.000006368316319391"}],"last_reward_claim_height":"131"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET0","shares":"255646810.124784107350826852","reward_history":[{"denom":"ASSET0","index":"0.000003342989987813"},{"denom":"ASSET1","index":"0.000028363859076608"},{"denom":"ASSET10","index":"0.000022643596968544"},{"denom":"ASSET11","index":"0.000028187678804911"},{"denom":"ASSET12","index":"0.000026879157824253"},{"denom":"ASSET13","index":"0.000008853292918908"},{"denom":"ASSET14","index":"0.000025870927331183"},{"denom":"ASSET15","index":"0.000020395094195043"},{"denom":"ASSET16","index":"0.000012581780801373"},{"denom":"ASSET17","index":"0.000009877287329505"},{"denom":"ASSET18","index":"0.000004080927248291"},{"denom":"ASSET2","index":"0.000008590241612281"},{"denom":"ASSET3","index":"0.000002384972961476"},{"denom":"ASSET4","index":"0.000022995501297970"},{"denom":"ASSET5","index":"0.000001858071035633"},{"denom":"ASSET6","index":"0.000007500418590266"},{"denom":"ASSET7","index":"0.000011782462758670"},{"denom":"ASSET8","index":"0.000016095075530395"},{"denom":"ASSET9","index":"0.000006831506736707"}],"last_reward_claim_height":"146"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET5","shares":"623074006.570004374805354974","reward_history":[{"denom":"ASSET0","index":"0.000004944013332327"},{"denom":"ASSET1","index":"0.000040514572296257"},{"denom":"ASSET10","index":"0.000034983500216774"},{"denom":"ASSET11","index":"0.000042030409881091"},{"denom":"ASSET12","index":"0.000040011826209544"},{"denom":"ASSET13","index":"0.000013544638275826"},{"denom":"ASSET14","index":"0.000038770981448347"},{"denom":"ASSET15","index":"0.000031407830483843"},{"denom":"ASSET16","index":"0.000017976642481408"},{"denom":"ASSET17","index":"0.000014540265092749"},{"denom":"ASSET18","index":"0.000006039382273098"},{"denom":"ASSET2","index":"0.000012231113154221"},{"denom":"ASSET3","index":"0.000003510948218078"},{"denom":"ASSET4","index":"0.000033197360832209"},{"denom":"ASSET5","index":"0.000002756014481548"},{"denom":"ASSET6","index":"0.000011247123077836"},{"denom":"ASSET7","index":"0.000017382880386713"},{"denom":"ASSET8","index":"0.000024978933020084"},{"denom":"ASSET9","index":"0.000010039663368988"}],"last_reward_claim_height":"194"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET6","shares":"101827106.757546985825329268","reward_history":[{"denom":"ASSET0","index":"0.000001688791638136"},{"denom":"ASSET1","index":"0.000014080258863939"},{"denom":"ASSET10","index":"0.000009809129194434"},{"denom":"ASSET11","index":"0.000013620783833550"},{"denom":"ASSET12","index":"0.000012265553395360"},{"denom":"ASSET13","index":"0.000004220322334414"},{"denom":"ASSET14","index":"0.000012723923918464"},{"denom":"ASSET15","index":"0.000009096721995874"},{"denom":"ASSET16","index":"0.000006342080828109"},{"denom":"ASSET17","index":"0.000004504180706554"},{"denom":"ASSET18","index":"0.000002144953146672"},{"denom":"ASSET2","index":"0.000004156260911908"},{"denom":"ASSET3","index":"0.000001214958013048"},{"denom":"ASSET4","index":"0.000011442695468341"},{"denom":"ASSET5","index":"0.000000943249221039"},{"denom":"ASSET6","index":"0.000003840371828516"},{"denom":"ASSET7","index":"0.000005881501290436"},{"denom":"ASSET8","index":"0.000007675221120608"},{"denom":"ASSET9","index":"0.000003314626361051"}],"last_reward_claim_height":"94"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET10","shares":"367813492.432403106356083500","reward_history":[{"denom":"ASSET0","index":"0.000003113134051861"},{"denom":"ASSET1","index":"0.000026415094552464"},{"denom":"ASSET10","index":"0.000021090707465492"},{"denom":"ASSET11","index":"0.000026251548228726"},{"denom":"ASSET12","index":"0.000025034408517114"},{"denom":"ASSET13","index":"0.000008245703890405"},{"denom":"ASSET14","index":"0.000024093200316600"},{"denom":"ASSET15","index":"0.000018995578271326"},{"denom":"ASSET16","index":"0.000011717396138812"},{"denom":"ASSET17","index":"0.000009199501798709"},{"denom":"ASSET18","index":"0.000003801350346824"},{"denom":"ASSET2","index":"0.000007999912620195"},{"denom":"ASSET3","index":"0.000002221641081089"},{"denom":"ASSET4","index":"0.000021415082747190"},{"denom":"ASSET5","index":"0.000001730738444371"},{"denom":"ASSET6","index":"0.000006985361363625"},{"denom":"ASSET7","index":"0.000010973556930807"},{"denom":"ASSET8","index":"0.000014990236718633"},{"denom":"ASSET9","index":"0.000006362695679170"}],"last_reward_claim_height":"172"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET2","shares":"217638937.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004576082898752"},{"denom":"ASSET1","index":"0.000037455245583402"},{"denom":"ASSET10","index":"0.000032531159064784"},{"denom":"ASSET11","index":"0.000038953742960516"},{"denom":"ASSET12","index":"0.000037116142596111"},{"denom":"ASSET13","index":"0.000012571242335954"},{"denom":"ASSET14","index":"0.000035930774352627"},{"denom":"ASSET15","index":"0.000029189460904925"},{"denom":"ASSET16","index":"0.000016614931382956"},{"denom":"ASSET17","index":"0.000013480763933753"},{"denom":"ASSET18","index":"0.000005587813700340"},{"denom":"ASSET2","index":"0.000011310430868930"},{"denom":"ASSET3","index":"0.000003249320717752"},{"denom":"ASSET4","index":"0.000030704323670264"},{"denom":"ASSET5","index":"0.000002552032680008"},{"denom":"ASSET6","index":"0.000010415855822952"},{"denom":"ASSET7","index":"0.000016094435373177"},{"denom":"ASSET8","index":"0.000023197133271532"},{"denom":"ASSET9","index":"0.000009298050576415"}],"last_reward_claim_height":"184"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET5","shares":"907815067.000000017248486273","reward_history":[{"denom":"ASSET0","index":"0.000003023961266495"},{"denom":"ASSET1","index":"0.000025674667559579"},{"denom":"ASSET10","index":"0.000020567435721356"},{"denom":"ASSET11","index":"0.000025532965784321"},{"denom":"ASSET12","index":"0.000024383768132692"},{"denom":"ASSET13","index":"0.000008022807352722"},{"denom":"ASSET14","index":"0.000023423766496233"},{"denom":"ASSET15","index":"0.000018512228577533"},{"denom":"ASSET16","index":"0.000011384524743973"},{"denom":"ASSET17","index":"0.000008960010456843"},{"denom":"ASSET18","index":"0.000003688974211121"},{"denom":"ASSET2","index":"0.000007780619396113"},{"denom":"ASSET3","index":"0.000002157718690670"},{"denom":"ASSET4","index":"0.000020813357966886"},{"denom":"ASSET5","index":"0.000001681323481152"},{"denom":"ASSET6","index":"0.000006783427048921"},{"denom":"ASSET7","index":"0.000010664665966441"},{"denom":"ASSET8","index":"0.000014584270248941"},{"denom":"ASSET9","index":"0.000006187655866052"}],"last_reward_claim_height":"174"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET11","shares":"253293067.704101575945649216","reward_history":[{"denom":"ASSET0","index":"0.000003023961266495"},{"denom":"ASSET1","index":"0.000025674667559579"},{"denom":"ASSET10","index":"0.000020567435721356"},{"denom":"ASSET11","index":"0.000025532965784321"},{"denom":"ASSET12","index":"0.000024383768132692"},{"denom":"ASSET13","index":"0.000008022807352722"},{"denom":"ASSET14","index":"0.000023423766496233"},{"denom":"ASSET15","index":"0.000018512228577533"},{"denom":"ASSET16","index":"0.000011384524743973"},{"denom":"ASSET17","index":"0.000008960010456843"},{"denom":"ASSET18","index":"0.000003688974211121"},{"denom":"ASSET2","index":"0.000007780619396113"},{"denom":"ASSET3","index":"0.000002157718690670"},{"denom":"ASSET4","index":"0.000020813357966886"},{"denom":"ASSET5","index":"0.000001681323481152"},{"denom":"ASSET6","index":"0.000006783427048921"},{"denom":"ASSET7","index":"0.000010664665966441"},{"denom":"ASSET8","index":"0.000014584270248941"},{"denom":"ASSET9","index":"0.000006187655866052"}],"last_reward_claim_height":"163"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET2","shares":"447137824.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001504632489095"},{"denom":"ASSET1","index":"0.000012543084148708"},{"denom":"ASSET10","index":"0.000008738830231438"},{"denom":"ASSET11","index":"0.000012134501498699"},{"denom":"ASSET12","index":"0.000010926897843985"},{"denom":"ASSET13","index":"0.000003760573206331"},{"denom":"ASSET14","index":"0.000011335480493994"},{"denom":"ASSET15","index":"0.000008104451906425"},{"denom":"ASSET16","index":"0.000005650267962622"},{"denom":"ASSET17","index":"0.000004012577307899"},{"denom":"ASSET18","index":"0.000001911199106291"},{"denom":"ASSET2","index":"0.000003702780265705"},{"denom":"ASSET3","index":"0.000001083281631273"},{"denom":"ASSET4","index":"0.000010193733911157"},{"denom":"ASSET5","index":"0.000000840685682831"},{"denom":"ASSET6","index":"0.000003421207682886"},{"denom":"ASSET7","index":"0.000005240341290738"},{"denom":"ASSET8","index":"0.000006837711289210"},{"denom":"ASSET9","index":"0.000002953488070376"}],"last_reward_claim_height":"105"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET2","shares":"218764700.000000008750588000","reward_history":[{"denom":"ASSET0","index":"0.000003452635056994"},{"denom":"ASSET1","index":"0.000029280443630050"},{"denom":"ASSET10","index":"0.000023297581891953"},{"denom":"ASSET11","index":"0.000029078046899152"},{"denom":"ASSET12","index":"0.000027688393753974"},{"denom":"ASSET13","index":"0.000009130247174920"},{"denom":"ASSET14","index":"0.000026700258191979"},{"denom":"ASSET15","index":"0.000020998119885469"},{"denom":"ASSET16","index":"0.000012993858989816"},{"denom":"ASSET17","index":"0.000010174919177657"},{"denom":"ASSET18","index":"0.000004220034662939"},{"denom":"ASSET2","index":"0.000008861755768133"},{"denom":"ASSET3","index":"0.000002464736347038"},{"denom":"ASSET4","index":"0.000023740327943060"},{"denom":"ASSET5","index":"0.000001919615043943"},{"denom":"ASSET6","index":"0.000007749671229698"},{"denom":"ASSET7","index":"0.000012165961282812"},{"denom":"ASSET8","index":"0.000016598407083950"},{"denom":"ASSET9","index":"0.000007048985746822"}],"last_reward_claim_height":"180"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET14","shares":"135514873.249644646901519938","reward_history":[{"denom":"ASSET0","index":"0.000001790270882045"},{"denom":"ASSET1","index":"0.000014924962381265"},{"denom":"ASSET10","index":"0.000010398687848362"},{"denom":"ASSET11","index":"0.000014438353512768"},{"denom":"ASSET12","index":"0.000013001639266884"},{"denom":"ASSET13","index":"0.000004474427888377"},{"denom":"ASSET14","index":"0.000013487623477013"},{"denom":"ASSET15","index":"0.000009643475881721"},{"denom":"ASSET16","index":"0.000006723198012370"},{"denom":"ASSET17","index":"0.000004774888563278"},{"denom":"ASSET18","index":"0.000002274381117071"},{"denom":"ASSET2","index":"0.000004405715467922"},{"denom":"ASSET3","index":"0.000001288670212721"},{"denom":"ASSET4","index":"0.000012129616185469"},{"denom":"ASSET5","index":"0.000001000078046809"},{"denom":"ASSET6","index":"0.000004071523241162"},{"denom":"ASSET7","index":"0.000006235339827137"},{"denom":"ASSET8","index":"0.000008136175240279"},{"denom":"ASSET9","index":"0.000003514327977106"}],"last_reward_claim_height":"87"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET16","shares":"157340894.999999996223818520","reward_history":[{"denom":"ASSET0","index":"0.000001790270882045"},{"denom":"ASSET1","index":"0.000014924962381265"},{"denom":"ASSET10","index":"0.000010398687848362"},{"denom":"ASSET11","index":"0.000014438353512768"},{"denom":"ASSET12","index":"0.000013001639266884"},{"denom":"ASSET13","index":"0.000004474427888377"},{"denom":"ASSET14","index":"0.000013487623477013"},{"denom":"ASSET15","index":"0.000009643475881721"},{"denom":"ASSET16","index":"0.000006723198012370"},{"denom":"ASSET17","index":"0.000004774888563278"},{"denom":"ASSET18","index":"0.000002274381117071"},{"denom":"ASSET2","index":"0.000004405715467922"},{"denom":"ASSET3","index":"0.000001288670212721"},{"denom":"ASSET4","index":"0.000012129616185469"},{"denom":"ASSET5","index":"0.000001000078046809"},{"denom":"ASSET6","index":"0.000004071523241162"},{"denom":"ASSET7","index":"0.000006235339827137"},{"denom":"ASSET8","index":"0.000008136175240279"},{"denom":"ASSET9","index":"0.000003514327977106"}],"last_reward_claim_height":"102"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET18","shares":"1035415066.363388382993808196","reward_history":[{"denom":"ASSET0","index":"0.000003452635056994"},{"denom":"ASSET1","index":"0.000029280443630050"},{"denom":"ASSET10","index":"0.000023297581891953"},{"denom":"ASSET11","index":"0.000029078046899152"},{"denom":"ASSET12","index":"0.000027688393753974"},{"denom":"ASSET13","index":"0.000009130247174920"},{"denom":"ASSET14","index":"0.000026700258191979"},{"denom":"ASSET15","index":"0.000020998119885469"},{"denom":"ASSET16","index":"0.000012993858989816"},{"denom":"ASSET17","index":"0.000010174919177657"},{"denom":"ASSET18","index":"0.000004220034662939"},{"denom":"ASSET2","index":"0.000008861755768133"},{"denom":"ASSET3","index":"0.000002464736347038"},{"denom":"ASSET4","index":"0.000023740327943060"},{"denom":"ASSET5","index":"0.000001919615043943"},{"denom":"ASSET6","index":"0.000007749671229698"},{"denom":"ASSET7","index":"0.000012165961282812"},{"denom":"ASSET8","index":"0.000016598407083950"},{"denom":"ASSET9","index":"0.000007048985746822"}],"last_reward_claim_height":"136"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET0","shares":"631411329.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001835550145227"},{"denom":"ASSET1","index":"0.000015324623289081"},{"denom":"ASSET10","index":"0.000010676536631006"},{"denom":"ASSET11","index":"0.000014825027987456"},{"denom":"ASSET12","index":"0.000013348446318211"},{"denom":"ASSET13","index":"0.000004592576069005"},{"denom":"ASSET14","index":"0.000013848041619836"},{"denom":"ASSET15","index":"0.000009899388384035"},{"denom":"ASSET16","index":"0.000006901816574290"},{"denom":"ASSET17","index":"0.000004903435367793"},{"denom":"ASSET18","index":"0.000002335145446851"},{"denom":"ASSET2","index":"0.000004522262656184"},{"denom":"ASSET3","index":"0.000001321152019851"},{"denom":"ASSET4","index":"0.000012452875481226"},{"denom":"ASSET5","index":"0.000001025095544814"},{"denom":"ASSET6","index":"0.000004178097003954"},{"denom":"ASSET7","index":"0.000006402221272666"},{"denom":"ASSET8","index":"0.000008352493301969"},{"denom":"ASSET9","index":"0.000003608188289508"}],"last_reward_claim_height":"103"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET2","shares":"500515843.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003336473275634"},{"denom":"ASSET1","index":"0.000028284037775138"},{"denom":"ASSET10","index":"0.000022321061137243"},{"denom":"ASSET11","index":"0.000028041053149272"},{"denom":"ASSET12","index":"0.000026607048139233"},{"denom":"ASSET13","index":"0.000008795774551756"},{"denom":"ASSET14","index":"0.000025776026947277"},{"denom":"ASSET15","index":"0.000020150006768141"},{"denom":"ASSET16","index":"0.000012562977954735"},{"denom":"ASSET17","index":"0.000009778271060189"},{"denom":"ASSET18","index":"0.000004091528532498"},{"denom":"ASSET2","index":"0.000008544798017437"},{"denom":"ASSET3","index":"0.000002382883485470"},{"denom":"ASSET4","index":"0.000022934405116164"},{"denom":"ASSET5","index":"0.000001855148612588"},{"denom":"ASSET6","index":"0.000007498692848558"},{"denom":"ASSET7","index":"0.000011756140274513"},{"denom":"ASSET8","index":"0.000015991743254740"},{"denom":"ASSET9","index":"0.000006799136288961"}],"last_reward_claim_height":"157"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET6","shares":"239900606.177699191927160920","reward_history":[{"denom":"ASSET0","index":"0.000003336473275634"},{"denom":"ASSET1","index":"0.000028284037775138"},{"denom":"ASSET10","index":"0.000022321061137243"},{"denom":"ASSET11","index":"0.000028041053149272"},{"denom":"ASSET12","index":"0.000026607048139233"},{"denom":"ASSET13","index":"0.000008795774551756"},{"denom":"ASSET14","index":"0.000025776026947277"},{"denom":"ASSET15","index":"0.000020150006768141"},{"denom":"ASSET16","index":"0.000012562977954735"},{"denom":"ASSET17","index":"0.000009778271060189"},{"denom":"ASSET18","index":"0.000004091528532498"},{"denom":"ASSET2","index":"0.000008544798017437"},{"denom":"ASSET3","index":"0.000002382883485470"},{"denom":"ASSET4","index":"0.000022934405116164"},{"denom":"ASSET5","index":"0.000001855148612588"},{"denom":"ASSET6","index":"0.000007498692848558"},{"denom":"ASSET7","index":"0.000011756140274513"},{"denom":"ASSET8","index":"0.000015991743254740"},{"denom":"ASSET9","index":"0.000006799136288961"}],"last_reward_claim_height":"128"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET9","shares":"211566654.000000000211566654","reward_history":[],"last_reward_claim_height":"23"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET11","shares":"794296196.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003336473275634"},{"denom":"ASSET1","index":"0.000028284037775138"},{"denom":"ASSET10","index":"0.000022321061137243"},{"denom":"ASSET11","index":"0.000028041053149272"},{"denom":"ASSET12","index":"0.000026607048139233"},{"denom":"ASSET13","index":"0.000008795774551756"},{"denom":"ASSET14","index":"0.000025776026947277"},{"denom":"ASSET15","index":"0.000020150006768141"},{"denom":"ASSET16","index":"0.000012562977954735"},{"denom":"ASSET17","index":"0.000009778271060189"},{"denom":"ASSET18","index":"0.000004091528532498"},{"denom":"ASSET2","index":"0.000008544798017437"},{"denom":"ASSET3","index":"0.000002382883485470"},{"denom":"ASSET4","index":"0.000022934405116164"},{"denom":"ASSET5","index":"0.000001855148612588"},{"denom":"ASSET6","index":"0.000007498692848558"},{"denom":"ASSET7","index":"0.000011756140274513"},{"denom":"ASSET8","index":"0.000015991743254740"},{"denom":"ASSET9","index":"0.000006799136288961"}],"last_reward_claim_height":"150"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET17","shares":"169830652.030842387217022910","reward_history":[{"denom":"ASSET0","index":"0.000003336473275634"},{"denom":"ASSET1","index":"0.000028284037775138"},{"denom":"ASSET10","index":"0.000022321061137243"},{"denom":"ASSET11","index":"0.000028041053149272"},{"denom":"ASSET12","index":"0.000026607048139233"},{"denom":"ASSET13","index":"0.000008795774551756"},{"denom":"ASSET14","index":"0.000025776026947277"},{"denom":"ASSET15","index":"0.000020150006768141"},{"denom":"ASSET16","index":"0.000012562977954735"},{"denom":"ASSET17","index":"0.000009778271060189"},{"denom":"ASSET18","index":"0.000004091528532498"},{"denom":"ASSET2","index":"0.000008544798017437"},{"denom":"ASSET3","index":"0.000002382883485470"},{"denom":"ASSET4","index":"0.000022934405116164"},{"denom":"ASSET5","index":"0.000001855148612588"},{"denom":"ASSET6","index":"0.000007498692848558"},{"denom":"ASSET7","index":"0.000011756140274513"},{"denom":"ASSET8","index":"0.000015991743254740"},{"denom":"ASSET9","index":"0.000006799136288961"}],"last_reward_claim_height":"150"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET11","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001764742979644"},{"denom":"ASSET1","index":"0.000014715413525055"},{"denom":"ASSET10","index":"0.000010252344388411"},{"denom":"ASSET11","index":"0.000014235671854472"},{"denom":"ASSET12","index":"0.000012819403806098"},{"denom":"ASSET13","index":"0.000004411268809023"},{"denom":"ASSET14","index":"0.000013298556836595"},{"denom":"ASSET15","index":"0.000009507714678855"},{"denom":"ASSET16","index":"0.000006629264655353"},{"denom":"ASSET17","index":"0.000004707943412672"},{"denom":"ASSET18","index":"0.000002242718729968"},{"denom":"ASSET2","index":"0.000004343575199063"},{"denom":"ASSET3","index":"0.000001270873946982"},{"denom":"ASSET4","index":"0.000011958811999481"},{"denom":"ASSET5","index":"0.000000985972145064"},{"denom":"ASSET6","index":"0.000004013936750564"},{"denom":"ASSET7","index":"0.000006147757064510"},{"denom":"ASSET8","index":"0.000008021987100262"},{"denom":"ASSET9","index":"0.000003464735549761"}],"last_reward_claim_height":"85"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET3","shares":"949252688.999999940197080593","reward_history":[{"denom":"ASSET0","index":"0.000003090388166914"},{"denom":"ASSET1","index":"0.000026235396530584"},{"denom":"ASSET10","index":"0.000021016328726441"},{"denom":"ASSET11","index":"0.000026091077525301"},{"denom":"ASSET12","index":"0.000024916432469284"},{"denom":"ASSET13","index":"0.000008198423394567"},{"denom":"ASSET14","index":"0.000023935350029219"},{"denom":"ASSET15","index":"0.000018916111125702"},{"denom":"ASSET16","index":"0.000011633439861257"},{"denom":"ASSET17","index":"0.000009156707623184"},{"denom":"ASSET18","index":"0.000003769226369030"},{"denom":"ASSET2","index":"0.000007950992094695"},{"denom":"ASSET3","index":"0.000002205065882760"},{"denom":"ASSET4","index":"0.000021268551776440"},{"denom":"ASSET5","index":"0.000001717872208784"},{"denom":"ASSET6","index":"0.000006931889619894"},{"denom":"ASSET7","index":"0.000010897757198785"},{"denom":"ASSET8","index":"0.000014903243728132"},{"denom":"ASSET9","index":"0.000006323427167640"}],"last_reward_claim_height":"177"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET9","shares":"495841048.235979072851711817","reward_history":[{"denom":"ASSET0","index":"0.000003032310940473"},{"denom":"ASSET1","index":"0.000025733484746235"},{"denom":"ASSET10","index":"0.000020566326171769"},{"denom":"ASSET11","index":"0.000025579130700492"},{"denom":"ASSET12","index":"0.000024402998631681"},{"denom":"ASSET13","index":"0.000008035434808363"},{"denom":"ASSET14","index":"0.000023473377840860"},{"denom":"ASSET15","index":"0.000018519821992016"},{"denom":"ASSET16","index":"0.000011413808805814"},{"denom":"ASSET17","index":"0.000008967671528488"},{"denom":"ASSET18","index":"0.000003701450923042"},{"denom":"ASSET2","index":"0.000007795399667781"},{"denom":"ASSET3","index":"0.000002164126947351"},{"denom":"ASSET4","index":"0.000020862528644023"},{"denom":"ASSET5","index":"0.000001685967393794"},{"denom":"ASSET6","index":"0.000006803442800114"},{"denom":"ASSET7","index":"0.000010689840259007"},{"denom":"ASSET8","index":"0.000014607710652032"},{"denom":"ASSET9","index":"0.000006199747658625"}],"last_reward_claim_height":"171"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET2","shares":"88397527.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001387661284101"},{"denom":"ASSET1","index":"0.000011573014587468"},{"denom":"ASSET10","index":"0.000008062929395432"},{"denom":"ASSET11","index":"0.000011195232526081"},{"denom":"ASSET12","index":"0.000010081345808669"},{"denom":"ASSET13","index":"0.000003469153210252"},{"denom":"ASSET14","index":"0.000010458456853962"},{"denom":"ASSET15","index":"0.000007477132344649"},{"denom":"ASSET16","index":"0.000005213124040705"},{"denom":"ASSET17","index":"0.000003702666811251"},{"denom":"ASSET18","index":"0.000001763430297203"},{"denom":"ASSET2","index":"0.000003416142938760"},{"denom":"ASSET3","index":"0.000000999142965196"},{"denom":"ASSET4","index":"0.000009404961585085"},{"denom":"ASSET5","index":"0.000000775694605619"},{"denom":"ASSET6","index":"0.000003156459710063"},{"denom":"ASSET7","index":"0.000004834670963223"},{"denom":"ASSET8","index":"0.000006308893323556"},{"denom":"ASSET9","index":"0.000002724996361089"}],"last_reward_claim_height":"118"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET7","shares":"666638566.276895720135713549","reward_history":[{"denom":"ASSET0","index":"0.000002847838387483"},{"denom":"ASSET1","index":"0.000024182680336096"},{"denom":"ASSET10","index":"0.000019393227963423"},{"denom":"ASSET11","index":"0.000024054653395269"},{"denom":"ASSET12","index":"0.000022982316432831"},{"denom":"ASSET13","index":"0.000007558836235579"},{"denom":"ASSET14","index":"0.000022064079622497"},{"denom":"ASSET15","index":"0.000017450899901336"},{"denom":"ASSET16","index":"0.000010721434414440"},{"denom":"ASSET17","index":"0.000008446187739031"},{"denom":"ASSET18","index":"0.000003472449339717"},{"denom":"ASSET2","index":"0.000007330038539196"},{"denom":"ASSET3","index":"0.000002031951160271"},{"denom":"ASSET4","index":"0.000019603371773062"},{"denom":"ASSET5","index":"0.000001583403578691"},{"denom":"ASSET6","index":"0.000006387295602350"},{"denom":"ASSET7","index":"0.000010043914419286"},{"denom":"ASSET8","index":"0.000013741733556815"},{"denom":"ASSET9","index":"0.000005829813216311"}],"last_reward_claim_height":"179"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET14","shares":"311036105.999999237961540300","reward_history":[{"denom":"ASSET0","index":"0.000001387661284101"},{"denom":"ASSET1","index":"0.000011573014587468"},{"denom":"ASSET10","index":"0.000008062929395432"},{"denom":"ASSET11","index":"0.000011195232526081"},{"denom":"ASSET12","index":"0.000010081345808669"},{"denom":"ASSET13","index":"0.000003469153210252"},{"denom":"ASSET14","index":"0.000010458456853962"},{"denom":"ASSET15","index":"0.000007477132344649"},{"denom":"ASSET16","index":"0.000005213124040705"},{"denom":"ASSET17","index":"0.000003702666811251"},{"denom":"ASSET18","index":"0.000001763430297203"},{"denom":"ASSET2","index":"0.000003416142938760"},{"denom":"ASSET3","index":"0.000000999142965196"},{"denom":"ASSET4","index":"0.000009404961585085"},{"denom":"ASSET5","index":"0.000000775694605619"},{"denom":"ASSET6","index":"0.000003156459710063"},{"denom":"ASSET7","index":"0.000004834670963223"},{"denom":"ASSET8","index":"0.000006308893323556"},{"denom":"ASSET9","index":"0.000002724996361089"}],"last_reward_claim_height":"93"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET12","shares":"296058803.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001740203165372"},{"denom":"ASSET1","index":"0.000014506985633466"},{"denom":"ASSET10","index":"0.000010106727386233"},{"denom":"ASSET11","index":"0.000014033828203465"},{"denom":"ASSET12","index":"0.000012637643303754"},{"denom":"ASSET13","index":"0.000004348390877948"},{"denom":"ASSET14","index":"0.000013109742216014"},{"denom":"ASSET15","index":"0.000009373174592071"},{"denom":"ASSET16","index":"0.000006535288529808"},{"denom":"ASSET17","index":"0.000004640541774324"},{"denom":"ASSET18","index":"0.000002210185042151"},{"denom":"ASSET2","index":"0.000004281704260297"},{"denom":"ASSET3","index":"0.000001252226487004"},{"denom":"ASSET4","index":"0.000011789770593618"},{"denom":"ASSET5","index":"0.000000971719285773"},{"denom":"ASSET6","index":"0.000003956739313965"},{"denom":"ASSET7","index":"0.000006060014064326"},{"denom":"ASSET8","index":"0.000007908186039228"},{"denom":"ASSET9","index":"0.000003415836748573"}],"last_reward_claim_height":"121"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET16","shares":"239075798.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004962972541432"},{"denom":"ASSET1","index":"0.000040650098665327"},{"denom":"ASSET10","index":"0.000035029276691044"},{"denom":"ASSET11","index":"0.000042155953964920"},{"denom":"ASSET12","index":"0.000040090986287408"},{"denom":"ASSET13","index":"0.000013583146547951"},{"denom":"ASSET14","index":"0.000038900128980945"},{"denom":"ASSET15","index":"0.000031463357706274"},{"denom":"ASSET16","index":"0.000018043166594771"},{"denom":"ASSET17","index":"0.000014567679910779"},{"denom":"ASSET18","index":"0.000006067375008702"},{"denom":"ASSET2","index":"0.000012265082923430"},{"denom":"ASSET3","index":"0.000003525171494558"},{"denom":"ASSET4","index":"0.000033311451785840"},{"denom":"ASSET5","index":"0.000002766894365829"},{"denom":"ASSET6","index":"0.000011292799073571"},{"denom":"ASSET7","index":"0.000017445141192124"},{"denom":"ASSET8","index":"0.000025051796020968"},{"denom":"ASSET9","index":"0.000010070586397372"}],"last_reward_claim_height":"197"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET0","shares":"740712691.447570844235287611","reward_history":[{"denom":"ASSET0","index":"0.000003408995344605"},{"denom":"ASSET1","index":"0.000028940875589883"},{"denom":"ASSET10","index":"0.000023121939135123"},{"denom":"ASSET11","index":"0.000028765460883304"},{"denom":"ASSET12","index":"0.000027437813762181"},{"denom":"ASSET13","index":"0.000009035078182388"},{"denom":"ASSET14","index":"0.000026397840013038"},{"denom":"ASSET15","index":"0.000020822021063845"},{"denom":"ASSET16","index":"0.000012835900360827"},{"denom":"ASSET17","index":"0.000010082289518918"},{"denom":"ASSET18","index":"0.000004163537456367"},{"denom":"ASSET2","index":"0.000008764373535196"},{"denom":"ASSET3","index":"0.000002432999591430"},{"denom":"ASSET4","index":"0.000023461370966582"},{"denom":"ASSET5","index":"0.000001895172356369"},{"denom":"ASSET6","index":"0.000007651446569151"},{"denom":"ASSET7","index":"0.000012022926111771"},{"denom":"ASSET8","index":"0.000016426068411072"},{"denom":"ASSET9","index":"0.000006969965423669"}],"last_reward_claim_height":"181"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET8","shares":"420392721.231631932919507085","reward_history":[{"denom":"ASSET0","index":"0.000004998366479421"},{"denom":"ASSET1","index":"0.000041003058470161"},{"denom":"ASSET10","index":"0.000035371684503353"},{"denom":"ASSET11","index":"0.000042507113632794"},{"denom":"ASSET12","index":"0.000040474634178020"},{"denom":"ASSET13","index":"0.000013692225298153"},{"denom":"ASSET14","index":"0.000039203644327879"},{"denom":"ASSET15","index":"0.000031754410004916"},{"denom":"ASSET16","index":"0.000018191496793637"},{"denom":"ASSET17","index":"0.000014711204061235"},{"denom":"ASSET18","index":"0.000006107657014076"},{"denom":"ASSET2","index":"0.000012378633937847"},{"denom":"ASSET3","index":"0.000003550763999341"},{"denom":"ASSET4","index":"0.000033588763313421"},{"denom":"ASSET5","index":"0.000002786585175417"},{"denom":"ASSET6","index":"0.000011370781245157"},{"denom":"ASSET7","index":"0.000017582533575325"},{"denom":"ASSET8","index":"0.000025244942353745"},{"denom":"ASSET9","index":"0.000010154599708630"}],"last_reward_claim_height":"189"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET5","shares":"403892868.000000000000000000","reward_history":[],"last_reward_claim_height":"53"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET10","shares":"357673681.999999998569305272","reward_history":[{"denom":"ASSET0","index":"0.000002975317591563"},{"denom":"ASSET1","index":"0.000025265738469637"},{"denom":"ASSET10","index":"0.000020245724387946"},{"denom":"ASSET11","index":"0.000025128558675417"},{"denom":"ASSET12","index":"0.000023998925764885"},{"denom":"ASSET13","index":"0.000007895668684136"},{"denom":"ASSET14","index":"0.000023051238668493"},{"denom":"ASSET15","index":"0.000018221178423268"},{"denom":"ASSET16","index":"0.000011202197653725"},{"denom":"ASSET17","index":"0.000008818540737002"},{"denom":"ASSET18","index":"0.000003629428323701"},{"denom":"ASSET2","index":"0.000007657107369447"},{"denom":"ASSET3","index":"0.000002122660280404"},{"denom":"ASSET4","index":"0.000020482509156357"},{"denom":"ASSET5","index":"0.000001654309607539"},{"denom":"ASSET6","index":"0.000006675356935536"},{"denom":"ASSET7","index":"0.000010494215679887"},{"denom":"ASSET8","index":"0.000014353927855523"},{"denom":"ASSET9","index":"0.000006089535217587"}],"last_reward_claim_height":"152"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET15","shares":"136924996.416997379620098925","reward_history":[{"denom":"ASSET0","index":"0.000004660804205407"},{"denom":"ASSET1","index":"0.000038057537045202"},{"denom":"ASSET10","index":"0.000033236768377738"},{"denom":"ASSET11","index":"0.000039701821838753"},{"denom":"ASSET12","index":"0.000037824613654517"},{"denom":"ASSET13","index":"0.000012834687122975"},{"denom":"ASSET14","index":"0.000036631919493883"},{"denom":"ASSET15","index":"0.000029815074691348"},{"denom":"ASSET16","index":"0.000016881501899894"},{"denom":"ASSET17","index":"0.000013727591369636"},{"denom":"ASSET18","index":"0.000005691132396522"},{"denom":"ASSET2","index":"0.000011490151771186"},{"denom":"ASSET3","index":"0.000003308008506911"},{"denom":"ASSET4","index":"0.000031222727917954"},{"denom":"ASSET5","index":"0.000002599510414053"},{"denom":"ASSET6","index":"0.000010619768184658"},{"denom":"ASSET7","index":"0.000016390179065509"},{"denom":"ASSET8","index":"0.000023706313213553"},{"denom":"ASSET9","index":"0.000009466987970942"}],"last_reward_claim_height":"189"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET1","shares":"163547102.068638973028211938","reward_history":[{"denom":"ASSET0","index":"0.000004712304863435"},{"denom":"ASSET1","index":"0.000038516862421739"},{"denom":"ASSET10","index":"0.000033327636856773"},{"denom":"ASSET11","index":"0.000040042769224492"},{"denom":"ASSET12","index":"0.000038067581160411"},{"denom":"ASSET13","index":"0.000012921267350758"},{"denom":"ASSET14","index":"0.000036963543894220"},{"denom":"ASSET15","index":"0.000029932685024411"},{"denom":"ASSET16","index":"0.000017097625110945"},{"denom":"ASSET17","index":"0.000013823249488614"},{"denom":"ASSET18","index":"0.000005763288311346"},{"denom":"ASSET2","index":"0.000011617908519758"},{"denom":"ASSET3","index":"0.000003346339926665"},{"denom":"ASSET4","index":"0.000031583806671954"},{"denom":"ASSET5","index":"0.000002627997258659"},{"denom":"ASSET6","index":"0.000010733107053643"},{"denom":"ASSET7","index":"0.000016562310450612"},{"denom":"ASSET8","index":"0.000023849612256254"},{"denom":"ASSET9","index":"0.000009557057241669"}],"last_reward_claim_height":"187"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET4","shares":"882668618.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001617402557586"},{"denom":"ASSET1","index":"0.000013485147451276"},{"denom":"ASSET10","index":"0.000009395521488362"},{"denom":"ASSET11","index":"0.000013045402724081"},{"denom":"ASSET12","index":"0.000011747619504798"},{"denom":"ASSET13","index":"0.000004042433845849"},{"denom":"ASSET14","index":"0.000012186291683878"},{"denom":"ASSET15","index":"0.000008713380887153"},{"denom":"ASSET16","index":"0.000006074912523982"},{"denom":"ASSET17","index":"0.000004313788518972"},{"denom":"ASSET18","index":"0.000002055002188551"},{"denom":"ASSET2","index":"0.000003980226055173"},{"denom":"ASSET3","index":"0.000001163714704894"},{"denom":"ASSET4","index":"0.000010959296640193"},{"denom":"ASSET5","index":"0.000000903085512923"},{"denom":"ASSET6","index":"0.000003677767486712"},{"denom":"ASSET7","index":"0.000005633022700557"},{"denom":"ASSET8","index":"0.000007351244780963"},{"denom":"ASSET9","index":"0.000003174742420725"}],"last_reward_claim_height":"117"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET5","shares":"779707186.999999990643513756","reward_history":[],"last_reward_claim_height":"21"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET8","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002995147819628"},{"denom":"ASSET1","index":"0.000025426980115999"},{"denom":"ASSET10","index":"0.000020372034738960"},{"denom":"ASSET11","index":"0.000025287989623967"},{"denom":"ASSET12","index":"0.000024150599022202"},{"denom":"ASSET13","index":"0.000007946076587902"},{"denom":"ASSET14","index":"0.000023198024872944"},{"denom":"ASSET15","index":"0.000018335727027304"},{"denom":"ASSET16","index":"0.000011274635486105"},{"denom":"ASSET17","index":"0.000008875015361763"},{"denom":"ASSET18","index":"0.000003653177061349"},{"denom":"ASSET2","index":"0.000007706361997735"},{"denom":"ASSET3","index":"0.000002137037997503"},{"denom":"ASSET4","index":"0.000020612735071168"},{"denom":"ASSET5","index":"0.000001665450131859"},{"denom":"ASSET6","index":"0.000006718182222688"},{"denom":"ASSET7","index":"0.000010561635089256"},{"denom":"ASSET8","index":"0.000014445035982826"},{"denom":"ASSET9","index":"0.000006128513210961"}],"last_reward_claim_height":"183"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET15","shares":"240438674.203875706931332972","reward_history":[{"denom":"ASSET0","index":"0.000004451028909096"},{"denom":"ASSET1","index":"0.000036477295358036"},{"denom":"ASSET10","index":"0.000031594285637271"},{"denom":"ASSET11","index":"0.000037877235122777"},{"denom":"ASSET12","index":"0.000036094024478773"},{"denom":"ASSET13","index":"0.000012212628058403"},{"denom":"ASSET14","index":"0.000034929714752807"},{"denom":"ASSET15","index":"0.000028351244338063"},{"denom":"ASSET16","index":"0.000016180904344378"},{"denom":"ASSET17","index":"0.000013115564217581"},{"denom":"ASSET18","index":"0.000005434356167162"},{"denom":"ASSET2","index":"0.000011017450045022"},{"denom":"ASSET3","index":"0.000003160957283863"},{"denom":"ASSET4","index":"0.000029890627189887"},{"denom":"ASSET5","index":"0.000002482144499160"},{"denom":"ASSET6","index":"0.000010125586077425"},{"denom":"ASSET7","index":"0.000015654963573568"},{"denom":"ASSET8","index":"0.000022524154498080"},{"denom":"ASSET9","index":"0.000009046112711560"}],"last_reward_claim_height":"199"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET4","shares":"608940313.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003356752793751"},{"denom":"ASSET1","index":"0.000028516406305775"},{"denom":"ASSET10","index":"0.000022616173055400"},{"denom":"ASSET11","index":"0.000028302061322789"},{"denom":"ASSET12","index":"0.000026910491325102"},{"denom":"ASSET13","index":"0.000008878873421079"},{"denom":"ASSET14","index":"0.000025995251505598"},{"denom":"ASSET15","index":"0.000020398635157595"},{"denom":"ASSET16","index":"0.000012658071469071"},{"denom":"ASSET17","index":"0.000009885849877285"},{"denom":"ASSET18","index":"0.000004110010202724"},{"denom":"ASSET2","index":"0.000008622285743228"},{"denom":"ASSET3","index":"0.000002402314047495"},{"denom":"ASSET4","index":"0.000023121698220749"},{"denom":"ASSET5","index":"0.000001866482592061"},{"denom":"ASSET6","index":"0.000007549939309511"},{"denom":"ASSET7","index":"0.000011851024307599"},{"denom":"ASSET8","index":"0.000016149793693754"},{"denom":"ASSET9","index":"0.000006862325287189"}],"last_reward_claim_height":"149"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET7","shares":"165485234.673299206108173848","reward_history":[{"denom":"ASSET0","index":"0.000003356752793751"},{"denom":"ASSET1","index":"0.000028516406305775"},{"denom":"ASSET10","index":"0.000022616173055400"},{"denom":"ASSET11","index":"0.000028302061322789"},{"denom":"ASSET12","index":"0.000026910491325102"},{"denom":"ASSET13","index":"0.000008878873421079"},{"denom":"ASSET14","index":"0.000025995251505598"},{"denom":"ASSET15","index":"0.000020398635157595"},{"denom":"ASSET16","index":"0.000012658071469071"},{"denom":"ASSET17","index":"0.000009885849877285"},{"denom":"ASSET18","index":"0.000004110010202724"},{"denom":"ASSET2","index":"0.000008622285743228"},{"denom":"ASSET3","index":"0.000002402314047495"},{"denom":"ASSET4","index":"0.000023121698220749"},{"denom":"ASSET5","index":"0.000001866482592061"},{"denom":"ASSET6","index":"0.000007549939309511"},{"denom":"ASSET7","index":"0.000011851024307599"},{"denom":"ASSET8","index":"0.000016149793693754"},{"denom":"ASSET9","index":"0.000006862325287189"}],"last_reward_claim_height":"161"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET9","shares":"406343207.063727214255423581","reward_history":[{"denom":"ASSET0","index":"0.000003356752793751"},{"denom":"ASSET1","index":"0.000028516406305775"},{"denom":"ASSET10","index":"0.000022616173055400"},{"denom":"ASSET11","index":"0.000028302061322789"},{"denom":"ASSET12","index":"0.000026910491325102"},{"denom":"ASSET13","index":"0.000008878873421079"},{"denom":"ASSET14","index":"0.000025995251505598"},{"denom":"ASSET15","index":"0.000020398635157595"},{"denom":"ASSET16","index":"0.000012658071469071"},{"denom":"ASSET17","index":"0.000009885849877285"},{"denom":"ASSET18","index":"0.000004110010202724"},{"denom":"ASSET2","index":"0.000008622285743228"},{"denom":"ASSET3","index":"0.000002402314047495"},{"denom":"ASSET4","index":"0.000023121698220749"},{"denom":"ASSET5","index":"0.000001866482592061"},{"denom":"ASSET6","index":"0.000007549939309511"},{"denom":"ASSET7","index":"0.000011851024307599"},{"denom":"ASSET8","index":"0.000016149793693754"},{"denom":"ASSET9","index":"0.000006862325287189"}],"last_reward_claim_height":"126"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET11","shares":"90646425.698747440362917868","reward_history":[{"denom":"ASSET0","index":"0.000003356752793751"},{"denom":"ASSET1","index":"0.000028516406305775"},{"denom":"ASSET10","index":"0.000022616173055400"},{"denom":"ASSET11","index":"0.000028302061322789"},{"denom":"ASSET12","index":"0.000026910491325102"},{"denom":"ASSET13","index":"0.000008878873421079"},{"denom":"ASSET14","index":"0.000025995251505598"},{"denom":"ASSET15","index":"0.000020398635157595"},{"denom":"ASSET16","index":"0.000012658071469071"},{"denom":"ASSET17","index":"0.000009885849877285"},{"denom":"ASSET18","index":"0.000004110010202724"},{"denom":"ASSET2","index":"0.000008622285743228"},{"denom":"ASSET3","index":"0.000002402314047495"},{"denom":"ASSET4","index":"0.000023121698220749"},{"denom":"ASSET5","index":"0.000001866482592061"},{"denom":"ASSET6","index":"0.000007549939309511"},{"denom":"ASSET7","index":"0.000011851024307599"},{"denom":"ASSET8","index":"0.000016149793693754"},{"denom":"ASSET9","index":"0.000006862325287189"}],"last_reward_claim_height":"160"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET15","shares":"205984312.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001778581753434"},{"denom":"ASSET1","index":"0.000014888315804569"},{"denom":"ASSET10","index":"0.000010370885153828"},{"denom":"ASSET11","index":"0.000014404007158094"},{"denom":"ASSET12","index":"0.000012967781516823"},{"denom":"ASSET13","index":"0.000004458979607201"},{"denom":"ASSET14","index":"0.000013452090163298"},{"denom":"ASSET15","index":"0.000009619371736884"},{"denom":"ASSET16","index":"0.000006705169708956"},{"denom":"ASSET17","index":"0.000004759584973979"},{"denom":"ASSET18","index":"0.000002262890399909"},{"denom":"ASSET2","index":"0.000004392178414584"},{"denom":"ASSET3","index":"0.000001285922957882"},{"denom":"ASSET4","index":"0.000012099366012799"},{"denom":"ASSET5","index":"0.000000993667740182"},{"denom":"ASSET6","index":"0.000004058172451498"},{"denom":"ASSET7","index":"0.000006220861062481"},{"denom":"ASSET8","index":"0.000008116344902996"},{"denom":"ASSET9","index":"0.000003507062612406"}],"last_reward_claim_height":"78"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET17","shares":"351627172.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003356752793751"},{"denom":"ASSET1","index":"0.000028516406305775"},{"denom":"ASSET10","index":"0.000022616173055400"},{"denom":"ASSET11","index":"0.000028302061322789"},{"denom":"ASSET12","index":"0.000026910491325102"},{"denom":"ASSET13","index":"0.000008878873421079"},{"denom":"ASSET14","index":"0.000025995251505598"},{"denom":"ASSET15","index":"0.000020398635157595"},{"denom":"ASSET16","index":"0.000012658071469071"},{"denom":"ASSET17","index":"0.000009885849877285"},{"denom":"ASSET18","index":"0.000004110010202724"},{"denom":"ASSET2","index":"0.000008622285743228"},{"denom":"ASSET3","index":"0.000002402314047495"},{"denom":"ASSET4","index":"0.000023121698220749"},{"denom":"ASSET5","index":"0.000001866482592061"},{"denom":"ASSET6","index":"0.000007549939309511"},{"denom":"ASSET7","index":"0.000011851024307599"},{"denom":"ASSET8","index":"0.000016149793693754"},{"denom":"ASSET9","index":"0.000006862325287189"}],"last_reward_claim_height":"138"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET2","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003200268554223"},{"denom":"ASSET1","index":"0.000027155061035589"},{"denom":"ASSET10","index":"0.000021699312128992"},{"denom":"ASSET11","index":"0.000026991580254755"},{"denom":"ASSET12","index":"0.000025748970079650"},{"denom":"ASSET13","index":"0.000008479073830121"},{"denom":"ASSET14","index":"0.000024769827936089"},{"denom":"ASSET15","index":"0.000019540730612944"},{"denom":"ASSET16","index":"0.000012044995213579"},{"denom":"ASSET17","index":"0.000009462424001901"},{"denom":"ASSET18","index":"0.000003906197580725"},{"denom":"ASSET2","index":"0.000008225756082433"},{"denom":"ASSET3","index":"0.000002283784004254"},{"denom":"ASSET4","index":"0.000022014648589339"},{"denom":"ASSET5","index":"0.000001779311895342"},{"denom":"ASSET6","index":"0.000007179475362032"},{"denom":"ASSET7","index":"0.000011280598785262"},{"denom":"ASSET8","index":"0.000015413911362487"},{"denom":"ASSET9","index":"0.000006542247148589"}],"last_reward_claim_height":"140"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET16","shares":"504381381.326214847764360600","reward_history":[{"denom":"ASSET0","index":"0.000003154859072778"},{"denom":"ASSET1","index":"0.000026759958230198"},{"denom":"ASSET10","index":"0.000021318547828682"},{"denom":"ASSET11","index":"0.000026582778956839"},{"denom":"ASSET12","index":"0.000025324795995745"},{"denom":"ASSET13","index":"0.000008347309163095"},{"denom":"ASSET14","index":"0.000024403216779648"},{"denom":"ASSET15","index":"0.000019208461119321"},{"denom":"ASSET16","index":"0.000011872154646602"},{"denom":"ASSET17","index":"0.000009304429323264"},{"denom":"ASSET18","index":"0.000003853154066825"},{"denom":"ASSET2","index":"0.000008100524497579"},{"denom":"ASSET3","index":"0.000002251942800438"},{"denom":"ASSET4","index":"0.000021695917087147"},{"denom":"ASSET5","index":"0.000001753374642360"},{"denom":"ASSET6","index":"0.000007078305954632"},{"denom":"ASSET7","index":"0.000011118481739065"},{"denom":"ASSET8","index":"0.000015174129529137"},{"denom":"ASSET9","index":"0.000006441283498998"}],"last_reward_claim_height":"123"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET13","shares":"9142350.528289365998733024","reward_history":[{"denom":"ASSET0","index":"0.000003066618221533"},{"denom":"ASSET1","index":"0.000026018563142658"},{"denom":"ASSET10","index":"0.000020743763118655"},{"denom":"ASSET11","index":"0.000025849025514444"},{"denom":"ASSET12","index":"0.000024635604575072"},{"denom":"ASSET13","index":"0.000008118261811936"},{"denom":"ASSET14","index":"0.000023728777879609"},{"denom":"ASSET15","index":"0.000018689177197382"},{"denom":"ASSET16","index":"0.000011544003668418"},{"denom":"ASSET17","index":"0.000009052167825210"},{"denom":"ASSET18","index":"0.000003745930402733"},{"denom":"ASSET2","index":"0.000007877080459743"},{"denom":"ASSET3","index":"0.000002188594145460"},{"denom":"ASSET4","index":"0.000021094338825720"},{"denom":"ASSET5","index":"0.000001705356613908"},{"denom":"ASSET6","index":"0.000006882744986340"},{"denom":"ASSET7","index":"0.000010809249072439"},{"denom":"ASSET8","index":"0.000014757775472241"},{"denom":"ASSET9","index":"0.000006264987011427"}],"last_reward_claim_height":"180"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET2","shares":"131125785.099480064280296616","reward_history":[{"denom":"ASSET0","index":"0.000003010548827117"},{"denom":"ASSET1","index":"0.000025517681435823"},{"denom":"ASSET10","index":"0.000020207909525991"},{"denom":"ASSET11","index":"0.000025316824190850"},{"denom":"ASSET12","index":"0.000024059273468565"},{"denom":"ASSET13","index":"0.000007945703994160"},{"denom":"ASSET14","index":"0.000023261456497592"},{"denom":"ASSET15","index":"0.000018230653165683"},{"denom":"ASSET16","index":"0.000011330852554208"},{"denom":"ASSET17","index":"0.000008840468160143"},{"denom":"ASSET18","index":"0.000003685449036638"},{"denom":"ASSET2","index":"0.000007715875534239"},{"denom":"ASSET3","index":"0.000002150116713749"},{"denom":"ASSET4","index":"0.000020690763011385"},{"denom":"ASSET5","index":"0.000001674170167376"},{"denom":"ASSET6","index":"0.000006761947340508"},{"denom":"ASSET7","index":"0.000010605047135869"},{"denom":"ASSET8","index":"0.000014444866674878"},{"denom":"ASSET9","index":"0.000006137206230949"}],"last_reward_claim_height":"125"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET3","shares":"53547712.822516645412141762","reward_history":[{"denom":"ASSET0","index":"0.000003010548827117"},{"denom":"ASSET1","index":"0.000025517681435823"},{"denom":"ASSET10","index":"0.000020207909525991"},{"denom":"ASSET11","index":"0.000025316824190850"},{"denom":"ASSET12","index":"0.000024059273468565"},{"denom":"ASSET13","index":"0.000007945703994160"},{"denom":"ASSET14","index":"0.000023261456497592"},{"denom":"ASSET15","index":"0.000018230653165683"},{"denom":"ASSET16","index":"0.000011330852554208"},{"denom":"ASSET17","index":"0.000008840468160143"},{"denom":"ASSET18","index":"0.000003685449036638"},{"denom":"ASSET2","index":"0.000007715875534239"},{"denom":"ASSET3","index":"0.000002150116713749"},{"denom":"ASSET4","index":"0.000020690763011385"},{"denom":"ASSET5","index":"0.000001674170167376"},{"denom":"ASSET6","index":"0.000006761947340508"},{"denom":"ASSET7","index":"0.000010605047135869"},{"denom":"ASSET8","index":"0.000014444866674878"},{"denom":"ASSET9","index":"0.000006137206230949"}],"last_reward_claim_height":"127"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET12","shares":"347750085.120264898281883820","reward_history":[{"denom":"ASSET0","index":"0.000004628196216454"},{"denom":"ASSET1","index":"0.000037795277380303"},{"denom":"ASSET10","index":"0.000032676632065203"},{"denom":"ASSET11","index":"0.000039304101124319"},{"denom":"ASSET12","index":"0.000037329106659292"},{"denom":"ASSET13","index":"0.000012685957294416"},{"denom":"ASSET14","index":"0.000036296237966481"},{"denom":"ASSET15","index":"0.000029358352032693"},{"denom":"ASSET16","index":"0.000016782013119957"},{"denom":"ASSET17","index":"0.000013552222419598"},{"denom":"ASSET18","index":"0.000005664432888245"},{"denom":"ASSET2","index":"0.000011394866388508"},{"denom":"ASSET3","index":"0.000003287725213992"},{"denom":"ASSET4","index":"0.000030999049090585"},{"denom":"ASSET5","index":"0.000002581694668490"},{"denom":"ASSET6","index":"0.000010547613503465"},{"denom":"ASSET7","index":"0.000016263806219015"},{"denom":"ASSET8","index":"0.000023421280150023"},{"denom":"ASSET9","index":"0.000009378776027781"}],"last_reward_claim_height":"195"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET15","shares":"2402590.167465636189486235","reward_history":[{"denom":"ASSET0","index":"0.000003010548827117"},{"denom":"ASSET1","index":"0.000025517681435823"},{"denom":"ASSET10","index":"0.000020207909525991"},{"denom":"ASSET11","index":"0.000025316824190850"},{"denom":"ASSET12","index":"0.000024059273468565"},{"denom":"ASSET13","index":"0.000007945703994160"},{"denom":"ASSET14","index":"0.000023261456497592"},{"denom":"ASSET15","index":"0.000018230653165683"},{"denom":"ASSET16","index":"0.000011330852554208"},{"denom":"ASSET17","index":"0.000008840468160143"},{"denom":"ASSET18","index":"0.000003685449036638"},{"denom":"ASSET2","index":"0.000007715875534239"},{"denom":"ASSET3","index":"0.000002150116713749"},{"denom":"ASSET4","index":"0.000020690763011385"},{"denom":"ASSET5","index":"0.000001674170167376"},{"denom":"ASSET6","index":"0.000006761947340508"},{"denom":"ASSET7","index":"0.000010605047135869"},{"denom":"ASSET8","index":"0.000014444866674878"},{"denom":"ASSET9","index":"0.000006137206230949"}],"last_reward_claim_height":"155"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET3","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"23"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET14","shares":"40533661.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001598496813351"},{"denom":"ASSET1","index":"0.000013327209301876"},{"denom":"ASSET10","index":"0.000009285082513510"},{"denom":"ASSET11","index":"0.000012892549064690"},{"denom":"ASSET12","index":"0.000011609910099638"},{"denom":"ASSET13","index":"0.000003995530641827"},{"denom":"ASSET14","index":"0.000012043503249499"},{"denom":"ASSET15","index":"0.000008611039019674"},{"denom":"ASSET16","index":"0.000006003788988106"},{"denom":"ASSET17","index":"0.000004263725256261"},{"denom":"ASSET18","index":"0.000002031022875886"},{"denom":"ASSET2","index":"0.000003933995272733"},{"denom":"ASSET3","index":"0.000001150675832486"},{"denom":"ASSET4","index":"0.000010830580656369"},{"denom":"ASSET5","index":"0.000000893152091305"},{"denom":"ASSET6","index":"0.000003635566517414"},{"denom":"ASSET7","index":"0.000005567705967820"},{"denom":"ASSET8","index":"0.000007265086206652"},{"denom":"ASSET9","index":"0.000003137948128033"}],"last_reward_claim_height":"104"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET2","shares":"799827878.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002874619638549"},{"denom":"ASSET1","index":"0.000024442633186143"},{"denom":"ASSET10","index":"0.000019689737510784"},{"denom":"ASSET11","index":"0.000024334399718263"},{"denom":"ASSET12","index":"0.000023294058494145"},{"denom":"ASSET13","index":"0.000007650065286478"},{"denom":"ASSET14","index":"0.000022306974942610"},{"denom":"ASSET15","index":"0.000017702453996022"},{"denom":"ASSET16","index":"0.000010830667352685"},{"denom":"ASSET17","index":"0.000008561334956642"},{"denom":"ASSET18","index":"0.000003501743239949"},{"denom":"ASSET2","index":"0.000007413384379561"},{"denom":"ASSET3","index":"0.000002050775894848"},{"denom":"ASSET4","index":"0.000019811877393900"},{"denom":"ASSET5","index":"0.000001596563839644"},{"denom":"ASSET6","index":"0.000006447875450380"},{"denom":"ASSET7","index":"0.000010149425285061"},{"denom":"ASSET8","index":"0.000013906577801610"},{"denom":"ASSET9","index":"0.000005896530335304"}],"last_reward_claim_height":"159"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET3","shares":"441687484.672357209019419195","reward_history":[{"denom":"ASSET0","index":"0.000002874619638549"},{"denom":"ASSET1","index":"0.000024442633186143"},{"denom":"ASSET10","index":"0.000019689737510784"},{"denom":"ASSET11","index":"0.000024334399718263"},{"denom":"ASSET12","index":"0.000023294058494145"},{"denom":"ASSET13","index":"0.000007650065286478"},{"denom":"ASSET14","index":"0.000022306974942610"},{"denom":"ASSET15","index":"0.000017702453996022"},{"denom":"ASSET16","index":"0.000010830667352685"},{"denom":"ASSET17","index":"0.000008561334956642"},{"denom":"ASSET18","index":"0.000003501743239949"},{"denom":"ASSET2","index":"0.000007413384379561"},{"denom":"ASSET3","index":"0.000002050775894848"},{"denom":"ASSET4","index":"0.000019811877393900"},{"denom":"ASSET5","index":"0.000001596563839644"},{"denom":"ASSET6","index":"0.000006447875450380"},{"denom":"ASSET7","index":"0.000010149425285061"},{"denom":"ASSET8","index":"0.000013906577801610"},{"denom":"ASSET9","index":"0.000005896530335304"}],"last_reward_claim_height":"183"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET0","shares":"469426830.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001744355646452"},{"denom":"ASSET1","index":"0.000014544558741461"},{"denom":"ASSET10","index":"0.000010133244841823"},{"denom":"ASSET11","index":"0.000014070651242217"},{"denom":"ASSET12","index":"0.000012670295178174"},{"denom":"ASSET13","index":"0.000004360461787457"},{"denom":"ASSET14","index":"0.000013143775348745"},{"denom":"ASSET15","index":"0.000009397812194213"},{"denom":"ASSET16","index":"0.000006552230555377"},{"denom":"ASSET17","index":"0.000004653181929010"},{"denom":"ASSET18","index":"0.000002216553831001"},{"denom":"ASSET2","index":"0.000004293371185670"},{"denom":"ASSET3","index":"0.000001255918972299"},{"denom":"ASSET4","index":"0.000011819911117312"},{"denom":"ASSET5","index":"0.000000974736704938"},{"denom":"ASSET6","index":"0.000003967319407560"},{"denom":"ASSET7","index":"0.000006076186412764"},{"denom":"ASSET8","index":"0.000007929083542361"},{"denom":"ASSET9","index":"0.000003424611991834"}],"last_reward_claim_height":"86"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET13","shares":"800562761.000000000000000000","reward_history":[],"last_reward_claim_height":"6"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET17","shares":"343750747.969264214233015704","reward_history":[{"denom":"ASSET0","index":"0.000005025135283889"},{"denom":"ASSET1","index":"0.000041150902230665"},{"denom":"ASSET10","index":"0.000035503906252523"},{"denom":"ASSET11","index":"0.000042698139065522"},{"denom":"ASSET12","index":"0.000040613177204205"},{"denom":"ASSET13","index":"0.000013762722497172"},{"denom":"ASSET14","index":"0.000039399391051892"},{"denom":"ASSET15","index":"0.000031885867220772"},{"denom":"ASSET16","index":"0.000018264474504804"},{"denom":"ASSET17","index":"0.000014756668842278"},{"denom":"ASSET18","index":"0.000006143633971099"},{"denom":"ASSET2","index":"0.000012417834673698"},{"denom":"ASSET3","index":"0.000003569934151742"},{"denom":"ASSET4","index":"0.000033724592875945"},{"denom":"ASSET5","index":"0.000002802367388675"},{"denom":"ASSET6","index":"0.000011436693406867"},{"denom":"ASSET7","index":"0.000017665780825714"},{"denom":"ASSET8","index":"0.000025384816720225"},{"denom":"ASSET9","index":"0.000010198330599342"}],"last_reward_claim_height":"199"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET0","shares":"68743061.290111032848542760","reward_history":[{"denom":"ASSET0","index":"0.000003044385892570"},{"denom":"ASSET1","index":"0.000025830014188245"},{"denom":"ASSET10","index":"0.000020607856539150"},{"denom":"ASSET11","index":"0.000025666657138152"},{"denom":"ASSET12","index":"0.000024468008636658"},{"denom":"ASSET13","index":"0.000008060303383676"},{"denom":"ASSET14","index":"0.000023559408638801"},{"denom":"ASSET15","index":"0.000018562848593971"},{"denom":"ASSET16","index":"0.000011459854746185"},{"denom":"ASSET17","index":"0.000008991538648143"},{"denom":"ASSET18","index":"0.000003718456390600"},{"denom":"ASSET2","index":"0.000007821717005664"},{"denom":"ASSET3","index":"0.000002173111618200"},{"denom":"ASSET4","index":"0.000020942104557307"},{"denom":"ASSET5","index":"0.000001691598021351"},{"denom":"ASSET6","index":"0.000006831113312915"},{"denom":"ASSET7","index":"0.000010730587410374"},{"denom":"ASSET8","index":"0.000014654605067850"},{"denom":"ASSET9","index":"0.000006220578615076"}],"last_reward_claim_height":"180"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET4","shares":"305028714.783077733224095974","reward_history":[{"denom":"ASSET0","index":"0.000001546168277317"},{"denom":"ASSET1","index":"0.000012892123182452"},{"denom":"ASSET10","index":"0.000008982377260299"},{"denom":"ASSET11","index":"0.000012472337191477"},{"denom":"ASSET12","index":"0.000011231230783378"},{"denom":"ASSET13","index":"0.000003864117010091"},{"denom":"ASSET14","index":"0.000011651016774353"},{"denom":"ASSET15","index":"0.000008329231976204"},{"denom":"ASSET16","index":"0.000005807908663952"},{"denom":"ASSET17","index":"0.000004124853650448"},{"denom":"ASSET18","index":"0.000001964650585090"},{"denom":"ASSET2","index":"0.000003805451266010"},{"denom":"ASSET3","index":"0.000001113345454324"},{"denom":"ASSET4","index":"0.000010477701892746"},{"denom":"ASSET5","index":"0.000000863038279582"},{"denom":"ASSET6","index":"0.000003516033595214"},{"denom":"ASSET7","index":"0.000005385515306574"},{"denom":"ASSET8","index":"0.000007028156140823"},{"denom":"ASSET9","index":"0.000003034974493755"}],"last_reward_claim_height":"80"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET12","shares":"187899821.000000000000000000","reward_history":[],"last_reward_claim_height":"54"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET14","shares":"221721908.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002956721491824"},{"denom":"ASSET1","index":"0.000025136116728129"},{"denom":"ASSET10","index":"0.000020247681325291"},{"denom":"ASSET11","index":"0.000025026479369709"},{"denom":"ASSET12","index":"0.000023957412844230"},{"denom":"ASSET13","index":"0.000007866588644670"},{"denom":"ASSET14","index":"0.000022940688787988"},{"denom":"ASSET15","index":"0.000018203641219753"},{"denom":"ASSET16","index":"0.000011138902531601"},{"denom":"ASSET17","index":"0.000008803888891481"},{"denom":"ASSET18","index":"0.000003602115317706"},{"denom":"ASSET2","index":"0.000007623974866010"},{"denom":"ASSET3","index":"0.000002110544057177"},{"denom":"ASSET4","index":"0.000020374365248917"},{"denom":"ASSET5","index":"0.000001641905652861"},{"denom":"ASSET6","index":"0.000006630874494768"},{"denom":"ASSET7","index":"0.000010436528568948"},{"denom":"ASSET8","index":"0.000014302572224422"},{"denom":"ASSET9","index":"0.000006063325997423"}],"last_reward_claim_height":"177"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET1","shares":"784346817.806298895868040825","reward_history":[{"denom":"ASSET0","index":"0.000004545294507794"},{"denom":"ASSET1","index":"0.000037192694983912"},{"denom":"ASSET10","index":"0.000032262715242687"},{"denom":"ASSET11","index":"0.000038670034921742"},{"denom":"ASSET12","index":"0.000036825082134373"},{"denom":"ASSET13","index":"0.000012477999234476"},{"denom":"ASSET14","index":"0.000035675231103004"},{"denom":"ASSET15","index":"0.000028955126539269"},{"denom":"ASSET16","index":"0.000016501479711143"},{"denom":"ASSET17","index":"0.000013375565376674"},{"denom":"ASSET18","index":"0.000005551584309232"},{"denom":"ASSET2","index":"0.000011228299311701"},{"denom":"ASSET3","index":"0.000003227045554533"},{"denom":"ASSET4","index":"0.000030489570113631"},{"denom":"ASSET5","index":"0.000002534727468650"},{"denom":"ASSET6","index":"0.000010345764684520"},{"denom":"ASSET7","index":"0.000015981527512644"},{"denom":"ASSET8","index":"0.000023025532506718"},{"denom":"ASSET9","index":"0.000009230960558874"}],"last_reward_claim_height":"193"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET10","shares":"279178820.224033837342065300","reward_history":[{"denom":"ASSET0","index":"0.000001500850379058"},{"denom":"ASSET1","index":"0.000012511793460183"},{"denom":"ASSET10","index":"0.000008717304800227"},{"denom":"ASSET11","index":"0.000012103632089176"},{"denom":"ASSET12","index":"0.000010899320696303"},{"denom":"ASSET13","index":"0.000003750781099635"},{"denom":"ASSET14","index":"0.000011306809643305"},{"denom":"ASSET15","index":"0.000008083881387560"},{"denom":"ASSET16","index":"0.000005636258009526"},{"denom":"ASSET17","index":"0.000004002940101492"},{"denom":"ASSET18","index":"0.000001906322054045"},{"denom":"ASSET2","index":"0.000003692952635209"},{"denom":"ASSET3","index":"0.000001079912951956"},{"denom":"ASSET4","index":"0.000010167723378913"},{"denom":"ASSET5","index":"0.000000838512734178"},{"denom":"ASSET6","index":"0.000003412551825143"},{"denom":"ASSET7","index":"0.000005226751790509"},{"denom":"ASSET8","index":"0.000006820396682251"},{"denom":"ASSET9","index":"0.000002945889565704"}],"last_reward_claim_height":"101"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET17","shares":"505456806.999999995450888737","reward_history":[{"denom":"ASSET0","index":"0.000003004514310835"},{"denom":"ASSET1","index":"0.000025497942224476"},{"denom":"ASSET10","index":"0.000020385999177782"},{"denom":"ASSET11","index":"0.000025346802479017"},{"denom":"ASSET12","index":"0.000024185328023735"},{"denom":"ASSET13","index":"0.000007962788555043"},{"denom":"ASSET14","index":"0.000023259189454501"},{"denom":"ASSET15","index":"0.000018355567065709"},{"denom":"ASSET16","index":"0.000011309092459120"},{"denom":"ASSET17","index":"0.000008887662321727"},{"denom":"ASSET18","index":"0.000003666570499762"},{"denom":"ASSET2","index":"0.000007723995884874"},{"denom":"ASSET3","index":"0.000002143405494402"},{"denom":"ASSET4","index":"0.000020670641097733"},{"denom":"ASSET5","index":"0.000001670336124344"},{"denom":"ASSET6","index":"0.000006739845385808"},{"denom":"ASSET7","index":"0.000010591422556410"},{"denom":"ASSET8","index":"0.000014475095162856"},{"denom":"ASSET9","index":"0.000006143360978771"}],"last_reward_claim_height":"140"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET0","shares":"93236779.000000000000000000","reward_history":[],"last_reward_claim_height":"4"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET2","shares":"624975297.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003064659144392"},{"denom":"ASSET1","index":"0.000026014545525120"},{"denom":"ASSET10","index":"0.000020837902255895"},{"denom":"ASSET11","index":"0.000025870951889592"},{"denom":"ASSET12","index":"0.000024704995690840"},{"denom":"ASSET13","index":"0.000008129050348807"},{"denom":"ASSET14","index":"0.000023733606076391"},{"denom":"ASSET15","index":"0.000018755969892396"},{"denom":"ASSET16","index":"0.000011535737727926"},{"denom":"ASSET17","index":"0.000009078938038909"},{"denom":"ASSET18","index":"0.000003738223548700"},{"denom":"ASSET2","index":"0.000007883998416280"},{"denom":"ASSET3","index":"0.000002186926046113"},{"denom":"ASSET4","index":"0.000021089316501471"},{"denom":"ASSET5","index":"0.000001703791082418"},{"denom":"ASSET6","index":"0.000006873778950624"},{"denom":"ASSET7","index":"0.000010805665377904"},{"denom":"ASSET8","index":"0.000014777724141198"},{"denom":"ASSET9","index":"0.000006269886019705"}],"last_reward_claim_height":"141"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET1","shares":"701151620.000000001741127994","reward_history":[{"denom":"ASSET0","index":"0.000001016570122529"},{"denom":"ASSET1","index":"0.000008477171470527"},{"denom":"ASSET10","index":"0.000005906463519680"},{"denom":"ASSET11","index":"0.000008200989896911"},{"denom":"ASSET12","index":"0.000007384774710599"},{"denom":"ASSET13","index":"0.000002541117067960"},{"denom":"ASSET14","index":"0.000007660956284215"},{"denom":"ASSET15","index":"0.000005477395717812"},{"denom":"ASSET16","index":"0.000003819073322661"},{"denom":"ASSET17","index":"0.000002711881121289"},{"denom":"ASSET18","index":"0.000001291518742692"},{"denom":"ASSET2","index":"0.000002502279034170"},{"denom":"ASSET3","index":"0.000000731757874738"},{"denom":"ASSET4","index":"0.000006889127422234"},{"denom":"ASSET5","index":"0.000000567775065403"},{"denom":"ASSET6","index":"0.000002312404202309"},{"denom":"ASSET7","index":"0.000003541658795591"},{"denom":"ASSET8","index":"0.000004621109544256"},{"denom":"ASSET9","index":"0.000001996151641449"}],"last_reward_claim_height":"69"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET11","shares":"941939993.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002499545170163"},{"denom":"ASSET1","index":"0.000021282413071401"},{"denom":"ASSET10","index":"0.000017412808765385"},{"denom":"ASSET11","index":"0.000021259874812403"},{"denom":"ASSET12","index":"0.000020486111882687"},{"denom":"ASSET13","index":"0.000006694303381301"},{"denom":"ASSET14","index":"0.000019446986985139"},{"denom":"ASSET15","index":"0.000015606004703242"},{"denom":"ASSET16","index":"0.000009412782427040"},{"denom":"ASSET17","index":"0.000007528963649123"},{"denom":"ASSET18","index":"0.000003027066879988"},{"denom":"ASSET2","index":"0.000006477094521478"},{"denom":"ASSET3","index":"0.000001780578331809"},{"denom":"ASSET4","index":"0.000017246051064985"},{"denom":"ASSET5","index":"0.000001387924123500"},{"denom":"ASSET6","index":"0.000005593713918003"},{"denom":"ASSET7","index":"0.000008831780754063"},{"denom":"ASSET8","index":"0.000012169406160300"},{"denom":"ASSET9","index":"0.000005149034362400"}],"last_reward_claim_height":"170"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET13","shares":"670149516.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003043964098015"},{"denom":"ASSET1","index":"0.000025828331615061"},{"denom":"ASSET10","index":"0.000020594675215425"},{"denom":"ASSET11","index":"0.000025661520704142"},{"denom":"ASSET12","index":"0.000024456429429906"},{"denom":"ASSET13","index":"0.000008058244190043"},{"denom":"ASSET14","index":"0.000023555461855486"},{"denom":"ASSET15","index":"0.000018552812657155"},{"denom":"ASSET16","index":"0.000011456604402492"},{"denom":"ASSET17","index":"0.000008987560143691"},{"denom":"ASSET18","index":"0.000003716794339222"},{"denom":"ASSET2","index":"0.000007820148034807"},{"denom":"ASSET3","index":"0.000002173135080244"},{"denom":"ASSET4","index":"0.000020938599170426"},{"denom":"ASSET5","index":"0.000001690207511083"},{"denom":"ASSET6","index":"0.000006829800145738"},{"denom":"ASSET7","index":"0.000010729300481432"},{"denom":"ASSET8","index":"0.000014648719853803"},{"denom":"ASSET9","index":"0.000006217447736766"}],"last_reward_claim_height":"175"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET16","shares":"304015615.248503618860424637","reward_history":[{"denom":"ASSET0","index":"0.000004613485224377"},{"denom":"ASSET1","index":"0.000037740369506725"},{"denom":"ASSET10","index":"0.000032691878864798"},{"denom":"ASSET11","index":"0.000039232152349692"},{"denom":"ASSET12","index":"0.000037331153749090"},{"denom":"ASSET13","index":"0.000012657550996453"},{"denom":"ASSET14","index":"0.000036202019838156"},{"denom":"ASSET15","index":"0.000029349029406985"},{"denom":"ASSET16","index":"0.000016745236814022"},{"denom":"ASSET17","index":"0.000013558784939453"},{"denom":"ASSET18","index":"0.000005636901817265"},{"denom":"ASSET2","index":"0.000011389634856992"},{"denom":"ASSET3","index":"0.000003276670342419"},{"denom":"ASSET4","index":"0.000030939743993790"},{"denom":"ASSET5","index":"0.000002570403032325"},{"denom":"ASSET6","index":"0.000010502839382187"},{"denom":"ASSET7","index":"0.000016219772344493"},{"denom":"ASSET8","index":"0.000023358092187368"},{"denom":"ASSET9","index":"0.000009362632929320"}],"last_reward_claim_height":"184"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET9","shares":"633816183.000000000000000000","reward_history":[],"last_reward_claim_height":"53"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET16","shares":"232939044.999999995898503600","reward_history":[],"last_reward_claim_height":"38"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET0","shares":"832786092.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001745798220012"},{"denom":"ASSET1","index":"0.000014553743296829"},{"denom":"ASSET10","index":"0.000010139438249561"},{"denom":"ASSET11","index":"0.000014079320164724"},{"denom":"ASSET12","index":"0.000012678243118663"},{"denom":"ASSET13","index":"0.000004363016060013"},{"denom":"ASSET14","index":"0.000013152173087429"},{"denom":"ASSET15","index":"0.000009403145384454"},{"denom":"ASSET16","index":"0.000006556113428486"},{"denom":"ASSET17","index":"0.000004655955083371"},{"denom":"ASSET18","index":"0.000002217755535422"},{"denom":"ASSET2","index":"0.000004295945845911"},{"denom":"ASSET3","index":"0.000001256580187737"},{"denom":"ASSET4","index":"0.000011827536358912"},{"denom":"ASSET5","index":"0.000000975477084515"},{"denom":"ASSET6","index":"0.000003969964878841"},{"denom":"ASSET7","index":"0.000006080210806364"},{"denom":"ASSET8","index":"0.000007934011797614"},{"denom":"ASSET9","index":"0.000003426498879278"}],"last_reward_claim_height":"91"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET1","shares":"327377724.954400423812835425","reward_history":[{"denom":"ASSET0","index":"0.000004988100402711"},{"denom":"ASSET1","index":"0.000040830811222204"},{"denom":"ASSET10","index":"0.000035211557233449"},{"denom":"ASSET11","index":"0.000042368225765116"},{"denom":"ASSET12","index":"0.000040283068049268"},{"denom":"ASSET13","index":"0.000013656840057503"},{"denom":"ASSET14","index":"0.000039101529800040"},{"denom":"ASSET15","index":"0.000031628202661313"},{"denom":"ASSET16","index":"0.000018124368514983"},{"denom":"ASSET17","index":"0.000014635120510330"},{"denom":"ASSET18","index":"0.000006099363487354"},{"denom":"ASSET2","index":"0.000012317983770908"},{"denom":"ASSET3","index":"0.000003543214603465"},{"denom":"ASSET4","index":"0.000033464976861775"},{"denom":"ASSET5","index":"0.000002781716792708"},{"denom":"ASSET6","index":"0.000011353508340787"},{"denom":"ASSET7","index":"0.000017532655976265"},{"denom":"ASSET8","index":"0.000025192183938276"},{"denom":"ASSET9","index":"0.000010118614836237"}],"last_reward_claim_height":"196"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET7","shares":"217882314.999999999595005392","reward_history":[],"last_reward_claim_height":"14"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET8","shares":"70498942.000000000000000000","reward_history":[],"last_reward_claim_height":"2"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET17","shares":"809296092.631327167851558496","reward_history":[{"denom":"ASSET0","index":"0.000003342998947188"},{"denom":"ASSET1","index":"0.000028345782457833"},{"denom":"ASSET10","index":"0.000022532322238539"},{"denom":"ASSET11","index":"0.000028144588841629"},{"denom":"ASSET12","index":"0.000026788988923046"},{"denom":"ASSET13","index":"0.000008836278349189"},{"denom":"ASSET14","index":"0.000025846526421467"},{"denom":"ASSET15","index":"0.000020312521464953"},{"denom":"ASSET16","index":"0.000012581099317360"},{"denom":"ASSET17","index":"0.000009844015126225"},{"denom":"ASSET18","index":"0.000004087085525414"},{"denom":"ASSET2","index":"0.000008577030596387"},{"denom":"ASSET3","index":"0.000002386540105172"},{"denom":"ASSET4","index":"0.000022982635628207"},{"denom":"ASSET5","index":"0.000001858980311097"},{"denom":"ASSET6","index":"0.000007503977785171"},{"denom":"ASSET7","index":"0.000011778054778213"},{"denom":"ASSET8","index":"0.000016064148587518"},{"denom":"ASSET9","index":"0.000006822246648031"}],"last_reward_claim_height":"180"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET1","shares":"132632199.495184523820107122","reward_history":[{"denom":"ASSET0","index":"0.000001535240763659"},{"denom":"ASSET1","index":"0.000012802535686671"},{"denom":"ASSET10","index":"0.000008918976928097"},{"denom":"ASSET11","index":"0.000012384847277788"},{"denom":"ASSET12","index":"0.000011152366284839"},{"denom":"ASSET13","index":"0.000003838101909148"},{"denom":"ASSET14","index":"0.000011569197017318"},{"denom":"ASSET15","index":"0.000008271431242866"},{"denom":"ASSET16","index":"0.000005767016142371"},{"denom":"ASSET17","index":"0.000004095404830432"},{"denom":"ASSET18","index":"0.000001951213819735"},{"denom":"ASSET2","index":"0.000003778922237253"},{"denom":"ASSET3","index":"0.000001105544885116"},{"denom":"ASSET4","index":"0.000010403614783903"},{"denom":"ASSET5","index":"0.000000857676404279"},{"denom":"ASSET6","index":"0.000003491600641819"},{"denom":"ASSET7","index":"0.000005348470057083"},{"denom":"ASSET8","index":"0.000006978912901618"},{"denom":"ASSET9","index":"0.000003013874884636"}],"last_reward_claim_height":"96"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET10","shares":"457186129.700001483026278368","reward_history":[{"denom":"ASSET0","index":"0.000003086246918243"},{"denom":"ASSET1","index":"0.000026194228204796"},{"denom":"ASSET10","index":"0.000020951998769875"},{"denom":"ASSET11","index":"0.000026042273492864"},{"denom":"ASSET12","index":"0.000024853724280460"},{"denom":"ASSET13","index":"0.000008181454895403"},{"denom":"ASSET14","index":"0.000023895275980533"},{"denom":"ASSET15","index":"0.000018864347888264"},{"denom":"ASSET16","index":"0.000011616907749245"},{"denom":"ASSET17","index":"0.000009133094250657"},{"denom":"ASSET18","index":"0.000003766346411006"},{"denom":"ASSET2","index":"0.000007935833032906"},{"denom":"ASSET3","index":"0.000002202232138461"},{"denom":"ASSET4","index":"0.000021234941701767"},{"denom":"ASSET5","index":"0.000001715417631736"},{"denom":"ASSET6","index":"0.000006923101305069"},{"denom":"ASSET7","index":"0.000010881195638563"},{"denom":"ASSET8","index":"0.000014873239564067"},{"denom":"ASSET9","index":"0.000006310901439146"}],"last_reward_claim_height":"153"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET11","shares":"272546543.589623116700870919","reward_history":[{"denom":"ASSET0","index":"0.000001535240763659"},{"denom":"ASSET1","index":"0.000012802535686671"},{"denom":"ASSET10","index":"0.000008918976928097"},{"denom":"ASSET11","index":"0.000012384847277788"},{"denom":"ASSET12","index":"0.000011152366284839"},{"denom":"ASSET13","index":"0.000003838101909148"},{"denom":"ASSET14","index":"0.000011569197017318"},{"denom":"ASSET15","index":"0.000008271431242866"},{"denom":"ASSET16","index":"0.000005767016142371"},{"denom":"ASSET17","index":"0.000004095404830432"},{"denom":"ASSET18","index":"0.000001951213819735"},{"denom":"ASSET2","index":"0.000003778922237253"},{"denom":"ASSET3","index":"0.000001105544885116"},{"denom":"ASSET4","index":"0.000010403614783903"},{"denom":"ASSET5","index":"0.000000857676404279"},{"denom":"ASSET6","index":"0.000003491600641819"},{"denom":"ASSET7","index":"0.000005348470057083"},{"denom":"ASSET8","index":"0.000006978912901618"},{"denom":"ASSET9","index":"0.000003013874884636"}],"last_reward_claim_height":"102"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET8","shares":"361069250.000000000000000000","reward_history":[],"last_reward_claim_height":"26"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET11","shares":"628603727.387482622971842621","reward_history":[{"denom":"ASSET0","index":"0.000003333609736915"},{"denom":"ASSET1","index":"0.000028281729059652"},{"denom":"ASSET10","index":"0.000022560289398652"},{"denom":"ASSET11","index":"0.000028101042421314"},{"denom":"ASSET12","index":"0.000026787599659919"},{"denom":"ASSET13","index":"0.000008826015241086"},{"denom":"ASSET14","index":"0.000025794402991537"},{"denom":"ASSET15","index":"0.000020323143219667"},{"denom":"ASSET16","index":"0.000012547562311789"},{"denom":"ASSET17","index":"0.000009844220733470"},{"denom":"ASSET18","index":"0.000004071528772633"},{"denom":"ASSET2","index":"0.000008563776406339"},{"denom":"ASSET3","index":"0.000002379222276435"},{"denom":"ASSET4","index":"0.000022929058250150"},{"denom":"ASSET5","index":"0.000001853699834530"},{"denom":"ASSET6","index":"0.000007480326246914"},{"denom":"ASSET7","index":"0.000011749530638760"},{"denom":"ASSET8","index":"0.000016044906214881"},{"denom":"ASSET9","index":"0.000006811209452101"}],"last_reward_claim_height":"166"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET13","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003333609736915"},{"denom":"ASSET1","index":"0.000028281729059652"},{"denom":"ASSET10","index":"0.000022560289398652"},{"denom":"ASSET11","index":"0.000028101042421314"},{"denom":"ASSET12","index":"0.000026787599659919"},{"denom":"ASSET13","index":"0.000008826015241086"},{"denom":"ASSET14","index":"0.000025794402991537"},{"denom":"ASSET15","index":"0.000020323143219667"},{"denom":"ASSET16","index":"0.000012547562311789"},{"denom":"ASSET17","index":"0.000009844220733470"},{"denom":"ASSET18","index":"0.000004071528772633"},{"denom":"ASSET2","index":"0.000008563776406339"},{"denom":"ASSET3","index":"0.000002379222276435"},{"denom":"ASSET4","index":"0.000022929058250150"},{"denom":"ASSET5","index":"0.000001853699834530"},{"denom":"ASSET6","index":"0.000007480326246914"},{"denom":"ASSET7","index":"0.000011749530638760"},{"denom":"ASSET8","index":"0.000016044906214881"},{"denom":"ASSET9","index":"0.000006811209452101"}],"last_reward_claim_height":"181"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET15","shares":"314779965.430901019810932220","reward_history":[{"denom":"ASSET0","index":"0.000001694764141112"},{"denom":"ASSET1","index":"0.000014130580032100"},{"denom":"ASSET10","index":"0.000009844524497723"},{"denom":"ASSET11","index":"0.000013669508873851"},{"denom":"ASSET12","index":"0.000012309527666765"},{"denom":"ASSET13","index":"0.000004236016804025"},{"denom":"ASSET14","index":"0.000012769407426673"},{"denom":"ASSET15","index":"0.000009129685492685"},{"denom":"ASSET16","index":"0.000006365641339869"},{"denom":"ASSET17","index":"0.000004520761007698"},{"denom":"ASSET18","index":"0.000002153452502679"},{"denom":"ASSET2","index":"0.000004171085594400"},{"denom":"ASSET3","index":"0.000001219991901933"},{"denom":"ASSET4","index":"0.000011483292916774"},{"denom":"ASSET5","index":"0.000000947161681676"},{"denom":"ASSET6","index":"0.000003854173635500"},{"denom":"ASSET7","index":"0.000005903378783277"},{"denom":"ASSET8","index":"0.000007702985978462"},{"denom":"ASSET9","index":"0.000003326979869284"}],"last_reward_claim_height":"73"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET12","shares":"704561462.999999984499647814","reward_history":[{"denom":"ASSET0","index":"0.000001763265776240"},{"denom":"ASSET1","index":"0.000014701143889842"},{"denom":"ASSET10","index":"0.000010242267715158"},{"denom":"ASSET11","index":"0.000014221824092125"},{"denom":"ASSET12","index":"0.000012807154532407"},{"denom":"ASSET13","index":"0.000004407037513175"},{"denom":"ASSET14","index":"0.000013285723045174"},{"denom":"ASSET15","index":"0.000009498495615253"},{"denom":"ASSET16","index":"0.000006622576828953"},{"denom":"ASSET17","index":"0.000004703043783239"},{"denom":"ASSET18","index":"0.000002240331719108"},{"denom":"ASSET2","index":"0.000004339421867729"},{"denom":"ASSET3","index":"0.000001269671564485"},{"denom":"ASSET4","index":"0.000011947684550294"},{"denom":"ASSET5","index":"0.000000984934568662"},{"denom":"ASSET6","index":"0.000004010359059893"},{"denom":"ASSET7","index":"0.000006141754461338"},{"denom":"ASSET8","index":"0.000008013956555240"},{"denom":"ASSET9","index":"0.000003461169761882"}],"last_reward_claim_height":"116"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET3","shares":"120199447.678662445439095916","reward_history":[{"denom":"ASSET0","index":"0.000004406145269356"},{"denom":"ASSET1","index":"0.000035982671068665"},{"denom":"ASSET10","index":"0.000031271738130447"},{"denom":"ASSET11","index":"0.000037474537578871"},{"denom":"ASSET12","index":"0.000035655856503069"},{"denom":"ASSET13","index":"0.000012104130170712"},{"denom":"ASSET14","index":"0.000034588610172798"},{"denom":"ASSET15","index":"0.000028072528074935"},{"denom":"ASSET16","index":"0.000015968874002764"},{"denom":"ASSET17","index":"0.000012944169264583"},{"denom":"ASSET18","index":"0.000005384646829137"},{"denom":"ASSET2","index":"0.000010857489792794"},{"denom":"ASSET3","index":"0.000003128490133943"},{"denom":"ASSET4","index":"0.000029514600008257"},{"denom":"ASSET5","index":"0.000002457760230967"},{"denom":"ASSET6","index":"0.000010037466684357"},{"denom":"ASSET7","index":"0.000015487392093402"},{"denom":"ASSET8","index":"0.000022350591386021"},{"denom":"ASSET9","index":"0.000008939890806059"}],"last_reward_claim_height":"198"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET5","shares":"224458024.999999966331296250","reward_history":[],"last_reward_claim_height":"62"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET14","shares":"36007307.000000002934064730","reward_history":[{"denom":"ASSET0","index":"0.000002846126280344"},{"denom":"ASSET1","index":"0.000024142729904188"},{"denom":"ASSET10","index":"0.000019247649074564"},{"denom":"ASSET11","index":"0.000023985879136349"},{"denom":"ASSET12","index":"0.000022859091275790"},{"denom":"ASSET13","index":"0.000007532792628817"},{"denom":"ASSET14","index":"0.000022018595952129"},{"denom":"ASSET15","index":"0.000017341431925331"},{"denom":"ASSET16","index":"0.000010711928951149"},{"denom":"ASSET17","index":"0.000008400535387767"},{"denom":"ASSET18","index":"0.000003476353193421"},{"denom":"ASSET2","index":"0.000007309791035362"},{"denom":"ASSET3","index":"0.000002031285314481"},{"denom":"ASSET4","index":"0.000019573873127075"},{"denom":"ASSET5","index":"0.000001582650339951"},{"denom":"ASSET6","index":"0.000006386635795582"},{"denom":"ASSET7","index":"0.000010030235680714"},{"denom":"ASSET8","index":"0.000013694243666513"},{"denom":"ASSET9","index":"0.000005813799926422"}],"last_reward_claim_height":"180"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET16","shares":"911133184.000000010933598208","reward_history":[],"last_reward_claim_height":"56"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET17","shares":"170853572.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002846126280344"},{"denom":"ASSET1","index":"0.000024142729904188"},{"denom":"ASSET10","index":"0.000019247649074564"},{"denom":"ASSET11","index":"0.000023985879136349"},{"denom":"ASSET12","index":"0.000022859091275790"},{"denom":"ASSET13","index":"0.000007532792628817"},{"denom":"ASSET14","index":"0.000022018595952129"},{"denom":"ASSET15","index":"0.000017341431925331"},{"denom":"ASSET16","index":"0.000010711928951149"},{"denom":"ASSET17","index":"0.000008400535387767"},{"denom":"ASSET18","index":"0.000003476353193421"},{"denom":"ASSET2","index":"0.000007309791035362"},{"denom":"ASSET3","index":"0.000002031285314481"},{"denom":"ASSET4","index":"0.000019573873127075"},{"denom":"ASSET5","index":"0.000001582650339951"},{"denom":"ASSET6","index":"0.000006386635795582"},{"denom":"ASSET7","index":"0.000010030235680714"},{"denom":"ASSET8","index":"0.000013694243666513"},{"denom":"ASSET9","index":"0.000005813799926422"}],"last_reward_claim_height":"137"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET0","shares":"100627973.999999998327624030","reward_history":[],"last_reward_claim_height":"47"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET8","shares":"393120048.747936312079792020","reward_history":[{"denom":"ASSET0","index":"0.000001542334439671"},{"denom":"ASSET1","index":"0.000012860022908304"},{"denom":"ASSET10","index":"0.000008959505058412"},{"denom":"ASSET11","index":"0.000012440701863130"},{"denom":"ASSET12","index":"0.000011202637482986"},{"denom":"ASSET13","index":"0.000003855293405849"},{"denom":"ASSET14","index":"0.000011621234937056"},{"denom":"ASSET15","index":"0.000008308996655285"},{"denom":"ASSET16","index":"0.000005793070384239"},{"denom":"ASSET17","index":"0.000004114339021332"},{"denom":"ASSET18","index":"0.000001959846507084"},{"denom":"ASSET2","index":"0.000003796320730815"},{"denom":"ASSET3","index":"0.000001110350550164"},{"denom":"ASSET4","index":"0.000010450826325201"},{"denom":"ASSET5","index":"0.000000861797005699"},{"denom":"ASSET6","index":"0.000003507969675592"},{"denom":"ASSET7","index":"0.000005372663952407"},{"denom":"ASSET8","index":"0.000007010512417899"},{"denom":"ASSET9","index":"0.000003027866977623"}],"last_reward_claim_height":"81"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET10","shares":"334915701.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003036454064443"},{"denom":"ASSET1","index":"0.000025762443856573"},{"denom":"ASSET10","index":"0.000020552854458451"},{"denom":"ASSET11","index":"0.000025598594042577"},{"denom":"ASSET12","index":"0.000024403233064712"},{"denom":"ASSET13","index":"0.000008040226829205"},{"denom":"ASSET14","index":"0.000023496526683137"},{"denom":"ASSET15","index":"0.000018514610345002"},{"denom":"ASSET16","index":"0.000011429420030088"},{"denom":"ASSET17","index":"0.000008967792958730"},{"denom":"ASSET18","index":"0.000003708688180539"},{"denom":"ASSET2","index":"0.000007801450355100"},{"denom":"ASSET3","index":"0.000002167197324698"},{"denom":"ASSET4","index":"0.000020886439041228"},{"denom":"ASSET5","index":"0.000001688395026424"},{"denom":"ASSET6","index":"0.000006814112030993"},{"denom":"ASSET7","index":"0.000010703097412338"},{"denom":"ASSET8","index":"0.000014616213118562"},{"denom":"ASSET9","index":"0.000006204650488693"}],"last_reward_claim_height":"125"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET11","shares":"644126618.000000000000000000","reward_history":[],"last_reward_claim_height":"47"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET14","shares":"6037486.829709678668748710","reward_history":[{"denom":"ASSET0","index":"0.000005180085583978"},{"denom":"ASSET1","index":"0.000042453398829291"},{"denom":"ASSET10","index":"0.000036601166522925"},{"denom":"ASSET11","index":"0.000044027815346030"},{"denom":"ASSET12","index":"0.000041882382657179"},{"denom":"ASSET13","index":"0.000014186442935092"},{"denom":"ASSET14","index":"0.000040623148163189"},{"denom":"ASSET15","index":"0.000032869444044267"},{"denom":"ASSET16","index":"0.000018839345473644"},{"denom":"ASSET17","index":"0.000015220818962022"},{"denom":"ASSET18","index":"0.000006331525475439"},{"denom":"ASSET2","index":"0.000012809427742229"},{"denom":"ASSET3","index":"0.000003681341435185"},{"denom":"ASSET4","index":"0.000034786704814403"},{"denom":"ASSET5","index":"0.000002888643103732"},{"denom":"ASSET6","index":"0.000011788771185399"},{"denom":"ASSET7","index":"0.000018215500007226"},{"denom":"ASSET8","index":"0.000026160872429339"},{"denom":"ASSET9","index":"0.000010514780317885"}],"last_reward_claim_height":"188"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET15","shares":"11080470.459488869524484961","reward_history":[{"denom":"ASSET0","index":"0.000001802604811891"},{"denom":"ASSET1","index":"0.000015041134377282"},{"denom":"ASSET10","index":"0.000010478421042795"},{"denom":"ASSET11","index":"0.000014549893343095"},{"denom":"ASSET12","index":"0.000013101148598203"},{"denom":"ASSET13","index":"0.000004508593559534"},{"denom":"ASSET14","index":"0.000013592389632390"},{"denom":"ASSET15","index":"0.000009716581133843"},{"denom":"ASSET16","index":"0.000006773297988330"},{"denom":"ASSET17","index":"0.000004812496911192"},{"denom":"ASSET18","index":"0.000002289682786467"},{"denom":"ASSET2","index":"0.000004437821546134"},{"denom":"ASSET3","index":"0.000001298874598869"},{"denom":"ASSET4","index":"0.000012222743020122"},{"denom":"ASSET5","index":"0.000001007460426045"},{"denom":"ASSET6","index":"0.000004100613717582"},{"denom":"ASSET7","index":"0.000006282056954143"},{"denom":"ASSET8","index":"0.000008197064375552"},{"denom":"ASSET9","index":"0.000003538600669994"}],"last_reward_claim_height":"111"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET18","shares":"1000014157.142585161000000000","reward_history":[{"denom":"ASSET0","index":"0.000003311345528520"},{"denom":"ASSET1","index":"0.000028134750769747"},{"denom":"ASSET10","index":"0.000022648872120201"},{"denom":"ASSET11","index":"0.000028007957662740"},{"denom":"ASSET12","index":"0.000026803793052874"},{"denom":"ASSET13","index":"0.000008804941803873"},{"denom":"ASSET14","index":"0.000025676450668466"},{"denom":"ASSET15","index":"0.000020365161363483"},{"denom":"ASSET16","index":"0.000012467103206876"},{"denom":"ASSET17","index":"0.000009848512066991"},{"denom":"ASSET18","index":"0.000004032794375330"},{"denom":"ASSET2","index":"0.000008534928074651"},{"denom":"ASSET3","index":"0.000002362590241163"},{"denom":"ASSET4","index":"0.000022806063702805"},{"denom":"ASSET5","index":"0.000001840254083448"},{"denom":"ASSET6","index":"0.000007424521355960"},{"denom":"ASSET7","index":"0.000011683846998076"},{"denom":"ASSET8","index":"0.000016006498096466"},{"denom":"ASSET9","index":"0.000006786333067798"}],"last_reward_claim_height":"151"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET1","shares":"904970726.270444100501760732","reward_history":[{"denom":"ASSET0","index":"0.000001600184479142"},{"denom":"ASSET1","index":"0.000013342157474081"},{"denom":"ASSET10","index":"0.000009295060662992"},{"denom":"ASSET11","index":"0.000012907134644369"},{"denom":"ASSET12","index":"0.000011622469236023"},{"denom":"ASSET13","index":"0.000003999732516397"},{"denom":"ASSET14","index":"0.000012056763384279"},{"denom":"ASSET15","index":"0.000008620301633991"},{"denom":"ASSET16","index":"0.000006010164655719"},{"denom":"ASSET17","index":"0.000004268615973958"},{"denom":"ASSET18","index":"0.000002033021264483"},{"denom":"ASSET2","index":"0.000003938523274026"},{"denom":"ASSET3","index":"0.000001152045383207"},{"denom":"ASSET4","index":"0.000010842780077243"},{"denom":"ASSET5","index":"0.000000894092147498"},{"denom":"ASSET6","index":"0.000003639035195279"},{"denom":"ASSET7","index":"0.000005573684463094"},{"denom":"ASSET8","index":"0.000007272969620361"},{"denom":"ASSET9","index":"0.000003141345760282"}],"last_reward_claim_height":"84"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET8","shares":"842497326.000000000000000000","reward_history":[],"last_reward_claim_height":"28"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET11","shares":"1527351699.999999983763879399","reward_history":[{"denom":"ASSET0","index":"0.000003037978324998"},{"denom":"ASSET1","index":"0.000025756345113171"},{"denom":"ASSET10","index":"0.000020449699671521"},{"denom":"ASSET11","index":"0.000025567125107120"},{"denom":"ASSET12","index":"0.000024323299608917"},{"denom":"ASSET13","index":"0.000008026089638757"},{"denom":"ASSET14","index":"0.000023482777870484"},{"denom":"ASSET15","index":"0.000018439819094125"},{"denom":"ASSET16","index":"0.000011433094032389"},{"denom":"ASSET17","index":"0.000008938487942114"},{"denom":"ASSET18","index":"0.000003715472889790"},{"denom":"ASSET2","index":"0.000007791978720736"},{"denom":"ASSET3","index":"0.000002168844641333"},{"denom":"ASSET4","index":"0.000020883291069830"},{"denom":"ASSET5","index":"0.000001689134510364"},{"denom":"ASSET6","index":"0.000006819968009550"},{"denom":"ASSET7","index":"0.000010702337477897"},{"denom":"ASSET8","index":"0.000014590947163921"},{"denom":"ASSET9","index":"0.000006197850437110"}],"last_reward_claim_height":"140"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET5","shares":"192563416.967301683689281693","reward_history":[{"denom":"ASSET0","index":"0.000003203314564743"},{"denom":"ASSET1","index":"0.000027174750089688"},{"denom":"ASSET10","index":"0.000021494761442080"},{"denom":"ASSET11","index":"0.000026954579685264"},{"denom":"ASSET12","index":"0.000025598519259277"},{"denom":"ASSET13","index":"0.000008453363478510"},{"denom":"ASSET14","index":"0.000024766008219885"},{"denom":"ASSET15","index":"0.000019395989679368"},{"denom":"ASSET16","index":"0.000012063312986412"},{"denom":"ASSET17","index":"0.000009406957788586"},{"denom":"ASSET18","index":"0.000003925664786352"},{"denom":"ASSET2","index":"0.000008214094571203"},{"denom":"ASSET3","index":"0.000002289770772075"},{"denom":"ASSET4","index":"0.000022031271429646"},{"denom":"ASSET5","index":"0.000001779377444361"},{"denom":"ASSET6","index":"0.000007202120906665"},{"denom":"ASSET7","index":"0.000011290805949933"},{"denom":"ASSET8","index":"0.000015376618183469"},{"denom":"ASSET9","index":"0.000006529467958809"}],"last_reward_claim_height":"171"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET6","shares":"280976798.000000005338559162","reward_history":[{"denom":"ASSET0","index":"0.000003203314564743"},{"denom":"ASSET1","index":"0.000027174750089688"},{"denom":"ASSET10","index":"0.000021494761442080"},{"denom":"ASSET11","index":"0.000026954579685264"},{"denom":"ASSET12","index":"0.000025598519259277"},{"denom":"ASSET13","index":"0.000008453363478510"},{"denom":"ASSET14","index":"0.000024766008219885"},{"denom":"ASSET15","index":"0.000019395989679368"},{"denom":"ASSET16","index":"0.000012063312986412"},{"denom":"ASSET17","index":"0.000009406957788586"},{"denom":"ASSET18","index":"0.000003925664786352"},{"denom":"ASSET2","index":"0.000008214094571203"},{"denom":"ASSET3","index":"0.000002289770772075"},{"denom":"ASSET4","index":"0.000022031271429646"},{"denom":"ASSET5","index":"0.000001779377444361"},{"denom":"ASSET6","index":"0.000007202120906665"},{"denom":"ASSET7","index":"0.000011290805949933"},{"denom":"ASSET8","index":"0.000015376618183469"},{"denom":"ASSET9","index":"0.000006529467958809"}],"last_reward_claim_height":"152"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET13","shares":"377547832.999999996979617336","reward_history":[{"denom":"ASSET0","index":"0.000003203314564743"},{"denom":"ASSET1","index":"0.000027174750089688"},{"denom":"ASSET10","index":"0.000021494761442080"},{"denom":"ASSET11","index":"0.000026954579685264"},{"denom":"ASSET12","index":"0.000025598519259277"},{"denom":"ASSET13","index":"0.000008453363478510"},{"denom":"ASSET14","index":"0.000024766008219885"},{"denom":"ASSET15","index":"0.000019395989679368"},{"denom":"ASSET16","index":"0.000012063312986412"},{"denom":"ASSET17","index":"0.000009406957788586"},{"denom":"ASSET18","index":"0.000003925664786352"},{"denom":"ASSET2","index":"0.000008214094571203"},{"denom":"ASSET3","index":"0.000002289770772075"},{"denom":"ASSET4","index":"0.000022031271429646"},{"denom":"ASSET5","index":"0.000001779377444361"},{"denom":"ASSET6","index":"0.000007202120906665"},{"denom":"ASSET7","index":"0.000011290805949933"},{"denom":"ASSET8","index":"0.000015376618183469"},{"denom":"ASSET9","index":"0.000006529467958809"}],"last_reward_claim_height":"174"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET4","shares":"217450891.700133626109231160","reward_history":[{"denom":"ASSET0","index":"0.000001687731873143"},{"denom":"ASSET1","index":"0.000014069560961171"},{"denom":"ASSET10","index":"0.000009802495056563"},{"denom":"ASSET11","index":"0.000013610740912442"},{"denom":"ASSET12","index":"0.000012256373563096"},{"denom":"ASSET13","index":"0.000004217751625940"},{"denom":"ASSET14","index":"0.000012714404583367"},{"denom":"ASSET15","index":"0.000009090791386823"},{"denom":"ASSET16","index":"0.000006338265608675"},{"denom":"ASSET17","index":"0.000004501407356839"},{"denom":"ASSET18","index":"0.000002144184836496"},{"denom":"ASSET2","index":"0.000004153051292327"},{"denom":"ASSET3","index":"0.000001214709312157"},{"denom":"ASSET4","index":"0.000011433811394910"},{"denom":"ASSET5","index":"0.000000942889008137"},{"denom":"ASSET6","index":"0.000003837834423079"},{"denom":"ASSET7","index":"0.000005877867503028"},{"denom":"ASSET8","index":"0.000007669751132718"},{"denom":"ASSET9","index":"0.000003312735983819"}],"last_reward_claim_height":"101"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET1","shares":"1000000000.000000004000000000","reward_history":[],"last_reward_claim_height":"50"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET4","shares":"397179381.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002915106026686"},{"denom":"ASSET1","index":"0.000024751938975568"},{"denom":"ASSET10","index":"0.000019864528416862"},{"denom":"ASSET11","index":"0.000024625253839727"},{"denom":"ASSET12","index":"0.000023534700266806"},{"denom":"ASSET13","index":"0.000007739190454504"},{"denom":"ASSET14","index":"0.000022584902384729"},{"denom":"ASSET15","index":"0.000017872912229645"},{"denom":"ASSET16","index":"0.000010972881933217"},{"denom":"ASSET17","index":"0.000008648586457086"},{"denom":"ASSET18","index":"0.000003552999450219"},{"denom":"ASSET2","index":"0.000007504215303421"},{"denom":"ASSET3","index":"0.000002079538758775"},{"denom":"ASSET4","index":"0.000020065180146540"},{"denom":"ASSET5","index":"0.000001620267199228"},{"denom":"ASSET6","index":"0.000006536798446662"},{"denom":"ASSET7","index":"0.000010280222742310"},{"denom":"ASSET8","index":"0.000014068743113537"},{"denom":"ASSET9","index":"0.000005967789042866"}],"last_reward_claim_height":"123"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET6","shares":"496467618.000000000000000000","reward_history":[],"last_reward_claim_height":"36"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET12","shares":"833844843.112213015986429882","reward_history":[{"denom":"ASSET0","index":"0.000002915106026686"},{"denom":"ASSET1","index":"0.000024751938975568"},{"denom":"ASSET10","index":"0.000019864528416862"},{"denom":"ASSET11","index":"0.000024625253839727"},{"denom":"ASSET12","index":"0.000023534700266806"},{"denom":"ASSET13","index":"0.000007739190454504"},{"denom":"ASSET14","index":"0.000022584902384729"},{"denom":"ASSET15","index":"0.000017872912229645"},{"denom":"ASSET16","index":"0.000010972881933217"},{"denom":"ASSET17","index":"0.000008648586457086"},{"denom":"ASSET18","index":"0.000003552999450219"},{"denom":"ASSET2","index":"0.000007504215303421"},{"denom":"ASSET3","index":"0.000002079538758775"},{"denom":"ASSET4","index":"0.000020065180146540"},{"denom":"ASSET5","index":"0.000001620267199228"},{"denom":"ASSET6","index":"0.000006536798446662"},{"denom":"ASSET7","index":"0.000010280222742310"},{"denom":"ASSET8","index":"0.000014068743113537"},{"denom":"ASSET9","index":"0.000005967789042866"}],"last_reward_claim_height":"180"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET6","shares":"165367069.000000004214651970","reward_history":[{"denom":"ASSET0","index":"0.000003306866574231"},{"denom":"ASSET1","index":"0.000028073670524533"},{"denom":"ASSET10","index":"0.000022410378668975"},{"denom":"ASSET11","index":"0.000027896117796052"},{"denom":"ASSET12","index":"0.000026601615360568"},{"denom":"ASSET13","index":"0.000008760019105133"},{"denom":"ASSET14","index":"0.000025604072816608"},{"denom":"ASSET15","index":"0.000020183975077340"},{"denom":"ASSET16","index":"0.000012452378452775"},{"denom":"ASSET17","index":"0.000009773941069454"},{"denom":"ASSET18","index":"0.000004038323507821"},{"denom":"ASSET2","index":"0.000008501686860316"},{"denom":"ASSET3","index":"0.000002358773872569"},{"denom":"ASSET4","index":"0.000022758821093429"},{"denom":"ASSET5","index":"0.000001837837668790"},{"denom":"ASSET6","index":"0.000007423905647148"},{"denom":"ASSET7","index":"0.000011659308440973"},{"denom":"ASSET8","index":"0.000015926660063085"},{"denom":"ASSET9","index":"0.000006759875068056"}],"last_reward_claim_height":"152"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET3","shares":"97939132.000000000138618456","reward_history":[],"last_reward_claim_height":"55"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET11","shares":"689032141.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003061984062566"},{"denom":"ASSET1","index":"0.000025984754387841"},{"denom":"ASSET10","index":"0.000020750278468036"},{"denom":"ASSET11","index":"0.000025825260107338"},{"denom":"ASSET12","index":"0.000024630365005548"},{"denom":"ASSET13","index":"0.000008111503841622"},{"denom":"ASSET14","index":"0.000023701848593669"},{"denom":"ASSET15","index":"0.000018689068915475"},{"denom":"ASSET16","index":"0.000011526541772952"},{"denom":"ASSET17","index":"0.000009050861170220"},{"denom":"ASSET18","index":"0.000003739265665267"},{"denom":"ASSET2","index":"0.000007869809789784"},{"denom":"ASSET3","index":"0.000002185113944095"},{"denom":"ASSET4","index":"0.000021066477214749"},{"denom":"ASSET5","index":"0.000001702392649313"},{"denom":"ASSET6","index":"0.000006871251000760"},{"denom":"ASSET7","index":"0.000010794622225013"},{"denom":"ASSET8","index":"0.000014746923085504"},{"denom":"ASSET9","index":"0.000006258895459680"}],"last_reward_claim_height":"182"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET15","shares":"896878198.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001543375593884"},{"denom":"ASSET1","index":"0.000012871309378663"},{"denom":"ASSET10","index":"0.000008967332198598"},{"denom":"ASSET11","index":"0.000012451619524186"},{"denom":"ASSET12","index":"0.000011213472915376"},{"denom":"ASSET13","index":"0.000003858438984711"},{"denom":"ASSET14","index":"0.000011631932007817"},{"denom":"ASSET15","index":"0.000008316259081242"},{"denom":"ASSET16","index":"0.000005798119954378"},{"denom":"ASSET17","index":"0.000004118129774432"},{"denom":"ASSET18","index":"0.000001961834686325"},{"denom":"ASSET2","index":"0.000003799362406955"},{"denom":"ASSET3","index":"0.000001111378119041"},{"denom":"ASSET4","index":"0.000010460246548983"},{"denom":"ASSET5","index":"0.000000862764187650"},{"denom":"ASSET6","index":"0.000003511364090393"},{"denom":"ASSET7","index":"0.000005377199337864"},{"denom":"ASSET8","index":"0.000007016574370602"},{"denom":"ASSET9","index":"0.000003030136134086"}],"last_reward_claim_height":"115"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET5","shares":"70048187.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003296605577903"},{"denom":"ASSET1","index":"0.000027950980635352"},{"denom":"ASSET10","index":"0.000022177590033485"},{"denom":"ASSET11","index":"0.000027741245317152"},{"denom":"ASSET12","index":"0.000026384837371861"},{"denom":"ASSET13","index":"0.000008707523198290"},{"denom":"ASSET14","index":"0.000025482773879389"},{"denom":"ASSET15","index":"0.000019999205716580"},{"denom":"ASSET16","index":"0.000012408342313410"},{"denom":"ASSET17","index":"0.000009694954350389"},{"denom":"ASSET18","index":"0.000004033447725414"},{"denom":"ASSET2","index":"0.000008454290496983"},{"denom":"ASSET3","index":"0.000002354114882033"},{"denom":"ASSET4","index":"0.000022662624820802"},{"denom":"ASSET5","index":"0.000001833709311257"},{"denom":"ASSET6","index":"0.000007402928859239"},{"denom":"ASSET7","index":"0.000011614131087351"},{"denom":"ASSET8","index":"0.000015829970625061"},{"denom":"ASSET9","index":"0.000006725199056296"}],"last_reward_claim_height":"154"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET7","shares":"15205456.391151043549271768","reward_history":[{"denom":"ASSET0","index":"0.000001745217677213"},{"denom":"ASSET1","index":"0.000014553842410819"},{"denom":"ASSET10","index":"0.000010139729507131"},{"denom":"ASSET11","index":"0.000014078681363843"},{"denom":"ASSET12","index":"0.000012678362515121"},{"denom":"ASSET13","index":"0.000004362304066790"},{"denom":"ASSET14","index":"0.000013152043309614"},{"denom":"ASSET15","index":"0.000009402563770700"},{"denom":"ASSET16","index":"0.000006556038246289"},{"denom":"ASSET17","index":"0.000004655394058383"},{"denom":"ASSET18","index":"0.000002217418219224"},{"denom":"ASSET2","index":"0.000004295692705065"},{"denom":"ASSET3","index":"0.000001256734357891"},{"denom":"ASSET4","index":"0.000011827217337515"},{"denom":"ASSET5","index":"0.000000975486386160"},{"denom":"ASSET6","index":"0.000003970037158850"},{"denom":"ASSET7","index":"0.000006079396946830"},{"denom":"ASSET8","index":"0.000007932673055287"},{"denom":"ASSET9","index":"0.000003426784497665"}],"last_reward_claim_height":"109"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET12","shares":"75761199.999999996054103759","reward_history":[],"last_reward_claim_height":"54"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET3","shares":"954786741.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001696105704481"},{"denom":"ASSET1","index":"0.000014140754037071"},{"denom":"ASSET10","index":"0.000009851931515387"},{"denom":"ASSET11","index":"0.000013679695806241"},{"denom":"ASSET12","index":"0.000012318593050331"},{"denom":"ASSET13","index":"0.000004239283286244"},{"denom":"ASSET14","index":"0.000012779160793682"},{"denom":"ASSET15","index":"0.000009136800770120"},{"denom":"ASSET16","index":"0.000006369960897657"},{"denom":"ASSET17","index":"0.000004523766024416"},{"denom":"ASSET18","index":"0.000002155201985393"},{"denom":"ASSET2","index":"0.000004174048451456"},{"denom":"ASSET3","index":"0.000001220823336742"},{"denom":"ASSET4","index":"0.000011492121647193"},{"denom":"ASSET5","index":"0.000000947621810601"},{"denom":"ASSET6","index":"0.000003857193539630"},{"denom":"ASSET7","index":"0.000005907431204387"},{"denom":"ASSET8","index":"0.000007708991716984"},{"denom":"ASSET9","index":"0.000003329429011573"}],"last_reward_claim_height":"109"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET10","shares":"198412741.814626037702481678","reward_history":[{"denom":"ASSET0","index":"0.000003278023650839"},{"denom":"ASSET1","index":"0.000027801084973989"},{"denom":"ASSET10","index":"0.000022126343818190"},{"denom":"ASSET11","index":"0.000027610641458424"},{"denom":"ASSET12","index":"0.000026294522151225"},{"denom":"ASSET13","index":"0.000008669795972838"},{"denom":"ASSET14","index":"0.000025352034708572"},{"denom":"ASSET15","index":"0.000019941753748345"},{"denom":"ASSET16","index":"0.000012337408081897"},{"denom":"ASSET17","index":"0.000009662232510971"},{"denom":"ASSET18","index":"0.000004006663612522"},{"denom":"ASSET2","index":"0.000008414274009770"},{"denom":"ASSET3","index":"0.000002339697370568"},{"denom":"ASSET4","index":"0.000022540556466857"},{"denom":"ASSET5","index":"0.000001822656991491"},{"denom":"ASSET6","index":"0.000007357334263189"},{"denom":"ASSET7","index":"0.000011551068960203"},{"denom":"ASSET8","index":"0.000015761386047857"},{"denom":"ASSET9","index":"0.000006692834331509"}],"last_reward_claim_height":"166"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET11","shares":"147136670.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003278023650839"},{"denom":"ASSET1","index":"0.000027801084973989"},{"denom":"ASSET10","index":"0.000022126343818190"},{"denom":"ASSET11","index":"0.000027610641458424"},{"denom":"ASSET12","index":"0.000026294522151225"},{"denom":"ASSET13","index":"0.000008669795972838"},{"denom":"ASSET14","index":"0.000025352034708572"},{"denom":"ASSET15","index":"0.000019941753748345"},{"denom":"ASSET16","index":"0.000012337408081897"},{"denom":"ASSET17","index":"0.000009662232510971"},{"denom":"ASSET18","index":"0.000004006663612522"},{"denom":"ASSET2","index":"0.000008414274009770"},{"denom":"ASSET3","index":"0.000002339697370568"},{"denom":"ASSET4","index":"0.000022540556466857"},{"denom":"ASSET5","index":"0.000001822656991491"},{"denom":"ASSET6","index":"0.000007357334263189"},{"denom":"ASSET7","index":"0.000011551068960203"},{"denom":"ASSET8","index":"0.000015761386047857"},{"denom":"ASSET9","index":"0.000006692834331509"}],"last_reward_claim_height":"144"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET15","shares":"550086239.265307202671506996","reward_history":[{"denom":"ASSET0","index":"0.000003278023650839"},{"denom":"ASSET1","index":"0.000027801084973989"},{"denom":"ASSET10","index":"0.000022126343818190"},{"denom":"ASSET11","index":"0.000027610641458424"},{"denom":"ASSET12","index":"0.000026294522151225"},{"denom":"ASSET13","index":"0.000008669795972838"},{"denom":"ASSET14","index":"0.000025352034708572"},{"denom":"ASSET15","index":"0.000019941753748345"},{"denom":"ASSET16","index":"0.000012337408081897"},{"denom":"ASSET17","index":"0.000009662232510971"},{"denom":"ASSET18","index":"0.000004006663612522"},{"denom":"ASSET2","index":"0.000008414274009770"},{"denom":"ASSET3","index":"0.000002339697370568"},{"denom":"ASSET4","index":"0.000022540556466857"},{"denom":"ASSET5","index":"0.000001822656991491"},{"denom":"ASSET6","index":"0.000007357334263189"},{"denom":"ASSET7","index":"0.000011551068960203"},{"denom":"ASSET8","index":"0.000015761386047857"},{"denom":"ASSET9","index":"0.000006692834331509"}],"last_reward_claim_height":"144"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET18","shares":"653203751.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001696105704481"},{"denom":"ASSET1","index":"0.000014140754037071"},{"denom":"ASSET10","index":"0.000009851931515387"},{"denom":"ASSET11","index":"0.000013679695806241"},{"denom":"ASSET12","index":"0.000012318593050331"},{"denom":"ASSET13","index":"0.000004239283286244"},{"denom":"ASSET14","index":"0.000012779160793682"},{"denom":"ASSET15","index":"0.000009136800770120"},{"denom":"ASSET16","index":"0.000006369960897657"},{"denom":"ASSET17","index":"0.000004523766024416"},{"denom":"ASSET18","index":"0.000002155201985393"},{"denom":"ASSET2","index":"0.000004174048451456"},{"denom":"ASSET3","index":"0.000001220823336742"},{"denom":"ASSET4","index":"0.000011492121647193"},{"denom":"ASSET5","index":"0.000000947621810601"},{"denom":"ASSET6","index":"0.000003857193539630"},{"denom":"ASSET7","index":"0.000005907431204387"},{"denom":"ASSET8","index":"0.000007708991716984"},{"denom":"ASSET9","index":"0.000003329429011573"}],"last_reward_claim_height":"115"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET0","shares":"25178663.709888944628508902","reward_history":[{"denom":"ASSET0","index":"0.000002735257365218"},{"denom":"ASSET1","index":"0.000023278157661741"},{"denom":"ASSET10","index":"0.000018999615823078"},{"denom":"ASSET11","index":"0.000023241706683585"},{"denom":"ASSET12","index":"0.000022372793234045"},{"denom":"ASSET13","index":"0.000007316911351959"},{"denom":"ASSET14","index":"0.000021266506066871"},{"denom":"ASSET15","index":"0.000017036720297506"},{"denom":"ASSET16","index":"0.000010298479660409"},{"denom":"ASSET17","index":"0.000008222611745720"},{"denom":"ASSET18","index":"0.000003315370510511"},{"denom":"ASSET2","index":"0.000007081336162231"},{"denom":"ASSET3","index":"0.000001948923871674"},{"denom":"ASSET4","index":"0.000018864412124408"},{"denom":"ASSET5","index":"0.000001519377842401"},{"denom":"ASSET6","index":"0.000006121992555640"},{"denom":"ASSET7","index":"0.000009661272655042"},{"denom":"ASSET8","index":"0.000013300968175029"},{"denom":"ASSET9","index":"0.000005629514833023"}],"last_reward_claim_height":"180"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET3","shares":"1812650773.872759639215660448","reward_history":[{"denom":"ASSET0","index":"0.000002735257365218"},{"denom":"ASSET1","index":"0.000023278157661741"},{"denom":"ASSET10","index":"0.000018999615823078"},{"denom":"ASSET11","index":"0.000023241706683585"},{"denom":"ASSET12","index":"0.000022372793234045"},{"denom":"ASSET13","index":"0.000007316911351959"},{"denom":"ASSET14","index":"0.000021266506066871"},{"denom":"ASSET15","index":"0.000017036720297506"},{"denom":"ASSET16","index":"0.000010298479660409"},{"denom":"ASSET17","index":"0.000008222611745720"},{"denom":"ASSET18","index":"0.000003315370510511"},{"denom":"ASSET2","index":"0.000007081336162231"},{"denom":"ASSET3","index":"0.000001948923871674"},{"denom":"ASSET4","index":"0.000018864412124408"},{"denom":"ASSET5","index":"0.000001519377842401"},{"denom":"ASSET6","index":"0.000006121992555640"},{"denom":"ASSET7","index":"0.000009661272655042"},{"denom":"ASSET8","index":"0.000013300968175029"},{"denom":"ASSET9","index":"0.000005629514833023"}],"last_reward_claim_height":"147"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET5","shares":"902131655.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001139195115521"},{"denom":"ASSET1","index":"0.000009496890331931"},{"denom":"ASSET10","index":"0.000006616523219856"},{"denom":"ASSET11","index":"0.000009187371854639"},{"denom":"ASSET12","index":"0.000008273091178185"},{"denom":"ASSET13","index":"0.000002846943294505"},{"denom":"ASSET14","index":"0.000008582261490710"},{"denom":"ASSET15","index":"0.000006136055842283"},{"denom":"ASSET16","index":"0.000004278248649000"},{"denom":"ASSET17","index":"0.000003038433916001"},{"denom":"ASSET18","index":"0.000001447320933748"},{"denom":"ASSET2","index":"0.000002803422698710"},{"denom":"ASSET3","index":"0.000000819928024772"},{"denom":"ASSET4","index":"0.000007718116540611"},{"denom":"ASSET5","index":"0.000000636445192901"},{"denom":"ASSET6","index":"0.000002590694026466"},{"denom":"ASSET7","index":"0.000003967685677409"},{"denom":"ASSET8","index":"0.000005177210075735"},{"denom":"ASSET9","index":"0.000002236262294314"}],"last_reward_claim_height":"77"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET15","shares":"928917863.000000000000000000","reward_history":[],"last_reward_claim_height":"32"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET1","shares":"79370787.000000000000000000","reward_history":[],"last_reward_claim_height":"29"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET2","shares":"164493401.033603373876019027","reward_history":[{"denom":"ASSET0","index":"0.000001549911588522"},{"denom":"ASSET1","index":"0.000012922257740418"},{"denom":"ASSET10","index":"0.000009003081854783"},{"denom":"ASSET11","index":"0.000012500946332712"},{"denom":"ASSET12","index":"0.000011256607989023"},{"denom":"ASSET13","index":"0.000003873860414458"},{"denom":"ASSET14","index":"0.000011677307025497"},{"denom":"ASSET15","index":"0.000008349069378868"},{"denom":"ASSET16","index":"0.000005821200932633"},{"denom":"ASSET17","index":"0.000004134118188113"},{"denom":"ASSET18","index":"0.000001969385882532"},{"denom":"ASSET2","index":"0.000003814460404941"},{"denom":"ASSET3","index":"0.000001115740384942"},{"denom":"ASSET4","index":"0.000010501554259806"},{"denom":"ASSET5","index":"0.000000865892922233"},{"denom":"ASSET6","index":"0.000003524808812143"},{"denom":"ASSET7","index":"0.000005398664782463"},{"denom":"ASSET8","index":"0.000007044106283197"},{"denom":"ASSET9","index":"0.000003042260281224"}],"last_reward_claim_height":"103"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET1","shares":"499087628.000000038995211610","reward_history":[],"last_reward_claim_height":"59"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET13","shares":"1148020957.976373234265929244","reward_history":[{"denom":"ASSET0","index":"0.000003051773960929"},{"denom":"ASSET1","index":"0.000025898629359040"},{"denom":"ASSET10","index":"0.000020686863907037"},{"denom":"ASSET11","index":"0.000025740096441319"},{"denom":"ASSET12","index":"0.000024551000542772"},{"denom":"ASSET13","index":"0.000008085532012369"},{"denom":"ASSET14","index":"0.000023622558405526"},{"denom":"ASSET15","index":"0.000018629920308839"},{"denom":"ASSET16","index":"0.000011487540137638"},{"denom":"ASSET17","index":"0.000009021847693812"},{"denom":"ASSET18","index":"0.000003725572559942"},{"denom":"ASSET2","index":"0.000007844221178735"},{"denom":"ASSET3","index":"0.000002178252359768"},{"denom":"ASSET4","index":"0.000020996168979716"},{"denom":"ASSET5","index":"0.000001697004218389"},{"denom":"ASSET6","index":"0.000006847583721256"},{"denom":"ASSET7","index":"0.000010758483833946"},{"denom":"ASSET8","index":"0.000014699172267780"},{"denom":"ASSET9","index":"0.000006238834616461"}],"last_reward_claim_height":"171"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET0","shares":"116356014.999999994474446904","reward_history":[{"denom":"ASSET0","index":"0.000001813824295534"},{"denom":"ASSET1","index":"0.000015126179984122"},{"denom":"ASSET10","index":"0.000010538420488017"},{"denom":"ASSET11","index":"0.000014633035948465"},{"denom":"ASSET12","index":"0.000013177247733614"},{"denom":"ASSET13","index":"0.000004534560738834"},{"denom":"ASSET14","index":"0.000013669547344553"},{"denom":"ASSET15","index":"0.000009773371692973"},{"denom":"ASSET16","index":"0.000006813663054312"},{"denom":"ASSET17","index":"0.000004839398062246"},{"denom":"ASSET18","index":"0.000002305279481754"},{"denom":"ASSET2","index":"0.000004465317911910"},{"denom":"ASSET3","index":"0.000001306325039660"},{"denom":"ASSET4","index":"0.000012293135053249"},{"denom":"ASSET5","index":"0.000001013309662309"},{"denom":"ASSET6","index":"0.000004125859175036"},{"denom":"ASSET7","index":"0.000006318830169217"},{"denom":"ASSET8","index":"0.000008245807377042"},{"denom":"ASSET9","index":"0.000003561783463017"}],"last_reward_claim_height":"119"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET11","shares":"625226086.000000000000000000","reward_history":[],"last_reward_claim_height":"51"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET2","shares":"803523642.232794196740455321","reward_history":[{"denom":"ASSET0","index":"0.000002868026198866"},{"denom":"ASSET1","index":"0.000024339331661302"},{"denom":"ASSET10","index":"0.000019438063504597"},{"denom":"ASSET11","index":"0.000024190729344646"},{"denom":"ASSET12","index":"0.000023070632234294"},{"denom":"ASSET13","index":"0.000007598221307181"},{"denom":"ASSET14","index":"0.000022200415230506"},{"denom":"ASSET15","index":"0.000017506414948675"},{"denom":"ASSET16","index":"0.000010796282691537"},{"denom":"ASSET17","index":"0.000008477235924619"},{"denom":"ASSET18","index":"0.000003501529899130"},{"denom":"ASSET2","index":"0.000007371086117521"},{"denom":"ASSET3","index":"0.000002046801194740"},{"denom":"ASSET4","index":"0.000019732782799148"},{"denom":"ASSET5","index":"0.000001595074946946"},{"denom":"ASSET6","index":"0.000006435625489467"},{"denom":"ASSET7","index":"0.000010111140720407"},{"denom":"ASSET8","index":"0.000013813490690156"},{"denom":"ASSET9","index":"0.000005862589992841"}],"last_reward_claim_height":"131"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET4","shares":"541484725.361541146299582098","reward_history":[{"denom":"ASSET0","index":"0.000001655416114862"},{"denom":"ASSET1","index":"0.000013800538848519"},{"denom":"ASSET10","index":"0.000009615249134678"},{"denom":"ASSET11","index":"0.000013350879623065"},{"denom":"ASSET12","index":"0.000012022439267096"},{"denom":"ASSET13","index":"0.000004137189147657"},{"denom":"ASSET14","index":"0.000012471558036751"},{"denom":"ASSET15","index":"0.000008916980241305"},{"denom":"ASSET16","index":"0.000006216863065381"},{"denom":"ASSET17","index":"0.000004414983428766"},{"denom":"ASSET18","index":"0.000002102913517117"},{"denom":"ASSET2","index":"0.000004073955819077"},{"denom":"ASSET3","index":"0.000001191705038613"},{"denom":"ASSET4","index":"0.000011215538757958"},{"denom":"ASSET5","index":"0.000000924719873500"},{"denom":"ASSET6","index":"0.000003764274645778"},{"denom":"ASSET7","index":"0.000005765582472528"},{"denom":"ASSET8","index":"0.000007523144733557"},{"denom":"ASSET9","index":"0.000003249220268545"}],"last_reward_claim_height":"103"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET8","shares":"148692.358764860234817880","reward_history":[{"denom":"ASSET0","index":"0.000001655416114862"},{"denom":"ASSET1","index":"0.000013800538848519"},{"denom":"ASSET10","index":"0.000009615249134678"},{"denom":"ASSET11","index":"0.000013350879623065"},{"denom":"ASSET12","index":"0.000012022439267096"},{"denom":"ASSET13","index":"0.000004137189147657"},{"denom":"ASSET14","index":"0.000012471558036751"},{"denom":"ASSET15","index":"0.000008916980241305"},{"denom":"ASSET16","index":"0.000006216863065381"},{"denom":"ASSET17","index":"0.000004414983428766"},{"denom":"ASSET18","index":"0.000002102913517117"},{"denom":"ASSET2","index":"0.000004073955819077"},{"denom":"ASSET3","index":"0.000001191705038613"},{"denom":"ASSET4","index":"0.000011215538757958"},{"denom":"ASSET5","index":"0.000000924719873500"},{"denom":"ASSET6","index":"0.000003764274645778"},{"denom":"ASSET7","index":"0.000005765582472528"},{"denom":"ASSET8","index":"0.000007523144733557"},{"denom":"ASSET9","index":"0.000003249220268545"}],"last_reward_claim_height":"67"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET9","shares":"416471493.263973727434282708","reward_history":[{"denom":"ASSET0","index":"0.000001655416114862"},{"denom":"ASSET1","index":"0.000013800538848519"},{"denom":"ASSET10","index":"0.000009615249134678"},{"denom":"ASSET11","index":"0.000013350879623065"},{"denom":"ASSET12","index":"0.000012022439267096"},{"denom":"ASSET13","index":"0.000004137189147657"},{"denom":"ASSET14","index":"0.000012471558036751"},{"denom":"ASSET15","index":"0.000008916980241305"},{"denom":"ASSET16","index":"0.000006216863065381"},{"denom":"ASSET17","index":"0.000004414983428766"},{"denom":"ASSET18","index":"0.000002102913517117"},{"denom":"ASSET2","index":"0.000004073955819077"},{"denom":"ASSET3","index":"0.000001191705038613"},{"denom":"ASSET4","index":"0.000011215538757958"},{"denom":"ASSET5","index":"0.000000924719873500"},{"denom":"ASSET6","index":"0.000003764274645778"},{"denom":"ASSET7","index":"0.000005765582472528"},{"denom":"ASSET8","index":"0.000007523144733557"},{"denom":"ASSET9","index":"0.000003249220268545"}],"last_reward_claim_height":"114"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET13","shares":"70901619.111214661982639493","reward_history":[{"denom":"ASSET0","index":"0.000003262792429801"},{"denom":"ASSET1","index":"0.000027679878715890"},{"denom":"ASSET10","index":"0.000022086570261210"},{"denom":"ASSET11","index":"0.000027505267384149"},{"denom":"ASSET12","index":"0.000026222420015979"},{"denom":"ASSET13","index":"0.000008638975204347"},{"denom":"ASSET14","index":"0.000025246236428505"},{"denom":"ASSET15","index":"0.000019895354512471"},{"denom":"ASSET16","index":"0.000012279836462442"},{"denom":"ASSET17","index":"0.000009636125515167"},{"denom":"ASSET18","index":"0.000003984145752232"},{"denom":"ASSET2","index":"0.000008382344169353"},{"denom":"ASSET3","index":"0.000002328549799735"},{"denom":"ASSET4","index":"0.000022441247538096"},{"denom":"ASSET5","index":"0.000001813932132265"},{"denom":"ASSET6","index":"0.000007320527694069"},{"denom":"ASSET7","index":"0.000011499571173317"},{"denom":"ASSET8","index":"0.000015704553099640"},{"denom":"ASSET9","index":"0.000006666608399750"}],"last_reward_claim_height":"177"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET17","shares":"707347905.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003262792429801"},{"denom":"ASSET1","index":"0.000027679878715890"},{"denom":"ASSET10","index":"0.000022086570261210"},{"denom":"ASSET11","index":"0.000027505267384149"},{"denom":"ASSET12","index":"0.000026222420015979"},{"denom":"ASSET13","index":"0.000008638975204347"},{"denom":"ASSET14","index":"0.000025246236428505"},{"denom":"ASSET15","index":"0.000019895354512471"},{"denom":"ASSET16","index":"0.000012279836462442"},{"denom":"ASSET17","index":"0.000009636125515167"},{"denom":"ASSET18","index":"0.000003984145752232"},{"denom":"ASSET2","index":"0.000008382344169353"},{"denom":"ASSET3","index":"0.000002328549799735"},{"denom":"ASSET4","index":"0.000022441247538096"},{"denom":"ASSET5","index":"0.000001813932132265"},{"denom":"ASSET6","index":"0.000007320527694069"},{"denom":"ASSET7","index":"0.000011499571173317"},{"denom":"ASSET8","index":"0.000015704553099640"},{"denom":"ASSET9","index":"0.000006666608399750"}],"last_reward_claim_height":"128"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET9","shares":"176526243.000000000000000000","reward_history":[],"last_reward_claim_height":"11"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET16","shares":"309884020.000000004850514250","reward_history":[],"last_reward_claim_height":"57"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET17","shares":"98220234.000000000000000000","reward_history":[],"last_reward_claim_height":"23"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET1","shares":"168469709.635790988019924976","reward_history":[{"denom":"ASSET0","index":"0.000004829962844284"},{"denom":"ASSET1","index":"0.000039524111522190"},{"denom":"ASSET10","index":"0.000034078647298627"},{"denom":"ASSET11","index":"0.000041019961315880"},{"denom":"ASSET12","index":"0.000038986303917418"},{"denom":"ASSET13","index":"0.000013223748427218"},{"denom":"ASSET14","index":"0.000037862348824484"},{"denom":"ASSET15","index":"0.000030615488739002"},{"denom":"ASSET16","index":"0.000017546337426996"},{"denom":"ASSET17","index":"0.000014163136845027"},{"denom":"ASSET18","index":"0.000005908859381642"},{"denom":"ASSET2","index":"0.000011921448629340"},{"denom":"ASSET3","index":"0.000003430931561974"},{"denom":"ASSET4","index":"0.000032397189102807"},{"denom":"ASSET5","index":"0.000002693636544476"},{"denom":"ASSET6","index":"0.000010996765047817"},{"denom":"ASSET7","index":"0.000016976981501674"},{"denom":"ASSET8","index":"0.000024395918561262"},{"denom":"ASSET9","index":"0.000009795939235919"}],"last_reward_claim_height":"186"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET5","shares":"771454208.467887061822275564","reward_history":[{"denom":"ASSET0","index":"0.000001700269946448"},{"denom":"ASSET1","index":"0.000014175647296985"},{"denom":"ASSET10","index":"0.000009876508679424"},{"denom":"ASSET11","index":"0.000013714231996791"},{"denom":"ASSET12","index":"0.000012349169664489"},{"denom":"ASSET13","index":"0.000004249665204630"},{"denom":"ASSET14","index":"0.000012810584964683"},{"denom":"ASSET15","index":"0.000009159649022667"},{"denom":"ASSET16","index":"0.000006386108914062"},{"denom":"ASSET17","index":"0.000004535399405845"},{"denom":"ASSET18","index":"0.000002160675585153"},{"denom":"ASSET2","index":"0.000004184037207885"},{"denom":"ASSET3","index":"0.000001223709723928"},{"denom":"ASSET4","index":"0.000011520237582522"},{"denom":"ASSET5","index":"0.000000950091460574"},{"denom":"ASSET6","index":"0.000003867003500531"},{"denom":"ASSET7","index":"0.000005922674290891"},{"denom":"ASSET8","index":"0.000007727949032131"},{"denom":"ASSET9","index":"0.000003337940880615"}],"last_reward_claim_height":"123"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET13","shares":"234212861.598512270657427741","reward_history":[{"denom":"ASSET0","index":"0.000003224934301433"},{"denom":"ASSET1","index":"0.000027341438894536"},{"denom":"ASSET10","index":"0.000021706571274337"},{"denom":"ASSET11","index":"0.000027141091242061"},{"denom":"ASSET12","index":"0.000025819235056226"},{"denom":"ASSET13","index":"0.000008520116782966"},{"denom":"ASSET14","index":"0.000024928444433519"},{"denom":"ASSET15","index":"0.000019573794936329"},{"denom":"ASSET16","index":"0.000012137286393349"},{"denom":"ASSET17","index":"0.000009487995483061"},{"denom":"ASSET18","index":"0.000003945309126507"},{"denom":"ASSET2","index":"0.000008271045740629"},{"denom":"ASSET3","index":"0.000002302032616683"},{"denom":"ASSET4","index":"0.000022168721917699"},{"denom":"ASSET5","index":"0.000001793343624246"},{"denom":"ASSET6","index":"0.000007240378309003"},{"denom":"ASSET7","index":"0.000011361888746536"},{"denom":"ASSET8","index":"0.000015488944629697"},{"denom":"ASSET9","index":"0.000006579500326985"}],"last_reward_claim_height":"166"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET5","shares":"29926782.000000000000000000","reward_history":[],"last_reward_claim_height":"28"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET10","shares":"257271438.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004446684873458"},{"denom":"ASSET1","index":"0.000036404895314087"},{"denom":"ASSET10","index":"0.000031497863426924"},{"denom":"ASSET11","index":"0.000037815820194448"},{"denom":"ASSET12","index":"0.000035989413017548"},{"denom":"ASSET13","index":"0.000012195791726504"},{"denom":"ASSET14","index":"0.000034891798741053"},{"denom":"ASSET15","index":"0.000028278958051966"},{"denom":"ASSET16","index":"0.000016154851773622"},{"denom":"ASSET17","index":"0.000013073633758252"},{"denom":"ASSET18","index":"0.000005434133264708"},{"denom":"ASSET2","index":"0.000010987802074141"},{"denom":"ASSET3","index":"0.000003158831420452"},{"denom":"ASSET4","index":"0.000029841108712677"},{"denom":"ASSET5","index":"0.000002479169702478"},{"denom":"ASSET6","index":"0.000010122369652719"},{"denom":"ASSET7","index":"0.000015637311791850"},{"denom":"ASSET8","index":"0.000022502186830931"},{"denom":"ASSET9","index":"0.000009028489924777"}],"last_reward_claim_height":"192"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET12","shares":"1000091394.715422435000000000","reward_history":[{"denom":"ASSET0","index":"0.000001505652349479"},{"denom":"ASSET1","index":"0.000012557843622987"},{"denom":"ASSET10","index":"0.000008748308836028"},{"denom":"ASSET11","index":"0.000012147743761261"},{"denom":"ASSET12","index":"0.000010939413811534"},{"denom":"ASSET13","index":"0.000003764130873697"},{"denom":"ASSET14","index":"0.000011348049030896"},{"denom":"ASSET15","index":"0.000008114118692716"},{"denom":"ASSET16","index":"0.000005656448807088"},{"denom":"ASSET17","index":"0.000004017514002549"},{"denom":"ASSET18","index":"0.000001912822926478"},{"denom":"ASSET2","index":"0.000003707009821528"},{"denom":"ASSET3","index":"0.000001083835348847"},{"denom":"ASSET4","index":"0.000010205627987517"},{"denom":"ASSET5","index":"0.000000840704716538"},{"denom":"ASSET6","index":"0.000003424333845410"},{"denom":"ASSET7","index":"0.000005246348945363"},{"denom":"ASSET8","index":"0.000006845738406093"},{"denom":"ASSET9","index":"0.000002955648289152"}],"last_reward_claim_height":"97"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET1","shares":"391205767.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001815877519749"},{"denom":"ASSET1","index":"0.000015137138459046"},{"denom":"ASSET10","index":"0.000010545739718907"},{"denom":"ASSET11","index":"0.000014644907422941"},{"denom":"ASSET12","index":"0.000013186828093302"},{"denom":"ASSET13","index":"0.000004537625601742"},{"denom":"ASSET14","index":"0.000013679059129408"},{"denom":"ASSET15","index":"0.000009780506595550"},{"denom":"ASSET16","index":"0.000006818847588397"},{"denom":"ASSET17","index":"0.000004841650653454"},{"denom":"ASSET18","index":"0.000002306040358223"},{"denom":"ASSET2","index":"0.000004467306882298"},{"denom":"ASSET3","index":"0.000001307100902598"},{"denom":"ASSET4","index":"0.000012301639507366"},{"denom":"ASSET5","index":"0.000001013416839040"},{"denom":"ASSET6","index":"0.000004128122470864"},{"denom":"ASSET7","index":"0.000006324548354661"},{"denom":"ASSET8","index":"0.000008252108546467"},{"denom":"ASSET9","index":"0.000003563504517685"}],"last_reward_claim_height":"122"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET5","shares":"826352456.000000098335942264","reward_history":[{"denom":"ASSET0","index":"0.000001815877519749"},{"denom":"ASSET1","index":"0.000015137138459046"},{"denom":"ASSET10","index":"0.000010545739718907"},{"denom":"ASSET11","index":"0.000014644907422941"},{"denom":"ASSET12","index":"0.000013186828093302"},{"denom":"ASSET13","index":"0.000004537625601742"},{"denom":"ASSET14","index":"0.000013679059129408"},{"denom":"ASSET15","index":"0.000009780506595550"},{"denom":"ASSET16","index":"0.000006818847588397"},{"denom":"ASSET17","index":"0.000004841650653454"},{"denom":"ASSET18","index":"0.000002306040358223"},{"denom":"ASSET2","index":"0.000004467306882298"},{"denom":"ASSET3","index":"0.000001307100902598"},{"denom":"ASSET4","index":"0.000012301639507366"},{"denom":"ASSET5","index":"0.000001013416839040"},{"denom":"ASSET6","index":"0.000004128122470864"},{"denom":"ASSET7","index":"0.000006324548354661"},{"denom":"ASSET8","index":"0.000008252108546467"},{"denom":"ASSET9","index":"0.000003563504517685"}],"last_reward_claim_height":"119"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET8","shares":"936087067.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001815877519749"},{"denom":"ASSET1","index":"0.000015137138459046"},{"denom":"ASSET10","index":"0.000010545739718907"},{"denom":"ASSET11","index":"0.000014644907422941"},{"denom":"ASSET12","index":"0.000013186828093302"},{"denom":"ASSET13","index":"0.000004537625601742"},{"denom":"ASSET14","index":"0.000013679059129408"},{"denom":"ASSET15","index":"0.000009780506595550"},{"denom":"ASSET16","index":"0.000006818847588397"},{"denom":"ASSET17","index":"0.000004841650653454"},{"denom":"ASSET18","index":"0.000002306040358223"},{"denom":"ASSET2","index":"0.000004467306882298"},{"denom":"ASSET3","index":"0.000001307100902598"},{"denom":"ASSET4","index":"0.000012301639507366"},{"denom":"ASSET5","index":"0.000001013416839040"},{"denom":"ASSET6","index":"0.000004128122470864"},{"denom":"ASSET7","index":"0.000006324548354661"},{"denom":"ASSET8","index":"0.000008252108546467"},{"denom":"ASSET9","index":"0.000003563504517685"}],"last_reward_claim_height":"117"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET9","shares":"1052472674.810163180356633104","reward_history":[{"denom":"ASSET0","index":"0.000003053196756625"},{"denom":"ASSET1","index":"0.000025905581999278"},{"denom":"ASSET10","index":"0.000020682143152818"},{"denom":"ASSET11","index":"0.000025745380902198"},{"denom":"ASSET12","index":"0.000024550499550641"},{"denom":"ASSET13","index":"0.000008086239198545"},{"denom":"ASSET14","index":"0.000023629161089906"},{"denom":"ASSET15","index":"0.000018628151539367"},{"denom":"ASSET16","index":"0.000011492271696690"},{"denom":"ASSET17","index":"0.000009021688715966"},{"denom":"ASSET18","index":"0.000003727673632537"},{"denom":"ASSET2","index":"0.000007845443656426"},{"denom":"ASSET3","index":"0.000002178852781858"},{"denom":"ASSET4","index":"0.000021002318737231"},{"denom":"ASSET5","index":"0.000001697417622442"},{"denom":"ASSET6","index":"0.000006850319017638"},{"denom":"ASSET7","index":"0.000010761758840612"},{"denom":"ASSET8","index":"0.000014701087498525"},{"denom":"ASSET9","index":"0.000006240132889304"}],"last_reward_claim_height":"165"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET10","shares":"822469722.469129640021532508","reward_history":[{"denom":"ASSET0","index":"0.000004642329094444"},{"denom":"ASSET1","index":"0.000037967161482845"},{"denom":"ASSET10","index":"0.000032931253260152"},{"denom":"ASSET11","index":"0.000039486280861719"},{"denom":"ASSET12","index":"0.000037586804680979"},{"denom":"ASSET13","index":"0.000012743069023422"},{"denom":"ASSET14","index":"0.000036434359116272"},{"denom":"ASSET15","index":"0.000029559994513742"},{"denom":"ASSET16","index":"0.000016847409196889"},{"denom":"ASSET17","index":"0.000013650334747675"},{"denom":"ASSET18","index":"0.000005671704965855"},{"denom":"ASSET2","index":"0.000011459689932521"},{"denom":"ASSET3","index":"0.000003296448580147"},{"denom":"ASSET4","index":"0.000031129189219066"},{"denom":"ASSET5","index":"0.000002588892680165"},{"denom":"ASSET6","index":"0.000010569495723679"},{"denom":"ASSET7","index":"0.000016320903643661"},{"denom":"ASSET8","index":"0.000023519579582169"},{"denom":"ASSET9","index":"0.000009424684718802"}],"last_reward_claim_height":"195"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET12","shares":"426620943.336472973793640024","reward_history":[{"denom":"ASSET0","index":"0.000001541968050995"},{"denom":"ASSET1","index":"0.000012857487907975"},{"denom":"ASSET10","index":"0.000008957704485900"},{"denom":"ASSET11","index":"0.000012438763825161"},{"denom":"ASSET12","index":"0.000011200869215257"},{"denom":"ASSET13","index":"0.000003854089325736"},{"denom":"ASSET14","index":"0.000011619593298070"},{"denom":"ASSET15","index":"0.000008307186714386"},{"denom":"ASSET16","index":"0.000005792349812251"},{"denom":"ASSET17","index":"0.000004113299472240"},{"denom":"ASSET18","index":"0.000001959030530305"},{"denom":"ASSET2","index":"0.000003795102401372"},{"denom":"ASSET3","index":"0.000001109951140156"},{"denom":"ASSET4","index":"0.000010448993630046"},{"denom":"ASSET5","index":"0.000000861541416423"},{"denom":"ASSET6","index":"0.000003506814193562"},{"denom":"ASSET7","index":"0.000005371133324183"},{"denom":"ASSET8","index":"0.000007009474378365"},{"denom":"ASSET9","index":"0.000003027441582881"}],"last_reward_claim_height":"81"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET3","shares":"647335050.000000000000000000","reward_history":[],"last_reward_claim_height":"17"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET10","shares":"113349653.552889908660366861","reward_history":[{"denom":"ASSET0","index":"0.000002827520151011"},{"denom":"ASSET1","index":"0.000024027878888002"},{"denom":"ASSET10","index":"0.000019355847170480"},{"denom":"ASSET11","index":"0.000023924401086085"},{"denom":"ASSET12","index":"0.000022900407365256"},{"denom":"ASSET13","index":"0.000007521399074311"},{"denom":"ASSET14","index":"0.000021930603354990"},{"denom":"ASSET15","index":"0.000017401215805238"},{"denom":"ASSET16","index":"0.000010647310435771"},{"denom":"ASSET17","index":"0.000008415007538097"},{"denom":"ASSET18","index":"0.000003442593620109"},{"denom":"ASSET2","index":"0.000007289635767836"},{"denom":"ASSET3","index":"0.000002016810506595"},{"denom":"ASSET4","index":"0.000019477449509443"},{"denom":"ASSET5","index":"0.000001571692130579"},{"denom":"ASSET6","index":"0.000006339251488002"},{"denom":"ASSET7","index":"0.000009978075244424"},{"denom":"ASSET8","index":"0.000013673195599374"},{"denom":"ASSET9","index":"0.000005796522499795"}],"last_reward_claim_height":"169"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET13","shares":"68767176.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001327266579501"},{"denom":"ASSET1","index":"0.000011071143497688"},{"denom":"ASSET10","index":"0.000007713614824674"},{"denom":"ASSET11","index":"0.000010710668391289"},{"denom":"ASSET12","index":"0.000009644435509525"},{"denom":"ASSET13","index":"0.000003318857014090"},{"denom":"ASSET14","index":"0.000010004910615924"},{"denom":"ASSET15","index":"0.000007152875770275"},{"denom":"ASSET16","index":"0.000004987262870528"},{"denom":"ASSET17","index":"0.000003541219052903"},{"denom":"ASSET18","index":"0.000001686360555224"},{"denom":"ASSET2","index":"0.000003267755179083"},{"denom":"ASSET3","index":"0.000000955742427695"},{"denom":"ASSET4","index":"0.000008998066353223"},{"denom":"ASSET5","index":"0.000000741667172936"},{"denom":"ASSET6","index":"0.000003019151657428"},{"denom":"ASSET7","index":"0.000004625406633453"},{"denom":"ASSET8","index":"0.000006035541053505"},{"denom":"ASSET9","index":"0.000002606193585346"}],"last_reward_claim_height":"101"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET5","shares":"84444318.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001571435631869"},{"denom":"ASSET1","index":"0.000013104175099655"},{"denom":"ASSET10","index":"0.000009129715488355"},{"denom":"ASSET11","index":"0.000012677036600848"},{"denom":"ASSET12","index":"0.000011415350365342"},{"denom":"ASSET13","index":"0.000003928095848150"},{"denom":"ASSET14","index":"0.000011841502401104"},{"denom":"ASSET15","index":"0.000008466812321615"},{"denom":"ASSET16","index":"0.000005902994865728"},{"denom":"ASSET17","index":"0.000004192467944409"},{"denom":"ASSET18","index":"0.000001996601204585"},{"denom":"ASSET2","index":"0.000003867921602360"},{"denom":"ASSET3","index":"0.000001131473113468"},{"denom":"ASSET4","index":"0.000010648868578800"},{"denom":"ASSET5","index":"0.000000877952110712"},{"denom":"ASSET6","index":"0.000003573955614728"},{"denom":"ASSET7","index":"0.000005473883440830"},{"denom":"ASSET8","index":"0.000007142978914228"},{"denom":"ASSET9","index":"0.000003084669944040"}],"last_reward_claim_height":"84"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET9","shares":"25390234.000000003727330920","reward_history":[{"denom":"ASSET0","index":"0.000001571435631869"},{"denom":"ASSET1","index":"0.000013104175099655"},{"denom":"ASSET10","index":"0.000009129715488355"},{"denom":"ASSET11","index":"0.000012677036600848"},{"denom":"ASSET12","index":"0.000011415350365342"},{"denom":"ASSET13","index":"0.000003928095848150"},{"denom":"ASSET14","index":"0.000011841502401104"},{"denom":"ASSET15","index":"0.000008466812321615"},{"denom":"ASSET16","index":"0.000005902994865728"},{"denom":"ASSET17","index":"0.000004192467944409"},{"denom":"ASSET18","index":"0.000001996601204585"},{"denom":"ASSET2","index":"0.000003867921602360"},{"denom":"ASSET3","index":"0.000001131473113468"},{"denom":"ASSET4","index":"0.000010648868578800"},{"denom":"ASSET5","index":"0.000000877952110712"},{"denom":"ASSET6","index":"0.000003573955614728"},{"denom":"ASSET7","index":"0.000005473883440830"},{"denom":"ASSET8","index":"0.000007142978914228"},{"denom":"ASSET9","index":"0.000003084669944040"}],"last_reward_claim_height":"114"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET12","shares":"175229735.000000000000000000","reward_history":[],"last_reward_claim_height":"6"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET17","shares":"101720105.000000002527881636","reward_history":[{"denom":"ASSET0","index":"0.000001571435631869"},{"denom":"ASSET1","index":"0.000013104175099655"},{"denom":"ASSET10","index":"0.000009129715488355"},{"denom":"ASSET11","index":"0.000012677036600848"},{"denom":"ASSET12","index":"0.000011415350365342"},{"denom":"ASSET13","index":"0.000003928095848150"},{"denom":"ASSET14","index":"0.000011841502401104"},{"denom":"ASSET15","index":"0.000008466812321615"},{"denom":"ASSET16","index":"0.000005902994865728"},{"denom":"ASSET17","index":"0.000004192467944409"},{"denom":"ASSET18","index":"0.000001996601204585"},{"denom":"ASSET2","index":"0.000003867921602360"},{"denom":"ASSET3","index":"0.000001131473113468"},{"denom":"ASSET4","index":"0.000010648868578800"},{"denom":"ASSET5","index":"0.000000877952110712"},{"denom":"ASSET6","index":"0.000003573955614728"},{"denom":"ASSET7","index":"0.000005473883440830"},{"denom":"ASSET8","index":"0.000007142978914228"},{"denom":"ASSET9","index":"0.000003084669944040"}],"last_reward_claim_height":"98"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET13","shares":"47792036.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001554974273829"},{"denom":"ASSET1","index":"0.000012964145980643"},{"denom":"ASSET10","index":"0.000009032293690170"},{"denom":"ASSET11","index":"0.000012541598623624"},{"denom":"ASSET12","index":"0.000011293609918011"},{"denom":"ASSET13","index":"0.000003886649549954"},{"denom":"ASSET14","index":"0.000011715371140412"},{"denom":"ASSET15","index":"0.000008376264351692"},{"denom":"ASSET16","index":"0.000005840194074962"},{"denom":"ASSET17","index":"0.000004147646243034"},{"denom":"ASSET18","index":"0.000001975556294303"},{"denom":"ASSET2","index":"0.000003826903319009"},{"denom":"ASSET3","index":"0.000001119455695618"},{"denom":"ASSET4","index":"0.000010535776146539"},{"denom":"ASSET5","index":"0.000000869071819878"},{"denom":"ASSET6","index":"0.000003536426577765"},{"denom":"ASSET7","index":"0.000005416074448708"},{"denom":"ASSET8","index":"0.000007067350213206"},{"denom":"ASSET9","index":"0.000003052560720565"}],"last_reward_claim_height":"109"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET14","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001587610635106"},{"denom":"ASSET1","index":"0.000013244938725362"},{"denom":"ASSET10","index":"0.000009227311812032"},{"denom":"ASSET11","index":"0.000012812935831455"},{"denom":"ASSET12","index":"0.000011538527294432"},{"denom":"ASSET13","index":"0.000003970376596809"},{"denom":"ASSET14","index":"0.000011969180179294"},{"denom":"ASSET15","index":"0.000008557707326477"},{"denom":"ASSET16","index":"0.000005967039972082"},{"denom":"ASSET17","index":"0.000004237678387413"},{"denom":"ASSET18","index":"0.000002018263519969"},{"denom":"ASSET2","index":"0.000003909626189853"},{"denom":"ASSET3","index":"0.000001143457659809"},{"denom":"ASSET4","index":"0.000010763622103487"},{"denom":"ASSET5","index":"0.000000886955941552"},{"denom":"ASSET6","index":"0.000003612624200292"},{"denom":"ASSET7","index":"0.000005533687069132"},{"denom":"ASSET8","index":"0.000007219848364411"},{"denom":"ASSET9","index":"0.000003118520890387"}],"last_reward_claim_height":"100"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET9","shares":"584606014.250399839253617976","reward_history":[{"denom":"ASSET0","index":"0.000002831039632868"},{"denom":"ASSET1","index":"0.000024014703977493"},{"denom":"ASSET10","index":"0.000019136467933987"},{"denom":"ASSET11","index":"0.000023856136612857"},{"denom":"ASSET12","index":"0.000022731094165303"},{"denom":"ASSET13","index":"0.000007491812146677"},{"denom":"ASSET14","index":"0.000021900750691559"},{"denom":"ASSET15","index":"0.000017242457090593"},{"denom":"ASSET16","index":"0.000010655585625623"},{"denom":"ASSET17","index":"0.000008353141870908"},{"denom":"ASSET18","index":"0.000003458892129556"},{"denom":"ASSET2","index":"0.000007270317321266"},{"denom":"ASSET3","index":"0.000002020551075646"},{"denom":"ASSET4","index":"0.000019470118745656"},{"denom":"ASSET5","index":"0.000001574098937698"},{"denom":"ASSET6","index":"0.000006353413461243"},{"denom":"ASSET7","index":"0.000009977493764026"},{"denom":"ASSET8","index":"0.000013619759476676"},{"denom":"ASSET9","index":"0.000005782490697784"}],"last_reward_claim_height":"158"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET13","shares":"197819497.999999991814018980","reward_history":[{"denom":"ASSET0","index":"0.000001450981944084"},{"denom":"ASSET1","index":"0.000012097851501865"},{"denom":"ASSET10","index":"0.000008428524260541"},{"denom":"ASSET11","index":"0.000011703479004578"},{"denom":"ASSET12","index":"0.000010538773481717"},{"denom":"ASSET13","index":"0.000003626563958485"},{"denom":"ASSET14","index":"0.000010932552044520"},{"denom":"ASSET15","index":"0.000007816771742159"},{"denom":"ASSET16","index":"0.000005449942823954"},{"denom":"ASSET17","index":"0.000003870671031354"},{"denom":"ASSET18","index":"0.000001843572637920"},{"denom":"ASSET2","index":"0.000003571328051486"},{"denom":"ASSET3","index":"0.000001044730757120"},{"denom":"ASSET4","index":"0.000009831991445917"},{"denom":"ASSET5","index":"0.000000810720570477"},{"denom":"ASSET6","index":"0.000003299899992359"},{"denom":"ASSET7","index":"0.000005054382457699"},{"denom":"ASSET8","index":"0.000006595048508847"},{"denom":"ASSET9","index":"0.000002848509784621"}],"last_reward_claim_height":"113"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET18","shares":"907876060.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002831039632868"},{"denom":"ASSET1","index":"0.000024014703977493"},{"denom":"ASSET10","index":"0.000019136467933987"},{"denom":"ASSET11","index":"0.000023856136612857"},{"denom":"ASSET12","index":"0.000022731094165303"},{"denom":"ASSET13","index":"0.000007491812146677"},{"denom":"ASSET14","index":"0.000021900750691559"},{"denom":"ASSET15","index":"0.000017242457090593"},{"denom":"ASSET16","index":"0.000010655585625623"},{"denom":"ASSET17","index":"0.000008353141870908"},{"denom":"ASSET18","index":"0.000003458892129556"},{"denom":"ASSET2","index":"0.000007270317321266"},{"denom":"ASSET3","index":"0.000002020551075646"},{"denom":"ASSET4","index":"0.000019470118745656"},{"denom":"ASSET5","index":"0.000001574098937698"},{"denom":"ASSET6","index":"0.000006353413461243"},{"denom":"ASSET7","index":"0.000009977493764026"},{"denom":"ASSET8","index":"0.000013619759476676"},{"denom":"ASSET9","index":"0.000005782490697784"}],"last_reward_claim_height":"156"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET4","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"17"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET6","shares":"358399167.398066944725560832","reward_history":[{"denom":"ASSET0","index":"0.000004782315839318"},{"denom":"ASSET1","index":"0.000039124109697701"},{"denom":"ASSET10","index":"0.000033908667533337"},{"denom":"ASSET11","index":"0.000040671415761037"},{"denom":"ASSET12","index":"0.000038716119372205"},{"denom":"ASSET13","index":"0.000013122943792699"},{"denom":"ASSET14","index":"0.000037525859494012"},{"denom":"ASSET15","index":"0.000030438556464533"},{"denom":"ASSET16","index":"0.000017360072879568"},{"denom":"ASSET17","index":"0.000014062364408016"},{"denom":"ASSET18","index":"0.000005843043910982"},{"denom":"ASSET2","index":"0.000011809556044271"},{"denom":"ASSET3","index":"0.000003396000062217"},{"denom":"ASSET4","index":"0.000032074301049286"},{"denom":"ASSET5","index":"0.000002666908218711"},{"denom":"ASSET6","index":"0.000010886478947902"},{"denom":"ASSET7","index":"0.000016812859737299"},{"denom":"ASSET8","index":"0.000024216326909603"},{"denom":"ASSET9","index":"0.000009708917418598"}],"last_reward_claim_height":"187"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET8","shares":"41996399.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004782315839318"},{"denom":"ASSET1","index":"0.000039124109697701"},{"denom":"ASSET10","index":"0.000033908667533337"},{"denom":"ASSET11","index":"0.000040671415761037"},{"denom":"ASSET12","index":"0.000038716119372205"},{"denom":"ASSET13","index":"0.000013122943792699"},{"denom":"ASSET14","index":"0.000037525859494012"},{"denom":"ASSET15","index":"0.000030438556464533"},{"denom":"ASSET16","index":"0.000017360072879568"},{"denom":"ASSET17","index":"0.000014062364408016"},{"denom":"ASSET18","index":"0.000005843043910982"},{"denom":"ASSET2","index":"0.000011809556044271"},{"denom":"ASSET3","index":"0.000003396000062217"},{"denom":"ASSET4","index":"0.000032074301049286"},{"denom":"ASSET5","index":"0.000002666908218711"},{"denom":"ASSET6","index":"0.000010886478947902"},{"denom":"ASSET7","index":"0.000016812859737299"},{"denom":"ASSET8","index":"0.000024216326909603"},{"denom":"ASSET9","index":"0.000009708917418598"}],"last_reward_claim_height":"184"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET13","shares":"807528591.341844667742721375","reward_history":[{"denom":"ASSET0","index":"0.000004782315839318"},{"denom":"ASSET1","index":"0.000039124109697701"},{"denom":"ASSET10","index":"0.000033908667533337"},{"denom":"ASSET11","index":"0.000040671415761037"},{"denom":"ASSET12","index":"0.000038716119372205"},{"denom":"ASSET13","index":"0.000013122943792699"},{"denom":"ASSET14","index":"0.000037525859494012"},{"denom":"ASSET15","index":"0.000030438556464533"},{"denom":"ASSET16","index":"0.000017360072879568"},{"denom":"ASSET17","index":"0.000014062364408016"},{"denom":"ASSET18","index":"0.000005843043910982"},{"denom":"ASSET2","index":"0.000011809556044271"},{"denom":"ASSET3","index":"0.000003396000062217"},{"denom":"ASSET4","index":"0.000032074301049286"},{"denom":"ASSET5","index":"0.000002666908218711"},{"denom":"ASSET6","index":"0.000010886478947902"},{"denom":"ASSET7","index":"0.000016812859737299"},{"denom":"ASSET8","index":"0.000024216326909603"},{"denom":"ASSET9","index":"0.000009708917418598"}],"last_reward_claim_height":"198"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET2","shares":"1150576630.177946232597069824","reward_history":[{"denom":"ASSET0","index":"0.000004708438426996"},{"denom":"ASSET1","index":"0.000038520493193901"},{"denom":"ASSET10","index":"0.000033447889442869"},{"denom":"ASSET11","index":"0.000040066635538605"},{"denom":"ASSET12","index":"0.000038162559600338"},{"denom":"ASSET13","index":"0.000012931064308163"},{"denom":"ASSET14","index":"0.000036961534886120"},{"denom":"ASSET15","index":"0.000030015502632007"},{"denom":"ASSET16","index":"0.000017089105961021"},{"denom":"ASSET17","index":"0.000013860849696398"},{"denom":"ASSET18","index":"0.000005749976668797"},{"denom":"ASSET2","index":"0.000011630369724417"},{"denom":"ASSET3","index":"0.000003343204166159"},{"denom":"ASSET4","index":"0.000031580339975976"},{"denom":"ASSET5","index":"0.000002625639366966"},{"denom":"ASSET6","index":"0.000010718023658977"},{"denom":"ASSET7","index":"0.000016555639039194"},{"denom":"ASSET8","index":"0.000023864339856305"},{"denom":"ASSET9","index":"0.000009563147004842"}],"last_reward_claim_height":"196"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET6","shares":"86444896.839103270916641512","reward_history":[{"denom":"ASSET0","index":"0.000001539653287763"},{"denom":"ASSET1","index":"0.000012837628062054"},{"denom":"ASSET10","index":"0.000008944076712630"},{"denom":"ASSET11","index":"0.000012418678362380"},{"denom":"ASSET12","index":"0.000011182855597091"},{"denom":"ASSET13","index":"0.000003848344731893"},{"denom":"ASSET14","index":"0.000011600753980079"},{"denom":"ASSET15","index":"0.000008294363000211"},{"denom":"ASSET16","index":"0.000005782767435536"},{"denom":"ASSET17","index":"0.000004106968636837"},{"denom":"ASSET18","index":"0.000001956500354065"},{"denom":"ASSET2","index":"0.000003789470997435"},{"denom":"ASSET3","index":"0.000001108613446191"},{"denom":"ASSET4","index":"0.000010432741141086"},{"denom":"ASSET5","index":"0.000000860502708115"},{"denom":"ASSET6","index":"0.000003501935883605"},{"denom":"ASSET7","index":"0.000005362766419174"},{"denom":"ASSET8","index":"0.000006998089525433"},{"denom":"ASSET9","index":"0.000003022535474442"}],"last_reward_claim_height":"113"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET11","shares":"624271545.829802483744669447","reward_history":[{"denom":"ASSET0","index":"0.000003102081054533"},{"denom":"ASSET1","index":"0.000026328097047411"},{"denom":"ASSET10","index":"0.000021065731925672"},{"denom":"ASSET11","index":"0.000026176422512857"},{"denom":"ASSET12","index":"0.000024984864029023"},{"denom":"ASSET13","index":"0.000008223750690350"},{"denom":"ASSET14","index":"0.000024017391771060"},{"denom":"ASSET15","index":"0.000018965095888316"},{"denom":"ASSET16","index":"0.000011675661088751"},{"denom":"ASSET17","index":"0.000009181817821335"},{"denom":"ASSET18","index":"0.000003784851704842"},{"denom":"ASSET2","index":"0.000007977007181168"},{"denom":"ASSET3","index":"0.000002213531006169"},{"denom":"ASSET4","index":"0.000021343717572048"},{"denom":"ASSET5","index":"0.000001724500934679"},{"denom":"ASSET6","index":"0.000006958604580417"},{"denom":"ASSET7","index":"0.000010936011139136"},{"denom":"ASSET8","index":"0.000014950117004491"},{"denom":"ASSET9","index":"0.000006344046059941"}],"last_reward_claim_height":"138"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET13","shares":"72705426.634145509985853499","reward_history":[{"denom":"ASSET0","index":"0.000003102081054533"},{"denom":"ASSET1","index":"0.000026328097047411"},{"denom":"ASSET10","index":"0.000021065731925672"},{"denom":"ASSET11","index":"0.000026176422512857"},{"denom":"ASSET12","index":"0.000024984864029023"},{"denom":"ASSET13","index":"0.000008223750690350"},{"denom":"ASSET14","index":"0.000024017391771060"},{"denom":"ASSET15","index":"0.000018965095888316"},{"denom":"ASSET16","index":"0.000011675661088751"},{"denom":"ASSET17","index":"0.000009181817821335"},{"denom":"ASSET18","index":"0.000003784851704842"},{"denom":"ASSET2","index":"0.000007977007181168"},{"denom":"ASSET3","index":"0.000002213531006169"},{"denom":"ASSET4","index":"0.000021343717572048"},{"denom":"ASSET5","index":"0.000001724500934679"},{"denom":"ASSET6","index":"0.000006958604580417"},{"denom":"ASSET7","index":"0.000010936011139136"},{"denom":"ASSET8","index":"0.000014950117004491"},{"denom":"ASSET9","index":"0.000006344046059941"}],"last_reward_claim_height":"159"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET14","shares":"1000092504.111359176000000000","reward_history":[{"denom":"ASSET0","index":"0.000003102081054533"},{"denom":"ASSET1","index":"0.000026328097047411"},{"denom":"ASSET10","index":"0.000021065731925672"},{"denom":"ASSET11","index":"0.000026176422512857"},{"denom":"ASSET12","index":"0.000024984864029023"},{"denom":"ASSET13","index":"0.000008223750690350"},{"denom":"ASSET14","index":"0.000024017391771060"},{"denom":"ASSET15","index":"0.000018965095888316"},{"denom":"ASSET16","index":"0.000011675661088751"},{"denom":"ASSET17","index":"0.000009181817821335"},{"denom":"ASSET18","index":"0.000003784851704842"},{"denom":"ASSET2","index":"0.000007977007181168"},{"denom":"ASSET3","index":"0.000002213531006169"},{"denom":"ASSET4","index":"0.000021343717572048"},{"denom":"ASSET5","index":"0.000001724500934679"},{"denom":"ASSET6","index":"0.000006958604580417"},{"denom":"ASSET7","index":"0.000010936011139136"},{"denom":"ASSET8","index":"0.000014950117004491"},{"denom":"ASSET9","index":"0.000006344046059941"}],"last_reward_claim_height":"182"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET15","shares":"50151480.999999999590028158","reward_history":[],"last_reward_claim_height":"33"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET17","shares":"1000065446.960304631000000000","reward_history":[{"denom":"ASSET0","index":"0.000004932922606577"},{"denom":"ASSET1","index":"0.000040396906160074"},{"denom":"ASSET10","index":"0.000034838303486914"},{"denom":"ASSET11","index":"0.000041914424288227"},{"denom":"ASSET12","index":"0.000039857170373527"},{"denom":"ASSET13","index":"0.000013510260278305"},{"denom":"ASSET14","index":"0.000038681126023432"},{"denom":"ASSET15","index":"0.000031291398674533"},{"denom":"ASSET16","index":"0.000017930058046877"},{"denom":"ASSET17","index":"0.000014479422944962"},{"denom":"ASSET18","index":"0.000006034014737166"},{"denom":"ASSET2","index":"0.000012186534642262"},{"denom":"ASSET3","index":"0.000003503888301858"},{"denom":"ASSET4","index":"0.000033108545408351"},{"denom":"ASSET5","index":"0.000002750102339201"},{"denom":"ASSET6","index":"0.000011230081338040"},{"denom":"ASSET7","index":"0.000017343857331989"},{"denom":"ASSET8","index":"0.000024921315009190"},{"denom":"ASSET9","index":"0.000010011497921619"}],"last_reward_claim_height":"196"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET1","shares":"894423425.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001677980890787"},{"denom":"ASSET1","index":"0.000013990275877081"},{"denom":"ASSET10","index":"0.000009746835585844"},{"denom":"ASSET11","index":"0.000013534047272362"},{"denom":"ASSET12","index":"0.000012187401487418"},{"denom":"ASSET13","index":"0.000004194217559326"},{"denom":"ASSET14","index":"0.000012642160756856"},{"denom":"ASSET15","index":"0.000009039350648091"},{"denom":"ASSET16","index":"0.000006301979019776"},{"denom":"ASSET17","index":"0.000004475595265619"},{"denom":"ASSET18","index":"0.000002132005492585"},{"denom":"ASSET2","index":"0.000004129566806967"},{"denom":"ASSET3","index":"0.000001207793600899"},{"denom":"ASSET4","index":"0.000011368981735957"},{"denom":"ASSET5","index":"0.000000937435909214"},{"denom":"ASSET6","index":"0.000003815863724495"},{"denom":"ASSET7","index":"0.000005844281079776"},{"denom":"ASSET8","index":"0.000007626584775507"},{"denom":"ASSET9","index":"0.000003293515032135"}],"last_reward_claim_height":"83"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET5","shares":"652347265.501661265517137676","reward_history":[{"denom":"ASSET0","index":"0.000003299297789724"},{"denom":"ASSET1","index":"0.000027989603079017"},{"denom":"ASSET10","index":"0.000022326156077139"},{"denom":"ASSET11","index":"0.000027810817552502"},{"denom":"ASSET12","index":"0.000026510364756940"},{"denom":"ASSET13","index":"0.000008734817330461"},{"denom":"ASSET14","index":"0.000025527438517331"},{"denom":"ASSET15","index":"0.000020112836713905"},{"denom":"ASSET16","index":"0.000012417417558556"},{"denom":"ASSET17","index":"0.000009741881197111"},{"denom":"ASSET18","index":"0.000004029624902086"},{"denom":"ASSET2","index":"0.000008475129511821"},{"denom":"ASSET3","index":"0.000002354634361983"},{"denom":"ASSET4","index":"0.000022691681830907"},{"denom":"ASSET5","index":"0.000001834207215432"},{"denom":"ASSET6","index":"0.000007402948949368"},{"denom":"ASSET7","index":"0.000011627814435586"},{"denom":"ASSET8","index":"0.000015878876786083"},{"denom":"ASSET9","index":"0.000006740310437402"}],"last_reward_claim_height":"171"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET6","shares":"16006452.071151688519020864","reward_history":[{"denom":"ASSET0","index":"0.000004913983609001"},{"denom":"ASSET1","index":"0.000040244987929815"},{"denom":"ASSET10","index":"0.000034772305497303"},{"denom":"ASSET11","index":"0.000041772863997093"},{"denom":"ASSET12","index":"0.000039756115018181"},{"denom":"ASSET13","index":"0.000013466459952772"},{"denom":"ASSET14","index":"0.000038538449259774"},{"denom":"ASSET15","index":"0.000031220537321082"},{"denom":"ASSET16","index":"0.000017858853026625"},{"denom":"ASSET17","index":"0.000014445033007114"},{"denom":"ASSET18","index":"0.000006004781433606"},{"denom":"ASSET2","index":"0.000012147347472117"},{"denom":"ASSET3","index":"0.000003490240978647"},{"denom":"ASSET4","index":"0.000032981200632459"},{"denom":"ASSET5","index":"0.000002740029237178"},{"denom":"ASSET6","index":"0.000011181697773076"},{"denom":"ASSET7","index":"0.000017276427658373"},{"denom":"ASSET8","index":"0.000024839237256922"},{"denom":"ASSET9","index":"0.000009975875730805"}],"last_reward_claim_height":"200"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET8","shares":"758774421.633326416528227888","reward_history":[{"denom":"ASSET0","index":"0.000004913983609001"},{"denom":"ASSET1","index":"0.000040244987929815"},{"denom":"ASSET10","index":"0.000034772305497303"},{"denom":"ASSET11","index":"0.000041772863997093"},{"denom":"ASSET12","index":"0.000039756115018181"},{"denom":"ASSET13","index":"0.000013466459952772"},{"denom":"ASSET14","index":"0.000038538449259774"},{"denom":"ASSET15","index":"0.000031220537321082"},{"denom":"ASSET16","index":"0.000017858853026625"},{"denom":"ASSET17","index":"0.000014445033007114"},{"denom":"ASSET18","index":"0.000006004781433606"},{"denom":"ASSET2","index":"0.000012147347472117"},{"denom":"ASSET3","index":"0.000003490240978647"},{"denom":"ASSET4","index":"0.000032981200632459"},{"denom":"ASSET5","index":"0.000002740029237178"},{"denom":"ASSET6","index":"0.000011181697773076"},{"denom":"ASSET7","index":"0.000017276427658373"},{"denom":"ASSET8","index":"0.000024839237256922"},{"denom":"ASSET9","index":"0.000009975875730805"}],"last_reward_claim_height":"193"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET9","shares":"154193507.470646338710407695","reward_history":[{"denom":"ASSET0","index":"0.000003299297789724"},{"denom":"ASSET1","index":"0.000027989603079017"},{"denom":"ASSET10","index":"0.000022326156077139"},{"denom":"ASSET11","index":"0.000027810817552502"},{"denom":"ASSET12","index":"0.000026510364756940"},{"denom":"ASSET13","index":"0.000008734817330461"},{"denom":"ASSET14","index":"0.000025527438517331"},{"denom":"ASSET15","index":"0.000020112836713905"},{"denom":"ASSET16","index":"0.000012417417558556"},{"denom":"ASSET17","index":"0.000009741881197111"},{"denom":"ASSET18","index":"0.000004029624902086"},{"denom":"ASSET2","index":"0.000008475129511821"},{"denom":"ASSET3","index":"0.000002354634361983"},{"denom":"ASSET4","index":"0.000022691681830907"},{"denom":"ASSET5","index":"0.000001834207215432"},{"denom":"ASSET6","index":"0.000007402948949368"},{"denom":"ASSET7","index":"0.000011627814435586"},{"denom":"ASSET8","index":"0.000015878876786083"},{"denom":"ASSET9","index":"0.000006740310437402"}],"last_reward_claim_height":"128"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET3","shares":"492512654.127558622321771047","reward_history":[{"denom":"ASSET0","index":"0.000004772719302966"},{"denom":"ASSET1","index":"0.000039045168205059"},{"denom":"ASSET10","index":"0.000033888596510929"},{"denom":"ASSET11","index":"0.000040609336111210"},{"denom":"ASSET12","index":"0.000038670766700041"},{"denom":"ASSET13","index":"0.000013105357219810"},{"denom":"ASSET14","index":"0.000037465363585392"},{"denom":"ASSET15","index":"0.000030413687247718"},{"denom":"ASSET16","index":"0.000017323394502263"},{"denom":"ASSET17","index":"0.000014044328076069"},{"denom":"ASSET18","index":"0.000005829857736340"},{"denom":"ASSET2","index":"0.000011786897564708"},{"denom":"ASSET3","index":"0.000003388925924010"},{"denom":"ASSET4","index":"0.000032010424606564"},{"denom":"ASSET5","index":"0.000002661438394800"},{"denom":"ASSET6","index":"0.000010865554956372"},{"denom":"ASSET7","index":"0.000016781785111511"},{"denom":"ASSET8","index":"0.000024188491097742"},{"denom":"ASSET9","index":"0.000009692741668944"}],"last_reward_claim_height":"197"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET3","shares":"412839379.999999961030122688","reward_history":[{"denom":"ASSET0","index":"0.000003309574221953"},{"denom":"ASSET1","index":"0.000028041386020893"},{"denom":"ASSET10","index":"0.000022151472675705"},{"denom":"ASSET11","index":"0.000027806413413432"},{"denom":"ASSET12","index":"0.000026397319662942"},{"denom":"ASSET13","index":"0.000008723998941637"},{"denom":"ASSET14","index":"0.000025556208464743"},{"denom":"ASSET15","index":"0.000019995491235522"},{"denom":"ASSET16","index":"0.000012454763771642"},{"denom":"ASSET17","index":"0.000009698403814011"},{"denom":"ASSET18","index":"0.000004053515914738"},{"denom":"ASSET2","index":"0.000008473190716338"},{"denom":"ASSET3","index":"0.000002361530218445"},{"denom":"ASSET4","index":"0.000022738669483779"},{"denom":"ASSET5","index":"0.000001840125976242"},{"denom":"ASSET6","index":"0.000007434008870747"},{"denom":"ASSET7","index":"0.000011653935721338"},{"denom":"ASSET8","index":"0.000015861166565423"},{"denom":"ASSET9","index":"0.000006742103174023"}],"last_reward_claim_height":"154"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET7","shares":"942122635.999999953835990836","reward_history":[],"last_reward_claim_height":"26"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET12","shares":"85599682.570495153183404008","reward_history":[{"denom":"ASSET0","index":"0.000003309574221953"},{"denom":"ASSET1","index":"0.000028041386020893"},{"denom":"ASSET10","index":"0.000022151472675705"},{"denom":"ASSET11","index":"0.000027806413413432"},{"denom":"ASSET12","index":"0.000026397319662942"},{"denom":"ASSET13","index":"0.000008723998941637"},{"denom":"ASSET14","index":"0.000025556208464743"},{"denom":"ASSET15","index":"0.000019995491235522"},{"denom":"ASSET16","index":"0.000012454763771642"},{"denom":"ASSET17","index":"0.000009698403814011"},{"denom":"ASSET18","index":"0.000004053515914738"},{"denom":"ASSET2","index":"0.000008473190716338"},{"denom":"ASSET3","index":"0.000002361530218445"},{"denom":"ASSET4","index":"0.000022738669483779"},{"denom":"ASSET5","index":"0.000001840125976242"},{"denom":"ASSET6","index":"0.000007434008870747"},{"denom":"ASSET7","index":"0.000011653935721338"},{"denom":"ASSET8","index":"0.000015861166565423"},{"denom":"ASSET9","index":"0.000006742103174023"}],"last_reward_claim_height":"142"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET0","shares":"583979222.461464373815924248","reward_history":[{"denom":"ASSET0","index":"0.000003039218640043"},{"denom":"ASSET1","index":"0.000025782167100542"},{"denom":"ASSET10","index":"0.000020571830356487"},{"denom":"ASSET11","index":"0.000025618833387376"},{"denom":"ASSET12","index":"0.000024423552320522"},{"denom":"ASSET13","index":"0.000008046369560384"},{"denom":"ASSET14","index":"0.000023515194162679"},{"denom":"ASSET15","index":"0.000018530055863607"},{"denom":"ASSET16","index":"0.000011436803083329"},{"denom":"ASSET17","index":"0.000008974370950503"},{"denom":"ASSET18","index":"0.000003710743638587"},{"denom":"ASSET2","index":"0.000007806913274081"},{"denom":"ASSET3","index":"0.000002167934051431"},{"denom":"ASSET4","index":"0.000020901035076857"},{"denom":"ASSET5","index":"0.000001689640060433"},{"denom":"ASSET6","index":"0.000006819038075969"},{"denom":"ASSET7","index":"0.000010710838619674"},{"denom":"ASSET8","index":"0.000014627524271874"},{"denom":"ASSET9","index":"0.000006209166066794"}],"last_reward_claim_height":"164"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET0","shares":"835921255.999999969070913528","reward_history":[{"denom":"ASSET0","index":"0.000003218229550028"},{"denom":"ASSET1","index":"0.000027301798081180"},{"denom":"ASSET10","index":"0.000021745417841688"},{"denom":"ASSET11","index":"0.000027119412726222"},{"denom":"ASSET12","index":"0.000025834540696398"},{"denom":"ASSET13","index":"0.000008516471999212"},{"denom":"ASSET14","index":"0.000024897496810197"},{"denom":"ASSET15","index":"0.000019595694306931"},{"denom":"ASSET16","index":"0.000012114595919920"},{"denom":"ASSET17","index":"0.000009493460517354"},{"denom":"ASSET18","index":"0.000003932937797970"},{"denom":"ASSET2","index":"0.000008264095290285"},{"denom":"ASSET3","index":"0.000002297232512411"},{"denom":"ASSET4","index":"0.000022135581489268"},{"denom":"ASSET5","index":"0.000001789675045728"},{"denom":"ASSET6","index":"0.000007223884768794"},{"denom":"ASSET7","index":"0.000011342725097550"},{"denom":"ASSET8","index":"0.000015481678980085"},{"denom":"ASSET9","index":"0.000006573861400446"}],"last_reward_claim_height":"162"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET8","shares":"134362999.145760413415862202","reward_history":[{"denom":"ASSET0","index":"0.000001655272585709"},{"denom":"ASSET1","index":"0.000013804891217292"},{"denom":"ASSET10","index":"0.000009617831976915"},{"denom":"ASSET11","index":"0.000013354722791997"},{"denom":"ASSET12","index":"0.000012025575872058"},{"denom":"ASSET13","index":"0.000004138592201887"},{"denom":"ASSET14","index":"0.000012474922822124"},{"denom":"ASSET15","index":"0.000008919578032571"},{"denom":"ASSET16","index":"0.000006218567480803"},{"denom":"ASSET17","index":"0.000004416250829168"},{"denom":"ASSET18","index":"0.000002103798060547"},{"denom":"ASSET2","index":"0.000004074517134053"},{"denom":"ASSET3","index":"0.000001191960556756"},{"denom":"ASSET4","index":"0.000011218887197534"},{"denom":"ASSET5","index":"0.000000924981107448"},{"denom":"ASSET6","index":"0.000003765642448085"},{"denom":"ASSET7","index":"0.000005766756105051"},{"denom":"ASSET8","index":"0.000007525534569569"},{"denom":"ASSET9","index":"0.000003250577479728"}],"last_reward_claim_height":"109"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET16","shares":"270429645.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004805221581489"},{"denom":"ASSET1","index":"0.000039345873089839"},{"denom":"ASSET10","index":"0.000033976974059511"},{"denom":"ASSET11","index":"0.000040840579959096"},{"denom":"ASSET12","index":"0.000038851970817686"},{"denom":"ASSET13","index":"0.000013166643058567"},{"denom":"ASSET14","index":"0.000037684443357597"},{"denom":"ASSET15","index":"0.000030511924225991"},{"denom":"ASSET16","index":"0.000017462133370161"},{"denom":"ASSET17","index":"0.000014115418385039"},{"denom":"ASSET18","index":"0.000005874187405486"},{"denom":"ASSET2","index":"0.000011873108566706"},{"denom":"ASSET3","index":"0.000003413246263568"},{"denom":"ASSET4","index":"0.000032247735445721"},{"denom":"ASSET5","index":"0.000002679755737782"},{"denom":"ASSET6","index":"0.000010937559885283"},{"denom":"ASSET7","index":"0.000016893898084444"},{"denom":"ASSET8","index":"0.000024287380141606"},{"denom":"ASSET9","index":"0.000009753761132589"}],"last_reward_claim_height":"190"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET1","shares":"23684662.825753676092943189","reward_history":[{"denom":"ASSET0","index":"0.000003224207736427"},{"denom":"ASSET1","index":"0.000027358045975387"},{"denom":"ASSET10","index":"0.000021853454393362"},{"denom":"ASSET11","index":"0.000027191663823691"},{"denom":"ASSET12","index":"0.000025935625558190"},{"denom":"ASSET13","index":"0.000008541293337334"},{"denom":"ASSET14","index":"0.000024954691173737"},{"denom":"ASSET15","index":"0.000019681390400685"},{"denom":"ASSET16","index":"0.000012135703886829"},{"denom":"ASSET17","index":"0.000009530848033034"},{"denom":"ASSET18","index":"0.000003936224347496"},{"denom":"ASSET2","index":"0.000008286598878032"},{"denom":"ASSET3","index":"0.000002301038846536"},{"denom":"ASSET4","index":"0.000022179933336345"},{"denom":"ASSET5","index":"0.000001792519798769"},{"denom":"ASSET6","index":"0.000007234068845872"},{"denom":"ASSET7","index":"0.000011365474292791"},{"denom":"ASSET8","index":"0.000015527655320242"},{"denom":"ASSET9","index":"0.000006590765495457"}],"last_reward_claim_height":"169"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET4","shares":"184997982.396917134892973525","reward_history":[{"denom":"ASSET0","index":"0.000001621688869515"},{"denom":"ASSET1","index":"0.000013520143478358"},{"denom":"ASSET10","index":"0.000009419470546393"},{"denom":"ASSET11","index":"0.000013079418684764"},{"denom":"ASSET12","index":"0.000011778054243646"},{"denom":"ASSET13","index":"0.000004053107355591"},{"denom":"ASSET14","index":"0.000012218035825109"},{"denom":"ASSET15","index":"0.000008735715386011"},{"denom":"ASSET16","index":"0.000006090623412316"},{"denom":"ASSET17","index":"0.000004325494601547"},{"denom":"ASSET18","index":"0.000002060555632782"},{"denom":"ASSET2","index":"0.000003991049142665"},{"denom":"ASSET3","index":"0.000001167586257565"},{"denom":"ASSET4","index":"0.000010987648142487"},{"denom":"ASSET5","index":"0.000000905975587506"},{"denom":"ASSET6","index":"0.000003688190199343"},{"denom":"ASSET7","index":"0.000005648412194460"},{"denom":"ASSET8","index":"0.000007370434701640"},{"denom":"ASSET9","index":"0.000003183549162496"}],"last_reward_claim_height":"82"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET6","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"18"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET9","shares":"603115113.358196994505989465","reward_history":[{"denom":"ASSET0","index":"0.000003224207736427"},{"denom":"ASSET1","index":"0.000027358045975387"},{"denom":"ASSET10","index":"0.000021853454393362"},{"denom":"ASSET11","index":"0.000027191663823691"},{"denom":"ASSET12","index":"0.000025935625558190"},{"denom":"ASSET13","index":"0.000008541293337334"},{"denom":"ASSET14","index":"0.000024954691173737"},{"denom":"ASSET15","index":"0.000019681390400685"},{"denom":"ASSET16","index":"0.000012135703886829"},{"denom":"ASSET17","index":"0.000009530848033034"},{"denom":"ASSET18","index":"0.000003936224347496"},{"denom":"ASSET2","index":"0.000008286598878032"},{"denom":"ASSET3","index":"0.000002301038846536"},{"denom":"ASSET4","index":"0.000022179933336345"},{"denom":"ASSET5","index":"0.000001792519798769"},{"denom":"ASSET6","index":"0.000007234068845872"},{"denom":"ASSET7","index":"0.000011365474292791"},{"denom":"ASSET8","index":"0.000015527655320242"},{"denom":"ASSET9","index":"0.000006590765495457"}],"last_reward_claim_height":"133"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET13","shares":"306491299.000000000000000000","reward_history":[],"last_reward_claim_height":"14"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET18","shares":"410237980.918489044616906658","reward_history":[{"denom":"ASSET0","index":"0.000004792917406928"},{"denom":"ASSET1","index":"0.000039212809339041"},{"denom":"ASSET10","index":"0.000033821158916912"},{"denom":"ASSET11","index":"0.000040703969988334"},{"denom":"ASSET12","index":"0.000038685540464857"},{"denom":"ASSET13","index":"0.000013123383671606"},{"denom":"ASSET14","index":"0.000037572259869060"},{"denom":"ASSET15","index":"0.000030383430108095"},{"denom":"ASSET16","index":"0.000017408409650349"},{"denom":"ASSET17","index":"0.000014052799802155"},{"denom":"ASSET18","index":"0.000005862593440880"},{"denom":"ASSET2","index":"0.000011827616400842"},{"denom":"ASSET3","index":"0.000003404853686933"},{"denom":"ASSET4","index":"0.000032143838562994"},{"denom":"ASSET5","index":"0.000002672916016720"},{"denom":"ASSET6","index":"0.000010912793942254"},{"denom":"ASSET7","index":"0.000016845380556915"},{"denom":"ASSET8","index":"0.000024212241881850"},{"denom":"ASSET9","index":"0.000009719793127333"}],"last_reward_claim_height":"185"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET14","shares":"866296067.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001677613648548"},{"denom":"ASSET1","index":"0.000013997394471820"},{"denom":"ASSET10","index":"0.000009752554992736"},{"denom":"ASSET11","index":"0.000013541183096442"},{"denom":"ASSET12","index":"0.000012193285851007"},{"denom":"ASSET13","index":"0.000004195070965406"},{"denom":"ASSET14","index":"0.000012649497226385"},{"denom":"ASSET15","index":"0.000009043353672830"},{"denom":"ASSET16","index":"0.000006306085420563"},{"denom":"ASSET17","index":"0.000004477092542912"},{"denom":"ASSET18","index":"0.000002131751335856"},{"denom":"ASSET2","index":"0.000004130786635239"},{"denom":"ASSET3","index":"0.000001208960144751"},{"denom":"ASSET4","index":"0.000011376252751467"},{"denom":"ASSET5","index":"0.000000937307007594"},{"denom":"ASSET6","index":"0.000003817659736684"},{"denom":"ASSET7","index":"0.000005847800357116"},{"denom":"ASSET8","index":"0.000007631172097229"},{"denom":"ASSET9","index":"0.000003295090343070"}],"last_reward_claim_height":"70"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET18","shares":"338549363.304097015319560347","reward_history":[{"denom":"ASSET0","index":"0.000003047858420945"},{"denom":"ASSET1","index":"0.000025863853767953"},{"denom":"ASSET10","index":"0.000020681482671570"},{"denom":"ASSET11","index":"0.000025712271525236"},{"denom":"ASSET12","index":"0.000024535470175220"},{"denom":"ASSET13","index":"0.000008077733573885"},{"denom":"ASSET14","index":"0.000023593590000343"},{"denom":"ASSET15","index":"0.000018621561303244"},{"denom":"ASSET16","index":"0.000011471343089677"},{"denom":"ASSET17","index":"0.000009016132124589"},{"denom":"ASSET18","index":"0.000003719208275283"},{"denom":"ASSET2","index":"0.000007835789085827"},{"denom":"ASSET3","index":"0.000002174729135607"},{"denom":"ASSET4","index":"0.000020967814383093"},{"denom":"ASSET5","index":"0.000001694402278429"},{"denom":"ASSET6","index":"0.000006836893759575"},{"denom":"ASSET7","index":"0.000010744095518390"},{"denom":"ASSET8","index":"0.000014684305897471"},{"denom":"ASSET9","index":"0.000006231971052532"}],"last_reward_claim_height":"181"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET1","shares":"1047879550.999999900332309068","reward_history":[{"denom":"ASSET0","index":"0.000001765508823557"},{"denom":"ASSET1","index":"0.000014724618911480"},{"denom":"ASSET10","index":"0.000010258363403154"},{"denom":"ASSET11","index":"0.000014244524406828"},{"denom":"ASSET12","index":"0.000012826610887714"},{"denom":"ASSET13","index":"0.000004413772058893"},{"denom":"ASSET14","index":"0.000013305845007949"},{"denom":"ASSET15","index":"0.000009513270498085"},{"denom":"ASSET16","index":"0.000006632703470176"},{"denom":"ASSET17","index":"0.000004710604682736"},{"denom":"ASSET18","index":"0.000002243882559375"},{"denom":"ASSET2","index":"0.000004346662074372"},{"denom":"ASSET3","index":"0.000001271648168235"},{"denom":"ASSET4","index":"0.000011966226470776"},{"denom":"ASSET5","index":"0.000000986860926228"},{"denom":"ASSET6","index":"0.000004016274458267"},{"denom":"ASSET7","index":"0.000006150888196691"},{"denom":"ASSET8","index":"0.000008026526225616"},{"denom":"ASSET9","index":"0.000003466488815844"}],"last_reward_claim_height":"111"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET1","shares":"93190541.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000005040570168850"},{"denom":"ASSET1","index":"0.000041355750359430"},{"denom":"ASSET10","index":"0.000035469281704739"},{"denom":"ASSET11","index":"0.000042803752649888"},{"denom":"ASSET12","index":"0.000040675443122671"},{"denom":"ASSET13","index":"0.000013775999252168"},{"denom":"ASSET14","index":"0.000039495576924183"},{"denom":"ASSET15","index":"0.000031873960565154"},{"denom":"ASSET16","index":"0.000018356948849581"},{"denom":"ASSET17","index":"0.000014782651582035"},{"denom":"ASSET18","index":"0.000006164254954174"},{"denom":"ASSET2","index":"0.000012468880818976"},{"denom":"ASSET3","index":"0.000003582052674901"},{"denom":"ASSET4","index":"0.000033871373778794"},{"denom":"ASSET5","index":"0.000002805429255147"},{"denom":"ASSET6","index":"0.000011472525623683"},{"denom":"ASSET7","index":"0.000017727043140390"},{"denom":"ASSET8","index":"0.000025392666272201"},{"denom":"ASSET9","index":"0.000010226777370208"}],"last_reward_claim_height":"187"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET9","shares":"329782878.529353665144238780","reward_history":[{"denom":"ASSET0","index":"0.000003461123478470"},{"denom":"ASSET1","index":"0.000029368181297786"},{"denom":"ASSET10","index":"0.000023294808028239"},{"denom":"ASSET11","index":"0.000029147392384169"},{"denom":"ASSET12","index":"0.000027719461688447"},{"denom":"ASSET13","index":"0.000009147542663388"},{"denom":"ASSET14","index":"0.000026768604990580"},{"denom":"ASSET15","index":"0.000021008846141082"},{"denom":"ASSET16","index":"0.000013035302068339"},{"denom":"ASSET17","index":"0.000010182949549387"},{"denom":"ASSET18","index":"0.000004232564951180"},{"denom":"ASSET2","index":"0.000008877642147806"},{"denom":"ASSET3","index":"0.000002471921418528"},{"denom":"ASSET4","index":"0.000023806252184245"},{"denom":"ASSET5","index":"0.000001920199705662"},{"denom":"ASSET6","index":"0.000007776538212319"},{"denom":"ASSET7","index":"0.000012202060569359"},{"denom":"ASSET8","index":"0.000016628688342614"},{"denom":"ASSET9","index":"0.000007061722298848"}],"last_reward_claim_height":"128"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET15","shares":"666347351.000000000000000000","reward_history":[],"last_reward_claim_height":"21"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET16","shares":"7181858.000000000430911480","reward_history":[{"denom":"ASSET0","index":"0.000003461123478470"},{"denom":"ASSET1","index":"0.000029368181297786"},{"denom":"ASSET10","index":"0.000023294808028239"},{"denom":"ASSET11","index":"0.000029147392384169"},{"denom":"ASSET12","index":"0.000027719461688447"},{"denom":"ASSET13","index":"0.000009147542663388"},{"denom":"ASSET14","index":"0.000026768604990580"},{"denom":"ASSET15","index":"0.000021008846141082"},{"denom":"ASSET16","index":"0.000013035302068339"},{"denom":"ASSET17","index":"0.000010182949549387"},{"denom":"ASSET18","index":"0.000004232564951180"},{"denom":"ASSET2","index":"0.000008877642147806"},{"denom":"ASSET3","index":"0.000002471921418528"},{"denom":"ASSET4","index":"0.000023806252184245"},{"denom":"ASSET5","index":"0.000001920199705662"},{"denom":"ASSET6","index":"0.000007776538212319"},{"denom":"ASSET7","index":"0.000012202060569359"},{"denom":"ASSET8","index":"0.000016628688342614"},{"denom":"ASSET9","index":"0.000007061722298848"}],"last_reward_claim_height":"178"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET1","shares":"57843641.403666083090786400","reward_history":[{"denom":"ASSET0","index":"0.000001580229076001"},{"denom":"ASSET1","index":"0.000013178675425859"},{"denom":"ASSET10","index":"0.000009181488308837"},{"denom":"ASSET11","index":"0.000012749045790152"},{"denom":"ASSET12","index":"0.000011480356468073"},{"denom":"ASSET13","index":"0.000003950572690002"},{"denom":"ASSET14","index":"0.000011909209196663"},{"denom":"ASSET15","index":"0.000008514902002442"},{"denom":"ASSET16","index":"0.000005936347281082"},{"denom":"ASSET17","index":"0.000004216274924019"},{"denom":"ASSET18","index":"0.000002008304897474"},{"denom":"ASSET2","index":"0.000003889973934875"},{"denom":"ASSET3","index":"0.000001137392019304"},{"denom":"ASSET4","index":"0.000010709664607998"},{"denom":"ASSET5","index":"0.000000883343392042"},{"denom":"ASSET6","index":"0.000003594749230410"},{"denom":"ASSET7","index":"0.000005505163831141"},{"denom":"ASSET8","index":"0.000007184060111002"},{"denom":"ASSET9","index":"0.000003102967025342"}],"last_reward_claim_height":"111"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET13","shares":"133997814.280462958628839011","reward_history":[{"denom":"ASSET0","index":"0.000003136420796654"},{"denom":"ASSET1","index":"0.000026617535879560"},{"denom":"ASSET10","index":"0.000021257162201233"},{"denom":"ASSET11","index":"0.000026454281403244"},{"denom":"ASSET12","index":"0.000025229520616223"},{"denom":"ASSET13","index":"0.000008309311482354"},{"denom":"ASSET14","index":"0.000024278363089230"},{"denom":"ASSET15","index":"0.000019144672836670"},{"denom":"ASSET16","index":"0.000011806881934189"},{"denom":"ASSET17","index":"0.000009271795054357"},{"denom":"ASSET18","index":"0.000003829937127836"},{"denom":"ASSET2","index":"0.000008061315465971"},{"denom":"ASSET3","index":"0.000002238409344787"},{"denom":"ASSET4","index":"0.000021579173085678"},{"denom":"ASSET5","index":"0.000001744155749232"},{"denom":"ASSET6","index":"0.000007037998659171"},{"denom":"ASSET7","index":"0.000011056982942661"},{"denom":"ASSET8","index":"0.000015105683491420"},{"denom":"ASSET9","index":"0.000006411626899884"}],"last_reward_claim_height":"128"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET0","shares":"893116566.000000000000000000","reward_history":[],"last_reward_claim_height":"63"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET1","shares":"440518047.253327400054187140","reward_history":[{"denom":"ASSET0","index":"0.000001065673750407"},{"denom":"ASSET1","index":"0.000008885137524612"},{"denom":"ASSET10","index":"0.000006190162379117"},{"denom":"ASSET11","index":"0.000008595321581390"},{"denom":"ASSET12","index":"0.000007740138401991"},{"denom":"ASSET13","index":"0.000002663662498568"},{"denom":"ASSET14","index":"0.000008029258508615"},{"denom":"ASSET15","index":"0.000005740999854868"},{"denom":"ASSET16","index":"0.000004002452113836"},{"denom":"ASSET17","index":"0.000002842492504350"},{"denom":"ASSET18","index":"0.000001354098020432"},{"denom":"ASSET2","index":"0.000002622608139264"},{"denom":"ASSET3","index":"0.000000767159849705"},{"denom":"ASSET4","index":"0.000007220696381306"},{"denom":"ASSET5","index":"0.000000595288209907"},{"denom":"ASSET6","index":"0.000002423598872130"},{"denom":"ASSET7","index":"0.000003711940334016"},{"denom":"ASSET8","index":"0.000004843718561268"},{"denom":"ASSET9","index":"0.000002092032733005"}],"last_reward_claim_height":"92"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET9","shares":"85933735.640151469949200393","reward_history":[{"denom":"ASSET0","index":"0.000003299045378029"},{"denom":"ASSET1","index":"0.000027992490930804"},{"denom":"ASSET10","index":"0.000022352284005938"},{"denom":"ASSET11","index":"0.000027819914533732"},{"denom":"ASSET12","index":"0.000026530494002155"},{"denom":"ASSET13","index":"0.000008738242797579"},{"denom":"ASSET14","index":"0.000025532401567106"},{"denom":"ASSET15","index":"0.000020131602968729"},{"denom":"ASSET16","index":"0.000012417136212826"},{"denom":"ASSET17","index":"0.000009749421325842"},{"denom":"ASSET18","index":"0.000004027997856345"},{"denom":"ASSET2","index":"0.000008477931503293"},{"denom":"ASSET3","index":"0.000002354450357881"},{"denom":"ASSET4","index":"0.000022693933657862"},{"denom":"ASSET5","index":"0.000001834114741991"},{"denom":"ASSET6","index":"0.000007402245947993"},{"denom":"ASSET7","index":"0.000011628988518089"},{"denom":"ASSET8","index":"0.000015885667960333"},{"denom":"ASSET9","index":"0.000006742956926982"}],"last_reward_claim_height":"174"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET10","shares":"339866479.000000000000000000","reward_history":[],"last_reward_claim_height":"37"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET11","shares":"821183372.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001663945626017"},{"denom":"ASSET1","index":"0.000013874870096624"},{"denom":"ASSET10","index":"0.000009666844154779"},{"denom":"ASSET11","index":"0.000013422526194886"},{"denom":"ASSET12","index":"0.000012086742376498"},{"denom":"ASSET13","index":"0.000004159391889779"},{"denom":"ASSET14","index":"0.000012538614102973"},{"denom":"ASSET15","index":"0.000008964719539034"},{"denom":"ASSET16","index":"0.000006250183953344"},{"denom":"ASSET17","index":"0.000004438919645342"},{"denom":"ASSET18","index":"0.000002114400826704"},{"denom":"ASSET2","index":"0.000004095648229305"},{"denom":"ASSET3","index":"0.000001197908641659"},{"denom":"ASSET4","index":"0.000011275545275051"},{"denom":"ASSET5","index":"0.000000929713092403"},{"denom":"ASSET6","index":"0.000003784956906399"},{"denom":"ASSET7","index":"0.000005796423525818"},{"denom":"ASSET8","index":"0.000007563775534382"},{"denom":"ASSET9","index":"0.000003266980643136"}],"last_reward_claim_height":"71"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET15","shares":"329698619.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003157426180098"},{"denom":"ASSET1","index":"0.000026803913890418"},{"denom":"ASSET10","index":"0.000021467927303389"},{"denom":"ASSET11","index":"0.000026655124661377"},{"denom":"ASSET12","index":"0.000025453388278707"},{"denom":"ASSET13","index":"0.000008375182650914"},{"denom":"ASSET14","index":"0.000024453809207757"},{"denom":"ASSET15","index":"0.000019323681821282"},{"denom":"ASSET16","index":"0.000011885939188892"},{"denom":"ASSET17","index":"0.000009353763879690"},{"denom":"ASSET18","index":"0.000003851457527173"},{"denom":"ASSET2","index":"0.000008122633355733"},{"denom":"ASSET3","index":"0.000002252845423920"},{"denom":"ASSET4","index":"0.000021728796023940"},{"denom":"ASSET5","index":"0.000001755342604855"},{"denom":"ASSET6","index":"0.000007082922688985"},{"denom":"ASSET7","index":"0.000011133765978354"},{"denom":"ASSET8","index":"0.000015225414484063"},{"denom":"ASSET9","index":"0.000006459804222065"}],"last_reward_claim_height":"125"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET18","shares":"93822386.000000019146311000","reward_history":[{"denom":"ASSET0","index":"0.000003157426180098"},{"denom":"ASSET1","index":"0.000026803913890418"},{"denom":"ASSET10","index":"0.000021467927303389"},{"denom":"ASSET11","index":"0.000026655124661377"},{"denom":"ASSET12","index":"0.000025453388278707"},{"denom":"ASSET13","index":"0.000008375182650914"},{"denom":"ASSET14","index":"0.000024453809207757"},{"denom":"ASSET15","index":"0.000019323681821282"},{"denom":"ASSET16","index":"0.000011885939188892"},{"denom":"ASSET17","index":"0.000009353763879690"},{"denom":"ASSET18","index":"0.000003851457527173"},{"denom":"ASSET2","index":"0.000008122633355733"},{"denom":"ASSET3","index":"0.000002252845423920"},{"denom":"ASSET4","index":"0.000021728796023940"},{"denom":"ASSET5","index":"0.000001755342604855"},{"denom":"ASSET6","index":"0.000007082922688985"},{"denom":"ASSET7","index":"0.000011133765978354"},{"denom":"ASSET8","index":"0.000015225414484063"},{"denom":"ASSET9","index":"0.000006459804222065"}],"last_reward_claim_height":"175"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET1","shares":"574841487.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001578706846766"},{"denom":"ASSET1","index":"0.000013164667632738"},{"denom":"ASSET10","index":"0.000009171819989970"},{"denom":"ASSET11","index":"0.000012734981690366"},{"denom":"ASSET12","index":"0.000011467468005207"},{"denom":"ASSET13","index":"0.000003946168668528"},{"denom":"ASSET14","index":"0.000011895957050803"},{"denom":"ASSET15","index":"0.000008505148486066"},{"denom":"ASSET16","index":"0.000005930623522158"},{"denom":"ASSET17","index":"0.000004211879752669"},{"denom":"ASSET18","index":"0.000002005998995588"},{"denom":"ASSET2","index":"0.000003886323829757"},{"denom":"ASSET3","index":"0.000001135855039864"},{"denom":"ASSET4","index":"0.000010697863378618"},{"denom":"ASSET5","index":"0.000000882112923477"},{"denom":"ASSET6","index":"0.000003590690326231"},{"denom":"ASSET7","index":"0.000005499740683011"},{"denom":"ASSET8","index":"0.000007176593065360"},{"denom":"ASSET9","index":"0.000003098765751537"}],"last_reward_claim_height":"121"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET18","shares":"157709.000000000388997596","reward_history":[],"last_reward_claim_height":"51"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET0","shares":"811294977.305616335753721264","reward_history":[{"denom":"ASSET0","index":"0.000005002676183029"},{"denom":"ASSET1","index":"0.000040970324905648"},{"denom":"ASSET10","index":"0.000035351419874368"},{"denom":"ASSET11","index":"0.000042515341359955"},{"denom":"ASSET12","index":"0.000040437095263911"},{"denom":"ASSET13","index":"0.000013704097837157"},{"denom":"ASSET14","index":"0.000039232715985481"},{"denom":"ASSET15","index":"0.000031748860528974"},{"denom":"ASSET16","index":"0.000018183406112225"},{"denom":"ASSET17","index":"0.000014691260749644"},{"denom":"ASSET18","index":"0.000006116450843117"},{"denom":"ASSET2","index":"0.000012362846917674"},{"denom":"ASSET3","index":"0.000003554507989012"},{"denom":"ASSET4","index":"0.000033577944179880"},{"denom":"ASSET5","index":"0.000002789612099891"},{"denom":"ASSET6","index":"0.000011388824893905"},{"denom":"ASSET7","index":"0.000017589578899471"},{"denom":"ASSET8","index":"0.000025277922472838"},{"denom":"ASSET9","index":"0.000010152860868192"}],"last_reward_claim_height":"197"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET3","shares":"867674258.000000207527523084","reward_history":[{"denom":"ASSET0","index":"0.000001736464555496"},{"denom":"ASSET1","index":"0.000014486324003877"},{"denom":"ASSET10","index":"0.000010092542477093"},{"denom":"ASSET11","index":"0.000014014496766071"},{"denom":"ASSET12","index":"0.000012620063107870"},{"denom":"ASSET13","index":"0.000004342915393341"},{"denom":"ASSET14","index":"0.000013091890345676"},{"denom":"ASSET15","index":"0.000009359368553661"},{"denom":"ASSET16","index":"0.000006524897117620"},{"denom":"ASSET17","index":"0.000004634080157191"},{"denom":"ASSET18","index":"0.000002206537788701"},{"denom":"ASSET2","index":"0.000004276263218483"},{"denom":"ASSET3","index":"0.000001250605280877"},{"denom":"ASSET4","index":"0.000011772878885340"},{"denom":"ASSET5","index":"0.000000969964544635"},{"denom":"ASSET6","index":"0.000003951772367204"},{"denom":"ASSET7","index":"0.000006051315875212"},{"denom":"ASSET8","index":"0.000007896528716001"},{"denom":"ASSET9","index":"0.000003409784945337"}],"last_reward_claim_height":"116"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET4","shares":"1154382483.435188471282328770","reward_history":[{"denom":"ASSET0","index":"0.000003356675502673"},{"denom":"ASSET1","index":"0.000028477076245214"},{"denom":"ASSET10","index":"0.000022663760086849"},{"denom":"ASSET11","index":"0.000028282539274294"},{"denom":"ASSET12","index":"0.000026934248109484"},{"denom":"ASSET13","index":"0.000008880550781135"},{"denom":"ASSET14","index":"0.000025969128454053"},{"denom":"ASSET15","index":"0.000020425731449718"},{"denom":"ASSET16","index":"0.000012636600959200"},{"denom":"ASSET17","index":"0.000009896936242996"},{"denom":"ASSET18","index":"0.000004102733083140"},{"denom":"ASSET2","index":"0.000008619316582261"},{"denom":"ASSET3","index":"0.000002396767404444"},{"denom":"ASSET4","index":"0.000023088672429632"},{"denom":"ASSET5","index":"0.000001866260713425"},{"denom":"ASSET6","index":"0.000007536521735823"},{"denom":"ASSET7","index":"0.000011831316132227"},{"denom":"ASSET8","index":"0.000016143846449802"},{"denom":"ASSET9","index":"0.000006854365607618"}],"last_reward_claim_height":"170"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET15","shares":"232119406.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001736464555496"},{"denom":"ASSET1","index":"0.000014486324003877"},{"denom":"ASSET10","index":"0.000010092542477093"},{"denom":"ASSET11","index":"0.000014014496766071"},{"denom":"ASSET12","index":"0.000012620063107870"},{"denom":"ASSET13","index":"0.000004342915393341"},{"denom":"ASSET14","index":"0.000013091890345676"},{"denom":"ASSET15","index":"0.000009359368553661"},{"denom":"ASSET16","index":"0.000006524897117620"},{"denom":"ASSET17","index":"0.000004634080157191"},{"denom":"ASSET18","index":"0.000002206537788701"},{"denom":"ASSET2","index":"0.000004276263218483"},{"denom":"ASSET3","index":"0.000001250605280877"},{"denom":"ASSET4","index":"0.000011772878885340"},{"denom":"ASSET5","index":"0.000000969964544635"},{"denom":"ASSET6","index":"0.000003951772367204"},{"denom":"ASSET7","index":"0.000006051315875212"},{"denom":"ASSET8","index":"0.000007896528716001"},{"denom":"ASSET9","index":"0.000003409784945337"}],"last_reward_claim_height":"69"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET11","shares":"747145145.727649989294980788","reward_history":[{"denom":"ASSET0","index":"0.000002962853679956"},{"denom":"ASSET1","index":"0.000025162993314326"},{"denom":"ASSET10","index":"0.000020199688926412"},{"denom":"ASSET11","index":"0.000025035647772320"},{"denom":"ASSET12","index":"0.000023929456511577"},{"denom":"ASSET13","index":"0.000007867725037604"},{"denom":"ASSET14","index":"0.000022960507028012"},{"denom":"ASSET15","index":"0.000018173489333858"},{"denom":"ASSET16","index":"0.000011155286879957"},{"denom":"ASSET17","index":"0.000008793607250882"},{"denom":"ASSET18","index":"0.000003611579051495"},{"denom":"ASSET2","index":"0.000007628670547867"},{"denom":"ASSET3","index":"0.000002114031306235"},{"denom":"ASSET4","index":"0.000020398130246320"},{"denom":"ASSET5","index":"0.000001647096325587"},{"denom":"ASSET6","index":"0.000006645213242757"},{"denom":"ASSET7","index":"0.000010450616802650"},{"denom":"ASSET8","index":"0.000014303332598966"},{"denom":"ASSET9","index":"0.000006067112886031"}],"last_reward_claim_height":"159"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET16","shares":"45595563.792218360726290333","reward_history":[{"denom":"ASSET0","index":"0.000002962853679956"},{"denom":"ASSET1","index":"0.000025162993314326"},{"denom":"ASSET10","index":"0.000020199688926412"},{"denom":"ASSET11","index":"0.000025035647772320"},{"denom":"ASSET12","index":"0.000023929456511577"},{"denom":"ASSET13","index":"0.000007867725037604"},{"denom":"ASSET14","index":"0.000022960507028012"},{"denom":"ASSET15","index":"0.000018173489333858"},{"denom":"ASSET16","index":"0.000011155286879957"},{"denom":"ASSET17","index":"0.000008793607250882"},{"denom":"ASSET18","index":"0.000003611579051495"},{"denom":"ASSET2","index":"0.000007628670547867"},{"denom":"ASSET3","index":"0.000002114031306235"},{"denom":"ASSET4","index":"0.000020398130246320"},{"denom":"ASSET5","index":"0.000001647096325587"},{"denom":"ASSET6","index":"0.000006645213242757"},{"denom":"ASSET7","index":"0.000010450616802650"},{"denom":"ASSET8","index":"0.000014303332598966"},{"denom":"ASSET9","index":"0.000006067112886031"}],"last_reward_claim_height":"178"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET0","shares":"663191373.935557556135198630","reward_history":[{"denom":"ASSET0","index":"0.000003135234009226"},{"denom":"ASSET1","index":"0.000026602125077525"},{"denom":"ASSET10","index":"0.000021213712135644"},{"denom":"ASSET11","index":"0.000026430841190504"},{"denom":"ASSET12","index":"0.000025191219856579"},{"denom":"ASSET13","index":"0.000008300995957475"},{"denom":"ASSET14","index":"0.000024262534835813"},{"denom":"ASSET15","index":"0.000019110376679732"},{"denom":"ASSET16","index":"0.000011801461546978"},{"denom":"ASSET17","index":"0.000009257538829689"},{"denom":"ASSET18","index":"0.000003829421505073"},{"denom":"ASSET2","index":"0.000008055136326188"},{"denom":"ASSET3","index":"0.000002237228869924"},{"denom":"ASSET4","index":"0.000021566736915931"},{"denom":"ASSET5","index":"0.000001743257901616"},{"denom":"ASSET6","index":"0.000007036288319926"},{"denom":"ASSET7","index":"0.000011051703047857"},{"denom":"ASSET8","index":"0.000015089589803941"},{"denom":"ASSET9","index":"0.000006406386950018"}],"last_reward_claim_height":"132"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET6","shares":"508997058.892318115840890432","reward_history":[{"denom":"ASSET0","index":"0.000003135234009226"},{"denom":"ASSET1","index":"0.000026602125077525"},{"denom":"ASSET10","index":"0.000021213712135644"},{"denom":"ASSET11","index":"0.000026430841190504"},{"denom":"ASSET12","index":"0.000025191219856579"},{"denom":"ASSET13","index":"0.000008300995957475"},{"denom":"ASSET14","index":"0.000024262534835813"},{"denom":"ASSET15","index":"0.000019110376679732"},{"denom":"ASSET16","index":"0.000011801461546978"},{"denom":"ASSET17","index":"0.000009257538829689"},{"denom":"ASSET18","index":"0.000003829421505073"},{"denom":"ASSET2","index":"0.000008055136326188"},{"denom":"ASSET3","index":"0.000002237228869924"},{"denom":"ASSET4","index":"0.000021566736915931"},{"denom":"ASSET5","index":"0.000001743257901616"},{"denom":"ASSET6","index":"0.000007036288319926"},{"denom":"ASSET7","index":"0.000011051703047857"},{"denom":"ASSET8","index":"0.000015089589803941"},{"denom":"ASSET9","index":"0.000006406386950018"}],"last_reward_claim_height":"178"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET11","shares":"874166411.999987855206038084","reward_history":[{"denom":"ASSET0","index":"0.000001597673370668"},{"denom":"ASSET1","index":"0.000013327099930964"},{"denom":"ASSET10","index":"0.000009285285696821"},{"denom":"ASSET11","index":"0.000012892979142852"},{"denom":"ASSET12","index":"0.000011609669101507"},{"denom":"ASSET13","index":"0.000003995544306884"},{"denom":"ASSET14","index":"0.000012043789889618"},{"denom":"ASSET15","index":"0.000008610289110917"},{"denom":"ASSET16","index":"0.000006002842621820"},{"denom":"ASSET17","index":"0.000004263637708946"},{"denom":"ASSET18","index":"0.000002030433278566"},{"denom":"ASSET2","index":"0.000003934304697275"},{"denom":"ASSET3","index":"0.000001149943780421"},{"denom":"ASSET4","index":"0.000010829884739162"},{"denom":"ASSET5","index":"0.000000892737420067"},{"denom":"ASSET6","index":"0.000003634911050302"},{"denom":"ASSET7","index":"0.000005567360953495"},{"denom":"ASSET8","index":"0.000007264378579749"},{"denom":"ASSET9","index":"0.000003138189772368"}],"last_reward_claim_height":"94"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET17","shares":"353153385.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001597673370668"},{"denom":"ASSET1","index":"0.000013327099930964"},{"denom":"ASSET10","index":"0.000009285285696821"},{"denom":"ASSET11","index":"0.000012892979142852"},{"denom":"ASSET12","index":"0.000011609669101507"},{"denom":"ASSET13","index":"0.000003995544306884"},{"denom":"ASSET14","index":"0.000012043789889618"},{"denom":"ASSET15","index":"0.000008610289110917"},{"denom":"ASSET16","index":"0.000006002842621820"},{"denom":"ASSET17","index":"0.000004263637708946"},{"denom":"ASSET18","index":"0.000002030433278566"},{"denom":"ASSET2","index":"0.000003934304697275"},{"denom":"ASSET3","index":"0.000001149943780421"},{"denom":"ASSET4","index":"0.000010829884739162"},{"denom":"ASSET5","index":"0.000000892737420067"},{"denom":"ASSET6","index":"0.000003634911050302"},{"denom":"ASSET7","index":"0.000005567360953495"},{"denom":"ASSET8","index":"0.000007264378579749"},{"denom":"ASSET9","index":"0.000003138189772368"}],"last_reward_claim_height":"78"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET1","shares":"176790399.477198850478835604","reward_history":[{"denom":"ASSET0","index":"0.000004860013838161"},{"denom":"ASSET1","index":"0.000039829440775367"},{"denom":"ASSET10","index":"0.000034332188571649"},{"denom":"ASSET11","index":"0.000041295956899181"},{"denom":"ASSET12","index":"0.000039293307297353"},{"denom":"ASSET13","index":"0.000013304573466834"},{"denom":"ASSET14","index":"0.000038098524560949"},{"denom":"ASSET15","index":"0.000030831414335702"},{"denom":"ASSET16","index":"0.000017675343678269"},{"denom":"ASSET17","index":"0.000014280507444290"},{"denom":"ASSET18","index":"0.000005939808720502"},{"denom":"ASSET2","index":"0.000012021426052396"},{"denom":"ASSET3","index":"0.000003452613307807"},{"denom":"ASSET4","index":"0.000032633729651502"},{"denom":"ASSET5","index":"0.000002709632799469"},{"denom":"ASSET6","index":"0.000011056293160572"},{"denom":"ASSET7","index":"0.000017086435014568"},{"denom":"ASSET8","index":"0.000024533267776117"},{"denom":"ASSET9","index":"0.000009866489479987"}],"last_reward_claim_height":"195"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET17","shares":"621558204.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002930820438736"},{"denom":"ASSET1","index":"0.000024889799880283"},{"denom":"ASSET10","index":"0.000019988623694797"},{"denom":"ASSET11","index":"0.000024765615752571"},{"denom":"ASSET12","index":"0.000023676022623299"},{"denom":"ASSET13","index":"0.000007783195940338"},{"denom":"ASSET14","index":"0.000022712072914709"},{"denom":"ASSET15","index":"0.000017982209004670"},{"denom":"ASSET16","index":"0.000011033267632466"},{"denom":"ASSET17","index":"0.000008700651286884"},{"denom":"ASSET18","index":"0.000003571624768330"},{"denom":"ASSET2","index":"0.000007546215495169"},{"denom":"ASSET3","index":"0.000002090977414753"},{"denom":"ASSET4","index":"0.000020176663420937"},{"denom":"ASSET5","index":"0.000001628342560149"},{"denom":"ASSET6","index":"0.000006572371850885"},{"denom":"ASSET7","index":"0.000010337273058537"},{"denom":"ASSET8","index":"0.000014149515747938"},{"denom":"ASSET9","index":"0.000006000707920121"}],"last_reward_claim_height":"153"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET15","shares":"773410183.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003313075721980"},{"denom":"ASSET1","index":"0.000028138029356789"},{"denom":"ASSET10","index":"0.000022370607880245"},{"denom":"ASSET11","index":"0.000027937207217164"},{"denom":"ASSET12","index":"0.000026595598409551"},{"denom":"ASSET13","index":"0.000008769097729958"},{"denom":"ASSET14","index":"0.000025655242037122"},{"denom":"ASSET15","index":"0.000020162686714325"},{"denom":"ASSET16","index":"0.000012488922131836"},{"denom":"ASSET17","index":"0.000009772018779266"},{"denom":"ASSET18","index":"0.000004056016110298"},{"denom":"ASSET2","index":"0.000008514325121927"},{"denom":"ASSET3","index":"0.000002365037757716"},{"denom":"ASSET4","index":"0.000022813272666626"},{"denom":"ASSET5","index":"0.000001844445619129"},{"denom":"ASSET6","index":"0.000007446834645040"},{"denom":"ASSET7","index":"0.000011690909413493"},{"denom":"ASSET8","index":"0.000015945057917181"},{"denom":"ASSET9","index":"0.000006769080892636"}],"last_reward_claim_height":"157"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET1","shares":"620751412.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003026822568793"},{"denom":"ASSET1","index":"0.000025710421285725"},{"denom":"ASSET10","index":"0.000020652297735472"},{"denom":"ASSET11","index":"0.000025583400849235"},{"denom":"ASSET12","index":"0.000024460820755928"},{"denom":"ASSET13","index":"0.000008041083722059"},{"denom":"ASSET14","index":"0.000023461074878675"},{"denom":"ASSET15","index":"0.000018578170233019"},{"denom":"ASSET16","index":"0.000011396689804799"},{"denom":"ASSET17","index":"0.000008988134494295"},{"denom":"ASSET18","index":"0.000003688816665807"},{"denom":"ASSET2","index":"0.000007796110853756"},{"denom":"ASSET3","index":"0.000002159003644915"},{"denom":"ASSET4","index":"0.000020841789260406"},{"denom":"ASSET5","index":"0.000001683251281734"},{"denom":"ASSET6","index":"0.000006788484398340"},{"denom":"ASSET7","index":"0.000010677121165375"},{"denom":"ASSET8","index":"0.000014616905179383"},{"denom":"ASSET9","index":"0.000006199084273401"}],"last_reward_claim_height":"134"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET17","shares":"802070825.000000000000000000","reward_history":[],"last_reward_claim_height":"24"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET3","shares":"905770888.000000000000000000","reward_history":[],"last_reward_claim_height":"15"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET9","shares":"281186484.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001547699786520"},{"denom":"ASSET1","index":"0.000012908880828127"},{"denom":"ASSET10","index":"0.000008993933542043"},{"denom":"ASSET11","index":"0.000012488059147042"},{"denom":"ASSET12","index":"0.000011245681057538"},{"denom":"ASSET13","index":"0.000003869751640144"},{"denom":"ASSET14","index":"0.000011665498390936"},{"denom":"ASSET15","index":"0.000008340103197445"},{"denom":"ASSET16","index":"0.000005815173110936"},{"denom":"ASSET17","index":"0.000004129877691221"},{"denom":"ASSET18","index":"0.000001966512772230"},{"denom":"ASSET2","index":"0.000003810495126579"},{"denom":"ASSET3","index":"0.000001114825933185"},{"denom":"ASSET4","index":"0.000010490411596498"},{"denom":"ASSET5","index":"0.000000864743358984"},{"denom":"ASSET6","index":"0.000003521242992563"},{"denom":"ASSET7","index":"0.000005392342734476"},{"denom":"ASSET8","index":"0.000007036459899001"},{"denom":"ASSET9","index":"0.000003039156102537"}],"last_reward_claim_height":"74"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET12","shares":"32641974.031294118132433715","reward_history":[{"denom":"ASSET0","index":"0.000001547699786520"},{"denom":"ASSET1","index":"0.000012908880828127"},{"denom":"ASSET10","index":"0.000008993933542043"},{"denom":"ASSET11","index":"0.000012488059147042"},{"denom":"ASSET12","index":"0.000011245681057538"},{"denom":"ASSET13","index":"0.000003869751640144"},{"denom":"ASSET14","index":"0.000011665498390936"},{"denom":"ASSET15","index":"0.000008340103197445"},{"denom":"ASSET16","index":"0.000005815173110936"},{"denom":"ASSET17","index":"0.000004129877691221"},{"denom":"ASSET18","index":"0.000001966512772230"},{"denom":"ASSET2","index":"0.000003810495126579"},{"denom":"ASSET3","index":"0.000001114825933185"},{"denom":"ASSET4","index":"0.000010490411596498"},{"denom":"ASSET5","index":"0.000000864743358984"},{"denom":"ASSET6","index":"0.000003521242992563"},{"denom":"ASSET7","index":"0.000005392342734476"},{"denom":"ASSET8","index":"0.000007036459899001"},{"denom":"ASSET9","index":"0.000003039156102537"}],"last_reward_claim_height":"106"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET1","shares":"1212216298.999999993674443424","reward_history":[],"last_reward_claim_height":"52"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET2","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002944371933765"},{"denom":"ASSET1","index":"0.000024968433937291"},{"denom":"ASSET10","index":"0.000019851368221906"},{"denom":"ASSET11","index":"0.000024791952485266"},{"denom":"ASSET12","index":"0.000023600048189968"},{"denom":"ASSET13","index":"0.000007784111470281"},{"denom":"ASSET14","index":"0.000022766914870589"},{"denom":"ASSET15","index":"0.000017894900322998"},{"denom":"ASSET16","index":"0.000011081662183182"},{"denom":"ASSET17","index":"0.000008672317440622"},{"denom":"ASSET18","index":"0.000003599691097086"},{"denom":"ASSET2","index":"0.000007555380586873"},{"denom":"ASSET3","index":"0.000002101847815188"},{"denom":"ASSET4","index":"0.000020244169178497"},{"denom":"ASSET5","index":"0.000001637098640985"},{"denom":"ASSET6","index":"0.000006609166185649"},{"denom":"ASSET7","index":"0.000010374399402552"},{"denom":"ASSET8","index":"0.000014150620453773"},{"denom":"ASSET9","index":"0.000006009906313007"}],"last_reward_claim_height":"139"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET4","shares":"984761559.189202077890329292","reward_history":[{"denom":"ASSET0","index":"0.000004555194098436"},{"denom":"ASSET1","index":"0.000037194020995645"},{"denom":"ASSET10","index":"0.000032267252901811"},{"denom":"ASSET11","index":"0.000038719949684547"},{"denom":"ASSET12","index":"0.000036813725422538"},{"denom":"ASSET13","index":"0.000012504453081971"},{"denom":"ASSET14","index":"0.000035746405125898"},{"denom":"ASSET15","index":"0.000028975554868050"},{"denom":"ASSET16","index":"0.000016509698953174"},{"denom":"ASSET17","index":"0.000013364006755943"},{"denom":"ASSET18","index":"0.000005570240358371"},{"denom":"ASSET2","index":"0.000011218734016892"},{"denom":"ASSET3","index":"0.000003234690053143"},{"denom":"ASSET4","index":"0.000030508812947759"},{"denom":"ASSET5","index":"0.000002540722507986"},{"denom":"ASSET6","index":"0.000010378847790634"},{"denom":"ASSET7","index":"0.000016009295815118"},{"denom":"ASSET8","index":"0.000023089143199744"},{"denom":"ASSET9","index":"0.000009237844210338"}],"last_reward_claim_height":"193"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET5","shares":"818703885.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002944371933765"},{"denom":"ASSET1","index":"0.000024968433937291"},{"denom":"ASSET10","index":"0.000019851368221906"},{"denom":"ASSET11","index":"0.000024791952485266"},{"denom":"ASSET12","index":"0.000023600048189968"},{"denom":"ASSET13","index":"0.000007784111470281"},{"denom":"ASSET14","index":"0.000022766914870589"},{"denom":"ASSET15","index":"0.000017894900322998"},{"denom":"ASSET16","index":"0.000011081662183182"},{"denom":"ASSET17","index":"0.000008672317440622"},{"denom":"ASSET18","index":"0.000003599691097086"},{"denom":"ASSET2","index":"0.000007555380586873"},{"denom":"ASSET3","index":"0.000002101847815188"},{"denom":"ASSET4","index":"0.000020244169178497"},{"denom":"ASSET5","index":"0.000001637098640985"},{"denom":"ASSET6","index":"0.000006609166185649"},{"denom":"ASSET7","index":"0.000010374399402552"},{"denom":"ASSET8","index":"0.000014150620453773"},{"denom":"ASSET9","index":"0.000006009906313007"}],"last_reward_claim_height":"155"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET7","shares":"663117188.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004555194098436"},{"denom":"ASSET1","index":"0.000037194020995645"},{"denom":"ASSET10","index":"0.000032267252901811"},{"denom":"ASSET11","index":"0.000038719949684547"},{"denom":"ASSET12","index":"0.000036813725422538"},{"denom":"ASSET13","index":"0.000012504453081971"},{"denom":"ASSET14","index":"0.000035746405125898"},{"denom":"ASSET15","index":"0.000028975554868050"},{"denom":"ASSET16","index":"0.000016509698953174"},{"denom":"ASSET17","index":"0.000013364006755943"},{"denom":"ASSET18","index":"0.000005570240358371"},{"denom":"ASSET2","index":"0.000011218734016892"},{"denom":"ASSET3","index":"0.000003234690053143"},{"denom":"ASSET4","index":"0.000030508812947759"},{"denom":"ASSET5","index":"0.000002540722507986"},{"denom":"ASSET6","index":"0.000010378847790634"},{"denom":"ASSET7","index":"0.000016009295815118"},{"denom":"ASSET8","index":"0.000023089143199744"},{"denom":"ASSET9","index":"0.000009237844210338"}],"last_reward_claim_height":"188"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET9","shares":"262932592.000000014987157744","reward_history":[{"denom":"ASSET0","index":"0.000001535139489204"},{"denom":"ASSET1","index":"0.000012800845981431"},{"denom":"ASSET10","index":"0.000008918122145344"},{"denom":"ASSET11","index":"0.000012383184798277"},{"denom":"ASSET12","index":"0.000011151318949088"},{"denom":"ASSET13","index":"0.000003837555421617"},{"denom":"ASSET14","index":"0.000011567806926671"},{"denom":"ASSET15","index":"0.000008270512670342"},{"denom":"ASSET16","index":"0.000005766305379776"},{"denom":"ASSET17","index":"0.000004095074044376"},{"denom":"ASSET18","index":"0.000001950454261216"},{"denom":"ASSET2","index":"0.000003778308540299"},{"denom":"ASSET3","index":"0.000001105159647558"},{"denom":"ASSET4","index":"0.000010402813795010"},{"denom":"ASSET5","index":"0.000000857613272150"},{"denom":"ASSET6","index":"0.000003491459778273"},{"denom":"ASSET7","index":"0.000005347470991052"},{"denom":"ASSET8","index":"0.000006978226734264"},{"denom":"ASSET9","index":"0.000003013965111016"}],"last_reward_claim_height":"117"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET3","shares":"128171479.288256812962495525","reward_history":[{"denom":"ASSET0","index":"0.000002938303361264"},{"denom":"ASSET1","index":"0.000024939884544734"},{"denom":"ASSET10","index":"0.000019970621943114"},{"denom":"ASSET11","index":"0.000024800280810198"},{"denom":"ASSET12","index":"0.000023679745396670"},{"denom":"ASSET13","index":"0.000007792253675830"},{"denom":"ASSET14","index":"0.000022752532795075"},{"denom":"ASSET15","index":"0.000017976341528508"},{"denom":"ASSET16","index":"0.000011059313296089"},{"denom":"ASSET17","index":"0.000008702160495382"},{"denom":"ASSET18","index":"0.000003584018468858"},{"denom":"ASSET2","index":"0.000007557839698908"},{"denom":"ASSET3","index":"0.000002096442663552"},{"denom":"ASSET4","index":"0.000020217858094708"},{"denom":"ASSET5","index":"0.000001633684136995"},{"denom":"ASSET6","index":"0.000006589976909255"},{"denom":"ASSET7","index":"0.000010359339015905"},{"denom":"ASSET8","index":"0.000014165755580726"},{"denom":"ASSET9","index":"0.000006010291774725"}],"last_reward_claim_height":"152"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET10","shares":"770179940.466471072022307197","reward_history":[{"denom":"ASSET0","index":"0.000003329715418659"},{"denom":"ASSET1","index":"0.000028238028843607"},{"denom":"ASSET10","index":"0.000022458342297172"},{"denom":"ASSET11","index":"0.000028040237741643"},{"denom":"ASSET12","index":"0.000026695793846360"},{"denom":"ASSET13","index":"0.000008804253880653"},{"denom":"ASSET14","index":"0.000025748953032298"},{"denom":"ASSET15","index":"0.000020243324641083"},{"denom":"ASSET16","index":"0.000012532507824147"},{"denom":"ASSET17","index":"0.000009809802042254"},{"denom":"ASSET18","index":"0.000004070975493464"},{"denom":"ASSET2","index":"0.000008545109234155"},{"denom":"ASSET3","index":"0.000002377197518329"},{"denom":"ASSET4","index":"0.000022894451839245"},{"denom":"ASSET5","index":"0.000001851122407848"},{"denom":"ASSET6","index":"0.000007473999475476"},{"denom":"ASSET7","index":"0.000011732969702935"},{"denom":"ASSET8","index":"0.000016005536556726"},{"denom":"ASSET9","index":"0.000006797137295338"}],"last_reward_claim_height":"143"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET4","shares":"683807436.836879697752941768","reward_history":[{"denom":"ASSET0","index":"0.000003269082759145"},{"denom":"ASSET1","index":"0.000027736662456421"},{"denom":"ASSET10","index":"0.000022145815740722"},{"denom":"ASSET11","index":"0.000027564157079872"},{"denom":"ASSET12","index":"0.000026286254396013"},{"denom":"ASSET13","index":"0.000008658548128401"},{"denom":"ASSET14","index":"0.000025298253418871"},{"denom":"ASSET15","index":"0.000019946084058089"},{"denom":"ASSET16","index":"0.000012303266096103"},{"denom":"ASSET17","index":"0.000009659898104260"},{"denom":"ASSET18","index":"0.000003991565584036"},{"denom":"ASSET2","index":"0.000008399501371576"},{"denom":"ASSET3","index":"0.000002333103515211"},{"denom":"ASSET4","index":"0.000022486071398850"},{"denom":"ASSET5","index":"0.000001817550334619"},{"denom":"ASSET6","index":"0.000007334517845971"},{"denom":"ASSET7","index":"0.000011522603065826"},{"denom":"ASSET8","index":"0.000015739883934035"},{"denom":"ASSET9","index":"0.000006680430297789"}],"last_reward_claim_height":"155"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET17","shares":"15371168.435834278772412244","reward_history":[{"denom":"ASSET0","index":"0.000004931397933984"},{"denom":"ASSET1","index":"0.000040352271951275"},{"denom":"ASSET10","index":"0.000034957777134329"},{"denom":"ASSET11","index":"0.000041936330660967"},{"denom":"ASSET12","index":"0.000039921322949190"},{"denom":"ASSET13","index":"0.000013529253328858"},{"denom":"ASSET14","index":"0.000038691809136583"},{"denom":"ASSET15","index":"0.000031380047826250"},{"denom":"ASSET16","index":"0.000017904400359919"},{"denom":"ASSET17","index":"0.000014501150519904"},{"denom":"ASSET18","index":"0.000006024985847518"},{"denom":"ASSET2","index":"0.000012179668126361"},{"denom":"ASSET3","index":"0.000003502182720384"},{"denom":"ASSET4","index":"0.000033078078225160"},{"denom":"ASSET5","index":"0.000002749829149896"},{"denom":"ASSET6","index":"0.000011224248960260"},{"denom":"ASSET7","index":"0.000017336975491688"},{"denom":"ASSET8","index":"0.000024963318026039"},{"denom":"ASSET9","index":"0.000010011343908228"}],"last_reward_claim_height":"189"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET18","shares":"640355319.000000000000000000","reward_history":[],"last_reward_claim_height":"51"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET10","shares":"308904235.000000000000000000","reward_history":[],"last_reward_claim_height":"38"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET13","shares":"511215577.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001707974867576"},{"denom":"ASSET1","index":"0.000014238090744503"},{"denom":"ASSET10","index":"0.000009920037235236"},{"denom":"ASSET11","index":"0.000013773690453356"},{"denom":"ASSET12","index":"0.000012403461252069"},{"denom":"ASSET13","index":"0.000004268385028930"},{"denom":"ASSET14","index":"0.000012866619831208"},{"denom":"ASSET15","index":"0.000009199844270355"},{"denom":"ASSET16","index":"0.000006414063379473"},{"denom":"ASSET17","index":"0.000004555220502875"},{"denom":"ASSET18","index":"0.000002169891734707"},{"denom":"ASSET2","index":"0.000004203195148489"},{"denom":"ASSET3","index":"0.000001229294888332"},{"denom":"ASSET4","index":"0.000011570893350426"},{"denom":"ASSET5","index":"0.000000954255678468"},{"denom":"ASSET6","index":"0.000003884075162326"},{"denom":"ASSET7","index":"0.000005948421376317"},{"denom":"ASSET8","index":"0.000007761941764609"},{"denom":"ASSET9","index":"0.000003352622422724"}],"last_reward_claim_height":"119"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET13","shares":"663015212.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003478645419875"},{"denom":"ASSET1","index":"0.000029510728520321"},{"denom":"ASSET10","index":"0.000023521700007579"},{"denom":"ASSET11","index":"0.000029317721838376"},{"denom":"ASSET12","index":"0.000027938200533330"},{"denom":"ASSET13","index":"0.000009206643656085"},{"denom":"ASSET14","index":"0.000026913511393693"},{"denom":"ASSET15","index":"0.000021192735957156"},{"denom":"ASSET16","index":"0.000013092928863665"},{"denom":"ASSET17","index":"0.000010265835619821"},{"denom":"ASSET18","index":"0.000004249633310572"},{"denom":"ASSET2","index":"0.000008933634051769"},{"denom":"ASSET3","index":"0.000002482776919113"},{"denom":"ASSET4","index":"0.000023925662277258"},{"denom":"ASSET5","index":"0.000001933519521756"},{"denom":"ASSET6","index":"0.000007806757132876"},{"denom":"ASSET7","index":"0.000012260200744601"},{"denom":"ASSET8","index":"0.000016737737824425"},{"denom":"ASSET9","index":"0.000007106044722519"}],"last_reward_claim_height":"153"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET17","shares":"337728645.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003478645419875"},{"denom":"ASSET1","index":"0.000029510728520321"},{"denom":"ASSET10","index":"0.000023521700007579"},{"denom":"ASSET11","index":"0.000029317721838376"},{"denom":"ASSET12","index":"0.000027938200533330"},{"denom":"ASSET13","index":"0.000009206643656085"},{"denom":"ASSET14","index":"0.000026913511393693"},{"denom":"ASSET15","index":"0.000021192735957156"},{"denom":"ASSET16","index":"0.000013092928863665"},{"denom":"ASSET17","index":"0.000010265835619821"},{"denom":"ASSET18","index":"0.000004249633310572"},{"denom":"ASSET2","index":"0.000008933634051769"},{"denom":"ASSET3","index":"0.000002482776919113"},{"denom":"ASSET4","index":"0.000023925662277258"},{"denom":"ASSET5","index":"0.000001933519521756"},{"denom":"ASSET6","index":"0.000007806757132876"},{"denom":"ASSET7","index":"0.000012260200744601"},{"denom":"ASSET8","index":"0.000016737737824425"},{"denom":"ASSET9","index":"0.000007106044722519"}],"last_reward_claim_height":"145"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET6","shares":"938195575.115649589125519993","reward_history":[{"denom":"ASSET0","index":"0.000002895048613815"},{"denom":"ASSET1","index":"0.000024589366099895"},{"denom":"ASSET10","index":"0.000019676065498265"},{"denom":"ASSET11","index":"0.000024447379266412"},{"denom":"ASSET12","index":"0.000023337478265694"},{"denom":"ASSET13","index":"0.000007679998629802"},{"denom":"ASSET14","index":"0.000022431328797509"},{"denom":"ASSET15","index":"0.000017714358679290"},{"denom":"ASSET16","index":"0.000010904445776568"},{"denom":"ASSET17","index":"0.000008574179211920"},{"denom":"ASSET18","index":"0.000003534399202209"},{"denom":"ASSET2","index":"0.000007450371795821"},{"denom":"ASSET3","index":"0.000002066219984895"},{"denom":"ASSET4","index":"0.000019933989143940"},{"denom":"ASSET5","index":"0.000001610899827710"},{"denom":"ASSET6","index":"0.000006497050827728"},{"denom":"ASSET7","index":"0.000010213894093182"},{"denom":"ASSET8","index":"0.000013962110633776"},{"denom":"ASSET9","index":"0.000005925048173997"}],"last_reward_claim_height":"165"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET7","shares":"256468836.634235546320675676","reward_history":[{"denom":"ASSET0","index":"0.000002895048613815"},{"denom":"ASSET1","index":"0.000024589366099895"},{"denom":"ASSET10","index":"0.000019676065498265"},{"denom":"ASSET11","index":"0.000024447379266412"},{"denom":"ASSET12","index":"0.000023337478265694"},{"denom":"ASSET13","index":"0.000007679998629802"},{"denom":"ASSET14","index":"0.000022431328797509"},{"denom":"ASSET15","index":"0.000017714358679290"},{"denom":"ASSET16","index":"0.000010904445776568"},{"denom":"ASSET17","index":"0.000008574179211920"},{"denom":"ASSET18","index":"0.000003534399202209"},{"denom":"ASSET2","index":"0.000007450371795821"},{"denom":"ASSET3","index":"0.000002066219984895"},{"denom":"ASSET4","index":"0.000019933989143940"},{"denom":"ASSET5","index":"0.000001610899827710"},{"denom":"ASSET6","index":"0.000006497050827728"},{"denom":"ASSET7","index":"0.000010213894093182"},{"denom":"ASSET8","index":"0.000013962110633776"},{"denom":"ASSET9","index":"0.000005925048173997"}],"last_reward_claim_height":"169"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET2","shares":"75155160.000000000000000000","reward_history":[],"last_reward_claim_height":"15"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET12","shares":"478667664.124815356755151492","reward_history":[{"denom":"ASSET0","index":"0.000001401536005232"},{"denom":"ASSET1","index":"0.000011690786017211"},{"denom":"ASSET10","index":"0.000008143726832164"},{"denom":"ASSET11","index":"0.000011307987636928"},{"denom":"ASSET12","index":"0.000010184289165772"},{"denom":"ASSET13","index":"0.000003503840013080"},{"denom":"ASSET14","index":"0.000010564000462344"},{"denom":"ASSET15","index":"0.000007554093843178"},{"denom":"ASSET16","index":"0.000005266564812612"},{"denom":"ASSET17","index":"0.000003738458375190"},{"denom":"ASSET18","index":"0.000001781247301804"},{"denom":"ASSET2","index":"0.000003448272506265"},{"denom":"ASSET3","index":"0.000001009476373813"},{"denom":"ASSET4","index":"0.000009498956581716"},{"denom":"ASSET5","index":"0.000000781032179127"},{"denom":"ASSET6","index":"0.000003188957474460"},{"denom":"ASSET7","index":"0.000004883766432329"},{"denom":"ASSET8","index":"0.000006371740781496"},{"denom":"ASSET9","index":"0.000002750591587361"}],"last_reward_claim_height":"107"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET14","shares":"585292925.994109369402949387","reward_history":[{"denom":"ASSET0","index":"0.000003071913026336"},{"denom":"ASSET1","index":"0.000026115211920195"},{"denom":"ASSET10","index":"0.000021104918039272"},{"denom":"ASSET11","index":"0.000026018207650283"},{"denom":"ASSET12","index":"0.000024942011742431"},{"denom":"ASSET13","index":"0.000008182453133262"},{"denom":"ASSET14","index":"0.000023839798810024"},{"denom":"ASSET15","index":"0.000018963275072170"},{"denom":"ASSET16","index":"0.000011567273660047"},{"denom":"ASSET17","index":"0.000009164652819502"},{"denom":"ASSET18","index":"0.000003735860972186"},{"denom":"ASSET2","index":"0.000007925194415041"},{"denom":"ASSET3","index":"0.000002190810612048"},{"denom":"ASSET4","index":"0.000021165118890878"},{"denom":"ASSET5","index":"0.000001704606606646"},{"denom":"ASSET6","index":"0.000006884812645629"},{"denom":"ASSET7","index":"0.000010842612570084"},{"denom":"ASSET8","index":"0.000014874699612932"},{"denom":"ASSET9","index":"0.000006301602876980"}],"last_reward_claim_height":"168"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET3","shares":"971951086.999999944598788041","reward_history":[],"last_reward_claim_height":"34"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET14","shares":"423988953.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001534549585700"},{"denom":"ASSET1","index":"0.000012795681230217"},{"denom":"ASSET10","index":"0.000008914897664776"},{"denom":"ASSET11","index":"0.000012378406858633"},{"denom":"ASSET12","index":"0.000011146809898878"},{"denom":"ASSET13","index":"0.000003835934265229"},{"denom":"ASSET14","index":"0.000011563204872419"},{"denom":"ASSET15","index":"0.000008267660704848"},{"denom":"ASSET16","index":"0.000005764014475342"},{"denom":"ASSET17","index":"0.000004093597891939"},{"denom":"ASSET18","index":"0.000001950065161198"},{"denom":"ASSET2","index":"0.000003777014596322"},{"denom":"ASSET3","index":"0.000001104963641508"},{"denom":"ASSET4","index":"0.000010398442163960"},{"denom":"ASSET5","index":"0.000000857413092297"},{"denom":"ASSET6","index":"0.000003490330834180"},{"denom":"ASSET7","index":"0.000005345421006692"},{"denom":"ASSET8","index":"0.000006975385280099"},{"denom":"ASSET9","index":"0.000003012817696624"}],"last_reward_claim_height":"99"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET18","shares":"966373090.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001534549585700"},{"denom":"ASSET1","index":"0.000012795681230217"},{"denom":"ASSET10","index":"0.000008914897664776"},{"denom":"ASSET11","index":"0.000012378406858633"},{"denom":"ASSET12","index":"0.000011146809898878"},{"denom":"ASSET13","index":"0.000003835934265229"},{"denom":"ASSET14","index":"0.000011563204872419"},{"denom":"ASSET15","index":"0.000008267660704848"},{"denom":"ASSET16","index":"0.000005764014475342"},{"denom":"ASSET17","index":"0.000004093597891939"},{"denom":"ASSET18","index":"0.000001950065161198"},{"denom":"ASSET2","index":"0.000003777014596322"},{"denom":"ASSET3","index":"0.000001104963641508"},{"denom":"ASSET4","index":"0.000010398442163960"},{"denom":"ASSET5","index":"0.000000857413092297"},{"denom":"ASSET6","index":"0.000003490330834180"},{"denom":"ASSET7","index":"0.000005345421006692"},{"denom":"ASSET8","index":"0.000006975385280099"},{"denom":"ASSET9","index":"0.000003012817696624"}],"last_reward_claim_height":"89"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET15","shares":"412716528.958386687767786249","reward_history":[{"denom":"ASSET0","index":"0.000004821253659137"},{"denom":"ASSET1","index":"0.000039465245308483"},{"denom":"ASSET10","index":"0.000034111324062195"},{"denom":"ASSET11","index":"0.000040998472045794"},{"denom":"ASSET12","index":"0.000038982930565630"},{"denom":"ASSET13","index":"0.000013222547274006"},{"denom":"ASSET14","index":"0.000037843785812280"},{"denom":"ASSET15","index":"0.000030636082555583"},{"denom":"ASSET16","index":"0.000017514751416713"},{"denom":"ASSET17","index":"0.000014158801787082"},{"denom":"ASSET18","index":"0.000005900797517651"},{"denom":"ASSET2","index":"0.000011904810892779"},{"denom":"ASSET3","index":"0.000003424400341174"},{"denom":"ASSET4","index":"0.000032355527586641"},{"denom":"ASSET5","index":"0.000002690071214205"},{"denom":"ASSET6","index":"0.000010986782185203"},{"denom":"ASSET7","index":"0.000016956775142402"},{"denom":"ASSET8","index":"0.000024404677863493"},{"denom":"ASSET9","index":"0.000009788399575506"}],"last_reward_claim_height":"192"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET0","shares":"1498216792.089323183336049112","reward_history":[{"denom":"ASSET0","index":"0.000001453411320498"},{"denom":"ASSET1","index":"0.000012118137400313"},{"denom":"ASSET10","index":"0.000008442891188019"},{"denom":"ASSET11","index":"0.000011723343510399"},{"denom":"ASSET12","index":"0.000010556870017106"},{"denom":"ASSET13","index":"0.000003632917795231"},{"denom":"ASSET14","index":"0.000010951256903010"},{"denom":"ASSET15","index":"0.000007829943148627"},{"denom":"ASSET16","index":"0.000005459144789091"},{"denom":"ASSET17","index":"0.000003877120201363"},{"denom":"ASSET18","index":"0.000001846984198382"},{"denom":"ASSET2","index":"0.000003577158245830"},{"denom":"ASSET3","index":"0.000001046407310278"},{"denom":"ASSET4","index":"0.000009848276035312"},{"denom":"ASSET5","index":"0.000000811973000390"},{"denom":"ASSET6","index":"0.000003305686571013"},{"denom":"ASSET7","index":"0.000005062722883136"},{"denom":"ASSET8","index":"0.000006606082089893"},{"denom":"ASSET9","index":"0.000002853098111648"}],"last_reward_claim_height":"116"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET3","shares":"423571316.999999996611429464","reward_history":[],"last_reward_claim_height":"53"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET10","shares":"629586699.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001453411320498"},{"denom":"ASSET1","index":"0.000012118137400313"},{"denom":"ASSET10","index":"0.000008442891188019"},{"denom":"ASSET11","index":"0.000011723343510399"},{"denom":"ASSET12","index":"0.000010556870017106"},{"denom":"ASSET13","index":"0.000003632917795231"},{"denom":"ASSET14","index":"0.000010951256903010"},{"denom":"ASSET15","index":"0.000007829943148627"},{"denom":"ASSET16","index":"0.000005459144789091"},{"denom":"ASSET17","index":"0.000003877120201363"},{"denom":"ASSET18","index":"0.000001846984198382"},{"denom":"ASSET2","index":"0.000003577158245830"},{"denom":"ASSET3","index":"0.000001046407310278"},{"denom":"ASSET4","index":"0.000009848276035312"},{"denom":"ASSET5","index":"0.000000811973000390"},{"denom":"ASSET6","index":"0.000003305686571013"},{"denom":"ASSET7","index":"0.000005062722883136"},{"denom":"ASSET8","index":"0.000006606082089893"},{"denom":"ASSET9","index":"0.000002853098111648"}],"last_reward_claim_height":"114"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET16","shares":"452198150.000000008591764850","reward_history":[{"denom":"ASSET0","index":"0.000002979919393708"},{"denom":"ASSET1","index":"0.000025298333716476"},{"denom":"ASSET10","index":"0.000020286143685892"},{"denom":"ASSET11","index":"0.000025164674259360"},{"denom":"ASSET12","index":"0.000024041723171534"},{"denom":"ASSET13","index":"0.000007907785176595"},{"denom":"ASSET14","index":"0.000023082402053339"},{"denom":"ASSET15","index":"0.000018255332392862"},{"denom":"ASSET16","index":"0.000011216675450010"},{"denom":"ASSET17","index":"0.000008835128154455"},{"denom":"ASSET18","index":"0.000003633337151635"},{"denom":"ASSET2","index":"0.000007668586747858"},{"denom":"ASSET3","index":"0.000002126085354033"},{"denom":"ASSET4","index":"0.000020508686269066"},{"denom":"ASSET5","index":"0.000001656307666438"},{"denom":"ASSET6","index":"0.000006683025235204"},{"denom":"ASSET7","index":"0.000010507859389263"},{"denom":"ASSET8","index":"0.000014375637436113"},{"denom":"ASSET9","index":"0.000006098257618497"}],"last_reward_claim_height":"175"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET16","shares":"990747466.369670222806884654","reward_history":[{"denom":"ASSET0","index":"0.000001595670533734"},{"denom":"ASSET1","index":"0.000013304245337308"},{"denom":"ASSET10","index":"0.000009268754359880"},{"denom":"ASSET11","index":"0.000012870227612725"},{"denom":"ASSET12","index":"0.000011589729681675"},{"denom":"ASSET13","index":"0.000003988302473145"},{"denom":"ASSET14","index":"0.000012022582258004"},{"denom":"ASSET15","index":"0.000008595881243245"},{"denom":"ASSET16","index":"0.000005992940044003"},{"denom":"ASSET17","index":"0.000004256286571545"},{"denom":"ASSET18","index":"0.000002027357961809"},{"denom":"ASSET2","index":"0.000003927132189815"},{"denom":"ASSET3","index":"0.000001148836178358"},{"denom":"ASSET4","index":"0.000010811993222188"},{"denom":"ASSET5","index":"0.000000891338414244"},{"denom":"ASSET6","index":"0.000003628854236813"},{"denom":"ASSET7","index":"0.000005557757171166"},{"denom":"ASSET8","index":"0.000007252465306483"},{"denom":"ASSET9","index":"0.000003132501080646"}],"last_reward_claim_height":"113"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET1","shares":"615773095.000000000000000000","reward_history":[],"last_reward_claim_height":"19"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET5","shares":"949299075.000000000000000000","reward_history":[],"last_reward_claim_height":"32"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET10","shares":"531066315.618369839507911984","reward_history":[{"denom":"ASSET0","index":"0.000002648545180722"},{"denom":"ASSET1","index":"0.000022528915692996"},{"denom":"ASSET10","index":"0.000018297756458480"},{"denom":"ASSET11","index":"0.000022469822082599"},{"denom":"ASSET12","index":"0.000021584227648624"},{"denom":"ASSET13","index":"0.000007070243338634"},{"denom":"ASSET14","index":"0.000020574684608302"},{"denom":"ASSET15","index":"0.000016423497937791"},{"denom":"ASSET16","index":"0.000009972839292196"},{"denom":"ASSET17","index":"0.000007932645550822"},{"denom":"ASSET18","index":"0.000003216131666673"},{"denom":"ASSET2","index":"0.000006846442901912"},{"denom":"ASSET3","index":"0.000001888119307859"},{"denom":"ASSET4","index":"0.000018258669735553"},{"denom":"ASSET5","index":"0.000001471345302008"},{"denom":"ASSET6","index":"0.000005932348598922"},{"denom":"ASSET7","index":"0.000009352074075404"},{"denom":"ASSET8","index":"0.000012853047191550"},{"denom":"ASSET9","index":"0.000005442948627063"}],"last_reward_claim_height":"154"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET1","shares":"736548816.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001638829976996"},{"denom":"ASSET1","index":"0.000013663699511091"},{"denom":"ASSET10","index":"0.000009519748943981"},{"denom":"ASSET11","index":"0.000013218199388741"},{"denom":"ASSET12","index":"0.000011902774883924"},{"denom":"ASSET13","index":"0.000004095984811686"},{"denom":"ASSET14","index":"0.000012347548252404"},{"denom":"ASSET15","index":"0.000008827879259679"},{"denom":"ASSET16","index":"0.000006154878525580"},{"denom":"ASSET17","index":"0.000004371424528441"},{"denom":"ASSET18","index":"0.000002082149837736"},{"denom":"ASSET2","index":"0.000004033483978861"},{"denom":"ASSET3","index":"0.000001179521531115"},{"denom":"ASSET4","index":"0.000011104072380722"},{"denom":"ASSET5","index":"0.000000915709876282"},{"denom":"ASSET6","index":"0.000003726793845693"},{"denom":"ASSET7","index":"0.000005707924895490"},{"denom":"ASSET8","index":"0.000007448500414296"},{"denom":"ASSET9","index":"0.000003217339382778"}],"last_reward_claim_height":"95"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET2","shares":"419775326.312355514840561020","reward_history":[{"denom":"ASSET0","index":"0.000003133427860009"},{"denom":"ASSET1","index":"0.000026571363581284"},{"denom":"ASSET10","index":"0.000021118003104150"},{"denom":"ASSET11","index":"0.000026381510155653"},{"denom":"ASSET12","index":"0.000025108485590780"},{"denom":"ASSET13","index":"0.000008282355352591"},{"denom":"ASSET14","index":"0.000024227637307493"},{"denom":"ASSET15","index":"0.000019037535386694"},{"denom":"ASSET16","index":"0.000011793447009555"},{"denom":"ASSET17","index":"0.000009226841180516"},{"denom":"ASSET18","index":"0.000003831770888939"},{"denom":"ASSET2","index":"0.000008040278303534"},{"denom":"ASSET3","index":"0.000002236402387063"},{"denom":"ASSET4","index":"0.000021543810534784"},{"denom":"ASSET5","index":"0.000001742508705183"},{"denom":"ASSET6","index":"0.000007033989161296"},{"denom":"ASSET7","index":"0.000011040340871930"},{"denom":"ASSET8","index":"0.000015056795520064"},{"denom":"ASSET9","index":"0.000006395464292965"}],"last_reward_claim_height":"154"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET9","shares":"267606684.111872690965702910","reward_history":[{"denom":"ASSET0","index":"0.000003133427860009"},{"denom":"ASSET1","index":"0.000026571363581284"},{"denom":"ASSET10","index":"0.000021118003104150"},{"denom":"ASSET11","index":"0.000026381510155653"},{"denom":"ASSET12","index":"0.000025108485590780"},{"denom":"ASSET13","index":"0.000008282355352591"},{"denom":"ASSET14","index":"0.000024227637307493"},{"denom":"ASSET15","index":"0.000019037535386694"},{"denom":"ASSET16","index":"0.000011793447009555"},{"denom":"ASSET17","index":"0.000009226841180516"},{"denom":"ASSET18","index":"0.000003831770888939"},{"denom":"ASSET2","index":"0.000008040278303534"},{"denom":"ASSET3","index":"0.000002236402387063"},{"denom":"ASSET4","index":"0.000021543810534784"},{"denom":"ASSET5","index":"0.000001742508705183"},{"denom":"ASSET6","index":"0.000007033989161296"},{"denom":"ASSET7","index":"0.000011040340871930"},{"denom":"ASSET8","index":"0.000015056795520064"},{"denom":"ASSET9","index":"0.000006395464292965"}],"last_reward_claim_height":"169"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET7","shares":"806131335.000000000000000000","reward_history":[],"last_reward_claim_height":"15"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET0","shares":"618150013.979913522877257100","reward_history":[{"denom":"ASSET0","index":"0.000003144114236048"},{"denom":"ASSET1","index":"0.000026672683120621"},{"denom":"ASSET10","index":"0.000021269722635007"},{"denom":"ASSET11","index":"0.000026500587720899"},{"denom":"ASSET12","index":"0.000025258297912053"},{"denom":"ASSET13","index":"0.000008323039503604"},{"denom":"ASSET14","index":"0.000024326015412045"},{"denom":"ASSET15","index":"0.000019162234595686"},{"denom":"ASSET16","index":"0.000011833945147558"},{"denom":"ASSET17","index":"0.000009281867675434"},{"denom":"ASSET18","index":"0.000003840349431676"},{"denom":"ASSET2","index":"0.000008076055447193"},{"denom":"ASSET3","index":"0.000002244145529651"},{"denom":"ASSET4","index":"0.000021624555086447"},{"denom":"ASSET5","index":"0.000001748086313596"},{"denom":"ASSET6","index":"0.000007055400333314"},{"denom":"ASSET7","index":"0.000011081362186058"},{"denom":"ASSET8","index":"0.000015130336137492"},{"denom":"ASSET9","index":"0.000006423586371910"}],"last_reward_claim_height":"142"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET1","shares":"168472739.000000000000000000","reward_history":[],"last_reward_claim_height":"22"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET5","shares":"900395029.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003144114236048"},{"denom":"ASSET1","index":"0.000026672683120621"},{"denom":"ASSET10","index":"0.000021269722635007"},{"denom":"ASSET11","index":"0.000026500587720899"},{"denom":"ASSET12","index":"0.000025258297912053"},{"denom":"ASSET13","index":"0.000008323039503604"},{"denom":"ASSET14","index":"0.000024326015412045"},{"denom":"ASSET15","index":"0.000019162234595686"},{"denom":"ASSET16","index":"0.000011833945147558"},{"denom":"ASSET17","index":"0.000009281867675434"},{"denom":"ASSET18","index":"0.000003840349431676"},{"denom":"ASSET2","index":"0.000008076055447193"},{"denom":"ASSET3","index":"0.000002244145529651"},{"denom":"ASSET4","index":"0.000021624555086447"},{"denom":"ASSET5","index":"0.000001748086313596"},{"denom":"ASSET6","index":"0.000007055400333314"},{"denom":"ASSET7","index":"0.000011081362186058"},{"denom":"ASSET8","index":"0.000015130336137492"},{"denom":"ASSET9","index":"0.000006423586371910"}],"last_reward_claim_height":"149"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET14","shares":"963281394.254801715652670160","reward_history":[{"denom":"ASSET0","index":"0.000003144114236048"},{"denom":"ASSET1","index":"0.000026672683120621"},{"denom":"ASSET10","index":"0.000021269722635007"},{"denom":"ASSET11","index":"0.000026500587720899"},{"denom":"ASSET12","index":"0.000025258297912053"},{"denom":"ASSET13","index":"0.000008323039503604"},{"denom":"ASSET14","index":"0.000024326015412045"},{"denom":"ASSET15","index":"0.000019162234595686"},{"denom":"ASSET16","index":"0.000011833945147558"},{"denom":"ASSET17","index":"0.000009281867675434"},{"denom":"ASSET18","index":"0.000003840349431676"},{"denom":"ASSET2","index":"0.000008076055447193"},{"denom":"ASSET3","index":"0.000002244145529651"},{"denom":"ASSET4","index":"0.000021624555086447"},{"denom":"ASSET5","index":"0.000001748086313596"},{"denom":"ASSET6","index":"0.000007055400333314"},{"denom":"ASSET7","index":"0.000011081362186058"},{"denom":"ASSET8","index":"0.000015130336137492"},{"denom":"ASSET9","index":"0.000006423586371910"}],"last_reward_claim_height":"131"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET8","shares":"2454287.000000005332856160","reward_history":[],"last_reward_claim_height":"24"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET9","shares":"191701225.000000010543567375","reward_history":[{"denom":"ASSET0","index":"0.000003109600829404"},{"denom":"ASSET1","index":"0.000026362702045617"},{"denom":"ASSET10","index":"0.000020937844947102"},{"denom":"ASSET11","index":"0.000026169598808926"},{"denom":"ASSET12","index":"0.000024901798461360"},{"denom":"ASSET13","index":"0.000008215149609138"},{"denom":"ASSET14","index":"0.000024035954930107"},{"denom":"ASSET15","index":"0.000018878331344314"},{"denom":"ASSET16","index":"0.000011701775976010"},{"denom":"ASSET17","index":"0.000009149505282332"},{"denom":"ASSET18","index":"0.000003801954966508"},{"denom":"ASSET2","index":"0.000007974718303805"},{"denom":"ASSET3","index":"0.000002219037761573"},{"denom":"ASSET4","index":"0.000021373555319687"},{"denom":"ASSET5","index":"0.000001728657323000"},{"denom":"ASSET6","index":"0.000006980294033305"},{"denom":"ASSET7","index":"0.000010954522542925"},{"denom":"ASSET8","index":"0.000014935013269095"},{"denom":"ASSET9","index":"0.000006344057182602"}],"last_reward_claim_height":"178"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET15","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001633811359009"},{"denom":"ASSET1","index":"0.000013620164108551"},{"denom":"ASSET10","index":"0.000009487838038290"},{"denom":"ASSET11","index":"0.000013174776703502"},{"denom":"ASSET12","index":"0.000011864685946211"},{"denom":"ASSET13","index":"0.000004082355776036"},{"denom":"ASSET14","index":"0.000012307900729772"},{"denom":"ASSET15","index":"0.000008799117026580"},{"denom":"ASSET16","index":"0.000006135483082238"},{"denom":"ASSET17","index":"0.000004356106083529"},{"denom":"ASSET18","index":"0.000002074853521082"},{"denom":"ASSET2","index":"0.000004019349752882"},{"denom":"ASSET3","index":"0.000001175388225032"},{"denom":"ASSET4","index":"0.000011067333860098"},{"denom":"ASSET5","index":"0.000000912501024979"},{"denom":"ASSET6","index":"0.000003715182744556"},{"denom":"ASSET7","index":"0.000005690095677188"},{"denom":"ASSET8","index":"0.000007423847624648"},{"denom":"ASSET9","index":"0.000003206789316354"}],"last_reward_claim_height":"94"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET0","shares":"766016930.034528400964516295","reward_history":[{"denom":"ASSET0","index":"0.000002920257070141"},{"denom":"ASSET1","index":"0.000024811653868653"},{"denom":"ASSET10","index":"0.000020012294768332"},{"denom":"ASSET11","index":"0.000024710629923001"},{"denom":"ASSET12","index":"0.000023666550441425"},{"denom":"ASSET13","index":"0.000007769918885884"},{"denom":"ASSET14","index":"0.000022647790193256"},{"denom":"ASSET15","index":"0.000017987461600930"},{"denom":"ASSET16","index":"0.000010993196459757"},{"denom":"ASSET17","index":"0.000008697266331114"},{"denom":"ASSET18","index":"0.000003553540715950"},{"denom":"ASSET2","index":"0.000007529733395993"},{"denom":"ASSET3","index":"0.000002082581454906"},{"denom":"ASSET4","index":"0.000020111524804667"},{"denom":"ASSET5","index":"0.000001623122955496"},{"denom":"ASSET6","index":"0.000006544727800067"},{"denom":"ASSET7","index":"0.000010303065547743"},{"denom":"ASSET8","index":"0.000014124873274804"},{"denom":"ASSET9","index":"0.000005987532811110"}],"last_reward_claim_height":"155"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET4","shares":"738494999.933969292893457300","reward_history":[{"denom":"ASSET0","index":"0.000001356454583190"},{"denom":"ASSET1","index":"0.000011307707773056"},{"denom":"ASSET10","index":"0.000007878355411964"},{"denom":"ASSET11","index":"0.000010938987301217"},{"denom":"ASSET12","index":"0.000009850463994830"},{"denom":"ASSET13","index":"0.000003389876593037"},{"denom":"ASSET14","index":"0.000010218764511690"},{"denom":"ASSET15","index":"0.000007305956775156"},{"denom":"ASSET16","index":"0.000005094053899100"},{"denom":"ASSET17","index":"0.000003617492191826"},{"denom":"ASSET18","index":"0.000001723075280133"},{"denom":"ASSET2","index":"0.000003337802175602"},{"denom":"ASSET3","index":"0.000000976395326909"},{"denom":"ASSET4","index":"0.000009189454857387"},{"denom":"ASSET5","index":"0.000000758018737665"},{"denom":"ASSET6","index":"0.000003084569323074"},{"denom":"ASSET7","index":"0.000004724073562323"},{"denom":"ASSET8","index":"0.000006164519141376"},{"denom":"ASSET9","index":"0.000002662514568862"}],"last_reward_claim_height":"118"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET5","shares":"754962.000000000000000000","reward_history":[],"last_reward_claim_height":"43"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET14","shares":"747692828.263224462763748040","reward_history":[{"denom":"ASSET0","index":"0.000002920257070141"},{"denom":"ASSET1","index":"0.000024811653868653"},{"denom":"ASSET10","index":"0.000020012294768332"},{"denom":"ASSET11","index":"0.000024710629923001"},{"denom":"ASSET12","index":"0.000023666550441425"},{"denom":"ASSET13","index":"0.000007769918885884"},{"denom":"ASSET14","index":"0.000022647790193256"},{"denom":"ASSET15","index":"0.000017987461600930"},{"denom":"ASSET16","index":"0.000010993196459757"},{"denom":"ASSET17","index":"0.000008697266331114"},{"denom":"ASSET18","index":"0.000003553540715950"},{"denom":"ASSET2","index":"0.000007529733395993"},{"denom":"ASSET3","index":"0.000002082581454906"},{"denom":"ASSET4","index":"0.000020111524804667"},{"denom":"ASSET5","index":"0.000001623122955496"},{"denom":"ASSET6","index":"0.000006544727800067"},{"denom":"ASSET7","index":"0.000010303065547743"},{"denom":"ASSET8","index":"0.000014124873274804"},{"denom":"ASSET9","index":"0.000005987532811110"}],"last_reward_claim_height":"137"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET17","shares":"446399309.030229286019625206","reward_history":[{"denom":"ASSET0","index":"0.000001356454583190"},{"denom":"ASSET1","index":"0.000011307707773056"},{"denom":"ASSET10","index":"0.000007878355411964"},{"denom":"ASSET11","index":"0.000010938987301217"},{"denom":"ASSET12","index":"0.000009850463994830"},{"denom":"ASSET13","index":"0.000003389876593037"},{"denom":"ASSET14","index":"0.000010218764511690"},{"denom":"ASSET15","index":"0.000007305956775156"},{"denom":"ASSET16","index":"0.000005094053899100"},{"denom":"ASSET17","index":"0.000003617492191826"},{"denom":"ASSET18","index":"0.000001723075280133"},{"denom":"ASSET2","index":"0.000003337802175602"},{"denom":"ASSET3","index":"0.000000976395326909"},{"denom":"ASSET4","index":"0.000009189454857387"},{"denom":"ASSET5","index":"0.000000758018737665"},{"denom":"ASSET6","index":"0.000003084569323074"},{"denom":"ASSET7","index":"0.000004724073562323"},{"denom":"ASSET8","index":"0.000006164519141376"},{"denom":"ASSET9","index":"0.000002662514568862"}],"last_reward_claim_height":"109"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET5","shares":"701742298.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003241945367060"},{"denom":"ASSET1","index":"0.000027480716546724"},{"denom":"ASSET10","index":"0.000021780901079221"},{"denom":"ASSET11","index":"0.000027265989011084"},{"denom":"ASSET12","index":"0.000025921947969478"},{"denom":"ASSET13","index":"0.000008556984130745"},{"denom":"ASSET14","index":"0.000025051754134356"},{"denom":"ASSET15","index":"0.000019643848931612"},{"denom":"ASSET16","index":"0.000012200322352703"},{"denom":"ASSET17","index":"0.000009524928673174"},{"denom":"ASSET18","index":"0.000003966981346299"},{"denom":"ASSET2","index":"0.000008309018225650"},{"denom":"ASSET3","index":"0.000002312540225621"},{"denom":"ASSET4","index":"0.000022282443818183"},{"denom":"ASSET5","index":"0.000001802193647755"},{"denom":"ASSET6","index":"0.000007278646216530"},{"denom":"ASSET7","index":"0.000011418356902196"},{"denom":"ASSET8","index":"0.000015557459098515"},{"denom":"ASSET9","index":"0.000006608754258977"}],"last_reward_claim_height":"153"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET11","shares":"880938195.802246589664654294","reward_history":[{"denom":"ASSET0","index":"0.000001730803097805"},{"denom":"ASSET1","index":"0.000014429128492036"},{"denom":"ASSET10","index":"0.000010053081326419"},{"denom":"ASSET11","index":"0.000013956042311970"},{"denom":"ASSET12","index":"0.000012568515161896"},{"denom":"ASSET13","index":"0.000004324123072683"},{"denom":"ASSET14","index":"0.000013038716670133"},{"denom":"ASSET15","index":"0.000009320374681681"},{"denom":"ASSET16","index":"0.000006499165632259"},{"denom":"ASSET17","index":"0.000004615474927481"},{"denom":"ASSET18","index":"0.000002198119934213"},{"denom":"ASSET2","index":"0.000004257775620601"},{"denom":"ASSET3","index":"0.000001243293558590"},{"denom":"ASSET4","index":"0.000011726190987631"},{"denom":"ASSET5","index":"0.000000966365062941"},{"denom":"ASSET6","index":"0.000003934692375677"},{"denom":"ASSET7","index":"0.000006026079452192"},{"denom":"ASSET8","index":"0.000007863615407695"},{"denom":"ASSET9","index":"0.000003395258743528"}],"last_reward_claim_height":"107"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET13","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"27"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET15","shares":"230807522.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004596842351159"},{"denom":"ASSET1","index":"0.000037621247133778"},{"denom":"ASSET10","index":"0.000032406384323250"},{"denom":"ASSET11","index":"0.000039028902085371"},{"denom":"ASSET12","index":"0.000037087492375849"},{"denom":"ASSET13","index":"0.000012579191861147"},{"denom":"ASSET14","index":"0.000036026040179075"},{"denom":"ASSET15","index":"0.000029115781615792"},{"denom":"ASSET16","index":"0.000016702394260040"},{"denom":"ASSET17","index":"0.000013474193368563"},{"denom":"ASSET18","index":"0.000005623650335033"},{"denom":"ASSET2","index":"0.000011347250373690"},{"denom":"ASSET3","index":"0.000003265680996349"},{"denom":"ASSET4","index":"0.000030835001736023"},{"denom":"ASSET5","index":"0.000002563241391537"},{"denom":"ASSET6","index":"0.000010464530798872"},{"denom":"ASSET7","index":"0.000016155716479824"},{"denom":"ASSET8","index":"0.000023204906360357"},{"denom":"ASSET9","index":"0.000009321567168813"}],"last_reward_claim_height":"191"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET1","shares":"730014817.571998705817388947","reward_history":[{"denom":"ASSET0","index":"0.000001520990142264"},{"denom":"ASSET1","index":"0.000012680102108631"},{"denom":"ASSET10","index":"0.000008834326429376"},{"denom":"ASSET11","index":"0.000012266893306329"},{"denom":"ASSET12","index":"0.000011046354389007"},{"denom":"ASSET13","index":"0.000003801591675587"},{"denom":"ASSET14","index":"0.000011458856247250"},{"denom":"ASSET15","index":"0.000008193128168148"},{"denom":"ASSET16","index":"0.000005712107994187"},{"denom":"ASSET17","index":"0.000004056798480773"},{"denom":"ASSET18","index":"0.000001932431584420"},{"denom":"ASSET2","index":"0.000003743268790745"},{"denom":"ASSET3","index":"0.000001095056346905"},{"denom":"ASSET4","index":"0.000010304770071444"},{"denom":"ASSET5","index":"0.000000849746758541"},{"denom":"ASSET6","index":"0.000003459077279153"},{"denom":"ASSET7","index":"0.000005297485303768"},{"denom":"ASSET8","index":"0.000006912499005837"},{"denom":"ASSET9","index":"0.000002985778231863"}],"last_reward_claim_height":"82"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET4","shares":"690180095.000000000000000000","reward_history":[],"last_reward_claim_height":"58"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET10","shares":"86321330.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001520990142264"},{"denom":"ASSET1","index":"0.000012680102108631"},{"denom":"ASSET10","index":"0.000008834326429376"},{"denom":"ASSET11","index":"0.000012266893306329"},{"denom":"ASSET12","index":"0.000011046354389007"},{"denom":"ASSET13","index":"0.000003801591675587"},{"denom":"ASSET14","index":"0.000011458856247250"},{"denom":"ASSET15","index":"0.000008193128168148"},{"denom":"ASSET16","index":"0.000005712107994187"},{"denom":"ASSET17","index":"0.000004056798480773"},{"denom":"ASSET18","index":"0.000001932431584420"},{"denom":"ASSET2","index":"0.000003743268790745"},{"denom":"ASSET3","index":"0.000001095056346905"},{"denom":"ASSET4","index":"0.000010304770071444"},{"denom":"ASSET5","index":"0.000000849746758541"},{"denom":"ASSET6","index":"0.000003459077279153"},{"denom":"ASSET7","index":"0.000005297485303768"},{"denom":"ASSET8","index":"0.000006912499005837"},{"denom":"ASSET9","index":"0.000002985778231863"}],"last_reward_claim_height":"69"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET18","shares":"37116649.000000000000000000","reward_history":[],"last_reward_claim_height":"13"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET0","shares":"865744068.000000000000000000","reward_history":[],"last_reward_claim_height":"40"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET2","shares":"556313881.861186171581360419","reward_history":[{"denom":"ASSET0","index":"0.000003051401969864"},{"denom":"ASSET1","index":"0.000025903543471827"},{"denom":"ASSET10","index":"0.000020717104247015"},{"denom":"ASSET11","index":"0.000025751820078700"},{"denom":"ASSET12","index":"0.000024575704795191"},{"denom":"ASSET13","index":"0.000008089460542782"},{"denom":"ASSET14","index":"0.000023629519286555"},{"denom":"ASSET15","index":"0.000018652475785738"},{"denom":"ASSET16","index":"0.000011487598582804"},{"denom":"ASSET17","index":"0.000009031027466449"},{"denom":"ASSET18","index":"0.000003724432134289"},{"denom":"ASSET2","index":"0.000007847588407204"},{"denom":"ASSET3","index":"0.000002177732310384"},{"denom":"ASSET4","index":"0.000021000151540181"},{"denom":"ASSET5","index":"0.000001696165098739"},{"denom":"ASSET6","index":"0.000006846477479182"},{"denom":"ASSET7","index":"0.000010760324594985"},{"denom":"ASSET8","index":"0.000014706911787677"},{"denom":"ASSET9","index":"0.000006241583848480"}],"last_reward_claim_height":"162"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET11","shares":"178170174.360986006133618372","reward_history":[{"denom":"ASSET0","index":"0.000003051401969864"},{"denom":"ASSET1","index":"0.000025903543471827"},{"denom":"ASSET10","index":"0.000020717104247015"},{"denom":"ASSET11","index":"0.000025751820078700"},{"denom":"ASSET12","index":"0.000024575704795191"},{"denom":"ASSET13","index":"0.000008089460542782"},{"denom":"ASSET14","index":"0.000023629519286555"},{"denom":"ASSET15","index":"0.000018652475785738"},{"denom":"ASSET16","index":"0.000011487598582804"},{"denom":"ASSET17","index":"0.000009031027466449"},{"denom":"ASSET18","index":"0.000003724432134289"},{"denom":"ASSET2","index":"0.000007847588407204"},{"denom":"ASSET3","index":"0.000002177732310384"},{"denom":"ASSET4","index":"0.000021000151540181"},{"denom":"ASSET5","index":"0.000001696165098739"},{"denom":"ASSET6","index":"0.000006846477479182"},{"denom":"ASSET7","index":"0.000010760324594985"},{"denom":"ASSET8","index":"0.000014706911787677"},{"denom":"ASSET9","index":"0.000006241583848480"}],"last_reward_claim_height":"144"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET12","shares":"56015869.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001519669987195"},{"denom":"ASSET1","index":"0.000012676623405048"},{"denom":"ASSET10","index":"0.000008831600766261"},{"denom":"ASSET11","index":"0.000012262448940742"},{"denom":"ASSET12","index":"0.000011042591812037"},{"denom":"ASSET13","index":"0.000003799690110356"},{"denom":"ASSET14","index":"0.000011454705706870"},{"denom":"ASSET15","index":"0.000008189733375059"},{"denom":"ASSET16","index":"0.000005709838012905"},{"denom":"ASSET17","index":"0.000004055200725152"},{"denom":"ASSET18","index":"0.000001931783882027"},{"denom":"ASSET2","index":"0.000003741994165079"},{"denom":"ASSET3","index":"0.000001094162390780"},{"denom":"ASSET4","index":"0.000010301817086076"},{"denom":"ASSET5","index":"0.000000848954623355"},{"denom":"ASSET6","index":"0.000003457635577645"},{"denom":"ASSET7","index":"0.000005295663548598"},{"denom":"ASSET8","index":"0.000006910119731604"},{"denom":"ASSET9","index":"0.000002984734883325"}],"last_reward_claim_height":"96"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET14","shares":"773709833.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003051401969864"},{"denom":"ASSET1","index":"0.000025903543471827"},{"denom":"ASSET10","index":"0.000020717104247015"},{"denom":"ASSET11","index":"0.000025751820078700"},{"denom":"ASSET12","index":"0.000024575704795191"},{"denom":"ASSET13","index":"0.000008089460542782"},{"denom":"ASSET14","index":"0.000023629519286555"},{"denom":"ASSET15","index":"0.000018652475785738"},{"denom":"ASSET16","index":"0.000011487598582804"},{"denom":"ASSET17","index":"0.000009031027466449"},{"denom":"ASSET18","index":"0.000003724432134289"},{"denom":"ASSET2","index":"0.000007847588407204"},{"denom":"ASSET3","index":"0.000002177732310384"},{"denom":"ASSET4","index":"0.000021000151540181"},{"denom":"ASSET5","index":"0.000001696165098739"},{"denom":"ASSET6","index":"0.000006846477479182"},{"denom":"ASSET7","index":"0.000010760324594985"},{"denom":"ASSET8","index":"0.000014706911787677"},{"denom":"ASSET9","index":"0.000006241583848480"}],"last_reward_claim_height":"171"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET0","shares":"888365801.685995298767967304","reward_history":[{"denom":"ASSET0","index":"0.000002834261839987"},{"denom":"ASSET1","index":"0.000024063735726127"},{"denom":"ASSET10","index":"0.000019278012414561"},{"denom":"ASSET11","index":"0.000023930766794440"},{"denom":"ASSET12","index":"0.000022855511266190"},{"denom":"ASSET13","index":"0.000007519422832827"},{"denom":"ASSET14","index":"0.000021953268691937"},{"denom":"ASSET15","index":"0.000017352048046781"},{"denom":"ASSET16","index":"0.000010669562284438"},{"denom":"ASSET17","index":"0.000008398158415340"},{"denom":"ASSET18","index":"0.000003456710779118"},{"denom":"ASSET2","index":"0.000007292324829772"},{"denom":"ASSET3","index":"0.000002022818722752"},{"denom":"ASSET4","index":"0.000019507505991506"},{"denom":"ASSET5","index":"0.000001575196067099"},{"denom":"ASSET6","index":"0.000006357416996111"},{"denom":"ASSET7","index":"0.000009994574317511"},{"denom":"ASSET8","index":"0.000013669954492341"},{"denom":"ASSET9","index":"0.000005799591528398"}],"last_reward_claim_height":"181"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET6","shares":"102411927.999999990373278768","reward_history":[{"denom":"ASSET0","index":"0.000004334424087699"},{"denom":"ASSET1","index":"0.000035449514986345"},{"denom":"ASSET10","index":"0.000030840939894549"},{"denom":"ASSET11","index":"0.000036901879937154"},{"denom":"ASSET12","index":"0.000035161495405309"},{"denom":"ASSET13","index":"0.000011915420663187"},{"denom":"ASSET14","index":"0.000034041055395553"},{"denom":"ASSET15","index":"0.000027671425756021"},{"denom":"ASSET16","index":"0.000015724762226282"},{"denom":"ASSET17","index":"0.000012767594988461"},{"denom":"ASSET18","index":"0.000005291852188377"},{"denom":"ASSET2","index":"0.000010704019540621"},{"denom":"ASSET3","index":"0.000003077805518553"},{"denom":"ASSET4","index":"0.000029066924423371"},{"denom":"ASSET5","index":"0.000002416595232373"},{"denom":"ASSET6","index":"0.000009868112756670"},{"denom":"ASSET7","index":"0.000015242288495709"},{"denom":"ASSET8","index":"0.000021994384219842"},{"denom":"ASSET9","index":"0.000008805623401411"}],"last_reward_claim_height":"194"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET1","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001553840185331"},{"denom":"ASSET1","index":"0.000012958259817171"},{"denom":"ASSET10","index":"0.000009028099224953"},{"denom":"ASSET11","index":"0.000012533831248030"},{"denom":"ASSET12","index":"0.000011286922457332"},{"denom":"ASSET13","index":"0.000003884600463327"},{"denom":"ASSET14","index":"0.000011708953124953"},{"denom":"ASSET15","index":"0.000008371074208317"},{"denom":"ASSET16","index":"0.000005836492301072"},{"denom":"ASSET17","index":"0.000004143573827548"},{"denom":"ASSET18","index":"0.000001973472951431"},{"denom":"ASSET2","index":"0.000003824652925312"},{"denom":"ASSET3","index":"0.000001117422108587"},{"denom":"ASSET4","index":"0.000010529185576831"},{"denom":"ASSET5","index":"0.000000868040350447"},{"denom":"ASSET6","index":"0.000003534506841323"},{"denom":"ASSET7","index":"0.000005412063731931"},{"denom":"ASSET8","index":"0.000007064217879605"},{"denom":"ASSET9","index":"0.000003050130734168"}],"last_reward_claim_height":"65"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET3","shares":"431464789.999999996850457942","reward_history":[],"last_reward_claim_height":"51"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET12","shares":"642589875.999999996787050620","reward_history":[{"denom":"ASSET0","index":"0.000001553840185331"},{"denom":"ASSET1","index":"0.000012958259817171"},{"denom":"ASSET10","index":"0.000009028099224953"},{"denom":"ASSET11","index":"0.000012533831248030"},{"denom":"ASSET12","index":"0.000011286922457332"},{"denom":"ASSET13","index":"0.000003884600463327"},{"denom":"ASSET14","index":"0.000011708953124953"},{"denom":"ASSET15","index":"0.000008371074208317"},{"denom":"ASSET16","index":"0.000005836492301072"},{"denom":"ASSET17","index":"0.000004143573827548"},{"denom":"ASSET18","index":"0.000001973472951431"},{"denom":"ASSET2","index":"0.000003824652925312"},{"denom":"ASSET3","index":"0.000001117422108587"},{"denom":"ASSET4","index":"0.000010529185576831"},{"denom":"ASSET5","index":"0.000000868040350447"},{"denom":"ASSET6","index":"0.000003534506841323"},{"denom":"ASSET7","index":"0.000005412063731931"},{"denom":"ASSET8","index":"0.000007064217879605"},{"denom":"ASSET9","index":"0.000003050130734168"}],"last_reward_claim_height":"118"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET3","shares":"858735827.245338225093139424","reward_history":[{"denom":"ASSET0","index":"0.000001468329025254"},{"denom":"ASSET1","index":"0.000012248466172689"},{"denom":"ASSET10","index":"0.000008533242661533"},{"denom":"ASSET11","index":"0.000011849890220686"},{"denom":"ASSET12","index":"0.000010670683647662"},{"denom":"ASSET13","index":"0.000003671855143322"},{"denom":"ASSET14","index":"0.000011069259599665"},{"denom":"ASSET15","index":"0.000007913694549611"},{"denom":"ASSET16","index":"0.000005518108516848"},{"denom":"ASSET17","index":"0.000003917609227717"},{"denom":"ASSET18","index":"0.000001866904977257"},{"denom":"ASSET2","index":"0.000003616095813249"},{"denom":"ASSET3","index":"0.000001057362111013"},{"denom":"ASSET4","index":"0.000009954072998206"},{"denom":"ASSET5","index":"0.000000819868668110"},{"denom":"ASSET6","index":"0.000003341429483630"},{"denom":"ASSET7","index":"0.000005117467404472"},{"denom":"ASSET8","index":"0.000006676663486141"},{"denom":"ASSET9","index":"0.000002882963880808"}],"last_reward_claim_height":"79"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET15","shares":"308116525.762204648473091134","reward_history":[{"denom":"ASSET0","index":"0.000002995432004660"},{"denom":"ASSET1","index":"0.000025434255671185"},{"denom":"ASSET10","index":"0.000020381248485322"},{"denom":"ASSET11","index":"0.000025297016742096"},{"denom":"ASSET12","index":"0.000024161457271020"},{"denom":"ASSET13","index":"0.000007948725545453"},{"denom":"ASSET14","index":"0.000023205881885085"},{"denom":"ASSET15","index":"0.000018343715148864"},{"denom":"ASSET16","index":"0.000011277889207663"},{"denom":"ASSET17","index":"0.000008877556775335"},{"denom":"ASSET18","index":"0.000003654253802028"},{"denom":"ASSET2","index":"0.000007709102798424"},{"denom":"ASSET3","index":"0.000002137627884226"},{"denom":"ASSET4","index":"0.000020618696770430"},{"denom":"ASSET5","index":"0.000001664440090804"},{"denom":"ASSET6","index":"0.000006720260763181"},{"denom":"ASSET7","index":"0.000010565171316359"},{"denom":"ASSET8","index":"0.000014449121165534"},{"denom":"ASSET9","index":"0.000006129217088192"}],"last_reward_claim_height":"164"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET0","shares":"910709492.274286995027499560","reward_history":[{"denom":"ASSET0","index":"0.000002967027008461"},{"denom":"ASSET1","index":"0.000025180120058697"},{"denom":"ASSET10","index":"0.000020126919929476"},{"denom":"ASSET11","index":"0.000025029678796477"},{"denom":"ASSET12","index":"0.000023880507059092"},{"denom":"ASSET13","index":"0.000007862872062626"},{"denom":"ASSET14","index":"0.000022968832134984"},{"denom":"ASSET15","index":"0.000018123195207046"},{"denom":"ASSET16","index":"0.000011168095360491"},{"denom":"ASSET17","index":"0.000008775186029853"},{"denom":"ASSET18","index":"0.000003621217117579"},{"denom":"ASSET2","index":"0.000007627534970337"},{"denom":"ASSET3","index":"0.000002117298518473"},{"denom":"ASSET4","index":"0.000020413769751333"},{"denom":"ASSET5","index":"0.000001649183760435"},{"denom":"ASSET6","index":"0.000006656038319196"},{"denom":"ASSET7","index":"0.000010459966878994"},{"denom":"ASSET8","index":"0.000014293861494285"},{"denom":"ASSET9","index":"0.000006066597621916"}],"last_reward_claim_height":"172"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET17","shares":"464170115.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001484659776814"},{"denom":"ASSET1","index":"0.000012377911876883"},{"denom":"ASSET10","index":"0.000008623797972416"},{"denom":"ASSET11","index":"0.000011974339842928"},{"denom":"ASSET12","index":"0.000010782780641408"},{"denom":"ASSET13","index":"0.000003710691597017"},{"denom":"ASSET14","index":"0.000011185714112019"},{"denom":"ASSET15","index":"0.000007997367331102"},{"denom":"ASSET16","index":"0.000005575935127370"},{"denom":"ASSET17","index":"0.000003959731301514"},{"denom":"ASSET18","index":"0.000001886316120734"},{"denom":"ASSET2","index":"0.000003653859459324"},{"denom":"ASSET3","index":"0.000001068955039306"},{"denom":"ASSET4","index":"0.000010059288371675"},{"denom":"ASSET5","index":"0.000000829493784981"},{"denom":"ASSET6","index":"0.000003376084404307"},{"denom":"ASSET7","index":"0.000005171085966725"},{"denom":"ASSET8","index":"0.000006747698865199"},{"denom":"ASSET9","index":"0.000002914403105969"}],"last_reward_claim_height":"80"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET15","shares":"97552839.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001508631993599"},{"denom":"ASSET1","index":"0.000012578103553994"},{"denom":"ASSET10","index":"0.000008763023138279"},{"denom":"ASSET11","index":"0.000012169014387632"},{"denom":"ASSET12","index":"0.000010956555546150"},{"denom":"ASSET13","index":"0.000003770654442897"},{"denom":"ASSET14","index":"0.000011367495794714"},{"denom":"ASSET15","index":"0.000008126250861227"},{"denom":"ASSET16","index":"0.000005666162616450"},{"denom":"ASSET17","index":"0.000004024252704398"},{"denom":"ASSET18","index":"0.000001915870077761"},{"denom":"ASSET2","index":"0.000003713270894674"},{"denom":"ASSET3","index":"0.000001084734169631"},{"denom":"ASSET4","index":"0.000010221675912459"},{"denom":"ASSET5","index":"0.000000842242401334"},{"denom":"ASSET6","index":"0.000003430055317962"},{"denom":"ASSET7","index":"0.000005255222367887"},{"denom":"ASSET8","index":"0.000006856408471522"},{"denom":"ASSET9","index":"0.000002961731521176"}],"last_reward_claim_height":"69"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET18","shares":"17218743.115328497780624910","reward_history":[{"denom":"ASSET0","index":"0.000001508631993599"},{"denom":"ASSET1","index":"0.000012578103553994"},{"denom":"ASSET10","index":"0.000008763023138279"},{"denom":"ASSET11","index":"0.000012169014387632"},{"denom":"ASSET12","index":"0.000010956555546150"},{"denom":"ASSET13","index":"0.000003770654442897"},{"denom":"ASSET14","index":"0.000011367495794714"},{"denom":"ASSET15","index":"0.000008126250861227"},{"denom":"ASSET16","index":"0.000005666162616450"},{"denom":"ASSET17","index":"0.000004024252704398"},{"denom":"ASSET18","index":"0.000001915870077761"},{"denom":"ASSET2","index":"0.000003713270894674"},{"denom":"ASSET3","index":"0.000001084734169631"},{"denom":"ASSET4","index":"0.000010221675912459"},{"denom":"ASSET5","index":"0.000000842242401334"},{"denom":"ASSET6","index":"0.000003430055317962"},{"denom":"ASSET7","index":"0.000005255222367887"},{"denom":"ASSET8","index":"0.000006856408471522"},{"denom":"ASSET9","index":"0.000002961731521176"}],"last_reward_claim_height":"117"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET6","shares":"501088181.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003259379166935"},{"denom":"ASSET1","index":"0.000027669546155668"},{"denom":"ASSET10","index":"0.000022163157427920"},{"denom":"ASSET11","index":"0.000027516665793422"},{"denom":"ASSET12","index":"0.000026276569409586"},{"denom":"ASSET13","index":"0.000008645229164029"},{"denom":"ASSET14","index":"0.000025243382728696"},{"denom":"ASSET15","index":"0.000019947981783747"},{"denom":"ASSET16","index":"0.000012268920188963"},{"denom":"ASSET17","index":"0.000009656339783182"},{"denom":"ASSET18","index":"0.000003975233530089"},{"denom":"ASSET2","index":"0.000008385350610200"},{"denom":"ASSET3","index":"0.000002325230588439"},{"denom":"ASSET4","index":"0.000022430515898086"},{"denom":"ASSET5","index":"0.000001812256369527"},{"denom":"ASSET6","index":"0.000007311001085881"},{"denom":"ASSET7","index":"0.000011492885803011"},{"denom":"ASSET8","index":"0.000015716897251793"},{"denom":"ASSET9","index":"0.000006668589151432"}],"last_reward_claim_height":"131"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET15","shares":"453315921.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001603618851190"},{"denom":"ASSET1","index":"0.000013373450792115"},{"denom":"ASSET10","index":"0.000009317368604669"},{"denom":"ASSET11","index":"0.000012937408123124"},{"denom":"ASSET12","index":"0.000011650307554501"},{"denom":"ASSET13","index":"0.000004008493774333"},{"denom":"ASSET14","index":"0.000012085243516211"},{"denom":"ASSET15","index":"0.000008640063748266"},{"denom":"ASSET16","index":"0.000006023807734317"},{"denom":"ASSET17","index":"0.000004278530351069"},{"denom":"ASSET18","index":"0.000002037448105618"},{"denom":"ASSET2","index":"0.000003947624873839"},{"denom":"ASSET3","index":"0.000001154295694818"},{"denom":"ASSET4","index":"0.000010867865506336"},{"denom":"ASSET5","index":"0.000000896432898181"},{"denom":"ASSET6","index":"0.000003647707200497"},{"denom":"ASSET7","index":"0.000005586658358043"},{"denom":"ASSET8","index":"0.000007289880864586"},{"denom":"ASSET9","index":"0.000003148582216449"}],"last_reward_claim_height":"89"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET2","shares":"187770943.459841325625272222","reward_history":[{"denom":"ASSET0","index":"0.000003314119794923"},{"denom":"ASSET1","index":"0.000028119315186385"},{"denom":"ASSET10","index":"0.000022456877991933"},{"denom":"ASSET11","index":"0.000027947185249485"},{"denom":"ASSET12","index":"0.000026653541530161"},{"denom":"ASSET13","index":"0.000008778725953540"},{"denom":"ASSET14","index":"0.000025648491290636"},{"denom":"ASSET15","index":"0.000020225495910600"},{"denom":"ASSET16","index":"0.000012473684612014"},{"denom":"ASSET17","index":"0.000009794866581105"},{"denom":"ASSET18","index":"0.000004045992889163"},{"denom":"ASSET2","index":"0.000008517017325485"},{"denom":"ASSET3","index":"0.000002365208974685"},{"denom":"ASSET4","index":"0.000022797013251164"},{"denom":"ASSET5","index":"0.000001842432416817"},{"denom":"ASSET6","index":"0.000007435560259585"},{"denom":"ASSET7","index":"0.000011681616070006"},{"denom":"ASSET8","index":"0.000015958852395270"},{"denom":"ASSET9","index":"0.000006773561992828"}],"last_reward_claim_height":"146"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET6","shares":"166267503.295114907828453424","reward_history":[{"denom":"ASSET0","index":"0.000004957951068368"},{"denom":"ASSET1","index":"0.000040595109338701"},{"denom":"ASSET10","index":"0.000035126657560304"},{"denom":"ASSET11","index":"0.000042160091199159"},{"denom":"ASSET12","index":"0.000040137526814401"},{"denom":"ASSET13","index":"0.000013595617987355"},{"denom":"ASSET14","index":"0.000038893564212609"},{"denom":"ASSET15","index":"0.000031532808724594"},{"denom":"ASSET16","index":"0.000018012834416697"},{"denom":"ASSET17","index":"0.000014582632247249"},{"denom":"ASSET18","index":"0.000006056854468943"},{"denom":"ASSET2","index":"0.000012255281913400"},{"denom":"ASSET3","index":"0.000003521316365957"},{"denom":"ASSET4","index":"0.000033271654612923"},{"denom":"ASSET5","index":"0.000002764577024642"},{"denom":"ASSET6","index":"0.000011282334844705"},{"denom":"ASSET7","index":"0.000017431884448199"},{"denom":"ASSET8","index":"0.000025080164686627"},{"denom":"ASSET9","index":"0.000010067506697452"}],"last_reward_claim_height":"187"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET5","shares":"1016384642.999999998169591974","reward_history":[{"denom":"ASSET0","index":"0.000001334597814253"},{"denom":"ASSET1","index":"0.000011126876577448"},{"denom":"ASSET10","index":"0.000007751884027943"},{"denom":"ASSET11","index":"0.000010763759508328"},{"denom":"ASSET12","index":"0.000009692944381721"},{"denom":"ASSET13","index":"0.000003335543967388"},{"denom":"ASSET14","index":"0.000010055110882597"},{"denom":"ASSET15","index":"0.000007189147627631"},{"denom":"ASSET16","index":"0.000005012346349398"},{"denom":"ASSET17","index":"0.000003559878072918"},{"denom":"ASSET18","index":"0.000001695813746885"},{"denom":"ASSET2","index":"0.000003284213282225"},{"denom":"ASSET3","index":"0.000000960549210329"},{"denom":"ASSET4","index":"0.000009042280418860"},{"denom":"ASSET5","index":"0.000000745720787237"},{"denom":"ASSET6","index":"0.000003035164402357"},{"denom":"ASSET7","index":"0.000004648278712034"},{"denom":"ASSET8","index":"0.000006065575963495"},{"denom":"ASSET9","index":"0.000002619766079830"}],"last_reward_claim_height":"68"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET6","shares":"236604696.000000006005656538","reward_history":[{"denom":"ASSET0","index":"0.000001334597814253"},{"denom":"ASSET1","index":"0.000011126876577448"},{"denom":"ASSET10","index":"0.000007751884027943"},{"denom":"ASSET11","index":"0.000010763759508328"},{"denom":"ASSET12","index":"0.000009692944381721"},{"denom":"ASSET13","index":"0.000003335543967388"},{"denom":"ASSET14","index":"0.000010055110882597"},{"denom":"ASSET15","index":"0.000007189147627631"},{"denom":"ASSET16","index":"0.000005012346349398"},{"denom":"ASSET17","index":"0.000003559878072918"},{"denom":"ASSET18","index":"0.000001695813746885"},{"denom":"ASSET2","index":"0.000003284213282225"},{"denom":"ASSET3","index":"0.000000960549210329"},{"denom":"ASSET4","index":"0.000009042280418860"},{"denom":"ASSET5","index":"0.000000745720787237"},{"denom":"ASSET6","index":"0.000003035164402357"},{"denom":"ASSET7","index":"0.000004648278712034"},{"denom":"ASSET8","index":"0.000006065575963495"},{"denom":"ASSET9","index":"0.000002619766079830"}],"last_reward_claim_height":"96"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET10","shares":"596955719.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001334597814253"},{"denom":"ASSET1","index":"0.000011126876577448"},{"denom":"ASSET10","index":"0.000007751884027943"},{"denom":"ASSET11","index":"0.000010763759508328"},{"denom":"ASSET12","index":"0.000009692944381721"},{"denom":"ASSET13","index":"0.000003335543967388"},{"denom":"ASSET14","index":"0.000010055110882597"},{"denom":"ASSET15","index":"0.000007189147627631"},{"denom":"ASSET16","index":"0.000005012346349398"},{"denom":"ASSET17","index":"0.000003559878072918"},{"denom":"ASSET18","index":"0.000001695813746885"},{"denom":"ASSET2","index":"0.000003284213282225"},{"denom":"ASSET3","index":"0.000000960549210329"},{"denom":"ASSET4","index":"0.000009042280418860"},{"denom":"ASSET5","index":"0.000000745720787237"},{"denom":"ASSET6","index":"0.000003035164402357"},{"denom":"ASSET7","index":"0.000004648278712034"},{"denom":"ASSET8","index":"0.000006065575963495"},{"denom":"ASSET9","index":"0.000002619766079830"}],"last_reward_claim_height":"87"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET18","shares":"88009663.999999994279371840","reward_history":[],"last_reward_claim_height":"51"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET14","shares":"414652932.003005011237087380","reward_history":[{"denom":"ASSET0","index":"0.000003159157648171"},{"denom":"ASSET1","index":"0.000026793811254639"},{"denom":"ASSET10","index":"0.000021330257270132"},{"denom":"ASSET11","index":"0.000026611245447042"},{"denom":"ASSET12","index":"0.000025345616114893"},{"denom":"ASSET13","index":"0.000008356504281369"},{"denom":"ASSET14","index":"0.000024433401122602"},{"denom":"ASSET15","index":"0.000019223209713353"},{"denom":"ASSET16","index":"0.000011890026449509"},{"denom":"ASSET17","index":"0.000009313941892173"},{"denom":"ASSET18","index":"0.000003860849124980"},{"denom":"ASSET2","index":"0.000008109777269158"},{"denom":"ASSET3","index":"0.000002255070941538"},{"denom":"ASSET4","index":"0.000021723391251034"},{"denom":"ASSET5","index":"0.000001756486235957"},{"denom":"ASSET6","index":"0.000007090574282328"},{"denom":"ASSET7","index":"0.000011132530538444"},{"denom":"ASSET8","index":"0.000015191323807650"},{"denom":"ASSET9","index":"0.000006450832118924"}],"last_reward_claim_height":"168"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET12","shares":"730483049.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003253063831874"},{"denom":"ASSET1","index":"0.000027597326034286"},{"denom":"ASSET10","index":"0.000022021617243178"},{"denom":"ASSET11","index":"0.000027423138617092"},{"denom":"ASSET12","index":"0.000026144931484859"},{"denom":"ASSET13","index":"0.000008613299773809"},{"denom":"ASSET14","index":"0.000025170855267573"},{"denom":"ASSET15","index":"0.000019836826910831"},{"denom":"ASSET16","index":"0.000012243184702458"},{"denom":"ASSET17","index":"0.000009607701845932"},{"denom":"ASSET18","index":"0.000003972764374377"},{"denom":"ASSET2","index":"0.000008357484440725"},{"denom":"ASSET3","index":"0.000002321502734814"},{"denom":"ASSET4","index":"0.000022373906168402"},{"denom":"ASSET5","index":"0.000001808481766797"},{"denom":"ASSET6","index":"0.000007298802623853"},{"denom":"ASSET7","index":"0.000011465220726545"},{"denom":"ASSET8","index":"0.000015658035812384"},{"denom":"ASSET9","index":"0.000006646717011605"}],"last_reward_claim_height":"164"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET0","shares":"406651965.610368282138082224","reward_history":[{"denom":"ASSET0","index":"0.000003402845442317"},{"denom":"ASSET1","index":"0.000028880571174740"},{"denom":"ASSET10","index":"0.000023090578471272"},{"denom":"ASSET11","index":"0.000028709364204549"},{"denom":"ASSET12","index":"0.000027394626213612"},{"denom":"ASSET13","index":"0.000009019217107214"},{"denom":"ASSET14","index":"0.000026344557012563"},{"denom":"ASSET15","index":"0.000020791017438004"},{"denom":"ASSET16","index":"0.000012808886991708"},{"denom":"ASSET17","index":"0.000010066951390727"},{"denom":"ASSET18","index":"0.000004153478710890"},{"denom":"ASSET2","index":"0.000008748954704305"},{"denom":"ASSET3","index":"0.000002428490976730"},{"denom":"ASSET4","index":"0.000023413646091842"},{"denom":"ASSET5","index":"0.000001891364101695"},{"denom":"ASSET6","index":"0.000007634563338572"},{"denom":"ASSET7","index":"0.000011996876612297"},{"denom":"ASSET8","index":"0.000016395615103037"},{"denom":"ASSET9","index":"0.000006958318142576"}],"last_reward_claim_height":"130"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET4","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"57"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET8","shares":"414511422.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003402845442317"},{"denom":"ASSET1","index":"0.000028880571174740"},{"denom":"ASSET10","index":"0.000023090578471272"},{"denom":"ASSET11","index":"0.000028709364204549"},{"denom":"ASSET12","index":"0.000027394626213612"},{"denom":"ASSET13","index":"0.000009019217107214"},{"denom":"ASSET14","index":"0.000026344557012563"},{"denom":"ASSET15","index":"0.000020791017438004"},{"denom":"ASSET16","index":"0.000012808886991708"},{"denom":"ASSET17","index":"0.000010066951390727"},{"denom":"ASSET18","index":"0.000004153478710890"},{"denom":"ASSET2","index":"0.000008748954704305"},{"denom":"ASSET3","index":"0.000002428490976730"},{"denom":"ASSET4","index":"0.000023413646091842"},{"denom":"ASSET5","index":"0.000001891364101695"},{"denom":"ASSET6","index":"0.000007634563338572"},{"denom":"ASSET7","index":"0.000011996876612297"},{"denom":"ASSET8","index":"0.000016395615103037"},{"denom":"ASSET9","index":"0.000006958318142576"}],"last_reward_claim_height":"163"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET10","shares":"6111596.016831238367005294","reward_history":[{"denom":"ASSET0","index":"0.000001698975992122"},{"denom":"ASSET1","index":"0.000014167905922226"},{"denom":"ASSET10","index":"0.000009870625403756"},{"denom":"ASSET11","index":"0.000013705415046027"},{"denom":"ASSET12","index":"0.000012342129737421"},{"denom":"ASSET13","index":"0.000004247439980305"},{"denom":"ASSET14","index":"0.000012803154715439"},{"denom":"ASSET15","index":"0.000009153801193103"},{"denom":"ASSET16","index":"0.000006381787732272"},{"denom":"ASSET17","index":"0.000004532557176567"},{"denom":"ASSET18","index":"0.000002159268021049"},{"denom":"ASSET2","index":"0.000004182207511237"},{"denom":"ASSET3","index":"0.000001223292032291"},{"denom":"ASSET4","index":"0.000011513897264989"},{"denom":"ASSET5","index":"0.000000949169072389"},{"denom":"ASSET6","index":"0.000003864840554987"},{"denom":"ASSET7","index":"0.000005918563906982"},{"denom":"ASSET8","index":"0.000007723084568158"},{"denom":"ASSET9","index":"0.000003335651311539"}],"last_reward_claim_height":"63"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET14","shares":"137401164.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001698975992122"},{"denom":"ASSET1","index":"0.000014167905922226"},{"denom":"ASSET10","index":"0.000009870625403756"},{"denom":"ASSET11","index":"0.000013705415046027"},{"denom":"ASSET12","index":"0.000012342129737421"},{"denom":"ASSET13","index":"0.000004247439980305"},{"denom":"ASSET14","index":"0.000012803154715439"},{"denom":"ASSET15","index":"0.000009153801193103"},{"denom":"ASSET16","index":"0.000006381787732272"},{"denom":"ASSET17","index":"0.000004532557176567"},{"denom":"ASSET18","index":"0.000002159268021049"},{"denom":"ASSET2","index":"0.000004182207511237"},{"denom":"ASSET3","index":"0.000001223292032291"},{"denom":"ASSET4","index":"0.000011513897264989"},{"denom":"ASSET5","index":"0.000000949169072389"},{"denom":"ASSET6","index":"0.000003864840554987"},{"denom":"ASSET7","index":"0.000005918563906982"},{"denom":"ASSET8","index":"0.000007723084568158"},{"denom":"ASSET9","index":"0.000003335651311539"}],"last_reward_claim_height":"98"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET18","shares":"814004792.818772607337173613","reward_history":[{"denom":"ASSET0","index":"0.000003402845442317"},{"denom":"ASSET1","index":"0.000028880571174740"},{"denom":"ASSET10","index":"0.000023090578471272"},{"denom":"ASSET11","index":"0.000028709364204549"},{"denom":"ASSET12","index":"0.000027394626213612"},{"denom":"ASSET13","index":"0.000009019217107214"},{"denom":"ASSET14","index":"0.000026344557012563"},{"denom":"ASSET15","index":"0.000020791017438004"},{"denom":"ASSET16","index":"0.000012808886991708"},{"denom":"ASSET17","index":"0.000010066951390727"},{"denom":"ASSET18","index":"0.000004153478710890"},{"denom":"ASSET2","index":"0.000008748954704305"},{"denom":"ASSET3","index":"0.000002428490976730"},{"denom":"ASSET4","index":"0.000023413646091842"},{"denom":"ASSET5","index":"0.000001891364101695"},{"denom":"ASSET6","index":"0.000007634563338572"},{"denom":"ASSET7","index":"0.000011996876612297"},{"denom":"ASSET8","index":"0.000016395615103037"},{"denom":"ASSET9","index":"0.000006958318142576"}],"last_reward_claim_height":"136"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET0","shares":"173806069.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001515088644413"},{"denom":"ASSET1","index":"0.000012634136557163"},{"denom":"ASSET10","index":"0.000008802109028204"},{"denom":"ASSET11","index":"0.000012222352143486"},{"denom":"ASSET12","index":"0.000011006111259210"},{"denom":"ASSET13","index":"0.000003787721611031"},{"denom":"ASSET14","index":"0.000011417895672887"},{"denom":"ASSET15","index":"0.000008163582563959"},{"denom":"ASSET16","index":"0.000005691138594924"},{"denom":"ASSET17","index":"0.000004042263453241"},{"denom":"ASSET18","index":"0.000001925135571111"},{"denom":"ASSET2","index":"0.000003729515797284"},{"denom":"ASSET3","index":"0.000001091141821893"},{"denom":"ASSET4","index":"0.000010267679293757"},{"denom":"ASSET5","index":"0.000000846156158061"},{"denom":"ASSET6","index":"0.000003446305419945"},{"denom":"ASSET7","index":"0.000005278485437758"},{"denom":"ASSET8","index":"0.000006887398378958"},{"denom":"ASSET9","index":"0.000002974577705544"}],"last_reward_claim_height":"121"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET4","shares":"612218364.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001515088644413"},{"denom":"ASSET1","index":"0.000012634136557163"},{"denom":"ASSET10","index":"0.000008802109028204"},{"denom":"ASSET11","index":"0.000012222352143486"},{"denom":"ASSET12","index":"0.000011006111259210"},{"denom":"ASSET13","index":"0.000003787721611031"},{"denom":"ASSET14","index":"0.000011417895672887"},{"denom":"ASSET15","index":"0.000008163582563959"},{"denom":"ASSET16","index":"0.000005691138594924"},{"denom":"ASSET17","index":"0.000004042263453241"},{"denom":"ASSET18","index":"0.000001925135571111"},{"denom":"ASSET2","index":"0.000003729515797284"},{"denom":"ASSET3","index":"0.000001091141821893"},{"denom":"ASSET4","index":"0.000010267679293757"},{"denom":"ASSET5","index":"0.000000846156158061"},{"denom":"ASSET6","index":"0.000003446305419945"},{"denom":"ASSET7","index":"0.000005278485437758"},{"denom":"ASSET8","index":"0.000006887398378958"},{"denom":"ASSET9","index":"0.000002974577705544"}],"last_reward_claim_height":"78"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET5","shares":"151381524.000000000009225606","reward_history":[],"last_reward_claim_height":"47"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET7","shares":"1000042051.880732471000000000","reward_history":[{"denom":"ASSET0","index":"0.000001515088644413"},{"denom":"ASSET1","index":"0.000012634136557163"},{"denom":"ASSET10","index":"0.000008802109028204"},{"denom":"ASSET11","index":"0.000012222352143486"},{"denom":"ASSET12","index":"0.000011006111259210"},{"denom":"ASSET13","index":"0.000003787721611031"},{"denom":"ASSET14","index":"0.000011417895672887"},{"denom":"ASSET15","index":"0.000008163582563959"},{"denom":"ASSET16","index":"0.000005691138594924"},{"denom":"ASSET17","index":"0.000004042263453241"},{"denom":"ASSET18","index":"0.000001925135571111"},{"denom":"ASSET2","index":"0.000003729515797284"},{"denom":"ASSET3","index":"0.000001091141821893"},{"denom":"ASSET4","index":"0.000010267679293757"},{"denom":"ASSET5","index":"0.000000846156158061"},{"denom":"ASSET6","index":"0.000003446305419945"},{"denom":"ASSET7","index":"0.000005278485437758"},{"denom":"ASSET8","index":"0.000006887398378958"},{"denom":"ASSET9","index":"0.000002974577705544"}],"last_reward_claim_height":"80"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET17","shares":"109585076.137193611295871993","reward_history":[{"denom":"ASSET0","index":"0.000004603569948956"},{"denom":"ASSET1","index":"0.000037657747163858"},{"denom":"ASSET10","index":"0.000032685028331762"},{"denom":"ASSET11","index":"0.000039168650778486"},{"denom":"ASSET12","index":"0.000037297135276037"},{"denom":"ASSET13","index":"0.000012641649341100"},{"denom":"ASSET14","index":"0.000036137365706128"},{"denom":"ASSET15","index":"0.000029334958625221"},{"denom":"ASSET16","index":"0.000016707823856618"},{"denom":"ASSET17","index":"0.000013546076882550"},{"denom":"ASSET18","index":"0.000005623085845845"},{"denom":"ASSET2","index":"0.000011368447004498"},{"denom":"ASSET3","index":"0.000003269493918411"},{"denom":"ASSET4","index":"0.000030874677880264"},{"denom":"ASSET5","index":"0.000002566798539209"},{"denom":"ASSET6","index":"0.000010480589665140"},{"denom":"ASSET7","index":"0.000016187212147994"},{"denom":"ASSET8","index":"0.000023330452982259"},{"denom":"ASSET9","index":"0.000009348542318023"}],"last_reward_claim_height":"199"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET8","shares":"1000053538.016397389000000000","reward_history":[{"denom":"ASSET0","index":"0.000003205609047354"},{"denom":"ASSET1","index":"0.000027188537481167"},{"denom":"ASSET10","index":"0.000021652723818266"},{"denom":"ASSET11","index":"0.000027005979418132"},{"denom":"ASSET12","index":"0.000025725923481940"},{"denom":"ASSET13","index":"0.000008480657418555"},{"denom":"ASSET14","index":"0.000024794508770079"},{"denom":"ASSET15","index":"0.000019512596409105"},{"denom":"ASSET16","index":"0.000012064653878282"},{"denom":"ASSET17","index":"0.000009453813052143"},{"denom":"ASSET18","index":"0.000003917117707327"},{"denom":"ASSET2","index":"0.000008230459966291"},{"denom":"ASSET3","index":"0.000002288306334262"},{"denom":"ASSET4","index":"0.000022043298344156"},{"denom":"ASSET5","index":"0.000001782083734802"},{"denom":"ASSET6","index":"0.000007194354204475"},{"denom":"ASSET7","index":"0.000011296497588433"},{"denom":"ASSET8","index":"0.000015417282169744"},{"denom":"ASSET9","index":"0.000006545936928299"}],"last_reward_claim_height":"147"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET10","shares":"214807046.902024382405898662","reward_history":[{"denom":"ASSET0","index":"0.000003205609047354"},{"denom":"ASSET1","index":"0.000027188537481167"},{"denom":"ASSET10","index":"0.000021652723818266"},{"denom":"ASSET11","index":"0.000027005979418132"},{"denom":"ASSET12","index":"0.000025725923481940"},{"denom":"ASSET13","index":"0.000008480657418555"},{"denom":"ASSET14","index":"0.000024794508770079"},{"denom":"ASSET15","index":"0.000019512596409105"},{"denom":"ASSET16","index":"0.000012064653878282"},{"denom":"ASSET17","index":"0.000009453813052143"},{"denom":"ASSET18","index":"0.000003917117707327"},{"denom":"ASSET2","index":"0.000008230459966291"},{"denom":"ASSET3","index":"0.000002288306334262"},{"denom":"ASSET4","index":"0.000022043298344156"},{"denom":"ASSET5","index":"0.000001782083734802"},{"denom":"ASSET6","index":"0.000007194354204475"},{"denom":"ASSET7","index":"0.000011296497588433"},{"denom":"ASSET8","index":"0.000015417282169744"},{"denom":"ASSET9","index":"0.000006545936928299"}],"last_reward_claim_height":"168"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET1","shares":"124582767.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004797932273463"},{"denom":"ASSET1","index":"0.000039207124912078"},{"denom":"ASSET10","index":"0.000034353978435423"},{"denom":"ASSET11","index":"0.000040920134682013"},{"denom":"ASSET12","index":"0.000039056395494217"},{"denom":"ASSET13","index":"0.000013231227958855"},{"denom":"ASSET14","index":"0.000037733679436848"},{"denom":"ASSET15","index":"0.000030793877081294"},{"denom":"ASSET16","index":"0.000017383221205873"},{"denom":"ASSET17","index":"0.000014177361978135"},{"denom":"ASSET18","index":"0.000005850206856034"},{"denom":"ASSET2","index":"0.000011848399796786"},{"denom":"ASSET3","index":"0.000003404782714627"},{"denom":"ASSET4","index":"0.000032159529107613"},{"denom":"ASSET5","index":"0.000002675260702048"},{"denom":"ASSET6","index":"0.000010924211970889"},{"denom":"ASSET7","index":"0.000016877439175785"},{"denom":"ASSET8","index":"0.000024434811349288"},{"denom":"ASSET9","index":"0.000009758176572436"}],"last_reward_claim_height":"189"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET7","shares":"108905343.778090269629384545","reward_history":[{"denom":"ASSET0","index":"0.000003075918064869"},{"denom":"ASSET1","index":"0.000026136551234120"},{"denom":"ASSET10","index":"0.000021080163895542"},{"denom":"ASSET11","index":"0.000026029570124972"},{"denom":"ASSET12","index":"0.000024929671095533"},{"denom":"ASSET13","index":"0.000008184754658215"},{"denom":"ASSET14","index":"0.000023857159923959"},{"denom":"ASSET15","index":"0.000018947606922173"},{"denom":"ASSET16","index":"0.000011579925359638"},{"denom":"ASSET17","index":"0.000009161388302193"},{"denom":"ASSET18","index":"0.000003743573486430"},{"denom":"ASSET2","index":"0.000007931762150876"},{"denom":"ASSET3","index":"0.000002193704696765"},{"denom":"ASSET4","index":"0.000021185602196482"},{"denom":"ASSET5","index":"0.000001709259314500"},{"denom":"ASSET6","index":"0.000006893942979866"},{"denom":"ASSET7","index":"0.000010853088527538"},{"denom":"ASSET8","index":"0.000014878712124324"},{"denom":"ASSET9","index":"0.000006307130542486"}],"last_reward_claim_height":"127"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET12","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001428935211366"},{"denom":"ASSET1","index":"0.000011914564237659"},{"denom":"ASSET10","index":"0.000008301159777028"},{"denom":"ASSET11","index":"0.000011525978642480"},{"denom":"ASSET12","index":"0.000010379209562159"},{"denom":"ASSET13","index":"0.000003571896453874"},{"denom":"ASSET14","index":"0.000010767353582799"},{"denom":"ASSET15","index":"0.000007698410529959"},{"denom":"ASSET16","index":"0.000005367338533420"},{"denom":"ASSET17","index":"0.000003811671429081"},{"denom":"ASSET18","index":"0.000001815754508385"},{"denom":"ASSET2","index":"0.000003517141210917"},{"denom":"ASSET3","index":"0.000001028868678146"},{"denom":"ASSET4","index":"0.000009682846512616"},{"denom":"ASSET5","index":"0.000000798366768278"},{"denom":"ASSET6","index":"0.000003249988614231"},{"denom":"ASSET7","index":"0.000004977428214621"},{"denom":"ASSET8","index":"0.000006495119908522"},{"denom":"ASSET9","index":"0.000002805323052474"}],"last_reward_claim_height":"92"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET4","shares":"272000322.732973256133704265","reward_history":[{"denom":"ASSET0","index":"0.000001556917620519"},{"denom":"ASSET1","index":"0.000012983455297040"},{"denom":"ASSET10","index":"0.000009045452282177"},{"denom":"ASSET11","index":"0.000012560119972943"},{"denom":"ASSET12","index":"0.000011310507230547"},{"denom":"ASSET13","index":"0.000003892294051298"},{"denom":"ASSET14","index":"0.000011733139339821"},{"denom":"ASSET15","index":"0.000008388649636483"},{"denom":"ASSET16","index":"0.000005848637691896"},{"denom":"ASSET17","index":"0.000004153889965857"},{"denom":"ASSET18","index":"0.000001978846514969"},{"denom":"ASSET2","index":"0.000003832520791251"},{"denom":"ASSET3","index":"0.000001120924429588"},{"denom":"ASSET4","index":"0.000010551035220538"},{"denom":"ASSET5","index":"0.000000869876737390"},{"denom":"ASSET6","index":"0.000003541389854081"},{"denom":"ASSET7","index":"0.000005423895938150"},{"denom":"ASSET8","index":"0.000007077857204393"},{"denom":"ASSET9","index":"0.000003056874840288"}],"last_reward_claim_height":"75"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET5","shares":"736888725.133541916459760190","reward_history":[{"denom":"ASSET0","index":"0.000003155948059833"},{"denom":"ASSET1","index":"0.000026789841893667"},{"denom":"ASSET10","index":"0.000021451154188244"},{"denom":"ASSET11","index":"0.000026640130662201"},{"denom":"ASSET12","index":"0.000025435769508540"},{"denom":"ASSET13","index":"0.000008370086775831"},{"denom":"ASSET14","index":"0.000024440800445484"},{"denom":"ASSET15","index":"0.000019309084443140"},{"denom":"ASSET16","index":"0.000011879786354964"},{"denom":"ASSET17","index":"0.000009347672781307"},{"denom":"ASSET18","index":"0.000003850232310781"},{"denom":"ASSET2","index":"0.000008118311447694"},{"denom":"ASSET3","index":"0.000002251791235916"},{"denom":"ASSET4","index":"0.000021717604836949"},{"denom":"ASSET5","index":"0.000001754185821919"},{"denom":"ASSET6","index":"0.000007079049104243"},{"denom":"ASSET7","index":"0.000011127710678967"},{"denom":"ASSET8","index":"0.000015216376583965"},{"denom":"ASSET9","index":"0.000006456241851980"}],"last_reward_claim_height":"179"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET12","shares":"269795334.999999997811467353","reward_history":[{"denom":"ASSET0","index":"0.000001556917620519"},{"denom":"ASSET1","index":"0.000012983455297040"},{"denom":"ASSET10","index":"0.000009045452282177"},{"denom":"ASSET11","index":"0.000012560119972943"},{"denom":"ASSET12","index":"0.000011310507230547"},{"denom":"ASSET13","index":"0.000003892294051298"},{"denom":"ASSET14","index":"0.000011733139339821"},{"denom":"ASSET15","index":"0.000008388649636483"},{"denom":"ASSET16","index":"0.000005848637691896"},{"denom":"ASSET17","index":"0.000004153889965857"},{"denom":"ASSET18","index":"0.000001978846514969"},{"denom":"ASSET2","index":"0.000003832520791251"},{"denom":"ASSET3","index":"0.000001120924429588"},{"denom":"ASSET4","index":"0.000010551035220538"},{"denom":"ASSET5","index":"0.000000869876737390"},{"denom":"ASSET6","index":"0.000003541389854081"},{"denom":"ASSET7","index":"0.000005423895938150"},{"denom":"ASSET8","index":"0.000007077857204393"},{"denom":"ASSET9","index":"0.000003056874840288"}],"last_reward_claim_height":"107"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET18","shares":"785171542.628117267250105028","reward_history":[{"denom":"ASSET0","index":"0.000003155948059833"},{"denom":"ASSET1","index":"0.000026789841893667"},{"denom":"ASSET10","index":"0.000021451154188244"},{"denom":"ASSET11","index":"0.000026640130662201"},{"denom":"ASSET12","index":"0.000025435769508540"},{"denom":"ASSET13","index":"0.000008370086775831"},{"denom":"ASSET14","index":"0.000024440800445484"},{"denom":"ASSET15","index":"0.000019309084443140"},{"denom":"ASSET16","index":"0.000011879786354964"},{"denom":"ASSET17","index":"0.000009347672781307"},{"denom":"ASSET18","index":"0.000003850232310781"},{"denom":"ASSET2","index":"0.000008118311447694"},{"denom":"ASSET3","index":"0.000002251791235916"},{"denom":"ASSET4","index":"0.000021717604836949"},{"denom":"ASSET5","index":"0.000001754185821919"},{"denom":"ASSET6","index":"0.000007079049104243"},{"denom":"ASSET7","index":"0.000011127710678967"},{"denom":"ASSET8","index":"0.000015216376583965"},{"denom":"ASSET9","index":"0.000006456241851980"}],"last_reward_claim_height":"154"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET11","shares":"330173458.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001629017625409"},{"denom":"ASSET1","index":"0.000013583500814952"},{"denom":"ASSET10","index":"0.000009463617777698"},{"denom":"ASSET11","index":"0.000013140742178302"},{"denom":"ASSET12","index":"0.000011833351109704"},{"denom":"ASSET13","index":"0.000004072544063523"},{"denom":"ASSET14","index":"0.000012276109746354"},{"denom":"ASSET15","index":"0.000008777202658616"},{"denom":"ASSET16","index":"0.000006119258515961"},{"denom":"ASSET17","index":"0.000004345439323848"},{"denom":"ASSET18","index":"0.000002070383939302"},{"denom":"ASSET2","index":"0.000004009889539469"},{"denom":"ASSET3","index":"0.000001172335761192"},{"denom":"ASSET4","index":"0.000011039727138351"},{"denom":"ASSET5","index":"0.000000910579082921"},{"denom":"ASSET6","index":"0.000003704970855739"},{"denom":"ASSET7","index":"0.000005675107556554"},{"denom":"ASSET8","index":"0.000007404372420450"},{"denom":"ASSET9","index":"0.000003198165372278"}],"last_reward_claim_height":"71"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET16","shares":"68732883.447047559377279685","reward_history":[{"denom":"ASSET0","index":"0.000003300821213878"},{"denom":"ASSET1","index":"0.000028019420341436"},{"denom":"ASSET10","index":"0.000022435320069293"},{"denom":"ASSET11","index":"0.000027862926397945"},{"denom":"ASSET12","index":"0.000026603097941410"},{"denom":"ASSET13","index":"0.000008754572034100"},{"denom":"ASSET14","index":"0.000025562969906661"},{"denom":"ASSET15","index":"0.000020195785636702"},{"denom":"ASSET16","index":"0.000012425527462944"},{"denom":"ASSET17","index":"0.000009776022796414"},{"denom":"ASSET18","index":"0.000004027118689751"},{"denom":"ASSET2","index":"0.000008490998812362"},{"denom":"ASSET3","index":"0.000002354733406852"},{"denom":"ASSET4","index":"0.000022715681634045"},{"denom":"ASSET5","index":"0.000001835160700580"},{"denom":"ASSET6","index":"0.000007403741836767"},{"denom":"ASSET7","index":"0.000011639103500846"},{"denom":"ASSET8","index":"0.000015914079386056"},{"denom":"ASSET9","index":"0.000006752470475547"}],"last_reward_claim_height":"144"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET16","shares":"399656573.999999999770809859","reward_history":[],"last_reward_claim_height":"32"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET0","shares":"168166429.941127098301267080","reward_history":[{"denom":"ASSET0","index":"0.000001693699328345"},{"denom":"ASSET1","index":"0.000014121235265065"},{"denom":"ASSET10","index":"0.000009838380374958"},{"denom":"ASSET11","index":"0.000013660499756586"},{"denom":"ASSET12","index":"0.000012301569616423"},{"denom":"ASSET13","index":"0.000004233563721295"},{"denom":"ASSET14","index":"0.000012760935925768"},{"denom":"ASSET15","index":"0.000009123658427184"},{"denom":"ASSET16","index":"0.000006361299175013"},{"denom":"ASSET17","index":"0.000004517672541531"},{"denom":"ASSET18","index":"0.000002151696438556"},{"denom":"ASSET2","index":"0.000004168526762446"},{"denom":"ASSET3","index":"0.000001219271828530"},{"denom":"ASSET4","index":"0.000011475942538822"},{"denom":"ASSET5","index":"0.000000946116601363"},{"denom":"ASSET6","index":"0.000003852241762569"},{"denom":"ASSET7","index":"0.000005899194467400"},{"denom":"ASSET8","index":"0.000007698322129037"},{"denom":"ASSET9","index":"0.000003325100096108"}],"last_reward_claim_height":"102"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET4","shares":"504974623.000000000000000000","reward_history":[],"last_reward_claim_height":"3"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET8","shares":"44853552.880692105561374676","reward_history":[{"denom":"ASSET0","index":"0.000003374964488748"},{"denom":"ASSET1","index":"0.000028642371697541"},{"denom":"ASSET10","index":"0.000022886358038922"},{"denom":"ASSET11","index":"0.000028469467846578"},{"denom":"ASSET12","index":"0.000027158021136678"},{"denom":"ASSET13","index":"0.000008943216545101"},{"denom":"ASSET14","index":"0.000026126056006670"},{"denom":"ASSET15","index":"0.000020609372613995"},{"denom":"ASSET16","index":"0.000012704733728960"},{"denom":"ASSET17","index":"0.000009980025667275"},{"denom":"ASSET18","index":"0.000004119620826099"},{"denom":"ASSET2","index":"0.000008675935346246"},{"denom":"ASSET3","index":"0.000002408702445844"},{"denom":"ASSET4","index":"0.000023220763838917"},{"denom":"ASSET5","index":"0.000001876440105393"},{"denom":"ASSET6","index":"0.000007572949563502"},{"denom":"ASSET7","index":"0.000011897934490553"},{"denom":"ASSET8","index":"0.000016258236310419"},{"denom":"ASSET9","index":"0.000006900426530312"}],"last_reward_claim_height":"163"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET16","shares":"355944923.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003374964488748"},{"denom":"ASSET1","index":"0.000028642371697541"},{"denom":"ASSET10","index":"0.000022886358038922"},{"denom":"ASSET11","index":"0.000028469467846578"},{"denom":"ASSET12","index":"0.000027158021136678"},{"denom":"ASSET13","index":"0.000008943216545101"},{"denom":"ASSET14","index":"0.000026126056006670"},{"denom":"ASSET15","index":"0.000020609372613995"},{"denom":"ASSET16","index":"0.000012704733728960"},{"denom":"ASSET17","index":"0.000009980025667275"},{"denom":"ASSET18","index":"0.000004119620826099"},{"denom":"ASSET2","index":"0.000008675935346246"},{"denom":"ASSET3","index":"0.000002408702445844"},{"denom":"ASSET4","index":"0.000023220763838917"},{"denom":"ASSET5","index":"0.000001876440105393"},{"denom":"ASSET6","index":"0.000007572949563502"},{"denom":"ASSET7","index":"0.000011897934490553"},{"denom":"ASSET8","index":"0.000016258236310419"},{"denom":"ASSET9","index":"0.000006900426530312"}],"last_reward_claim_height":"141"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET5","shares":"793845981.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003138779820137"},{"denom":"ASSET1","index":"0.000026638851971456"},{"denom":"ASSET10","index":"0.000021228354320839"},{"denom":"ASSET11","index":"0.000026463611656062"},{"denom":"ASSET12","index":"0.000025215335343685"},{"denom":"ASSET13","index":"0.000008309803474369"},{"denom":"ASSET14","index":"0.000024294710395367"},{"denom":"ASSET15","index":"0.000019126240972581"},{"denom":"ASSET16","index":"0.000011819368577720"},{"denom":"ASSET17","index":"0.000009266335892783"},{"denom":"ASSET18","index":"0.000003836527514127"},{"denom":"ASSET2","index":"0.000008063422586049"},{"denom":"ASSET3","index":"0.000002240662109326"},{"denom":"ASSET4","index":"0.000021597223596640"},{"denom":"ASSET5","index":"0.000001744975814867"},{"denom":"ASSET6","index":"0.000007047692266012"},{"denom":"ASSET7","index":"0.000011067413421526"},{"denom":"ASSET8","index":"0.000015106336478322"},{"denom":"ASSET9","index":"0.000006414890297355"}],"last_reward_claim_height":"153"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET9","shares":"663840364.211393742109974708","reward_history":[{"denom":"ASSET0","index":"0.000003135138573804"},{"denom":"ASSET1","index":"0.000026601246250396"},{"denom":"ASSET10","index":"0.000021147351718785"},{"denom":"ASSET11","index":"0.000026411423528042"},{"denom":"ASSET12","index":"0.000025139747174388"},{"denom":"ASSET13","index":"0.000008292603180789"},{"denom":"ASSET14","index":"0.000024256405788980"},{"denom":"ASSET15","index":"0.000019064302195638"},{"denom":"ASSET16","index":"0.000011804656377100"},{"denom":"ASSET17","index":"0.000009238224400983"},{"denom":"ASSET18","index":"0.000003834531376561"},{"denom":"ASSET2","index":"0.000008049169006780"},{"denom":"ASSET3","index":"0.000002239375819558"},{"denom":"ASSET4","index":"0.000021568278304468"},{"denom":"ASSET5","index":"0.000001743998311515"},{"denom":"ASSET6","index":"0.000007041675703373"},{"denom":"ASSET7","index":"0.000011051161098588"},{"denom":"ASSET8","index":"0.000015073103234225"},{"denom":"ASSET9","index":"0.000006402150772125"}],"last_reward_claim_height":"151"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET11","shares":"250972789.000000000000000000","reward_history":[],"last_reward_claim_height":"45"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET7","shares":"649116905.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003237426875283"},{"denom":"ASSET1","index":"0.000027451710154634"},{"denom":"ASSET10","index":"0.000021835512998164"},{"denom":"ASSET11","index":"0.000027259736654219"},{"denom":"ASSET12","index":"0.000025953768913429"},{"denom":"ASSET13","index":"0.000008559484494503"},{"denom":"ASSET14","index":"0.000025032165857410"},{"denom":"ASSET15","index":"0.000019681806512765"},{"denom":"ASSET16","index":"0.000012183244440341"},{"denom":"ASSET17","index":"0.000009537367134186"},{"denom":"ASSET18","index":"0.000003957397976948"},{"denom":"ASSET2","index":"0.000008307936552813"},{"denom":"ASSET3","index":"0.000002310954839376"},{"denom":"ASSET4","index":"0.000022256988295109"},{"denom":"ASSET5","index":"0.000001799896462688"},{"denom":"ASSET6","index":"0.000007265619632425"},{"denom":"ASSET7","index":"0.000011405823532836"},{"denom":"ASSET8","index":"0.000015559935461923"},{"denom":"ASSET9","index":"0.000006608212131764"}],"last_reward_claim_height":"127"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET14","shares":"888789815.000000000000000000","reward_history":[],"last_reward_claim_height":"39"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET16","shares":"226379232.946511977088309900","reward_history":[{"denom":"ASSET0","index":"0.000003237426875283"},{"denom":"ASSET1","index":"0.000027451710154634"},{"denom":"ASSET10","index":"0.000021835512998164"},{"denom":"ASSET11","index":"0.000027259736654219"},{"denom":"ASSET12","index":"0.000025953768913429"},{"denom":"ASSET13","index":"0.000008559484494503"},{"denom":"ASSET14","index":"0.000025032165857410"},{"denom":"ASSET15","index":"0.000019681806512765"},{"denom":"ASSET16","index":"0.000012183244440341"},{"denom":"ASSET17","index":"0.000009537367134186"},{"denom":"ASSET18","index":"0.000003957397976948"},{"denom":"ASSET2","index":"0.000008307936552813"},{"denom":"ASSET3","index":"0.000002310954839376"},{"denom":"ASSET4","index":"0.000022256988295109"},{"denom":"ASSET5","index":"0.000001799896462688"},{"denom":"ASSET6","index":"0.000007265619632425"},{"denom":"ASSET7","index":"0.000011405823532836"},{"denom":"ASSET8","index":"0.000015559935461923"},{"denom":"ASSET9","index":"0.000006608212131764"}],"last_reward_claim_height":"179"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET8","shares":"157153893.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003150995592381"},{"denom":"ASSET1","index":"0.000026735906318713"},{"denom":"ASSET10","index":"0.000021370928366269"},{"denom":"ASSET11","index":"0.000026577057751538"},{"denom":"ASSET12","index":"0.000025356196217934"},{"denom":"ASSET13","index":"0.000008349049177946"},{"denom":"ASSET14","index":"0.000024388519635576"},{"denom":"ASSET15","index":"0.000019243917228958"},{"denom":"ASSET16","index":"0.000011858566692713"},{"denom":"ASSET17","index":"0.000009317567603522"},{"denom":"ASSET18","index":"0.000003845362315572"},{"denom":"ASSET2","index":"0.000008099062572798"},{"denom":"ASSET3","index":"0.000002247710476517"},{"denom":"ASSET4","index":"0.000021674805285583"},{"denom":"ASSET5","index":"0.000001751018453776"},{"denom":"ASSET6","index":"0.000007067532365991"},{"denom":"ASSET7","index":"0.000011106766164564"},{"denom":"ASSET8","index":"0.000015177641578730"},{"denom":"ASSET9","index":"0.000006441123951375"}],"last_reward_claim_height":"124"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET0","shares":"1000020810.861425323000000000","reward_history":[{"denom":"ASSET0","index":"0.000004888700900011"},{"denom":"ASSET1","index":"0.000040037627149470"},{"denom":"ASSET10","index":"0.000034464755587246"},{"denom":"ASSET11","index":"0.000041511937107496"},{"denom":"ASSET12","index":"0.000039458475289926"},{"denom":"ASSET13","index":"0.000013374782972304"},{"denom":"ASSET14","index":"0.000038311177936897"},{"denom":"ASSET15","index":"0.000030963055044200"},{"denom":"ASSET16","index":"0.000017773913841661"},{"denom":"ASSET17","index":"0.000014337937998925"},{"denom":"ASSET18","index":"0.000005979482656036"},{"denom":"ASSET2","index":"0.000012077606357069"},{"denom":"ASSET3","index":"0.000003473452668855"},{"denom":"ASSET4","index":"0.000032809761939294"},{"denom":"ASSET5","index":"0.000002726114739137"},{"denom":"ASSET6","index":"0.000011126485408714"},{"denom":"ASSET7","index":"0.000017183485914772"},{"denom":"ASSET8","index":"0.000024666544388941"},{"denom":"ASSET9","index":"0.000009916680206380"}],"last_reward_claim_height":"194"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET12","shares":"489466072.000000020557575024","reward_history":[{"denom":"ASSET0","index":"0.000003300304206809"},{"denom":"ASSET1","index":"0.000027981868665615"},{"denom":"ASSET10","index":"0.000022221493016134"},{"denom":"ASSET11","index":"0.000027777532118325"},{"denom":"ASSET12","index":"0.000026428557640091"},{"denom":"ASSET13","index":"0.000008720047886627"},{"denom":"ASSET14","index":"0.000025512138164618"},{"denom":"ASSET15","index":"0.000020036362120252"},{"denom":"ASSET16","index":"0.000012421157074829"},{"denom":"ASSET17","index":"0.000009711490167791"},{"denom":"ASSET18","index":"0.000004036282970136"},{"denom":"ASSET2","index":"0.000008465189250700"},{"denom":"ASSET3","index":"0.000002356240815614"},{"denom":"ASSET4","index":"0.000022687774056492"},{"denom":"ASSET5","index":"0.000001835200922241"},{"denom":"ASSET6","index":"0.000007409270759323"},{"denom":"ASSET7","index":"0.000011627060915230"},{"denom":"ASSET8","index":"0.000015852235873304"},{"denom":"ASSET9","index":"0.000006733690564218"}],"last_reward_claim_height":"128"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET14","shares":"166534518.000000008524171116","reward_history":[{"denom":"ASSET0","index":"0.000003300304206809"},{"denom":"ASSET1","index":"0.000027981868665615"},{"denom":"ASSET10","index":"0.000022221493016134"},{"denom":"ASSET11","index":"0.000027777532118325"},{"denom":"ASSET12","index":"0.000026428557640091"},{"denom":"ASSET13","index":"0.000008720047886627"},{"denom":"ASSET14","index":"0.000025512138164618"},{"denom":"ASSET15","index":"0.000020036362120252"},{"denom":"ASSET16","index":"0.000012421157074829"},{"denom":"ASSET17","index":"0.000009711490167791"},{"denom":"ASSET18","index":"0.000004036282970136"},{"denom":"ASSET2","index":"0.000008465189250700"},{"denom":"ASSET3","index":"0.000002356240815614"},{"denom":"ASSET4","index":"0.000022687774056492"},{"denom":"ASSET5","index":"0.000001835200922241"},{"denom":"ASSET6","index":"0.000007409270759323"},{"denom":"ASSET7","index":"0.000011627060915230"},{"denom":"ASSET8","index":"0.000015852235873304"},{"denom":"ASSET9","index":"0.000006733690564218"}],"last_reward_claim_height":"135"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET17","shares":"456503576.321125456843925584","reward_history":[{"denom":"ASSET0","index":"0.000003300304206809"},{"denom":"ASSET1","index":"0.000027981868665615"},{"denom":"ASSET10","index":"0.000022221493016134"},{"denom":"ASSET11","index":"0.000027777532118325"},{"denom":"ASSET12","index":"0.000026428557640091"},{"denom":"ASSET13","index":"0.000008720047886627"},{"denom":"ASSET14","index":"0.000025512138164618"},{"denom":"ASSET15","index":"0.000020036362120252"},{"denom":"ASSET16","index":"0.000012421157074829"},{"denom":"ASSET17","index":"0.000009711490167791"},{"denom":"ASSET18","index":"0.000004036282970136"},{"denom":"ASSET2","index":"0.000008465189250700"},{"denom":"ASSET3","index":"0.000002356240815614"},{"denom":"ASSET4","index":"0.000022687774056492"},{"denom":"ASSET5","index":"0.000001835200922241"},{"denom":"ASSET6","index":"0.000007409270759323"},{"denom":"ASSET7","index":"0.000011627060915230"},{"denom":"ASSET8","index":"0.000015852235873304"},{"denom":"ASSET9","index":"0.000006733690564218"}],"last_reward_claim_height":"178"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET1","shares":"299871228.154541849448662160","reward_history":[{"denom":"ASSET0","index":"0.000001726734301691"},{"denom":"ASSET1","index":"0.000014395988805148"},{"denom":"ASSET10","index":"0.000010029746380297"},{"denom":"ASSET11","index":"0.000013926529312304"},{"denom":"ASSET12","index":"0.000012540835608608"},{"denom":"ASSET13","index":"0.000004315874534955"},{"denom":"ASSET14","index":"0.000013009526126035"},{"denom":"ASSET15","index":"0.000009301526659210"},{"denom":"ASSET16","index":"0.000006485154189852"},{"denom":"ASSET17","index":"0.000004605778267637"},{"denom":"ASSET18","index":"0.000002193886868281"},{"denom":"ASSET2","index":"0.000004249742648985"},{"denom":"ASSET3","index":"0.000001243048763609"},{"denom":"ASSET4","index":"0.000011699192013329"},{"denom":"ASSET5","index":"0.000000964679662201"},{"denom":"ASSET6","index":"0.000003926772973318"},{"denom":"ASSET7","index":"0.000006014156746171"},{"denom":"ASSET8","index":"0.000007847778630999"},{"denom":"ASSET9","index":"0.000003389643643667"}],"last_reward_claim_height":"70"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET3","shares":"20598155.036798732136269461","reward_history":[{"denom":"ASSET0","index":"0.000001436232590899"},{"denom":"ASSET1","index":"0.000011976183987962"},{"denom":"ASSET10","index":"0.000008344549248442"},{"denom":"ASSET11","index":"0.000011585862202045"},{"denom":"ASSET12","index":"0.000010432581326504"},{"denom":"ASSET13","index":"0.000003589949888597"},{"denom":"ASSET14","index":"0.000010822903112421"},{"denom":"ASSET15","index":"0.000007738224144105"},{"denom":"ASSET16","index":"0.000005395030251301"},{"denom":"ASSET17","index":"0.000003831216753031"},{"denom":"ASSET18","index":"0.000001825291199515"},{"denom":"ASSET2","index":"0.000003535633264667"},{"denom":"ASSET3","index":"0.000001033279031975"},{"denom":"ASSET4","index":"0.000009732781101914"},{"denom":"ASSET5","index":"0.000000802117585946"},{"denom":"ASSET6","index":"0.000003266576499617"},{"denom":"ASSET7","index":"0.000005003445288083"},{"denom":"ASSET8","index":"0.000006528100290032"},{"denom":"ASSET9","index":"0.000002819411735168"}],"last_reward_claim_height":"120"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET7","shares":"397188447.817942160486638470","reward_history":[{"denom":"ASSET0","index":"0.000004616748816299"},{"denom":"ASSET1","index":"0.000037755207818878"},{"denom":"ASSET10","index":"0.000032938660396482"},{"denom":"ASSET11","index":"0.000039335391556387"},{"denom":"ASSET12","index":"0.000037512612148171"},{"denom":"ASSET13","index":"0.000012705893060308"},{"denom":"ASSET14","index":"0.000036276532453011"},{"denom":"ASSET15","index":"0.000029538855596635"},{"denom":"ASSET16","index":"0.000016743506271421"},{"denom":"ASSET17","index":"0.000013621299864319"},{"denom":"ASSET18","index":"0.000005632683728718"},{"denom":"ASSET2","index":"0.000011406087221492"},{"denom":"ASSET3","index":"0.000003276282345046"},{"denom":"ASSET4","index":"0.000030959298045710"},{"denom":"ASSET5","index":"0.000002573921522052"},{"denom":"ASSET6","index":"0.000010509111697413"},{"denom":"ASSET7","index":"0.000016237462090306"},{"denom":"ASSET8","index":"0.000023455836171312"},{"denom":"ASSET9","index":"0.000009384135429607"}],"last_reward_claim_height":"196"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET18","shares":"211882235.170054665351641220","reward_history":[{"denom":"ASSET0","index":"0.000003006064648013"},{"denom":"ASSET1","index":"0.000025531157590212"},{"denom":"ASSET10","index":"0.000020524407173472"},{"denom":"ASSET11","index":"0.000025409258384489"},{"denom":"ASSET12","index":"0.000024300714605646"},{"denom":"ASSET13","index":"0.000007986286383048"},{"denom":"ASSET14","index":"0.000023298685931189"},{"denom":"ASSET15","index":"0.000018459726056254"},{"denom":"ASSET16","index":"0.000011316095008653"},{"denom":"ASSET17","index":"0.000008930145684163"},{"denom":"ASSET18","index":"0.000003662445744281"},{"denom":"ASSET2","index":"0.000007743120539446"},{"denom":"ASSET3","index":"0.000002143639104141"},{"denom":"ASSET4","index":"0.000020695936675740"},{"denom":"ASSET5","index":"0.000001670457298921"},{"denom":"ASSET6","index":"0.000006739935351518"},{"denom":"ASSET7","index":"0.000010603283023237"},{"denom":"ASSET8","index":"0.000014518439118465"},{"denom":"ASSET9","index":"0.000006156725809403"}],"last_reward_claim_height":"153"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET14","shares":"216843885.334872914616988656","reward_history":[{"denom":"ASSET0","index":"0.000002611689387046"},{"denom":"ASSET1","index":"0.000022118950462866"},{"denom":"ASSET10","index":"0.000017388824351878"},{"denom":"ASSET11","index":"0.000021911701626113"},{"denom":"ASSET12","index":"0.000020757567192719"},{"denom":"ASSET13","index":"0.000006870825151743"},{"denom":"ASSET14","index":"0.000020152250667519"},{"denom":"ASSET15","index":"0.000015711809347683"},{"denom":"ASSET16","index":"0.000009830001439303"},{"denom":"ASSET17","index":"0.000007627368499381"},{"denom":"ASSET18","index":"0.000003205559295774"},{"denom":"ASSET2","index":"0.000006678615536452"},{"denom":"ASSET3","index":"0.000001865584989735"},{"denom":"ASSET4","index":"0.000017938012267073"},{"denom":"ASSET5","index":"0.000001453547274796"},{"denom":"ASSET6","index":"0.000005870892100855"},{"denom":"ASSET7","index":"0.000009195154067126"},{"denom":"ASSET8","index":"0.000012492245582088"},{"denom":"ASSET9","index":"0.000005313335607946"}],"last_reward_claim_height":"183"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET13","shares":"1256620256.676674055359675618","reward_history":[{"denom":"ASSET0","index":"0.000003939201132718"},{"denom":"ASSET1","index":"0.000032105787247280"},{"denom":"ASSET10","index":"0.000028804547526948"},{"denom":"ASSET11","index":"0.000033799593882103"},{"denom":"ASSET12","index":"0.000032449700596289"},{"denom":"ASSET13","index":"0.000010978331571892"},{"denom":"ASSET14","index":"0.000031126082637172"},{"denom":"ASSET15","index":"0.000025740142538588"},{"denom":"ASSET16","index":"0.000014208856557445"},{"denom":"ASSET17","index":"0.000011764407155003"},{"denom":"ASSET18","index":"0.000004780051086265"},{"denom":"ASSET2","index":"0.000009727516832171"},{"denom":"ASSET3","index":"0.000002790647417131"},{"denom":"ASSET4","index":"0.000026364763247740"},{"denom":"ASSET5","index":"0.000002196158070158"},{"denom":"ASSET6","index":"0.000008970946330284"},{"denom":"ASSET7","index":"0.000013870661008242"},{"denom":"ASSET8","index":"0.000020307763806499"},{"denom":"ASSET9","index":"0.000008041754758616"}],"last_reward_claim_height":"186"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET0","shares":"148974306.120594180168694680","reward_history":[{"denom":"ASSET0","index":"0.000001198976216272"},{"denom":"ASSET1","index":"0.000010001315625623"},{"denom":"ASSET10","index":"0.000006967712250892"},{"denom":"ASSET11","index":"0.000009674322112094"},{"denom":"ASSET12","index":"0.000008711677656379"},{"denom":"ASSET13","index":"0.000002997949876371"},{"denom":"ASSET14","index":"0.000009037652498526"},{"denom":"ASSET15","index":"0.000006461432574183"},{"denom":"ASSET16","index":"0.000004504564849919"},{"denom":"ASSET17","index":"0.000003199646809949"},{"denom":"ASSET18","index":"0.000001523932387037"},{"denom":"ASSET2","index":"0.000002952109664194"},{"denom":"ASSET3","index":"0.000000862814660308"},{"denom":"ASSET4","index":"0.000008126960283277"},{"denom":"ASSET5","index":"0.000000670285769165"},{"denom":"ASSET6","index":"0.000002728001960218"},{"denom":"ASSET7","index":"0.000004177571336390"},{"denom":"ASSET8","index":"0.000005451929234909"},{"denom":"ASSET9","index":"0.000002354149563130"}],"last_reward_claim_height":"79"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET7","shares":"716533712.000000000000000000","reward_history":[],"last_reward_claim_height":"12"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET13","shares":"746438187.000000000000000000","reward_history":[],"last_reward_claim_height":"43"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET15","shares":"718018350.875657950419782448","reward_history":[{"denom":"ASSET0","index":"0.000002792091306062"},{"denom":"ASSET1","index":"0.000023760392481519"},{"denom":"ASSET10","index":"0.000019330735214415"},{"denom":"ASSET11","index":"0.000023705763948043"},{"denom":"ASSET12","index":"0.000022788595153270"},{"denom":"ASSET13","index":"0.000007460432475948"},{"denom":"ASSET14","index":"0.000021701401606991"},{"denom":"ASSET15","index":"0.000017344296121870"},{"denom":"ASSET16","index":"0.000010515175863945"},{"denom":"ASSET17","index":"0.000008375559402161"},{"denom":"ASSET18","index":"0.000003388923471278"},{"denom":"ASSET2","index":"0.000007222909907971"},{"denom":"ASSET3","index":"0.000001989926471838"},{"denom":"ASSET4","index":"0.000019255294602933"},{"denom":"ASSET5","index":"0.000001551437823125"},{"denom":"ASSET6","index":"0.000006253588147261"},{"denom":"ASSET7","index":"0.000009862028954195"},{"denom":"ASSET8","index":"0.000013562244421912"},{"denom":"ASSET9","index":"0.000005741841810541"}],"last_reward_claim_height":"136"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET0","shares":"720419941.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001507638919625"},{"denom":"ASSET1","index":"0.000012569401049902"},{"denom":"ASSET10","index":"0.000008757228353136"},{"denom":"ASSET11","index":"0.000012160184771718"},{"denom":"ASSET12","index":"0.000010949766096248"},{"denom":"ASSET13","index":"0.000003769097299062"},{"denom":"ASSET14","index":"0.000011358982374432"},{"denom":"ASSET15","index":"0.000008124020006893"},{"denom":"ASSET16","index":"0.000005660107258249"},{"denom":"ASSET17","index":"0.000004018934605743"},{"denom":"ASSET18","index":"0.000001912547658039"},{"denom":"ASSET2","index":"0.000003708791742277"},{"denom":"ASSET3","index":"0.000001085500022130"},{"denom":"ASSET4","index":"0.000010217484335287"},{"denom":"ASSET5","index":"0.000000839970255220"},{"denom":"ASSET6","index":"0.000003428801657204"},{"denom":"ASSET7","index":"0.000005250890980065"},{"denom":"ASSET8","index":"0.000006853295774638"},{"denom":"ASSET9","index":"0.000002959279822235"}],"last_reward_claim_height":"86"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET4","shares":"667917735.491769265858125576","reward_history":[{"denom":"ASSET0","index":"0.000003131246414749"},{"denom":"ASSET1","index":"0.000026589761836242"},{"denom":"ASSET10","index":"0.000021355242603721"},{"denom":"ASSET11","index":"0.000026458316408852"},{"denom":"ASSET12","index":"0.000025293988029420"},{"denom":"ASSET13","index":"0.000008316673174883"},{"denom":"ASSET14","index":"0.000024263343459355"},{"denom":"ASSET15","index":"0.000019213959771091"},{"denom":"ASSET16","index":"0.000011784585795875"},{"denom":"ASSET17","index":"0.000009292893547134"},{"denom":"ASSET18","index":"0.000003813004198036"},{"denom":"ASSET2","index":"0.000008060944762894"},{"denom":"ASSET3","index":"0.000002234070199415"},{"denom":"ASSET4","index":"0.000021557233504015"},{"denom":"ASSET5","index":"0.000001738116490695"},{"denom":"ASSET6","index":"0.000007021386599103"},{"denom":"ASSET7","index":"0.000011043212117572"},{"denom":"ASSET8","index":"0.000015117900391662"},{"denom":"ASSET9","index":"0.000006411442995536"}],"last_reward_claim_height":"169"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET8","shares":"798039087.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001507638919625"},{"denom":"ASSET1","index":"0.000012569401049902"},{"denom":"ASSET10","index":"0.000008757228353136"},{"denom":"ASSET11","index":"0.000012160184771718"},{"denom":"ASSET12","index":"0.000010949766096248"},{"denom":"ASSET13","index":"0.000003769097299062"},{"denom":"ASSET14","index":"0.000011358982374432"},{"denom":"ASSET15","index":"0.000008124020006893"},{"denom":"ASSET16","index":"0.000005660107258249"},{"denom":"ASSET17","index":"0.000004018934605743"},{"denom":"ASSET18","index":"0.000001912547658039"},{"denom":"ASSET2","index":"0.000003708791742277"},{"denom":"ASSET3","index":"0.000001085500022130"},{"denom":"ASSET4","index":"0.000010217484335287"},{"denom":"ASSET5","index":"0.000000839970255220"},{"denom":"ASSET6","index":"0.000003428801657204"},{"denom":"ASSET7","index":"0.000005250890980065"},{"denom":"ASSET8","index":"0.000006853295774638"},{"denom":"ASSET9","index":"0.000002959279822235"}],"last_reward_claim_height":"67"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET17","shares":"422166416.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001507638919625"},{"denom":"ASSET1","index":"0.000012569401049902"},{"denom":"ASSET10","index":"0.000008757228353136"},{"denom":"ASSET11","index":"0.000012160184771718"},{"denom":"ASSET12","index":"0.000010949766096248"},{"denom":"ASSET13","index":"0.000003769097299062"},{"denom":"ASSET14","index":"0.000011358982374432"},{"denom":"ASSET15","index":"0.000008124020006893"},{"denom":"ASSET16","index":"0.000005660107258249"},{"denom":"ASSET17","index":"0.000004018934605743"},{"denom":"ASSET18","index":"0.000001912547658039"},{"denom":"ASSET2","index":"0.000003708791742277"},{"denom":"ASSET3","index":"0.000001085500022130"},{"denom":"ASSET4","index":"0.000010217484335287"},{"denom":"ASSET5","index":"0.000000839970255220"},{"denom":"ASSET6","index":"0.000003428801657204"},{"denom":"ASSET7","index":"0.000005250890980065"},{"denom":"ASSET8","index":"0.000006853295774638"},{"denom":"ASSET9","index":"0.000002959279822235"}],"last_reward_claim_height":"111"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET1","shares":"771142522.999999996000000000","reward_history":[],"last_reward_claim_height":"34"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET3","shares":"212687982.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003070496060295"},{"denom":"ASSET1","index":"0.000026054009108675"},{"denom":"ASSET10","index":"0.000020821706468932"},{"denom":"ASSET11","index":"0.000025897661631707"},{"denom":"ASSET12","index":"0.000024706407518076"},{"denom":"ASSET13","index":"0.000008135385272267"},{"denom":"ASSET14","index":"0.000023765921524780"},{"denom":"ASSET15","index":"0.000018749935123185"},{"denom":"ASSET16","index":"0.000011556337558875"},{"denom":"ASSET17","index":"0.000009079232430047"},{"denom":"ASSET18","index":"0.000003747682066764"},{"denom":"ASSET2","index":"0.000007892419371659"},{"denom":"ASSET3","index":"0.000002191201298955"},{"denom":"ASSET4","index":"0.000021122052487200"},{"denom":"ASSET5","index":"0.000001706992646915"},{"denom":"ASSET6","index":"0.000006888142834266"},{"denom":"ASSET7","index":"0.000010823268476718"},{"denom":"ASSET8","index":"0.000014789657857476"},{"denom":"ASSET9","index":"0.000006276911852268"}],"last_reward_claim_height":"154"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET1","shares":"128048617.033797454622156096","reward_history":[{"denom":"ASSET0","index":"0.000001679222100186"},{"denom":"ASSET1","index":"0.000013999028794594"},{"denom":"ASSET10","index":"0.000009753438641601"},{"denom":"ASSET11","index":"0.000013542280383343"},{"denom":"ASSET12","index":"0.000012194769233410"},{"denom":"ASSET13","index":"0.000004196505199295"},{"denom":"ASSET14","index":"0.000012650484277214"},{"denom":"ASSET15","index":"0.000009045065257184"},{"denom":"ASSET16","index":"0.000006306124840851"},{"denom":"ASSET17","index":"0.000004478614512126"},{"denom":"ASSET18","index":"0.000002133387092820"},{"denom":"ASSET2","index":"0.000004132436417626"},{"denom":"ASSET3","index":"0.000001208523228411"},{"denom":"ASSET4","index":"0.000011376342215965"},{"denom":"ASSET5","index":"0.000000938297641211"},{"denom":"ASSET6","index":"0.000003818809397684"},{"denom":"ASSET7","index":"0.000005848343062154"},{"denom":"ASSET8","index":"0.000007631418590690"},{"denom":"ASSET9","index":"0.000003295925469872"}],"last_reward_claim_height":"67"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET8","shares":"996565539.000000009965655390","reward_history":[],"last_reward_claim_height":"30"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET15","shares":"586387250.544902504778866112","reward_history":[{"denom":"ASSET0","index":"0.000003295755498274"},{"denom":"ASSET1","index":"0.000027960125957180"},{"denom":"ASSET10","index":"0.000022298091456525"},{"denom":"ASSET11","index":"0.000027779779629540"},{"denom":"ASSET12","index":"0.000026478335493542"},{"denom":"ASSET13","index":"0.000008724566942758"},{"denom":"ASSET14","index":"0.000025500389224880"},{"denom":"ASSET15","index":"0.000020088119547171"},{"denom":"ASSET16","index":"0.000012404652968467"},{"denom":"ASSET17","index":"0.000009730254100732"},{"denom":"ASSET18","index":"0.000004025857251145"},{"denom":"ASSET2","index":"0.000008465992991141"},{"denom":"ASSET3","index":"0.000002352288079447"},{"denom":"ASSET4","index":"0.000022667879187178"},{"denom":"ASSET5","index":"0.000001832649164275"},{"denom":"ASSET6","index":"0.000007396215489940"},{"denom":"ASSET7","index":"0.000011616026271508"},{"denom":"ASSET8","index":"0.000015861127767022"},{"denom":"ASSET9","index":"0.000006733269226830"}],"last_reward_claim_height":"164"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET7","shares":"45734305.576684728490516232","reward_history":[{"denom":"ASSET0","index":"0.000003140601357292"},{"denom":"ASSET1","index":"0.000026678854887219"},{"denom":"ASSET10","index":"0.000021467437308134"},{"denom":"ASSET11","index":"0.000026557150856893"},{"denom":"ASSET12","index":"0.000025409189778577"},{"denom":"ASSET13","index":"0.000008348678217638"},{"denom":"ASSET14","index":"0.000024348515645151"},{"denom":"ASSET15","index":"0.000019305257093893"},{"denom":"ASSET16","index":"0.000011824039078448"},{"denom":"ASSET17","index":"0.000009337874135725"},{"denom":"ASSET18","index":"0.000003825021517438"},{"denom":"ASSET2","index":"0.000008092644314938"},{"denom":"ASSET3","index":"0.000002240059115813"},{"denom":"ASSET4","index":"0.000021626536887159"},{"denom":"ASSET5","index":"0.000001745574888449"},{"denom":"ASSET6","index":"0.000007040920669072"},{"denom":"ASSET7","index":"0.000011079696231301"},{"denom":"ASSET8","index":"0.000015176664815864"},{"denom":"ASSET9","index":"0.000006434669973810"}],"last_reward_claim_height":"148"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET12","shares":"153656706.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003140601357292"},{"denom":"ASSET1","index":"0.000026678854887219"},{"denom":"ASSET10","index":"0.000021467437308134"},{"denom":"ASSET11","index":"0.000026557150856893"},{"denom":"ASSET12","index":"0.000025409189778577"},{"denom":"ASSET13","index":"0.000008348678217638"},{"denom":"ASSET14","index":"0.000024348515645151"},{"denom":"ASSET15","index":"0.000019305257093893"},{"denom":"ASSET16","index":"0.000011824039078448"},{"denom":"ASSET17","index":"0.000009337874135725"},{"denom":"ASSET18","index":"0.000003825021517438"},{"denom":"ASSET2","index":"0.000008092644314938"},{"denom":"ASSET3","index":"0.000002240059115813"},{"denom":"ASSET4","index":"0.000021626536887159"},{"denom":"ASSET5","index":"0.000001745574888449"},{"denom":"ASSET6","index":"0.000007040920669072"},{"denom":"ASSET7","index":"0.000011079696231301"},{"denom":"ASSET8","index":"0.000015176664815864"},{"denom":"ASSET9","index":"0.000006434669973810"}],"last_reward_claim_height":"152"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET14","shares":"338000323.527562210567764140","reward_history":[{"denom":"ASSET0","index":"0.000003140601357292"},{"denom":"ASSET1","index":"0.000026678854887219"},{"denom":"ASSET10","index":"0.000021467437308134"},{"denom":"ASSET11","index":"0.000026557150856893"},{"denom":"ASSET12","index":"0.000025409189778577"},{"denom":"ASSET13","index":"0.000008348678217638"},{"denom":"ASSET14","index":"0.000024348515645151"},{"denom":"ASSET15","index":"0.000019305257093893"},{"denom":"ASSET16","index":"0.000011824039078448"},{"denom":"ASSET17","index":"0.000009337874135725"},{"denom":"ASSET18","index":"0.000003825021517438"},{"denom":"ASSET2","index":"0.000008092644314938"},{"denom":"ASSET3","index":"0.000002240059115813"},{"denom":"ASSET4","index":"0.000021626536887159"},{"denom":"ASSET5","index":"0.000001745574888449"},{"denom":"ASSET6","index":"0.000007040920669072"},{"denom":"ASSET7","index":"0.000011079696231301"},{"denom":"ASSET8","index":"0.000015176664815864"},{"denom":"ASSET9","index":"0.000006434669973810"}],"last_reward_claim_height":"176"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET0","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001385039568420"},{"denom":"ASSET1","index":"0.000011547928050470"},{"denom":"ASSET10","index":"0.000008045290512347"},{"denom":"ASSET11","index":"0.000011171268467624"},{"denom":"ASSET12","index":"0.000010059084660007"},{"denom":"ASSET13","index":"0.000003461116009305"},{"denom":"ASSET14","index":"0.000010435744242853"},{"denom":"ASSET15","index":"0.000007461023285412"},{"denom":"ASSET16","index":"0.000005202054396163"},{"denom":"ASSET17","index":"0.000003694427456948"},{"denom":"ASSET18","index":"0.000001759721935608"},{"denom":"ASSET2","index":"0.000003408719794369"},{"denom":"ASSET3","index":"0.000000996516691625"},{"denom":"ASSET4","index":"0.000009383865512804"},{"denom":"ASSET5","index":"0.000000774079930102"},{"denom":"ASSET6","index":"0.000003149704543173"},{"denom":"ASSET7","index":"0.000004824406205487"},{"denom":"ASSET8","index":"0.000006294466047200"},{"denom":"ASSET9","index":"0.000002718671529731"}],"last_reward_claim_height":"100"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET8","shares":"699298056.000000000000000000","reward_history":[],"last_reward_claim_height":"55"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET9","shares":"672781236.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002978674281858"},{"denom":"ASSET1","index":"0.000025310372422717"},{"denom":"ASSET10","index":"0.000020411345436720"},{"denom":"ASSET11","index":"0.000025206262983954"},{"denom":"ASSET12","index":"0.000024139567910062"},{"denom":"ASSET13","index":"0.000007924745788344"},{"denom":"ASSET14","index":"0.000023102636423037"},{"denom":"ASSET15","index":"0.000018346974201526"},{"denom":"ASSET16","index":"0.000011213830154915"},{"denom":"ASSET17","index":"0.000008871351161454"},{"denom":"ASSET18","index":"0.000003625142276595"},{"denom":"ASSET2","index":"0.000007680838181843"},{"denom":"ASSET3","index":"0.000002123796319816"},{"denom":"ASSET4","index":"0.000020514843977806"},{"denom":"ASSET5","index":"0.000001655567492872"},{"denom":"ASSET6","index":"0.000006676037052519"},{"denom":"ASSET7","index":"0.000010510115662832"},{"denom":"ASSET8","index":"0.000014407133239162"},{"denom":"ASSET9","index":"0.000006107008804836"}],"last_reward_claim_height":"168"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET1","shares":"282093248.641671421071377457","reward_history":[{"denom":"ASSET0","index":"0.000003115193601728"},{"denom":"ASSET1","index":"0.000026433576226141"},{"denom":"ASSET10","index":"0.000021120836274624"},{"denom":"ASSET11","index":"0.000026274076149270"},{"denom":"ASSET12","index":"0.000025063206789151"},{"denom":"ASSET13","index":"0.000008253838888439"},{"denom":"ASSET14","index":"0.000024111622086359"},{"denom":"ASSET15","index":"0.000019020166052921"},{"denom":"ASSET16","index":"0.000011725264187843"},{"denom":"ASSET17","index":"0.000009210335248597"},{"denom":"ASSET18","index":"0.000003802618681808"},{"denom":"ASSET2","index":"0.000008007094168018"},{"denom":"ASSET3","index":"0.000002223045227271"},{"denom":"ASSET4","index":"0.000021430343290469"},{"denom":"ASSET5","index":"0.000001731871182363"},{"denom":"ASSET6","index":"0.000006989160352022"},{"denom":"ASSET7","index":"0.000010981276608696"},{"denom":"ASSET8","index":"0.000015004007461071"},{"denom":"ASSET9","index":"0.000006368316319391"}],"last_reward_claim_height":"157"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET11","shares":"571280143.000000000000000000","reward_history":[],"last_reward_claim_height":"63"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET5","shares":"709662.000000000000000000","reward_history":[],"last_reward_claim_height":"47"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET17","shares":"693485037.000000000000000000","reward_history":[],"last_reward_claim_height":"24"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET5","shares":"96680734.856770314001776328","reward_history":[{"denom":"ASSET0","index":"0.000003113134051861"},{"denom":"ASSET1","index":"0.000026415094552464"},{"denom":"ASSET10","index":"0.000021090707465492"},{"denom":"ASSET11","index":"0.000026251548228726"},{"denom":"ASSET12","index":"0.000025034408517114"},{"denom":"ASSET13","index":"0.000008245703890405"},{"denom":"ASSET14","index":"0.000024093200316600"},{"denom":"ASSET15","index":"0.000018995578271326"},{"denom":"ASSET16","index":"0.000011717396138812"},{"denom":"ASSET17","index":"0.000009199501798709"},{"denom":"ASSET18","index":"0.000003801350346824"},{"denom":"ASSET2","index":"0.000007999912620195"},{"denom":"ASSET3","index":"0.000002221641081089"},{"denom":"ASSET4","index":"0.000021415082747190"},{"denom":"ASSET5","index":"0.000001730738444371"},{"denom":"ASSET6","index":"0.000006985361363625"},{"denom":"ASSET7","index":"0.000010973556930807"},{"denom":"ASSET8","index":"0.000014990236718633"},{"denom":"ASSET9","index":"0.000006362695679170"}],"last_reward_claim_height":"171"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET8","shares":"625585470.823410062130572532","reward_history":[{"denom":"ASSET0","index":"0.000001571496317510"},{"denom":"ASSET1","index":"0.000013101483241955"},{"denom":"ASSET10","index":"0.000009127906315185"},{"denom":"ASSET11","index":"0.000012674221268720"},{"denom":"ASSET12","index":"0.000011413128948859"},{"denom":"ASSET13","index":"0.000003927726401627"},{"denom":"ASSET14","index":"0.000011839579408375"},{"denom":"ASSET15","index":"0.000008464899606481"},{"denom":"ASSET16","index":"0.000005901733523932"},{"denom":"ASSET17","index":"0.000004191468360414"},{"denom":"ASSET18","index":"0.000001996729506447"},{"denom":"ASSET2","index":"0.000003867268629536"},{"denom":"ASSET3","index":"0.000001131250124766"},{"denom":"ASSET4","index":"0.000010647059997798"},{"denom":"ASSET5","index":"0.000000878057844331"},{"denom":"ASSET6","index":"0.000003573906419993"},{"denom":"ASSET7","index":"0.000005473254280118"},{"denom":"ASSET8","index":"0.000007142132243950"},{"denom":"ASSET9","index":"0.000003084563647228"}],"last_reward_claim_height":"109"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET13","shares":"530189616.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003113134051861"},{"denom":"ASSET1","index":"0.000026415094552464"},{"denom":"ASSET10","index":"0.000021090707465492"},{"denom":"ASSET11","index":"0.000026251548228726"},{"denom":"ASSET12","index":"0.000025034408517114"},{"denom":"ASSET13","index":"0.000008245703890405"},{"denom":"ASSET14","index":"0.000024093200316600"},{"denom":"ASSET15","index":"0.000018995578271326"},{"denom":"ASSET16","index":"0.000011717396138812"},{"denom":"ASSET17","index":"0.000009199501798709"},{"denom":"ASSET18","index":"0.000003801350346824"},{"denom":"ASSET2","index":"0.000007999912620195"},{"denom":"ASSET3","index":"0.000002221641081089"},{"denom":"ASSET4","index":"0.000021415082747190"},{"denom":"ASSET5","index":"0.000001730738444371"},{"denom":"ASSET6","index":"0.000006985361363625"},{"denom":"ASSET7","index":"0.000010973556930807"},{"denom":"ASSET8","index":"0.000014990236718633"},{"denom":"ASSET9","index":"0.000006362695679170"}],"last_reward_claim_height":"147"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET14","shares":"310465066.000000000000000000","reward_history":[],"last_reward_claim_height":"47"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET10","shares":"355213974.000000000000000000","reward_history":[],"last_reward_claim_height":"8"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET16","shares":"180793387.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000005139957204064"},{"denom":"ASSET1","index":"0.000042128828951282"},{"denom":"ASSET10","index":"0.000036309222023019"},{"denom":"ASSET11","index":"0.000043678274178117"},{"denom":"ASSET12","index":"0.000041557601864682"},{"denom":"ASSET13","index":"0.000014071915592768"},{"denom":"ASSET14","index":"0.000040296399830453"},{"denom":"ASSET15","index":"0.000032607042636394"},{"denom":"ASSET16","index":"0.000018696081265382"},{"denom":"ASSET17","index":"0.000015103521436540"},{"denom":"ASSET18","index":"0.000006282400994781"},{"denom":"ASSET2","index":"0.000012714876215612"},{"denom":"ASSET3","index":"0.000003651406974956"},{"denom":"ASSET4","index":"0.000034517744853571"},{"denom":"ASSET5","index":"0.000002866339638232"},{"denom":"ASSET6","index":"0.000011694803417929"},{"denom":"ASSET7","index":"0.000018072491015786"},{"denom":"ASSET8","index":"0.000025947765120877"},{"denom":"ASSET9","index":"0.000010435616512372"}],"last_reward_claim_height":"191"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET9","shares":"744497085.889770971121830841","reward_history":[{"denom":"ASSET0","index":"0.000003015423229771"},{"denom":"ASSET1","index":"0.000025588098096649"},{"denom":"ASSET10","index":"0.000020460473772645"},{"denom":"ASSET11","index":"0.000025438043766359"},{"denom":"ASSET12","index":"0.000024273358860204"},{"denom":"ASSET13","index":"0.000007991752317173"},{"denom":"ASSET14","index":"0.000023342063892494"},{"denom":"ASSET15","index":"0.000018422728556898"},{"denom":"ASSET16","index":"0.000011348811151398"},{"denom":"ASSET17","index":"0.000008919790197810"},{"denom":"ASSET18","index":"0.000003679502338318"},{"denom":"ASSET2","index":"0.000007752126098631"},{"denom":"ASSET3","index":"0.000002151933074669"},{"denom":"ASSET4","index":"0.000020744635257959"},{"denom":"ASSET5","index":"0.000001676458472807"},{"denom":"ASSET6","index":"0.000006763790928604"},{"denom":"ASSET7","index":"0.000010629564741383"},{"denom":"ASSET8","index":"0.000014527278079751"},{"denom":"ASSET9","index":"0.000006165283413682"}],"last_reward_claim_height":"132"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET7","shares":"282852539.463016348507023728","reward_history":[{"denom":"ASSET0","index":"0.000003452635056994"},{"denom":"ASSET1","index":"0.000029280443630050"},{"denom":"ASSET10","index":"0.000023297581891953"},{"denom":"ASSET11","index":"0.000029078046899152"},{"denom":"ASSET12","index":"0.000027688393753974"},{"denom":"ASSET13","index":"0.000009130247174920"},{"denom":"ASSET14","index":"0.000026700258191979"},{"denom":"ASSET15","index":"0.000020998119885469"},{"denom":"ASSET16","index":"0.000012993858989816"},{"denom":"ASSET17","index":"0.000010174919177657"},{"denom":"ASSET18","index":"0.000004220034662939"},{"denom":"ASSET2","index":"0.000008861755768133"},{"denom":"ASSET3","index":"0.000002464736347038"},{"denom":"ASSET4","index":"0.000023740327943060"},{"denom":"ASSET5","index":"0.000001919615043943"},{"denom":"ASSET6","index":"0.000007749671229698"},{"denom":"ASSET7","index":"0.000012165961282812"},{"denom":"ASSET8","index":"0.000016598407083950"},{"denom":"ASSET9","index":"0.000007048985746822"}],"last_reward_claim_height":"165"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET9","shares":"408860876.506589971029429584","reward_history":[{"denom":"ASSET0","index":"0.000001790270882045"},{"denom":"ASSET1","index":"0.000014924962381265"},{"denom":"ASSET10","index":"0.000010398687848362"},{"denom":"ASSET11","index":"0.000014438353512768"},{"denom":"ASSET12","index":"0.000013001639266884"},{"denom":"ASSET13","index":"0.000004474427888377"},{"denom":"ASSET14","index":"0.000013487623477013"},{"denom":"ASSET15","index":"0.000009643475881721"},{"denom":"ASSET16","index":"0.000006723198012370"},{"denom":"ASSET17","index":"0.000004774888563278"},{"denom":"ASSET18","index":"0.000002274381117071"},{"denom":"ASSET2","index":"0.000004405715467922"},{"denom":"ASSET3","index":"0.000001288670212721"},{"denom":"ASSET4","index":"0.000012129616185469"},{"denom":"ASSET5","index":"0.000001000078046809"},{"denom":"ASSET6","index":"0.000004071523241162"},{"denom":"ASSET7","index":"0.000006235339827137"},{"denom":"ASSET8","index":"0.000008136175240279"},{"denom":"ASSET9","index":"0.000003514327977106"}],"last_reward_claim_height":"110"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET15","shares":"401100211.000000009582396624","reward_history":[{"denom":"ASSET0","index":"0.000003452635056994"},{"denom":"ASSET1","index":"0.000029280443630050"},{"denom":"ASSET10","index":"0.000023297581891953"},{"denom":"ASSET11","index":"0.000029078046899152"},{"denom":"ASSET12","index":"0.000027688393753974"},{"denom":"ASSET13","index":"0.000009130247174920"},{"denom":"ASSET14","index":"0.000026700258191979"},{"denom":"ASSET15","index":"0.000020998119885469"},{"denom":"ASSET16","index":"0.000012993858989816"},{"denom":"ASSET17","index":"0.000010174919177657"},{"denom":"ASSET18","index":"0.000004220034662939"},{"denom":"ASSET2","index":"0.000008861755768133"},{"denom":"ASSET3","index":"0.000002464736347038"},{"denom":"ASSET4","index":"0.000023740327943060"},{"denom":"ASSET5","index":"0.000001919615043943"},{"denom":"ASSET6","index":"0.000007749671229698"},{"denom":"ASSET7","index":"0.000012165961282812"},{"denom":"ASSET8","index":"0.000016598407083950"},{"denom":"ASSET9","index":"0.000007048985746822"}],"last_reward_claim_height":"148"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET12","shares":"94911161.000000003342797545","reward_history":[{"denom":"ASSET0","index":"0.000001835550145227"},{"denom":"ASSET1","index":"0.000015324623289081"},{"denom":"ASSET10","index":"0.000010676536631006"},{"denom":"ASSET11","index":"0.000014825027987456"},{"denom":"ASSET12","index":"0.000013348446318211"},{"denom":"ASSET13","index":"0.000004592576069005"},{"denom":"ASSET14","index":"0.000013848041619836"},{"denom":"ASSET15","index":"0.000009899388384035"},{"denom":"ASSET16","index":"0.000006901816574290"},{"denom":"ASSET17","index":"0.000004903435367793"},{"denom":"ASSET18","index":"0.000002335145446851"},{"denom":"ASSET2","index":"0.000004522262656184"},{"denom":"ASSET3","index":"0.000001321152019851"},{"denom":"ASSET4","index":"0.000012452875481226"},{"denom":"ASSET5","index":"0.000001025095544814"},{"denom":"ASSET6","index":"0.000004178097003954"},{"denom":"ASSET7","index":"0.000006402221272666"},{"denom":"ASSET8","index":"0.000008352493301969"},{"denom":"ASSET9","index":"0.000003608188289508"}],"last_reward_claim_height":"102"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET16","shares":"975637766.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001835550145227"},{"denom":"ASSET1","index":"0.000015324623289081"},{"denom":"ASSET10","index":"0.000010676536631006"},{"denom":"ASSET11","index":"0.000014825027987456"},{"denom":"ASSET12","index":"0.000013348446318211"},{"denom":"ASSET13","index":"0.000004592576069005"},{"denom":"ASSET14","index":"0.000013848041619836"},{"denom":"ASSET15","index":"0.000009899388384035"},{"denom":"ASSET16","index":"0.000006901816574290"},{"denom":"ASSET17","index":"0.000004903435367793"},{"denom":"ASSET18","index":"0.000002335145446851"},{"denom":"ASSET2","index":"0.000004522262656184"},{"denom":"ASSET3","index":"0.000001321152019851"},{"denom":"ASSET4","index":"0.000012452875481226"},{"denom":"ASSET5","index":"0.000001025095544814"},{"denom":"ASSET6","index":"0.000004178097003954"},{"denom":"ASSET7","index":"0.000006402221272666"},{"denom":"ASSET8","index":"0.000008352493301969"},{"denom":"ASSET9","index":"0.000003608188289508"}],"last_reward_claim_height":"98"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET3","shares":"932740199.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001764742979644"},{"denom":"ASSET1","index":"0.000014715413525055"},{"denom":"ASSET10","index":"0.000010252344388411"},{"denom":"ASSET11","index":"0.000014235671854472"},{"denom":"ASSET12","index":"0.000012819403806098"},{"denom":"ASSET13","index":"0.000004411268809023"},{"denom":"ASSET14","index":"0.000013298556836595"},{"denom":"ASSET15","index":"0.000009507714678855"},{"denom":"ASSET16","index":"0.000006629264655353"},{"denom":"ASSET17","index":"0.000004707943412672"},{"denom":"ASSET18","index":"0.000002242718729968"},{"denom":"ASSET2","index":"0.000004343575199063"},{"denom":"ASSET3","index":"0.000001270873946982"},{"denom":"ASSET4","index":"0.000011958811999481"},{"denom":"ASSET5","index":"0.000000985972145064"},{"denom":"ASSET6","index":"0.000004013936750564"},{"denom":"ASSET7","index":"0.000006147757064510"},{"denom":"ASSET8","index":"0.000008021987100262"},{"denom":"ASSET9","index":"0.000003464735549761"}],"last_reward_claim_height":"118"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET5","shares":"458768571.000000000000000000","reward_history":[],"last_reward_claim_height":"8"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET7","shares":"97748809.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001764742979644"},{"denom":"ASSET1","index":"0.000014715413525055"},{"denom":"ASSET10","index":"0.000010252344388411"},{"denom":"ASSET11","index":"0.000014235671854472"},{"denom":"ASSET12","index":"0.000012819403806098"},{"denom":"ASSET13","index":"0.000004411268809023"},{"denom":"ASSET14","index":"0.000013298556836595"},{"denom":"ASSET15","index":"0.000009507714678855"},{"denom":"ASSET16","index":"0.000006629264655353"},{"denom":"ASSET17","index":"0.000004707943412672"},{"denom":"ASSET18","index":"0.000002242718729968"},{"denom":"ASSET2","index":"0.000004343575199063"},{"denom":"ASSET3","index":"0.000001270873946982"},{"denom":"ASSET4","index":"0.000011958811999481"},{"denom":"ASSET5","index":"0.000000985972145064"},{"denom":"ASSET6","index":"0.000004013936750564"},{"denom":"ASSET7","index":"0.000006147757064510"},{"denom":"ASSET8","index":"0.000008021987100262"},{"denom":"ASSET9","index":"0.000003464735549761"}],"last_reward_claim_height":"104"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET8","shares":"141828337.198745961405314816","reward_history":[{"denom":"ASSET0","index":"0.000003371223111771"},{"denom":"ASSET1","index":"0.000028586584995448"},{"denom":"ASSET10","index":"0.000022716281614844"},{"denom":"ASSET11","index":"0.000028381809067472"},{"denom":"ASSET12","index":"0.000027011101270499"},{"denom":"ASSET13","index":"0.000008910504058238"},{"denom":"ASSET14","index":"0.000026065694327630"},{"denom":"ASSET15","index":"0.000020479714095343"},{"denom":"ASSET16","index":"0.000012688778091614"},{"denom":"ASSET17","index":"0.000009925875585388"},{"denom":"ASSET18","index":"0.000004122881217339"},{"denom":"ASSET2","index":"0.000008649339803247"},{"denom":"ASSET3","index":"0.000002407313457267"},{"denom":"ASSET4","index":"0.000023177863483423"},{"denom":"ASSET5","index":"0.000001874397047373"},{"denom":"ASSET6","index":"0.000007568278053481"},{"denom":"ASSET7","index":"0.000011878402488901"},{"denom":"ASSET8","index":"0.000016198768839280"},{"denom":"ASSET9","index":"0.000006880150170591"}],"last_reward_claim_height":"142"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET1","shares":"54311740.272079544027790196","reward_history":[{"denom":"ASSET0","index":"0.000004627764027420"},{"denom":"ASSET1","index":"0.000037903536607636"},{"denom":"ASSET10","index":"0.000032865942220262"},{"denom":"ASSET11","index":"0.000039383898049886"},{"denom":"ASSET12","index":"0.000037527333381682"},{"denom":"ASSET13","index":"0.000012703297183668"},{"denom":"ASSET14","index":"0.000036322948545804"},{"denom":"ASSET15","index":"0.000029491335058024"},{"denom":"ASSET16","index":"0.000016814012542586"},{"denom":"ASSET17","index":"0.000013634338949011"},{"denom":"ASSET18","index":"0.000005649814365271"},{"denom":"ASSET2","index":"0.000011447251219906"},{"denom":"ASSET3","index":"0.000003286184110324"},{"denom":"ASSET4","index":"0.000031065113175814"},{"denom":"ASSET5","index":"0.000002580192699817"},{"denom":"ASSET6","index":"0.000010529610832732"},{"denom":"ASSET7","index":"0.000016275676858161"},{"denom":"ASSET8","index":"0.000023433995869400"},{"denom":"ASSET9","index":"0.000009404185101028"}],"last_reward_claim_height":"187"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET11","shares":"277764107.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001519402004985"},{"denom":"ASSET1","index":"0.000012669186594649"},{"denom":"ASSET10","index":"0.000008826466179926"},{"denom":"ASSET11","index":"0.000012255973562605"},{"denom":"ASSET12","index":"0.000011036700348729"},{"denom":"ASSET13","index":"0.000003798237040326"},{"denom":"ASSET14","index":"0.000011448841492233"},{"denom":"ASSET15","index":"0.000008185476833202"},{"denom":"ASSET16","index":"0.000005707270529482"},{"denom":"ASSET17","index":"0.000004053346512768"},{"denom":"ASSET18","index":"0.000001930471259949"},{"denom":"ASSET2","index":"0.000003739819114914"},{"denom":"ASSET3","index":"0.000001093862254735"},{"denom":"ASSET4","index":"0.000010296025367816"},{"denom":"ASSET5","index":"0.000000848935723420"},{"denom":"ASSET6","index":"0.000003455768651901"},{"denom":"ASSET7","index":"0.000005292985608899"},{"denom":"ASSET8","index":"0.000006906177861104"},{"denom":"ASSET9","index":"0.000002983065805906"}],"last_reward_claim_height":"95"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET14","shares":"732472677.098417817719577938","reward_history":[{"denom":"ASSET0","index":"0.000003090388166914"},{"denom":"ASSET1","index":"0.000026235396530584"},{"denom":"ASSET10","index":"0.000021016328726441"},{"denom":"ASSET11","index":"0.000026091077525301"},{"denom":"ASSET12","index":"0.000024916432469284"},{"denom":"ASSET13","index":"0.000008198423394567"},{"denom":"ASSET14","index":"0.000023935350029219"},{"denom":"ASSET15","index":"0.000018916111125702"},{"denom":"ASSET16","index":"0.000011633439861257"},{"denom":"ASSET17","index":"0.000009156707623184"},{"denom":"ASSET18","index":"0.000003769226369030"},{"denom":"ASSET2","index":"0.000007950992094695"},{"denom":"ASSET3","index":"0.000002205065882760"},{"denom":"ASSET4","index":"0.000021268551776440"},{"denom":"ASSET5","index":"0.000001717872208784"},{"denom":"ASSET6","index":"0.000006931889619894"},{"denom":"ASSET7","index":"0.000010897757198785"},{"denom":"ASSET8","index":"0.000014903243728132"},{"denom":"ASSET9","index":"0.000006323427167640"}],"last_reward_claim_height":"163"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET17","shares":"229654140.714851842178001912","reward_history":[{"denom":"ASSET0","index":"0.000003090388166914"},{"denom":"ASSET1","index":"0.000026235396530584"},{"denom":"ASSET10","index":"0.000021016328726441"},{"denom":"ASSET11","index":"0.000026091077525301"},{"denom":"ASSET12","index":"0.000024916432469284"},{"denom":"ASSET13","index":"0.000008198423394567"},{"denom":"ASSET14","index":"0.000023935350029219"},{"denom":"ASSET15","index":"0.000018916111125702"},{"denom":"ASSET16","index":"0.000011633439861257"},{"denom":"ASSET17","index":"0.000009156707623184"},{"denom":"ASSET18","index":"0.000003769226369030"},{"denom":"ASSET2","index":"0.000007950992094695"},{"denom":"ASSET3","index":"0.000002205065882760"},{"denom":"ASSET4","index":"0.000021268551776440"},{"denom":"ASSET5","index":"0.000001717872208784"},{"denom":"ASSET6","index":"0.000006931889619894"},{"denom":"ASSET7","index":"0.000010897757198785"},{"denom":"ASSET8","index":"0.000014903243728132"},{"denom":"ASSET9","index":"0.000006323427167640"}],"last_reward_claim_height":"178"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET0","shares":"257072489.000000000771217467","reward_history":[],"last_reward_claim_height":"32"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET2","shares":"316444246.000000003480886706","reward_history":[{"denom":"ASSET0","index":"0.000001518878942956"},{"denom":"ASSET1","index":"0.000012665267621292"},{"denom":"ASSET10","index":"0.000008823986077449"},{"denom":"ASSET11","index":"0.000012252067733139"},{"denom":"ASSET12","index":"0.000011032961258059"},{"denom":"ASSET13","index":"0.000003796959064490"},{"denom":"ASSET14","index":"0.000011445207974612"},{"denom":"ASSET15","index":"0.000008182978177143"},{"denom":"ASSET16","index":"0.000005705208605625"},{"denom":"ASSET17","index":"0.000004051932467214"},{"denom":"ASSET18","index":"0.000001930172487911"},{"denom":"ASSET2","index":"0.000003738815596953"},{"denom":"ASSET3","index":"0.000001093764409816"},{"denom":"ASSET4","index":"0.000010292823511460"},{"denom":"ASSET5","index":"0.000000848799308881"},{"denom":"ASSET6","index":"0.000003454770460461"},{"denom":"ASSET7","index":"0.000005291055545873"},{"denom":"ASSET8","index":"0.000006904298477127"},{"denom":"ASSET9","index":"0.000002981997347372"}],"last_reward_claim_height":"89"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET3","shares":"1000019714.944005879000000000","reward_history":[{"denom":"ASSET0","index":"0.000004580582438832"},{"denom":"ASSET1","index":"0.000037483984288658"},{"denom":"ASSET10","index":"0.000032499660214303"},{"denom":"ASSET11","index":"0.000038965700064047"},{"denom":"ASSET12","index":"0.000037103230568829"},{"denom":"ASSET13","index":"0.000012572310863615"},{"denom":"ASSET14","index":"0.000035948606907820"},{"denom":"ASSET15","index":"0.000029169852951154"},{"denom":"ASSET16","index":"0.000016631043190223"},{"denom":"ASSET17","index":"0.000013476854922794"},{"denom":"ASSET18","index":"0.000005595251304571"},{"denom":"ASSET2","index":"0.000011316458569232"},{"denom":"ASSET3","index":"0.000003252952025465"},{"denom":"ASSET4","index":"0.000030728353795456"},{"denom":"ASSET5","index":"0.000002554509941654"},{"denom":"ASSET6","index":"0.000010426461044140"},{"denom":"ASSET7","index":"0.000016105643609974"},{"denom":"ASSET8","index":"0.000023198729331950"},{"denom":"ASSET9","index":"0.000009302269752593"}],"last_reward_claim_height":"200"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET7","shares":"914103943.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001518878942956"},{"denom":"ASSET1","index":"0.000012665267621292"},{"denom":"ASSET10","index":"0.000008823986077449"},{"denom":"ASSET11","index":"0.000012252067733139"},{"denom":"ASSET12","index":"0.000011032961258059"},{"denom":"ASSET13","index":"0.000003796959064490"},{"denom":"ASSET14","index":"0.000011445207974612"},{"denom":"ASSET15","index":"0.000008182978177143"},{"denom":"ASSET16","index":"0.000005705208605625"},{"denom":"ASSET17","index":"0.000004051932467214"},{"denom":"ASSET18","index":"0.000001930172487911"},{"denom":"ASSET2","index":"0.000003738815596953"},{"denom":"ASSET3","index":"0.000001093764409816"},{"denom":"ASSET4","index":"0.000010292823511460"},{"denom":"ASSET5","index":"0.000000848799308881"},{"denom":"ASSET6","index":"0.000003454770460461"},{"denom":"ASSET7","index":"0.000005291055545873"},{"denom":"ASSET8","index":"0.000006904298477127"},{"denom":"ASSET9","index":"0.000002981997347372"}],"last_reward_claim_height":"66"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET17","shares":"230592071.522742290145044480","reward_history":[{"denom":"ASSET0","index":"0.000003032310940473"},{"denom":"ASSET1","index":"0.000025733484746235"},{"denom":"ASSET10","index":"0.000020566326171769"},{"denom":"ASSET11","index":"0.000025579130700492"},{"denom":"ASSET12","index":"0.000024402998631681"},{"denom":"ASSET13","index":"0.000008035434808363"},{"denom":"ASSET14","index":"0.000023473377840860"},{"denom":"ASSET15","index":"0.000018519821992016"},{"denom":"ASSET16","index":"0.000011413808805814"},{"denom":"ASSET17","index":"0.000008967671528488"},{"denom":"ASSET18","index":"0.000003701450923042"},{"denom":"ASSET2","index":"0.000007795399667781"},{"denom":"ASSET3","index":"0.000002164126947351"},{"denom":"ASSET4","index":"0.000020862528644023"},{"denom":"ASSET5","index":"0.000001685967393794"},{"denom":"ASSET6","index":"0.000006803442800114"},{"denom":"ASSET7","index":"0.000010689840259007"},{"denom":"ASSET8","index":"0.000014607710652032"},{"denom":"ASSET9","index":"0.000006199747658625"}],"last_reward_claim_height":"145"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET1","shares":"13029949.000000000000000000","reward_history":[],"last_reward_claim_height":"12"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET15","shares":"883393294.736827664320275975","reward_history":[{"denom":"ASSET0","index":"0.000004425863510700"},{"denom":"ASSET1","index":"0.000036160672221872"},{"denom":"ASSET10","index":"0.000031557458061761"},{"denom":"ASSET11","index":"0.000037700664708319"},{"denom":"ASSET12","index":"0.000035928372047662"},{"denom":"ASSET13","index":"0.000012183543527385"},{"denom":"ASSET14","index":"0.000034780774754072"},{"denom":"ASSET15","index":"0.000028307087788627"},{"denom":"ASSET16","index":"0.000016039535319794"},{"denom":"ASSET17","index":"0.000013042771810819"},{"denom":"ASSET18","index":"0.000005402952153823"},{"denom":"ASSET2","index":"0.000010919186373904"},{"denom":"ASSET3","index":"0.000003141880910304"},{"denom":"ASSET4","index":"0.000029659922771182"},{"denom":"ASSET5","index":"0.000002468660048805"},{"denom":"ASSET6","index":"0.000010080499351124"},{"denom":"ASSET7","index":"0.000015564502508768"},{"denom":"ASSET8","index":"0.000022498991790116"},{"denom":"ASSET9","index":"0.000008992113067194"}],"last_reward_claim_height":"199"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET8","shares":"953581285.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003351161845380"},{"denom":"ASSET1","index":"0.000028416485386018"},{"denom":"ASSET10","index":"0.000022605276372189"},{"denom":"ASSET11","index":"0.000028218825237526"},{"denom":"ASSET12","index":"0.000026868556551399"},{"denom":"ASSET13","index":"0.000008859853422879"},{"denom":"ASSET14","index":"0.000025912194276628"},{"denom":"ASSET15","index":"0.000020375555431981"},{"denom":"ASSET16","index":"0.000012611404420708"},{"denom":"ASSET17","index":"0.000009873044520717"},{"denom":"ASSET18","index":"0.000004095473642305"},{"denom":"ASSET2","index":"0.000008599384819082"},{"denom":"ASSET3","index":"0.000002391571176633"},{"denom":"ASSET4","index":"0.000023040021162794"},{"denom":"ASSET5","index":"0.000001862805125681"},{"denom":"ASSET6","index":"0.000007520693553142"},{"denom":"ASSET7","index":"0.000011806544930596"},{"denom":"ASSET8","index":"0.000016107343127742"},{"denom":"ASSET9","index":"0.000006840485865179"}],"last_reward_claim_height":"134"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET13","shares":"389808620.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001740203165372"},{"denom":"ASSET1","index":"0.000014506985633466"},{"denom":"ASSET10","index":"0.000010106727386233"},{"denom":"ASSET11","index":"0.000014033828203465"},{"denom":"ASSET12","index":"0.000012637643303754"},{"denom":"ASSET13","index":"0.000004348390877948"},{"denom":"ASSET14","index":"0.000013109742216014"},{"denom":"ASSET15","index":"0.000009373174592071"},{"denom":"ASSET16","index":"0.000006535288529808"},{"denom":"ASSET17","index":"0.000004640541774324"},{"denom":"ASSET18","index":"0.000002210185042151"},{"denom":"ASSET2","index":"0.000004281704260297"},{"denom":"ASSET3","index":"0.000001252226487004"},{"denom":"ASSET4","index":"0.000011789770593618"},{"denom":"ASSET5","index":"0.000000971719285773"},{"denom":"ASSET6","index":"0.000003956739313965"},{"denom":"ASSET7","index":"0.000006060014064326"},{"denom":"ASSET8","index":"0.000007908186039228"},{"denom":"ASSET9","index":"0.000003415836748573"}],"last_reward_claim_height":"113"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET17","shares":"123448225.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004962972541432"},{"denom":"ASSET1","index":"0.000040650098665327"},{"denom":"ASSET10","index":"0.000035029276691044"},{"denom":"ASSET11","index":"0.000042155953964920"},{"denom":"ASSET12","index":"0.000040090986287408"},{"denom":"ASSET13","index":"0.000013583146547951"},{"denom":"ASSET14","index":"0.000038900128980945"},{"denom":"ASSET15","index":"0.000031463357706274"},{"denom":"ASSET16","index":"0.000018043166594771"},{"denom":"ASSET17","index":"0.000014567679910779"},{"denom":"ASSET18","index":"0.000006067375008702"},{"denom":"ASSET2","index":"0.000012265082923430"},{"denom":"ASSET3","index":"0.000003525171494558"},{"denom":"ASSET4","index":"0.000033311451785840"},{"denom":"ASSET5","index":"0.000002766894365829"},{"denom":"ASSET6","index":"0.000011292799073571"},{"denom":"ASSET7","index":"0.000017445141192124"},{"denom":"ASSET8","index":"0.000025051796020968"},{"denom":"ASSET9","index":"0.000010070586397372"}],"last_reward_claim_height":"196"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET16","shares":"242126251.000000004600398769","reward_history":[{"denom":"ASSET0","index":"0.000003408995344605"},{"denom":"ASSET1","index":"0.000028940875589883"},{"denom":"ASSET10","index":"0.000023121939135123"},{"denom":"ASSET11","index":"0.000028765460883304"},{"denom":"ASSET12","index":"0.000027437813762181"},{"denom":"ASSET13","index":"0.000009035078182388"},{"denom":"ASSET14","index":"0.000026397840013038"},{"denom":"ASSET15","index":"0.000020822021063845"},{"denom":"ASSET16","index":"0.000012835900360827"},{"denom":"ASSET17","index":"0.000010082289518918"},{"denom":"ASSET18","index":"0.000004163537456367"},{"denom":"ASSET2","index":"0.000008764373535196"},{"denom":"ASSET3","index":"0.000002432999591430"},{"denom":"ASSET4","index":"0.000023461370966582"},{"denom":"ASSET5","index":"0.000001895172356369"},{"denom":"ASSET6","index":"0.000007651446569151"},{"denom":"ASSET7","index":"0.000012022926111771"},{"denom":"ASSET8","index":"0.000016426068411072"},{"denom":"ASSET9","index":"0.000006969965423669"}],"last_reward_claim_height":"152"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET18","shares":"780026600.439204462938283645","reward_history":[{"denom":"ASSET0","index":"0.000003408995344605"},{"denom":"ASSET1","index":"0.000028940875589883"},{"denom":"ASSET10","index":"0.000023121939135123"},{"denom":"ASSET11","index":"0.000028765460883304"},{"denom":"ASSET12","index":"0.000027437813762181"},{"denom":"ASSET13","index":"0.000009035078182388"},{"denom":"ASSET14","index":"0.000026397840013038"},{"denom":"ASSET15","index":"0.000020822021063845"},{"denom":"ASSET16","index":"0.000012835900360827"},{"denom":"ASSET17","index":"0.000010082289518918"},{"denom":"ASSET18","index":"0.000004163537456367"},{"denom":"ASSET2","index":"0.000008764373535196"},{"denom":"ASSET3","index":"0.000002432999591430"},{"denom":"ASSET4","index":"0.000023461370966582"},{"denom":"ASSET5","index":"0.000001895172356369"},{"denom":"ASSET6","index":"0.000007651446569151"},{"denom":"ASSET7","index":"0.000012022926111771"},{"denom":"ASSET8","index":"0.000016426068411072"},{"denom":"ASSET9","index":"0.000006969965423669"}],"last_reward_claim_height":"167"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET1","shares":"191547922.000000000000000000","reward_history":[],"last_reward_claim_height":"44"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET11","shares":"225470269.084055895570664634","reward_history":[{"denom":"ASSET0","index":"0.000001459800105667"},{"denom":"ASSET1","index":"0.000012176396665923"},{"denom":"ASSET10","index":"0.000008484162206626"},{"denom":"ASSET11","index":"0.000011779823335110"},{"denom":"ASSET12","index":"0.000010607197020722"},{"denom":"ASSET13","index":"0.000003650070053435"},{"denom":"ASSET14","index":"0.000011003770351536"},{"denom":"ASSET15","index":"0.000007867650218206"},{"denom":"ASSET16","index":"0.000005484791497715"},{"denom":"ASSET17","index":"0.000003895079438851"},{"denom":"ASSET18","index":"0.000001855233857943"},{"denom":"ASSET2","index":"0.000003594230705131"},{"denom":"ASSET3","index":"0.000001050691410948"},{"denom":"ASSET4","index":"0.000009896100013746"},{"denom":"ASSET5","index":"0.000000815938232363"},{"denom":"ASSET6","index":"0.000003321871434831"},{"denom":"ASSET7","index":"0.000005087078588365"},{"denom":"ASSET8","index":"0.000006638044976977"},{"denom":"ASSET9","index":"0.000002867179598640"}],"last_reward_claim_height":"117"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET16","shares":"578187457.179691304873597565","reward_history":[{"denom":"ASSET0","index":"0.000004660804205407"},{"denom":"ASSET1","index":"0.000038057537045202"},{"denom":"ASSET10","index":"0.000033236768377738"},{"denom":"ASSET11","index":"0.000039701821838753"},{"denom":"ASSET12","index":"0.000037824613654517"},{"denom":"ASSET13","index":"0.000012834687122975"},{"denom":"ASSET14","index":"0.000036631919493883"},{"denom":"ASSET15","index":"0.000029815074691348"},{"denom":"ASSET16","index":"0.000016881501899894"},{"denom":"ASSET17","index":"0.000013727591369636"},{"denom":"ASSET18","index":"0.000005691132396522"},{"denom":"ASSET2","index":"0.000011490151771186"},{"denom":"ASSET3","index":"0.000003308008506911"},{"denom":"ASSET4","index":"0.000031222727917954"},{"denom":"ASSET5","index":"0.000002599510414053"},{"denom":"ASSET6","index":"0.000010619768184658"},{"denom":"ASSET7","index":"0.000016390179065509"},{"denom":"ASSET8","index":"0.000023706313213553"},{"denom":"ASSET9","index":"0.000009466987970942"}],"last_reward_claim_height":"190"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET6","shares":"697459316.000000000000000000","reward_history":[],"last_reward_claim_height":"55"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET5","shares":"487083402.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003012098530886"},{"denom":"ASSET1","index":"0.000025562058034330"},{"denom":"ASSET10","index":"0.000020450222858637"},{"denom":"ASSET11","index":"0.000025414193224582"},{"denom":"ASSET12","index":"0.000024256065084933"},{"denom":"ASSET13","index":"0.000007984561416691"},{"denom":"ASSET14","index":"0.000023318358139730"},{"denom":"ASSET15","index":"0.000018411259079989"},{"denom":"ASSET16","index":"0.000011336678183578"},{"denom":"ASSET17","index":"0.000008913774138499"},{"denom":"ASSET18","index":"0.000003674960609183"},{"denom":"ASSET2","index":"0.000007744948932800"},{"denom":"ASSET3","index":"0.000002148867969989"},{"denom":"ASSET4","index":"0.000020722540912428"},{"denom":"ASSET5","index":"0.000001674229864542"},{"denom":"ASSET6","index":"0.000006756080138401"},{"denom":"ASSET7","index":"0.000010618450136599"},{"denom":"ASSET8","index":"0.000014514789998911"},{"denom":"ASSET9","index":"0.000006159565713194"}],"last_reward_claim_height":"180"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET1","shares":"228857477.000000000000000000","reward_history":[],"last_reward_claim_height":"34"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET3","shares":"18691602.657407940508998638","reward_history":[{"denom":"ASSET0","index":"0.000002995147819628"},{"denom":"ASSET1","index":"0.000025426980115999"},{"denom":"ASSET10","index":"0.000020372034738960"},{"denom":"ASSET11","index":"0.000025287989623967"},{"denom":"ASSET12","index":"0.000024150599022202"},{"denom":"ASSET13","index":"0.000007946076587902"},{"denom":"ASSET14","index":"0.000023198024872944"},{"denom":"ASSET15","index":"0.000018335727027304"},{"denom":"ASSET16","index":"0.000011274635486105"},{"denom":"ASSET17","index":"0.000008875015361763"},{"denom":"ASSET18","index":"0.000003653177061349"},{"denom":"ASSET2","index":"0.000007706361997735"},{"denom":"ASSET3","index":"0.000002137037997503"},{"denom":"ASSET4","index":"0.000020612735071168"},{"denom":"ASSET5","index":"0.000001665450131859"},{"denom":"ASSET6","index":"0.000006718182222688"},{"denom":"ASSET7","index":"0.000010561635089256"},{"denom":"ASSET8","index":"0.000014445035982826"},{"denom":"ASSET9","index":"0.000006128513210961"}],"last_reward_claim_height":"148"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET4","shares":"449377504.073941585388247945","reward_history":[{"denom":"ASSET0","index":"0.000004451028909096"},{"denom":"ASSET1","index":"0.000036477295358036"},{"denom":"ASSET10","index":"0.000031594285637271"},{"denom":"ASSET11","index":"0.000037877235122777"},{"denom":"ASSET12","index":"0.000036094024478773"},{"denom":"ASSET13","index":"0.000012212628058403"},{"denom":"ASSET14","index":"0.000034929714752807"},{"denom":"ASSET15","index":"0.000028351244338063"},{"denom":"ASSET16","index":"0.000016180904344378"},{"denom":"ASSET17","index":"0.000013115564217581"},{"denom":"ASSET18","index":"0.000005434356167162"},{"denom":"ASSET2","index":"0.000011017450045022"},{"denom":"ASSET3","index":"0.000003160957283863"},{"denom":"ASSET4","index":"0.000029890627189887"},{"denom":"ASSET5","index":"0.000002482144499160"},{"denom":"ASSET6","index":"0.000010125586077425"},{"denom":"ASSET7","index":"0.000015654963573568"},{"denom":"ASSET8","index":"0.000022524154498080"},{"denom":"ASSET9","index":"0.000009046112711560"}],"last_reward_claim_height":"191"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET5","shares":"474860136.000000000000000000","reward_history":[],"last_reward_claim_height":"16"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET6","shares":"692509029.135138637535213238","reward_history":[{"denom":"ASSET0","index":"0.000003356752793751"},{"denom":"ASSET1","index":"0.000028516406305775"},{"denom":"ASSET10","index":"0.000022616173055400"},{"denom":"ASSET11","index":"0.000028302061322789"},{"denom":"ASSET12","index":"0.000026910491325102"},{"denom":"ASSET13","index":"0.000008878873421079"},{"denom":"ASSET14","index":"0.000025995251505598"},{"denom":"ASSET15","index":"0.000020398635157595"},{"denom":"ASSET16","index":"0.000012658071469071"},{"denom":"ASSET17","index":"0.000009885849877285"},{"denom":"ASSET18","index":"0.000004110010202724"},{"denom":"ASSET2","index":"0.000008622285743228"},{"denom":"ASSET3","index":"0.000002402314047495"},{"denom":"ASSET4","index":"0.000023121698220749"},{"denom":"ASSET5","index":"0.000001866482592061"},{"denom":"ASSET6","index":"0.000007549939309511"},{"denom":"ASSET7","index":"0.000011851024307599"},{"denom":"ASSET8","index":"0.000016149793693754"},{"denom":"ASSET9","index":"0.000006862325287189"}],"last_reward_claim_height":"145"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET16","shares":"240549982.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001778581753434"},{"denom":"ASSET1","index":"0.000014888315804569"},{"denom":"ASSET10","index":"0.000010370885153828"},{"denom":"ASSET11","index":"0.000014404007158094"},{"denom":"ASSET12","index":"0.000012967781516823"},{"denom":"ASSET13","index":"0.000004458979607201"},{"denom":"ASSET14","index":"0.000013452090163298"},{"denom":"ASSET15","index":"0.000009619371736884"},{"denom":"ASSET16","index":"0.000006705169708956"},{"denom":"ASSET17","index":"0.000004759584973979"},{"denom":"ASSET18","index":"0.000002262890399909"},{"denom":"ASSET2","index":"0.000004392178414584"},{"denom":"ASSET3","index":"0.000001285922957882"},{"denom":"ASSET4","index":"0.000012099366012799"},{"denom":"ASSET5","index":"0.000000993667740182"},{"denom":"ASSET6","index":"0.000004058172451498"},{"denom":"ASSET7","index":"0.000006220861062481"},{"denom":"ASSET8","index":"0.000008116344902996"},{"denom":"ASSET9","index":"0.000003507062612406"}],"last_reward_claim_height":"119"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET0","shares":"104078958.971566875773072344","reward_history":[{"denom":"ASSET0","index":"0.000001604942959288"},{"denom":"ASSET1","index":"0.000013380628695124"},{"denom":"ASSET10","index":"0.000009322365613635"},{"denom":"ASSET11","index":"0.000012944148427984"},{"denom":"ASSET12","index":"0.000011656280789193"},{"denom":"ASSET13","index":"0.000004011353995308"},{"denom":"ASSET14","index":"0.000012091757653420"},{"denom":"ASSET15","index":"0.000008645319498111"},{"denom":"ASSET16","index":"0.000006027692148913"},{"denom":"ASSET17","index":"0.000004280767677439"},{"denom":"ASSET18","index":"0.000002039165569874"},{"denom":"ASSET2","index":"0.000003949895566889"},{"denom":"ASSET3","index":"0.000001155418454280"},{"denom":"ASSET4","index":"0.000010873877367808"},{"denom":"ASSET5","index":"0.000000896791353463"},{"denom":"ASSET6","index":"0.000003649878095912"},{"denom":"ASSET7","index":"0.000005589957628131"},{"denom":"ASSET8","index":"0.000007294237475803"},{"denom":"ASSET9","index":"0.000003150685146712"}],"last_reward_claim_height":"101"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET4","shares":"471981641.000000000000000000","reward_history":[],"last_reward_claim_height":"10"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET9","shares":"999999998.499590269000000000","reward_history":[{"denom":"ASSET0","index":"0.000003200268554223"},{"denom":"ASSET1","index":"0.000027155061035589"},{"denom":"ASSET10","index":"0.000021699312128992"},{"denom":"ASSET11","index":"0.000026991580254755"},{"denom":"ASSET12","index":"0.000025748970079650"},{"denom":"ASSET13","index":"0.000008479073830121"},{"denom":"ASSET14","index":"0.000024769827936089"},{"denom":"ASSET15","index":"0.000019540730612944"},{"denom":"ASSET16","index":"0.000012044995213579"},{"denom":"ASSET17","index":"0.000009462424001901"},{"denom":"ASSET18","index":"0.000003906197580725"},{"denom":"ASSET2","index":"0.000008225756082433"},{"denom":"ASSET3","index":"0.000002283784004254"},{"denom":"ASSET4","index":"0.000022014648589339"},{"denom":"ASSET5","index":"0.000001779311895342"},{"denom":"ASSET6","index":"0.000007179475362032"},{"denom":"ASSET7","index":"0.000011280598785262"},{"denom":"ASSET8","index":"0.000015413911362487"},{"denom":"ASSET9","index":"0.000006542247148589"}],"last_reward_claim_height":"146"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET11","shares":"788255720.000000014976858680","reward_history":[],"last_reward_claim_height":"59"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET12","shares":"272023776.000000008584638885","reward_history":[],"last_reward_claim_height":"39"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET17","shares":"616338219.744240978898412128","reward_history":[{"denom":"ASSET0","index":"0.000004836979013225"},{"denom":"ASSET1","index":"0.000039577282529760"},{"denom":"ASSET10","index":"0.000034314822965027"},{"denom":"ASSET11","index":"0.000041143647196390"},{"denom":"ASSET12","index":"0.000039175131964155"},{"denom":"ASSET13","index":"0.000013275183327871"},{"denom":"ASSET14","index":"0.000037958187432774"},{"denom":"ASSET15","index":"0.000030799620771454"},{"denom":"ASSET16","index":"0.000017560332811566"},{"denom":"ASSET17","index":"0.000014229600019779"},{"denom":"ASSET18","index":"0.000005908428628636"},{"denom":"ASSET2","index":"0.000011948073948502"},{"denom":"ASSET3","index":"0.000003434959854289"},{"denom":"ASSET4","index":"0.000032444397664905"},{"denom":"ASSET5","index":"0.000002697479070199"},{"denom":"ASSET6","index":"0.000011009822966557"},{"denom":"ASSET7","index":"0.000017006174923380"},{"denom":"ASSET8","index":"0.000024496113573743"},{"denom":"ASSET9","index":"0.000009822002615441"}],"last_reward_claim_height":"197"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET0","shares":"653535874.094200399492262833","reward_history":[{"denom":"ASSET0","index":"0.000004736121968577"},{"denom":"ASSET1","index":"0.000038761893571018"},{"denom":"ASSET10","index":"0.000033507102183548"},{"denom":"ASSET11","index":"0.000040255954218087"},{"denom":"ASSET12","index":"0.000038296483713125"},{"denom":"ASSET13","index":"0.000012981125931500"},{"denom":"ASSET14","index":"0.000037144963211864"},{"denom":"ASSET15","index":"0.000030086100212575"},{"denom":"ASSET16","index":"0.000017200793994088"},{"denom":"ASSET17","index":"0.000013910336551622"},{"denom":"ASSET18","index":"0.000005787660096353"},{"denom":"ASSET2","index":"0.000011696689560653"},{"denom":"ASSET3","index":"0.000003364158799327"},{"denom":"ASSET4","index":"0.000031772510725021"},{"denom":"ASSET5","index":"0.000002640231519377"},{"denom":"ASSET6","index":"0.000010779027652808"},{"denom":"ASSET7","index":"0.000016649985952266"},{"denom":"ASSET8","index":"0.000023948972231982"},{"denom":"ASSET9","index":"0.000009610057695084"}],"last_reward_claim_height":"183"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET5","shares":"297036578.000000000000000000","reward_history":[],"last_reward_claim_height":"30"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET17","shares":"142381935.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001620184629837"},{"denom":"ASSET1","index":"0.000013508113244239"},{"denom":"ASSET10","index":"0.000009411159415052"},{"denom":"ASSET11","index":"0.000013068550109883"},{"denom":"ASSET12","index":"0.000011766766981214"},{"denom":"ASSET13","index":"0.000004049052718392"},{"denom":"ASSET14","index":"0.000012206330115570"},{"denom":"ASSET15","index":"0.000008726455301921"},{"denom":"ASSET16","index":"0.000006083441070987"},{"denom":"ASSET17","index":"0.000004319553108765"},{"denom":"ASSET18","index":"0.000002056930051793"},{"denom":"ASSET2","index":"0.000003987063045598"},{"denom":"ASSET3","index":"0.000001166532933482"},{"denom":"ASSET4","index":"0.000010977807509294"},{"denom":"ASSET5","index":"0.000000904485680309"},{"denom":"ASSET6","index":"0.000003682750106429"},{"denom":"ASSET7","index":"0.000005643877936631"},{"denom":"ASSET8","index":"0.000007362682500458"},{"denom":"ASSET9","index":"0.000003178379586880"}],"last_reward_claim_height":"112"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET15","shares":"583464546.000000000000000000","reward_history":[],"last_reward_claim_height":"60"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET17","shares":"477821629.000000000000000000","reward_history":[],"last_reward_claim_height":"43"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET1","shares":"488177765.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001616793771814"},{"denom":"ASSET1","index":"0.000013481664806896"},{"denom":"ASSET10","index":"0.000009392973001731"},{"denom":"ASSET11","index":"0.000013042136425966"},{"denom":"ASSET12","index":"0.000011745108533466"},{"denom":"ASSET13","index":"0.000004041984429535"},{"denom":"ASSET14","index":"0.000012183439289380"},{"denom":"ASSET15","index":"0.000008710326742521"},{"denom":"ASSET16","index":"0.000006073156456940"},{"denom":"ASSET17","index":"0.000004312647683187"},{"denom":"ASSET18","index":"0.000002053926902712"},{"denom":"ASSET2","index":"0.000003979707928695"},{"denom":"ASSET3","index":"0.000001164091515706"},{"denom":"ASSET4","index":"0.000010955873647818"},{"denom":"ASSET5","index":"0.000000903009262183"},{"denom":"ASSET6","index":"0.000003677906424623"},{"denom":"ASSET7","index":"0.000005632430450993"},{"denom":"ASSET8","index":"0.000007349824724165"},{"denom":"ASSET9","index":"0.000003173706292820"}],"last_reward_claim_height":"65"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET13","shares":"226002799.101355446720849692","reward_history":[{"denom":"ASSET0","index":"0.000002874619638549"},{"denom":"ASSET1","index":"0.000024442633186143"},{"denom":"ASSET10","index":"0.000019689737510784"},{"denom":"ASSET11","index":"0.000024334399718263"},{"denom":"ASSET12","index":"0.000023294058494145"},{"denom":"ASSET13","index":"0.000007650065286478"},{"denom":"ASSET14","index":"0.000022306974942610"},{"denom":"ASSET15","index":"0.000017702453996022"},{"denom":"ASSET16","index":"0.000010830667352685"},{"denom":"ASSET17","index":"0.000008561334956642"},{"denom":"ASSET18","index":"0.000003501743239949"},{"denom":"ASSET2","index":"0.000007413384379561"},{"denom":"ASSET3","index":"0.000002050775894848"},{"denom":"ASSET4","index":"0.000019811877393900"},{"denom":"ASSET5","index":"0.000001596563839644"},{"denom":"ASSET6","index":"0.000006447875450380"},{"denom":"ASSET7","index":"0.000010149425285061"},{"denom":"ASSET8","index":"0.000013906577801610"},{"denom":"ASSET9","index":"0.000005896530335304"}],"last_reward_claim_height":"129"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET5","shares":"256794842.133888704632944816","reward_history":[{"denom":"ASSET0","index":"0.000005025135283889"},{"denom":"ASSET1","index":"0.000041150902230665"},{"denom":"ASSET10","index":"0.000035503906252523"},{"denom":"ASSET11","index":"0.000042698139065522"},{"denom":"ASSET12","index":"0.000040613177204205"},{"denom":"ASSET13","index":"0.000013762722497172"},{"denom":"ASSET14","index":"0.000039399391051892"},{"denom":"ASSET15","index":"0.000031885867220772"},{"denom":"ASSET16","index":"0.000018264474504804"},{"denom":"ASSET17","index":"0.000014756668842278"},{"denom":"ASSET18","index":"0.000006143633971099"},{"denom":"ASSET2","index":"0.000012417834673698"},{"denom":"ASSET3","index":"0.000003569934151742"},{"denom":"ASSET4","index":"0.000033724592875945"},{"denom":"ASSET5","index":"0.000002802367388675"},{"denom":"ASSET6","index":"0.000011436693406867"},{"denom":"ASSET7","index":"0.000017665780825714"},{"denom":"ASSET8","index":"0.000025384816720225"},{"denom":"ASSET9","index":"0.000010198330599342"}],"last_reward_claim_height":"196"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET8","shares":"451371016.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003377008276018"},{"denom":"ASSET1","index":"0.000028642142456639"},{"denom":"ASSET10","index":"0.000022800592191853"},{"denom":"ASSET11","index":"0.000028447577997463"},{"denom":"ASSET12","index":"0.000027093635853923"},{"denom":"ASSET13","index":"0.000008933092474106"},{"denom":"ASSET14","index":"0.000026119259559896"},{"denom":"ASSET15","index":"0.000020548756595198"},{"denom":"ASSET16","index":"0.000012710670192565"},{"denom":"ASSET17","index":"0.000009956402105067"},{"denom":"ASSET18","index":"0.000004127475104327"},{"denom":"ASSET2","index":"0.000008669602227225"},{"denom":"ASSET3","index":"0.000002410895003349"},{"denom":"ASSET4","index":"0.000023222264254358"},{"denom":"ASSET5","index":"0.000001877874241403"},{"denom":"ASSET6","index":"0.000007579654674160"},{"denom":"ASSET7","index":"0.000011900488798179"},{"denom":"ASSET8","index":"0.000016239324105118"},{"denom":"ASSET9","index":"0.000006895771583569"}],"last_reward_claim_height":"127"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET9","shares":"1525279321.972586046826076740","reward_history":[{"denom":"ASSET0","index":"0.000005025135283889"},{"denom":"ASSET1","index":"0.000041150902230665"},{"denom":"ASSET10","index":"0.000035503906252523"},{"denom":"ASSET11","index":"0.000042698139065522"},{"denom":"ASSET12","index":"0.000040613177204205"},{"denom":"ASSET13","index":"0.000013762722497172"},{"denom":"ASSET14","index":"0.000039399391051892"},{"denom":"ASSET15","index":"0.000031885867220772"},{"denom":"ASSET16","index":"0.000018264474504804"},{"denom":"ASSET17","index":"0.000014756668842278"},{"denom":"ASSET18","index":"0.000006143633971099"},{"denom":"ASSET2","index":"0.000012417834673698"},{"denom":"ASSET3","index":"0.000003569934151742"},{"denom":"ASSET4","index":"0.000033724592875945"},{"denom":"ASSET5","index":"0.000002802367388675"},{"denom":"ASSET6","index":"0.000011436693406867"},{"denom":"ASSET7","index":"0.000017665780825714"},{"denom":"ASSET8","index":"0.000025384816720225"},{"denom":"ASSET9","index":"0.000010198330599342"}],"last_reward_claim_height":"200"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET14","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"52"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET17","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001744355646452"},{"denom":"ASSET1","index":"0.000014544558741461"},{"denom":"ASSET10","index":"0.000010133244841823"},{"denom":"ASSET11","index":"0.000014070651242217"},{"denom":"ASSET12","index":"0.000012670295178174"},{"denom":"ASSET13","index":"0.000004360461787457"},{"denom":"ASSET14","index":"0.000013143775348745"},{"denom":"ASSET15","index":"0.000009397812194213"},{"denom":"ASSET16","index":"0.000006552230555377"},{"denom":"ASSET17","index":"0.000004653181929010"},{"denom":"ASSET18","index":"0.000002216553831001"},{"denom":"ASSET2","index":"0.000004293371185670"},{"denom":"ASSET3","index":"0.000001255918972299"},{"denom":"ASSET4","index":"0.000011819911117312"},{"denom":"ASSET5","index":"0.000000974736704938"},{"denom":"ASSET6","index":"0.000003967319407560"},{"denom":"ASSET7","index":"0.000006076186412764"},{"denom":"ASSET8","index":"0.000007929083542361"},{"denom":"ASSET9","index":"0.000003424611991834"}],"last_reward_claim_height":"86"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET7","shares":"855930534.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001546168277317"},{"denom":"ASSET1","index":"0.000012892123182452"},{"denom":"ASSET10","index":"0.000008982377260299"},{"denom":"ASSET11","index":"0.000012472337191477"},{"denom":"ASSET12","index":"0.000011231230783378"},{"denom":"ASSET13","index":"0.000003864117010091"},{"denom":"ASSET14","index":"0.000011651016774353"},{"denom":"ASSET15","index":"0.000008329231976204"},{"denom":"ASSET16","index":"0.000005807908663952"},{"denom":"ASSET17","index":"0.000004124853650448"},{"denom":"ASSET18","index":"0.000001964650585090"},{"denom":"ASSET2","index":"0.000003805451266010"},{"denom":"ASSET3","index":"0.000001113345454324"},{"denom":"ASSET4","index":"0.000010477701892746"},{"denom":"ASSET5","index":"0.000000863038279582"},{"denom":"ASSET6","index":"0.000003516033595214"},{"denom":"ASSET7","index":"0.000005385515306574"},{"denom":"ASSET8","index":"0.000007028156140823"},{"denom":"ASSET9","index":"0.000003034974493755"}],"last_reward_claim_height":"88"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET16","shares":"729644070.832080784128273546","reward_history":[{"denom":"ASSET0","index":"0.000001546168277317"},{"denom":"ASSET1","index":"0.000012892123182452"},{"denom":"ASSET10","index":"0.000008982377260299"},{"denom":"ASSET11","index":"0.000012472337191477"},{"denom":"ASSET12","index":"0.000011231230783378"},{"denom":"ASSET13","index":"0.000003864117010091"},{"denom":"ASSET14","index":"0.000011651016774353"},{"denom":"ASSET15","index":"0.000008329231976204"},{"denom":"ASSET16","index":"0.000005807908663952"},{"denom":"ASSET17","index":"0.000004124853650448"},{"denom":"ASSET18","index":"0.000001964650585090"},{"denom":"ASSET2","index":"0.000003805451266010"},{"denom":"ASSET3","index":"0.000001113345454324"},{"denom":"ASSET4","index":"0.000010477701892746"},{"denom":"ASSET5","index":"0.000000863038279582"},{"denom":"ASSET6","index":"0.000003516033595214"},{"denom":"ASSET7","index":"0.000005385515306574"},{"denom":"ASSET8","index":"0.000007028156140823"},{"denom":"ASSET9","index":"0.000003034974493755"}],"last_reward_claim_height":"105"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET13","shares":"1000062684.486031400000000000","reward_history":[{"denom":"ASSET0","index":"0.000004648549344493"},{"denom":"ASSET1","index":"0.000037978316533688"},{"denom":"ASSET10","index":"0.000033290219143121"},{"denom":"ASSET11","index":"0.000039657248197361"},{"denom":"ASSET12","index":"0.000037837866302733"},{"denom":"ASSET13","index":"0.000012824764012983"},{"denom":"ASSET14","index":"0.000036575099744730"},{"denom":"ASSET15","index":"0.000029843051210200"},{"denom":"ASSET16","index":"0.000016840537595639"},{"denom":"ASSET17","index":"0.000013732356341625"},{"denom":"ASSET18","index":"0.000005671766950170"},{"denom":"ASSET2","index":"0.000011472292881176"},{"denom":"ASSET3","index":"0.000003300384266933"},{"denom":"ASSET4","index":"0.000031156816061403"},{"denom":"ASSET5","index":"0.000002591035551297"},{"denom":"ASSET6","index":"0.000010590406767696"},{"denom":"ASSET7","index":"0.000016355259958069"},{"denom":"ASSET8","index":"0.000023691797848915"},{"denom":"ASSET9","index":"0.000009453837376185"}],"last_reward_claim_height":"195"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET8","shares":"17201830.902601643203564405","reward_history":[{"denom":"ASSET0","index":"0.000003004514310835"},{"denom":"ASSET1","index":"0.000025497942224476"},{"denom":"ASSET10","index":"0.000020385999177782"},{"denom":"ASSET11","index":"0.000025346802479017"},{"denom":"ASSET12","index":"0.000024185328023735"},{"denom":"ASSET13","index":"0.000007962788555043"},{"denom":"ASSET14","index":"0.000023259189454501"},{"denom":"ASSET15","index":"0.000018355567065709"},{"denom":"ASSET16","index":"0.000011309092459120"},{"denom":"ASSET17","index":"0.000008887662321727"},{"denom":"ASSET18","index":"0.000003666570499762"},{"denom":"ASSET2","index":"0.000007723995884874"},{"denom":"ASSET3","index":"0.000002143405494402"},{"denom":"ASSET4","index":"0.000020670641097733"},{"denom":"ASSET5","index":"0.000001670336124344"},{"denom":"ASSET6","index":"0.000006739845385808"},{"denom":"ASSET7","index":"0.000010591422556410"},{"denom":"ASSET8","index":"0.000014475095162856"},{"denom":"ASSET9","index":"0.000006143360978771"}],"last_reward_claim_height":"174"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET18","shares":"563710689.000000000000000000","reward_history":[],"last_reward_claim_height":"62"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET5","shares":"62447236.308225806309404538","reward_history":[{"denom":"ASSET0","index":"0.000001507842106347"},{"denom":"ASSET1","index":"0.000012572313391156"},{"denom":"ASSET10","index":"0.000008759356679472"},{"denom":"ASSET11","index":"0.000012162445176153"},{"denom":"ASSET12","index":"0.000010952151629736"},{"denom":"ASSET13","index":"0.000003769211161813"},{"denom":"ASSET14","index":"0.000011361231636633"},{"denom":"ASSET15","index":"0.000008123272738112"},{"denom":"ASSET16","index":"0.000005663669344042"},{"denom":"ASSET17","index":"0.000004022225963767"},{"denom":"ASSET18","index":"0.000001916133905138"},{"denom":"ASSET2","index":"0.000003711277866039"},{"denom":"ASSET3","index":"0.000001085756665704"},{"denom":"ASSET4","index":"0.000010217147571101"},{"denom":"ASSET5","index":"0.000000842594465073"},{"denom":"ASSET6","index":"0.000003429493468225"},{"denom":"ASSET7","index":"0.000005252224712828"},{"denom":"ASSET8","index":"0.000006853863583762"},{"denom":"ASSET9","index":"0.000002960115541236"}],"last_reward_claim_height":"75"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET12","shares":"52903514.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003064659144392"},{"denom":"ASSET1","index":"0.000026014545525120"},{"denom":"ASSET10","index":"0.000020837902255895"},{"denom":"ASSET11","index":"0.000025870951889592"},{"denom":"ASSET12","index":"0.000024704995690840"},{"denom":"ASSET13","index":"0.000008129050348807"},{"denom":"ASSET14","index":"0.000023733606076391"},{"denom":"ASSET15","index":"0.000018755969892396"},{"denom":"ASSET16","index":"0.000011535737727926"},{"denom":"ASSET17","index":"0.000009078938038909"},{"denom":"ASSET18","index":"0.000003738223548700"},{"denom":"ASSET2","index":"0.000007883998416280"},{"denom":"ASSET3","index":"0.000002186926046113"},{"denom":"ASSET4","index":"0.000021089316501471"},{"denom":"ASSET5","index":"0.000001703791082418"},{"denom":"ASSET6","index":"0.000006873778950624"},{"denom":"ASSET7","index":"0.000010805665377904"},{"denom":"ASSET8","index":"0.000014777724141198"},{"denom":"ASSET9","index":"0.000006269886019705"}],"last_reward_claim_height":"142"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET18","shares":"650286475.823404003504491352","reward_history":[{"denom":"ASSET0","index":"0.000004661893028622"},{"denom":"ASSET1","index":"0.000038137975825711"},{"denom":"ASSET10","index":"0.000033150085518927"},{"denom":"ASSET11","index":"0.000039682713064008"},{"denom":"ASSET12","index":"0.000037808386674166"},{"denom":"ASSET13","index":"0.000012809978062150"},{"denom":"ASSET14","index":"0.000036604760467577"},{"denom":"ASSET15","index":"0.000029743967314677"},{"denom":"ASSET16","index":"0.000016918476649108"},{"denom":"ASSET17","index":"0.000013731443491498"},{"denom":"ASSET18","index":"0.000005692314706836"},{"denom":"ASSET2","index":"0.000011516703436018"},{"denom":"ASSET3","index":"0.000003310212659144"},{"denom":"ASSET4","index":"0.000031268129730844"},{"denom":"ASSET5","index":"0.000002599699609420"},{"denom":"ASSET6","index":"0.000010611913552986"},{"denom":"ASSET7","index":"0.000016393433257001"},{"denom":"ASSET8","index":"0.000023641582691432"},{"denom":"ASSET9","index":"0.000009470669846110"}],"last_reward_claim_height":"192"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET0","shares":"591732907.238586461131310292","reward_history":[{"denom":"ASSET0","index":"0.000004025900971927"},{"denom":"ASSET1","index":"0.000032866990223703"},{"denom":"ASSET10","index":"0.000029177590451167"},{"denom":"ASSET11","index":"0.000034457399555284"},{"denom":"ASSET12","index":"0.000033006816481640"},{"denom":"ASSET13","index":"0.000011167120321398"},{"denom":"ASSET14","index":"0.000031745829379235"},{"denom":"ASSET15","index":"0.000026105610144876"},{"denom":"ASSET16","index":"0.000014556334682662"},{"denom":"ASSET17","index":"0.000011974632893267"},{"denom":"ASSET18","index":"0.000004894173072333"},{"denom":"ASSET2","index":"0.000009948255093659"},{"denom":"ASSET3","index":"0.000002854082481256"},{"denom":"ASSET4","index":"0.000026972415235685"},{"denom":"ASSET5","index":"0.000002244012673462"},{"denom":"ASSET6","index":"0.000009165742222560"},{"denom":"ASSET7","index":"0.000014171217677897"},{"denom":"ASSET8","index":"0.000020639253265734"},{"denom":"ASSET9","index":"0.000008207596762469"}],"last_reward_claim_height":"200"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET8","shares":"130485521.000000000000000000","reward_history":[],"last_reward_claim_height":"33"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET17","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"42"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET1","shares":"358244514.866312011350236480","reward_history":[{"denom":"ASSET0","index":"0.000004613485224377"},{"denom":"ASSET1","index":"0.000037740369506725"},{"denom":"ASSET10","index":"0.000032691878864798"},{"denom":"ASSET11","index":"0.000039232152349692"},{"denom":"ASSET12","index":"0.000037331153749090"},{"denom":"ASSET13","index":"0.000012657550996453"},{"denom":"ASSET14","index":"0.000036202019838156"},{"denom":"ASSET15","index":"0.000029349029406985"},{"denom":"ASSET16","index":"0.000016745236814022"},{"denom":"ASSET17","index":"0.000013558784939453"},{"denom":"ASSET18","index":"0.000005636901817265"},{"denom":"ASSET2","index":"0.000011389634856992"},{"denom":"ASSET3","index":"0.000003276670342419"},{"denom":"ASSET4","index":"0.000030939743993790"},{"denom":"ASSET5","index":"0.000002570403032325"},{"denom":"ASSET6","index":"0.000010502839382187"},{"denom":"ASSET7","index":"0.000016219772344493"},{"denom":"ASSET8","index":"0.000023358092187368"},{"denom":"ASSET9","index":"0.000009362632929320"}],"last_reward_claim_height":"193"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET3","shares":"7450709.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001552339226368"},{"denom":"ASSET1","index":"0.000012948480372324"},{"denom":"ASSET10","index":"0.000009021431734191"},{"denom":"ASSET11","index":"0.000012526515146109"},{"denom":"ASSET12","index":"0.000011279099696349"},{"denom":"ASSET13","index":"0.000003880848065920"},{"denom":"ASSET14","index":"0.000011701064922564"},{"denom":"ASSET15","index":"0.000008365383608761"},{"denom":"ASSET16","index":"0.000005830512213323"},{"denom":"ASSET17","index":"0.000004142651308462"},{"denom":"ASSET18","index":"0.000001971224414436"},{"denom":"ASSET2","index":"0.000003822327341117"},{"denom":"ASSET3","index":"0.000001118053847563"},{"denom":"ASSET4","index":"0.000010521410312050"},{"denom":"ASSET5","index":"0.000000865490719463"},{"denom":"ASSET6","index":"0.000003529723717099"},{"denom":"ASSET7","index":"0.000005408546987108"},{"denom":"ASSET8","index":"0.000007056367396050"},{"denom":"ASSET9","index":"0.000003046157727933"}],"last_reward_claim_height":"120"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET7","shares":"795357775.000000000000000000","reward_history":[],"last_reward_claim_height":"32"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET2","shares":"146696964.960164119129441713","reward_history":[{"denom":"ASSET0","index":"0.000003932141229954"},{"denom":"ASSET1","index":"0.000031982273733453"},{"denom":"ASSET10","index":"0.000028524807141068"},{"denom":"ASSET11","index":"0.000033650870548373"},{"denom":"ASSET12","index":"0.000032189741660520"},{"denom":"ASSET13","index":"0.000010928281530915"},{"denom":"ASSET14","index":"0.000031029292859346"},{"denom":"ASSET15","index":"0.000025528430167550"},{"denom":"ASSET16","index":"0.000014169702033303"},{"denom":"ASSET17","index":"0.000011665236620037"},{"denom":"ASSET18","index":"0.000004785741423778"},{"denom":"ASSET2","index":"0.000009671723513504"},{"denom":"ASSET3","index":"0.000002787177463987"},{"denom":"ASSET4","index":"0.000026276537470003"},{"denom":"ASSET5","index":"0.000002193093087113"},{"denom":"ASSET6","index":"0.000008967187788370"},{"denom":"ASSET7","index":"0.000013834455896763"},{"denom":"ASSET8","index":"0.000020224290111997"},{"denom":"ASSET9","index":"0.000008004370791503"}],"last_reward_claim_height":"194"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET3","shares":"18125076.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003342998947188"},{"denom":"ASSET1","index":"0.000028345782457833"},{"denom":"ASSET10","index":"0.000022532322238539"},{"denom":"ASSET11","index":"0.000028144588841629"},{"denom":"ASSET12","index":"0.000026788988923046"},{"denom":"ASSET13","index":"0.000008836278349189"},{"denom":"ASSET14","index":"0.000025846526421467"},{"denom":"ASSET15","index":"0.000020312521464953"},{"denom":"ASSET16","index":"0.000012581099317360"},{"denom":"ASSET17","index":"0.000009844015126225"},{"denom":"ASSET18","index":"0.000004087085525414"},{"denom":"ASSET2","index":"0.000008577030596387"},{"denom":"ASSET3","index":"0.000002386540105172"},{"denom":"ASSET4","index":"0.000022982635628207"},{"denom":"ASSET5","index":"0.000001858980311097"},{"denom":"ASSET6","index":"0.000007503977785171"},{"denom":"ASSET7","index":"0.000011778054778213"},{"denom":"ASSET8","index":"0.000016064148587518"},{"denom":"ASSET9","index":"0.000006822246648031"}],"last_reward_claim_height":"153"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET15","shares":"46514409.174438445562130685","reward_history":[{"denom":"ASSET0","index":"0.000003342998947188"},{"denom":"ASSET1","index":"0.000028345782457833"},{"denom":"ASSET10","index":"0.000022532322238539"},{"denom":"ASSET11","index":"0.000028144588841629"},{"denom":"ASSET12","index":"0.000026788988923046"},{"denom":"ASSET13","index":"0.000008836278349189"},{"denom":"ASSET14","index":"0.000025846526421467"},{"denom":"ASSET15","index":"0.000020312521464953"},{"denom":"ASSET16","index":"0.000012581099317360"},{"denom":"ASSET17","index":"0.000009844015126225"},{"denom":"ASSET18","index":"0.000004087085525414"},{"denom":"ASSET2","index":"0.000008577030596387"},{"denom":"ASSET3","index":"0.000002386540105172"},{"denom":"ASSET4","index":"0.000022982635628207"},{"denom":"ASSET5","index":"0.000001858980311097"},{"denom":"ASSET6","index":"0.000007503977785171"},{"denom":"ASSET7","index":"0.000011778054778213"},{"denom":"ASSET8","index":"0.000016064148587518"},{"denom":"ASSET9","index":"0.000006822246648031"}],"last_reward_claim_height":"150"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET17","shares":"576937590.000000000000000000","reward_history":[],"last_reward_claim_height":"49"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET10","shares":"403546777.722482694688825976","reward_history":[{"denom":"ASSET0","index":"0.000003333609736915"},{"denom":"ASSET1","index":"0.000028281729059652"},{"denom":"ASSET10","index":"0.000022560289398652"},{"denom":"ASSET11","index":"0.000028101042421314"},{"denom":"ASSET12","index":"0.000026787599659919"},{"denom":"ASSET13","index":"0.000008826015241086"},{"denom":"ASSET14","index":"0.000025794402991537"},{"denom":"ASSET15","index":"0.000020323143219667"},{"denom":"ASSET16","index":"0.000012547562311789"},{"denom":"ASSET17","index":"0.000009844220733470"},{"denom":"ASSET18","index":"0.000004071528772633"},{"denom":"ASSET2","index":"0.000008563776406339"},{"denom":"ASSET3","index":"0.000002379222276435"},{"denom":"ASSET4","index":"0.000022929058250150"},{"denom":"ASSET5","index":"0.000001853699834530"},{"denom":"ASSET6","index":"0.000007480326246914"},{"denom":"ASSET7","index":"0.000011749530638760"},{"denom":"ASSET8","index":"0.000016044906214881"},{"denom":"ASSET9","index":"0.000006811209452101"}],"last_reward_claim_height":"146"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET13","shares":"542527118.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003333609736915"},{"denom":"ASSET1","index":"0.000028281729059652"},{"denom":"ASSET10","index":"0.000022560289398652"},{"denom":"ASSET11","index":"0.000028101042421314"},{"denom":"ASSET12","index":"0.000026787599659919"},{"denom":"ASSET13","index":"0.000008826015241086"},{"denom":"ASSET14","index":"0.000025794402991537"},{"denom":"ASSET15","index":"0.000020323143219667"},{"denom":"ASSET16","index":"0.000012547562311789"},{"denom":"ASSET17","index":"0.000009844220733470"},{"denom":"ASSET18","index":"0.000004071528772633"},{"denom":"ASSET2","index":"0.000008563776406339"},{"denom":"ASSET3","index":"0.000002379222276435"},{"denom":"ASSET4","index":"0.000022929058250150"},{"denom":"ASSET5","index":"0.000001853699834530"},{"denom":"ASSET6","index":"0.000007480326246914"},{"denom":"ASSET7","index":"0.000011749530638760"},{"denom":"ASSET8","index":"0.000016044906214881"},{"denom":"ASSET9","index":"0.000006811209452101"}],"last_reward_claim_height":"146"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET16","shares":"934374299.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001694764141112"},{"denom":"ASSET1","index":"0.000014130580032100"},{"denom":"ASSET10","index":"0.000009844524497723"},{"denom":"ASSET11","index":"0.000013669508873851"},{"denom":"ASSET12","index":"0.000012309527666765"},{"denom":"ASSET13","index":"0.000004236016804025"},{"denom":"ASSET14","index":"0.000012769407426673"},{"denom":"ASSET15","index":"0.000009129685492685"},{"denom":"ASSET16","index":"0.000006365641339869"},{"denom":"ASSET17","index":"0.000004520761007698"},{"denom":"ASSET18","index":"0.000002153452502679"},{"denom":"ASSET2","index":"0.000004171085594400"},{"denom":"ASSET3","index":"0.000001219991901933"},{"denom":"ASSET4","index":"0.000011483292916774"},{"denom":"ASSET5","index":"0.000000947161681676"},{"denom":"ASSET6","index":"0.000003854173635500"},{"denom":"ASSET7","index":"0.000005903378783277"},{"denom":"ASSET8","index":"0.000007702985978462"},{"denom":"ASSET9","index":"0.000003326979869284"}],"last_reward_claim_height":"89"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET16","shares":"246643684.826586087399850630","reward_history":[{"denom":"ASSET0","index":"0.000001763265776240"},{"denom":"ASSET1","index":"0.000014701143889842"},{"denom":"ASSET10","index":"0.000010242267715158"},{"denom":"ASSET11","index":"0.000014221824092125"},{"denom":"ASSET12","index":"0.000012807154532407"},{"denom":"ASSET13","index":"0.000004407037513175"},{"denom":"ASSET14","index":"0.000013285723045174"},{"denom":"ASSET15","index":"0.000009498495615253"},{"denom":"ASSET16","index":"0.000006622576828953"},{"denom":"ASSET17","index":"0.000004703043783239"},{"denom":"ASSET18","index":"0.000002240331719108"},{"denom":"ASSET2","index":"0.000004339421867729"},{"denom":"ASSET3","index":"0.000001269671564485"},{"denom":"ASSET4","index":"0.000011947684550294"},{"denom":"ASSET5","index":"0.000000984934568662"},{"denom":"ASSET6","index":"0.000004010359059893"},{"denom":"ASSET7","index":"0.000006141754461338"},{"denom":"ASSET8","index":"0.000008013956555240"},{"denom":"ASSET9","index":"0.000003461169761882"}],"last_reward_claim_height":"69"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET2","shares":"312323697.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001453309126336"},{"denom":"ASSET1","index":"0.000012116886392617"},{"denom":"ASSET10","index":"0.000008441923956558"},{"denom":"ASSET11","index":"0.000011721955689254"},{"denom":"ASSET12","index":"0.000010555542874101"},{"denom":"ASSET13","index":"0.000003632376264868"},{"denom":"ASSET14","index":"0.000010950025301978"},{"denom":"ASSET15","index":"0.000007829131366891"},{"denom":"ASSET16","index":"0.000005458650595742"},{"denom":"ASSET17","index":"0.000003876686404859"},{"denom":"ASSET18","index":"0.000001846446727754"},{"denom":"ASSET2","index":"0.000003576790104576"},{"denom":"ASSET3","index":"0.000001046274984845"},{"denom":"ASSET4","index":"0.000009847267605868"},{"denom":"ASSET5","index":"0.000000812275181037"},{"denom":"ASSET6","index":"0.000003305135159925"},{"denom":"ASSET7","index":"0.000005061926790434"},{"denom":"ASSET8","index":"0.000006605339289501"},{"denom":"ASSET9","index":"0.000002852825194325"}],"last_reward_claim_height":"112"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET5","shares":"679604146.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003036454064443"},{"denom":"ASSET1","index":"0.000025762443856573"},{"denom":"ASSET10","index":"0.000020552854458451"},{"denom":"ASSET11","index":"0.000025598594042577"},{"denom":"ASSET12","index":"0.000024403233064712"},{"denom":"ASSET13","index":"0.000008040226829205"},{"denom":"ASSET14","index":"0.000023496526683137"},{"denom":"ASSET15","index":"0.000018514610345002"},{"denom":"ASSET16","index":"0.000011429420030088"},{"denom":"ASSET17","index":"0.000008967792958730"},{"denom":"ASSET18","index":"0.000003708688180539"},{"denom":"ASSET2","index":"0.000007801450355100"},{"denom":"ASSET3","index":"0.000002167197324698"},{"denom":"ASSET4","index":"0.000020886439041228"},{"denom":"ASSET5","index":"0.000001688395026424"},{"denom":"ASSET6","index":"0.000006814112030993"},{"denom":"ASSET7","index":"0.000010703097412338"},{"denom":"ASSET8","index":"0.000014616213118562"},{"denom":"ASSET9","index":"0.000006204650488693"}],"last_reward_claim_height":"132"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET10","shares":"471895817.999999984899333824","reward_history":[{"denom":"ASSET0","index":"0.000003036454064443"},{"denom":"ASSET1","index":"0.000025762443856573"},{"denom":"ASSET10","index":"0.000020552854458451"},{"denom":"ASSET11","index":"0.000025598594042577"},{"denom":"ASSET12","index":"0.000024403233064712"},{"denom":"ASSET13","index":"0.000008040226829205"},{"denom":"ASSET14","index":"0.000023496526683137"},{"denom":"ASSET15","index":"0.000018514610345002"},{"denom":"ASSET16","index":"0.000011429420030088"},{"denom":"ASSET17","index":"0.000008967792958730"},{"denom":"ASSET18","index":"0.000003708688180539"},{"denom":"ASSET2","index":"0.000007801450355100"},{"denom":"ASSET3","index":"0.000002167197324698"},{"denom":"ASSET4","index":"0.000020886439041228"},{"denom":"ASSET5","index":"0.000001688395026424"},{"denom":"ASSET6","index":"0.000006814112030993"},{"denom":"ASSET7","index":"0.000010703097412338"},{"denom":"ASSET8","index":"0.000014616213118562"},{"denom":"ASSET9","index":"0.000006204650488693"}],"last_reward_claim_height":"155"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET12","shares":"465722990.730377654147653500","reward_history":[{"denom":"ASSET0","index":"0.000001542334439671"},{"denom":"ASSET1","index":"0.000012860022908304"},{"denom":"ASSET10","index":"0.000008959505058412"},{"denom":"ASSET11","index":"0.000012440701863130"},{"denom":"ASSET12","index":"0.000011202637482986"},{"denom":"ASSET13","index":"0.000003855293405849"},{"denom":"ASSET14","index":"0.000011621234937056"},{"denom":"ASSET15","index":"0.000008308996655285"},{"denom":"ASSET16","index":"0.000005793070384239"},{"denom":"ASSET17","index":"0.000004114339021332"},{"denom":"ASSET18","index":"0.000001959846507084"},{"denom":"ASSET2","index":"0.000003796320730815"},{"denom":"ASSET3","index":"0.000001110350550164"},{"denom":"ASSET4","index":"0.000010450826325201"},{"denom":"ASSET5","index":"0.000000861797005699"},{"denom":"ASSET6","index":"0.000003507969675592"},{"denom":"ASSET7","index":"0.000005372663952407"},{"denom":"ASSET8","index":"0.000007010512417899"},{"denom":"ASSET9","index":"0.000003027866977623"}],"last_reward_claim_height":"67"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET0","shares":"23823442.000000013759452213","reward_history":[{"denom":"ASSET0","index":"0.000001802604811891"},{"denom":"ASSET1","index":"0.000015041134377282"},{"denom":"ASSET10","index":"0.000010478421042795"},{"denom":"ASSET11","index":"0.000014549893343095"},{"denom":"ASSET12","index":"0.000013101148598203"},{"denom":"ASSET13","index":"0.000004508593559534"},{"denom":"ASSET14","index":"0.000013592389632390"},{"denom":"ASSET15","index":"0.000009716581133843"},{"denom":"ASSET16","index":"0.000006773297988330"},{"denom":"ASSET17","index":"0.000004812496911192"},{"denom":"ASSET18","index":"0.000002289682786467"},{"denom":"ASSET2","index":"0.000004437821546134"},{"denom":"ASSET3","index":"0.000001298874598869"},{"denom":"ASSET4","index":"0.000012222743020122"},{"denom":"ASSET5","index":"0.000001007460426045"},{"denom":"ASSET6","index":"0.000004100613717582"},{"denom":"ASSET7","index":"0.000006282056954143"},{"denom":"ASSET8","index":"0.000008197064375552"},{"denom":"ASSET9","index":"0.000003538600669994"}],"last_reward_claim_height":"120"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET11","shares":"704654482.000000057077013042","reward_history":[{"denom":"ASSET0","index":"0.000001802604811891"},{"denom":"ASSET1","index":"0.000015041134377282"},{"denom":"ASSET10","index":"0.000010478421042795"},{"denom":"ASSET11","index":"0.000014549893343095"},{"denom":"ASSET12","index":"0.000013101148598203"},{"denom":"ASSET13","index":"0.000004508593559534"},{"denom":"ASSET14","index":"0.000013592389632390"},{"denom":"ASSET15","index":"0.000009716581133843"},{"denom":"ASSET16","index":"0.000006773297988330"},{"denom":"ASSET17","index":"0.000004812496911192"},{"denom":"ASSET18","index":"0.000002289682786467"},{"denom":"ASSET2","index":"0.000004437821546134"},{"denom":"ASSET3","index":"0.000001298874598869"},{"denom":"ASSET4","index":"0.000012222743020122"},{"denom":"ASSET5","index":"0.000001007460426045"},{"denom":"ASSET6","index":"0.000004100613717582"},{"denom":"ASSET7","index":"0.000006282056954143"},{"denom":"ASSET8","index":"0.000008197064375552"},{"denom":"ASSET9","index":"0.000003538600669994"}],"last_reward_claim_height":"86"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET13","shares":"427618671.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003500919125422"},{"denom":"ASSET1","index":"0.000029708744113596"},{"denom":"ASSET10","index":"0.000023658219501850"},{"denom":"ASSET11","index":"0.000029508250092955"},{"denom":"ASSET12","index":"0.000028107871580940"},{"denom":"ASSET13","index":"0.000009266072102552"},{"denom":"ASSET14","index":"0.000027092614384257"},{"denom":"ASSET15","index":"0.000021318431245277"},{"denom":"ASSET16","index":"0.000013180724612002"},{"denom":"ASSET17","index":"0.000010330094773179"},{"denom":"ASSET18","index":"0.000004277644880979"},{"denom":"ASSET2","index":"0.000008990842831989"},{"denom":"ASSET3","index":"0.000002500335792843"},{"denom":"ASSET4","index":"0.000024086210482120"},{"denom":"ASSET5","index":"0.000001946754653173"},{"denom":"ASSET6","index":"0.000007858889858659"},{"denom":"ASSET7","index":"0.000012341576470869"},{"denom":"ASSET8","index":"0.000016843078118646"},{"denom":"ASSET9","index":"0.000007150129263591"}],"last_reward_claim_height":"128"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET14","shares":"160445114.459931490829504226","reward_history":[{"denom":"ASSET0","index":"0.000003500919125422"},{"denom":"ASSET1","index":"0.000029708744113596"},{"denom":"ASSET10","index":"0.000023658219501850"},{"denom":"ASSET11","index":"0.000029508250092955"},{"denom":"ASSET12","index":"0.000028107871580940"},{"denom":"ASSET13","index":"0.000009266072102552"},{"denom":"ASSET14","index":"0.000027092614384257"},{"denom":"ASSET15","index":"0.000021318431245277"},{"denom":"ASSET16","index":"0.000013180724612002"},{"denom":"ASSET17","index":"0.000010330094773179"},{"denom":"ASSET18","index":"0.000004277644880979"},{"denom":"ASSET2","index":"0.000008990842831989"},{"denom":"ASSET3","index":"0.000002500335792843"},{"denom":"ASSET4","index":"0.000024086210482120"},{"denom":"ASSET5","index":"0.000001946754653173"},{"denom":"ASSET6","index":"0.000007858889858659"},{"denom":"ASSET7","index":"0.000012341576470869"},{"denom":"ASSET8","index":"0.000016843078118646"},{"denom":"ASSET9","index":"0.000007150129263591"}],"last_reward_claim_height":"134"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET16","shares":"61024514.666088165729192566","reward_history":[{"denom":"ASSET0","index":"0.000003500919125422"},{"denom":"ASSET1","index":"0.000029708744113596"},{"denom":"ASSET10","index":"0.000023658219501850"},{"denom":"ASSET11","index":"0.000029508250092955"},{"denom":"ASSET12","index":"0.000028107871580940"},{"denom":"ASSET13","index":"0.000009266072102552"},{"denom":"ASSET14","index":"0.000027092614384257"},{"denom":"ASSET15","index":"0.000021318431245277"},{"denom":"ASSET16","index":"0.000013180724612002"},{"denom":"ASSET17","index":"0.000010330094773179"},{"denom":"ASSET18","index":"0.000004277644880979"},{"denom":"ASSET2","index":"0.000008990842831989"},{"denom":"ASSET3","index":"0.000002500335792843"},{"denom":"ASSET4","index":"0.000024086210482120"},{"denom":"ASSET5","index":"0.000001946754653173"},{"denom":"ASSET6","index":"0.000007858889858659"},{"denom":"ASSET7","index":"0.000012341576470869"},{"denom":"ASSET8","index":"0.000016843078118646"},{"denom":"ASSET9","index":"0.000007150129263591"}],"last_reward_claim_height":"180"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET11","shares":"284024362.794931171291949560","reward_history":[{"denom":"ASSET0","index":"0.000003311345528520"},{"denom":"ASSET1","index":"0.000028134750769747"},{"denom":"ASSET10","index":"0.000022648872120201"},{"denom":"ASSET11","index":"0.000028007957662740"},{"denom":"ASSET12","index":"0.000026803793052874"},{"denom":"ASSET13","index":"0.000008804941803873"},{"denom":"ASSET14","index":"0.000025676450668466"},{"denom":"ASSET15","index":"0.000020365161363483"},{"denom":"ASSET16","index":"0.000012467103206876"},{"denom":"ASSET17","index":"0.000009848512066991"},{"denom":"ASSET18","index":"0.000004032794375330"},{"denom":"ASSET2","index":"0.000008534928074651"},{"denom":"ASSET3","index":"0.000002362590241163"},{"denom":"ASSET4","index":"0.000022806063702805"},{"denom":"ASSET5","index":"0.000001840254083448"},{"denom":"ASSET6","index":"0.000007424521355960"},{"denom":"ASSET7","index":"0.000011683846998076"},{"denom":"ASSET8","index":"0.000016006498096466"},{"denom":"ASSET9","index":"0.000006786333067798"}],"last_reward_claim_height":"178"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET2","shares":"399037366.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003037978324998"},{"denom":"ASSET1","index":"0.000025756345113171"},{"denom":"ASSET10","index":"0.000020449699671521"},{"denom":"ASSET11","index":"0.000025567125107120"},{"denom":"ASSET12","index":"0.000024323299608917"},{"denom":"ASSET13","index":"0.000008026089638757"},{"denom":"ASSET14","index":"0.000023482777870484"},{"denom":"ASSET15","index":"0.000018439819094125"},{"denom":"ASSET16","index":"0.000011433094032389"},{"denom":"ASSET17","index":"0.000008938487942114"},{"denom":"ASSET18","index":"0.000003715472889790"},{"denom":"ASSET2","index":"0.000007791978720736"},{"denom":"ASSET3","index":"0.000002168844641333"},{"denom":"ASSET4","index":"0.000020883291069830"},{"denom":"ASSET5","index":"0.000001689134510364"},{"denom":"ASSET6","index":"0.000006819968009550"},{"denom":"ASSET7","index":"0.000010702337477897"},{"denom":"ASSET8","index":"0.000014590947163921"},{"denom":"ASSET9","index":"0.000006197850437110"}],"last_reward_claim_height":"142"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET5","shares":"514036054.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003037978324998"},{"denom":"ASSET1","index":"0.000025756345113171"},{"denom":"ASSET10","index":"0.000020449699671521"},{"denom":"ASSET11","index":"0.000025567125107120"},{"denom":"ASSET12","index":"0.000024323299608917"},{"denom":"ASSET13","index":"0.000008026089638757"},{"denom":"ASSET14","index":"0.000023482777870484"},{"denom":"ASSET15","index":"0.000018439819094125"},{"denom":"ASSET16","index":"0.000011433094032389"},{"denom":"ASSET17","index":"0.000008938487942114"},{"denom":"ASSET18","index":"0.000003715472889790"},{"denom":"ASSET2","index":"0.000007791978720736"},{"denom":"ASSET3","index":"0.000002168844641333"},{"denom":"ASSET4","index":"0.000020883291069830"},{"denom":"ASSET5","index":"0.000001689134510364"},{"denom":"ASSET6","index":"0.000006819968009550"},{"denom":"ASSET7","index":"0.000010702337477897"},{"denom":"ASSET8","index":"0.000014590947163921"},{"denom":"ASSET9","index":"0.000006197850437110"}],"last_reward_claim_height":"172"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET6","shares":"35663583.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003037978324998"},{"denom":"ASSET1","index":"0.000025756345113171"},{"denom":"ASSET10","index":"0.000020449699671521"},{"denom":"ASSET11","index":"0.000025567125107120"},{"denom":"ASSET12","index":"0.000024323299608917"},{"denom":"ASSET13","index":"0.000008026089638757"},{"denom":"ASSET14","index":"0.000023482777870484"},{"denom":"ASSET15","index":"0.000018439819094125"},{"denom":"ASSET16","index":"0.000011433094032389"},{"denom":"ASSET17","index":"0.000008938487942114"},{"denom":"ASSET18","index":"0.000003715472889790"},{"denom":"ASSET2","index":"0.000007791978720736"},{"denom":"ASSET3","index":"0.000002168844641333"},{"denom":"ASSET4","index":"0.000020883291069830"},{"denom":"ASSET5","index":"0.000001689134510364"},{"denom":"ASSET6","index":"0.000006819968009550"},{"denom":"ASSET7","index":"0.000010702337477897"},{"denom":"ASSET8","index":"0.000014590947163921"},{"denom":"ASSET9","index":"0.000006197850437110"}],"last_reward_claim_height":"161"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET14","shares":"363264073.114125845842189032","reward_history":[{"denom":"ASSET0","index":"0.000001600184479142"},{"denom":"ASSET1","index":"0.000013342157474081"},{"denom":"ASSET10","index":"0.000009295060662992"},{"denom":"ASSET11","index":"0.000012907134644369"},{"denom":"ASSET12","index":"0.000011622469236023"},{"denom":"ASSET13","index":"0.000003999732516397"},{"denom":"ASSET14","index":"0.000012056763384279"},{"denom":"ASSET15","index":"0.000008620301633991"},{"denom":"ASSET16","index":"0.000006010164655719"},{"denom":"ASSET17","index":"0.000004268615973958"},{"denom":"ASSET18","index":"0.000002033021264483"},{"denom":"ASSET2","index":"0.000003938523274026"},{"denom":"ASSET3","index":"0.000001152045383207"},{"denom":"ASSET4","index":"0.000010842780077243"},{"denom":"ASSET5","index":"0.000000894092147498"},{"denom":"ASSET6","index":"0.000003639035195279"},{"denom":"ASSET7","index":"0.000005573684463094"},{"denom":"ASSET8","index":"0.000007272969620361"},{"denom":"ASSET9","index":"0.000003141345760282"}],"last_reward_claim_height":"108"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET2","shares":"238875381.481564827377194198","reward_history":[{"denom":"ASSET0","index":"0.000003203314564743"},{"denom":"ASSET1","index":"0.000027174750089688"},{"denom":"ASSET10","index":"0.000021494761442080"},{"denom":"ASSET11","index":"0.000026954579685264"},{"denom":"ASSET12","index":"0.000025598519259277"},{"denom":"ASSET13","index":"0.000008453363478510"},{"denom":"ASSET14","index":"0.000024766008219885"},{"denom":"ASSET15","index":"0.000019395989679368"},{"denom":"ASSET16","index":"0.000012063312986412"},{"denom":"ASSET17","index":"0.000009406957788586"},{"denom":"ASSET18","index":"0.000003925664786352"},{"denom":"ASSET2","index":"0.000008214094571203"},{"denom":"ASSET3","index":"0.000002289770772075"},{"denom":"ASSET4","index":"0.000022031271429646"},{"denom":"ASSET5","index":"0.000001779377444361"},{"denom":"ASSET6","index":"0.000007202120906665"},{"denom":"ASSET7","index":"0.000011290805949933"},{"denom":"ASSET8","index":"0.000015376618183469"},{"denom":"ASSET9","index":"0.000006529467958809"}],"last_reward_claim_height":"162"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET6","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003203314564743"},{"denom":"ASSET1","index":"0.000027174750089688"},{"denom":"ASSET10","index":"0.000021494761442080"},{"denom":"ASSET11","index":"0.000026954579685264"},{"denom":"ASSET12","index":"0.000025598519259277"},{"denom":"ASSET13","index":"0.000008453363478510"},{"denom":"ASSET14","index":"0.000024766008219885"},{"denom":"ASSET15","index":"0.000019395989679368"},{"denom":"ASSET16","index":"0.000012063312986412"},{"denom":"ASSET17","index":"0.000009406957788586"},{"denom":"ASSET18","index":"0.000003925664786352"},{"denom":"ASSET2","index":"0.000008214094571203"},{"denom":"ASSET3","index":"0.000002289770772075"},{"denom":"ASSET4","index":"0.000022031271429646"},{"denom":"ASSET5","index":"0.000001779377444361"},{"denom":"ASSET6","index":"0.000007202120906665"},{"denom":"ASSET7","index":"0.000011290805949933"},{"denom":"ASSET8","index":"0.000015376618183469"},{"denom":"ASSET9","index":"0.000006529467958809"}],"last_reward_claim_height":"124"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET9","shares":"520751603.875901414881799027","reward_history":[{"denom":"ASSET0","index":"0.000003310751488522"},{"denom":"ASSET1","index":"0.000028084250149300"},{"denom":"ASSET10","index":"0.000022395324527460"},{"denom":"ASSET11","index":"0.000027902986790638"},{"denom":"ASSET12","index":"0.000026594787286768"},{"denom":"ASSET13","index":"0.000008763085936534"},{"denom":"ASSET14","index":"0.000025613920456358"},{"denom":"ASSET15","index":"0.000020176020856033"},{"denom":"ASSET16","index":"0.000012460451689171"},{"denom":"ASSET17","index":"0.000009773335616478"},{"denom":"ASSET18","index":"0.000004043661907525"},{"denom":"ASSET2","index":"0.000008503271494062"},{"denom":"ASSET3","index":"0.000002362859659779"},{"denom":"ASSET4","index":"0.000022769116693783"},{"denom":"ASSET5","index":"0.000001840413908887"},{"denom":"ASSET6","index":"0.000007429033260494"},{"denom":"ASSET7","index":"0.000011667535172652"},{"denom":"ASSET8","index":"0.000015931047386954"},{"denom":"ASSET9","index":"0.000006763232815972"}],"last_reward_claim_height":"164"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET7","shares":"767360126.579609405012981043","reward_history":[{"denom":"ASSET0","index":"0.000001670929391506"},{"denom":"ASSET1","index":"0.000013946161101263"},{"denom":"ASSET10","index":"0.000009716355120388"},{"denom":"ASSET11","index":"0.000013489421488305"},{"denom":"ASSET12","index":"0.000012147571569489"},{"denom":"ASSET13","index":"0.000004178741924768"},{"denom":"ASSET14","index":"0.000012601474290441"},{"denom":"ASSET15","index":"0.000009009969010905"},{"denom":"ASSET16","index":"0.000006280878901179"},{"denom":"ASSET17","index":"0.000004459594233357"},{"denom":"ASSET18","index":"0.000002124832112458"},{"denom":"ASSET2","index":"0.000004116330300637"},{"denom":"ASSET3","index":"0.000001202842210524"},{"denom":"ASSET4","index":"0.000011333383563781"},{"denom":"ASSET5","index":"0.000000933337469958"},{"denom":"ASSET6","index":"0.000003804272179982"},{"denom":"ASSET7","index":"0.000005824139288221"},{"denom":"ASSET8","index":"0.000007600033683947"},{"denom":"ASSET9","index":"0.000003282284050887"}],"last_reward_claim_height":"116"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET9","shares":"28720415.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001670929391506"},{"denom":"ASSET1","index":"0.000013946161101263"},{"denom":"ASSET10","index":"0.000009716355120388"},{"denom":"ASSET11","index":"0.000013489421488305"},{"denom":"ASSET12","index":"0.000012147571569489"},{"denom":"ASSET13","index":"0.000004178741924768"},{"denom":"ASSET14","index":"0.000012601474290441"},{"denom":"ASSET15","index":"0.000009009969010905"},{"denom":"ASSET16","index":"0.000006280878901179"},{"denom":"ASSET17","index":"0.000004459594233357"},{"denom":"ASSET18","index":"0.000002124832112458"},{"denom":"ASSET2","index":"0.000004116330300637"},{"denom":"ASSET3","index":"0.000001202842210524"},{"denom":"ASSET4","index":"0.000011333383563781"},{"denom":"ASSET5","index":"0.000000933337469958"},{"denom":"ASSET6","index":"0.000003804272179982"},{"denom":"ASSET7","index":"0.000005824139288221"},{"denom":"ASSET8","index":"0.000007600033683947"},{"denom":"ASSET9","index":"0.000003282284050887"}],"last_reward_claim_height":"113"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET7","shares":"477650197.244504289550590400","reward_history":[{"denom":"ASSET0","index":"0.000001598361255475"},{"denom":"ASSET1","index":"0.000013324868720531"},{"denom":"ASSET10","index":"0.000009283863630055"},{"denom":"ASSET11","index":"0.000012890721875256"},{"denom":"ASSET12","index":"0.000011607749807828"},{"denom":"ASSET13","index":"0.000003994929715268"},{"denom":"ASSET14","index":"0.000012041896653103"},{"denom":"ASSET15","index":"0.000008609605674538"},{"denom":"ASSET16","index":"0.000006002777756047"},{"denom":"ASSET17","index":"0.000004262945630213"},{"denom":"ASSET18","index":"0.000002030561253910"},{"denom":"ASSET2","index":"0.000003933279565341"},{"denom":"ASSET3","index":"0.000001150586482321"},{"denom":"ASSET4","index":"0.000010829011071909"},{"denom":"ASSET5","index":"0.000000892953750521"},{"denom":"ASSET6","index":"0.000003634763049905"},{"denom":"ASSET7","index":"0.000005566684063932"},{"denom":"ASSET8","index":"0.000007263685559290"},{"denom":"ASSET9","index":"0.000003137668156809"}],"last_reward_claim_height":"122"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET16","shares":"579227409.655191020290340203","reward_history":[{"denom":"ASSET0","index":"0.000004712919701194"},{"denom":"ASSET1","index":"0.000038551910188637"},{"denom":"ASSET10","index":"0.000033366472665064"},{"denom":"ASSET11","index":"0.000040061772796167"},{"denom":"ASSET12","index":"0.000038115593387847"},{"denom":"ASSET13","index":"0.000012923798257493"},{"denom":"ASSET14","index":"0.000036968911284872"},{"denom":"ASSET15","index":"0.000029958439689060"},{"denom":"ASSET16","index":"0.000017109313494010"},{"denom":"ASSET17","index":"0.000013844574846959"},{"denom":"ASSET18","index":"0.000005759646481226"},{"denom":"ASSET2","index":"0.000011633813263895"},{"denom":"ASSET3","index":"0.000003346860308295"},{"denom":"ASSET4","index":"0.000031605298521278"},{"denom":"ASSET5","index":"0.000002628206284514"},{"denom":"ASSET6","index":"0.000010728866620912"},{"denom":"ASSET7","index":"0.000016566279364856"},{"denom":"ASSET8","index":"0.000023846908582094"},{"denom":"ASSET9","index":"0.000009564372690576"}],"last_reward_claim_height":"197"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET0","shares":"674119310.000000142239174410","reward_history":[{"denom":"ASSET0","index":"0.000001745217677213"},{"denom":"ASSET1","index":"0.000014553842410819"},{"denom":"ASSET10","index":"0.000010139729507131"},{"denom":"ASSET11","index":"0.000014078681363843"},{"denom":"ASSET12","index":"0.000012678362515121"},{"denom":"ASSET13","index":"0.000004362304066790"},{"denom":"ASSET14","index":"0.000013152043309614"},{"denom":"ASSET15","index":"0.000009402563770700"},{"denom":"ASSET16","index":"0.000006556038246289"},{"denom":"ASSET17","index":"0.000004655394058383"},{"denom":"ASSET18","index":"0.000002217418219224"},{"denom":"ASSET2","index":"0.000004295692705065"},{"denom":"ASSET3","index":"0.000001256734357891"},{"denom":"ASSET4","index":"0.000011827217337515"},{"denom":"ASSET5","index":"0.000000975486386160"},{"denom":"ASSET6","index":"0.000003970037158850"},{"denom":"ASSET7","index":"0.000006079396946830"},{"denom":"ASSET8","index":"0.000007932673055287"},{"denom":"ASSET9","index":"0.000003426784497665"}],"last_reward_claim_height":"92"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET5","shares":"384930900.999999897223449433","reward_history":[{"denom":"ASSET0","index":"0.000003296605577903"},{"denom":"ASSET1","index":"0.000027950980635352"},{"denom":"ASSET10","index":"0.000022177590033485"},{"denom":"ASSET11","index":"0.000027741245317152"},{"denom":"ASSET12","index":"0.000026384837371861"},{"denom":"ASSET13","index":"0.000008707523198290"},{"denom":"ASSET14","index":"0.000025482773879389"},{"denom":"ASSET15","index":"0.000019999205716580"},{"denom":"ASSET16","index":"0.000012408342313410"},{"denom":"ASSET17","index":"0.000009694954350389"},{"denom":"ASSET18","index":"0.000004033447725414"},{"denom":"ASSET2","index":"0.000008454290496983"},{"denom":"ASSET3","index":"0.000002354114882033"},{"denom":"ASSET4","index":"0.000022662624820802"},{"denom":"ASSET5","index":"0.000001833709311257"},{"denom":"ASSET6","index":"0.000007402928859239"},{"denom":"ASSET7","index":"0.000011614131087351"},{"denom":"ASSET8","index":"0.000015829970625061"},{"denom":"ASSET9","index":"0.000006725199056296"}],"last_reward_claim_height":"169"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET6","shares":"308798908.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001745217677213"},{"denom":"ASSET1","index":"0.000014553842410819"},{"denom":"ASSET10","index":"0.000010139729507131"},{"denom":"ASSET11","index":"0.000014078681363843"},{"denom":"ASSET12","index":"0.000012678362515121"},{"denom":"ASSET13","index":"0.000004362304066790"},{"denom":"ASSET14","index":"0.000013152043309614"},{"denom":"ASSET15","index":"0.000009402563770700"},{"denom":"ASSET16","index":"0.000006556038246289"},{"denom":"ASSET17","index":"0.000004655394058383"},{"denom":"ASSET18","index":"0.000002217418219224"},{"denom":"ASSET2","index":"0.000004295692705065"},{"denom":"ASSET3","index":"0.000001256734357891"},{"denom":"ASSET4","index":"0.000011827217337515"},{"denom":"ASSET5","index":"0.000000975486386160"},{"denom":"ASSET6","index":"0.000003970037158850"},{"denom":"ASSET7","index":"0.000006079396946830"},{"denom":"ASSET8","index":"0.000007932673055287"},{"denom":"ASSET9","index":"0.000003426784497665"}],"last_reward_claim_height":"113"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET8","shares":"977654995.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003296605577903"},{"denom":"ASSET1","index":"0.000027950980635352"},{"denom":"ASSET10","index":"0.000022177590033485"},{"denom":"ASSET11","index":"0.000027741245317152"},{"denom":"ASSET12","index":"0.000026384837371861"},{"denom":"ASSET13","index":"0.000008707523198290"},{"denom":"ASSET14","index":"0.000025482773879389"},{"denom":"ASSET15","index":"0.000019999205716580"},{"denom":"ASSET16","index":"0.000012408342313410"},{"denom":"ASSET17","index":"0.000009694954350389"},{"denom":"ASSET18","index":"0.000004033447725414"},{"denom":"ASSET2","index":"0.000008454290496983"},{"denom":"ASSET3","index":"0.000002354114882033"},{"denom":"ASSET4","index":"0.000022662624820802"},{"denom":"ASSET5","index":"0.000001833709311257"},{"denom":"ASSET6","index":"0.000007402928859239"},{"denom":"ASSET7","index":"0.000011614131087351"},{"denom":"ASSET8","index":"0.000015829970625061"},{"denom":"ASSET9","index":"0.000006725199056296"}],"last_reward_claim_height":"174"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET0","shares":"71764781.521289728608568310","reward_history":[{"denom":"ASSET0","index":"0.000001696105704481"},{"denom":"ASSET1","index":"0.000014140754037071"},{"denom":"ASSET10","index":"0.000009851931515387"},{"denom":"ASSET11","index":"0.000013679695806241"},{"denom":"ASSET12","index":"0.000012318593050331"},{"denom":"ASSET13","index":"0.000004239283286244"},{"denom":"ASSET14","index":"0.000012779160793682"},{"denom":"ASSET15","index":"0.000009136800770120"},{"denom":"ASSET16","index":"0.000006369960897657"},{"denom":"ASSET17","index":"0.000004523766024416"},{"denom":"ASSET18","index":"0.000002155201985393"},{"denom":"ASSET2","index":"0.000004174048451456"},{"denom":"ASSET3","index":"0.000001220823336742"},{"denom":"ASSET4","index":"0.000011492121647193"},{"denom":"ASSET5","index":"0.000000947621810601"},{"denom":"ASSET6","index":"0.000003857193539630"},{"denom":"ASSET7","index":"0.000005907431204387"},{"denom":"ASSET8","index":"0.000007708991716984"},{"denom":"ASSET9","index":"0.000003329429011573"}],"last_reward_claim_height":"92"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET1","shares":"582137289.407548006351183692","reward_history":[{"denom":"ASSET0","index":"0.000003278023650839"},{"denom":"ASSET1","index":"0.000027801084973989"},{"denom":"ASSET10","index":"0.000022126343818190"},{"denom":"ASSET11","index":"0.000027610641458424"},{"denom":"ASSET12","index":"0.000026294522151225"},{"denom":"ASSET13","index":"0.000008669795972838"},{"denom":"ASSET14","index":"0.000025352034708572"},{"denom":"ASSET15","index":"0.000019941753748345"},{"denom":"ASSET16","index":"0.000012337408081897"},{"denom":"ASSET17","index":"0.000009662232510971"},{"denom":"ASSET18","index":"0.000004006663612522"},{"denom":"ASSET2","index":"0.000008414274009770"},{"denom":"ASSET3","index":"0.000002339697370568"},{"denom":"ASSET4","index":"0.000022540556466857"},{"denom":"ASSET5","index":"0.000001822656991491"},{"denom":"ASSET6","index":"0.000007357334263189"},{"denom":"ASSET7","index":"0.000011551068960203"},{"denom":"ASSET8","index":"0.000015761386047857"},{"denom":"ASSET9","index":"0.000006692834331509"}],"last_reward_claim_height":"148"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET9","shares":"828554040.000000003600365160","reward_history":[{"denom":"ASSET0","index":"0.000001696105704481"},{"denom":"ASSET1","index":"0.000014140754037071"},{"denom":"ASSET10","index":"0.000009851931515387"},{"denom":"ASSET11","index":"0.000013679695806241"},{"denom":"ASSET12","index":"0.000012318593050331"},{"denom":"ASSET13","index":"0.000004239283286244"},{"denom":"ASSET14","index":"0.000012779160793682"},{"denom":"ASSET15","index":"0.000009136800770120"},{"denom":"ASSET16","index":"0.000006369960897657"},{"denom":"ASSET17","index":"0.000004523766024416"},{"denom":"ASSET18","index":"0.000002155201985393"},{"denom":"ASSET2","index":"0.000004174048451456"},{"denom":"ASSET3","index":"0.000001220823336742"},{"denom":"ASSET4","index":"0.000011492121647193"},{"denom":"ASSET5","index":"0.000000947621810601"},{"denom":"ASSET6","index":"0.000003857193539630"},{"denom":"ASSET7","index":"0.000005907431204387"},{"denom":"ASSET8","index":"0.000007708991716984"},{"denom":"ASSET9","index":"0.000003329429011573"}],"last_reward_claim_height":"122"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET3","shares":"265726272.000000000044906060","reward_history":[],"last_reward_claim_height":"27"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET13","shares":"159454131.779979339432767820","reward_history":[{"denom":"ASSET0","index":"0.000004325641877836"},{"denom":"ASSET1","index":"0.000035348366307226"},{"denom":"ASSET10","index":"0.000031257662761879"},{"denom":"ASSET11","index":"0.000036992717950464"},{"denom":"ASSET12","index":"0.000035418573696276"},{"denom":"ASSET13","index":"0.000011977249429898"},{"denom":"ASSET14","index":"0.000034081065809858"},{"denom":"ASSET15","index":"0.000027976550364248"},{"denom":"ASSET16","index":"0.000015657655343385"},{"denom":"ASSET17","index":"0.000012854637082527"},{"denom":"ASSET18","index":"0.000005260882039585"},{"denom":"ASSET2","index":"0.000010698212732322"},{"denom":"ASSET3","index":"0.000003067429365425"},{"denom":"ASSET4","index":"0.000028998546821196"},{"denom":"ASSET5","index":"0.000002411533626135"},{"denom":"ASSET6","index":"0.000009843748043150"},{"denom":"ASSET7","index":"0.000015224574068437"},{"denom":"ASSET8","index":"0.000022125866923020"},{"denom":"ASSET9","index":"0.000008816372619792"}],"last_reward_claim_height":"200"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET14","shares":"752507268.578687456168004405","reward_history":[{"denom":"ASSET0","index":"0.000001139195115521"},{"denom":"ASSET1","index":"0.000009496890331931"},{"denom":"ASSET10","index":"0.000006616523219856"},{"denom":"ASSET11","index":"0.000009187371854639"},{"denom":"ASSET12","index":"0.000008273091178185"},{"denom":"ASSET13","index":"0.000002846943294505"},{"denom":"ASSET14","index":"0.000008582261490710"},{"denom":"ASSET15","index":"0.000006136055842283"},{"denom":"ASSET16","index":"0.000004278248649000"},{"denom":"ASSET17","index":"0.000003038433916001"},{"denom":"ASSET18","index":"0.000001447320933748"},{"denom":"ASSET2","index":"0.000002803422698710"},{"denom":"ASSET3","index":"0.000000819928024772"},{"denom":"ASSET4","index":"0.000007718116540611"},{"denom":"ASSET5","index":"0.000000636445192901"},{"denom":"ASSET6","index":"0.000002590694026466"},{"denom":"ASSET7","index":"0.000003967685677409"},{"denom":"ASSET8","index":"0.000005177210075735"},{"denom":"ASSET9","index":"0.000002236262294314"}],"last_reward_claim_height":"73"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET18","shares":"663685312.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001583959364947"},{"denom":"ASSET1","index":"0.000013443347430705"},{"denom":"ASSET10","index":"0.000009381913161610"},{"denom":"ASSET11","index":"0.000012996589661105"},{"denom":"ASSET12","index":"0.000011696930694994"},{"denom":"ASSET13","index":"0.000004020819926404"},{"denom":"ASSET14","index":"0.000012143688464595"},{"denom":"ASSET15","index":"0.000008691469335864"},{"denom":"ASSET16","index":"0.000006051537060952"},{"denom":"ASSET17","index":"0.000004305120325241"},{"denom":"ASSET18","index":"0.000002030717134548"},{"denom":"ASSET2","index":"0.000003939591241022"},{"denom":"ASSET3","index":"0.000001137201595347"},{"denom":"ASSET4","index":"0.000010925258183866"},{"denom":"ASSET5","index":"0.000000893515539201"},{"denom":"ASSET6","index":"0.000003655290842186"},{"denom":"ASSET7","index":"0.000005604779291351"},{"denom":"ASSET8","index":"0.000007310581684371"},{"denom":"ASSET9","index":"0.000003167918729894"}],"last_reward_claim_height":"80"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET0","shares":"956369255.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001549911588522"},{"denom":"ASSET1","index":"0.000012922257740418"},{"denom":"ASSET10","index":"0.000009003081854783"},{"denom":"ASSET11","index":"0.000012500946332712"},{"denom":"ASSET12","index":"0.000011256607989023"},{"denom":"ASSET13","index":"0.000003873860414458"},{"denom":"ASSET14","index":"0.000011677307025497"},{"denom":"ASSET15","index":"0.000008349069378868"},{"denom":"ASSET16","index":"0.000005821200932633"},{"denom":"ASSET17","index":"0.000004134118188113"},{"denom":"ASSET18","index":"0.000001969385882532"},{"denom":"ASSET2","index":"0.000003814460404941"},{"denom":"ASSET3","index":"0.000001115740384942"},{"denom":"ASSET4","index":"0.000010501554259806"},{"denom":"ASSET5","index":"0.000000865892922233"},{"denom":"ASSET6","index":"0.000003524808812143"},{"denom":"ASSET7","index":"0.000005398664782463"},{"denom":"ASSET8","index":"0.000007044106283197"},{"denom":"ASSET9","index":"0.000003042260281224"}],"last_reward_claim_height":"85"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET1","shares":"821315455.220707500408945408","reward_history":[{"denom":"ASSET0","index":"0.000001549911588522"},{"denom":"ASSET1","index":"0.000012922257740418"},{"denom":"ASSET10","index":"0.000009003081854783"},{"denom":"ASSET11","index":"0.000012500946332712"},{"denom":"ASSET12","index":"0.000011256607989023"},{"denom":"ASSET13","index":"0.000003873860414458"},{"denom":"ASSET14","index":"0.000011677307025497"},{"denom":"ASSET15","index":"0.000008349069378868"},{"denom":"ASSET16","index":"0.000005821200932633"},{"denom":"ASSET17","index":"0.000004134118188113"},{"denom":"ASSET18","index":"0.000001969385882532"},{"denom":"ASSET2","index":"0.000003814460404941"},{"denom":"ASSET3","index":"0.000001115740384942"},{"denom":"ASSET4","index":"0.000010501554259806"},{"denom":"ASSET5","index":"0.000000865892922233"},{"denom":"ASSET6","index":"0.000003524808812143"},{"denom":"ASSET7","index":"0.000005398664782463"},{"denom":"ASSET8","index":"0.000007044106283197"},{"denom":"ASSET9","index":"0.000003042260281224"}],"last_reward_claim_height":"102"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET6","shares":"1548588980.000000009874601640","reward_history":[{"denom":"ASSET0","index":"0.000003086330633608"},{"denom":"ASSET1","index":"0.000026187842720704"},{"denom":"ASSET10","index":"0.000020922921087024"},{"denom":"ASSET11","index":"0.000026029396638226"},{"denom":"ASSET12","index":"0.000024828709288325"},{"denom":"ASSET13","index":"0.000008176601230700"},{"denom":"ASSET14","index":"0.000023887113573615"},{"denom":"ASSET15","index":"0.000018841856891118"},{"denom":"ASSET16","index":"0.000011616230118922"},{"denom":"ASSET17","index":"0.000009124242236202"},{"denom":"ASSET18","index":"0.000003767471049721"},{"denom":"ASSET2","index":"0.000007932284099147"},{"denom":"ASSET3","index":"0.000002202458257762"},{"denom":"ASSET4","index":"0.000021230824628511"},{"denom":"ASSET5","index":"0.000001715648257347"},{"denom":"ASSET6","index":"0.000006923830152599"},{"denom":"ASSET7","index":"0.000010879262909104"},{"denom":"ASSET8","index":"0.000014863870027497"},{"denom":"ASSET9","index":"0.000006308409915314"}],"last_reward_claim_height":"148"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET5","shares":"414840608.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001535524830156"},{"denom":"ASSET1","index":"0.000012804491333161"},{"denom":"ASSET10","index":"0.000008921035499248"},{"denom":"ASSET11","index":"0.000012386713938596"},{"denom":"ASSET12","index":"0.000011154325740380"},{"denom":"ASSET13","index":"0.000003838812075390"},{"denom":"ASSET14","index":"0.000011571000819920"},{"denom":"ASSET15","index":"0.000008272874264409"},{"denom":"ASSET16","index":"0.000005767863369556"},{"denom":"ASSET17","index":"0.000004096202633783"},{"denom":"ASSET18","index":"0.000001951097594671"},{"denom":"ASSET2","index":"0.000003779838221540"},{"denom":"ASSET3","index":"0.000001105621970313"},{"denom":"ASSET4","index":"0.000010405853838244"},{"denom":"ASSET5","index":"0.000000858152247148"},{"denom":"ASSET6","index":"0.000003492685157466"},{"denom":"ASSET7","index":"0.000005348983659966"},{"denom":"ASSET8","index":"0.000006980409897318"},{"denom":"ASSET9","index":"0.000003014831594025"}],"last_reward_claim_height":"121"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET17","shares":"157750826.204187507390341139","reward_history":[{"denom":"ASSET0","index":"0.000004647505809556"},{"denom":"ASSET1","index":"0.000038009017612926"},{"denom":"ASSET10","index":"0.000032985806125997"},{"denom":"ASSET11","index":"0.000039536736758564"},{"denom":"ASSET12","index":"0.000037639937363025"},{"denom":"ASSET13","index":"0.000012761097886329"},{"denom":"ASSET14","index":"0.000036479648984095"},{"denom":"ASSET15","index":"0.000029606122473006"},{"denom":"ASSET16","index":"0.000016864369335210"},{"denom":"ASSET17","index":"0.000013669148362381"},{"denom":"ASSET18","index":"0.000005677302881525"},{"denom":"ASSET2","index":"0.000011472901091017"},{"denom":"ASSET3","index":"0.000003300273677547"},{"denom":"ASSET4","index":"0.000031164129384679"},{"denom":"ASSET5","index":"0.000002591830530814"},{"denom":"ASSET6","index":"0.000010581810919490"},{"denom":"ASSET7","index":"0.000016340325217451"},{"denom":"ASSET8","index":"0.000023553337303201"},{"denom":"ASSET9","index":"0.000009436380699685"}],"last_reward_claim_height":"189"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET0","shares":"357227406.000000007144548120","reward_history":[{"denom":"ASSET0","index":"0.000001813824295534"},{"denom":"ASSET1","index":"0.000015126179984122"},{"denom":"ASSET10","index":"0.000010538420488017"},{"denom":"ASSET11","index":"0.000014633035948465"},{"denom":"ASSET12","index":"0.000013177247733614"},{"denom":"ASSET13","index":"0.000004534560738834"},{"denom":"ASSET14","index":"0.000013669547344553"},{"denom":"ASSET15","index":"0.000009773371692973"},{"denom":"ASSET16","index":"0.000006813663054312"},{"denom":"ASSET17","index":"0.000004839398062246"},{"denom":"ASSET18","index":"0.000002305279481754"},{"denom":"ASSET2","index":"0.000004465317911910"},{"denom":"ASSET3","index":"0.000001306325039660"},{"denom":"ASSET4","index":"0.000012293135053249"},{"denom":"ASSET5","index":"0.000001013309662309"},{"denom":"ASSET6","index":"0.000004125859175036"},{"denom":"ASSET7","index":"0.000006318830169217"},{"denom":"ASSET8","index":"0.000008245807377042"},{"denom":"ASSET9","index":"0.000003561783463017"}],"last_reward_claim_height":"117"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET3","shares":"770783266.457282727742941120","reward_history":[{"denom":"ASSET0","index":"0.000005032492628219"},{"denom":"ASSET1","index":"0.000041266859936301"},{"denom":"ASSET10","index":"0.000035429889399779"},{"denom":"ASSET11","index":"0.000042723656696405"},{"denom":"ASSET12","index":"0.000040613653925804"},{"denom":"ASSET13","index":"0.000013753263814422"},{"denom":"ASSET14","index":"0.000039422947852626"},{"denom":"ASSET15","index":"0.000031833222954476"},{"denom":"ASSET16","index":"0.000018318787006987"},{"denom":"ASSET17","index":"0.000014763750221356"},{"denom":"ASSET18","index":"0.000006155924174192"},{"denom":"ASSET2","index":"0.000012450707876225"},{"denom":"ASSET3","index":"0.000003576279428546"},{"denom":"ASSET4","index":"0.000033804929454957"},{"denom":"ASSET5","index":"0.000002805642715656"},{"denom":"ASSET6","index":"0.000011448870089314"},{"denom":"ASSET7","index":"0.000017691249600312"},{"denom":"ASSET8","index":"0.000025352925937643"},{"denom":"ASSET9","index":"0.000010211383859297"}],"last_reward_claim_height":"191"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET7","shares":"522871219.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001813824295534"},{"denom":"ASSET1","index":"0.000015126179984122"},{"denom":"ASSET10","index":"0.000010538420488017"},{"denom":"ASSET11","index":"0.000014633035948465"},{"denom":"ASSET12","index":"0.000013177247733614"},{"denom":"ASSET13","index":"0.000004534560738834"},{"denom":"ASSET14","index":"0.000013669547344553"},{"denom":"ASSET15","index":"0.000009773371692973"},{"denom":"ASSET16","index":"0.000006813663054312"},{"denom":"ASSET17","index":"0.000004839398062246"},{"denom":"ASSET18","index":"0.000002305279481754"},{"denom":"ASSET2","index":"0.000004465317911910"},{"denom":"ASSET3","index":"0.000001306325039660"},{"denom":"ASSET4","index":"0.000012293135053249"},{"denom":"ASSET5","index":"0.000001013309662309"},{"denom":"ASSET6","index":"0.000004125859175036"},{"denom":"ASSET7","index":"0.000006318830169217"},{"denom":"ASSET8","index":"0.000008245807377042"},{"denom":"ASSET9","index":"0.000003561783463017"}],"last_reward_claim_height":"93"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET11","shares":"891736880.898528342283636611","reward_history":[{"denom":"ASSET0","index":"0.000001813824295534"},{"denom":"ASSET1","index":"0.000015126179984122"},{"denom":"ASSET10","index":"0.000010538420488017"},{"denom":"ASSET11","index":"0.000014633035948465"},{"denom":"ASSET12","index":"0.000013177247733614"},{"denom":"ASSET13","index":"0.000004534560738834"},{"denom":"ASSET14","index":"0.000013669547344553"},{"denom":"ASSET15","index":"0.000009773371692973"},{"denom":"ASSET16","index":"0.000006813663054312"},{"denom":"ASSET17","index":"0.000004839398062246"},{"denom":"ASSET18","index":"0.000002305279481754"},{"denom":"ASSET2","index":"0.000004465317911910"},{"denom":"ASSET3","index":"0.000001306325039660"},{"denom":"ASSET4","index":"0.000012293135053249"},{"denom":"ASSET5","index":"0.000001013309662309"},{"denom":"ASSET6","index":"0.000004125859175036"},{"denom":"ASSET7","index":"0.000006318830169217"},{"denom":"ASSET8","index":"0.000008245807377042"},{"denom":"ASSET9","index":"0.000003561783463017"}],"last_reward_claim_height":"120"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET8","shares":"336199284.485246471522752316","reward_history":[{"denom":"ASSET0","index":"0.000001444852701297"},{"denom":"ASSET1","index":"0.000012048934466992"},{"denom":"ASSET10","index":"0.000008394653008080"},{"denom":"ASSET11","index":"0.000011656844181701"},{"denom":"ASSET12","index":"0.000010496256937239"},{"denom":"ASSET13","index":"0.000003612131753243"},{"denom":"ASSET14","index":"0.000010888347222530"},{"denom":"ASSET15","index":"0.000007784952614452"},{"denom":"ASSET16","index":"0.000005427509774140"},{"denom":"ASSET17","index":"0.000003854247504410"},{"denom":"ASSET18","index":"0.000001835962760875"},{"denom":"ASSET2","index":"0.000003556258887589"},{"denom":"ASSET3","index":"0.000001040019481734"},{"denom":"ASSET4","index":"0.000009792454875142"},{"denom":"ASSET5","index":"0.000000807705987699"},{"denom":"ASSET6","index":"0.000003286696816452"},{"denom":"ASSET7","index":"0.000005033459037423"},{"denom":"ASSET8","index":"0.000006568492504337"},{"denom":"ASSET9","index":"0.000002836773214080"}],"last_reward_claim_height":"91"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET17","shares":"23060854.449193707905008053","reward_history":[{"denom":"ASSET0","index":"0.000004472729794114"},{"denom":"ASSET1","index":"0.000036518404552659"},{"denom":"ASSET10","index":"0.000031806618583794"},{"denom":"ASSET11","index":"0.000038065878352943"},{"denom":"ASSET12","index":"0.000036234170359366"},{"denom":"ASSET13","index":"0.000012300327066335"},{"denom":"ASSET14","index":"0.000035130679728770"},{"denom":"ASSET15","index":"0.000028544805069229"},{"denom":"ASSET16","index":"0.000016203683260988"},{"denom":"ASSET17","index":"0.000013151129891361"},{"denom":"ASSET18","index":"0.000005464565365162"},{"denom":"ASSET2","index":"0.000011020513055337"},{"denom":"ASSET3","index":"0.000003175272891215"},{"denom":"ASSET4","index":"0.000029958504869629"},{"denom":"ASSET5","index":"0.000002495325874955"},{"denom":"ASSET6","index":"0.000010191162452474"},{"denom":"ASSET7","index":"0.000015724445267312"},{"denom":"ASSET8","index":"0.000022717890304093"},{"denom":"ASSET9","index":"0.000009078313256265"}],"last_reward_claim_height":"196"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET5","shares":"282603062.000000010173710232","reward_history":[],"last_reward_claim_height":"55"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET8","shares":"162044439.076303273864451904","reward_history":[{"denom":"ASSET0","index":"0.000001655416114862"},{"denom":"ASSET1","index":"0.000013800538848519"},{"denom":"ASSET10","index":"0.000009615249134678"},{"denom":"ASSET11","index":"0.000013350879623065"},{"denom":"ASSET12","index":"0.000012022439267096"},{"denom":"ASSET13","index":"0.000004137189147657"},{"denom":"ASSET14","index":"0.000012471558036751"},{"denom":"ASSET15","index":"0.000008916980241305"},{"denom":"ASSET16","index":"0.000006216863065381"},{"denom":"ASSET17","index":"0.000004414983428766"},{"denom":"ASSET18","index":"0.000002102913517117"},{"denom":"ASSET2","index":"0.000004073955819077"},{"denom":"ASSET3","index":"0.000001191705038613"},{"denom":"ASSET4","index":"0.000011215538757958"},{"denom":"ASSET5","index":"0.000000924719873500"},{"denom":"ASSET6","index":"0.000003764274645778"},{"denom":"ASSET7","index":"0.000005765582472528"},{"denom":"ASSET8","index":"0.000007523144733557"},{"denom":"ASSET9","index":"0.000003249220268545"}],"last_reward_claim_height":"78"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET16","shares":"604723462.789505217738556269","reward_history":[{"denom":"ASSET0","index":"0.000004912340647587"},{"denom":"ASSET1","index":"0.000040199309595439"},{"denom":"ASSET10","index":"0.000034800768875367"},{"denom":"ASSET11","index":"0.000041767894394800"},{"denom":"ASSET12","index":"0.000039753547235653"},{"denom":"ASSET13","index":"0.000013472552474856"},{"denom":"ASSET14","index":"0.000038537764465707"},{"denom":"ASSET15","index":"0.000031242193966784"},{"denom":"ASSET16","index":"0.000017838437870347"},{"denom":"ASSET17","index":"0.000014440562344565"},{"denom":"ASSET18","index":"0.000006002059033299"},{"denom":"ASSET2","index":"0.000012133740101151"},{"denom":"ASSET3","index":"0.000003488688045009"},{"denom":"ASSET4","index":"0.000032952478616949"},{"denom":"ASSET5","index":"0.000002739203403453"},{"denom":"ASSET6","index":"0.000011180764418736"},{"denom":"ASSET7","index":"0.000017269876640579"},{"denom":"ASSET8","index":"0.000024857889435420"},{"denom":"ASSET9","index":"0.000009971931425304"}],"last_reward_claim_height":"185"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET0","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003296156578493"},{"denom":"ASSET1","index":"0.000027968412540894"},{"denom":"ASSET10","index":"0.000022307812536905"},{"denom":"ASSET11","index":"0.000027788867279184"},{"denom":"ASSET12","index":"0.000026488589695468"},{"denom":"ASSET13","index":"0.000008728285856057"},{"denom":"ASSET14","index":"0.000025508064125070"},{"denom":"ASSET15","index":"0.000020096610749334"},{"denom":"ASSET16","index":"0.000012407784704791"},{"denom":"ASSET17","index":"0.000009734180928237"},{"denom":"ASSET18","index":"0.000004026678592252"},{"denom":"ASSET2","index":"0.000008468774984810"},{"denom":"ASSET3","index":"0.000002353220293961"},{"denom":"ASSET4","index":"0.000022675279511256"},{"denom":"ASSET5","index":"0.000001832728492238"},{"denom":"ASSET6","index":"0.000007397034942132"},{"denom":"ASSET7","index":"0.000011618881320506"},{"denom":"ASSET8","index":"0.000015866042832442"},{"denom":"ASSET9","index":"0.000006735898552490"}],"last_reward_claim_height":"173"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET4","shares":"828847177.031679538738900300","reward_history":[{"denom":"ASSET0","index":"0.000001676736923170"},{"denom":"ASSET1","index":"0.000013985463602132"},{"denom":"ASSET10","index":"0.000009743339709608"},{"denom":"ASSET11","index":"0.000013528824721587"},{"denom":"ASSET12","index":"0.000012182509640070"},{"denom":"ASSET13","index":"0.000004192868462713"},{"denom":"ASSET14","index":"0.000012638122365828"},{"denom":"ASSET15","index":"0.000009036319060854"},{"denom":"ASSET16","index":"0.000006299564241947"},{"denom":"ASSET17","index":"0.000004474034874554"},{"denom":"ASSET18","index":"0.000002131323494140"},{"denom":"ASSET2","index":"0.000004128220711085"},{"denom":"ASSET3","index":"0.000001207784185172"},{"denom":"ASSET4","index":"0.000011365690429028"},{"denom":"ASSET5","index":"0.000000936879321208"},{"denom":"ASSET6","index":"0.000003814217346036"},{"denom":"ASSET7","index":"0.000005841899206614"},{"denom":"ASSET8","index":"0.000007623303918134"},{"denom":"ASSET9","index":"0.000003292930713863"}],"last_reward_claim_height":"88"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET6","shares":"75391007.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001676736923170"},{"denom":"ASSET1","index":"0.000013985463602132"},{"denom":"ASSET10","index":"0.000009743339709608"},{"denom":"ASSET11","index":"0.000013528824721587"},{"denom":"ASSET12","index":"0.000012182509640070"},{"denom":"ASSET13","index":"0.000004192868462713"},{"denom":"ASSET14","index":"0.000012638122365828"},{"denom":"ASSET15","index":"0.000009036319060854"},{"denom":"ASSET16","index":"0.000006299564241947"},{"denom":"ASSET17","index":"0.000004474034874554"},{"denom":"ASSET18","index":"0.000002131323494140"},{"denom":"ASSET2","index":"0.000004128220711085"},{"denom":"ASSET3","index":"0.000001207784185172"},{"denom":"ASSET4","index":"0.000011365690429028"},{"denom":"ASSET5","index":"0.000000936879321208"},{"denom":"ASSET6","index":"0.000003814217346036"},{"denom":"ASSET7","index":"0.000005841899206614"},{"denom":"ASSET8","index":"0.000007623303918134"},{"denom":"ASSET9","index":"0.000003292930713863"}],"last_reward_claim_height":"72"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET7","shares":"933936253.632542977932395621","reward_history":[{"denom":"ASSET0","index":"0.000003296156578493"},{"denom":"ASSET1","index":"0.000027968412540894"},{"denom":"ASSET10","index":"0.000022307812536905"},{"denom":"ASSET11","index":"0.000027788867279184"},{"denom":"ASSET12","index":"0.000026488589695468"},{"denom":"ASSET13","index":"0.000008728285856057"},{"denom":"ASSET14","index":"0.000025508064125070"},{"denom":"ASSET15","index":"0.000020096610749334"},{"denom":"ASSET16","index":"0.000012407784704791"},{"denom":"ASSET17","index":"0.000009734180928237"},{"denom":"ASSET18","index":"0.000004026678592252"},{"denom":"ASSET2","index":"0.000008468774984810"},{"denom":"ASSET3","index":"0.000002353220293961"},{"denom":"ASSET4","index":"0.000022675279511256"},{"denom":"ASSET5","index":"0.000001832728492238"},{"denom":"ASSET6","index":"0.000007397034942132"},{"denom":"ASSET7","index":"0.000011618881320506"},{"denom":"ASSET8","index":"0.000015866042832442"},{"denom":"ASSET9","index":"0.000006735898552490"}],"last_reward_claim_height":"171"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET12","shares":"956789098.459506580147920831","reward_history":[{"denom":"ASSET0","index":"0.000003237925740153"},{"denom":"ASSET1","index":"0.000027468087048908"},{"denom":"ASSET10","index":"0.000021838560142362"},{"denom":"ASSET11","index":"0.000027274223261348"},{"denom":"ASSET12","index":"0.000025962125103579"},{"denom":"ASSET13","index":"0.000008562973508850"},{"denom":"ASSET14","index":"0.000025046299162567"},{"denom":"ASSET15","index":"0.000019687604125947"},{"denom":"ASSET16","index":"0.000012189946370622"},{"denom":"ASSET17","index":"0.000009540519193028"},{"denom":"ASSET18","index":"0.000003959057055270"},{"denom":"ASSET2","index":"0.000008312511220651"},{"denom":"ASSET3","index":"0.000002312646079660"},{"denom":"ASSET4","index":"0.000022269978905361"},{"denom":"ASSET5","index":"0.000001800462011039"},{"denom":"ASSET6","index":"0.000007270233858279"},{"denom":"ASSET7","index":"0.000011411601588483"},{"denom":"ASSET8","index":"0.000015567552190875"},{"denom":"ASSET9","index":"0.000006610637099613"}],"last_reward_claim_height":"183"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET10","shares":"525917394.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003224934301433"},{"denom":"ASSET1","index":"0.000027341438894536"},{"denom":"ASSET10","index":"0.000021706571274337"},{"denom":"ASSET11","index":"0.000027141091242061"},{"denom":"ASSET12","index":"0.000025819235056226"},{"denom":"ASSET13","index":"0.000008520116782966"},{"denom":"ASSET14","index":"0.000024928444433519"},{"denom":"ASSET15","index":"0.000019573794936329"},{"denom":"ASSET16","index":"0.000012137286393349"},{"denom":"ASSET17","index":"0.000009487995483061"},{"denom":"ASSET18","index":"0.000003945309126507"},{"denom":"ASSET2","index":"0.000008271045740629"},{"denom":"ASSET3","index":"0.000002302032616683"},{"denom":"ASSET4","index":"0.000022168721917699"},{"denom":"ASSET5","index":"0.000001793343624246"},{"denom":"ASSET6","index":"0.000007240378309003"},{"denom":"ASSET7","index":"0.000011361888746536"},{"denom":"ASSET8","index":"0.000015488944629697"},{"denom":"ASSET9","index":"0.000006579500326985"}],"last_reward_claim_height":"162"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET13","shares":"47693019.426222176982101240","reward_history":[{"denom":"ASSET0","index":"0.000003224934301433"},{"denom":"ASSET1","index":"0.000027341438894536"},{"denom":"ASSET10","index":"0.000021706571274337"},{"denom":"ASSET11","index":"0.000027141091242061"},{"denom":"ASSET12","index":"0.000025819235056226"},{"denom":"ASSET13","index":"0.000008520116782966"},{"denom":"ASSET14","index":"0.000024928444433519"},{"denom":"ASSET15","index":"0.000019573794936329"},{"denom":"ASSET16","index":"0.000012137286393349"},{"denom":"ASSET17","index":"0.000009487995483061"},{"denom":"ASSET18","index":"0.000003945309126507"},{"denom":"ASSET2","index":"0.000008271045740629"},{"denom":"ASSET3","index":"0.000002302032616683"},{"denom":"ASSET4","index":"0.000022168721917699"},{"denom":"ASSET5","index":"0.000001793343624246"},{"denom":"ASSET6","index":"0.000007240378309003"},{"denom":"ASSET7","index":"0.000011361888746536"},{"denom":"ASSET8","index":"0.000015488944629697"},{"denom":"ASSET9","index":"0.000006579500326985"}],"last_reward_claim_height":"159"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET0","shares":"165230959.000000000000000000","reward_history":[],"last_reward_claim_height":"11"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET11","shares":"1303925034.986426348331353438","reward_history":[{"denom":"ASSET0","index":"0.000002959758868257"},{"denom":"ASSET1","index":"0.000025116229265451"},{"denom":"ASSET10","index":"0.000020033024535037"},{"denom":"ASSET11","index":"0.000024955202637112"},{"denom":"ASSET12","index":"0.000023787913163340"},{"denom":"ASSET13","index":"0.000007837044315100"},{"denom":"ASSET14","index":"0.000022906603767748"},{"denom":"ASSET15","index":"0.000018047329062837"},{"denom":"ASSET16","index":"0.000011142428291313"},{"denom":"ASSET17","index":"0.000008741414303940"},{"denom":"ASSET18","index":"0.000003614587489816"},{"denom":"ASSET2","index":"0.000007605147442913"},{"denom":"ASSET3","index":"0.000002112677625393"},{"denom":"ASSET4","index":"0.000020363145786569"},{"denom":"ASSET5","index":"0.000001645239564154"},{"denom":"ASSET6","index":"0.000006641765641459"},{"denom":"ASSET7","index":"0.000010434431181702"},{"denom":"ASSET8","index":"0.000014248591155217"},{"denom":"ASSET9","index":"0.000006047835874095"}],"last_reward_claim_height":"169"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET17","shares":"7479181.000000005192438310","reward_history":[],"last_reward_claim_height":"49"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET5","shares":"495505805.319610963432106401","reward_history":[{"denom":"ASSET0","index":"0.000003468946703322"},{"denom":"ASSET1","index":"0.000029412495408176"},{"denom":"ASSET10","index":"0.000023372734593498"},{"denom":"ASSET11","index":"0.000029203218600002"},{"denom":"ASSET12","index":"0.000027792166579196"},{"denom":"ASSET13","index":"0.000009167641990636"},{"denom":"ASSET14","index":"0.000026818252104650"},{"denom":"ASSET15","index":"0.000021072198152383"},{"denom":"ASSET16","index":"0.000013054905852031"},{"denom":"ASSET17","index":"0.000010211457984650"},{"denom":"ASSET18","index":"0.000004240878207320"},{"denom":"ASSET2","index":"0.000008898543974195"},{"denom":"ASSET3","index":"0.000002476460623897"},{"denom":"ASSET4","index":"0.000023847831794350"},{"denom":"ASSET5","index":"0.000001927880642719"},{"denom":"ASSET6","index":"0.000007785977685579"},{"denom":"ASSET7","index":"0.000012222326144679"},{"denom":"ASSET8","index":"0.000016667230515151"},{"denom":"ASSET9","index":"0.000007078301868557"}],"last_reward_claim_height":"141"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET17","shares":"12390908.000000008865494736","reward_history":[{"denom":"ASSET0","index":"0.000003468946703322"},{"denom":"ASSET1","index":"0.000029412495408176"},{"denom":"ASSET10","index":"0.000023372734593498"},{"denom":"ASSET11","index":"0.000029203218600002"},{"denom":"ASSET12","index":"0.000027792166579196"},{"denom":"ASSET13","index":"0.000009167641990636"},{"denom":"ASSET14","index":"0.000026818252104650"},{"denom":"ASSET15","index":"0.000021072198152383"},{"denom":"ASSET16","index":"0.000013054905852031"},{"denom":"ASSET17","index":"0.000010211457984650"},{"denom":"ASSET18","index":"0.000004240878207320"},{"denom":"ASSET2","index":"0.000008898543974195"},{"denom":"ASSET3","index":"0.000002476460623897"},{"denom":"ASSET4","index":"0.000023847831794350"},{"denom":"ASSET5","index":"0.000001927880642719"},{"denom":"ASSET6","index":"0.000007785977685579"},{"denom":"ASSET7","index":"0.000012222326144679"},{"denom":"ASSET8","index":"0.000016667230515151"},{"denom":"ASSET9","index":"0.000007078301868557"}],"last_reward_claim_height":"167"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET8","shares":"1377933137.999999996976534896","reward_history":[{"denom":"ASSET0","index":"0.000001541968050995"},{"denom":"ASSET1","index":"0.000012857487907975"},{"denom":"ASSET10","index":"0.000008957704485900"},{"denom":"ASSET11","index":"0.000012438763825161"},{"denom":"ASSET12","index":"0.000011200869215257"},{"denom":"ASSET13","index":"0.000003854089325736"},{"denom":"ASSET14","index":"0.000011619593298070"},{"denom":"ASSET15","index":"0.000008307186714386"},{"denom":"ASSET16","index":"0.000005792349812251"},{"denom":"ASSET17","index":"0.000004113299472240"},{"denom":"ASSET18","index":"0.000001959030530305"},{"denom":"ASSET2","index":"0.000003795102401372"},{"denom":"ASSET3","index":"0.000001109951140156"},{"denom":"ASSET4","index":"0.000010448993630046"},{"denom":"ASSET5","index":"0.000000861541416423"},{"denom":"ASSET6","index":"0.000003506814193562"},{"denom":"ASSET7","index":"0.000005371133324183"},{"denom":"ASSET8","index":"0.000007009474378365"},{"denom":"ASSET9","index":"0.000003027441582881"}],"last_reward_claim_height":"117"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET6","shares":"223887250.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003141123056438"},{"denom":"ASSET1","index":"0.000026662100889972"},{"denom":"ASSET10","index":"0.000021312054987248"},{"denom":"ASSET11","index":"0.000026503481745319"},{"denom":"ASSET12","index":"0.000025286293002787"},{"denom":"ASSET13","index":"0.000008324908472884"},{"denom":"ASSET14","index":"0.000024319980387721"},{"denom":"ASSET15","index":"0.000019190708128374"},{"denom":"ASSET16","index":"0.000011824997422058"},{"denom":"ASSET17","index":"0.000009292034078872"},{"denom":"ASSET18","index":"0.000003834040785154"},{"denom":"ASSET2","index":"0.000008076003481032"},{"denom":"ASSET3","index":"0.000002241608843356"},{"denom":"ASSET4","index":"0.000021614431804298"},{"denom":"ASSET5","index":"0.000001746420421862"},{"denom":"ASSET6","index":"0.000007047828859327"},{"denom":"ASSET7","index":"0.000011075197168484"},{"denom":"ASSET8","index":"0.000015134882092008"},{"denom":"ASSET9","index":"0.000006422749115253"}],"last_reward_claim_height":"140"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET7","shares":"293348923.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003141123056438"},{"denom":"ASSET1","index":"0.000026662100889972"},{"denom":"ASSET10","index":"0.000021312054987248"},{"denom":"ASSET11","index":"0.000026503481745319"},{"denom":"ASSET12","index":"0.000025286293002787"},{"denom":"ASSET13","index":"0.000008324908472884"},{"denom":"ASSET14","index":"0.000024319980387721"},{"denom":"ASSET15","index":"0.000019190708128374"},{"denom":"ASSET16","index":"0.000011824997422058"},{"denom":"ASSET17","index":"0.000009292034078872"},{"denom":"ASSET18","index":"0.000003834040785154"},{"denom":"ASSET2","index":"0.000008076003481032"},{"denom":"ASSET3","index":"0.000002241608843356"},{"denom":"ASSET4","index":"0.000021614431804298"},{"denom":"ASSET5","index":"0.000001746420421862"},{"denom":"ASSET6","index":"0.000007047828859327"},{"denom":"ASSET7","index":"0.000011075197168484"},{"denom":"ASSET8","index":"0.000015134882092008"},{"denom":"ASSET9","index":"0.000006422749115253"}],"last_reward_claim_height":"158"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET13","shares":"331815801.000000000000000000","reward_history":[],"last_reward_claim_height":"61"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET17","shares":"160496073.735281217617340128","reward_history":[{"denom":"ASSET0","index":"0.000001571435631869"},{"denom":"ASSET1","index":"0.000013104175099655"},{"denom":"ASSET10","index":"0.000009129715488355"},{"denom":"ASSET11","index":"0.000012677036600848"},{"denom":"ASSET12","index":"0.000011415350365342"},{"denom":"ASSET13","index":"0.000003928095848150"},{"denom":"ASSET14","index":"0.000011841502401104"},{"denom":"ASSET15","index":"0.000008466812321615"},{"denom":"ASSET16","index":"0.000005902994865728"},{"denom":"ASSET17","index":"0.000004192467944409"},{"denom":"ASSET18","index":"0.000001996601204585"},{"denom":"ASSET2","index":"0.000003867921602360"},{"denom":"ASSET3","index":"0.000001131473113468"},{"denom":"ASSET4","index":"0.000010648868578800"},{"denom":"ASSET5","index":"0.000000877952110712"},{"denom":"ASSET6","index":"0.000003573955614728"},{"denom":"ASSET7","index":"0.000005473883440830"},{"denom":"ASSET8","index":"0.000007142978914228"},{"denom":"ASSET9","index":"0.000003084669944040"}],"last_reward_claim_height":"89"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET1","shares":"116034532.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001554974273829"},{"denom":"ASSET1","index":"0.000012964145980643"},{"denom":"ASSET10","index":"0.000009032293690170"},{"denom":"ASSET11","index":"0.000012541598623624"},{"denom":"ASSET12","index":"0.000011293609918011"},{"denom":"ASSET13","index":"0.000003886649549954"},{"denom":"ASSET14","index":"0.000011715371140412"},{"denom":"ASSET15","index":"0.000008376264351692"},{"denom":"ASSET16","index":"0.000005840194074962"},{"denom":"ASSET17","index":"0.000004147646243034"},{"denom":"ASSET18","index":"0.000001975556294303"},{"denom":"ASSET2","index":"0.000003826903319009"},{"denom":"ASSET3","index":"0.000001119455695618"},{"denom":"ASSET4","index":"0.000010535776146539"},{"denom":"ASSET5","index":"0.000000869071819878"},{"denom":"ASSET6","index":"0.000003536426577765"},{"denom":"ASSET7","index":"0.000005416074448708"},{"denom":"ASSET8","index":"0.000007067350213206"},{"denom":"ASSET9","index":"0.000003052560720565"}],"last_reward_claim_height":"65"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET15","shares":"731773142.000000000000000000","reward_history":[],"last_reward_claim_height":"49"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET16","shares":"937735038.000000015941495646","reward_history":[],"last_reward_claim_height":"62"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET4","shares":"1000239836.555814287000000000","reward_history":[{"denom":"ASSET0","index":"0.000004763692357559"},{"denom":"ASSET1","index":"0.000038985196139957"},{"denom":"ASSET10","index":"0.000033786370949736"},{"denom":"ASSET11","index":"0.000040523085535455"},{"denom":"ASSET12","index":"0.000038578894968365"},{"denom":"ASSET13","index":"0.000013073708676159"},{"denom":"ASSET14","index":"0.000037387259299285"},{"denom":"ASSET15","index":"0.000030327911322433"},{"denom":"ASSET16","index":"0.000017298508927947"},{"denom":"ASSET17","index":"0.000014013133553645"},{"denom":"ASSET18","index":"0.000005820513867124"},{"denom":"ASSET2","index":"0.000011768229105595"},{"denom":"ASSET3","index":"0.000003383450313901"},{"denom":"ASSET4","index":"0.000031958810300676"},{"denom":"ASSET5","index":"0.000002656343866056"},{"denom":"ASSET6","index":"0.000010845308183802"},{"denom":"ASSET7","index":"0.000016751821011415"},{"denom":"ASSET8","index":"0.000024124848636355"},{"denom":"ASSET9","index":"0.000009673748305472"}],"last_reward_claim_height":"185"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET9","shares":"207032771.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003152887181228"},{"denom":"ASSET1","index":"0.000026760532918289"},{"denom":"ASSET10","index":"0.000021371603424459"},{"denom":"ASSET11","index":"0.000026596151859305"},{"denom":"ASSET12","index":"0.000025366346961436"},{"denom":"ASSET13","index":"0.000008353980761099"},{"denom":"ASSET14","index":"0.000024408754798213"},{"denom":"ASSET15","index":"0.000019248058608344"},{"denom":"ASSET16","index":"0.000011870971278696"},{"denom":"ASSET17","index":"0.000009321801721671"},{"denom":"ASSET18","index":"0.000003850124607081"},{"denom":"ASSET2","index":"0.000008105134387478"},{"denom":"ASSET3","index":"0.000002250596051831"},{"denom":"ASSET4","index":"0.000021694971342643"},{"denom":"ASSET5","index":"0.000001752750611640"},{"denom":"ASSET6","index":"0.000007075802880646"},{"denom":"ASSET7","index":"0.000011117440314842"},{"denom":"ASSET8","index":"0.000015186957305377"},{"denom":"ASSET9","index":"0.000006446159830056"}],"last_reward_claim_height":"143"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET11","shares":"4251735.719794311385560835","reward_history":[{"denom":"ASSET0","index":"0.000001587610635106"},{"denom":"ASSET1","index":"0.000013244938725362"},{"denom":"ASSET10","index":"0.000009227311812032"},{"denom":"ASSET11","index":"0.000012812935831455"},{"denom":"ASSET12","index":"0.000011538527294432"},{"denom":"ASSET13","index":"0.000003970376596809"},{"denom":"ASSET14","index":"0.000011969180179294"},{"denom":"ASSET15","index":"0.000008557707326477"},{"denom":"ASSET16","index":"0.000005967039972082"},{"denom":"ASSET17","index":"0.000004237678387413"},{"denom":"ASSET18","index":"0.000002018263519969"},{"denom":"ASSET2","index":"0.000003909626189853"},{"denom":"ASSET3","index":"0.000001143457659809"},{"denom":"ASSET4","index":"0.000010763622103487"},{"denom":"ASSET5","index":"0.000000886955941552"},{"denom":"ASSET6","index":"0.000003612624200292"},{"denom":"ASSET7","index":"0.000005533687069132"},{"denom":"ASSET8","index":"0.000007219848364411"},{"denom":"ASSET9","index":"0.000003118520890387"}],"last_reward_claim_height":"104"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET12","shares":"60671534.000000000000000000","reward_history":[],"last_reward_claim_height":"8"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET17","shares":"1000065446.983203430000000000","reward_history":[{"denom":"ASSET0","index":"0.000003152887181228"},{"denom":"ASSET1","index":"0.000026760532918289"},{"denom":"ASSET10","index":"0.000021371603424459"},{"denom":"ASSET11","index":"0.000026596151859305"},{"denom":"ASSET12","index":"0.000025366346961436"},{"denom":"ASSET13","index":"0.000008353980761099"},{"denom":"ASSET14","index":"0.000024408754798213"},{"denom":"ASSET15","index":"0.000019248058608344"},{"denom":"ASSET16","index":"0.000011870971278696"},{"denom":"ASSET17","index":"0.000009321801721671"},{"denom":"ASSET18","index":"0.000003850124607081"},{"denom":"ASSET2","index":"0.000008105134387478"},{"denom":"ASSET3","index":"0.000002250596051831"},{"denom":"ASSET4","index":"0.000021694971342643"},{"denom":"ASSET5","index":"0.000001752750611640"},{"denom":"ASSET6","index":"0.000007075802880646"},{"denom":"ASSET7","index":"0.000011117440314842"},{"denom":"ASSET8","index":"0.000015186957305377"},{"denom":"ASSET9","index":"0.000006446159830056"}],"last_reward_claim_height":"138"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET7","shares":"76928618.000000000000000000","reward_history":[],"last_reward_claim_height":"8"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET9","shares":"125711676.000000000000000000","reward_history":[],"last_reward_claim_height":"9"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET3","shares":"546288619.919061129574044960","reward_history":[{"denom":"ASSET0","index":"0.000003160678210357"},{"denom":"ASSET1","index":"0.000026816731621709"},{"denom":"ASSET10","index":"0.000021409695697867"},{"denom":"ASSET11","index":"0.000026650151208928"},{"denom":"ASSET12","index":"0.000025413985003091"},{"denom":"ASSET13","index":"0.000008371194471357"},{"denom":"ASSET14","index":"0.000024459575922385"},{"denom":"ASSET15","index":"0.000019283728762326"},{"denom":"ASSET16","index":"0.000011895729224726"},{"denom":"ASSET17","index":"0.000009339186085895"},{"denom":"ASSET18","index":"0.000003859320220004"},{"denom":"ASSET2","index":"0.000008121656282140"},{"denom":"ASSET3","index":"0.000002255587694637"},{"denom":"ASSET4","index":"0.000021740936259308"},{"denom":"ASSET5","index":"0.000001757304707579"},{"denom":"ASSET6","index":"0.000007091577992612"},{"denom":"ASSET7","index":"0.000011140302591406"},{"denom":"ASSET8","index":"0.000015217956063596"},{"denom":"ASSET9","index":"0.000006459479788296"}],"last_reward_claim_height":"174"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET18","shares":"246083258.790437225667959725","reward_history":[{"denom":"ASSET0","index":"0.000001596167964962"},{"denom":"ASSET1","index":"0.000013307648687747"},{"denom":"ASSET10","index":"0.000009271254138767"},{"denom":"ASSET11","index":"0.000012873344596610"},{"denom":"ASSET12","index":"0.000011592750107942"},{"denom":"ASSET13","index":"0.000003989527201016"},{"denom":"ASSET14","index":"0.000012025715131995"},{"denom":"ASSET15","index":"0.000008598149750858"},{"denom":"ASSET16","index":"0.000005994556982506"},{"denom":"ASSET17","index":"0.000004257340617956"},{"denom":"ASSET18","index":"0.000002028240277625"},{"denom":"ASSET2","index":"0.000003928376470814"},{"denom":"ASSET3","index":"0.000001148919558672"},{"denom":"ASSET4","index":"0.000010814752131731"},{"denom":"ASSET5","index":"0.000000891818678410"},{"denom":"ASSET6","index":"0.000003630210866621"},{"denom":"ASSET7","index":"0.000005559360179979"},{"denom":"ASSET8","index":"0.000007254619109209"},{"denom":"ASSET9","index":"0.000003133416978198"}],"last_reward_claim_height":"74"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET8","shares":"407015576.647359739269052555","reward_history":[{"denom":"ASSET0","index":"0.000001539653287763"},{"denom":"ASSET1","index":"0.000012837628062054"},{"denom":"ASSET10","index":"0.000008944076712630"},{"denom":"ASSET11","index":"0.000012418678362380"},{"denom":"ASSET12","index":"0.000011182855597091"},{"denom":"ASSET13","index":"0.000003848344731893"},{"denom":"ASSET14","index":"0.000011600753980079"},{"denom":"ASSET15","index":"0.000008294363000211"},{"denom":"ASSET16","index":"0.000005782767435536"},{"denom":"ASSET17","index":"0.000004106968636837"},{"denom":"ASSET18","index":"0.000001956500354065"},{"denom":"ASSET2","index":"0.000003789470997435"},{"denom":"ASSET3","index":"0.000001108613446191"},{"denom":"ASSET4","index":"0.000010432741141086"},{"denom":"ASSET5","index":"0.000000860502708115"},{"denom":"ASSET6","index":"0.000003501935883605"},{"denom":"ASSET7","index":"0.000005362766419174"},{"denom":"ASSET8","index":"0.000006998089525433"},{"denom":"ASSET9","index":"0.000003022535474442"}],"last_reward_claim_height":"95"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET7","shares":"998328770.912350516774554462","reward_history":[{"denom":"ASSET0","index":"0.000003308323901116"},{"denom":"ASSET1","index":"0.000028066718381779"},{"denom":"ASSET10","index":"0.000022316311421496"},{"denom":"ASSET11","index":"0.000027867424204892"},{"denom":"ASSET12","index":"0.000026530665881565"},{"denom":"ASSET13","index":"0.000008749579510737"},{"denom":"ASSET14","index":"0.000025590688346390"},{"denom":"ASSET15","index":"0.000020116135001180"},{"denom":"ASSET16","index":"0.000012455644018572"},{"denom":"ASSET17","index":"0.000009747635771928"},{"denom":"ASSET18","index":"0.000004046709206696"},{"denom":"ASSET2","index":"0.000008491843085820"},{"denom":"ASSET3","index":"0.000002361259343526"},{"denom":"ASSET4","index":"0.000022756236881458"},{"denom":"ASSET5","index":"0.000001838827056256"},{"denom":"ASSET6","index":"0.000007428217086977"},{"denom":"ASSET7","index":"0.000011660835649526"},{"denom":"ASSET8","index":"0.000015906513514404"},{"denom":"ASSET9","index":"0.000006755948018281"}],"last_reward_claim_height":"140"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET14","shares":"767114855.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001722784092424"},{"denom":"ASSET1","index":"0.000014376047839207"},{"denom":"ASSET10","index":"0.000010014727915911"},{"denom":"ASSET11","index":"0.000013905627425621"},{"denom":"ASSET12","index":"0.000012523636788373"},{"denom":"ASSET13","index":"0.000004309050988454"},{"denom":"ASSET14","index":"0.000012989875687172"},{"denom":"ASSET15","index":"0.000009287144342897"},{"denom":"ASSET16","index":"0.000006475075648346"},{"denom":"ASSET17","index":"0.000004597575508787"},{"denom":"ASSET18","index":"0.000002191113748617"},{"denom":"ASSET2","index":"0.000004242146751855"},{"denom":"ASSET3","index":"0.000001239819134475"},{"denom":"ASSET4","index":"0.000011683152316098"},{"denom":"ASSET5","index":"0.000000961748401110"},{"denom":"ASSET6","index":"0.000003920170113222"},{"denom":"ASSET7","index":"0.000006004655234759"},{"denom":"ASSET8","index":"0.000007836158711656"},{"denom":"ASSET9","index":"0.000003384936220430"}],"last_reward_claim_height":"97"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET3","shares":"636190620.000000000000000000","reward_history":[],"last_reward_claim_height":"32"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET9","shares":"910892902.000000000000000000","reward_history":[],"last_reward_claim_height":"45"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET13","shares":"512679123.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004913983609001"},{"denom":"ASSET1","index":"0.000040244987929815"},{"denom":"ASSET10","index":"0.000034772305497303"},{"denom":"ASSET11","index":"0.000041772863997093"},{"denom":"ASSET12","index":"0.000039756115018181"},{"denom":"ASSET13","index":"0.000013466459952772"},{"denom":"ASSET14","index":"0.000038538449259774"},{"denom":"ASSET15","index":"0.000031220537321082"},{"denom":"ASSET16","index":"0.000017858853026625"},{"denom":"ASSET17","index":"0.000014445033007114"},{"denom":"ASSET18","index":"0.000006004781433606"},{"denom":"ASSET2","index":"0.000012147347472117"},{"denom":"ASSET3","index":"0.000003490240978647"},{"denom":"ASSET4","index":"0.000032981200632459"},{"denom":"ASSET5","index":"0.000002740029237178"},{"denom":"ASSET6","index":"0.000011181697773076"},{"denom":"ASSET7","index":"0.000017276427658373"},{"denom":"ASSET8","index":"0.000024839237256922"},{"denom":"ASSET9","index":"0.000009975875730805"}],"last_reward_claim_height":"197"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET14","shares":"219328979.237170395965813388","reward_history":[{"denom":"ASSET0","index":"0.000004913983609001"},{"denom":"ASSET1","index":"0.000040244987929815"},{"denom":"ASSET10","index":"0.000034772305497303"},{"denom":"ASSET11","index":"0.000041772863997093"},{"denom":"ASSET12","index":"0.000039756115018181"},{"denom":"ASSET13","index":"0.000013466459952772"},{"denom":"ASSET14","index":"0.000038538449259774"},{"denom":"ASSET15","index":"0.000031220537321082"},{"denom":"ASSET16","index":"0.000017858853026625"},{"denom":"ASSET17","index":"0.000014445033007114"},{"denom":"ASSET18","index":"0.000006004781433606"},{"denom":"ASSET2","index":"0.000012147347472117"},{"denom":"ASSET3","index":"0.000003490240978647"},{"denom":"ASSET4","index":"0.000032981200632459"},{"denom":"ASSET5","index":"0.000002740029237178"},{"denom":"ASSET6","index":"0.000011181697773076"},{"denom":"ASSET7","index":"0.000017276427658373"},{"denom":"ASSET8","index":"0.000024839237256922"},{"denom":"ASSET9","index":"0.000009975875730805"}],"last_reward_claim_height":"199"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET17","shares":"267396693.000000000000000000","reward_history":[],"last_reward_claim_height":"14"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET3","shares":"792559629.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001570026110869"},{"denom":"ASSET1","index":"0.000013093495665706"},{"denom":"ASSET10","index":"0.000009121814411369"},{"denom":"ASSET11","index":"0.000012665871768525"},{"denom":"ASSET12","index":"0.000011405375746022"},{"denom":"ASSET13","index":"0.000003924443730811"},{"denom":"ASSET14","index":"0.000011831756550478"},{"denom":"ASSET15","index":"0.000008459245989284"},{"denom":"ASSET16","index":"0.000005898474977098"},{"denom":"ASSET17","index":"0.000004187979388376"},{"denom":"ASSET18","index":"0.000001995163822601"},{"denom":"ASSET2","index":"0.000003864775280042"},{"denom":"ASSET3","index":"0.000001129971286445"},{"denom":"ASSET4","index":"0.000010639630627815"},{"denom":"ASSET5","index":"0.000000877623463400"},{"denom":"ASSET6","index":"0.000003571405397092"},{"denom":"ASSET7","index":"0.000005469607987193"},{"denom":"ASSET8","index":"0.000007137838423287"},{"denom":"ASSET9","index":"0.000003082869956418"}],"last_reward_claim_height":"118"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET7","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001570026110869"},{"denom":"ASSET1","index":"0.000013093495665706"},{"denom":"ASSET10","index":"0.000009121814411369"},{"denom":"ASSET11","index":"0.000012665871768525"},{"denom":"ASSET12","index":"0.000011405375746022"},{"denom":"ASSET13","index":"0.000003924443730811"},{"denom":"ASSET14","index":"0.000011831756550478"},{"denom":"ASSET15","index":"0.000008459245989284"},{"denom":"ASSET16","index":"0.000005898474977098"},{"denom":"ASSET17","index":"0.000004187979388376"},{"denom":"ASSET18","index":"0.000001995163822601"},{"denom":"ASSET2","index":"0.000003864775280042"},{"denom":"ASSET3","index":"0.000001129971286445"},{"denom":"ASSET4","index":"0.000010639630627815"},{"denom":"ASSET5","index":"0.000000877623463400"},{"denom":"ASSET6","index":"0.000003571405397092"},{"denom":"ASSET7","index":"0.000005469607987193"},{"denom":"ASSET8","index":"0.000007137838423287"},{"denom":"ASSET9","index":"0.000003082869956418"}],"last_reward_claim_height":"77"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET7","shares":"80786695.000000000000000000","reward_history":[],"last_reward_claim_height":"12"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET12","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"14"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET3","shares":"630931582.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003039218640043"},{"denom":"ASSET1","index":"0.000025782167100542"},{"denom":"ASSET10","index":"0.000020571830356487"},{"denom":"ASSET11","index":"0.000025618833387376"},{"denom":"ASSET12","index":"0.000024423552320522"},{"denom":"ASSET13","index":"0.000008046369560384"},{"denom":"ASSET14","index":"0.000023515194162679"},{"denom":"ASSET15","index":"0.000018530055863607"},{"denom":"ASSET16","index":"0.000011436803083329"},{"denom":"ASSET17","index":"0.000008974370950503"},{"denom":"ASSET18","index":"0.000003710743638587"},{"denom":"ASSET2","index":"0.000007806913274081"},{"denom":"ASSET3","index":"0.000002167934051431"},{"denom":"ASSET4","index":"0.000020901035076857"},{"denom":"ASSET5","index":"0.000001689640060433"},{"denom":"ASSET6","index":"0.000006819038075969"},{"denom":"ASSET7","index":"0.000010710838619674"},{"denom":"ASSET8","index":"0.000014627524271874"},{"denom":"ASSET9","index":"0.000006209166066794"}],"last_reward_claim_height":"178"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET0","shares":"518102158.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003240628198198"},{"denom":"ASSET1","index":"0.000027504329283847"},{"denom":"ASSET10","index":"0.000021940320319100"},{"denom":"ASSET11","index":"0.000027329345632586"},{"denom":"ASSET12","index":"0.000026051323397008"},{"denom":"ASSET13","index":"0.000008583813762496"},{"denom":"ASSET14","index":"0.000025085743554439"},{"denom":"ASSET15","index":"0.000019763439018939"},{"denom":"ASSET16","index":"0.000012202670980955"},{"denom":"ASSET17","index":"0.000009573761377605"},{"denom":"ASSET18","index":"0.000003959875003044"},{"denom":"ASSET2","index":"0.000008327243811102"},{"denom":"ASSET3","index":"0.000002312908746824"},{"denom":"ASSET4","index":"0.000022299606884078"},{"denom":"ASSET5","index":"0.000001802093087045"},{"denom":"ASSET6","index":"0.000007275447910852"},{"denom":"ASSET7","index":"0.000011427132859276"},{"denom":"ASSET8","index":"0.000015602768933976"},{"denom":"ASSET9","index":"0.000006623309483786"}],"last_reward_claim_height":"166"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET3","shares":"764167338.769505195219236711","reward_history":[{"denom":"ASSET0","index":"0.000003240628198198"},{"denom":"ASSET1","index":"0.000027504329283847"},{"denom":"ASSET10","index":"0.000021940320319100"},{"denom":"ASSET11","index":"0.000027329345632586"},{"denom":"ASSET12","index":"0.000026051323397008"},{"denom":"ASSET13","index":"0.000008583813762496"},{"denom":"ASSET14","index":"0.000025085743554439"},{"denom":"ASSET15","index":"0.000019763439018939"},{"denom":"ASSET16","index":"0.000012202670980955"},{"denom":"ASSET17","index":"0.000009573761377605"},{"denom":"ASSET18","index":"0.000003959875003044"},{"denom":"ASSET2","index":"0.000008327243811102"},{"denom":"ASSET3","index":"0.000002312908746824"},{"denom":"ASSET4","index":"0.000022299606884078"},{"denom":"ASSET5","index":"0.000001802093087045"},{"denom":"ASSET6","index":"0.000007275447910852"},{"denom":"ASSET7","index":"0.000011427132859276"},{"denom":"ASSET8","index":"0.000015602768933976"},{"denom":"ASSET9","index":"0.000006623309483786"}],"last_reward_claim_height":"140"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET10","shares":"833946546.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003240628198198"},{"denom":"ASSET1","index":"0.000027504329283847"},{"denom":"ASSET10","index":"0.000021940320319100"},{"denom":"ASSET11","index":"0.000027329345632586"},{"denom":"ASSET12","index":"0.000026051323397008"},{"denom":"ASSET13","index":"0.000008583813762496"},{"denom":"ASSET14","index":"0.000025085743554439"},{"denom":"ASSET15","index":"0.000019763439018939"},{"denom":"ASSET16","index":"0.000012202670980955"},{"denom":"ASSET17","index":"0.000009573761377605"},{"denom":"ASSET18","index":"0.000003959875003044"},{"denom":"ASSET2","index":"0.000008327243811102"},{"denom":"ASSET3","index":"0.000002312908746824"},{"denom":"ASSET4","index":"0.000022299606884078"},{"denom":"ASSET5","index":"0.000001802093087045"},{"denom":"ASSET6","index":"0.000007275447910852"},{"denom":"ASSET7","index":"0.000011427132859276"},{"denom":"ASSET8","index":"0.000015602768933976"},{"denom":"ASSET9","index":"0.000006623309483786"}],"last_reward_claim_height":"141"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET1","shares":"357946148.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001570100817458"},{"denom":"ASSET1","index":"0.000013089401919768"},{"denom":"ASSET10","index":"0.000009119446705996"},{"denom":"ASSET11","index":"0.000012662761138201"},{"denom":"ASSET12","index":"0.000011403229713207"},{"denom":"ASSET13","index":"0.000003924467777503"},{"denom":"ASSET14","index":"0.000011828301962489"},{"denom":"ASSET15","index":"0.000008457526081653"},{"denom":"ASSET16","index":"0.000005896112859965"},{"denom":"ASSET17","index":"0.000004187981201412"},{"denom":"ASSET18","index":"0.000001993604534455"},{"denom":"ASSET2","index":"0.000003863295018381"},{"denom":"ASSET3","index":"0.000001129343245325"},{"denom":"ASSET4","index":"0.000010637785958043"},{"denom":"ASSET5","index":"0.000000876809547412"},{"denom":"ASSET6","index":"0.000003569979481054"},{"denom":"ASSET7","index":"0.000005467903546113"},{"denom":"ASSET8","index":"0.000007135253365252"},{"denom":"ASSET9","index":"0.000003082165940365"}],"last_reward_claim_height":"81"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET12","shares":"224839285.146205863863854872","reward_history":[{"denom":"ASSET0","index":"0.000001570100817458"},{"denom":"ASSET1","index":"0.000013089401919768"},{"denom":"ASSET10","index":"0.000009119446705996"},{"denom":"ASSET11","index":"0.000012662761138201"},{"denom":"ASSET12","index":"0.000011403229713207"},{"denom":"ASSET13","index":"0.000003924467777503"},{"denom":"ASSET14","index":"0.000011828301962489"},{"denom":"ASSET15","index":"0.000008457526081653"},{"denom":"ASSET16","index":"0.000005896112859965"},{"denom":"ASSET17","index":"0.000004187981201412"},{"denom":"ASSET18","index":"0.000001993604534455"},{"denom":"ASSET2","index":"0.000003863295018381"},{"denom":"ASSET3","index":"0.000001129343245325"},{"denom":"ASSET4","index":"0.000010637785958043"},{"denom":"ASSET5","index":"0.000000876809547412"},{"denom":"ASSET6","index":"0.000003569979481054"},{"denom":"ASSET7","index":"0.000005467903546113"},{"denom":"ASSET8","index":"0.000007135253365252"},{"denom":"ASSET9","index":"0.000003082165940365"}],"last_reward_claim_height":"117"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET13","shares":"1501248.000000000000000000","reward_history":[],"last_reward_claim_height":"13"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET10","shares":"672862240.000000000000000000","reward_history":[],"last_reward_claim_height":"47"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET0","shares":"43038889.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001621688869515"},{"denom":"ASSET1","index":"0.000013520143478358"},{"denom":"ASSET10","index":"0.000009419470546393"},{"denom":"ASSET11","index":"0.000013079418684764"},{"denom":"ASSET12","index":"0.000011778054243646"},{"denom":"ASSET13","index":"0.000004053107355591"},{"denom":"ASSET14","index":"0.000012218035825109"},{"denom":"ASSET15","index":"0.000008735715386011"},{"denom":"ASSET16","index":"0.000006090623412316"},{"denom":"ASSET17","index":"0.000004325494601547"},{"denom":"ASSET18","index":"0.000002060555632782"},{"denom":"ASSET2","index":"0.000003991049142665"},{"denom":"ASSET3","index":"0.000001167586257565"},{"denom":"ASSET4","index":"0.000010987648142487"},{"denom":"ASSET5","index":"0.000000905975587506"},{"denom":"ASSET6","index":"0.000003688190199343"},{"denom":"ASSET7","index":"0.000005648412194460"},{"denom":"ASSET8","index":"0.000007370434701640"},{"denom":"ASSET9","index":"0.000003183549162496"}],"last_reward_claim_height":"67"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET2","shares":"134784221.912576162068456398","reward_history":[{"denom":"ASSET0","index":"0.000001621688869515"},{"denom":"ASSET1","index":"0.000013520143478358"},{"denom":"ASSET10","index":"0.000009419470546393"},{"denom":"ASSET11","index":"0.000013079418684764"},{"denom":"ASSET12","index":"0.000011778054243646"},{"denom":"ASSET13","index":"0.000004053107355591"},{"denom":"ASSET14","index":"0.000012218035825109"},{"denom":"ASSET15","index":"0.000008735715386011"},{"denom":"ASSET16","index":"0.000006090623412316"},{"denom":"ASSET17","index":"0.000004325494601547"},{"denom":"ASSET18","index":"0.000002060555632782"},{"denom":"ASSET2","index":"0.000003991049142665"},{"denom":"ASSET3","index":"0.000001167586257565"},{"denom":"ASSET4","index":"0.000010987648142487"},{"denom":"ASSET5","index":"0.000000905975587506"},{"denom":"ASSET6","index":"0.000003688190199343"},{"denom":"ASSET7","index":"0.000005648412194460"},{"denom":"ASSET8","index":"0.000007370434701640"},{"denom":"ASSET9","index":"0.000003183549162496"}],"last_reward_claim_height":"109"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET3","shares":"831575700.999999999494727103","reward_history":[],"last_reward_claim_height":"15"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET18","shares":"269873640.000000000000000000","reward_history":[],"last_reward_claim_height":"30"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET9","shares":"543496303.236691738827630704","reward_history":[{"denom":"ASSET0","index":"0.000001684197417987"},{"denom":"ASSET1","index":"0.000014041270025306"},{"denom":"ASSET10","index":"0.000009782380002809"},{"denom":"ASSET11","index":"0.000013583439347888"},{"denom":"ASSET12","index":"0.000012231725730520"},{"denom":"ASSET13","index":"0.000004209525615418"},{"denom":"ASSET14","index":"0.000012688588478388"},{"denom":"ASSET15","index":"0.000009072403677468"},{"denom":"ASSET16","index":"0.000006325419612958"},{"denom":"ASSET17","index":"0.000004492161044183"},{"denom":"ASSET18","index":"0.000002139608271529"},{"denom":"ASSET2","index":"0.000004144674335530"},{"denom":"ASSET3","index":"0.000001212331762086"},{"denom":"ASSET4","index":"0.000011410921471639"},{"denom":"ASSET5","index":"0.000000940827523152"},{"denom":"ASSET6","index":"0.000003830097231595"},{"denom":"ASSET7","index":"0.000005866137041214"},{"denom":"ASSET8","index":"0.000007654386885887"},{"denom":"ASSET9","index":"0.000003305963379963"}],"last_reward_claim_height":"67"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET16","shares":"393773668.000000000000000000","reward_history":[],"last_reward_claim_height":"37"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET2","shares":"1220062976.000000005371847130","reward_history":[],"last_reward_claim_height":"59"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET8","shares":"831043859.057843726123259530","reward_history":[{"denom":"ASSET0","index":"0.000003316222748087"},{"denom":"ASSET1","index":"0.000028147075207200"},{"denom":"ASSET10","index":"0.000022466702115272"},{"denom":"ASSET11","index":"0.000027971336509453"},{"denom":"ASSET12","index":"0.000026669877578580"},{"denom":"ASSET13","index":"0.000008784355829882"},{"denom":"ASSET14","index":"0.000025672864554615"},{"denom":"ASSET15","index":"0.000020235356040284"},{"denom":"ASSET16","index":"0.000012487172511964"},{"denom":"ASSET17","index":"0.000009799807931023"},{"denom":"ASSET18","index":"0.000004049727438870"},{"denom":"ASSET2","index":"0.000008522892941853"},{"denom":"ASSET3","index":"0.000002368075218536"},{"denom":"ASSET4","index":"0.000022820717384594"},{"denom":"ASSET5","index":"0.000001843591257654"},{"denom":"ASSET6","index":"0.000007443165294976"},{"denom":"ASSET7","index":"0.000011693499621126"},{"denom":"ASSET8","index":"0.000015972009373807"},{"denom":"ASSET9","index":"0.000006779069609364"}],"last_reward_claim_height":"131"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET3","shares":"567386957.000000000000000000","reward_history":[],"last_reward_claim_height":"35"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET9","shares":"57042932.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003047858420945"},{"denom":"ASSET1","index":"0.000025863853767953"},{"denom":"ASSET10","index":"0.000020681482671570"},{"denom":"ASSET11","index":"0.000025712271525236"},{"denom":"ASSET12","index":"0.000024535470175220"},{"denom":"ASSET13","index":"0.000008077733573885"},{"denom":"ASSET14","index":"0.000023593590000343"},{"denom":"ASSET15","index":"0.000018621561303244"},{"denom":"ASSET16","index":"0.000011471343089677"},{"denom":"ASSET17","index":"0.000009016132124589"},{"denom":"ASSET18","index":"0.000003719208275283"},{"denom":"ASSET2","index":"0.000007835789085827"},{"denom":"ASSET3","index":"0.000002174729135607"},{"denom":"ASSET4","index":"0.000020967814383093"},{"denom":"ASSET5","index":"0.000001694402278429"},{"denom":"ASSET6","index":"0.000006836893759575"},{"denom":"ASSET7","index":"0.000010744095518390"},{"denom":"ASSET8","index":"0.000014684305897471"},{"denom":"ASSET9","index":"0.000006231971052532"}],"last_reward_claim_height":"131"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET14","shares":"194768151.188267765876602968","reward_history":[{"denom":"ASSET0","index":"0.000003047858420945"},{"denom":"ASSET1","index":"0.000025863853767953"},{"denom":"ASSET10","index":"0.000020681482671570"},{"denom":"ASSET11","index":"0.000025712271525236"},{"denom":"ASSET12","index":"0.000024535470175220"},{"denom":"ASSET13","index":"0.000008077733573885"},{"denom":"ASSET14","index":"0.000023593590000343"},{"denom":"ASSET15","index":"0.000018621561303244"},{"denom":"ASSET16","index":"0.000011471343089677"},{"denom":"ASSET17","index":"0.000009016132124589"},{"denom":"ASSET18","index":"0.000003719208275283"},{"denom":"ASSET2","index":"0.000007835789085827"},{"denom":"ASSET3","index":"0.000002174729135607"},{"denom":"ASSET4","index":"0.000020967814383093"},{"denom":"ASSET5","index":"0.000001694402278429"},{"denom":"ASSET6","index":"0.000006836893759575"},{"denom":"ASSET7","index":"0.000010744095518390"},{"denom":"ASSET8","index":"0.000014684305897471"},{"denom":"ASSET9","index":"0.000006231971052532"}],"last_reward_claim_height":"145"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET17","shares":"397422032.999999988872183076","reward_history":[{"denom":"ASSET0","index":"0.000001520550536467"},{"denom":"ASSET1","index":"0.000012675827554874"},{"denom":"ASSET10","index":"0.000008831388003026"},{"denom":"ASSET11","index":"0.000012262725604616"},{"denom":"ASSET12","index":"0.000011042474271843"},{"denom":"ASSET13","index":"0.000003800233070086"},{"denom":"ASSET14","index":"0.000011455195131741"},{"denom":"ASSET15","index":"0.000008190012927118"},{"denom":"ASSET16","index":"0.000005710257954490"},{"denom":"ASSET17","index":"0.000004055182520937"},{"denom":"ASSET18","index":"0.000001931747034924"},{"denom":"ASSET2","index":"0.000003741926245004"},{"denom":"ASSET3","index":"0.000001094491513968"},{"denom":"ASSET4","index":"0.000010301253521611"},{"denom":"ASSET5","index":"0.000000849450412477"},{"denom":"ASSET6","index":"0.000003457632836431"},{"denom":"ASSET7","index":"0.000005295631642792"},{"denom":"ASSET8","index":"0.000006910311498182"},{"denom":"ASSET9","index":"0.000002984699699651"}],"last_reward_claim_height":"120"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET7","shares":"54314662.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003365151784209"},{"denom":"ASSET1","index":"0.000028538337865727"},{"denom":"ASSET10","index":"0.000022670552359626"},{"denom":"ASSET11","index":"0.000028331786642422"},{"denom":"ASSET12","index":"0.000026959391418936"},{"denom":"ASSET13","index":"0.000008894072871450"},{"denom":"ASSET14","index":"0.000026020188745878"},{"denom":"ASSET15","index":"0.000020439828986765"},{"denom":"ASSET16","index":"0.000012667128947757"},{"denom":"ASSET17","index":"0.000009907060013179"},{"denom":"ASSET18","index":"0.000004116201786219"},{"denom":"ASSET2","index":"0.000008634485522558"},{"denom":"ASSET3","index":"0.000002403102945281"},{"denom":"ASSET4","index":"0.000023139017263426"},{"denom":"ASSET5","index":"0.000001871649891727"},{"denom":"ASSET6","index":"0.000007555863827839"},{"denom":"ASSET7","index":"0.000011857581945748"},{"denom":"ASSET8","index":"0.000016169532559731"},{"denom":"ASSET9","index":"0.000006867789268222"}],"last_reward_claim_height":"156"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET2","shares":"220822095.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001833509758465"},{"denom":"ASSET1","index":"0.000015308139656127"},{"denom":"ASSET10","index":"0.000010661025831945"},{"denom":"ASSET11","index":"0.000014808091540182"},{"denom":"ASSET12","index":"0.000013334616425197"},{"denom":"ASSET13","index":"0.000004587108050268"},{"denom":"ASSET14","index":"0.000013827997232930"},{"denom":"ASSET15","index":"0.000009887618079284"},{"denom":"ASSET16","index":"0.000006893996691827"},{"denom":"ASSET17","index":"0.000004893804228047"},{"denom":"ASSET18","index":"0.000002326890566197"},{"denom":"ASSET2","index":"0.000004513767659929"},{"denom":"ASSET3","index":"0.000001320127026095"},{"denom":"ASSET4","index":"0.000012434529816496"},{"denom":"ASSET5","index":"0.000001020098156528"},{"denom":"ASSET6","index":"0.000004173734941087"},{"denom":"ASSET7","index":"0.000006393948575882"},{"denom":"ASSET8","index":"0.000008340802573961"},{"denom":"ASSET9","index":"0.000003600346434803"}],"last_reward_claim_height":"91"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET15","shares":"352841633.000000009173882458","reward_history":[{"denom":"ASSET0","index":"0.000002559869929403"},{"denom":"ASSET1","index":"0.000021787096732684"},{"denom":"ASSET10","index":"0.000017783238471081"},{"denom":"ASSET11","index":"0.000021752938768967"},{"denom":"ASSET12","index":"0.000020940235345308"},{"denom":"ASSET13","index":"0.000006848308161575"},{"denom":"ASSET14","index":"0.000019904298850841"},{"denom":"ASSET15","index":"0.000015946274018453"},{"denom":"ASSET16","index":"0.000009638424477568"},{"denom":"ASSET17","index":"0.000007695902028378"},{"denom":"ASSET18","index":"0.000003102977872608"},{"denom":"ASSET2","index":"0.000006627591716064"},{"denom":"ASSET3","index":"0.000001824087350341"},{"denom":"ASSET4","index":"0.000017655906837434"},{"denom":"ASSET5","index":"0.000001421889695470"},{"denom":"ASSET6","index":"0.000005729615091854"},{"denom":"ASSET7","index":"0.000009042175373173"},{"denom":"ASSET8","index":"0.000012449153729005"},{"denom":"ASSET9","index":"0.000005268661072858"}],"last_reward_claim_height":"148"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET18","shares":"118073513.559902489080645244","reward_history":[{"denom":"ASSET0","index":"0.000002559869929403"},{"denom":"ASSET1","index":"0.000021787096732684"},{"denom":"ASSET10","index":"0.000017783238471081"},{"denom":"ASSET11","index":"0.000021752938768967"},{"denom":"ASSET12","index":"0.000020940235345308"},{"denom":"ASSET13","index":"0.000006848308161575"},{"denom":"ASSET14","index":"0.000019904298850841"},{"denom":"ASSET15","index":"0.000015946274018453"},{"denom":"ASSET16","index":"0.000009638424477568"},{"denom":"ASSET17","index":"0.000007695902028378"},{"denom":"ASSET18","index":"0.000003102977872608"},{"denom":"ASSET2","index":"0.000006627591716064"},{"denom":"ASSET3","index":"0.000001824087350341"},{"denom":"ASSET4","index":"0.000017655906837434"},{"denom":"ASSET5","index":"0.000001421889695470"},{"denom":"ASSET6","index":"0.000005729615091854"},{"denom":"ASSET7","index":"0.000009042175373173"},{"denom":"ASSET8","index":"0.000012449153729005"},{"denom":"ASSET9","index":"0.000005268661072858"}],"last_reward_claim_height":"125"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET1","shares":"215875923.000000000000000000","reward_history":[],"last_reward_claim_height":"9"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET9","shares":"164085024.999999990154898500","reward_history":[],"last_reward_claim_height":"58"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET15","shares":"268920090.000000000000000000","reward_history":[],"last_reward_claim_height":"54"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET2","shares":"109305784.251006320224988672","reward_history":[{"denom":"ASSET0","index":"0.000003157426180098"},{"denom":"ASSET1","index":"0.000026803913890418"},{"denom":"ASSET10","index":"0.000021467927303389"},{"denom":"ASSET11","index":"0.000026655124661377"},{"denom":"ASSET12","index":"0.000025453388278707"},{"denom":"ASSET13","index":"0.000008375182650914"},{"denom":"ASSET14","index":"0.000024453809207757"},{"denom":"ASSET15","index":"0.000019323681821282"},{"denom":"ASSET16","index":"0.000011885939188892"},{"denom":"ASSET17","index":"0.000009353763879690"},{"denom":"ASSET18","index":"0.000003851457527173"},{"denom":"ASSET2","index":"0.000008122633355733"},{"denom":"ASSET3","index":"0.000002252845423920"},{"denom":"ASSET4","index":"0.000021728796023940"},{"denom":"ASSET5","index":"0.000001755342604855"},{"denom":"ASSET6","index":"0.000007082922688985"},{"denom":"ASSET7","index":"0.000011133765978354"},{"denom":"ASSET8","index":"0.000015225414484063"},{"denom":"ASSET9","index":"0.000006459804222065"}],"last_reward_claim_height":"145"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET7","shares":"569949354.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003157426180098"},{"denom":"ASSET1","index":"0.000026803913890418"},{"denom":"ASSET10","index":"0.000021467927303389"},{"denom":"ASSET11","index":"0.000026655124661377"},{"denom":"ASSET12","index":"0.000025453388278707"},{"denom":"ASSET13","index":"0.000008375182650914"},{"denom":"ASSET14","index":"0.000024453809207757"},{"denom":"ASSET15","index":"0.000019323681821282"},{"denom":"ASSET16","index":"0.000011885939188892"},{"denom":"ASSET17","index":"0.000009353763879690"},{"denom":"ASSET18","index":"0.000003851457527173"},{"denom":"ASSET2","index":"0.000008122633355733"},{"denom":"ASSET3","index":"0.000002252845423920"},{"denom":"ASSET4","index":"0.000021728796023940"},{"denom":"ASSET5","index":"0.000001755342604855"},{"denom":"ASSET6","index":"0.000007082922688985"},{"denom":"ASSET7","index":"0.000011133765978354"},{"denom":"ASSET8","index":"0.000015225414484063"},{"denom":"ASSET9","index":"0.000006459804222065"}],"last_reward_claim_height":"141"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET13","shares":"155698271.000000000318344725","reward_history":[{"denom":"ASSET0","index":"0.000003157426180098"},{"denom":"ASSET1","index":"0.000026803913890418"},{"denom":"ASSET10","index":"0.000021467927303389"},{"denom":"ASSET11","index":"0.000026655124661377"},{"denom":"ASSET12","index":"0.000025453388278707"},{"denom":"ASSET13","index":"0.000008375182650914"},{"denom":"ASSET14","index":"0.000024453809207757"},{"denom":"ASSET15","index":"0.000019323681821282"},{"denom":"ASSET16","index":"0.000011885939188892"},{"denom":"ASSET17","index":"0.000009353763879690"},{"denom":"ASSET18","index":"0.000003851457527173"},{"denom":"ASSET2","index":"0.000008122633355733"},{"denom":"ASSET3","index":"0.000002252845423920"},{"denom":"ASSET4","index":"0.000021728796023940"},{"denom":"ASSET5","index":"0.000001755342604855"},{"denom":"ASSET6","index":"0.000007082922688985"},{"denom":"ASSET7","index":"0.000011133765978354"},{"denom":"ASSET8","index":"0.000015225414484063"},{"denom":"ASSET9","index":"0.000006459804222065"}],"last_reward_claim_height":"175"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET17","shares":"642770473.527692577336157935","reward_history":[{"denom":"ASSET0","index":"0.000003157426180098"},{"denom":"ASSET1","index":"0.000026803913890418"},{"denom":"ASSET10","index":"0.000021467927303389"},{"denom":"ASSET11","index":"0.000026655124661377"},{"denom":"ASSET12","index":"0.000025453388278707"},{"denom":"ASSET13","index":"0.000008375182650914"},{"denom":"ASSET14","index":"0.000024453809207757"},{"denom":"ASSET15","index":"0.000019323681821282"},{"denom":"ASSET16","index":"0.000011885939188892"},{"denom":"ASSET17","index":"0.000009353763879690"},{"denom":"ASSET18","index":"0.000003851457527173"},{"denom":"ASSET2","index":"0.000008122633355733"},{"denom":"ASSET3","index":"0.000002252845423920"},{"denom":"ASSET4","index":"0.000021728796023940"},{"denom":"ASSET5","index":"0.000001755342604855"},{"denom":"ASSET6","index":"0.000007082922688985"},{"denom":"ASSET7","index":"0.000011133765978354"},{"denom":"ASSET8","index":"0.000015225414484063"},{"denom":"ASSET9","index":"0.000006459804222065"}],"last_reward_claim_height":"148"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET8","shares":"175177668.999999999299289324","reward_history":[{"denom":"ASSET0","index":"0.000001578706846766"},{"denom":"ASSET1","index":"0.000013164667632738"},{"denom":"ASSET10","index":"0.000009171819989970"},{"denom":"ASSET11","index":"0.000012734981690366"},{"denom":"ASSET12","index":"0.000011467468005207"},{"denom":"ASSET13","index":"0.000003946168668528"},{"denom":"ASSET14","index":"0.000011895957050803"},{"denom":"ASSET15","index":"0.000008505148486066"},{"denom":"ASSET16","index":"0.000005930623522158"},{"denom":"ASSET17","index":"0.000004211879752669"},{"denom":"ASSET18","index":"0.000002005998995588"},{"denom":"ASSET2","index":"0.000003886323829757"},{"denom":"ASSET3","index":"0.000001135855039864"},{"denom":"ASSET4","index":"0.000010697863378618"},{"denom":"ASSET5","index":"0.000000882112923477"},{"denom":"ASSET6","index":"0.000003590690326231"},{"denom":"ASSET7","index":"0.000005499740683011"},{"denom":"ASSET8","index":"0.000007176593065360"},{"denom":"ASSET9","index":"0.000003098765751537"}],"last_reward_claim_height":"71"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET10","shares":"578825206.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001578706846766"},{"denom":"ASSET1","index":"0.000013164667632738"},{"denom":"ASSET10","index":"0.000009171819989970"},{"denom":"ASSET11","index":"0.000012734981690366"},{"denom":"ASSET12","index":"0.000011467468005207"},{"denom":"ASSET13","index":"0.000003946168668528"},{"denom":"ASSET14","index":"0.000011895957050803"},{"denom":"ASSET15","index":"0.000008505148486066"},{"denom":"ASSET16","index":"0.000005930623522158"},{"denom":"ASSET17","index":"0.000004211879752669"},{"denom":"ASSET18","index":"0.000002005998995588"},{"denom":"ASSET2","index":"0.000003886323829757"},{"denom":"ASSET3","index":"0.000001135855039864"},{"denom":"ASSET4","index":"0.000010697863378618"},{"denom":"ASSET5","index":"0.000000882112923477"},{"denom":"ASSET6","index":"0.000003590690326231"},{"denom":"ASSET7","index":"0.000005499740683011"},{"denom":"ASSET8","index":"0.000007176593065360"},{"denom":"ASSET9","index":"0.000003098765751537"}],"last_reward_claim_height":"83"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET16","shares":"664964039.225106074439288258","reward_history":[{"denom":"ASSET0","index":"0.000001578706846766"},{"denom":"ASSET1","index":"0.000013164667632738"},{"denom":"ASSET10","index":"0.000009171819989970"},{"denom":"ASSET11","index":"0.000012734981690366"},{"denom":"ASSET12","index":"0.000011467468005207"},{"denom":"ASSET13","index":"0.000003946168668528"},{"denom":"ASSET14","index":"0.000011895957050803"},{"denom":"ASSET15","index":"0.000008505148486066"},{"denom":"ASSET16","index":"0.000005930623522158"},{"denom":"ASSET17","index":"0.000004211879752669"},{"denom":"ASSET18","index":"0.000002005998995588"},{"denom":"ASSET2","index":"0.000003886323829757"},{"denom":"ASSET3","index":"0.000001135855039864"},{"denom":"ASSET4","index":"0.000010697863378618"},{"denom":"ASSET5","index":"0.000000882112923477"},{"denom":"ASSET6","index":"0.000003590690326231"},{"denom":"ASSET7","index":"0.000005499740683011"},{"denom":"ASSET8","index":"0.000007176593065360"},{"denom":"ASSET9","index":"0.000003098765751537"}],"last_reward_claim_height":"91"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET10","shares":"203043711.620001830028206172","reward_history":[{"denom":"ASSET0","index":"0.000001736464555496"},{"denom":"ASSET1","index":"0.000014486324003877"},{"denom":"ASSET10","index":"0.000010092542477093"},{"denom":"ASSET11","index":"0.000014014496766071"},{"denom":"ASSET12","index":"0.000012620063107870"},{"denom":"ASSET13","index":"0.000004342915393341"},{"denom":"ASSET14","index":"0.000013091890345676"},{"denom":"ASSET15","index":"0.000009359368553661"},{"denom":"ASSET16","index":"0.000006524897117620"},{"denom":"ASSET17","index":"0.000004634080157191"},{"denom":"ASSET18","index":"0.000002206537788701"},{"denom":"ASSET2","index":"0.000004276263218483"},{"denom":"ASSET3","index":"0.000001250605280877"},{"denom":"ASSET4","index":"0.000011772878885340"},{"denom":"ASSET5","index":"0.000000969964544635"},{"denom":"ASSET6","index":"0.000003951772367204"},{"denom":"ASSET7","index":"0.000006051315875212"},{"denom":"ASSET8","index":"0.000007896528716001"},{"denom":"ASSET9","index":"0.000003409784945337"}],"last_reward_claim_height":"99"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET11","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001736464555496"},{"denom":"ASSET1","index":"0.000014486324003877"},{"denom":"ASSET10","index":"0.000010092542477093"},{"denom":"ASSET11","index":"0.000014014496766071"},{"denom":"ASSET12","index":"0.000012620063107870"},{"denom":"ASSET13","index":"0.000004342915393341"},{"denom":"ASSET14","index":"0.000013091890345676"},{"denom":"ASSET15","index":"0.000009359368553661"},{"denom":"ASSET16","index":"0.000006524897117620"},{"denom":"ASSET17","index":"0.000004634080157191"},{"denom":"ASSET18","index":"0.000002206537788701"},{"denom":"ASSET2","index":"0.000004276263218483"},{"denom":"ASSET3","index":"0.000001250605280877"},{"denom":"ASSET4","index":"0.000011772878885340"},{"denom":"ASSET5","index":"0.000000969964544635"},{"denom":"ASSET6","index":"0.000003951772367204"},{"denom":"ASSET7","index":"0.000006051315875212"},{"denom":"ASSET8","index":"0.000007896528716001"},{"denom":"ASSET9","index":"0.000003409784945337"}],"last_reward_claim_height":"110"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET15","shares":"432202224.990424743158737037","reward_history":[{"denom":"ASSET0","index":"0.000003356675502673"},{"denom":"ASSET1","index":"0.000028477076245214"},{"denom":"ASSET10","index":"0.000022663760086849"},{"denom":"ASSET11","index":"0.000028282539274294"},{"denom":"ASSET12","index":"0.000026934248109484"},{"denom":"ASSET13","index":"0.000008880550781135"},{"denom":"ASSET14","index":"0.000025969128454053"},{"denom":"ASSET15","index":"0.000020425731449718"},{"denom":"ASSET16","index":"0.000012636600959200"},{"denom":"ASSET17","index":"0.000009896936242996"},{"denom":"ASSET18","index":"0.000004102733083140"},{"denom":"ASSET2","index":"0.000008619316582261"},{"denom":"ASSET3","index":"0.000002396767404444"},{"denom":"ASSET4","index":"0.000023088672429632"},{"denom":"ASSET5","index":"0.000001866260713425"},{"denom":"ASSET6","index":"0.000007536521735823"},{"denom":"ASSET7","index":"0.000011831316132227"},{"denom":"ASSET8","index":"0.000016143846449802"},{"denom":"ASSET9","index":"0.000006854365607618"}],"last_reward_claim_height":"166"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET6","shares":"271601732.678315969085022952","reward_history":[{"denom":"ASSET0","index":"0.000002962853679956"},{"denom":"ASSET1","index":"0.000025162993314326"},{"denom":"ASSET10","index":"0.000020199688926412"},{"denom":"ASSET11","index":"0.000025035647772320"},{"denom":"ASSET12","index":"0.000023929456511577"},{"denom":"ASSET13","index":"0.000007867725037604"},{"denom":"ASSET14","index":"0.000022960507028012"},{"denom":"ASSET15","index":"0.000018173489333858"},{"denom":"ASSET16","index":"0.000011155286879957"},{"denom":"ASSET17","index":"0.000008793607250882"},{"denom":"ASSET18","index":"0.000003611579051495"},{"denom":"ASSET2","index":"0.000007628670547867"},{"denom":"ASSET3","index":"0.000002114031306235"},{"denom":"ASSET4","index":"0.000020398130246320"},{"denom":"ASSET5","index":"0.000001647096325587"},{"denom":"ASSET6","index":"0.000006645213242757"},{"denom":"ASSET7","index":"0.000010450616802650"},{"denom":"ASSET8","index":"0.000014303332598966"},{"denom":"ASSET9","index":"0.000006067112886031"}],"last_reward_claim_height":"141"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET11","shares":"865850111.000000000000000000","reward_history":[],"last_reward_claim_height":"20"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET5","shares":"254217615.000000000000000000","reward_history":[],"last_reward_claim_height":"26"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET9","shares":"900598715.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001689516061942"},{"denom":"ASSET1","index":"0.000014086551658080"},{"denom":"ASSET10","index":"0.000009813816295422"},{"denom":"ASSET11","index":"0.000013627312671286"},{"denom":"ASSET12","index":"0.000012271349136594"},{"denom":"ASSET13","index":"0.000004223185893030"},{"denom":"ASSET14","index":"0.000012729983861563"},{"denom":"ASSET15","index":"0.000009101391604066"},{"denom":"ASSET16","index":"0.000006345353421478"},{"denom":"ASSET17","index":"0.000004506584688828"},{"denom":"ASSET18","index":"0.000002146942263262"},{"denom":"ASSET2","index":"0.000004157925615959"},{"denom":"ASSET3","index":"0.000001216379053179"},{"denom":"ASSET4","index":"0.000011447740269489"},{"denom":"ASSET5","index":"0.000000943856970227"},{"denom":"ASSET6","index":"0.000003842500943451"},{"denom":"ASSET7","index":"0.000005884905911035"},{"denom":"ASSET8","index":"0.000007678959268655"},{"denom":"ASSET9","index":"0.000003316793155937"}],"last_reward_claim_height":"99"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET12","shares":"365568210.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001689516061942"},{"denom":"ASSET1","index":"0.000014086551658080"},{"denom":"ASSET10","index":"0.000009813816295422"},{"denom":"ASSET11","index":"0.000013627312671286"},{"denom":"ASSET12","index":"0.000012271349136594"},{"denom":"ASSET13","index":"0.000004223185893030"},{"denom":"ASSET14","index":"0.000012729983861563"},{"denom":"ASSET15","index":"0.000009101391604066"},{"denom":"ASSET16","index":"0.000006345353421478"},{"denom":"ASSET17","index":"0.000004506584688828"},{"denom":"ASSET18","index":"0.000002146942263262"},{"denom":"ASSET2","index":"0.000004157925615959"},{"denom":"ASSET3","index":"0.000001216379053179"},{"denom":"ASSET4","index":"0.000011447740269489"},{"denom":"ASSET5","index":"0.000000943856970227"},{"denom":"ASSET6","index":"0.000003842500943451"},{"denom":"ASSET7","index":"0.000005884905911035"},{"denom":"ASSET8","index":"0.000007678959268655"},{"denom":"ASSET9","index":"0.000003316793155937"}],"last_reward_claim_height":"116"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET14","shares":"443973859.609280902060771404","reward_history":[{"denom":"ASSET0","index":"0.000001689516061942"},{"denom":"ASSET1","index":"0.000014086551658080"},{"denom":"ASSET10","index":"0.000009813816295422"},{"denom":"ASSET11","index":"0.000013627312671286"},{"denom":"ASSET12","index":"0.000012271349136594"},{"denom":"ASSET13","index":"0.000004223185893030"},{"denom":"ASSET14","index":"0.000012729983861563"},{"denom":"ASSET15","index":"0.000009101391604066"},{"denom":"ASSET16","index":"0.000006345353421478"},{"denom":"ASSET17","index":"0.000004506584688828"},{"denom":"ASSET18","index":"0.000002146942263262"},{"denom":"ASSET2","index":"0.000004157925615959"},{"denom":"ASSET3","index":"0.000001216379053179"},{"denom":"ASSET4","index":"0.000011447740269489"},{"denom":"ASSET5","index":"0.000000943856970227"},{"denom":"ASSET6","index":"0.000003842500943451"},{"denom":"ASSET7","index":"0.000005884905911035"},{"denom":"ASSET8","index":"0.000007678959268655"},{"denom":"ASSET9","index":"0.000003316793155937"}],"last_reward_claim_height":"108"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET17","shares":"297990780.000000000000000000","reward_history":[],"last_reward_claim_height":"51"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET10","shares":"474064550.000000057361810550","reward_history":[{"denom":"ASSET0","index":"0.000003313075721980"},{"denom":"ASSET1","index":"0.000028138029356789"},{"denom":"ASSET10","index":"0.000022370607880245"},{"denom":"ASSET11","index":"0.000027937207217164"},{"denom":"ASSET12","index":"0.000026595598409551"},{"denom":"ASSET13","index":"0.000008769097729958"},{"denom":"ASSET14","index":"0.000025655242037122"},{"denom":"ASSET15","index":"0.000020162686714325"},{"denom":"ASSET16","index":"0.000012488922131836"},{"denom":"ASSET17","index":"0.000009772018779266"},{"denom":"ASSET18","index":"0.000004056016110298"},{"denom":"ASSET2","index":"0.000008514325121927"},{"denom":"ASSET3","index":"0.000002365037757716"},{"denom":"ASSET4","index":"0.000022813272666626"},{"denom":"ASSET5","index":"0.000001844445619129"},{"denom":"ASSET6","index":"0.000007446834645040"},{"denom":"ASSET7","index":"0.000011690909413493"},{"denom":"ASSET8","index":"0.000015945057917181"},{"denom":"ASSET9","index":"0.000006769080892636"}],"last_reward_claim_height":"181"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET15","shares":"1879032723.977384622396807688","reward_history":[{"denom":"ASSET0","index":"0.000004436789952669"},{"denom":"ASSET1","index":"0.000036213190978412"},{"denom":"ASSET10","index":"0.000031611013476262"},{"denom":"ASSET11","index":"0.000037779078414589"},{"denom":"ASSET12","index":"0.000035979116489801"},{"denom":"ASSET13","index":"0.000012213749195021"},{"denom":"ASSET14","index":"0.000034864158317319"},{"denom":"ASSET15","index":"0.000028362297628331"},{"denom":"ASSET16","index":"0.000016066338617004"},{"denom":"ASSET17","index":"0.000013057645986304"},{"denom":"ASSET18","index":"0.000005418485487430"},{"denom":"ASSET2","index":"0.000010930260523546"},{"denom":"ASSET3","index":"0.000003149326648701"},{"denom":"ASSET4","index":"0.000029711570819555"},{"denom":"ASSET5","index":"0.000002474110775888"},{"denom":"ASSET6","index":"0.000010109622747326"},{"denom":"ASSET7","index":"0.000015599467381101"},{"denom":"ASSET8","index":"0.000022561292254755"},{"denom":"ASSET9","index":"0.000009007830399076"}],"last_reward_claim_height":"184"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET16","shares":"237206671.489160844075121851","reward_history":[{"denom":"ASSET0","index":"0.000004436789952669"},{"denom":"ASSET1","index":"0.000036213190978412"},{"denom":"ASSET10","index":"0.000031611013476262"},{"denom":"ASSET11","index":"0.000037779078414589"},{"denom":"ASSET12","index":"0.000035979116489801"},{"denom":"ASSET13","index":"0.000012213749195021"},{"denom":"ASSET14","index":"0.000034864158317319"},{"denom":"ASSET15","index":"0.000028362297628331"},{"denom":"ASSET16","index":"0.000016066338617004"},{"denom":"ASSET17","index":"0.000013057645986304"},{"denom":"ASSET18","index":"0.000005418485487430"},{"denom":"ASSET2","index":"0.000010930260523546"},{"denom":"ASSET3","index":"0.000003149326648701"},{"denom":"ASSET4","index":"0.000029711570819555"},{"denom":"ASSET5","index":"0.000002474110775888"},{"denom":"ASSET6","index":"0.000010109622747326"},{"denom":"ASSET7","index":"0.000015599467381101"},{"denom":"ASSET8","index":"0.000022561292254755"},{"denom":"ASSET9","index":"0.000009007830399076"}],"last_reward_claim_height":"189"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET0","shares":"336282296.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001454934724421"},{"denom":"ASSET1","index":"0.000012138554241533"},{"denom":"ASSET10","index":"0.000008457231031836"},{"denom":"ASSET11","index":"0.000011742676653726"},{"denom":"ASSET12","index":"0.000010575345305063"},{"denom":"ASSET13","index":"0.000003639028595615"},{"denom":"ASSET14","index":"0.000010969531108307"},{"denom":"ASSET15","index":"0.000007843113235366"},{"denom":"ASSET16","index":"0.000005467847708521"},{"denom":"ASSET17","index":"0.000003882645572727"},{"denom":"ASSET18","index":"0.000001849120527665"},{"denom":"ASSET2","index":"0.000003583199705027"},{"denom":"ASSET3","index":"0.000001047214644670"},{"denom":"ASSET4","index":"0.000009864795788485"},{"denom":"ASSET5","index":"0.000000813748374938"},{"denom":"ASSET6","index":"0.000003310822390339"},{"denom":"ASSET7","index":"0.000005070278336150"},{"denom":"ASSET8","index":"0.000006616569426988"},{"denom":"ASSET9","index":"0.000002857424127380"}],"last_reward_claim_height":"67"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET3","shares":"83988002.861659690559896713","reward_history":[{"denom":"ASSET0","index":"0.000003026822568793"},{"denom":"ASSET1","index":"0.000025710421285725"},{"denom":"ASSET10","index":"0.000020652297735472"},{"denom":"ASSET11","index":"0.000025583400849235"},{"denom":"ASSET12","index":"0.000024460820755928"},{"denom":"ASSET13","index":"0.000008041083722059"},{"denom":"ASSET14","index":"0.000023461074878675"},{"denom":"ASSET15","index":"0.000018578170233019"},{"denom":"ASSET16","index":"0.000011396689804799"},{"denom":"ASSET17","index":"0.000008988134494295"},{"denom":"ASSET18","index":"0.000003688816665807"},{"denom":"ASSET2","index":"0.000007796110853756"},{"denom":"ASSET3","index":"0.000002159003644915"},{"denom":"ASSET4","index":"0.000020841789260406"},{"denom":"ASSET5","index":"0.000001683251281734"},{"denom":"ASSET6","index":"0.000006788484398340"},{"denom":"ASSET7","index":"0.000010677121165375"},{"denom":"ASSET8","index":"0.000014616905179383"},{"denom":"ASSET9","index":"0.000006199084273401"}],"last_reward_claim_height":"124"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET5","shares":"622287427.354528977701688639","reward_history":[{"denom":"ASSET0","index":"0.000004647286505128"},{"denom":"ASSET1","index":"0.000038009132036325"},{"denom":"ASSET10","index":"0.000033142388915443"},{"denom":"ASSET11","index":"0.000039594668374363"},{"denom":"ASSET12","index":"0.000037753435240155"},{"denom":"ASSET13","index":"0.000012789620691403"},{"denom":"ASSET14","index":"0.000036518112593773"},{"denom":"ASSET15","index":"0.000029725103813089"},{"denom":"ASSET16","index":"0.000016857301755173"},{"denom":"ASSET17","index":"0.000013707892451703"},{"denom":"ASSET18","index":"0.000005671073895044"},{"denom":"ASSET2","index":"0.000011481468896457"},{"denom":"ASSET3","index":"0.000003298652517557"},{"denom":"ASSET4","index":"0.000031167698742833"},{"denom":"ASSET5","index":"0.000002592256930151"},{"denom":"ASSET6","index":"0.000010580735913944"},{"denom":"ASSET7","index":"0.000016345764259168"},{"denom":"ASSET8","index":"0.000023608907458604"},{"denom":"ASSET9","index":"0.000009446179077200"}],"last_reward_claim_height":"192"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET9","shares":"645304829.000000000000000000","reward_history":[],"last_reward_claim_height":"36"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET14","shares":"824494102.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001454934724421"},{"denom":"ASSET1","index":"0.000012138554241533"},{"denom":"ASSET10","index":"0.000008457231031836"},{"denom":"ASSET11","index":"0.000011742676653726"},{"denom":"ASSET12","index":"0.000010575345305063"},{"denom":"ASSET13","index":"0.000003639028595615"},{"denom":"ASSET14","index":"0.000010969531108307"},{"denom":"ASSET15","index":"0.000007843113235366"},{"denom":"ASSET16","index":"0.000005467847708521"},{"denom":"ASSET17","index":"0.000003882645572727"},{"denom":"ASSET18","index":"0.000001849120527665"},{"denom":"ASSET2","index":"0.000003583199705027"},{"denom":"ASSET3","index":"0.000001047214644670"},{"denom":"ASSET4","index":"0.000009864795788485"},{"denom":"ASSET5","index":"0.000000813748374938"},{"denom":"ASSET6","index":"0.000003310822390339"},{"denom":"ASSET7","index":"0.000005070278336150"},{"denom":"ASSET8","index":"0.000006616569426988"},{"denom":"ASSET9","index":"0.000002857424127380"}],"last_reward_claim_height":"88"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET2","shares":"112736549.143778394361266740","reward_history":[{"denom":"ASSET0","index":"0.000003086703561215"},{"denom":"ASSET1","index":"0.000026199550261878"},{"denom":"ASSET10","index":"0.000020936384793003"},{"denom":"ASSET11","index":"0.000026042194398185"},{"denom":"ASSET12","index":"0.000024843424443974"},{"denom":"ASSET13","index":"0.000008180415813801"},{"denom":"ASSET14","index":"0.000023898307142718"},{"denom":"ASSET15","index":"0.000018852934413068"},{"denom":"ASSET16","index":"0.000011621232923996"},{"denom":"ASSET17","index":"0.000009129550402498"},{"denom":"ASSET18","index":"0.000003767892160935"},{"denom":"ASSET2","index":"0.000007936188126371"},{"denom":"ASSET3","index":"0.000002203575710986"},{"denom":"ASSET4","index":"0.000021240180347210"},{"denom":"ASSET5","index":"0.000001716192200569"},{"denom":"ASSET6","index":"0.000006926674957775"},{"denom":"ASSET7","index":"0.000010883333770048"},{"denom":"ASSET8","index":"0.000014871024805414"},{"denom":"ASSET9","index":"0.000006311583255107"}],"last_reward_claim_height":"140"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET12","shares":"105688349.999999993211255401","reward_history":[],"last_reward_claim_height":"53"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET14","shares":"495679072.817945134461461908","reward_history":[{"denom":"ASSET0","index":"0.000004619384085878"},{"denom":"ASSET1","index":"0.000037832417098439"},{"denom":"ASSET10","index":"0.000032750145056484"},{"denom":"ASSET11","index":"0.000039294730751429"},{"denom":"ASSET12","index":"0.000037416427541567"},{"denom":"ASSET13","index":"0.000012671813979164"},{"denom":"ASSET14","index":"0.000036248560185433"},{"denom":"ASSET15","index":"0.000029396437010656"},{"denom":"ASSET16","index":"0.000016785976843486"},{"denom":"ASSET17","index":"0.000013593650767018"},{"denom":"ASSET18","index":"0.000005642705122830"},{"denom":"ASSET2","index":"0.000011421935308679"},{"denom":"ASSET3","index":"0.000003281292888266"},{"denom":"ASSET4","index":"0.000031006969518146"},{"denom":"ASSET5","index":"0.000002575890941784"},{"denom":"ASSET6","index":"0.000010513605988541"},{"denom":"ASSET7","index":"0.000016244985826285"},{"denom":"ASSET8","index":"0.000023375927636049"},{"denom":"ASSET9","index":"0.000009382767835280"}],"last_reward_claim_height":"197"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET5","shares":"563692828.000000000000000000","reward_history":[],"last_reward_claim_height":"16"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET10","shares":"245014651.956425458873485709","reward_history":[{"denom":"ASSET0","index":"0.000004616721479176"},{"denom":"ASSET1","index":"0.000037776223870921"},{"denom":"ASSET10","index":"0.000032792106235622"},{"denom":"ASSET11","index":"0.000039284178188011"},{"denom":"ASSET12","index":"0.000037420627315813"},{"denom":"ASSET13","index":"0.000012677210240132"},{"denom":"ASSET14","index":"0.000036238343992734"},{"denom":"ASSET15","index":"0.000029426834520377"},{"denom":"ASSET16","index":"0.000016759074479265"},{"denom":"ASSET17","index":"0.000013592257069110"},{"denom":"ASSET18","index":"0.000005637809940416"},{"denom":"ASSET2","index":"0.000011406628355974"},{"denom":"ASSET3","index":"0.000003278241119549"},{"denom":"ASSET4","index":"0.000030968445081876"},{"denom":"ASSET5","index":"0.000002574590057360"},{"denom":"ASSET6","index":"0.000010507503575560"},{"denom":"ASSET7","index":"0.000016233218198884"},{"denom":"ASSET8","index":"0.000023393630662833"},{"denom":"ASSET9","index":"0.000009377336949943"}],"last_reward_claim_height":"200"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET12","shares":"147746854.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003050294937135"},{"denom":"ASSET1","index":"0.000025887230915803"},{"denom":"ASSET10","index":"0.000020718160619670"},{"denom":"ASSET11","index":"0.000025739685005463"},{"denom":"ASSET12","index":"0.000024570727404900"},{"denom":"ASSET13","index":"0.000008086966483560"},{"denom":"ASSET14","index":"0.000023616194455668"},{"denom":"ASSET15","index":"0.000018651338246959"},{"denom":"ASSET16","index":"0.000011480437826441"},{"denom":"ASSET17","index":"0.000009029688158762"},{"denom":"ASSET18","index":"0.000003721440260869"},{"denom":"ASSET2","index":"0.000007844134626406"},{"denom":"ASSET3","index":"0.000002176540273945"},{"denom":"ASSET4","index":"0.000020986445628896"},{"denom":"ASSET5","index":"0.000001695800268231"},{"denom":"ASSET6","index":"0.000006841569437153"},{"denom":"ASSET7","index":"0.000010753447417762"},{"denom":"ASSET8","index":"0.000014701309289649"},{"denom":"ASSET9","index":"0.000006238283490477"}],"last_reward_claim_height":"160"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET9","shares":"244538042.000000010515135806","reward_history":[{"denom":"ASSET0","index":"0.000001535139489204"},{"denom":"ASSET1","index":"0.000012800845981431"},{"denom":"ASSET10","index":"0.000008918122145344"},{"denom":"ASSET11","index":"0.000012383184798277"},{"denom":"ASSET12","index":"0.000011151318949088"},{"denom":"ASSET13","index":"0.000003837555421617"},{"denom":"ASSET14","index":"0.000011567806926671"},{"denom":"ASSET15","index":"0.000008270512670342"},{"denom":"ASSET16","index":"0.000005766305379776"},{"denom":"ASSET17","index":"0.000004095074044376"},{"denom":"ASSET18","index":"0.000001950454261216"},{"denom":"ASSET2","index":"0.000003778308540299"},{"denom":"ASSET3","index":"0.000001105159647558"},{"denom":"ASSET4","index":"0.000010402813795010"},{"denom":"ASSET5","index":"0.000000857613272150"},{"denom":"ASSET6","index":"0.000003491459778273"},{"denom":"ASSET7","index":"0.000005347470991052"},{"denom":"ASSET8","index":"0.000006978226734264"},{"denom":"ASSET9","index":"0.000003013965111016"}],"last_reward_claim_height":"120"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET13","shares":"420919176.000000000000000000","reward_history":[],"last_reward_claim_height":"57"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET14","shares":"16305128.000000000000000000","reward_history":[],"last_reward_claim_height":"24"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET15","shares":"393794901.346537528785110770","reward_history":[{"denom":"ASSET0","index":"0.000002944371933765"},{"denom":"ASSET1","index":"0.000024968433937291"},{"denom":"ASSET10","index":"0.000019851368221906"},{"denom":"ASSET11","index":"0.000024791952485266"},{"denom":"ASSET12","index":"0.000023600048189968"},{"denom":"ASSET13","index":"0.000007784111470281"},{"denom":"ASSET14","index":"0.000022766914870589"},{"denom":"ASSET15","index":"0.000017894900322998"},{"denom":"ASSET16","index":"0.000011081662183182"},{"denom":"ASSET17","index":"0.000008672317440622"},{"denom":"ASSET18","index":"0.000003599691097086"},{"denom":"ASSET2","index":"0.000007555380586873"},{"denom":"ASSET3","index":"0.000002101847815188"},{"denom":"ASSET4","index":"0.000020244169178497"},{"denom":"ASSET5","index":"0.000001637098640985"},{"denom":"ASSET6","index":"0.000006609166185649"},{"denom":"ASSET7","index":"0.000010374399402552"},{"denom":"ASSET8","index":"0.000014150620453773"},{"denom":"ASSET9","index":"0.000006009906313007"}],"last_reward_claim_height":"137"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET1","shares":"1417237800.000000000000000000","reward_history":[],"last_reward_claim_height":"26"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET2","shares":"491973494.558843231880232000","reward_history":[{"denom":"ASSET0","index":"0.000001449310882227"},{"denom":"ASSET1","index":"0.000012082282763787"},{"denom":"ASSET10","index":"0.000008417588941675"},{"denom":"ASSET11","index":"0.000011688148164511"},{"denom":"ASSET12","index":"0.000010525234539176"},{"denom":"ASSET13","index":"0.000003621923721366"},{"denom":"ASSET14","index":"0.000010918286351091"},{"denom":"ASSET15","index":"0.000007806355476589"},{"denom":"ASSET16","index":"0.000005442630668295"},{"denom":"ASSET17","index":"0.000003865550877512"},{"denom":"ASSET18","index":"0.000001841279906781"},{"denom":"ASSET2","index":"0.000003566701565973"},{"denom":"ASSET3","index":"0.000001043265621984"},{"denom":"ASSET4","index":"0.000009818715786353"},{"denom":"ASSET5","index":"0.000000809924945764"},{"denom":"ASSET6","index":"0.000003295463332131"},{"denom":"ASSET7","index":"0.000005047413281659"},{"denom":"ASSET8","index":"0.000006586595514820"},{"denom":"ASSET9","index":"0.000002844482396421"}],"last_reward_claim_height":"83"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET8","shares":"842177694.000000000000000000","reward_history":[],"last_reward_claim_height":"49"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET13","shares":"837906188.000000189366798488","reward_history":[],"last_reward_claim_height":"54"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET0","shares":"897917269.087992409163552526","reward_history":[{"denom":"ASSET0","index":"0.000001731982701050"},{"denom":"ASSET1","index":"0.000014440617081118"},{"denom":"ASSET10","index":"0.000010060714066040"},{"denom":"ASSET11","index":"0.000013969585405988"},{"denom":"ASSET12","index":"0.000012579542501729"},{"denom":"ASSET13","index":"0.000004329188348588"},{"denom":"ASSET14","index":"0.000013049805772821"},{"denom":"ASSET15","index":"0.000009329961826155"},{"denom":"ASSET16","index":"0.000006505308583448"},{"denom":"ASSET17","index":"0.000004619645074851"},{"denom":"ASSET18","index":"0.000002200709164068"},{"denom":"ASSET2","index":"0.000004262337197306"},{"denom":"ASSET3","index":"0.000001247119753241"},{"denom":"ASSET4","index":"0.000011735066464260"},{"denom":"ASSET5","index":"0.000000967420683506"},{"denom":"ASSET6","index":"0.000003938839097420"},{"denom":"ASSET7","index":"0.000006032740100243"},{"denom":"ASSET8","index":"0.000007872299366576"},{"denom":"ASSET9","index":"0.000003400187866969"}],"last_reward_claim_height":"86"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET1","shares":"383334756.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003329715418659"},{"denom":"ASSET1","index":"0.000028238028843607"},{"denom":"ASSET10","index":"0.000022458342297172"},{"denom":"ASSET11","index":"0.000028040237741643"},{"denom":"ASSET12","index":"0.000026695793846360"},{"denom":"ASSET13","index":"0.000008804253880653"},{"denom":"ASSET14","index":"0.000025748953032298"},{"denom":"ASSET15","index":"0.000020243324641083"},{"denom":"ASSET16","index":"0.000012532507824147"},{"denom":"ASSET17","index":"0.000009809802042254"},{"denom":"ASSET18","index":"0.000004070975493464"},{"denom":"ASSET2","index":"0.000008545109234155"},{"denom":"ASSET3","index":"0.000002377197518329"},{"denom":"ASSET4","index":"0.000022894451839245"},{"denom":"ASSET5","index":"0.000001851122407848"},{"denom":"ASSET6","index":"0.000007473999475476"},{"denom":"ASSET7","index":"0.000011732969702935"},{"denom":"ASSET8","index":"0.000016005536556726"},{"denom":"ASSET9","index":"0.000006797137295338"}],"last_reward_claim_height":"150"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET8","shares":"16117667.862060137937339565","reward_history":[{"denom":"ASSET0","index":"0.000001731982701050"},{"denom":"ASSET1","index":"0.000014440617081118"},{"denom":"ASSET10","index":"0.000010060714066040"},{"denom":"ASSET11","index":"0.000013969585405988"},{"denom":"ASSET12","index":"0.000012579542501729"},{"denom":"ASSET13","index":"0.000004329188348588"},{"denom":"ASSET14","index":"0.000013049805772821"},{"denom":"ASSET15","index":"0.000009329961826155"},{"denom":"ASSET16","index":"0.000006505308583448"},{"denom":"ASSET17","index":"0.000004619645074851"},{"denom":"ASSET18","index":"0.000002200709164068"},{"denom":"ASSET2","index":"0.000004262337197306"},{"denom":"ASSET3","index":"0.000001247119753241"},{"denom":"ASSET4","index":"0.000011735066464260"},{"denom":"ASSET5","index":"0.000000967420683506"},{"denom":"ASSET6","index":"0.000003938839097420"},{"denom":"ASSET7","index":"0.000006032740100243"},{"denom":"ASSET8","index":"0.000007872299366576"},{"denom":"ASSET9","index":"0.000003400187866969"}],"last_reward_claim_height":"65"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET13","shares":"40285448.982420735397297166","reward_history":[{"denom":"ASSET0","index":"0.000004895773732889"},{"denom":"ASSET1","index":"0.000040125045885881"},{"denom":"ASSET10","index":"0.000034530347890850"},{"denom":"ASSET11","index":"0.000041582468230322"},{"denom":"ASSET12","index":"0.000039543482481393"},{"denom":"ASSET13","index":"0.000013393572744357"},{"denom":"ASSET14","index":"0.000038368912078780"},{"denom":"ASSET15","index":"0.000031017071231408"},{"denom":"ASSET16","index":"0.000017810358083148"},{"denom":"ASSET17","index":"0.000014371406014683"},{"denom":"ASSET18","index":"0.000005986976049338"},{"denom":"ASSET2","index":"0.000012106973634558"},{"denom":"ASSET3","index":"0.000003478447053581"},{"denom":"ASSET4","index":"0.000032874817927521"},{"denom":"ASSET5","index":"0.000002729651069839"},{"denom":"ASSET6","index":"0.000011139377325220"},{"denom":"ASSET7","index":"0.000017211836402270"},{"denom":"ASSET8","index":"0.000024696325414819"},{"denom":"ASSET9","index":"0.000009935598296499"}],"last_reward_claim_height":"198"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET18","shares":"174654760.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003329715418659"},{"denom":"ASSET1","index":"0.000028238028843607"},{"denom":"ASSET10","index":"0.000022458342297172"},{"denom":"ASSET11","index":"0.000028040237741643"},{"denom":"ASSET12","index":"0.000026695793846360"},{"denom":"ASSET13","index":"0.000008804253880653"},{"denom":"ASSET14","index":"0.000025748953032298"},{"denom":"ASSET15","index":"0.000020243324641083"},{"denom":"ASSET16","index":"0.000012532507824147"},{"denom":"ASSET17","index":"0.000009809802042254"},{"denom":"ASSET18","index":"0.000004070975493464"},{"denom":"ASSET2","index":"0.000008545109234155"},{"denom":"ASSET3","index":"0.000002377197518329"},{"denom":"ASSET4","index":"0.000022894451839245"},{"denom":"ASSET5","index":"0.000001851122407848"},{"denom":"ASSET6","index":"0.000007473999475476"},{"denom":"ASSET7","index":"0.000011732969702935"},{"denom":"ASSET8","index":"0.000016005536556726"},{"denom":"ASSET9","index":"0.000006797137295338"}],"last_reward_claim_height":"141"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET2","shares":"222544212.425478455247137376","reward_history":[{"denom":"ASSET0","index":"0.000001649988907243"},{"denom":"ASSET1","index":"0.000013756519537767"},{"denom":"ASSET10","index":"0.000009584361794534"},{"denom":"ASSET11","index":"0.000013307506163009"},{"denom":"ASSET12","index":"0.000011983307415229"},{"denom":"ASSET13","index":"0.000004124070634826"},{"denom":"ASSET14","index":"0.000012431118612277"},{"denom":"ASSET15","index":"0.000008888300900330"},{"denom":"ASSET16","index":"0.000006196625007203"},{"denom":"ASSET17","index":"0.000004401172597026"},{"denom":"ASSET18","index":"0.000002096597926581"},{"denom":"ASSET2","index":"0.000004060355216185"},{"denom":"ASSET3","index":"0.000001187751577673"},{"denom":"ASSET4","index":"0.000011179050527108"},{"denom":"ASSET5","index":"0.000000922070303720"},{"denom":"ASSET6","index":"0.000003752597722375"},{"denom":"ASSET7","index":"0.000005747010543590"},{"denom":"ASSET8","index":"0.000007499184556200"},{"denom":"ASSET9","index":"0.000003238666751267"}],"last_reward_claim_height":"114"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET7","shares":"183489392.000000000366978784","reward_history":[{"denom":"ASSET0","index":"0.000001649988907243"},{"denom":"ASSET1","index":"0.000013756519537767"},{"denom":"ASSET10","index":"0.000009584361794534"},{"denom":"ASSET11","index":"0.000013307506163009"},{"denom":"ASSET12","index":"0.000011983307415229"},{"denom":"ASSET13","index":"0.000004124070634826"},{"denom":"ASSET14","index":"0.000012431118612277"},{"denom":"ASSET15","index":"0.000008888300900330"},{"denom":"ASSET16","index":"0.000006196625007203"},{"denom":"ASSET17","index":"0.000004401172597026"},{"denom":"ASSET18","index":"0.000002096597926581"},{"denom":"ASSET2","index":"0.000004060355216185"},{"denom":"ASSET3","index":"0.000001187751577673"},{"denom":"ASSET4","index":"0.000011179050527108"},{"denom":"ASSET5","index":"0.000000922070303720"},{"denom":"ASSET6","index":"0.000003752597722375"},{"denom":"ASSET7","index":"0.000005747010543590"},{"denom":"ASSET8","index":"0.000007499184556200"},{"denom":"ASSET9","index":"0.000003238666751267"}],"last_reward_claim_height":"111"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET1","shares":"223714163.000000000000000000","reward_history":[],"last_reward_claim_height":"46"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET5","shares":"65303856.999999997620593674","reward_history":[{"denom":"ASSET0","index":"0.000001707974867576"},{"denom":"ASSET1","index":"0.000014238090744503"},{"denom":"ASSET10","index":"0.000009920037235236"},{"denom":"ASSET11","index":"0.000013773690453356"},{"denom":"ASSET12","index":"0.000012403461252069"},{"denom":"ASSET13","index":"0.000004268385028930"},{"denom":"ASSET14","index":"0.000012866619831208"},{"denom":"ASSET15","index":"0.000009199844270355"},{"denom":"ASSET16","index":"0.000006414063379473"},{"denom":"ASSET17","index":"0.000004555220502875"},{"denom":"ASSET18","index":"0.000002169891734707"},{"denom":"ASSET2","index":"0.000004203195148489"},{"denom":"ASSET3","index":"0.000001229294888332"},{"denom":"ASSET4","index":"0.000011570893350426"},{"denom":"ASSET5","index":"0.000000954255678468"},{"denom":"ASSET6","index":"0.000003884075162326"},{"denom":"ASSET7","index":"0.000005948421376317"},{"denom":"ASSET8","index":"0.000007761941764609"},{"denom":"ASSET9","index":"0.000003352622422724"}],"last_reward_claim_height":"112"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET11","shares":"510742893.590472531786401540","reward_history":[{"denom":"ASSET0","index":"0.000003075387603983"},{"denom":"ASSET1","index":"0.000026047450678709"},{"denom":"ASSET10","index":"0.000020531243448578"},{"denom":"ASSET11","index":"0.000025816927992783"},{"denom":"ASSET12","index":"0.000024485469945303"},{"denom":"ASSET13","index":"0.000008098391373250"},{"denom":"ASSET14","index":"0.000023735883509134"},{"denom":"ASSET15","index":"0.000018540774078871"},{"denom":"ASSET16","index":"0.000011572711306393"},{"denom":"ASSET17","index":"0.000008997644319689"},{"denom":"ASSET18","index":"0.000003770348288081"},{"denom":"ASSET2","index":"0.000007868945206789"},{"denom":"ASSET3","index":"0.000002196489262864"},{"denom":"ASSET4","index":"0.000021122354693053"},{"denom":"ASSET5","index":"0.000001710501624761"},{"denom":"ASSET6","index":"0.000006909892735753"},{"denom":"ASSET7","index":"0.000010827333344051"},{"denom":"ASSET8","index":"0.000014723239896475"},{"denom":"ASSET9","index":"0.000006260042064096"}],"last_reward_claim_height":"126"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET5","shares":"177737566.723161871807952656","reward_history":[{"denom":"ASSET0","index":"0.000005166723047275"},{"denom":"ASSET1","index":"0.000042322847048766"},{"denom":"ASSET10","index":"0.000036533262543159"},{"denom":"ASSET11","index":"0.000043914144587354"},{"denom":"ASSET12","index":"0.000041785782999849"},{"denom":"ASSET13","index":"0.000014153266257788"},{"denom":"ASSET14","index":"0.000040516003905052"},{"denom":"ASSET15","index":"0.000032804900644736"},{"denom":"ASSET16","index":"0.000018781400926959"},{"denom":"ASSET17","index":"0.000015182438814265"},{"denom":"ASSET18","index":"0.000006314804040122"},{"denom":"ASSET2","index":"0.000012772828382927"},{"denom":"ASSET3","index":"0.000003669982792512"},{"denom":"ASSET4","index":"0.000034682890695078"},{"denom":"ASSET5","index":"0.000002880570137079"},{"denom":"ASSET6","index":"0.000011757393373176"},{"denom":"ASSET7","index":"0.000018165388254823"},{"denom":"ASSET8","index":"0.000026105026563655"},{"denom":"ASSET9","index":"0.000010488779573430"}],"last_reward_claim_height":"191"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET7","shares":"9775924.078740626275321732","reward_history":[{"denom":"ASSET0","index":"0.000003478645419875"},{"denom":"ASSET1","index":"0.000029510728520321"},{"denom":"ASSET10","index":"0.000023521700007579"},{"denom":"ASSET11","index":"0.000029317721838376"},{"denom":"ASSET12","index":"0.000027938200533330"},{"denom":"ASSET13","index":"0.000009206643656085"},{"denom":"ASSET14","index":"0.000026913511393693"},{"denom":"ASSET15","index":"0.000021192735957156"},{"denom":"ASSET16","index":"0.000013092928863665"},{"denom":"ASSET17","index":"0.000010265835619821"},{"denom":"ASSET18","index":"0.000004249633310572"},{"denom":"ASSET2","index":"0.000008933634051769"},{"denom":"ASSET3","index":"0.000002482776919113"},{"denom":"ASSET4","index":"0.000023925662277258"},{"denom":"ASSET5","index":"0.000001933519521756"},{"denom":"ASSET6","index":"0.000007806757132876"},{"denom":"ASSET7","index":"0.000012260200744601"},{"denom":"ASSET8","index":"0.000016737737824425"},{"denom":"ASSET9","index":"0.000007106044722519"}],"last_reward_claim_height":"152"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET10","shares":"765591455.815457048278664780","reward_history":[{"denom":"ASSET0","index":"0.000001752700098923"},{"denom":"ASSET1","index":"0.000014612940709519"},{"denom":"ASSET10","index":"0.000010180696541309"},{"denom":"ASSET11","index":"0.000014136053678762"},{"denom":"ASSET12","index":"0.000012730078503378"},{"denom":"ASSET13","index":"0.000004380628160175"},{"denom":"ASSET14","index":"0.000013205843447004"},{"denom":"ASSET15","index":"0.000009441241121853"},{"denom":"ASSET16","index":"0.000006583285198706"},{"denom":"ASSET17","index":"0.000004674614988548"},{"denom":"ASSET18","index":"0.000002226220868286"},{"denom":"ASSET2","index":"0.000004313302932304"},{"denom":"ASSET3","index":"0.000001261225935460"},{"denom":"ASSET4","index":"0.000011875048109410"},{"denom":"ASSET5","index":"0.000000979582065531"},{"denom":"ASSET6","index":"0.000003985653489996"},{"denom":"ASSET7","index":"0.000006105276080818"},{"denom":"ASSET8","index":"0.000007965696544335"},{"denom":"ASSET9","index":"0.000003440319144236"}],"last_reward_claim_height":"90"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET4","shares":"319130152.946144907168896956","reward_history":[{"denom":"ASSET0","index":"0.000002895048613815"},{"denom":"ASSET1","index":"0.000024589366099895"},{"denom":"ASSET10","index":"0.000019676065498265"},{"denom":"ASSET11","index":"0.000024447379266412"},{"denom":"ASSET12","index":"0.000023337478265694"},{"denom":"ASSET13","index":"0.000007679998629802"},{"denom":"ASSET14","index":"0.000022431328797509"},{"denom":"ASSET15","index":"0.000017714358679290"},{"denom":"ASSET16","index":"0.000010904445776568"},{"denom":"ASSET17","index":"0.000008574179211920"},{"denom":"ASSET18","index":"0.000003534399202209"},{"denom":"ASSET2","index":"0.000007450371795821"},{"denom":"ASSET3","index":"0.000002066219984895"},{"denom":"ASSET4","index":"0.000019933989143940"},{"denom":"ASSET5","index":"0.000001610899827710"},{"denom":"ASSET6","index":"0.000006497050827728"},{"denom":"ASSET7","index":"0.000010213894093182"},{"denom":"ASSET8","index":"0.000013962110633776"},{"denom":"ASSET9","index":"0.000005925048173997"}],"last_reward_claim_height":"159"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET6","shares":"25634961.000000006031460432","reward_history":[],"last_reward_claim_height":"41"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET16","shares":"708336365.723923311561083904","reward_history":[{"denom":"ASSET0","index":"0.000004589138107131"},{"denom":"ASSET1","index":"0.000037446098475403"},{"denom":"ASSET10","index":"0.000032732808056967"},{"denom":"ASSET11","index":"0.000039094478322284"},{"denom":"ASSET12","index":"0.000037233161430730"},{"denom":"ASSET13","index":"0.000012643946661020"},{"denom":"ASSET14","index":"0.000036080970262311"},{"denom":"ASSET15","index":"0.000029367139968273"},{"denom":"ASSET16","index":"0.000016612678055137"},{"denom":"ASSET17","index":"0.000013507979841133"},{"denom":"ASSET18","index":"0.000005606465800233"},{"denom":"ASSET2","index":"0.000011302755940208"},{"denom":"ASSET3","index":"0.000003257528612514"},{"denom":"ASSET4","index":"0.000030728704055425"},{"denom":"ASSET5","index":"0.000002561029239288"},{"denom":"ASSET6","index":"0.000010461272108585"},{"denom":"ASSET7","index":"0.000016139641498045"},{"denom":"ASSET8","index":"0.000023361940912705"},{"denom":"ASSET9","index":"0.000009319386307275"}],"last_reward_claim_height":"186"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET17","shares":"390394768.000000002732763376","reward_history":[],"last_reward_claim_height":"35"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET4","shares":"379342313.868884958480755160","reward_history":[{"denom":"ASSET0","index":"0.000003071913026336"},{"denom":"ASSET1","index":"0.000026115211920195"},{"denom":"ASSET10","index":"0.000021104918039272"},{"denom":"ASSET11","index":"0.000026018207650283"},{"denom":"ASSET12","index":"0.000024942011742431"},{"denom":"ASSET13","index":"0.000008182453133262"},{"denom":"ASSET14","index":"0.000023839798810024"},{"denom":"ASSET15","index":"0.000018963275072170"},{"denom":"ASSET16","index":"0.000011567273660047"},{"denom":"ASSET17","index":"0.000009164652819502"},{"denom":"ASSET18","index":"0.000003735860972186"},{"denom":"ASSET2","index":"0.000007925194415041"},{"denom":"ASSET3","index":"0.000002190810612048"},{"denom":"ASSET4","index":"0.000021165118890878"},{"denom":"ASSET5","index":"0.000001704606606646"},{"denom":"ASSET6","index":"0.000006884812645629"},{"denom":"ASSET7","index":"0.000010842612570084"},{"denom":"ASSET8","index":"0.000014874699612932"},{"denom":"ASSET9","index":"0.000006301602876980"}],"last_reward_claim_height":"179"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET3","shares":"168424299.000000000000000000","reward_history":[],"last_reward_claim_height":"15"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET8","shares":"32627934.637759816831839619","reward_history":[{"denom":"ASSET0","index":"0.000001534549585700"},{"denom":"ASSET1","index":"0.000012795681230217"},{"denom":"ASSET10","index":"0.000008914897664776"},{"denom":"ASSET11","index":"0.000012378406858633"},{"denom":"ASSET12","index":"0.000011146809898878"},{"denom":"ASSET13","index":"0.000003835934265229"},{"denom":"ASSET14","index":"0.000011563204872419"},{"denom":"ASSET15","index":"0.000008267660704848"},{"denom":"ASSET16","index":"0.000005764014475342"},{"denom":"ASSET17","index":"0.000004093597891939"},{"denom":"ASSET18","index":"0.000001950065161198"},{"denom":"ASSET2","index":"0.000003777014596322"},{"denom":"ASSET3","index":"0.000001104963641508"},{"denom":"ASSET4","index":"0.000010398442163960"},{"denom":"ASSET5","index":"0.000000857413092297"},{"denom":"ASSET6","index":"0.000003490330834180"},{"denom":"ASSET7","index":"0.000005345421006692"},{"denom":"ASSET8","index":"0.000006975385280099"},{"denom":"ASSET9","index":"0.000003012817696624"}],"last_reward_claim_height":"77"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET12","shares":"710008583.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001534549585700"},{"denom":"ASSET1","index":"0.000012795681230217"},{"denom":"ASSET10","index":"0.000008914897664776"},{"denom":"ASSET11","index":"0.000012378406858633"},{"denom":"ASSET12","index":"0.000011146809898878"},{"denom":"ASSET13","index":"0.000003835934265229"},{"denom":"ASSET14","index":"0.000011563204872419"},{"denom":"ASSET15","index":"0.000008267660704848"},{"denom":"ASSET16","index":"0.000005764014475342"},{"denom":"ASSET17","index":"0.000004093597891939"},{"denom":"ASSET18","index":"0.000001950065161198"},{"denom":"ASSET2","index":"0.000003777014596322"},{"denom":"ASSET3","index":"0.000001104963641508"},{"denom":"ASSET4","index":"0.000010398442163960"},{"denom":"ASSET5","index":"0.000000857413092297"},{"denom":"ASSET6","index":"0.000003490330834180"},{"denom":"ASSET7","index":"0.000005345421006692"},{"denom":"ASSET8","index":"0.000006975385280099"},{"denom":"ASSET9","index":"0.000003012817696624"}],"last_reward_claim_height":"113"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET17","shares":"143024395.902658916235196252","reward_history":[{"denom":"ASSET0","index":"0.000003034954909236"},{"denom":"ASSET1","index":"0.000025752158165977"},{"denom":"ASSET10","index":"0.000020556858138008"},{"denom":"ASSET11","index":"0.000025591676311293"},{"denom":"ASSET12","index":"0.000024402528250789"},{"denom":"ASSET13","index":"0.000008038375291107"},{"denom":"ASSET14","index":"0.000023488313497799"},{"denom":"ASSET15","index":"0.000018516037809802"},{"denom":"ASSET16","index":"0.000011423945454084"},{"denom":"ASSET17","index":"0.000008967524527402"},{"denom":"ASSET18","index":"0.000003706330058793"},{"denom":"ASSET2","index":"0.000007798931182527"},{"denom":"ASSET3","index":"0.000002166419358500"},{"denom":"ASSET4","index":"0.000020877722621984"},{"denom":"ASSET5","index":"0.000001687498984799"},{"denom":"ASSET6","index":"0.000006810207932767"},{"denom":"ASSET7","index":"0.000010698180555138"},{"denom":"ASSET8","index":"0.000014612921845389"},{"denom":"ASSET9","index":"0.000006203015740356"}],"last_reward_claim_height":"170"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET2","shares":"335508401.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004821253659137"},{"denom":"ASSET1","index":"0.000039465245308483"},{"denom":"ASSET10","index":"0.000034111324062195"},{"denom":"ASSET11","index":"0.000040998472045794"},{"denom":"ASSET12","index":"0.000038982930565630"},{"denom":"ASSET13","index":"0.000013222547274006"},{"denom":"ASSET14","index":"0.000037843785812280"},{"denom":"ASSET15","index":"0.000030636082555583"},{"denom":"ASSET16","index":"0.000017514751416713"},{"denom":"ASSET17","index":"0.000014158801787082"},{"denom":"ASSET18","index":"0.000005900797517651"},{"denom":"ASSET2","index":"0.000011904810892779"},{"denom":"ASSET3","index":"0.000003424400341174"},{"denom":"ASSET4","index":"0.000032355527586641"},{"denom":"ASSET5","index":"0.000002690071214205"},{"denom":"ASSET6","index":"0.000010986782185203"},{"denom":"ASSET7","index":"0.000016956775142402"},{"denom":"ASSET8","index":"0.000024404677863493"},{"denom":"ASSET9","index":"0.000009788399575506"}],"last_reward_claim_height":"186"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET8","shares":"353137367.812649858865442924","reward_history":[{"denom":"ASSET0","index":"0.000001658482037183"},{"denom":"ASSET1","index":"0.000013862588923046"},{"denom":"ASSET10","index":"0.000009655943522610"},{"denom":"ASSET11","index":"0.000013408077810815"},{"denom":"ASSET12","index":"0.000012073555821711"},{"denom":"ASSET13","index":"0.000004153457929856"},{"denom":"ASSET14","index":"0.000012528066933942"},{"denom":"ASSET15","index":"0.000008954835955871"},{"denom":"ASSET16","index":"0.000006242274956279"},{"denom":"ASSET17","index":"0.000004433900956551"},{"denom":"ASSET18","index":"0.000002112993149414"},{"denom":"ASSET2","index":"0.000004090600010079"},{"denom":"ASSET3","index":"0.000001194300475756"},{"denom":"ASSET4","index":"0.000011266073313811"},{"denom":"ASSET5","index":"0.000000928363122855"},{"denom":"ASSET6","index":"0.000003781145635794"},{"denom":"ASSET7","index":"0.000005787763844048"},{"denom":"ASSET8","index":"0.000007557456046990"},{"denom":"ASSET9","index":"0.000003263776603787"}],"last_reward_claim_height":"103"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET11","shares":"2989305.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004821253659137"},{"denom":"ASSET1","index":"0.000039465245308483"},{"denom":"ASSET10","index":"0.000034111324062195"},{"denom":"ASSET11","index":"0.000040998472045794"},{"denom":"ASSET12","index":"0.000038982930565630"},{"denom":"ASSET13","index":"0.000013222547274006"},{"denom":"ASSET14","index":"0.000037843785812280"},{"denom":"ASSET15","index":"0.000030636082555583"},{"denom":"ASSET16","index":"0.000017514751416713"},{"denom":"ASSET17","index":"0.000014158801787082"},{"denom":"ASSET18","index":"0.000005900797517651"},{"denom":"ASSET2","index":"0.000011904810892779"},{"denom":"ASSET3","index":"0.000003424400341174"},{"denom":"ASSET4","index":"0.000032355527586641"},{"denom":"ASSET5","index":"0.000002690071214205"},{"denom":"ASSET6","index":"0.000010986782185203"},{"denom":"ASSET7","index":"0.000016956775142402"},{"denom":"ASSET8","index":"0.000024404677863493"},{"denom":"ASSET9","index":"0.000009788399575506"}],"last_reward_claim_height":"192"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET16","shares":"1000071482.056014967000000000","reward_history":[{"denom":"ASSET0","index":"0.000003188277912377"},{"denom":"ASSET1","index":"0.000027072180177666"},{"denom":"ASSET10","index":"0.000021525590492702"},{"denom":"ASSET11","index":"0.000026879695640981"},{"denom":"ASSET12","index":"0.000025588321740665"},{"denom":"ASSET13","index":"0.000008437670891103"},{"denom":"ASSET14","index":"0.000024686413843557"},{"denom":"ASSET15","index":"0.000019403734038796"},{"denom":"ASSET16","index":"0.000012012351193227"},{"denom":"ASSET17","index":"0.000009402991763462"},{"denom":"ASSET18","index":"0.000003903246578743"},{"denom":"ASSET2","index":"0.000008191237466303"},{"denom":"ASSET3","index":"0.000002276140738265"},{"denom":"ASSET4","index":"0.000021950324608304"},{"denom":"ASSET5","index":"0.000001774065663090"},{"denom":"ASSET6","index":"0.000007165524818145"},{"denom":"ASSET7","index":"0.000011244820309610"},{"denom":"ASSET8","index":"0.000015343724796373"},{"denom":"ASSET9","index":"0.000006516357987660"}],"last_reward_claim_height":"166"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET3","shares":"255979224.186206453866532050","reward_history":[{"denom":"ASSET0","index":"0.000001453411320498"},{"denom":"ASSET1","index":"0.000012118137400313"},{"denom":"ASSET10","index":"0.000008442891188019"},{"denom":"ASSET11","index":"0.000011723343510399"},{"denom":"ASSET12","index":"0.000010556870017106"},{"denom":"ASSET13","index":"0.000003632917795231"},{"denom":"ASSET14","index":"0.000010951256903010"},{"denom":"ASSET15","index":"0.000007829943148627"},{"denom":"ASSET16","index":"0.000005459144789091"},{"denom":"ASSET17","index":"0.000003877120201363"},{"denom":"ASSET18","index":"0.000001846984198382"},{"denom":"ASSET2","index":"0.000003577158245830"},{"denom":"ASSET3","index":"0.000001046407310278"},{"denom":"ASSET4","index":"0.000009848276035312"},{"denom":"ASSET5","index":"0.000000811973000390"},{"denom":"ASSET6","index":"0.000003305686571013"},{"denom":"ASSET7","index":"0.000005062722883136"},{"denom":"ASSET8","index":"0.000006606082089893"},{"denom":"ASSET9","index":"0.000002853098111648"}],"last_reward_claim_height":"102"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET5","shares":"118217332.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001453411320498"},{"denom":"ASSET1","index":"0.000012118137400313"},{"denom":"ASSET10","index":"0.000008442891188019"},{"denom":"ASSET11","index":"0.000011723343510399"},{"denom":"ASSET12","index":"0.000010556870017106"},{"denom":"ASSET13","index":"0.000003632917795231"},{"denom":"ASSET14","index":"0.000010951256903010"},{"denom":"ASSET15","index":"0.000007829943148627"},{"denom":"ASSET16","index":"0.000005459144789091"},{"denom":"ASSET17","index":"0.000003877120201363"},{"denom":"ASSET18","index":"0.000001846984198382"},{"denom":"ASSET2","index":"0.000003577158245830"},{"denom":"ASSET3","index":"0.000001046407310278"},{"denom":"ASSET4","index":"0.000009848276035312"},{"denom":"ASSET5","index":"0.000000811973000390"},{"denom":"ASSET6","index":"0.000003305686571013"},{"denom":"ASSET7","index":"0.000005062722883136"},{"denom":"ASSET8","index":"0.000006606082089893"},{"denom":"ASSET9","index":"0.000002853098111648"}],"last_reward_claim_height":"75"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET12","shares":"970021960.000000000000000000","reward_history":[],"last_reward_claim_height":"6"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET13","shares":"320142139.000000000000000000","reward_history":[],"last_reward_claim_height":"33"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET8","shares":"522404203.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003433377044021"},{"denom":"ASSET1","index":"0.000029119719093870"},{"denom":"ASSET10","index":"0.000023168779363922"},{"denom":"ASSET11","index":"0.000028918871222836"},{"denom":"ASSET12","index":"0.000027536680421684"},{"denom":"ASSET13","index":"0.000009079853140421"},{"denom":"ASSET14","index":"0.000026553415276013"},{"denom":"ASSET15","index":"0.000020883272198610"},{"denom":"ASSET16","index":"0.000012920460029656"},{"denom":"ASSET17","index":"0.000010116347697920"},{"denom":"ASSET18","index":"0.000004196183907349"},{"denom":"ASSET2","index":"0.000008810148159861"},{"denom":"ASSET3","index":"0.000002451192479374"},{"denom":"ASSET4","index":"0.000023608026429735"},{"denom":"ASSET5","index":"0.000001908186346512"},{"denom":"ASSET6","index":"0.000007706415634871"},{"denom":"ASSET7","index":"0.000012098308533034"},{"denom":"ASSET8","index":"0.000016505861275643"},{"denom":"ASSET9","index":"0.000007009790471677"}],"last_reward_claim_height":"128"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET0","shares":"1000020810.883011177000000000","reward_history":[{"denom":"ASSET0","index":"0.000003118409098775"},{"denom":"ASSET1","index":"0.000026454243753489"},{"denom":"ASSET10","index":"0.000021084585905412"},{"denom":"ASSET11","index":"0.000026280950742513"},{"denom":"ASSET12","index":"0.000025043390497745"},{"denom":"ASSET13","index":"0.000008253298424938"},{"denom":"ASSET14","index":"0.000024125697910719"},{"denom":"ASSET15","index":"0.000018997425080839"},{"denom":"ASSET16","index":"0.000011737294217995"},{"denom":"ASSET17","index":"0.000009202973625129"},{"denom":"ASSET18","index":"0.000003809493270778"},{"denom":"ASSET2","index":"0.000008008868325931"},{"denom":"ASSET3","index":"0.000002225819587877"},{"denom":"ASSET4","index":"0.000021447702379813"},{"denom":"ASSET5","index":"0.000001733713847172"},{"denom":"ASSET6","index":"0.000006998355968525"},{"denom":"ASSET7","index":"0.000010990481127196"},{"denom":"ASSET8","index":"0.000015003824321723"},{"denom":"ASSET9","index":"0.000006370091157596"}],"last_reward_claim_height":"156"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET11","shares":"11359030.809426280889590430","reward_history":[{"denom":"ASSET0","index":"0.000003118409098775"},{"denom":"ASSET1","index":"0.000026454243753489"},{"denom":"ASSET10","index":"0.000021084585905412"},{"denom":"ASSET11","index":"0.000026280950742513"},{"denom":"ASSET12","index":"0.000025043390497745"},{"denom":"ASSET13","index":"0.000008253298424938"},{"denom":"ASSET14","index":"0.000024125697910719"},{"denom":"ASSET15","index":"0.000018997425080839"},{"denom":"ASSET16","index":"0.000011737294217995"},{"denom":"ASSET17","index":"0.000009202973625129"},{"denom":"ASSET18","index":"0.000003809493270778"},{"denom":"ASSET2","index":"0.000008008868325931"},{"denom":"ASSET3","index":"0.000002225819587877"},{"denom":"ASSET4","index":"0.000021447702379813"},{"denom":"ASSET5","index":"0.000001733713847172"},{"denom":"ASSET6","index":"0.000006998355968525"},{"denom":"ASSET7","index":"0.000010990481127196"},{"denom":"ASSET8","index":"0.000015003824321723"},{"denom":"ASSET9","index":"0.000006370091157596"}],"last_reward_claim_height":"154"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET1","shares":"61118689.558550291351716992","reward_history":[{"denom":"ASSET0","index":"0.000001536288093705"},{"denom":"ASSET1","index":"0.000012808796131863"},{"denom":"ASSET10","index":"0.000008924322337818"},{"denom":"ASSET11","index":"0.000012391382492026"},{"denom":"ASSET12","index":"0.000011158327625467"},{"denom":"ASSET13","index":"0.000003840018305497"},{"denom":"ASSET14","index":"0.000011575273312793"},{"denom":"ASSET15","index":"0.000008276208110044"},{"denom":"ASSET16","index":"0.000005770322413488"},{"denom":"ASSET17","index":"0.000004097860139074"},{"denom":"ASSET18","index":"0.000001951829923499"},{"denom":"ASSET2","index":"0.000003781056289108"},{"denom":"ASSET3","index":"0.000001105771783560"},{"denom":"ASSET4","index":"0.000010409603607822"},{"denom":"ASSET5","index":"0.000000858224905226"},{"denom":"ASSET6","index":"0.000003494201399847"},{"denom":"ASSET7","index":"0.000005351036963607"},{"denom":"ASSET8","index":"0.000006982787369562"},{"denom":"ASSET9","index":"0.000003015953933577"}],"last_reward_claim_height":"81"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET7","shares":"1000126160.948422642000000000","reward_history":[{"denom":"ASSET0","index":"0.000004714671796454"},{"denom":"ASSET1","index":"0.000038568145744730"},{"denom":"ASSET10","index":"0.000033500773571076"},{"denom":"ASSET11","index":"0.000040121424280653"},{"denom":"ASSET12","index":"0.000038218267623062"},{"denom":"ASSET13","index":"0.000012949849225638"},{"denom":"ASSET14","index":"0.000037011089008137"},{"denom":"ASSET15","index":"0.000030061724223790"},{"denom":"ASSET16","index":"0.000017110510604031"},{"denom":"ASSET17","index":"0.000013880569662043"},{"denom":"ASSET18","index":"0.000005756826392189"},{"denom":"ASSET2","index":"0.000011645339118027"},{"denom":"ASSET3","index":"0.000003347417714105"},{"denom":"ASSET4","index":"0.000031620361618036"},{"denom":"ASSET5","index":"0.000002628856606191"},{"denom":"ASSET6","index":"0.000010731547733214"},{"denom":"ASSET7","index":"0.000016577030461508"},{"denom":"ASSET8","index":"0.000023899020763797"},{"denom":"ASSET9","index":"0.000009576047863311"}],"last_reward_claim_height":"185"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET12","shares":"151621922.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001536288093705"},{"denom":"ASSET1","index":"0.000012808796131863"},{"denom":"ASSET10","index":"0.000008924322337818"},{"denom":"ASSET11","index":"0.000012391382492026"},{"denom":"ASSET12","index":"0.000011158327625467"},{"denom":"ASSET13","index":"0.000003840018305497"},{"denom":"ASSET14","index":"0.000011575273312793"},{"denom":"ASSET15","index":"0.000008276208110044"},{"denom":"ASSET16","index":"0.000005770322413488"},{"denom":"ASSET17","index":"0.000004097860139074"},{"denom":"ASSET18","index":"0.000001951829923499"},{"denom":"ASSET2","index":"0.000003781056289108"},{"denom":"ASSET3","index":"0.000001105771783560"},{"denom":"ASSET4","index":"0.000010409603607822"},{"denom":"ASSET5","index":"0.000000858224905226"},{"denom":"ASSET6","index":"0.000003494201399847"},{"denom":"ASSET7","index":"0.000005351036963607"},{"denom":"ASSET8","index":"0.000006982787369562"},{"denom":"ASSET9","index":"0.000003015953933577"}],"last_reward_claim_height":"96"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET17","shares":"117565090.950603594056122480","reward_history":[{"denom":"ASSET0","index":"0.000003103831608428"},{"denom":"ASSET1","index":"0.000026343132935309"},{"denom":"ASSET10","index":"0.000021085436521682"},{"denom":"ASSET11","index":"0.000026194005406126"},{"denom":"ASSET12","index":"0.000025005394550642"},{"denom":"ASSET13","index":"0.000008229918727938"},{"denom":"ASSET14","index":"0.000024032248358707"},{"denom":"ASSET15","index":"0.000018981699828973"},{"denom":"ASSET16","index":"0.000011682673521897"},{"denom":"ASSET17","index":"0.000009189132473525"},{"denom":"ASSET18","index":"0.000003786361913516"},{"denom":"ASSET2","index":"0.000007982150766688"},{"denom":"ASSET3","index":"0.000002214601198569"},{"denom":"ASSET4","index":"0.000021356131094847"},{"denom":"ASSET5","index":"0.000001725369734459"},{"denom":"ASSET6","index":"0.000006962131899100"},{"denom":"ASSET7","index":"0.000010942547729288"},{"denom":"ASSET8","index":"0.000014960973970884"},{"denom":"ASSET9","index":"0.000006348281537724"}],"last_reward_claim_height":"138"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET1","shares":"640650976.939555867387681722","reward_history":[],"last_reward_claim_height":"63"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET3","shares":"764853937.542126819241892830","reward_history":[{"denom":"ASSET0","index":"0.000002648545180722"},{"denom":"ASSET1","index":"0.000022528915692996"},{"denom":"ASSET10","index":"0.000018297756458480"},{"denom":"ASSET11","index":"0.000022469822082599"},{"denom":"ASSET12","index":"0.000021584227648624"},{"denom":"ASSET13","index":"0.000007070243338634"},{"denom":"ASSET14","index":"0.000020574684608302"},{"denom":"ASSET15","index":"0.000016423497937791"},{"denom":"ASSET16","index":"0.000009972839292196"},{"denom":"ASSET17","index":"0.000007932645550822"},{"denom":"ASSET18","index":"0.000003216131666673"},{"denom":"ASSET2","index":"0.000006846442901912"},{"denom":"ASSET3","index":"0.000001888119307859"},{"denom":"ASSET4","index":"0.000018258669735553"},{"denom":"ASSET5","index":"0.000001471345302008"},{"denom":"ASSET6","index":"0.000005932348598922"},{"denom":"ASSET7","index":"0.000009352074075404"},{"denom":"ASSET8","index":"0.000012853047191550"},{"denom":"ASSET9","index":"0.000005442948627063"}],"last_reward_claim_height":"132"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET7","shares":"722549549.825265963281384872","reward_history":[{"denom":"ASSET0","index":"0.000002648545180722"},{"denom":"ASSET1","index":"0.000022528915692996"},{"denom":"ASSET10","index":"0.000018297756458480"},{"denom":"ASSET11","index":"0.000022469822082599"},{"denom":"ASSET12","index":"0.000021584227648624"},{"denom":"ASSET13","index":"0.000007070243338634"},{"denom":"ASSET14","index":"0.000020574684608302"},{"denom":"ASSET15","index":"0.000016423497937791"},{"denom":"ASSET16","index":"0.000009972839292196"},{"denom":"ASSET17","index":"0.000007932645550822"},{"denom":"ASSET18","index":"0.000003216131666673"},{"denom":"ASSET2","index":"0.000006846442901912"},{"denom":"ASSET3","index":"0.000001888119307859"},{"denom":"ASSET4","index":"0.000018258669735553"},{"denom":"ASSET5","index":"0.000001471345302008"},{"denom":"ASSET6","index":"0.000005932348598922"},{"denom":"ASSET7","index":"0.000009352074075404"},{"denom":"ASSET8","index":"0.000012853047191550"},{"denom":"ASSET9","index":"0.000005442948627063"}],"last_reward_claim_height":"152"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET0","shares":"58860985.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001638829976996"},{"denom":"ASSET1","index":"0.000013663699511091"},{"denom":"ASSET10","index":"0.000009519748943981"},{"denom":"ASSET11","index":"0.000013218199388741"},{"denom":"ASSET12","index":"0.000011902774883924"},{"denom":"ASSET13","index":"0.000004095984811686"},{"denom":"ASSET14","index":"0.000012347548252404"},{"denom":"ASSET15","index":"0.000008827879259679"},{"denom":"ASSET16","index":"0.000006154878525580"},{"denom":"ASSET17","index":"0.000004371424528441"},{"denom":"ASSET18","index":"0.000002082149837736"},{"denom":"ASSET2","index":"0.000004033483978861"},{"denom":"ASSET3","index":"0.000001179521531115"},{"denom":"ASSET4","index":"0.000011104072380722"},{"denom":"ASSET5","index":"0.000000915709876282"},{"denom":"ASSET6","index":"0.000003726793845693"},{"denom":"ASSET7","index":"0.000005707924895490"},{"denom":"ASSET8","index":"0.000007448500414296"},{"denom":"ASSET9","index":"0.000003217339382778"}],"last_reward_claim_height":"116"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET16","shares":"83361205.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001638829976996"},{"denom":"ASSET1","index":"0.000013663699511091"},{"denom":"ASSET10","index":"0.000009519748943981"},{"denom":"ASSET11","index":"0.000013218199388741"},{"denom":"ASSET12","index":"0.000011902774883924"},{"denom":"ASSET13","index":"0.000004095984811686"},{"denom":"ASSET14","index":"0.000012347548252404"},{"denom":"ASSET15","index":"0.000008827879259679"},{"denom":"ASSET16","index":"0.000006154878525580"},{"denom":"ASSET17","index":"0.000004371424528441"},{"denom":"ASSET18","index":"0.000002082149837736"},{"denom":"ASSET2","index":"0.000004033483978861"},{"denom":"ASSET3","index":"0.000001179521531115"},{"denom":"ASSET4","index":"0.000011104072380722"},{"denom":"ASSET5","index":"0.000000915709876282"},{"denom":"ASSET6","index":"0.000003726793845693"},{"denom":"ASSET7","index":"0.000005707924895490"},{"denom":"ASSET8","index":"0.000007448500414296"},{"denom":"ASSET9","index":"0.000003217339382778"}],"last_reward_claim_height":"114"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET12","shares":"73168555.606501813897779824","reward_history":[{"denom":"ASSET0","index":"0.000003102345998156"},{"denom":"ASSET1","index":"0.000026324295521459"},{"denom":"ASSET10","index":"0.000021034709957123"},{"denom":"ASSET11","index":"0.000026165624152899"},{"denom":"ASSET12","index":"0.000024960753498443"},{"denom":"ASSET13","index":"0.000008219480216908"},{"denom":"ASSET14","index":"0.000024012126304297"},{"denom":"ASSET15","index":"0.000018942125813395"},{"denom":"ASSET16","index":"0.000011676379885795"},{"denom":"ASSET17","index":"0.000009172744202097"},{"denom":"ASSET18","index":"0.000003786686743681"},{"denom":"ASSET2","index":"0.000007973892542195"},{"denom":"ASSET3","index":"0.000002213622154517"},{"denom":"ASSET4","index":"0.000021341514997764"},{"denom":"ASSET5","index":"0.000001724677267981"},{"denom":"ASSET6","index":"0.000006959760131783"},{"denom":"ASSET7","index":"0.000010935767858794"},{"denom":"ASSET8","index":"0.000014942141973689"},{"denom":"ASSET9","index":"0.000006341977499472"}],"last_reward_claim_height":"129"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET7","shares":"812816356.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003144114236048"},{"denom":"ASSET1","index":"0.000026672683120621"},{"denom":"ASSET10","index":"0.000021269722635007"},{"denom":"ASSET11","index":"0.000026500587720899"},{"denom":"ASSET12","index":"0.000025258297912053"},{"denom":"ASSET13","index":"0.000008323039503604"},{"denom":"ASSET14","index":"0.000024326015412045"},{"denom":"ASSET15","index":"0.000019162234595686"},{"denom":"ASSET16","index":"0.000011833945147558"},{"denom":"ASSET17","index":"0.000009281867675434"},{"denom":"ASSET18","index":"0.000003840349431676"},{"denom":"ASSET2","index":"0.000008076055447193"},{"denom":"ASSET3","index":"0.000002244145529651"},{"denom":"ASSET4","index":"0.000021624555086447"},{"denom":"ASSET5","index":"0.000001748086313596"},{"denom":"ASSET6","index":"0.000007055400333314"},{"denom":"ASSET7","index":"0.000011081362186058"},{"denom":"ASSET8","index":"0.000015130336137492"},{"denom":"ASSET9","index":"0.000006423586371910"}],"last_reward_claim_height":"145"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET8","shares":"383278701.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001602535700795"},{"denom":"ASSET1","index":"0.000013360208994045"},{"denom":"ASSET10","index":"0.000009307956057468"},{"denom":"ASSET11","index":"0.000012924500245282"},{"denom":"ASSET12","index":"0.000011638378499862"},{"denom":"ASSET13","index":"0.000004005127453862"},{"denom":"ASSET14","index":"0.000012073279383206"},{"denom":"ASSET15","index":"0.000008632311279566"},{"denom":"ASSET16","index":"0.000006018597363935"},{"denom":"ASSET17","index":"0.000004274146638048"},{"denom":"ASSET18","index":"0.000002036090141777"},{"denom":"ASSET2","index":"0.000003943729682095"},{"denom":"ASSET3","index":"0.000001153631816872"},{"denom":"ASSET4","index":"0.000010857441929150"},{"denom":"ASSET5","index":"0.000000895384171592"},{"denom":"ASSET6","index":"0.000003644280900498"},{"denom":"ASSET7","index":"0.000005581542172809"},{"denom":"ASSET8","index":"0.000007283176031543"},{"denom":"ASSET9","index":"0.000003145827937606"}],"last_reward_claim_height":"79"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET11","shares":"542436941.263008722491679400","reward_history":[{"denom":"ASSET0","index":"0.000003144114236048"},{"denom":"ASSET1","index":"0.000026672683120621"},{"denom":"ASSET10","index":"0.000021269722635007"},{"denom":"ASSET11","index":"0.000026500587720899"},{"denom":"ASSET12","index":"0.000025258297912053"},{"denom":"ASSET13","index":"0.000008323039503604"},{"denom":"ASSET14","index":"0.000024326015412045"},{"denom":"ASSET15","index":"0.000019162234595686"},{"denom":"ASSET16","index":"0.000011833945147558"},{"denom":"ASSET17","index":"0.000009281867675434"},{"denom":"ASSET18","index":"0.000003840349431676"},{"denom":"ASSET2","index":"0.000008076055447193"},{"denom":"ASSET3","index":"0.000002244145529651"},{"denom":"ASSET4","index":"0.000021624555086447"},{"denom":"ASSET5","index":"0.000001748086313596"},{"denom":"ASSET6","index":"0.000007055400333314"},{"denom":"ASSET7","index":"0.000011081362186058"},{"denom":"ASSET8","index":"0.000015130336137492"},{"denom":"ASSET9","index":"0.000006423586371910"}],"last_reward_claim_height":"141"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET13","shares":"398853226.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001602535700795"},{"denom":"ASSET1","index":"0.000013360208994045"},{"denom":"ASSET10","index":"0.000009307956057468"},{"denom":"ASSET11","index":"0.000012924500245282"},{"denom":"ASSET12","index":"0.000011638378499862"},{"denom":"ASSET13","index":"0.000004005127453862"},{"denom":"ASSET14","index":"0.000012073279383206"},{"denom":"ASSET15","index":"0.000008632311279566"},{"denom":"ASSET16","index":"0.000006018597363935"},{"denom":"ASSET17","index":"0.000004274146638048"},{"denom":"ASSET18","index":"0.000002036090141777"},{"denom":"ASSET2","index":"0.000003943729682095"},{"denom":"ASSET3","index":"0.000001153631816872"},{"denom":"ASSET4","index":"0.000010857441929150"},{"denom":"ASSET5","index":"0.000000895384171592"},{"denom":"ASSET6","index":"0.000003644280900498"},{"denom":"ASSET7","index":"0.000005581542172809"},{"denom":"ASSET8","index":"0.000007283176031543"},{"denom":"ASSET9","index":"0.000003145827937606"}],"last_reward_claim_height":"90"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET15","shares":"992646302.844546709005953724","reward_history":[{"denom":"ASSET0","index":"0.000003144114236048"},{"denom":"ASSET1","index":"0.000026672683120621"},{"denom":"ASSET10","index":"0.000021269722635007"},{"denom":"ASSET11","index":"0.000026500587720899"},{"denom":"ASSET12","index":"0.000025258297912053"},{"denom":"ASSET13","index":"0.000008323039503604"},{"denom":"ASSET14","index":"0.000024326015412045"},{"denom":"ASSET15","index":"0.000019162234595686"},{"denom":"ASSET16","index":"0.000011833945147558"},{"denom":"ASSET17","index":"0.000009281867675434"},{"denom":"ASSET18","index":"0.000003840349431676"},{"denom":"ASSET2","index":"0.000008076055447193"},{"denom":"ASSET3","index":"0.000002244145529651"},{"denom":"ASSET4","index":"0.000021624555086447"},{"denom":"ASSET5","index":"0.000001748086313596"},{"denom":"ASSET6","index":"0.000007055400333314"},{"denom":"ASSET7","index":"0.000011081362186058"},{"denom":"ASSET8","index":"0.000015130336137492"},{"denom":"ASSET9","index":"0.000006423586371910"}],"last_reward_claim_height":"165"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET1","shares":"159585009.149936653516811600","reward_history":[{"denom":"ASSET0","index":"0.000004653412453716"},{"denom":"ASSET1","index":"0.000038080083637587"},{"denom":"ASSET10","index":"0.000032837607615689"},{"denom":"ASSET11","index":"0.000039518768800052"},{"denom":"ASSET12","index":"0.000037566035114091"},{"denom":"ASSET13","index":"0.000012739325126443"},{"denom":"ASSET14","index":"0.000036476031581181"},{"denom":"ASSET15","index":"0.000029498212713119"},{"denom":"ASSET16","index":"0.000016904055584348"},{"denom":"ASSET17","index":"0.000013645962089755"},{"denom":"ASSET18","index":"0.000005690442722400"},{"denom":"ASSET2","index":"0.000011485754888892"},{"denom":"ASSET3","index":"0.000003304888092178"},{"denom":"ASSET4","index":"0.000031211688725726"},{"denom":"ASSET5","index":"0.000002594766576713"},{"denom":"ASSET6","index":"0.000010593367608393"},{"denom":"ASSET7","index":"0.000016355252045203"},{"denom":"ASSET8","index":"0.000023502103224880"},{"denom":"ASSET9","index":"0.000009437706237723"}],"last_reward_claim_height":"197"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET7","shares":"826888189.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001633811359009"},{"denom":"ASSET1","index":"0.000013620164108551"},{"denom":"ASSET10","index":"0.000009487838038290"},{"denom":"ASSET11","index":"0.000013174776703502"},{"denom":"ASSET12","index":"0.000011864685946211"},{"denom":"ASSET13","index":"0.000004082355776036"},{"denom":"ASSET14","index":"0.000012307900729772"},{"denom":"ASSET15","index":"0.000008799117026580"},{"denom":"ASSET16","index":"0.000006135483082238"},{"denom":"ASSET17","index":"0.000004356106083529"},{"denom":"ASSET18","index":"0.000002074853521082"},{"denom":"ASSET2","index":"0.000004019349752882"},{"denom":"ASSET3","index":"0.000001175388225032"},{"denom":"ASSET4","index":"0.000011067333860098"},{"denom":"ASSET5","index":"0.000000912501024979"},{"denom":"ASSET6","index":"0.000003715182744556"},{"denom":"ASSET7","index":"0.000005690095677188"},{"denom":"ASSET8","index":"0.000007423847624648"},{"denom":"ASSET9","index":"0.000003206789316354"}],"last_reward_claim_height":"64"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET13","shares":"1002642748.999999966627463818","reward_history":[{"denom":"ASSET0","index":"0.000003109600829404"},{"denom":"ASSET1","index":"0.000026362702045617"},{"denom":"ASSET10","index":"0.000020937844947102"},{"denom":"ASSET11","index":"0.000026169598808926"},{"denom":"ASSET12","index":"0.000024901798461360"},{"denom":"ASSET13","index":"0.000008215149609138"},{"denom":"ASSET14","index":"0.000024035954930107"},{"denom":"ASSET15","index":"0.000018878331344314"},{"denom":"ASSET16","index":"0.000011701775976010"},{"denom":"ASSET17","index":"0.000009149505282332"},{"denom":"ASSET18","index":"0.000003801954966508"},{"denom":"ASSET2","index":"0.000007974718303805"},{"denom":"ASSET3","index":"0.000002219037761573"},{"denom":"ASSET4","index":"0.000021373555319687"},{"denom":"ASSET5","index":"0.000001728657323000"},{"denom":"ASSET6","index":"0.000006980294033305"},{"denom":"ASSET7","index":"0.000010954522542925"},{"denom":"ASSET8","index":"0.000014935013269095"},{"denom":"ASSET9","index":"0.000006344057182602"}],"last_reward_claim_height":"145"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET16","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003109600829404"},{"denom":"ASSET1","index":"0.000026362702045617"},{"denom":"ASSET10","index":"0.000020937844947102"},{"denom":"ASSET11","index":"0.000026169598808926"},{"denom":"ASSET12","index":"0.000024901798461360"},{"denom":"ASSET13","index":"0.000008215149609138"},{"denom":"ASSET14","index":"0.000024035954930107"},{"denom":"ASSET15","index":"0.000018878331344314"},{"denom":"ASSET16","index":"0.000011701775976010"},{"denom":"ASSET17","index":"0.000009149505282332"},{"denom":"ASSET18","index":"0.000003801954966508"},{"denom":"ASSET2","index":"0.000007974718303805"},{"denom":"ASSET3","index":"0.000002219037761573"},{"denom":"ASSET4","index":"0.000021373555319687"},{"denom":"ASSET5","index":"0.000001728657323000"},{"denom":"ASSET6","index":"0.000006980294033305"},{"denom":"ASSET7","index":"0.000010954522542925"},{"denom":"ASSET8","index":"0.000014935013269095"},{"denom":"ASSET9","index":"0.000006344057182602"}],"last_reward_claim_height":"178"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET0","shares":"830867141.719049058451157823","reward_history":[{"denom":"ASSET0","index":"0.000002920257070141"},{"denom":"ASSET1","index":"0.000024811653868653"},{"denom":"ASSET10","index":"0.000020012294768332"},{"denom":"ASSET11","index":"0.000024710629923001"},{"denom":"ASSET12","index":"0.000023666550441425"},{"denom":"ASSET13","index":"0.000007769918885884"},{"denom":"ASSET14","index":"0.000022647790193256"},{"denom":"ASSET15","index":"0.000017987461600930"},{"denom":"ASSET16","index":"0.000010993196459757"},{"denom":"ASSET17","index":"0.000008697266331114"},{"denom":"ASSET18","index":"0.000003553540715950"},{"denom":"ASSET2","index":"0.000007529733395993"},{"denom":"ASSET3","index":"0.000002082581454906"},{"denom":"ASSET4","index":"0.000020111524804667"},{"denom":"ASSET5","index":"0.000001623122955496"},{"denom":"ASSET6","index":"0.000006544727800067"},{"denom":"ASSET7","index":"0.000010303065547743"},{"denom":"ASSET8","index":"0.000014124873274804"},{"denom":"ASSET9","index":"0.000005987532811110"}],"last_reward_claim_height":"157"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET3","shares":"742519399.520577771912031080","reward_history":[],"last_reward_claim_height":"63"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET4","shares":"42334090.489323495368794758","reward_history":[{"denom":"ASSET0","index":"0.000003241945367060"},{"denom":"ASSET1","index":"0.000027480716546724"},{"denom":"ASSET10","index":"0.000021780901079221"},{"denom":"ASSET11","index":"0.000027265989011084"},{"denom":"ASSET12","index":"0.000025921947969478"},{"denom":"ASSET13","index":"0.000008556984130745"},{"denom":"ASSET14","index":"0.000025051754134356"},{"denom":"ASSET15","index":"0.000019643848931612"},{"denom":"ASSET16","index":"0.000012200322352703"},{"denom":"ASSET17","index":"0.000009524928673174"},{"denom":"ASSET18","index":"0.000003966981346299"},{"denom":"ASSET2","index":"0.000008309018225650"},{"denom":"ASSET3","index":"0.000002312540225621"},{"denom":"ASSET4","index":"0.000022282443818183"},{"denom":"ASSET5","index":"0.000001802193647755"},{"denom":"ASSET6","index":"0.000007278646216530"},{"denom":"ASSET7","index":"0.000011418356902196"},{"denom":"ASSET8","index":"0.000015557459098515"},{"denom":"ASSET9","index":"0.000006608754258977"}],"last_reward_claim_height":"151"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET3","shares":"840452688.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001520990142264"},{"denom":"ASSET1","index":"0.000012680102108631"},{"denom":"ASSET10","index":"0.000008834326429376"},{"denom":"ASSET11","index":"0.000012266893306329"},{"denom":"ASSET12","index":"0.000011046354389007"},{"denom":"ASSET13","index":"0.000003801591675587"},{"denom":"ASSET14","index":"0.000011458856247250"},{"denom":"ASSET15","index":"0.000008193128168148"},{"denom":"ASSET16","index":"0.000005712107994187"},{"denom":"ASSET17","index":"0.000004056798480773"},{"denom":"ASSET18","index":"0.000001932431584420"},{"denom":"ASSET2","index":"0.000003743268790745"},{"denom":"ASSET3","index":"0.000001095056346905"},{"denom":"ASSET4","index":"0.000010304770071444"},{"denom":"ASSET5","index":"0.000000849746758541"},{"denom":"ASSET6","index":"0.000003459077279153"},{"denom":"ASSET7","index":"0.000005297485303768"},{"denom":"ASSET8","index":"0.000006912499005837"},{"denom":"ASSET9","index":"0.000002985778231863"}],"last_reward_claim_height":"67"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET4","shares":"347672467.415366794491386361","reward_history":[{"denom":"ASSET0","index":"0.000001520990142264"},{"denom":"ASSET1","index":"0.000012680102108631"},{"denom":"ASSET10","index":"0.000008834326429376"},{"denom":"ASSET11","index":"0.000012266893306329"},{"denom":"ASSET12","index":"0.000011046354389007"},{"denom":"ASSET13","index":"0.000003801591675587"},{"denom":"ASSET14","index":"0.000011458856247250"},{"denom":"ASSET15","index":"0.000008193128168148"},{"denom":"ASSET16","index":"0.000005712107994187"},{"denom":"ASSET17","index":"0.000004056798480773"},{"denom":"ASSET18","index":"0.000001932431584420"},{"denom":"ASSET2","index":"0.000003743268790745"},{"denom":"ASSET3","index":"0.000001095056346905"},{"denom":"ASSET4","index":"0.000010304770071444"},{"denom":"ASSET5","index":"0.000000849746758541"},{"denom":"ASSET6","index":"0.000003459077279153"},{"denom":"ASSET7","index":"0.000005297485303768"},{"denom":"ASSET8","index":"0.000006912499005837"},{"denom":"ASSET9","index":"0.000002985778231863"}],"last_reward_claim_height":"121"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET7","shares":"635391288.428945068405201777","reward_history":[{"denom":"ASSET0","index":"0.000003063170165442"},{"denom":"ASSET1","index":"0.000025996358951928"},{"denom":"ASSET10","index":"0.000020799618544072"},{"denom":"ASSET11","index":"0.000025846936295403"},{"denom":"ASSET12","index":"0.000024670295822131"},{"denom":"ASSET13","index":"0.000008120644896033"},{"denom":"ASSET14","index":"0.000023715222729701"},{"denom":"ASSET15","index":"0.000018725986369791"},{"denom":"ASSET16","index":"0.000011529047312284"},{"denom":"ASSET17","index":"0.000009065966880203"},{"denom":"ASSET18","index":"0.000003737409049681"},{"denom":"ASSET2","index":"0.000007876841198043"},{"denom":"ASSET3","index":"0.000002185992003768"},{"denom":"ASSET4","index":"0.000021074917159843"},{"denom":"ASSET5","index":"0.000001702800306431"},{"denom":"ASSET6","index":"0.000006871093729972"},{"denom":"ASSET7","index":"0.000010798830402478"},{"denom":"ASSET8","index":"0.000014762015379742"},{"denom":"ASSET9","index":"0.000006264517424621"}],"last_reward_claim_height":"129"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET8","shares":"687018402.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003063170165442"},{"denom":"ASSET1","index":"0.000025996358951928"},{"denom":"ASSET10","index":"0.000020799618544072"},{"denom":"ASSET11","index":"0.000025846936295403"},{"denom":"ASSET12","index":"0.000024670295822131"},{"denom":"ASSET13","index":"0.000008120644896033"},{"denom":"ASSET14","index":"0.000023715222729701"},{"denom":"ASSET15","index":"0.000018725986369791"},{"denom":"ASSET16","index":"0.000011529047312284"},{"denom":"ASSET17","index":"0.000009065966880203"},{"denom":"ASSET18","index":"0.000003737409049681"},{"denom":"ASSET2","index":"0.000007876841198043"},{"denom":"ASSET3","index":"0.000002185992003768"},{"denom":"ASSET4","index":"0.000021074917159843"},{"denom":"ASSET5","index":"0.000001702800306431"},{"denom":"ASSET6","index":"0.000006871093729972"},{"denom":"ASSET7","index":"0.000010798830402478"},{"denom":"ASSET8","index":"0.000014762015379742"},{"denom":"ASSET9","index":"0.000006264517424621"}],"last_reward_claim_height":"132"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET9","shares":"353764945.195837890639889604","reward_history":[{"denom":"ASSET0","index":"0.000003063170165442"},{"denom":"ASSET1","index":"0.000025996358951928"},{"denom":"ASSET10","index":"0.000020799618544072"},{"denom":"ASSET11","index":"0.000025846936295403"},{"denom":"ASSET12","index":"0.000024670295822131"},{"denom":"ASSET13","index":"0.000008120644896033"},{"denom":"ASSET14","index":"0.000023715222729701"},{"denom":"ASSET15","index":"0.000018725986369791"},{"denom":"ASSET16","index":"0.000011529047312284"},{"denom":"ASSET17","index":"0.000009065966880203"},{"denom":"ASSET18","index":"0.000003737409049681"},{"denom":"ASSET2","index":"0.000007876841198043"},{"denom":"ASSET3","index":"0.000002185992003768"},{"denom":"ASSET4","index":"0.000021074917159843"},{"denom":"ASSET5","index":"0.000001702800306431"},{"denom":"ASSET6","index":"0.000006871093729972"},{"denom":"ASSET7","index":"0.000010798830402478"},{"denom":"ASSET8","index":"0.000014762015379742"},{"denom":"ASSET9","index":"0.000006264517424621"}],"last_reward_claim_height":"131"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET18","shares":"598855161.967565804592712020","reward_history":[{"denom":"ASSET0","index":"0.000001520990142264"},{"denom":"ASSET1","index":"0.000012680102108631"},{"denom":"ASSET10","index":"0.000008834326429376"},{"denom":"ASSET11","index":"0.000012266893306329"},{"denom":"ASSET12","index":"0.000011046354389007"},{"denom":"ASSET13","index":"0.000003801591675587"},{"denom":"ASSET14","index":"0.000011458856247250"},{"denom":"ASSET15","index":"0.000008193128168148"},{"denom":"ASSET16","index":"0.000005712107994187"},{"denom":"ASSET17","index":"0.000004056798480773"},{"denom":"ASSET18","index":"0.000001932431584420"},{"denom":"ASSET2","index":"0.000003743268790745"},{"denom":"ASSET3","index":"0.000001095056346905"},{"denom":"ASSET4","index":"0.000010304770071444"},{"denom":"ASSET5","index":"0.000000849746758541"},{"denom":"ASSET6","index":"0.000003459077279153"},{"denom":"ASSET7","index":"0.000005297485303768"},{"denom":"ASSET8","index":"0.000006912499005837"},{"denom":"ASSET9","index":"0.000002985778231863"}],"last_reward_claim_height":"104"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET1","shares":"113918107.000000069376127163","reward_history":[{"denom":"ASSET0","index":"0.000003051401969864"},{"denom":"ASSET1","index":"0.000025903543471827"},{"denom":"ASSET10","index":"0.000020717104247015"},{"denom":"ASSET11","index":"0.000025751820078700"},{"denom":"ASSET12","index":"0.000024575704795191"},{"denom":"ASSET13","index":"0.000008089460542782"},{"denom":"ASSET14","index":"0.000023629519286555"},{"denom":"ASSET15","index":"0.000018652475785738"},{"denom":"ASSET16","index":"0.000011487598582804"},{"denom":"ASSET17","index":"0.000009031027466449"},{"denom":"ASSET18","index":"0.000003724432134289"},{"denom":"ASSET2","index":"0.000007847588407204"},{"denom":"ASSET3","index":"0.000002177732310384"},{"denom":"ASSET4","index":"0.000021000151540181"},{"denom":"ASSET5","index":"0.000001696165098739"},{"denom":"ASSET6","index":"0.000006846477479182"},{"denom":"ASSET7","index":"0.000010760324594985"},{"denom":"ASSET8","index":"0.000014706911787677"},{"denom":"ASSET9","index":"0.000006241583848480"}],"last_reward_claim_height":"157"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET2","shares":"515260030.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001519669987195"},{"denom":"ASSET1","index":"0.000012676623405048"},{"denom":"ASSET10","index":"0.000008831600766261"},{"denom":"ASSET11","index":"0.000012262448940742"},{"denom":"ASSET12","index":"0.000011042591812037"},{"denom":"ASSET13","index":"0.000003799690110356"},{"denom":"ASSET14","index":"0.000011454705706870"},{"denom":"ASSET15","index":"0.000008189733375059"},{"denom":"ASSET16","index":"0.000005709838012905"},{"denom":"ASSET17","index":"0.000004055200725152"},{"denom":"ASSET18","index":"0.000001931783882027"},{"denom":"ASSET2","index":"0.000003741994165079"},{"denom":"ASSET3","index":"0.000001094162390780"},{"denom":"ASSET4","index":"0.000010301817086076"},{"denom":"ASSET5","index":"0.000000848954623355"},{"denom":"ASSET6","index":"0.000003457635577645"},{"denom":"ASSET7","index":"0.000005295663548598"},{"denom":"ASSET8","index":"0.000006910119731604"},{"denom":"ASSET9","index":"0.000002984734883325"}],"last_reward_claim_height":"106"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET5","shares":"16968322.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003051401969864"},{"denom":"ASSET1","index":"0.000025903543471827"},{"denom":"ASSET10","index":"0.000020717104247015"},{"denom":"ASSET11","index":"0.000025751820078700"},{"denom":"ASSET12","index":"0.000024575704795191"},{"denom":"ASSET13","index":"0.000008089460542782"},{"denom":"ASSET14","index":"0.000023629519286555"},{"denom":"ASSET15","index":"0.000018652475785738"},{"denom":"ASSET16","index":"0.000011487598582804"},{"denom":"ASSET17","index":"0.000009031027466449"},{"denom":"ASSET18","index":"0.000003724432134289"},{"denom":"ASSET2","index":"0.000007847588407204"},{"denom":"ASSET3","index":"0.000002177732310384"},{"denom":"ASSET4","index":"0.000021000151540181"},{"denom":"ASSET5","index":"0.000001696165098739"},{"denom":"ASSET6","index":"0.000006846477479182"},{"denom":"ASSET7","index":"0.000010760324594985"},{"denom":"ASSET8","index":"0.000014706911787677"},{"denom":"ASSET9","index":"0.000006241583848480"}],"last_reward_claim_height":"136"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET6","shares":"94090528.670657138683509766","reward_history":[{"denom":"ASSET0","index":"0.000004516845811362"},{"denom":"ASSET1","index":"0.000037025353808540"},{"denom":"ASSET10","index":"0.000032012148214198"},{"denom":"ASSET11","index":"0.000038422522164271"},{"denom":"ASSET12","index":"0.000036596428665624"},{"denom":"ASSET13","index":"0.000012383682813544"},{"denom":"ASSET14","index":"0.000035437222127650"},{"denom":"ASSET15","index":"0.000028732771734380"},{"denom":"ASSET16","index":"0.000016425461252955"},{"denom":"ASSET17","index":"0.000013299194272465"},{"denom":"ASSET18","index":"0.000005516977688606"},{"denom":"ASSET2","index":"0.000011180223188506"},{"denom":"ASSET3","index":"0.000003208331571332"},{"denom":"ASSET4","index":"0.000030338218844450"},{"denom":"ASSET5","index":"0.000002517968540848"},{"denom":"ASSET6","index":"0.000010275940001092"},{"denom":"ASSET7","index":"0.000015886561233229"},{"denom":"ASSET8","index":"0.000022838329393529"},{"denom":"ASSET9","index":"0.000009178105145475"}],"last_reward_claim_height":"193"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET8","shares":"695025013.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003051401969864"},{"denom":"ASSET1","index":"0.000025903543471827"},{"denom":"ASSET10","index":"0.000020717104247015"},{"denom":"ASSET11","index":"0.000025751820078700"},{"denom":"ASSET12","index":"0.000024575704795191"},{"denom":"ASSET13","index":"0.000008089460542782"},{"denom":"ASSET14","index":"0.000023629519286555"},{"denom":"ASSET15","index":"0.000018652475785738"},{"denom":"ASSET16","index":"0.000011487598582804"},{"denom":"ASSET17","index":"0.000009031027466449"},{"denom":"ASSET18","index":"0.000003724432134289"},{"denom":"ASSET2","index":"0.000007847588407204"},{"denom":"ASSET3","index":"0.000002177732310384"},{"denom":"ASSET4","index":"0.000021000151540181"},{"denom":"ASSET5","index":"0.000001696165098739"},{"denom":"ASSET6","index":"0.000006846477479182"},{"denom":"ASSET7","index":"0.000010760324594985"},{"denom":"ASSET8","index":"0.000014706911787677"},{"denom":"ASSET9","index":"0.000006241583848480"}],"last_reward_claim_height":"183"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET10","shares":"1000080135.054992046000000000","reward_history":[{"denom":"ASSET0","index":"0.000003051401969864"},{"denom":"ASSET1","index":"0.000025903543471827"},{"denom":"ASSET10","index":"0.000020717104247015"},{"denom":"ASSET11","index":"0.000025751820078700"},{"denom":"ASSET12","index":"0.000024575704795191"},{"denom":"ASSET13","index":"0.000008089460542782"},{"denom":"ASSET14","index":"0.000023629519286555"},{"denom":"ASSET15","index":"0.000018652475785738"},{"denom":"ASSET16","index":"0.000011487598582804"},{"denom":"ASSET17","index":"0.000009031027466449"},{"denom":"ASSET18","index":"0.000003724432134289"},{"denom":"ASSET2","index":"0.000007847588407204"},{"denom":"ASSET3","index":"0.000002177732310384"},{"denom":"ASSET4","index":"0.000021000151540181"},{"denom":"ASSET5","index":"0.000001696165098739"},{"denom":"ASSET6","index":"0.000006846477479182"},{"denom":"ASSET7","index":"0.000010760324594985"},{"denom":"ASSET8","index":"0.000014706911787677"},{"denom":"ASSET9","index":"0.000006241583848480"}],"last_reward_claim_height":"178"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET11","shares":"152333297.000000000000000000","reward_history":[],"last_reward_claim_height":"34"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET13","shares":"190125823.000000000000000000","reward_history":[],"last_reward_claim_height":"56"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET0","shares":"821843370.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001392192847149"},{"denom":"ASSET1","index":"0.000011611450847386"},{"denom":"ASSET10","index":"0.000008088781067478"},{"denom":"ASSET11","index":"0.000011231761889073"},{"denom":"ASSET12","index":"0.000010115195100551"},{"denom":"ASSET13","index":"0.000003480482117873"},{"denom":"ASSET14","index":"0.000010492071548062"},{"denom":"ASSET15","index":"0.000007502372565194"},{"denom":"ASSET16","index":"0.000005229863836918"},{"denom":"ASSET17","index":"0.000003713920514466"},{"denom":"ASSET18","index":"0.000001769069294661"},{"denom":"ASSET2","index":"0.000003427044412629"},{"denom":"ASSET3","index":"0.000001002660101028"},{"denom":"ASSET4","index":"0.000009435973741790"},{"denom":"ASSET5","index":"0.000000777659236842"},{"denom":"ASSET6","index":"0.000003166887163415"},{"denom":"ASSET7","index":"0.000004850174878604"},{"denom":"ASSET8","index":"0.000006329555560626"},{"denom":"ASSET9","index":"0.000002733760499857"}],"last_reward_claim_height":"68"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET10","shares":"649456270.000000000000000000","reward_history":[],"last_reward_claim_height":"10"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET13","shares":"693918954.526341712241914577","reward_history":[{"denom":"ASSET0","index":"0.000002834261839987"},{"denom":"ASSET1","index":"0.000024063735726127"},{"denom":"ASSET10","index":"0.000019278012414561"},{"denom":"ASSET11","index":"0.000023930766794440"},{"denom":"ASSET12","index":"0.000022855511266190"},{"denom":"ASSET13","index":"0.000007519422832827"},{"denom":"ASSET14","index":"0.000021953268691937"},{"denom":"ASSET15","index":"0.000017352048046781"},{"denom":"ASSET16","index":"0.000010669562284438"},{"denom":"ASSET17","index":"0.000008398158415340"},{"denom":"ASSET18","index":"0.000003456710779118"},{"denom":"ASSET2","index":"0.000007292324829772"},{"denom":"ASSET3","index":"0.000002022818722752"},{"denom":"ASSET4","index":"0.000019507505991506"},{"denom":"ASSET5","index":"0.000001575196067099"},{"denom":"ASSET6","index":"0.000006357416996111"},{"denom":"ASSET7","index":"0.000009994574317511"},{"denom":"ASSET8","index":"0.000013669954492341"},{"denom":"ASSET9","index":"0.000005799591528398"}],"last_reward_claim_height":"141"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET16","shares":"1000035740.390581398000000000","reward_history":[{"denom":"ASSET0","index":"0.000001392192847149"},{"denom":"ASSET1","index":"0.000011611450847386"},{"denom":"ASSET10","index":"0.000008088781067478"},{"denom":"ASSET11","index":"0.000011231761889073"},{"denom":"ASSET12","index":"0.000010115195100551"},{"denom":"ASSET13","index":"0.000003480482117873"},{"denom":"ASSET14","index":"0.000010492071548062"},{"denom":"ASSET15","index":"0.000007502372565194"},{"denom":"ASSET16","index":"0.000005229863836918"},{"denom":"ASSET17","index":"0.000003713920514466"},{"denom":"ASSET18","index":"0.000001769069294661"},{"denom":"ASSET2","index":"0.000003427044412629"},{"denom":"ASSET3","index":"0.000001002660101028"},{"denom":"ASSET4","index":"0.000009435973741790"},{"denom":"ASSET5","index":"0.000000777659236842"},{"denom":"ASSET6","index":"0.000003166887163415"},{"denom":"ASSET7","index":"0.000004850174878604"},{"denom":"ASSET8","index":"0.000006329555560626"},{"denom":"ASSET9","index":"0.000002733760499857"}],"last_reward_claim_height":"92"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET5","shares":"848582573.000000331795786043","reward_history":[{"denom":"ASSET0","index":"0.000002875427361068"},{"denom":"ASSET1","index":"0.000024372739255487"},{"denom":"ASSET10","index":"0.000019284464921318"},{"denom":"ASSET11","index":"0.000024174413552556"},{"denom":"ASSET12","index":"0.000022964657814992"},{"denom":"ASSET13","index":"0.000007586106071195"},{"denom":"ASSET14","index":"0.000022214775035212"},{"denom":"ASSET15","index":"0.000017399266119679"},{"denom":"ASSET16","index":"0.000010822432031544"},{"denom":"ASSET17","index":"0.000008437405253940"},{"denom":"ASSET18","index":"0.000003520101477575"},{"denom":"ASSET2","index":"0.000007366931162610"},{"denom":"ASSET3","index":"0.000002051556015935"},{"denom":"ASSET4","index":"0.000019761188522524"},{"denom":"ASSET5","index":"0.000001598363223465"},{"denom":"ASSET6","index":"0.000006458982880806"},{"denom":"ASSET7","index":"0.000010127316932433"},{"denom":"ASSET8","index":"0.000013792105044122"},{"denom":"ASSET9","index":"0.000005859963066840"}],"last_reward_claim_height":"167"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET13","shares":"10280460.432393058599713514","reward_history":[{"denom":"ASSET0","index":"0.000001553840185331"},{"denom":"ASSET1","index":"0.000012958259817171"},{"denom":"ASSET10","index":"0.000009028099224953"},{"denom":"ASSET11","index":"0.000012533831248030"},{"denom":"ASSET12","index":"0.000011286922457332"},{"denom":"ASSET13","index":"0.000003884600463327"},{"denom":"ASSET14","index":"0.000011708953124953"},{"denom":"ASSET15","index":"0.000008371074208317"},{"denom":"ASSET16","index":"0.000005836492301072"},{"denom":"ASSET17","index":"0.000004143573827548"},{"denom":"ASSET18","index":"0.000001973472951431"},{"denom":"ASSET2","index":"0.000003824652925312"},{"denom":"ASSET3","index":"0.000001117422108587"},{"denom":"ASSET4","index":"0.000010529185576831"},{"denom":"ASSET5","index":"0.000000868040350447"},{"denom":"ASSET6","index":"0.000003534506841323"},{"denom":"ASSET7","index":"0.000005412063731931"},{"denom":"ASSET8","index":"0.000007064217879605"},{"denom":"ASSET9","index":"0.000003050130734168"}],"last_reward_claim_height":"66"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET15","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"18"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET15","shares":"6674533.223950642480704992","reward_history":[{"denom":"ASSET0","index":"0.000002995432004660"},{"denom":"ASSET1","index":"0.000025434255671185"},{"denom":"ASSET10","index":"0.000020381248485322"},{"denom":"ASSET11","index":"0.000025297016742096"},{"denom":"ASSET12","index":"0.000024161457271020"},{"denom":"ASSET13","index":"0.000007948725545453"},{"denom":"ASSET14","index":"0.000023205881885085"},{"denom":"ASSET15","index":"0.000018343715148864"},{"denom":"ASSET16","index":"0.000011277889207663"},{"denom":"ASSET17","index":"0.000008877556775335"},{"denom":"ASSET18","index":"0.000003654253802028"},{"denom":"ASSET2","index":"0.000007709102798424"},{"denom":"ASSET3","index":"0.000002137627884226"},{"denom":"ASSET4","index":"0.000020618696770430"},{"denom":"ASSET5","index":"0.000001664440090804"},{"denom":"ASSET6","index":"0.000006720260763181"},{"denom":"ASSET7","index":"0.000010565171316359"},{"denom":"ASSET8","index":"0.000014449121165534"},{"denom":"ASSET9","index":"0.000006129217088192"}],"last_reward_claim_height":"162"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET18","shares":"61819000.000000000000000000","reward_history":[],"last_reward_claim_height":"19"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET0","shares":"92913190.000000001121077102","reward_history":[{"denom":"ASSET0","index":"0.000002968383248598"},{"denom":"ASSET1","index":"0.000025185581850199"},{"denom":"ASSET10","index":"0.000020091193699906"},{"denom":"ASSET11","index":"0.000025026167595767"},{"denom":"ASSET12","index":"0.000023854952987524"},{"denom":"ASSET13","index":"0.000007859725566891"},{"denom":"ASSET14","index":"0.000022971118914045"},{"denom":"ASSET15","index":"0.000018098517255117"},{"denom":"ASSET16","index":"0.000011173004258039"},{"denom":"ASSET17","index":"0.000008766603022733"},{"denom":"ASSET18","index":"0.000003624559740525"},{"denom":"ASSET2","index":"0.000007626317523237"},{"denom":"ASSET3","index":"0.000002117313008939"},{"denom":"ASSET4","index":"0.000020418576076670"},{"denom":"ASSET5","index":"0.000001649450966157"},{"denom":"ASSET6","index":"0.000006660362585584"},{"denom":"ASSET7","index":"0.000010463779822658"},{"denom":"ASSET8","index":"0.000014287735496216"},{"denom":"ASSET9","index":"0.000006065360072421"}],"last_reward_claim_height":"172"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET15","shares":"418796780.092867354908770976","reward_history":[{"denom":"ASSET0","index":"0.000004536084454421"},{"denom":"ASSET1","index":"0.000037083372659795"},{"denom":"ASSET10","index":"0.000032174135024714"},{"denom":"ASSET11","index":"0.000038580962006149"},{"denom":"ASSET12","index":"0.000036714497862249"},{"denom":"ASSET13","index":"0.000012453422061734"},{"denom":"ASSET14","index":"0.000035602966059204"},{"denom":"ASSET15","index":"0.000028882132110798"},{"denom":"ASSET16","index":"0.000016455404563254"},{"denom":"ASSET17","index":"0.000013332246409211"},{"denom":"ASSET18","index":"0.000005541989697304"},{"denom":"ASSET2","index":"0.000011191400044680"},{"denom":"ASSET3","index":"0.000003219800167701"},{"denom":"ASSET4","index":"0.000030407820413803"},{"denom":"ASSET5","index":"0.000002528915913414"},{"denom":"ASSET6","index":"0.000010328774056173"},{"denom":"ASSET7","index":"0.000015947694956299"},{"denom":"ASSET8","index":"0.000022986536848538"},{"denom":"ASSET9","index":"0.000009206840657546"}],"last_reward_claim_height":"199"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET17","shares":"142225849.999999999370772860","reward_history":[],"last_reward_claim_height":"32"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET8","shares":"381703843.171909969268134274","reward_history":[{"denom":"ASSET0","index":"0.000003259379166935"},{"denom":"ASSET1","index":"0.000027669546155668"},{"denom":"ASSET10","index":"0.000022163157427920"},{"denom":"ASSET11","index":"0.000027516665793422"},{"denom":"ASSET12","index":"0.000026276569409586"},{"denom":"ASSET13","index":"0.000008645229164029"},{"denom":"ASSET14","index":"0.000025243382728696"},{"denom":"ASSET15","index":"0.000019947981783747"},{"denom":"ASSET16","index":"0.000012268920188963"},{"denom":"ASSET17","index":"0.000009656339783182"},{"denom":"ASSET18","index":"0.000003975233530089"},{"denom":"ASSET2","index":"0.000008385350610200"},{"denom":"ASSET3","index":"0.000002325230588439"},{"denom":"ASSET4","index":"0.000022430515898086"},{"denom":"ASSET5","index":"0.000001812256369527"},{"denom":"ASSET6","index":"0.000007311001085881"},{"denom":"ASSET7","index":"0.000011492885803011"},{"denom":"ASSET8","index":"0.000015716897251793"},{"denom":"ASSET9","index":"0.000006668589151432"}],"last_reward_claim_height":"168"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET11","shares":"19993559.190573718658363840","reward_history":[{"denom":"ASSET0","index":"0.000003259379166935"},{"denom":"ASSET1","index":"0.000027669546155668"},{"denom":"ASSET10","index":"0.000022163157427920"},{"denom":"ASSET11","index":"0.000027516665793422"},{"denom":"ASSET12","index":"0.000026276569409586"},{"denom":"ASSET13","index":"0.000008645229164029"},{"denom":"ASSET14","index":"0.000025243382728696"},{"denom":"ASSET15","index":"0.000019947981783747"},{"denom":"ASSET16","index":"0.000012268920188963"},{"denom":"ASSET17","index":"0.000009656339783182"},{"denom":"ASSET18","index":"0.000003975233530089"},{"denom":"ASSET2","index":"0.000008385350610200"},{"denom":"ASSET3","index":"0.000002325230588439"},{"denom":"ASSET4","index":"0.000022430515898086"},{"denom":"ASSET5","index":"0.000001812256369527"},{"denom":"ASSET6","index":"0.000007311001085881"},{"denom":"ASSET7","index":"0.000011492885803011"},{"denom":"ASSET8","index":"0.000015716897251793"},{"denom":"ASSET9","index":"0.000006668589151432"}],"last_reward_claim_height":"154"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET16","shares":"45583914.999999998131059485","reward_history":[],"last_reward_claim_height":"20"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET6","shares":"663766484.341723055545495282","reward_history":[{"denom":"ASSET0","index":"0.000004957951068368"},{"denom":"ASSET1","index":"0.000040595109338701"},{"denom":"ASSET10","index":"0.000035126657560304"},{"denom":"ASSET11","index":"0.000042160091199159"},{"denom":"ASSET12","index":"0.000040137526814401"},{"denom":"ASSET13","index":"0.000013595617987355"},{"denom":"ASSET14","index":"0.000038893564212609"},{"denom":"ASSET15","index":"0.000031532808724594"},{"denom":"ASSET16","index":"0.000018012834416697"},{"denom":"ASSET17","index":"0.000014582632247249"},{"denom":"ASSET18","index":"0.000006056854468943"},{"denom":"ASSET2","index":"0.000012255281913400"},{"denom":"ASSET3","index":"0.000003521316365957"},{"denom":"ASSET4","index":"0.000033271654612923"},{"denom":"ASSET5","index":"0.000002764577024642"},{"denom":"ASSET6","index":"0.000011282334844705"},{"denom":"ASSET7","index":"0.000017431884448199"},{"denom":"ASSET8","index":"0.000025080164686627"},{"denom":"ASSET9","index":"0.000010067506697452"}],"last_reward_claim_height":"191"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET6","shares":"429080344.373475862786374552","reward_history":[{"denom":"ASSET0","index":"0.000002933404194828"},{"denom":"ASSET1","index":"0.000024932632498194"},{"denom":"ASSET10","index":"0.000020157113753706"},{"denom":"ASSET11","index":"0.000024842878528839"},{"denom":"ASSET12","index":"0.000023817726072485"},{"denom":"ASSET13","index":"0.000007813243799971"},{"denom":"ASSET14","index":"0.000022761898108549"},{"denom":"ASSET15","index":"0.000018109267957138"},{"denom":"ASSET16","index":"0.000011043189892304"},{"denom":"ASSET17","index":"0.000008753164046701"},{"denom":"ASSET18","index":"0.000003567063844603"},{"denom":"ASSET2","index":"0.000007569762146700"},{"denom":"ASSET3","index":"0.000002091389836038"},{"denom":"ASSET4","index":"0.000020208488830330"},{"denom":"ASSET5","index":"0.000001630166870108"},{"denom":"ASSET6","index":"0.000006572642272968"},{"denom":"ASSET7","index":"0.000010351822041320"},{"denom":"ASSET8","index":"0.000014203644477234"},{"denom":"ASSET9","index":"0.000006019030096188"}],"last_reward_claim_height":"176"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET9","shares":"73541928.975973901758261710","reward_history":[{"denom":"ASSET0","index":"0.000001334597814253"},{"denom":"ASSET1","index":"0.000011126876577448"},{"denom":"ASSET10","index":"0.000007751884027943"},{"denom":"ASSET11","index":"0.000010763759508328"},{"denom":"ASSET12","index":"0.000009692944381721"},{"denom":"ASSET13","index":"0.000003335543967388"},{"denom":"ASSET14","index":"0.000010055110882597"},{"denom":"ASSET15","index":"0.000007189147627631"},{"denom":"ASSET16","index":"0.000005012346349398"},{"denom":"ASSET17","index":"0.000003559878072918"},{"denom":"ASSET18","index":"0.000001695813746885"},{"denom":"ASSET2","index":"0.000003284213282225"},{"denom":"ASSET3","index":"0.000000960549210329"},{"denom":"ASSET4","index":"0.000009042280418860"},{"denom":"ASSET5","index":"0.000000745720787237"},{"denom":"ASSET6","index":"0.000003035164402357"},{"denom":"ASSET7","index":"0.000004648278712034"},{"denom":"ASSET8","index":"0.000006065575963495"},{"denom":"ASSET9","index":"0.000002619766079830"}],"last_reward_claim_height":"74"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET8","shares":"401060806.558826992128679926","reward_history":[{"denom":"ASSET0","index":"0.000003215122291080"},{"denom":"ASSET1","index":"0.000027271082473775"},{"denom":"ASSET10","index":"0.000021717714787675"},{"denom":"ASSET11","index":"0.000027088129911249"},{"denom":"ASSET12","index":"0.000025803190697535"},{"denom":"ASSET13","index":"0.000008506451165719"},{"denom":"ASSET14","index":"0.000024869823256717"},{"denom":"ASSET15","index":"0.000019571375436743"},{"denom":"ASSET16","index":"0.000012101015548893"},{"denom":"ASSET17","index":"0.000009481514658039"},{"denom":"ASSET18","index":"0.000003929002426467"},{"denom":"ASSET2","index":"0.000008255375778501"},{"denom":"ASSET3","index":"0.000002294279906946"},{"denom":"ASSET4","index":"0.000022110354928469"},{"denom":"ASSET5","index":"0.000001787716273475"},{"denom":"ASSET6","index":"0.000007215985074700"},{"denom":"ASSET7","index":"0.000011330188741735"},{"denom":"ASSET8","index":"0.000015463524362026"},{"denom":"ASSET9","index":"0.000006565858639552"}],"last_reward_claim_height":"180"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET9","shares":"76679803.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003215122291080"},{"denom":"ASSET1","index":"0.000027271082473775"},{"denom":"ASSET10","index":"0.000021717714787675"},{"denom":"ASSET11","index":"0.000027088129911249"},{"denom":"ASSET12","index":"0.000025803190697535"},{"denom":"ASSET13","index":"0.000008506451165719"},{"denom":"ASSET14","index":"0.000024869823256717"},{"denom":"ASSET15","index":"0.000019571375436743"},{"denom":"ASSET16","index":"0.000012101015548893"},{"denom":"ASSET17","index":"0.000009481514658039"},{"denom":"ASSET18","index":"0.000003929002426467"},{"denom":"ASSET2","index":"0.000008255375778501"},{"denom":"ASSET3","index":"0.000002294279906946"},{"denom":"ASSET4","index":"0.000022110354928469"},{"denom":"ASSET5","index":"0.000001787716273475"},{"denom":"ASSET6","index":"0.000007215985074700"},{"denom":"ASSET7","index":"0.000011330188741735"},{"denom":"ASSET8","index":"0.000015463524362026"},{"denom":"ASSET9","index":"0.000006565858639552"}],"last_reward_claim_height":"165"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET10","shares":"793544533.639403170781839332","reward_history":[{"denom":"ASSET0","index":"0.000003215122291080"},{"denom":"ASSET1","index":"0.000027271082473775"},{"denom":"ASSET10","index":"0.000021717714787675"},{"denom":"ASSET11","index":"0.000027088129911249"},{"denom":"ASSET12","index":"0.000025803190697535"},{"denom":"ASSET13","index":"0.000008506451165719"},{"denom":"ASSET14","index":"0.000024869823256717"},{"denom":"ASSET15","index":"0.000019571375436743"},{"denom":"ASSET16","index":"0.000012101015548893"},{"denom":"ASSET17","index":"0.000009481514658039"},{"denom":"ASSET18","index":"0.000003929002426467"},{"denom":"ASSET2","index":"0.000008255375778501"},{"denom":"ASSET3","index":"0.000002294279906946"},{"denom":"ASSET4","index":"0.000022110354928469"},{"denom":"ASSET5","index":"0.000001787716273475"},{"denom":"ASSET6","index":"0.000007215985074700"},{"denom":"ASSET7","index":"0.000011330188741735"},{"denom":"ASSET8","index":"0.000015463524362026"},{"denom":"ASSET9","index":"0.000006565858639552"}],"last_reward_claim_height":"148"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET16","shares":"996777431.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004823716104736"},{"denom":"ASSET1","index":"0.000039480365070270"},{"denom":"ASSET10","index":"0.000034116928375488"},{"denom":"ASSET11","index":"0.000040997532955099"},{"denom":"ASSET12","index":"0.000038999162148649"},{"denom":"ASSET13","index":"0.000013220337329072"},{"denom":"ASSET14","index":"0.000037831952094564"},{"denom":"ASSET15","index":"0.000030637104167684"},{"denom":"ASSET16","index":"0.000017521720108905"},{"denom":"ASSET17","index":"0.000014166831814341"},{"denom":"ASSET18","index":"0.000005896825051000"},{"denom":"ASSET2","index":"0.000011913795848039"},{"denom":"ASSET3","index":"0.000003425665491719"},{"denom":"ASSET4","index":"0.000032361073374938"},{"denom":"ASSET5","index":"0.000002690020746157"},{"denom":"ASSET6","index":"0.000010980480809306"},{"denom":"ASSET7","index":"0.000016957489547178"},{"denom":"ASSET8","index":"0.000024390016426130"},{"denom":"ASSET9","index":"0.000009789394935097"}],"last_reward_claim_height":"188"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET0","shares":"803492777.000000000000000000","reward_history":[],"last_reward_claim_height":"19"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET7","shares":"235155913.332598019582144300","reward_history":[{"denom":"ASSET0","index":"0.000001631513498845"},{"denom":"ASSET1","index":"0.000013601788709515"},{"denom":"ASSET10","index":"0.000009476711328689"},{"denom":"ASSET11","index":"0.000013158178840821"},{"denom":"ASSET12","index":"0.000011848922966954"},{"denom":"ASSET13","index":"0.000004077884841603"},{"denom":"ASSET14","index":"0.000012291633930140"},{"denom":"ASSET15","index":"0.000008788599161546"},{"denom":"ASSET16","index":"0.000006127389402135"},{"denom":"ASSET17","index":"0.000004351601569095"},{"denom":"ASSET18","index":"0.000002072876103766"},{"denom":"ASSET2","index":"0.000004014961455973"},{"denom":"ASSET3","index":"0.000001174420047516"},{"denom":"ASSET4","index":"0.000011053841044239"},{"denom":"ASSET5","index":"0.000000911490186131"},{"denom":"ASSET6","index":"0.000003710232488420"},{"denom":"ASSET7","index":"0.000005682431175178"},{"denom":"ASSET8","index":"0.000007415071543785"},{"denom":"ASSET9","index":"0.000003202800328586"}],"last_reward_claim_height":"100"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET13","shares":"259328726.000000000000000000","reward_history":[],"last_reward_claim_height":"27"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET17","shares":"1000032722.963317046000000000","reward_history":[{"denom":"ASSET0","index":"0.000001631513498845"},{"denom":"ASSET1","index":"0.000013601788709515"},{"denom":"ASSET10","index":"0.000009476711328689"},{"denom":"ASSET11","index":"0.000013158178840821"},{"denom":"ASSET12","index":"0.000011848922966954"},{"denom":"ASSET13","index":"0.000004077884841603"},{"denom":"ASSET14","index":"0.000012291633930140"},{"denom":"ASSET15","index":"0.000008788599161546"},{"denom":"ASSET16","index":"0.000006127389402135"},{"denom":"ASSET17","index":"0.000004351601569095"},{"denom":"ASSET18","index":"0.000002072876103766"},{"denom":"ASSET2","index":"0.000004014961455973"},{"denom":"ASSET3","index":"0.000001174420047516"},{"denom":"ASSET4","index":"0.000011053841044239"},{"denom":"ASSET5","index":"0.000000911490186131"},{"denom":"ASSET6","index":"0.000003710232488420"},{"denom":"ASSET7","index":"0.000005682431175178"},{"denom":"ASSET8","index":"0.000007415071543785"},{"denom":"ASSET9","index":"0.000003202800328586"}],"last_reward_claim_height":"72"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET4","shares":"596797248.999999997612811004","reward_history":[{"denom":"ASSET0","index":"0.000003253063831874"},{"denom":"ASSET1","index":"0.000027597326034286"},{"denom":"ASSET10","index":"0.000022021617243178"},{"denom":"ASSET11","index":"0.000027423138617092"},{"denom":"ASSET12","index":"0.000026144931484859"},{"denom":"ASSET13","index":"0.000008613299773809"},{"denom":"ASSET14","index":"0.000025170855267573"},{"denom":"ASSET15","index":"0.000019836826910831"},{"denom":"ASSET16","index":"0.000012243184702458"},{"denom":"ASSET17","index":"0.000009607701845932"},{"denom":"ASSET18","index":"0.000003972764374377"},{"denom":"ASSET2","index":"0.000008357484440725"},{"denom":"ASSET3","index":"0.000002321502734814"},{"denom":"ASSET4","index":"0.000022373906168402"},{"denom":"ASSET5","index":"0.000001808481766797"},{"denom":"ASSET6","index":"0.000007298802623853"},{"denom":"ASSET7","index":"0.000011465220726545"},{"denom":"ASSET8","index":"0.000015658035812384"},{"denom":"ASSET9","index":"0.000006646717011605"}],"last_reward_claim_height":"159"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET0","shares":"340562432.257443727848139220","reward_history":[{"denom":"ASSET0","index":"0.000003402845442317"},{"denom":"ASSET1","index":"0.000028880571174740"},{"denom":"ASSET10","index":"0.000023090578471272"},{"denom":"ASSET11","index":"0.000028709364204549"},{"denom":"ASSET12","index":"0.000027394626213612"},{"denom":"ASSET13","index":"0.000009019217107214"},{"denom":"ASSET14","index":"0.000026344557012563"},{"denom":"ASSET15","index":"0.000020791017438004"},{"denom":"ASSET16","index":"0.000012808886991708"},{"denom":"ASSET17","index":"0.000010066951390727"},{"denom":"ASSET18","index":"0.000004153478710890"},{"denom":"ASSET2","index":"0.000008748954704305"},{"denom":"ASSET3","index":"0.000002428490976730"},{"denom":"ASSET4","index":"0.000023413646091842"},{"denom":"ASSET5","index":"0.000001891364101695"},{"denom":"ASSET6","index":"0.000007634563338572"},{"denom":"ASSET7","index":"0.000011996876612297"},{"denom":"ASSET8","index":"0.000016395615103037"},{"denom":"ASSET9","index":"0.000006958318142576"}],"last_reward_claim_height":"128"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET2","shares":"664197311.520958967405218385","reward_history":[{"denom":"ASSET0","index":"0.000003402845442317"},{"denom":"ASSET1","index":"0.000028880571174740"},{"denom":"ASSET10","index":"0.000023090578471272"},{"denom":"ASSET11","index":"0.000028709364204549"},{"denom":"ASSET12","index":"0.000027394626213612"},{"denom":"ASSET13","index":"0.000009019217107214"},{"denom":"ASSET14","index":"0.000026344557012563"},{"denom":"ASSET15","index":"0.000020791017438004"},{"denom":"ASSET16","index":"0.000012808886991708"},{"denom":"ASSET17","index":"0.000010066951390727"},{"denom":"ASSET18","index":"0.000004153478710890"},{"denom":"ASSET2","index":"0.000008748954704305"},{"denom":"ASSET3","index":"0.000002428490976730"},{"denom":"ASSET4","index":"0.000023413646091842"},{"denom":"ASSET5","index":"0.000001891364101695"},{"denom":"ASSET6","index":"0.000007634563338572"},{"denom":"ASSET7","index":"0.000011996876612297"},{"denom":"ASSET8","index":"0.000016395615103037"},{"denom":"ASSET9","index":"0.000006958318142576"}],"last_reward_claim_height":"138"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET11","shares":"40666578.117024949236495340","reward_history":[{"denom":"ASSET0","index":"0.000004603569948956"},{"denom":"ASSET1","index":"0.000037657747163858"},{"denom":"ASSET10","index":"0.000032685028331762"},{"denom":"ASSET11","index":"0.000039168650778486"},{"denom":"ASSET12","index":"0.000037297135276037"},{"denom":"ASSET13","index":"0.000012641649341100"},{"denom":"ASSET14","index":"0.000036137365706128"},{"denom":"ASSET15","index":"0.000029334958625221"},{"denom":"ASSET16","index":"0.000016707823856618"},{"denom":"ASSET17","index":"0.000013546076882550"},{"denom":"ASSET18","index":"0.000005623085845845"},{"denom":"ASSET2","index":"0.000011368447004498"},{"denom":"ASSET3","index":"0.000003269493918411"},{"denom":"ASSET4","index":"0.000030874677880264"},{"denom":"ASSET5","index":"0.000002566798539209"},{"denom":"ASSET6","index":"0.000010480589665140"},{"denom":"ASSET7","index":"0.000016187212147994"},{"denom":"ASSET8","index":"0.000023330452982259"},{"denom":"ASSET9","index":"0.000009348542318023"}],"last_reward_claim_height":"187"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET1","shares":"149287629.325270601691764596","reward_history":[{"denom":"ASSET0","index":"0.000003205609047354"},{"denom":"ASSET1","index":"0.000027188537481167"},{"denom":"ASSET10","index":"0.000021652723818266"},{"denom":"ASSET11","index":"0.000027005979418132"},{"denom":"ASSET12","index":"0.000025725923481940"},{"denom":"ASSET13","index":"0.000008480657418555"},{"denom":"ASSET14","index":"0.000024794508770079"},{"denom":"ASSET15","index":"0.000019512596409105"},{"denom":"ASSET16","index":"0.000012064653878282"},{"denom":"ASSET17","index":"0.000009453813052143"},{"denom":"ASSET18","index":"0.000003917117707327"},{"denom":"ASSET2","index":"0.000008230459966291"},{"denom":"ASSET3","index":"0.000002288306334262"},{"denom":"ASSET4","index":"0.000022043298344156"},{"denom":"ASSET5","index":"0.000001782083734802"},{"denom":"ASSET6","index":"0.000007194354204475"},{"denom":"ASSET7","index":"0.000011296497588433"},{"denom":"ASSET8","index":"0.000015417282169744"},{"denom":"ASSET9","index":"0.000006545936928299"}],"last_reward_claim_height":"173"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET2","shares":"507649427.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003205609047354"},{"denom":"ASSET1","index":"0.000027188537481167"},{"denom":"ASSET10","index":"0.000021652723818266"},{"denom":"ASSET11","index":"0.000027005979418132"},{"denom":"ASSET12","index":"0.000025725923481940"},{"denom":"ASSET13","index":"0.000008480657418555"},{"denom":"ASSET14","index":"0.000024794508770079"},{"denom":"ASSET15","index":"0.000019512596409105"},{"denom":"ASSET16","index":"0.000012064653878282"},{"denom":"ASSET17","index":"0.000009453813052143"},{"denom":"ASSET18","index":"0.000003917117707327"},{"denom":"ASSET2","index":"0.000008230459966291"},{"denom":"ASSET3","index":"0.000002288306334262"},{"denom":"ASSET4","index":"0.000022043298344156"},{"denom":"ASSET5","index":"0.000001782083734802"},{"denom":"ASSET6","index":"0.000007194354204475"},{"denom":"ASSET7","index":"0.000011296497588433"},{"denom":"ASSET8","index":"0.000015417282169744"},{"denom":"ASSET9","index":"0.000006545936928299"}],"last_reward_claim_height":"181"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET8","shares":"105385505.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001650481631660"},{"denom":"ASSET1","index":"0.000013760556046882"},{"denom":"ASSET10","index":"0.000009587067899364"},{"denom":"ASSET11","index":"0.000013312100857594"},{"denom":"ASSET12","index":"0.000011987552175177"},{"denom":"ASSET13","index":"0.000004125311926918"},{"denom":"ASSET14","index":"0.000012435412596309"},{"denom":"ASSET15","index":"0.000008891189157367"},{"denom":"ASSET16","index":"0.000006198673717177"},{"denom":"ASSET17","index":"0.000004402473887406"},{"denom":"ASSET18","index":"0.000002097152516481"},{"denom":"ASSET2","index":"0.000004062266502429"},{"denom":"ASSET3","index":"0.000001188346774796"},{"denom":"ASSET4","index":"0.000011182830860714"},{"denom":"ASSET5","index":"0.000000921890641108"},{"denom":"ASSET6","index":"0.000003753581829697"},{"denom":"ASSET7","index":"0.000005749028991578"},{"denom":"ASSET8","index":"0.000007501810745994"},{"denom":"ASSET9","index":"0.000003239702143299"}],"last_reward_claim_height":"77"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET17","shares":"437221736.000000000000000000","reward_history":[],"last_reward_claim_height":"57"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET18","shares":"128697657.999999999814543000","reward_history":[],"last_reward_claim_height":"19"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET1","shares":"788376842.999999680707378585","reward_history":[{"denom":"ASSET0","index":"0.000004797932273463"},{"denom":"ASSET1","index":"0.000039207124912078"},{"denom":"ASSET10","index":"0.000034353978435423"},{"denom":"ASSET11","index":"0.000040920134682013"},{"denom":"ASSET12","index":"0.000039056395494217"},{"denom":"ASSET13","index":"0.000013231227958855"},{"denom":"ASSET14","index":"0.000037733679436848"},{"denom":"ASSET15","index":"0.000030793877081294"},{"denom":"ASSET16","index":"0.000017383221205873"},{"denom":"ASSET17","index":"0.000014177361978135"},{"denom":"ASSET18","index":"0.000005850206856034"},{"denom":"ASSET2","index":"0.000011848399796786"},{"denom":"ASSET3","index":"0.000003404782714627"},{"denom":"ASSET4","index":"0.000032159529107613"},{"denom":"ASSET5","index":"0.000002675260702048"},{"denom":"ASSET6","index":"0.000010924211970889"},{"denom":"ASSET7","index":"0.000016877439175785"},{"denom":"ASSET8","index":"0.000024434811349288"},{"denom":"ASSET9","index":"0.000009758176572436"}],"last_reward_claim_height":"192"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET9","shares":"49080404.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003075918064869"},{"denom":"ASSET1","index":"0.000026136551234120"},{"denom":"ASSET10","index":"0.000021080163895542"},{"denom":"ASSET11","index":"0.000026029570124972"},{"denom":"ASSET12","index":"0.000024929671095533"},{"denom":"ASSET13","index":"0.000008184754658215"},{"denom":"ASSET14","index":"0.000023857159923959"},{"denom":"ASSET15","index":"0.000018947606922173"},{"denom":"ASSET16","index":"0.000011579925359638"},{"denom":"ASSET17","index":"0.000009161388302193"},{"denom":"ASSET18","index":"0.000003743573486430"},{"denom":"ASSET2","index":"0.000007931762150876"},{"denom":"ASSET3","index":"0.000002193704696765"},{"denom":"ASSET4","index":"0.000021185602196482"},{"denom":"ASSET5","index":"0.000001709259314500"},{"denom":"ASSET6","index":"0.000006893942979866"},{"denom":"ASSET7","index":"0.000010853088527538"},{"denom":"ASSET8","index":"0.000014878712124324"},{"denom":"ASSET9","index":"0.000006307130542486"}],"last_reward_claim_height":"158"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET16","shares":"227029919.000000000000000000","reward_history":[],"last_reward_claim_height":"33"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET17","shares":"974184703.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001428935211366"},{"denom":"ASSET1","index":"0.000011914564237659"},{"denom":"ASSET10","index":"0.000008301159777028"},{"denom":"ASSET11","index":"0.000011525978642480"},{"denom":"ASSET12","index":"0.000010379209562159"},{"denom":"ASSET13","index":"0.000003571896453874"},{"denom":"ASSET14","index":"0.000010767353582799"},{"denom":"ASSET15","index":"0.000007698410529959"},{"denom":"ASSET16","index":"0.000005367338533420"},{"denom":"ASSET17","index":"0.000003811671429081"},{"denom":"ASSET18","index":"0.000001815754508385"},{"denom":"ASSET2","index":"0.000003517141210917"},{"denom":"ASSET3","index":"0.000001028868678146"},{"denom":"ASSET4","index":"0.000009682846512616"},{"denom":"ASSET5","index":"0.000000798366768278"},{"denom":"ASSET6","index":"0.000003249988614231"},{"denom":"ASSET7","index":"0.000004977428214621"},{"denom":"ASSET8","index":"0.000006495119908522"},{"denom":"ASSET9","index":"0.000002805323052474"}],"last_reward_claim_height":"71"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET13","shares":"7016830.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001556917620519"},{"denom":"ASSET1","index":"0.000012983455297040"},{"denom":"ASSET10","index":"0.000009045452282177"},{"denom":"ASSET11","index":"0.000012560119972943"},{"denom":"ASSET12","index":"0.000011310507230547"},{"denom":"ASSET13","index":"0.000003892294051298"},{"denom":"ASSET14","index":"0.000011733139339821"},{"denom":"ASSET15","index":"0.000008388649636483"},{"denom":"ASSET16","index":"0.000005848637691896"},{"denom":"ASSET17","index":"0.000004153889965857"},{"denom":"ASSET18","index":"0.000001978846514969"},{"denom":"ASSET2","index":"0.000003832520791251"},{"denom":"ASSET3","index":"0.000001120924429588"},{"denom":"ASSET4","index":"0.000010551035220538"},{"denom":"ASSET5","index":"0.000000869876737390"},{"denom":"ASSET6","index":"0.000003541389854081"},{"denom":"ASSET7","index":"0.000005423895938150"},{"denom":"ASSET8","index":"0.000007077857204393"},{"denom":"ASSET9","index":"0.000003056874840288"}],"last_reward_claim_height":"78"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET0","shares":"549712534.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003300821213878"},{"denom":"ASSET1","index":"0.000028019420341436"},{"denom":"ASSET10","index":"0.000022435320069293"},{"denom":"ASSET11","index":"0.000027862926397945"},{"denom":"ASSET12","index":"0.000026603097941410"},{"denom":"ASSET13","index":"0.000008754572034100"},{"denom":"ASSET14","index":"0.000025562969906661"},{"denom":"ASSET15","index":"0.000020195785636702"},{"denom":"ASSET16","index":"0.000012425527462944"},{"denom":"ASSET17","index":"0.000009776022796414"},{"denom":"ASSET18","index":"0.000004027118689751"},{"denom":"ASSET2","index":"0.000008490998812362"},{"denom":"ASSET3","index":"0.000002354733406852"},{"denom":"ASSET4","index":"0.000022715681634045"},{"denom":"ASSET5","index":"0.000001835160700580"},{"denom":"ASSET6","index":"0.000007403741836767"},{"denom":"ASSET7","index":"0.000011639103500846"},{"denom":"ASSET8","index":"0.000015914079386056"},{"denom":"ASSET9","index":"0.000006752470475547"}],"last_reward_claim_height":"154"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET16","shares":"531825548.999999999318910243","reward_history":[],"last_reward_claim_height":"33"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET3","shares":"599453619.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003205518103121"},{"denom":"ASSET1","index":"0.000027209804037075"},{"denom":"ASSET10","index":"0.000021755111918776"},{"denom":"ASSET11","index":"0.000027048910570117"},{"denom":"ASSET12","index":"0.000025809934262776"},{"denom":"ASSET13","index":"0.000008496852467218"},{"denom":"ASSET14","index":"0.000024820667393427"},{"denom":"ASSET15","index":"0.000019589132093549"},{"denom":"ASSET16","index":"0.000012068310128279"},{"denom":"ASSET17","index":"0.000009484236214143"},{"denom":"ASSET18","index":"0.000003912244660385"},{"denom":"ASSET2","index":"0.000008242746790311"},{"denom":"ASSET3","index":"0.000002287536756020"},{"denom":"ASSET4","index":"0.000022059248469095"},{"denom":"ASSET5","index":"0.000001781848402938"},{"denom":"ASSET6","index":"0.000007192715838846"},{"denom":"ASSET7","index":"0.000011303047666497"},{"denom":"ASSET8","index":"0.000015447099928639"},{"denom":"ASSET9","index":"0.000006555210966575"}],"last_reward_claim_height":"170"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET7","shares":"504198569.000000000000000000","reward_history":[],"last_reward_claim_height":"33"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET9","shares":"620359603.738040057193052032","reward_history":[{"denom":"ASSET0","index":"0.000003374964488748"},{"denom":"ASSET1","index":"0.000028642371697541"},{"denom":"ASSET10","index":"0.000022886358038922"},{"denom":"ASSET11","index":"0.000028469467846578"},{"denom":"ASSET12","index":"0.000027158021136678"},{"denom":"ASSET13","index":"0.000008943216545101"},{"denom":"ASSET14","index":"0.000026126056006670"},{"denom":"ASSET15","index":"0.000020609372613995"},{"denom":"ASSET16","index":"0.000012704733728960"},{"denom":"ASSET17","index":"0.000009980025667275"},{"denom":"ASSET18","index":"0.000004119620826099"},{"denom":"ASSET2","index":"0.000008675935346246"},{"denom":"ASSET3","index":"0.000002408702445844"},{"denom":"ASSET4","index":"0.000023220763838917"},{"denom":"ASSET5","index":"0.000001876440105393"},{"denom":"ASSET6","index":"0.000007572949563502"},{"denom":"ASSET7","index":"0.000011897934490553"},{"denom":"ASSET8","index":"0.000016258236310419"},{"denom":"ASSET9","index":"0.000006900426530312"}],"last_reward_claim_height":"179"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET10","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003374964488748"},{"denom":"ASSET1","index":"0.000028642371697541"},{"denom":"ASSET10","index":"0.000022886358038922"},{"denom":"ASSET11","index":"0.000028469467846578"},{"denom":"ASSET12","index":"0.000027158021136678"},{"denom":"ASSET13","index":"0.000008943216545101"},{"denom":"ASSET14","index":"0.000026126056006670"},{"denom":"ASSET15","index":"0.000020609372613995"},{"denom":"ASSET16","index":"0.000012704733728960"},{"denom":"ASSET17","index":"0.000009980025667275"},{"denom":"ASSET18","index":"0.000004119620826099"},{"denom":"ASSET2","index":"0.000008675935346246"},{"denom":"ASSET3","index":"0.000002408702445844"},{"denom":"ASSET4","index":"0.000023220763838917"},{"denom":"ASSET5","index":"0.000001876440105393"},{"denom":"ASSET6","index":"0.000007572949563502"},{"denom":"ASSET7","index":"0.000011897934490553"},{"denom":"ASSET8","index":"0.000016258236310419"},{"denom":"ASSET9","index":"0.000006900426530312"}],"last_reward_claim_height":"152"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET12","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003374964488748"},{"denom":"ASSET1","index":"0.000028642371697541"},{"denom":"ASSET10","index":"0.000022886358038922"},{"denom":"ASSET11","index":"0.000028469467846578"},{"denom":"ASSET12","index":"0.000027158021136678"},{"denom":"ASSET13","index":"0.000008943216545101"},{"denom":"ASSET14","index":"0.000026126056006670"},{"denom":"ASSET15","index":"0.000020609372613995"},{"denom":"ASSET16","index":"0.000012704733728960"},{"denom":"ASSET17","index":"0.000009980025667275"},{"denom":"ASSET18","index":"0.000004119620826099"},{"denom":"ASSET2","index":"0.000008675935346246"},{"denom":"ASSET3","index":"0.000002408702445844"},{"denom":"ASSET4","index":"0.000023220763838917"},{"denom":"ASSET5","index":"0.000001876440105393"},{"denom":"ASSET6","index":"0.000007572949563502"},{"denom":"ASSET7","index":"0.000011897934490553"},{"denom":"ASSET8","index":"0.000016258236310419"},{"denom":"ASSET9","index":"0.000006900426530312"}],"last_reward_claim_height":"170"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET17","shares":"314260345.305742567717262608","reward_history":[{"denom":"ASSET0","index":"0.000003374964488748"},{"denom":"ASSET1","index":"0.000028642371697541"},{"denom":"ASSET10","index":"0.000022886358038922"},{"denom":"ASSET11","index":"0.000028469467846578"},{"denom":"ASSET12","index":"0.000027158021136678"},{"denom":"ASSET13","index":"0.000008943216545101"},{"denom":"ASSET14","index":"0.000026126056006670"},{"denom":"ASSET15","index":"0.000020609372613995"},{"denom":"ASSET16","index":"0.000012704733728960"},{"denom":"ASSET17","index":"0.000009980025667275"},{"denom":"ASSET18","index":"0.000004119620826099"},{"denom":"ASSET2","index":"0.000008675935346246"},{"denom":"ASSET3","index":"0.000002408702445844"},{"denom":"ASSET4","index":"0.000023220763838917"},{"denom":"ASSET5","index":"0.000001876440105393"},{"denom":"ASSET6","index":"0.000007572949563502"},{"denom":"ASSET7","index":"0.000011897934490553"},{"denom":"ASSET8","index":"0.000016258236310419"},{"denom":"ASSET9","index":"0.000006900426530312"}],"last_reward_claim_height":"160"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET18","shares":"595627243.000000000000000000","reward_history":[],"last_reward_claim_height":"48"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET1","shares":"178937829.386975521299268560","reward_history":[{"denom":"ASSET0","index":"0.000003138779820137"},{"denom":"ASSET1","index":"0.000026638851971456"},{"denom":"ASSET10","index":"0.000021228354320839"},{"denom":"ASSET11","index":"0.000026463611656062"},{"denom":"ASSET12","index":"0.000025215335343685"},{"denom":"ASSET13","index":"0.000008309803474369"},{"denom":"ASSET14","index":"0.000024294710395367"},{"denom":"ASSET15","index":"0.000019126240972581"},{"denom":"ASSET16","index":"0.000011819368577720"},{"denom":"ASSET17","index":"0.000009266335892783"},{"denom":"ASSET18","index":"0.000003836527514127"},{"denom":"ASSET2","index":"0.000008063422586049"},{"denom":"ASSET3","index":"0.000002240662109326"},{"denom":"ASSET4","index":"0.000021597223596640"},{"denom":"ASSET5","index":"0.000001744975814867"},{"denom":"ASSET6","index":"0.000007047692266012"},{"denom":"ASSET7","index":"0.000011067413421526"},{"denom":"ASSET8","index":"0.000015106336478322"},{"denom":"ASSET9","index":"0.000006414890297355"}],"last_reward_claim_height":"133"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET7","shares":"725802940.097758034163467820","reward_history":[{"denom":"ASSET0","index":"0.000003138779820137"},{"denom":"ASSET1","index":"0.000026638851971456"},{"denom":"ASSET10","index":"0.000021228354320839"},{"denom":"ASSET11","index":"0.000026463611656062"},{"denom":"ASSET12","index":"0.000025215335343685"},{"denom":"ASSET13","index":"0.000008309803474369"},{"denom":"ASSET14","index":"0.000024294710395367"},{"denom":"ASSET15","index":"0.000019126240972581"},{"denom":"ASSET16","index":"0.000011819368577720"},{"denom":"ASSET17","index":"0.000009266335892783"},{"denom":"ASSET18","index":"0.000003836527514127"},{"denom":"ASSET2","index":"0.000008063422586049"},{"denom":"ASSET3","index":"0.000002240662109326"},{"denom":"ASSET4","index":"0.000021597223596640"},{"denom":"ASSET5","index":"0.000001744975814867"},{"denom":"ASSET6","index":"0.000007047692266012"},{"denom":"ASSET7","index":"0.000011067413421526"},{"denom":"ASSET8","index":"0.000015106336478322"},{"denom":"ASSET9","index":"0.000006414890297355"}],"last_reward_claim_height":"139"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET8","shares":"924400727.931844010469486720","reward_history":[{"denom":"ASSET0","index":"0.000003138779820137"},{"denom":"ASSET1","index":"0.000026638851971456"},{"denom":"ASSET10","index":"0.000021228354320839"},{"denom":"ASSET11","index":"0.000026463611656062"},{"denom":"ASSET12","index":"0.000025215335343685"},{"denom":"ASSET13","index":"0.000008309803474369"},{"denom":"ASSET14","index":"0.000024294710395367"},{"denom":"ASSET15","index":"0.000019126240972581"},{"denom":"ASSET16","index":"0.000011819368577720"},{"denom":"ASSET17","index":"0.000009266335892783"},{"denom":"ASSET18","index":"0.000003836527514127"},{"denom":"ASSET2","index":"0.000008063422586049"},{"denom":"ASSET3","index":"0.000002240662109326"},{"denom":"ASSET4","index":"0.000021597223596640"},{"denom":"ASSET5","index":"0.000001744975814867"},{"denom":"ASSET6","index":"0.000007047692266012"},{"denom":"ASSET7","index":"0.000011067413421526"},{"denom":"ASSET8","index":"0.000015106336478322"},{"denom":"ASSET9","index":"0.000006414890297355"}],"last_reward_claim_height":"127"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET11","shares":"147676910.000000000000000000","reward_history":[],"last_reward_claim_height":"15"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET13","shares":"20077628.545076258456559552","reward_history":[{"denom":"ASSET0","index":"0.000003138779820137"},{"denom":"ASSET1","index":"0.000026638851971456"},{"denom":"ASSET10","index":"0.000021228354320839"},{"denom":"ASSET11","index":"0.000026463611656062"},{"denom":"ASSET12","index":"0.000025215335343685"},{"denom":"ASSET13","index":"0.000008309803474369"},{"denom":"ASSET14","index":"0.000024294710395367"},{"denom":"ASSET15","index":"0.000019126240972581"},{"denom":"ASSET16","index":"0.000011819368577720"},{"denom":"ASSET17","index":"0.000009266335892783"},{"denom":"ASSET18","index":"0.000003836527514127"},{"denom":"ASSET2","index":"0.000008063422586049"},{"denom":"ASSET3","index":"0.000002240662109326"},{"denom":"ASSET4","index":"0.000021597223596640"},{"denom":"ASSET5","index":"0.000001744975814867"},{"denom":"ASSET6","index":"0.000007047692266012"},{"denom":"ASSET7","index":"0.000011067413421526"},{"denom":"ASSET8","index":"0.000015106336478322"},{"denom":"ASSET9","index":"0.000006414890297355"}],"last_reward_claim_height":"126"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET15","shares":"485818617.000000000000000000","reward_history":[],"last_reward_claim_height":"17"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET16","shares":"163828293.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003138779820137"},{"denom":"ASSET1","index":"0.000026638851971456"},{"denom":"ASSET10","index":"0.000021228354320839"},{"denom":"ASSET11","index":"0.000026463611656062"},{"denom":"ASSET12","index":"0.000025215335343685"},{"denom":"ASSET13","index":"0.000008309803474369"},{"denom":"ASSET14","index":"0.000024294710395367"},{"denom":"ASSET15","index":"0.000019126240972581"},{"denom":"ASSET16","index":"0.000011819368577720"},{"denom":"ASSET17","index":"0.000009266335892783"},{"denom":"ASSET18","index":"0.000003836527514127"},{"denom":"ASSET2","index":"0.000008063422586049"},{"denom":"ASSET3","index":"0.000002240662109326"},{"denom":"ASSET4","index":"0.000021597223596640"},{"denom":"ASSET5","index":"0.000001744975814867"},{"denom":"ASSET6","index":"0.000007047692266012"},{"denom":"ASSET7","index":"0.000011067413421526"},{"denom":"ASSET8","index":"0.000015106336478322"},{"denom":"ASSET9","index":"0.000006414890297355"}],"last_reward_claim_height":"173"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET1","shares":"796704498.618490387391545770","reward_history":[{"denom":"ASSET0","index":"0.000003135138573804"},{"denom":"ASSET1","index":"0.000026601246250396"},{"denom":"ASSET10","index":"0.000021147351718785"},{"denom":"ASSET11","index":"0.000026411423528042"},{"denom":"ASSET12","index":"0.000025139747174388"},{"denom":"ASSET13","index":"0.000008292603180789"},{"denom":"ASSET14","index":"0.000024256405788980"},{"denom":"ASSET15","index":"0.000019064302195638"},{"denom":"ASSET16","index":"0.000011804656377100"},{"denom":"ASSET17","index":"0.000009238224400983"},{"denom":"ASSET18","index":"0.000003834531376561"},{"denom":"ASSET2","index":"0.000008049169006780"},{"denom":"ASSET3","index":"0.000002239375819558"},{"denom":"ASSET4","index":"0.000021568278304468"},{"denom":"ASSET5","index":"0.000001743998311515"},{"denom":"ASSET6","index":"0.000007041675703373"},{"denom":"ASSET7","index":"0.000011051161098588"},{"denom":"ASSET8","index":"0.000015073103234225"},{"denom":"ASSET9","index":"0.000006402150772125"}],"last_reward_claim_height":"165"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET6","shares":"308645672.000000000000000000","reward_history":[],"last_reward_claim_height":"38"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET7","shares":"16261789.962515380449248547","reward_history":[{"denom":"ASSET0","index":"0.000001636130781121"},{"denom":"ASSET1","index":"0.000013651986161797"},{"denom":"ASSET10","index":"0.000009511743354655"},{"denom":"ASSET11","index":"0.000013205516575762"},{"denom":"ASSET12","index":"0.000011891065744828"},{"denom":"ASSET13","index":"0.000004093100055822"},{"denom":"ASSET14","index":"0.000012337535330862"},{"denom":"ASSET15","index":"0.000008821240702961"},{"denom":"ASSET16","index":"0.000006147969392790"},{"denom":"ASSET17","index":"0.000004367637254688"},{"denom":"ASSET18","index":"0.000002079827264137"},{"denom":"ASSET2","index":"0.000004029318686389"},{"denom":"ASSET3","index":"0.000001178568783011"},{"denom":"ASSET4","index":"0.000011095185178418"},{"denom":"ASSET5","index":"0.000000915123996220"},{"denom":"ASSET6","index":"0.000003724277354315"},{"denom":"ASSET7","index":"0.000005701499806755"},{"denom":"ASSET8","index":"0.000007440235399574"},{"denom":"ASSET9","index":"0.000003214026398847"}],"last_reward_claim_height":"66"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET8","shares":"851643703.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003237426875283"},{"denom":"ASSET1","index":"0.000027451710154634"},{"denom":"ASSET10","index":"0.000021835512998164"},{"denom":"ASSET11","index":"0.000027259736654219"},{"denom":"ASSET12","index":"0.000025953768913429"},{"denom":"ASSET13","index":"0.000008559484494503"},{"denom":"ASSET14","index":"0.000025032165857410"},{"denom":"ASSET15","index":"0.000019681806512765"},{"denom":"ASSET16","index":"0.000012183244440341"},{"denom":"ASSET17","index":"0.000009537367134186"},{"denom":"ASSET18","index":"0.000003957397976948"},{"denom":"ASSET2","index":"0.000008307936552813"},{"denom":"ASSET3","index":"0.000002310954839376"},{"denom":"ASSET4","index":"0.000022256988295109"},{"denom":"ASSET5","index":"0.000001799896462688"},{"denom":"ASSET6","index":"0.000007265619632425"},{"denom":"ASSET7","index":"0.000011405823532836"},{"denom":"ASSET8","index":"0.000015559935461923"},{"denom":"ASSET9","index":"0.000006608212131764"}],"last_reward_claim_height":"157"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET10","shares":"425770803.000000008089645257","reward_history":[{"denom":"ASSET0","index":"0.000003237426875283"},{"denom":"ASSET1","index":"0.000027451710154634"},{"denom":"ASSET10","index":"0.000021835512998164"},{"denom":"ASSET11","index":"0.000027259736654219"},{"denom":"ASSET12","index":"0.000025953768913429"},{"denom":"ASSET13","index":"0.000008559484494503"},{"denom":"ASSET14","index":"0.000025032165857410"},{"denom":"ASSET15","index":"0.000019681806512765"},{"denom":"ASSET16","index":"0.000012183244440341"},{"denom":"ASSET17","index":"0.000009537367134186"},{"denom":"ASSET18","index":"0.000003957397976948"},{"denom":"ASSET2","index":"0.000008307936552813"},{"denom":"ASSET3","index":"0.000002310954839376"},{"denom":"ASSET4","index":"0.000022256988295109"},{"denom":"ASSET5","index":"0.000001799896462688"},{"denom":"ASSET6","index":"0.000007265619632425"},{"denom":"ASSET7","index":"0.000011405823532836"},{"denom":"ASSET8","index":"0.000015559935461923"},{"denom":"ASSET9","index":"0.000006608212131764"}],"last_reward_claim_height":"181"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET12","shares":"701112206.999999998907453798","reward_history":[],"last_reward_claim_height":"61"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET12","shares":"522211122.999999994255677647","reward_history":[],"last_reward_claim_height":"53"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET13","shares":"843281421.440857779020172609","reward_history":[{"denom":"ASSET0","index":"0.000001576738934866"},{"denom":"ASSET1","index":"0.000013143695761043"},{"denom":"ASSET10","index":"0.000009157699733702"},{"denom":"ASSET11","index":"0.000012715663698192"},{"denom":"ASSET12","index":"0.000011450067913139"},{"denom":"ASSET13","index":"0.000003940585946017"},{"denom":"ASSET14","index":"0.000011878099975991"},{"denom":"ASSET15","index":"0.000008492526135047"},{"denom":"ASSET16","index":"0.000005920970048209"},{"denom":"ASSET17","index":"0.000004204637159643"},{"denom":"ASSET18","index":"0.000002003089142854"},{"denom":"ASSET2","index":"0.000003880039170918"},{"denom":"ASSET3","index":"0.000001134411105672"},{"denom":"ASSET4","index":"0.000010681460240357"},{"denom":"ASSET5","index":"0.000000880451021229"},{"denom":"ASSET6","index":"0.000003584873642311"},{"denom":"ASSET7","index":"0.000005491256130493"},{"denom":"ASSET8","index":"0.000007165542647463"},{"denom":"ASSET9","index":"0.000003094612949497"}],"last_reward_claim_height":"95"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET5","shares":"626160127.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003300304206809"},{"denom":"ASSET1","index":"0.000027981868665615"},{"denom":"ASSET10","index":"0.000022221493016134"},{"denom":"ASSET11","index":"0.000027777532118325"},{"denom":"ASSET12","index":"0.000026428557640091"},{"denom":"ASSET13","index":"0.000008720047886627"},{"denom":"ASSET14","index":"0.000025512138164618"},{"denom":"ASSET15","index":"0.000020036362120252"},{"denom":"ASSET16","index":"0.000012421157074829"},{"denom":"ASSET17","index":"0.000009711490167791"},{"denom":"ASSET18","index":"0.000004036282970136"},{"denom":"ASSET2","index":"0.000008465189250700"},{"denom":"ASSET3","index":"0.000002356240815614"},{"denom":"ASSET4","index":"0.000022687774056492"},{"denom":"ASSET5","index":"0.000001835200922241"},{"denom":"ASSET6","index":"0.000007409270759323"},{"denom":"ASSET7","index":"0.000011627060915230"},{"denom":"ASSET8","index":"0.000015852235873304"},{"denom":"ASSET9","index":"0.000006733690564218"}],"last_reward_claim_height":"141"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET8","shares":"132487634.156667515188693412","reward_history":[{"denom":"ASSET0","index":"0.000003300304206809"},{"denom":"ASSET1","index":"0.000027981868665615"},{"denom":"ASSET10","index":"0.000022221493016134"},{"denom":"ASSET11","index":"0.000027777532118325"},{"denom":"ASSET12","index":"0.000026428557640091"},{"denom":"ASSET13","index":"0.000008720047886627"},{"denom":"ASSET14","index":"0.000025512138164618"},{"denom":"ASSET15","index":"0.000020036362120252"},{"denom":"ASSET16","index":"0.000012421157074829"},{"denom":"ASSET17","index":"0.000009711490167791"},{"denom":"ASSET18","index":"0.000004036282970136"},{"denom":"ASSET2","index":"0.000008465189250700"},{"denom":"ASSET3","index":"0.000002356240815614"},{"denom":"ASSET4","index":"0.000022687774056492"},{"denom":"ASSET5","index":"0.000001835200922241"},{"denom":"ASSET6","index":"0.000007409270759323"},{"denom":"ASSET7","index":"0.000011627060915230"},{"denom":"ASSET8","index":"0.000015852235873304"},{"denom":"ASSET9","index":"0.000006733690564218"}],"last_reward_claim_height":"151"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET10","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003383074331503"},{"denom":"ASSET1","index":"0.000028697774885580"},{"denom":"ASSET10","index":"0.000022880621123289"},{"denom":"ASSET11","index":"0.000028511966470743"},{"denom":"ASSET12","index":"0.000027173358086556"},{"denom":"ASSET13","index":"0.000008954537947194"},{"denom":"ASSET14","index":"0.000026172910691250"},{"denom":"ASSET15","index":"0.000020614154391480"},{"denom":"ASSET16","index":"0.000012732692592075"},{"denom":"ASSET17","index":"0.000009985655741818"},{"denom":"ASSET18","index":"0.000004132359094826"},{"denom":"ASSET2","index":"0.000008689052893949"},{"denom":"ASSET3","index":"0.000002414485946546"},{"denom":"ASSET4","index":"0.000023266612079392"},{"denom":"ASSET5","index":"0.000001880944791026"},{"denom":"ASSET6","index":"0.000007591453768301"},{"denom":"ASSET7","index":"0.000011922604903868"},{"denom":"ASSET8","index":"0.000016278329144958"},{"denom":"ASSET9","index":"0.000006911169878531"}],"last_reward_claim_height":"167"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET15","shares":"741396990.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001726734301691"},{"denom":"ASSET1","index":"0.000014395988805148"},{"denom":"ASSET10","index":"0.000010029746380297"},{"denom":"ASSET11","index":"0.000013926529312304"},{"denom":"ASSET12","index":"0.000012540835608608"},{"denom":"ASSET13","index":"0.000004315874534955"},{"denom":"ASSET14","index":"0.000013009526126035"},{"denom":"ASSET15","index":"0.000009301526659210"},{"denom":"ASSET16","index":"0.000006485154189852"},{"denom":"ASSET17","index":"0.000004605778267637"},{"denom":"ASSET18","index":"0.000002193886868281"},{"denom":"ASSET2","index":"0.000004249742648985"},{"denom":"ASSET3","index":"0.000001243048763609"},{"denom":"ASSET4","index":"0.000011699192013329"},{"denom":"ASSET5","index":"0.000000964679662201"},{"denom":"ASSET6","index":"0.000003926772973318"},{"denom":"ASSET7","index":"0.000006014156746171"},{"denom":"ASSET8","index":"0.000007847778630999"},{"denom":"ASSET9","index":"0.000003389643643667"}],"last_reward_claim_height":"74"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET16","shares":"186742729.000000000000000000","reward_history":[],"last_reward_claim_height":"18"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET1","shares":"1421640429.118683329497916980","reward_history":[{"denom":"ASSET0","index":"0.000004616748816299"},{"denom":"ASSET1","index":"0.000037755207818878"},{"denom":"ASSET10","index":"0.000032938660396482"},{"denom":"ASSET11","index":"0.000039335391556387"},{"denom":"ASSET12","index":"0.000037512612148171"},{"denom":"ASSET13","index":"0.000012705893060308"},{"denom":"ASSET14","index":"0.000036276532453011"},{"denom":"ASSET15","index":"0.000029538855596635"},{"denom":"ASSET16","index":"0.000016743506271421"},{"denom":"ASSET17","index":"0.000013621299864319"},{"denom":"ASSET18","index":"0.000005632683728718"},{"denom":"ASSET2","index":"0.000011406087221492"},{"denom":"ASSET3","index":"0.000003276282345046"},{"denom":"ASSET4","index":"0.000030959298045710"},{"denom":"ASSET5","index":"0.000002573921522052"},{"denom":"ASSET6","index":"0.000010509111697413"},{"denom":"ASSET7","index":"0.000016237462090306"},{"denom":"ASSET8","index":"0.000023455836171312"},{"denom":"ASSET9","index":"0.000009384135429607"}],"last_reward_claim_height":"197"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET8","shares":"6509015.999999999960945904","reward_history":[{"denom":"ASSET0","index":"0.000001436232590899"},{"denom":"ASSET1","index":"0.000011976183987962"},{"denom":"ASSET10","index":"0.000008344549248442"},{"denom":"ASSET11","index":"0.000011585862202045"},{"denom":"ASSET12","index":"0.000010432581326504"},{"denom":"ASSET13","index":"0.000003589949888597"},{"denom":"ASSET14","index":"0.000010822903112421"},{"denom":"ASSET15","index":"0.000007738224144105"},{"denom":"ASSET16","index":"0.000005395030251301"},{"denom":"ASSET17","index":"0.000003831216753031"},{"denom":"ASSET18","index":"0.000001825291199515"},{"denom":"ASSET2","index":"0.000003535633264667"},{"denom":"ASSET3","index":"0.000001033279031975"},{"denom":"ASSET4","index":"0.000009732781101914"},{"denom":"ASSET5","index":"0.000000802117585946"},{"denom":"ASSET6","index":"0.000003266576499617"},{"denom":"ASSET7","index":"0.000005003445288083"},{"denom":"ASSET8","index":"0.000006528100290032"},{"denom":"ASSET9","index":"0.000002819411735168"}],"last_reward_claim_height":"112"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET11","shares":"27824582.313036407978515001","reward_history":[{"denom":"ASSET0","index":"0.000004616748816299"},{"denom":"ASSET1","index":"0.000037755207818878"},{"denom":"ASSET10","index":"0.000032938660396482"},{"denom":"ASSET11","index":"0.000039335391556387"},{"denom":"ASSET12","index":"0.000037512612148171"},{"denom":"ASSET13","index":"0.000012705893060308"},{"denom":"ASSET14","index":"0.000036276532453011"},{"denom":"ASSET15","index":"0.000029538855596635"},{"denom":"ASSET16","index":"0.000016743506271421"},{"denom":"ASSET17","index":"0.000013621299864319"},{"denom":"ASSET18","index":"0.000005632683728718"},{"denom":"ASSET2","index":"0.000011406087221492"},{"denom":"ASSET3","index":"0.000003276282345046"},{"denom":"ASSET4","index":"0.000030959298045710"},{"denom":"ASSET5","index":"0.000002573921522052"},{"denom":"ASSET6","index":"0.000010509111697413"},{"denom":"ASSET7","index":"0.000016237462090306"},{"denom":"ASSET8","index":"0.000023455836171312"},{"denom":"ASSET9","index":"0.000009384135429607"}],"last_reward_claim_height":"192"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET16","shares":"17661173.194668959360403136","reward_history":[{"denom":"ASSET0","index":"0.000001436232590899"},{"denom":"ASSET1","index":"0.000011976183987962"},{"denom":"ASSET10","index":"0.000008344549248442"},{"denom":"ASSET11","index":"0.000011585862202045"},{"denom":"ASSET12","index":"0.000010432581326504"},{"denom":"ASSET13","index":"0.000003589949888597"},{"denom":"ASSET14","index":"0.000010822903112421"},{"denom":"ASSET15","index":"0.000007738224144105"},{"denom":"ASSET16","index":"0.000005395030251301"},{"denom":"ASSET17","index":"0.000003831216753031"},{"denom":"ASSET18","index":"0.000001825291199515"},{"denom":"ASSET2","index":"0.000003535633264667"},{"denom":"ASSET3","index":"0.000001033279031975"},{"denom":"ASSET4","index":"0.000009732781101914"},{"denom":"ASSET5","index":"0.000000802117585946"},{"denom":"ASSET6","index":"0.000003266576499617"},{"denom":"ASSET7","index":"0.000005003445288083"},{"denom":"ASSET8","index":"0.000006528100290032"},{"denom":"ASSET9","index":"0.000002819411735168"}],"last_reward_claim_height":"106"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET1","shares":"425660798.715382482065617269","reward_history":[{"denom":"ASSET0","index":"0.000001476546163568"},{"denom":"ASSET1","index":"0.000012315891963405"},{"denom":"ASSET10","index":"0.000008580298213179"},{"denom":"ASSET11","index":"0.000011914434711559"},{"denom":"ASSET12","index":"0.000010728207916557"},{"denom":"ASSET13","index":"0.000003691365408921"},{"denom":"ASSET14","index":"0.000011129665168403"},{"denom":"ASSET15","index":"0.000007957699254808"},{"denom":"ASSET16","index":"0.000005547821683700"},{"denom":"ASSET17","index":"0.000003939724556249"},{"denom":"ASSET18","index":"0.000001876869355381"},{"denom":"ASSET2","index":"0.000003635796467281"},{"denom":"ASSET3","index":"0.000001062614251355"},{"denom":"ASSET4","index":"0.000010009213855342"},{"denom":"ASSET5","index":"0.000000825595704361"},{"denom":"ASSET6","index":"0.000003359085819117"},{"denom":"ASSET7","index":"0.000005145230371820"},{"denom":"ASSET8","index":"0.000006713635398099"},{"denom":"ASSET9","index":"0.000002899791505564"}],"last_reward_claim_height":"119"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET4","shares":"885297284.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001476546163568"},{"denom":"ASSET1","index":"0.000012315891963405"},{"denom":"ASSET10","index":"0.000008580298213179"},{"denom":"ASSET11","index":"0.000011914434711559"},{"denom":"ASSET12","index":"0.000010728207916557"},{"denom":"ASSET13","index":"0.000003691365408921"},{"denom":"ASSET14","index":"0.000011129665168403"},{"denom":"ASSET15","index":"0.000007957699254808"},{"denom":"ASSET16","index":"0.000005547821683700"},{"denom":"ASSET17","index":"0.000003939724556249"},{"denom":"ASSET18","index":"0.000001876869355381"},{"denom":"ASSET2","index":"0.000003635796467281"},{"denom":"ASSET3","index":"0.000001062614251355"},{"denom":"ASSET4","index":"0.000010009213855342"},{"denom":"ASSET5","index":"0.000000825595704361"},{"denom":"ASSET6","index":"0.000003359085819117"},{"denom":"ASSET7","index":"0.000005145230371820"},{"denom":"ASSET8","index":"0.000006713635398099"},{"denom":"ASSET9","index":"0.000002899791505564"}],"last_reward_claim_height":"123"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET16","shares":"117175322.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001476546163568"},{"denom":"ASSET1","index":"0.000012315891963405"},{"denom":"ASSET10","index":"0.000008580298213179"},{"denom":"ASSET11","index":"0.000011914434711559"},{"denom":"ASSET12","index":"0.000010728207916557"},{"denom":"ASSET13","index":"0.000003691365408921"},{"denom":"ASSET14","index":"0.000011129665168403"},{"denom":"ASSET15","index":"0.000007957699254808"},{"denom":"ASSET16","index":"0.000005547821683700"},{"denom":"ASSET17","index":"0.000003939724556249"},{"denom":"ASSET18","index":"0.000001876869355381"},{"denom":"ASSET2","index":"0.000003635796467281"},{"denom":"ASSET3","index":"0.000001062614251355"},{"denom":"ASSET4","index":"0.000010009213855342"},{"denom":"ASSET5","index":"0.000000825595704361"},{"denom":"ASSET6","index":"0.000003359085819117"},{"denom":"ASSET7","index":"0.000005145230371820"},{"denom":"ASSET8","index":"0.000006713635398099"},{"denom":"ASSET9","index":"0.000002899791505564"}],"last_reward_claim_height":"90"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET16","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"63"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET2","shares":"61033879.415459309082749197","reward_history":[{"denom":"ASSET0","index":"0.000002792091306062"},{"denom":"ASSET1","index":"0.000023760392481519"},{"denom":"ASSET10","index":"0.000019330735214415"},{"denom":"ASSET11","index":"0.000023705763948043"},{"denom":"ASSET12","index":"0.000022788595153270"},{"denom":"ASSET13","index":"0.000007460432475948"},{"denom":"ASSET14","index":"0.000021701401606991"},{"denom":"ASSET15","index":"0.000017344296121870"},{"denom":"ASSET16","index":"0.000010515175863945"},{"denom":"ASSET17","index":"0.000008375559402161"},{"denom":"ASSET18","index":"0.000003388923471278"},{"denom":"ASSET2","index":"0.000007222909907971"},{"denom":"ASSET3","index":"0.000001989926471838"},{"denom":"ASSET4","index":"0.000019255294602933"},{"denom":"ASSET5","index":"0.000001551437823125"},{"denom":"ASSET6","index":"0.000006253588147261"},{"denom":"ASSET7","index":"0.000009862028954195"},{"denom":"ASSET8","index":"0.000013562244421912"},{"denom":"ASSET9","index":"0.000005741841810541"}],"last_reward_claim_height":"181"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET8","shares":"32522437.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001198976216272"},{"denom":"ASSET1","index":"0.000010001315625623"},{"denom":"ASSET10","index":"0.000006967712250892"},{"denom":"ASSET11","index":"0.000009674322112094"},{"denom":"ASSET12","index":"0.000008711677656379"},{"denom":"ASSET13","index":"0.000002997949876371"},{"denom":"ASSET14","index":"0.000009037652498526"},{"denom":"ASSET15","index":"0.000006461432574183"},{"denom":"ASSET16","index":"0.000004504564849919"},{"denom":"ASSET17","index":"0.000003199646809949"},{"denom":"ASSET18","index":"0.000001523932387037"},{"denom":"ASSET2","index":"0.000002952109664194"},{"denom":"ASSET3","index":"0.000000862814660308"},{"denom":"ASSET4","index":"0.000008126960283277"},{"denom":"ASSET5","index":"0.000000670285769165"},{"denom":"ASSET6","index":"0.000002728001960218"},{"denom":"ASSET7","index":"0.000004177571336390"},{"denom":"ASSET8","index":"0.000005451929234909"},{"denom":"ASSET9","index":"0.000002354149563130"}],"last_reward_claim_height":"103"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET17","shares":"424217434.924690493400794081","reward_history":[{"denom":"ASSET0","index":"0.000004408639086951"},{"denom":"ASSET1","index":"0.000036028768930796"},{"denom":"ASSET10","index":"0.000031790158219615"},{"denom":"ASSET11","index":"0.000037682589230029"},{"denom":"ASSET12","index":"0.000036048426643578"},{"denom":"ASSET13","index":"0.000012197269347349"},{"denom":"ASSET14","index":"0.000034726305858976"},{"denom":"ASSET15","index":"0.000028463702439045"},{"denom":"ASSET16","index":"0.000015962383027793"},{"denom":"ASSET17","index":"0.000013083625448781"},{"denom":"ASSET18","index":"0.000005366451960217"},{"denom":"ASSET2","index":"0.000010899158965125"},{"denom":"ASSET3","index":"0.000003126684527234"},{"denom":"ASSET4","index":"0.000029555870827765"},{"denom":"ASSET5","index":"0.000002458236264620"},{"denom":"ASSET6","index":"0.000010036434145152"},{"denom":"ASSET7","index":"0.000015516634437691"},{"denom":"ASSET8","index":"0.000022532118254512"},{"denom":"ASSET9","index":"0.000008980939918496"}],"last_reward_claim_height":"186"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET11","shares":"304384504.720548106332468416","reward_history":[{"denom":"ASSET0","index":"0.000003131246414749"},{"denom":"ASSET1","index":"0.000026589761836242"},{"denom":"ASSET10","index":"0.000021355242603721"},{"denom":"ASSET11","index":"0.000026458316408852"},{"denom":"ASSET12","index":"0.000025293988029420"},{"denom":"ASSET13","index":"0.000008316673174883"},{"denom":"ASSET14","index":"0.000024263343459355"},{"denom":"ASSET15","index":"0.000019213959771091"},{"denom":"ASSET16","index":"0.000011784585795875"},{"denom":"ASSET17","index":"0.000009292893547134"},{"denom":"ASSET18","index":"0.000003813004198036"},{"denom":"ASSET2","index":"0.000008060944762894"},{"denom":"ASSET3","index":"0.000002234070199415"},{"denom":"ASSET4","index":"0.000021557233504015"},{"denom":"ASSET5","index":"0.000001738116490695"},{"denom":"ASSET6","index":"0.000007021386599103"},{"denom":"ASSET7","index":"0.000011043212117572"},{"denom":"ASSET8","index":"0.000015117900391662"},{"denom":"ASSET9","index":"0.000006411442995536"}],"last_reward_claim_height":"140"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET14","shares":"486279564.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001507638919625"},{"denom":"ASSET1","index":"0.000012569401049902"},{"denom":"ASSET10","index":"0.000008757228353136"},{"denom":"ASSET11","index":"0.000012160184771718"},{"denom":"ASSET12","index":"0.000010949766096248"},{"denom":"ASSET13","index":"0.000003769097299062"},{"denom":"ASSET14","index":"0.000011358982374432"},{"denom":"ASSET15","index":"0.000008124020006893"},{"denom":"ASSET16","index":"0.000005660107258249"},{"denom":"ASSET17","index":"0.000004018934605743"},{"denom":"ASSET18","index":"0.000001912547658039"},{"denom":"ASSET2","index":"0.000003708791742277"},{"denom":"ASSET3","index":"0.000001085500022130"},{"denom":"ASSET4","index":"0.000010217484335287"},{"denom":"ASSET5","index":"0.000000839970255220"},{"denom":"ASSET6","index":"0.000003428801657204"},{"denom":"ASSET7","index":"0.000005250890980065"},{"denom":"ASSET8","index":"0.000006853295774638"},{"denom":"ASSET9","index":"0.000002959279822235"}],"last_reward_claim_height":"65"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET1","shares":"392997751.262818915328166480","reward_history":[{"denom":"ASSET0","index":"0.000003070496060295"},{"denom":"ASSET1","index":"0.000026054009108675"},{"denom":"ASSET10","index":"0.000020821706468932"},{"denom":"ASSET11","index":"0.000025897661631707"},{"denom":"ASSET12","index":"0.000024706407518076"},{"denom":"ASSET13","index":"0.000008135385272267"},{"denom":"ASSET14","index":"0.000023765921524780"},{"denom":"ASSET15","index":"0.000018749935123185"},{"denom":"ASSET16","index":"0.000011556337558875"},{"denom":"ASSET17","index":"0.000009079232430047"},{"denom":"ASSET18","index":"0.000003747682066764"},{"denom":"ASSET2","index":"0.000007892419371659"},{"denom":"ASSET3","index":"0.000002191201298955"},{"denom":"ASSET4","index":"0.000021122052487200"},{"denom":"ASSET5","index":"0.000001706992646915"},{"denom":"ASSET6","index":"0.000006888142834266"},{"denom":"ASSET7","index":"0.000010823268476718"},{"denom":"ASSET8","index":"0.000014789657857476"},{"denom":"ASSET9","index":"0.000006276911852268"}],"last_reward_claim_height":"159"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET6","shares":"488470550.774841608398784820","reward_history":[{"denom":"ASSET0","index":"0.000003070496060295"},{"denom":"ASSET1","index":"0.000026054009108675"},{"denom":"ASSET10","index":"0.000020821706468932"},{"denom":"ASSET11","index":"0.000025897661631707"},{"denom":"ASSET12","index":"0.000024706407518076"},{"denom":"ASSET13","index":"0.000008135385272267"},{"denom":"ASSET14","index":"0.000023765921524780"},{"denom":"ASSET15","index":"0.000018749935123185"},{"denom":"ASSET16","index":"0.000011556337558875"},{"denom":"ASSET17","index":"0.000009079232430047"},{"denom":"ASSET18","index":"0.000003747682066764"},{"denom":"ASSET2","index":"0.000007892419371659"},{"denom":"ASSET3","index":"0.000002191201298955"},{"denom":"ASSET4","index":"0.000021122052487200"},{"denom":"ASSET5","index":"0.000001706992646915"},{"denom":"ASSET6","index":"0.000006888142834266"},{"denom":"ASSET7","index":"0.000010823268476718"},{"denom":"ASSET8","index":"0.000014789657857476"},{"denom":"ASSET9","index":"0.000006276911852268"}],"last_reward_claim_height":"140"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET14","shares":"492814306.133568999523736697","reward_history":[{"denom":"ASSET0","index":"0.000001538667310820"},{"denom":"ASSET1","index":"0.000012827917927858"},{"denom":"ASSET10","index":"0.000008937244372687"},{"denom":"ASSET11","index":"0.000012409488429871"},{"denom":"ASSET12","index":"0.000011174685151587"},{"denom":"ASSET13","index":"0.000003845530209513"},{"denom":"ASSET14","index":"0.000011592355937882"},{"denom":"ASSET15","index":"0.000008288166520415"},{"denom":"ASSET16","index":"0.000005778727600031"},{"denom":"ASSET17","index":"0.000004103871540546"},{"denom":"ASSET18","index":"0.000001954820673732"},{"denom":"ASSET2","index":"0.000003786730053405"},{"denom":"ASSET3","index":"0.000001107719069920"},{"denom":"ASSET4","index":"0.000010424698644316"},{"denom":"ASSET5","index":"0.000000859620346726"},{"denom":"ASSET6","index":"0.000003499178322240"},{"denom":"ASSET7","index":"0.000005359160034507"},{"denom":"ASSET8","index":"0.000006993045662639"},{"denom":"ASSET9","index":"0.000003020431244761"}],"last_reward_claim_height":"106"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET16","shares":"211251251.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004650537309371"},{"denom":"ASSET1","index":"0.000038046039733821"},{"denom":"ASSET10","index":"0.000033000487516520"},{"denom":"ASSET11","index":"0.000039559590813606"},{"denom":"ASSET12","index":"0.000037667771336994"},{"denom":"ASSET13","index":"0.000012765549405852"},{"denom":"ASSET14","index":"0.000036497515986485"},{"denom":"ASSET15","index":"0.000029618849913905"},{"denom":"ASSET16","index":"0.000016880835340591"},{"denom":"ASSET17","index":"0.000013681253335277"},{"denom":"ASSET18","index":"0.000005680518785577"},{"denom":"ASSET2","index":"0.000011485907586480"},{"denom":"ASSET3","index":"0.000003302456772860"},{"denom":"ASSET4","index":"0.000031190694477338"},{"denom":"ASSET5","index":"0.000002593303317039"},{"denom":"ASSET6","index":"0.000010585760994000"},{"denom":"ASSET7","index":"0.000016350598525650"},{"denom":"ASSET8","index":"0.000023557479628432"},{"denom":"ASSET9","index":"0.000009443226065271"}],"last_reward_claim_height":"185"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET8","shares":"708272062.000000000000000000","reward_history":[],"last_reward_claim_height":"28"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET10","shares":"329009106.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001679222100186"},{"denom":"ASSET1","index":"0.000013999028794594"},{"denom":"ASSET10","index":"0.000009753438641601"},{"denom":"ASSET11","index":"0.000013542280383343"},{"denom":"ASSET12","index":"0.000012194769233410"},{"denom":"ASSET13","index":"0.000004196505199295"},{"denom":"ASSET14","index":"0.000012650484277214"},{"denom":"ASSET15","index":"0.000009045065257184"},{"denom":"ASSET16","index":"0.000006306124840851"},{"denom":"ASSET17","index":"0.000004478614512126"},{"denom":"ASSET18","index":"0.000002133387092820"},{"denom":"ASSET2","index":"0.000004132436417626"},{"denom":"ASSET3","index":"0.000001208523228411"},{"denom":"ASSET4","index":"0.000011376342215965"},{"denom":"ASSET5","index":"0.000000938297641211"},{"denom":"ASSET6","index":"0.000003818809397684"},{"denom":"ASSET7","index":"0.000005848343062154"},{"denom":"ASSET8","index":"0.000007631418590690"},{"denom":"ASSET9","index":"0.000003295925469872"}],"last_reward_claim_height":"120"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET15","shares":"394692004.479671707017926298","reward_history":[{"denom":"ASSET0","index":"0.000003295755498274"},{"denom":"ASSET1","index":"0.000027960125957180"},{"denom":"ASSET10","index":"0.000022298091456525"},{"denom":"ASSET11","index":"0.000027779779629540"},{"denom":"ASSET12","index":"0.000026478335493542"},{"denom":"ASSET13","index":"0.000008724566942758"},{"denom":"ASSET14","index":"0.000025500389224880"},{"denom":"ASSET15","index":"0.000020088119547171"},{"denom":"ASSET16","index":"0.000012404652968467"},{"denom":"ASSET17","index":"0.000009730254100732"},{"denom":"ASSET18","index":"0.000004025857251145"},{"denom":"ASSET2","index":"0.000008465992991141"},{"denom":"ASSET3","index":"0.000002352288079447"},{"denom":"ASSET4","index":"0.000022667879187178"},{"denom":"ASSET5","index":"0.000001832649164275"},{"denom":"ASSET6","index":"0.000007396215489940"},{"denom":"ASSET7","index":"0.000011616026271508"},{"denom":"ASSET8","index":"0.000015861127767022"},{"denom":"ASSET9","index":"0.000006733269226830"}],"last_reward_claim_height":"178"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET4","shares":"1733535.018449267537188208","reward_history":[{"denom":"ASSET0","index":"0.000001488486853561"},{"denom":"ASSET1","index":"0.000012409943784184"},{"denom":"ASSET10","index":"0.000008645838046025"},{"denom":"ASSET11","index":"0.000012005445379346"},{"denom":"ASSET12","index":"0.000010810451131374"},{"denom":"ASSET13","index":"0.000003720376180879"},{"denom":"ASSET14","index":"0.000011214949536212"},{"denom":"ASSET15","index":"0.000008018487089665"},{"denom":"ASSET16","index":"0.000005590655707614"},{"denom":"ASSET17","index":"0.000003970139229188"},{"denom":"ASSET18","index":"0.000001891303352350"},{"denom":"ASSET2","index":"0.000003663191375205"},{"denom":"ASSET3","index":"0.000001071374153354"},{"denom":"ASSET4","index":"0.000010085549624159"},{"denom":"ASSET5","index":"0.000000831702541340"},{"denom":"ASSET6","index":"0.000003384835924059"},{"denom":"ASSET7","index":"0.000005184475396726"},{"denom":"ASSET8","index":"0.000006765467082995"},{"denom":"ASSET9","index":"0.000002921470807498"}],"last_reward_claim_height":"112"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET13","shares":"372157983.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001488486853561"},{"denom":"ASSET1","index":"0.000012409943784184"},{"denom":"ASSET10","index":"0.000008645838046025"},{"denom":"ASSET11","index":"0.000012005445379346"},{"denom":"ASSET12","index":"0.000010810451131374"},{"denom":"ASSET13","index":"0.000003720376180879"},{"denom":"ASSET14","index":"0.000011214949536212"},{"denom":"ASSET15","index":"0.000008018487089665"},{"denom":"ASSET16","index":"0.000005590655707614"},{"denom":"ASSET17","index":"0.000003970139229188"},{"denom":"ASSET18","index":"0.000001891303352350"},{"denom":"ASSET2","index":"0.000003663191375205"},{"denom":"ASSET3","index":"0.000001071374153354"},{"denom":"ASSET4","index":"0.000010085549624159"},{"denom":"ASSET5","index":"0.000000831702541340"},{"denom":"ASSET6","index":"0.000003384835924059"},{"denom":"ASSET7","index":"0.000005184475396726"},{"denom":"ASSET8","index":"0.000006765467082995"},{"denom":"ASSET9","index":"0.000002921470807498"}],"last_reward_claim_height":"112"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET14","shares":"1596358986.105842087701772485","reward_history":[{"denom":"ASSET0","index":"0.000003140601357292"},{"denom":"ASSET1","index":"0.000026678854887219"},{"denom":"ASSET10","index":"0.000021467437308134"},{"denom":"ASSET11","index":"0.000026557150856893"},{"denom":"ASSET12","index":"0.000025409189778577"},{"denom":"ASSET13","index":"0.000008348678217638"},{"denom":"ASSET14","index":"0.000024348515645151"},{"denom":"ASSET15","index":"0.000019305257093893"},{"denom":"ASSET16","index":"0.000011824039078448"},{"denom":"ASSET17","index":"0.000009337874135725"},{"denom":"ASSET18","index":"0.000003825021517438"},{"denom":"ASSET2","index":"0.000008092644314938"},{"denom":"ASSET3","index":"0.000002240059115813"},{"denom":"ASSET4","index":"0.000021626536887159"},{"denom":"ASSET5","index":"0.000001745574888449"},{"denom":"ASSET6","index":"0.000007040920669072"},{"denom":"ASSET7","index":"0.000011079696231301"},{"denom":"ASSET8","index":"0.000015176664815864"},{"denom":"ASSET9","index":"0.000006434669973810"}],"last_reward_claim_height":"143"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET1","shares":"39406848.999999988079140009","reward_history":[{"denom":"ASSET0","index":"0.000001385039568420"},{"denom":"ASSET1","index":"0.000011547928050470"},{"denom":"ASSET10","index":"0.000008045290512347"},{"denom":"ASSET11","index":"0.000011171268467624"},{"denom":"ASSET12","index":"0.000010059084660007"},{"denom":"ASSET13","index":"0.000003461116009305"},{"denom":"ASSET14","index":"0.000010435744242853"},{"denom":"ASSET15","index":"0.000007461023285412"},{"denom":"ASSET16","index":"0.000005202054396163"},{"denom":"ASSET17","index":"0.000003694427456948"},{"denom":"ASSET18","index":"0.000001759721935608"},{"denom":"ASSET2","index":"0.000003408719794369"},{"denom":"ASSET3","index":"0.000000996516691625"},{"denom":"ASSET4","index":"0.000009383865512804"},{"denom":"ASSET5","index":"0.000000774079930102"},{"denom":"ASSET6","index":"0.000003149704543173"},{"denom":"ASSET7","index":"0.000004824406205487"},{"denom":"ASSET8","index":"0.000006294466047200"},{"denom":"ASSET9","index":"0.000002718671529731"}],"last_reward_claim_height":"117"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET2","shares":"447990403.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002978674281858"},{"denom":"ASSET1","index":"0.000025310372422717"},{"denom":"ASSET10","index":"0.000020411345436720"},{"denom":"ASSET11","index":"0.000025206262983954"},{"denom":"ASSET12","index":"0.000024139567910062"},{"denom":"ASSET13","index":"0.000007924745788344"},{"denom":"ASSET14","index":"0.000023102636423037"},{"denom":"ASSET15","index":"0.000018346974201526"},{"denom":"ASSET16","index":"0.000011213830154915"},{"denom":"ASSET17","index":"0.000008871351161454"},{"denom":"ASSET18","index":"0.000003625142276595"},{"denom":"ASSET2","index":"0.000007680838181843"},{"denom":"ASSET3","index":"0.000002123796319816"},{"denom":"ASSET4","index":"0.000020514843977806"},{"denom":"ASSET5","index":"0.000001655567492872"},{"denom":"ASSET6","index":"0.000006676037052519"},{"denom":"ASSET7","index":"0.000010510115662832"},{"denom":"ASSET8","index":"0.000014407133239162"},{"denom":"ASSET9","index":"0.000006107008804836"}],"last_reward_claim_height":"126"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET9","shares":"557401514.577722003812774730","reward_history":[{"denom":"ASSET0","index":"0.000004571301207273"},{"denom":"ASSET1","index":"0.000037398660191278"},{"denom":"ASSET10","index":"0.000032687755580364"},{"denom":"ASSET11","index":"0.000038977675941701"},{"denom":"ASSET12","index":"0.000037204809376495"},{"denom":"ASSET13","index":"0.000012591938399451"},{"denom":"ASSET14","index":"0.000035936287844387"},{"denom":"ASSET15","index":"0.000029303202324073"},{"denom":"ASSET16","index":"0.000016581018522800"},{"denom":"ASSET17","index":"0.000013510277910648"},{"denom":"ASSET18","index":"0.000005573586522557"},{"denom":"ASSET2","index":"0.000011303144015187"},{"denom":"ASSET3","index":"0.000003243979553262"},{"denom":"ASSET4","index":"0.000030664188630460"},{"denom":"ASSET5","index":"0.000002548911246263"},{"denom":"ASSET6","index":"0.000010403330372967"},{"denom":"ASSET7","index":"0.000016081578326893"},{"denom":"ASSET8","index":"0.000023245084416019"},{"denom":"ASSET9","index":"0.000009298675918452"}],"last_reward_claim_height":"189"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET11","shares":"875929994.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002978674281858"},{"denom":"ASSET1","index":"0.000025310372422717"},{"denom":"ASSET10","index":"0.000020411345436720"},{"denom":"ASSET11","index":"0.000025206262983954"},{"denom":"ASSET12","index":"0.000024139567910062"},{"denom":"ASSET13","index":"0.000007924745788344"},{"denom":"ASSET14","index":"0.000023102636423037"},{"denom":"ASSET15","index":"0.000018346974201526"},{"denom":"ASSET16","index":"0.000011213830154915"},{"denom":"ASSET17","index":"0.000008871351161454"},{"denom":"ASSET18","index":"0.000003625142276595"},{"denom":"ASSET2","index":"0.000007680838181843"},{"denom":"ASSET3","index":"0.000002123796319816"},{"denom":"ASSET4","index":"0.000020514843977806"},{"denom":"ASSET5","index":"0.000001655567492872"},{"denom":"ASSET6","index":"0.000006676037052519"},{"denom":"ASSET7","index":"0.000010510115662832"},{"denom":"ASSET8","index":"0.000014407133239162"},{"denom":"ASSET9","index":"0.000006107008804836"}],"last_reward_claim_height":"171"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET18","shares":"508194376.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002978674281858"},{"denom":"ASSET1","index":"0.000025310372422717"},{"denom":"ASSET10","index":"0.000020411345436720"},{"denom":"ASSET11","index":"0.000025206262983954"},{"denom":"ASSET12","index":"0.000024139567910062"},{"denom":"ASSET13","index":"0.000007924745788344"},{"denom":"ASSET14","index":"0.000023102636423037"},{"denom":"ASSET15","index":"0.000018346974201526"},{"denom":"ASSET16","index":"0.000011213830154915"},{"denom":"ASSET17","index":"0.000008871351161454"},{"denom":"ASSET18","index":"0.000003625142276595"},{"denom":"ASSET2","index":"0.000007680838181843"},{"denom":"ASSET3","index":"0.000002123796319816"},{"denom":"ASSET4","index":"0.000020514843977806"},{"denom":"ASSET5","index":"0.000001655567492872"},{"denom":"ASSET6","index":"0.000006676037052519"},{"denom":"ASSET7","index":"0.000010510115662832"},{"denom":"ASSET8","index":"0.000014407133239162"},{"denom":"ASSET9","index":"0.000006107008804836"}],"last_reward_claim_height":"155"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET1","shares":"32240305.888482949311134018","reward_history":[{"denom":"ASSET0","index":"0.000003115193601728"},{"denom":"ASSET1","index":"0.000026433576226141"},{"denom":"ASSET10","index":"0.000021120836274624"},{"denom":"ASSET11","index":"0.000026274076149270"},{"denom":"ASSET12","index":"0.000025063206789151"},{"denom":"ASSET13","index":"0.000008253838888439"},{"denom":"ASSET14","index":"0.000024111622086359"},{"denom":"ASSET15","index":"0.000019020166052921"},{"denom":"ASSET16","index":"0.000011725264187843"},{"denom":"ASSET17","index":"0.000009210335248597"},{"denom":"ASSET18","index":"0.000003802618681808"},{"denom":"ASSET2","index":"0.000008007094168018"},{"denom":"ASSET3","index":"0.000002223045227271"},{"denom":"ASSET4","index":"0.000021430343290469"},{"denom":"ASSET5","index":"0.000001731871182363"},{"denom":"ASSET6","index":"0.000006989160352022"},{"denom":"ASSET7","index":"0.000010981276608696"},{"denom":"ASSET8","index":"0.000015004007461071"},{"denom":"ASSET9","index":"0.000006368316319391"}],"last_reward_claim_height":"131"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET2","shares":"252692021.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001563741356289"},{"denom":"ASSET1","index":"0.000013036816883138"},{"denom":"ASSET10","index":"0.000009082880828100"},{"denom":"ASSET11","index":"0.000012611783735587"},{"denom":"ASSET12","index":"0.000011356772924286"},{"denom":"ASSET13","index":"0.000003908472310400"},{"denom":"ASSET14","index":"0.000011781101207579"},{"denom":"ASSET15","index":"0.000008423480314776"},{"denom":"ASSET16","index":"0.000005872928997340"},{"denom":"ASSET17","index":"0.000004170681814362"},{"denom":"ASSET18","index":"0.000001986659911066"},{"denom":"ASSET2","index":"0.000003848558848473"},{"denom":"ASSET3","index":"0.000001125668219966"},{"denom":"ASSET4","index":"0.000010594814661429"},{"denom":"ASSET5","index":"0.000000873679247744"},{"denom":"ASSET6","index":"0.000003556392613548"},{"denom":"ASSET7","index":"0.000005446486121273"},{"denom":"ASSET8","index":"0.000007106793880903"},{"denom":"ASSET9","index":"0.000003069683843425"}],"last_reward_claim_height":"109"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET3","shares":"530548199.000000001859761580","reward_history":[],"last_reward_claim_height":"40"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET4","shares":"919159252.130466703868286545","reward_history":[{"denom":"ASSET0","index":"0.000004552871680963"},{"denom":"ASSET1","index":"0.000037344847719320"},{"denom":"ASSET10","index":"0.000032201926145827"},{"denom":"ASSET11","index":"0.000038704703073052"},{"denom":"ASSET12","index":"0.000036856280286787"},{"denom":"ASSET13","index":"0.000012466588224704"},{"denom":"ASSET14","index":"0.000035695703416346"},{"denom":"ASSET15","index":"0.000028909589243734"},{"denom":"ASSET16","index":"0.000016569690881810"},{"denom":"ASSET17","index":"0.000013397621621605"},{"denom":"ASSET18","index":"0.000005561325967019"},{"denom":"ASSET2","index":"0.000011276538650114"},{"denom":"ASSET3","index":"0.000003234120737490"},{"denom":"ASSET4","index":"0.000030591329863206"},{"denom":"ASSET5","index":"0.000002538263641792"},{"denom":"ASSET6","index":"0.000010353601273959"},{"denom":"ASSET7","index":"0.000016010407720744"},{"denom":"ASSET8","index":"0.000022981553849239"},{"denom":"ASSET9","index":"0.000009249156808408"}],"last_reward_claim_height":"184"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET7","shares":"262067102.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003115193601728"},{"denom":"ASSET1","index":"0.000026433576226141"},{"denom":"ASSET10","index":"0.000021120836274624"},{"denom":"ASSET11","index":"0.000026274076149270"},{"denom":"ASSET12","index":"0.000025063206789151"},{"denom":"ASSET13","index":"0.000008253838888439"},{"denom":"ASSET14","index":"0.000024111622086359"},{"denom":"ASSET15","index":"0.000019020166052921"},{"denom":"ASSET16","index":"0.000011725264187843"},{"denom":"ASSET17","index":"0.000009210335248597"},{"denom":"ASSET18","index":"0.000003802618681808"},{"denom":"ASSET2","index":"0.000008007094168018"},{"denom":"ASSET3","index":"0.000002223045227271"},{"denom":"ASSET4","index":"0.000021430343290469"},{"denom":"ASSET5","index":"0.000001731871182363"},{"denom":"ASSET6","index":"0.000006989160352022"},{"denom":"ASSET7","index":"0.000010981276608696"},{"denom":"ASSET8","index":"0.000015004007461071"},{"denom":"ASSET9","index":"0.000006368316319391"}],"last_reward_claim_height":"163"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET7","shares":"237466919.510099122863370780","reward_history":[{"denom":"ASSET0","index":"0.000004944013332327"},{"denom":"ASSET1","index":"0.000040514572296257"},{"denom":"ASSET10","index":"0.000034983500216774"},{"denom":"ASSET11","index":"0.000042030409881091"},{"denom":"ASSET12","index":"0.000040011826209544"},{"denom":"ASSET13","index":"0.000013544638275826"},{"denom":"ASSET14","index":"0.000038770981448347"},{"denom":"ASSET15","index":"0.000031407830483843"},{"denom":"ASSET16","index":"0.000017976642481408"},{"denom":"ASSET17","index":"0.000014540265092749"},{"denom":"ASSET18","index":"0.000006039382273098"},{"denom":"ASSET2","index":"0.000012231113154221"},{"denom":"ASSET3","index":"0.000003510948218078"},{"denom":"ASSET4","index":"0.000033197360832209"},{"denom":"ASSET5","index":"0.000002756014481548"},{"denom":"ASSET6","index":"0.000011247123077836"},{"denom":"ASSET7","index":"0.000017382880386713"},{"denom":"ASSET8","index":"0.000024978933020084"},{"denom":"ASSET9","index":"0.000010039663368988"}],"last_reward_claim_height":"196"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET12","shares":"649325086.000000007987655901","reward_history":[{"denom":"ASSET0","index":"0.000004944013332327"},{"denom":"ASSET1","index":"0.000040514572296257"},{"denom":"ASSET10","index":"0.000034983500216774"},{"denom":"ASSET11","index":"0.000042030409881091"},{"denom":"ASSET12","index":"0.000040011826209544"},{"denom":"ASSET13","index":"0.000013544638275826"},{"denom":"ASSET14","index":"0.000038770981448347"},{"denom":"ASSET15","index":"0.000031407830483843"},{"denom":"ASSET16","index":"0.000017976642481408"},{"denom":"ASSET17","index":"0.000014540265092749"},{"denom":"ASSET18","index":"0.000006039382273098"},{"denom":"ASSET2","index":"0.000012231113154221"},{"denom":"ASSET3","index":"0.000003510948218078"},{"denom":"ASSET4","index":"0.000033197360832209"},{"denom":"ASSET5","index":"0.000002756014481548"},{"denom":"ASSET6","index":"0.000011247123077836"},{"denom":"ASSET7","index":"0.000017382880386713"},{"denom":"ASSET8","index":"0.000024978933020084"},{"denom":"ASSET9","index":"0.000010039663368988"}],"last_reward_claim_height":"195"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET17","shares":"26629314.694257431537165376","reward_history":[{"denom":"ASSET0","index":"0.000003342989987813"},{"denom":"ASSET1","index":"0.000028363859076608"},{"denom":"ASSET10","index":"0.000022643596968544"},{"denom":"ASSET11","index":"0.000028187678804911"},{"denom":"ASSET12","index":"0.000026879157824253"},{"denom":"ASSET13","index":"0.000008853292918908"},{"denom":"ASSET14","index":"0.000025870927331183"},{"denom":"ASSET15","index":"0.000020395094195043"},{"denom":"ASSET16","index":"0.000012581780801373"},{"denom":"ASSET17","index":"0.000009877287329505"},{"denom":"ASSET18","index":"0.000004080927248291"},{"denom":"ASSET2","index":"0.000008590241612281"},{"denom":"ASSET3","index":"0.000002384972961476"},{"denom":"ASSET4","index":"0.000022995501297970"},{"denom":"ASSET5","index":"0.000001858071035633"},{"denom":"ASSET6","index":"0.000007500418590266"},{"denom":"ASSET7","index":"0.000011782462758670"},{"denom":"ASSET8","index":"0.000016095075530395"},{"denom":"ASSET9","index":"0.000006831506736707"}],"last_reward_claim_height":"160"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET0","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"31"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET5","shares":"339231430.572257912236498054","reward_history":[{"denom":"ASSET0","index":"0.000004669971272186"},{"denom":"ASSET1","index":"0.000038231704002672"},{"denom":"ASSET10","index":"0.000033091250938378"},{"denom":"ASSET11","index":"0.000039713430623018"},{"denom":"ASSET12","index":"0.000037806000956516"},{"denom":"ASSET13","index":"0.000012808127444565"},{"denom":"ASSET14","index":"0.000036638483282357"},{"denom":"ASSET15","index":"0.000029705512900617"},{"denom":"ASSET16","index":"0.000016963968278157"},{"denom":"ASSET17","index":"0.000013734289189195"},{"denom":"ASSET18","index":"0.000005705789092476"},{"denom":"ASSET2","index":"0.000011540719323858"},{"denom":"ASSET3","index":"0.000003316647299566"},{"denom":"ASSET4","index":"0.000031336158437819"},{"denom":"ASSET5","index":"0.000002604041216482"},{"denom":"ASSET6","index":"0.000010629036009854"},{"denom":"ASSET7","index":"0.000016420030654063"},{"denom":"ASSET8","index":"0.000023629608551740"},{"denom":"ASSET9","index":"0.000009482511489526"}],"last_reward_claim_height":"197"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET10","shares":"42635981.735340219231663615","reward_history":[{"denom":"ASSET0","index":"0.000003113134051861"},{"denom":"ASSET1","index":"0.000026415094552464"},{"denom":"ASSET10","index":"0.000021090707465492"},{"denom":"ASSET11","index":"0.000026251548228726"},{"denom":"ASSET12","index":"0.000025034408517114"},{"denom":"ASSET13","index":"0.000008245703890405"},{"denom":"ASSET14","index":"0.000024093200316600"},{"denom":"ASSET15","index":"0.000018995578271326"},{"denom":"ASSET16","index":"0.000011717396138812"},{"denom":"ASSET17","index":"0.000009199501798709"},{"denom":"ASSET18","index":"0.000003801350346824"},{"denom":"ASSET2","index":"0.000007999912620195"},{"denom":"ASSET3","index":"0.000002221641081089"},{"denom":"ASSET4","index":"0.000021415082747190"},{"denom":"ASSET5","index":"0.000001730738444371"},{"denom":"ASSET6","index":"0.000006985361363625"},{"denom":"ASSET7","index":"0.000010973556930807"},{"denom":"ASSET8","index":"0.000014990236718633"},{"denom":"ASSET9","index":"0.000006362695679170"}],"last_reward_claim_height":"168"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET11","shares":"40658171.000000000000000000","reward_history":[],"last_reward_claim_height":"13"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET12","shares":"140344110.900450902401713681","reward_history":[{"denom":"ASSET0","index":"0.000003113134051861"},{"denom":"ASSET1","index":"0.000026415094552464"},{"denom":"ASSET10","index":"0.000021090707465492"},{"denom":"ASSET11","index":"0.000026251548228726"},{"denom":"ASSET12","index":"0.000025034408517114"},{"denom":"ASSET13","index":"0.000008245703890405"},{"denom":"ASSET14","index":"0.000024093200316600"},{"denom":"ASSET15","index":"0.000018995578271326"},{"denom":"ASSET16","index":"0.000011717396138812"},{"denom":"ASSET17","index":"0.000009199501798709"},{"denom":"ASSET18","index":"0.000003801350346824"},{"denom":"ASSET2","index":"0.000007999912620195"},{"denom":"ASSET3","index":"0.000002221641081089"},{"denom":"ASSET4","index":"0.000021415082747190"},{"denom":"ASSET5","index":"0.000001730738444371"},{"denom":"ASSET6","index":"0.000006985361363625"},{"denom":"ASSET7","index":"0.000010973556930807"},{"denom":"ASSET8","index":"0.000014990236718633"},{"denom":"ASSET9","index":"0.000006362695679170"}],"last_reward_claim_height":"168"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET10","shares":"409259811.439210741759173612","reward_history":[{"denom":"ASSET0","index":"0.000001486431692511"},{"denom":"ASSET1","index":"0.000012397696164316"},{"denom":"ASSET10","index":"0.000008637613387551"},{"denom":"ASSET11","index":"0.000011993186507636"},{"denom":"ASSET12","index":"0.000010799842650204"},{"denom":"ASSET13","index":"0.000003716482933529"},{"denom":"ASSET14","index":"0.000011203544902380"},{"denom":"ASSET15","index":"0.000008010260087670"},{"denom":"ASSET16","index":"0.000005584816956599"},{"denom":"ASSET17","index":"0.000003965970925374"},{"denom":"ASSET18","index":"0.000001889326540182"},{"denom":"ASSET2","index":"0.000003659157213720"},{"denom":"ASSET3","index":"0.000001070618372770"},{"denom":"ASSET4","index":"0.000010074793405297"},{"denom":"ASSET5","index":"0.000000830819234978"},{"denom":"ASSET6","index":"0.000003381410064224"},{"denom":"ASSET7","index":"0.000005179499895414"},{"denom":"ASSET8","index":"0.000006757975701421"},{"denom":"ASSET9","index":"0.000002918767283230"}],"last_reward_claim_height":"119"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET11","shares":"630235501.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001486431692511"},{"denom":"ASSET1","index":"0.000012397696164316"},{"denom":"ASSET10","index":"0.000008637613387551"},{"denom":"ASSET11","index":"0.000011993186507636"},{"denom":"ASSET12","index":"0.000010799842650204"},{"denom":"ASSET13","index":"0.000003716482933529"},{"denom":"ASSET14","index":"0.000011203544902380"},{"denom":"ASSET15","index":"0.000008010260087670"},{"denom":"ASSET16","index":"0.000005584816956599"},{"denom":"ASSET17","index":"0.000003965970925374"},{"denom":"ASSET18","index":"0.000001889326540182"},{"denom":"ASSET2","index":"0.000003659157213720"},{"denom":"ASSET3","index":"0.000001070618372770"},{"denom":"ASSET4","index":"0.000010074793405297"},{"denom":"ASSET5","index":"0.000000830819234978"},{"denom":"ASSET6","index":"0.000003381410064224"},{"denom":"ASSET7","index":"0.000005179499895414"},{"denom":"ASSET8","index":"0.000006757975701421"},{"denom":"ASSET9","index":"0.000002918767283230"}],"last_reward_claim_height":"95"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET1","shares":"596241648.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003488279034648"},{"denom":"ASSET1","index":"0.000029592208548275"},{"denom":"ASSET10","index":"0.000023577626976592"},{"denom":"ASSET11","index":"0.000029395914355993"},{"denom":"ASSET12","index":"0.000028007798530295"},{"denom":"ASSET13","index":"0.000009231498766276"},{"denom":"ASSET14","index":"0.000026986732997785"},{"denom":"ASSET15","index":"0.000021244630549189"},{"denom":"ASSET16","index":"0.000013129960095172"},{"denom":"ASSET17","index":"0.000010292381952670"},{"denom":"ASSET18","index":"0.000004261641431672"},{"denom":"ASSET2","index":"0.000008958343988321"},{"denom":"ASSET3","index":"0.000002489657102823"},{"denom":"ASSET4","index":"0.000023991917258738"},{"denom":"ASSET5","index":"0.000001939742890351"},{"denom":"ASSET6","index":"0.000007829259808535"},{"denom":"ASSET7","index":"0.000012294264842111"},{"denom":"ASSET8","index":"0.000016782088113605"},{"denom":"ASSET9","index":"0.000007125719490615"}],"last_reward_claim_height":"180"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET13","shares":"608093428.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003488279034648"},{"denom":"ASSET1","index":"0.000029592208548275"},{"denom":"ASSET10","index":"0.000023577626976592"},{"denom":"ASSET11","index":"0.000029395914355993"},{"denom":"ASSET12","index":"0.000028007798530295"},{"denom":"ASSET13","index":"0.000009231498766276"},{"denom":"ASSET14","index":"0.000026986732997785"},{"denom":"ASSET15","index":"0.000021244630549189"},{"denom":"ASSET16","index":"0.000013129960095172"},{"denom":"ASSET17","index":"0.000010292381952670"},{"denom":"ASSET18","index":"0.000004261641431672"},{"denom":"ASSET2","index":"0.000008958343988321"},{"denom":"ASSET3","index":"0.000002489657102823"},{"denom":"ASSET4","index":"0.000023991917258738"},{"denom":"ASSET5","index":"0.000001939742890351"},{"denom":"ASSET6","index":"0.000007829259808535"},{"denom":"ASSET7","index":"0.000012294264842111"},{"denom":"ASSET8","index":"0.000016782088113605"},{"denom":"ASSET9","index":"0.000007125719490615"}],"last_reward_claim_height":"162"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET15","shares":"761406380.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001789525520762"},{"denom":"ASSET1","index":"0.000014923544215299"},{"denom":"ASSET10","index":"0.000010397506905977"},{"denom":"ASSET11","index":"0.000014436898494348"},{"denom":"ASSET12","index":"0.000013000171779235"},{"denom":"ASSET13","index":"0.000004474200642702"},{"denom":"ASSET14","index":"0.000013486043818595"},{"denom":"ASSET15","index":"0.000009642393672833"},{"denom":"ASSET16","index":"0.000006722519347127"},{"denom":"ASSET17","index":"0.000004774389100140"},{"denom":"ASSET18","index":"0.000002273850196939"},{"denom":"ASSET2","index":"0.000004405342981073"},{"denom":"ASSET3","index":"0.000001288179849576"},{"denom":"ASSET4","index":"0.000012128232625798"},{"denom":"ASSET5","index":"0.000001000370297599"},{"denom":"ASSET6","index":"0.000004071112533615"},{"denom":"ASSET7","index":"0.000006234326262993"},{"denom":"ASSET8","index":"0.000008135261932908"},{"denom":"ASSET9","index":"0.000003514061787852"}],"last_reward_claim_height":"66"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET5","shares":"79761651.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003015423229771"},{"denom":"ASSET1","index":"0.000025588098096649"},{"denom":"ASSET10","index":"0.000020460473772645"},{"denom":"ASSET11","index":"0.000025438043766359"},{"denom":"ASSET12","index":"0.000024273358860204"},{"denom":"ASSET13","index":"0.000007991752317173"},{"denom":"ASSET14","index":"0.000023342063892494"},{"denom":"ASSET15","index":"0.000018422728556898"},{"denom":"ASSET16","index":"0.000011348811151398"},{"denom":"ASSET17","index":"0.000008919790197810"},{"denom":"ASSET18","index":"0.000003679502338318"},{"denom":"ASSET2","index":"0.000007752126098631"},{"denom":"ASSET3","index":"0.000002151933074669"},{"denom":"ASSET4","index":"0.000020744635257959"},{"denom":"ASSET5","index":"0.000001676458472807"},{"denom":"ASSET6","index":"0.000006763790928604"},{"denom":"ASSET7","index":"0.000010629564741383"},{"denom":"ASSET8","index":"0.000014527278079751"},{"denom":"ASSET9","index":"0.000006165283413682"}],"last_reward_claim_height":"145"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET6","shares":"771881166.548918683208986912","reward_history":[{"denom":"ASSET0","index":"0.000001504632489095"},{"denom":"ASSET1","index":"0.000012543084148708"},{"denom":"ASSET10","index":"0.000008738830231438"},{"denom":"ASSET11","index":"0.000012134501498699"},{"denom":"ASSET12","index":"0.000010926897843985"},{"denom":"ASSET13","index":"0.000003760573206331"},{"denom":"ASSET14","index":"0.000011335480493994"},{"denom":"ASSET15","index":"0.000008104451906425"},{"denom":"ASSET16","index":"0.000005650267962622"},{"denom":"ASSET17","index":"0.000004012577307899"},{"denom":"ASSET18","index":"0.000001911199106291"},{"denom":"ASSET2","index":"0.000003702780265705"},{"denom":"ASSET3","index":"0.000001083281631273"},{"denom":"ASSET4","index":"0.000010193733911157"},{"denom":"ASSET5","index":"0.000000840685682831"},{"denom":"ASSET6","index":"0.000003421207682886"},{"denom":"ASSET7","index":"0.000005240341290738"},{"denom":"ASSET8","index":"0.000006837711289210"},{"denom":"ASSET9","index":"0.000002953488070376"}],"last_reward_claim_height":"81"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET11","shares":"936554919.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001504632489095"},{"denom":"ASSET1","index":"0.000012543084148708"},{"denom":"ASSET10","index":"0.000008738830231438"},{"denom":"ASSET11","index":"0.000012134501498699"},{"denom":"ASSET12","index":"0.000010926897843985"},{"denom":"ASSET13","index":"0.000003760573206331"},{"denom":"ASSET14","index":"0.000011335480493994"},{"denom":"ASSET15","index":"0.000008104451906425"},{"denom":"ASSET16","index":"0.000005650267962622"},{"denom":"ASSET17","index":"0.000004012577307899"},{"denom":"ASSET18","index":"0.000001911199106291"},{"denom":"ASSET2","index":"0.000003702780265705"},{"denom":"ASSET3","index":"0.000001083281631273"},{"denom":"ASSET4","index":"0.000010193733911157"},{"denom":"ASSET5","index":"0.000000840685682831"},{"denom":"ASSET6","index":"0.000003421207682886"},{"denom":"ASSET7","index":"0.000005240341290738"},{"denom":"ASSET8","index":"0.000006837711289210"},{"denom":"ASSET9","index":"0.000002953488070376"}],"last_reward_claim_height":"83"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET12","shares":"270569770.372210084591667668","reward_history":[{"denom":"ASSET0","index":"0.000004555079465444"},{"denom":"ASSET1","index":"0.000037273549067376"},{"denom":"ASSET10","index":"0.000032327684804267"},{"denom":"ASSET11","index":"0.000038750612688183"},{"denom":"ASSET12","index":"0.000036903207760820"},{"denom":"ASSET13","index":"0.000012503456656218"},{"denom":"ASSET14","index":"0.000035748189968481"},{"denom":"ASSET15","index":"0.000029013847228438"},{"denom":"ASSET16","index":"0.000016537106119195"},{"denom":"ASSET17","index":"0.000013404148016668"},{"denom":"ASSET18","index":"0.000005562876043231"},{"denom":"ASSET2","index":"0.000011253659411821"},{"denom":"ASSET3","index":"0.000003234713826536"},{"denom":"ASSET4","index":"0.000030555670866593"},{"denom":"ASSET5","index":"0.000002539995571455"},{"denom":"ASSET6","index":"0.000010366930709039"},{"denom":"ASSET7","index":"0.000016015414742941"},{"denom":"ASSET8","index":"0.000023070708179395"},{"denom":"ASSET9","index":"0.000009250489531619"}],"last_reward_claim_height":"186"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET13","shares":"330950648.999999999049370885","reward_history":[{"denom":"ASSET0","index":"0.000001504632489095"},{"denom":"ASSET1","index":"0.000012543084148708"},{"denom":"ASSET10","index":"0.000008738830231438"},{"denom":"ASSET11","index":"0.000012134501498699"},{"denom":"ASSET12","index":"0.000010926897843985"},{"denom":"ASSET13","index":"0.000003760573206331"},{"denom":"ASSET14","index":"0.000011335480493994"},{"denom":"ASSET15","index":"0.000008104451906425"},{"denom":"ASSET16","index":"0.000005650267962622"},{"denom":"ASSET17","index":"0.000004012577307899"},{"denom":"ASSET18","index":"0.000001911199106291"},{"denom":"ASSET2","index":"0.000003702780265705"},{"denom":"ASSET3","index":"0.000001083281631273"},{"denom":"ASSET4","index":"0.000010193733911157"},{"denom":"ASSET5","index":"0.000000840685682831"},{"denom":"ASSET6","index":"0.000003421207682886"},{"denom":"ASSET7","index":"0.000005240341290738"},{"denom":"ASSET8","index":"0.000006837711289210"},{"denom":"ASSET9","index":"0.000002953488070376"}],"last_reward_claim_height":"64"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET16","shares":"335111939.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003015423229771"},{"denom":"ASSET1","index":"0.000025588098096649"},{"denom":"ASSET10","index":"0.000020460473772645"},{"denom":"ASSET11","index":"0.000025438043766359"},{"denom":"ASSET12","index":"0.000024273358860204"},{"denom":"ASSET13","index":"0.000007991752317173"},{"denom":"ASSET14","index":"0.000023342063892494"},{"denom":"ASSET15","index":"0.000018422728556898"},{"denom":"ASSET16","index":"0.000011348811151398"},{"denom":"ASSET17","index":"0.000008919790197810"},{"denom":"ASSET18","index":"0.000003679502338318"},{"denom":"ASSET2","index":"0.000007752126098631"},{"denom":"ASSET3","index":"0.000002151933074669"},{"denom":"ASSET4","index":"0.000020744635257959"},{"denom":"ASSET5","index":"0.000001676458472807"},{"denom":"ASSET6","index":"0.000006763790928604"},{"denom":"ASSET7","index":"0.000010629564741383"},{"denom":"ASSET8","index":"0.000014527278079751"},{"denom":"ASSET9","index":"0.000006165283413682"}],"last_reward_claim_height":"160"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET18","shares":"84965720.000000000764691480","reward_history":[{"denom":"ASSET0","index":"0.000001504632489095"},{"denom":"ASSET1","index":"0.000012543084148708"},{"denom":"ASSET10","index":"0.000008738830231438"},{"denom":"ASSET11","index":"0.000012134501498699"},{"denom":"ASSET12","index":"0.000010926897843985"},{"denom":"ASSET13","index":"0.000003760573206331"},{"denom":"ASSET14","index":"0.000011335480493994"},{"denom":"ASSET15","index":"0.000008104451906425"},{"denom":"ASSET16","index":"0.000005650267962622"},{"denom":"ASSET17","index":"0.000004012577307899"},{"denom":"ASSET18","index":"0.000001911199106291"},{"denom":"ASSET2","index":"0.000003702780265705"},{"denom":"ASSET3","index":"0.000001083281631273"},{"denom":"ASSET4","index":"0.000010193733911157"},{"denom":"ASSET5","index":"0.000000840685682831"},{"denom":"ASSET6","index":"0.000003421207682886"},{"denom":"ASSET7","index":"0.000005240341290738"},{"denom":"ASSET8","index":"0.000006837711289210"},{"denom":"ASSET9","index":"0.000002953488070376"}],"last_reward_claim_height":"110"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET6","shares":"381546737.000000000000000000","reward_history":[],"last_reward_claim_height":"20"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET8","shares":"978485065.903245106002968928","reward_history":[{"denom":"ASSET0","index":"0.000003452635056994"},{"denom":"ASSET1","index":"0.000029280443630050"},{"denom":"ASSET10","index":"0.000023297581891953"},{"denom":"ASSET11","index":"0.000029078046899152"},{"denom":"ASSET12","index":"0.000027688393753974"},{"denom":"ASSET13","index":"0.000009130247174920"},{"denom":"ASSET14","index":"0.000026700258191979"},{"denom":"ASSET15","index":"0.000020998119885469"},{"denom":"ASSET16","index":"0.000012993858989816"},{"denom":"ASSET17","index":"0.000010174919177657"},{"denom":"ASSET18","index":"0.000004220034662939"},{"denom":"ASSET2","index":"0.000008861755768133"},{"denom":"ASSET3","index":"0.000002464736347038"},{"denom":"ASSET4","index":"0.000023740327943060"},{"denom":"ASSET5","index":"0.000001919615043943"},{"denom":"ASSET6","index":"0.000007749671229698"},{"denom":"ASSET7","index":"0.000012165961282812"},{"denom":"ASSET8","index":"0.000016598407083950"},{"denom":"ASSET9","index":"0.000007048985746822"}],"last_reward_claim_height":"127"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET11","shares":"183727685.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001790270882045"},{"denom":"ASSET1","index":"0.000014924962381265"},{"denom":"ASSET10","index":"0.000010398687848362"},{"denom":"ASSET11","index":"0.000014438353512768"},{"denom":"ASSET12","index":"0.000013001639266884"},{"denom":"ASSET13","index":"0.000004474427888377"},{"denom":"ASSET14","index":"0.000013487623477013"},{"denom":"ASSET15","index":"0.000009643475881721"},{"denom":"ASSET16","index":"0.000006723198012370"},{"denom":"ASSET17","index":"0.000004774888563278"},{"denom":"ASSET18","index":"0.000002274381117071"},{"denom":"ASSET2","index":"0.000004405715467922"},{"denom":"ASSET3","index":"0.000001288670212721"},{"denom":"ASSET4","index":"0.000012129616185469"},{"denom":"ASSET5","index":"0.000001000078046809"},{"denom":"ASSET6","index":"0.000004071523241162"},{"denom":"ASSET7","index":"0.000006235339827137"},{"denom":"ASSET8","index":"0.000008136175240279"},{"denom":"ASSET9","index":"0.000003514327977106"}],"last_reward_claim_height":"88"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET9","shares":"7240485.000000001065858440","reward_history":[],"last_reward_claim_height":"58"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET10","shares":"540835209.000000000000000000","reward_history":[],"last_reward_claim_height":"34"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET14","shares":"17088918.999999999304211550","reward_history":[],"last_reward_claim_height":"24"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET16","shares":"977639627.970916243517361712","reward_history":[{"denom":"ASSET0","index":"0.000003336473275634"},{"denom":"ASSET1","index":"0.000028284037775138"},{"denom":"ASSET10","index":"0.000022321061137243"},{"denom":"ASSET11","index":"0.000028041053149272"},{"denom":"ASSET12","index":"0.000026607048139233"},{"denom":"ASSET13","index":"0.000008795774551756"},{"denom":"ASSET14","index":"0.000025776026947277"},{"denom":"ASSET15","index":"0.000020150006768141"},{"denom":"ASSET16","index":"0.000012562977954735"},{"denom":"ASSET17","index":"0.000009778271060189"},{"denom":"ASSET18","index":"0.000004091528532498"},{"denom":"ASSET2","index":"0.000008544798017437"},{"denom":"ASSET3","index":"0.000002382883485470"},{"denom":"ASSET4","index":"0.000022934405116164"},{"denom":"ASSET5","index":"0.000001855148612588"},{"denom":"ASSET6","index":"0.000007498692848558"},{"denom":"ASSET7","index":"0.000011756140274513"},{"denom":"ASSET8","index":"0.000015991743254740"},{"denom":"ASSET9","index":"0.000006799136288961"}],"last_reward_claim_height":"134"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET8","shares":"596299490.267307009849718074","reward_history":[{"denom":"ASSET0","index":"0.000003371223111771"},{"denom":"ASSET1","index":"0.000028586584995448"},{"denom":"ASSET10","index":"0.000022716281614844"},{"denom":"ASSET11","index":"0.000028381809067472"},{"denom":"ASSET12","index":"0.000027011101270499"},{"denom":"ASSET13","index":"0.000008910504058238"},{"denom":"ASSET14","index":"0.000026065694327630"},{"denom":"ASSET15","index":"0.000020479714095343"},{"denom":"ASSET16","index":"0.000012688778091614"},{"denom":"ASSET17","index":"0.000009925875585388"},{"denom":"ASSET18","index":"0.000004122881217339"},{"denom":"ASSET2","index":"0.000008649339803247"},{"denom":"ASSET3","index":"0.000002407313457267"},{"denom":"ASSET4","index":"0.000023177863483423"},{"denom":"ASSET5","index":"0.000001874397047373"},{"denom":"ASSET6","index":"0.000007568278053481"},{"denom":"ASSET7","index":"0.000011878402488901"},{"denom":"ASSET8","index":"0.000016198768839280"},{"denom":"ASSET9","index":"0.000006880150170591"}],"last_reward_claim_height":"168"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET2","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001519402004985"},{"denom":"ASSET1","index":"0.000012669186594649"},{"denom":"ASSET10","index":"0.000008826466179926"},{"denom":"ASSET11","index":"0.000012255973562605"},{"denom":"ASSET12","index":"0.000011036700348729"},{"denom":"ASSET13","index":"0.000003798237040326"},{"denom":"ASSET14","index":"0.000011448841492233"},{"denom":"ASSET15","index":"0.000008185476833202"},{"denom":"ASSET16","index":"0.000005707270529482"},{"denom":"ASSET17","index":"0.000004053346512768"},{"denom":"ASSET18","index":"0.000001930471259949"},{"denom":"ASSET2","index":"0.000003739819114914"},{"denom":"ASSET3","index":"0.000001093862254735"},{"denom":"ASSET4","index":"0.000010296025367816"},{"denom":"ASSET5","index":"0.000000848935723420"},{"denom":"ASSET6","index":"0.000003455768651901"},{"denom":"ASSET7","index":"0.000005292985608899"},{"denom":"ASSET8","index":"0.000006906177861104"},{"denom":"ASSET9","index":"0.000002983065805906"}],"last_reward_claim_height":"64"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET6","shares":"465992393.403807024052602796","reward_history":[{"denom":"ASSET0","index":"0.000003090388166914"},{"denom":"ASSET1","index":"0.000026235396530584"},{"denom":"ASSET10","index":"0.000021016328726441"},{"denom":"ASSET11","index":"0.000026091077525301"},{"denom":"ASSET12","index":"0.000024916432469284"},{"denom":"ASSET13","index":"0.000008198423394567"},{"denom":"ASSET14","index":"0.000023935350029219"},{"denom":"ASSET15","index":"0.000018916111125702"},{"denom":"ASSET16","index":"0.000011633439861257"},{"denom":"ASSET17","index":"0.000009156707623184"},{"denom":"ASSET18","index":"0.000003769226369030"},{"denom":"ASSET2","index":"0.000007950992094695"},{"denom":"ASSET3","index":"0.000002205065882760"},{"denom":"ASSET4","index":"0.000021268551776440"},{"denom":"ASSET5","index":"0.000001717872208784"},{"denom":"ASSET6","index":"0.000006931889619894"},{"denom":"ASSET7","index":"0.000010897757198785"},{"denom":"ASSET8","index":"0.000014903243728132"},{"denom":"ASSET9","index":"0.000006323427167640"}],"last_reward_claim_height":"154"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET8","shares":"113442795.000000031099885169","reward_history":[{"denom":"ASSET0","index":"0.000003090388166914"},{"denom":"ASSET1","index":"0.000026235396530584"},{"denom":"ASSET10","index":"0.000021016328726441"},{"denom":"ASSET11","index":"0.000026091077525301"},{"denom":"ASSET12","index":"0.000024916432469284"},{"denom":"ASSET13","index":"0.000008198423394567"},{"denom":"ASSET14","index":"0.000023935350029219"},{"denom":"ASSET15","index":"0.000018916111125702"},{"denom":"ASSET16","index":"0.000011633439861257"},{"denom":"ASSET17","index":"0.000009156707623184"},{"denom":"ASSET18","index":"0.000003769226369030"},{"denom":"ASSET2","index":"0.000007950992094695"},{"denom":"ASSET3","index":"0.000002205065882760"},{"denom":"ASSET4","index":"0.000021268551776440"},{"denom":"ASSET5","index":"0.000001717872208784"},{"denom":"ASSET6","index":"0.000006931889619894"},{"denom":"ASSET7","index":"0.000010897757198785"},{"denom":"ASSET8","index":"0.000014903243728132"},{"denom":"ASSET9","index":"0.000006323427167640"}],"last_reward_claim_height":"176"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET14","shares":"516425749.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003090388166914"},{"denom":"ASSET1","index":"0.000026235396530584"},{"denom":"ASSET10","index":"0.000021016328726441"},{"denom":"ASSET11","index":"0.000026091077525301"},{"denom":"ASSET12","index":"0.000024916432469284"},{"denom":"ASSET13","index":"0.000008198423394567"},{"denom":"ASSET14","index":"0.000023935350029219"},{"denom":"ASSET15","index":"0.000018916111125702"},{"denom":"ASSET16","index":"0.000011633439861257"},{"denom":"ASSET17","index":"0.000009156707623184"},{"denom":"ASSET18","index":"0.000003769226369030"},{"denom":"ASSET2","index":"0.000007950992094695"},{"denom":"ASSET3","index":"0.000002205065882760"},{"denom":"ASSET4","index":"0.000021268551776440"},{"denom":"ASSET5","index":"0.000001717872208784"},{"denom":"ASSET6","index":"0.000006931889619894"},{"denom":"ASSET7","index":"0.000010897757198785"},{"denom":"ASSET8","index":"0.000014903243728132"},{"denom":"ASSET9","index":"0.000006323427167640"}],"last_reward_claim_height":"134"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET11","shares":"712367511.278512937922280434","reward_history":[{"denom":"ASSET0","index":"0.000003032310940473"},{"denom":"ASSET1","index":"0.000025733484746235"},{"denom":"ASSET10","index":"0.000020566326171769"},{"denom":"ASSET11","index":"0.000025579130700492"},{"denom":"ASSET12","index":"0.000024402998631681"},{"denom":"ASSET13","index":"0.000008035434808363"},{"denom":"ASSET14","index":"0.000023473377840860"},{"denom":"ASSET15","index":"0.000018519821992016"},{"denom":"ASSET16","index":"0.000011413808805814"},{"denom":"ASSET17","index":"0.000008967671528488"},{"denom":"ASSET18","index":"0.000003701450923042"},{"denom":"ASSET2","index":"0.000007795399667781"},{"denom":"ASSET3","index":"0.000002164126947351"},{"denom":"ASSET4","index":"0.000020862528644023"},{"denom":"ASSET5","index":"0.000001685967393794"},{"denom":"ASSET6","index":"0.000006803442800114"},{"denom":"ASSET7","index":"0.000010689840259007"},{"denom":"ASSET8","index":"0.000014607710652032"},{"denom":"ASSET9","index":"0.000006199747658625"}],"last_reward_claim_height":"163"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET13","shares":"592166608.000000000000000000","reward_history":[],"last_reward_claim_height":"38"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET16","shares":"735996981.879488133613948520","reward_history":[{"denom":"ASSET0","index":"0.000001518878942956"},{"denom":"ASSET1","index":"0.000012665267621292"},{"denom":"ASSET10","index":"0.000008823986077449"},{"denom":"ASSET11","index":"0.000012252067733139"},{"denom":"ASSET12","index":"0.000011032961258059"},{"denom":"ASSET13","index":"0.000003796959064490"},{"denom":"ASSET14","index":"0.000011445207974612"},{"denom":"ASSET15","index":"0.000008182978177143"},{"denom":"ASSET16","index":"0.000005705208605625"},{"denom":"ASSET17","index":"0.000004051932467214"},{"denom":"ASSET18","index":"0.000001930172487911"},{"denom":"ASSET2","index":"0.000003738815596953"},{"denom":"ASSET3","index":"0.000001093764409816"},{"denom":"ASSET4","index":"0.000010292823511460"},{"denom":"ASSET5","index":"0.000000848799308881"},{"denom":"ASSET6","index":"0.000003454770460461"},{"denom":"ASSET7","index":"0.000005291055545873"},{"denom":"ASSET8","index":"0.000006904298477127"},{"denom":"ASSET9","index":"0.000002981997347372"}],"last_reward_claim_height":"90"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET17","shares":"311813665.128814170634136952","reward_history":[{"denom":"ASSET0","index":"0.000003032310940473"},{"denom":"ASSET1","index":"0.000025733484746235"},{"denom":"ASSET10","index":"0.000020566326171769"},{"denom":"ASSET11","index":"0.000025579130700492"},{"denom":"ASSET12","index":"0.000024402998631681"},{"denom":"ASSET13","index":"0.000008035434808363"},{"denom":"ASSET14","index":"0.000023473377840860"},{"denom":"ASSET15","index":"0.000018519821992016"},{"denom":"ASSET16","index":"0.000011413808805814"},{"denom":"ASSET17","index":"0.000008967671528488"},{"denom":"ASSET18","index":"0.000003701450923042"},{"denom":"ASSET2","index":"0.000007795399667781"},{"denom":"ASSET3","index":"0.000002164126947351"},{"denom":"ASSET4","index":"0.000020862528644023"},{"denom":"ASSET5","index":"0.000001685967393794"},{"denom":"ASSET6","index":"0.000006803442800114"},{"denom":"ASSET7","index":"0.000010689840259007"},{"denom":"ASSET8","index":"0.000014607710652032"},{"denom":"ASSET9","index":"0.000006199747658625"}],"last_reward_claim_height":"141"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET13","shares":"73086912.600183951799088434","reward_history":[{"denom":"ASSET0","index":"0.000004425863510700"},{"denom":"ASSET1","index":"0.000036160672221872"},{"denom":"ASSET10","index":"0.000031557458061761"},{"denom":"ASSET11","index":"0.000037700664708319"},{"denom":"ASSET12","index":"0.000035928372047662"},{"denom":"ASSET13","index":"0.000012183543527385"},{"denom":"ASSET14","index":"0.000034780774754072"},{"denom":"ASSET15","index":"0.000028307087788627"},{"denom":"ASSET16","index":"0.000016039535319794"},{"denom":"ASSET17","index":"0.000013042771810819"},{"denom":"ASSET18","index":"0.000005402952153823"},{"denom":"ASSET2","index":"0.000010919186373904"},{"denom":"ASSET3","index":"0.000003141880910304"},{"denom":"ASSET4","index":"0.000029659922771182"},{"denom":"ASSET5","index":"0.000002468660048805"},{"denom":"ASSET6","index":"0.000010080499351124"},{"denom":"ASSET7","index":"0.000015564502508768"},{"denom":"ASSET8","index":"0.000022498991790116"},{"denom":"ASSET9","index":"0.000008992113067194"}],"last_reward_claim_height":"198"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET2","shares":"14511344.000000000014511344","reward_history":[],"last_reward_claim_height":"33"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET3","shares":"661918856.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003351161845380"},{"denom":"ASSET1","index":"0.000028416485386018"},{"denom":"ASSET10","index":"0.000022605276372189"},{"denom":"ASSET11","index":"0.000028218825237526"},{"denom":"ASSET12","index":"0.000026868556551399"},{"denom":"ASSET13","index":"0.000008859853422879"},{"denom":"ASSET14","index":"0.000025912194276628"},{"denom":"ASSET15","index":"0.000020375555431981"},{"denom":"ASSET16","index":"0.000012611404420708"},{"denom":"ASSET17","index":"0.000009873044520717"},{"denom":"ASSET18","index":"0.000004095473642305"},{"denom":"ASSET2","index":"0.000008599384819082"},{"denom":"ASSET3","index":"0.000002391571176633"},{"denom":"ASSET4","index":"0.000023040021162794"},{"denom":"ASSET5","index":"0.000001862805125681"},{"denom":"ASSET6","index":"0.000007520693553142"},{"denom":"ASSET7","index":"0.000011806544930596"},{"denom":"ASSET8","index":"0.000016107343127742"},{"denom":"ASSET9","index":"0.000006840485865179"}],"last_reward_claim_height":"182"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET5","shares":"233804421.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003351161845380"},{"denom":"ASSET1","index":"0.000028416485386018"},{"denom":"ASSET10","index":"0.000022605276372189"},{"denom":"ASSET11","index":"0.000028218825237526"},{"denom":"ASSET12","index":"0.000026868556551399"},{"denom":"ASSET13","index":"0.000008859853422879"},{"denom":"ASSET14","index":"0.000025912194276628"},{"denom":"ASSET15","index":"0.000020375555431981"},{"denom":"ASSET16","index":"0.000012611404420708"},{"denom":"ASSET17","index":"0.000009873044520717"},{"denom":"ASSET18","index":"0.000004095473642305"},{"denom":"ASSET2","index":"0.000008599384819082"},{"denom":"ASSET3","index":"0.000002391571176633"},{"denom":"ASSET4","index":"0.000023040021162794"},{"denom":"ASSET5","index":"0.000001862805125681"},{"denom":"ASSET6","index":"0.000007520693553142"},{"denom":"ASSET7","index":"0.000011806544930596"},{"denom":"ASSET8","index":"0.000016107343127742"},{"denom":"ASSET9","index":"0.000006840485865179"}],"last_reward_claim_height":"165"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET11","shares":"320997898.000000000000000000","reward_history":[],"last_reward_claim_height":"10"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET5","shares":"277563938.633028611968047900","reward_history":[{"denom":"ASSET0","index":"0.000001711866379191"},{"denom":"ASSET1","index":"0.000014286095556473"},{"denom":"ASSET10","index":"0.000009953932372868"},{"denom":"ASSET11","index":"0.000013820467901333"},{"denom":"ASSET12","index":"0.000012444127332464"},{"denom":"ASSET13","index":"0.000004281948436482"},{"denom":"ASSET14","index":"0.000012909754987604"},{"denom":"ASSET15","index":"0.000009230383516596"},{"denom":"ASSET16","index":"0.000006434335097252"},{"denom":"ASSET17","index":"0.000004569541988186"},{"denom":"ASSET18","index":"0.000002177494034331"},{"denom":"ASSET2","index":"0.000004215756269820"},{"denom":"ASSET3","index":"0.000001232543793017"},{"denom":"ASSET4","index":"0.000011608736539419"},{"denom":"ASSET5","index":"0.000000956362683841"},{"denom":"ASSET6","index":"0.000003896207879038"},{"denom":"ASSET7","index":"0.000005968707442112"},{"denom":"ASSET8","index":"0.000007787850781065"},{"denom":"ASSET9","index":"0.000003362105568731"}],"last_reward_claim_height":"120"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET9","shares":"996544681.152821302068279475","reward_history":[{"denom":"ASSET0","index":"0.000001711866379191"},{"denom":"ASSET1","index":"0.000014286095556473"},{"denom":"ASSET10","index":"0.000009953932372868"},{"denom":"ASSET11","index":"0.000013820467901333"},{"denom":"ASSET12","index":"0.000012444127332464"},{"denom":"ASSET13","index":"0.000004281948436482"},{"denom":"ASSET14","index":"0.000012909754987604"},{"denom":"ASSET15","index":"0.000009230383516596"},{"denom":"ASSET16","index":"0.000006434335097252"},{"denom":"ASSET17","index":"0.000004569541988186"},{"denom":"ASSET18","index":"0.000002177494034331"},{"denom":"ASSET2","index":"0.000004215756269820"},{"denom":"ASSET3","index":"0.000001232543793017"},{"denom":"ASSET4","index":"0.000011608736539419"},{"denom":"ASSET5","index":"0.000000956362683841"},{"denom":"ASSET6","index":"0.000003896207879038"},{"denom":"ASSET7","index":"0.000005968707442112"},{"denom":"ASSET8","index":"0.000007787850781065"},{"denom":"ASSET9","index":"0.000003362105568731"}],"last_reward_claim_height":"81"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET4","shares":"385985322.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001459800105667"},{"denom":"ASSET1","index":"0.000012176396665923"},{"denom":"ASSET10","index":"0.000008484162206626"},{"denom":"ASSET11","index":"0.000011779823335110"},{"denom":"ASSET12","index":"0.000010607197020722"},{"denom":"ASSET13","index":"0.000003650070053435"},{"denom":"ASSET14","index":"0.000011003770351536"},{"denom":"ASSET15","index":"0.000007867650218206"},{"denom":"ASSET16","index":"0.000005484791497715"},{"denom":"ASSET17","index":"0.000003895079438851"},{"denom":"ASSET18","index":"0.000001855233857943"},{"denom":"ASSET2","index":"0.000003594230705131"},{"denom":"ASSET3","index":"0.000001050691410948"},{"denom":"ASSET4","index":"0.000009896100013746"},{"denom":"ASSET5","index":"0.000000815938232363"},{"denom":"ASSET6","index":"0.000003321871434831"},{"denom":"ASSET7","index":"0.000005087078588365"},{"denom":"ASSET8","index":"0.000006638044976977"},{"denom":"ASSET9","index":"0.000002867179598640"}],"last_reward_claim_height":"115"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET1","shares":"161604443.697967188808687500","reward_history":[{"denom":"ASSET0","index":"0.000001617402557586"},{"denom":"ASSET1","index":"0.000013485147451276"},{"denom":"ASSET10","index":"0.000009395521488362"},{"denom":"ASSET11","index":"0.000013045402724081"},{"denom":"ASSET12","index":"0.000011747619504798"},{"denom":"ASSET13","index":"0.000004042433845849"},{"denom":"ASSET14","index":"0.000012186291683878"},{"denom":"ASSET15","index":"0.000008713380887153"},{"denom":"ASSET16","index":"0.000006074912523982"},{"denom":"ASSET17","index":"0.000004313788518972"},{"denom":"ASSET18","index":"0.000002055002188551"},{"denom":"ASSET2","index":"0.000003980226055173"},{"denom":"ASSET3","index":"0.000001163714704894"},{"denom":"ASSET4","index":"0.000010959296640193"},{"denom":"ASSET5","index":"0.000000903085512923"},{"denom":"ASSET6","index":"0.000003677767486712"},{"denom":"ASSET7","index":"0.000005633022700557"},{"denom":"ASSET8","index":"0.000007351244780963"},{"denom":"ASSET9","index":"0.000003174742420725"}],"last_reward_claim_height":"109"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET15","shares":"151396237.000000003330717214","reward_history":[{"denom":"ASSET0","index":"0.000001617402557586"},{"denom":"ASSET1","index":"0.000013485147451276"},{"denom":"ASSET10","index":"0.000009395521488362"},{"denom":"ASSET11","index":"0.000013045402724081"},{"denom":"ASSET12","index":"0.000011747619504798"},{"denom":"ASSET13","index":"0.000004042433845849"},{"denom":"ASSET14","index":"0.000012186291683878"},{"denom":"ASSET15","index":"0.000008713380887153"},{"denom":"ASSET16","index":"0.000006074912523982"},{"denom":"ASSET17","index":"0.000004313788518972"},{"denom":"ASSET18","index":"0.000002055002188551"},{"denom":"ASSET2","index":"0.000003980226055173"},{"denom":"ASSET3","index":"0.000001163714704894"},{"denom":"ASSET4","index":"0.000010959296640193"},{"denom":"ASSET5","index":"0.000000903085512923"},{"denom":"ASSET6","index":"0.000003677767486712"},{"denom":"ASSET7","index":"0.000005633022700557"},{"denom":"ASSET8","index":"0.000007351244780963"},{"denom":"ASSET9","index":"0.000003174742420725"}],"last_reward_claim_height":"103"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET16","shares":"2822465.810704461743650461","reward_history":[{"denom":"ASSET0","index":"0.000003091273620954"},{"denom":"ASSET1","index":"0.000026212594205506"},{"denom":"ASSET10","index":"0.000020831747389799"},{"denom":"ASSET11","index":"0.000026024829344923"},{"denom":"ASSET12","index":"0.000024768925461013"},{"denom":"ASSET13","index":"0.000008170539761157"},{"denom":"ASSET14","index":"0.000023900540063840"},{"denom":"ASSET15","index":"0.000018780610027247"},{"denom":"ASSET16","index":"0.000011634658240098"},{"denom":"ASSET17","index":"0.000009101405984603"},{"denom":"ASSET18","index":"0.000003780149264156"},{"denom":"ASSET2","index":"0.000007930960667726"},{"denom":"ASSET3","index":"0.000002206123035767"},{"denom":"ASSET4","index":"0.000021253166889363"},{"denom":"ASSET5","index":"0.000001718500807532"},{"denom":"ASSET6","index":"0.000006939076737962"},{"denom":"ASSET7","index":"0.000010891166816552"},{"denom":"ASSET8","index":"0.000014853628574871"},{"denom":"ASSET9","index":"0.000006308302102729"}],"last_reward_claim_height":"151"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET1","shares":"974104172.000000000000000000","reward_history":[],"last_reward_claim_height":"38"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET12","shares":"933181466.617024461527631586","reward_history":[{"denom":"ASSET0","index":"0.000002995147819628"},{"denom":"ASSET1","index":"0.000025426980115999"},{"denom":"ASSET10","index":"0.000020372034738960"},{"denom":"ASSET11","index":"0.000025287989623967"},{"denom":"ASSET12","index":"0.000024150599022202"},{"denom":"ASSET13","index":"0.000007946076587902"},{"denom":"ASSET14","index":"0.000023198024872944"},{"denom":"ASSET15","index":"0.000018335727027304"},{"denom":"ASSET16","index":"0.000011274635486105"},{"denom":"ASSET17","index":"0.000008875015361763"},{"denom":"ASSET18","index":"0.000003653177061349"},{"denom":"ASSET2","index":"0.000007706361997735"},{"denom":"ASSET3","index":"0.000002137037997503"},{"denom":"ASSET4","index":"0.000020612735071168"},{"denom":"ASSET5","index":"0.000001665450131859"},{"denom":"ASSET6","index":"0.000006718182222688"},{"denom":"ASSET7","index":"0.000010561635089256"},{"denom":"ASSET8","index":"0.000014445035982826"},{"denom":"ASSET9","index":"0.000006128513210961"}],"last_reward_claim_height":"180"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET18","shares":"405596817.000000000000000000","reward_history":[],"last_reward_claim_height":"61"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET0","shares":"494450152.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001778581753434"},{"denom":"ASSET1","index":"0.000014888315804569"},{"denom":"ASSET10","index":"0.000010370885153828"},{"denom":"ASSET11","index":"0.000014404007158094"},{"denom":"ASSET12","index":"0.000012967781516823"},{"denom":"ASSET13","index":"0.000004458979607201"},{"denom":"ASSET14","index":"0.000013452090163298"},{"denom":"ASSET15","index":"0.000009619371736884"},{"denom":"ASSET16","index":"0.000006705169708956"},{"denom":"ASSET17","index":"0.000004759584973979"},{"denom":"ASSET18","index":"0.000002262890399909"},{"denom":"ASSET2","index":"0.000004392178414584"},{"denom":"ASSET3","index":"0.000001285922957882"},{"denom":"ASSET4","index":"0.000012099366012799"},{"denom":"ASSET5","index":"0.000000993667740182"},{"denom":"ASSET6","index":"0.000004058172451498"},{"denom":"ASSET7","index":"0.000006220861062481"},{"denom":"ASSET8","index":"0.000008116344902996"},{"denom":"ASSET9","index":"0.000003507062612406"}],"last_reward_claim_height":"104"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET6","shares":"887342161.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001778581753434"},{"denom":"ASSET1","index":"0.000014888315804569"},{"denom":"ASSET10","index":"0.000010370885153828"},{"denom":"ASSET11","index":"0.000014404007158094"},{"denom":"ASSET12","index":"0.000012967781516823"},{"denom":"ASSET13","index":"0.000004458979607201"},{"denom":"ASSET14","index":"0.000013452090163298"},{"denom":"ASSET15","index":"0.000009619371736884"},{"denom":"ASSET16","index":"0.000006705169708956"},{"denom":"ASSET17","index":"0.000004759584973979"},{"denom":"ASSET18","index":"0.000002262890399909"},{"denom":"ASSET2","index":"0.000004392178414584"},{"denom":"ASSET3","index":"0.000001285922957882"},{"denom":"ASSET4","index":"0.000012099366012799"},{"denom":"ASSET5","index":"0.000000993667740182"},{"denom":"ASSET6","index":"0.000004058172451498"},{"denom":"ASSET7","index":"0.000006220861062481"},{"denom":"ASSET8","index":"0.000008116344902996"},{"denom":"ASSET9","index":"0.000003507062612406"}],"last_reward_claim_height":"113"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET13","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003356752793751"},{"denom":"ASSET1","index":"0.000028516406305775"},{"denom":"ASSET10","index":"0.000022616173055400"},{"denom":"ASSET11","index":"0.000028302061322789"},{"denom":"ASSET12","index":"0.000026910491325102"},{"denom":"ASSET13","index":"0.000008878873421079"},{"denom":"ASSET14","index":"0.000025995251505598"},{"denom":"ASSET15","index":"0.000020398635157595"},{"denom":"ASSET16","index":"0.000012658071469071"},{"denom":"ASSET17","index":"0.000009885849877285"},{"denom":"ASSET18","index":"0.000004110010202724"},{"denom":"ASSET2","index":"0.000008622285743228"},{"denom":"ASSET3","index":"0.000002402314047495"},{"denom":"ASSET4","index":"0.000023121698220749"},{"denom":"ASSET5","index":"0.000001866482592061"},{"denom":"ASSET6","index":"0.000007549939309511"},{"denom":"ASSET7","index":"0.000011851024307599"},{"denom":"ASSET8","index":"0.000016149793693754"},{"denom":"ASSET9","index":"0.000006862325287189"}],"last_reward_claim_height":"150"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET18","shares":"567601796.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001778581753434"},{"denom":"ASSET1","index":"0.000014888315804569"},{"denom":"ASSET10","index":"0.000010370885153828"},{"denom":"ASSET11","index":"0.000014404007158094"},{"denom":"ASSET12","index":"0.000012967781516823"},{"denom":"ASSET13","index":"0.000004458979607201"},{"denom":"ASSET14","index":"0.000013452090163298"},{"denom":"ASSET15","index":"0.000009619371736884"},{"denom":"ASSET16","index":"0.000006705169708956"},{"denom":"ASSET17","index":"0.000004759584973979"},{"denom":"ASSET18","index":"0.000002262890399909"},{"denom":"ASSET2","index":"0.000004392178414584"},{"denom":"ASSET3","index":"0.000001285922957882"},{"denom":"ASSET4","index":"0.000012099366012799"},{"denom":"ASSET5","index":"0.000000993667740182"},{"denom":"ASSET6","index":"0.000004058172451498"},{"denom":"ASSET7","index":"0.000006220861062481"},{"denom":"ASSET8","index":"0.000008116344902996"},{"denom":"ASSET9","index":"0.000003507062612406"}],"last_reward_claim_height":"71"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET15","shares":"458644871.999999995653674334","reward_history":[],"last_reward_claim_height":"54"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET17","shares":"618112899.609716990250302300","reward_history":[{"denom":"ASSET0","index":"0.000003200268554223"},{"denom":"ASSET1","index":"0.000027155061035589"},{"denom":"ASSET10","index":"0.000021699312128992"},{"denom":"ASSET11","index":"0.000026991580254755"},{"denom":"ASSET12","index":"0.000025748970079650"},{"denom":"ASSET13","index":"0.000008479073830121"},{"denom":"ASSET14","index":"0.000024769827936089"},{"denom":"ASSET15","index":"0.000019540730612944"},{"denom":"ASSET16","index":"0.000012044995213579"},{"denom":"ASSET17","index":"0.000009462424001901"},{"denom":"ASSET18","index":"0.000003906197580725"},{"denom":"ASSET2","index":"0.000008225756082433"},{"denom":"ASSET3","index":"0.000002283784004254"},{"denom":"ASSET4","index":"0.000022014648589339"},{"denom":"ASSET5","index":"0.000001779311895342"},{"denom":"ASSET6","index":"0.000007179475362032"},{"denom":"ASSET7","index":"0.000011280598785262"},{"denom":"ASSET8","index":"0.000015413911362487"},{"denom":"ASSET9","index":"0.000006542247148589"}],"last_reward_claim_height":"173"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET4","shares":"648902027.055895816203933203","reward_history":[{"denom":"ASSET0","index":"0.000004736121968577"},{"denom":"ASSET1","index":"0.000038761893571018"},{"denom":"ASSET10","index":"0.000033507102183548"},{"denom":"ASSET11","index":"0.000040255954218087"},{"denom":"ASSET12","index":"0.000038296483713125"},{"denom":"ASSET13","index":"0.000012981125931500"},{"denom":"ASSET14","index":"0.000037144963211864"},{"denom":"ASSET15","index":"0.000030086100212575"},{"denom":"ASSET16","index":"0.000017200793994088"},{"denom":"ASSET17","index":"0.000013910336551622"},{"denom":"ASSET18","index":"0.000005787660096353"},{"denom":"ASSET2","index":"0.000011696689560653"},{"denom":"ASSET3","index":"0.000003364158799327"},{"denom":"ASSET4","index":"0.000031772510725021"},{"denom":"ASSET5","index":"0.000002640231519377"},{"denom":"ASSET6","index":"0.000010779027652808"},{"denom":"ASSET7","index":"0.000016649985952266"},{"denom":"ASSET8","index":"0.000023948972231982"},{"denom":"ASSET9","index":"0.000009610057695084"}],"last_reward_claim_height":"200"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET12","shares":"399827328.765480580062122360","reward_history":[{"denom":"ASSET0","index":"0.000001620184629837"},{"denom":"ASSET1","index":"0.000013508113244239"},{"denom":"ASSET10","index":"0.000009411159415052"},{"denom":"ASSET11","index":"0.000013068550109883"},{"denom":"ASSET12","index":"0.000011766766981214"},{"denom":"ASSET13","index":"0.000004049052718392"},{"denom":"ASSET14","index":"0.000012206330115570"},{"denom":"ASSET15","index":"0.000008726455301921"},{"denom":"ASSET16","index":"0.000006083441070987"},{"denom":"ASSET17","index":"0.000004319553108765"},{"denom":"ASSET18","index":"0.000002056930051793"},{"denom":"ASSET2","index":"0.000003987063045598"},{"denom":"ASSET3","index":"0.000001166532933482"},{"denom":"ASSET4","index":"0.000010977807509294"},{"denom":"ASSET5","index":"0.000000904485680309"},{"denom":"ASSET6","index":"0.000003682750106429"},{"denom":"ASSET7","index":"0.000005643877936631"},{"denom":"ASSET8","index":"0.000007362682500458"},{"denom":"ASSET9","index":"0.000003178379586880"}],"last_reward_claim_height":"111"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET1","shares":"240556558.888525642806267360","reward_history":[{"denom":"ASSET0","index":"0.000003066618221533"},{"denom":"ASSET1","index":"0.000026018563142658"},{"denom":"ASSET10","index":"0.000020743763118655"},{"denom":"ASSET11","index":"0.000025849025514444"},{"denom":"ASSET12","index":"0.000024635604575072"},{"denom":"ASSET13","index":"0.000008118261811936"},{"denom":"ASSET14","index":"0.000023728777879609"},{"denom":"ASSET15","index":"0.000018689177197382"},{"denom":"ASSET16","index":"0.000011544003668418"},{"denom":"ASSET17","index":"0.000009052167825210"},{"denom":"ASSET18","index":"0.000003745930402733"},{"denom":"ASSET2","index":"0.000007877080459743"},{"denom":"ASSET3","index":"0.000002188594145460"},{"denom":"ASSET4","index":"0.000021094338825720"},{"denom":"ASSET5","index":"0.000001705356613908"},{"denom":"ASSET6","index":"0.000006882744986340"},{"denom":"ASSET7","index":"0.000010809249072439"},{"denom":"ASSET8","index":"0.000014757775472241"},{"denom":"ASSET9","index":"0.000006264987011427"}],"last_reward_claim_height":"138"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET4","shares":"670075642.684716379702294625","reward_history":[{"denom":"ASSET0","index":"0.000003066618221533"},{"denom":"ASSET1","index":"0.000026018563142658"},{"denom":"ASSET10","index":"0.000020743763118655"},{"denom":"ASSET11","index":"0.000025849025514444"},{"denom":"ASSET12","index":"0.000024635604575072"},{"denom":"ASSET13","index":"0.000008118261811936"},{"denom":"ASSET14","index":"0.000023728777879609"},{"denom":"ASSET15","index":"0.000018689177197382"},{"denom":"ASSET16","index":"0.000011544003668418"},{"denom":"ASSET17","index":"0.000009052167825210"},{"denom":"ASSET18","index":"0.000003745930402733"},{"denom":"ASSET2","index":"0.000007877080459743"},{"denom":"ASSET3","index":"0.000002188594145460"},{"denom":"ASSET4","index":"0.000021094338825720"},{"denom":"ASSET5","index":"0.000001705356613908"},{"denom":"ASSET6","index":"0.000006882744986340"},{"denom":"ASSET7","index":"0.000010809249072439"},{"denom":"ASSET8","index":"0.000014757775472241"},{"denom":"ASSET9","index":"0.000006264987011427"}],"last_reward_claim_height":"179"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET8","shares":"137067347.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004759172551230"},{"denom":"ASSET1","index":"0.000038864559845537"},{"denom":"ASSET10","index":"0.000033789559914776"},{"denom":"ASSET11","index":"0.000040483498273200"},{"denom":"ASSET12","index":"0.000038519500877358"},{"denom":"ASSET13","index":"0.000013077901294621"},{"denom":"ASSET14","index":"0.000037366902385783"},{"denom":"ASSET15","index":"0.000030331952984765"},{"denom":"ASSET16","index":"0.000017247589073506"},{"denom":"ASSET17","index":"0.000013981748886788"},{"denom":"ASSET18","index":"0.000005816425174292"},{"denom":"ASSET2","index":"0.000011726326503880"},{"denom":"ASSET3","index":"0.000003378996028425"},{"denom":"ASSET4","index":"0.000031879565540339"},{"denom":"ASSET5","index":"0.000002654849092411"},{"denom":"ASSET6","index":"0.000010843826038420"},{"denom":"ASSET7","index":"0.000016729873959345"},{"denom":"ASSET8","index":"0.000024149705961421"},{"denom":"ASSET9","index":"0.000009656726204889"}],"last_reward_claim_height":"194"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET17","shares":"682287661.743563149405361640","reward_history":[{"denom":"ASSET0","index":"0.000001565910537906"},{"denom":"ASSET1","index":"0.000013053983025959"},{"denom":"ASSET10","index":"0.000009094819386579"},{"denom":"ASSET11","index":"0.000012628414118813"},{"denom":"ASSET12","index":"0.000011371841840295"},{"denom":"ASSET13","index":"0.000003913403541838"},{"denom":"ASSET14","index":"0.000011796953146466"},{"denom":"ASSET15","index":"0.000008434501179040"},{"denom":"ASSET16","index":"0.000005880630135191"},{"denom":"ASSET17","index":"0.000004176066501732"},{"denom":"ASSET18","index":"0.000001989191440174"},{"denom":"ASSET2","index":"0.000003853457814057"},{"denom":"ASSET3","index":"0.000001127071202473"},{"denom":"ASSET4","index":"0.000010608563413286"},{"denom":"ASSET5","index":"0.000000874933065013"},{"denom":"ASSET6","index":"0.000003561050790760"},{"denom":"ASSET7","index":"0.000005453688425119"},{"denom":"ASSET8","index":"0.000007116152768840"},{"denom":"ASSET9","index":"0.000003073705751932"}],"last_reward_claim_height":"99"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET18","shares":"24660316.000000000000000000","reward_history":[],"last_reward_claim_height":"53"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET2","shares":"809357695.997877793330837626","reward_history":[{"denom":"ASSET0","index":"0.000003010548827117"},{"denom":"ASSET1","index":"0.000025517681435823"},{"denom":"ASSET10","index":"0.000020207909525991"},{"denom":"ASSET11","index":"0.000025316824190850"},{"denom":"ASSET12","index":"0.000024059273468565"},{"denom":"ASSET13","index":"0.000007945703994160"},{"denom":"ASSET14","index":"0.000023261456497592"},{"denom":"ASSET15","index":"0.000018230653165683"},{"denom":"ASSET16","index":"0.000011330852554208"},{"denom":"ASSET17","index":"0.000008840468160143"},{"denom":"ASSET18","index":"0.000003685449036638"},{"denom":"ASSET2","index":"0.000007715875534239"},{"denom":"ASSET3","index":"0.000002150116713749"},{"denom":"ASSET4","index":"0.000020690763011385"},{"denom":"ASSET5","index":"0.000001674170167376"},{"denom":"ASSET6","index":"0.000006761947340508"},{"denom":"ASSET7","index":"0.000010605047135869"},{"denom":"ASSET8","index":"0.000014444866674878"},{"denom":"ASSET9","index":"0.000006137206230949"}],"last_reward_claim_height":"162"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET8","shares":"690418659.679081054546351992","reward_history":[{"denom":"ASSET0","index":"0.000001616793771814"},{"denom":"ASSET1","index":"0.000013481664806896"},{"denom":"ASSET10","index":"0.000009392973001731"},{"denom":"ASSET11","index":"0.000013042136425966"},{"denom":"ASSET12","index":"0.000011745108533466"},{"denom":"ASSET13","index":"0.000004041984429535"},{"denom":"ASSET14","index":"0.000012183439289380"},{"denom":"ASSET15","index":"0.000008710326742521"},{"denom":"ASSET16","index":"0.000006073156456940"},{"denom":"ASSET17","index":"0.000004312647683187"},{"denom":"ASSET18","index":"0.000002053926902712"},{"denom":"ASSET2","index":"0.000003979707928695"},{"denom":"ASSET3","index":"0.000001164091515706"},{"denom":"ASSET4","index":"0.000010955873647818"},{"denom":"ASSET5","index":"0.000000903009262183"},{"denom":"ASSET6","index":"0.000003677906424623"},{"denom":"ASSET7","index":"0.000005632430450993"},{"denom":"ASSET8","index":"0.000007349824724165"},{"denom":"ASSET9","index":"0.000003173706292820"}],"last_reward_claim_height":"96"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET6","shares":"605526267.030456617099043744","reward_history":[{"denom":"ASSET0","index":"0.000003202417698287"},{"denom":"ASSET1","index":"0.000027176874960756"},{"denom":"ASSET10","index":"0.000021729724210241"},{"denom":"ASSET11","index":"0.000027016578438308"},{"denom":"ASSET12","index":"0.000025779554956391"},{"denom":"ASSET13","index":"0.000008487649506725"},{"denom":"ASSET14","index":"0.000024790682929963"},{"denom":"ASSET15","index":"0.000019565798539307"},{"denom":"ASSET16","index":"0.000012053877846841"},{"denom":"ASSET17","index":"0.000009473617164606"},{"denom":"ASSET18","index":"0.000003908301251667"},{"denom":"ASSET2","index":"0.000008233254558201"},{"denom":"ASSET3","index":"0.000002285025567503"},{"denom":"ASSET4","index":"0.000022032200437673"},{"denom":"ASSET5","index":"0.000001780306156687"},{"denom":"ASSET6","index":"0.000007184182778940"},{"denom":"ASSET7","index":"0.000011289430429576"},{"denom":"ASSET8","index":"0.000015429251463912"},{"denom":"ASSET9","index":"0.000006548040900334"}],"last_reward_claim_height":"154"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET8","shares":"162181304.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003202417698287"},{"denom":"ASSET1","index":"0.000027176874960756"},{"denom":"ASSET10","index":"0.000021729724210241"},{"denom":"ASSET11","index":"0.000027016578438308"},{"denom":"ASSET12","index":"0.000025779554956391"},{"denom":"ASSET13","index":"0.000008487649506725"},{"denom":"ASSET14","index":"0.000024790682929963"},{"denom":"ASSET15","index":"0.000019565798539307"},{"denom":"ASSET16","index":"0.000012053877846841"},{"denom":"ASSET17","index":"0.000009473617164606"},{"denom":"ASSET18","index":"0.000003908301251667"},{"denom":"ASSET2","index":"0.000008233254558201"},{"denom":"ASSET3","index":"0.000002285025567503"},{"denom":"ASSET4","index":"0.000022032200437673"},{"denom":"ASSET5","index":"0.000001780306156687"},{"denom":"ASSET6","index":"0.000007184182778940"},{"denom":"ASSET7","index":"0.000011289430429576"},{"denom":"ASSET8","index":"0.000015429251463912"},{"denom":"ASSET9","index":"0.000006548040900334"}],"last_reward_claim_height":"173"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET17","shares":"421239176.000000019377002096","reward_history":[{"denom":"ASSET0","index":"0.000003202417698287"},{"denom":"ASSET1","index":"0.000027176874960756"},{"denom":"ASSET10","index":"0.000021729724210241"},{"denom":"ASSET11","index":"0.000027016578438308"},{"denom":"ASSET12","index":"0.000025779554956391"},{"denom":"ASSET13","index":"0.000008487649506725"},{"denom":"ASSET14","index":"0.000024790682929963"},{"denom":"ASSET15","index":"0.000019565798539307"},{"denom":"ASSET16","index":"0.000012053877846841"},{"denom":"ASSET17","index":"0.000009473617164606"},{"denom":"ASSET18","index":"0.000003908301251667"},{"denom":"ASSET2","index":"0.000008233254558201"},{"denom":"ASSET3","index":"0.000002285025567503"},{"denom":"ASSET4","index":"0.000022032200437673"},{"denom":"ASSET5","index":"0.000001780306156687"},{"denom":"ASSET6","index":"0.000007184182778940"},{"denom":"ASSET7","index":"0.000011289430429576"},{"denom":"ASSET8","index":"0.000015429251463912"},{"denom":"ASSET9","index":"0.000006548040900334"}],"last_reward_claim_height":"163"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET0","shares":"312435998.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002874619638549"},{"denom":"ASSET1","index":"0.000024442633186143"},{"denom":"ASSET10","index":"0.000019689737510784"},{"denom":"ASSET11","index":"0.000024334399718263"},{"denom":"ASSET12","index":"0.000023294058494145"},{"denom":"ASSET13","index":"0.000007650065286478"},{"denom":"ASSET14","index":"0.000022306974942610"},{"denom":"ASSET15","index":"0.000017702453996022"},{"denom":"ASSET16","index":"0.000010830667352685"},{"denom":"ASSET17","index":"0.000008561334956642"},{"denom":"ASSET18","index":"0.000003501743239949"},{"denom":"ASSET2","index":"0.000007413384379561"},{"denom":"ASSET3","index":"0.000002050775894848"},{"denom":"ASSET4","index":"0.000019811877393900"},{"denom":"ASSET5","index":"0.000001596563839644"},{"denom":"ASSET6","index":"0.000006447875450380"},{"denom":"ASSET7","index":"0.000010149425285061"},{"denom":"ASSET8","index":"0.000013906577801610"},{"denom":"ASSET9","index":"0.000005896530335304"}],"last_reward_claim_height":"145"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET3","shares":"798052391.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002874619638549"},{"denom":"ASSET1","index":"0.000024442633186143"},{"denom":"ASSET10","index":"0.000019689737510784"},{"denom":"ASSET11","index":"0.000024334399718263"},{"denom":"ASSET12","index":"0.000023294058494145"},{"denom":"ASSET13","index":"0.000007650065286478"},{"denom":"ASSET14","index":"0.000022306974942610"},{"denom":"ASSET15","index":"0.000017702453996022"},{"denom":"ASSET16","index":"0.000010830667352685"},{"denom":"ASSET17","index":"0.000008561334956642"},{"denom":"ASSET18","index":"0.000003501743239949"},{"denom":"ASSET2","index":"0.000007413384379561"},{"denom":"ASSET3","index":"0.000002050775894848"},{"denom":"ASSET4","index":"0.000019811877393900"},{"denom":"ASSET5","index":"0.000001596563839644"},{"denom":"ASSET6","index":"0.000006447875450380"},{"denom":"ASSET7","index":"0.000010149425285061"},{"denom":"ASSET8","index":"0.000013906577801610"},{"denom":"ASSET9","index":"0.000005896530335304"}],"last_reward_claim_height":"173"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET7","shares":"402606853.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001349258766758"},{"denom":"ASSET1","index":"0.000011264433664868"},{"denom":"ASSET10","index":"0.000007848225297969"},{"denom":"ASSET11","index":"0.000010895650990484"},{"denom":"ASSET12","index":"0.000009811385762205"},{"denom":"ASSET13","index":"0.000003376459336127"},{"denom":"ASSET14","index":"0.000010177960157102"},{"denom":"ASSET15","index":"0.000007278489190238"},{"denom":"ASSET16","index":"0.000005074626261883"},{"denom":"ASSET17","index":"0.000003603912123322"},{"denom":"ASSET18","index":"0.000001715833161655"},{"denom":"ASSET2","index":"0.000003323460628431"},{"denom":"ASSET3","index":"0.000000971642974425"},{"denom":"ASSET4","index":"0.000009153318474981"},{"denom":"ASSET5","index":"0.000000753023305179"},{"denom":"ASSET6","index":"0.000003071716766875"},{"denom":"ASSET7","index":"0.000004705843587499"},{"denom":"ASSET8","index":"0.000006139016974776"},{"denom":"ASSET9","index":"0.000002652143664283"}],"last_reward_claim_height":"122"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET18","shares":"5668695.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002874619638549"},{"denom":"ASSET1","index":"0.000024442633186143"},{"denom":"ASSET10","index":"0.000019689737510784"},{"denom":"ASSET11","index":"0.000024334399718263"},{"denom":"ASSET12","index":"0.000023294058494145"},{"denom":"ASSET13","index":"0.000007650065286478"},{"denom":"ASSET14","index":"0.000022306974942610"},{"denom":"ASSET15","index":"0.000017702453996022"},{"denom":"ASSET16","index":"0.000010830667352685"},{"denom":"ASSET17","index":"0.000008561334956642"},{"denom":"ASSET18","index":"0.000003501743239949"},{"denom":"ASSET2","index":"0.000007413384379561"},{"denom":"ASSET3","index":"0.000002050775894848"},{"denom":"ASSET4","index":"0.000019811877393900"},{"denom":"ASSET5","index":"0.000001596563839644"},{"denom":"ASSET6","index":"0.000006447875450380"},{"denom":"ASSET7","index":"0.000010149425285061"},{"denom":"ASSET8","index":"0.000013906577801610"},{"denom":"ASSET9","index":"0.000005896530335304"}],"last_reward_claim_height":"178"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET2","shares":"779153554.694238446821360336","reward_history":[{"denom":"ASSET0","index":"0.000001744355646452"},{"denom":"ASSET1","index":"0.000014544558741461"},{"denom":"ASSET10","index":"0.000010133244841823"},{"denom":"ASSET11","index":"0.000014070651242217"},{"denom":"ASSET12","index":"0.000012670295178174"},{"denom":"ASSET13","index":"0.000004360461787457"},{"denom":"ASSET14","index":"0.000013143775348745"},{"denom":"ASSET15","index":"0.000009397812194213"},{"denom":"ASSET16","index":"0.000006552230555377"},{"denom":"ASSET17","index":"0.000004653181929010"},{"denom":"ASSET18","index":"0.000002216553831001"},{"denom":"ASSET2","index":"0.000004293371185670"},{"denom":"ASSET3","index":"0.000001255918972299"},{"denom":"ASSET4","index":"0.000011819911117312"},{"denom":"ASSET5","index":"0.000000974736704938"},{"denom":"ASSET6","index":"0.000003967319407560"},{"denom":"ASSET7","index":"0.000006076186412764"},{"denom":"ASSET8","index":"0.000007929083542361"},{"denom":"ASSET9","index":"0.000003424611991834"}],"last_reward_claim_height":"98"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET4","shares":"747533525.938354823160276460","reward_history":[{"denom":"ASSET0","index":"0.000003377008276018"},{"denom":"ASSET1","index":"0.000028642142456639"},{"denom":"ASSET10","index":"0.000022800592191853"},{"denom":"ASSET11","index":"0.000028447577997463"},{"denom":"ASSET12","index":"0.000027093635853923"},{"denom":"ASSET13","index":"0.000008933092474106"},{"denom":"ASSET14","index":"0.000026119259559896"},{"denom":"ASSET15","index":"0.000020548756595198"},{"denom":"ASSET16","index":"0.000012710670192565"},{"denom":"ASSET17","index":"0.000009956402105067"},{"denom":"ASSET18","index":"0.000004127475104327"},{"denom":"ASSET2","index":"0.000008669602227225"},{"denom":"ASSET3","index":"0.000002410895003349"},{"denom":"ASSET4","index":"0.000023222264254358"},{"denom":"ASSET5","index":"0.000001877874241403"},{"denom":"ASSET6","index":"0.000007579654674160"},{"denom":"ASSET7","index":"0.000011900488798179"},{"denom":"ASSET8","index":"0.000016239324105118"},{"denom":"ASSET9","index":"0.000006895771583569"}],"last_reward_claim_height":"128"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET16","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001744355646452"},{"denom":"ASSET1","index":"0.000014544558741461"},{"denom":"ASSET10","index":"0.000010133244841823"},{"denom":"ASSET11","index":"0.000014070651242217"},{"denom":"ASSET12","index":"0.000012670295178174"},{"denom":"ASSET13","index":"0.000004360461787457"},{"denom":"ASSET14","index":"0.000013143775348745"},{"denom":"ASSET15","index":"0.000009397812194213"},{"denom":"ASSET16","index":"0.000006552230555377"},{"denom":"ASSET17","index":"0.000004653181929010"},{"denom":"ASSET18","index":"0.000002216553831001"},{"denom":"ASSET2","index":"0.000004293371185670"},{"denom":"ASSET3","index":"0.000001255918972299"},{"denom":"ASSET4","index":"0.000011819911117312"},{"denom":"ASSET5","index":"0.000000974736704938"},{"denom":"ASSET6","index":"0.000003967319407560"},{"denom":"ASSET7","index":"0.000006076186412764"},{"denom":"ASSET8","index":"0.000007929083542361"},{"denom":"ASSET9","index":"0.000003424611991834"}],"last_reward_claim_height":"102"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET8","shares":"137420542.054575788959502145","reward_history":[{"denom":"ASSET0","index":"0.000003044385892570"},{"denom":"ASSET1","index":"0.000025830014188245"},{"denom":"ASSET10","index":"0.000020607856539150"},{"denom":"ASSET11","index":"0.000025666657138152"},{"denom":"ASSET12","index":"0.000024468008636658"},{"denom":"ASSET13","index":"0.000008060303383676"},{"denom":"ASSET14","index":"0.000023559408638801"},{"denom":"ASSET15","index":"0.000018562848593971"},{"denom":"ASSET16","index":"0.000011459854746185"},{"denom":"ASSET17","index":"0.000008991538648143"},{"denom":"ASSET18","index":"0.000003718456390600"},{"denom":"ASSET2","index":"0.000007821717005664"},{"denom":"ASSET3","index":"0.000002173111618200"},{"denom":"ASSET4","index":"0.000020942104557307"},{"denom":"ASSET5","index":"0.000001691598021351"},{"denom":"ASSET6","index":"0.000006831113312915"},{"denom":"ASSET7","index":"0.000010730587410374"},{"denom":"ASSET8","index":"0.000014654605067850"},{"denom":"ASSET9","index":"0.000006220578615076"}],"last_reward_claim_height":"153"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET9","shares":"385656345.000000000000000000","reward_history":[],"last_reward_claim_height":"19"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET4","shares":"192812435.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001387821916020"},{"denom":"ASSET1","index":"0.000011588015182905"},{"denom":"ASSET10","index":"0.000008073788013584"},{"denom":"ASSET11","index":"0.000011209789038410"},{"denom":"ASSET12","index":"0.000010095957715252"},{"denom":"ASSET13","index":"0.000003472532948668"},{"denom":"ASSET14","index":"0.000010471205701129"},{"denom":"ASSET15","index":"0.000007487090765824"},{"denom":"ASSET16","index":"0.000005220712057474"},{"denom":"ASSET17","index":"0.000003707807479495"},{"denom":"ASSET18","index":"0.000001766048060515"},{"denom":"ASSET2","index":"0.000003418926093543"},{"denom":"ASSET3","index":"0.000001000661295671"},{"denom":"ASSET4","index":"0.000009416937550333"},{"denom":"ASSET5","index":"0.000000774321240698"},{"denom":"ASSET6","index":"0.000003159826293771"},{"denom":"ASSET7","index":"0.000004839507754361"},{"denom":"ASSET8","index":"0.000006316674428923"},{"denom":"ASSET9","index":"0.000002727993294151"}],"last_reward_claim_height":"121"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET6","shares":"570948540.033870361891665025","reward_history":[{"denom":"ASSET0","index":"0.000002956721491824"},{"denom":"ASSET1","index":"0.000025136116728129"},{"denom":"ASSET10","index":"0.000020247681325291"},{"denom":"ASSET11","index":"0.000025026479369709"},{"denom":"ASSET12","index":"0.000023957412844230"},{"denom":"ASSET13","index":"0.000007866588644670"},{"denom":"ASSET14","index":"0.000022940688787988"},{"denom":"ASSET15","index":"0.000018203641219753"},{"denom":"ASSET16","index":"0.000011138902531601"},{"denom":"ASSET17","index":"0.000008803888891481"},{"denom":"ASSET18","index":"0.000003602115317706"},{"denom":"ASSET2","index":"0.000007623974866010"},{"denom":"ASSET3","index":"0.000002110544057177"},{"denom":"ASSET4","index":"0.000020374365248917"},{"denom":"ASSET5","index":"0.000001641905652861"},{"denom":"ASSET6","index":"0.000006630874494768"},{"denom":"ASSET7","index":"0.000010436528568948"},{"denom":"ASSET8","index":"0.000014302572224422"},{"denom":"ASSET9","index":"0.000006063325997423"}],"last_reward_claim_height":"176"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET1","shares":"499891231.000000000000000000","reward_history":[],"last_reward_claim_height":"55"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET13","shares":"579376990.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003004514310835"},{"denom":"ASSET1","index":"0.000025497942224476"},{"denom":"ASSET10","index":"0.000020385999177782"},{"denom":"ASSET11","index":"0.000025346802479017"},{"denom":"ASSET12","index":"0.000024185328023735"},{"denom":"ASSET13","index":"0.000007962788555043"},{"denom":"ASSET14","index":"0.000023259189454501"},{"denom":"ASSET15","index":"0.000018355567065709"},{"denom":"ASSET16","index":"0.000011309092459120"},{"denom":"ASSET17","index":"0.000008887662321727"},{"denom":"ASSET18","index":"0.000003666570499762"},{"denom":"ASSET2","index":"0.000007723995884874"},{"denom":"ASSET3","index":"0.000002143405494402"},{"denom":"ASSET4","index":"0.000020670641097733"},{"denom":"ASSET5","index":"0.000001670336124344"},{"denom":"ASSET6","index":"0.000006739845385808"},{"denom":"ASSET7","index":"0.000010591422556410"},{"denom":"ASSET8","index":"0.000014475095162856"},{"denom":"ASSET9","index":"0.000006143360978771"}],"last_reward_claim_height":"148"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET16","shares":"718627593.108225214586652930","reward_history":[{"denom":"ASSET0","index":"0.000001500850379058"},{"denom":"ASSET1","index":"0.000012511793460183"},{"denom":"ASSET10","index":"0.000008717304800227"},{"denom":"ASSET11","index":"0.000012103632089176"},{"denom":"ASSET12","index":"0.000010899320696303"},{"denom":"ASSET13","index":"0.000003750781099635"},{"denom":"ASSET14","index":"0.000011306809643305"},{"denom":"ASSET15","index":"0.000008083881387560"},{"denom":"ASSET16","index":"0.000005636258009526"},{"denom":"ASSET17","index":"0.000004002940101492"},{"denom":"ASSET18","index":"0.000001906322054045"},{"denom":"ASSET2","index":"0.000003692952635209"},{"denom":"ASSET3","index":"0.000001079912951956"},{"denom":"ASSET4","index":"0.000010167723378913"},{"denom":"ASSET5","index":"0.000000838512734178"},{"denom":"ASSET6","index":"0.000003412551825143"},{"denom":"ASSET7","index":"0.000005226751790509"},{"denom":"ASSET8","index":"0.000006820396682251"},{"denom":"ASSET9","index":"0.000002945889565704"}],"last_reward_claim_height":"90"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET14","shares":"1105335226.872496941959737240","reward_history":[{"denom":"ASSET0","index":"0.000001507842106347"},{"denom":"ASSET1","index":"0.000012572313391156"},{"denom":"ASSET10","index":"0.000008759356679472"},{"denom":"ASSET11","index":"0.000012162445176153"},{"denom":"ASSET12","index":"0.000010952151629736"},{"denom":"ASSET13","index":"0.000003769211161813"},{"denom":"ASSET14","index":"0.000011361231636633"},{"denom":"ASSET15","index":"0.000008123272738112"},{"denom":"ASSET16","index":"0.000005663669344042"},{"denom":"ASSET17","index":"0.000004022225963767"},{"denom":"ASSET18","index":"0.000001916133905138"},{"denom":"ASSET2","index":"0.000003711277866039"},{"denom":"ASSET3","index":"0.000001085756665704"},{"denom":"ASSET4","index":"0.000010217147571101"},{"denom":"ASSET5","index":"0.000000842594465073"},{"denom":"ASSET6","index":"0.000003429493468225"},{"denom":"ASSET7","index":"0.000005252224712828"},{"denom":"ASSET8","index":"0.000006853863583762"},{"denom":"ASSET9","index":"0.000002960115541236"}],"last_reward_claim_height":"96"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET18","shares":"382918945.967556826561307475","reward_history":[{"denom":"ASSET0","index":"0.000001507842106347"},{"denom":"ASSET1","index":"0.000012572313391156"},{"denom":"ASSET10","index":"0.000008759356679472"},{"denom":"ASSET11","index":"0.000012162445176153"},{"denom":"ASSET12","index":"0.000010952151629736"},{"denom":"ASSET13","index":"0.000003769211161813"},{"denom":"ASSET14","index":"0.000011361231636633"},{"denom":"ASSET15","index":"0.000008123272738112"},{"denom":"ASSET16","index":"0.000005663669344042"},{"denom":"ASSET17","index":"0.000004022225963767"},{"denom":"ASSET18","index":"0.000001916133905138"},{"denom":"ASSET2","index":"0.000003711277866039"},{"denom":"ASSET3","index":"0.000001085756665704"},{"denom":"ASSET4","index":"0.000010217147571101"},{"denom":"ASSET5","index":"0.000000842594465073"},{"denom":"ASSET6","index":"0.000003429493468225"},{"denom":"ASSET7","index":"0.000005252224712828"},{"denom":"ASSET8","index":"0.000006853863583762"},{"denom":"ASSET9","index":"0.000002960115541236"}],"last_reward_claim_height":"64"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET0","shares":"341660950.118094554260162080","reward_history":[{"denom":"ASSET0","index":"0.000002499545170163"},{"denom":"ASSET1","index":"0.000021282413071401"},{"denom":"ASSET10","index":"0.000017412808765385"},{"denom":"ASSET11","index":"0.000021259874812403"},{"denom":"ASSET12","index":"0.000020486111882687"},{"denom":"ASSET13","index":"0.000006694303381301"},{"denom":"ASSET14","index":"0.000019446986985139"},{"denom":"ASSET15","index":"0.000015606004703242"},{"denom":"ASSET16","index":"0.000009412782427040"},{"denom":"ASSET17","index":"0.000007528963649123"},{"denom":"ASSET18","index":"0.000003027066879988"},{"denom":"ASSET2","index":"0.000006477094521478"},{"denom":"ASSET3","index":"0.000001780578331809"},{"denom":"ASSET4","index":"0.000017246051064985"},{"denom":"ASSET5","index":"0.000001387924123500"},{"denom":"ASSET6","index":"0.000005593713918003"},{"denom":"ASSET7","index":"0.000008831780754063"},{"denom":"ASSET8","index":"0.000012169406160300"},{"denom":"ASSET9","index":"0.000005149034362400"}],"last_reward_claim_height":"167"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET3","shares":"609860823.735389372776624928","reward_history":[{"denom":"ASSET0","index":"0.000002499545170163"},{"denom":"ASSET1","index":"0.000021282413071401"},{"denom":"ASSET10","index":"0.000017412808765385"},{"denom":"ASSET11","index":"0.000021259874812403"},{"denom":"ASSET12","index":"0.000020486111882687"},{"denom":"ASSET13","index":"0.000006694303381301"},{"denom":"ASSET14","index":"0.000019446986985139"},{"denom":"ASSET15","index":"0.000015606004703242"},{"denom":"ASSET16","index":"0.000009412782427040"},{"denom":"ASSET17","index":"0.000007528963649123"},{"denom":"ASSET18","index":"0.000003027066879988"},{"denom":"ASSET2","index":"0.000006477094521478"},{"denom":"ASSET3","index":"0.000001780578331809"},{"denom":"ASSET4","index":"0.000017246051064985"},{"denom":"ASSET5","index":"0.000001387924123500"},{"denom":"ASSET6","index":"0.000005593713918003"},{"denom":"ASSET7","index":"0.000008831780754063"},{"denom":"ASSET8","index":"0.000012169406160300"},{"denom":"ASSET9","index":"0.000005149034362400"}],"last_reward_claim_height":"152"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET4","shares":"171379702.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001016570122529"},{"denom":"ASSET1","index":"0.000008477171470527"},{"denom":"ASSET10","index":"0.000005906463519680"},{"denom":"ASSET11","index":"0.000008200989896911"},{"denom":"ASSET12","index":"0.000007384774710599"},{"denom":"ASSET13","index":"0.000002541117067960"},{"denom":"ASSET14","index":"0.000007660956284215"},{"denom":"ASSET15","index":"0.000005477395717812"},{"denom":"ASSET16","index":"0.000003819073322661"},{"denom":"ASSET17","index":"0.000002711881121289"},{"denom":"ASSET18","index":"0.000001291518742692"},{"denom":"ASSET2","index":"0.000002502279034170"},{"denom":"ASSET3","index":"0.000000731757874738"},{"denom":"ASSET4","index":"0.000006889127422234"},{"denom":"ASSET5","index":"0.000000567775065403"},{"denom":"ASSET6","index":"0.000002312404202309"},{"denom":"ASSET7","index":"0.000003541658795591"},{"denom":"ASSET8","index":"0.000004621109544256"},{"denom":"ASSET9","index":"0.000001996151641449"}],"last_reward_claim_height":"110"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET9","shares":"92695656.988742532522055344","reward_history":[{"denom":"ASSET0","index":"0.000002499545170163"},{"denom":"ASSET1","index":"0.000021282413071401"},{"denom":"ASSET10","index":"0.000017412808765385"},{"denom":"ASSET11","index":"0.000021259874812403"},{"denom":"ASSET12","index":"0.000020486111882687"},{"denom":"ASSET13","index":"0.000006694303381301"},{"denom":"ASSET14","index":"0.000019446986985139"},{"denom":"ASSET15","index":"0.000015606004703242"},{"denom":"ASSET16","index":"0.000009412782427040"},{"denom":"ASSET17","index":"0.000007528963649123"},{"denom":"ASSET18","index":"0.000003027066879988"},{"denom":"ASSET2","index":"0.000006477094521478"},{"denom":"ASSET3","index":"0.000001780578331809"},{"denom":"ASSET4","index":"0.000017246051064985"},{"denom":"ASSET5","index":"0.000001387924123500"},{"denom":"ASSET6","index":"0.000005593713918003"},{"denom":"ASSET7","index":"0.000008831780754063"},{"denom":"ASSET8","index":"0.000012169406160300"},{"denom":"ASSET9","index":"0.000005149034362400"}],"last_reward_claim_height":"166"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET10","shares":"493704755.000000000000000000","reward_history":[],"last_reward_claim_height":"62"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET11","shares":"426321279.287519343550795125","reward_history":[{"denom":"ASSET0","index":"0.000004025900971927"},{"denom":"ASSET1","index":"0.000032866990223703"},{"denom":"ASSET10","index":"0.000029177590451167"},{"denom":"ASSET11","index":"0.000034457399555284"},{"denom":"ASSET12","index":"0.000033006816481640"},{"denom":"ASSET13","index":"0.000011167120321398"},{"denom":"ASSET14","index":"0.000031745829379235"},{"denom":"ASSET15","index":"0.000026105610144876"},{"denom":"ASSET16","index":"0.000014556334682662"},{"denom":"ASSET17","index":"0.000011974632893267"},{"denom":"ASSET18","index":"0.000004894173072333"},{"denom":"ASSET2","index":"0.000009948255093659"},{"denom":"ASSET3","index":"0.000002854082481256"},{"denom":"ASSET4","index":"0.000026972415235685"},{"denom":"ASSET5","index":"0.000002244012673462"},{"denom":"ASSET6","index":"0.000009165742222560"},{"denom":"ASSET7","index":"0.000014171217677897"},{"denom":"ASSET8","index":"0.000020639253265734"},{"denom":"ASSET9","index":"0.000008207596762469"}],"last_reward_claim_height":"189"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET16","shares":"236562339.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004025900971927"},{"denom":"ASSET1","index":"0.000032866990223703"},{"denom":"ASSET10","index":"0.000029177590451167"},{"denom":"ASSET11","index":"0.000034457399555284"},{"denom":"ASSET12","index":"0.000033006816481640"},{"denom":"ASSET13","index":"0.000011167120321398"},{"denom":"ASSET14","index":"0.000031745829379235"},{"denom":"ASSET15","index":"0.000026105610144876"},{"denom":"ASSET16","index":"0.000014556334682662"},{"denom":"ASSET17","index":"0.000011974632893267"},{"denom":"ASSET18","index":"0.000004894173072333"},{"denom":"ASSET2","index":"0.000009948255093659"},{"denom":"ASSET3","index":"0.000002854082481256"},{"denom":"ASSET4","index":"0.000026972415235685"},{"denom":"ASSET5","index":"0.000002244012673462"},{"denom":"ASSET6","index":"0.000009165742222560"},{"denom":"ASSET7","index":"0.000014171217677897"},{"denom":"ASSET8","index":"0.000020639253265734"},{"denom":"ASSET9","index":"0.000008207596762469"}],"last_reward_claim_height":"185"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET1","shares":"516758010.000000010674136263","reward_history":[{"denom":"ASSET0","index":"0.000001552339226368"},{"denom":"ASSET1","index":"0.000012948480372324"},{"denom":"ASSET10","index":"0.000009021431734191"},{"denom":"ASSET11","index":"0.000012526515146109"},{"denom":"ASSET12","index":"0.000011279099696349"},{"denom":"ASSET13","index":"0.000003880848065920"},{"denom":"ASSET14","index":"0.000011701064922564"},{"denom":"ASSET15","index":"0.000008365383608761"},{"denom":"ASSET16","index":"0.000005830512213323"},{"denom":"ASSET17","index":"0.000004142651308462"},{"denom":"ASSET18","index":"0.000001971224414436"},{"denom":"ASSET2","index":"0.000003822327341117"},{"denom":"ASSET3","index":"0.000001118053847563"},{"denom":"ASSET4","index":"0.000010521410312050"},{"denom":"ASSET5","index":"0.000000865490719463"},{"denom":"ASSET6","index":"0.000003529723717099"},{"denom":"ASSET7","index":"0.000005408546987108"},{"denom":"ASSET8","index":"0.000007056367396050"},{"denom":"ASSET9","index":"0.000003046157727933"}],"last_reward_claim_height":"107"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET8","shares":"115834.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004613485224377"},{"denom":"ASSET1","index":"0.000037740369506725"},{"denom":"ASSET10","index":"0.000032691878864798"},{"denom":"ASSET11","index":"0.000039232152349692"},{"denom":"ASSET12","index":"0.000037331153749090"},{"denom":"ASSET13","index":"0.000012657550996453"},{"denom":"ASSET14","index":"0.000036202019838156"},{"denom":"ASSET15","index":"0.000029349029406985"},{"denom":"ASSET16","index":"0.000016745236814022"},{"denom":"ASSET17","index":"0.000013558784939453"},{"denom":"ASSET18","index":"0.000005636901817265"},{"denom":"ASSET2","index":"0.000011389634856992"},{"denom":"ASSET3","index":"0.000003276670342419"},{"denom":"ASSET4","index":"0.000030939743993790"},{"denom":"ASSET5","index":"0.000002570403032325"},{"denom":"ASSET6","index":"0.000010502839382187"},{"denom":"ASSET7","index":"0.000016219772344493"},{"denom":"ASSET8","index":"0.000023358092187368"},{"denom":"ASSET9","index":"0.000009362632929320"}],"last_reward_claim_height":"197"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET11","shares":"723917568.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003043964098015"},{"denom":"ASSET1","index":"0.000025828331615061"},{"denom":"ASSET10","index":"0.000020594675215425"},{"denom":"ASSET11","index":"0.000025661520704142"},{"denom":"ASSET12","index":"0.000024456429429906"},{"denom":"ASSET13","index":"0.000008058244190043"},{"denom":"ASSET14","index":"0.000023555461855486"},{"denom":"ASSET15","index":"0.000018552812657155"},{"denom":"ASSET16","index":"0.000011456604402492"},{"denom":"ASSET17","index":"0.000008987560143691"},{"denom":"ASSET18","index":"0.000003716794339222"},{"denom":"ASSET2","index":"0.000007820148034807"},{"denom":"ASSET3","index":"0.000002173135080244"},{"denom":"ASSET4","index":"0.000020938599170426"},{"denom":"ASSET5","index":"0.000001690207511083"},{"denom":"ASSET6","index":"0.000006829800145738"},{"denom":"ASSET7","index":"0.000010729300481432"},{"denom":"ASSET8","index":"0.000014648719853803"},{"denom":"ASSET9","index":"0.000006217447736766"}],"last_reward_claim_height":"126"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET16","shares":"475126973.616718987079389598","reward_history":[{"denom":"ASSET0","index":"0.000001552339226368"},{"denom":"ASSET1","index":"0.000012948480372324"},{"denom":"ASSET10","index":"0.000009021431734191"},{"denom":"ASSET11","index":"0.000012526515146109"},{"denom":"ASSET12","index":"0.000011279099696349"},{"denom":"ASSET13","index":"0.000003880848065920"},{"denom":"ASSET14","index":"0.000011701064922564"},{"denom":"ASSET15","index":"0.000008365383608761"},{"denom":"ASSET16","index":"0.000005830512213323"},{"denom":"ASSET17","index":"0.000004142651308462"},{"denom":"ASSET18","index":"0.000001971224414436"},{"denom":"ASSET2","index":"0.000003822327341117"},{"denom":"ASSET3","index":"0.000001118053847563"},{"denom":"ASSET4","index":"0.000010521410312050"},{"denom":"ASSET5","index":"0.000000865490719463"},{"denom":"ASSET6","index":"0.000003529723717099"},{"denom":"ASSET7","index":"0.000005408546987108"},{"denom":"ASSET8","index":"0.000007056367396050"},{"denom":"ASSET9","index":"0.000003046157727933"}],"last_reward_claim_height":"87"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET2","shares":"957756998.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000000977108719668"},{"denom":"ASSET1","index":"0.000008146517162771"},{"denom":"ASSET10","index":"0.000005675852121603"},{"denom":"ASSET11","index":"0.000007881108738917"},{"denom":"ASSET12","index":"0.000007096716963958"},{"denom":"ASSET13","index":"0.000002441926549413"},{"denom":"ASSET14","index":"0.000007362125387813"},{"denom":"ASSET15","index":"0.000005263370239944"},{"denom":"ASSET16","index":"0.000003670074447059"},{"denom":"ASSET17","index":"0.000002605905002368"},{"denom":"ASSET18","index":"0.000001241671893765"},{"denom":"ASSET2","index":"0.000002404735560083"},{"denom":"ASSET3","index":"0.000000703247798239"},{"denom":"ASSET4","index":"0.000006620841350486"},{"denom":"ASSET5","index":"0.000000546031343344"},{"denom":"ASSET6","index":"0.000002222161612464"},{"denom":"ASSET7","index":"0.000003402975523689"},{"denom":"ASSET8","index":"0.000004440942225898"},{"denom":"ASSET9","index":"0.000001917871699764"}],"last_reward_claim_height":"113"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET11","shares":"663325385.999999954893873752","reward_history":[{"denom":"ASSET0","index":"0.000002320380931676"},{"denom":"ASSET1","index":"0.000019748951316256"},{"denom":"ASSET10","index":"0.000016101172379351"},{"denom":"ASSET11","index":"0.000019714000020718"},{"denom":"ASSET12","index":"0.000018967805559844"},{"denom":"ASSET13","index":"0.000006204998608741"},{"denom":"ASSET14","index":"0.000018041457784230"},{"denom":"ASSET15","index":"0.000014440911570898"},{"denom":"ASSET16","index":"0.000008738221404310"},{"denom":"ASSET17","index":"0.000006970584758543"},{"denom":"ASSET18","index":"0.000002814127990287"},{"denom":"ASSET2","index":"0.000006006105656449"},{"denom":"ASSET3","index":"0.000001653724297068"},{"denom":"ASSET4","index":"0.000016005284799403"},{"denom":"ASSET5","index":"0.000001288969102308"},{"denom":"ASSET6","index":"0.000005195185892122"},{"denom":"ASSET7","index":"0.000008196101819524"},{"denom":"ASSET8","index":"0.000011280171312915"},{"denom":"ASSET9","index":"0.000004774394171461"}],"last_reward_claim_height":"178"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET13","shares":"909343795.947720575950456200","reward_history":[{"denom":"ASSET0","index":"0.000003932141229954"},{"denom":"ASSET1","index":"0.000031982273733453"},{"denom":"ASSET10","index":"0.000028524807141068"},{"denom":"ASSET11","index":"0.000033650870548373"},{"denom":"ASSET12","index":"0.000032189741660520"},{"denom":"ASSET13","index":"0.000010928281530915"},{"denom":"ASSET14","index":"0.000031029292859346"},{"denom":"ASSET15","index":"0.000025528430167550"},{"denom":"ASSET16","index":"0.000014169702033303"},{"denom":"ASSET17","index":"0.000011665236620037"},{"denom":"ASSET18","index":"0.000004785741423778"},{"denom":"ASSET2","index":"0.000009671723513504"},{"denom":"ASSET3","index":"0.000002787177463987"},{"denom":"ASSET4","index":"0.000026276537470003"},{"denom":"ASSET5","index":"0.000002193093087113"},{"denom":"ASSET6","index":"0.000008967187788370"},{"denom":"ASSET7","index":"0.000013834455896763"},{"denom":"ASSET8","index":"0.000020224290111997"},{"denom":"ASSET9","index":"0.000008004370791503"}],"last_reward_claim_height":"186"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET4","shares":"280801745.999999998595991270","reward_history":[],"last_reward_claim_height":"29"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET11","shares":"759414143.968662743553641902","reward_history":[{"denom":"ASSET0","index":"0.000003342998947188"},{"denom":"ASSET1","index":"0.000028345782457833"},{"denom":"ASSET10","index":"0.000022532322238539"},{"denom":"ASSET11","index":"0.000028144588841629"},{"denom":"ASSET12","index":"0.000026788988923046"},{"denom":"ASSET13","index":"0.000008836278349189"},{"denom":"ASSET14","index":"0.000025846526421467"},{"denom":"ASSET15","index":"0.000020312521464953"},{"denom":"ASSET16","index":"0.000012581099317360"},{"denom":"ASSET17","index":"0.000009844015126225"},{"denom":"ASSET18","index":"0.000004087085525414"},{"denom":"ASSET2","index":"0.000008577030596387"},{"denom":"ASSET3","index":"0.000002386540105172"},{"denom":"ASSET4","index":"0.000022982635628207"},{"denom":"ASSET5","index":"0.000001858980311097"},{"denom":"ASSET6","index":"0.000007503977785171"},{"denom":"ASSET7","index":"0.000011778054778213"},{"denom":"ASSET8","index":"0.000016064148587518"},{"denom":"ASSET9","index":"0.000006822246648031"}],"last_reward_claim_height":"148"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET13","shares":"832109120.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003342998947188"},{"denom":"ASSET1","index":"0.000028345782457833"},{"denom":"ASSET10","index":"0.000022532322238539"},{"denom":"ASSET11","index":"0.000028144588841629"},{"denom":"ASSET12","index":"0.000026788988923046"},{"denom":"ASSET13","index":"0.000008836278349189"},{"denom":"ASSET14","index":"0.000025846526421467"},{"denom":"ASSET15","index":"0.000020312521464953"},{"denom":"ASSET16","index":"0.000012581099317360"},{"denom":"ASSET17","index":"0.000009844015126225"},{"denom":"ASSET18","index":"0.000004087085525414"},{"denom":"ASSET2","index":"0.000008577030596387"},{"denom":"ASSET3","index":"0.000002386540105172"},{"denom":"ASSET4","index":"0.000022982635628207"},{"denom":"ASSET5","index":"0.000001858980311097"},{"denom":"ASSET6","index":"0.000007503977785171"},{"denom":"ASSET7","index":"0.000011778054778213"},{"denom":"ASSET8","index":"0.000016064148587518"},{"denom":"ASSET9","index":"0.000006822246648031"}],"last_reward_claim_height":"146"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET0","shares":"116191817.999999868238478388","reward_history":[],"last_reward_claim_height":"51"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET5","shares":"507603248.454440734608788382","reward_history":[{"denom":"ASSET0","index":"0.000001535240763659"},{"denom":"ASSET1","index":"0.000012802535686671"},{"denom":"ASSET10","index":"0.000008918976928097"},{"denom":"ASSET11","index":"0.000012384847277788"},{"denom":"ASSET12","index":"0.000011152366284839"},{"denom":"ASSET13","index":"0.000003838101909148"},{"denom":"ASSET14","index":"0.000011569197017318"},{"denom":"ASSET15","index":"0.000008271431242866"},{"denom":"ASSET16","index":"0.000005767016142371"},{"denom":"ASSET17","index":"0.000004095404830432"},{"denom":"ASSET18","index":"0.000001951213819735"},{"denom":"ASSET2","index":"0.000003778922237253"},{"denom":"ASSET3","index":"0.000001105544885116"},{"denom":"ASSET4","index":"0.000010403614783903"},{"denom":"ASSET5","index":"0.000000857676404279"},{"denom":"ASSET6","index":"0.000003491600641819"},{"denom":"ASSET7","index":"0.000005348470057083"},{"denom":"ASSET8","index":"0.000006978912901618"},{"denom":"ASSET9","index":"0.000003013874884636"}],"last_reward_claim_height":"67"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET18","shares":"563384444.488909766097892788","reward_history":[{"denom":"ASSET0","index":"0.000004713052793206"},{"denom":"ASSET1","index":"0.000038540515083927"},{"denom":"ASSET10","index":"0.000033490360102272"},{"denom":"ASSET11","index":"0.000040107734635720"},{"denom":"ASSET12","index":"0.000038197935060603"},{"denom":"ASSET13","index":"0.000012948354360272"},{"denom":"ASSET14","index":"0.000037002954624969"},{"denom":"ASSET15","index":"0.000030054303395937"},{"denom":"ASSET16","index":"0.000017098583157054"},{"denom":"ASSET17","index":"0.000013871074640540"},{"denom":"ASSET18","index":"0.000005756151421242"},{"denom":"ASSET2","index":"0.000011635316491200"},{"denom":"ASSET3","index":"0.000003346046298358"},{"denom":"ASSET4","index":"0.000031600919386329"},{"denom":"ASSET5","index":"0.000002627879191745"},{"denom":"ASSET6","index":"0.000010730060131595"},{"denom":"ASSET7","index":"0.000016571778991047"},{"denom":"ASSET8","index":"0.000023899875611587"},{"denom":"ASSET9","index":"0.000009570555980860"}],"last_reward_claim_height":"190"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET10","shares":"372236788.320470352097509928","reward_history":[{"denom":"ASSET0","index":"0.000003333609736915"},{"denom":"ASSET1","index":"0.000028281729059652"},{"denom":"ASSET10","index":"0.000022560289398652"},{"denom":"ASSET11","index":"0.000028101042421314"},{"denom":"ASSET12","index":"0.000026787599659919"},{"denom":"ASSET13","index":"0.000008826015241086"},{"denom":"ASSET14","index":"0.000025794402991537"},{"denom":"ASSET15","index":"0.000020323143219667"},{"denom":"ASSET16","index":"0.000012547562311789"},{"denom":"ASSET17","index":"0.000009844220733470"},{"denom":"ASSET18","index":"0.000004071528772633"},{"denom":"ASSET2","index":"0.000008563776406339"},{"denom":"ASSET3","index":"0.000002379222276435"},{"denom":"ASSET4","index":"0.000022929058250150"},{"denom":"ASSET5","index":"0.000001853699834530"},{"denom":"ASSET6","index":"0.000007480326246914"},{"denom":"ASSET7","index":"0.000011749530638760"},{"denom":"ASSET8","index":"0.000016044906214881"},{"denom":"ASSET9","index":"0.000006811209452101"}],"last_reward_claim_height":"152"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET17","shares":"1000000000.000001379000000000","reward_history":[{"denom":"ASSET0","index":"0.000001694764141112"},{"denom":"ASSET1","index":"0.000014130580032100"},{"denom":"ASSET10","index":"0.000009844524497723"},{"denom":"ASSET11","index":"0.000013669508873851"},{"denom":"ASSET12","index":"0.000012309527666765"},{"denom":"ASSET13","index":"0.000004236016804025"},{"denom":"ASSET14","index":"0.000012769407426673"},{"denom":"ASSET15","index":"0.000009129685492685"},{"denom":"ASSET16","index":"0.000006365641339869"},{"denom":"ASSET17","index":"0.000004520761007698"},{"denom":"ASSET18","index":"0.000002153452502679"},{"denom":"ASSET2","index":"0.000004171085594400"},{"denom":"ASSET3","index":"0.000001219991901933"},{"denom":"ASSET4","index":"0.000011483292916774"},{"denom":"ASSET5","index":"0.000000947161681676"},{"denom":"ASSET6","index":"0.000003854173635500"},{"denom":"ASSET7","index":"0.000005903378783277"},{"denom":"ASSET8","index":"0.000007702985978462"},{"denom":"ASSET9","index":"0.000003326979869284"}],"last_reward_claim_height":"92"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET1","shares":"434104760.999999999259731575","reward_history":[{"denom":"ASSET0","index":"0.000003372790294110"},{"denom":"ASSET1","index":"0.000028600279733511"},{"denom":"ASSET10","index":"0.000022731421090197"},{"denom":"ASSET11","index":"0.000028396190348540"},{"denom":"ASSET12","index":"0.000027027392524280"},{"denom":"ASSET13","index":"0.000008915082315276"},{"denom":"ASSET14","index":"0.000026078776667620"},{"denom":"ASSET15","index":"0.000020492230414373"},{"denom":"ASSET16","index":"0.000012694274413467"},{"denom":"ASSET17","index":"0.000009931274832025"},{"denom":"ASSET18","index":"0.000004123939856338"},{"denom":"ASSET2","index":"0.000008653658587521"},{"denom":"ASSET3","index":"0.000002407864000528"},{"denom":"ASSET4","index":"0.000023189126720885"},{"denom":"ASSET5","index":"0.000001875419633234"},{"denom":"ASSET6","index":"0.000007571725921487"},{"denom":"ASSET7","index":"0.000011883748947250"},{"denom":"ASSET8","index":"0.000016207221904670"},{"denom":"ASSET9","index":"0.000006883201227023"}],"last_reward_claim_height":"159"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET12","shares":"445688926.879817323040553414","reward_history":[{"denom":"ASSET0","index":"0.000003372790294110"},{"denom":"ASSET1","index":"0.000028600279733511"},{"denom":"ASSET10","index":"0.000022731421090197"},{"denom":"ASSET11","index":"0.000028396190348540"},{"denom":"ASSET12","index":"0.000027027392524280"},{"denom":"ASSET13","index":"0.000008915082315276"},{"denom":"ASSET14","index":"0.000026078776667620"},{"denom":"ASSET15","index":"0.000020492230414373"},{"denom":"ASSET16","index":"0.000012694274413467"},{"denom":"ASSET17","index":"0.000009931274832025"},{"denom":"ASSET18","index":"0.000004123939856338"},{"denom":"ASSET2","index":"0.000008653658587521"},{"denom":"ASSET3","index":"0.000002407864000528"},{"denom":"ASSET4","index":"0.000023189126720885"},{"denom":"ASSET5","index":"0.000001875419633234"},{"denom":"ASSET6","index":"0.000007571725921487"},{"denom":"ASSET7","index":"0.000011883748947250"},{"denom":"ASSET8","index":"0.000016207221904670"},{"denom":"ASSET9","index":"0.000006883201227023"}],"last_reward_claim_height":"125"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET16","shares":"376958546.845961303137361992","reward_history":[{"denom":"ASSET0","index":"0.000003372790294110"},{"denom":"ASSET1","index":"0.000028600279733511"},{"denom":"ASSET10","index":"0.000022731421090197"},{"denom":"ASSET11","index":"0.000028396190348540"},{"denom":"ASSET12","index":"0.000027027392524280"},{"denom":"ASSET13","index":"0.000008915082315276"},{"denom":"ASSET14","index":"0.000026078776667620"},{"denom":"ASSET15","index":"0.000020492230414373"},{"denom":"ASSET16","index":"0.000012694274413467"},{"denom":"ASSET17","index":"0.000009931274832025"},{"denom":"ASSET18","index":"0.000004123939856338"},{"denom":"ASSET2","index":"0.000008653658587521"},{"denom":"ASSET3","index":"0.000002407864000528"},{"denom":"ASSET4","index":"0.000023189126720885"},{"denom":"ASSET5","index":"0.000001875419633234"},{"denom":"ASSET6","index":"0.000007571725921487"},{"denom":"ASSET7","index":"0.000011883748947250"},{"denom":"ASSET8","index":"0.000016207221904670"},{"denom":"ASSET9","index":"0.000006883201227023"}],"last_reward_claim_height":"164"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET3","shares":"650594959.687189802103453145","reward_history":[{"denom":"ASSET0","index":"0.000001453309126336"},{"denom":"ASSET1","index":"0.000012116886392617"},{"denom":"ASSET10","index":"0.000008441923956558"},{"denom":"ASSET11","index":"0.000011721955689254"},{"denom":"ASSET12","index":"0.000010555542874101"},{"denom":"ASSET13","index":"0.000003632376264868"},{"denom":"ASSET14","index":"0.000010950025301978"},{"denom":"ASSET15","index":"0.000007829131366891"},{"denom":"ASSET16","index":"0.000005458650595742"},{"denom":"ASSET17","index":"0.000003876686404859"},{"denom":"ASSET18","index":"0.000001846446727754"},{"denom":"ASSET2","index":"0.000003576790104576"},{"denom":"ASSET3","index":"0.000001046274984845"},{"denom":"ASSET4","index":"0.000009847267605868"},{"denom":"ASSET5","index":"0.000000812275181037"},{"denom":"ASSET6","index":"0.000003305135159925"},{"denom":"ASSET7","index":"0.000005061926790434"},{"denom":"ASSET8","index":"0.000006605339289501"},{"denom":"ASSET9","index":"0.000002852825194325"}],"last_reward_claim_height":"103"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET15","shares":"43604226.000000001874981718","reward_history":[],"last_reward_claim_height":"8"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET1","shares":"810546172.559582274380643215","reward_history":[{"denom":"ASSET0","index":"0.000001542334439671"},{"denom":"ASSET1","index":"0.000012860022908304"},{"denom":"ASSET10","index":"0.000008959505058412"},{"denom":"ASSET11","index":"0.000012440701863130"},{"denom":"ASSET12","index":"0.000011202637482986"},{"denom":"ASSET13","index":"0.000003855293405849"},{"denom":"ASSET14","index":"0.000011621234937056"},{"denom":"ASSET15","index":"0.000008308996655285"},{"denom":"ASSET16","index":"0.000005793070384239"},{"denom":"ASSET17","index":"0.000004114339021332"},{"denom":"ASSET18","index":"0.000001959846507084"},{"denom":"ASSET2","index":"0.000003796320730815"},{"denom":"ASSET3","index":"0.000001110350550164"},{"denom":"ASSET4","index":"0.000010450826325201"},{"denom":"ASSET5","index":"0.000000861797005699"},{"denom":"ASSET6","index":"0.000003507969675592"},{"denom":"ASSET7","index":"0.000005372663952407"},{"denom":"ASSET8","index":"0.000007010512417899"},{"denom":"ASSET9","index":"0.000003027866977623"}],"last_reward_claim_height":"117"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET8","shares":"1150543883.763132544892842404","reward_history":[{"denom":"ASSET0","index":"0.000003036454064443"},{"denom":"ASSET1","index":"0.000025762443856573"},{"denom":"ASSET10","index":"0.000020552854458451"},{"denom":"ASSET11","index":"0.000025598594042577"},{"denom":"ASSET12","index":"0.000024403233064712"},{"denom":"ASSET13","index":"0.000008040226829205"},{"denom":"ASSET14","index":"0.000023496526683137"},{"denom":"ASSET15","index":"0.000018514610345002"},{"denom":"ASSET16","index":"0.000011429420030088"},{"denom":"ASSET17","index":"0.000008967792958730"},{"denom":"ASSET18","index":"0.000003708688180539"},{"denom":"ASSET2","index":"0.000007801450355100"},{"denom":"ASSET3","index":"0.000002167197324698"},{"denom":"ASSET4","index":"0.000020886439041228"},{"denom":"ASSET5","index":"0.000001688395026424"},{"denom":"ASSET6","index":"0.000006814112030993"},{"denom":"ASSET7","index":"0.000010703097412338"},{"denom":"ASSET8","index":"0.000014616213118562"},{"denom":"ASSET9","index":"0.000006204650488693"}],"last_reward_claim_height":"174"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET9","shares":"916719447.094753090020192625","reward_history":[{"denom":"ASSET0","index":"0.000003036454064443"},{"denom":"ASSET1","index":"0.000025762443856573"},{"denom":"ASSET10","index":"0.000020552854458451"},{"denom":"ASSET11","index":"0.000025598594042577"},{"denom":"ASSET12","index":"0.000024403233064712"},{"denom":"ASSET13","index":"0.000008040226829205"},{"denom":"ASSET14","index":"0.000023496526683137"},{"denom":"ASSET15","index":"0.000018514610345002"},{"denom":"ASSET16","index":"0.000011429420030088"},{"denom":"ASSET17","index":"0.000008967792958730"},{"denom":"ASSET18","index":"0.000003708688180539"},{"denom":"ASSET2","index":"0.000007801450355100"},{"denom":"ASSET3","index":"0.000002167197324698"},{"denom":"ASSET4","index":"0.000020886439041228"},{"denom":"ASSET5","index":"0.000001688395026424"},{"denom":"ASSET6","index":"0.000006814112030993"},{"denom":"ASSET7","index":"0.000010703097412338"},{"denom":"ASSET8","index":"0.000014616213118562"},{"denom":"ASSET9","index":"0.000006204650488693"}],"last_reward_claim_height":"150"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET17","shares":"534712032.789687936283599432","reward_history":[{"denom":"ASSET0","index":"0.000001542334439671"},{"denom":"ASSET1","index":"0.000012860022908304"},{"denom":"ASSET10","index":"0.000008959505058412"},{"denom":"ASSET11","index":"0.000012440701863130"},{"denom":"ASSET12","index":"0.000011202637482986"},{"denom":"ASSET13","index":"0.000003855293405849"},{"denom":"ASSET14","index":"0.000011621234937056"},{"denom":"ASSET15","index":"0.000008308996655285"},{"denom":"ASSET16","index":"0.000005793070384239"},{"denom":"ASSET17","index":"0.000004114339021332"},{"denom":"ASSET18","index":"0.000001959846507084"},{"denom":"ASSET2","index":"0.000003796320730815"},{"denom":"ASSET3","index":"0.000001110350550164"},{"denom":"ASSET4","index":"0.000010450826325201"},{"denom":"ASSET5","index":"0.000000861797005699"},{"denom":"ASSET6","index":"0.000003507969675592"},{"denom":"ASSET7","index":"0.000005372663952407"},{"denom":"ASSET8","index":"0.000007010512417899"},{"denom":"ASSET9","index":"0.000003027866977623"}],"last_reward_claim_height":"117"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET10","shares":"195145495.235517063385768169","reward_history":[{"denom":"ASSET0","index":"0.000001563811170888"},{"denom":"ASSET1","index":"0.000013038374863878"},{"denom":"ASSET10","index":"0.000009083864212622"},{"denom":"ASSET11","index":"0.000012612362006834"},{"denom":"ASSET12","index":"0.000011358137819015"},{"denom":"ASSET13","index":"0.000003908204905926"},{"denom":"ASSET14","index":"0.000011781504633469"},{"denom":"ASSET15","index":"0.000008423676586333"},{"denom":"ASSET16","index":"0.000005872891529250"},{"denom":"ASSET17","index":"0.000004170163122369"},{"denom":"ASSET18","index":"0.000001987177985342"},{"denom":"ASSET2","index":"0.000003848668947643"},{"denom":"ASSET3","index":"0.000001125891122188"},{"denom":"ASSET4","index":"0.000010596077552999"},{"denom":"ASSET5","index":"0.000000873194054811"},{"denom":"ASSET6","index":"0.000003556281241411"},{"denom":"ASSET7","index":"0.000005446878672206"},{"denom":"ASSET8","index":"0.000007107270397641"},{"denom":"ASSET9","index":"0.000003069409404789"}],"last_reward_claim_height":"123"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET12","shares":"61009406.752435335500010660","reward_history":[{"denom":"ASSET0","index":"0.000004959246898457"},{"denom":"ASSET1","index":"0.000040644134720716"},{"denom":"ASSET10","index":"0.000035353347669123"},{"denom":"ASSET11","index":"0.000042259329711737"},{"denom":"ASSET12","index":"0.000040324609330816"},{"denom":"ASSET13","index":"0.000013634496574458"},{"denom":"ASSET14","index":"0.000038957207426942"},{"denom":"ASSET15","index":"0.000031703303912562"},{"denom":"ASSET16","index":"0.000018020987420922"},{"denom":"ASSET17","index":"0.000014649010642136"},{"denom":"ASSET18","index":"0.000006048740887504"},{"denom":"ASSET2","index":"0.000012283177286373"},{"denom":"ASSET3","index":"0.000003521378987865"},{"denom":"ASSET4","index":"0.000033309186540081"},{"denom":"ASSET5","index":"0.000002764517824101"},{"denom":"ASSET6","index":"0.000011281385393492"},{"denom":"ASSET7","index":"0.000017449426350326"},{"denom":"ASSET8","index":"0.000025152281518201"},{"denom":"ASSET9","index":"0.000010089053949444"}],"last_reward_claim_height":"193"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET1","shares":"124393575.999999999792343672","reward_history":[],"last_reward_claim_height":"26"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET10","shares":"473863506.035384005622022912","reward_history":[{"denom":"ASSET0","index":"0.000003037978324998"},{"denom":"ASSET1","index":"0.000025756345113171"},{"denom":"ASSET10","index":"0.000020449699671521"},{"denom":"ASSET11","index":"0.000025567125107120"},{"denom":"ASSET12","index":"0.000024323299608917"},{"denom":"ASSET13","index":"0.000008026089638757"},{"denom":"ASSET14","index":"0.000023482777870484"},{"denom":"ASSET15","index":"0.000018439819094125"},{"denom":"ASSET16","index":"0.000011433094032389"},{"denom":"ASSET17","index":"0.000008938487942114"},{"denom":"ASSET18","index":"0.000003715472889790"},{"denom":"ASSET2","index":"0.000007791978720736"},{"denom":"ASSET3","index":"0.000002168844641333"},{"denom":"ASSET4","index":"0.000020883291069830"},{"denom":"ASSET5","index":"0.000001689134510364"},{"denom":"ASSET6","index":"0.000006819968009550"},{"denom":"ASSET7","index":"0.000010702337477897"},{"denom":"ASSET8","index":"0.000014590947163921"},{"denom":"ASSET9","index":"0.000006197850437110"}],"last_reward_claim_height":"141"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET13","shares":"196862681.000000001579683351","reward_history":[],"last_reward_claim_height":"48"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET17","shares":"649677346.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001600184479142"},{"denom":"ASSET1","index":"0.000013342157474081"},{"denom":"ASSET10","index":"0.000009295060662992"},{"denom":"ASSET11","index":"0.000012907134644369"},{"denom":"ASSET12","index":"0.000011622469236023"},{"denom":"ASSET13","index":"0.000003999732516397"},{"denom":"ASSET14","index":"0.000012056763384279"},{"denom":"ASSET15","index":"0.000008620301633991"},{"denom":"ASSET16","index":"0.000006010164655719"},{"denom":"ASSET17","index":"0.000004268615973958"},{"denom":"ASSET18","index":"0.000002033021264483"},{"denom":"ASSET2","index":"0.000003938523274026"},{"denom":"ASSET3","index":"0.000001152045383207"},{"denom":"ASSET4","index":"0.000010842780077243"},{"denom":"ASSET5","index":"0.000000894092147498"},{"denom":"ASSET6","index":"0.000003639035195279"},{"denom":"ASSET7","index":"0.000005573684463094"},{"denom":"ASSET8","index":"0.000007272969620361"},{"denom":"ASSET9","index":"0.000003141345760282"}],"last_reward_claim_height":"116"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET5","shares":"564851526.964432272665257560","reward_history":[{"denom":"ASSET0","index":"0.000004819121490741"},{"denom":"ASSET1","index":"0.000039439037062385"},{"denom":"ASSET10","index":"0.000033949711699647"},{"denom":"ASSET11","index":"0.000040926462496439"},{"denom":"ASSET12","index":"0.000038853804420393"},{"denom":"ASSET13","index":"0.000013188383097013"},{"denom":"ASSET14","index":"0.000037786507004869"},{"denom":"ASSET15","index":"0.000030511465947454"},{"denom":"ASSET16","index":"0.000017508488927783"},{"denom":"ASSET17","index":"0.000014113313501087"},{"denom":"ASSET18","index":"0.000005902508101436"},{"denom":"ASSET2","index":"0.000011888871733978"},{"denom":"ASSET3","index":"0.000003426020888663"},{"denom":"ASSET4","index":"0.000032328377078046"},{"denom":"ASSET5","index":"0.000002685672180211"},{"denom":"ASSET6","index":"0.000010983824100820"},{"denom":"ASSET7","index":"0.000016943392626871"},{"denom":"ASSET8","index":"0.000024343267700456"},{"denom":"ASSET9","index":"0.000009767523137997"}],"last_reward_claim_height":"188"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET16","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001732863553160"},{"denom":"ASSET1","index":"0.000014476512568697"},{"denom":"ASSET10","index":"0.000010084697727409"},{"denom":"ASSET11","index":"0.000014004946421444"},{"denom":"ASSET12","index":"0.000012607292539223"},{"denom":"ASSET13","index":"0.000004334999642824"},{"denom":"ASSET14","index":"0.000013078858686476"},{"denom":"ASSET15","index":"0.000009351781667220"},{"denom":"ASSET16","index":"0.000006516703263852"},{"denom":"ASSET17","index":"0.000004630438674838"},{"denom":"ASSET18","index":"0.000002204429700414"},{"denom":"ASSET2","index":"0.000004272502924514"},{"denom":"ASSET3","index":"0.000001249934366214"},{"denom":"ASSET4","index":"0.000011760746082105"},{"denom":"ASSET5","index":"0.000000965858373893"},{"denom":"ASSET6","index":"0.000003948656293267"},{"denom":"ASSET7","index":"0.000006045137116599"},{"denom":"ASSET8","index":"0.000007891631066688"},{"denom":"ASSET9","index":"0.000003403230388010"}],"last_reward_claim_height":"89"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET11","shares":"139602825.000000001380380346","reward_history":[{"denom":"ASSET0","index":"0.000001687731873143"},{"denom":"ASSET1","index":"0.000014069560961171"},{"denom":"ASSET10","index":"0.000009802495056563"},{"denom":"ASSET11","index":"0.000013610740912442"},{"denom":"ASSET12","index":"0.000012256373563096"},{"denom":"ASSET13","index":"0.000004217751625940"},{"denom":"ASSET14","index":"0.000012714404583367"},{"denom":"ASSET15","index":"0.000009090791386823"},{"denom":"ASSET16","index":"0.000006338265608675"},{"denom":"ASSET17","index":"0.000004501407356839"},{"denom":"ASSET18","index":"0.000002144184836496"},{"denom":"ASSET2","index":"0.000004153051292327"},{"denom":"ASSET3","index":"0.000001214709312157"},{"denom":"ASSET4","index":"0.000011433811394910"},{"denom":"ASSET5","index":"0.000000942889008137"},{"denom":"ASSET6","index":"0.000003837834423079"},{"denom":"ASSET7","index":"0.000005877867503028"},{"denom":"ASSET8","index":"0.000007669751132718"},{"denom":"ASSET9","index":"0.000003312735983819"}],"last_reward_claim_height":"97"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET13","shares":"2311856.000000000000000000","reward_history":[],"last_reward_claim_height":"34"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET15","shares":"2000062599.594424291000000000","reward_history":[{"denom":"ASSET0","index":"0.000003310751488522"},{"denom":"ASSET1","index":"0.000028084250149300"},{"denom":"ASSET10","index":"0.000022395324527460"},{"denom":"ASSET11","index":"0.000027902986790638"},{"denom":"ASSET12","index":"0.000026594787286768"},{"denom":"ASSET13","index":"0.000008763085936534"},{"denom":"ASSET14","index":"0.000025613920456358"},{"denom":"ASSET15","index":"0.000020176020856033"},{"denom":"ASSET16","index":"0.000012460451689171"},{"denom":"ASSET17","index":"0.000009773335616478"},{"denom":"ASSET18","index":"0.000004043661907525"},{"denom":"ASSET2","index":"0.000008503271494062"},{"denom":"ASSET3","index":"0.000002362859659779"},{"denom":"ASSET4","index":"0.000022769116693783"},{"denom":"ASSET5","index":"0.000001840413908887"},{"denom":"ASSET6","index":"0.000007429033260494"},{"denom":"ASSET7","index":"0.000011667535172652"},{"denom":"ASSET8","index":"0.000015931047386954"},{"denom":"ASSET9","index":"0.000006763232815972"}],"last_reward_claim_height":"150"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET1","shares":"1181931974.000000001611275177","reward_history":[],"last_reward_claim_height":"50"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET3","shares":"525873192.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002915106026686"},{"denom":"ASSET1","index":"0.000024751938975568"},{"denom":"ASSET10","index":"0.000019864528416862"},{"denom":"ASSET11","index":"0.000024625253839727"},{"denom":"ASSET12","index":"0.000023534700266806"},{"denom":"ASSET13","index":"0.000007739190454504"},{"denom":"ASSET14","index":"0.000022584902384729"},{"denom":"ASSET15","index":"0.000017872912229645"},{"denom":"ASSET16","index":"0.000010972881933217"},{"denom":"ASSET17","index":"0.000008648586457086"},{"denom":"ASSET18","index":"0.000003552999450219"},{"denom":"ASSET2","index":"0.000007504215303421"},{"denom":"ASSET3","index":"0.000002079538758775"},{"denom":"ASSET4","index":"0.000020065180146540"},{"denom":"ASSET5","index":"0.000001620267199228"},{"denom":"ASSET6","index":"0.000006536798446662"},{"denom":"ASSET7","index":"0.000010280222742310"},{"denom":"ASSET8","index":"0.000014068743113537"},{"denom":"ASSET9","index":"0.000005967789042866"}],"last_reward_claim_height":"149"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET18","shares":"1000014157.142585158000000000","reward_history":[{"denom":"ASSET0","index":"0.000002915106026686"},{"denom":"ASSET1","index":"0.000024751938975568"},{"denom":"ASSET10","index":"0.000019864528416862"},{"denom":"ASSET11","index":"0.000024625253839727"},{"denom":"ASSET12","index":"0.000023534700266806"},{"denom":"ASSET13","index":"0.000007739190454504"},{"denom":"ASSET14","index":"0.000022584902384729"},{"denom":"ASSET15","index":"0.000017872912229645"},{"denom":"ASSET16","index":"0.000010972881933217"},{"denom":"ASSET17","index":"0.000008648586457086"},{"denom":"ASSET18","index":"0.000003552999450219"},{"denom":"ASSET2","index":"0.000007504215303421"},{"denom":"ASSET3","index":"0.000002079538758775"},{"denom":"ASSET4","index":"0.000020065180146540"},{"denom":"ASSET5","index":"0.000001620267199228"},{"denom":"ASSET6","index":"0.000006536798446662"},{"denom":"ASSET7","index":"0.000010280222742310"},{"denom":"ASSET8","index":"0.000014068743113537"},{"denom":"ASSET9","index":"0.000005967789042866"}],"last_reward_claim_height":"134"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET17","shares":"533954714.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001670929391506"},{"denom":"ASSET1","index":"0.000013946161101263"},{"denom":"ASSET10","index":"0.000009716355120388"},{"denom":"ASSET11","index":"0.000013489421488305"},{"denom":"ASSET12","index":"0.000012147571569489"},{"denom":"ASSET13","index":"0.000004178741924768"},{"denom":"ASSET14","index":"0.000012601474290441"},{"denom":"ASSET15","index":"0.000009009969010905"},{"denom":"ASSET16","index":"0.000006280878901179"},{"denom":"ASSET17","index":"0.000004459594233357"},{"denom":"ASSET18","index":"0.000002124832112458"},{"denom":"ASSET2","index":"0.000004116330300637"},{"denom":"ASSET3","index":"0.000001202842210524"},{"denom":"ASSET4","index":"0.000011333383563781"},{"denom":"ASSET5","index":"0.000000933337469958"},{"denom":"ASSET6","index":"0.000003804272179982"},{"denom":"ASSET7","index":"0.000005824139288221"},{"denom":"ASSET8","index":"0.000007600033683947"},{"denom":"ASSET9","index":"0.000003282284050887"}],"last_reward_claim_height":"79"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET3","shares":"689698999.774213584470262090","reward_history":[{"denom":"ASSET0","index":"0.000003119961272076"},{"denom":"ASSET1","index":"0.000026462428012801"},{"denom":"ASSET10","index":"0.000021088828135750"},{"denom":"ASSET11","index":"0.000026288818556387"},{"denom":"ASSET12","index":"0.000025049012446876"},{"denom":"ASSET13","index":"0.000008256026418292"},{"denom":"ASSET14","index":"0.000024133914778951"},{"denom":"ASSET15","index":"0.000019001193386697"},{"denom":"ASSET16","index":"0.000011741691861213"},{"denom":"ASSET17","index":"0.000009205139483526"},{"denom":"ASSET18","index":"0.000003811157018018"},{"denom":"ASSET2","index":"0.000008011229275486"},{"denom":"ASSET3","index":"0.000002226652147557"},{"denom":"ASSET4","index":"0.000021454928269907"},{"denom":"ASSET5","index":"0.000001734689929917"},{"denom":"ASSET6","index":"0.000007001091110949"},{"denom":"ASSET7","index":"0.000010994186615549"},{"denom":"ASSET8","index":"0.000015007966738007"},{"denom":"ASSET9","index":"0.000006372340046203"}],"last_reward_claim_height":"180"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET5","shares":"975805169.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001598361255475"},{"denom":"ASSET1","index":"0.000013324868720531"},{"denom":"ASSET10","index":"0.000009283863630055"},{"denom":"ASSET11","index":"0.000012890721875256"},{"denom":"ASSET12","index":"0.000011607749807828"},{"denom":"ASSET13","index":"0.000003994929715268"},{"denom":"ASSET14","index":"0.000012041896653103"},{"denom":"ASSET15","index":"0.000008609605674538"},{"denom":"ASSET16","index":"0.000006002777756047"},{"denom":"ASSET17","index":"0.000004262945630213"},{"denom":"ASSET18","index":"0.000002030561253910"},{"denom":"ASSET2","index":"0.000003933279565341"},{"denom":"ASSET3","index":"0.000001150586482321"},{"denom":"ASSET4","index":"0.000010829011071909"},{"denom":"ASSET5","index":"0.000000892953750521"},{"denom":"ASSET6","index":"0.000003634763049905"},{"denom":"ASSET7","index":"0.000005566684063932"},{"denom":"ASSET8","index":"0.000007263685559290"},{"denom":"ASSET9","index":"0.000003137668156809"}],"last_reward_claim_height":"74"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET6","shares":"379052848.492115970468360184","reward_history":[{"denom":"ASSET0","index":"0.000003119961272076"},{"denom":"ASSET1","index":"0.000026462428012801"},{"denom":"ASSET10","index":"0.000021088828135750"},{"denom":"ASSET11","index":"0.000026288818556387"},{"denom":"ASSET12","index":"0.000025049012446876"},{"denom":"ASSET13","index":"0.000008256026418292"},{"denom":"ASSET14","index":"0.000024133914778951"},{"denom":"ASSET15","index":"0.000019001193386697"},{"denom":"ASSET16","index":"0.000011741691861213"},{"denom":"ASSET17","index":"0.000009205139483526"},{"denom":"ASSET18","index":"0.000003811157018018"},{"denom":"ASSET2","index":"0.000008011229275486"},{"denom":"ASSET3","index":"0.000002226652147557"},{"denom":"ASSET4","index":"0.000021454928269907"},{"denom":"ASSET5","index":"0.000001734689929917"},{"denom":"ASSET6","index":"0.000007001091110949"},{"denom":"ASSET7","index":"0.000010994186615549"},{"denom":"ASSET8","index":"0.000015007966738007"},{"denom":"ASSET9","index":"0.000006372340046203"}],"last_reward_claim_height":"125"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET14","shares":"561553811.000000000000000000","reward_history":[],"last_reward_claim_height":"17"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET15","shares":"164577732.999999992923157481","reward_history":[{"denom":"ASSET0","index":"0.000003119961272076"},{"denom":"ASSET1","index":"0.000026462428012801"},{"denom":"ASSET10","index":"0.000021088828135750"},{"denom":"ASSET11","index":"0.000026288818556387"},{"denom":"ASSET12","index":"0.000025049012446876"},{"denom":"ASSET13","index":"0.000008256026418292"},{"denom":"ASSET14","index":"0.000024133914778951"},{"denom":"ASSET15","index":"0.000019001193386697"},{"denom":"ASSET16","index":"0.000011741691861213"},{"denom":"ASSET17","index":"0.000009205139483526"},{"denom":"ASSET18","index":"0.000003811157018018"},{"denom":"ASSET2","index":"0.000008011229275486"},{"denom":"ASSET3","index":"0.000002226652147557"},{"denom":"ASSET4","index":"0.000021454928269907"},{"denom":"ASSET5","index":"0.000001734689929917"},{"denom":"ASSET6","index":"0.000007001091110949"},{"denom":"ASSET7","index":"0.000010994186615549"},{"denom":"ASSET8","index":"0.000015007966738007"},{"denom":"ASSET9","index":"0.000006372340046203"}],"last_reward_claim_height":"148"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET16","shares":"1220924107.137841475272040003","reward_history":[{"denom":"ASSET0","index":"0.000004712919701194"},{"denom":"ASSET1","index":"0.000038551910188637"},{"denom":"ASSET10","index":"0.000033366472665064"},{"denom":"ASSET11","index":"0.000040061772796167"},{"denom":"ASSET12","index":"0.000038115593387847"},{"denom":"ASSET13","index":"0.000012923798257493"},{"denom":"ASSET14","index":"0.000036968911284872"},{"denom":"ASSET15","index":"0.000029958439689060"},{"denom":"ASSET16","index":"0.000017109313494010"},{"denom":"ASSET17","index":"0.000013844574846959"},{"denom":"ASSET18","index":"0.000005759646481226"},{"denom":"ASSET2","index":"0.000011633813263895"},{"denom":"ASSET3","index":"0.000003346860308295"},{"denom":"ASSET4","index":"0.000031605298521278"},{"denom":"ASSET5","index":"0.000002628206284514"},{"denom":"ASSET6","index":"0.000010728866620912"},{"denom":"ASSET7","index":"0.000016566279364856"},{"denom":"ASSET8","index":"0.000023846908582094"},{"denom":"ASSET9","index":"0.000009564372690576"}],"last_reward_claim_height":"189"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET16","shares":"699949777.000000298178605002","reward_history":[{"denom":"ASSET0","index":"0.000001543375593884"},{"denom":"ASSET1","index":"0.000012871309378663"},{"denom":"ASSET10","index":"0.000008967332198598"},{"denom":"ASSET11","index":"0.000012451619524186"},{"denom":"ASSET12","index":"0.000011213472915376"},{"denom":"ASSET13","index":"0.000003858438984711"},{"denom":"ASSET14","index":"0.000011631932007817"},{"denom":"ASSET15","index":"0.000008316259081242"},{"denom":"ASSET16","index":"0.000005798119954378"},{"denom":"ASSET17","index":"0.000004118129774432"},{"denom":"ASSET18","index":"0.000001961834686325"},{"denom":"ASSET2","index":"0.000003799362406955"},{"denom":"ASSET3","index":"0.000001111378119041"},{"denom":"ASSET4","index":"0.000010460246548983"},{"denom":"ASSET5","index":"0.000000862764187650"},{"denom":"ASSET6","index":"0.000003511364090393"},{"denom":"ASSET7","index":"0.000005377199337864"},{"denom":"ASSET8","index":"0.000007016574370602"},{"denom":"ASSET9","index":"0.000003030136134086"}],"last_reward_claim_height":"85"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET0","shares":"592604.166206332603504816","reward_history":[{"denom":"ASSET0","index":"0.000003296605577903"},{"denom":"ASSET1","index":"0.000027950980635352"},{"denom":"ASSET10","index":"0.000022177590033485"},{"denom":"ASSET11","index":"0.000027741245317152"},{"denom":"ASSET12","index":"0.000026384837371861"},{"denom":"ASSET13","index":"0.000008707523198290"},{"denom":"ASSET14","index":"0.000025482773879389"},{"denom":"ASSET15","index":"0.000019999205716580"},{"denom":"ASSET16","index":"0.000012408342313410"},{"denom":"ASSET17","index":"0.000009694954350389"},{"denom":"ASSET18","index":"0.000004033447725414"},{"denom":"ASSET2","index":"0.000008454290496983"},{"denom":"ASSET3","index":"0.000002354114882033"},{"denom":"ASSET4","index":"0.000022662624820802"},{"denom":"ASSET5","index":"0.000001833709311257"},{"denom":"ASSET6","index":"0.000007402928859239"},{"denom":"ASSET7","index":"0.000011614131087351"},{"denom":"ASSET8","index":"0.000015829970625061"},{"denom":"ASSET9","index":"0.000006725199056296"}],"last_reward_claim_height":"124"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET15","shares":"98882088.591308073849794997","reward_history":[{"denom":"ASSET0","index":"0.000001745217677213"},{"denom":"ASSET1","index":"0.000014553842410819"},{"denom":"ASSET10","index":"0.000010139729507131"},{"denom":"ASSET11","index":"0.000014078681363843"},{"denom":"ASSET12","index":"0.000012678362515121"},{"denom":"ASSET13","index":"0.000004362304066790"},{"denom":"ASSET14","index":"0.000013152043309614"},{"denom":"ASSET15","index":"0.000009402563770700"},{"denom":"ASSET16","index":"0.000006556038246289"},{"denom":"ASSET17","index":"0.000004655394058383"},{"denom":"ASSET18","index":"0.000002217418219224"},{"denom":"ASSET2","index":"0.000004295692705065"},{"denom":"ASSET3","index":"0.000001256734357891"},{"denom":"ASSET4","index":"0.000011827217337515"},{"denom":"ASSET5","index":"0.000000975486386160"},{"denom":"ASSET6","index":"0.000003970037158850"},{"denom":"ASSET7","index":"0.000006079396946830"},{"denom":"ASSET8","index":"0.000007932673055287"},{"denom":"ASSET9","index":"0.000003426784497665"}],"last_reward_claim_height":"77"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET10","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"32"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET3","shares":"850588293.356255945728797182","reward_history":[{"denom":"ASSET0","index":"0.000002735257365218"},{"denom":"ASSET1","index":"0.000023278157661741"},{"denom":"ASSET10","index":"0.000018999615823078"},{"denom":"ASSET11","index":"0.000023241706683585"},{"denom":"ASSET12","index":"0.000022372793234045"},{"denom":"ASSET13","index":"0.000007316911351959"},{"denom":"ASSET14","index":"0.000021266506066871"},{"denom":"ASSET15","index":"0.000017036720297506"},{"denom":"ASSET16","index":"0.000010298479660409"},{"denom":"ASSET17","index":"0.000008222611745720"},{"denom":"ASSET18","index":"0.000003315370510511"},{"denom":"ASSET2","index":"0.000007081336162231"},{"denom":"ASSET3","index":"0.000001948923871674"},{"denom":"ASSET4","index":"0.000018864412124408"},{"denom":"ASSET5","index":"0.000001519377842401"},{"denom":"ASSET6","index":"0.000006121992555640"},{"denom":"ASSET7","index":"0.000009661272655042"},{"denom":"ASSET8","index":"0.000013300968175029"},{"denom":"ASSET9","index":"0.000005629514833023"}],"last_reward_claim_height":"179"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET12","shares":"214114261.454195495993745579","reward_history":[{"denom":"ASSET0","index":"0.000002735257365218"},{"denom":"ASSET1","index":"0.000023278157661741"},{"denom":"ASSET10","index":"0.000018999615823078"},{"denom":"ASSET11","index":"0.000023241706683585"},{"denom":"ASSET12","index":"0.000022372793234045"},{"denom":"ASSET13","index":"0.000007316911351959"},{"denom":"ASSET14","index":"0.000021266506066871"},{"denom":"ASSET15","index":"0.000017036720297506"},{"denom":"ASSET16","index":"0.000010298479660409"},{"denom":"ASSET17","index":"0.000008222611745720"},{"denom":"ASSET18","index":"0.000003315370510511"},{"denom":"ASSET2","index":"0.000007081336162231"},{"denom":"ASSET3","index":"0.000001948923871674"},{"denom":"ASSET4","index":"0.000018864412124408"},{"denom":"ASSET5","index":"0.000001519377842401"},{"denom":"ASSET6","index":"0.000006121992555640"},{"denom":"ASSET7","index":"0.000009661272655042"},{"denom":"ASSET8","index":"0.000013300968175029"},{"denom":"ASSET9","index":"0.000005629514833023"}],"last_reward_claim_height":"151"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET17","shares":"134707319.346463555733445359","reward_history":[{"denom":"ASSET0","index":"0.000001139195115521"},{"denom":"ASSET1","index":"0.000009496890331931"},{"denom":"ASSET10","index":"0.000006616523219856"},{"denom":"ASSET11","index":"0.000009187371854639"},{"denom":"ASSET12","index":"0.000008273091178185"},{"denom":"ASSET13","index":"0.000002846943294505"},{"denom":"ASSET14","index":"0.000008582261490710"},{"denom":"ASSET15","index":"0.000006136055842283"},{"denom":"ASSET16","index":"0.000004278248649000"},{"denom":"ASSET17","index":"0.000003038433916001"},{"denom":"ASSET18","index":"0.000001447320933748"},{"denom":"ASSET2","index":"0.000002803422698710"},{"denom":"ASSET3","index":"0.000000819928024772"},{"denom":"ASSET4","index":"0.000007718116540611"},{"denom":"ASSET5","index":"0.000000636445192901"},{"denom":"ASSET6","index":"0.000002590694026466"},{"denom":"ASSET7","index":"0.000003967685677409"},{"denom":"ASSET8","index":"0.000005177210075735"},{"denom":"ASSET9","index":"0.000002236262294314"}],"last_reward_claim_height":"109"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET9","shares":"86182610.921692061787428000","reward_history":[{"denom":"ASSET0","index":"0.000003310378542013"},{"denom":"ASSET1","index":"0.000028352771206955"},{"denom":"ASSET10","index":"0.000022778987578468"},{"denom":"ASSET11","index":"0.000028201706998458"},{"denom":"ASSET12","index":"0.000026949790221900"},{"denom":"ASSET13","index":"0.000008856641706946"},{"denom":"ASSET14","index":"0.000025865717784540"},{"denom":"ASSET15","index":"0.000020483790155485"},{"denom":"ASSET16","index":"0.000012564495758376"},{"denom":"ASSET17","index":"0.000009912517491786"},{"denom":"ASSET18","index":"0.000004051289802086"},{"denom":"ASSET2","index":"0.000008567503486413"},{"denom":"ASSET3","index":"0.000002358477605528"},{"denom":"ASSET4","index":"0.000022984011222606"},{"denom":"ASSET5","index":"0.000001848359330263"},{"denom":"ASSET6","index":"0.000007474666006436"},{"denom":"ASSET7","index":"0.000011763521743703"},{"denom":"ASSET8","index":"0.000016098224703406"},{"denom":"ASSET9","index":"0.000006837907042961"}],"last_reward_claim_height":"175"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET0","shares":"184203085.999999997052750624","reward_history":[{"denom":"ASSET0","index":"0.000001549911588522"},{"denom":"ASSET1","index":"0.000012922257740418"},{"denom":"ASSET10","index":"0.000009003081854783"},{"denom":"ASSET11","index":"0.000012500946332712"},{"denom":"ASSET12","index":"0.000011256607989023"},{"denom":"ASSET13","index":"0.000003873860414458"},{"denom":"ASSET14","index":"0.000011677307025497"},{"denom":"ASSET15","index":"0.000008349069378868"},{"denom":"ASSET16","index":"0.000005821200932633"},{"denom":"ASSET17","index":"0.000004134118188113"},{"denom":"ASSET18","index":"0.000001969385882532"},{"denom":"ASSET2","index":"0.000003814460404941"},{"denom":"ASSET3","index":"0.000001115740384942"},{"denom":"ASSET4","index":"0.000010501554259806"},{"denom":"ASSET5","index":"0.000000865892922233"},{"denom":"ASSET6","index":"0.000003524808812143"},{"denom":"ASSET7","index":"0.000005398664782463"},{"denom":"ASSET8","index":"0.000007044106283197"},{"denom":"ASSET9","index":"0.000003042260281224"}],"last_reward_claim_height":"104"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET11","shares":"91932167.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003086330633608"},{"denom":"ASSET1","index":"0.000026187842720704"},{"denom":"ASSET10","index":"0.000020922921087024"},{"denom":"ASSET11","index":"0.000026029396638226"},{"denom":"ASSET12","index":"0.000024828709288325"},{"denom":"ASSET13","index":"0.000008176601230700"},{"denom":"ASSET14","index":"0.000023887113573615"},{"denom":"ASSET15","index":"0.000018841856891118"},{"denom":"ASSET16","index":"0.000011616230118922"},{"denom":"ASSET17","index":"0.000009124242236202"},{"denom":"ASSET18","index":"0.000003767471049721"},{"denom":"ASSET2","index":"0.000007932284099147"},{"denom":"ASSET3","index":"0.000002202458257762"},{"denom":"ASSET4","index":"0.000021230824628511"},{"denom":"ASSET5","index":"0.000001715648257347"},{"denom":"ASSET6","index":"0.000006923830152599"},{"denom":"ASSET7","index":"0.000010879262909104"},{"denom":"ASSET8","index":"0.000014863870027497"},{"denom":"ASSET9","index":"0.000006308409915314"}],"last_reward_claim_height":"141"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET14","shares":"100764442.664194053839270740","reward_history":[{"denom":"ASSET0","index":"0.000003086330633608"},{"denom":"ASSET1","index":"0.000026187842720704"},{"denom":"ASSET10","index":"0.000020922921087024"},{"denom":"ASSET11","index":"0.000026029396638226"},{"denom":"ASSET12","index":"0.000024828709288325"},{"denom":"ASSET13","index":"0.000008176601230700"},{"denom":"ASSET14","index":"0.000023887113573615"},{"denom":"ASSET15","index":"0.000018841856891118"},{"denom":"ASSET16","index":"0.000011616230118922"},{"denom":"ASSET17","index":"0.000009124242236202"},{"denom":"ASSET18","index":"0.000003767471049721"},{"denom":"ASSET2","index":"0.000007932284099147"},{"denom":"ASSET3","index":"0.000002202458257762"},{"denom":"ASSET4","index":"0.000021230824628511"},{"denom":"ASSET5","index":"0.000001715648257347"},{"denom":"ASSET6","index":"0.000006923830152599"},{"denom":"ASSET7","index":"0.000010879262909104"},{"denom":"ASSET8","index":"0.000014863870027497"},{"denom":"ASSET9","index":"0.000006308409915314"}],"last_reward_claim_height":"140"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET8","shares":"280854324.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001535524830156"},{"denom":"ASSET1","index":"0.000012804491333161"},{"denom":"ASSET10","index":"0.000008921035499248"},{"denom":"ASSET11","index":"0.000012386713938596"},{"denom":"ASSET12","index":"0.000011154325740380"},{"denom":"ASSET13","index":"0.000003838812075390"},{"denom":"ASSET14","index":"0.000011571000819920"},{"denom":"ASSET15","index":"0.000008272874264409"},{"denom":"ASSET16","index":"0.000005767863369556"},{"denom":"ASSET17","index":"0.000004096202633783"},{"denom":"ASSET18","index":"0.000001951097594671"},{"denom":"ASSET2","index":"0.000003779838221540"},{"denom":"ASSET3","index":"0.000001105621970313"},{"denom":"ASSET4","index":"0.000010405853838244"},{"denom":"ASSET5","index":"0.000000858152247148"},{"denom":"ASSET6","index":"0.000003492685157466"},{"denom":"ASSET7","index":"0.000005348983659966"},{"denom":"ASSET8","index":"0.000006980409897318"},{"denom":"ASSET9","index":"0.000003014831594025"}],"last_reward_claim_height":"72"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET9","shares":"237867801.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003051773960929"},{"denom":"ASSET1","index":"0.000025898629359040"},{"denom":"ASSET10","index":"0.000020686863907037"},{"denom":"ASSET11","index":"0.000025740096441319"},{"denom":"ASSET12","index":"0.000024551000542772"},{"denom":"ASSET13","index":"0.000008085532012369"},{"denom":"ASSET14","index":"0.000023622558405526"},{"denom":"ASSET15","index":"0.000018629920308839"},{"denom":"ASSET16","index":"0.000011487540137638"},{"denom":"ASSET17","index":"0.000009021847693812"},{"denom":"ASSET18","index":"0.000003725572559942"},{"denom":"ASSET2","index":"0.000007844221178735"},{"denom":"ASSET3","index":"0.000002178252359768"},{"denom":"ASSET4","index":"0.000020996168979716"},{"denom":"ASSET5","index":"0.000001697004218389"},{"denom":"ASSET6","index":"0.000006847583721256"},{"denom":"ASSET7","index":"0.000010758483833946"},{"denom":"ASSET8","index":"0.000014699172267780"},{"denom":"ASSET9","index":"0.000006238834616461"}],"last_reward_claim_height":"130"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET17","shares":"578733255.166723706361296432","reward_history":[{"denom":"ASSET0","index":"0.000003051773960929"},{"denom":"ASSET1","index":"0.000025898629359040"},{"denom":"ASSET10","index":"0.000020686863907037"},{"denom":"ASSET11","index":"0.000025740096441319"},{"denom":"ASSET12","index":"0.000024551000542772"},{"denom":"ASSET13","index":"0.000008085532012369"},{"denom":"ASSET14","index":"0.000023622558405526"},{"denom":"ASSET15","index":"0.000018629920308839"},{"denom":"ASSET16","index":"0.000011487540137638"},{"denom":"ASSET17","index":"0.000009021847693812"},{"denom":"ASSET18","index":"0.000003725572559942"},{"denom":"ASSET2","index":"0.000007844221178735"},{"denom":"ASSET3","index":"0.000002178252359768"},{"denom":"ASSET4","index":"0.000020996168979716"},{"denom":"ASSET5","index":"0.000001697004218389"},{"denom":"ASSET6","index":"0.000006847583721256"},{"denom":"ASSET7","index":"0.000010758483833946"},{"denom":"ASSET8","index":"0.000014699172267780"},{"denom":"ASSET9","index":"0.000006238834616461"}],"last_reward_claim_height":"163"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET9","shares":"131039273.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001813824295534"},{"denom":"ASSET1","index":"0.000015126179984122"},{"denom":"ASSET10","index":"0.000010538420488017"},{"denom":"ASSET11","index":"0.000014633035948465"},{"denom":"ASSET12","index":"0.000013177247733614"},{"denom":"ASSET13","index":"0.000004534560738834"},{"denom":"ASSET14","index":"0.000013669547344553"},{"denom":"ASSET15","index":"0.000009773371692973"},{"denom":"ASSET16","index":"0.000006813663054312"},{"denom":"ASSET17","index":"0.000004839398062246"},{"denom":"ASSET18","index":"0.000002305279481754"},{"denom":"ASSET2","index":"0.000004465317911910"},{"denom":"ASSET3","index":"0.000001306325039660"},{"denom":"ASSET4","index":"0.000012293135053249"},{"denom":"ASSET5","index":"0.000001013309662309"},{"denom":"ASSET6","index":"0.000004125859175036"},{"denom":"ASSET7","index":"0.000006318830169217"},{"denom":"ASSET8","index":"0.000008245807377042"},{"denom":"ASSET9","index":"0.000003561783463017"}],"last_reward_claim_height":"105"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET13","shares":"208648348.080069068426357690","reward_history":[{"denom":"ASSET0","index":"0.000001813824295534"},{"denom":"ASSET1","index":"0.000015126179984122"},{"denom":"ASSET10","index":"0.000010538420488017"},{"denom":"ASSET11","index":"0.000014633035948465"},{"denom":"ASSET12","index":"0.000013177247733614"},{"denom":"ASSET13","index":"0.000004534560738834"},{"denom":"ASSET14","index":"0.000013669547344553"},{"denom":"ASSET15","index":"0.000009773371692973"},{"denom":"ASSET16","index":"0.000006813663054312"},{"denom":"ASSET17","index":"0.000004839398062246"},{"denom":"ASSET18","index":"0.000002305279481754"},{"denom":"ASSET2","index":"0.000004465317911910"},{"denom":"ASSET3","index":"0.000001306325039660"},{"denom":"ASSET4","index":"0.000012293135053249"},{"denom":"ASSET5","index":"0.000001013309662309"},{"denom":"ASSET6","index":"0.000004125859175036"},{"denom":"ASSET7","index":"0.000006318830169217"},{"denom":"ASSET8","index":"0.000008245807377042"},{"denom":"ASSET9","index":"0.000003561783463017"}],"last_reward_claim_height":"78"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET0","shares":"77020000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001444852701297"},{"denom":"ASSET1","index":"0.000012048934466992"},{"denom":"ASSET10","index":"0.000008394653008080"},{"denom":"ASSET11","index":"0.000011656844181701"},{"denom":"ASSET12","index":"0.000010496256937239"},{"denom":"ASSET13","index":"0.000003612131753243"},{"denom":"ASSET14","index":"0.000010888347222530"},{"denom":"ASSET15","index":"0.000007784952614452"},{"denom":"ASSET16","index":"0.000005427509774140"},{"denom":"ASSET17","index":"0.000003854247504410"},{"denom":"ASSET18","index":"0.000001835962760875"},{"denom":"ASSET2","index":"0.000003556258887589"},{"denom":"ASSET3","index":"0.000001040019481734"},{"denom":"ASSET4","index":"0.000009792454875142"},{"denom":"ASSET5","index":"0.000000807705987699"},{"denom":"ASSET6","index":"0.000003286696816452"},{"denom":"ASSET7","index":"0.000005033459037423"},{"denom":"ASSET8","index":"0.000006568492504337"},{"denom":"ASSET9","index":"0.000002836773214080"}],"last_reward_claim_height":"111"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET1","shares":"214022119.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001655416114862"},{"denom":"ASSET1","index":"0.000013800538848519"},{"denom":"ASSET10","index":"0.000009615249134678"},{"denom":"ASSET11","index":"0.000013350879623065"},{"denom":"ASSET12","index":"0.000012022439267096"},{"denom":"ASSET13","index":"0.000004137189147657"},{"denom":"ASSET14","index":"0.000012471558036751"},{"denom":"ASSET15","index":"0.000008916980241305"},{"denom":"ASSET16","index":"0.000006216863065381"},{"denom":"ASSET17","index":"0.000004414983428766"},{"denom":"ASSET18","index":"0.000002102913517117"},{"denom":"ASSET2","index":"0.000004073955819077"},{"denom":"ASSET3","index":"0.000001191705038613"},{"denom":"ASSET4","index":"0.000011215538757958"},{"denom":"ASSET5","index":"0.000000924719873500"},{"denom":"ASSET6","index":"0.000003764274645778"},{"denom":"ASSET7","index":"0.000005765582472528"},{"denom":"ASSET8","index":"0.000007523144733557"},{"denom":"ASSET9","index":"0.000003249220268545"}],"last_reward_claim_height":"110"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET3","shares":"107407144.661521103138865212","reward_history":[{"denom":"ASSET0","index":"0.000001655416114862"},{"denom":"ASSET1","index":"0.000013800538848519"},{"denom":"ASSET10","index":"0.000009615249134678"},{"denom":"ASSET11","index":"0.000013350879623065"},{"denom":"ASSET12","index":"0.000012022439267096"},{"denom":"ASSET13","index":"0.000004137189147657"},{"denom":"ASSET14","index":"0.000012471558036751"},{"denom":"ASSET15","index":"0.000008916980241305"},{"denom":"ASSET16","index":"0.000006216863065381"},{"denom":"ASSET17","index":"0.000004414983428766"},{"denom":"ASSET18","index":"0.000002102913517117"},{"denom":"ASSET2","index":"0.000004073955819077"},{"denom":"ASSET3","index":"0.000001191705038613"},{"denom":"ASSET4","index":"0.000011215538757958"},{"denom":"ASSET5","index":"0.000000924719873500"},{"denom":"ASSET6","index":"0.000003764274645778"},{"denom":"ASSET7","index":"0.000005765582472528"},{"denom":"ASSET8","index":"0.000007523144733557"},{"denom":"ASSET9","index":"0.000003249220268545"}],"last_reward_claim_height":"70"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET7","shares":"746034213.735091456770065942","reward_history":[{"denom":"ASSET0","index":"0.000003262792429801"},{"denom":"ASSET1","index":"0.000027679878715890"},{"denom":"ASSET10","index":"0.000022086570261210"},{"denom":"ASSET11","index":"0.000027505267384149"},{"denom":"ASSET12","index":"0.000026222420015979"},{"denom":"ASSET13","index":"0.000008638975204347"},{"denom":"ASSET14","index":"0.000025246236428505"},{"denom":"ASSET15","index":"0.000019895354512471"},{"denom":"ASSET16","index":"0.000012279836462442"},{"denom":"ASSET17","index":"0.000009636125515167"},{"denom":"ASSET18","index":"0.000003984145752232"},{"denom":"ASSET2","index":"0.000008382344169353"},{"denom":"ASSET3","index":"0.000002328549799735"},{"denom":"ASSET4","index":"0.000022441247538096"},{"denom":"ASSET5","index":"0.000001813932132265"},{"denom":"ASSET6","index":"0.000007320527694069"},{"denom":"ASSET7","index":"0.000011499571173317"},{"denom":"ASSET8","index":"0.000015704553099640"},{"denom":"ASSET9","index":"0.000006666608399750"}],"last_reward_claim_height":"149"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET8","shares":"1000107078.917094034000000000","reward_history":[{"denom":"ASSET0","index":"0.000003262792429801"},{"denom":"ASSET1","index":"0.000027679878715890"},{"denom":"ASSET10","index":"0.000022086570261210"},{"denom":"ASSET11","index":"0.000027505267384149"},{"denom":"ASSET12","index":"0.000026222420015979"},{"denom":"ASSET13","index":"0.000008638975204347"},{"denom":"ASSET14","index":"0.000025246236428505"},{"denom":"ASSET15","index":"0.000019895354512471"},{"denom":"ASSET16","index":"0.000012279836462442"},{"denom":"ASSET17","index":"0.000009636125515167"},{"denom":"ASSET18","index":"0.000003984145752232"},{"denom":"ASSET2","index":"0.000008382344169353"},{"denom":"ASSET3","index":"0.000002328549799735"},{"denom":"ASSET4","index":"0.000022441247538096"},{"denom":"ASSET5","index":"0.000001813932132265"},{"denom":"ASSET6","index":"0.000007320527694069"},{"denom":"ASSET7","index":"0.000011499571173317"},{"denom":"ASSET8","index":"0.000015704553099640"},{"denom":"ASSET9","index":"0.000006666608399750"}],"last_reward_claim_height":"153"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET11","shares":"347126168.204508292920568710","reward_history":[{"denom":"ASSET0","index":"0.000001655416114862"},{"denom":"ASSET1","index":"0.000013800538848519"},{"denom":"ASSET10","index":"0.000009615249134678"},{"denom":"ASSET11","index":"0.000013350879623065"},{"denom":"ASSET12","index":"0.000012022439267096"},{"denom":"ASSET13","index":"0.000004137189147657"},{"denom":"ASSET14","index":"0.000012471558036751"},{"denom":"ASSET15","index":"0.000008916980241305"},{"denom":"ASSET16","index":"0.000006216863065381"},{"denom":"ASSET17","index":"0.000004414983428766"},{"denom":"ASSET18","index":"0.000002102913517117"},{"denom":"ASSET2","index":"0.000004073955819077"},{"denom":"ASSET3","index":"0.000001191705038613"},{"denom":"ASSET4","index":"0.000011215538757958"},{"denom":"ASSET5","index":"0.000000924719873500"},{"denom":"ASSET6","index":"0.000003764274645778"},{"denom":"ASSET7","index":"0.000005765582472528"},{"denom":"ASSET8","index":"0.000007523144733557"},{"denom":"ASSET9","index":"0.000003249220268545"}],"last_reward_claim_height":"69"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET2","shares":"114974198.737384303497875320","reward_history":[{"denom":"ASSET0","index":"0.000003296156578493"},{"denom":"ASSET1","index":"0.000027968412540894"},{"denom":"ASSET10","index":"0.000022307812536905"},{"denom":"ASSET11","index":"0.000027788867279184"},{"denom":"ASSET12","index":"0.000026488589695468"},{"denom":"ASSET13","index":"0.000008728285856057"},{"denom":"ASSET14","index":"0.000025508064125070"},{"denom":"ASSET15","index":"0.000020096610749334"},{"denom":"ASSET16","index":"0.000012407784704791"},{"denom":"ASSET17","index":"0.000009734180928237"},{"denom":"ASSET18","index":"0.000004026678592252"},{"denom":"ASSET2","index":"0.000008468774984810"},{"denom":"ASSET3","index":"0.000002353220293961"},{"denom":"ASSET4","index":"0.000022675279511256"},{"denom":"ASSET5","index":"0.000001832728492238"},{"denom":"ASSET6","index":"0.000007397034942132"},{"denom":"ASSET7","index":"0.000011618881320506"},{"denom":"ASSET8","index":"0.000015866042832442"},{"denom":"ASSET9","index":"0.000006735898552490"}],"last_reward_claim_height":"138"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET3","shares":"39516384.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003296156578493"},{"denom":"ASSET1","index":"0.000027968412540894"},{"denom":"ASSET10","index":"0.000022307812536905"},{"denom":"ASSET11","index":"0.000027788867279184"},{"denom":"ASSET12","index":"0.000026488589695468"},{"denom":"ASSET13","index":"0.000008728285856057"},{"denom":"ASSET14","index":"0.000025508064125070"},{"denom":"ASSET15","index":"0.000020096610749334"},{"denom":"ASSET16","index":"0.000012407784704791"},{"denom":"ASSET17","index":"0.000009734180928237"},{"denom":"ASSET18","index":"0.000004026678592252"},{"denom":"ASSET2","index":"0.000008468774984810"},{"denom":"ASSET3","index":"0.000002353220293961"},{"denom":"ASSET4","index":"0.000022675279511256"},{"denom":"ASSET5","index":"0.000001832728492238"},{"denom":"ASSET6","index":"0.000007397034942132"},{"denom":"ASSET7","index":"0.000011618881320506"},{"denom":"ASSET8","index":"0.000015866042832442"},{"denom":"ASSET9","index":"0.000006735898552490"}],"last_reward_claim_height":"169"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET10","shares":"1298760080.776159905719984292","reward_history":[{"denom":"ASSET0","index":"0.000003296156578493"},{"denom":"ASSET1","index":"0.000027968412540894"},{"denom":"ASSET10","index":"0.000022307812536905"},{"denom":"ASSET11","index":"0.000027788867279184"},{"denom":"ASSET12","index":"0.000026488589695468"},{"denom":"ASSET13","index":"0.000008728285856057"},{"denom":"ASSET14","index":"0.000025508064125070"},{"denom":"ASSET15","index":"0.000020096610749334"},{"denom":"ASSET16","index":"0.000012407784704791"},{"denom":"ASSET17","index":"0.000009734180928237"},{"denom":"ASSET18","index":"0.000004026678592252"},{"denom":"ASSET2","index":"0.000008468774984810"},{"denom":"ASSET3","index":"0.000002353220293961"},{"denom":"ASSET4","index":"0.000022675279511256"},{"denom":"ASSET5","index":"0.000001832728492238"},{"denom":"ASSET6","index":"0.000007397034942132"},{"denom":"ASSET7","index":"0.000011618881320506"},{"denom":"ASSET8","index":"0.000015866042832442"},{"denom":"ASSET9","index":"0.000006735898552490"}],"last_reward_claim_height":"126"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET1","shares":"119449695.941310179402067722","reward_history":[{"denom":"ASSET0","index":"0.000003237925740153"},{"denom":"ASSET1","index":"0.000027468087048908"},{"denom":"ASSET10","index":"0.000021838560142362"},{"denom":"ASSET11","index":"0.000027274223261348"},{"denom":"ASSET12","index":"0.000025962125103579"},{"denom":"ASSET13","index":"0.000008562973508850"},{"denom":"ASSET14","index":"0.000025046299162567"},{"denom":"ASSET15","index":"0.000019687604125947"},{"denom":"ASSET16","index":"0.000012189946370622"},{"denom":"ASSET17","index":"0.000009540519193028"},{"denom":"ASSET18","index":"0.000003959057055270"},{"denom":"ASSET2","index":"0.000008312511220651"},{"denom":"ASSET3","index":"0.000002312646079660"},{"denom":"ASSET4","index":"0.000022269978905361"},{"denom":"ASSET5","index":"0.000001800462011039"},{"denom":"ASSET6","index":"0.000007270233858279"},{"denom":"ASSET7","index":"0.000011411601588483"},{"denom":"ASSET8","index":"0.000015567552190875"},{"denom":"ASSET9","index":"0.000006610637099613"}],"last_reward_claim_height":"138"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET5","shares":"992851373.826145030031363452","reward_history":[{"denom":"ASSET0","index":"0.000004759364904599"},{"denom":"ASSET1","index":"0.000039014688598823"},{"denom":"ASSET10","index":"0.000033564746899774"},{"denom":"ASSET11","index":"0.000040428699846607"},{"denom":"ASSET12","index":"0.000038441898385906"},{"denom":"ASSET13","index":"0.000013020994461924"},{"denom":"ASSET14","index":"0.000037304807804505"},{"denom":"ASSET15","index":"0.000030152778242557"},{"denom":"ASSET16","index":"0.000017316516616402"},{"denom":"ASSET17","index":"0.000013971686283299"},{"denom":"ASSET18","index":"0.000005820085693082"},{"denom":"ASSET2","index":"0.000011772463606205"},{"denom":"ASSET3","index":"0.000003382604675726"},{"denom":"ASSET4","index":"0.000031964503105066"},{"denom":"ASSET5","index":"0.000002653911338254"},{"denom":"ASSET6","index":"0.000010830608501608"},{"denom":"ASSET7","index":"0.000016733421795061"},{"denom":"ASSET8","index":"0.000024009455581904"},{"denom":"ASSET9","index":"0.000009659109983255"}],"last_reward_claim_height":"190"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET16","shares":"377642.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003237925740153"},{"denom":"ASSET1","index":"0.000027468087048908"},{"denom":"ASSET10","index":"0.000021838560142362"},{"denom":"ASSET11","index":"0.000027274223261348"},{"denom":"ASSET12","index":"0.000025962125103579"},{"denom":"ASSET13","index":"0.000008562973508850"},{"denom":"ASSET14","index":"0.000025046299162567"},{"denom":"ASSET15","index":"0.000019687604125947"},{"denom":"ASSET16","index":"0.000012189946370622"},{"denom":"ASSET17","index":"0.000009540519193028"},{"denom":"ASSET18","index":"0.000003959057055270"},{"denom":"ASSET2","index":"0.000008312511220651"},{"denom":"ASSET3","index":"0.000002312646079660"},{"denom":"ASSET4","index":"0.000022269978905361"},{"denom":"ASSET5","index":"0.000001800462011039"},{"denom":"ASSET6","index":"0.000007270233858279"},{"denom":"ASSET7","index":"0.000011411601588483"},{"denom":"ASSET8","index":"0.000015567552190875"},{"denom":"ASSET9","index":"0.000006610637099613"}],"last_reward_claim_height":"151"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET11","shares":"782257730.999999978096783532","reward_history":[{"denom":"ASSET0","index":"0.000001700269946448"},{"denom":"ASSET1","index":"0.000014175647296985"},{"denom":"ASSET10","index":"0.000009876508679424"},{"denom":"ASSET11","index":"0.000013714231996791"},{"denom":"ASSET12","index":"0.000012349169664489"},{"denom":"ASSET13","index":"0.000004249665204630"},{"denom":"ASSET14","index":"0.000012810584964683"},{"denom":"ASSET15","index":"0.000009159649022667"},{"denom":"ASSET16","index":"0.000006386108914062"},{"denom":"ASSET17","index":"0.000004535399405845"},{"denom":"ASSET18","index":"0.000002160675585153"},{"denom":"ASSET2","index":"0.000004184037207885"},{"denom":"ASSET3","index":"0.000001223709723928"},{"denom":"ASSET4","index":"0.000011520237582522"},{"denom":"ASSET5","index":"0.000000950091460574"},{"denom":"ASSET6","index":"0.000003867003500531"},{"denom":"ASSET7","index":"0.000005922674290891"},{"denom":"ASSET8","index":"0.000007727949032131"},{"denom":"ASSET9","index":"0.000003337940880615"}],"last_reward_claim_height":"88"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET13","shares":"309472667.000000000000000000","reward_history":[],"last_reward_claim_height":"9"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET16","shares":"685987151.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001700269946448"},{"denom":"ASSET1","index":"0.000014175647296985"},{"denom":"ASSET10","index":"0.000009876508679424"},{"denom":"ASSET11","index":"0.000013714231996791"},{"denom":"ASSET12","index":"0.000012349169664489"},{"denom":"ASSET13","index":"0.000004249665204630"},{"denom":"ASSET14","index":"0.000012810584964683"},{"denom":"ASSET15","index":"0.000009159649022667"},{"denom":"ASSET16","index":"0.000006386108914062"},{"denom":"ASSET17","index":"0.000004535399405845"},{"denom":"ASSET18","index":"0.000002160675585153"},{"denom":"ASSET2","index":"0.000004184037207885"},{"denom":"ASSET3","index":"0.000001223709723928"},{"denom":"ASSET4","index":"0.000011520237582522"},{"denom":"ASSET5","index":"0.000000950091460574"},{"denom":"ASSET6","index":"0.000003867003500531"},{"denom":"ASSET7","index":"0.000005922674290891"},{"denom":"ASSET8","index":"0.000007727949032131"},{"denom":"ASSET9","index":"0.000003337940880615"}],"last_reward_claim_height":"86"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET6","shares":"152880219.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001505652349479"},{"denom":"ASSET1","index":"0.000012557843622987"},{"denom":"ASSET10","index":"0.000008748308836028"},{"denom":"ASSET11","index":"0.000012147743761261"},{"denom":"ASSET12","index":"0.000010939413811534"},{"denom":"ASSET13","index":"0.000003764130873697"},{"denom":"ASSET14","index":"0.000011348049030896"},{"denom":"ASSET15","index":"0.000008114118692716"},{"denom":"ASSET16","index":"0.000005656448807088"},{"denom":"ASSET17","index":"0.000004017514002549"},{"denom":"ASSET18","index":"0.000001912822926478"},{"denom":"ASSET2","index":"0.000003707009821528"},{"denom":"ASSET3","index":"0.000001083835348847"},{"denom":"ASSET4","index":"0.000010205627987517"},{"denom":"ASSET5","index":"0.000000840704716538"},{"denom":"ASSET6","index":"0.000003424333845410"},{"denom":"ASSET7","index":"0.000005246348945363"},{"denom":"ASSET8","index":"0.000006845738406093"},{"denom":"ASSET9","index":"0.000002955648289152"}],"last_reward_claim_height":"79"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET5","shares":"153128453.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001815877519749"},{"denom":"ASSET1","index":"0.000015137138459046"},{"denom":"ASSET10","index":"0.000010545739718907"},{"denom":"ASSET11","index":"0.000014644907422941"},{"denom":"ASSET12","index":"0.000013186828093302"},{"denom":"ASSET13","index":"0.000004537625601742"},{"denom":"ASSET14","index":"0.000013679059129408"},{"denom":"ASSET15","index":"0.000009780506595550"},{"denom":"ASSET16","index":"0.000006818847588397"},{"denom":"ASSET17","index":"0.000004841650653454"},{"denom":"ASSET18","index":"0.000002306040358223"},{"denom":"ASSET2","index":"0.000004467306882298"},{"denom":"ASSET3","index":"0.000001307100902598"},{"denom":"ASSET4","index":"0.000012301639507366"},{"denom":"ASSET5","index":"0.000001013416839040"},{"denom":"ASSET6","index":"0.000004128122470864"},{"denom":"ASSET7","index":"0.000006324548354661"},{"denom":"ASSET8","index":"0.000008252108546467"},{"denom":"ASSET9","index":"0.000003563504517685"}],"last_reward_claim_height":"67"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET8","shares":"176124.227313591220984870","reward_history":[{"denom":"ASSET0","index":"0.000004565478059780"},{"denom":"ASSET1","index":"0.000037736114077554"},{"denom":"ASSET10","index":"0.000031825820517489"},{"denom":"ASSET11","index":"0.000038685850648716"},{"denom":"ASSET12","index":"0.000036788452071453"},{"denom":"ASSET13","index":"0.000012381244410564"},{"denom":"ASSET14","index":"0.000035654955133069"},{"denom":"ASSET15","index":"0.000028616198788550"},{"denom":"ASSET16","index":"0.000016750351619561"},{"denom":"ASSET17","index":"0.000013405640316386"},{"denom":"ASSET18","index":"0.000005582271545328"},{"denom":"ASSET2","index":"0.000011392477328809"},{"denom":"ASSET3","index":"0.000003247635140503"},{"denom":"ASSET4","index":"0.000030836249037897"},{"denom":"ASSET5","index":"0.000002543131552682"},{"denom":"ASSET6","index":"0.000010352525282998"},{"denom":"ASSET7","index":"0.000016058778639515"},{"denom":"ASSET8","index":"0.000022752754383051"},{"denom":"ASSET9","index":"0.000009275867790330"}],"last_reward_claim_height":"197"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET15","shares":"662833306.499756462291613080","reward_history":[{"denom":"ASSET0","index":"0.000001541968050995"},{"denom":"ASSET1","index":"0.000012857487907975"},{"denom":"ASSET10","index":"0.000008957704485900"},{"denom":"ASSET11","index":"0.000012438763825161"},{"denom":"ASSET12","index":"0.000011200869215257"},{"denom":"ASSET13","index":"0.000003854089325736"},{"denom":"ASSET14","index":"0.000011619593298070"},{"denom":"ASSET15","index":"0.000008307186714386"},{"denom":"ASSET16","index":"0.000005792349812251"},{"denom":"ASSET17","index":"0.000004113299472240"},{"denom":"ASSET18","index":"0.000001959030530305"},{"denom":"ASSET2","index":"0.000003795102401372"},{"denom":"ASSET3","index":"0.000001109951140156"},{"denom":"ASSET4","index":"0.000010448993630046"},{"denom":"ASSET5","index":"0.000000861541416423"},{"denom":"ASSET6","index":"0.000003506814193562"},{"denom":"ASSET7","index":"0.000005371133324183"},{"denom":"ASSET8","index":"0.000007009474378365"},{"denom":"ASSET9","index":"0.000003027441582881"}],"last_reward_claim_height":"81"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET1","shares":"464126913.255640181121520890","reward_history":[{"denom":"ASSET0","index":"0.000001327266579501"},{"denom":"ASSET1","index":"0.000011071143497688"},{"denom":"ASSET10","index":"0.000007713614824674"},{"denom":"ASSET11","index":"0.000010710668391289"},{"denom":"ASSET12","index":"0.000009644435509525"},{"denom":"ASSET13","index":"0.000003318857014090"},{"denom":"ASSET14","index":"0.000010004910615924"},{"denom":"ASSET15","index":"0.000007152875770275"},{"denom":"ASSET16","index":"0.000004987262870528"},{"denom":"ASSET17","index":"0.000003541219052903"},{"denom":"ASSET18","index":"0.000001686360555224"},{"denom":"ASSET2","index":"0.000003267755179083"},{"denom":"ASSET3","index":"0.000000955742427695"},{"denom":"ASSET4","index":"0.000008998066353223"},{"denom":"ASSET5","index":"0.000000741667172936"},{"denom":"ASSET6","index":"0.000003019151657428"},{"denom":"ASSET7","index":"0.000004625406633453"},{"denom":"ASSET8","index":"0.000006035541053505"},{"denom":"ASSET9","index":"0.000002606193585346"}],"last_reward_claim_height":"107"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET3","shares":"330481381.999999999669518618","reward_history":[],"last_reward_claim_height":"20"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET4","shares":"478971095.468523913787152830","reward_history":[{"denom":"ASSET0","index":"0.000004438699641099"},{"denom":"ASSET1","index":"0.000036255725401955"},{"denom":"ASSET10","index":"0.000031773819944540"},{"denom":"ASSET11","index":"0.000037854845959991"},{"denom":"ASSET12","index":"0.000036116368998824"},{"denom":"ASSET13","index":"0.000012242486087336"},{"denom":"ASSET14","index":"0.000034912499362753"},{"denom":"ASSET15","index":"0.000028483723402882"},{"denom":"ASSET16","index":"0.000016076425142514"},{"denom":"ASSET17","index":"0.000013107565199934"},{"denom":"ASSET18","index":"0.000005413409529918"},{"denom":"ASSET2","index":"0.000010953679082828"},{"denom":"ASSET3","index":"0.000003149863059983"},{"denom":"ASSET4","index":"0.000029743851068357"},{"denom":"ASSET5","index":"0.000002475468657266"},{"denom":"ASSET6","index":"0.000010109707200491"},{"denom":"ASSET7","index":"0.000015613975686421"},{"denom":"ASSET8","index":"0.000022613294693202"},{"denom":"ASSET9","index":"0.000009024920539711"}],"last_reward_claim_height":"199"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET3","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003141123056438"},{"denom":"ASSET1","index":"0.000026662100889972"},{"denom":"ASSET10","index":"0.000021312054987248"},{"denom":"ASSET11","index":"0.000026503481745319"},{"denom":"ASSET12","index":"0.000025286293002787"},{"denom":"ASSET13","index":"0.000008324908472884"},{"denom":"ASSET14","index":"0.000024319980387721"},{"denom":"ASSET15","index":"0.000019190708128374"},{"denom":"ASSET16","index":"0.000011824997422058"},{"denom":"ASSET17","index":"0.000009292034078872"},{"denom":"ASSET18","index":"0.000003834040785154"},{"denom":"ASSET2","index":"0.000008076003481032"},{"denom":"ASSET3","index":"0.000002241608843356"},{"denom":"ASSET4","index":"0.000021614431804298"},{"denom":"ASSET5","index":"0.000001746420421862"},{"denom":"ASSET6","index":"0.000007047828859327"},{"denom":"ASSET7","index":"0.000011075197168484"},{"denom":"ASSET8","index":"0.000015134882092008"},{"denom":"ASSET9","index":"0.000006422749115253"}],"last_reward_claim_height":"158"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET11","shares":"57060255.592376906463530586","reward_history":[{"denom":"ASSET0","index":"0.000003054120352223"},{"denom":"ASSET1","index":"0.000025909289170716"},{"denom":"ASSET10","index":"0.000020664041936079"},{"denom":"ASSET11","index":"0.000025743066158465"},{"denom":"ASSET12","index":"0.000024537849095602"},{"denom":"ASSET13","index":"0.000008085297309351"},{"denom":"ASSET14","index":"0.000023630023251940"},{"denom":"ASSET15","index":"0.000018615490114349"},{"denom":"ASSET16","index":"0.000011495216270003"},{"denom":"ASSET17","index":"0.000009017197770141"},{"denom":"ASSET18","index":"0.000003730110182262"},{"denom":"ASSET2","index":"0.000007845299155388"},{"denom":"ASSET3","index":"0.000002179886924088"},{"denom":"ASSET4","index":"0.000021005968780047"},{"denom":"ASSET5","index":"0.000001698230665763"},{"denom":"ASSET6","index":"0.000006853367473041"},{"denom":"ASSET7","index":"0.000010764057351149"},{"denom":"ASSET8","index":"0.000014698116791571"},{"denom":"ASSET9","index":"0.000006239964640655"}],"last_reward_claim_height":"163"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET17","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003054120352223"},{"denom":"ASSET1","index":"0.000025909289170716"},{"denom":"ASSET10","index":"0.000020664041936079"},{"denom":"ASSET11","index":"0.000025743066158465"},{"denom":"ASSET12","index":"0.000024537849095602"},{"denom":"ASSET13","index":"0.000008085297309351"},{"denom":"ASSET14","index":"0.000023630023251940"},{"denom":"ASSET15","index":"0.000018615490114349"},{"denom":"ASSET16","index":"0.000011495216270003"},{"denom":"ASSET17","index":"0.000009017197770141"},{"denom":"ASSET18","index":"0.000003730110182262"},{"denom":"ASSET2","index":"0.000007845299155388"},{"denom":"ASSET3","index":"0.000002179886924088"},{"denom":"ASSET4","index":"0.000021005968780047"},{"denom":"ASSET5","index":"0.000001698230665763"},{"denom":"ASSET6","index":"0.000006853367473041"},{"denom":"ASSET7","index":"0.000010764057351149"},{"denom":"ASSET8","index":"0.000014698116791571"},{"denom":"ASSET9","index":"0.000006239964640655"}],"last_reward_claim_height":"125"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET8","shares":"879894820.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001587610635106"},{"denom":"ASSET1","index":"0.000013244938725362"},{"denom":"ASSET10","index":"0.000009227311812032"},{"denom":"ASSET11","index":"0.000012812935831455"},{"denom":"ASSET12","index":"0.000011538527294432"},{"denom":"ASSET13","index":"0.000003970376596809"},{"denom":"ASSET14","index":"0.000011969180179294"},{"denom":"ASSET15","index":"0.000008557707326477"},{"denom":"ASSET16","index":"0.000005967039972082"},{"denom":"ASSET17","index":"0.000004237678387413"},{"denom":"ASSET18","index":"0.000002018263519969"},{"denom":"ASSET2","index":"0.000003909626189853"},{"denom":"ASSET3","index":"0.000001143457659809"},{"denom":"ASSET4","index":"0.000010763622103487"},{"denom":"ASSET5","index":"0.000000886955941552"},{"denom":"ASSET6","index":"0.000003612624200292"},{"denom":"ASSET7","index":"0.000005533687069132"},{"denom":"ASSET8","index":"0.000007219848364411"},{"denom":"ASSET9","index":"0.000003118520890387"}],"last_reward_claim_height":"101"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET16","shares":"990961162.000000045584213452","reward_history":[{"denom":"ASSET0","index":"0.000001587610635106"},{"denom":"ASSET1","index":"0.000013244938725362"},{"denom":"ASSET10","index":"0.000009227311812032"},{"denom":"ASSET11","index":"0.000012812935831455"},{"denom":"ASSET12","index":"0.000011538527294432"},{"denom":"ASSET13","index":"0.000003970376596809"},{"denom":"ASSET14","index":"0.000011969180179294"},{"denom":"ASSET15","index":"0.000008557707326477"},{"denom":"ASSET16","index":"0.000005967039972082"},{"denom":"ASSET17","index":"0.000004237678387413"},{"denom":"ASSET18","index":"0.000002018263519969"},{"denom":"ASSET2","index":"0.000003909626189853"},{"denom":"ASSET3","index":"0.000001143457659809"},{"denom":"ASSET4","index":"0.000010763622103487"},{"denom":"ASSET5","index":"0.000000886955941552"},{"denom":"ASSET6","index":"0.000003612624200292"},{"denom":"ASSET7","index":"0.000005533687069132"},{"denom":"ASSET8","index":"0.000007219848364411"},{"denom":"ASSET9","index":"0.000003118520890387"}],"last_reward_claim_height":"85"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET3","shares":"478793073.000000000000000000","reward_history":[],"last_reward_claim_height":"14"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","denom":"ASSET11","shares":"19617350.999999998045817356","reward_history":[],"last_reward_claim_height":"40"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET3","shares":"939705226.000000000000000000","reward_history":[],"last_reward_claim_height":"62"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET15","shares":"491851775.660058951133270668","reward_history":[{"denom":"ASSET0","index":"0.000004708438426996"},{"denom":"ASSET1","index":"0.000038520493193901"},{"denom":"ASSET10","index":"0.000033447889442869"},{"denom":"ASSET11","index":"0.000040066635538605"},{"denom":"ASSET12","index":"0.000038162559600338"},{"denom":"ASSET13","index":"0.000012931064308163"},{"denom":"ASSET14","index":"0.000036961534886120"},{"denom":"ASSET15","index":"0.000030015502632007"},{"denom":"ASSET16","index":"0.000017089105961021"},{"denom":"ASSET17","index":"0.000013860849696398"},{"denom":"ASSET18","index":"0.000005749976668797"},{"denom":"ASSET2","index":"0.000011630369724417"},{"denom":"ASSET3","index":"0.000003343204166159"},{"denom":"ASSET4","index":"0.000031580339975976"},{"denom":"ASSET5","index":"0.000002625639366966"},{"denom":"ASSET6","index":"0.000010718023658977"},{"denom":"ASSET7","index":"0.000016555639039194"},{"denom":"ASSET8","index":"0.000023864339856305"},{"denom":"ASSET9","index":"0.000009563147004842"}],"last_reward_claim_height":"190"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET6","shares":"861226400.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004932922606577"},{"denom":"ASSET1","index":"0.000040396906160074"},{"denom":"ASSET10","index":"0.000034838303486914"},{"denom":"ASSET11","index":"0.000041914424288227"},{"denom":"ASSET12","index":"0.000039857170373527"},{"denom":"ASSET13","index":"0.000013510260278305"},{"denom":"ASSET14","index":"0.000038681126023432"},{"denom":"ASSET15","index":"0.000031291398674533"},{"denom":"ASSET16","index":"0.000017930058046877"},{"denom":"ASSET17","index":"0.000014479422944962"},{"denom":"ASSET18","index":"0.000006034014737166"},{"denom":"ASSET2","index":"0.000012186534642262"},{"denom":"ASSET3","index":"0.000003503888301858"},{"denom":"ASSET4","index":"0.000033108545408351"},{"denom":"ASSET5","index":"0.000002750102339201"},{"denom":"ASSET6","index":"0.000011230081338040"},{"denom":"ASSET7","index":"0.000017343857331989"},{"denom":"ASSET8","index":"0.000024921315009190"},{"denom":"ASSET9","index":"0.000010011497921619"}],"last_reward_claim_height":"194"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET11","shares":"80087510.999999997005900556","reward_history":[{"denom":"ASSET0","index":"0.000001722784092424"},{"denom":"ASSET1","index":"0.000014376047839207"},{"denom":"ASSET10","index":"0.000010014727915911"},{"denom":"ASSET11","index":"0.000013905627425621"},{"denom":"ASSET12","index":"0.000012523636788373"},{"denom":"ASSET13","index":"0.000004309050988454"},{"denom":"ASSET14","index":"0.000012989875687172"},{"denom":"ASSET15","index":"0.000009287144342897"},{"denom":"ASSET16","index":"0.000006475075648346"},{"denom":"ASSET17","index":"0.000004597575508787"},{"denom":"ASSET18","index":"0.000002191113748617"},{"denom":"ASSET2","index":"0.000004242146751855"},{"denom":"ASSET3","index":"0.000001239819134475"},{"denom":"ASSET4","index":"0.000011683152316098"},{"denom":"ASSET5","index":"0.000000961748401110"},{"denom":"ASSET6","index":"0.000003920170113222"},{"denom":"ASSET7","index":"0.000006004655234759"},{"denom":"ASSET8","index":"0.000007836158711656"},{"denom":"ASSET9","index":"0.000003384936220430"}],"last_reward_claim_height":"101"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET16","shares":"820354159.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001722784092424"},{"denom":"ASSET1","index":"0.000014376047839207"},{"denom":"ASSET10","index":"0.000010014727915911"},{"denom":"ASSET11","index":"0.000013905627425621"},{"denom":"ASSET12","index":"0.000012523636788373"},{"denom":"ASSET13","index":"0.000004309050988454"},{"denom":"ASSET14","index":"0.000012989875687172"},{"denom":"ASSET15","index":"0.000009287144342897"},{"denom":"ASSET16","index":"0.000006475075648346"},{"denom":"ASSET17","index":"0.000004597575508787"},{"denom":"ASSET18","index":"0.000002191113748617"},{"denom":"ASSET2","index":"0.000004242146751855"},{"denom":"ASSET3","index":"0.000001239819134475"},{"denom":"ASSET4","index":"0.000011683152316098"},{"denom":"ASSET5","index":"0.000000961748401110"},{"denom":"ASSET6","index":"0.000003920170113222"},{"denom":"ASSET7","index":"0.000006004655234759"},{"denom":"ASSET8","index":"0.000007836158711656"},{"denom":"ASSET9","index":"0.000003384936220430"}],"last_reward_claim_height":"113"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET17","shares":"242694.941434346630208487","reward_history":[{"denom":"ASSET0","index":"0.000003308323901116"},{"denom":"ASSET1","index":"0.000028066718381779"},{"denom":"ASSET10","index":"0.000022316311421496"},{"denom":"ASSET11","index":"0.000027867424204892"},{"denom":"ASSET12","index":"0.000026530665881565"},{"denom":"ASSET13","index":"0.000008749579510737"},{"denom":"ASSET14","index":"0.000025590688346390"},{"denom":"ASSET15","index":"0.000020116135001180"},{"denom":"ASSET16","index":"0.000012455644018572"},{"denom":"ASSET17","index":"0.000009747635771928"},{"denom":"ASSET18","index":"0.000004046709206696"},{"denom":"ASSET2","index":"0.000008491843085820"},{"denom":"ASSET3","index":"0.000002361259343526"},{"denom":"ASSET4","index":"0.000022756236881458"},{"denom":"ASSET5","index":"0.000001838827056256"},{"denom":"ASSET6","index":"0.000007428217086977"},{"denom":"ASSET7","index":"0.000011660835649526"},{"denom":"ASSET8","index":"0.000015906513514404"},{"denom":"ASSET9","index":"0.000006755948018281"}],"last_reward_claim_height":"164"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET6","shares":"856288949.670454424678142990","reward_history":[{"denom":"ASSET0","index":"0.000003299297789724"},{"denom":"ASSET1","index":"0.000027989603079017"},{"denom":"ASSET10","index":"0.000022326156077139"},{"denom":"ASSET11","index":"0.000027810817552502"},{"denom":"ASSET12","index":"0.000026510364756940"},{"denom":"ASSET13","index":"0.000008734817330461"},{"denom":"ASSET14","index":"0.000025527438517331"},{"denom":"ASSET15","index":"0.000020112836713905"},{"denom":"ASSET16","index":"0.000012417417558556"},{"denom":"ASSET17","index":"0.000009741881197111"},{"denom":"ASSET18","index":"0.000004029624902086"},{"denom":"ASSET2","index":"0.000008475129511821"},{"denom":"ASSET3","index":"0.000002354634361983"},{"denom":"ASSET4","index":"0.000022691681830907"},{"denom":"ASSET5","index":"0.000001834207215432"},{"denom":"ASSET6","index":"0.000007402948949368"},{"denom":"ASSET7","index":"0.000011627814435586"},{"denom":"ASSET8","index":"0.000015878876786083"},{"denom":"ASSET9","index":"0.000006740310437402"}],"last_reward_claim_height":"139"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET18","shares":"190743932.353899541059896288","reward_history":[{"denom":"ASSET0","index":"0.000001677980890787"},{"denom":"ASSET1","index":"0.000013990275877081"},{"denom":"ASSET10","index":"0.000009746835585844"},{"denom":"ASSET11","index":"0.000013534047272362"},{"denom":"ASSET12","index":"0.000012187401487418"},{"denom":"ASSET13","index":"0.000004194217559326"},{"denom":"ASSET14","index":"0.000012642160756856"},{"denom":"ASSET15","index":"0.000009039350648091"},{"denom":"ASSET16","index":"0.000006301979019776"},{"denom":"ASSET17","index":"0.000004475595265619"},{"denom":"ASSET18","index":"0.000002132005492585"},{"denom":"ASSET2","index":"0.000004129566806967"},{"denom":"ASSET3","index":"0.000001207793600899"},{"denom":"ASSET4","index":"0.000011368981735957"},{"denom":"ASSET5","index":"0.000000937435909214"},{"denom":"ASSET6","index":"0.000003815863724495"},{"denom":"ASSET7","index":"0.000005844281079776"},{"denom":"ASSET8","index":"0.000007626584775507"},{"denom":"ASSET9","index":"0.000003293515032135"}],"last_reward_claim_height":"99"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET5","shares":"8609811.333588079586603004","reward_history":[{"denom":"ASSET0","index":"0.000003142586597057"},{"denom":"ASSET1","index":"0.000026671940208455"},{"denom":"ASSET10","index":"0.000021322845581004"},{"denom":"ASSET11","index":"0.000026513185667064"},{"denom":"ASSET12","index":"0.000025297681895631"},{"denom":"ASSET13","index":"0.000008328263582513"},{"denom":"ASSET14","index":"0.000024329302916923"},{"denom":"ASSET15","index":"0.000019199384187435"},{"denom":"ASSET16","index":"0.000011829863063918"},{"denom":"ASSET17","index":"0.000009295955073087"},{"denom":"ASSET18","index":"0.000003835509513951"},{"denom":"ASSET2","index":"0.000008079410847125"},{"denom":"ASSET3","index":"0.000002242309830967"},{"denom":"ASSET4","index":"0.000021622076491366"},{"denom":"ASSET5","index":"0.000001747112267207"},{"denom":"ASSET6","index":"0.000007050444762949"},{"denom":"ASSET7","index":"0.000011079003337441"},{"denom":"ASSET8","index":"0.000015142122511204"},{"denom":"ASSET9","index":"0.000006425848418438"}],"last_reward_claim_height":"134"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET15","shares":"25217477.609367481641407846","reward_history":[{"denom":"ASSET0","index":"0.000004772719302966"},{"denom":"ASSET1","index":"0.000039045168205059"},{"denom":"ASSET10","index":"0.000033888596510929"},{"denom":"ASSET11","index":"0.000040609336111210"},{"denom":"ASSET12","index":"0.000038670766700041"},{"denom":"ASSET13","index":"0.000013105357219810"},{"denom":"ASSET14","index":"0.000037465363585392"},{"denom":"ASSET15","index":"0.000030413687247718"},{"denom":"ASSET16","index":"0.000017323394502263"},{"denom":"ASSET17","index":"0.000014044328076069"},{"denom":"ASSET18","index":"0.000005829857736340"},{"denom":"ASSET2","index":"0.000011786897564708"},{"denom":"ASSET3","index":"0.000003388925924010"},{"denom":"ASSET4","index":"0.000032010424606564"},{"denom":"ASSET5","index":"0.000002661438394800"},{"denom":"ASSET6","index":"0.000010865554956372"},{"denom":"ASSET7","index":"0.000016781785111511"},{"denom":"ASSET8","index":"0.000024188491097742"},{"denom":"ASSET9","index":"0.000009692741668944"}],"last_reward_claim_height":"189"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET1","shares":"821403842.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001808467589320"},{"denom":"ASSET1","index":"0.000015078627759778"},{"denom":"ASSET10","index":"0.000010504031371633"},{"denom":"ASSET11","index":"0.000014586692317421"},{"denom":"ASSET12","index":"0.000013135079536696"},{"denom":"ASSET13","index":"0.000004520160908868"},{"denom":"ASSET14","index":"0.000013624998850191"},{"denom":"ASSET15","index":"0.000009741934661752"},{"denom":"ASSET16","index":"0.000006792338136474"},{"denom":"ASSET17","index":"0.000004822580238185"},{"denom":"ASSET18","index":"0.000002296370773952"},{"denom":"ASSET2","index":"0.000004449596398694"},{"denom":"ASSET3","index":"0.000001300403116066"},{"denom":"ASSET4","index":"0.000012254031223951"},{"denom":"ASSET5","index":"0.000001010080559921"},{"denom":"ASSET6","index":"0.000004112902878720"},{"denom":"ASSET7","index":"0.000006298386565256"},{"denom":"ASSET8","index":"0.000008219757370854"},{"denom":"ASSET9","index":"0.000003550402926189"}],"last_reward_claim_height":"65"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET2","shares":"718723721.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001808467589320"},{"denom":"ASSET1","index":"0.000015078627759778"},{"denom":"ASSET10","index":"0.000010504031371633"},{"denom":"ASSET11","index":"0.000014586692317421"},{"denom":"ASSET12","index":"0.000013135079536696"},{"denom":"ASSET13","index":"0.000004520160908868"},{"denom":"ASSET14","index":"0.000013624998850191"},{"denom":"ASSET15","index":"0.000009741934661752"},{"denom":"ASSET16","index":"0.000006792338136474"},{"denom":"ASSET17","index":"0.000004822580238185"},{"denom":"ASSET18","index":"0.000002296370773952"},{"denom":"ASSET2","index":"0.000004449596398694"},{"denom":"ASSET3","index":"0.000001300403116066"},{"denom":"ASSET4","index":"0.000012254031223951"},{"denom":"ASSET5","index":"0.000001010080559921"},{"denom":"ASSET6","index":"0.000004112902878720"},{"denom":"ASSET7","index":"0.000006298386565256"},{"denom":"ASSET8","index":"0.000008219757370854"},{"denom":"ASSET9","index":"0.000003550402926189"}],"last_reward_claim_height":"103"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET4","shares":"527047068.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004627557058124"},{"denom":"ASSET1","index":"0.000037837825372287"},{"denom":"ASSET10","index":"0.000032815057157167"},{"denom":"ASSET11","index":"0.000039353017894949"},{"denom":"ASSET12","index":"0.000037453386570472"},{"denom":"ASSET13","index":"0.000012700909348715"},{"denom":"ASSET14","index":"0.000036314118089889"},{"denom":"ASSET15","index":"0.000029456614298440"},{"denom":"ASSET16","index":"0.000016789422401669"},{"denom":"ASSET17","index":"0.000013600876897734"},{"denom":"ASSET18","index":"0.000005653931466374"},{"denom":"ASSET2","index":"0.000011419405679440"},{"denom":"ASSET3","index":"0.000003285045732610"},{"denom":"ASSET4","index":"0.000031022911612237"},{"denom":"ASSET5","index":"0.000002580636681166"},{"denom":"ASSET6","index":"0.000010536288519120"},{"denom":"ASSET7","index":"0.000016267441018645"},{"denom":"ASSET8","index":"0.000023441585233333"},{"denom":"ASSET9","index":"0.000009392113630570"}],"last_reward_claim_height":"184"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET3","shares":"682542904.369851933208849063","reward_history":[{"denom":"ASSET0","index":"0.000003240628198198"},{"denom":"ASSET1","index":"0.000027504329283847"},{"denom":"ASSET10","index":"0.000021940320319100"},{"denom":"ASSET11","index":"0.000027329345632586"},{"denom":"ASSET12","index":"0.000026051323397008"},{"denom":"ASSET13","index":"0.000008583813762496"},{"denom":"ASSET14","index":"0.000025085743554439"},{"denom":"ASSET15","index":"0.000019763439018939"},{"denom":"ASSET16","index":"0.000012202670980955"},{"denom":"ASSET17","index":"0.000009573761377605"},{"denom":"ASSET18","index":"0.000003959875003044"},{"denom":"ASSET2","index":"0.000008327243811102"},{"denom":"ASSET3","index":"0.000002312908746824"},{"denom":"ASSET4","index":"0.000022299606884078"},{"denom":"ASSET5","index":"0.000001802093087045"},{"denom":"ASSET6","index":"0.000007275447910852"},{"denom":"ASSET7","index":"0.000011427132859276"},{"denom":"ASSET8","index":"0.000015602768933976"},{"denom":"ASSET9","index":"0.000006623309483786"}],"last_reward_claim_height":"170"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET4","shares":"695820268.633615566011898600","reward_history":[{"denom":"ASSET0","index":"0.000003240628198198"},{"denom":"ASSET1","index":"0.000027504329283847"},{"denom":"ASSET10","index":"0.000021940320319100"},{"denom":"ASSET11","index":"0.000027329345632586"},{"denom":"ASSET12","index":"0.000026051323397008"},{"denom":"ASSET13","index":"0.000008583813762496"},{"denom":"ASSET14","index":"0.000025085743554439"},{"denom":"ASSET15","index":"0.000019763439018939"},{"denom":"ASSET16","index":"0.000012202670980955"},{"denom":"ASSET17","index":"0.000009573761377605"},{"denom":"ASSET18","index":"0.000003959875003044"},{"denom":"ASSET2","index":"0.000008327243811102"},{"denom":"ASSET3","index":"0.000002312908746824"},{"denom":"ASSET4","index":"0.000022299606884078"},{"denom":"ASSET5","index":"0.000001802093087045"},{"denom":"ASSET6","index":"0.000007275447910852"},{"denom":"ASSET7","index":"0.000011427132859276"},{"denom":"ASSET8","index":"0.000015602768933976"},{"denom":"ASSET9","index":"0.000006623309483786"}],"last_reward_claim_height":"165"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","denom":"ASSET13","shares":"493368680.000000000000000000","reward_history":[],"last_reward_claim_height":"43"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET13","shares":"253907452.066902530320914704","reward_history":[{"denom":"ASSET0","index":"0.000003152920186871"},{"denom":"ASSET1","index":"0.000026760622644749"},{"denom":"ASSET10","index":"0.000021403995558307"},{"denom":"ASSET11","index":"0.000026604821287493"},{"denom":"ASSET12","index":"0.000025390105019040"},{"denom":"ASSET13","index":"0.000008358570294936"},{"denom":"ASSET14","index":"0.000024411618525071"},{"denom":"ASSET15","index":"0.000019270968708391"},{"denom":"ASSET16","index":"0.000011868219590271"},{"denom":"ASSET17","index":"0.000009330682788205"},{"denom":"ASSET18","index":"0.000003846613833157"},{"denom":"ASSET2","index":"0.000008107095494272"},{"denom":"ASSET3","index":"0.000002249072663818"},{"denom":"ASSET4","index":"0.000021694789218154"},{"denom":"ASSET5","index":"0.000001752328837510"},{"denom":"ASSET6","index":"0.000007072706136469"},{"denom":"ASSET7","index":"0.000011115912260277"},{"denom":"ASSET8","index":"0.000015194187602297"},{"denom":"ASSET9","index":"0.000006447849146068"}],"last_reward_claim_height":"175"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET14","shares":"671610838.017302123720236408","reward_history":[{"denom":"ASSET0","index":"0.000003152920186871"},{"denom":"ASSET1","index":"0.000026760622644749"},{"denom":"ASSET10","index":"0.000021403995558307"},{"denom":"ASSET11","index":"0.000026604821287493"},{"denom":"ASSET12","index":"0.000025390105019040"},{"denom":"ASSET13","index":"0.000008358570294936"},{"denom":"ASSET14","index":"0.000024411618525071"},{"denom":"ASSET15","index":"0.000019270968708391"},{"denom":"ASSET16","index":"0.000011868219590271"},{"denom":"ASSET17","index":"0.000009330682788205"},{"denom":"ASSET18","index":"0.000003846613833157"},{"denom":"ASSET2","index":"0.000008107095494272"},{"denom":"ASSET3","index":"0.000002249072663818"},{"denom":"ASSET4","index":"0.000021694789218154"},{"denom":"ASSET5","index":"0.000001752328837510"},{"denom":"ASSET6","index":"0.000007072706136469"},{"denom":"ASSET7","index":"0.000011115912260277"},{"denom":"ASSET8","index":"0.000015194187602297"},{"denom":"ASSET9","index":"0.000006447849146068"}],"last_reward_claim_height":"134"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET0","shares":"806989203.999999956422582984","reward_history":[{"denom":"ASSET0","index":"0.000003218229550028"},{"denom":"ASSET1","index":"0.000027301798081180"},{"denom":"ASSET10","index":"0.000021745417841688"},{"denom":"ASSET11","index":"0.000027119412726222"},{"denom":"ASSET12","index":"0.000025834540696398"},{"denom":"ASSET13","index":"0.000008516471999212"},{"denom":"ASSET14","index":"0.000024897496810197"},{"denom":"ASSET15","index":"0.000019595694306931"},{"denom":"ASSET16","index":"0.000012114595919920"},{"denom":"ASSET17","index":"0.000009493460517354"},{"denom":"ASSET18","index":"0.000003932937797970"},{"denom":"ASSET2","index":"0.000008264095290285"},{"denom":"ASSET3","index":"0.000002297232512411"},{"denom":"ASSET4","index":"0.000022135581489268"},{"denom":"ASSET5","index":"0.000001789675045728"},{"denom":"ASSET6","index":"0.000007223884768794"},{"denom":"ASSET7","index":"0.000011342725097550"},{"denom":"ASSET8","index":"0.000015481678980085"},{"denom":"ASSET9","index":"0.000006573861400446"}],"last_reward_claim_height":"160"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET1","shares":"215569485.669824933162419426","reward_history":[{"denom":"ASSET0","index":"0.000004805221581489"},{"denom":"ASSET1","index":"0.000039345873089839"},{"denom":"ASSET10","index":"0.000033976974059511"},{"denom":"ASSET11","index":"0.000040840579959096"},{"denom":"ASSET12","index":"0.000038851970817686"},{"denom":"ASSET13","index":"0.000013166643058567"},{"denom":"ASSET14","index":"0.000037684443357597"},{"denom":"ASSET15","index":"0.000030511924225991"},{"denom":"ASSET16","index":"0.000017462133370161"},{"denom":"ASSET17","index":"0.000014115418385039"},{"denom":"ASSET18","index":"0.000005874187405486"},{"denom":"ASSET2","index":"0.000011873108566706"},{"denom":"ASSET3","index":"0.000003413246263568"},{"denom":"ASSET4","index":"0.000032247735445721"},{"denom":"ASSET5","index":"0.000002679755737782"},{"denom":"ASSET6","index":"0.000010937559885283"},{"denom":"ASSET7","index":"0.000016893898084444"},{"denom":"ASSET8","index":"0.000024287380141606"},{"denom":"ASSET9","index":"0.000009753761132589"}],"last_reward_claim_height":"189"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET4","shares":"531782189.000000000000000000","reward_history":[],"last_reward_claim_height":"15"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET5","shares":"198121659.978163058963346112","reward_history":[{"denom":"ASSET0","index":"0.000003218229550028"},{"denom":"ASSET1","index":"0.000027301798081180"},{"denom":"ASSET10","index":"0.000021745417841688"},{"denom":"ASSET11","index":"0.000027119412726222"},{"denom":"ASSET12","index":"0.000025834540696398"},{"denom":"ASSET13","index":"0.000008516471999212"},{"denom":"ASSET14","index":"0.000024897496810197"},{"denom":"ASSET15","index":"0.000019595694306931"},{"denom":"ASSET16","index":"0.000012114595919920"},{"denom":"ASSET17","index":"0.000009493460517354"},{"denom":"ASSET18","index":"0.000003932937797970"},{"denom":"ASSET2","index":"0.000008264095290285"},{"denom":"ASSET3","index":"0.000002297232512411"},{"denom":"ASSET4","index":"0.000022135581489268"},{"denom":"ASSET5","index":"0.000001789675045728"},{"denom":"ASSET6","index":"0.000007223884768794"},{"denom":"ASSET7","index":"0.000011342725097550"},{"denom":"ASSET8","index":"0.000015481678980085"},{"denom":"ASSET9","index":"0.000006573861400446"}],"last_reward_claim_height":"129"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET6","shares":"238289036.083208546275767213","reward_history":[{"denom":"ASSET0","index":"0.000003218229550028"},{"denom":"ASSET1","index":"0.000027301798081180"},{"denom":"ASSET10","index":"0.000021745417841688"},{"denom":"ASSET11","index":"0.000027119412726222"},{"denom":"ASSET12","index":"0.000025834540696398"},{"denom":"ASSET13","index":"0.000008516471999212"},{"denom":"ASSET14","index":"0.000024897496810197"},{"denom":"ASSET15","index":"0.000019595694306931"},{"denom":"ASSET16","index":"0.000012114595919920"},{"denom":"ASSET17","index":"0.000009493460517354"},{"denom":"ASSET18","index":"0.000003932937797970"},{"denom":"ASSET2","index":"0.000008264095290285"},{"denom":"ASSET3","index":"0.000002297232512411"},{"denom":"ASSET4","index":"0.000022135581489268"},{"denom":"ASSET5","index":"0.000001789675045728"},{"denom":"ASSET6","index":"0.000007223884768794"},{"denom":"ASSET7","index":"0.000011342725097550"},{"denom":"ASSET8","index":"0.000015481678980085"},{"denom":"ASSET9","index":"0.000006573861400446"}],"last_reward_claim_height":"154"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET8","shares":"24265806.203948846680682524","reward_history":[{"denom":"ASSET0","index":"0.000004805221581489"},{"denom":"ASSET1","index":"0.000039345873089839"},{"denom":"ASSET10","index":"0.000033976974059511"},{"denom":"ASSET11","index":"0.000040840579959096"},{"denom":"ASSET12","index":"0.000038851970817686"},{"denom":"ASSET13","index":"0.000013166643058567"},{"denom":"ASSET14","index":"0.000037684443357597"},{"denom":"ASSET15","index":"0.000030511924225991"},{"denom":"ASSET16","index":"0.000017462133370161"},{"denom":"ASSET17","index":"0.000014115418385039"},{"denom":"ASSET18","index":"0.000005874187405486"},{"denom":"ASSET2","index":"0.000011873108566706"},{"denom":"ASSET3","index":"0.000003413246263568"},{"denom":"ASSET4","index":"0.000032247735445721"},{"denom":"ASSET5","index":"0.000002679755737782"},{"denom":"ASSET6","index":"0.000010937559885283"},{"denom":"ASSET7","index":"0.000016893898084444"},{"denom":"ASSET8","index":"0.000024287380141606"},{"denom":"ASSET9","index":"0.000009753761132589"}],"last_reward_claim_height":"194"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET14","shares":"617241560.921829924669187180","reward_history":[{"denom":"ASSET0","index":"0.000003218229550028"},{"denom":"ASSET1","index":"0.000027301798081180"},{"denom":"ASSET10","index":"0.000021745417841688"},{"denom":"ASSET11","index":"0.000027119412726222"},{"denom":"ASSET12","index":"0.000025834540696398"},{"denom":"ASSET13","index":"0.000008516471999212"},{"denom":"ASSET14","index":"0.000024897496810197"},{"denom":"ASSET15","index":"0.000019595694306931"},{"denom":"ASSET16","index":"0.000012114595919920"},{"denom":"ASSET17","index":"0.000009493460517354"},{"denom":"ASSET18","index":"0.000003932937797970"},{"denom":"ASSET2","index":"0.000008264095290285"},{"denom":"ASSET3","index":"0.000002297232512411"},{"denom":"ASSET4","index":"0.000022135581489268"},{"denom":"ASSET5","index":"0.000001789675045728"},{"denom":"ASSET6","index":"0.000007223884768794"},{"denom":"ASSET7","index":"0.000011342725097550"},{"denom":"ASSET8","index":"0.000015481678980085"},{"denom":"ASSET9","index":"0.000006573861400446"}],"last_reward_claim_height":"167"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET1","shares":"623381080.889260514665570545","reward_history":[{"denom":"ASSET0","index":"0.000003224207736427"},{"denom":"ASSET1","index":"0.000027358045975387"},{"denom":"ASSET10","index":"0.000021853454393362"},{"denom":"ASSET11","index":"0.000027191663823691"},{"denom":"ASSET12","index":"0.000025935625558190"},{"denom":"ASSET13","index":"0.000008541293337334"},{"denom":"ASSET14","index":"0.000024954691173737"},{"denom":"ASSET15","index":"0.000019681390400685"},{"denom":"ASSET16","index":"0.000012135703886829"},{"denom":"ASSET17","index":"0.000009530848033034"},{"denom":"ASSET18","index":"0.000003936224347496"},{"denom":"ASSET2","index":"0.000008286598878032"},{"denom":"ASSET3","index":"0.000002301038846536"},{"denom":"ASSET4","index":"0.000022179933336345"},{"denom":"ASSET5","index":"0.000001792519798769"},{"denom":"ASSET6","index":"0.000007234068845872"},{"denom":"ASSET7","index":"0.000011365474292791"},{"denom":"ASSET8","index":"0.000015527655320242"},{"denom":"ASSET9","index":"0.000006590765495457"}],"last_reward_claim_height":"148"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET9","shares":"288558911.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001621688869515"},{"denom":"ASSET1","index":"0.000013520143478358"},{"denom":"ASSET10","index":"0.000009419470546393"},{"denom":"ASSET11","index":"0.000013079418684764"},{"denom":"ASSET12","index":"0.000011778054243646"},{"denom":"ASSET13","index":"0.000004053107355591"},{"denom":"ASSET14","index":"0.000012218035825109"},{"denom":"ASSET15","index":"0.000008735715386011"},{"denom":"ASSET16","index":"0.000006090623412316"},{"denom":"ASSET17","index":"0.000004325494601547"},{"denom":"ASSET18","index":"0.000002060555632782"},{"denom":"ASSET2","index":"0.000003991049142665"},{"denom":"ASSET3","index":"0.000001167586257565"},{"denom":"ASSET4","index":"0.000010987648142487"},{"denom":"ASSET5","index":"0.000000905975587506"},{"denom":"ASSET6","index":"0.000003688190199343"},{"denom":"ASSET7","index":"0.000005648412194460"},{"denom":"ASSET8","index":"0.000007370434701640"},{"denom":"ASSET9","index":"0.000003183549162496"}],"last_reward_claim_height":"66"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET17","shares":"534141690.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003224207736427"},{"denom":"ASSET1","index":"0.000027358045975387"},{"denom":"ASSET10","index":"0.000021853454393362"},{"denom":"ASSET11","index":"0.000027191663823691"},{"denom":"ASSET12","index":"0.000025935625558190"},{"denom":"ASSET13","index":"0.000008541293337334"},{"denom":"ASSET14","index":"0.000024954691173737"},{"denom":"ASSET15","index":"0.000019681390400685"},{"denom":"ASSET16","index":"0.000012135703886829"},{"denom":"ASSET17","index":"0.000009530848033034"},{"denom":"ASSET18","index":"0.000003936224347496"},{"denom":"ASSET2","index":"0.000008286598878032"},{"denom":"ASSET3","index":"0.000002301038846536"},{"denom":"ASSET4","index":"0.000022179933336345"},{"denom":"ASSET5","index":"0.000001792519798769"},{"denom":"ASSET6","index":"0.000007234068845872"},{"denom":"ASSET7","index":"0.000011365474292791"},{"denom":"ASSET8","index":"0.000015527655320242"},{"denom":"ASSET9","index":"0.000006590765495457"}],"last_reward_claim_height":"149"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET1","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001684197417987"},{"denom":"ASSET1","index":"0.000014041270025306"},{"denom":"ASSET10","index":"0.000009782380002809"},{"denom":"ASSET11","index":"0.000013583439347888"},{"denom":"ASSET12","index":"0.000012231725730520"},{"denom":"ASSET13","index":"0.000004209525615418"},{"denom":"ASSET14","index":"0.000012688588478388"},{"denom":"ASSET15","index":"0.000009072403677468"},{"denom":"ASSET16","index":"0.000006325419612958"},{"denom":"ASSET17","index":"0.000004492161044183"},{"denom":"ASSET18","index":"0.000002139608271529"},{"denom":"ASSET2","index":"0.000004144674335530"},{"denom":"ASSET3","index":"0.000001212331762086"},{"denom":"ASSET4","index":"0.000011410921471639"},{"denom":"ASSET5","index":"0.000000940827523152"},{"denom":"ASSET6","index":"0.000003830097231595"},{"denom":"ASSET7","index":"0.000005866137041214"},{"denom":"ASSET8","index":"0.000007654386885887"},{"denom":"ASSET9","index":"0.000003305963379963"}],"last_reward_claim_height":"64"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET5","shares":"215799192.276992433759571344","reward_history":[{"denom":"ASSET0","index":"0.000003193080094990"},{"denom":"ASSET1","index":"0.000027069824276969"},{"denom":"ASSET10","index":"0.000021489349079139"},{"denom":"ASSET11","index":"0.000026870184080824"},{"denom":"ASSET12","index":"0.000025561356340007"},{"denom":"ASSET13","index":"0.000008435097288603"},{"denom":"ASSET14","index":"0.000024680442306089"},{"denom":"ASSET15","index":"0.000019377704768171"},{"denom":"ASSET16","index":"0.000012016988086595"},{"denom":"ASSET17","index":"0.000009392966467546"},{"denom":"ASSET18","index":"0.000003905368596850"},{"denom":"ASSET2","index":"0.000008189075060838"},{"denom":"ASSET3","index":"0.000002279664955012"},{"denom":"ASSET4","index":"0.000021948593995488"},{"denom":"ASSET5","index":"0.000001775351671947"},{"denom":"ASSET6","index":"0.000007168631437760"},{"denom":"ASSET7","index":"0.000011248752159293"},{"denom":"ASSET8","index":"0.000015334459676317"},{"denom":"ASSET9","index":"0.000006513651901550"}],"last_reward_claim_height":"126"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET10","shares":"901488375.053137345614673340","reward_history":[{"denom":"ASSET0","index":"0.000001684197417987"},{"denom":"ASSET1","index":"0.000014041270025306"},{"denom":"ASSET10","index":"0.000009782380002809"},{"denom":"ASSET11","index":"0.000013583439347888"},{"denom":"ASSET12","index":"0.000012231725730520"},{"denom":"ASSET13","index":"0.000004209525615418"},{"denom":"ASSET14","index":"0.000012688588478388"},{"denom":"ASSET15","index":"0.000009072403677468"},{"denom":"ASSET16","index":"0.000006325419612958"},{"denom":"ASSET17","index":"0.000004492161044183"},{"denom":"ASSET18","index":"0.000002139608271529"},{"denom":"ASSET2","index":"0.000004144674335530"},{"denom":"ASSET3","index":"0.000001212331762086"},{"denom":"ASSET4","index":"0.000011410921471639"},{"denom":"ASSET5","index":"0.000000940827523152"},{"denom":"ASSET6","index":"0.000003830097231595"},{"denom":"ASSET7","index":"0.000005866137041214"},{"denom":"ASSET8","index":"0.000007654386885887"},{"denom":"ASSET9","index":"0.000003305963379963"}],"last_reward_claim_height":"96"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET1","shares":"456740339.000000149810831192","reward_history":[{"denom":"ASSET0","index":"0.000001677613648548"},{"denom":"ASSET1","index":"0.000013997394471820"},{"denom":"ASSET10","index":"0.000009752554992736"},{"denom":"ASSET11","index":"0.000013541183096442"},{"denom":"ASSET12","index":"0.000012193285851007"},{"denom":"ASSET13","index":"0.000004195070965406"},{"denom":"ASSET14","index":"0.000012649497226385"},{"denom":"ASSET15","index":"0.000009043353672830"},{"denom":"ASSET16","index":"0.000006306085420563"},{"denom":"ASSET17","index":"0.000004477092542912"},{"denom":"ASSET18","index":"0.000002131751335856"},{"denom":"ASSET2","index":"0.000004130786635239"},{"denom":"ASSET3","index":"0.000001208960144751"},{"denom":"ASSET4","index":"0.000011376252751467"},{"denom":"ASSET5","index":"0.000000937307007594"},{"denom":"ASSET6","index":"0.000003817659736684"},{"denom":"ASSET7","index":"0.000005847800357116"},{"denom":"ASSET8","index":"0.000007631172097229"},{"denom":"ASSET9","index":"0.000003295090343070"}],"last_reward_claim_height":"115"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET5","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001677613648548"},{"denom":"ASSET1","index":"0.000013997394471820"},{"denom":"ASSET10","index":"0.000009752554992736"},{"denom":"ASSET11","index":"0.000013541183096442"},{"denom":"ASSET12","index":"0.000012193285851007"},{"denom":"ASSET13","index":"0.000004195070965406"},{"denom":"ASSET14","index":"0.000012649497226385"},{"denom":"ASSET15","index":"0.000009043353672830"},{"denom":"ASSET16","index":"0.000006306085420563"},{"denom":"ASSET17","index":"0.000004477092542912"},{"denom":"ASSET18","index":"0.000002131751335856"},{"denom":"ASSET2","index":"0.000004130786635239"},{"denom":"ASSET3","index":"0.000001208960144751"},{"denom":"ASSET4","index":"0.000011376252751467"},{"denom":"ASSET5","index":"0.000000937307007594"},{"denom":"ASSET6","index":"0.000003817659736684"},{"denom":"ASSET7","index":"0.000005847800357116"},{"denom":"ASSET8","index":"0.000007631172097229"},{"denom":"ASSET9","index":"0.000003295090343070"}],"last_reward_claim_height":"70"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET7","shares":"31809224.000000000699802928","reward_history":[{"denom":"ASSET0","index":"0.000001677613648548"},{"denom":"ASSET1","index":"0.000013997394471820"},{"denom":"ASSET10","index":"0.000009752554992736"},{"denom":"ASSET11","index":"0.000013541183096442"},{"denom":"ASSET12","index":"0.000012193285851007"},{"denom":"ASSET13","index":"0.000004195070965406"},{"denom":"ASSET14","index":"0.000012649497226385"},{"denom":"ASSET15","index":"0.000009043353672830"},{"denom":"ASSET16","index":"0.000006306085420563"},{"denom":"ASSET17","index":"0.000004477092542912"},{"denom":"ASSET18","index":"0.000002131751335856"},{"denom":"ASSET2","index":"0.000004130786635239"},{"denom":"ASSET3","index":"0.000001208960144751"},{"denom":"ASSET4","index":"0.000011376252751467"},{"denom":"ASSET5","index":"0.000000937307007594"},{"denom":"ASSET6","index":"0.000003817659736684"},{"denom":"ASSET7","index":"0.000005847800357116"},{"denom":"ASSET8","index":"0.000007631172097229"},{"denom":"ASSET9","index":"0.000003295090343070"}],"last_reward_claim_height":"113"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET11","shares":"45446108.000000000000000000","reward_history":[],"last_reward_claim_height":"40"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET14","shares":"481303114.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001520550536467"},{"denom":"ASSET1","index":"0.000012675827554874"},{"denom":"ASSET10","index":"0.000008831388003026"},{"denom":"ASSET11","index":"0.000012262725604616"},{"denom":"ASSET12","index":"0.000011042474271843"},{"denom":"ASSET13","index":"0.000003800233070086"},{"denom":"ASSET14","index":"0.000011455195131741"},{"denom":"ASSET15","index":"0.000008190012927118"},{"denom":"ASSET16","index":"0.000005710257954490"},{"denom":"ASSET17","index":"0.000004055182520937"},{"denom":"ASSET18","index":"0.000001931747034924"},{"denom":"ASSET2","index":"0.000003741926245004"},{"denom":"ASSET3","index":"0.000001094491513968"},{"denom":"ASSET4","index":"0.000010301253521611"},{"denom":"ASSET5","index":"0.000000849450412477"},{"denom":"ASSET6","index":"0.000003457632836431"},{"denom":"ASSET7","index":"0.000005295631642792"},{"denom":"ASSET8","index":"0.000006910311498182"},{"denom":"ASSET9","index":"0.000002984699699651"}],"last_reward_claim_height":"109"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET4","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"52"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET5","shares":"261885344.775644872296748350","reward_history":[{"denom":"ASSET0","index":"0.000003365151784209"},{"denom":"ASSET1","index":"0.000028538337865727"},{"denom":"ASSET10","index":"0.000022670552359626"},{"denom":"ASSET11","index":"0.000028331786642422"},{"denom":"ASSET12","index":"0.000026959391418936"},{"denom":"ASSET13","index":"0.000008894072871450"},{"denom":"ASSET14","index":"0.000026020188745878"},{"denom":"ASSET15","index":"0.000020439828986765"},{"denom":"ASSET16","index":"0.000012667128947757"},{"denom":"ASSET17","index":"0.000009907060013179"},{"denom":"ASSET18","index":"0.000004116201786219"},{"denom":"ASSET2","index":"0.000008634485522558"},{"denom":"ASSET3","index":"0.000002403102945281"},{"denom":"ASSET4","index":"0.000023139017263426"},{"denom":"ASSET5","index":"0.000001871649891727"},{"denom":"ASSET6","index":"0.000007555863827839"},{"denom":"ASSET7","index":"0.000011857581945748"},{"denom":"ASSET8","index":"0.000016169532559731"},{"denom":"ASSET9","index":"0.000006867789268222"}],"last_reward_claim_height":"132"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET3","shares":"78146992.091271447848203110","reward_history":[{"denom":"ASSET0","index":"0.000005040570168850"},{"denom":"ASSET1","index":"0.000041355750359430"},{"denom":"ASSET10","index":"0.000035469281704739"},{"denom":"ASSET11","index":"0.000042803752649888"},{"denom":"ASSET12","index":"0.000040675443122671"},{"denom":"ASSET13","index":"0.000013775999252168"},{"denom":"ASSET14","index":"0.000039495576924183"},{"denom":"ASSET15","index":"0.000031873960565154"},{"denom":"ASSET16","index":"0.000018356948849581"},{"denom":"ASSET17","index":"0.000014782651582035"},{"denom":"ASSET18","index":"0.000006164254954174"},{"denom":"ASSET2","index":"0.000012468880818976"},{"denom":"ASSET3","index":"0.000003582052674901"},{"denom":"ASSET4","index":"0.000033871373778794"},{"denom":"ASSET5","index":"0.000002805429255147"},{"denom":"ASSET6","index":"0.000011472525623683"},{"denom":"ASSET7","index":"0.000017727043140390"},{"denom":"ASSET8","index":"0.000025392666272201"},{"denom":"ASSET9","index":"0.000010226777370208"}],"last_reward_claim_height":"196"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET6","shares":"77848664.050761655647759543","reward_history":[{"denom":"ASSET0","index":"0.000003461123478470"},{"denom":"ASSET1","index":"0.000029368181297786"},{"denom":"ASSET10","index":"0.000023294808028239"},{"denom":"ASSET11","index":"0.000029147392384169"},{"denom":"ASSET12","index":"0.000027719461688447"},{"denom":"ASSET13","index":"0.000009147542663388"},{"denom":"ASSET14","index":"0.000026768604990580"},{"denom":"ASSET15","index":"0.000021008846141082"},{"denom":"ASSET16","index":"0.000013035302068339"},{"denom":"ASSET17","index":"0.000010182949549387"},{"denom":"ASSET18","index":"0.000004232564951180"},{"denom":"ASSET2","index":"0.000008877642147806"},{"denom":"ASSET3","index":"0.000002471921418528"},{"denom":"ASSET4","index":"0.000023806252184245"},{"denom":"ASSET5","index":"0.000001920199705662"},{"denom":"ASSET6","index":"0.000007776538212319"},{"denom":"ASSET7","index":"0.000012202060569359"},{"denom":"ASSET8","index":"0.000016628688342614"},{"denom":"ASSET9","index":"0.000007061722298848"}],"last_reward_claim_height":"182"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET10","shares":"45180288.180517642194457520","reward_history":[{"denom":"ASSET0","index":"0.000003461123478470"},{"denom":"ASSET1","index":"0.000029368181297786"},{"denom":"ASSET10","index":"0.000023294808028239"},{"denom":"ASSET11","index":"0.000029147392384169"},{"denom":"ASSET12","index":"0.000027719461688447"},{"denom":"ASSET13","index":"0.000009147542663388"},{"denom":"ASSET14","index":"0.000026768604990580"},{"denom":"ASSET15","index":"0.000021008846141082"},{"denom":"ASSET16","index":"0.000013035302068339"},{"denom":"ASSET17","index":"0.000010182949549387"},{"denom":"ASSET18","index":"0.000004232564951180"},{"denom":"ASSET2","index":"0.000008877642147806"},{"denom":"ASSET3","index":"0.000002471921418528"},{"denom":"ASSET4","index":"0.000023806252184245"},{"denom":"ASSET5","index":"0.000001920199705662"},{"denom":"ASSET6","index":"0.000007776538212319"},{"denom":"ASSET7","index":"0.000012202060569359"},{"denom":"ASSET8","index":"0.000016628688342614"},{"denom":"ASSET9","index":"0.000007061722298848"}],"last_reward_claim_height":"178"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET14","shares":"45476302.000000001193924540","reward_history":[],"last_reward_claim_height":"56"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET18","shares":"312131695.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000005040570168850"},{"denom":"ASSET1","index":"0.000041355750359430"},{"denom":"ASSET10","index":"0.000035469281704739"},{"denom":"ASSET11","index":"0.000042803752649888"},{"denom":"ASSET12","index":"0.000040675443122671"},{"denom":"ASSET13","index":"0.000013775999252168"},{"denom":"ASSET14","index":"0.000039495576924183"},{"denom":"ASSET15","index":"0.000031873960565154"},{"denom":"ASSET16","index":"0.000018356948849581"},{"denom":"ASSET17","index":"0.000014782651582035"},{"denom":"ASSET18","index":"0.000006164254954174"},{"denom":"ASSET2","index":"0.000012468880818976"},{"denom":"ASSET3","index":"0.000003582052674901"},{"denom":"ASSET4","index":"0.000033871373778794"},{"denom":"ASSET5","index":"0.000002805429255147"},{"denom":"ASSET6","index":"0.000011472525623683"},{"denom":"ASSET7","index":"0.000017727043140390"},{"denom":"ASSET8","index":"0.000025392666272201"},{"denom":"ASSET9","index":"0.000010226777370208"}],"last_reward_claim_height":"194"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET0","shares":"3107643.000000000000000000","reward_history":[],"last_reward_claim_height":"39"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET9","shares":"953131588.000000000000000000","reward_history":[],"last_reward_claim_height":"40"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET15","shares":"624916380.738515193271355852","reward_history":[{"denom":"ASSET0","index":"0.000003136420796654"},{"denom":"ASSET1","index":"0.000026617535879560"},{"denom":"ASSET10","index":"0.000021257162201233"},{"denom":"ASSET11","index":"0.000026454281403244"},{"denom":"ASSET12","index":"0.000025229520616223"},{"denom":"ASSET13","index":"0.000008309311482354"},{"denom":"ASSET14","index":"0.000024278363089230"},{"denom":"ASSET15","index":"0.000019144672836670"},{"denom":"ASSET16","index":"0.000011806881934189"},{"denom":"ASSET17","index":"0.000009271795054357"},{"denom":"ASSET18","index":"0.000003829937127836"},{"denom":"ASSET2","index":"0.000008061315465971"},{"denom":"ASSET3","index":"0.000002238409344787"},{"denom":"ASSET4","index":"0.000021579173085678"},{"denom":"ASSET5","index":"0.000001744155749232"},{"denom":"ASSET6","index":"0.000007037998659171"},{"denom":"ASSET7","index":"0.000011056982942661"},{"denom":"ASSET8","index":"0.000015105683491420"},{"denom":"ASSET9","index":"0.000006411626899884"}],"last_reward_claim_height":"164"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET1","shares":"1000073330.699593792000000000","reward_history":[{"denom":"ASSET0","index":"0.000001065673750407"},{"denom":"ASSET1","index":"0.000008885137524612"},{"denom":"ASSET10","index":"0.000006190162379117"},{"denom":"ASSET11","index":"0.000008595321581390"},{"denom":"ASSET12","index":"0.000007740138401991"},{"denom":"ASSET13","index":"0.000002663662498568"},{"denom":"ASSET14","index":"0.000008029258508615"},{"denom":"ASSET15","index":"0.000005740999854868"},{"denom":"ASSET16","index":"0.000004002452113836"},{"denom":"ASSET17","index":"0.000002842492504350"},{"denom":"ASSET18","index":"0.000001354098020432"},{"denom":"ASSET2","index":"0.000002622608139264"},{"denom":"ASSET3","index":"0.000000767159849705"},{"denom":"ASSET4","index":"0.000007220696381306"},{"denom":"ASSET5","index":"0.000000595288209907"},{"denom":"ASSET6","index":"0.000002423598872130"},{"denom":"ASSET7","index":"0.000003711940334016"},{"denom":"ASSET8","index":"0.000004843718561268"},{"denom":"ASSET9","index":"0.000002092032733005"}],"last_reward_claim_height":"103"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET15","shares":"159686510.000000007185892950","reward_history":[{"denom":"ASSET0","index":"0.000002559869929403"},{"denom":"ASSET1","index":"0.000021787096732684"},{"denom":"ASSET10","index":"0.000017783238471081"},{"denom":"ASSET11","index":"0.000021752938768967"},{"denom":"ASSET12","index":"0.000020940235345308"},{"denom":"ASSET13","index":"0.000006848308161575"},{"denom":"ASSET14","index":"0.000019904298850841"},{"denom":"ASSET15","index":"0.000015946274018453"},{"denom":"ASSET16","index":"0.000009638424477568"},{"denom":"ASSET17","index":"0.000007695902028378"},{"denom":"ASSET18","index":"0.000003102977872608"},{"denom":"ASSET2","index":"0.000006627591716064"},{"denom":"ASSET3","index":"0.000001824087350341"},{"denom":"ASSET4","index":"0.000017655906837434"},{"denom":"ASSET5","index":"0.000001421889695470"},{"denom":"ASSET6","index":"0.000005729615091854"},{"denom":"ASSET7","index":"0.000009042175373173"},{"denom":"ASSET8","index":"0.000012449153729005"},{"denom":"ASSET9","index":"0.000005268661072858"}],"last_reward_claim_height":"181"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET16","shares":"513207847.593386736029219466","reward_history":[{"denom":"ASSET0","index":"0.000001065673750407"},{"denom":"ASSET1","index":"0.000008885137524612"},{"denom":"ASSET10","index":"0.000006190162379117"},{"denom":"ASSET11","index":"0.000008595321581390"},{"denom":"ASSET12","index":"0.000007740138401991"},{"denom":"ASSET13","index":"0.000002663662498568"},{"denom":"ASSET14","index":"0.000008029258508615"},{"denom":"ASSET15","index":"0.000005740999854868"},{"denom":"ASSET16","index":"0.000004002452113836"},{"denom":"ASSET17","index":"0.000002842492504350"},{"denom":"ASSET18","index":"0.000001354098020432"},{"denom":"ASSET2","index":"0.000002622608139264"},{"denom":"ASSET3","index":"0.000000767159849705"},{"denom":"ASSET4","index":"0.000007220696381306"},{"denom":"ASSET5","index":"0.000000595288209907"},{"denom":"ASSET6","index":"0.000002423598872130"},{"denom":"ASSET7","index":"0.000003711940334016"},{"denom":"ASSET8","index":"0.000004843718561268"},{"denom":"ASSET9","index":"0.000002092032733005"}],"last_reward_claim_height":"80"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET3","shares":"721965142.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001663945626017"},{"denom":"ASSET1","index":"0.000013874870096624"},{"denom":"ASSET10","index":"0.000009666844154779"},{"denom":"ASSET11","index":"0.000013422526194886"},{"denom":"ASSET12","index":"0.000012086742376498"},{"denom":"ASSET13","index":"0.000004159391889779"},{"denom":"ASSET14","index":"0.000012538614102973"},{"denom":"ASSET15","index":"0.000008964719539034"},{"denom":"ASSET16","index":"0.000006250183953344"},{"denom":"ASSET17","index":"0.000004438919645342"},{"denom":"ASSET18","index":"0.000002114400826704"},{"denom":"ASSET2","index":"0.000004095648229305"},{"denom":"ASSET3","index":"0.000001197908641659"},{"denom":"ASSET4","index":"0.000011275545275051"},{"denom":"ASSET5","index":"0.000000929713092403"},{"denom":"ASSET6","index":"0.000003784956906399"},{"denom":"ASSET7","index":"0.000005796423525818"},{"denom":"ASSET8","index":"0.000007563775534382"},{"denom":"ASSET9","index":"0.000003266980643136"}],"last_reward_claim_height":"80"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET16","shares":"568234336.000000002506687617","reward_history":[],"last_reward_claim_height":"23"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET18","shares":"752937166.424705293015713488","reward_history":[{"denom":"ASSET0","index":"0.000004922134568655"},{"denom":"ASSET1","index":"0.000040310768470971"},{"denom":"ASSET10","index":"0.000034862317636591"},{"denom":"ASSET11","index":"0.000041853360655044"},{"denom":"ASSET12","index":"0.000039844322972483"},{"denom":"ASSET13","index":"0.000013494158512482"},{"denom":"ASSET14","index":"0.000038610410052146"},{"denom":"ASSET15","index":"0.000031296305042201"},{"denom":"ASSET16","index":"0.000017886287338776"},{"denom":"ASSET17","index":"0.000014476771157218"},{"denom":"ASSET18","index":"0.000006013326761486"},{"denom":"ASSET2","index":"0.000012169008325863"},{"denom":"ASSET3","index":"0.000003495870129458"},{"denom":"ASSET4","index":"0.000033036302956604"},{"denom":"ASSET5","index":"0.000002744576306327"},{"denom":"ASSET6","index":"0.000011200596779979"},{"denom":"ASSET7","index":"0.000017306609815312"},{"denom":"ASSET8","index":"0.000024891822473233"},{"denom":"ASSET9","index":"0.000009995213155793"}],"last_reward_claim_height":"188"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET1","shares":"25024997.999999998702733840","reward_history":[],"last_reward_claim_height":"59"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET2","shares":"940046731.999999982139112092","reward_history":[],"last_reward_claim_height":"41"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET6","shares":"282388650.849243869034990955","reward_history":[{"denom":"ASSET0","index":"0.000003157426180098"},{"denom":"ASSET1","index":"0.000026803913890418"},{"denom":"ASSET10","index":"0.000021467927303389"},{"denom":"ASSET11","index":"0.000026655124661377"},{"denom":"ASSET12","index":"0.000025453388278707"},{"denom":"ASSET13","index":"0.000008375182650914"},{"denom":"ASSET14","index":"0.000024453809207757"},{"denom":"ASSET15","index":"0.000019323681821282"},{"denom":"ASSET16","index":"0.000011885939188892"},{"denom":"ASSET17","index":"0.000009353763879690"},{"denom":"ASSET18","index":"0.000003851457527173"},{"denom":"ASSET2","index":"0.000008122633355733"},{"denom":"ASSET3","index":"0.000002252845423920"},{"denom":"ASSET4","index":"0.000021728796023940"},{"denom":"ASSET5","index":"0.000001755342604855"},{"denom":"ASSET6","index":"0.000007082922688985"},{"denom":"ASSET7","index":"0.000011133765978354"},{"denom":"ASSET8","index":"0.000015225414484063"},{"denom":"ASSET9","index":"0.000006459804222065"}],"last_reward_claim_height":"124"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET8","shares":"578014462.535970206978101760","reward_history":[{"denom":"ASSET0","index":"0.000003157426180098"},{"denom":"ASSET1","index":"0.000026803913890418"},{"denom":"ASSET10","index":"0.000021467927303389"},{"denom":"ASSET11","index":"0.000026655124661377"},{"denom":"ASSET12","index":"0.000025453388278707"},{"denom":"ASSET13","index":"0.000008375182650914"},{"denom":"ASSET14","index":"0.000024453809207757"},{"denom":"ASSET15","index":"0.000019323681821282"},{"denom":"ASSET16","index":"0.000011885939188892"},{"denom":"ASSET17","index":"0.000009353763879690"},{"denom":"ASSET18","index":"0.000003851457527173"},{"denom":"ASSET2","index":"0.000008122633355733"},{"denom":"ASSET3","index":"0.000002252845423920"},{"denom":"ASSET4","index":"0.000021728796023940"},{"denom":"ASSET5","index":"0.000001755342604855"},{"denom":"ASSET6","index":"0.000007082922688985"},{"denom":"ASSET7","index":"0.000011133765978354"},{"denom":"ASSET8","index":"0.000015225414484063"},{"denom":"ASSET9","index":"0.000006459804222065"}],"last_reward_claim_height":"140"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET9","shares":"114867508.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003157426180098"},{"denom":"ASSET1","index":"0.000026803913890418"},{"denom":"ASSET10","index":"0.000021467927303389"},{"denom":"ASSET11","index":"0.000026655124661377"},{"denom":"ASSET12","index":"0.000025453388278707"},{"denom":"ASSET13","index":"0.000008375182650914"},{"denom":"ASSET14","index":"0.000024453809207757"},{"denom":"ASSET15","index":"0.000019323681821282"},{"denom":"ASSET16","index":"0.000011885939188892"},{"denom":"ASSET17","index":"0.000009353763879690"},{"denom":"ASSET18","index":"0.000003851457527173"},{"denom":"ASSET2","index":"0.000008122633355733"},{"denom":"ASSET3","index":"0.000002252845423920"},{"denom":"ASSET4","index":"0.000021728796023940"},{"denom":"ASSET5","index":"0.000001755342604855"},{"denom":"ASSET6","index":"0.000007082922688985"},{"denom":"ASSET7","index":"0.000011133765978354"},{"denom":"ASSET8","index":"0.000015225414484063"},{"denom":"ASSET9","index":"0.000006459804222065"}],"last_reward_claim_height":"142"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET0","shares":"343528535.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003185213515607"},{"denom":"ASSET1","index":"0.000027035699090666"},{"denom":"ASSET10","index":"0.000021635640181728"},{"denom":"ASSET11","index":"0.000026880669357351"},{"denom":"ASSET12","index":"0.000025658872180332"},{"denom":"ASSET13","index":"0.000008444958797633"},{"denom":"ASSET14","index":"0.000024662649108986"},{"denom":"ASSET15","index":"0.000019476753279332"},{"denom":"ASSET16","index":"0.000011989846651744"},{"denom":"ASSET17","index":"0.000009429633404312"},{"denom":"ASSET18","index":"0.000003886090392826"},{"denom":"ASSET2","index":"0.000008191890279929"},{"denom":"ASSET3","index":"0.000002271981699175"},{"denom":"ASSET4","index":"0.000021916623044014"},{"denom":"ASSET5","index":"0.000001770727550439"},{"denom":"ASSET6","index":"0.000007144791673859"},{"denom":"ASSET7","index":"0.000011230376410345"},{"denom":"ASSET8","index":"0.000015353061978158"},{"denom":"ASSET9","index":"0.000006513931773648"}],"last_reward_claim_height":"147"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET3","shares":"140032657.762279929983156028","reward_history":[{"denom":"ASSET0","index":"0.000003185213515607"},{"denom":"ASSET1","index":"0.000027035699090666"},{"denom":"ASSET10","index":"0.000021635640181728"},{"denom":"ASSET11","index":"0.000026880669357351"},{"denom":"ASSET12","index":"0.000025658872180332"},{"denom":"ASSET13","index":"0.000008444958797633"},{"denom":"ASSET14","index":"0.000024662649108986"},{"denom":"ASSET15","index":"0.000019476753279332"},{"denom":"ASSET16","index":"0.000011989846651744"},{"denom":"ASSET17","index":"0.000009429633404312"},{"denom":"ASSET18","index":"0.000003886090392826"},{"denom":"ASSET2","index":"0.000008191890279929"},{"denom":"ASSET3","index":"0.000002271981699175"},{"denom":"ASSET4","index":"0.000021916623044014"},{"denom":"ASSET5","index":"0.000001770727550439"},{"denom":"ASSET6","index":"0.000007144791673859"},{"denom":"ASSET7","index":"0.000011230376410345"},{"denom":"ASSET8","index":"0.000015353061978158"},{"denom":"ASSET9","index":"0.000006513931773648"}],"last_reward_claim_height":"128"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","denom":"ASSET12","shares":"277257988.000000297220563136","reward_history":[{"denom":"ASSET0","index":"0.000001578706846766"},{"denom":"ASSET1","index":"0.000013164667632738"},{"denom":"ASSET10","index":"0.000009171819989970"},{"denom":"ASSET11","index":"0.000012734981690366"},{"denom":"ASSET12","index":"0.000011467468005207"},{"denom":"ASSET13","index":"0.000003946168668528"},{"denom":"ASSET14","index":"0.000011895957050803"},{"denom":"ASSET15","index":"0.000008505148486066"},{"denom":"ASSET16","index":"0.000005930623522158"},{"denom":"ASSET17","index":"0.000004211879752669"},{"denom":"ASSET18","index":"0.000002005998995588"},{"denom":"ASSET2","index":"0.000003886323829757"},{"denom":"ASSET3","index":"0.000001135855039864"},{"denom":"ASSET4","index":"0.000010697863378618"},{"denom":"ASSET5","index":"0.000000882112923477"},{"denom":"ASSET6","index":"0.000003590690326231"},{"denom":"ASSET7","index":"0.000005499740683011"},{"denom":"ASSET8","index":"0.000007176593065360"},{"denom":"ASSET9","index":"0.000003098765751537"}],"last_reward_claim_height":"117"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET0","shares":"585486755.147748875538070224","reward_history":[{"denom":"ASSET0","index":"0.000003356675502673"},{"denom":"ASSET1","index":"0.000028477076245214"},{"denom":"ASSET10","index":"0.000022663760086849"},{"denom":"ASSET11","index":"0.000028282539274294"},{"denom":"ASSET12","index":"0.000026934248109484"},{"denom":"ASSET13","index":"0.000008880550781135"},{"denom":"ASSET14","index":"0.000025969128454053"},{"denom":"ASSET15","index":"0.000020425731449718"},{"denom":"ASSET16","index":"0.000012636600959200"},{"denom":"ASSET17","index":"0.000009896936242996"},{"denom":"ASSET18","index":"0.000004102733083140"},{"denom":"ASSET2","index":"0.000008619316582261"},{"denom":"ASSET3","index":"0.000002396767404444"},{"denom":"ASSET4","index":"0.000023088672429632"},{"denom":"ASSET5","index":"0.000001866260713425"},{"denom":"ASSET6","index":"0.000007536521735823"},{"denom":"ASSET7","index":"0.000011831316132227"},{"denom":"ASSET8","index":"0.000016143846449802"},{"denom":"ASSET9","index":"0.000006854365607618"}],"last_reward_claim_height":"143"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET6","shares":"845730544.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003356675502673"},{"denom":"ASSET1","index":"0.000028477076245214"},{"denom":"ASSET10","index":"0.000022663760086849"},{"denom":"ASSET11","index":"0.000028282539274294"},{"denom":"ASSET12","index":"0.000026934248109484"},{"denom":"ASSET13","index":"0.000008880550781135"},{"denom":"ASSET14","index":"0.000025969128454053"},{"denom":"ASSET15","index":"0.000020425731449718"},{"denom":"ASSET16","index":"0.000012636600959200"},{"denom":"ASSET17","index":"0.000009896936242996"},{"denom":"ASSET18","index":"0.000004102733083140"},{"denom":"ASSET2","index":"0.000008619316582261"},{"denom":"ASSET3","index":"0.000002396767404444"},{"denom":"ASSET4","index":"0.000023088672429632"},{"denom":"ASSET5","index":"0.000001866260713425"},{"denom":"ASSET6","index":"0.000007536521735823"},{"denom":"ASSET7","index":"0.000011831316132227"},{"denom":"ASSET8","index":"0.000016143846449802"},{"denom":"ASSET9","index":"0.000006854365607618"}],"last_reward_claim_height":"143"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET10","shares":"402116460.301685339473870360","reward_history":[{"denom":"ASSET0","index":"0.000003356675502673"},{"denom":"ASSET1","index":"0.000028477076245214"},{"denom":"ASSET10","index":"0.000022663760086849"},{"denom":"ASSET11","index":"0.000028282539274294"},{"denom":"ASSET12","index":"0.000026934248109484"},{"denom":"ASSET13","index":"0.000008880550781135"},{"denom":"ASSET14","index":"0.000025969128454053"},{"denom":"ASSET15","index":"0.000020425731449718"},{"denom":"ASSET16","index":"0.000012636600959200"},{"denom":"ASSET17","index":"0.000009896936242996"},{"denom":"ASSET18","index":"0.000004102733083140"},{"denom":"ASSET2","index":"0.000008619316582261"},{"denom":"ASSET3","index":"0.000002396767404444"},{"denom":"ASSET4","index":"0.000023088672429632"},{"denom":"ASSET5","index":"0.000001866260713425"},{"denom":"ASSET6","index":"0.000007536521735823"},{"denom":"ASSET7","index":"0.000011831316132227"},{"denom":"ASSET8","index":"0.000016143846449802"},{"denom":"ASSET9","index":"0.000006854365607618"}],"last_reward_claim_height":"173"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET1","shares":"2696680.999999999962246466","reward_history":[],"last_reward_claim_height":"50"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET2","shares":"932549620.812630861318812861","reward_history":[{"denom":"ASSET0","index":"0.000004537599353463"},{"denom":"ASSET1","index":"0.000037117847669619"},{"denom":"ASSET10","index":"0.000032340600561623"},{"denom":"ASSET11","index":"0.000038655579958761"},{"denom":"ASSET12","index":"0.000036850325657168"},{"denom":"ASSET13","index":"0.000012483428644838"},{"denom":"ASSET14","index":"0.000035652849297182"},{"denom":"ASSET15","index":"0.000029008629406748"},{"denom":"ASSET16","index":"0.000016463312322248"},{"denom":"ASSET17","index":"0.000013380997793781"},{"denom":"ASSET18","index":"0.000005538215667455"},{"denom":"ASSET2","index":"0.000011210947306863"},{"denom":"ASSET3","index":"0.000003221611418209"},{"denom":"ASSET4","index":"0.000030435785673766"},{"denom":"ASSET5","index":"0.000002530194284617"},{"denom":"ASSET6","index":"0.000010331304570982"},{"denom":"ASSET7","index":"0.000015960878418764"},{"denom":"ASSET8","index":"0.000023043980031623"},{"denom":"ASSET9","index":"0.000009223345438838"}],"last_reward_claim_height":"190"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET4","shares":"748747595.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004710092433654"},{"denom":"ASSET1","index":"0.000038556135792355"},{"denom":"ASSET10","index":"0.000033353659193614"},{"denom":"ASSET11","index":"0.000040049318205974"},{"denom":"ASSET12","index":"0.000038111075465724"},{"denom":"ASSET13","index":"0.000012916441638659"},{"denom":"ASSET14","index":"0.000036953570332487"},{"denom":"ASSET15","index":"0.000029944608970039"},{"denom":"ASSET16","index":"0.000017108808043772"},{"denom":"ASSET17","index":"0.000013844822035492"},{"denom":"ASSET18","index":"0.000005755990843634"},{"denom":"ASSET2","index":"0.000011636891149639"},{"denom":"ASSET3","index":"0.000003344846225532"},{"denom":"ASSET4","index":"0.000031603139079821"},{"denom":"ASSET5","index":"0.000002626855566694"},{"denom":"ASSET6","index":"0.000010722052285409"},{"denom":"ASSET7","index":"0.000016561307322387"},{"denom":"ASSET8","index":"0.000023829558015918"},{"denom":"ASSET9","index":"0.000009562504361461"}],"last_reward_claim_height":"189"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET6","shares":"98469975.000000000000000000","reward_history":[],"last_reward_claim_height":"14"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","denom":"ASSET11","shares":"947556804.613589632767855755","reward_history":[{"denom":"ASSET0","index":"0.000003135234009226"},{"denom":"ASSET1","index":"0.000026602125077525"},{"denom":"ASSET10","index":"0.000021213712135644"},{"denom":"ASSET11","index":"0.000026430841190504"},{"denom":"ASSET12","index":"0.000025191219856579"},{"denom":"ASSET13","index":"0.000008300995957475"},{"denom":"ASSET14","index":"0.000024262534835813"},{"denom":"ASSET15","index":"0.000019110376679732"},{"denom":"ASSET16","index":"0.000011801461546978"},{"denom":"ASSET17","index":"0.000009257538829689"},{"denom":"ASSET18","index":"0.000003829421505073"},{"denom":"ASSET2","index":"0.000008055136326188"},{"denom":"ASSET3","index":"0.000002237228869924"},{"denom":"ASSET4","index":"0.000021566736915931"},{"denom":"ASSET5","index":"0.000001743257901616"},{"denom":"ASSET6","index":"0.000007036288319926"},{"denom":"ASSET7","index":"0.000011051703047857"},{"denom":"ASSET8","index":"0.000015089589803941"},{"denom":"ASSET9","index":"0.000006406386950018"}],"last_reward_claim_height":"158"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET9","shares":"514837198.503264513974575023","reward_history":[{"denom":"ASSET0","index":"0.000002930820438736"},{"denom":"ASSET1","index":"0.000024889799880283"},{"denom":"ASSET10","index":"0.000019988623694797"},{"denom":"ASSET11","index":"0.000024765615752571"},{"denom":"ASSET12","index":"0.000023676022623299"},{"denom":"ASSET13","index":"0.000007783195940338"},{"denom":"ASSET14","index":"0.000022712072914709"},{"denom":"ASSET15","index":"0.000017982209004670"},{"denom":"ASSET16","index":"0.000011033267632466"},{"denom":"ASSET17","index":"0.000008700651286884"},{"denom":"ASSET18","index":"0.000003571624768330"},{"denom":"ASSET2","index":"0.000007546215495169"},{"denom":"ASSET3","index":"0.000002090977414753"},{"denom":"ASSET4","index":"0.000020176663420937"},{"denom":"ASSET5","index":"0.000001628342560149"},{"denom":"ASSET6","index":"0.000006572371850885"},{"denom":"ASSET7","index":"0.000010337273058537"},{"denom":"ASSET8","index":"0.000014149515747938"},{"denom":"ASSET9","index":"0.000006000707920121"}],"last_reward_claim_height":"138"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET13","shares":"253263123.000000000000000000","reward_history":[],"last_reward_claim_height":"41"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET8","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001726304213109"},{"denom":"ASSET1","index":"0.000014431903221591"},{"denom":"ASSET10","index":"0.000010055058078201"},{"denom":"ASSET11","index":"0.000013959161452463"},{"denom":"ASSET12","index":"0.000012572806376704"},{"denom":"ASSET13","index":"0.000004323728090679"},{"denom":"ASSET14","index":"0.000013040236440562"},{"denom":"ASSET15","index":"0.000009322042750788"},{"denom":"ASSET16","index":"0.000006501527251832"},{"denom":"ASSET17","index":"0.000004615871880590"},{"denom":"ASSET18","index":"0.000002199045982237"},{"denom":"ASSET2","index":"0.000004259987627426"},{"denom":"ASSET3","index":"0.000001242939033438"},{"denom":"ASSET4","index":"0.000011728245238599"},{"denom":"ASSET5","index":"0.000000966730359341"},{"denom":"ASSET6","index":"0.000003935973605888"},{"denom":"ASSET7","index":"0.000006028785482704"},{"denom":"ASSET8","index":"0.000007866635506506"},{"denom":"ASSET9","index":"0.000003394179668236"}],"last_reward_claim_height":"95"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET10","shares":"139787678.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003313075721980"},{"denom":"ASSET1","index":"0.000028138029356789"},{"denom":"ASSET10","index":"0.000022370607880245"},{"denom":"ASSET11","index":"0.000027937207217164"},{"denom":"ASSET12","index":"0.000026595598409551"},{"denom":"ASSET13","index":"0.000008769097729958"},{"denom":"ASSET14","index":"0.000025655242037122"},{"denom":"ASSET15","index":"0.000020162686714325"},{"denom":"ASSET16","index":"0.000012488922131836"},{"denom":"ASSET17","index":"0.000009772018779266"},{"denom":"ASSET18","index":"0.000004056016110298"},{"denom":"ASSET2","index":"0.000008514325121927"},{"denom":"ASSET3","index":"0.000002365037757716"},{"denom":"ASSET4","index":"0.000022813272666626"},{"denom":"ASSET5","index":"0.000001844445619129"},{"denom":"ASSET6","index":"0.000007446834645040"},{"denom":"ASSET7","index":"0.000011690909413493"},{"denom":"ASSET8","index":"0.000015945057917181"},{"denom":"ASSET9","index":"0.000006769080892636"}],"last_reward_claim_height":"137"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET17","shares":"328510927.000000000000000000","reward_history":[],"last_reward_claim_height":"59"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET3","shares":"1199784.000000000000000000","reward_history":[],"last_reward_claim_height":"27"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","denom":"ASSET8","shares":"682845061.784747964797949818","reward_history":[{"denom":"ASSET0","index":"0.000004953155424517"},{"denom":"ASSET1","index":"0.000040606888247052"},{"denom":"ASSET10","index":"0.000035170982695117"},{"denom":"ASSET11","index":"0.000042156301910947"},{"denom":"ASSET12","index":"0.000040183030492130"},{"denom":"ASSET13","index":"0.000013590071791821"},{"denom":"ASSET14","index":"0.000038871453551416"},{"denom":"ASSET15","index":"0.000031558024433710"},{"denom":"ASSET16","index":"0.000018011385345721"},{"denom":"ASSET17","index":"0.000014602864003856"},{"denom":"ASSET18","index":"0.000006046015291900"},{"denom":"ASSET2","index":"0.000012266366015467"},{"denom":"ASSET3","index":"0.000003517202576052"},{"denom":"ASSET4","index":"0.000033271184035282"},{"denom":"ASSET5","index":"0.000002760943248123"},{"denom":"ASSET6","index":"0.000011265372607182"},{"denom":"ASSET7","index":"0.000017421644422297"},{"denom":"ASSET8","index":"0.000025062942780506"},{"denom":"ASSET9","index":"0.000010068919846849"}],"last_reward_claim_height":"187"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET1","shares":"235992378.177734451829947250","reward_history":[{"denom":"ASSET0","index":"0.000002824624853437"},{"denom":"ASSET1","index":"0.000023976113690517"},{"denom":"ASSET10","index":"0.000019183481330878"},{"denom":"ASSET11","index":"0.000023837782846342"},{"denom":"ASSET12","index":"0.000022753084719682"},{"denom":"ASSET13","index":"0.000007489057952554"},{"denom":"ASSET14","index":"0.000021872315483076"},{"denom":"ASSET15","index":"0.000017271123733000"},{"denom":"ASSET16","index":"0.000010633084765839"},{"denom":"ASSET17","index":"0.000008361522972460"},{"denom":"ASSET18","index":"0.000003446219629870"},{"denom":"ASSET2","index":"0.000007263651822688"},{"denom":"ASSET3","index":"0.000002015414858276"},{"denom":"ASSET4","index":"0.000019437236646346"},{"denom":"ASSET5","index":"0.000001569802896992"},{"denom":"ASSET6","index":"0.000006336500403946"},{"denom":"ASSET7","index":"0.000009959182045961"},{"denom":"ASSET8","index":"0.000013614498977085"},{"denom":"ASSET9","index":"0.000005776799011181"}],"last_reward_claim_height":"141"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET10","shares":"184467452.833248669409796827","reward_history":[{"denom":"ASSET0","index":"0.000002824624853437"},{"denom":"ASSET1","index":"0.000023976113690517"},{"denom":"ASSET10","index":"0.000019183481330878"},{"denom":"ASSET11","index":"0.000023837782846342"},{"denom":"ASSET12","index":"0.000022753084719682"},{"denom":"ASSET13","index":"0.000007489057952554"},{"denom":"ASSET14","index":"0.000021872315483076"},{"denom":"ASSET15","index":"0.000017271123733000"},{"denom":"ASSET16","index":"0.000010633084765839"},{"denom":"ASSET17","index":"0.000008361522972460"},{"denom":"ASSET18","index":"0.000003446219629870"},{"denom":"ASSET2","index":"0.000007263651822688"},{"denom":"ASSET3","index":"0.000002015414858276"},{"denom":"ASSET4","index":"0.000019437236646346"},{"denom":"ASSET5","index":"0.000001569802896992"},{"denom":"ASSET6","index":"0.000006336500403946"},{"denom":"ASSET7","index":"0.000009959182045961"},{"denom":"ASSET8","index":"0.000013614498977085"},{"denom":"ASSET9","index":"0.000005776799011181"}],"last_reward_claim_height":"165"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET17","shares":"809293400.766306681112102114","reward_history":[{"denom":"ASSET0","index":"0.000004436789952669"},{"denom":"ASSET1","index":"0.000036213190978412"},{"denom":"ASSET10","index":"0.000031611013476262"},{"denom":"ASSET11","index":"0.000037779078414589"},{"denom":"ASSET12","index":"0.000035979116489801"},{"denom":"ASSET13","index":"0.000012213749195021"},{"denom":"ASSET14","index":"0.000034864158317319"},{"denom":"ASSET15","index":"0.000028362297628331"},{"denom":"ASSET16","index":"0.000016066338617004"},{"denom":"ASSET17","index":"0.000013057645986304"},{"denom":"ASSET18","index":"0.000005418485487430"},{"denom":"ASSET2","index":"0.000010930260523546"},{"denom":"ASSET3","index":"0.000003149326648701"},{"denom":"ASSET4","index":"0.000029711570819555"},{"denom":"ASSET5","index":"0.000002474110775888"},{"denom":"ASSET6","index":"0.000010109622747326"},{"denom":"ASSET7","index":"0.000015599467381101"},{"denom":"ASSET8","index":"0.000022561292254755"},{"denom":"ASSET9","index":"0.000009007830399076"}],"last_reward_claim_height":"195"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET18","shares":"118346793.000000000000000000","reward_history":[],"last_reward_claim_height":"49"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET2","shares":"940763998.582682779889043528","reward_history":[{"denom":"ASSET0","index":"0.000004647286505128"},{"denom":"ASSET1","index":"0.000038009132036325"},{"denom":"ASSET10","index":"0.000033142388915443"},{"denom":"ASSET11","index":"0.000039594668374363"},{"denom":"ASSET12","index":"0.000037753435240155"},{"denom":"ASSET13","index":"0.000012789620691403"},{"denom":"ASSET14","index":"0.000036518112593773"},{"denom":"ASSET15","index":"0.000029725103813089"},{"denom":"ASSET16","index":"0.000016857301755173"},{"denom":"ASSET17","index":"0.000013707892451703"},{"denom":"ASSET18","index":"0.000005671073895044"},{"denom":"ASSET2","index":"0.000011481468896457"},{"denom":"ASSET3","index":"0.000003298652517557"},{"denom":"ASSET4","index":"0.000031167698742833"},{"denom":"ASSET5","index":"0.000002592256930151"},{"denom":"ASSET6","index":"0.000010580735913944"},{"denom":"ASSET7","index":"0.000016345764259168"},{"denom":"ASSET8","index":"0.000023608907458604"},{"denom":"ASSET9","index":"0.000009446179077200"}],"last_reward_claim_height":"199"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET16","shares":"365130536.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003026822568793"},{"denom":"ASSET1","index":"0.000025710421285725"},{"denom":"ASSET10","index":"0.000020652297735472"},{"denom":"ASSET11","index":"0.000025583400849235"},{"denom":"ASSET12","index":"0.000024460820755928"},{"denom":"ASSET13","index":"0.000008041083722059"},{"denom":"ASSET14","index":"0.000023461074878675"},{"denom":"ASSET15","index":"0.000018578170233019"},{"denom":"ASSET16","index":"0.000011396689804799"},{"denom":"ASSET17","index":"0.000008988134494295"},{"denom":"ASSET18","index":"0.000003688816665807"},{"denom":"ASSET2","index":"0.000007796110853756"},{"denom":"ASSET3","index":"0.000002159003644915"},{"denom":"ASSET4","index":"0.000020841789260406"},{"denom":"ASSET5","index":"0.000001683251281734"},{"denom":"ASSET6","index":"0.000006788484398340"},{"denom":"ASSET7","index":"0.000010677121165375"},{"denom":"ASSET8","index":"0.000014616905179383"},{"denom":"ASSET9","index":"0.000006199084273401"}],"last_reward_claim_height":"156"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET2","shares":"1780817336.794439125000000000","reward_history":[{"denom":"ASSET0","index":"0.000001547699786520"},{"denom":"ASSET1","index":"0.000012908880828127"},{"denom":"ASSET10","index":"0.000008993933542043"},{"denom":"ASSET11","index":"0.000012488059147042"},{"denom":"ASSET12","index":"0.000011245681057538"},{"denom":"ASSET13","index":"0.000003869751640144"},{"denom":"ASSET14","index":"0.000011665498390936"},{"denom":"ASSET15","index":"0.000008340103197445"},{"denom":"ASSET16","index":"0.000005815173110936"},{"denom":"ASSET17","index":"0.000004129877691221"},{"denom":"ASSET18","index":"0.000001966512772230"},{"denom":"ASSET2","index":"0.000003810495126579"},{"denom":"ASSET3","index":"0.000001114825933185"},{"denom":"ASSET4","index":"0.000010490411596498"},{"denom":"ASSET5","index":"0.000000864743358984"},{"denom":"ASSET6","index":"0.000003521242992563"},{"denom":"ASSET7","index":"0.000005392342734476"},{"denom":"ASSET8","index":"0.000007036459899001"},{"denom":"ASSET9","index":"0.000003039156102537"}],"last_reward_claim_height":"106"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET5","shares":"120263459.503396766851440080","reward_history":[{"denom":"ASSET0","index":"0.000003086703561215"},{"denom":"ASSET1","index":"0.000026199550261878"},{"denom":"ASSET10","index":"0.000020936384793003"},{"denom":"ASSET11","index":"0.000026042194398185"},{"denom":"ASSET12","index":"0.000024843424443974"},{"denom":"ASSET13","index":"0.000008180415813801"},{"denom":"ASSET14","index":"0.000023898307142718"},{"denom":"ASSET15","index":"0.000018852934413068"},{"denom":"ASSET16","index":"0.000011621232923996"},{"denom":"ASSET17","index":"0.000009129550402498"},{"denom":"ASSET18","index":"0.000003767892160935"},{"denom":"ASSET2","index":"0.000007936188126371"},{"denom":"ASSET3","index":"0.000002203575710986"},{"denom":"ASSET4","index":"0.000021240180347210"},{"denom":"ASSET5","index":"0.000001716192200569"},{"denom":"ASSET6","index":"0.000006926674957775"},{"denom":"ASSET7","index":"0.000010883333770048"},{"denom":"ASSET8","index":"0.000014871024805414"},{"denom":"ASSET9","index":"0.000006311583255107"}],"last_reward_claim_height":"133"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET13","shares":"254700872.000000000000000000","reward_history":[],"last_reward_claim_height":"51"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET16","shares":"348083506.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004619384085878"},{"denom":"ASSET1","index":"0.000037832417098439"},{"denom":"ASSET10","index":"0.000032750145056484"},{"denom":"ASSET11","index":"0.000039294730751429"},{"denom":"ASSET12","index":"0.000037416427541567"},{"denom":"ASSET13","index":"0.000012671813979164"},{"denom":"ASSET14","index":"0.000036248560185433"},{"denom":"ASSET15","index":"0.000029396437010656"},{"denom":"ASSET16","index":"0.000016785976843486"},{"denom":"ASSET17","index":"0.000013593650767018"},{"denom":"ASSET18","index":"0.000005642705122830"},{"denom":"ASSET2","index":"0.000011421935308679"},{"denom":"ASSET3","index":"0.000003281292888266"},{"denom":"ASSET4","index":"0.000031006969518146"},{"denom":"ASSET5","index":"0.000002575890941784"},{"denom":"ASSET6","index":"0.000010513605988541"},{"denom":"ASSET7","index":"0.000016244985826285"},{"denom":"ASSET8","index":"0.000023375927636049"},{"denom":"ASSET9","index":"0.000009382767835280"}],"last_reward_claim_height":"189"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET1","shares":"919900531.065205122661043328","reward_history":[{"denom":"ASSET0","index":"0.000003050294937135"},{"denom":"ASSET1","index":"0.000025887230915803"},{"denom":"ASSET10","index":"0.000020718160619670"},{"denom":"ASSET11","index":"0.000025739685005463"},{"denom":"ASSET12","index":"0.000024570727404900"},{"denom":"ASSET13","index":"0.000008086966483560"},{"denom":"ASSET14","index":"0.000023616194455668"},{"denom":"ASSET15","index":"0.000018651338246959"},{"denom":"ASSET16","index":"0.000011480437826441"},{"denom":"ASSET17","index":"0.000009029688158762"},{"denom":"ASSET18","index":"0.000003721440260869"},{"denom":"ASSET2","index":"0.000007844134626406"},{"denom":"ASSET3","index":"0.000002176540273945"},{"denom":"ASSET4","index":"0.000020986445628896"},{"denom":"ASSET5","index":"0.000001695800268231"},{"denom":"ASSET6","index":"0.000006841569437153"},{"denom":"ASSET7","index":"0.000010753447417762"},{"denom":"ASSET8","index":"0.000014701309289649"},{"denom":"ASSET9","index":"0.000006238283490477"}],"last_reward_claim_height":"168"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET3","shares":"123419744.447374756007351284","reward_history":[{"denom":"ASSET0","index":"0.000004616721479176"},{"denom":"ASSET1","index":"0.000037776223870921"},{"denom":"ASSET10","index":"0.000032792106235622"},{"denom":"ASSET11","index":"0.000039284178188011"},{"denom":"ASSET12","index":"0.000037420627315813"},{"denom":"ASSET13","index":"0.000012677210240132"},{"denom":"ASSET14","index":"0.000036238343992734"},{"denom":"ASSET15","index":"0.000029426834520377"},{"denom":"ASSET16","index":"0.000016759074479265"},{"denom":"ASSET17","index":"0.000013592257069110"},{"denom":"ASSET18","index":"0.000005637809940416"},{"denom":"ASSET2","index":"0.000011406628355974"},{"denom":"ASSET3","index":"0.000003278241119549"},{"denom":"ASSET4","index":"0.000030968445081876"},{"denom":"ASSET5","index":"0.000002574590057360"},{"denom":"ASSET6","index":"0.000010507503575560"},{"denom":"ASSET7","index":"0.000016233218198884"},{"denom":"ASSET8","index":"0.000023393630662833"},{"denom":"ASSET9","index":"0.000009377336949943"}],"last_reward_claim_height":"187"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET14","shares":"682691151.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001511232509129"},{"denom":"ASSET1","index":"0.000012598757210652"},{"denom":"ASSET10","index":"0.000008777665278232"},{"denom":"ASSET11","index":"0.000012187849575766"},{"denom":"ASSET12","index":"0.000010975073643675"},{"denom":"ASSET13","index":"0.000003776959255615"},{"denom":"ASSET14","index":"0.000011385233267090"},{"denom":"ASSET15","index":"0.000008140359504707"},{"denom":"ASSET16","index":"0.000005675412369706"},{"denom":"ASSET17","index":"0.000004030784481533"},{"denom":"ASSET18","index":"0.000001920145446758"},{"denom":"ASSET2","index":"0.000003719113035170"},{"denom":"ASSET3","index":"0.000001087858016388"},{"denom":"ASSET4","index":"0.000010238531681628"},{"denom":"ASSET5","index":"0.000000844504951067"},{"denom":"ASSET6","index":"0.000003436614036185"},{"denom":"ASSET7","index":"0.000005263507386191"},{"denom":"ASSET8","index":"0.000006867991992072"},{"denom":"ASSET9","index":"0.000002966364157912"}],"last_reward_claim_height":"101"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET0","shares":"264589335.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001535139489204"},{"denom":"ASSET1","index":"0.000012800845981431"},{"denom":"ASSET10","index":"0.000008918122145344"},{"denom":"ASSET11","index":"0.000012383184798277"},{"denom":"ASSET12","index":"0.000011151318949088"},{"denom":"ASSET13","index":"0.000003837555421617"},{"denom":"ASSET14","index":"0.000011567806926671"},{"denom":"ASSET15","index":"0.000008270512670342"},{"denom":"ASSET16","index":"0.000005766305379776"},{"denom":"ASSET17","index":"0.000004095074044376"},{"denom":"ASSET18","index":"0.000001950454261216"},{"denom":"ASSET2","index":"0.000003778308540299"},{"denom":"ASSET3","index":"0.000001105159647558"},{"denom":"ASSET4","index":"0.000010402813795010"},{"denom":"ASSET5","index":"0.000000857613272150"},{"denom":"ASSET6","index":"0.000003491459778273"},{"denom":"ASSET7","index":"0.000005347470991052"},{"denom":"ASSET8","index":"0.000006978226734264"},{"denom":"ASSET9","index":"0.000003013965111016"}],"last_reward_claim_height":"101"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET4","shares":"610874744.882868397506134111","reward_history":[{"denom":"ASSET0","index":"0.000002944371933765"},{"denom":"ASSET1","index":"0.000024968433937291"},{"denom":"ASSET10","index":"0.000019851368221906"},{"denom":"ASSET11","index":"0.000024791952485266"},{"denom":"ASSET12","index":"0.000023600048189968"},{"denom":"ASSET13","index":"0.000007784111470281"},{"denom":"ASSET14","index":"0.000022766914870589"},{"denom":"ASSET15","index":"0.000017894900322998"},{"denom":"ASSET16","index":"0.000011081662183182"},{"denom":"ASSET17","index":"0.000008672317440622"},{"denom":"ASSET18","index":"0.000003599691097086"},{"denom":"ASSET2","index":"0.000007555380586873"},{"denom":"ASSET3","index":"0.000002101847815188"},{"denom":"ASSET4","index":"0.000020244169178497"},{"denom":"ASSET5","index":"0.000001637098640985"},{"denom":"ASSET6","index":"0.000006609166185649"},{"denom":"ASSET7","index":"0.000010374399402552"},{"denom":"ASSET8","index":"0.000014150620453773"},{"denom":"ASSET9","index":"0.000006009906313007"}],"last_reward_claim_height":"139"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET8","shares":"606187177.180665243918095026","reward_history":[{"denom":"ASSET0","index":"0.000002944371933765"},{"denom":"ASSET1","index":"0.000024968433937291"},{"denom":"ASSET10","index":"0.000019851368221906"},{"denom":"ASSET11","index":"0.000024791952485266"},{"denom":"ASSET12","index":"0.000023600048189968"},{"denom":"ASSET13","index":"0.000007784111470281"},{"denom":"ASSET14","index":"0.000022766914870589"},{"denom":"ASSET15","index":"0.000017894900322998"},{"denom":"ASSET16","index":"0.000011081662183182"},{"denom":"ASSET17","index":"0.000008672317440622"},{"denom":"ASSET18","index":"0.000003599691097086"},{"denom":"ASSET2","index":"0.000007555380586873"},{"denom":"ASSET3","index":"0.000002101847815188"},{"denom":"ASSET4","index":"0.000020244169178497"},{"denom":"ASSET5","index":"0.000001637098640985"},{"denom":"ASSET6","index":"0.000006609166185649"},{"denom":"ASSET7","index":"0.000010374399402552"},{"denom":"ASSET8","index":"0.000014150620453773"},{"denom":"ASSET9","index":"0.000006009906313007"}],"last_reward_claim_height":"125"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET2","shares":"744913214.000000014153351066","reward_history":[],"last_reward_claim_height":"53"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET6","shares":"422085921.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002938303361264"},{"denom":"ASSET1","index":"0.000024939884544734"},{"denom":"ASSET10","index":"0.000019970621943114"},{"denom":"ASSET11","index":"0.000024800280810198"},{"denom":"ASSET12","index":"0.000023679745396670"},{"denom":"ASSET13","index":"0.000007792253675830"},{"denom":"ASSET14","index":"0.000022752532795075"},{"denom":"ASSET15","index":"0.000017976341528508"},{"denom":"ASSET16","index":"0.000011059313296089"},{"denom":"ASSET17","index":"0.000008702160495382"},{"denom":"ASSET18","index":"0.000003584018468858"},{"denom":"ASSET2","index":"0.000007557839698908"},{"denom":"ASSET3","index":"0.000002096442663552"},{"denom":"ASSET4","index":"0.000020217858094708"},{"denom":"ASSET5","index":"0.000001633684136995"},{"denom":"ASSET6","index":"0.000006589976909255"},{"denom":"ASSET7","index":"0.000010359339015905"},{"denom":"ASSET8","index":"0.000014165755580726"},{"denom":"ASSET9","index":"0.000006010291774725"}],"last_reward_claim_height":"134"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET8","shares":"469897924.773706697001350042","reward_history":[{"denom":"ASSET0","index":"0.000002938303361264"},{"denom":"ASSET1","index":"0.000024939884544734"},{"denom":"ASSET10","index":"0.000019970621943114"},{"denom":"ASSET11","index":"0.000024800280810198"},{"denom":"ASSET12","index":"0.000023679745396670"},{"denom":"ASSET13","index":"0.000007792253675830"},{"denom":"ASSET14","index":"0.000022752532795075"},{"denom":"ASSET15","index":"0.000017976341528508"},{"denom":"ASSET16","index":"0.000011059313296089"},{"denom":"ASSET17","index":"0.000008702160495382"},{"denom":"ASSET18","index":"0.000003584018468858"},{"denom":"ASSET2","index":"0.000007557839698908"},{"denom":"ASSET3","index":"0.000002096442663552"},{"denom":"ASSET4","index":"0.000020217858094708"},{"denom":"ASSET5","index":"0.000001633684136995"},{"denom":"ASSET6","index":"0.000006589976909255"},{"denom":"ASSET7","index":"0.000010359339015905"},{"denom":"ASSET8","index":"0.000014165755580726"},{"denom":"ASSET9","index":"0.000006010291774725"}],"last_reward_claim_height":"168"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET11","shares":"135448378.000000058784596052","reward_history":[],"last_reward_claim_height":"62"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET13","shares":"15241291.000000000924616312","reward_history":[],"last_reward_claim_height":"43"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET6","shares":"893019344.433925726864373914","reward_history":[{"denom":"ASSET0","index":"0.000004895773732889"},{"denom":"ASSET1","index":"0.000040125045885881"},{"denom":"ASSET10","index":"0.000034530347890850"},{"denom":"ASSET11","index":"0.000041582468230322"},{"denom":"ASSET12","index":"0.000039543482481393"},{"denom":"ASSET13","index":"0.000013393572744357"},{"denom":"ASSET14","index":"0.000038368912078780"},{"denom":"ASSET15","index":"0.000031017071231408"},{"denom":"ASSET16","index":"0.000017810358083148"},{"denom":"ASSET17","index":"0.000014371406014683"},{"denom":"ASSET18","index":"0.000005986976049338"},{"denom":"ASSET2","index":"0.000012106973634558"},{"denom":"ASSET3","index":"0.000003478447053581"},{"denom":"ASSET4","index":"0.000032874817927521"},{"denom":"ASSET5","index":"0.000002729651069839"},{"denom":"ASSET6","index":"0.000011139377325220"},{"denom":"ASSET7","index":"0.000017211836402270"},{"denom":"ASSET8","index":"0.000024696325414819"},{"denom":"ASSET9","index":"0.000009935598296499"}],"last_reward_claim_height":"190"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET10","shares":"272490116.055314360537097592","reward_history":[{"denom":"ASSET0","index":"0.000003329715418659"},{"denom":"ASSET1","index":"0.000028238028843607"},{"denom":"ASSET10","index":"0.000022458342297172"},{"denom":"ASSET11","index":"0.000028040237741643"},{"denom":"ASSET12","index":"0.000026695793846360"},{"denom":"ASSET13","index":"0.000008804253880653"},{"denom":"ASSET14","index":"0.000025748953032298"},{"denom":"ASSET15","index":"0.000020243324641083"},{"denom":"ASSET16","index":"0.000012532507824147"},{"denom":"ASSET17","index":"0.000009809802042254"},{"denom":"ASSET18","index":"0.000004070975493464"},{"denom":"ASSET2","index":"0.000008545109234155"},{"denom":"ASSET3","index":"0.000002377197518329"},{"denom":"ASSET4","index":"0.000022894451839245"},{"denom":"ASSET5","index":"0.000001851122407848"},{"denom":"ASSET6","index":"0.000007473999475476"},{"denom":"ASSET7","index":"0.000011732969702935"},{"denom":"ASSET8","index":"0.000016005536556726"},{"denom":"ASSET9","index":"0.000006797137295338"}],"last_reward_claim_height":"178"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET13","shares":"230505186.857680447903696988","reward_history":[{"denom":"ASSET0","index":"0.000003329715418659"},{"denom":"ASSET1","index":"0.000028238028843607"},{"denom":"ASSET10","index":"0.000022458342297172"},{"denom":"ASSET11","index":"0.000028040237741643"},{"denom":"ASSET12","index":"0.000026695793846360"},{"denom":"ASSET13","index":"0.000008804253880653"},{"denom":"ASSET14","index":"0.000025748953032298"},{"denom":"ASSET15","index":"0.000020243324641083"},{"denom":"ASSET16","index":"0.000012532507824147"},{"denom":"ASSET17","index":"0.000009809802042254"},{"denom":"ASSET18","index":"0.000004070975493464"},{"denom":"ASSET2","index":"0.000008545109234155"},{"denom":"ASSET3","index":"0.000002377197518329"},{"denom":"ASSET4","index":"0.000022894451839245"},{"denom":"ASSET5","index":"0.000001851122407848"},{"denom":"ASSET6","index":"0.000007473999475476"},{"denom":"ASSET7","index":"0.000011732969702935"},{"denom":"ASSET8","index":"0.000016005536556726"},{"denom":"ASSET9","index":"0.000006797137295338"}],"last_reward_claim_height":"123"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET17","shares":"322577549.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001731982701050"},{"denom":"ASSET1","index":"0.000014440617081118"},{"denom":"ASSET10","index":"0.000010060714066040"},{"denom":"ASSET11","index":"0.000013969585405988"},{"denom":"ASSET12","index":"0.000012579542501729"},{"denom":"ASSET13","index":"0.000004329188348588"},{"denom":"ASSET14","index":"0.000013049805772821"},{"denom":"ASSET15","index":"0.000009329961826155"},{"denom":"ASSET16","index":"0.000006505308583448"},{"denom":"ASSET17","index":"0.000004619645074851"},{"denom":"ASSET18","index":"0.000002200709164068"},{"denom":"ASSET2","index":"0.000004262337197306"},{"denom":"ASSET3","index":"0.000001247119753241"},{"denom":"ASSET4","index":"0.000011735066464260"},{"denom":"ASSET5","index":"0.000000967420683506"},{"denom":"ASSET6","index":"0.000003938839097420"},{"denom":"ASSET7","index":"0.000006032740100243"},{"denom":"ASSET8","index":"0.000007872299366576"},{"denom":"ASSET9","index":"0.000003400187866969"}],"last_reward_claim_height":"101"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET7","shares":"835985097.057363546655678512","reward_history":[{"denom":"ASSET0","index":"0.000004931397933984"},{"denom":"ASSET1","index":"0.000040352271951275"},{"denom":"ASSET10","index":"0.000034957777134329"},{"denom":"ASSET11","index":"0.000041936330660967"},{"denom":"ASSET12","index":"0.000039921322949190"},{"denom":"ASSET13","index":"0.000013529253328858"},{"denom":"ASSET14","index":"0.000038691809136583"},{"denom":"ASSET15","index":"0.000031380047826250"},{"denom":"ASSET16","index":"0.000017904400359919"},{"denom":"ASSET17","index":"0.000014501150519904"},{"denom":"ASSET18","index":"0.000006024985847518"},{"denom":"ASSET2","index":"0.000012179668126361"},{"denom":"ASSET3","index":"0.000003502182720384"},{"denom":"ASSET4","index":"0.000033078078225160"},{"denom":"ASSET5","index":"0.000002749829149896"},{"denom":"ASSET6","index":"0.000011224248960260"},{"denom":"ASSET7","index":"0.000017336975491688"},{"denom":"ASSET8","index":"0.000024963318026039"},{"denom":"ASSET9","index":"0.000010011343908228"}],"last_reward_claim_height":"192"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET15","shares":"194068518.671597027033262958","reward_history":[{"denom":"ASSET0","index":"0.000003269082759145"},{"denom":"ASSET1","index":"0.000027736662456421"},{"denom":"ASSET10","index":"0.000022145815740722"},{"denom":"ASSET11","index":"0.000027564157079872"},{"denom":"ASSET12","index":"0.000026286254396013"},{"denom":"ASSET13","index":"0.000008658548128401"},{"denom":"ASSET14","index":"0.000025298253418871"},{"denom":"ASSET15","index":"0.000019946084058089"},{"denom":"ASSET16","index":"0.000012303266096103"},{"denom":"ASSET17","index":"0.000009659898104260"},{"denom":"ASSET18","index":"0.000003991565584036"},{"denom":"ASSET2","index":"0.000008399501371576"},{"denom":"ASSET3","index":"0.000002333103515211"},{"denom":"ASSET4","index":"0.000022486071398850"},{"denom":"ASSET5","index":"0.000001817550334619"},{"denom":"ASSET6","index":"0.000007334517845971"},{"denom":"ASSET7","index":"0.000011522603065826"},{"denom":"ASSET8","index":"0.000015739883934035"},{"denom":"ASSET9","index":"0.000006680430297789"}],"last_reward_claim_height":"123"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET1","shares":"660698037.244540986242391138","reward_history":[{"denom":"ASSET0","index":"0.000003075387603983"},{"denom":"ASSET1","index":"0.000026047450678709"},{"denom":"ASSET10","index":"0.000020531243448578"},{"denom":"ASSET11","index":"0.000025816927992783"},{"denom":"ASSET12","index":"0.000024485469945303"},{"denom":"ASSET13","index":"0.000008098391373250"},{"denom":"ASSET14","index":"0.000023735883509134"},{"denom":"ASSET15","index":"0.000018540774078871"},{"denom":"ASSET16","index":"0.000011572711306393"},{"denom":"ASSET17","index":"0.000008997644319689"},{"denom":"ASSET18","index":"0.000003770348288081"},{"denom":"ASSET2","index":"0.000007868945206789"},{"denom":"ASSET3","index":"0.000002196489262864"},{"denom":"ASSET4","index":"0.000021122354693053"},{"denom":"ASSET5","index":"0.000001710501624761"},{"denom":"ASSET6","index":"0.000006909892735753"},{"denom":"ASSET7","index":"0.000010827333344051"},{"denom":"ASSET8","index":"0.000014723239896475"},{"denom":"ASSET9","index":"0.000006260042064096"}],"last_reward_claim_height":"140"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET6","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003075387603983"},{"denom":"ASSET1","index":"0.000026047450678709"},{"denom":"ASSET10","index":"0.000020531243448578"},{"denom":"ASSET11","index":"0.000025816927992783"},{"denom":"ASSET12","index":"0.000024485469945303"},{"denom":"ASSET13","index":"0.000008098391373250"},{"denom":"ASSET14","index":"0.000023735883509134"},{"denom":"ASSET15","index":"0.000018540774078871"},{"denom":"ASSET16","index":"0.000011572711306393"},{"denom":"ASSET17","index":"0.000008997644319689"},{"denom":"ASSET18","index":"0.000003770348288081"},{"denom":"ASSET2","index":"0.000007868945206789"},{"denom":"ASSET3","index":"0.000002196489262864"},{"denom":"ASSET4","index":"0.000021122354693053"},{"denom":"ASSET5","index":"0.000001710501624761"},{"denom":"ASSET6","index":"0.000006909892735753"},{"denom":"ASSET7","index":"0.000010827333344051"},{"denom":"ASSET8","index":"0.000014723239896475"},{"denom":"ASSET9","index":"0.000006260042064096"}],"last_reward_claim_height":"170"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET7","shares":"24506611.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003075387603983"},{"denom":"ASSET1","index":"0.000026047450678709"},{"denom":"ASSET10","index":"0.000020531243448578"},{"denom":"ASSET11","index":"0.000025816927992783"},{"denom":"ASSET12","index":"0.000024485469945303"},{"denom":"ASSET13","index":"0.000008098391373250"},{"denom":"ASSET14","index":"0.000023735883509134"},{"denom":"ASSET15","index":"0.000018540774078871"},{"denom":"ASSET16","index":"0.000011572711306393"},{"denom":"ASSET17","index":"0.000008997644319689"},{"denom":"ASSET18","index":"0.000003770348288081"},{"denom":"ASSET2","index":"0.000007868945206789"},{"denom":"ASSET3","index":"0.000002196489262864"},{"denom":"ASSET4","index":"0.000021122354693053"},{"denom":"ASSET5","index":"0.000001710501624761"},{"denom":"ASSET6","index":"0.000006909892735753"},{"denom":"ASSET7","index":"0.000010827333344051"},{"denom":"ASSET8","index":"0.000014723239896475"},{"denom":"ASSET9","index":"0.000006260042064096"}],"last_reward_claim_height":"147"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET14","shares":"15599420.620704127988732625","reward_history":[{"denom":"ASSET0","index":"0.000003075387603983"},{"denom":"ASSET1","index":"0.000026047450678709"},{"denom":"ASSET10","index":"0.000020531243448578"},{"denom":"ASSET11","index":"0.000025816927992783"},{"denom":"ASSET12","index":"0.000024485469945303"},{"denom":"ASSET13","index":"0.000008098391373250"},{"denom":"ASSET14","index":"0.000023735883509134"},{"denom":"ASSET15","index":"0.000018540774078871"},{"denom":"ASSET16","index":"0.000011572711306393"},{"denom":"ASSET17","index":"0.000008997644319689"},{"denom":"ASSET18","index":"0.000003770348288081"},{"denom":"ASSET2","index":"0.000007868945206789"},{"denom":"ASSET3","index":"0.000002196489262864"},{"denom":"ASSET4","index":"0.000021122354693053"},{"denom":"ASSET5","index":"0.000001710501624761"},{"denom":"ASSET6","index":"0.000006909892735753"},{"denom":"ASSET7","index":"0.000010827333344051"},{"denom":"ASSET8","index":"0.000014723239896475"},{"denom":"ASSET9","index":"0.000006260042064096"}],"last_reward_claim_height":"164"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET6","shares":"401286862.598405422254927408","reward_history":[{"denom":"ASSET0","index":"0.000005166723047275"},{"denom":"ASSET1","index":"0.000042322847048766"},{"denom":"ASSET10","index":"0.000036533262543159"},{"denom":"ASSET11","index":"0.000043914144587354"},{"denom":"ASSET12","index":"0.000041785782999849"},{"denom":"ASSET13","index":"0.000014153266257788"},{"denom":"ASSET14","index":"0.000040516003905052"},{"denom":"ASSET15","index":"0.000032804900644736"},{"denom":"ASSET16","index":"0.000018781400926959"},{"denom":"ASSET17","index":"0.000015182438814265"},{"denom":"ASSET18","index":"0.000006314804040122"},{"denom":"ASSET2","index":"0.000012772828382927"},{"denom":"ASSET3","index":"0.000003669982792512"},{"denom":"ASSET4","index":"0.000034682890695078"},{"denom":"ASSET5","index":"0.000002880570137079"},{"denom":"ASSET6","index":"0.000011757393373176"},{"denom":"ASSET7","index":"0.000018165388254823"},{"denom":"ASSET8","index":"0.000026105026563655"},{"denom":"ASSET9","index":"0.000010488779573430"}],"last_reward_claim_height":"197"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET6","shares":"165077362.313006546733103616","reward_history":[{"denom":"ASSET0","index":"0.000001752700098923"},{"denom":"ASSET1","index":"0.000014612940709519"},{"denom":"ASSET10","index":"0.000010180696541309"},{"denom":"ASSET11","index":"0.000014136053678762"},{"denom":"ASSET12","index":"0.000012730078503378"},{"denom":"ASSET13","index":"0.000004380628160175"},{"denom":"ASSET14","index":"0.000013205843447004"},{"denom":"ASSET15","index":"0.000009441241121853"},{"denom":"ASSET16","index":"0.000006583285198706"},{"denom":"ASSET17","index":"0.000004674614988548"},{"denom":"ASSET18","index":"0.000002226220868286"},{"denom":"ASSET2","index":"0.000004313302932304"},{"denom":"ASSET3","index":"0.000001261225935460"},{"denom":"ASSET4","index":"0.000011875048109410"},{"denom":"ASSET5","index":"0.000000979582065531"},{"denom":"ASSET6","index":"0.000003985653489996"},{"denom":"ASSET7","index":"0.000006105276080818"},{"denom":"ASSET8","index":"0.000007965696544335"},{"denom":"ASSET9","index":"0.000003440319144236"}],"last_reward_claim_height":"120"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET11","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"55"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET2","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001434713876400"},{"denom":"ASSET1","index":"0.000011974044460331"},{"denom":"ASSET10","index":"0.000008340728508476"},{"denom":"ASSET11","index":"0.000011582406348125"},{"denom":"ASSET12","index":"0.000010430757641934"},{"denom":"ASSET13","index":"0.000003588723493535"},{"denom":"ASSET14","index":"0.000010820456951604"},{"denom":"ASSET15","index":"0.000007735822117345"},{"denom":"ASSET16","index":"0.000005393748654249"},{"denom":"ASSET17","index":"0.000003829135007959"},{"denom":"ASSET18","index":"0.000001824413186071"},{"denom":"ASSET2","index":"0.000003534437022536"},{"denom":"ASSET3","index":"0.000001033381751515"},{"denom":"ASSET4","index":"0.000009730849926555"},{"denom":"ASSET5","index":"0.000000802664249770"},{"denom":"ASSET6","index":"0.000003264943470077"},{"denom":"ASSET7","index":"0.000005002110542043"},{"denom":"ASSET8","index":"0.000006526009335083"},{"denom":"ASSET9","index":"0.000002819018886872"}],"last_reward_claim_height":"91"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET4","shares":"236355401.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001434713876400"},{"denom":"ASSET1","index":"0.000011974044460331"},{"denom":"ASSET10","index":"0.000008340728508476"},{"denom":"ASSET11","index":"0.000011582406348125"},{"denom":"ASSET12","index":"0.000010430757641934"},{"denom":"ASSET13","index":"0.000003588723493535"},{"denom":"ASSET14","index":"0.000010820456951604"},{"denom":"ASSET15","index":"0.000007735822117345"},{"denom":"ASSET16","index":"0.000005393748654249"},{"denom":"ASSET17","index":"0.000003829135007959"},{"denom":"ASSET18","index":"0.000001824413186071"},{"denom":"ASSET2","index":"0.000003534437022536"},{"denom":"ASSET3","index":"0.000001033381751515"},{"denom":"ASSET4","index":"0.000009730849926555"},{"denom":"ASSET5","index":"0.000000802664249770"},{"denom":"ASSET6","index":"0.000003264943470077"},{"denom":"ASSET7","index":"0.000005002110542043"},{"denom":"ASSET8","index":"0.000006526009335083"},{"denom":"ASSET9","index":"0.000002819018886872"}],"last_reward_claim_height":"119"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET7","shares":"202824499.000000000000000000","reward_history":[],"last_reward_claim_height":"13"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET12","shares":"1000091394.715422493000000000","reward_history":[{"denom":"ASSET0","index":"0.000001434713876400"},{"denom":"ASSET1","index":"0.000011974044460331"},{"denom":"ASSET10","index":"0.000008340728508476"},{"denom":"ASSET11","index":"0.000011582406348125"},{"denom":"ASSET12","index":"0.000010430757641934"},{"denom":"ASSET13","index":"0.000003588723493535"},{"denom":"ASSET14","index":"0.000010820456951604"},{"denom":"ASSET15","index":"0.000007735822117345"},{"denom":"ASSET16","index":"0.000005393748654249"},{"denom":"ASSET17","index":"0.000003829135007959"},{"denom":"ASSET18","index":"0.000001824413186071"},{"denom":"ASSET2","index":"0.000003534437022536"},{"denom":"ASSET3","index":"0.000001033381751515"},{"denom":"ASSET4","index":"0.000009730849926555"},{"denom":"ASSET5","index":"0.000000802664249770"},{"denom":"ASSET6","index":"0.000003264943470077"},{"denom":"ASSET7","index":"0.000005002110542043"},{"denom":"ASSET8","index":"0.000006526009335083"},{"denom":"ASSET9","index":"0.000002819018886872"}],"last_reward_claim_height":"121"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET16","shares":"257443456.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001434713876400"},{"denom":"ASSET1","index":"0.000011974044460331"},{"denom":"ASSET10","index":"0.000008340728508476"},{"denom":"ASSET11","index":"0.000011582406348125"},{"denom":"ASSET12","index":"0.000010430757641934"},{"denom":"ASSET13","index":"0.000003588723493535"},{"denom":"ASSET14","index":"0.000010820456951604"},{"denom":"ASSET15","index":"0.000007735822117345"},{"denom":"ASSET16","index":"0.000005393748654249"},{"denom":"ASSET17","index":"0.000003829135007959"},{"denom":"ASSET18","index":"0.000001824413186071"},{"denom":"ASSET2","index":"0.000003534437022536"},{"denom":"ASSET3","index":"0.000001033381751515"},{"denom":"ASSET4","index":"0.000009730849926555"},{"denom":"ASSET5","index":"0.000000802664249770"},{"denom":"ASSET6","index":"0.000003264943470077"},{"denom":"ASSET7","index":"0.000005002110542043"},{"denom":"ASSET8","index":"0.000006526009335083"},{"denom":"ASSET9","index":"0.000002819018886872"}],"last_reward_claim_height":"69"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET17","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"20"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET4","shares":"32233305.159416085555832640","reward_history":[{"denom":"ASSET0","index":"0.000003071913026336"},{"denom":"ASSET1","index":"0.000026115211920195"},{"denom":"ASSET10","index":"0.000021104918039272"},{"denom":"ASSET11","index":"0.000026018207650283"},{"denom":"ASSET12","index":"0.000024942011742431"},{"denom":"ASSET13","index":"0.000008182453133262"},{"denom":"ASSET14","index":"0.000023839798810024"},{"denom":"ASSET15","index":"0.000018963275072170"},{"denom":"ASSET16","index":"0.000011567273660047"},{"denom":"ASSET17","index":"0.000009164652819502"},{"denom":"ASSET18","index":"0.000003735860972186"},{"denom":"ASSET2","index":"0.000007925194415041"},{"denom":"ASSET3","index":"0.000002190810612048"},{"denom":"ASSET4","index":"0.000021165118890878"},{"denom":"ASSET5","index":"0.000001704606606646"},{"denom":"ASSET6","index":"0.000006884812645629"},{"denom":"ASSET7","index":"0.000010842612570084"},{"denom":"ASSET8","index":"0.000014874699612932"},{"denom":"ASSET9","index":"0.000006301602876980"}],"last_reward_claim_height":"164"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET10","shares":"290645456.000000001453227280","reward_history":[{"denom":"ASSET0","index":"0.000004762556631338"},{"denom":"ASSET1","index":"0.000038949320108286"},{"denom":"ASSET10","index":"0.000034138450737108"},{"denom":"ASSET11","index":"0.000040639199132158"},{"denom":"ASSET12","index":"0.000038813425029718"},{"denom":"ASSET13","index":"0.000013137308862946"},{"denom":"ASSET14","index":"0.000037465155985785"},{"denom":"ASSET15","index":"0.000030595379312221"},{"denom":"ASSET16","index":"0.000017265258533009"},{"denom":"ASSET17","index":"0.000014089743696985"},{"denom":"ASSET18","index":"0.000005804518200138"},{"denom":"ASSET2","index":"0.000011770813319377"},{"denom":"ASSET3","index":"0.000003379916457468"},{"denom":"ASSET4","index":"0.000031940491468417"},{"denom":"ASSET5","index":"0.000002653113230110"},{"denom":"ASSET6","index":"0.000010842049745718"},{"denom":"ASSET7","index":"0.000016757880864112"},{"denom":"ASSET8","index":"0.000024258069269217"},{"denom":"ASSET9","index":"0.000009689835219165"}],"last_reward_claim_height":"186"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET12","shares":"514704500.634402207305101342","reward_history":[{"denom":"ASSET0","index":"0.000003071913026336"},{"denom":"ASSET1","index":"0.000026115211920195"},{"denom":"ASSET10","index":"0.000021104918039272"},{"denom":"ASSET11","index":"0.000026018207650283"},{"denom":"ASSET12","index":"0.000024942011742431"},{"denom":"ASSET13","index":"0.000008182453133262"},{"denom":"ASSET14","index":"0.000023839798810024"},{"denom":"ASSET15","index":"0.000018963275072170"},{"denom":"ASSET16","index":"0.000011567273660047"},{"denom":"ASSET17","index":"0.000009164652819502"},{"denom":"ASSET18","index":"0.000003735860972186"},{"denom":"ASSET2","index":"0.000007925194415041"},{"denom":"ASSET3","index":"0.000002190810612048"},{"denom":"ASSET4","index":"0.000021165118890878"},{"denom":"ASSET5","index":"0.000001704606606646"},{"denom":"ASSET6","index":"0.000006884812645629"},{"denom":"ASSET7","index":"0.000010842612570084"},{"denom":"ASSET8","index":"0.000014874699612932"},{"denom":"ASSET9","index":"0.000006301602876980"}],"last_reward_claim_height":"156"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET14","shares":"226750943.454393361089748007","reward_history":[{"denom":"ASSET0","index":"0.000003071913026336"},{"denom":"ASSET1","index":"0.000026115211920195"},{"denom":"ASSET10","index":"0.000021104918039272"},{"denom":"ASSET11","index":"0.000026018207650283"},{"denom":"ASSET12","index":"0.000024942011742431"},{"denom":"ASSET13","index":"0.000008182453133262"},{"denom":"ASSET14","index":"0.000023839798810024"},{"denom":"ASSET15","index":"0.000018963275072170"},{"denom":"ASSET16","index":"0.000011567273660047"},{"denom":"ASSET17","index":"0.000009164652819502"},{"denom":"ASSET18","index":"0.000003735860972186"},{"denom":"ASSET2","index":"0.000007925194415041"},{"denom":"ASSET3","index":"0.000002190810612048"},{"denom":"ASSET4","index":"0.000021165118890878"},{"denom":"ASSET5","index":"0.000001704606606646"},{"denom":"ASSET6","index":"0.000006884812645629"},{"denom":"ASSET7","index":"0.000010842612570084"},{"denom":"ASSET8","index":"0.000014874699612932"},{"denom":"ASSET9","index":"0.000006301602876980"}],"last_reward_claim_height":"157"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET17","shares":"615516398.905881064749116076","reward_history":[{"denom":"ASSET0","index":"0.000003071913026336"},{"denom":"ASSET1","index":"0.000026115211920195"},{"denom":"ASSET10","index":"0.000021104918039272"},{"denom":"ASSET11","index":"0.000026018207650283"},{"denom":"ASSET12","index":"0.000024942011742431"},{"denom":"ASSET13","index":"0.000008182453133262"},{"denom":"ASSET14","index":"0.000023839798810024"},{"denom":"ASSET15","index":"0.000018963275072170"},{"denom":"ASSET16","index":"0.000011567273660047"},{"denom":"ASSET17","index":"0.000009164652819502"},{"denom":"ASSET18","index":"0.000003735860972186"},{"denom":"ASSET2","index":"0.000007925194415041"},{"denom":"ASSET3","index":"0.000002190810612048"},{"denom":"ASSET4","index":"0.000021165118890878"},{"denom":"ASSET5","index":"0.000001704606606646"},{"denom":"ASSET6","index":"0.000006884812645629"},{"denom":"ASSET7","index":"0.000010842612570084"},{"denom":"ASSET8","index":"0.000014874699612932"},{"denom":"ASSET9","index":"0.000006301602876980"}],"last_reward_claim_height":"144"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET1","shares":"807015397.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001534549585700"},{"denom":"ASSET1","index":"0.000012795681230217"},{"denom":"ASSET10","index":"0.000008914897664776"},{"denom":"ASSET11","index":"0.000012378406858633"},{"denom":"ASSET12","index":"0.000011146809898878"},{"denom":"ASSET13","index":"0.000003835934265229"},{"denom":"ASSET14","index":"0.000011563204872419"},{"denom":"ASSET15","index":"0.000008267660704848"},{"denom":"ASSET16","index":"0.000005764014475342"},{"denom":"ASSET17","index":"0.000004093597891939"},{"denom":"ASSET18","index":"0.000001950065161198"},{"denom":"ASSET2","index":"0.000003777014596322"},{"denom":"ASSET3","index":"0.000001104963641508"},{"denom":"ASSET4","index":"0.000010398442163960"},{"denom":"ASSET5","index":"0.000000857413092297"},{"denom":"ASSET6","index":"0.000003490330834180"},{"denom":"ASSET7","index":"0.000005345421006692"},{"denom":"ASSET8","index":"0.000006975385280099"},{"denom":"ASSET9","index":"0.000003012817696624"}],"last_reward_claim_height":"68"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET5","shares":"460764581.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001534549585700"},{"denom":"ASSET1","index":"0.000012795681230217"},{"denom":"ASSET10","index":"0.000008914897664776"},{"denom":"ASSET11","index":"0.000012378406858633"},{"denom":"ASSET12","index":"0.000011146809898878"},{"denom":"ASSET13","index":"0.000003835934265229"},{"denom":"ASSET14","index":"0.000011563204872419"},{"denom":"ASSET15","index":"0.000008267660704848"},{"denom":"ASSET16","index":"0.000005764014475342"},{"denom":"ASSET17","index":"0.000004093597891939"},{"denom":"ASSET18","index":"0.000001950065161198"},{"denom":"ASSET2","index":"0.000003777014596322"},{"denom":"ASSET3","index":"0.000001104963641508"},{"denom":"ASSET4","index":"0.000010398442163960"},{"denom":"ASSET5","index":"0.000000857413092297"},{"denom":"ASSET6","index":"0.000003490330834180"},{"denom":"ASSET7","index":"0.000005345421006692"},{"denom":"ASSET8","index":"0.000006975385280099"},{"denom":"ASSET9","index":"0.000003012817696624"}],"last_reward_claim_height":"74"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET6","shares":"802107026.764636522192479912","reward_history":[{"denom":"ASSET0","index":"0.000004589389937850"},{"denom":"ASSET1","index":"0.000037550106082330"},{"denom":"ASSET10","index":"0.000032538310030740"},{"denom":"ASSET11","index":"0.000039032519693303"},{"denom":"ASSET12","index":"0.000037153997389696"},{"denom":"ASSET13","index":"0.000012593470633029"},{"denom":"ASSET14","index":"0.000036013899939325"},{"denom":"ASSET15","index":"0.000029209053150892"},{"denom":"ASSET16","index":"0.000016662243380710"},{"denom":"ASSET17","index":"0.000013495053128478"},{"denom":"ASSET18","index":"0.000005608023733291"},{"denom":"ASSET2","index":"0.000011334057113138"},{"denom":"ASSET3","index":"0.000003259625782806"},{"denom":"ASSET4","index":"0.000030783234351437"},{"denom":"ASSET5","index":"0.000002559554316495"},{"denom":"ASSET6","index":"0.000010447989114738"},{"denom":"ASSET7","index":"0.000016136028769980"},{"denom":"ASSET8","index":"0.000023238637344957"},{"denom":"ASSET9","index":"0.000009318057455982"}],"last_reward_claim_height":"192"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET10","shares":"776600742.974855919980832215","reward_history":[{"denom":"ASSET0","index":"0.000001534549585700"},{"denom":"ASSET1","index":"0.000012795681230217"},{"denom":"ASSET10","index":"0.000008914897664776"},{"denom":"ASSET11","index":"0.000012378406858633"},{"denom":"ASSET12","index":"0.000011146809898878"},{"denom":"ASSET13","index":"0.000003835934265229"},{"denom":"ASSET14","index":"0.000011563204872419"},{"denom":"ASSET15","index":"0.000008267660704848"},{"denom":"ASSET16","index":"0.000005764014475342"},{"denom":"ASSET17","index":"0.000004093597891939"},{"denom":"ASSET18","index":"0.000001950065161198"},{"denom":"ASSET2","index":"0.000003777014596322"},{"denom":"ASSET3","index":"0.000001104963641508"},{"denom":"ASSET4","index":"0.000010398442163960"},{"denom":"ASSET5","index":"0.000000857413092297"},{"denom":"ASSET6","index":"0.000003490330834180"},{"denom":"ASSET7","index":"0.000005345421006692"},{"denom":"ASSET8","index":"0.000006975385280099"},{"denom":"ASSET9","index":"0.000003012817696624"}],"last_reward_claim_height":"98"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET11","shares":"14775743.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001534549585700"},{"denom":"ASSET1","index":"0.000012795681230217"},{"denom":"ASSET10","index":"0.000008914897664776"},{"denom":"ASSET11","index":"0.000012378406858633"},{"denom":"ASSET12","index":"0.000011146809898878"},{"denom":"ASSET13","index":"0.000003835934265229"},{"denom":"ASSET14","index":"0.000011563204872419"},{"denom":"ASSET15","index":"0.000008267660704848"},{"denom":"ASSET16","index":"0.000005764014475342"},{"denom":"ASSET17","index":"0.000004093597891939"},{"denom":"ASSET18","index":"0.000001950065161198"},{"denom":"ASSET2","index":"0.000003777014596322"},{"denom":"ASSET3","index":"0.000001104963641508"},{"denom":"ASSET4","index":"0.000010398442163960"},{"denom":"ASSET5","index":"0.000000857413092297"},{"denom":"ASSET6","index":"0.000003490330834180"},{"denom":"ASSET7","index":"0.000005345421006692"},{"denom":"ASSET8","index":"0.000006975385280099"},{"denom":"ASSET9","index":"0.000003012817696624"}],"last_reward_claim_height":"82"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET18","shares":"798862904.764675394260112670","reward_history":[{"denom":"ASSET0","index":"0.000003034954909236"},{"denom":"ASSET1","index":"0.000025752158165977"},{"denom":"ASSET10","index":"0.000020556858138008"},{"denom":"ASSET11","index":"0.000025591676311293"},{"denom":"ASSET12","index":"0.000024402528250789"},{"denom":"ASSET13","index":"0.000008038375291107"},{"denom":"ASSET14","index":"0.000023488313497799"},{"denom":"ASSET15","index":"0.000018516037809802"},{"denom":"ASSET16","index":"0.000011423945454084"},{"denom":"ASSET17","index":"0.000008967524527402"},{"denom":"ASSET18","index":"0.000003706330058793"},{"denom":"ASSET2","index":"0.000007798931182527"},{"denom":"ASSET3","index":"0.000002166419358500"},{"denom":"ASSET4","index":"0.000020877722621984"},{"denom":"ASSET5","index":"0.000001687498984799"},{"denom":"ASSET6","index":"0.000006810207932767"},{"denom":"ASSET7","index":"0.000010698180555138"},{"denom":"ASSET8","index":"0.000014612921845389"},{"denom":"ASSET9","index":"0.000006203015740356"}],"last_reward_claim_height":"133"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET4","shares":"551310180.730922868792465426","reward_history":[{"denom":"ASSET0","index":"0.000003188277912377"},{"denom":"ASSET1","index":"0.000027072180177666"},{"denom":"ASSET10","index":"0.000021525590492702"},{"denom":"ASSET11","index":"0.000026879695640981"},{"denom":"ASSET12","index":"0.000025588321740665"},{"denom":"ASSET13","index":"0.000008437670891103"},{"denom":"ASSET14","index":"0.000024686413843557"},{"denom":"ASSET15","index":"0.000019403734038796"},{"denom":"ASSET16","index":"0.000012012351193227"},{"denom":"ASSET17","index":"0.000009402991763462"},{"denom":"ASSET18","index":"0.000003903246578743"},{"denom":"ASSET2","index":"0.000008191237466303"},{"denom":"ASSET3","index":"0.000002276140738265"},{"denom":"ASSET4","index":"0.000021950324608304"},{"denom":"ASSET5","index":"0.000001774065663090"},{"denom":"ASSET6","index":"0.000007165524818145"},{"denom":"ASSET7","index":"0.000011244820309610"},{"denom":"ASSET8","index":"0.000015343724796373"},{"denom":"ASSET9","index":"0.000006516357987660"}],"last_reward_claim_height":"131"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET15","shares":"78131752.000000000000000000","reward_history":[],"last_reward_claim_height":"51"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET2","shares":"286135372.999999961341758738","reward_history":[{"denom":"ASSET0","index":"0.000002979919393708"},{"denom":"ASSET1","index":"0.000025298333716476"},{"denom":"ASSET10","index":"0.000020286143685892"},{"denom":"ASSET11","index":"0.000025164674259360"},{"denom":"ASSET12","index":"0.000024041723171534"},{"denom":"ASSET13","index":"0.000007907785176595"},{"denom":"ASSET14","index":"0.000023082402053339"},{"denom":"ASSET15","index":"0.000018255332392862"},{"denom":"ASSET16","index":"0.000011216675450010"},{"denom":"ASSET17","index":"0.000008835128154455"},{"denom":"ASSET18","index":"0.000003633337151635"},{"denom":"ASSET2","index":"0.000007668586747858"},{"denom":"ASSET3","index":"0.000002126085354033"},{"denom":"ASSET4","index":"0.000020508686269066"},{"denom":"ASSET5","index":"0.000001656307666438"},{"denom":"ASSET6","index":"0.000006683025235204"},{"denom":"ASSET7","index":"0.000010507859389263"},{"denom":"ASSET8","index":"0.000014375637436113"},{"denom":"ASSET9","index":"0.000006098257618497"}],"last_reward_claim_height":"156"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET3","shares":"505801419.999999997470992900","reward_history":[],"last_reward_claim_height":"56"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET2","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001779729226299"},{"denom":"ASSET1","index":"0.000014840802182142"},{"denom":"ASSET10","index":"0.000010337989986643"},{"denom":"ASSET11","index":"0.000014356968690293"},{"denom":"ASSET12","index":"0.000012927350131463"},{"denom":"ASSET13","index":"0.000004449323065747"},{"denom":"ASSET14","index":"0.000013411183623312"},{"denom":"ASSET15","index":"0.000009589142170113"},{"denom":"ASSET16","index":"0.000006683709894939"},{"denom":"ASSET17","index":"0.000004745944603463"},{"denom":"ASSET18","index":"0.000002261131394068"},{"denom":"ASSET2","index":"0.000004378814667437"},{"denom":"ASSET3","index":"0.000001281307789972"},{"denom":"ASSET4","index":"0.000012059367435030"},{"denom":"ASSET5","index":"0.000000994411548574"},{"denom":"ASSET6","index":"0.000004048154592606"},{"denom":"ASSET7","index":"0.000006199876403090"},{"denom":"ASSET8","index":"0.000008089015212973"},{"denom":"ASSET9","index":"0.000003493812702447"}],"last_reward_claim_height":"88"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET5","shares":"622374991.419551383940470566","reward_history":[{"denom":"ASSET0","index":"0.000003433377044021"},{"denom":"ASSET1","index":"0.000029119719093870"},{"denom":"ASSET10","index":"0.000023168779363922"},{"denom":"ASSET11","index":"0.000028918871222836"},{"denom":"ASSET12","index":"0.000027536680421684"},{"denom":"ASSET13","index":"0.000009079853140421"},{"denom":"ASSET14","index":"0.000026553415276013"},{"denom":"ASSET15","index":"0.000020883272198610"},{"denom":"ASSET16","index":"0.000012920460029656"},{"denom":"ASSET17","index":"0.000010116347697920"},{"denom":"ASSET18","index":"0.000004196183907349"},{"denom":"ASSET2","index":"0.000008810148159861"},{"denom":"ASSET3","index":"0.000002451192479374"},{"denom":"ASSET4","index":"0.000023608026429735"},{"denom":"ASSET5","index":"0.000001908186346512"},{"denom":"ASSET6","index":"0.000007706415634871"},{"denom":"ASSET7","index":"0.000012098308533034"},{"denom":"ASSET8","index":"0.000016505861275643"},{"denom":"ASSET9","index":"0.000007009790471677"}],"last_reward_claim_height":"173"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET6","shares":"13327877.000000000000000000","reward_history":[],"last_reward_claim_height":"45"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET16","shares":"349749881.641076535481350992","reward_history":[{"denom":"ASSET0","index":"0.000003118409098775"},{"denom":"ASSET1","index":"0.000026454243753489"},{"denom":"ASSET10","index":"0.000021084585905412"},{"denom":"ASSET11","index":"0.000026280950742513"},{"denom":"ASSET12","index":"0.000025043390497745"},{"denom":"ASSET13","index":"0.000008253298424938"},{"denom":"ASSET14","index":"0.000024125697910719"},{"denom":"ASSET15","index":"0.000018997425080839"},{"denom":"ASSET16","index":"0.000011737294217995"},{"denom":"ASSET17","index":"0.000009202973625129"},{"denom":"ASSET18","index":"0.000003809493270778"},{"denom":"ASSET2","index":"0.000008008868325931"},{"denom":"ASSET3","index":"0.000002225819587877"},{"denom":"ASSET4","index":"0.000021447702379813"},{"denom":"ASSET5","index":"0.000001733713847172"},{"denom":"ASSET6","index":"0.000006998355968525"},{"denom":"ASSET7","index":"0.000010990481127196"},{"denom":"ASSET8","index":"0.000015003824321723"},{"denom":"ASSET9","index":"0.000006370091157596"}],"last_reward_claim_height":"141"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET2","shares":"114389592.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001536288093705"},{"denom":"ASSET1","index":"0.000012808796131863"},{"denom":"ASSET10","index":"0.000008924322337818"},{"denom":"ASSET11","index":"0.000012391382492026"},{"denom":"ASSET12","index":"0.000011158327625467"},{"denom":"ASSET13","index":"0.000003840018305497"},{"denom":"ASSET14","index":"0.000011575273312793"},{"denom":"ASSET15","index":"0.000008276208110044"},{"denom":"ASSET16","index":"0.000005770322413488"},{"denom":"ASSET17","index":"0.000004097860139074"},{"denom":"ASSET18","index":"0.000001951829923499"},{"denom":"ASSET2","index":"0.000003781056289108"},{"denom":"ASSET3","index":"0.000001105771783560"},{"denom":"ASSET4","index":"0.000010409603607822"},{"denom":"ASSET5","index":"0.000000858224905226"},{"denom":"ASSET6","index":"0.000003494201399847"},{"denom":"ASSET7","index":"0.000005351036963607"},{"denom":"ASSET8","index":"0.000006982787369562"},{"denom":"ASSET9","index":"0.000003015953933577"}],"last_reward_claim_height":"97"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET13","shares":"259712350.404836854431175992","reward_history":[{"denom":"ASSET0","index":"0.000004714671796454"},{"denom":"ASSET1","index":"0.000038568145744730"},{"denom":"ASSET10","index":"0.000033500773571076"},{"denom":"ASSET11","index":"0.000040121424280653"},{"denom":"ASSET12","index":"0.000038218267623062"},{"denom":"ASSET13","index":"0.000012949849225638"},{"denom":"ASSET14","index":"0.000037011089008137"},{"denom":"ASSET15","index":"0.000030061724223790"},{"denom":"ASSET16","index":"0.000017110510604031"},{"denom":"ASSET17","index":"0.000013880569662043"},{"denom":"ASSET18","index":"0.000005756826392189"},{"denom":"ASSET2","index":"0.000011645339118027"},{"denom":"ASSET3","index":"0.000003347417714105"},{"denom":"ASSET4","index":"0.000031620361618036"},{"denom":"ASSET5","index":"0.000002628856606191"},{"denom":"ASSET6","index":"0.000010731547733214"},{"denom":"ASSET7","index":"0.000016577030461508"},{"denom":"ASSET8","index":"0.000023899020763797"},{"denom":"ASSET9","index":"0.000009576047863311"}],"last_reward_claim_height":"192"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET0","shares":"593599916.000000358534349264","reward_history":[{"denom":"ASSET0","index":"0.000002648545180722"},{"denom":"ASSET1","index":"0.000022528915692996"},{"denom":"ASSET10","index":"0.000018297756458480"},{"denom":"ASSET11","index":"0.000022469822082599"},{"denom":"ASSET12","index":"0.000021584227648624"},{"denom":"ASSET13","index":"0.000007070243338634"},{"denom":"ASSET14","index":"0.000020574684608302"},{"denom":"ASSET15","index":"0.000016423497937791"},{"denom":"ASSET16","index":"0.000009972839292196"},{"denom":"ASSET17","index":"0.000007932645550822"},{"denom":"ASSET18","index":"0.000003216131666673"},{"denom":"ASSET2","index":"0.000006846442901912"},{"denom":"ASSET3","index":"0.000001888119307859"},{"denom":"ASSET4","index":"0.000018258669735553"},{"denom":"ASSET5","index":"0.000001471345302008"},{"denom":"ASSET6","index":"0.000005932348598922"},{"denom":"ASSET7","index":"0.000009352074075404"},{"denom":"ASSET8","index":"0.000012853047191550"},{"denom":"ASSET9","index":"0.000005442948627063"}],"last_reward_claim_height":"180"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET1","shares":"1000220008.240309537000000000","reward_history":[{"denom":"ASSET0","index":"0.000004194934031479"},{"denom":"ASSET1","index":"0.000034265361391889"},{"denom":"ASSET10","index":"0.000030216676473654"},{"denom":"ASSET11","index":"0.000035840546628375"},{"denom":"ASSET12","index":"0.000034269107900306"},{"denom":"ASSET13","index":"0.000011601652868627"},{"denom":"ASSET14","index":"0.000033034765140163"},{"denom":"ASSET15","index":"0.000027060778820269"},{"denom":"ASSET16","index":"0.000015183830684126"},{"denom":"ASSET17","index":"0.000012436629946888"},{"denom":"ASSET18","index":"0.000005107818069777"},{"denom":"ASSET2","index":"0.000010363122476632"},{"denom":"ASSET3","index":"0.000002975623043707"},{"denom":"ASSET4","index":"0.000028112498760672"},{"denom":"ASSET5","index":"0.000002338800128637"},{"denom":"ASSET6","index":"0.000009551170601572"},{"denom":"ASSET7","index":"0.000014761519782911"},{"denom":"ASSET8","index":"0.000021433874921429"},{"denom":"ASSET9","index":"0.000008541556868860"}],"last_reward_claim_height":"190"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET2","shares":"343746794.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002648545180722"},{"denom":"ASSET1","index":"0.000022528915692996"},{"denom":"ASSET10","index":"0.000018297756458480"},{"denom":"ASSET11","index":"0.000022469822082599"},{"denom":"ASSET12","index":"0.000021584227648624"},{"denom":"ASSET13","index":"0.000007070243338634"},{"denom":"ASSET14","index":"0.000020574684608302"},{"denom":"ASSET15","index":"0.000016423497937791"},{"denom":"ASSET16","index":"0.000009972839292196"},{"denom":"ASSET17","index":"0.000007932645550822"},{"denom":"ASSET18","index":"0.000003216131666673"},{"denom":"ASSET2","index":"0.000006846442901912"},{"denom":"ASSET3","index":"0.000001888119307859"},{"denom":"ASSET4","index":"0.000018258669735553"},{"denom":"ASSET5","index":"0.000001471345302008"},{"denom":"ASSET6","index":"0.000005932348598922"},{"denom":"ASSET7","index":"0.000009352074075404"},{"denom":"ASSET8","index":"0.000012853047191550"},{"denom":"ASSET9","index":"0.000005442948627063"}],"last_reward_claim_height":"161"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET12","shares":"273084341.776211265827245392","reward_history":[{"denom":"ASSET0","index":"0.000002648545180722"},{"denom":"ASSET1","index":"0.000022528915692996"},{"denom":"ASSET10","index":"0.000018297756458480"},{"denom":"ASSET11","index":"0.000022469822082599"},{"denom":"ASSET12","index":"0.000021584227648624"},{"denom":"ASSET13","index":"0.000007070243338634"},{"denom":"ASSET14","index":"0.000020574684608302"},{"denom":"ASSET15","index":"0.000016423497937791"},{"denom":"ASSET16","index":"0.000009972839292196"},{"denom":"ASSET17","index":"0.000007932645550822"},{"denom":"ASSET18","index":"0.000003216131666673"},{"denom":"ASSET2","index":"0.000006846442901912"},{"denom":"ASSET3","index":"0.000001888119307859"},{"denom":"ASSET4","index":"0.000018258669735553"},{"denom":"ASSET5","index":"0.000001471345302008"},{"denom":"ASSET6","index":"0.000005932348598922"},{"denom":"ASSET7","index":"0.000009352074075404"},{"denom":"ASSET8","index":"0.000012853047191550"},{"denom":"ASSET9","index":"0.000005442948627063"}],"last_reward_claim_height":"169"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET15","shares":"626606856.305119447477776336","reward_history":[{"denom":"ASSET0","index":"0.000002648545180722"},{"denom":"ASSET1","index":"0.000022528915692996"},{"denom":"ASSET10","index":"0.000018297756458480"},{"denom":"ASSET11","index":"0.000022469822082599"},{"denom":"ASSET12","index":"0.000021584227648624"},{"denom":"ASSET13","index":"0.000007070243338634"},{"denom":"ASSET14","index":"0.000020574684608302"},{"denom":"ASSET15","index":"0.000016423497937791"},{"denom":"ASSET16","index":"0.000009972839292196"},{"denom":"ASSET17","index":"0.000007932645550822"},{"denom":"ASSET18","index":"0.000003216131666673"},{"denom":"ASSET2","index":"0.000006846442901912"},{"denom":"ASSET3","index":"0.000001888119307859"},{"denom":"ASSET4","index":"0.000018258669735553"},{"denom":"ASSET5","index":"0.000001471345302008"},{"denom":"ASSET6","index":"0.000005932348598922"},{"denom":"ASSET7","index":"0.000009352074075404"},{"denom":"ASSET8","index":"0.000012853047191550"},{"denom":"ASSET9","index":"0.000005442948627063"}],"last_reward_claim_height":"155"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET1","shares":"837623950.050678300997854055","reward_history":[{"denom":"ASSET0","index":"0.000003133427860009"},{"denom":"ASSET1","index":"0.000026571363581284"},{"denom":"ASSET10","index":"0.000021118003104150"},{"denom":"ASSET11","index":"0.000026381510155653"},{"denom":"ASSET12","index":"0.000025108485590780"},{"denom":"ASSET13","index":"0.000008282355352591"},{"denom":"ASSET14","index":"0.000024227637307493"},{"denom":"ASSET15","index":"0.000019037535386694"},{"denom":"ASSET16","index":"0.000011793447009555"},{"denom":"ASSET17","index":"0.000009226841180516"},{"denom":"ASSET18","index":"0.000003831770888939"},{"denom":"ASSET2","index":"0.000008040278303534"},{"denom":"ASSET3","index":"0.000002236402387063"},{"denom":"ASSET4","index":"0.000021543810534784"},{"denom":"ASSET5","index":"0.000001742508705183"},{"denom":"ASSET6","index":"0.000007033989161296"},{"denom":"ASSET7","index":"0.000011040340871930"},{"denom":"ASSET8","index":"0.000015056795520064"},{"denom":"ASSET9","index":"0.000006395464292965"}],"last_reward_claim_height":"179"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET4","shares":"869848681.488780647276408200","reward_history":[{"denom":"ASSET0","index":"0.000004684522326330"},{"denom":"ASSET1","index":"0.000038343592790786"},{"denom":"ASSET10","index":"0.000033073465123627"},{"denom":"ASSET11","index":"0.000039792938806307"},{"denom":"ASSET12","index":"0.000037831993151719"},{"denom":"ASSET13","index":"0.000012827422858554"},{"denom":"ASSET14","index":"0.000036725774896582"},{"denom":"ASSET15","index":"0.000029707175527113"},{"denom":"ASSET16","index":"0.000017020370407689"},{"denom":"ASSET17","index":"0.000013744455687075"},{"denom":"ASSET18","index":"0.000005729220057041"},{"denom":"ASSET2","index":"0.000011567669506012"},{"denom":"ASSET3","index":"0.000003327180281983"},{"denom":"ASSET4","index":"0.000031427847982959"},{"denom":"ASSET5","index":"0.000002612385721179"},{"denom":"ASSET6","index":"0.000010663850280154"},{"denom":"ASSET7","index":"0.000016466138905281"},{"denom":"ASSET8","index":"0.000023663630054111"},{"denom":"ASSET9","index":"0.000009503718423149"}],"last_reward_claim_height":"197"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET5","shares":"90253532.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003133427860009"},{"denom":"ASSET1","index":"0.000026571363581284"},{"denom":"ASSET10","index":"0.000021118003104150"},{"denom":"ASSET11","index":"0.000026381510155653"},{"denom":"ASSET12","index":"0.000025108485590780"},{"denom":"ASSET13","index":"0.000008282355352591"},{"denom":"ASSET14","index":"0.000024227637307493"},{"denom":"ASSET15","index":"0.000019037535386694"},{"denom":"ASSET16","index":"0.000011793447009555"},{"denom":"ASSET17","index":"0.000009226841180516"},{"denom":"ASSET18","index":"0.000003831770888939"},{"denom":"ASSET2","index":"0.000008040278303534"},{"denom":"ASSET3","index":"0.000002236402387063"},{"denom":"ASSET4","index":"0.000021543810534784"},{"denom":"ASSET5","index":"0.000001742508705183"},{"denom":"ASSET6","index":"0.000007033989161296"},{"denom":"ASSET7","index":"0.000011040340871930"},{"denom":"ASSET8","index":"0.000015056795520064"},{"denom":"ASSET9","index":"0.000006395464292965"}],"last_reward_claim_height":"126"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET10","shares":"588759589.999999979982173940","reward_history":[],"last_reward_claim_height":"38"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET11","shares":"1000176173.649825776000000000","reward_history":[{"denom":"ASSET0","index":"0.000003133427860009"},{"denom":"ASSET1","index":"0.000026571363581284"},{"denom":"ASSET10","index":"0.000021118003104150"},{"denom":"ASSET11","index":"0.000026381510155653"},{"denom":"ASSET12","index":"0.000025108485590780"},{"denom":"ASSET13","index":"0.000008282355352591"},{"denom":"ASSET14","index":"0.000024227637307493"},{"denom":"ASSET15","index":"0.000019037535386694"},{"denom":"ASSET16","index":"0.000011793447009555"},{"denom":"ASSET17","index":"0.000009226841180516"},{"denom":"ASSET18","index":"0.000003831770888939"},{"denom":"ASSET2","index":"0.000008040278303534"},{"denom":"ASSET3","index":"0.000002236402387063"},{"denom":"ASSET4","index":"0.000021543810534784"},{"denom":"ASSET5","index":"0.000001742508705183"},{"denom":"ASSET6","index":"0.000007033989161296"},{"denom":"ASSET7","index":"0.000011040340871930"},{"denom":"ASSET8","index":"0.000015056795520064"},{"denom":"ASSET9","index":"0.000006395464292965"}],"last_reward_claim_height":"131"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET14","shares":"126180368.999999994581570552","reward_history":[],"last_reward_claim_height":"58"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET8","shares":"1000107078.917094819000000000","reward_history":[{"denom":"ASSET0","index":"0.000003102345998156"},{"denom":"ASSET1","index":"0.000026324295521459"},{"denom":"ASSET10","index":"0.000021034709957123"},{"denom":"ASSET11","index":"0.000026165624152899"},{"denom":"ASSET12","index":"0.000024960753498443"},{"denom":"ASSET13","index":"0.000008219480216908"},{"denom":"ASSET14","index":"0.000024012126304297"},{"denom":"ASSET15","index":"0.000018942125813395"},{"denom":"ASSET16","index":"0.000011676379885795"},{"denom":"ASSET17","index":"0.000009172744202097"},{"denom":"ASSET18","index":"0.000003786686743681"},{"denom":"ASSET2","index":"0.000007973892542195"},{"denom":"ASSET3","index":"0.000002213622154517"},{"denom":"ASSET4","index":"0.000021341514997764"},{"denom":"ASSET5","index":"0.000001724677267981"},{"denom":"ASSET6","index":"0.000006959760131783"},{"denom":"ASSET7","index":"0.000010935767858794"},{"denom":"ASSET8","index":"0.000014942141973689"},{"denom":"ASSET9","index":"0.000006341977499472"}],"last_reward_claim_height":"127"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET12","shares":"883289096.574639757787887218","reward_history":[{"denom":"ASSET0","index":"0.000003102345998156"},{"denom":"ASSET1","index":"0.000026324295521459"},{"denom":"ASSET10","index":"0.000021034709957123"},{"denom":"ASSET11","index":"0.000026165624152899"},{"denom":"ASSET12","index":"0.000024960753498443"},{"denom":"ASSET13","index":"0.000008219480216908"},{"denom":"ASSET14","index":"0.000024012126304297"},{"denom":"ASSET15","index":"0.000018942125813395"},{"denom":"ASSET16","index":"0.000011676379885795"},{"denom":"ASSET17","index":"0.000009172744202097"},{"denom":"ASSET18","index":"0.000003786686743681"},{"denom":"ASSET2","index":"0.000007973892542195"},{"denom":"ASSET3","index":"0.000002213622154517"},{"denom":"ASSET4","index":"0.000021341514997764"},{"denom":"ASSET5","index":"0.000001724677267981"},{"denom":"ASSET6","index":"0.000006959760131783"},{"denom":"ASSET7","index":"0.000010935767858794"},{"denom":"ASSET8","index":"0.000014942141973689"},{"denom":"ASSET9","index":"0.000006341977499472"}],"last_reward_claim_height":"176"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET1","shares":"751336155.966014593008859560","reward_history":[{"denom":"ASSET0","index":"0.000001633811359009"},{"denom":"ASSET1","index":"0.000013620164108551"},{"denom":"ASSET10","index":"0.000009487838038290"},{"denom":"ASSET11","index":"0.000013174776703502"},{"denom":"ASSET12","index":"0.000011864685946211"},{"denom":"ASSET13","index":"0.000004082355776036"},{"denom":"ASSET14","index":"0.000012307900729772"},{"denom":"ASSET15","index":"0.000008799117026580"},{"denom":"ASSET16","index":"0.000006135483082238"},{"denom":"ASSET17","index":"0.000004356106083529"},{"denom":"ASSET18","index":"0.000002074853521082"},{"denom":"ASSET2","index":"0.000004019349752882"},{"denom":"ASSET3","index":"0.000001175388225032"},{"denom":"ASSET4","index":"0.000011067333860098"},{"denom":"ASSET5","index":"0.000000912501024979"},{"denom":"ASSET6","index":"0.000003715182744556"},{"denom":"ASSET7","index":"0.000005690095677188"},{"denom":"ASSET8","index":"0.000007423847624648"},{"denom":"ASSET9","index":"0.000003206789316354"}],"last_reward_claim_height":"75"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET6","shares":"984577029.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001633811359009"},{"denom":"ASSET1","index":"0.000013620164108551"},{"denom":"ASSET10","index":"0.000009487838038290"},{"denom":"ASSET11","index":"0.000013174776703502"},{"denom":"ASSET12","index":"0.000011864685946211"},{"denom":"ASSET13","index":"0.000004082355776036"},{"denom":"ASSET14","index":"0.000012307900729772"},{"denom":"ASSET15","index":"0.000008799117026580"},{"denom":"ASSET16","index":"0.000006135483082238"},{"denom":"ASSET17","index":"0.000004356106083529"},{"denom":"ASSET18","index":"0.000002074853521082"},{"denom":"ASSET2","index":"0.000004019349752882"},{"denom":"ASSET3","index":"0.000001175388225032"},{"denom":"ASSET4","index":"0.000011067333860098"},{"denom":"ASSET5","index":"0.000000912501024979"},{"denom":"ASSET6","index":"0.000003715182744556"},{"denom":"ASSET7","index":"0.000005690095677188"},{"denom":"ASSET8","index":"0.000007423847624648"},{"denom":"ASSET9","index":"0.000003206789316354"}],"last_reward_claim_height":"98"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET9","shares":"648243005.000000025929720200","reward_history":[{"denom":"ASSET0","index":"0.000003109600829404"},{"denom":"ASSET1","index":"0.000026362702045617"},{"denom":"ASSET10","index":"0.000020937844947102"},{"denom":"ASSET11","index":"0.000026169598808926"},{"denom":"ASSET12","index":"0.000024901798461360"},{"denom":"ASSET13","index":"0.000008215149609138"},{"denom":"ASSET14","index":"0.000024035954930107"},{"denom":"ASSET15","index":"0.000018878331344314"},{"denom":"ASSET16","index":"0.000011701775976010"},{"denom":"ASSET17","index":"0.000009149505282332"},{"denom":"ASSET18","index":"0.000003801954966508"},{"denom":"ASSET2","index":"0.000007974718303805"},{"denom":"ASSET3","index":"0.000002219037761573"},{"denom":"ASSET4","index":"0.000021373555319687"},{"denom":"ASSET5","index":"0.000001728657323000"},{"denom":"ASSET6","index":"0.000006980294033305"},{"denom":"ASSET7","index":"0.000010954522542925"},{"denom":"ASSET8","index":"0.000014935013269095"},{"denom":"ASSET9","index":"0.000006344057182602"}],"last_reward_claim_height":"132"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET17","shares":"108724643.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003109600829404"},{"denom":"ASSET1","index":"0.000026362702045617"},{"denom":"ASSET10","index":"0.000020937844947102"},{"denom":"ASSET11","index":"0.000026169598808926"},{"denom":"ASSET12","index":"0.000024901798461360"},{"denom":"ASSET13","index":"0.000008215149609138"},{"denom":"ASSET14","index":"0.000024035954930107"},{"denom":"ASSET15","index":"0.000018878331344314"},{"denom":"ASSET16","index":"0.000011701775976010"},{"denom":"ASSET17","index":"0.000009149505282332"},{"denom":"ASSET18","index":"0.000003801954966508"},{"denom":"ASSET2","index":"0.000007974718303805"},{"denom":"ASSET3","index":"0.000002219037761573"},{"denom":"ASSET4","index":"0.000021373555319687"},{"denom":"ASSET5","index":"0.000001728657323000"},{"denom":"ASSET6","index":"0.000006980294033305"},{"denom":"ASSET7","index":"0.000010954522542925"},{"denom":"ASSET8","index":"0.000014935013269095"},{"denom":"ASSET9","index":"0.000006344057182602"}],"last_reward_claim_height":"180"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET0","shares":"485585474.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003241945367060"},{"denom":"ASSET1","index":"0.000027480716546724"},{"denom":"ASSET10","index":"0.000021780901079221"},{"denom":"ASSET11","index":"0.000027265989011084"},{"denom":"ASSET12","index":"0.000025921947969478"},{"denom":"ASSET13","index":"0.000008556984130745"},{"denom":"ASSET14","index":"0.000025051754134356"},{"denom":"ASSET15","index":"0.000019643848931612"},{"denom":"ASSET16","index":"0.000012200322352703"},{"denom":"ASSET17","index":"0.000009524928673174"},{"denom":"ASSET18","index":"0.000003966981346299"},{"denom":"ASSET2","index":"0.000008309018225650"},{"denom":"ASSET3","index":"0.000002312540225621"},{"denom":"ASSET4","index":"0.000022282443818183"},{"denom":"ASSET5","index":"0.000001802193647755"},{"denom":"ASSET6","index":"0.000007278646216530"},{"denom":"ASSET7","index":"0.000011418356902196"},{"denom":"ASSET8","index":"0.000015557459098515"},{"denom":"ASSET9","index":"0.000006608754258977"}],"last_reward_claim_height":"156"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET1","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001631665384825"},{"denom":"ASSET1","index":"0.000013602742609312"},{"denom":"ASSET10","index":"0.000009477179623123"},{"denom":"ASSET11","index":"0.000013159027954757"},{"denom":"ASSET12","index":"0.000011849393704263"},{"denom":"ASSET13","index":"0.000004077627053980"},{"denom":"ASSET14","index":"0.000012292493795584"},{"denom":"ASSET15","index":"0.000008788868801652"},{"denom":"ASSET16","index":"0.000006127810000788"},{"denom":"ASSET17","index":"0.000004351722256101"},{"denom":"ASSET18","index":"0.000002072921786447"},{"denom":"ASSET2","index":"0.000004015556167401"},{"denom":"ASSET3","index":"0.000001174430339134"},{"denom":"ASSET4","index":"0.000011054148880171"},{"denom":"ASSET5","index":"0.000000911397275215"},{"denom":"ASSET6","index":"0.000003710118240373"},{"denom":"ASSET7","index":"0.000005682866219766"},{"denom":"ASSET8","index":"0.000007415319974879"},{"denom":"ASSET9","index":"0.000003202489009539"}],"last_reward_claim_height":"90"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET2","shares":"327685910.190371730712764425","reward_history":[{"denom":"ASSET0","index":"0.000004596842351159"},{"denom":"ASSET1","index":"0.000037621247133778"},{"denom":"ASSET10","index":"0.000032406384323250"},{"denom":"ASSET11","index":"0.000039028902085371"},{"denom":"ASSET12","index":"0.000037087492375849"},{"denom":"ASSET13","index":"0.000012579191861147"},{"denom":"ASSET14","index":"0.000036026040179075"},{"denom":"ASSET15","index":"0.000029115781615792"},{"denom":"ASSET16","index":"0.000016702394260040"},{"denom":"ASSET17","index":"0.000013474193368563"},{"denom":"ASSET18","index":"0.000005623650335033"},{"denom":"ASSET2","index":"0.000011347250373690"},{"denom":"ASSET3","index":"0.000003265680996349"},{"denom":"ASSET4","index":"0.000030835001736023"},{"denom":"ASSET5","index":"0.000002563241391537"},{"denom":"ASSET6","index":"0.000010464530798872"},{"denom":"ASSET7","index":"0.000016155716479824"},{"denom":"ASSET8","index":"0.000023204906360357"},{"denom":"ASSET9","index":"0.000009321567168813"}],"last_reward_claim_height":"186"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET6","shares":"265886085.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003079719434352"},{"denom":"ASSET1","index":"0.000026105925494605"},{"denom":"ASSET10","index":"0.000020711970439773"},{"denom":"ASSET11","index":"0.000025910008103106"},{"denom":"ASSET12","index":"0.000024641613628664"},{"denom":"ASSET13","index":"0.000008133110770201"},{"denom":"ASSET14","index":"0.000023800542954419"},{"denom":"ASSET15","index":"0.000018678884312278"},{"denom":"ASSET16","index":"0.000011589749383737"},{"denom":"ASSET17","index":"0.000009055208366452"},{"denom":"ASSET18","index":"0.000003767697278786"},{"denom":"ASSET2","index":"0.000007896757003962"},{"denom":"ASSET3","index":"0.000002198611212202"},{"denom":"ASSET4","index":"0.000021166859181475"},{"denom":"ASSET5","index":"0.000001712166144109"},{"denom":"ASSET6","index":"0.000006913910929446"},{"denom":"ASSET7","index":"0.000010848237821893"},{"denom":"ASSET8","index":"0.000014785764472138"},{"denom":"ASSET9","index":"0.000006281127943464"}],"last_reward_claim_height":"124"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET10","shares":"786776174.661153891774065820","reward_history":[{"denom":"ASSET0","index":"0.000001631665384825"},{"denom":"ASSET1","index":"0.000013602742609312"},{"denom":"ASSET10","index":"0.000009477179623123"},{"denom":"ASSET11","index":"0.000013159027954757"},{"denom":"ASSET12","index":"0.000011849393704263"},{"denom":"ASSET13","index":"0.000004077627053980"},{"denom":"ASSET14","index":"0.000012292493795584"},{"denom":"ASSET15","index":"0.000008788868801652"},{"denom":"ASSET16","index":"0.000006127810000788"},{"denom":"ASSET17","index":"0.000004351722256101"},{"denom":"ASSET18","index":"0.000002072921786447"},{"denom":"ASSET2","index":"0.000004015556167401"},{"denom":"ASSET3","index":"0.000001174430339134"},{"denom":"ASSET4","index":"0.000011054148880171"},{"denom":"ASSET5","index":"0.000000911397275215"},{"denom":"ASSET6","index":"0.000003710118240373"},{"denom":"ASSET7","index":"0.000005682866219766"},{"denom":"ASSET8","index":"0.000007415319974879"},{"denom":"ASSET9","index":"0.000003202489009539"}],"last_reward_claim_height":"106"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET11","shares":"993498288.000000002073457856","reward_history":[{"denom":"ASSET0","index":"0.000001631665384825"},{"denom":"ASSET1","index":"0.000013602742609312"},{"denom":"ASSET10","index":"0.000009477179623123"},{"denom":"ASSET11","index":"0.000013159027954757"},{"denom":"ASSET12","index":"0.000011849393704263"},{"denom":"ASSET13","index":"0.000004077627053980"},{"denom":"ASSET14","index":"0.000012292493795584"},{"denom":"ASSET15","index":"0.000008788868801652"},{"denom":"ASSET16","index":"0.000006127810000788"},{"denom":"ASSET17","index":"0.000004351722256101"},{"denom":"ASSET18","index":"0.000002072921786447"},{"denom":"ASSET2","index":"0.000004015556167401"},{"denom":"ASSET3","index":"0.000001174430339134"},{"denom":"ASSET4","index":"0.000011054148880171"},{"denom":"ASSET5","index":"0.000000911397275215"},{"denom":"ASSET6","index":"0.000003710118240373"},{"denom":"ASSET7","index":"0.000005682866219766"},{"denom":"ASSET8","index":"0.000007415319974879"},{"denom":"ASSET9","index":"0.000003202489009539"}],"last_reward_claim_height":"119"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET0","shares":"292179660.390192339393665880","reward_history":[{"denom":"ASSET0","index":"0.000003063170165442"},{"denom":"ASSET1","index":"0.000025996358951928"},{"denom":"ASSET10","index":"0.000020799618544072"},{"denom":"ASSET11","index":"0.000025846936295403"},{"denom":"ASSET12","index":"0.000024670295822131"},{"denom":"ASSET13","index":"0.000008120644896033"},{"denom":"ASSET14","index":"0.000023715222729701"},{"denom":"ASSET15","index":"0.000018725986369791"},{"denom":"ASSET16","index":"0.000011529047312284"},{"denom":"ASSET17","index":"0.000009065966880203"},{"denom":"ASSET18","index":"0.000003737409049681"},{"denom":"ASSET2","index":"0.000007876841198043"},{"denom":"ASSET3","index":"0.000002185992003768"},{"denom":"ASSET4","index":"0.000021074917159843"},{"denom":"ASSET5","index":"0.000001702800306431"},{"denom":"ASSET6","index":"0.000006871093729972"},{"denom":"ASSET7","index":"0.000010798830402478"},{"denom":"ASSET8","index":"0.000014762015379742"},{"denom":"ASSET9","index":"0.000006264517424621"}],"last_reward_claim_height":"177"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET3","shares":"285106933.574827666937044850","reward_history":[{"denom":"ASSET0","index":"0.000004647136802313"},{"denom":"ASSET1","index":"0.000038017659661295"},{"denom":"ASSET10","index":"0.000033007938061672"},{"denom":"ASSET11","index":"0.000039542203518497"},{"denom":"ASSET12","index":"0.000037663033677183"},{"denom":"ASSET13","index":"0.000012761955703194"},{"denom":"ASSET14","index":"0.000036477735596469"},{"denom":"ASSET15","index":"0.000029621430734014"},{"denom":"ASSET16","index":"0.000016866492348924"},{"denom":"ASSET17","index":"0.000013679201469281"},{"denom":"ASSET18","index":"0.000005674980055413"},{"denom":"ASSET2","index":"0.000011479019978141"},{"denom":"ASSET3","index":"0.000003299993945721"},{"denom":"ASSET4","index":"0.000031168005602839"},{"denom":"ASSET5","index":"0.000002591256629781"},{"denom":"ASSET6","index":"0.000010577778432935"},{"denom":"ASSET7","index":"0.000016339516062244"},{"denom":"ASSET8","index":"0.000023551119471754"},{"denom":"ASSET9","index":"0.000009438533878947"}],"last_reward_claim_height":"191"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET14","shares":"14464875.000000000000000000","reward_history":[],"last_reward_claim_height":"61"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET17","shares":"448474383.930607275671878059","reward_history":[{"denom":"ASSET0","index":"0.000001520990142264"},{"denom":"ASSET1","index":"0.000012680102108631"},{"denom":"ASSET10","index":"0.000008834326429376"},{"denom":"ASSET11","index":"0.000012266893306329"},{"denom":"ASSET12","index":"0.000011046354389007"},{"denom":"ASSET13","index":"0.000003801591675587"},{"denom":"ASSET14","index":"0.000011458856247250"},{"denom":"ASSET15","index":"0.000008193128168148"},{"denom":"ASSET16","index":"0.000005712107994187"},{"denom":"ASSET17","index":"0.000004056798480773"},{"denom":"ASSET18","index":"0.000001932431584420"},{"denom":"ASSET2","index":"0.000003743268790745"},{"denom":"ASSET3","index":"0.000001095056346905"},{"denom":"ASSET4","index":"0.000010304770071444"},{"denom":"ASSET5","index":"0.000000849746758541"},{"denom":"ASSET6","index":"0.000003459077279153"},{"denom":"ASSET7","index":"0.000005297485303768"},{"denom":"ASSET8","index":"0.000006912499005837"},{"denom":"ASSET9","index":"0.000002985778231863"}],"last_reward_claim_height":"112"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET2","shares":"848991272.038889936864734816","reward_history":[{"denom":"ASSET0","index":"0.000003051401969864"},{"denom":"ASSET1","index":"0.000025903543471827"},{"denom":"ASSET10","index":"0.000020717104247015"},{"denom":"ASSET11","index":"0.000025751820078700"},{"denom":"ASSET12","index":"0.000024575704795191"},{"denom":"ASSET13","index":"0.000008089460542782"},{"denom":"ASSET14","index":"0.000023629519286555"},{"denom":"ASSET15","index":"0.000018652475785738"},{"denom":"ASSET16","index":"0.000011487598582804"},{"denom":"ASSET17","index":"0.000009031027466449"},{"denom":"ASSET18","index":"0.000003724432134289"},{"denom":"ASSET2","index":"0.000007847588407204"},{"denom":"ASSET3","index":"0.000002177732310384"},{"denom":"ASSET4","index":"0.000021000151540181"},{"denom":"ASSET5","index":"0.000001696165098739"},{"denom":"ASSET6","index":"0.000006846477479182"},{"denom":"ASSET7","index":"0.000010760324594985"},{"denom":"ASSET8","index":"0.000014706911787677"},{"denom":"ASSET9","index":"0.000006241583848480"}],"last_reward_claim_height":"146"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET3","shares":"206710805.000000000000000000","reward_history":[],"last_reward_claim_height":"9"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET5","shares":"333819961.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002834261839987"},{"denom":"ASSET1","index":"0.000024063735726127"},{"denom":"ASSET10","index":"0.000019278012414561"},{"denom":"ASSET11","index":"0.000023930766794440"},{"denom":"ASSET12","index":"0.000022855511266190"},{"denom":"ASSET13","index":"0.000007519422832827"},{"denom":"ASSET14","index":"0.000021953268691937"},{"denom":"ASSET15","index":"0.000017352048046781"},{"denom":"ASSET16","index":"0.000010669562284438"},{"denom":"ASSET17","index":"0.000008398158415340"},{"denom":"ASSET18","index":"0.000003456710779118"},{"denom":"ASSET2","index":"0.000007292324829772"},{"denom":"ASSET3","index":"0.000002022818722752"},{"denom":"ASSET4","index":"0.000019507505991506"},{"denom":"ASSET5","index":"0.000001575196067099"},{"denom":"ASSET6","index":"0.000006357416996111"},{"denom":"ASSET7","index":"0.000009994574317511"},{"denom":"ASSET8","index":"0.000013669954492341"},{"denom":"ASSET9","index":"0.000005799591528398"}],"last_reward_claim_height":"158"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET10","shares":"817285303.974104884764757240","reward_history":[{"denom":"ASSET0","index":"0.000001392192847149"},{"denom":"ASSET1","index":"0.000011611450847386"},{"denom":"ASSET10","index":"0.000008088781067478"},{"denom":"ASSET11","index":"0.000011231761889073"},{"denom":"ASSET12","index":"0.000010115195100551"},{"denom":"ASSET13","index":"0.000003480482117873"},{"denom":"ASSET14","index":"0.000010492071548062"},{"denom":"ASSET15","index":"0.000007502372565194"},{"denom":"ASSET16","index":"0.000005229863836918"},{"denom":"ASSET17","index":"0.000003713920514466"},{"denom":"ASSET18","index":"0.000001769069294661"},{"denom":"ASSET2","index":"0.000003427044412629"},{"denom":"ASSET3","index":"0.000001002660101028"},{"denom":"ASSET4","index":"0.000009435973741790"},{"denom":"ASSET5","index":"0.000000777659236842"},{"denom":"ASSET6","index":"0.000003166887163415"},{"denom":"ASSET7","index":"0.000004850174878604"},{"denom":"ASSET8","index":"0.000006329555560626"},{"denom":"ASSET9","index":"0.000002733760499857"}],"last_reward_claim_height":"88"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET16","shares":"87514725.760928819857917029","reward_history":[{"denom":"ASSET0","index":"0.000004334424087699"},{"denom":"ASSET1","index":"0.000035449514986345"},{"denom":"ASSET10","index":"0.000030840939894549"},{"denom":"ASSET11","index":"0.000036901879937154"},{"denom":"ASSET12","index":"0.000035161495405309"},{"denom":"ASSET13","index":"0.000011915420663187"},{"denom":"ASSET14","index":"0.000034041055395553"},{"denom":"ASSET15","index":"0.000027671425756021"},{"denom":"ASSET16","index":"0.000015724762226282"},{"denom":"ASSET17","index":"0.000012767594988461"},{"denom":"ASSET18","index":"0.000005291852188377"},{"denom":"ASSET2","index":"0.000010704019540621"},{"denom":"ASSET3","index":"0.000003077805518553"},{"denom":"ASSET4","index":"0.000029066924423371"},{"denom":"ASSET5","index":"0.000002416595232373"},{"denom":"ASSET6","index":"0.000009868112756670"},{"denom":"ASSET7","index":"0.000015242288495709"},{"denom":"ASSET8","index":"0.000021994384219842"},{"denom":"ASSET9","index":"0.000008805623401411"}],"last_reward_claim_height":"186"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET5","shares":"73552344.000000020586255660","reward_history":[{"denom":"ASSET0","index":"0.000002875427361068"},{"denom":"ASSET1","index":"0.000024372739255487"},{"denom":"ASSET10","index":"0.000019284464921318"},{"denom":"ASSET11","index":"0.000024174413552556"},{"denom":"ASSET12","index":"0.000022964657814992"},{"denom":"ASSET13","index":"0.000007586106071195"},{"denom":"ASSET14","index":"0.000022214775035212"},{"denom":"ASSET15","index":"0.000017399266119679"},{"denom":"ASSET16","index":"0.000010822432031544"},{"denom":"ASSET17","index":"0.000008437405253940"},{"denom":"ASSET18","index":"0.000003520101477575"},{"denom":"ASSET2","index":"0.000007366931162610"},{"denom":"ASSET3","index":"0.000002051556015935"},{"denom":"ASSET4","index":"0.000019761188522524"},{"denom":"ASSET5","index":"0.000001598363223465"},{"denom":"ASSET6","index":"0.000006458982880806"},{"denom":"ASSET7","index":"0.000010127316932433"},{"denom":"ASSET8","index":"0.000013792105044122"},{"denom":"ASSET9","index":"0.000005859963066840"}],"last_reward_claim_height":"159"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET14","shares":"228202991.429437134180438018","reward_history":[{"denom":"ASSET0","index":"0.000004337315119138"},{"denom":"ASSET1","index":"0.000035468571019224"},{"denom":"ASSET10","index":"0.000030552751056515"},{"denom":"ASSET11","index":"0.000036815077060637"},{"denom":"ASSET12","index":"0.000034956975830368"},{"denom":"ASSET13","index":"0.000011870162962221"},{"denom":"ASSET14","index":"0.000033994549085763"},{"denom":"ASSET15","index":"0.000027455878855398"},{"denom":"ASSET16","index":"0.000015748959216247"},{"denom":"ASSET17","index":"0.000012695542149256"},{"denom":"ASSET18","index":"0.000005308581181597"},{"denom":"ASSET2","index":"0.000010691602612406"},{"denom":"ASSET3","index":"0.000003079715845784"},{"denom":"ASSET4","index":"0.000029077180580809"},{"denom":"ASSET5","index":"0.000002418471887744"},{"denom":"ASSET6","index":"0.000009880076714645"},{"denom":"ASSET7","index":"0.000015241504886080"},{"denom":"ASSET8","index":"0.000021904372501613"},{"denom":"ASSET9","index":"0.000008789613782008"}],"last_reward_claim_height":"199"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET18","shares":"284105098.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002875427361068"},{"denom":"ASSET1","index":"0.000024372739255487"},{"denom":"ASSET10","index":"0.000019284464921318"},{"denom":"ASSET11","index":"0.000024174413552556"},{"denom":"ASSET12","index":"0.000022964657814992"},{"denom":"ASSET13","index":"0.000007586106071195"},{"denom":"ASSET14","index":"0.000022214775035212"},{"denom":"ASSET15","index":"0.000017399266119679"},{"denom":"ASSET16","index":"0.000010822432031544"},{"denom":"ASSET17","index":"0.000008437405253940"},{"denom":"ASSET18","index":"0.000003520101477575"},{"denom":"ASSET2","index":"0.000007366931162610"},{"denom":"ASSET3","index":"0.000002051556015935"},{"denom":"ASSET4","index":"0.000019761188522524"},{"denom":"ASSET5","index":"0.000001598363223465"},{"denom":"ASSET6","index":"0.000006458982880806"},{"denom":"ASSET7","index":"0.000010127316932433"},{"denom":"ASSET8","index":"0.000013792105044122"},{"denom":"ASSET9","index":"0.000005859963066840"}],"last_reward_claim_height":"172"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET2","shares":"988273013.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001468329025254"},{"denom":"ASSET1","index":"0.000012248466172689"},{"denom":"ASSET10","index":"0.000008533242661533"},{"denom":"ASSET11","index":"0.000011849890220686"},{"denom":"ASSET12","index":"0.000010670683647662"},{"denom":"ASSET13","index":"0.000003671855143322"},{"denom":"ASSET14","index":"0.000011069259599665"},{"denom":"ASSET15","index":"0.000007913694549611"},{"denom":"ASSET16","index":"0.000005518108516848"},{"denom":"ASSET17","index":"0.000003917609227717"},{"denom":"ASSET18","index":"0.000001866904977257"},{"denom":"ASSET2","index":"0.000003616095813249"},{"denom":"ASSET3","index":"0.000001057362111013"},{"denom":"ASSET4","index":"0.000009954072998206"},{"denom":"ASSET5","index":"0.000000819868668110"},{"denom":"ASSET6","index":"0.000003341429483630"},{"denom":"ASSET7","index":"0.000005117467404472"},{"denom":"ASSET8","index":"0.000006676663486141"},{"denom":"ASSET9","index":"0.000002882963880808"}],"last_reward_claim_height":"78"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET3","shares":"125637522.636175212388399038","reward_history":[{"denom":"ASSET0","index":"0.000001468329025254"},{"denom":"ASSET1","index":"0.000012248466172689"},{"denom":"ASSET10","index":"0.000008533242661533"},{"denom":"ASSET11","index":"0.000011849890220686"},{"denom":"ASSET12","index":"0.000010670683647662"},{"denom":"ASSET13","index":"0.000003671855143322"},{"denom":"ASSET14","index":"0.000011069259599665"},{"denom":"ASSET15","index":"0.000007913694549611"},{"denom":"ASSET16","index":"0.000005518108516848"},{"denom":"ASSET17","index":"0.000003917609227717"},{"denom":"ASSET18","index":"0.000001866904977257"},{"denom":"ASSET2","index":"0.000003616095813249"},{"denom":"ASSET3","index":"0.000001057362111013"},{"denom":"ASSET4","index":"0.000009954072998206"},{"denom":"ASSET5","index":"0.000000819868668110"},{"denom":"ASSET6","index":"0.000003341429483630"},{"denom":"ASSET7","index":"0.000005117467404472"},{"denom":"ASSET8","index":"0.000006676663486141"},{"denom":"ASSET9","index":"0.000002882963880808"}],"last_reward_claim_height":"84"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET5","shares":"26725712.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001468329025254"},{"denom":"ASSET1","index":"0.000012248466172689"},{"denom":"ASSET10","index":"0.000008533242661533"},{"denom":"ASSET11","index":"0.000011849890220686"},{"denom":"ASSET12","index":"0.000010670683647662"},{"denom":"ASSET13","index":"0.000003671855143322"},{"denom":"ASSET14","index":"0.000011069259599665"},{"denom":"ASSET15","index":"0.000007913694549611"},{"denom":"ASSET16","index":"0.000005518108516848"},{"denom":"ASSET17","index":"0.000003917609227717"},{"denom":"ASSET18","index":"0.000001866904977257"},{"denom":"ASSET2","index":"0.000003616095813249"},{"denom":"ASSET3","index":"0.000001057362111013"},{"denom":"ASSET4","index":"0.000009954072998206"},{"denom":"ASSET5","index":"0.000000819868668110"},{"denom":"ASSET6","index":"0.000003341429483630"},{"denom":"ASSET7","index":"0.000005117467404472"},{"denom":"ASSET8","index":"0.000006676663486141"},{"denom":"ASSET9","index":"0.000002882963880808"}],"last_reward_claim_height":"66"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET6","shares":"229913234.509769564716622770","reward_history":[{"denom":"ASSET0","index":"0.000002995432004660"},{"denom":"ASSET1","index":"0.000025434255671185"},{"denom":"ASSET10","index":"0.000020381248485322"},{"denom":"ASSET11","index":"0.000025297016742096"},{"denom":"ASSET12","index":"0.000024161457271020"},{"denom":"ASSET13","index":"0.000007948725545453"},{"denom":"ASSET14","index":"0.000023205881885085"},{"denom":"ASSET15","index":"0.000018343715148864"},{"denom":"ASSET16","index":"0.000011277889207663"},{"denom":"ASSET17","index":"0.000008877556775335"},{"denom":"ASSET18","index":"0.000003654253802028"},{"denom":"ASSET2","index":"0.000007709102798424"},{"denom":"ASSET3","index":"0.000002137627884226"},{"denom":"ASSET4","index":"0.000020618696770430"},{"denom":"ASSET5","index":"0.000001664440090804"},{"denom":"ASSET6","index":"0.000006720260763181"},{"denom":"ASSET7","index":"0.000010565171316359"},{"denom":"ASSET8","index":"0.000014449121165534"},{"denom":"ASSET9","index":"0.000006129217088192"}],"last_reward_claim_height":"123"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET7","shares":"467383380.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001468329025254"},{"denom":"ASSET1","index":"0.000012248466172689"},{"denom":"ASSET10","index":"0.000008533242661533"},{"denom":"ASSET11","index":"0.000011849890220686"},{"denom":"ASSET12","index":"0.000010670683647662"},{"denom":"ASSET13","index":"0.000003671855143322"},{"denom":"ASSET14","index":"0.000011069259599665"},{"denom":"ASSET15","index":"0.000007913694549611"},{"denom":"ASSET16","index":"0.000005518108516848"},{"denom":"ASSET17","index":"0.000003917609227717"},{"denom":"ASSET18","index":"0.000001866904977257"},{"denom":"ASSET2","index":"0.000003616095813249"},{"denom":"ASSET3","index":"0.000001057362111013"},{"denom":"ASSET4","index":"0.000009954072998206"},{"denom":"ASSET5","index":"0.000000819868668110"},{"denom":"ASSET6","index":"0.000003341429483630"},{"denom":"ASSET7","index":"0.000005117467404472"},{"denom":"ASSET8","index":"0.000006676663486141"},{"denom":"ASSET9","index":"0.000002882963880808"}],"last_reward_claim_height":"70"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET11","shares":"215411435.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002995432004660"},{"denom":"ASSET1","index":"0.000025434255671185"},{"denom":"ASSET10","index":"0.000020381248485322"},{"denom":"ASSET11","index":"0.000025297016742096"},{"denom":"ASSET12","index":"0.000024161457271020"},{"denom":"ASSET13","index":"0.000007948725545453"},{"denom":"ASSET14","index":"0.000023205881885085"},{"denom":"ASSET15","index":"0.000018343715148864"},{"denom":"ASSET16","index":"0.000011277889207663"},{"denom":"ASSET17","index":"0.000008877556775335"},{"denom":"ASSET18","index":"0.000003654253802028"},{"denom":"ASSET2","index":"0.000007709102798424"},{"denom":"ASSET3","index":"0.000002137627884226"},{"denom":"ASSET4","index":"0.000020618696770430"},{"denom":"ASSET5","index":"0.000001664440090804"},{"denom":"ASSET6","index":"0.000006720260763181"},{"denom":"ASSET7","index":"0.000010565171316359"},{"denom":"ASSET8","index":"0.000014449121165534"},{"denom":"ASSET9","index":"0.000006129217088192"}],"last_reward_claim_height":"183"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET12","shares":"106464699.000000017219939165","reward_history":[{"denom":"ASSET0","index":"0.000001468329025254"},{"denom":"ASSET1","index":"0.000012248466172689"},{"denom":"ASSET10","index":"0.000008533242661533"},{"denom":"ASSET11","index":"0.000011849890220686"},{"denom":"ASSET12","index":"0.000010670683647662"},{"denom":"ASSET13","index":"0.000003671855143322"},{"denom":"ASSET14","index":"0.000011069259599665"},{"denom":"ASSET15","index":"0.000007913694549611"},{"denom":"ASSET16","index":"0.000005518108516848"},{"denom":"ASSET17","index":"0.000003917609227717"},{"denom":"ASSET18","index":"0.000001866904977257"},{"denom":"ASSET2","index":"0.000003616095813249"},{"denom":"ASSET3","index":"0.000001057362111013"},{"denom":"ASSET4","index":"0.000009954072998206"},{"denom":"ASSET5","index":"0.000000819868668110"},{"denom":"ASSET6","index":"0.000003341429483630"},{"denom":"ASSET7","index":"0.000005117467404472"},{"denom":"ASSET8","index":"0.000006676663486141"},{"denom":"ASSET9","index":"0.000002882963880808"}],"last_reward_claim_height":"121"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET14","shares":"25391663.980722805856932762","reward_history":[{"denom":"ASSET0","index":"0.000002995432004660"},{"denom":"ASSET1","index":"0.000025434255671185"},{"denom":"ASSET10","index":"0.000020381248485322"},{"denom":"ASSET11","index":"0.000025297016742096"},{"denom":"ASSET12","index":"0.000024161457271020"},{"denom":"ASSET13","index":"0.000007948725545453"},{"denom":"ASSET14","index":"0.000023205881885085"},{"denom":"ASSET15","index":"0.000018343715148864"},{"denom":"ASSET16","index":"0.000011277889207663"},{"denom":"ASSET17","index":"0.000008877556775335"},{"denom":"ASSET18","index":"0.000003654253802028"},{"denom":"ASSET2","index":"0.000007709102798424"},{"denom":"ASSET3","index":"0.000002137627884226"},{"denom":"ASSET4","index":"0.000020618696770430"},{"denom":"ASSET5","index":"0.000001664440090804"},{"denom":"ASSET6","index":"0.000006720260763181"},{"denom":"ASSET7","index":"0.000010565171316359"},{"denom":"ASSET8","index":"0.000014449121165534"},{"denom":"ASSET9","index":"0.000006129217088192"}],"last_reward_claim_height":"135"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET15","shares":"903986101.697421106807102620","reward_history":[{"denom":"ASSET0","index":"0.000004542168220425"},{"denom":"ASSET1","index":"0.000037175229845512"},{"denom":"ASSET10","index":"0.000032304674241554"},{"denom":"ASSET11","index":"0.000038672632069936"},{"denom":"ASSET12","index":"0.000036851023395808"},{"denom":"ASSET13","index":"0.000012481885513000"},{"denom":"ASSET14","index":"0.000035670802057849"},{"denom":"ASSET15","index":"0.000028984900879802"},{"denom":"ASSET16","index":"0.000016490847360466"},{"denom":"ASSET17","index":"0.000013382977851414"},{"denom":"ASSET18","index":"0.000005546749439604"},{"denom":"ASSET2","index":"0.000011227253751433"},{"denom":"ASSET3","index":"0.000003225304980636"},{"denom":"ASSET4","index":"0.000030476161145262"},{"denom":"ASSET5","index":"0.000002532159498537"},{"denom":"ASSET6","index":"0.000010340381443978"},{"denom":"ASSET7","index":"0.000015976599284168"},{"denom":"ASSET8","index":"0.000023032940664540"},{"denom":"ASSET9","index":"0.000009228940537517"}],"last_reward_claim_height":"198"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET18","shares":"8793381.487535183871751881","reward_history":[{"denom":"ASSET0","index":"0.000001468329025254"},{"denom":"ASSET1","index":"0.000012248466172689"},{"denom":"ASSET10","index":"0.000008533242661533"},{"denom":"ASSET11","index":"0.000011849890220686"},{"denom":"ASSET12","index":"0.000010670683647662"},{"denom":"ASSET13","index":"0.000003671855143322"},{"denom":"ASSET14","index":"0.000011069259599665"},{"denom":"ASSET15","index":"0.000007913694549611"},{"denom":"ASSET16","index":"0.000005518108516848"},{"denom":"ASSET17","index":"0.000003917609227717"},{"denom":"ASSET18","index":"0.000001866904977257"},{"denom":"ASSET2","index":"0.000003616095813249"},{"denom":"ASSET3","index":"0.000001057362111013"},{"denom":"ASSET4","index":"0.000009954072998206"},{"denom":"ASSET5","index":"0.000000819868668110"},{"denom":"ASSET6","index":"0.000003341429483630"},{"denom":"ASSET7","index":"0.000005117467404472"},{"denom":"ASSET8","index":"0.000006676663486141"},{"denom":"ASSET9","index":"0.000002882963880808"}],"last_reward_claim_height":"83"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET0","shares":"109030212.000000000000000000","reward_history":[],"last_reward_claim_height":"33"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET8","shares":"178411902.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002967027008461"},{"denom":"ASSET1","index":"0.000025180120058697"},{"denom":"ASSET10","index":"0.000020126919929476"},{"denom":"ASSET11","index":"0.000025029678796477"},{"denom":"ASSET12","index":"0.000023880507059092"},{"denom":"ASSET13","index":"0.000007862872062626"},{"denom":"ASSET14","index":"0.000022968832134984"},{"denom":"ASSET15","index":"0.000018123195207046"},{"denom":"ASSET16","index":"0.000011168095360491"},{"denom":"ASSET17","index":"0.000008775186029853"},{"denom":"ASSET18","index":"0.000003621217117579"},{"denom":"ASSET2","index":"0.000007627534970337"},{"denom":"ASSET3","index":"0.000002117298518473"},{"denom":"ASSET4","index":"0.000020413769751333"},{"denom":"ASSET5","index":"0.000001649183760435"},{"denom":"ASSET6","index":"0.000006656038319196"},{"denom":"ASSET7","index":"0.000010459966878994"},{"denom":"ASSET8","index":"0.000014293861494285"},{"denom":"ASSET9","index":"0.000006066597621916"}],"last_reward_claim_height":"125"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET11","shares":"578312923.552457506585073328","reward_history":[{"denom":"ASSET0","index":"0.000002967027008461"},{"denom":"ASSET1","index":"0.000025180120058697"},{"denom":"ASSET10","index":"0.000020126919929476"},{"denom":"ASSET11","index":"0.000025029678796477"},{"denom":"ASSET12","index":"0.000023880507059092"},{"denom":"ASSET13","index":"0.000007862872062626"},{"denom":"ASSET14","index":"0.000022968832134984"},{"denom":"ASSET15","index":"0.000018123195207046"},{"denom":"ASSET16","index":"0.000011168095360491"},{"denom":"ASSET17","index":"0.000008775186029853"},{"denom":"ASSET18","index":"0.000003621217117579"},{"denom":"ASSET2","index":"0.000007627534970337"},{"denom":"ASSET3","index":"0.000002117298518473"},{"denom":"ASSET4","index":"0.000020413769751333"},{"denom":"ASSET5","index":"0.000001649183760435"},{"denom":"ASSET6","index":"0.000006656038319196"},{"denom":"ASSET7","index":"0.000010459966878994"},{"denom":"ASSET8","index":"0.000014293861494285"},{"denom":"ASSET9","index":"0.000006066597621916"}],"last_reward_claim_height":"162"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET15","shares":"847212784.000000000331884045","reward_history":[{"denom":"ASSET0","index":"0.000001484659776814"},{"denom":"ASSET1","index":"0.000012377911876883"},{"denom":"ASSET10","index":"0.000008623797972416"},{"denom":"ASSET11","index":"0.000011974339842928"},{"denom":"ASSET12","index":"0.000010782780641408"},{"denom":"ASSET13","index":"0.000003710691597017"},{"denom":"ASSET14","index":"0.000011185714112019"},{"denom":"ASSET15","index":"0.000007997367331102"},{"denom":"ASSET16","index":"0.000005575935127370"},{"denom":"ASSET17","index":"0.000003959731301514"},{"denom":"ASSET18","index":"0.000001886316120734"},{"denom":"ASSET2","index":"0.000003653859459324"},{"denom":"ASSET3","index":"0.000001068955039306"},{"denom":"ASSET4","index":"0.000010059288371675"},{"denom":"ASSET5","index":"0.000000829493784981"},{"denom":"ASSET6","index":"0.000003376084404307"},{"denom":"ASSET7","index":"0.000005171085966725"},{"denom":"ASSET8","index":"0.000006747698865199"},{"denom":"ASSET9","index":"0.000002914403105969"}],"last_reward_claim_height":"86"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET16","shares":"931284239.159641123646165710","reward_history":[{"denom":"ASSET0","index":"0.000001484659776814"},{"denom":"ASSET1","index":"0.000012377911876883"},{"denom":"ASSET10","index":"0.000008623797972416"},{"denom":"ASSET11","index":"0.000011974339842928"},{"denom":"ASSET12","index":"0.000010782780641408"},{"denom":"ASSET13","index":"0.000003710691597017"},{"denom":"ASSET14","index":"0.000011185714112019"},{"denom":"ASSET15","index":"0.000007997367331102"},{"denom":"ASSET16","index":"0.000005575935127370"},{"denom":"ASSET17","index":"0.000003959731301514"},{"denom":"ASSET18","index":"0.000001886316120734"},{"denom":"ASSET2","index":"0.000003653859459324"},{"denom":"ASSET3","index":"0.000001068955039306"},{"denom":"ASSET4","index":"0.000010059288371675"},{"denom":"ASSET5","index":"0.000000829493784981"},{"denom":"ASSET6","index":"0.000003376084404307"},{"denom":"ASSET7","index":"0.000005171085966725"},{"denom":"ASSET8","index":"0.000006747698865199"},{"denom":"ASSET9","index":"0.000002914403105969"}],"last_reward_claim_height":"64"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET17","shares":"205655416.431515806425037909","reward_history":[{"denom":"ASSET0","index":"0.000002967027008461"},{"denom":"ASSET1","index":"0.000025180120058697"},{"denom":"ASSET10","index":"0.000020126919929476"},{"denom":"ASSET11","index":"0.000025029678796477"},{"denom":"ASSET12","index":"0.000023880507059092"},{"denom":"ASSET13","index":"0.000007862872062626"},{"denom":"ASSET14","index":"0.000022968832134984"},{"denom":"ASSET15","index":"0.000018123195207046"},{"denom":"ASSET16","index":"0.000011168095360491"},{"denom":"ASSET17","index":"0.000008775186029853"},{"denom":"ASSET18","index":"0.000003621217117579"},{"denom":"ASSET2","index":"0.000007627534970337"},{"denom":"ASSET3","index":"0.000002117298518473"},{"denom":"ASSET4","index":"0.000020413769751333"},{"denom":"ASSET5","index":"0.000001649183760435"},{"denom":"ASSET6","index":"0.000006656038319196"},{"denom":"ASSET7","index":"0.000010459966878994"},{"denom":"ASSET8","index":"0.000014293861494285"},{"denom":"ASSET9","index":"0.000006066597621916"}],"last_reward_claim_height":"162"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET18","shares":"400299391.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002967027008461"},{"denom":"ASSET1","index":"0.000025180120058697"},{"denom":"ASSET10","index":"0.000020126919929476"},{"denom":"ASSET11","index":"0.000025029678796477"},{"denom":"ASSET12","index":"0.000023880507059092"},{"denom":"ASSET13","index":"0.000007862872062626"},{"denom":"ASSET14","index":"0.000022968832134984"},{"denom":"ASSET15","index":"0.000018123195207046"},{"denom":"ASSET16","index":"0.000011168095360491"},{"denom":"ASSET17","index":"0.000008775186029853"},{"denom":"ASSET18","index":"0.000003621217117579"},{"denom":"ASSET2","index":"0.000007627534970337"},{"denom":"ASSET3","index":"0.000002117298518473"},{"denom":"ASSET4","index":"0.000020413769751333"},{"denom":"ASSET5","index":"0.000001649183760435"},{"denom":"ASSET6","index":"0.000006656038319196"},{"denom":"ASSET7","index":"0.000010459966878994"},{"denom":"ASSET8","index":"0.000014293861494285"},{"denom":"ASSET9","index":"0.000006066597621916"}],"last_reward_claim_height":"158"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET8","shares":"282639590.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002968383248598"},{"denom":"ASSET1","index":"0.000025185581850199"},{"denom":"ASSET10","index":"0.000020091193699906"},{"denom":"ASSET11","index":"0.000025026167595767"},{"denom":"ASSET12","index":"0.000023854952987524"},{"denom":"ASSET13","index":"0.000007859725566891"},{"denom":"ASSET14","index":"0.000022971118914045"},{"denom":"ASSET15","index":"0.000018098517255117"},{"denom":"ASSET16","index":"0.000011173004258039"},{"denom":"ASSET17","index":"0.000008766603022733"},{"denom":"ASSET18","index":"0.000003624559740525"},{"denom":"ASSET2","index":"0.000007626317523237"},{"denom":"ASSET3","index":"0.000002117313008939"},{"denom":"ASSET4","index":"0.000020418576076670"},{"denom":"ASSET5","index":"0.000001649450966157"},{"denom":"ASSET6","index":"0.000006660362585584"},{"denom":"ASSET7","index":"0.000010463779822658"},{"denom":"ASSET8","index":"0.000014287735496216"},{"denom":"ASSET9","index":"0.000006065360072421"}],"last_reward_claim_height":"171"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET11","shares":"783860678.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001508631993599"},{"denom":"ASSET1","index":"0.000012578103553994"},{"denom":"ASSET10","index":"0.000008763023138279"},{"denom":"ASSET11","index":"0.000012169014387632"},{"denom":"ASSET12","index":"0.000010956555546150"},{"denom":"ASSET13","index":"0.000003770654442897"},{"denom":"ASSET14","index":"0.000011367495794714"},{"denom":"ASSET15","index":"0.000008126250861227"},{"denom":"ASSET16","index":"0.000005666162616450"},{"denom":"ASSET17","index":"0.000004024252704398"},{"denom":"ASSET18","index":"0.000001915870077761"},{"denom":"ASSET2","index":"0.000003713270894674"},{"denom":"ASSET3","index":"0.000001084734169631"},{"denom":"ASSET4","index":"0.000010221675912459"},{"denom":"ASSET5","index":"0.000000842242401334"},{"denom":"ASSET6","index":"0.000003430055317962"},{"denom":"ASSET7","index":"0.000005255222367887"},{"denom":"ASSET8","index":"0.000006856408471522"},{"denom":"ASSET9","index":"0.000002961731521176"}],"last_reward_claim_height":"96"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET15","shares":"68297532.992675577639510399","reward_history":[{"denom":"ASSET0","index":"0.000004536084454421"},{"denom":"ASSET1","index":"0.000037083372659795"},{"denom":"ASSET10","index":"0.000032174135024714"},{"denom":"ASSET11","index":"0.000038580962006149"},{"denom":"ASSET12","index":"0.000036714497862249"},{"denom":"ASSET13","index":"0.000012453422061734"},{"denom":"ASSET14","index":"0.000035602966059204"},{"denom":"ASSET15","index":"0.000028882132110798"},{"denom":"ASSET16","index":"0.000016455404563254"},{"denom":"ASSET17","index":"0.000013332246409211"},{"denom":"ASSET18","index":"0.000005541989697304"},{"denom":"ASSET2","index":"0.000011191400044680"},{"denom":"ASSET3","index":"0.000003219800167701"},{"denom":"ASSET4","index":"0.000030407820413803"},{"denom":"ASSET5","index":"0.000002528915913414"},{"denom":"ASSET6","index":"0.000010328774056173"},{"denom":"ASSET7","index":"0.000015947694956299"},{"denom":"ASSET8","index":"0.000022986536848538"},{"denom":"ASSET9","index":"0.000009206840657546"}],"last_reward_claim_height":"189"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET5","shares":"830769037.000000000000000000","reward_history":[],"last_reward_claim_height":"22"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET5","shares":"898612676.103242959021132181","reward_history":[{"denom":"ASSET0","index":"0.000003314119794923"},{"denom":"ASSET1","index":"0.000028119315186385"},{"denom":"ASSET10","index":"0.000022456877991933"},{"denom":"ASSET11","index":"0.000027947185249485"},{"denom":"ASSET12","index":"0.000026653541530161"},{"denom":"ASSET13","index":"0.000008778725953540"},{"denom":"ASSET14","index":"0.000025648491290636"},{"denom":"ASSET15","index":"0.000020225495910600"},{"denom":"ASSET16","index":"0.000012473684612014"},{"denom":"ASSET17","index":"0.000009794866581105"},{"denom":"ASSET18","index":"0.000004045992889163"},{"denom":"ASSET2","index":"0.000008517017325485"},{"denom":"ASSET3","index":"0.000002365208974685"},{"denom":"ASSET4","index":"0.000022797013251164"},{"denom":"ASSET5","index":"0.000001842432416817"},{"denom":"ASSET6","index":"0.000007435560259585"},{"denom":"ASSET7","index":"0.000011681616070006"},{"denom":"ASSET8","index":"0.000015958852395270"},{"denom":"ASSET9","index":"0.000006773561992828"}],"last_reward_claim_height":"137"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET9","shares":"532778132.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004957951068368"},{"denom":"ASSET1","index":"0.000040595109338701"},{"denom":"ASSET10","index":"0.000035126657560304"},{"denom":"ASSET11","index":"0.000042160091199159"},{"denom":"ASSET12","index":"0.000040137526814401"},{"denom":"ASSET13","index":"0.000013595617987355"},{"denom":"ASSET14","index":"0.000038893564212609"},{"denom":"ASSET15","index":"0.000031532808724594"},{"denom":"ASSET16","index":"0.000018012834416697"},{"denom":"ASSET17","index":"0.000014582632247249"},{"denom":"ASSET18","index":"0.000006056854468943"},{"denom":"ASSET2","index":"0.000012255281913400"},{"denom":"ASSET3","index":"0.000003521316365957"},{"denom":"ASSET4","index":"0.000033271654612923"},{"denom":"ASSET5","index":"0.000002764577024642"},{"denom":"ASSET6","index":"0.000011282334844705"},{"denom":"ASSET7","index":"0.000017431884448199"},{"denom":"ASSET8","index":"0.000025080164686627"},{"denom":"ASSET9","index":"0.000010067506697452"}],"last_reward_claim_height":"184"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET12","shares":"147123363.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001669758803356"},{"denom":"ASSET1","index":"0.000013919924903508"},{"denom":"ASSET10","index":"0.000009698114015232"},{"denom":"ASSET11","index":"0.000013466332119255"},{"denom":"ASSET12","index":"0.000012126099781115"},{"denom":"ASSET13","index":"0.000004173211661392"},{"denom":"ASSET14","index":"0.000012579297449702"},{"denom":"ASSET15","index":"0.000008994017898909"},{"denom":"ASSET16","index":"0.000006270880730729"},{"denom":"ASSET17","index":"0.000004453348668392"},{"denom":"ASSET18","index":"0.000002121376009280"},{"denom":"ASSET2","index":"0.000004109202923545"},{"denom":"ASSET3","index":"0.000001201941855137"},{"denom":"ASSET4","index":"0.000011312556625386"},{"denom":"ASSET5","index":"0.000000932868086778"},{"denom":"ASSET6","index":"0.000003797061547622"},{"denom":"ASSET7","index":"0.000005815312368147"},{"denom":"ASSET8","index":"0.000007588591475923"},{"denom":"ASSET9","index":"0.000003277484447193"}],"last_reward_claim_height":"113"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET16","shares":"557938069.709668032879945040","reward_history":[{"denom":"ASSET0","index":"0.000003314119794923"},{"denom":"ASSET1","index":"0.000028119315186385"},{"denom":"ASSET10","index":"0.000022456877991933"},{"denom":"ASSET11","index":"0.000027947185249485"},{"denom":"ASSET12","index":"0.000026653541530161"},{"denom":"ASSET13","index":"0.000008778725953540"},{"denom":"ASSET14","index":"0.000025648491290636"},{"denom":"ASSET15","index":"0.000020225495910600"},{"denom":"ASSET16","index":"0.000012473684612014"},{"denom":"ASSET17","index":"0.000009794866581105"},{"denom":"ASSET18","index":"0.000004045992889163"},{"denom":"ASSET2","index":"0.000008517017325485"},{"denom":"ASSET3","index":"0.000002365208974685"},{"denom":"ASSET4","index":"0.000022797013251164"},{"denom":"ASSET5","index":"0.000001842432416817"},{"denom":"ASSET6","index":"0.000007435560259585"},{"denom":"ASSET7","index":"0.000011681616070006"},{"denom":"ASSET8","index":"0.000015958852395270"},{"denom":"ASSET9","index":"0.000006773561992828"}],"last_reward_claim_height":"176"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET8","shares":"399026270.842467048434123936","reward_history":[{"denom":"ASSET0","index":"0.000004555136197767"},{"denom":"ASSET1","index":"0.000037240722570861"},{"denom":"ASSET10","index":"0.000032656570809308"},{"denom":"ASSET11","index":"0.000038864800037776"},{"denom":"ASSET12","index":"0.000037120446581994"},{"denom":"ASSET13","index":"0.000012565270457927"},{"denom":"ASSET14","index":"0.000035828939643615"},{"denom":"ASSET15","index":"0.000029264594603660"},{"denom":"ASSET16","index":"0.000016507901080348"},{"denom":"ASSET17","index":"0.000013476518239563"},{"denom":"ASSET18","index":"0.000005550894327170"},{"denom":"ASSET2","index":"0.000011257866577172"},{"denom":"ASSET3","index":"0.000003231771970438"},{"denom":"ASSET4","index":"0.000030542305908795"},{"denom":"ASSET5","index":"0.000002539865989892"},{"denom":"ASSET6","index":"0.000010367834016251"},{"denom":"ASSET7","index":"0.000016024625816937"},{"denom":"ASSET8","index":"0.000023202454203695"},{"denom":"ASSET9","index":"0.000009268576140116"}],"last_reward_claim_height":"194"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET10","shares":"375247762.000000011257432860","reward_history":[{"denom":"ASSET0","index":"0.000001334597814253"},{"denom":"ASSET1","index":"0.000011126876577448"},{"denom":"ASSET10","index":"0.000007751884027943"},{"denom":"ASSET11","index":"0.000010763759508328"},{"denom":"ASSET12","index":"0.000009692944381721"},{"denom":"ASSET13","index":"0.000003335543967388"},{"denom":"ASSET14","index":"0.000010055110882597"},{"denom":"ASSET15","index":"0.000007189147627631"},{"denom":"ASSET16","index":"0.000005012346349398"},{"denom":"ASSET17","index":"0.000003559878072918"},{"denom":"ASSET18","index":"0.000001695813746885"},{"denom":"ASSET2","index":"0.000003284213282225"},{"denom":"ASSET3","index":"0.000000960549210329"},{"denom":"ASSET4","index":"0.000009042280418860"},{"denom":"ASSET5","index":"0.000000745720787237"},{"denom":"ASSET6","index":"0.000003035164402357"},{"denom":"ASSET7","index":"0.000004648278712034"},{"denom":"ASSET8","index":"0.000006065575963495"},{"denom":"ASSET9","index":"0.000002619766079830"}],"last_reward_claim_height":"93"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET13","shares":"34110098.040802429642992480","reward_history":[{"denom":"ASSET0","index":"0.000002933404194828"},{"denom":"ASSET1","index":"0.000024932632498194"},{"denom":"ASSET10","index":"0.000020157113753706"},{"denom":"ASSET11","index":"0.000024842878528839"},{"denom":"ASSET12","index":"0.000023817726072485"},{"denom":"ASSET13","index":"0.000007813243799971"},{"denom":"ASSET14","index":"0.000022761898108549"},{"denom":"ASSET15","index":"0.000018109267957138"},{"denom":"ASSET16","index":"0.000011043189892304"},{"denom":"ASSET17","index":"0.000008753164046701"},{"denom":"ASSET18","index":"0.000003567063844603"},{"denom":"ASSET2","index":"0.000007569762146700"},{"denom":"ASSET3","index":"0.000002091389836038"},{"denom":"ASSET4","index":"0.000020208488830330"},{"denom":"ASSET5","index":"0.000001630166870108"},{"denom":"ASSET6","index":"0.000006572642272968"},{"denom":"ASSET7","index":"0.000010351822041320"},{"denom":"ASSET8","index":"0.000014203644477234"},{"denom":"ASSET9","index":"0.000006019030096188"}],"last_reward_claim_height":"159"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET1","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001655550281073"},{"denom":"ASSET1","index":"0.000013803766186213"},{"denom":"ASSET10","index":"0.000009616885369480"},{"denom":"ASSET11","index":"0.000013353770421464"},{"denom":"ASSET12","index":"0.000012024654915933"},{"denom":"ASSET13","index":"0.000004138458266908"},{"denom":"ASSET14","index":"0.000012474650680682"},{"denom":"ASSET15","index":"0.000008918932754767"},{"denom":"ASSET16","index":"0.000006218123294721"},{"denom":"ASSET17","index":"0.000004415635621077"},{"denom":"ASSET18","index":"0.000002103876302725"},{"denom":"ASSET2","index":"0.000004075008029207"},{"denom":"ASSET3","index":"0.000001191361699996"},{"denom":"ASSET4","index":"0.000011218168999888"},{"denom":"ASSET5","index":"0.000000925037675960"},{"denom":"ASSET6","index":"0.000003765270684639"},{"denom":"ASSET7","index":"0.000005766457786874"},{"denom":"ASSET8","index":"0.000007524697268437"},{"denom":"ASSET9","index":"0.000003250154939091"}],"last_reward_claim_height":"109"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET3","shares":"598220345.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001655550281073"},{"denom":"ASSET1","index":"0.000013803766186213"},{"denom":"ASSET10","index":"0.000009616885369480"},{"denom":"ASSET11","index":"0.000013353770421464"},{"denom":"ASSET12","index":"0.000012024654915933"},{"denom":"ASSET13","index":"0.000004138458266908"},{"denom":"ASSET14","index":"0.000012474650680682"},{"denom":"ASSET15","index":"0.000008918932754767"},{"denom":"ASSET16","index":"0.000006218123294721"},{"denom":"ASSET17","index":"0.000004415635621077"},{"denom":"ASSET18","index":"0.000002103876302725"},{"denom":"ASSET2","index":"0.000004075008029207"},{"denom":"ASSET3","index":"0.000001191361699996"},{"denom":"ASSET4","index":"0.000011218168999888"},{"denom":"ASSET5","index":"0.000000925037675960"},{"denom":"ASSET6","index":"0.000003765270684639"},{"denom":"ASSET7","index":"0.000005766457786874"},{"denom":"ASSET8","index":"0.000007524697268437"},{"denom":"ASSET9","index":"0.000003250154939091"}],"last_reward_claim_height":"95"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET18","shares":"20356196.179595076576062177","reward_history":[{"denom":"ASSET0","index":"0.000001655550281073"},{"denom":"ASSET1","index":"0.000013803766186213"},{"denom":"ASSET10","index":"0.000009616885369480"},{"denom":"ASSET11","index":"0.000013353770421464"},{"denom":"ASSET12","index":"0.000012024654915933"},{"denom":"ASSET13","index":"0.000004138458266908"},{"denom":"ASSET14","index":"0.000012474650680682"},{"denom":"ASSET15","index":"0.000008918932754767"},{"denom":"ASSET16","index":"0.000006218123294721"},{"denom":"ASSET17","index":"0.000004415635621077"},{"denom":"ASSET18","index":"0.000002103876302725"},{"denom":"ASSET2","index":"0.000004075008029207"},{"denom":"ASSET3","index":"0.000001191361699996"},{"denom":"ASSET4","index":"0.000011218168999888"},{"denom":"ASSET5","index":"0.000000925037675960"},{"denom":"ASSET6","index":"0.000003765270684639"},{"denom":"ASSET7","index":"0.000005766457786874"},{"denom":"ASSET8","index":"0.000007524697268437"},{"denom":"ASSET9","index":"0.000003250154939091"}],"last_reward_claim_height":"83"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET7","shares":"567851664.226333474940211716","reward_history":[{"denom":"ASSET0","index":"0.000001631513498845"},{"denom":"ASSET1","index":"0.000013601788709515"},{"denom":"ASSET10","index":"0.000009476711328689"},{"denom":"ASSET11","index":"0.000013158178840821"},{"denom":"ASSET12","index":"0.000011848922966954"},{"denom":"ASSET13","index":"0.000004077884841603"},{"denom":"ASSET14","index":"0.000012291633930140"},{"denom":"ASSET15","index":"0.000008788599161546"},{"denom":"ASSET16","index":"0.000006127389402135"},{"denom":"ASSET17","index":"0.000004351601569095"},{"denom":"ASSET18","index":"0.000002072876103766"},{"denom":"ASSET2","index":"0.000004014961455973"},{"denom":"ASSET3","index":"0.000001174420047516"},{"denom":"ASSET4","index":"0.000011053841044239"},{"denom":"ASSET5","index":"0.000000911490186131"},{"denom":"ASSET6","index":"0.000003710232488420"},{"denom":"ASSET7","index":"0.000005682431175178"},{"denom":"ASSET8","index":"0.000007415071543785"},{"denom":"ASSET9","index":"0.000003202800328586"}],"last_reward_claim_height":"91"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET13","shares":"286194226.554906264229805817","reward_history":[{"denom":"ASSET0","index":"0.000004745793526719"},{"denom":"ASSET1","index":"0.000038837120907884"},{"denom":"ASSET10","index":"0.000033561109505682"},{"denom":"ASSET11","index":"0.000040331758239538"},{"denom":"ASSET12","index":"0.000038362096616639"},{"denom":"ASSET13","index":"0.000013006193269554"},{"denom":"ASSET14","index":"0.000037219618636050"},{"denom":"ASSET15","index":"0.000030138700648405"},{"denom":"ASSET16","index":"0.000017237339667545"},{"denom":"ASSET17","index":"0.000013935435412403"},{"denom":"ASSET18","index":"0.000005802064373263"},{"denom":"ASSET2","index":"0.000011718369963314"},{"denom":"ASSET3","index":"0.000003370927946053"},{"denom":"ASSET4","index":"0.000031834884145314"},{"denom":"ASSET5","index":"0.000002646352292773"},{"denom":"ASSET6","index":"0.000010803831971165"},{"denom":"ASSET7","index":"0.000016683192889003"},{"denom":"ASSET8","index":"0.000023996426686690"},{"denom":"ASSET9","index":"0.000009630511936919"}],"last_reward_claim_height":"191"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","denom":"ASSET17","shares":"431308737.008358885147082014","reward_history":[{"denom":"ASSET0","index":"0.000003159157648171"},{"denom":"ASSET1","index":"0.000026793811254639"},{"denom":"ASSET10","index":"0.000021330257270132"},{"denom":"ASSET11","index":"0.000026611245447042"},{"denom":"ASSET12","index":"0.000025345616114893"},{"denom":"ASSET13","index":"0.000008356504281369"},{"denom":"ASSET14","index":"0.000024433401122602"},{"denom":"ASSET15","index":"0.000019223209713353"},{"denom":"ASSET16","index":"0.000011890026449509"},{"denom":"ASSET17","index":"0.000009313941892173"},{"denom":"ASSET18","index":"0.000003860849124980"},{"denom":"ASSET2","index":"0.000008109777269158"},{"denom":"ASSET3","index":"0.000002255070941538"},{"denom":"ASSET4","index":"0.000021723391251034"},{"denom":"ASSET5","index":"0.000001756486235957"},{"denom":"ASSET6","index":"0.000007090574282328"},{"denom":"ASSET7","index":"0.000011132530538444"},{"denom":"ASSET8","index":"0.000015191323807650"},{"denom":"ASSET9","index":"0.000006450832118924"}],"last_reward_claim_height":"167"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET1","shares":"692866568.343898780779648363","reward_history":[{"denom":"ASSET0","index":"0.000003253063831874"},{"denom":"ASSET1","index":"0.000027597326034286"},{"denom":"ASSET10","index":"0.000022021617243178"},{"denom":"ASSET11","index":"0.000027423138617092"},{"denom":"ASSET12","index":"0.000026144931484859"},{"denom":"ASSET13","index":"0.000008613299773809"},{"denom":"ASSET14","index":"0.000025170855267573"},{"denom":"ASSET15","index":"0.000019836826910831"},{"denom":"ASSET16","index":"0.000012243184702458"},{"denom":"ASSET17","index":"0.000009607701845932"},{"denom":"ASSET18","index":"0.000003972764374377"},{"denom":"ASSET2","index":"0.000008357484440725"},{"denom":"ASSET3","index":"0.000002321502734814"},{"denom":"ASSET4","index":"0.000022373906168402"},{"denom":"ASSET5","index":"0.000001808481766797"},{"denom":"ASSET6","index":"0.000007298802623853"},{"denom":"ASSET7","index":"0.000011465220726545"},{"denom":"ASSET8","index":"0.000015658035812384"},{"denom":"ASSET9","index":"0.000006646717011605"}],"last_reward_claim_height":"164"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET3","shares":"236892788.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004925875885411"},{"denom":"ASSET1","index":"0.000040292562025913"},{"denom":"ASSET10","index":"0.000034914390996922"},{"denom":"ASSET11","index":"0.000041886139125963"},{"denom":"ASSET12","index":"0.000039866325773975"},{"denom":"ASSET13","index":"0.000013514800906768"},{"denom":"ASSET14","index":"0.000038648914786353"},{"denom":"ASSET15","index":"0.000031343172569099"},{"denom":"ASSET16","index":"0.000017879880474022"},{"denom":"ASSET17","index":"0.000014479587580243"},{"denom":"ASSET18","index":"0.000006018974701591"},{"denom":"ASSET2","index":"0.000012161689256763"},{"denom":"ASSET3","index":"0.000003497875219260"},{"denom":"ASSET4","index":"0.000033033007174623"},{"denom":"ASSET5","index":"0.000002746709808505"},{"denom":"ASSET6","index":"0.000011213225573004"},{"denom":"ASSET7","index":"0.000017316551809961"},{"denom":"ASSET8","index":"0.000024939868124773"},{"denom":"ASSET9","index":"0.000009998447386442"}],"last_reward_claim_height":"200"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET17","shares":"150727720.094118942485577748","reward_history":[{"denom":"ASSET0","index":"0.000003253063831874"},{"denom":"ASSET1","index":"0.000027597326034286"},{"denom":"ASSET10","index":"0.000022021617243178"},{"denom":"ASSET11","index":"0.000027423138617092"},{"denom":"ASSET12","index":"0.000026144931484859"},{"denom":"ASSET13","index":"0.000008613299773809"},{"denom":"ASSET14","index":"0.000025170855267573"},{"denom":"ASSET15","index":"0.000019836826910831"},{"denom":"ASSET16","index":"0.000012243184702458"},{"denom":"ASSET17","index":"0.000009607701845932"},{"denom":"ASSET18","index":"0.000003972764374377"},{"denom":"ASSET2","index":"0.000008357484440725"},{"denom":"ASSET3","index":"0.000002321502734814"},{"denom":"ASSET4","index":"0.000022373906168402"},{"denom":"ASSET5","index":"0.000001808481766797"},{"denom":"ASSET6","index":"0.000007298802623853"},{"denom":"ASSET7","index":"0.000011465220726545"},{"denom":"ASSET8","index":"0.000015658035812384"},{"denom":"ASSET9","index":"0.000006646717011605"}],"last_reward_claim_height":"144"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET0","shares":"120160798.000000005664313780","reward_history":[{"denom":"ASSET0","index":"0.000003402845442317"},{"denom":"ASSET1","index":"0.000028880571174740"},{"denom":"ASSET10","index":"0.000023090578471272"},{"denom":"ASSET11","index":"0.000028709364204549"},{"denom":"ASSET12","index":"0.000027394626213612"},{"denom":"ASSET13","index":"0.000009019217107214"},{"denom":"ASSET14","index":"0.000026344557012563"},{"denom":"ASSET15","index":"0.000020791017438004"},{"denom":"ASSET16","index":"0.000012808886991708"},{"denom":"ASSET17","index":"0.000010066951390727"},{"denom":"ASSET18","index":"0.000004153478710890"},{"denom":"ASSET2","index":"0.000008748954704305"},{"denom":"ASSET3","index":"0.000002428490976730"},{"denom":"ASSET4","index":"0.000023413646091842"},{"denom":"ASSET5","index":"0.000001891364101695"},{"denom":"ASSET6","index":"0.000007634563338572"},{"denom":"ASSET7","index":"0.000011996876612297"},{"denom":"ASSET8","index":"0.000016395615103037"},{"denom":"ASSET9","index":"0.000006958318142576"}],"last_reward_claim_height":"158"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET2","shares":"711914257.000000006407228313","reward_history":[],"last_reward_claim_height":"54"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET6","shares":"743649564.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001698975992122"},{"denom":"ASSET1","index":"0.000014167905922226"},{"denom":"ASSET10","index":"0.000009870625403756"},{"denom":"ASSET11","index":"0.000013705415046027"},{"denom":"ASSET12","index":"0.000012342129737421"},{"denom":"ASSET13","index":"0.000004247439980305"},{"denom":"ASSET14","index":"0.000012803154715439"},{"denom":"ASSET15","index":"0.000009153801193103"},{"denom":"ASSET16","index":"0.000006381787732272"},{"denom":"ASSET17","index":"0.000004532557176567"},{"denom":"ASSET18","index":"0.000002159268021049"},{"denom":"ASSET2","index":"0.000004182207511237"},{"denom":"ASSET3","index":"0.000001223292032291"},{"denom":"ASSET4","index":"0.000011513897264989"},{"denom":"ASSET5","index":"0.000000949169072389"},{"denom":"ASSET6","index":"0.000003864840554987"},{"denom":"ASSET7","index":"0.000005918563906982"},{"denom":"ASSET8","index":"0.000007723084568158"},{"denom":"ASSET9","index":"0.000003335651311539"}],"last_reward_claim_height":"100"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET7","shares":"289532899.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003402845442317"},{"denom":"ASSET1","index":"0.000028880571174740"},{"denom":"ASSET10","index":"0.000023090578471272"},{"denom":"ASSET11","index":"0.000028709364204549"},{"denom":"ASSET12","index":"0.000027394626213612"},{"denom":"ASSET13","index":"0.000009019217107214"},{"denom":"ASSET14","index":"0.000026344557012563"},{"denom":"ASSET15","index":"0.000020791017438004"},{"denom":"ASSET16","index":"0.000012808886991708"},{"denom":"ASSET17","index":"0.000010066951390727"},{"denom":"ASSET18","index":"0.000004153478710890"},{"denom":"ASSET2","index":"0.000008748954704305"},{"denom":"ASSET3","index":"0.000002428490976730"},{"denom":"ASSET4","index":"0.000023413646091842"},{"denom":"ASSET5","index":"0.000001891364101695"},{"denom":"ASSET6","index":"0.000007634563338572"},{"denom":"ASSET7","index":"0.000011996876612297"},{"denom":"ASSET8","index":"0.000016395615103037"},{"denom":"ASSET9","index":"0.000006958318142576"}],"last_reward_claim_height":"137"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET7","shares":"510430703.668485232697659760","reward_history":[{"denom":"ASSET0","index":"0.000001515088644413"},{"denom":"ASSET1","index":"0.000012634136557163"},{"denom":"ASSET10","index":"0.000008802109028204"},{"denom":"ASSET11","index":"0.000012222352143486"},{"denom":"ASSET12","index":"0.000011006111259210"},{"denom":"ASSET13","index":"0.000003787721611031"},{"denom":"ASSET14","index":"0.000011417895672887"},{"denom":"ASSET15","index":"0.000008163582563959"},{"denom":"ASSET16","index":"0.000005691138594924"},{"denom":"ASSET17","index":"0.000004042263453241"},{"denom":"ASSET18","index":"0.000001925135571111"},{"denom":"ASSET2","index":"0.000003729515797284"},{"denom":"ASSET3","index":"0.000001091141821893"},{"denom":"ASSET4","index":"0.000010267679293757"},{"denom":"ASSET5","index":"0.000000846156158061"},{"denom":"ASSET6","index":"0.000003446305419945"},{"denom":"ASSET7","index":"0.000005278485437758"},{"denom":"ASSET8","index":"0.000006887398378958"},{"denom":"ASSET9","index":"0.000002974577705544"}],"last_reward_claim_height":"91"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET8","shares":"639723432.690075759207092040","reward_history":[{"denom":"ASSET0","index":"0.000003205609047354"},{"denom":"ASSET1","index":"0.000027188537481167"},{"denom":"ASSET10","index":"0.000021652723818266"},{"denom":"ASSET11","index":"0.000027005979418132"},{"denom":"ASSET12","index":"0.000025725923481940"},{"denom":"ASSET13","index":"0.000008480657418555"},{"denom":"ASSET14","index":"0.000024794508770079"},{"denom":"ASSET15","index":"0.000019512596409105"},{"denom":"ASSET16","index":"0.000012064653878282"},{"denom":"ASSET17","index":"0.000009453813052143"},{"denom":"ASSET18","index":"0.000003917117707327"},{"denom":"ASSET2","index":"0.000008230459966291"},{"denom":"ASSET3","index":"0.000002288306334262"},{"denom":"ASSET4","index":"0.000022043298344156"},{"denom":"ASSET5","index":"0.000001782083734802"},{"denom":"ASSET6","index":"0.000007194354204475"},{"denom":"ASSET7","index":"0.000011296497588433"},{"denom":"ASSET8","index":"0.000015417282169744"},{"denom":"ASSET9","index":"0.000006545936928299"}],"last_reward_claim_height":"173"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET3","shares":"1000006571.600553345000000000","reward_history":[{"denom":"ASSET0","index":"0.000003155948059833"},{"denom":"ASSET1","index":"0.000026789841893667"},{"denom":"ASSET10","index":"0.000021451154188244"},{"denom":"ASSET11","index":"0.000026640130662201"},{"denom":"ASSET12","index":"0.000025435769508540"},{"denom":"ASSET13","index":"0.000008370086775831"},{"denom":"ASSET14","index":"0.000024440800445484"},{"denom":"ASSET15","index":"0.000019309084443140"},{"denom":"ASSET16","index":"0.000011879786354964"},{"denom":"ASSET17","index":"0.000009347672781307"},{"denom":"ASSET18","index":"0.000003850232310781"},{"denom":"ASSET2","index":"0.000008118311447694"},{"denom":"ASSET3","index":"0.000002251791235916"},{"denom":"ASSET4","index":"0.000021717604836949"},{"denom":"ASSET5","index":"0.000001754185821919"},{"denom":"ASSET6","index":"0.000007079049104243"},{"denom":"ASSET7","index":"0.000011127710678967"},{"denom":"ASSET8","index":"0.000015216376583965"},{"denom":"ASSET9","index":"0.000006456241851980"}],"last_reward_claim_height":"179"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET2","shares":"361490354.302204161494894182","reward_history":[{"denom":"ASSET0","index":"0.000003300821213878"},{"denom":"ASSET1","index":"0.000028019420341436"},{"denom":"ASSET10","index":"0.000022435320069293"},{"denom":"ASSET11","index":"0.000027862926397945"},{"denom":"ASSET12","index":"0.000026603097941410"},{"denom":"ASSET13","index":"0.000008754572034100"},{"denom":"ASSET14","index":"0.000025562969906661"},{"denom":"ASSET15","index":"0.000020195785636702"},{"denom":"ASSET16","index":"0.000012425527462944"},{"denom":"ASSET17","index":"0.000009776022796414"},{"denom":"ASSET18","index":"0.000004027118689751"},{"denom":"ASSET2","index":"0.000008490998812362"},{"denom":"ASSET3","index":"0.000002354733406852"},{"denom":"ASSET4","index":"0.000022715681634045"},{"denom":"ASSET5","index":"0.000001835160700580"},{"denom":"ASSET6","index":"0.000007403741836767"},{"denom":"ASSET7","index":"0.000011639103500846"},{"denom":"ASSET8","index":"0.000015914079386056"},{"denom":"ASSET9","index":"0.000006752470475547"}],"last_reward_claim_height":"158"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET9","shares":"809982783.000000000000000000","reward_history":[],"last_reward_claim_height":"59"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET12","shares":"414820648.046186620540805194","reward_history":[{"denom":"ASSET0","index":"0.000003205518103121"},{"denom":"ASSET1","index":"0.000027209804037075"},{"denom":"ASSET10","index":"0.000021755111918776"},{"denom":"ASSET11","index":"0.000027048910570117"},{"denom":"ASSET12","index":"0.000025809934262776"},{"denom":"ASSET13","index":"0.000008496852467218"},{"denom":"ASSET14","index":"0.000024820667393427"},{"denom":"ASSET15","index":"0.000019589132093549"},{"denom":"ASSET16","index":"0.000012068310128279"},{"denom":"ASSET17","index":"0.000009484236214143"},{"denom":"ASSET18","index":"0.000003912244660385"},{"denom":"ASSET2","index":"0.000008242746790311"},{"denom":"ASSET3","index":"0.000002287536756020"},{"denom":"ASSET4","index":"0.000022059248469095"},{"denom":"ASSET5","index":"0.000001781848402938"},{"denom":"ASSET6","index":"0.000007192715838846"},{"denom":"ASSET7","index":"0.000011303047666497"},{"denom":"ASSET8","index":"0.000015447099928639"},{"denom":"ASSET9","index":"0.000006555210966575"}],"last_reward_claim_height":"132"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET13","shares":"68825729.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001599876133405"},{"denom":"ASSET1","index":"0.000013345434681176"},{"denom":"ASSET10","index":"0.000009297530322905"},{"denom":"ASSET11","index":"0.000012909953167223"},{"denom":"ASSET12","index":"0.000011625282701060"},{"denom":"ASSET13","index":"0.000004000208763886"},{"denom":"ASSET14","index":"0.000012059727354266"},{"denom":"ASSET15","index":"0.000008622533976277"},{"denom":"ASSET16","index":"0.000006011718614052"},{"denom":"ASSET17","index":"0.000004268755697491"},{"denom":"ASSET18","index":"0.000002033283925863"},{"denom":"ASSET2","index":"0.000003939033979783"},{"denom":"ASSET3","index":"0.000001151952290481"},{"denom":"ASSET4","index":"0.000010845563418934"},{"denom":"ASSET5","index":"0.000000893773964352"},{"denom":"ASSET6","index":"0.000003640418084501"},{"denom":"ASSET7","index":"0.000005575200239351"},{"denom":"ASSET8","index":"0.000007274615004517"},{"denom":"ASSET9","index":"0.000003141688064949"}],"last_reward_claim_height":"118"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET14","shares":"5401556.000000000000000000","reward_history":[],"last_reward_claim_height":"12"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET7","shares":"167624214.000000000000000000","reward_history":[],"last_reward_claim_height":"46"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET14","shares":"626778473.084221529422254150","reward_history":[{"denom":"ASSET0","index":"0.000003374964488748"},{"denom":"ASSET1","index":"0.000028642371697541"},{"denom":"ASSET10","index":"0.000022886358038922"},{"denom":"ASSET11","index":"0.000028469467846578"},{"denom":"ASSET12","index":"0.000027158021136678"},{"denom":"ASSET13","index":"0.000008943216545101"},{"denom":"ASSET14","index":"0.000026126056006670"},{"denom":"ASSET15","index":"0.000020609372613995"},{"denom":"ASSET16","index":"0.000012704733728960"},{"denom":"ASSET17","index":"0.000009980025667275"},{"denom":"ASSET18","index":"0.000004119620826099"},{"denom":"ASSET2","index":"0.000008675935346246"},{"denom":"ASSET3","index":"0.000002408702445844"},{"denom":"ASSET4","index":"0.000023220763838917"},{"denom":"ASSET5","index":"0.000001876440105393"},{"denom":"ASSET6","index":"0.000007572949563502"},{"denom":"ASSET7","index":"0.000011897934490553"},{"denom":"ASSET8","index":"0.000016258236310419"},{"denom":"ASSET9","index":"0.000006900426530312"}],"last_reward_claim_height":"168"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET3","shares":"71628576.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003138779820137"},{"denom":"ASSET1","index":"0.000026638851971456"},{"denom":"ASSET10","index":"0.000021228354320839"},{"denom":"ASSET11","index":"0.000026463611656062"},{"denom":"ASSET12","index":"0.000025215335343685"},{"denom":"ASSET13","index":"0.000008309803474369"},{"denom":"ASSET14","index":"0.000024294710395367"},{"denom":"ASSET15","index":"0.000019126240972581"},{"denom":"ASSET16","index":"0.000011819368577720"},{"denom":"ASSET17","index":"0.000009266335892783"},{"denom":"ASSET18","index":"0.000003836527514127"},{"denom":"ASSET2","index":"0.000008063422586049"},{"denom":"ASSET3","index":"0.000002240662109326"},{"denom":"ASSET4","index":"0.000021597223596640"},{"denom":"ASSET5","index":"0.000001744975814867"},{"denom":"ASSET6","index":"0.000007047692266012"},{"denom":"ASSET7","index":"0.000011067413421526"},{"denom":"ASSET8","index":"0.000015106336478322"},{"denom":"ASSET9","index":"0.000006414890297355"}],"last_reward_claim_height":"147"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET7","shares":"806555085.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001608105877482"},{"denom":"ASSET1","index":"0.000013418457239972"},{"denom":"ASSET10","index":"0.000009349233819318"},{"denom":"ASSET11","index":"0.000012981594753349"},{"denom":"ASSET12","index":"0.000011689837573077"},{"denom":"ASSET13","index":"0.000004022147721664"},{"denom":"ASSET14","index":"0.000012126700059700"},{"denom":"ASSET15","index":"0.000008669460725910"},{"denom":"ASSET16","index":"0.000006044519750254"},{"denom":"ASSET17","index":"0.000004293303747844"},{"denom":"ASSET18","index":"0.000002044968364105"},{"denom":"ASSET2","index":"0.000003960007798998"},{"denom":"ASSET3","index":"0.000001158062195142"},{"denom":"ASSET4","index":"0.000010904614913932"},{"denom":"ASSET5","index":"0.000000898204336720"},{"denom":"ASSET6","index":"0.000003660606353425"},{"denom":"ASSET7","index":"0.000005605774235672"},{"denom":"ASSET8","index":"0.000007313680595011"},{"denom":"ASSET9","index":"0.000003159720916176"}],"last_reward_claim_height":"98"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET9","shares":"617474976.000000025316474016","reward_history":[{"denom":"ASSET0","index":"0.000003138779820137"},{"denom":"ASSET1","index":"0.000026638851971456"},{"denom":"ASSET10","index":"0.000021228354320839"},{"denom":"ASSET11","index":"0.000026463611656062"},{"denom":"ASSET12","index":"0.000025215335343685"},{"denom":"ASSET13","index":"0.000008309803474369"},{"denom":"ASSET14","index":"0.000024294710395367"},{"denom":"ASSET15","index":"0.000019126240972581"},{"denom":"ASSET16","index":"0.000011819368577720"},{"denom":"ASSET17","index":"0.000009266335892783"},{"denom":"ASSET18","index":"0.000003836527514127"},{"denom":"ASSET2","index":"0.000008063422586049"},{"denom":"ASSET3","index":"0.000002240662109326"},{"denom":"ASSET4","index":"0.000021597223596640"},{"denom":"ASSET5","index":"0.000001744975814867"},{"denom":"ASSET6","index":"0.000007047692266012"},{"denom":"ASSET7","index":"0.000011067413421526"},{"denom":"ASSET8","index":"0.000015106336478322"},{"denom":"ASSET9","index":"0.000006414890297355"}],"last_reward_claim_height":"172"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET1","shares":"76836266.275925187116247716","reward_history":[{"denom":"ASSET0","index":"0.000004741115250856"},{"denom":"ASSET1","index":"0.000038790779474096"},{"denom":"ASSET10","index":"0.000033526543709442"},{"denom":"ASSET11","index":"0.000040298328047202"},{"denom":"ASSET12","index":"0.000038314311285370"},{"denom":"ASSET13","index":"0.000012998828678335"},{"denom":"ASSET14","index":"0.000037197405875143"},{"denom":"ASSET15","index":"0.000030112000039690"},{"denom":"ASSET16","index":"0.000017216651427905"},{"denom":"ASSET17","index":"0.000013916075752291"},{"denom":"ASSET18","index":"0.000005799216997102"},{"denom":"ASSET2","index":"0.000011701668315626"},{"denom":"ASSET3","index":"0.000003368965515041"},{"denom":"ASSET4","index":"0.000031802384839558"},{"denom":"ASSET5","index":"0.000002644802785755"},{"denom":"ASSET6","index":"0.000010800204716581"},{"denom":"ASSET7","index":"0.000016669242053645"},{"denom":"ASSET8","index":"0.000023984974554640"},{"denom":"ASSET9","index":"0.000009620376305923"}],"last_reward_claim_height":"195"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET3","shares":"176070332.000000000000000000","reward_history":[],"last_reward_claim_height":"43"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET17","shares":"499745467.000000000000000000","reward_history":[],"last_reward_claim_height":"53"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET2","shares":"669788296.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001682560247115"},{"denom":"ASSET1","index":"0.000014026482890055"},{"denom":"ASSET10","index":"0.000009772411969975"},{"denom":"ASSET11","index":"0.000013568579422963"},{"denom":"ASSET12","index":"0.000012218368466479"},{"denom":"ASSET13","index":"0.000004205057792371"},{"denom":"ASSET14","index":"0.000012675600520863"},{"denom":"ASSET15","index":"0.000009062728737253"},{"denom":"ASSET16","index":"0.000006318664998244"},{"denom":"ASSET17","index":"0.000004487051129876"},{"denom":"ASSET18","index":"0.000002137778063373"},{"denom":"ASSET2","index":"0.000004140602172369"},{"denom":"ASSET3","index":"0.000001211228525856"},{"denom":"ASSET4","index":"0.000011398573549589"},{"denom":"ASSET5","index":"0.000000939977791684"},{"denom":"ASSET6","index":"0.000003825709612155"},{"denom":"ASSET7","index":"0.000005859418705735"},{"denom":"ASSET8","index":"0.000007646047922643"},{"denom":"ASSET9","index":"0.000003302679112354"}],"last_reward_claim_height":"80"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET5","shares":"179027168.224355134250341900","reward_history":[{"denom":"ASSET0","index":"0.000003237426875283"},{"denom":"ASSET1","index":"0.000027451710154634"},{"denom":"ASSET10","index":"0.000021835512998164"},{"denom":"ASSET11","index":"0.000027259736654219"},{"denom":"ASSET12","index":"0.000025953768913429"},{"denom":"ASSET13","index":"0.000008559484494503"},{"denom":"ASSET14","index":"0.000025032165857410"},{"denom":"ASSET15","index":"0.000019681806512765"},{"denom":"ASSET16","index":"0.000012183244440341"},{"denom":"ASSET17","index":"0.000009537367134186"},{"denom":"ASSET18","index":"0.000003957397976948"},{"denom":"ASSET2","index":"0.000008307936552813"},{"denom":"ASSET3","index":"0.000002310954839376"},{"denom":"ASSET4","index":"0.000022256988295109"},{"denom":"ASSET5","index":"0.000001799896462688"},{"denom":"ASSET6","index":"0.000007265619632425"},{"denom":"ASSET7","index":"0.000011405823532836"},{"denom":"ASSET8","index":"0.000015559935461923"},{"denom":"ASSET9","index":"0.000006608212131764"}],"last_reward_claim_height":"132"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET13","shares":"436277566.120820756935139460","reward_history":[{"denom":"ASSET0","index":"0.000004889429454812"},{"denom":"ASSET1","index":"0.000039989731936733"},{"denom":"ASSET10","index":"0.000034568578318127"},{"denom":"ASSET11","index":"0.000041543640892993"},{"denom":"ASSET12","index":"0.000039505045921282"},{"denom":"ASSET13","index":"0.000013400367987193"},{"denom":"ASSET14","index":"0.000038343482662039"},{"denom":"ASSET15","index":"0.000031045520521246"},{"denom":"ASSET16","index":"0.000017750078362345"},{"denom":"ASSET17","index":"0.000014348913165267"},{"denom":"ASSET18","index":"0.000005978243263456"},{"denom":"ASSET2","index":"0.000012064952584567"},{"denom":"ASSET3","index":"0.000003472718319064"},{"denom":"ASSET4","index":"0.000032783876502129"},{"denom":"ASSET5","index":"0.000002726555594867"},{"denom":"ASSET6","index":"0.000011131690090434"},{"denom":"ASSET7","index":"0.000017184696487705"},{"denom":"ASSET8","index":"0.000024726779414247"},{"denom":"ASSET9","index":"0.000009918489437787"}],"last_reward_claim_height":"190"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET5","shares":"507566083.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003150995592381"},{"denom":"ASSET1","index":"0.000026735906318713"},{"denom":"ASSET10","index":"0.000021370928366269"},{"denom":"ASSET11","index":"0.000026577057751538"},{"denom":"ASSET12","index":"0.000025356196217934"},{"denom":"ASSET13","index":"0.000008349049177946"},{"denom":"ASSET14","index":"0.000024388519635576"},{"denom":"ASSET15","index":"0.000019243917228958"},{"denom":"ASSET16","index":"0.000011858566692713"},{"denom":"ASSET17","index":"0.000009317567603522"},{"denom":"ASSET18","index":"0.000003845362315572"},{"denom":"ASSET2","index":"0.000008099062572798"},{"denom":"ASSET3","index":"0.000002247710476517"},{"denom":"ASSET4","index":"0.000021674805285583"},{"denom":"ASSET5","index":"0.000001751018453776"},{"denom":"ASSET6","index":"0.000007067532365991"},{"denom":"ASSET7","index":"0.000011106766164564"},{"denom":"ASSET8","index":"0.000015177641578730"},{"denom":"ASSET9","index":"0.000006441123951375"}],"last_reward_claim_height":"151"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET13","shares":"26926752.960837935357675734","reward_history":[{"denom":"ASSET0","index":"0.000001576738934866"},{"denom":"ASSET1","index":"0.000013143695761043"},{"denom":"ASSET10","index":"0.000009157699733702"},{"denom":"ASSET11","index":"0.000012715663698192"},{"denom":"ASSET12","index":"0.000011450067913139"},{"denom":"ASSET13","index":"0.000003940585946017"},{"denom":"ASSET14","index":"0.000011878099975991"},{"denom":"ASSET15","index":"0.000008492526135047"},{"denom":"ASSET16","index":"0.000005920970048209"},{"denom":"ASSET17","index":"0.000004204637159643"},{"denom":"ASSET18","index":"0.000002003089142854"},{"denom":"ASSET2","index":"0.000003880039170918"},{"denom":"ASSET3","index":"0.000001134411105672"},{"denom":"ASSET4","index":"0.000010681460240357"},{"denom":"ASSET5","index":"0.000000880451021229"},{"denom":"ASSET6","index":"0.000003584873642311"},{"denom":"ASSET7","index":"0.000005491256130493"},{"denom":"ASSET8","index":"0.000007165542647463"},{"denom":"ASSET9","index":"0.000003094612949497"}],"last_reward_claim_height":"119"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET3","shares":"894426708.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001735896630597"},{"denom":"ASSET1","index":"0.000014474259966527"},{"denom":"ASSET10","index":"0.000010084408758147"},{"denom":"ASSET11","index":"0.000014002239606889"},{"denom":"ASSET12","index":"0.000012609068112910"},{"denom":"ASSET13","index":"0.000004339122939062"},{"denom":"ASSET14","index":"0.000013079851197687"},{"denom":"ASSET15","index":"0.000009351942040176"},{"denom":"ASSET16","index":"0.000006520438519776"},{"denom":"ASSET17","index":"0.000004630501168930"},{"denom":"ASSET18","index":"0.000002205442440512"},{"denom":"ASSET2","index":"0.000004272310096544"},{"denom":"ASSET3","index":"0.000001249647610052"},{"denom":"ASSET4","index":"0.000011762772107687"},{"denom":"ASSET5","index":"0.000000970023491367"},{"denom":"ASSET6","index":"0.000003948144082847"},{"denom":"ASSET7","index":"0.000006046562247845"},{"denom":"ASSET8","index":"0.000007890101791387"},{"denom":"ASSET9","index":"0.000003408073605830"}],"last_reward_claim_height":"100"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET7","shares":"832758639.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003300304206809"},{"denom":"ASSET1","index":"0.000027981868665615"},{"denom":"ASSET10","index":"0.000022221493016134"},{"denom":"ASSET11","index":"0.000027777532118325"},{"denom":"ASSET12","index":"0.000026428557640091"},{"denom":"ASSET13","index":"0.000008720047886627"},{"denom":"ASSET14","index":"0.000025512138164618"},{"denom":"ASSET15","index":"0.000020036362120252"},{"denom":"ASSET16","index":"0.000012421157074829"},{"denom":"ASSET17","index":"0.000009711490167791"},{"denom":"ASSET18","index":"0.000004036282970136"},{"denom":"ASSET2","index":"0.000008465189250700"},{"denom":"ASSET3","index":"0.000002356240815614"},{"denom":"ASSET4","index":"0.000022687774056492"},{"denom":"ASSET5","index":"0.000001835200922241"},{"denom":"ASSET6","index":"0.000007409270759323"},{"denom":"ASSET7","index":"0.000011627060915230"},{"denom":"ASSET8","index":"0.000015852235873304"},{"denom":"ASSET9","index":"0.000006733690564218"}],"last_reward_claim_height":"161"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET14","shares":"4842924.445964589002002953","reward_history":[{"denom":"ASSET0","index":"0.000003300304206809"},{"denom":"ASSET1","index":"0.000027981868665615"},{"denom":"ASSET10","index":"0.000022221493016134"},{"denom":"ASSET11","index":"0.000027777532118325"},{"denom":"ASSET12","index":"0.000026428557640091"},{"denom":"ASSET13","index":"0.000008720047886627"},{"denom":"ASSET14","index":"0.000025512138164618"},{"denom":"ASSET15","index":"0.000020036362120252"},{"denom":"ASSET16","index":"0.000012421157074829"},{"denom":"ASSET17","index":"0.000009711490167791"},{"denom":"ASSET18","index":"0.000004036282970136"},{"denom":"ASSET2","index":"0.000008465189250700"},{"denom":"ASSET3","index":"0.000002356240815614"},{"denom":"ASSET4","index":"0.000022687774056492"},{"denom":"ASSET5","index":"0.000001835200922241"},{"denom":"ASSET6","index":"0.000007409270759323"},{"denom":"ASSET7","index":"0.000011627060915230"},{"denom":"ASSET8","index":"0.000015852235873304"},{"denom":"ASSET9","index":"0.000006733690564218"}],"last_reward_claim_height":"164"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET2","shares":"519119344.000000000000000000","reward_history":[],"last_reward_claim_height":"30"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET6","shares":"507522153.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001726734301691"},{"denom":"ASSET1","index":"0.000014395988805148"},{"denom":"ASSET10","index":"0.000010029746380297"},{"denom":"ASSET11","index":"0.000013926529312304"},{"denom":"ASSET12","index":"0.000012540835608608"},{"denom":"ASSET13","index":"0.000004315874534955"},{"denom":"ASSET14","index":"0.000013009526126035"},{"denom":"ASSET15","index":"0.000009301526659210"},{"denom":"ASSET16","index":"0.000006485154189852"},{"denom":"ASSET17","index":"0.000004605778267637"},{"denom":"ASSET18","index":"0.000002193886868281"},{"denom":"ASSET2","index":"0.000004249742648985"},{"denom":"ASSET3","index":"0.000001243048763609"},{"denom":"ASSET4","index":"0.000011699192013329"},{"denom":"ASSET5","index":"0.000000964679662201"},{"denom":"ASSET6","index":"0.000003926772973318"},{"denom":"ASSET7","index":"0.000006014156746171"},{"denom":"ASSET8","index":"0.000007847778630999"},{"denom":"ASSET9","index":"0.000003389643643667"}],"last_reward_claim_height":"99"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET7","shares":"447115543.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001726734301691"},{"denom":"ASSET1","index":"0.000014395988805148"},{"denom":"ASSET10","index":"0.000010029746380297"},{"denom":"ASSET11","index":"0.000013926529312304"},{"denom":"ASSET12","index":"0.000012540835608608"},{"denom":"ASSET13","index":"0.000004315874534955"},{"denom":"ASSET14","index":"0.000013009526126035"},{"denom":"ASSET15","index":"0.000009301526659210"},{"denom":"ASSET16","index":"0.000006485154189852"},{"denom":"ASSET17","index":"0.000004605778267637"},{"denom":"ASSET18","index":"0.000002193886868281"},{"denom":"ASSET2","index":"0.000004249742648985"},{"denom":"ASSET3","index":"0.000001243048763609"},{"denom":"ASSET4","index":"0.000011699192013329"},{"denom":"ASSET5","index":"0.000000964679662201"},{"denom":"ASSET6","index":"0.000003926772973318"},{"denom":"ASSET7","index":"0.000006014156746171"},{"denom":"ASSET8","index":"0.000007847778630999"},{"denom":"ASSET9","index":"0.000003389643643667"}],"last_reward_claim_height":"107"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET12","shares":"1000091394.715422421000000000","reward_history":[{"denom":"ASSET0","index":"0.000001726734301691"},{"denom":"ASSET1","index":"0.000014395988805148"},{"denom":"ASSET10","index":"0.000010029746380297"},{"denom":"ASSET11","index":"0.000013926529312304"},{"denom":"ASSET12","index":"0.000012540835608608"},{"denom":"ASSET13","index":"0.000004315874534955"},{"denom":"ASSET14","index":"0.000013009526126035"},{"denom":"ASSET15","index":"0.000009301526659210"},{"denom":"ASSET16","index":"0.000006485154189852"},{"denom":"ASSET17","index":"0.000004605778267637"},{"denom":"ASSET18","index":"0.000002193886868281"},{"denom":"ASSET2","index":"0.000004249742648985"},{"denom":"ASSET3","index":"0.000001243048763609"},{"denom":"ASSET4","index":"0.000011699192013329"},{"denom":"ASSET5","index":"0.000000964679662201"},{"denom":"ASSET6","index":"0.000003926772973318"},{"denom":"ASSET7","index":"0.000006014156746171"},{"denom":"ASSET8","index":"0.000007847778630999"},{"denom":"ASSET9","index":"0.000003389643643667"}],"last_reward_claim_height":"65"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET15","shares":"248418004.000000004471524072","reward_history":[{"denom":"ASSET0","index":"0.000001726734301691"},{"denom":"ASSET1","index":"0.000014395988805148"},{"denom":"ASSET10","index":"0.000010029746380297"},{"denom":"ASSET11","index":"0.000013926529312304"},{"denom":"ASSET12","index":"0.000012540835608608"},{"denom":"ASSET13","index":"0.000004315874534955"},{"denom":"ASSET14","index":"0.000013009526126035"},{"denom":"ASSET15","index":"0.000009301526659210"},{"denom":"ASSET16","index":"0.000006485154189852"},{"denom":"ASSET17","index":"0.000004605778267637"},{"denom":"ASSET18","index":"0.000002193886868281"},{"denom":"ASSET2","index":"0.000004249742648985"},{"denom":"ASSET3","index":"0.000001243048763609"},{"denom":"ASSET4","index":"0.000011699192013329"},{"denom":"ASSET5","index":"0.000000964679662201"},{"denom":"ASSET6","index":"0.000003926772973318"},{"denom":"ASSET7","index":"0.000006014156746171"},{"denom":"ASSET8","index":"0.000007847778630999"},{"denom":"ASSET9","index":"0.000003389643643667"}],"last_reward_claim_height":"92"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET4","shares":"324343248.999999992540105273","reward_history":[{"denom":"ASSET0","index":"0.000001436232590899"},{"denom":"ASSET1","index":"0.000011976183987962"},{"denom":"ASSET10","index":"0.000008344549248442"},{"denom":"ASSET11","index":"0.000011585862202045"},{"denom":"ASSET12","index":"0.000010432581326504"},{"denom":"ASSET13","index":"0.000003589949888597"},{"denom":"ASSET14","index":"0.000010822903112421"},{"denom":"ASSET15","index":"0.000007738224144105"},{"denom":"ASSET16","index":"0.000005395030251301"},{"denom":"ASSET17","index":"0.000003831216753031"},{"denom":"ASSET18","index":"0.000001825291199515"},{"denom":"ASSET2","index":"0.000003535633264667"},{"denom":"ASSET3","index":"0.000001033279031975"},{"denom":"ASSET4","index":"0.000009732781101914"},{"denom":"ASSET5","index":"0.000000802117585946"},{"denom":"ASSET6","index":"0.000003266576499617"},{"denom":"ASSET7","index":"0.000005003445288083"},{"denom":"ASSET8","index":"0.000006528100290032"},{"denom":"ASSET9","index":"0.000002819411735168"}],"last_reward_claim_height":"106"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET12","shares":"417506204.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001436232590899"},{"denom":"ASSET1","index":"0.000011976183987962"},{"denom":"ASSET10","index":"0.000008344549248442"},{"denom":"ASSET11","index":"0.000011585862202045"},{"denom":"ASSET12","index":"0.000010432581326504"},{"denom":"ASSET13","index":"0.000003589949888597"},{"denom":"ASSET14","index":"0.000010822903112421"},{"denom":"ASSET15","index":"0.000007738224144105"},{"denom":"ASSET16","index":"0.000005395030251301"},{"denom":"ASSET17","index":"0.000003831216753031"},{"denom":"ASSET18","index":"0.000001825291199515"},{"denom":"ASSET2","index":"0.000003535633264667"},{"denom":"ASSET3","index":"0.000001033279031975"},{"denom":"ASSET4","index":"0.000009732781101914"},{"denom":"ASSET5","index":"0.000000802117585946"},{"denom":"ASSET6","index":"0.000003266576499617"},{"denom":"ASSET7","index":"0.000005003445288083"},{"denom":"ASSET8","index":"0.000006528100290032"},{"denom":"ASSET9","index":"0.000002819411735168"}],"last_reward_claim_height":"103"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET11","shares":"951974701.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002611689387046"},{"denom":"ASSET1","index":"0.000022118950462866"},{"denom":"ASSET10","index":"0.000017388824351878"},{"denom":"ASSET11","index":"0.000021911701626113"},{"denom":"ASSET12","index":"0.000020757567192719"},{"denom":"ASSET13","index":"0.000006870825151743"},{"denom":"ASSET14","index":"0.000020152250667519"},{"denom":"ASSET15","index":"0.000015711809347683"},{"denom":"ASSET16","index":"0.000009830001439303"},{"denom":"ASSET17","index":"0.000007627368499381"},{"denom":"ASSET18","index":"0.000003205559295774"},{"denom":"ASSET2","index":"0.000006678615536452"},{"denom":"ASSET3","index":"0.000001865584989735"},{"denom":"ASSET4","index":"0.000017938012267073"},{"denom":"ASSET5","index":"0.000001453547274796"},{"denom":"ASSET6","index":"0.000005870892100855"},{"denom":"ASSET7","index":"0.000009195154067126"},{"denom":"ASSET8","index":"0.000012492245582088"},{"denom":"ASSET9","index":"0.000005313335607946"}],"last_reward_claim_height":"183"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET14","shares":"651818900.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001476546163568"},{"denom":"ASSET1","index":"0.000012315891963405"},{"denom":"ASSET10","index":"0.000008580298213179"},{"denom":"ASSET11","index":"0.000011914434711559"},{"denom":"ASSET12","index":"0.000010728207916557"},{"denom":"ASSET13","index":"0.000003691365408921"},{"denom":"ASSET14","index":"0.000011129665168403"},{"denom":"ASSET15","index":"0.000007957699254808"},{"denom":"ASSET16","index":"0.000005547821683700"},{"denom":"ASSET17","index":"0.000003939724556249"},{"denom":"ASSET18","index":"0.000001876869355381"},{"denom":"ASSET2","index":"0.000003635796467281"},{"denom":"ASSET3","index":"0.000001062614251355"},{"denom":"ASSET4","index":"0.000010009213855342"},{"denom":"ASSET5","index":"0.000000825595704361"},{"denom":"ASSET6","index":"0.000003359085819117"},{"denom":"ASSET7","index":"0.000005145230371820"},{"denom":"ASSET8","index":"0.000006713635398099"},{"denom":"ASSET9","index":"0.000002899791505564"}],"last_reward_claim_height":"102"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET15","shares":"172172223.236925484717991864","reward_history":[{"denom":"ASSET0","index":"0.000001476546163568"},{"denom":"ASSET1","index":"0.000012315891963405"},{"denom":"ASSET10","index":"0.000008580298213179"},{"denom":"ASSET11","index":"0.000011914434711559"},{"denom":"ASSET12","index":"0.000010728207916557"},{"denom":"ASSET13","index":"0.000003691365408921"},{"denom":"ASSET14","index":"0.000011129665168403"},{"denom":"ASSET15","index":"0.000007957699254808"},{"denom":"ASSET16","index":"0.000005547821683700"},{"denom":"ASSET17","index":"0.000003939724556249"},{"denom":"ASSET18","index":"0.000001876869355381"},{"denom":"ASSET2","index":"0.000003635796467281"},{"denom":"ASSET3","index":"0.000001062614251355"},{"denom":"ASSET4","index":"0.000010009213855342"},{"denom":"ASSET5","index":"0.000000825595704361"},{"denom":"ASSET6","index":"0.000003359085819117"},{"denom":"ASSET7","index":"0.000005145230371820"},{"denom":"ASSET8","index":"0.000006713635398099"},{"denom":"ASSET9","index":"0.000002899791505564"}],"last_reward_claim_height":"97"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET12","shares":"946241205.160462105643259368","reward_history":[{"denom":"ASSET0","index":"0.000002357406510396"},{"denom":"ASSET1","index":"0.000020099972826550"},{"denom":"ASSET10","index":"0.000016611857270119"},{"denom":"ASSET11","index":"0.000020122040980663"},{"denom":"ASSET12","index":"0.000019473664705632"},{"denom":"ASSET13","index":"0.000006342954228467"},{"denom":"ASSET14","index":"0.000018379978414574"},{"denom":"ASSET15","index":"0.000014858739059306"},{"denom":"ASSET16","index":"0.000008878274052948"},{"denom":"ASSET17","index":"0.000007156982288871"},{"denom":"ASSET18","index":"0.000002845018303307"},{"denom":"ASSET2","index":"0.000006129987919866"},{"denom":"ASSET3","index":"0.000001678183905493"},{"denom":"ASSET4","index":"0.000016284739258605"},{"denom":"ASSET5","index":"0.000001308892339296"},{"denom":"ASSET6","index":"0.000005269046474537"},{"denom":"ASSET7","index":"0.000008337197620164"},{"denom":"ASSET8","index":"0.000011530009666752"},{"denom":"ASSET9","index":"0.000004871853664260"}],"last_reward_claim_height":"163"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET1","shares":"824111402.121220709700166335","reward_history":[{"denom":"ASSET0","index":"0.000002792091306062"},{"denom":"ASSET1","index":"0.000023760392481519"},{"denom":"ASSET10","index":"0.000019330735214415"},{"denom":"ASSET11","index":"0.000023705763948043"},{"denom":"ASSET12","index":"0.000022788595153270"},{"denom":"ASSET13","index":"0.000007460432475948"},{"denom":"ASSET14","index":"0.000021701401606991"},{"denom":"ASSET15","index":"0.000017344296121870"},{"denom":"ASSET16","index":"0.000010515175863945"},{"denom":"ASSET17","index":"0.000008375559402161"},{"denom":"ASSET18","index":"0.000003388923471278"},{"denom":"ASSET2","index":"0.000007222909907971"},{"denom":"ASSET3","index":"0.000001989926471838"},{"denom":"ASSET4","index":"0.000019255294602933"},{"denom":"ASSET5","index":"0.000001551437823125"},{"denom":"ASSET6","index":"0.000006253588147261"},{"denom":"ASSET7","index":"0.000009862028954195"},{"denom":"ASSET8","index":"0.000013562244421912"},{"denom":"ASSET9","index":"0.000005741841810541"}],"last_reward_claim_height":"136"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET17","shares":"531288210.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001198976216272"},{"denom":"ASSET1","index":"0.000010001315625623"},{"denom":"ASSET10","index":"0.000006967712250892"},{"denom":"ASSET11","index":"0.000009674322112094"},{"denom":"ASSET12","index":"0.000008711677656379"},{"denom":"ASSET13","index":"0.000002997949876371"},{"denom":"ASSET14","index":"0.000009037652498526"},{"denom":"ASSET15","index":"0.000006461432574183"},{"denom":"ASSET16","index":"0.000004504564849919"},{"denom":"ASSET17","index":"0.000003199646809949"},{"denom":"ASSET18","index":"0.000001523932387037"},{"denom":"ASSET2","index":"0.000002952109664194"},{"denom":"ASSET3","index":"0.000000862814660308"},{"denom":"ASSET4","index":"0.000008126960283277"},{"denom":"ASSET5","index":"0.000000670285769165"},{"denom":"ASSET6","index":"0.000002728001960218"},{"denom":"ASSET7","index":"0.000004177571336390"},{"denom":"ASSET8","index":"0.000005451929234909"},{"denom":"ASSET9","index":"0.000002354149563130"}],"last_reward_claim_height":"90"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET11","shares":"275020063.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001507638919625"},{"denom":"ASSET1","index":"0.000012569401049902"},{"denom":"ASSET10","index":"0.000008757228353136"},{"denom":"ASSET11","index":"0.000012160184771718"},{"denom":"ASSET12","index":"0.000010949766096248"},{"denom":"ASSET13","index":"0.000003769097299062"},{"denom":"ASSET14","index":"0.000011358982374432"},{"denom":"ASSET15","index":"0.000008124020006893"},{"denom":"ASSET16","index":"0.000005660107258249"},{"denom":"ASSET17","index":"0.000004018934605743"},{"denom":"ASSET18","index":"0.000001912547658039"},{"denom":"ASSET2","index":"0.000003708791742277"},{"denom":"ASSET3","index":"0.000001085500022130"},{"denom":"ASSET4","index":"0.000010217484335287"},{"denom":"ASSET5","index":"0.000000839970255220"},{"denom":"ASSET6","index":"0.000003428801657204"},{"denom":"ASSET7","index":"0.000005250890980065"},{"denom":"ASSET8","index":"0.000006853295774638"},{"denom":"ASSET9","index":"0.000002959279822235"}],"last_reward_claim_height":"74"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET16","shares":"554721491.638211930256578828","reward_history":[{"denom":"ASSET0","index":"0.000004819510775519"},{"denom":"ASSET1","index":"0.000039403767247033"},{"denom":"ASSET10","index":"0.000034368618249032"},{"denom":"ASSET11","index":"0.000041056673813813"},{"denom":"ASSET12","index":"0.000039143604600199"},{"denom":"ASSET13","index":"0.000013264025816369"},{"denom":"ASSET14","index":"0.000037867402744776"},{"denom":"ASSET15","index":"0.000030827798147301"},{"denom":"ASSET16","index":"0.000017473948495290"},{"denom":"ASSET17","index":"0.000014210305839082"},{"denom":"ASSET18","index":"0.000005878424124691"},{"denom":"ASSET2","index":"0.000011900504471474"},{"denom":"ASSET3","index":"0.000003421471968689"},{"denom":"ASSET4","index":"0.000032315799104663"},{"denom":"ASSET5","index":"0.000002685067080734"},{"denom":"ASSET6","index":"0.000010972584355185"},{"denom":"ASSET7","index":"0.000016949352231472"},{"denom":"ASSET8","index":"0.000024486444648256"},{"denom":"ASSET9","index":"0.000009794702493328"}],"last_reward_claim_height":"195"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET1","shares":"623085939.699370522140048552","reward_history":[{"denom":"ASSET0","index":"0.000001538667310820"},{"denom":"ASSET1","index":"0.000012827917927858"},{"denom":"ASSET10","index":"0.000008937244372687"},{"denom":"ASSET11","index":"0.000012409488429871"},{"denom":"ASSET12","index":"0.000011174685151587"},{"denom":"ASSET13","index":"0.000003845530209513"},{"denom":"ASSET14","index":"0.000011592355937882"},{"denom":"ASSET15","index":"0.000008288166520415"},{"denom":"ASSET16","index":"0.000005778727600031"},{"denom":"ASSET17","index":"0.000004103871540546"},{"denom":"ASSET18","index":"0.000001954820673732"},{"denom":"ASSET2","index":"0.000003786730053405"},{"denom":"ASSET3","index":"0.000001107719069920"},{"denom":"ASSET4","index":"0.000010424698644316"},{"denom":"ASSET5","index":"0.000000859620346726"},{"denom":"ASSET6","index":"0.000003499178322240"},{"denom":"ASSET7","index":"0.000005359160034507"},{"denom":"ASSET8","index":"0.000006993045662639"},{"denom":"ASSET9","index":"0.000003020431244761"}],"last_reward_claim_height":"75"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET10","shares":"1665792564.999999998668414870","reward_history":[{"denom":"ASSET0","index":"0.000001538667310820"},{"denom":"ASSET1","index":"0.000012827917927858"},{"denom":"ASSET10","index":"0.000008937244372687"},{"denom":"ASSET11","index":"0.000012409488429871"},{"denom":"ASSET12","index":"0.000011174685151587"},{"denom":"ASSET13","index":"0.000003845530209513"},{"denom":"ASSET14","index":"0.000011592355937882"},{"denom":"ASSET15","index":"0.000008288166520415"},{"denom":"ASSET16","index":"0.000005778727600031"},{"denom":"ASSET17","index":"0.000004103871540546"},{"denom":"ASSET18","index":"0.000001954820673732"},{"denom":"ASSET2","index":"0.000003786730053405"},{"denom":"ASSET3","index":"0.000001107719069920"},{"denom":"ASSET4","index":"0.000010424698644316"},{"denom":"ASSET5","index":"0.000000859620346726"},{"denom":"ASSET6","index":"0.000003499178322240"},{"denom":"ASSET7","index":"0.000005359160034507"},{"denom":"ASSET8","index":"0.000006993045662639"},{"denom":"ASSET9","index":"0.000003020431244761"}],"last_reward_claim_height":"106"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET12","shares":"54468689.591713875165386983","reward_history":[{"denom":"ASSET0","index":"0.000004650537309371"},{"denom":"ASSET1","index":"0.000038046039733821"},{"denom":"ASSET10","index":"0.000033000487516520"},{"denom":"ASSET11","index":"0.000039559590813606"},{"denom":"ASSET12","index":"0.000037667771336994"},{"denom":"ASSET13","index":"0.000012765549405852"},{"denom":"ASSET14","index":"0.000036497515986485"},{"denom":"ASSET15","index":"0.000029618849913905"},{"denom":"ASSET16","index":"0.000016880835340591"},{"denom":"ASSET17","index":"0.000013681253335277"},{"denom":"ASSET18","index":"0.000005680518785577"},{"denom":"ASSET2","index":"0.000011485907586480"},{"denom":"ASSET3","index":"0.000003302456772860"},{"denom":"ASSET4","index":"0.000031190694477338"},{"denom":"ASSET5","index":"0.000002593303317039"},{"denom":"ASSET6","index":"0.000010585760994000"},{"denom":"ASSET7","index":"0.000016350598525650"},{"denom":"ASSET8","index":"0.000023557479628432"},{"denom":"ASSET9","index":"0.000009443226065271"}],"last_reward_claim_height":"189"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET14","shares":"384010745.957954643174953552","reward_history":[{"denom":"ASSET0","index":"0.000001538667310820"},{"denom":"ASSET1","index":"0.000012827917927858"},{"denom":"ASSET10","index":"0.000008937244372687"},{"denom":"ASSET11","index":"0.000012409488429871"},{"denom":"ASSET12","index":"0.000011174685151587"},{"denom":"ASSET13","index":"0.000003845530209513"},{"denom":"ASSET14","index":"0.000011592355937882"},{"denom":"ASSET15","index":"0.000008288166520415"},{"denom":"ASSET16","index":"0.000005778727600031"},{"denom":"ASSET17","index":"0.000004103871540546"},{"denom":"ASSET18","index":"0.000001954820673732"},{"denom":"ASSET2","index":"0.000003786730053405"},{"denom":"ASSET3","index":"0.000001107719069920"},{"denom":"ASSET4","index":"0.000010424698644316"},{"denom":"ASSET5","index":"0.000000859620346726"},{"denom":"ASSET6","index":"0.000003499178322240"},{"denom":"ASSET7","index":"0.000005359160034507"},{"denom":"ASSET8","index":"0.000006993045662639"},{"denom":"ASSET9","index":"0.000003020431244761"}],"last_reward_claim_height":"85"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET4","shares":"85211931.000000000000000000","reward_history":[],"last_reward_claim_height":"4"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET7","shares":"977454814.000000000000000000","reward_history":[],"last_reward_claim_height":"46"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET12","shares":"803089622.000000000000000000","reward_history":[],"last_reward_claim_height":"60"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET11","shares":"166338858.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001488486853561"},{"denom":"ASSET1","index":"0.000012409943784184"},{"denom":"ASSET10","index":"0.000008645838046025"},{"denom":"ASSET11","index":"0.000012005445379346"},{"denom":"ASSET12","index":"0.000010810451131374"},{"denom":"ASSET13","index":"0.000003720376180879"},{"denom":"ASSET14","index":"0.000011214949536212"},{"denom":"ASSET15","index":"0.000008018487089665"},{"denom":"ASSET16","index":"0.000005590655707614"},{"denom":"ASSET17","index":"0.000003970139229188"},{"denom":"ASSET18","index":"0.000001891303352350"},{"denom":"ASSET2","index":"0.000003663191375205"},{"denom":"ASSET3","index":"0.000001071374153354"},{"denom":"ASSET4","index":"0.000010085549624159"},{"denom":"ASSET5","index":"0.000000831702541340"},{"denom":"ASSET6","index":"0.000003384835924059"},{"denom":"ASSET7","index":"0.000005184475396726"},{"denom":"ASSET8","index":"0.000006765467082995"},{"denom":"ASSET9","index":"0.000002921470807498"}],"last_reward_claim_height":"101"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET1","shares":"130829065.084077996635061216","reward_history":[{"denom":"ASSET0","index":"0.000002978674281858"},{"denom":"ASSET1","index":"0.000025310372422717"},{"denom":"ASSET10","index":"0.000020411345436720"},{"denom":"ASSET11","index":"0.000025206262983954"},{"denom":"ASSET12","index":"0.000024139567910062"},{"denom":"ASSET13","index":"0.000007924745788344"},{"denom":"ASSET14","index":"0.000023102636423037"},{"denom":"ASSET15","index":"0.000018346974201526"},{"denom":"ASSET16","index":"0.000011213830154915"},{"denom":"ASSET17","index":"0.000008871351161454"},{"denom":"ASSET18","index":"0.000003625142276595"},{"denom":"ASSET2","index":"0.000007680838181843"},{"denom":"ASSET3","index":"0.000002123796319816"},{"denom":"ASSET4","index":"0.000020514843977806"},{"denom":"ASSET5","index":"0.000001655567492872"},{"denom":"ASSET6","index":"0.000006676037052519"},{"denom":"ASSET7","index":"0.000010510115662832"},{"denom":"ASSET8","index":"0.000014407133239162"},{"denom":"ASSET9","index":"0.000006107008804836"}],"last_reward_claim_height":"148"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET4","shares":"93438333.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001385039568420"},{"denom":"ASSET1","index":"0.000011547928050470"},{"denom":"ASSET10","index":"0.000008045290512347"},{"denom":"ASSET11","index":"0.000011171268467624"},{"denom":"ASSET12","index":"0.000010059084660007"},{"denom":"ASSET13","index":"0.000003461116009305"},{"denom":"ASSET14","index":"0.000010435744242853"},{"denom":"ASSET15","index":"0.000007461023285412"},{"denom":"ASSET16","index":"0.000005202054396163"},{"denom":"ASSET17","index":"0.000003694427456948"},{"denom":"ASSET18","index":"0.000001759721935608"},{"denom":"ASSET2","index":"0.000003408719794369"},{"denom":"ASSET3","index":"0.000000996516691625"},{"denom":"ASSET4","index":"0.000009383865512804"},{"denom":"ASSET5","index":"0.000000774079930102"},{"denom":"ASSET6","index":"0.000003149704543173"},{"denom":"ASSET7","index":"0.000004824406205487"},{"denom":"ASSET8","index":"0.000006294466047200"},{"denom":"ASSET9","index":"0.000002718671529731"}],"last_reward_claim_height":"104"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET7","shares":"192825344.999999895103012320","reward_history":[{"denom":"ASSET0","index":"0.000002978674281858"},{"denom":"ASSET1","index":"0.000025310372422717"},{"denom":"ASSET10","index":"0.000020411345436720"},{"denom":"ASSET11","index":"0.000025206262983954"},{"denom":"ASSET12","index":"0.000024139567910062"},{"denom":"ASSET13","index":"0.000007924745788344"},{"denom":"ASSET14","index":"0.000023102636423037"},{"denom":"ASSET15","index":"0.000018346974201526"},{"denom":"ASSET16","index":"0.000011213830154915"},{"denom":"ASSET17","index":"0.000008871351161454"},{"denom":"ASSET18","index":"0.000003625142276595"},{"denom":"ASSET2","index":"0.000007680838181843"},{"denom":"ASSET3","index":"0.000002123796319816"},{"denom":"ASSET4","index":"0.000020514843977806"},{"denom":"ASSET5","index":"0.000001655567492872"},{"denom":"ASSET6","index":"0.000006676037052519"},{"denom":"ASSET7","index":"0.000010510115662832"},{"denom":"ASSET8","index":"0.000014407133239162"},{"denom":"ASSET9","index":"0.000006107008804836"}],"last_reward_claim_height":"124"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET10","shares":"615817250.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002978674281858"},{"denom":"ASSET1","index":"0.000025310372422717"},{"denom":"ASSET10","index":"0.000020411345436720"},{"denom":"ASSET11","index":"0.000025206262983954"},{"denom":"ASSET12","index":"0.000024139567910062"},{"denom":"ASSET13","index":"0.000007924745788344"},{"denom":"ASSET14","index":"0.000023102636423037"},{"denom":"ASSET15","index":"0.000018346974201526"},{"denom":"ASSET16","index":"0.000011213830154915"},{"denom":"ASSET17","index":"0.000008871351161454"},{"denom":"ASSET18","index":"0.000003625142276595"},{"denom":"ASSET2","index":"0.000007680838181843"},{"denom":"ASSET3","index":"0.000002123796319816"},{"denom":"ASSET4","index":"0.000020514843977806"},{"denom":"ASSET5","index":"0.000001655567492872"},{"denom":"ASSET6","index":"0.000006676037052519"},{"denom":"ASSET7","index":"0.000010510115662832"},{"denom":"ASSET8","index":"0.000014407133239162"},{"denom":"ASSET9","index":"0.000006107008804836"}],"last_reward_claim_height":"177"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET1","shares":"275357117.819713584797394596","reward_history":[{"denom":"ASSET0","index":"0.000001563741356289"},{"denom":"ASSET1","index":"0.000013036816883138"},{"denom":"ASSET10","index":"0.000009082880828100"},{"denom":"ASSET11","index":"0.000012611783735587"},{"denom":"ASSET12","index":"0.000011356772924286"},{"denom":"ASSET13","index":"0.000003908472310400"},{"denom":"ASSET14","index":"0.000011781101207579"},{"denom":"ASSET15","index":"0.000008423480314776"},{"denom":"ASSET16","index":"0.000005872928997340"},{"denom":"ASSET17","index":"0.000004170681814362"},{"denom":"ASSET18","index":"0.000001986659911066"},{"denom":"ASSET2","index":"0.000003848558848473"},{"denom":"ASSET3","index":"0.000001125668219966"},{"denom":"ASSET4","index":"0.000010594814661429"},{"denom":"ASSET5","index":"0.000000873679247744"},{"denom":"ASSET6","index":"0.000003556392613548"},{"denom":"ASSET7","index":"0.000005446486121273"},{"denom":"ASSET8","index":"0.000007106793880903"},{"denom":"ASSET9","index":"0.000003069683843425"}],"last_reward_claim_height":"67"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET4","shares":"615753474.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003342989987813"},{"denom":"ASSET1","index":"0.000028363859076608"},{"denom":"ASSET10","index":"0.000022643596968544"},{"denom":"ASSET11","index":"0.000028187678804911"},{"denom":"ASSET12","index":"0.000026879157824253"},{"denom":"ASSET13","index":"0.000008853292918908"},{"denom":"ASSET14","index":"0.000025870927331183"},{"denom":"ASSET15","index":"0.000020395094195043"},{"denom":"ASSET16","index":"0.000012581780801373"},{"denom":"ASSET17","index":"0.000009877287329505"},{"denom":"ASSET18","index":"0.000004080927248291"},{"denom":"ASSET2","index":"0.000008590241612281"},{"denom":"ASSET3","index":"0.000002384972961476"},{"denom":"ASSET4","index":"0.000022995501297970"},{"denom":"ASSET5","index":"0.000001858071035633"},{"denom":"ASSET6","index":"0.000007500418590266"},{"denom":"ASSET7","index":"0.000011782462758670"},{"denom":"ASSET8","index":"0.000016095075530395"},{"denom":"ASSET9","index":"0.000006831506736707"}],"last_reward_claim_height":"176"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET15","shares":"18416930.000000000497257110","reward_history":[{"denom":"ASSET0","index":"0.000001688791638136"},{"denom":"ASSET1","index":"0.000014080258863939"},{"denom":"ASSET10","index":"0.000009809129194434"},{"denom":"ASSET11","index":"0.000013620783833550"},{"denom":"ASSET12","index":"0.000012265553395360"},{"denom":"ASSET13","index":"0.000004220322334414"},{"denom":"ASSET14","index":"0.000012723923918464"},{"denom":"ASSET15","index":"0.000009096721995874"},{"denom":"ASSET16","index":"0.000006342080828109"},{"denom":"ASSET17","index":"0.000004504180706554"},{"denom":"ASSET18","index":"0.000002144953146672"},{"denom":"ASSET2","index":"0.000004156260911908"},{"denom":"ASSET3","index":"0.000001214958013048"},{"denom":"ASSET4","index":"0.000011442695468341"},{"denom":"ASSET5","index":"0.000000943249221039"},{"denom":"ASSET6","index":"0.000003840371828516"},{"denom":"ASSET7","index":"0.000005881501290436"},{"denom":"ASSET8","index":"0.000007675221120608"},{"denom":"ASSET9","index":"0.000003314626361051"}],"last_reward_claim_height":"114"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET18","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"39"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET0","shares":"283215688.999999998583921555","reward_history":[],"last_reward_claim_height":"31"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET6","shares":"81225813.999999999094428826","reward_history":[],"last_reward_claim_height":"54"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET7","shares":"1151834162.760062558617310976","reward_history":[{"denom":"ASSET0","index":"0.000003113134051861"},{"denom":"ASSET1","index":"0.000026415094552464"},{"denom":"ASSET10","index":"0.000021090707465492"},{"denom":"ASSET11","index":"0.000026251548228726"},{"denom":"ASSET12","index":"0.000025034408517114"},{"denom":"ASSET13","index":"0.000008245703890405"},{"denom":"ASSET14","index":"0.000024093200316600"},{"denom":"ASSET15","index":"0.000018995578271326"},{"denom":"ASSET16","index":"0.000011717396138812"},{"denom":"ASSET17","index":"0.000009199501798709"},{"denom":"ASSET18","index":"0.000003801350346824"},{"denom":"ASSET2","index":"0.000007999912620195"},{"denom":"ASSET3","index":"0.000002221641081089"},{"denom":"ASSET4","index":"0.000021415082747190"},{"denom":"ASSET5","index":"0.000001730738444371"},{"denom":"ASSET6","index":"0.000006985361363625"},{"denom":"ASSET7","index":"0.000010973556930807"},{"denom":"ASSET8","index":"0.000014990236718633"},{"denom":"ASSET9","index":"0.000006362695679170"}],"last_reward_claim_height":"167"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET10","shares":"1010324555.005103755175965160","reward_history":[{"denom":"ASSET0","index":"0.000003113134051861"},{"denom":"ASSET1","index":"0.000026415094552464"},{"denom":"ASSET10","index":"0.000021090707465492"},{"denom":"ASSET11","index":"0.000026251548228726"},{"denom":"ASSET12","index":"0.000025034408517114"},{"denom":"ASSET13","index":"0.000008245703890405"},{"denom":"ASSET14","index":"0.000024093200316600"},{"denom":"ASSET15","index":"0.000018995578271326"},{"denom":"ASSET16","index":"0.000011717396138812"},{"denom":"ASSET17","index":"0.000009199501798709"},{"denom":"ASSET18","index":"0.000003801350346824"},{"denom":"ASSET2","index":"0.000007999912620195"},{"denom":"ASSET3","index":"0.000002221641081089"},{"denom":"ASSET4","index":"0.000021415082747190"},{"denom":"ASSET5","index":"0.000001730738444371"},{"denom":"ASSET6","index":"0.000006985361363625"},{"denom":"ASSET7","index":"0.000010973556930807"},{"denom":"ASSET8","index":"0.000014990236718633"},{"denom":"ASSET9","index":"0.000006362695679170"}],"last_reward_claim_height":"176"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET14","shares":"993104233.690443724838585530","reward_history":[{"denom":"ASSET0","index":"0.000004669971272186"},{"denom":"ASSET1","index":"0.000038231704002672"},{"denom":"ASSET10","index":"0.000033091250938378"},{"denom":"ASSET11","index":"0.000039713430623018"},{"denom":"ASSET12","index":"0.000037806000956516"},{"denom":"ASSET13","index":"0.000012808127444565"},{"denom":"ASSET14","index":"0.000036638483282357"},{"denom":"ASSET15","index":"0.000029705512900617"},{"denom":"ASSET16","index":"0.000016963968278157"},{"denom":"ASSET17","index":"0.000013734289189195"},{"denom":"ASSET18","index":"0.000005705789092476"},{"denom":"ASSET2","index":"0.000011540719323858"},{"denom":"ASSET3","index":"0.000003316647299566"},{"denom":"ASSET4","index":"0.000031336158437819"},{"denom":"ASSET5","index":"0.000002604041216482"},{"denom":"ASSET6","index":"0.000010629036009854"},{"denom":"ASSET7","index":"0.000016420030654063"},{"denom":"ASSET8","index":"0.000023629608551740"},{"denom":"ASSET9","index":"0.000009482511489526"}],"last_reward_claim_height":"198"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET16","shares":"170494797.239071170078968526","reward_history":[{"denom":"ASSET0","index":"0.000004669971272186"},{"denom":"ASSET1","index":"0.000038231704002672"},{"denom":"ASSET10","index":"0.000033091250938378"},{"denom":"ASSET11","index":"0.000039713430623018"},{"denom":"ASSET12","index":"0.000037806000956516"},{"denom":"ASSET13","index":"0.000012808127444565"},{"denom":"ASSET14","index":"0.000036638483282357"},{"denom":"ASSET15","index":"0.000029705512900617"},{"denom":"ASSET16","index":"0.000016963968278157"},{"denom":"ASSET17","index":"0.000013734289189195"},{"denom":"ASSET18","index":"0.000005705789092476"},{"denom":"ASSET2","index":"0.000011540719323858"},{"denom":"ASSET3","index":"0.000003316647299566"},{"denom":"ASSET4","index":"0.000031336158437819"},{"denom":"ASSET5","index":"0.000002604041216482"},{"denom":"ASSET6","index":"0.000010629036009854"},{"denom":"ASSET7","index":"0.000016420030654063"},{"denom":"ASSET8","index":"0.000023629608551740"},{"denom":"ASSET9","index":"0.000009482511489526"}],"last_reward_claim_height":"186"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET1","shares":"1000146666.781745030000000000","reward_history":[{"denom":"ASSET0","index":"0.000003023961266495"},{"denom":"ASSET1","index":"0.000025674667559579"},{"denom":"ASSET10","index":"0.000020567435721356"},{"denom":"ASSET11","index":"0.000025532965784321"},{"denom":"ASSET12","index":"0.000024383768132692"},{"denom":"ASSET13","index":"0.000008022807352722"},{"denom":"ASSET14","index":"0.000023423766496233"},{"denom":"ASSET15","index":"0.000018512228577533"},{"denom":"ASSET16","index":"0.000011384524743973"},{"denom":"ASSET17","index":"0.000008960010456843"},{"denom":"ASSET18","index":"0.000003688974211121"},{"denom":"ASSET2","index":"0.000007780619396113"},{"denom":"ASSET3","index":"0.000002157718690670"},{"denom":"ASSET4","index":"0.000020813357966886"},{"denom":"ASSET5","index":"0.000001681323481152"},{"denom":"ASSET6","index":"0.000006783427048921"},{"denom":"ASSET7","index":"0.000010664665966441"},{"denom":"ASSET8","index":"0.000014584270248941"},{"denom":"ASSET9","index":"0.000006187655866052"}],"last_reward_claim_height":"169"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET5","shares":"293924525.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003023961266495"},{"denom":"ASSET1","index":"0.000025674667559579"},{"denom":"ASSET10","index":"0.000020567435721356"},{"denom":"ASSET11","index":"0.000025532965784321"},{"denom":"ASSET12","index":"0.000024383768132692"},{"denom":"ASSET13","index":"0.000008022807352722"},{"denom":"ASSET14","index":"0.000023423766496233"},{"denom":"ASSET15","index":"0.000018512228577533"},{"denom":"ASSET16","index":"0.000011384524743973"},{"denom":"ASSET17","index":"0.000008960010456843"},{"denom":"ASSET18","index":"0.000003688974211121"},{"denom":"ASSET2","index":"0.000007780619396113"},{"denom":"ASSET3","index":"0.000002157718690670"},{"denom":"ASSET4","index":"0.000020813357966886"},{"denom":"ASSET5","index":"0.000001681323481152"},{"denom":"ASSET6","index":"0.000006783427048921"},{"denom":"ASSET7","index":"0.000010664665966441"},{"denom":"ASSET8","index":"0.000014584270248941"},{"denom":"ASSET9","index":"0.000006187655866052"}],"last_reward_claim_height":"129"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET9","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001486431692511"},{"denom":"ASSET1","index":"0.000012397696164316"},{"denom":"ASSET10","index":"0.000008637613387551"},{"denom":"ASSET11","index":"0.000011993186507636"},{"denom":"ASSET12","index":"0.000010799842650204"},{"denom":"ASSET13","index":"0.000003716482933529"},{"denom":"ASSET14","index":"0.000011203544902380"},{"denom":"ASSET15","index":"0.000008010260087670"},{"denom":"ASSET16","index":"0.000005584816956599"},{"denom":"ASSET17","index":"0.000003965970925374"},{"denom":"ASSET18","index":"0.000001889326540182"},{"denom":"ASSET2","index":"0.000003659157213720"},{"denom":"ASSET3","index":"0.000001070618372770"},{"denom":"ASSET4","index":"0.000010074793405297"},{"denom":"ASSET5","index":"0.000000830819234978"},{"denom":"ASSET6","index":"0.000003381410064224"},{"denom":"ASSET7","index":"0.000005179499895414"},{"denom":"ASSET8","index":"0.000006757975701421"},{"denom":"ASSET9","index":"0.000002918767283230"}],"last_reward_claim_height":"71"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET12","shares":"69909052.000000013282719880","reward_history":[{"denom":"ASSET0","index":"0.000001486431692511"},{"denom":"ASSET1","index":"0.000012397696164316"},{"denom":"ASSET10","index":"0.000008637613387551"},{"denom":"ASSET11","index":"0.000011993186507636"},{"denom":"ASSET12","index":"0.000010799842650204"},{"denom":"ASSET13","index":"0.000003716482933529"},{"denom":"ASSET14","index":"0.000011203544902380"},{"denom":"ASSET15","index":"0.000008010260087670"},{"denom":"ASSET16","index":"0.000005584816956599"},{"denom":"ASSET17","index":"0.000003965970925374"},{"denom":"ASSET18","index":"0.000001889326540182"},{"denom":"ASSET2","index":"0.000003659157213720"},{"denom":"ASSET3","index":"0.000001070618372770"},{"denom":"ASSET4","index":"0.000010074793405297"},{"denom":"ASSET5","index":"0.000000830819234978"},{"denom":"ASSET6","index":"0.000003381410064224"},{"denom":"ASSET7","index":"0.000005179499895414"},{"denom":"ASSET8","index":"0.000006757975701421"},{"denom":"ASSET9","index":"0.000002918767283230"}],"last_reward_claim_height":"69"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET4","shares":"979864358.718715259902958864","reward_history":[{"denom":"ASSET0","index":"0.000003488279034648"},{"denom":"ASSET1","index":"0.000029592208548275"},{"denom":"ASSET10","index":"0.000023577626976592"},{"denom":"ASSET11","index":"0.000029395914355993"},{"denom":"ASSET12","index":"0.000028007798530295"},{"denom":"ASSET13","index":"0.000009231498766276"},{"denom":"ASSET14","index":"0.000026986732997785"},{"denom":"ASSET15","index":"0.000021244630549189"},{"denom":"ASSET16","index":"0.000013129960095172"},{"denom":"ASSET17","index":"0.000010292381952670"},{"denom":"ASSET18","index":"0.000004261641431672"},{"denom":"ASSET2","index":"0.000008958343988321"},{"denom":"ASSET3","index":"0.000002489657102823"},{"denom":"ASSET4","index":"0.000023991917258738"},{"denom":"ASSET5","index":"0.000001939742890351"},{"denom":"ASSET6","index":"0.000007829259808535"},{"denom":"ASSET7","index":"0.000012294264842111"},{"denom":"ASSET8","index":"0.000016782088113605"},{"denom":"ASSET9","index":"0.000007125719490615"}],"last_reward_claim_height":"144"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET11","shares":"18191976.958064805994825346","reward_history":[{"denom":"ASSET0","index":"0.000001789525520762"},{"denom":"ASSET1","index":"0.000014923544215299"},{"denom":"ASSET10","index":"0.000010397506905977"},{"denom":"ASSET11","index":"0.000014436898494348"},{"denom":"ASSET12","index":"0.000013000171779235"},{"denom":"ASSET13","index":"0.000004474200642702"},{"denom":"ASSET14","index":"0.000013486043818595"},{"denom":"ASSET15","index":"0.000009642393672833"},{"denom":"ASSET16","index":"0.000006722519347127"},{"denom":"ASSET17","index":"0.000004774389100140"},{"denom":"ASSET18","index":"0.000002273850196939"},{"denom":"ASSET2","index":"0.000004405342981073"},{"denom":"ASSET3","index":"0.000001288179849576"},{"denom":"ASSET4","index":"0.000012128232625798"},{"denom":"ASSET5","index":"0.000001000370297599"},{"denom":"ASSET6","index":"0.000004071112533615"},{"denom":"ASSET7","index":"0.000006234326262993"},{"denom":"ASSET8","index":"0.000008135261932908"},{"denom":"ASSET9","index":"0.000003514061787852"}],"last_reward_claim_height":"73"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET17","shares":"295399898.999999988479403939","reward_history":[{"denom":"ASSET0","index":"0.000003488279034648"},{"denom":"ASSET1","index":"0.000029592208548275"},{"denom":"ASSET10","index":"0.000023577626976592"},{"denom":"ASSET11","index":"0.000029395914355993"},{"denom":"ASSET12","index":"0.000028007798530295"},{"denom":"ASSET13","index":"0.000009231498766276"},{"denom":"ASSET14","index":"0.000026986732997785"},{"denom":"ASSET15","index":"0.000021244630549189"},{"denom":"ASSET16","index":"0.000013129960095172"},{"denom":"ASSET17","index":"0.000010292381952670"},{"denom":"ASSET18","index":"0.000004261641431672"},{"denom":"ASSET2","index":"0.000008958343988321"},{"denom":"ASSET3","index":"0.000002489657102823"},{"denom":"ASSET4","index":"0.000023991917258738"},{"denom":"ASSET5","index":"0.000001939742890351"},{"denom":"ASSET6","index":"0.000007829259808535"},{"denom":"ASSET7","index":"0.000012294264842111"},{"denom":"ASSET8","index":"0.000016782088113605"},{"denom":"ASSET9","index":"0.000007125719490615"}],"last_reward_claim_height":"175"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET1","shares":"709511378.000000070951137800","reward_history":[{"denom":"ASSET0","index":"0.000003015423229771"},{"denom":"ASSET1","index":"0.000025588098096649"},{"denom":"ASSET10","index":"0.000020460473772645"},{"denom":"ASSET11","index":"0.000025438043766359"},{"denom":"ASSET12","index":"0.000024273358860204"},{"denom":"ASSET13","index":"0.000007991752317173"},{"denom":"ASSET14","index":"0.000023342063892494"},{"denom":"ASSET15","index":"0.000018422728556898"},{"denom":"ASSET16","index":"0.000011348811151398"},{"denom":"ASSET17","index":"0.000008919790197810"},{"denom":"ASSET18","index":"0.000003679502338318"},{"denom":"ASSET2","index":"0.000007752126098631"},{"denom":"ASSET3","index":"0.000002151933074669"},{"denom":"ASSET4","index":"0.000020744635257959"},{"denom":"ASSET5","index":"0.000001676458472807"},{"denom":"ASSET6","index":"0.000006763790928604"},{"denom":"ASSET7","index":"0.000010629564741383"},{"denom":"ASSET8","index":"0.000014527278079751"},{"denom":"ASSET9","index":"0.000006165283413682"}],"last_reward_claim_height":"168"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET5","shares":"196361942.362900582295461573","reward_history":[{"denom":"ASSET0","index":"0.000005033700679369"},{"denom":"ASSET1","index":"0.000041280717822700"},{"denom":"ASSET10","index":"0.000035484557863540"},{"denom":"ASSET11","index":"0.000042749382986800"},{"denom":"ASSET12","index":"0.000040658499244399"},{"denom":"ASSET13","index":"0.000013763551421232"},{"denom":"ASSET14","index":"0.000039440630266686"},{"denom":"ASSET15","index":"0.000031874481758322"},{"denom":"ASSET16","index":"0.000018321915952545"},{"denom":"ASSET17","index":"0.000014780229724773"},{"denom":"ASSET18","index":"0.000006154144789227"},{"denom":"ASSET2","index":"0.000012457673673982"},{"denom":"ASSET3","index":"0.000003576618316768"},{"denom":"ASSET4","index":"0.000033815746124859"},{"denom":"ASSET5","index":"0.000002806622008559"},{"denom":"ASSET6","index":"0.000011449929287096"},{"denom":"ASSET7","index":"0.000017696914726492"},{"denom":"ASSET8","index":"0.000025372002576679"},{"denom":"ASSET9","index":"0.000010217363519491"}],"last_reward_claim_height":"192"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET7","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"20"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET8","shares":"468940014.212663290293277891","reward_history":[{"denom":"ASSET0","index":"0.000003452635056994"},{"denom":"ASSET1","index":"0.000029280443630050"},{"denom":"ASSET10","index":"0.000023297581891953"},{"denom":"ASSET11","index":"0.000029078046899152"},{"denom":"ASSET12","index":"0.000027688393753974"},{"denom":"ASSET13","index":"0.000009130247174920"},{"denom":"ASSET14","index":"0.000026700258191979"},{"denom":"ASSET15","index":"0.000020998119885469"},{"denom":"ASSET16","index":"0.000012993858989816"},{"denom":"ASSET17","index":"0.000010174919177657"},{"denom":"ASSET18","index":"0.000004220034662939"},{"denom":"ASSET2","index":"0.000008861755768133"},{"denom":"ASSET3","index":"0.000002464736347038"},{"denom":"ASSET4","index":"0.000023740327943060"},{"denom":"ASSET5","index":"0.000001919615043943"},{"denom":"ASSET6","index":"0.000007749671229698"},{"denom":"ASSET7","index":"0.000012165961282812"},{"denom":"ASSET8","index":"0.000016598407083950"},{"denom":"ASSET9","index":"0.000007048985746822"}],"last_reward_claim_height":"153"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET10","shares":"559215434.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003452635056994"},{"denom":"ASSET1","index":"0.000029280443630050"},{"denom":"ASSET10","index":"0.000023297581891953"},{"denom":"ASSET11","index":"0.000029078046899152"},{"denom":"ASSET12","index":"0.000027688393753974"},{"denom":"ASSET13","index":"0.000009130247174920"},{"denom":"ASSET14","index":"0.000026700258191979"},{"denom":"ASSET15","index":"0.000020998119885469"},{"denom":"ASSET16","index":"0.000012993858989816"},{"denom":"ASSET17","index":"0.000010174919177657"},{"denom":"ASSET18","index":"0.000004220034662939"},{"denom":"ASSET2","index":"0.000008861755768133"},{"denom":"ASSET3","index":"0.000002464736347038"},{"denom":"ASSET4","index":"0.000023740327943060"},{"denom":"ASSET5","index":"0.000001919615043943"},{"denom":"ASSET6","index":"0.000007749671229698"},{"denom":"ASSET7","index":"0.000012165961282812"},{"denom":"ASSET8","index":"0.000016598407083950"},{"denom":"ASSET9","index":"0.000007048985746822"}],"last_reward_claim_height":"170"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET18","shares":"399023564.021156609992264388","reward_history":[{"denom":"ASSET0","index":"0.000003452635056994"},{"denom":"ASSET1","index":"0.000029280443630050"},{"denom":"ASSET10","index":"0.000023297581891953"},{"denom":"ASSET11","index":"0.000029078046899152"},{"denom":"ASSET12","index":"0.000027688393753974"},{"denom":"ASSET13","index":"0.000009130247174920"},{"denom":"ASSET14","index":"0.000026700258191979"},{"denom":"ASSET15","index":"0.000020998119885469"},{"denom":"ASSET16","index":"0.000012993858989816"},{"denom":"ASSET17","index":"0.000010174919177657"},{"denom":"ASSET18","index":"0.000004220034662939"},{"denom":"ASSET2","index":"0.000008861755768133"},{"denom":"ASSET3","index":"0.000002464736347038"},{"denom":"ASSET4","index":"0.000023740327943060"},{"denom":"ASSET5","index":"0.000001919615043943"},{"denom":"ASSET6","index":"0.000007749671229698"},{"denom":"ASSET7","index":"0.000012165961282812"},{"denom":"ASSET8","index":"0.000016598407083950"},{"denom":"ASSET9","index":"0.000007048985746822"}],"last_reward_claim_height":"139"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET6","shares":"25633434.000000000000000000","reward_history":[],"last_reward_claim_height":"44"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET8","shares":"623937181.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001835550145227"},{"denom":"ASSET1","index":"0.000015324623289081"},{"denom":"ASSET10","index":"0.000010676536631006"},{"denom":"ASSET11","index":"0.000014825027987456"},{"denom":"ASSET12","index":"0.000013348446318211"},{"denom":"ASSET13","index":"0.000004592576069005"},{"denom":"ASSET14","index":"0.000013848041619836"},{"denom":"ASSET15","index":"0.000009899388384035"},{"denom":"ASSET16","index":"0.000006901816574290"},{"denom":"ASSET17","index":"0.000004903435367793"},{"denom":"ASSET18","index":"0.000002335145446851"},{"denom":"ASSET2","index":"0.000004522262656184"},{"denom":"ASSET3","index":"0.000001321152019851"},{"denom":"ASSET4","index":"0.000012452875481226"},{"denom":"ASSET5","index":"0.000001025095544814"},{"denom":"ASSET6","index":"0.000004178097003954"},{"denom":"ASSET7","index":"0.000006402221272666"},{"denom":"ASSET8","index":"0.000008352493301969"},{"denom":"ASSET9","index":"0.000003608188289508"}],"last_reward_claim_height":"72"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET8","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"27"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET10","shares":"785983595.791782536380055408","reward_history":[{"denom":"ASSET0","index":"0.000003371223111771"},{"denom":"ASSET1","index":"0.000028586584995448"},{"denom":"ASSET10","index":"0.000022716281614844"},{"denom":"ASSET11","index":"0.000028381809067472"},{"denom":"ASSET12","index":"0.000027011101270499"},{"denom":"ASSET13","index":"0.000008910504058238"},{"denom":"ASSET14","index":"0.000026065694327630"},{"denom":"ASSET15","index":"0.000020479714095343"},{"denom":"ASSET16","index":"0.000012688778091614"},{"denom":"ASSET17","index":"0.000009925875585388"},{"denom":"ASSET18","index":"0.000004122881217339"},{"denom":"ASSET2","index":"0.000008649339803247"},{"denom":"ASSET3","index":"0.000002407313457267"},{"denom":"ASSET4","index":"0.000023177863483423"},{"denom":"ASSET5","index":"0.000001874397047373"},{"denom":"ASSET6","index":"0.000007568278053481"},{"denom":"ASSET7","index":"0.000011878402488901"},{"denom":"ASSET8","index":"0.000016198768839280"},{"denom":"ASSET9","index":"0.000006880150170591"}],"last_reward_claim_height":"133"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET5","shares":"69553164.793027077710655513","reward_history":[{"denom":"ASSET0","index":"0.000001519402004985"},{"denom":"ASSET1","index":"0.000012669186594649"},{"denom":"ASSET10","index":"0.000008826466179926"},{"denom":"ASSET11","index":"0.000012255973562605"},{"denom":"ASSET12","index":"0.000011036700348729"},{"denom":"ASSET13","index":"0.000003798237040326"},{"denom":"ASSET14","index":"0.000011448841492233"},{"denom":"ASSET15","index":"0.000008185476833202"},{"denom":"ASSET16","index":"0.000005707270529482"},{"denom":"ASSET17","index":"0.000004053346512768"},{"denom":"ASSET18","index":"0.000001930471259949"},{"denom":"ASSET2","index":"0.000003739819114914"},{"denom":"ASSET3","index":"0.000001093862254735"},{"denom":"ASSET4","index":"0.000010296025367816"},{"denom":"ASSET5","index":"0.000000848935723420"},{"denom":"ASSET6","index":"0.000003455768651901"},{"denom":"ASSET7","index":"0.000005292985608899"},{"denom":"ASSET8","index":"0.000006906177861104"},{"denom":"ASSET9","index":"0.000002983065805906"}],"last_reward_claim_height":"74"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET7","shares":"6329567.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003090388166914"},{"denom":"ASSET1","index":"0.000026235396530584"},{"denom":"ASSET10","index":"0.000021016328726441"},{"denom":"ASSET11","index":"0.000026091077525301"},{"denom":"ASSET12","index":"0.000024916432469284"},{"denom":"ASSET13","index":"0.000008198423394567"},{"denom":"ASSET14","index":"0.000023935350029219"},{"denom":"ASSET15","index":"0.000018916111125702"},{"denom":"ASSET16","index":"0.000011633439861257"},{"denom":"ASSET17","index":"0.000009156707623184"},{"denom":"ASSET18","index":"0.000003769226369030"},{"denom":"ASSET2","index":"0.000007950992094695"},{"denom":"ASSET3","index":"0.000002205065882760"},{"denom":"ASSET4","index":"0.000021268551776440"},{"denom":"ASSET5","index":"0.000001717872208784"},{"denom":"ASSET6","index":"0.000006931889619894"},{"denom":"ASSET7","index":"0.000010897757198785"},{"denom":"ASSET8","index":"0.000014903243728132"},{"denom":"ASSET9","index":"0.000006323427167640"}],"last_reward_claim_height":"134"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET1","shares":"184791825.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003032310940473"},{"denom":"ASSET1","index":"0.000025733484746235"},{"denom":"ASSET10","index":"0.000020566326171769"},{"denom":"ASSET11","index":"0.000025579130700492"},{"denom":"ASSET12","index":"0.000024402998631681"},{"denom":"ASSET13","index":"0.000008035434808363"},{"denom":"ASSET14","index":"0.000023473377840860"},{"denom":"ASSET15","index":"0.000018519821992016"},{"denom":"ASSET16","index":"0.000011413808805814"},{"denom":"ASSET17","index":"0.000008967671528488"},{"denom":"ASSET18","index":"0.000003701450923042"},{"denom":"ASSET2","index":"0.000007795399667781"},{"denom":"ASSET3","index":"0.000002164126947351"},{"denom":"ASSET4","index":"0.000020862528644023"},{"denom":"ASSET5","index":"0.000001685967393794"},{"denom":"ASSET6","index":"0.000006803442800114"},{"denom":"ASSET7","index":"0.000010689840259007"},{"denom":"ASSET8","index":"0.000014607710652032"},{"denom":"ASSET9","index":"0.000006199747658625"}],"last_reward_claim_height":"141"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET3","shares":"106955269.000000000972150393","reward_history":[],"last_reward_claim_height":"10"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET10","shares":"934505724.336423304749439714","reward_history":[{"denom":"ASSET0","index":"0.000004580582438832"},{"denom":"ASSET1","index":"0.000037483984288658"},{"denom":"ASSET10","index":"0.000032499660214303"},{"denom":"ASSET11","index":"0.000038965700064047"},{"denom":"ASSET12","index":"0.000037103230568829"},{"denom":"ASSET13","index":"0.000012572310863615"},{"denom":"ASSET14","index":"0.000035948606907820"},{"denom":"ASSET15","index":"0.000029169852951154"},{"denom":"ASSET16","index":"0.000016631043190223"},{"denom":"ASSET17","index":"0.000013476854922794"},{"denom":"ASSET18","index":"0.000005595251304571"},{"denom":"ASSET2","index":"0.000011316458569232"},{"denom":"ASSET3","index":"0.000003252952025465"},{"denom":"ASSET4","index":"0.000030728353795456"},{"denom":"ASSET5","index":"0.000002554509941654"},{"denom":"ASSET6","index":"0.000010426461044140"},{"denom":"ASSET7","index":"0.000016105643609974"},{"denom":"ASSET8","index":"0.000023198729331950"},{"denom":"ASSET9","index":"0.000009302269752593"}],"last_reward_claim_height":"192"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET14","shares":"142328086.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001518878942956"},{"denom":"ASSET1","index":"0.000012665267621292"},{"denom":"ASSET10","index":"0.000008823986077449"},{"denom":"ASSET11","index":"0.000012252067733139"},{"denom":"ASSET12","index":"0.000011032961258059"},{"denom":"ASSET13","index":"0.000003796959064490"},{"denom":"ASSET14","index":"0.000011445207974612"},{"denom":"ASSET15","index":"0.000008182978177143"},{"denom":"ASSET16","index":"0.000005705208605625"},{"denom":"ASSET17","index":"0.000004051932467214"},{"denom":"ASSET18","index":"0.000001930172487911"},{"denom":"ASSET2","index":"0.000003738815596953"},{"denom":"ASSET3","index":"0.000001093764409816"},{"denom":"ASSET4","index":"0.000010292823511460"},{"denom":"ASSET5","index":"0.000000848799308881"},{"denom":"ASSET6","index":"0.000003454770460461"},{"denom":"ASSET7","index":"0.000005291055545873"},{"denom":"ASSET8","index":"0.000006904298477127"},{"denom":"ASSET9","index":"0.000002981997347372"}],"last_reward_claim_height":"90"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET17","shares":"25431691.000000000178021837","reward_history":[{"denom":"ASSET0","index":"0.000001518878942956"},{"denom":"ASSET1","index":"0.000012665267621292"},{"denom":"ASSET10","index":"0.000008823986077449"},{"denom":"ASSET11","index":"0.000012252067733139"},{"denom":"ASSET12","index":"0.000011032961258059"},{"denom":"ASSET13","index":"0.000003796959064490"},{"denom":"ASSET14","index":"0.000011445207974612"},{"denom":"ASSET15","index":"0.000008182978177143"},{"denom":"ASSET16","index":"0.000005705208605625"},{"denom":"ASSET17","index":"0.000004051932467214"},{"denom":"ASSET18","index":"0.000001930172487911"},{"denom":"ASSET2","index":"0.000003738815596953"},{"denom":"ASSET3","index":"0.000001093764409816"},{"denom":"ASSET4","index":"0.000010292823511460"},{"denom":"ASSET5","index":"0.000000848799308881"},{"denom":"ASSET6","index":"0.000003454770460461"},{"denom":"ASSET7","index":"0.000005291055545873"},{"denom":"ASSET8","index":"0.000006904298477127"},{"denom":"ASSET9","index":"0.000002981997347372"}],"last_reward_claim_height":"116"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET0","shares":"62212605.000000013360174125","reward_history":[{"denom":"ASSET0","index":"0.000001387661284101"},{"denom":"ASSET1","index":"0.000011573014587468"},{"denom":"ASSET10","index":"0.000008062929395432"},{"denom":"ASSET11","index":"0.000011195232526081"},{"denom":"ASSET12","index":"0.000010081345808669"},{"denom":"ASSET13","index":"0.000003469153210252"},{"denom":"ASSET14","index":"0.000010458456853962"},{"denom":"ASSET15","index":"0.000007477132344649"},{"denom":"ASSET16","index":"0.000005213124040705"},{"denom":"ASSET17","index":"0.000003702666811251"},{"denom":"ASSET18","index":"0.000001763430297203"},{"denom":"ASSET2","index":"0.000003416142938760"},{"denom":"ASSET3","index":"0.000000999142965196"},{"denom":"ASSET4","index":"0.000009404961585085"},{"denom":"ASSET5","index":"0.000000775694605619"},{"denom":"ASSET6","index":"0.000003156459710063"},{"denom":"ASSET7","index":"0.000004834670963223"},{"denom":"ASSET8","index":"0.000006308893323556"},{"denom":"ASSET9","index":"0.000002724996361089"}],"last_reward_claim_height":"113"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET3","shares":"682688273.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002847838387483"},{"denom":"ASSET1","index":"0.000024182680336096"},{"denom":"ASSET10","index":"0.000019393227963423"},{"denom":"ASSET11","index":"0.000024054653395269"},{"denom":"ASSET12","index":"0.000022982316432831"},{"denom":"ASSET13","index":"0.000007558836235579"},{"denom":"ASSET14","index":"0.000022064079622497"},{"denom":"ASSET15","index":"0.000017450899901336"},{"denom":"ASSET16","index":"0.000010721434414440"},{"denom":"ASSET17","index":"0.000008446187739031"},{"denom":"ASSET18","index":"0.000003472449339717"},{"denom":"ASSET2","index":"0.000007330038539196"},{"denom":"ASSET3","index":"0.000002031951160271"},{"denom":"ASSET4","index":"0.000019603371773062"},{"denom":"ASSET5","index":"0.000001583403578691"},{"denom":"ASSET6","index":"0.000006387295602350"},{"denom":"ASSET7","index":"0.000010043914419286"},{"denom":"ASSET8","index":"0.000013741733556815"},{"denom":"ASSET9","index":"0.000005829813216311"}],"last_reward_claim_height":"128"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET7","shares":"557255791.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002847838387483"},{"denom":"ASSET1","index":"0.000024182680336096"},{"denom":"ASSET10","index":"0.000019393227963423"},{"denom":"ASSET11","index":"0.000024054653395269"},{"denom":"ASSET12","index":"0.000022982316432831"},{"denom":"ASSET13","index":"0.000007558836235579"},{"denom":"ASSET14","index":"0.000022064079622497"},{"denom":"ASSET15","index":"0.000017450899901336"},{"denom":"ASSET16","index":"0.000010721434414440"},{"denom":"ASSET17","index":"0.000008446187739031"},{"denom":"ASSET18","index":"0.000003472449339717"},{"denom":"ASSET2","index":"0.000007330038539196"},{"denom":"ASSET3","index":"0.000002031951160271"},{"denom":"ASSET4","index":"0.000019603371773062"},{"denom":"ASSET5","index":"0.000001583403578691"},{"denom":"ASSET6","index":"0.000006387295602350"},{"denom":"ASSET7","index":"0.000010043914419286"},{"denom":"ASSET8","index":"0.000013741733556815"},{"denom":"ASSET9","index":"0.000005829813216311"}],"last_reward_claim_height":"165"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET16","shares":"411548926.000000000000000000","reward_history":[],"last_reward_claim_height":"57"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET0","shares":"111744623.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001740203165372"},{"denom":"ASSET1","index":"0.000014506985633466"},{"denom":"ASSET10","index":"0.000010106727386233"},{"denom":"ASSET11","index":"0.000014033828203465"},{"denom":"ASSET12","index":"0.000012637643303754"},{"denom":"ASSET13","index":"0.000004348390877948"},{"denom":"ASSET14","index":"0.000013109742216014"},{"denom":"ASSET15","index":"0.000009373174592071"},{"denom":"ASSET16","index":"0.000006535288529808"},{"denom":"ASSET17","index":"0.000004640541774324"},{"denom":"ASSET18","index":"0.000002210185042151"},{"denom":"ASSET2","index":"0.000004281704260297"},{"denom":"ASSET3","index":"0.000001252226487004"},{"denom":"ASSET4","index":"0.000011789770593618"},{"denom":"ASSET5","index":"0.000000971719285773"},{"denom":"ASSET6","index":"0.000003956739313965"},{"denom":"ASSET7","index":"0.000006060014064326"},{"denom":"ASSET8","index":"0.000007908186039228"},{"denom":"ASSET9","index":"0.000003415836748573"}],"last_reward_claim_height":"113"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET14","shares":"1409069211.533073449120399362","reward_history":[{"denom":"ASSET0","index":"0.000003351161845380"},{"denom":"ASSET1","index":"0.000028416485386018"},{"denom":"ASSET10","index":"0.000022605276372189"},{"denom":"ASSET11","index":"0.000028218825237526"},{"denom":"ASSET12","index":"0.000026868556551399"},{"denom":"ASSET13","index":"0.000008859853422879"},{"denom":"ASSET14","index":"0.000025912194276628"},{"denom":"ASSET15","index":"0.000020375555431981"},{"denom":"ASSET16","index":"0.000012611404420708"},{"denom":"ASSET17","index":"0.000009873044520717"},{"denom":"ASSET18","index":"0.000004095473642305"},{"denom":"ASSET2","index":"0.000008599384819082"},{"denom":"ASSET3","index":"0.000002391571176633"},{"denom":"ASSET4","index":"0.000023040021162794"},{"denom":"ASSET5","index":"0.000001862805125681"},{"denom":"ASSET6","index":"0.000007520693553142"},{"denom":"ASSET7","index":"0.000011806544930596"},{"denom":"ASSET8","index":"0.000016107343127742"},{"denom":"ASSET9","index":"0.000006840485865179"}],"last_reward_claim_height":"166"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET9","shares":"515001825.000000007725027375","reward_history":[],"last_reward_claim_height":"55"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET11","shares":"246926205.735113216916036152","reward_history":[{"denom":"ASSET0","index":"0.000003408995344605"},{"denom":"ASSET1","index":"0.000028940875589883"},{"denom":"ASSET10","index":"0.000023121939135123"},{"denom":"ASSET11","index":"0.000028765460883304"},{"denom":"ASSET12","index":"0.000027437813762181"},{"denom":"ASSET13","index":"0.000009035078182388"},{"denom":"ASSET14","index":"0.000026397840013038"},{"denom":"ASSET15","index":"0.000020822021063845"},{"denom":"ASSET16","index":"0.000012835900360827"},{"denom":"ASSET17","index":"0.000010082289518918"},{"denom":"ASSET18","index":"0.000004163537456367"},{"denom":"ASSET2","index":"0.000008764373535196"},{"denom":"ASSET3","index":"0.000002432999591430"},{"denom":"ASSET4","index":"0.000023461370966582"},{"denom":"ASSET5","index":"0.000001895172356369"},{"denom":"ASSET6","index":"0.000007651446569151"},{"denom":"ASSET7","index":"0.000012022926111771"},{"denom":"ASSET8","index":"0.000016426068411072"},{"denom":"ASSET9","index":"0.000006969965423669"}],"last_reward_claim_height":"170"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET9","shares":"921207596.633725433454836622","reward_history":[{"denom":"ASSET0","index":"0.000002975317591563"},{"denom":"ASSET1","index":"0.000025265738469637"},{"denom":"ASSET10","index":"0.000020245724387946"},{"denom":"ASSET11","index":"0.000025128558675417"},{"denom":"ASSET12","index":"0.000023998925764885"},{"denom":"ASSET13","index":"0.000007895668684136"},{"denom":"ASSET14","index":"0.000023051238668493"},{"denom":"ASSET15","index":"0.000018221178423268"},{"denom":"ASSET16","index":"0.000011202197653725"},{"denom":"ASSET17","index":"0.000008818540737002"},{"denom":"ASSET18","index":"0.000003629428323701"},{"denom":"ASSET2","index":"0.000007657107369447"},{"denom":"ASSET3","index":"0.000002122660280404"},{"denom":"ASSET4","index":"0.000020482509156357"},{"denom":"ASSET5","index":"0.000001654309607539"},{"denom":"ASSET6","index":"0.000006675356935536"},{"denom":"ASSET7","index":"0.000010494215679887"},{"denom":"ASSET8","index":"0.000014353927855523"},{"denom":"ASSET9","index":"0.000006089535217587"}],"last_reward_claim_height":"137"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET11","shares":"1000264272.106682652000000000","reward_history":[{"denom":"ASSET0","index":"0.000004660804205407"},{"denom":"ASSET1","index":"0.000038057537045202"},{"denom":"ASSET10","index":"0.000033236768377738"},{"denom":"ASSET11","index":"0.000039701821838753"},{"denom":"ASSET12","index":"0.000037824613654517"},{"denom":"ASSET13","index":"0.000012834687122975"},{"denom":"ASSET14","index":"0.000036631919493883"},{"denom":"ASSET15","index":"0.000029815074691348"},{"denom":"ASSET16","index":"0.000016881501899894"},{"denom":"ASSET17","index":"0.000013727591369636"},{"denom":"ASSET18","index":"0.000005691132396522"},{"denom":"ASSET2","index":"0.000011490151771186"},{"denom":"ASSET3","index":"0.000003308008506911"},{"denom":"ASSET4","index":"0.000031222727917954"},{"denom":"ASSET5","index":"0.000002599510414053"},{"denom":"ASSET6","index":"0.000010619768184658"},{"denom":"ASSET7","index":"0.000016390179065509"},{"denom":"ASSET8","index":"0.000023706313213553"},{"denom":"ASSET9","index":"0.000009466987970942"}],"last_reward_claim_height":"184"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET10","shares":"561777310.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003091273620954"},{"denom":"ASSET1","index":"0.000026212594205506"},{"denom":"ASSET10","index":"0.000020831747389799"},{"denom":"ASSET11","index":"0.000026024829344923"},{"denom":"ASSET12","index":"0.000024768925461013"},{"denom":"ASSET13","index":"0.000008170539761157"},{"denom":"ASSET14","index":"0.000023900540063840"},{"denom":"ASSET15","index":"0.000018780610027247"},{"denom":"ASSET16","index":"0.000011634658240098"},{"denom":"ASSET17","index":"0.000009101405984603"},{"denom":"ASSET18","index":"0.000003780149264156"},{"denom":"ASSET2","index":"0.000007930960667726"},{"denom":"ASSET3","index":"0.000002206123035767"},{"denom":"ASSET4","index":"0.000021253166889363"},{"denom":"ASSET5","index":"0.000001718500807532"},{"denom":"ASSET6","index":"0.000006939076737962"},{"denom":"ASSET7","index":"0.000010891166816552"},{"denom":"ASSET8","index":"0.000014853628574871"},{"denom":"ASSET9","index":"0.000006308302102729"}],"last_reward_claim_height":"124"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET12","shares":"1086967907.030480557025800108","reward_history":[{"denom":"ASSET0","index":"0.000003091273620954"},{"denom":"ASSET1","index":"0.000026212594205506"},{"denom":"ASSET10","index":"0.000020831747389799"},{"denom":"ASSET11","index":"0.000026024829344923"},{"denom":"ASSET12","index":"0.000024768925461013"},{"denom":"ASSET13","index":"0.000008170539761157"},{"denom":"ASSET14","index":"0.000023900540063840"},{"denom":"ASSET15","index":"0.000018780610027247"},{"denom":"ASSET16","index":"0.000011634658240098"},{"denom":"ASSET17","index":"0.000009101405984603"},{"denom":"ASSET18","index":"0.000003780149264156"},{"denom":"ASSET2","index":"0.000007930960667726"},{"denom":"ASSET3","index":"0.000002206123035767"},{"denom":"ASSET4","index":"0.000021253166889363"},{"denom":"ASSET5","index":"0.000001718500807532"},{"denom":"ASSET6","index":"0.000006939076737962"},{"denom":"ASSET7","index":"0.000010891166816552"},{"denom":"ASSET8","index":"0.000014853628574871"},{"denom":"ASSET9","index":"0.000006308302102729"}],"last_reward_claim_height":"176"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET18","shares":"11043581.613116657713053309","reward_history":[{"denom":"ASSET0","index":"0.000003091273620954"},{"denom":"ASSET1","index":"0.000026212594205506"},{"denom":"ASSET10","index":"0.000020831747389799"},{"denom":"ASSET11","index":"0.000026024829344923"},{"denom":"ASSET12","index":"0.000024768925461013"},{"denom":"ASSET13","index":"0.000008170539761157"},{"denom":"ASSET14","index":"0.000023900540063840"},{"denom":"ASSET15","index":"0.000018780610027247"},{"denom":"ASSET16","index":"0.000011634658240098"},{"denom":"ASSET17","index":"0.000009101405984603"},{"denom":"ASSET18","index":"0.000003780149264156"},{"denom":"ASSET2","index":"0.000007930960667726"},{"denom":"ASSET3","index":"0.000002206123035767"},{"denom":"ASSET4","index":"0.000021253166889363"},{"denom":"ASSET5","index":"0.000001718500807532"},{"denom":"ASSET6","index":"0.000006939076737962"},{"denom":"ASSET7","index":"0.000010891166816552"},{"denom":"ASSET8","index":"0.000014853628574871"},{"denom":"ASSET9","index":"0.000006308302102729"}],"last_reward_claim_height":"149"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET0","shares":"608127195.999999999093620332","reward_history":[],"last_reward_claim_height":"61"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET2","shares":"330583074.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003012098530886"},{"denom":"ASSET1","index":"0.000025562058034330"},{"denom":"ASSET10","index":"0.000020450222858637"},{"denom":"ASSET11","index":"0.000025414193224582"},{"denom":"ASSET12","index":"0.000024256065084933"},{"denom":"ASSET13","index":"0.000007984561416691"},{"denom":"ASSET14","index":"0.000023318358139730"},{"denom":"ASSET15","index":"0.000018411259079989"},{"denom":"ASSET16","index":"0.000011336678183578"},{"denom":"ASSET17","index":"0.000008913774138499"},{"denom":"ASSET18","index":"0.000003674960609183"},{"denom":"ASSET2","index":"0.000007744948932800"},{"denom":"ASSET3","index":"0.000002148867969989"},{"denom":"ASSET4","index":"0.000020722540912428"},{"denom":"ASSET5","index":"0.000001674229864542"},{"denom":"ASSET6","index":"0.000006756080138401"},{"denom":"ASSET7","index":"0.000010618450136599"},{"denom":"ASSET8","index":"0.000014514789998911"},{"denom":"ASSET9","index":"0.000006159565713194"}],"last_reward_claim_height":"166"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET6","shares":"76521052.000000004414491705","reward_history":[],"last_reward_claim_height":"33"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET7","shares":"58345631.558255053097361577","reward_history":[{"denom":"ASSET0","index":"0.000003012098530886"},{"denom":"ASSET1","index":"0.000025562058034330"},{"denom":"ASSET10","index":"0.000020450222858637"},{"denom":"ASSET11","index":"0.000025414193224582"},{"denom":"ASSET12","index":"0.000024256065084933"},{"denom":"ASSET13","index":"0.000007984561416691"},{"denom":"ASSET14","index":"0.000023318358139730"},{"denom":"ASSET15","index":"0.000018411259079989"},{"denom":"ASSET16","index":"0.000011336678183578"},{"denom":"ASSET17","index":"0.000008913774138499"},{"denom":"ASSET18","index":"0.000003674960609183"},{"denom":"ASSET2","index":"0.000007744948932800"},{"denom":"ASSET3","index":"0.000002148867969989"},{"denom":"ASSET4","index":"0.000020722540912428"},{"denom":"ASSET5","index":"0.000001674229864542"},{"denom":"ASSET6","index":"0.000006756080138401"},{"denom":"ASSET7","index":"0.000010618450136599"},{"denom":"ASSET8","index":"0.000014514789998911"},{"denom":"ASSET9","index":"0.000006159565713194"}],"last_reward_claim_height":"147"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET11","shares":"616468553.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001496654334782"},{"denom":"ASSET1","index":"0.000012477377024436"},{"denom":"ASSET10","index":"0.000008693096469902"},{"denom":"ASSET11","index":"0.000012070207597683"},{"denom":"ASSET12","index":"0.000010869145414891"},{"denom":"ASSET13","index":"0.000003740467488528"},{"denom":"ASSET14","index":"0.000011275146493218"},{"denom":"ASSET15","index":"0.000008061604145195"},{"denom":"ASSET16","index":"0.000005620924281527"},{"denom":"ASSET17","index":"0.000003991662400298"},{"denom":"ASSET18","index":"0.000001901487064682"},{"denom":"ASSET2","index":"0.000003683218415613"},{"denom":"ASSET3","index":"0.000001077217249546"},{"denom":"ASSET4","index":"0.000010139511822330"},{"denom":"ASSET5","index":"0.000000835953299404"},{"denom":"ASSET6","index":"0.000003403398967385"},{"denom":"ASSET7","index":"0.000005212586506346"},{"denom":"ASSET8","index":"0.000006801540366848"},{"denom":"ASSET9","index":"0.000002937812119289"}],"last_reward_claim_height":"117"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET17","shares":"88267712.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001496654334782"},{"denom":"ASSET1","index":"0.000012477377024436"},{"denom":"ASSET10","index":"0.000008693096469902"},{"denom":"ASSET11","index":"0.000012070207597683"},{"denom":"ASSET12","index":"0.000010869145414891"},{"denom":"ASSET13","index":"0.000003740467488528"},{"denom":"ASSET14","index":"0.000011275146493218"},{"denom":"ASSET15","index":"0.000008061604145195"},{"denom":"ASSET16","index":"0.000005620924281527"},{"denom":"ASSET17","index":"0.000003991662400298"},{"denom":"ASSET18","index":"0.000001901487064682"},{"denom":"ASSET2","index":"0.000003683218415613"},{"denom":"ASSET3","index":"0.000001077217249546"},{"denom":"ASSET4","index":"0.000010139511822330"},{"denom":"ASSET5","index":"0.000000835953299404"},{"denom":"ASSET6","index":"0.000003403398967385"},{"denom":"ASSET7","index":"0.000005212586506346"},{"denom":"ASSET8","index":"0.000006801540366848"},{"denom":"ASSET9","index":"0.000002937812119289"}],"last_reward_claim_height":"102"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET0","shares":"678401954.656239095432932230","reward_history":[{"denom":"ASSET0","index":"0.000004451028909096"},{"denom":"ASSET1","index":"0.000036477295358036"},{"denom":"ASSET10","index":"0.000031594285637271"},{"denom":"ASSET11","index":"0.000037877235122777"},{"denom":"ASSET12","index":"0.000036094024478773"},{"denom":"ASSET13","index":"0.000012212628058403"},{"denom":"ASSET14","index":"0.000034929714752807"},{"denom":"ASSET15","index":"0.000028351244338063"},{"denom":"ASSET16","index":"0.000016180904344378"},{"denom":"ASSET17","index":"0.000013115564217581"},{"denom":"ASSET18","index":"0.000005434356167162"},{"denom":"ASSET2","index":"0.000011017450045022"},{"denom":"ASSET3","index":"0.000003160957283863"},{"denom":"ASSET4","index":"0.000029890627189887"},{"denom":"ASSET5","index":"0.000002482144499160"},{"denom":"ASSET6","index":"0.000010125586077425"},{"denom":"ASSET7","index":"0.000015654963573568"},{"denom":"ASSET8","index":"0.000022524154498080"},{"denom":"ASSET9","index":"0.000009046112711560"}],"last_reward_claim_height":"193"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET16","shares":"547592116.707356730345886792","reward_history":[{"denom":"ASSET0","index":"0.000002995147819628"},{"denom":"ASSET1","index":"0.000025426980115999"},{"denom":"ASSET10","index":"0.000020372034738960"},{"denom":"ASSET11","index":"0.000025287989623967"},{"denom":"ASSET12","index":"0.000024150599022202"},{"denom":"ASSET13","index":"0.000007946076587902"},{"denom":"ASSET14","index":"0.000023198024872944"},{"denom":"ASSET15","index":"0.000018335727027304"},{"denom":"ASSET16","index":"0.000011274635486105"},{"denom":"ASSET17","index":"0.000008875015361763"},{"denom":"ASSET18","index":"0.000003653177061349"},{"denom":"ASSET2","index":"0.000007706361997735"},{"denom":"ASSET3","index":"0.000002137037997503"},{"denom":"ASSET4","index":"0.000020612735071168"},{"denom":"ASSET5","index":"0.000001665450131859"},{"denom":"ASSET6","index":"0.000006718182222688"},{"denom":"ASSET7","index":"0.000010561635089256"},{"denom":"ASSET8","index":"0.000014445035982826"},{"denom":"ASSET9","index":"0.000006128513210961"}],"last_reward_claim_height":"134"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET7","shares":"473733545.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001778581753434"},{"denom":"ASSET1","index":"0.000014888315804569"},{"denom":"ASSET10","index":"0.000010370885153828"},{"denom":"ASSET11","index":"0.000014404007158094"},{"denom":"ASSET12","index":"0.000012967781516823"},{"denom":"ASSET13","index":"0.000004458979607201"},{"denom":"ASSET14","index":"0.000013452090163298"},{"denom":"ASSET15","index":"0.000009619371736884"},{"denom":"ASSET16","index":"0.000006705169708956"},{"denom":"ASSET17","index":"0.000004759584973979"},{"denom":"ASSET18","index":"0.000002262890399909"},{"denom":"ASSET2","index":"0.000004392178414584"},{"denom":"ASSET3","index":"0.000001285922957882"},{"denom":"ASSET4","index":"0.000012099366012799"},{"denom":"ASSET5","index":"0.000000993667740182"},{"denom":"ASSET6","index":"0.000004058172451498"},{"denom":"ASSET7","index":"0.000006220861062481"},{"denom":"ASSET8","index":"0.000008116344902996"},{"denom":"ASSET9","index":"0.000003507062612406"}],"last_reward_claim_height":"109"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET0","shares":"450034809.976951241792177960","reward_history":[{"denom":"ASSET0","index":"0.000003200268554223"},{"denom":"ASSET1","index":"0.000027155061035589"},{"denom":"ASSET10","index":"0.000021699312128992"},{"denom":"ASSET11","index":"0.000026991580254755"},{"denom":"ASSET12","index":"0.000025748970079650"},{"denom":"ASSET13","index":"0.000008479073830121"},{"denom":"ASSET14","index":"0.000024769827936089"},{"denom":"ASSET15","index":"0.000019540730612944"},{"denom":"ASSET16","index":"0.000012044995213579"},{"denom":"ASSET17","index":"0.000009462424001901"},{"denom":"ASSET18","index":"0.000003906197580725"},{"denom":"ASSET2","index":"0.000008225756082433"},{"denom":"ASSET3","index":"0.000002283784004254"},{"denom":"ASSET4","index":"0.000022014648589339"},{"denom":"ASSET5","index":"0.000001779311895342"},{"denom":"ASSET6","index":"0.000007179475362032"},{"denom":"ASSET7","index":"0.000011280598785262"},{"denom":"ASSET8","index":"0.000015413911362487"},{"denom":"ASSET9","index":"0.000006542247148589"}],"last_reward_claim_height":"148"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET1","shares":"196572501.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003200268554223"},{"denom":"ASSET1","index":"0.000027155061035589"},{"denom":"ASSET10","index":"0.000021699312128992"},{"denom":"ASSET11","index":"0.000026991580254755"},{"denom":"ASSET12","index":"0.000025748970079650"},{"denom":"ASSET13","index":"0.000008479073830121"},{"denom":"ASSET14","index":"0.000024769827936089"},{"denom":"ASSET15","index":"0.000019540730612944"},{"denom":"ASSET16","index":"0.000012044995213579"},{"denom":"ASSET17","index":"0.000009462424001901"},{"denom":"ASSET18","index":"0.000003906197580725"},{"denom":"ASSET2","index":"0.000008225756082433"},{"denom":"ASSET3","index":"0.000002283784004254"},{"denom":"ASSET4","index":"0.000022014648589339"},{"denom":"ASSET5","index":"0.000001779311895342"},{"denom":"ASSET6","index":"0.000007179475362032"},{"denom":"ASSET7","index":"0.000011280598785262"},{"denom":"ASSET8","index":"0.000015413911362487"},{"denom":"ASSET9","index":"0.000006542247148589"}],"last_reward_claim_height":"164"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET3","shares":"629132164.000000000000000000","reward_history":[],"last_reward_claim_height":"8"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET7","shares":"744086297.511834140501015490","reward_history":[{"denom":"ASSET0","index":"0.000003200268554223"},{"denom":"ASSET1","index":"0.000027155061035589"},{"denom":"ASSET10","index":"0.000021699312128992"},{"denom":"ASSET11","index":"0.000026991580254755"},{"denom":"ASSET12","index":"0.000025748970079650"},{"denom":"ASSET13","index":"0.000008479073830121"},{"denom":"ASSET14","index":"0.000024769827936089"},{"denom":"ASSET15","index":"0.000019540730612944"},{"denom":"ASSET16","index":"0.000012044995213579"},{"denom":"ASSET17","index":"0.000009462424001901"},{"denom":"ASSET18","index":"0.000003906197580725"},{"denom":"ASSET2","index":"0.000008225756082433"},{"denom":"ASSET3","index":"0.000002283784004254"},{"denom":"ASSET4","index":"0.000022014648589339"},{"denom":"ASSET5","index":"0.000001779311895342"},{"denom":"ASSET6","index":"0.000007179475362032"},{"denom":"ASSET7","index":"0.000011280598785262"},{"denom":"ASSET8","index":"0.000015413911362487"},{"denom":"ASSET9","index":"0.000006542247148589"}],"last_reward_claim_height":"144"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET11","shares":"28294223.000000000429609971","reward_history":[],"last_reward_claim_height":"32"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET12","shares":"72616955.999999999500943427","reward_history":[],"last_reward_claim_height":"28"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET14","shares":"748560369.000000000000000000","reward_history":[],"last_reward_claim_height":"2"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET18","shares":"847505991.999999982202374168","reward_history":[],"last_reward_claim_height":"45"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET2","shares":"572634349.415319299024594432","reward_history":[{"denom":"ASSET0","index":"0.000001620184629837"},{"denom":"ASSET1","index":"0.000013508113244239"},{"denom":"ASSET10","index":"0.000009411159415052"},{"denom":"ASSET11","index":"0.000013068550109883"},{"denom":"ASSET12","index":"0.000011766766981214"},{"denom":"ASSET13","index":"0.000004049052718392"},{"denom":"ASSET14","index":"0.000012206330115570"},{"denom":"ASSET15","index":"0.000008726455301921"},{"denom":"ASSET16","index":"0.000006083441070987"},{"denom":"ASSET17","index":"0.000004319553108765"},{"denom":"ASSET18","index":"0.000002056930051793"},{"denom":"ASSET2","index":"0.000003987063045598"},{"denom":"ASSET3","index":"0.000001166532933482"},{"denom":"ASSET4","index":"0.000010977807509294"},{"denom":"ASSET5","index":"0.000000904485680309"},{"denom":"ASSET6","index":"0.000003682750106429"},{"denom":"ASSET7","index":"0.000005643877936631"},{"denom":"ASSET8","index":"0.000007362682500458"},{"denom":"ASSET9","index":"0.000003178379586880"}],"last_reward_claim_height":"97"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET6","shares":"516020601.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003154859072778"},{"denom":"ASSET1","index":"0.000026759958230198"},{"denom":"ASSET10","index":"0.000021318547828682"},{"denom":"ASSET11","index":"0.000026582778956839"},{"denom":"ASSET12","index":"0.000025324795995745"},{"denom":"ASSET13","index":"0.000008347309163095"},{"denom":"ASSET14","index":"0.000024403216779648"},{"denom":"ASSET15","index":"0.000019208461119321"},{"denom":"ASSET16","index":"0.000011872154646602"},{"denom":"ASSET17","index":"0.000009304429323264"},{"denom":"ASSET18","index":"0.000003853154066825"},{"denom":"ASSET2","index":"0.000008100524497579"},{"denom":"ASSET3","index":"0.000002251942800438"},{"denom":"ASSET4","index":"0.000021695917087147"},{"denom":"ASSET5","index":"0.000001753374642360"},{"denom":"ASSET6","index":"0.000007078305954632"},{"denom":"ASSET7","index":"0.000011118481739065"},{"denom":"ASSET8","index":"0.000015174129529137"},{"denom":"ASSET9","index":"0.000006441283498998"}],"last_reward_claim_height":"182"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET9","shares":"169037607.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004736121968577"},{"denom":"ASSET1","index":"0.000038761893571018"},{"denom":"ASSET10","index":"0.000033507102183548"},{"denom":"ASSET11","index":"0.000040255954218087"},{"denom":"ASSET12","index":"0.000038296483713125"},{"denom":"ASSET13","index":"0.000012981125931500"},{"denom":"ASSET14","index":"0.000037144963211864"},{"denom":"ASSET15","index":"0.000030086100212575"},{"denom":"ASSET16","index":"0.000017200793994088"},{"denom":"ASSET17","index":"0.000013910336551622"},{"denom":"ASSET18","index":"0.000005787660096353"},{"denom":"ASSET2","index":"0.000011696689560653"},{"denom":"ASSET3","index":"0.000003364158799327"},{"denom":"ASSET4","index":"0.000031772510725021"},{"denom":"ASSET5","index":"0.000002640231519377"},{"denom":"ASSET6","index":"0.000010779027652808"},{"denom":"ASSET7","index":"0.000016649985952266"},{"denom":"ASSET8","index":"0.000023948972231982"},{"denom":"ASSET9","index":"0.000009610057695084"}],"last_reward_claim_height":"183"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET11","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"46"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET2","shares":"429163728.697795835501046711","reward_history":[{"denom":"ASSET0","index":"0.000003066618221533"},{"denom":"ASSET1","index":"0.000026018563142658"},{"denom":"ASSET10","index":"0.000020743763118655"},{"denom":"ASSET11","index":"0.000025849025514444"},{"denom":"ASSET12","index":"0.000024635604575072"},{"denom":"ASSET13","index":"0.000008118261811936"},{"denom":"ASSET14","index":"0.000023728777879609"},{"denom":"ASSET15","index":"0.000018689177197382"},{"denom":"ASSET16","index":"0.000011544003668418"},{"denom":"ASSET17","index":"0.000009052167825210"},{"denom":"ASSET18","index":"0.000003745930402733"},{"denom":"ASSET2","index":"0.000007877080459743"},{"denom":"ASSET3","index":"0.000002188594145460"},{"denom":"ASSET4","index":"0.000021094338825720"},{"denom":"ASSET5","index":"0.000001705356613908"},{"denom":"ASSET6","index":"0.000006882744986340"},{"denom":"ASSET7","index":"0.000010809249072439"},{"denom":"ASSET8","index":"0.000014757775472241"},{"denom":"ASSET9","index":"0.000006264987011427"}],"last_reward_claim_height":"158"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET4","shares":"47821962.953283504080225880","reward_history":[{"denom":"ASSET0","index":"0.000001565910537906"},{"denom":"ASSET1","index":"0.000013053983025959"},{"denom":"ASSET10","index":"0.000009094819386579"},{"denom":"ASSET11","index":"0.000012628414118813"},{"denom":"ASSET12","index":"0.000011371841840295"},{"denom":"ASSET13","index":"0.000003913403541838"},{"denom":"ASSET14","index":"0.000011796953146466"},{"denom":"ASSET15","index":"0.000008434501179040"},{"denom":"ASSET16","index":"0.000005880630135191"},{"denom":"ASSET17","index":"0.000004176066501732"},{"denom":"ASSET18","index":"0.000001989191440174"},{"denom":"ASSET2","index":"0.000003853457814057"},{"denom":"ASSET3","index":"0.000001127071202473"},{"denom":"ASSET4","index":"0.000010608563413286"},{"denom":"ASSET5","index":"0.000000874933065013"},{"denom":"ASSET6","index":"0.000003561050790760"},{"denom":"ASSET7","index":"0.000005453688425119"},{"denom":"ASSET8","index":"0.000007116152768840"},{"denom":"ASSET9","index":"0.000003073705751932"}],"last_reward_claim_height":"119"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET9","shares":"147073815.702881431637959448","reward_history":[{"denom":"ASSET0","index":"0.000001565910537906"},{"denom":"ASSET1","index":"0.000013053983025959"},{"denom":"ASSET10","index":"0.000009094819386579"},{"denom":"ASSET11","index":"0.000012628414118813"},{"denom":"ASSET12","index":"0.000011371841840295"},{"denom":"ASSET13","index":"0.000003913403541838"},{"denom":"ASSET14","index":"0.000011796953146466"},{"denom":"ASSET15","index":"0.000008434501179040"},{"denom":"ASSET16","index":"0.000005880630135191"},{"denom":"ASSET17","index":"0.000004176066501732"},{"denom":"ASSET18","index":"0.000001989191440174"},{"denom":"ASSET2","index":"0.000003853457814057"},{"denom":"ASSET3","index":"0.000001127071202473"},{"denom":"ASSET4","index":"0.000010608563413286"},{"denom":"ASSET5","index":"0.000000874933065013"},{"denom":"ASSET6","index":"0.000003561050790760"},{"denom":"ASSET7","index":"0.000005453688425119"},{"denom":"ASSET8","index":"0.000007116152768840"},{"denom":"ASSET9","index":"0.000003073705751932"}],"last_reward_claim_height":"110"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET13","shares":"523050439.128111819081914150","reward_history":[{"denom":"ASSET0","index":"0.000003066618221533"},{"denom":"ASSET1","index":"0.000026018563142658"},{"denom":"ASSET10","index":"0.000020743763118655"},{"denom":"ASSET11","index":"0.000025849025514444"},{"denom":"ASSET12","index":"0.000024635604575072"},{"denom":"ASSET13","index":"0.000008118261811936"},{"denom":"ASSET14","index":"0.000023728777879609"},{"denom":"ASSET15","index":"0.000018689177197382"},{"denom":"ASSET16","index":"0.000011544003668418"},{"denom":"ASSET17","index":"0.000009052167825210"},{"denom":"ASSET18","index":"0.000003745930402733"},{"denom":"ASSET2","index":"0.000007877080459743"},{"denom":"ASSET3","index":"0.000002188594145460"},{"denom":"ASSET4","index":"0.000021094338825720"},{"denom":"ASSET5","index":"0.000001705356613908"},{"denom":"ASSET6","index":"0.000006882744986340"},{"denom":"ASSET7","index":"0.000010809249072439"},{"denom":"ASSET8","index":"0.000014757775472241"},{"denom":"ASSET9","index":"0.000006264987011427"}],"last_reward_claim_height":"159"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET14","shares":"390690389.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003066618221533"},{"denom":"ASSET1","index":"0.000026018563142658"},{"denom":"ASSET10","index":"0.000020743763118655"},{"denom":"ASSET11","index":"0.000025849025514444"},{"denom":"ASSET12","index":"0.000024635604575072"},{"denom":"ASSET13","index":"0.000008118261811936"},{"denom":"ASSET14","index":"0.000023728777879609"},{"denom":"ASSET15","index":"0.000018689177197382"},{"denom":"ASSET16","index":"0.000011544003668418"},{"denom":"ASSET17","index":"0.000009052167825210"},{"denom":"ASSET18","index":"0.000003745930402733"},{"denom":"ASSET2","index":"0.000007877080459743"},{"denom":"ASSET3","index":"0.000002188594145460"},{"denom":"ASSET4","index":"0.000021094338825720"},{"denom":"ASSET5","index":"0.000001705356613908"},{"denom":"ASSET6","index":"0.000006882744986340"},{"denom":"ASSET7","index":"0.000010809249072439"},{"denom":"ASSET8","index":"0.000014757775472241"},{"denom":"ASSET9","index":"0.000006264987011427"}],"last_reward_claim_height":"157"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET17","shares":"560106147.249539956162598525","reward_history":[{"denom":"ASSET0","index":"0.000003066618221533"},{"denom":"ASSET1","index":"0.000026018563142658"},{"denom":"ASSET10","index":"0.000020743763118655"},{"denom":"ASSET11","index":"0.000025849025514444"},{"denom":"ASSET12","index":"0.000024635604575072"},{"denom":"ASSET13","index":"0.000008118261811936"},{"denom":"ASSET14","index":"0.000023728777879609"},{"denom":"ASSET15","index":"0.000018689177197382"},{"denom":"ASSET16","index":"0.000011544003668418"},{"denom":"ASSET17","index":"0.000009052167825210"},{"denom":"ASSET18","index":"0.000003745930402733"},{"denom":"ASSET2","index":"0.000007877080459743"},{"denom":"ASSET3","index":"0.000002188594145460"},{"denom":"ASSET4","index":"0.000021094338825720"},{"denom":"ASSET5","index":"0.000001705356613908"},{"denom":"ASSET6","index":"0.000006882744986340"},{"denom":"ASSET7","index":"0.000010809249072439"},{"denom":"ASSET8","index":"0.000014757775472241"},{"denom":"ASSET9","index":"0.000006264987011427"}],"last_reward_claim_height":"164"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET5","shares":"571844222.999025128958691770","reward_history":[{"denom":"ASSET0","index":"0.000003010548827117"},{"denom":"ASSET1","index":"0.000025517681435823"},{"denom":"ASSET10","index":"0.000020207909525991"},{"denom":"ASSET11","index":"0.000025316824190850"},{"denom":"ASSET12","index":"0.000024059273468565"},{"denom":"ASSET13","index":"0.000007945703994160"},{"denom":"ASSET14","index":"0.000023261456497592"},{"denom":"ASSET15","index":"0.000018230653165683"},{"denom":"ASSET16","index":"0.000011330852554208"},{"denom":"ASSET17","index":"0.000008840468160143"},{"denom":"ASSET18","index":"0.000003685449036638"},{"denom":"ASSET2","index":"0.000007715875534239"},{"denom":"ASSET3","index":"0.000002150116713749"},{"denom":"ASSET4","index":"0.000020690763011385"},{"denom":"ASSET5","index":"0.000001674170167376"},{"denom":"ASSET6","index":"0.000006761947340508"},{"denom":"ASSET7","index":"0.000010605047135869"},{"denom":"ASSET8","index":"0.000014444866674878"},{"denom":"ASSET9","index":"0.000006137206230949"}],"last_reward_claim_height":"159"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET18","shares":"235306519.220783254474032696","reward_history":[{"denom":"ASSET0","index":"0.000003010548827117"},{"denom":"ASSET1","index":"0.000025517681435823"},{"denom":"ASSET10","index":"0.000020207909525991"},{"denom":"ASSET11","index":"0.000025316824190850"},{"denom":"ASSET12","index":"0.000024059273468565"},{"denom":"ASSET13","index":"0.000007945703994160"},{"denom":"ASSET14","index":"0.000023261456497592"},{"denom":"ASSET15","index":"0.000018230653165683"},{"denom":"ASSET16","index":"0.000011330852554208"},{"denom":"ASSET17","index":"0.000008840468160143"},{"denom":"ASSET18","index":"0.000003685449036638"},{"denom":"ASSET2","index":"0.000007715875534239"},{"denom":"ASSET3","index":"0.000002150116713749"},{"denom":"ASSET4","index":"0.000020690763011385"},{"denom":"ASSET5","index":"0.000001674170167376"},{"denom":"ASSET6","index":"0.000006761947340508"},{"denom":"ASSET7","index":"0.000010605047135869"},{"denom":"ASSET8","index":"0.000014444866674878"},{"denom":"ASSET9","index":"0.000006137206230949"}],"last_reward_claim_height":"161"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET0","shares":"445461004.150143837894176804","reward_history":[{"denom":"ASSET0","index":"0.000001598496813351"},{"denom":"ASSET1","index":"0.000013327209301876"},{"denom":"ASSET10","index":"0.000009285082513510"},{"denom":"ASSET11","index":"0.000012892549064690"},{"denom":"ASSET12","index":"0.000011609910099638"},{"denom":"ASSET13","index":"0.000003995530641827"},{"denom":"ASSET14","index":"0.000012043503249499"},{"denom":"ASSET15","index":"0.000008611039019674"},{"denom":"ASSET16","index":"0.000006003788988106"},{"denom":"ASSET17","index":"0.000004263725256261"},{"denom":"ASSET18","index":"0.000002031022875886"},{"denom":"ASSET2","index":"0.000003933995272733"},{"denom":"ASSET3","index":"0.000001150675832486"},{"denom":"ASSET4","index":"0.000010830580656369"},{"denom":"ASSET5","index":"0.000000893152091305"},{"denom":"ASSET6","index":"0.000003635566517414"},{"denom":"ASSET7","index":"0.000005567705967820"},{"denom":"ASSET8","index":"0.000007265086206652"},{"denom":"ASSET9","index":"0.000003137948128033"}],"last_reward_claim_height":"103"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET1","shares":"28318104.000000023094054017","reward_history":[],"last_reward_claim_height":"57"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET11","shares":"839346270.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001349258766758"},{"denom":"ASSET1","index":"0.000011264433664868"},{"denom":"ASSET10","index":"0.000007848225297969"},{"denom":"ASSET11","index":"0.000010895650990484"},{"denom":"ASSET12","index":"0.000009811385762205"},{"denom":"ASSET13","index":"0.000003376459336127"},{"denom":"ASSET14","index":"0.000010177960157102"},{"denom":"ASSET15","index":"0.000007278489190238"},{"denom":"ASSET16","index":"0.000005074626261883"},{"denom":"ASSET17","index":"0.000003603912123322"},{"denom":"ASSET18","index":"0.000001715833161655"},{"denom":"ASSET2","index":"0.000003323460628431"},{"denom":"ASSET3","index":"0.000000971642974425"},{"denom":"ASSET4","index":"0.000009153318474981"},{"denom":"ASSET5","index":"0.000000753023305179"},{"denom":"ASSET6","index":"0.000003071716766875"},{"denom":"ASSET7","index":"0.000004705843587499"},{"denom":"ASSET8","index":"0.000006139016974776"},{"denom":"ASSET9","index":"0.000002652143664283"}],"last_reward_claim_height":"66"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET14","shares":"195854231.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002874619638549"},{"denom":"ASSET1","index":"0.000024442633186143"},{"denom":"ASSET10","index":"0.000019689737510784"},{"denom":"ASSET11","index":"0.000024334399718263"},{"denom":"ASSET12","index":"0.000023294058494145"},{"denom":"ASSET13","index":"0.000007650065286478"},{"denom":"ASSET14","index":"0.000022306974942610"},{"denom":"ASSET15","index":"0.000017702453996022"},{"denom":"ASSET16","index":"0.000010830667352685"},{"denom":"ASSET17","index":"0.000008561334956642"},{"denom":"ASSET18","index":"0.000003501743239949"},{"denom":"ASSET2","index":"0.000007413384379561"},{"denom":"ASSET3","index":"0.000002050775894848"},{"denom":"ASSET4","index":"0.000019811877393900"},{"denom":"ASSET5","index":"0.000001596563839644"},{"denom":"ASSET6","index":"0.000006447875450380"},{"denom":"ASSET7","index":"0.000010149425285061"},{"denom":"ASSET8","index":"0.000013906577801610"},{"denom":"ASSET9","index":"0.000005896530335304"}],"last_reward_claim_height":"173"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET16","shares":"107673792.999999997849930827","reward_history":[{"denom":"ASSET0","index":"0.000002874619638549"},{"denom":"ASSET1","index":"0.000024442633186143"},{"denom":"ASSET10","index":"0.000019689737510784"},{"denom":"ASSET11","index":"0.000024334399718263"},{"denom":"ASSET12","index":"0.000023294058494145"},{"denom":"ASSET13","index":"0.000007650065286478"},{"denom":"ASSET14","index":"0.000022306974942610"},{"denom":"ASSET15","index":"0.000017702453996022"},{"denom":"ASSET16","index":"0.000010830667352685"},{"denom":"ASSET17","index":"0.000008561334956642"},{"denom":"ASSET18","index":"0.000003501743239949"},{"denom":"ASSET2","index":"0.000007413384379561"},{"denom":"ASSET3","index":"0.000002050775894848"},{"denom":"ASSET4","index":"0.000019811877393900"},{"denom":"ASSET5","index":"0.000001596563839644"},{"denom":"ASSET6","index":"0.000006447875450380"},{"denom":"ASSET7","index":"0.000010149425285061"},{"denom":"ASSET8","index":"0.000013906577801610"},{"denom":"ASSET9","index":"0.000005896530335304"}],"last_reward_claim_height":"168"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET4","shares":"22154414.584629234597849886","reward_history":[{"denom":"ASSET0","index":"0.000003377008276018"},{"denom":"ASSET1","index":"0.000028642142456639"},{"denom":"ASSET10","index":"0.000022800592191853"},{"denom":"ASSET11","index":"0.000028447577997463"},{"denom":"ASSET12","index":"0.000027093635853923"},{"denom":"ASSET13","index":"0.000008933092474106"},{"denom":"ASSET14","index":"0.000026119259559896"},{"denom":"ASSET15","index":"0.000020548756595198"},{"denom":"ASSET16","index":"0.000012710670192565"},{"denom":"ASSET17","index":"0.000009956402105067"},{"denom":"ASSET18","index":"0.000004127475104327"},{"denom":"ASSET2","index":"0.000008669602227225"},{"denom":"ASSET3","index":"0.000002410895003349"},{"denom":"ASSET4","index":"0.000023222264254358"},{"denom":"ASSET5","index":"0.000001877874241403"},{"denom":"ASSET6","index":"0.000007579654674160"},{"denom":"ASSET7","index":"0.000011900488798179"},{"denom":"ASSET8","index":"0.000016239324105118"},{"denom":"ASSET9","index":"0.000006895771583569"}],"last_reward_claim_height":"151"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET15","shares":"934886425.033603591950078664","reward_history":[{"denom":"ASSET0","index":"0.000003377008276018"},{"denom":"ASSET1","index":"0.000028642142456639"},{"denom":"ASSET10","index":"0.000022800592191853"},{"denom":"ASSET11","index":"0.000028447577997463"},{"denom":"ASSET12","index":"0.000027093635853923"},{"denom":"ASSET13","index":"0.000008933092474106"},{"denom":"ASSET14","index":"0.000026119259559896"},{"denom":"ASSET15","index":"0.000020548756595198"},{"denom":"ASSET16","index":"0.000012710670192565"},{"denom":"ASSET17","index":"0.000009956402105067"},{"denom":"ASSET18","index":"0.000004127475104327"},{"denom":"ASSET2","index":"0.000008669602227225"},{"denom":"ASSET3","index":"0.000002410895003349"},{"denom":"ASSET4","index":"0.000023222264254358"},{"denom":"ASSET5","index":"0.000001877874241403"},{"denom":"ASSET6","index":"0.000007579654674160"},{"denom":"ASSET7","index":"0.000011900488798179"},{"denom":"ASSET8","index":"0.000016239324105118"},{"denom":"ASSET9","index":"0.000006895771583569"}],"last_reward_claim_height":"152"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET16","shares":"593122870.683950750993801073","reward_history":[{"denom":"ASSET0","index":"0.000003377008276018"},{"denom":"ASSET1","index":"0.000028642142456639"},{"denom":"ASSET10","index":"0.000022800592191853"},{"denom":"ASSET11","index":"0.000028447577997463"},{"denom":"ASSET12","index":"0.000027093635853923"},{"denom":"ASSET13","index":"0.000008933092474106"},{"denom":"ASSET14","index":"0.000026119259559896"},{"denom":"ASSET15","index":"0.000020548756595198"},{"denom":"ASSET16","index":"0.000012710670192565"},{"denom":"ASSET17","index":"0.000009956402105067"},{"denom":"ASSET18","index":"0.000004127475104327"},{"denom":"ASSET2","index":"0.000008669602227225"},{"denom":"ASSET3","index":"0.000002410895003349"},{"denom":"ASSET4","index":"0.000023222264254358"},{"denom":"ASSET5","index":"0.000001877874241403"},{"denom":"ASSET6","index":"0.000007579654674160"},{"denom":"ASSET7","index":"0.000011900488798179"},{"denom":"ASSET8","index":"0.000016239324105118"},{"denom":"ASSET9","index":"0.000006895771583569"}],"last_reward_claim_height":"127"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET17","shares":"73239033.568484172950936230","reward_history":[{"denom":"ASSET0","index":"0.000003377008276018"},{"denom":"ASSET1","index":"0.000028642142456639"},{"denom":"ASSET10","index":"0.000022800592191853"},{"denom":"ASSET11","index":"0.000028447577997463"},{"denom":"ASSET12","index":"0.000027093635853923"},{"denom":"ASSET13","index":"0.000008933092474106"},{"denom":"ASSET14","index":"0.000026119259559896"},{"denom":"ASSET15","index":"0.000020548756595198"},{"denom":"ASSET16","index":"0.000012710670192565"},{"denom":"ASSET17","index":"0.000009956402105067"},{"denom":"ASSET18","index":"0.000004127475104327"},{"denom":"ASSET2","index":"0.000008669602227225"},{"denom":"ASSET3","index":"0.000002410895003349"},{"denom":"ASSET4","index":"0.000023222264254358"},{"denom":"ASSET5","index":"0.000001877874241403"},{"denom":"ASSET6","index":"0.000007579654674160"},{"denom":"ASSET7","index":"0.000011900488798179"},{"denom":"ASSET8","index":"0.000016239324105118"},{"denom":"ASSET9","index":"0.000006895771583569"}],"last_reward_claim_height":"162"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET6","shares":"443834427.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001387821916020"},{"denom":"ASSET1","index":"0.000011588015182905"},{"denom":"ASSET10","index":"0.000008073788013584"},{"denom":"ASSET11","index":"0.000011209789038410"},{"denom":"ASSET12","index":"0.000010095957715252"},{"denom":"ASSET13","index":"0.000003472532948668"},{"denom":"ASSET14","index":"0.000010471205701129"},{"denom":"ASSET15","index":"0.000007487090765824"},{"denom":"ASSET16","index":"0.000005220712057474"},{"denom":"ASSET17","index":"0.000003707807479495"},{"denom":"ASSET18","index":"0.000001766048060515"},{"denom":"ASSET2","index":"0.000003418926093543"},{"denom":"ASSET3","index":"0.000001000661295671"},{"denom":"ASSET4","index":"0.000009416937550333"},{"denom":"ASSET5","index":"0.000000774321240698"},{"denom":"ASSET6","index":"0.000003159826293771"},{"denom":"ASSET7","index":"0.000004839507754361"},{"denom":"ASSET8","index":"0.000006316674428923"},{"denom":"ASSET9","index":"0.000002727993294151"}],"last_reward_claim_height":"92"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET13","shares":"251731668.695623464640505680","reward_history":[{"denom":"ASSET0","index":"0.000002956721491824"},{"denom":"ASSET1","index":"0.000025136116728129"},{"denom":"ASSET10","index":"0.000020247681325291"},{"denom":"ASSET11","index":"0.000025026479369709"},{"denom":"ASSET12","index":"0.000023957412844230"},{"denom":"ASSET13","index":"0.000007866588644670"},{"denom":"ASSET14","index":"0.000022940688787988"},{"denom":"ASSET15","index":"0.000018203641219753"},{"denom":"ASSET16","index":"0.000011138902531601"},{"denom":"ASSET17","index":"0.000008803888891481"},{"denom":"ASSET18","index":"0.000003602115317706"},{"denom":"ASSET2","index":"0.000007623974866010"},{"denom":"ASSET3","index":"0.000002110544057177"},{"denom":"ASSET4","index":"0.000020374365248917"},{"denom":"ASSET5","index":"0.000001641905652861"},{"denom":"ASSET6","index":"0.000006630874494768"},{"denom":"ASSET7","index":"0.000010436528568948"},{"denom":"ASSET8","index":"0.000014302572224422"},{"denom":"ASSET9","index":"0.000006063325997423"}],"last_reward_claim_height":"128"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET15","shares":"981583070.000000000110501580","reward_history":[{"denom":"ASSET0","index":"0.000001387821916020"},{"denom":"ASSET1","index":"0.000011588015182905"},{"denom":"ASSET10","index":"0.000008073788013584"},{"denom":"ASSET11","index":"0.000011209789038410"},{"denom":"ASSET12","index":"0.000010095957715252"},{"denom":"ASSET13","index":"0.000003472532948668"},{"denom":"ASSET14","index":"0.000010471205701129"},{"denom":"ASSET15","index":"0.000007487090765824"},{"denom":"ASSET16","index":"0.000005220712057474"},{"denom":"ASSET17","index":"0.000003707807479495"},{"denom":"ASSET18","index":"0.000001766048060515"},{"denom":"ASSET2","index":"0.000003418926093543"},{"denom":"ASSET3","index":"0.000001000661295671"},{"denom":"ASSET4","index":"0.000009416937550333"},{"denom":"ASSET5","index":"0.000000774321240698"},{"denom":"ASSET6","index":"0.000003159826293771"},{"denom":"ASSET7","index":"0.000004839507754361"},{"denom":"ASSET8","index":"0.000006316674428923"},{"denom":"ASSET9","index":"0.000002727993294151"}],"last_reward_claim_height":"114"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET17","shares":"541100967.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001387821916020"},{"denom":"ASSET1","index":"0.000011588015182905"},{"denom":"ASSET10","index":"0.000008073788013584"},{"denom":"ASSET11","index":"0.000011209789038410"},{"denom":"ASSET12","index":"0.000010095957715252"},{"denom":"ASSET13","index":"0.000003472532948668"},{"denom":"ASSET14","index":"0.000010471205701129"},{"denom":"ASSET15","index":"0.000007487090765824"},{"denom":"ASSET16","index":"0.000005220712057474"},{"denom":"ASSET17","index":"0.000003707807479495"},{"denom":"ASSET18","index":"0.000001766048060515"},{"denom":"ASSET2","index":"0.000003418926093543"},{"denom":"ASSET3","index":"0.000001000661295671"},{"denom":"ASSET4","index":"0.000009416937550333"},{"denom":"ASSET5","index":"0.000000774321240698"},{"denom":"ASSET6","index":"0.000003159826293771"},{"denom":"ASSET7","index":"0.000004839507754361"},{"denom":"ASSET8","index":"0.000006316674428923"},{"denom":"ASSET9","index":"0.000002727993294151"}],"last_reward_claim_height":"85"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET0","shares":"947674396.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004545294507794"},{"denom":"ASSET1","index":"0.000037192694983912"},{"denom":"ASSET10","index":"0.000032262715242687"},{"denom":"ASSET11","index":"0.000038670034921742"},{"denom":"ASSET12","index":"0.000036825082134373"},{"denom":"ASSET13","index":"0.000012477999234476"},{"denom":"ASSET14","index":"0.000035675231103004"},{"denom":"ASSET15","index":"0.000028955126539269"},{"denom":"ASSET16","index":"0.000016501479711143"},{"denom":"ASSET17","index":"0.000013375565376674"},{"denom":"ASSET18","index":"0.000005551584309232"},{"denom":"ASSET2","index":"0.000011228299311701"},{"denom":"ASSET3","index":"0.000003227045554533"},{"denom":"ASSET4","index":"0.000030489570113631"},{"denom":"ASSET5","index":"0.000002534727468650"},{"denom":"ASSET6","index":"0.000010345764684520"},{"denom":"ASSET7","index":"0.000015981527512644"},{"denom":"ASSET8","index":"0.000023025532506718"},{"denom":"ASSET9","index":"0.000009230960558874"}],"last_reward_claim_height":"200"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET8","shares":"329850363.588768687477636180","reward_history":[{"denom":"ASSET0","index":"0.000003004514310835"},{"denom":"ASSET1","index":"0.000025497942224476"},{"denom":"ASSET10","index":"0.000020385999177782"},{"denom":"ASSET11","index":"0.000025346802479017"},{"denom":"ASSET12","index":"0.000024185328023735"},{"denom":"ASSET13","index":"0.000007962788555043"},{"denom":"ASSET14","index":"0.000023259189454501"},{"denom":"ASSET15","index":"0.000018355567065709"},{"denom":"ASSET16","index":"0.000011309092459120"},{"denom":"ASSET17","index":"0.000008887662321727"},{"denom":"ASSET18","index":"0.000003666570499762"},{"denom":"ASSET2","index":"0.000007723995884874"},{"denom":"ASSET3","index":"0.000002143405494402"},{"denom":"ASSET4","index":"0.000020670641097733"},{"denom":"ASSET5","index":"0.000001670336124344"},{"denom":"ASSET6","index":"0.000006739845385808"},{"denom":"ASSET7","index":"0.000010591422556410"},{"denom":"ASSET8","index":"0.000014475095162856"},{"denom":"ASSET9","index":"0.000006143360978771"}],"last_reward_claim_height":"136"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET0","shares":"245563682.462908018052313628","reward_history":[{"denom":"ASSET0","index":"0.000004661893028622"},{"denom":"ASSET1","index":"0.000038137975825711"},{"denom":"ASSET10","index":"0.000033150085518927"},{"denom":"ASSET11","index":"0.000039682713064008"},{"denom":"ASSET12","index":"0.000037808386674166"},{"denom":"ASSET13","index":"0.000012809978062150"},{"denom":"ASSET14","index":"0.000036604760467577"},{"denom":"ASSET15","index":"0.000029743967314677"},{"denom":"ASSET16","index":"0.000016918476649108"},{"denom":"ASSET17","index":"0.000013731443491498"},{"denom":"ASSET18","index":"0.000005692314706836"},{"denom":"ASSET2","index":"0.000011516703436018"},{"denom":"ASSET3","index":"0.000003310212659144"},{"denom":"ASSET4","index":"0.000031268129730844"},{"denom":"ASSET5","index":"0.000002599699609420"},{"denom":"ASSET6","index":"0.000010611913552986"},{"denom":"ASSET7","index":"0.000016393433257001"},{"denom":"ASSET8","index":"0.000023641582691432"},{"denom":"ASSET9","index":"0.000009470669846110"}],"last_reward_claim_height":"189"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET1","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"54"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET18","shares":"387736043.999999988755654724","reward_history":[],"last_reward_claim_height":"44"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET0","shares":"784266356.000000000000000000","reward_history":[],"last_reward_claim_height":"37"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET6","shares":"18054836.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001016570122529"},{"denom":"ASSET1","index":"0.000008477171470527"},{"denom":"ASSET10","index":"0.000005906463519680"},{"denom":"ASSET11","index":"0.000008200989896911"},{"denom":"ASSET12","index":"0.000007384774710599"},{"denom":"ASSET13","index":"0.000002541117067960"},{"denom":"ASSET14","index":"0.000007660956284215"},{"denom":"ASSET15","index":"0.000005477395717812"},{"denom":"ASSET16","index":"0.000003819073322661"},{"denom":"ASSET17","index":"0.000002711881121289"},{"denom":"ASSET18","index":"0.000001291518742692"},{"denom":"ASSET2","index":"0.000002502279034170"},{"denom":"ASSET3","index":"0.000000731757874738"},{"denom":"ASSET4","index":"0.000006889127422234"},{"denom":"ASSET5","index":"0.000000567775065403"},{"denom":"ASSET6","index":"0.000002312404202309"},{"denom":"ASSET7","index":"0.000003541658795591"},{"denom":"ASSET8","index":"0.000004621109544256"},{"denom":"ASSET9","index":"0.000001996151641449"}],"last_reward_claim_height":"94"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET11","shares":"744251415.078124700032223925","reward_history":[{"denom":"ASSET0","index":"0.000004613485224377"},{"denom":"ASSET1","index":"0.000037740369506725"},{"denom":"ASSET10","index":"0.000032691878864798"},{"denom":"ASSET11","index":"0.000039232152349692"},{"denom":"ASSET12","index":"0.000037331153749090"},{"denom":"ASSET13","index":"0.000012657550996453"},{"denom":"ASSET14","index":"0.000036202019838156"},{"denom":"ASSET15","index":"0.000029349029406985"},{"denom":"ASSET16","index":"0.000016745236814022"},{"denom":"ASSET17","index":"0.000013558784939453"},{"denom":"ASSET18","index":"0.000005636901817265"},{"denom":"ASSET2","index":"0.000011389634856992"},{"denom":"ASSET3","index":"0.000003276670342419"},{"denom":"ASSET4","index":"0.000030939743993790"},{"denom":"ASSET5","index":"0.000002570403032325"},{"denom":"ASSET6","index":"0.000010502839382187"},{"denom":"ASSET7","index":"0.000016219772344493"},{"denom":"ASSET8","index":"0.000023358092187368"},{"denom":"ASSET9","index":"0.000009362632929320"}],"last_reward_claim_height":"187"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET1","shares":"985165772.000000000000000000","reward_history":[],"last_reward_claim_height":"28"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET12","shares":"841409266.619171551624122520","reward_history":[{"denom":"ASSET0","index":"0.000002320380931676"},{"denom":"ASSET1","index":"0.000019748951316256"},{"denom":"ASSET10","index":"0.000016101172379351"},{"denom":"ASSET11","index":"0.000019714000020718"},{"denom":"ASSET12","index":"0.000018967805559844"},{"denom":"ASSET13","index":"0.000006204998608741"},{"denom":"ASSET14","index":"0.000018041457784230"},{"denom":"ASSET15","index":"0.000014440911570898"},{"denom":"ASSET16","index":"0.000008738221404310"},{"denom":"ASSET17","index":"0.000006970584758543"},{"denom":"ASSET18","index":"0.000002814127990287"},{"denom":"ASSET2","index":"0.000006006105656449"},{"denom":"ASSET3","index":"0.000001653724297068"},{"denom":"ASSET4","index":"0.000016005284799403"},{"denom":"ASSET5","index":"0.000001288969102308"},{"denom":"ASSET6","index":"0.000005195185892122"},{"denom":"ASSET7","index":"0.000008196101819524"},{"denom":"ASSET8","index":"0.000011280171312915"},{"denom":"ASSET9","index":"0.000004774394171461"}],"last_reward_claim_height":"138"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET13","shares":"1207235588.000000051545683722","reward_history":[{"denom":"ASSET0","index":"0.000000977108719668"},{"denom":"ASSET1","index":"0.000008146517162771"},{"denom":"ASSET10","index":"0.000005675852121603"},{"denom":"ASSET11","index":"0.000007881108738917"},{"denom":"ASSET12","index":"0.000007096716963958"},{"denom":"ASSET13","index":"0.000002441926549413"},{"denom":"ASSET14","index":"0.000007362125387813"},{"denom":"ASSET15","index":"0.000005263370239944"},{"denom":"ASSET16","index":"0.000003670074447059"},{"denom":"ASSET17","index":"0.000002605905002368"},{"denom":"ASSET18","index":"0.000001241671893765"},{"denom":"ASSET2","index":"0.000002404735560083"},{"denom":"ASSET3","index":"0.000000703247798239"},{"denom":"ASSET4","index":"0.000006620841350486"},{"denom":"ASSET5","index":"0.000000546031343344"},{"denom":"ASSET6","index":"0.000002222161612464"},{"denom":"ASSET7","index":"0.000003402975523689"},{"denom":"ASSET8","index":"0.000004440942225898"},{"denom":"ASSET9","index":"0.000001917871699764"}],"last_reward_claim_height":"76"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET18","shares":"270574331.000000002164594648","reward_history":[{"denom":"ASSET0","index":"0.000002320380931676"},{"denom":"ASSET1","index":"0.000019748951316256"},{"denom":"ASSET10","index":"0.000016101172379351"},{"denom":"ASSET11","index":"0.000019714000020718"},{"denom":"ASSET12","index":"0.000018967805559844"},{"denom":"ASSET13","index":"0.000006204998608741"},{"denom":"ASSET14","index":"0.000018041457784230"},{"denom":"ASSET15","index":"0.000014440911570898"},{"denom":"ASSET16","index":"0.000008738221404310"},{"denom":"ASSET17","index":"0.000006970584758543"},{"denom":"ASSET18","index":"0.000002814127990287"},{"denom":"ASSET2","index":"0.000006006105656449"},{"denom":"ASSET3","index":"0.000001653724297068"},{"denom":"ASSET4","index":"0.000016005284799403"},{"denom":"ASSET5","index":"0.000001288969102308"},{"denom":"ASSET6","index":"0.000005195185892122"},{"denom":"ASSET7","index":"0.000008196101819524"},{"denom":"ASSET8","index":"0.000011280171312915"},{"denom":"ASSET9","index":"0.000004774394171461"}],"last_reward_claim_height":"154"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET2","shares":"824778864.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004988100402711"},{"denom":"ASSET1","index":"0.000040830811222204"},{"denom":"ASSET10","index":"0.000035211557233449"},{"denom":"ASSET11","index":"0.000042368225765116"},{"denom":"ASSET12","index":"0.000040283068049268"},{"denom":"ASSET13","index":"0.000013656840057503"},{"denom":"ASSET14","index":"0.000039101529800040"},{"denom":"ASSET15","index":"0.000031628202661313"},{"denom":"ASSET16","index":"0.000018124368514983"},{"denom":"ASSET17","index":"0.000014635120510330"},{"denom":"ASSET18","index":"0.000006099363487354"},{"denom":"ASSET2","index":"0.000012317983770908"},{"denom":"ASSET3","index":"0.000003543214603465"},{"denom":"ASSET4","index":"0.000033464976861775"},{"denom":"ASSET5","index":"0.000002781716792708"},{"denom":"ASSET6","index":"0.000011353508340787"},{"denom":"ASSET7","index":"0.000017532655976265"},{"denom":"ASSET8","index":"0.000025192183938276"},{"denom":"ASSET9","index":"0.000010118614836237"}],"last_reward_claim_height":"194"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET17","shares":"365383658.693225093716259679","reward_history":[{"denom":"ASSET0","index":"0.000003342998947188"},{"denom":"ASSET1","index":"0.000028345782457833"},{"denom":"ASSET10","index":"0.000022532322238539"},{"denom":"ASSET11","index":"0.000028144588841629"},{"denom":"ASSET12","index":"0.000026788988923046"},{"denom":"ASSET13","index":"0.000008836278349189"},{"denom":"ASSET14","index":"0.000025846526421467"},{"denom":"ASSET15","index":"0.000020312521464953"},{"denom":"ASSET16","index":"0.000012581099317360"},{"denom":"ASSET17","index":"0.000009844015126225"},{"denom":"ASSET18","index":"0.000004087085525414"},{"denom":"ASSET2","index":"0.000008577030596387"},{"denom":"ASSET3","index":"0.000002386540105172"},{"denom":"ASSET4","index":"0.000022982635628207"},{"denom":"ASSET5","index":"0.000001858980311097"},{"denom":"ASSET6","index":"0.000007503977785171"},{"denom":"ASSET7","index":"0.000011778054778213"},{"denom":"ASSET8","index":"0.000016064148587518"},{"denom":"ASSET9","index":"0.000006822246648031"}],"last_reward_claim_height":"180"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET18","shares":"196805861.904444852680674011","reward_history":[{"denom":"ASSET0","index":"0.000003342998947188"},{"denom":"ASSET1","index":"0.000028345782457833"},{"denom":"ASSET10","index":"0.000022532322238539"},{"denom":"ASSET11","index":"0.000028144588841629"},{"denom":"ASSET12","index":"0.000026788988923046"},{"denom":"ASSET13","index":"0.000008836278349189"},{"denom":"ASSET14","index":"0.000025846526421467"},{"denom":"ASSET15","index":"0.000020312521464953"},{"denom":"ASSET16","index":"0.000012581099317360"},{"denom":"ASSET17","index":"0.000009844015126225"},{"denom":"ASSET18","index":"0.000004087085525414"},{"denom":"ASSET2","index":"0.000008577030596387"},{"denom":"ASSET3","index":"0.000002386540105172"},{"denom":"ASSET4","index":"0.000022982635628207"},{"denom":"ASSET5","index":"0.000001858980311097"},{"denom":"ASSET6","index":"0.000007503977785171"},{"denom":"ASSET7","index":"0.000011778054778213"},{"denom":"ASSET8","index":"0.000016064148587518"},{"denom":"ASSET9","index":"0.000006822246648031"}],"last_reward_claim_height":"158"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET11","shares":"794451556.000000000000000000","reward_history":[],"last_reward_claim_height":"24"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET15","shares":"476237779.891758335810665203","reward_history":[{"denom":"ASSET0","index":"0.000001535240763659"},{"denom":"ASSET1","index":"0.000012802535686671"},{"denom":"ASSET10","index":"0.000008918976928097"},{"denom":"ASSET11","index":"0.000012384847277788"},{"denom":"ASSET12","index":"0.000011152366284839"},{"denom":"ASSET13","index":"0.000003838101909148"},{"denom":"ASSET14","index":"0.000011569197017318"},{"denom":"ASSET15","index":"0.000008271431242866"},{"denom":"ASSET16","index":"0.000005767016142371"},{"denom":"ASSET17","index":"0.000004095404830432"},{"denom":"ASSET18","index":"0.000001951213819735"},{"denom":"ASSET2","index":"0.000003778922237253"},{"denom":"ASSET3","index":"0.000001105544885116"},{"denom":"ASSET4","index":"0.000010403614783903"},{"denom":"ASSET5","index":"0.000000857676404279"},{"denom":"ASSET6","index":"0.000003491600641819"},{"denom":"ASSET7","index":"0.000005348470057083"},{"denom":"ASSET8","index":"0.000006978912901618"},{"denom":"ASSET9","index":"0.000003013874884636"}],"last_reward_claim_height":"92"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET16","shares":"226899280.179071018704228043","reward_history":[{"denom":"ASSET0","index":"0.000001535240763659"},{"denom":"ASSET1","index":"0.000012802535686671"},{"denom":"ASSET10","index":"0.000008918976928097"},{"denom":"ASSET11","index":"0.000012384847277788"},{"denom":"ASSET12","index":"0.000011152366284839"},{"denom":"ASSET13","index":"0.000003838101909148"},{"denom":"ASSET14","index":"0.000011569197017318"},{"denom":"ASSET15","index":"0.000008271431242866"},{"denom":"ASSET16","index":"0.000005767016142371"},{"denom":"ASSET17","index":"0.000004095404830432"},{"denom":"ASSET18","index":"0.000001951213819735"},{"denom":"ASSET2","index":"0.000003778922237253"},{"denom":"ASSET3","index":"0.000001105544885116"},{"denom":"ASSET4","index":"0.000010403614783903"},{"denom":"ASSET5","index":"0.000000857676404279"},{"denom":"ASSET6","index":"0.000003491600641819"},{"denom":"ASSET7","index":"0.000005348470057083"},{"denom":"ASSET8","index":"0.000006978912901618"},{"denom":"ASSET9","index":"0.000003013874884636"}],"last_reward_claim_height":"73"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET18","shares":"355407689.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001535240763659"},{"denom":"ASSET1","index":"0.000012802535686671"},{"denom":"ASSET10","index":"0.000008918976928097"},{"denom":"ASSET11","index":"0.000012384847277788"},{"denom":"ASSET12","index":"0.000011152366284839"},{"denom":"ASSET13","index":"0.000003838101909148"},{"denom":"ASSET14","index":"0.000011569197017318"},{"denom":"ASSET15","index":"0.000008271431242866"},{"denom":"ASSET16","index":"0.000005767016142371"},{"denom":"ASSET17","index":"0.000004095404830432"},{"denom":"ASSET18","index":"0.000001951213819735"},{"denom":"ASSET2","index":"0.000003778922237253"},{"denom":"ASSET3","index":"0.000001105544885116"},{"denom":"ASSET4","index":"0.000010403614783903"},{"denom":"ASSET5","index":"0.000000857676404279"},{"denom":"ASSET6","index":"0.000003491600641819"},{"denom":"ASSET7","index":"0.000005348470057083"},{"denom":"ASSET8","index":"0.000006978912901618"},{"denom":"ASSET9","index":"0.000003013874884636"}],"last_reward_claim_height":"92"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET11","shares":"555695667.000000080575871715","reward_history":[{"denom":"ASSET0","index":"0.000005022043474041"},{"denom":"ASSET1","index":"0.000041096794239441"},{"denom":"ASSET10","index":"0.000035574671940647"},{"denom":"ASSET11","index":"0.000042700481411828"},{"denom":"ASSET12","index":"0.000040638297029532"},{"denom":"ASSET13","index":"0.000013773808455342"},{"denom":"ASSET14","index":"0.000039399672265895"},{"denom":"ASSET15","index":"0.000031937841897211"},{"denom":"ASSET16","index":"0.000018237403653439"},{"denom":"ASSET17","index":"0.000014762079157320"},{"denom":"ASSET18","index":"0.000006137029310650"},{"denom":"ASSET2","index":"0.000012403796445196"},{"denom":"ASSET3","index":"0.000003566759582791"},{"denom":"ASSET4","index":"0.000033688477201807"},{"denom":"ASSET5","index":"0.000002800829165762"},{"denom":"ASSET6","index":"0.000011431718580511"},{"denom":"ASSET7","index":"0.000017656166797885"},{"denom":"ASSET8","index":"0.000025414309681597"},{"denom":"ASSET9","index":"0.000010194770419860"}],"last_reward_claim_height":"191"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET12","shares":"842980863.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003333609736915"},{"denom":"ASSET1","index":"0.000028281729059652"},{"denom":"ASSET10","index":"0.000022560289398652"},{"denom":"ASSET11","index":"0.000028101042421314"},{"denom":"ASSET12","index":"0.000026787599659919"},{"denom":"ASSET13","index":"0.000008826015241086"},{"denom":"ASSET14","index":"0.000025794402991537"},{"denom":"ASSET15","index":"0.000020323143219667"},{"denom":"ASSET16","index":"0.000012547562311789"},{"denom":"ASSET17","index":"0.000009844220733470"},{"denom":"ASSET18","index":"0.000004071528772633"},{"denom":"ASSET2","index":"0.000008563776406339"},{"denom":"ASSET3","index":"0.000002379222276435"},{"denom":"ASSET4","index":"0.000022929058250150"},{"denom":"ASSET5","index":"0.000001853699834530"},{"denom":"ASSET6","index":"0.000007480326246914"},{"denom":"ASSET7","index":"0.000011749530638760"},{"denom":"ASSET8","index":"0.000016044906214881"},{"denom":"ASSET9","index":"0.000006811209452101"}],"last_reward_claim_height":"169"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET14","shares":"1349872.000000000478627264","reward_history":[],"last_reward_claim_height":"12"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET4","shares":"933171287.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003372790294110"},{"denom":"ASSET1","index":"0.000028600279733511"},{"denom":"ASSET10","index":"0.000022731421090197"},{"denom":"ASSET11","index":"0.000028396190348540"},{"denom":"ASSET12","index":"0.000027027392524280"},{"denom":"ASSET13","index":"0.000008915082315276"},{"denom":"ASSET14","index":"0.000026078776667620"},{"denom":"ASSET15","index":"0.000020492230414373"},{"denom":"ASSET16","index":"0.000012694274413467"},{"denom":"ASSET17","index":"0.000009931274832025"},{"denom":"ASSET18","index":"0.000004123939856338"},{"denom":"ASSET2","index":"0.000008653658587521"},{"denom":"ASSET3","index":"0.000002407864000528"},{"denom":"ASSET4","index":"0.000023189126720885"},{"denom":"ASSET5","index":"0.000001875419633234"},{"denom":"ASSET6","index":"0.000007571725921487"},{"denom":"ASSET7","index":"0.000011883748947250"},{"denom":"ASSET8","index":"0.000016207221904670"},{"denom":"ASSET9","index":"0.000006883201227023"}],"last_reward_claim_height":"153"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET15","shares":"236220834.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001763265776240"},{"denom":"ASSET1","index":"0.000014701143889842"},{"denom":"ASSET10","index":"0.000010242267715158"},{"denom":"ASSET11","index":"0.000014221824092125"},{"denom":"ASSET12","index":"0.000012807154532407"},{"denom":"ASSET13","index":"0.000004407037513175"},{"denom":"ASSET14","index":"0.000013285723045174"},{"denom":"ASSET15","index":"0.000009498495615253"},{"denom":"ASSET16","index":"0.000006622576828953"},{"denom":"ASSET17","index":"0.000004703043783239"},{"denom":"ASSET18","index":"0.000002240331719108"},{"denom":"ASSET2","index":"0.000004339421867729"},{"denom":"ASSET3","index":"0.000001269671564485"},{"denom":"ASSET4","index":"0.000011947684550294"},{"denom":"ASSET5","index":"0.000000984934568662"},{"denom":"ASSET6","index":"0.000004010359059893"},{"denom":"ASSET7","index":"0.000006141754461338"},{"denom":"ASSET8","index":"0.000008013956555240"},{"denom":"ASSET9","index":"0.000003461169761882"}],"last_reward_claim_height":"123"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET17","shares":"590857840.978387273333776258","reward_history":[{"denom":"ASSET0","index":"0.000003372790294110"},{"denom":"ASSET1","index":"0.000028600279733511"},{"denom":"ASSET10","index":"0.000022731421090197"},{"denom":"ASSET11","index":"0.000028396190348540"},{"denom":"ASSET12","index":"0.000027027392524280"},{"denom":"ASSET13","index":"0.000008915082315276"},{"denom":"ASSET14","index":"0.000026078776667620"},{"denom":"ASSET15","index":"0.000020492230414373"},{"denom":"ASSET16","index":"0.000012694274413467"},{"denom":"ASSET17","index":"0.000009931274832025"},{"denom":"ASSET18","index":"0.000004123939856338"},{"denom":"ASSET2","index":"0.000008653658587521"},{"denom":"ASSET3","index":"0.000002407864000528"},{"denom":"ASSET4","index":"0.000023189126720885"},{"denom":"ASSET5","index":"0.000001875419633234"},{"denom":"ASSET6","index":"0.000007571725921487"},{"denom":"ASSET7","index":"0.000011883748947250"},{"denom":"ASSET8","index":"0.000016207221904670"},{"denom":"ASSET9","index":"0.000006883201227023"}],"last_reward_claim_height":"158"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET8","shares":"668889057.000000000000000000","reward_history":[],"last_reward_claim_height":"52"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","denom":"ASSET11","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001453309126336"},{"denom":"ASSET1","index":"0.000012116886392617"},{"denom":"ASSET10","index":"0.000008441923956558"},{"denom":"ASSET11","index":"0.000011721955689254"},{"denom":"ASSET12","index":"0.000010555542874101"},{"denom":"ASSET13","index":"0.000003632376264868"},{"denom":"ASSET14","index":"0.000010950025301978"},{"denom":"ASSET15","index":"0.000007829131366891"},{"denom":"ASSET16","index":"0.000005458650595742"},{"denom":"ASSET17","index":"0.000003876686404859"},{"denom":"ASSET18","index":"0.000001846446727754"},{"denom":"ASSET2","index":"0.000003576790104576"},{"denom":"ASSET3","index":"0.000001046274984845"},{"denom":"ASSET4","index":"0.000009847267605868"},{"denom":"ASSET5","index":"0.000000812275181037"},{"denom":"ASSET6","index":"0.000003305135159925"},{"denom":"ASSET7","index":"0.000005061926790434"},{"denom":"ASSET8","index":"0.000006605339289501"},{"denom":"ASSET9","index":"0.000002852825194325"}],"last_reward_claim_height":"75"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET3","shares":"70491145.237720062897285090","reward_history":[{"denom":"ASSET0","index":"0.000001542334439671"},{"denom":"ASSET1","index":"0.000012860022908304"},{"denom":"ASSET10","index":"0.000008959505058412"},{"denom":"ASSET11","index":"0.000012440701863130"},{"denom":"ASSET12","index":"0.000011202637482986"},{"denom":"ASSET13","index":"0.000003855293405849"},{"denom":"ASSET14","index":"0.000011621234937056"},{"denom":"ASSET15","index":"0.000008308996655285"},{"denom":"ASSET16","index":"0.000005793070384239"},{"denom":"ASSET17","index":"0.000004114339021332"},{"denom":"ASSET18","index":"0.000001959846507084"},{"denom":"ASSET2","index":"0.000003796320730815"},{"denom":"ASSET3","index":"0.000001110350550164"},{"denom":"ASSET4","index":"0.000010450826325201"},{"denom":"ASSET5","index":"0.000000861797005699"},{"denom":"ASSET6","index":"0.000003507969675592"},{"denom":"ASSET7","index":"0.000005372663952407"},{"denom":"ASSET8","index":"0.000007010512417899"},{"denom":"ASSET9","index":"0.000003027866977623"}],"last_reward_claim_height":"111"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET7","shares":"543138101.376251758300262304","reward_history":[{"denom":"ASSET0","index":"0.000003036454064443"},{"denom":"ASSET1","index":"0.000025762443856573"},{"denom":"ASSET10","index":"0.000020552854458451"},{"denom":"ASSET11","index":"0.000025598594042577"},{"denom":"ASSET12","index":"0.000024403233064712"},{"denom":"ASSET13","index":"0.000008040226829205"},{"denom":"ASSET14","index":"0.000023496526683137"},{"denom":"ASSET15","index":"0.000018514610345002"},{"denom":"ASSET16","index":"0.000011429420030088"},{"denom":"ASSET17","index":"0.000008967792958730"},{"denom":"ASSET18","index":"0.000003708688180539"},{"denom":"ASSET2","index":"0.000007801450355100"},{"denom":"ASSET3","index":"0.000002167197324698"},{"denom":"ASSET4","index":"0.000020886439041228"},{"denom":"ASSET5","index":"0.000001688395026424"},{"denom":"ASSET6","index":"0.000006814112030993"},{"denom":"ASSET7","index":"0.000010703097412338"},{"denom":"ASSET8","index":"0.000014616213118562"},{"denom":"ASSET9","index":"0.000006204650488693"}],"last_reward_claim_height":"163"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET12","shares":"758370979.000000000098041560","reward_history":[],"last_reward_claim_height":"29"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET14","shares":"503621606.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001542334439671"},{"denom":"ASSET1","index":"0.000012860022908304"},{"denom":"ASSET10","index":"0.000008959505058412"},{"denom":"ASSET11","index":"0.000012440701863130"},{"denom":"ASSET12","index":"0.000011202637482986"},{"denom":"ASSET13","index":"0.000003855293405849"},{"denom":"ASSET14","index":"0.000011621234937056"},{"denom":"ASSET15","index":"0.000008308996655285"},{"denom":"ASSET16","index":"0.000005793070384239"},{"denom":"ASSET17","index":"0.000004114339021332"},{"denom":"ASSET18","index":"0.000001959846507084"},{"denom":"ASSET2","index":"0.000003796320730815"},{"denom":"ASSET3","index":"0.000001110350550164"},{"denom":"ASSET4","index":"0.000010450826325201"},{"denom":"ASSET5","index":"0.000000861797005699"},{"denom":"ASSET6","index":"0.000003507969675592"},{"denom":"ASSET7","index":"0.000005372663952407"},{"denom":"ASSET8","index":"0.000007010512417899"},{"denom":"ASSET9","index":"0.000003027866977623"}],"last_reward_claim_height":"102"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET3","shares":"41962963.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001802604811891"},{"denom":"ASSET1","index":"0.000015041134377282"},{"denom":"ASSET10","index":"0.000010478421042795"},{"denom":"ASSET11","index":"0.000014549893343095"},{"denom":"ASSET12","index":"0.000013101148598203"},{"denom":"ASSET13","index":"0.000004508593559534"},{"denom":"ASSET14","index":"0.000013592389632390"},{"denom":"ASSET15","index":"0.000009716581133843"},{"denom":"ASSET16","index":"0.000006773297988330"},{"denom":"ASSET17","index":"0.000004812496911192"},{"denom":"ASSET18","index":"0.000002289682786467"},{"denom":"ASSET2","index":"0.000004437821546134"},{"denom":"ASSET3","index":"0.000001298874598869"},{"denom":"ASSET4","index":"0.000012222743020122"},{"denom":"ASSET5","index":"0.000001007460426045"},{"denom":"ASSET6","index":"0.000004100613717582"},{"denom":"ASSET7","index":"0.000006282056954143"},{"denom":"ASSET8","index":"0.000008197064375552"},{"denom":"ASSET9","index":"0.000003538600669994"}],"last_reward_claim_height":"66"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET17","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001802604811891"},{"denom":"ASSET1","index":"0.000015041134377282"},{"denom":"ASSET10","index":"0.000010478421042795"},{"denom":"ASSET11","index":"0.000014549893343095"},{"denom":"ASSET12","index":"0.000013101148598203"},{"denom":"ASSET13","index":"0.000004508593559534"},{"denom":"ASSET14","index":"0.000013592389632390"},{"denom":"ASSET15","index":"0.000009716581133843"},{"denom":"ASSET16","index":"0.000006773297988330"},{"denom":"ASSET17","index":"0.000004812496911192"},{"denom":"ASSET18","index":"0.000002289682786467"},{"denom":"ASSET2","index":"0.000004437821546134"},{"denom":"ASSET3","index":"0.000001298874598869"},{"denom":"ASSET4","index":"0.000012222743020122"},{"denom":"ASSET5","index":"0.000001007460426045"},{"denom":"ASSET6","index":"0.000004100613717582"},{"denom":"ASSET7","index":"0.000006282056954143"},{"denom":"ASSET8","index":"0.000008197064375552"},{"denom":"ASSET9","index":"0.000003538600669994"}],"last_reward_claim_height":"64"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET0","shares":"75531639.000000000000000000","reward_history":[],"last_reward_claim_height":"61"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET6","shares":"60807935.351575701964589677","reward_history":[{"denom":"ASSET0","index":"0.000001563811170888"},{"denom":"ASSET1","index":"0.000013038374863878"},{"denom":"ASSET10","index":"0.000009083864212622"},{"denom":"ASSET11","index":"0.000012612362006834"},{"denom":"ASSET12","index":"0.000011358137819015"},{"denom":"ASSET13","index":"0.000003908204905926"},{"denom":"ASSET14","index":"0.000011781504633469"},{"denom":"ASSET15","index":"0.000008423676586333"},{"denom":"ASSET16","index":"0.000005872891529250"},{"denom":"ASSET17","index":"0.000004170163122369"},{"denom":"ASSET18","index":"0.000001987177985342"},{"denom":"ASSET2","index":"0.000003848668947643"},{"denom":"ASSET3","index":"0.000001125891122188"},{"denom":"ASSET4","index":"0.000010596077552999"},{"denom":"ASSET5","index":"0.000000873194054811"},{"denom":"ASSET6","index":"0.000003556281241411"},{"denom":"ASSET7","index":"0.000005446878672206"},{"denom":"ASSET8","index":"0.000007107270397641"},{"denom":"ASSET9","index":"0.000003069409404789"}],"last_reward_claim_height":"69"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET8","shares":"510834690.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003311345528520"},{"denom":"ASSET1","index":"0.000028134750769747"},{"denom":"ASSET10","index":"0.000022648872120201"},{"denom":"ASSET11","index":"0.000028007957662740"},{"denom":"ASSET12","index":"0.000026803793052874"},{"denom":"ASSET13","index":"0.000008804941803873"},{"denom":"ASSET14","index":"0.000025676450668466"},{"denom":"ASSET15","index":"0.000020365161363483"},{"denom":"ASSET16","index":"0.000012467103206876"},{"denom":"ASSET17","index":"0.000009848512066991"},{"denom":"ASSET18","index":"0.000004032794375330"},{"denom":"ASSET2","index":"0.000008534928074651"},{"denom":"ASSET3","index":"0.000002362590241163"},{"denom":"ASSET4","index":"0.000022806063702805"},{"denom":"ASSET5","index":"0.000001840254083448"},{"denom":"ASSET6","index":"0.000007424521355960"},{"denom":"ASSET7","index":"0.000011683846998076"},{"denom":"ASSET8","index":"0.000016006498096466"},{"denom":"ASSET9","index":"0.000006786333067798"}],"last_reward_claim_height":"141"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET14","shares":"65902006.642689270618587004","reward_history":[{"denom":"ASSET0","index":"0.000003311345528520"},{"denom":"ASSET1","index":"0.000028134750769747"},{"denom":"ASSET10","index":"0.000022648872120201"},{"denom":"ASSET11","index":"0.000028007957662740"},{"denom":"ASSET12","index":"0.000026803793052874"},{"denom":"ASSET13","index":"0.000008804941803873"},{"denom":"ASSET14","index":"0.000025676450668466"},{"denom":"ASSET15","index":"0.000020365161363483"},{"denom":"ASSET16","index":"0.000012467103206876"},{"denom":"ASSET17","index":"0.000009848512066991"},{"denom":"ASSET18","index":"0.000004032794375330"},{"denom":"ASSET2","index":"0.000008534928074651"},{"denom":"ASSET3","index":"0.000002362590241163"},{"denom":"ASSET4","index":"0.000022806063702805"},{"denom":"ASSET5","index":"0.000001840254083448"},{"denom":"ASSET6","index":"0.000007424521355960"},{"denom":"ASSET7","index":"0.000011683846998076"},{"denom":"ASSET8","index":"0.000016006498096466"},{"denom":"ASSET9","index":"0.000006786333067798"}],"last_reward_claim_height":"166"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET10","shares":"300699857.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001600184479142"},{"denom":"ASSET1","index":"0.000013342157474081"},{"denom":"ASSET10","index":"0.000009295060662992"},{"denom":"ASSET11","index":"0.000012907134644369"},{"denom":"ASSET12","index":"0.000011622469236023"},{"denom":"ASSET13","index":"0.000003999732516397"},{"denom":"ASSET14","index":"0.000012056763384279"},{"denom":"ASSET15","index":"0.000008620301633991"},{"denom":"ASSET16","index":"0.000006010164655719"},{"denom":"ASSET17","index":"0.000004268615973958"},{"denom":"ASSET18","index":"0.000002033021264483"},{"denom":"ASSET2","index":"0.000003938523274026"},{"denom":"ASSET3","index":"0.000001152045383207"},{"denom":"ASSET4","index":"0.000010842780077243"},{"denom":"ASSET5","index":"0.000000894092147498"},{"denom":"ASSET6","index":"0.000003639035195279"},{"denom":"ASSET7","index":"0.000005573684463094"},{"denom":"ASSET8","index":"0.000007272969620361"},{"denom":"ASSET9","index":"0.000003141345760282"}],"last_reward_claim_height":"80"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET0","shares":"375988732.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004819121490741"},{"denom":"ASSET1","index":"0.000039439037062385"},{"denom":"ASSET10","index":"0.000033949711699647"},{"denom":"ASSET11","index":"0.000040926462496439"},{"denom":"ASSET12","index":"0.000038853804420393"},{"denom":"ASSET13","index":"0.000013188383097013"},{"denom":"ASSET14","index":"0.000037786507004869"},{"denom":"ASSET15","index":"0.000030511465947454"},{"denom":"ASSET16","index":"0.000017508488927783"},{"denom":"ASSET17","index":"0.000014113313501087"},{"denom":"ASSET18","index":"0.000005902508101436"},{"denom":"ASSET2","index":"0.000011888871733978"},{"denom":"ASSET3","index":"0.000003426020888663"},{"denom":"ASSET4","index":"0.000032328377078046"},{"denom":"ASSET5","index":"0.000002685672180211"},{"denom":"ASSET6","index":"0.000010983824100820"},{"denom":"ASSET7","index":"0.000016943392626871"},{"denom":"ASSET8","index":"0.000024343267700456"},{"denom":"ASSET9","index":"0.000009767523137997"}],"last_reward_claim_height":"191"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET4","shares":"378595842.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003203314564743"},{"denom":"ASSET1","index":"0.000027174750089688"},{"denom":"ASSET10","index":"0.000021494761442080"},{"denom":"ASSET11","index":"0.000026954579685264"},{"denom":"ASSET12","index":"0.000025598519259277"},{"denom":"ASSET13","index":"0.000008453363478510"},{"denom":"ASSET14","index":"0.000024766008219885"},{"denom":"ASSET15","index":"0.000019395989679368"},{"denom":"ASSET16","index":"0.000012063312986412"},{"denom":"ASSET17","index":"0.000009406957788586"},{"denom":"ASSET18","index":"0.000003925664786352"},{"denom":"ASSET2","index":"0.000008214094571203"},{"denom":"ASSET3","index":"0.000002289770772075"},{"denom":"ASSET4","index":"0.000022031271429646"},{"denom":"ASSET5","index":"0.000001779377444361"},{"denom":"ASSET6","index":"0.000007202120906665"},{"denom":"ASSET7","index":"0.000011290805949933"},{"denom":"ASSET8","index":"0.000015376618183469"},{"denom":"ASSET9","index":"0.000006529467958809"}],"last_reward_claim_height":"144"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET0","shares":"290290613.000000000000000000","reward_history":[],"last_reward_claim_height":"47"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET18","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"58"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET3","shares":"774066709.000000031736735069","reward_history":[{"denom":"ASSET0","index":"0.000002915106026686"},{"denom":"ASSET1","index":"0.000024751938975568"},{"denom":"ASSET10","index":"0.000019864528416862"},{"denom":"ASSET11","index":"0.000024625253839727"},{"denom":"ASSET12","index":"0.000023534700266806"},{"denom":"ASSET13","index":"0.000007739190454504"},{"denom":"ASSET14","index":"0.000022584902384729"},{"denom":"ASSET15","index":"0.000017872912229645"},{"denom":"ASSET16","index":"0.000010972881933217"},{"denom":"ASSET17","index":"0.000008648586457086"},{"denom":"ASSET18","index":"0.000003552999450219"},{"denom":"ASSET2","index":"0.000007504215303421"},{"denom":"ASSET3","index":"0.000002079538758775"},{"denom":"ASSET4","index":"0.000020065180146540"},{"denom":"ASSET5","index":"0.000001620267199228"},{"denom":"ASSET6","index":"0.000006536798446662"},{"denom":"ASSET7","index":"0.000010280222742310"},{"denom":"ASSET8","index":"0.000014068743113537"},{"denom":"ASSET9","index":"0.000005967789042866"}],"last_reward_claim_height":"162"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET12","shares":"364339506.000000000000000000","reward_history":[],"last_reward_claim_height":"13"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET17","shares":"511659903.000000002558299515","reward_history":[{"denom":"ASSET0","index":"0.000001411639939639"},{"denom":"ASSET1","index":"0.000011770559134781"},{"denom":"ASSET10","index":"0.000008200405560598"},{"denom":"ASSET11","index":"0.000011386782830640"},{"denom":"ASSET12","index":"0.000010253700018254"},{"denom":"ASSET13","index":"0.000003528795747429"},{"denom":"ASSET14","index":"0.000010636868119061"},{"denom":"ASSET15","index":"0.000007604974496011"},{"denom":"ASSET16","index":"0.000005302316671163"},{"denom":"ASSET17","index":"0.000003765386844594"},{"denom":"ASSET18","index":"0.000001793591633776"},{"denom":"ASSET2","index":"0.000003474665650649"},{"denom":"ASSET3","index":"0.000001016307772140"},{"denom":"ASSET4","index":"0.000009565822046806"},{"denom":"ASSET5","index":"0.000000788839724994"},{"denom":"ASSET6","index":"0.000003210705403426"},{"denom":"ASSET7","index":"0.000004917323960353"},{"denom":"ASSET8","index":"0.000006416545180176"},{"denom":"ASSET9","index":"0.000002771582595835"}],"last_reward_claim_height":"120"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET1","shares":"386702620.999999975637734877","reward_history":[{"denom":"ASSET0","index":"0.000001598361255475"},{"denom":"ASSET1","index":"0.000013324868720531"},{"denom":"ASSET10","index":"0.000009283863630055"},{"denom":"ASSET11","index":"0.000012890721875256"},{"denom":"ASSET12","index":"0.000011607749807828"},{"denom":"ASSET13","index":"0.000003994929715268"},{"denom":"ASSET14","index":"0.000012041896653103"},{"denom":"ASSET15","index":"0.000008609605674538"},{"denom":"ASSET16","index":"0.000006002777756047"},{"denom":"ASSET17","index":"0.000004262945630213"},{"denom":"ASSET18","index":"0.000002030561253910"},{"denom":"ASSET2","index":"0.000003933279565341"},{"denom":"ASSET3","index":"0.000001150586482321"},{"denom":"ASSET4","index":"0.000010829011071909"},{"denom":"ASSET5","index":"0.000000892953750521"},{"denom":"ASSET6","index":"0.000003634763049905"},{"denom":"ASSET7","index":"0.000005566684063932"},{"denom":"ASSET8","index":"0.000007263685559290"},{"denom":"ASSET9","index":"0.000003137668156809"}],"last_reward_claim_height":"120"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET2","shares":"578864026.000000028943201300","reward_history":[{"denom":"ASSET0","index":"0.000003119961272076"},{"denom":"ASSET1","index":"0.000026462428012801"},{"denom":"ASSET10","index":"0.000021088828135750"},{"denom":"ASSET11","index":"0.000026288818556387"},{"denom":"ASSET12","index":"0.000025049012446876"},{"denom":"ASSET13","index":"0.000008256026418292"},{"denom":"ASSET14","index":"0.000024133914778951"},{"denom":"ASSET15","index":"0.000019001193386697"},{"denom":"ASSET16","index":"0.000011741691861213"},{"denom":"ASSET17","index":"0.000009205139483526"},{"denom":"ASSET18","index":"0.000003811157018018"},{"denom":"ASSET2","index":"0.000008011229275486"},{"denom":"ASSET3","index":"0.000002226652147557"},{"denom":"ASSET4","index":"0.000021454928269907"},{"denom":"ASSET5","index":"0.000001734689929917"},{"denom":"ASSET6","index":"0.000007001091110949"},{"denom":"ASSET7","index":"0.000010994186615549"},{"denom":"ASSET8","index":"0.000015007966738007"},{"denom":"ASSET9","index":"0.000006372340046203"}],"last_reward_claim_height":"156"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET6","shares":"11269698.000000000000000000","reward_history":[],"last_reward_claim_height":"23"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET7","shares":"51115818.198421205906838398","reward_history":[{"denom":"ASSET0","index":"0.000003119961272076"},{"denom":"ASSET1","index":"0.000026462428012801"},{"denom":"ASSET10","index":"0.000021088828135750"},{"denom":"ASSET11","index":"0.000026288818556387"},{"denom":"ASSET12","index":"0.000025049012446876"},{"denom":"ASSET13","index":"0.000008256026418292"},{"denom":"ASSET14","index":"0.000024133914778951"},{"denom":"ASSET15","index":"0.000019001193386697"},{"denom":"ASSET16","index":"0.000011741691861213"},{"denom":"ASSET17","index":"0.000009205139483526"},{"denom":"ASSET18","index":"0.000003811157018018"},{"denom":"ASSET2","index":"0.000008011229275486"},{"denom":"ASSET3","index":"0.000002226652147557"},{"denom":"ASSET4","index":"0.000021454928269907"},{"denom":"ASSET5","index":"0.000001734689929917"},{"denom":"ASSET6","index":"0.000007001091110949"},{"denom":"ASSET7","index":"0.000010994186615549"},{"denom":"ASSET8","index":"0.000015007966738007"},{"denom":"ASSET9","index":"0.000006372340046203"}],"last_reward_claim_height":"134"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET2","shares":"41976723.559470597720107436","reward_history":[{"denom":"ASSET0","index":"0.000003061984062566"},{"denom":"ASSET1","index":"0.000025984754387841"},{"denom":"ASSET10","index":"0.000020750278468036"},{"denom":"ASSET11","index":"0.000025825260107338"},{"denom":"ASSET12","index":"0.000024630365005548"},{"denom":"ASSET13","index":"0.000008111503841622"},{"denom":"ASSET14","index":"0.000023701848593669"},{"denom":"ASSET15","index":"0.000018689068915475"},{"denom":"ASSET16","index":"0.000011526541772952"},{"denom":"ASSET17","index":"0.000009050861170220"},{"denom":"ASSET18","index":"0.000003739265665267"},{"denom":"ASSET2","index":"0.000007869809789784"},{"denom":"ASSET3","index":"0.000002185113944095"},{"denom":"ASSET4","index":"0.000021066477214749"},{"denom":"ASSET5","index":"0.000001702392649313"},{"denom":"ASSET6","index":"0.000006871251000760"},{"denom":"ASSET7","index":"0.000010794622225013"},{"denom":"ASSET8","index":"0.000014746923085504"},{"denom":"ASSET9","index":"0.000006258895459680"}],"last_reward_claim_height":"135"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","denom":"ASSET9","shares":"811682235.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001543375593884"},{"denom":"ASSET1","index":"0.000012871309378663"},{"denom":"ASSET10","index":"0.000008967332198598"},{"denom":"ASSET11","index":"0.000012451619524186"},{"denom":"ASSET12","index":"0.000011213472915376"},{"denom":"ASSET13","index":"0.000003858438984711"},{"denom":"ASSET14","index":"0.000011631932007817"},{"denom":"ASSET15","index":"0.000008316259081242"},{"denom":"ASSET16","index":"0.000005798119954378"},{"denom":"ASSET17","index":"0.000004118129774432"},{"denom":"ASSET18","index":"0.000001961834686325"},{"denom":"ASSET2","index":"0.000003799362406955"},{"denom":"ASSET3","index":"0.000001111378119041"},{"denom":"ASSET4","index":"0.000010460246548983"},{"denom":"ASSET5","index":"0.000000862764187650"},{"denom":"ASSET6","index":"0.000003511364090393"},{"denom":"ASSET7","index":"0.000005377199337864"},{"denom":"ASSET8","index":"0.000007016574370602"},{"denom":"ASSET9","index":"0.000003030136134086"}],"last_reward_claim_height":"118"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET0","shares":"305814497.000000053560629536","reward_history":[{"denom":"ASSET0","index":"0.000001745217677213"},{"denom":"ASSET1","index":"0.000014553842410819"},{"denom":"ASSET10","index":"0.000010139729507131"},{"denom":"ASSET11","index":"0.000014078681363843"},{"denom":"ASSET12","index":"0.000012678362515121"},{"denom":"ASSET13","index":"0.000004362304066790"},{"denom":"ASSET14","index":"0.000013152043309614"},{"denom":"ASSET15","index":"0.000009402563770700"},{"denom":"ASSET16","index":"0.000006556038246289"},{"denom":"ASSET17","index":"0.000004655394058383"},{"denom":"ASSET18","index":"0.000002217418219224"},{"denom":"ASSET2","index":"0.000004295692705065"},{"denom":"ASSET3","index":"0.000001256734357891"},{"denom":"ASSET4","index":"0.000011827217337515"},{"denom":"ASSET5","index":"0.000000975486386160"},{"denom":"ASSET6","index":"0.000003970037158850"},{"denom":"ASSET7","index":"0.000006079396946830"},{"denom":"ASSET8","index":"0.000007932673055287"},{"denom":"ASSET9","index":"0.000003426784497665"}],"last_reward_claim_height":"88"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET2","shares":"296757731.741235241214027445","reward_history":[{"denom":"ASSET0","index":"0.000003296605577903"},{"denom":"ASSET1","index":"0.000027950980635352"},{"denom":"ASSET10","index":"0.000022177590033485"},{"denom":"ASSET11","index":"0.000027741245317152"},{"denom":"ASSET12","index":"0.000026384837371861"},{"denom":"ASSET13","index":"0.000008707523198290"},{"denom":"ASSET14","index":"0.000025482773879389"},{"denom":"ASSET15","index":"0.000019999205716580"},{"denom":"ASSET16","index":"0.000012408342313410"},{"denom":"ASSET17","index":"0.000009694954350389"},{"denom":"ASSET18","index":"0.000004033447725414"},{"denom":"ASSET2","index":"0.000008454290496983"},{"denom":"ASSET3","index":"0.000002354114882033"},{"denom":"ASSET4","index":"0.000022662624820802"},{"denom":"ASSET5","index":"0.000001833709311257"},{"denom":"ASSET6","index":"0.000007402928859239"},{"denom":"ASSET7","index":"0.000011614131087351"},{"denom":"ASSET8","index":"0.000015829970625061"},{"denom":"ASSET9","index":"0.000006725199056296"}],"last_reward_claim_height":"177"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET3","shares":"154609353.041320367243418486","reward_history":[{"denom":"ASSET0","index":"0.000004887144198005"},{"denom":"ASSET1","index":"0.000040023452786680"},{"denom":"ASSET10","index":"0.000034437802546936"},{"denom":"ASSET11","index":"0.000041494859984978"},{"denom":"ASSET12","index":"0.000039432934551770"},{"denom":"ASSET13","index":"0.000013368653429450"},{"denom":"ASSET14","index":"0.000038299674909876"},{"denom":"ASSET15","index":"0.000030940975323868"},{"denom":"ASSET16","index":"0.000017768457463154"},{"denom":"ASSET17","index":"0.000014327966130944"},{"denom":"ASSET18","index":"0.000005979301312257"},{"denom":"ASSET2","index":"0.000012071629758701"},{"denom":"ASSET3","index":"0.000003472888386423"},{"denom":"ASSET4","index":"0.000032798616202156"},{"denom":"ASSET5","index":"0.000002725831062282"},{"denom":"ASSET6","index":"0.000011125357279785"},{"denom":"ASSET7","index":"0.000017178460034926"},{"denom":"ASSET8","index":"0.000024656607892367"},{"denom":"ASSET9","index":"0.000009912524841079"}],"last_reward_claim_height":"187"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET16","shares":"116855968.357934522716075964","reward_history":[{"denom":"ASSET0","index":"0.000004887144198005"},{"denom":"ASSET1","index":"0.000040023452786680"},{"denom":"ASSET10","index":"0.000034437802546936"},{"denom":"ASSET11","index":"0.000041494859984978"},{"denom":"ASSET12","index":"0.000039432934551770"},{"denom":"ASSET13","index":"0.000013368653429450"},{"denom":"ASSET14","index":"0.000038299674909876"},{"denom":"ASSET15","index":"0.000030940975323868"},{"denom":"ASSET16","index":"0.000017768457463154"},{"denom":"ASSET17","index":"0.000014327966130944"},{"denom":"ASSET18","index":"0.000005979301312257"},{"denom":"ASSET2","index":"0.000012071629758701"},{"denom":"ASSET3","index":"0.000003472888386423"},{"denom":"ASSET4","index":"0.000032798616202156"},{"denom":"ASSET5","index":"0.000002725831062282"},{"denom":"ASSET6","index":"0.000011125357279785"},{"denom":"ASSET7","index":"0.000017178460034926"},{"denom":"ASSET8","index":"0.000024656607892367"},{"denom":"ASSET9","index":"0.000009912524841079"}],"last_reward_claim_height":"189"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET1","shares":"512422192.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001696105704481"},{"denom":"ASSET1","index":"0.000014140754037071"},{"denom":"ASSET10","index":"0.000009851931515387"},{"denom":"ASSET11","index":"0.000013679695806241"},{"denom":"ASSET12","index":"0.000012318593050331"},{"denom":"ASSET13","index":"0.000004239283286244"},{"denom":"ASSET14","index":"0.000012779160793682"},{"denom":"ASSET15","index":"0.000009136800770120"},{"denom":"ASSET16","index":"0.000006369960897657"},{"denom":"ASSET17","index":"0.000004523766024416"},{"denom":"ASSET18","index":"0.000002155201985393"},{"denom":"ASSET2","index":"0.000004174048451456"},{"denom":"ASSET3","index":"0.000001220823336742"},{"denom":"ASSET4","index":"0.000011492121647193"},{"denom":"ASSET5","index":"0.000000947621810601"},{"denom":"ASSET6","index":"0.000003857193539630"},{"denom":"ASSET7","index":"0.000005907431204387"},{"denom":"ASSET8","index":"0.000007708991716984"},{"denom":"ASSET9","index":"0.000003329429011573"}],"last_reward_claim_height":"114"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET2","shares":"672255685.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004817835879767"},{"denom":"ASSET1","index":"0.000039488204780396"},{"denom":"ASSET10","index":"0.000033995250485661"},{"denom":"ASSET11","index":"0.000040925091239801"},{"denom":"ASSET12","index":"0.000038926083462773"},{"denom":"ASSET13","index":"0.000013182210958747"},{"denom":"ASSET14","index":"0.000037759800640957"},{"denom":"ASSET15","index":"0.000030534401627825"},{"denom":"ASSET16","index":"0.000017526460270060"},{"denom":"ASSET17","index":"0.000014147141919553"},{"denom":"ASSET18","index":"0.000005890295558042"},{"denom":"ASSET2","index":"0.000011916234104952"},{"denom":"ASSET3","index":"0.000003422666965158"},{"denom":"ASSET4","index":"0.000032353046153051"},{"denom":"ASSET5","index":"0.000002686332119571"},{"denom":"ASSET6","index":"0.000010961064994483"},{"denom":"ASSET7","index":"0.000016937661203717"},{"denom":"ASSET8","index":"0.000024306118669962"},{"denom":"ASSET9","index":"0.000009778460006236"}],"last_reward_claim_height":"186"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET5","shares":"549226055.177311736191802571","reward_history":[{"denom":"ASSET0","index":"0.000004817835879767"},{"denom":"ASSET1","index":"0.000039488204780396"},{"denom":"ASSET10","index":"0.000033995250485661"},{"denom":"ASSET11","index":"0.000040925091239801"},{"denom":"ASSET12","index":"0.000038926083462773"},{"denom":"ASSET13","index":"0.000013182210958747"},{"denom":"ASSET14","index":"0.000037759800640957"},{"denom":"ASSET15","index":"0.000030534401627825"},{"denom":"ASSET16","index":"0.000017526460270060"},{"denom":"ASSET17","index":"0.000014147141919553"},{"denom":"ASSET18","index":"0.000005890295558042"},{"denom":"ASSET2","index":"0.000011916234104952"},{"denom":"ASSET3","index":"0.000003422666965158"},{"denom":"ASSET4","index":"0.000032353046153051"},{"denom":"ASSET5","index":"0.000002686332119571"},{"denom":"ASSET6","index":"0.000010961064994483"},{"denom":"ASSET7","index":"0.000016937661203717"},{"denom":"ASSET8","index":"0.000024306118669962"},{"denom":"ASSET9","index":"0.000009778460006236"}],"last_reward_claim_height":"192"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET7","shares":"128203459.969907724677344431","reward_history":[{"denom":"ASSET0","index":"0.000003278023650839"},{"denom":"ASSET1","index":"0.000027801084973989"},{"denom":"ASSET10","index":"0.000022126343818190"},{"denom":"ASSET11","index":"0.000027610641458424"},{"denom":"ASSET12","index":"0.000026294522151225"},{"denom":"ASSET13","index":"0.000008669795972838"},{"denom":"ASSET14","index":"0.000025352034708572"},{"denom":"ASSET15","index":"0.000019941753748345"},{"denom":"ASSET16","index":"0.000012337408081897"},{"denom":"ASSET17","index":"0.000009662232510971"},{"denom":"ASSET18","index":"0.000004006663612522"},{"denom":"ASSET2","index":"0.000008414274009770"},{"denom":"ASSET3","index":"0.000002339697370568"},{"denom":"ASSET4","index":"0.000022540556466857"},{"denom":"ASSET5","index":"0.000001822656991491"},{"denom":"ASSET6","index":"0.000007357334263189"},{"denom":"ASSET7","index":"0.000011551068960203"},{"denom":"ASSET8","index":"0.000015761386047857"},{"denom":"ASSET9","index":"0.000006692834331509"}],"last_reward_claim_height":"180"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET10","shares":"213223825.338846108225934180","reward_history":[{"denom":"ASSET0","index":"0.000001696105704481"},{"denom":"ASSET1","index":"0.000014140754037071"},{"denom":"ASSET10","index":"0.000009851931515387"},{"denom":"ASSET11","index":"0.000013679695806241"},{"denom":"ASSET12","index":"0.000012318593050331"},{"denom":"ASSET13","index":"0.000004239283286244"},{"denom":"ASSET14","index":"0.000012779160793682"},{"denom":"ASSET15","index":"0.000009136800770120"},{"denom":"ASSET16","index":"0.000006369960897657"},{"denom":"ASSET17","index":"0.000004523766024416"},{"denom":"ASSET18","index":"0.000002155201985393"},{"denom":"ASSET2","index":"0.000004174048451456"},{"denom":"ASSET3","index":"0.000001220823336742"},{"denom":"ASSET4","index":"0.000011492121647193"},{"denom":"ASSET5","index":"0.000000947621810601"},{"denom":"ASSET6","index":"0.000003857193539630"},{"denom":"ASSET7","index":"0.000005907431204387"},{"denom":"ASSET8","index":"0.000007708991716984"},{"denom":"ASSET9","index":"0.000003329429011573"}],"last_reward_claim_height":"106"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET7","shares":"699883439.999999960106643920","reward_history":[{"denom":"ASSET0","index":"0.000001139195115521"},{"denom":"ASSET1","index":"0.000009496890331931"},{"denom":"ASSET10","index":"0.000006616523219856"},{"denom":"ASSET11","index":"0.000009187371854639"},{"denom":"ASSET12","index":"0.000008273091178185"},{"denom":"ASSET13","index":"0.000002846943294505"},{"denom":"ASSET14","index":"0.000008582261490710"},{"denom":"ASSET15","index":"0.000006136055842283"},{"denom":"ASSET16","index":"0.000004278248649000"},{"denom":"ASSET17","index":"0.000003038433916001"},{"denom":"ASSET18","index":"0.000001447320933748"},{"denom":"ASSET2","index":"0.000002803422698710"},{"denom":"ASSET3","index":"0.000000819928024772"},{"denom":"ASSET4","index":"0.000007718116540611"},{"denom":"ASSET5","index":"0.000000636445192901"},{"denom":"ASSET6","index":"0.000002590694026466"},{"denom":"ASSET7","index":"0.000003967685677409"},{"denom":"ASSET8","index":"0.000005177210075735"},{"denom":"ASSET9","index":"0.000002236262294314"}],"last_reward_claim_height":"99"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET11","shares":"400136978.174949511266023109","reward_history":[{"denom":"ASSET0","index":"0.000003310378542013"},{"denom":"ASSET1","index":"0.000028352771206955"},{"denom":"ASSET10","index":"0.000022778987578468"},{"denom":"ASSET11","index":"0.000028201706998458"},{"denom":"ASSET12","index":"0.000026949790221900"},{"denom":"ASSET13","index":"0.000008856641706946"},{"denom":"ASSET14","index":"0.000025865717784540"},{"denom":"ASSET15","index":"0.000020483790155485"},{"denom":"ASSET16","index":"0.000012564495758376"},{"denom":"ASSET17","index":"0.000009912517491786"},{"denom":"ASSET18","index":"0.000004051289802086"},{"denom":"ASSET2","index":"0.000008567503486413"},{"denom":"ASSET3","index":"0.000002358477605528"},{"denom":"ASSET4","index":"0.000022984011222606"},{"denom":"ASSET5","index":"0.000001848359330263"},{"denom":"ASSET6","index":"0.000007474666006436"},{"denom":"ASSET7","index":"0.000011763521743703"},{"denom":"ASSET8","index":"0.000016098224703406"},{"denom":"ASSET9","index":"0.000006837907042961"}],"last_reward_claim_height":"125"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET18","shares":"690657607.883618449679271574","reward_history":[{"denom":"ASSET0","index":"0.000003086330633608"},{"denom":"ASSET1","index":"0.000026187842720704"},{"denom":"ASSET10","index":"0.000020922921087024"},{"denom":"ASSET11","index":"0.000026029396638226"},{"denom":"ASSET12","index":"0.000024828709288325"},{"denom":"ASSET13","index":"0.000008176601230700"},{"denom":"ASSET14","index":"0.000023887113573615"},{"denom":"ASSET15","index":"0.000018841856891118"},{"denom":"ASSET16","index":"0.000011616230118922"},{"denom":"ASSET17","index":"0.000009124242236202"},{"denom":"ASSET18","index":"0.000003767471049721"},{"denom":"ASSET2","index":"0.000007932284099147"},{"denom":"ASSET3","index":"0.000002202458257762"},{"denom":"ASSET4","index":"0.000021230824628511"},{"denom":"ASSET5","index":"0.000001715648257347"},{"denom":"ASSET6","index":"0.000006923830152599"},{"denom":"ASSET7","index":"0.000010879262909104"},{"denom":"ASSET8","index":"0.000014863870027497"},{"denom":"ASSET9","index":"0.000006308409915314"}],"last_reward_claim_height":"172"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET2","shares":"358326288.396839867719906936","reward_history":[{"denom":"ASSET0","index":"0.000001535524830156"},{"denom":"ASSET1","index":"0.000012804491333161"},{"denom":"ASSET10","index":"0.000008921035499248"},{"denom":"ASSET11","index":"0.000012386713938596"},{"denom":"ASSET12","index":"0.000011154325740380"},{"denom":"ASSET13","index":"0.000003838812075390"},{"denom":"ASSET14","index":"0.000011571000819920"},{"denom":"ASSET15","index":"0.000008272874264409"},{"denom":"ASSET16","index":"0.000005767863369556"},{"denom":"ASSET17","index":"0.000004096202633783"},{"denom":"ASSET18","index":"0.000001951097594671"},{"denom":"ASSET2","index":"0.000003779838221540"},{"denom":"ASSET3","index":"0.000001105621970313"},{"denom":"ASSET4","index":"0.000010405853838244"},{"denom":"ASSET5","index":"0.000000858152247148"},{"denom":"ASSET6","index":"0.000003492685157466"},{"denom":"ASSET7","index":"0.000005348983659966"},{"denom":"ASSET8","index":"0.000006980409897318"},{"denom":"ASSET9","index":"0.000003014831594025"}],"last_reward_claim_height":"118"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET17","shares":"820652596.721836022900006111","reward_history":[{"denom":"ASSET0","index":"0.000003051773960929"},{"denom":"ASSET1","index":"0.000025898629359040"},{"denom":"ASSET10","index":"0.000020686863907037"},{"denom":"ASSET11","index":"0.000025740096441319"},{"denom":"ASSET12","index":"0.000024551000542772"},{"denom":"ASSET13","index":"0.000008085532012369"},{"denom":"ASSET14","index":"0.000023622558405526"},{"denom":"ASSET15","index":"0.000018629920308839"},{"denom":"ASSET16","index":"0.000011487540137638"},{"denom":"ASSET17","index":"0.000009021847693812"},{"denom":"ASSET18","index":"0.000003725572559942"},{"denom":"ASSET2","index":"0.000007844221178735"},{"denom":"ASSET3","index":"0.000002178252359768"},{"denom":"ASSET4","index":"0.000020996168979716"},{"denom":"ASSET5","index":"0.000001697004218389"},{"denom":"ASSET6","index":"0.000006847583721256"},{"denom":"ASSET7","index":"0.000010758483833946"},{"denom":"ASSET8","index":"0.000014699172267780"},{"denom":"ASSET9","index":"0.000006238834616461"}],"last_reward_claim_height":"145"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET6","shares":"45178018.903450994381065102","reward_history":[{"denom":"ASSET0","index":"0.000001813824295534"},{"denom":"ASSET1","index":"0.000015126179984122"},{"denom":"ASSET10","index":"0.000010538420488017"},{"denom":"ASSET11","index":"0.000014633035948465"},{"denom":"ASSET12","index":"0.000013177247733614"},{"denom":"ASSET13","index":"0.000004534560738834"},{"denom":"ASSET14","index":"0.000013669547344553"},{"denom":"ASSET15","index":"0.000009773371692973"},{"denom":"ASSET16","index":"0.000006813663054312"},{"denom":"ASSET17","index":"0.000004839398062246"},{"denom":"ASSET18","index":"0.000002305279481754"},{"denom":"ASSET2","index":"0.000004465317911910"},{"denom":"ASSET3","index":"0.000001306325039660"},{"denom":"ASSET4","index":"0.000012293135053249"},{"denom":"ASSET5","index":"0.000001013309662309"},{"denom":"ASSET6","index":"0.000004125859175036"},{"denom":"ASSET7","index":"0.000006318830169217"},{"denom":"ASSET8","index":"0.000008245807377042"},{"denom":"ASSET9","index":"0.000003561783463017"}],"last_reward_claim_height":"79"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET10","shares":"673940943.982995625729044666","reward_history":[{"denom":"ASSET0","index":"0.000001813824295534"},{"denom":"ASSET1","index":"0.000015126179984122"},{"denom":"ASSET10","index":"0.000010538420488017"},{"denom":"ASSET11","index":"0.000014633035948465"},{"denom":"ASSET12","index":"0.000013177247733614"},{"denom":"ASSET13","index":"0.000004534560738834"},{"denom":"ASSET14","index":"0.000013669547344553"},{"denom":"ASSET15","index":"0.000009773371692973"},{"denom":"ASSET16","index":"0.000006813663054312"},{"denom":"ASSET17","index":"0.000004839398062246"},{"denom":"ASSET18","index":"0.000002305279481754"},{"denom":"ASSET2","index":"0.000004465317911910"},{"denom":"ASSET3","index":"0.000001306325039660"},{"denom":"ASSET4","index":"0.000012293135053249"},{"denom":"ASSET5","index":"0.000001013309662309"},{"denom":"ASSET6","index":"0.000004125859175036"},{"denom":"ASSET7","index":"0.000006318830169217"},{"denom":"ASSET8","index":"0.000008245807377042"},{"denom":"ASSET9","index":"0.000003561783463017"}],"last_reward_claim_height":"65"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","denom":"ASSET14","shares":"87002209.317780291853924938","reward_history":[{"denom":"ASSET0","index":"0.000001813824295534"},{"denom":"ASSET1","index":"0.000015126179984122"},{"denom":"ASSET10","index":"0.000010538420488017"},{"denom":"ASSET11","index":"0.000014633035948465"},{"denom":"ASSET12","index":"0.000013177247733614"},{"denom":"ASSET13","index":"0.000004534560738834"},{"denom":"ASSET14","index":"0.000013669547344553"},{"denom":"ASSET15","index":"0.000009773371692973"},{"denom":"ASSET16","index":"0.000006813663054312"},{"denom":"ASSET17","index":"0.000004839398062246"},{"denom":"ASSET18","index":"0.000002305279481754"},{"denom":"ASSET2","index":"0.000004465317911910"},{"denom":"ASSET3","index":"0.000001306325039660"},{"denom":"ASSET4","index":"0.000012293135053249"},{"denom":"ASSET5","index":"0.000001013309662309"},{"denom":"ASSET6","index":"0.000004125859175036"},{"denom":"ASSET7","index":"0.000006318830169217"},{"denom":"ASSET8","index":"0.000008245807377042"},{"denom":"ASSET9","index":"0.000003561783463017"}],"last_reward_claim_height":"118"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET7","shares":"367574347.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002868026198866"},{"denom":"ASSET1","index":"0.000024339331661302"},{"denom":"ASSET10","index":"0.000019438063504597"},{"denom":"ASSET11","index":"0.000024190729344646"},{"denom":"ASSET12","index":"0.000023070632234294"},{"denom":"ASSET13","index":"0.000007598221307181"},{"denom":"ASSET14","index":"0.000022200415230506"},{"denom":"ASSET15","index":"0.000017506414948675"},{"denom":"ASSET16","index":"0.000010796282691537"},{"denom":"ASSET17","index":"0.000008477235924619"},{"denom":"ASSET18","index":"0.000003501529899130"},{"denom":"ASSET2","index":"0.000007371086117521"},{"denom":"ASSET3","index":"0.000002046801194740"},{"denom":"ASSET4","index":"0.000019732782799148"},{"denom":"ASSET5","index":"0.000001595074946946"},{"denom":"ASSET6","index":"0.000006435625489467"},{"denom":"ASSET7","index":"0.000010111140720407"},{"denom":"ASSET8","index":"0.000013813490690156"},{"denom":"ASSET9","index":"0.000005862589992841"}],"last_reward_claim_height":"125"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET2","shares":"762061555.999999953803788010","reward_history":[{"denom":"ASSET0","index":"0.000001655416114862"},{"denom":"ASSET1","index":"0.000013800538848519"},{"denom":"ASSET10","index":"0.000009615249134678"},{"denom":"ASSET11","index":"0.000013350879623065"},{"denom":"ASSET12","index":"0.000012022439267096"},{"denom":"ASSET13","index":"0.000004137189147657"},{"denom":"ASSET14","index":"0.000012471558036751"},{"denom":"ASSET15","index":"0.000008916980241305"},{"denom":"ASSET16","index":"0.000006216863065381"},{"denom":"ASSET17","index":"0.000004414983428766"},{"denom":"ASSET18","index":"0.000002102913517117"},{"denom":"ASSET2","index":"0.000004073955819077"},{"denom":"ASSET3","index":"0.000001191705038613"},{"denom":"ASSET4","index":"0.000011215538757958"},{"denom":"ASSET5","index":"0.000000924719873500"},{"denom":"ASSET6","index":"0.000003764274645778"},{"denom":"ASSET7","index":"0.000005765582472528"},{"denom":"ASSET8","index":"0.000007523144733557"},{"denom":"ASSET9","index":"0.000003249220268545"}],"last_reward_claim_height":"97"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","denom":"ASSET12","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003262792429801"},{"denom":"ASSET1","index":"0.000027679878715890"},{"denom":"ASSET10","index":"0.000022086570261210"},{"denom":"ASSET11","index":"0.000027505267384149"},{"denom":"ASSET12","index":"0.000026222420015979"},{"denom":"ASSET13","index":"0.000008638975204347"},{"denom":"ASSET14","index":"0.000025246236428505"},{"denom":"ASSET15","index":"0.000019895354512471"},{"denom":"ASSET16","index":"0.000012279836462442"},{"denom":"ASSET17","index":"0.000009636125515167"},{"denom":"ASSET18","index":"0.000003984145752232"},{"denom":"ASSET2","index":"0.000008382344169353"},{"denom":"ASSET3","index":"0.000002328549799735"},{"denom":"ASSET4","index":"0.000022441247538096"},{"denom":"ASSET5","index":"0.000001813932132265"},{"denom":"ASSET6","index":"0.000007320527694069"},{"denom":"ASSET7","index":"0.000011499571173317"},{"denom":"ASSET8","index":"0.000015704553099640"},{"denom":"ASSET9","index":"0.000006666608399750"}],"last_reward_claim_height":"139"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET2","shares":"164070527.813440177928510477","reward_history":[{"denom":"ASSET0","index":"0.000001676736923170"},{"denom":"ASSET1","index":"0.000013985463602132"},{"denom":"ASSET10","index":"0.000009743339709608"},{"denom":"ASSET11","index":"0.000013528824721587"},{"denom":"ASSET12","index":"0.000012182509640070"},{"denom":"ASSET13","index":"0.000004192868462713"},{"denom":"ASSET14","index":"0.000012638122365828"},{"denom":"ASSET15","index":"0.000009036319060854"},{"denom":"ASSET16","index":"0.000006299564241947"},{"denom":"ASSET17","index":"0.000004474034874554"},{"denom":"ASSET18","index":"0.000002131323494140"},{"denom":"ASSET2","index":"0.000004128220711085"},{"denom":"ASSET3","index":"0.000001207784185172"},{"denom":"ASSET4","index":"0.000011365690429028"},{"denom":"ASSET5","index":"0.000000936879321208"},{"denom":"ASSET6","index":"0.000003814217346036"},{"denom":"ASSET7","index":"0.000005841899206614"},{"denom":"ASSET8","index":"0.000007623303918134"},{"denom":"ASSET9","index":"0.000003292930713863"}],"last_reward_claim_height":"83"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET7","shares":"545240491.423974611268244740","reward_history":[{"denom":"ASSET0","index":"0.000001676736923170"},{"denom":"ASSET1","index":"0.000013985463602132"},{"denom":"ASSET10","index":"0.000009743339709608"},{"denom":"ASSET11","index":"0.000013528824721587"},{"denom":"ASSET12","index":"0.000012182509640070"},{"denom":"ASSET13","index":"0.000004192868462713"},{"denom":"ASSET14","index":"0.000012638122365828"},{"denom":"ASSET15","index":"0.000009036319060854"},{"denom":"ASSET16","index":"0.000006299564241947"},{"denom":"ASSET17","index":"0.000004474034874554"},{"denom":"ASSET18","index":"0.000002131323494140"},{"denom":"ASSET2","index":"0.000004128220711085"},{"denom":"ASSET3","index":"0.000001207784185172"},{"denom":"ASSET4","index":"0.000011365690429028"},{"denom":"ASSET5","index":"0.000000936879321208"},{"denom":"ASSET6","index":"0.000003814217346036"},{"denom":"ASSET7","index":"0.000005841899206614"},{"denom":"ASSET8","index":"0.000007623303918134"},{"denom":"ASSET9","index":"0.000003292930713863"}],"last_reward_claim_height":"107"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET12","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"9"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET3","shares":"812466697.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001687654189845"},{"denom":"ASSET1","index":"0.000014079752531439"},{"denom":"ASSET10","index":"0.000009809029374167"},{"denom":"ASSET11","index":"0.000013620990639222"},{"denom":"ASSET12","index":"0.000012264971552184"},{"denom":"ASSET13","index":"0.000004220977891851"},{"denom":"ASSET14","index":"0.000012723733444402"},{"denom":"ASSET15","index":"0.000009097856320367"},{"denom":"ASSET16","index":"0.000006341600132585"},{"denom":"ASSET17","index":"0.000004504710146476"},{"denom":"ASSET18","index":"0.000002144573664825"},{"denom":"ASSET2","index":"0.000004156493288528"},{"denom":"ASSET3","index":"0.000001215995376963"},{"denom":"ASSET4","index":"0.000011441411046878"},{"denom":"ASSET5","index":"0.000000943317625765"},{"denom":"ASSET6","index":"0.000003839597523622"},{"denom":"ASSET7","index":"0.000005880995823129"},{"denom":"ASSET8","index":"0.000007675510212768"},{"denom":"ASSET9","index":"0.000003314508610843"}],"last_reward_claim_height":"75"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET10","shares":"274529847.999999994509403040","reward_history":[{"denom":"ASSET0","index":"0.000003237925740153"},{"denom":"ASSET1","index":"0.000027468087048908"},{"denom":"ASSET10","index":"0.000021838560142362"},{"denom":"ASSET11","index":"0.000027274223261348"},{"denom":"ASSET12","index":"0.000025962125103579"},{"denom":"ASSET13","index":"0.000008562973508850"},{"denom":"ASSET14","index":"0.000025046299162567"},{"denom":"ASSET15","index":"0.000019687604125947"},{"denom":"ASSET16","index":"0.000012189946370622"},{"denom":"ASSET17","index":"0.000009540519193028"},{"denom":"ASSET18","index":"0.000003959057055270"},{"denom":"ASSET2","index":"0.000008312511220651"},{"denom":"ASSET3","index":"0.000002312646079660"},{"denom":"ASSET4","index":"0.000022269978905361"},{"denom":"ASSET5","index":"0.000001800462011039"},{"denom":"ASSET6","index":"0.000007270233858279"},{"denom":"ASSET7","index":"0.000011411601588483"},{"denom":"ASSET8","index":"0.000015567552190875"},{"denom":"ASSET9","index":"0.000006610637099613"}],"last_reward_claim_height":"173"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET11","shares":"112424673.776382269795139994","reward_history":[{"denom":"ASSET0","index":"0.000003237925740153"},{"denom":"ASSET1","index":"0.000027468087048908"},{"denom":"ASSET10","index":"0.000021838560142362"},{"denom":"ASSET11","index":"0.000027274223261348"},{"denom":"ASSET12","index":"0.000025962125103579"},{"denom":"ASSET13","index":"0.000008562973508850"},{"denom":"ASSET14","index":"0.000025046299162567"},{"denom":"ASSET15","index":"0.000019687604125947"},{"denom":"ASSET16","index":"0.000012189946370622"},{"denom":"ASSET17","index":"0.000009540519193028"},{"denom":"ASSET18","index":"0.000003959057055270"},{"denom":"ASSET2","index":"0.000008312511220651"},{"denom":"ASSET3","index":"0.000002312646079660"},{"denom":"ASSET4","index":"0.000022269978905361"},{"denom":"ASSET5","index":"0.000001800462011039"},{"denom":"ASSET6","index":"0.000007270233858279"},{"denom":"ASSET7","index":"0.000011411601588483"},{"denom":"ASSET8","index":"0.000015567552190875"},{"denom":"ASSET9","index":"0.000006610637099613"}],"last_reward_claim_height":"152"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET14","shares":"849727528.172004457803527051","reward_history":[{"denom":"ASSET0","index":"0.000004759364904599"},{"denom":"ASSET1","index":"0.000039014688598823"},{"denom":"ASSET10","index":"0.000033564746899774"},{"denom":"ASSET11","index":"0.000040428699846607"},{"denom":"ASSET12","index":"0.000038441898385906"},{"denom":"ASSET13","index":"0.000013020994461924"},{"denom":"ASSET14","index":"0.000037304807804505"},{"denom":"ASSET15","index":"0.000030152778242557"},{"denom":"ASSET16","index":"0.000017316516616402"},{"denom":"ASSET17","index":"0.000013971686283299"},{"denom":"ASSET18","index":"0.000005820085693082"},{"denom":"ASSET2","index":"0.000011772463606205"},{"denom":"ASSET3","index":"0.000003382604675726"},{"denom":"ASSET4","index":"0.000031964503105066"},{"denom":"ASSET5","index":"0.000002653911338254"},{"denom":"ASSET6","index":"0.000010830608501608"},{"denom":"ASSET7","index":"0.000016733421795061"},{"denom":"ASSET8","index":"0.000024009455581904"},{"denom":"ASSET9","index":"0.000009659109983255"}],"last_reward_claim_height":"192"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET18","shares":"224632795.000000000000000000","reward_history":[],"last_reward_claim_height":"9"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET2","shares":"1258322325.168260947091340608","reward_history":[{"denom":"ASSET0","index":"0.000004829962844284"},{"denom":"ASSET1","index":"0.000039524111522190"},{"denom":"ASSET10","index":"0.000034078647298627"},{"denom":"ASSET11","index":"0.000041019961315880"},{"denom":"ASSET12","index":"0.000038986303917418"},{"denom":"ASSET13","index":"0.000013223748427218"},{"denom":"ASSET14","index":"0.000037862348824484"},{"denom":"ASSET15","index":"0.000030615488739002"},{"denom":"ASSET16","index":"0.000017546337426996"},{"denom":"ASSET17","index":"0.000014163136845027"},{"denom":"ASSET18","index":"0.000005908859381642"},{"denom":"ASSET2","index":"0.000011921448629340"},{"denom":"ASSET3","index":"0.000003430931561974"},{"denom":"ASSET4","index":"0.000032397189102807"},{"denom":"ASSET5","index":"0.000002693636544476"},{"denom":"ASSET6","index":"0.000010996765047817"},{"denom":"ASSET7","index":"0.000016976981501674"},{"denom":"ASSET8","index":"0.000024395918561262"},{"denom":"ASSET9","index":"0.000009795939235919"}],"last_reward_claim_height":"190"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET12","shares":"160498792.400934255433216625","reward_history":[{"denom":"ASSET0","index":"0.000001700269946448"},{"denom":"ASSET1","index":"0.000014175647296985"},{"denom":"ASSET10","index":"0.000009876508679424"},{"denom":"ASSET11","index":"0.000013714231996791"},{"denom":"ASSET12","index":"0.000012349169664489"},{"denom":"ASSET13","index":"0.000004249665204630"},{"denom":"ASSET14","index":"0.000012810584964683"},{"denom":"ASSET15","index":"0.000009159649022667"},{"denom":"ASSET16","index":"0.000006386108914062"},{"denom":"ASSET17","index":"0.000004535399405845"},{"denom":"ASSET18","index":"0.000002160675585153"},{"denom":"ASSET2","index":"0.000004184037207885"},{"denom":"ASSET3","index":"0.000001223709723928"},{"denom":"ASSET4","index":"0.000011520237582522"},{"denom":"ASSET5","index":"0.000000950091460574"},{"denom":"ASSET6","index":"0.000003867003500531"},{"denom":"ASSET7","index":"0.000005922674290891"},{"denom":"ASSET8","index":"0.000007727949032131"},{"denom":"ASSET9","index":"0.000003337940880615"}],"last_reward_claim_height":"112"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET18","shares":"420999835.999999919168031488","reward_history":[],"last_reward_claim_height":"48"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET3","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001505652349479"},{"denom":"ASSET1","index":"0.000012557843622987"},{"denom":"ASSET10","index":"0.000008748308836028"},{"denom":"ASSET11","index":"0.000012147743761261"},{"denom":"ASSET12","index":"0.000010939413811534"},{"denom":"ASSET13","index":"0.000003764130873697"},{"denom":"ASSET14","index":"0.000011348049030896"},{"denom":"ASSET15","index":"0.000008114118692716"},{"denom":"ASSET16","index":"0.000005656448807088"},{"denom":"ASSET17","index":"0.000004017514002549"},{"denom":"ASSET18","index":"0.000001912822926478"},{"denom":"ASSET2","index":"0.000003707009821528"},{"denom":"ASSET3","index":"0.000001083835348847"},{"denom":"ASSET4","index":"0.000010205627987517"},{"denom":"ASSET5","index":"0.000000840704716538"},{"denom":"ASSET6","index":"0.000003424333845410"},{"denom":"ASSET7","index":"0.000005246348945363"},{"denom":"ASSET8","index":"0.000006845738406093"},{"denom":"ASSET9","index":"0.000002955648289152"}],"last_reward_claim_height":"118"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET2","shares":"35707562.756376553813852082","reward_history":[{"denom":"ASSET0","index":"0.000003468946703322"},{"denom":"ASSET1","index":"0.000029412495408176"},{"denom":"ASSET10","index":"0.000023372734593498"},{"denom":"ASSET11","index":"0.000029203218600002"},{"denom":"ASSET12","index":"0.000027792166579196"},{"denom":"ASSET13","index":"0.000009167641990636"},{"denom":"ASSET14","index":"0.000026818252104650"},{"denom":"ASSET15","index":"0.000021072198152383"},{"denom":"ASSET16","index":"0.000013054905852031"},{"denom":"ASSET17","index":"0.000010211457984650"},{"denom":"ASSET18","index":"0.000004240878207320"},{"denom":"ASSET2","index":"0.000008898543974195"},{"denom":"ASSET3","index":"0.000002476460623897"},{"denom":"ASSET4","index":"0.000023847831794350"},{"denom":"ASSET5","index":"0.000001927880642719"},{"denom":"ASSET6","index":"0.000007785977685579"},{"denom":"ASSET7","index":"0.000012222326144679"},{"denom":"ASSET8","index":"0.000016667230515151"},{"denom":"ASSET9","index":"0.000007078301868557"}],"last_reward_claim_height":"166"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET7","shares":"950622335.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001815877519749"},{"denom":"ASSET1","index":"0.000015137138459046"},{"denom":"ASSET10","index":"0.000010545739718907"},{"denom":"ASSET11","index":"0.000014644907422941"},{"denom":"ASSET12","index":"0.000013186828093302"},{"denom":"ASSET13","index":"0.000004537625601742"},{"denom":"ASSET14","index":"0.000013679059129408"},{"denom":"ASSET15","index":"0.000009780506595550"},{"denom":"ASSET16","index":"0.000006818847588397"},{"denom":"ASSET17","index":"0.000004841650653454"},{"denom":"ASSET18","index":"0.000002306040358223"},{"denom":"ASSET2","index":"0.000004467306882298"},{"denom":"ASSET3","index":"0.000001307100902598"},{"denom":"ASSET4","index":"0.000012301639507366"},{"denom":"ASSET5","index":"0.000001013416839040"},{"denom":"ASSET6","index":"0.000004128122470864"},{"denom":"ASSET7","index":"0.000006324548354661"},{"denom":"ASSET8","index":"0.000008252108546467"},{"denom":"ASSET9","index":"0.000003563504517685"}],"last_reward_claim_height":"78"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET3","shares":"259574.235505246135453041","reward_history":[{"denom":"ASSET0","index":"0.000001541968050995"},{"denom":"ASSET1","index":"0.000012857487907975"},{"denom":"ASSET10","index":"0.000008957704485900"},{"denom":"ASSET11","index":"0.000012438763825161"},{"denom":"ASSET12","index":"0.000011200869215257"},{"denom":"ASSET13","index":"0.000003854089325736"},{"denom":"ASSET14","index":"0.000011619593298070"},{"denom":"ASSET15","index":"0.000008307186714386"},{"denom":"ASSET16","index":"0.000005792349812251"},{"denom":"ASSET17","index":"0.000004113299472240"},{"denom":"ASSET18","index":"0.000001959030530305"},{"denom":"ASSET2","index":"0.000003795102401372"},{"denom":"ASSET3","index":"0.000001109951140156"},{"denom":"ASSET4","index":"0.000010448993630046"},{"denom":"ASSET5","index":"0.000000861541416423"},{"denom":"ASSET6","index":"0.000003506814193562"},{"denom":"ASSET7","index":"0.000005371133324183"},{"denom":"ASSET8","index":"0.000007009474378365"},{"denom":"ASSET9","index":"0.000003027441582881"}],"last_reward_claim_height":"66"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET10","shares":"684343070.491426285581318535","reward_history":[{"denom":"ASSET0","index":"0.000001541968050995"},{"denom":"ASSET1","index":"0.000012857487907975"},{"denom":"ASSET10","index":"0.000008957704485900"},{"denom":"ASSET11","index":"0.000012438763825161"},{"denom":"ASSET12","index":"0.000011200869215257"},{"denom":"ASSET13","index":"0.000003854089325736"},{"denom":"ASSET14","index":"0.000011619593298070"},{"denom":"ASSET15","index":"0.000008307186714386"},{"denom":"ASSET16","index":"0.000005792349812251"},{"denom":"ASSET17","index":"0.000004113299472240"},{"denom":"ASSET18","index":"0.000001959030530305"},{"denom":"ASSET2","index":"0.000003795102401372"},{"denom":"ASSET3","index":"0.000001109951140156"},{"denom":"ASSET4","index":"0.000010448993630046"},{"denom":"ASSET5","index":"0.000000861541416423"},{"denom":"ASSET6","index":"0.000003506814193562"},{"denom":"ASSET7","index":"0.000005371133324183"},{"denom":"ASSET8","index":"0.000007009474378365"},{"denom":"ASSET9","index":"0.000003027441582881"}],"last_reward_claim_height":"98"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET12","shares":"537837942.602927338407404320","reward_history":[{"denom":"ASSET0","index":"0.000003053196756625"},{"denom":"ASSET1","index":"0.000025905581999278"},{"denom":"ASSET10","index":"0.000020682143152818"},{"denom":"ASSET11","index":"0.000025745380902198"},{"denom":"ASSET12","index":"0.000024550499550641"},{"denom":"ASSET13","index":"0.000008086239198545"},{"denom":"ASSET14","index":"0.000023629161089906"},{"denom":"ASSET15","index":"0.000018628151539367"},{"denom":"ASSET16","index":"0.000011492271696690"},{"denom":"ASSET17","index":"0.000009021688715966"},{"denom":"ASSET18","index":"0.000003727673632537"},{"denom":"ASSET2","index":"0.000007845443656426"},{"denom":"ASSET3","index":"0.000002178852781858"},{"denom":"ASSET4","index":"0.000021002318737231"},{"denom":"ASSET5","index":"0.000001697417622442"},{"denom":"ASSET6","index":"0.000006850319017638"},{"denom":"ASSET7","index":"0.000010761758840612"},{"denom":"ASSET8","index":"0.000014701087498525"},{"denom":"ASSET9","index":"0.000006240132889304"}],"last_reward_claim_height":"176"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET17","shares":"118034255.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002827520151011"},{"denom":"ASSET1","index":"0.000024027878888002"},{"denom":"ASSET10","index":"0.000019355847170480"},{"denom":"ASSET11","index":"0.000023924401086085"},{"denom":"ASSET12","index":"0.000022900407365256"},{"denom":"ASSET13","index":"0.000007521399074311"},{"denom":"ASSET14","index":"0.000021930603354990"},{"denom":"ASSET15","index":"0.000017401215805238"},{"denom":"ASSET16","index":"0.000010647310435771"},{"denom":"ASSET17","index":"0.000008415007538097"},{"denom":"ASSET18","index":"0.000003442593620109"},{"denom":"ASSET2","index":"0.000007289635767836"},{"denom":"ASSET3","index":"0.000002016810506595"},{"denom":"ASSET4","index":"0.000019477449509443"},{"denom":"ASSET5","index":"0.000001571692130579"},{"denom":"ASSET6","index":"0.000006339251488002"},{"denom":"ASSET7","index":"0.000009978075244424"},{"denom":"ASSET8","index":"0.000013673195599374"},{"denom":"ASSET9","index":"0.000005796522499795"}],"last_reward_claim_height":"171"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET18","shares":"1000000000.000000053000000000","reward_history":[{"denom":"ASSET0","index":"0.000001327266579501"},{"denom":"ASSET1","index":"0.000011071143497688"},{"denom":"ASSET10","index":"0.000007713614824674"},{"denom":"ASSET11","index":"0.000010710668391289"},{"denom":"ASSET12","index":"0.000009644435509525"},{"denom":"ASSET13","index":"0.000003318857014090"},{"denom":"ASSET14","index":"0.000010004910615924"},{"denom":"ASSET15","index":"0.000007152875770275"},{"denom":"ASSET16","index":"0.000004987262870528"},{"denom":"ASSET17","index":"0.000003541219052903"},{"denom":"ASSET18","index":"0.000001686360555224"},{"denom":"ASSET2","index":"0.000003267755179083"},{"denom":"ASSET3","index":"0.000000955742427695"},{"denom":"ASSET4","index":"0.000008998066353223"},{"denom":"ASSET5","index":"0.000000741667172936"},{"denom":"ASSET6","index":"0.000003019151657428"},{"denom":"ASSET7","index":"0.000004625406633453"},{"denom":"ASSET8","index":"0.000006035541053505"},{"denom":"ASSET9","index":"0.000002606193585346"}],"last_reward_claim_height":"104"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET12","shares":"1000091394.715422452000000000","reward_history":[{"denom":"ASSET0","index":"0.000001571435631869"},{"denom":"ASSET1","index":"0.000013104175099655"},{"denom":"ASSET10","index":"0.000009129715488355"},{"denom":"ASSET11","index":"0.000012677036600848"},{"denom":"ASSET12","index":"0.000011415350365342"},{"denom":"ASSET13","index":"0.000003928095848150"},{"denom":"ASSET14","index":"0.000011841502401104"},{"denom":"ASSET15","index":"0.000008466812321615"},{"denom":"ASSET16","index":"0.000005902994865728"},{"denom":"ASSET17","index":"0.000004192467944409"},{"denom":"ASSET18","index":"0.000001996601204585"},{"denom":"ASSET2","index":"0.000003867921602360"},{"denom":"ASSET3","index":"0.000001131473113468"},{"denom":"ASSET4","index":"0.000010648868578800"},{"denom":"ASSET5","index":"0.000000877952110712"},{"denom":"ASSET6","index":"0.000003573955614728"},{"denom":"ASSET7","index":"0.000005473883440830"},{"denom":"ASSET8","index":"0.000007142978914228"},{"denom":"ASSET9","index":"0.000003084669944040"}],"last_reward_claim_height":"78"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET17","shares":"4190578.357348096055431609","reward_history":[{"denom":"ASSET0","index":"0.000004668297440245"},{"denom":"ASSET1","index":"0.000038252783071288"},{"denom":"ASSET10","index":"0.000033083245025153"},{"denom":"ASSET11","index":"0.000039708345694553"},{"denom":"ASSET12","index":"0.000037813797973625"},{"denom":"ASSET13","index":"0.000012799944975093"},{"denom":"ASSET14","index":"0.000036625421736424"},{"denom":"ASSET15","index":"0.000029696005658341"},{"denom":"ASSET16","index":"0.000016971159537831"},{"denom":"ASSET17","index":"0.000013740059333476"},{"denom":"ASSET18","index":"0.000005702232169970"},{"denom":"ASSET2","index":"0.000011549026586519"},{"denom":"ASSET3","index":"0.000003315565659179"},{"denom":"ASSET4","index":"0.000031346012924510"},{"denom":"ASSET5","index":"0.000002602988639174"},{"denom":"ASSET6","index":"0.000010621884419797"},{"denom":"ASSET7","index":"0.000016417450552926"},{"denom":"ASSET8","index":"0.000023609141580926"},{"denom":"ASSET9","index":"0.000009483071524163"}],"last_reward_claim_height":"195"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET4","shares":"922495448.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001554974273829"},{"denom":"ASSET1","index":"0.000012964145980643"},{"denom":"ASSET10","index":"0.000009032293690170"},{"denom":"ASSET11","index":"0.000012541598623624"},{"denom":"ASSET12","index":"0.000011293609918011"},{"denom":"ASSET13","index":"0.000003886649549954"},{"denom":"ASSET14","index":"0.000011715371140412"},{"denom":"ASSET15","index":"0.000008376264351692"},{"denom":"ASSET16","index":"0.000005840194074962"},{"denom":"ASSET17","index":"0.000004147646243034"},{"denom":"ASSET18","index":"0.000001975556294303"},{"denom":"ASSET2","index":"0.000003826903319009"},{"denom":"ASSET3","index":"0.000001119455695618"},{"denom":"ASSET4","index":"0.000010535776146539"},{"denom":"ASSET5","index":"0.000000869071819878"},{"denom":"ASSET6","index":"0.000003536426577765"},{"denom":"ASSET7","index":"0.000005416074448708"},{"denom":"ASSET8","index":"0.000007067350213206"},{"denom":"ASSET9","index":"0.000003052560720565"}],"last_reward_claim_height":"84"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET5","shares":"201850522.096051673993474670","reward_history":[{"denom":"ASSET0","index":"0.000004666078822529"},{"denom":"ASSET1","index":"0.000038144124395476"},{"denom":"ASSET10","index":"0.000033089052036549"},{"denom":"ASSET11","index":"0.000039681425534428"},{"denom":"ASSET12","index":"0.000037761291809173"},{"denom":"ASSET13","index":"0.000012808979605762"},{"denom":"ASSET14","index":"0.000036619269127831"},{"denom":"ASSET15","index":"0.000029704245003480"},{"denom":"ASSET16","index":"0.000016927274823028"},{"denom":"ASSET17","index":"0.000013712454456823"},{"denom":"ASSET18","index":"0.000005702042524448"},{"denom":"ASSET2","index":"0.000011511448148246"},{"denom":"ASSET3","index":"0.000003313641110366"},{"denom":"ASSET4","index":"0.000031278179163152"},{"denom":"ASSET5","index":"0.000002602567541660"},{"denom":"ASSET6","index":"0.000010625923836833"},{"denom":"ASSET7","index":"0.000016403144902467"},{"denom":"ASSET8","index":"0.000023643127909799"},{"denom":"ASSET9","index":"0.000009470170432977"}],"last_reward_claim_height":"188"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET9","shares":"467505696.137403173806643072","reward_history":[{"denom":"ASSET0","index":"0.000004666078822529"},{"denom":"ASSET1","index":"0.000038144124395476"},{"denom":"ASSET10","index":"0.000033089052036549"},{"denom":"ASSET11","index":"0.000039681425534428"},{"denom":"ASSET12","index":"0.000037761291809173"},{"denom":"ASSET13","index":"0.000012808979605762"},{"denom":"ASSET14","index":"0.000036619269127831"},{"denom":"ASSET15","index":"0.000029704245003480"},{"denom":"ASSET16","index":"0.000016927274823028"},{"denom":"ASSET17","index":"0.000013712454456823"},{"denom":"ASSET18","index":"0.000005702042524448"},{"denom":"ASSET2","index":"0.000011511448148246"},{"denom":"ASSET3","index":"0.000003313641110366"},{"denom":"ASSET4","index":"0.000031278179163152"},{"denom":"ASSET5","index":"0.000002602567541660"},{"denom":"ASSET6","index":"0.000010625923836833"},{"denom":"ASSET7","index":"0.000016403144902467"},{"denom":"ASSET8","index":"0.000023643127909799"},{"denom":"ASSET9","index":"0.000009470170432977"}],"last_reward_claim_height":"192"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET13","shares":"685231917.735512150407551273","reward_history":[{"denom":"ASSET0","index":"0.000003152887181228"},{"denom":"ASSET1","index":"0.000026760532918289"},{"denom":"ASSET10","index":"0.000021371603424459"},{"denom":"ASSET11","index":"0.000026596151859305"},{"denom":"ASSET12","index":"0.000025366346961436"},{"denom":"ASSET13","index":"0.000008353980761099"},{"denom":"ASSET14","index":"0.000024408754798213"},{"denom":"ASSET15","index":"0.000019248058608344"},{"denom":"ASSET16","index":"0.000011870971278696"},{"denom":"ASSET17","index":"0.000009321801721671"},{"denom":"ASSET18","index":"0.000003850124607081"},{"denom":"ASSET2","index":"0.000008105134387478"},{"denom":"ASSET3","index":"0.000002250596051831"},{"denom":"ASSET4","index":"0.000021694971342643"},{"denom":"ASSET5","index":"0.000001752750611640"},{"denom":"ASSET6","index":"0.000007075802880646"},{"denom":"ASSET7","index":"0.000011117440314842"},{"denom":"ASSET8","index":"0.000015186957305377"},{"denom":"ASSET9","index":"0.000006446159830056"}],"last_reward_claim_height":"174"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","denom":"ASSET15","shares":"533588018.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001587610635106"},{"denom":"ASSET1","index":"0.000013244938725362"},{"denom":"ASSET10","index":"0.000009227311812032"},{"denom":"ASSET11","index":"0.000012812935831455"},{"denom":"ASSET12","index":"0.000011538527294432"},{"denom":"ASSET13","index":"0.000003970376596809"},{"denom":"ASSET14","index":"0.000011969180179294"},{"denom":"ASSET15","index":"0.000008557707326477"},{"denom":"ASSET16","index":"0.000005967039972082"},{"denom":"ASSET17","index":"0.000004237678387413"},{"denom":"ASSET18","index":"0.000002018263519969"},{"denom":"ASSET2","index":"0.000003909626189853"},{"denom":"ASSET3","index":"0.000001143457659809"},{"denom":"ASSET4","index":"0.000010763622103487"},{"denom":"ASSET5","index":"0.000000886955941552"},{"denom":"ASSET6","index":"0.000003612624200292"},{"denom":"ASSET7","index":"0.000005533687069132"},{"denom":"ASSET8","index":"0.000007219848364411"},{"denom":"ASSET9","index":"0.000003118520890387"}],"last_reward_claim_height":"111"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","denom":"ASSET17","shares":"615513173.844090408249005685","reward_history":[{"denom":"ASSET0","index":"0.000003160678210357"},{"denom":"ASSET1","index":"0.000026816731621709"},{"denom":"ASSET10","index":"0.000021409695697867"},{"denom":"ASSET11","index":"0.000026650151208928"},{"denom":"ASSET12","index":"0.000025413985003091"},{"denom":"ASSET13","index":"0.000008371194471357"},{"denom":"ASSET14","index":"0.000024459575922385"},{"denom":"ASSET15","index":"0.000019283728762326"},{"denom":"ASSET16","index":"0.000011895729224726"},{"denom":"ASSET17","index":"0.000009339186085895"},{"denom":"ASSET18","index":"0.000003859320220004"},{"denom":"ASSET2","index":"0.000008121656282140"},{"denom":"ASSET3","index":"0.000002255587694637"},{"denom":"ASSET4","index":"0.000021740936259308"},{"denom":"ASSET5","index":"0.000001757304707579"},{"denom":"ASSET6","index":"0.000007091577992612"},{"denom":"ASSET7","index":"0.000011140302591406"},{"denom":"ASSET8","index":"0.000015217956063596"},{"denom":"ASSET9","index":"0.000006459479788296"}],"last_reward_claim_height":"158"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET8","shares":"34119304.999999997368397318","reward_history":[],"last_reward_claim_height":"46"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","denom":"ASSET12","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"16"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET1","shares":"60269979.000000000424003091","reward_history":[],"last_reward_claim_height":"19"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","denom":"ASSET3","shares":"999993428.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003308323901116"},{"denom":"ASSET1","index":"0.000028066718381779"},{"denom":"ASSET10","index":"0.000022316311421496"},{"denom":"ASSET11","index":"0.000027867424204892"},{"denom":"ASSET12","index":"0.000026530665881565"},{"denom":"ASSET13","index":"0.000008749579510737"},{"denom":"ASSET14","index":"0.000025590688346390"},{"denom":"ASSET15","index":"0.000020116135001180"},{"denom":"ASSET16","index":"0.000012455644018572"},{"denom":"ASSET17","index":"0.000009747635771928"},{"denom":"ASSET18","index":"0.000004046709206696"},{"denom":"ASSET2","index":"0.000008491843085820"},{"denom":"ASSET3","index":"0.000002361259343526"},{"denom":"ASSET4","index":"0.000022756236881458"},{"denom":"ASSET5","index":"0.000001838827056256"},{"denom":"ASSET6","index":"0.000007428217086977"},{"denom":"ASSET7","index":"0.000011660835649526"},{"denom":"ASSET8","index":"0.000015906513514404"},{"denom":"ASSET9","index":"0.000006755948018281"}],"last_reward_claim_height":"129"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET5","shares":"848588067.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001677980890787"},{"denom":"ASSET1","index":"0.000013990275877081"},{"denom":"ASSET10","index":"0.000009746835585844"},{"denom":"ASSET11","index":"0.000013534047272362"},{"denom":"ASSET12","index":"0.000012187401487418"},{"denom":"ASSET13","index":"0.000004194217559326"},{"denom":"ASSET14","index":"0.000012642160756856"},{"denom":"ASSET15","index":"0.000009039350648091"},{"denom":"ASSET16","index":"0.000006301979019776"},{"denom":"ASSET17","index":"0.000004475595265619"},{"denom":"ASSET18","index":"0.000002132005492585"},{"denom":"ASSET2","index":"0.000004129566806967"},{"denom":"ASSET3","index":"0.000001207793600899"},{"denom":"ASSET4","index":"0.000011368981735957"},{"denom":"ASSET5","index":"0.000000937435909214"},{"denom":"ASSET6","index":"0.000003815863724495"},{"denom":"ASSET7","index":"0.000005844281079776"},{"denom":"ASSET8","index":"0.000007626584775507"},{"denom":"ASSET9","index":"0.000003293515032135"}],"last_reward_claim_height":"95"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET7","shares":"662079590.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004913983609001"},{"denom":"ASSET1","index":"0.000040244987929815"},{"denom":"ASSET10","index":"0.000034772305497303"},{"denom":"ASSET11","index":"0.000041772863997093"},{"denom":"ASSET12","index":"0.000039756115018181"},{"denom":"ASSET13","index":"0.000013466459952772"},{"denom":"ASSET14","index":"0.000038538449259774"},{"denom":"ASSET15","index":"0.000031220537321082"},{"denom":"ASSET16","index":"0.000017858853026625"},{"denom":"ASSET17","index":"0.000014445033007114"},{"denom":"ASSET18","index":"0.000006004781433606"},{"denom":"ASSET2","index":"0.000012147347472117"},{"denom":"ASSET3","index":"0.000003490240978647"},{"denom":"ASSET4","index":"0.000032981200632459"},{"denom":"ASSET5","index":"0.000002740029237178"},{"denom":"ASSET6","index":"0.000011181697773076"},{"denom":"ASSET7","index":"0.000017276427658373"},{"denom":"ASSET8","index":"0.000024839237256922"},{"denom":"ASSET9","index":"0.000009975875730805"}],"last_reward_claim_height":"185"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET9","shares":"608773115.951243397396361483","reward_history":[{"denom":"ASSET0","index":"0.000004913983609001"},{"denom":"ASSET1","index":"0.000040244987929815"},{"denom":"ASSET10","index":"0.000034772305497303"},{"denom":"ASSET11","index":"0.000041772863997093"},{"denom":"ASSET12","index":"0.000039756115018181"},{"denom":"ASSET13","index":"0.000013466459952772"},{"denom":"ASSET14","index":"0.000038538449259774"},{"denom":"ASSET15","index":"0.000031220537321082"},{"denom":"ASSET16","index":"0.000017858853026625"},{"denom":"ASSET17","index":"0.000014445033007114"},{"denom":"ASSET18","index":"0.000006004781433606"},{"denom":"ASSET2","index":"0.000012147347472117"},{"denom":"ASSET3","index":"0.000003490240978647"},{"denom":"ASSET4","index":"0.000032981200632459"},{"denom":"ASSET5","index":"0.000002740029237178"},{"denom":"ASSET6","index":"0.000011181697773076"},{"denom":"ASSET7","index":"0.000017276427658373"},{"denom":"ASSET8","index":"0.000024839237256922"},{"denom":"ASSET9","index":"0.000009975875730805"}],"last_reward_claim_height":"197"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","denom":"ASSET15","shares":"856380283.999999949473563244","reward_history":[{"denom":"ASSET0","index":"0.000003299297789724"},{"denom":"ASSET1","index":"0.000027989603079017"},{"denom":"ASSET10","index":"0.000022326156077139"},{"denom":"ASSET11","index":"0.000027810817552502"},{"denom":"ASSET12","index":"0.000026510364756940"},{"denom":"ASSET13","index":"0.000008734817330461"},{"denom":"ASSET14","index":"0.000025527438517331"},{"denom":"ASSET15","index":"0.000020112836713905"},{"denom":"ASSET16","index":"0.000012417417558556"},{"denom":"ASSET17","index":"0.000009741881197111"},{"denom":"ASSET18","index":"0.000004029624902086"},{"denom":"ASSET2","index":"0.000008475129511821"},{"denom":"ASSET3","index":"0.000002354634361983"},{"denom":"ASSET4","index":"0.000022691681830907"},{"denom":"ASSET5","index":"0.000001834207215432"},{"denom":"ASSET6","index":"0.000007402948949368"},{"denom":"ASSET7","index":"0.000011627814435586"},{"denom":"ASSET8","index":"0.000015878876786083"},{"denom":"ASSET9","index":"0.000006740310437402"}],"last_reward_claim_height":"169"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","denom":"ASSET11","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001570026110869"},{"denom":"ASSET1","index":"0.000013093495665706"},{"denom":"ASSET10","index":"0.000009121814411369"},{"denom":"ASSET11","index":"0.000012665871768525"},{"denom":"ASSET12","index":"0.000011405375746022"},{"denom":"ASSET13","index":"0.000003924443730811"},{"denom":"ASSET14","index":"0.000011831756550478"},{"denom":"ASSET15","index":"0.000008459245989284"},{"denom":"ASSET16","index":"0.000005898474977098"},{"denom":"ASSET17","index":"0.000004187979388376"},{"denom":"ASSET18","index":"0.000001995163822601"},{"denom":"ASSET2","index":"0.000003864775280042"},{"denom":"ASSET3","index":"0.000001129971286445"},{"denom":"ASSET4","index":"0.000010639630627815"},{"denom":"ASSET5","index":"0.000000877623463400"},{"denom":"ASSET6","index":"0.000003571405397092"},{"denom":"ASSET7","index":"0.000005469607987193"},{"denom":"ASSET8","index":"0.000007137838423287"},{"denom":"ASSET9","index":"0.000003082869956418"}],"last_reward_claim_height":"118"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET3","shares":"102283199.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003309574221953"},{"denom":"ASSET1","index":"0.000028041386020893"},{"denom":"ASSET10","index":"0.000022151472675705"},{"denom":"ASSET11","index":"0.000027806413413432"},{"denom":"ASSET12","index":"0.000026397319662942"},{"denom":"ASSET13","index":"0.000008723998941637"},{"denom":"ASSET14","index":"0.000025556208464743"},{"denom":"ASSET15","index":"0.000019995491235522"},{"denom":"ASSET16","index":"0.000012454763771642"},{"denom":"ASSET17","index":"0.000009698403814011"},{"denom":"ASSET18","index":"0.000004053515914738"},{"denom":"ASSET2","index":"0.000008473190716338"},{"denom":"ASSET3","index":"0.000002361530218445"},{"denom":"ASSET4","index":"0.000022738669483779"},{"denom":"ASSET5","index":"0.000001840125976242"},{"denom":"ASSET6","index":"0.000007434008870747"},{"denom":"ASSET7","index":"0.000011653935721338"},{"denom":"ASSET8","index":"0.000015861166565423"},{"denom":"ASSET9","index":"0.000006742103174023"}],"last_reward_claim_height":"148"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET4","shares":"181345245.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003309574221953"},{"denom":"ASSET1","index":"0.000028041386020893"},{"denom":"ASSET10","index":"0.000022151472675705"},{"denom":"ASSET11","index":"0.000027806413413432"},{"denom":"ASSET12","index":"0.000026397319662942"},{"denom":"ASSET13","index":"0.000008723998941637"},{"denom":"ASSET14","index":"0.000025556208464743"},{"denom":"ASSET15","index":"0.000019995491235522"},{"denom":"ASSET16","index":"0.000012454763771642"},{"denom":"ASSET17","index":"0.000009698403814011"},{"denom":"ASSET18","index":"0.000004053515914738"},{"denom":"ASSET2","index":"0.000008473190716338"},{"denom":"ASSET3","index":"0.000002361530218445"},{"denom":"ASSET4","index":"0.000022738669483779"},{"denom":"ASSET5","index":"0.000001840125976242"},{"denom":"ASSET6","index":"0.000007434008870747"},{"denom":"ASSET7","index":"0.000011653935721338"},{"denom":"ASSET8","index":"0.000015861166565423"},{"denom":"ASSET9","index":"0.000006742103174023"}],"last_reward_claim_height":"151"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","denom":"ASSET14","shares":"907821072.999999965502799226","reward_history":[{"denom":"ASSET0","index":"0.000003309574221953"},{"denom":"ASSET1","index":"0.000028041386020893"},{"denom":"ASSET10","index":"0.000022151472675705"},{"denom":"ASSET11","index":"0.000027806413413432"},{"denom":"ASSET12","index":"0.000026397319662942"},{"denom":"ASSET13","index":"0.000008723998941637"},{"denom":"ASSET14","index":"0.000025556208464743"},{"denom":"ASSET15","index":"0.000019995491235522"},{"denom":"ASSET16","index":"0.000012454763771642"},{"denom":"ASSET17","index":"0.000009698403814011"},{"denom":"ASSET18","index":"0.000004053515914738"},{"denom":"ASSET2","index":"0.000008473190716338"},{"denom":"ASSET3","index":"0.000002361530218445"},{"denom":"ASSET4","index":"0.000022738669483779"},{"denom":"ASSET5","index":"0.000001840125976242"},{"denom":"ASSET6","index":"0.000007434008870747"},{"denom":"ASSET7","index":"0.000011653935721338"},{"denom":"ASSET8","index":"0.000015861166565423"},{"denom":"ASSET9","index":"0.000006742103174023"}],"last_reward_claim_height":"159"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET15","shares":"502213862.865333609922681008","reward_history":[{"denom":"ASSET0","index":"0.000003039218640043"},{"denom":"ASSET1","index":"0.000025782167100542"},{"denom":"ASSET10","index":"0.000020571830356487"},{"denom":"ASSET11","index":"0.000025618833387376"},{"denom":"ASSET12","index":"0.000024423552320522"},{"denom":"ASSET13","index":"0.000008046369560384"},{"denom":"ASSET14","index":"0.000023515194162679"},{"denom":"ASSET15","index":"0.000018530055863607"},{"denom":"ASSET16","index":"0.000011436803083329"},{"denom":"ASSET17","index":"0.000008974370950503"},{"denom":"ASSET18","index":"0.000003710743638587"},{"denom":"ASSET2","index":"0.000007806913274081"},{"denom":"ASSET3","index":"0.000002167934051431"},{"denom":"ASSET4","index":"0.000020901035076857"},{"denom":"ASSET5","index":"0.000001689640060433"},{"denom":"ASSET6","index":"0.000006819038075969"},{"denom":"ASSET7","index":"0.000010710838619674"},{"denom":"ASSET8","index":"0.000014627524271874"},{"denom":"ASSET9","index":"0.000006209166066794"}],"last_reward_claim_height":"144"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET16","shares":"267906022.456715328385086315","reward_history":[{"denom":"ASSET0","index":"0.000004627557058124"},{"denom":"ASSET1","index":"0.000037837825372287"},{"denom":"ASSET10","index":"0.000032815057157167"},{"denom":"ASSET11","index":"0.000039353017894949"},{"denom":"ASSET12","index":"0.000037453386570472"},{"denom":"ASSET13","index":"0.000012700909348715"},{"denom":"ASSET14","index":"0.000036314118089889"},{"denom":"ASSET15","index":"0.000029456614298440"},{"denom":"ASSET16","index":"0.000016789422401669"},{"denom":"ASSET17","index":"0.000013600876897734"},{"denom":"ASSET18","index":"0.000005653931466374"},{"denom":"ASSET2","index":"0.000011419405679440"},{"denom":"ASSET3","index":"0.000003285045732610"},{"denom":"ASSET4","index":"0.000031022911612237"},{"denom":"ASSET5","index":"0.000002580636681166"},{"denom":"ASSET6","index":"0.000010536288519120"},{"denom":"ASSET7","index":"0.000016267441018645"},{"denom":"ASSET8","index":"0.000023441585233333"},{"denom":"ASSET9","index":"0.000009392113630570"}],"last_reward_claim_height":"183"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET17","shares":"32774718.591942017787835888","reward_history":[{"denom":"ASSET0","index":"0.000003039218640043"},{"denom":"ASSET1","index":"0.000025782167100542"},{"denom":"ASSET10","index":"0.000020571830356487"},{"denom":"ASSET11","index":"0.000025618833387376"},{"denom":"ASSET12","index":"0.000024423552320522"},{"denom":"ASSET13","index":"0.000008046369560384"},{"denom":"ASSET14","index":"0.000023515194162679"},{"denom":"ASSET15","index":"0.000018530055863607"},{"denom":"ASSET16","index":"0.000011436803083329"},{"denom":"ASSET17","index":"0.000008974370950503"},{"denom":"ASSET18","index":"0.000003710743638587"},{"denom":"ASSET2","index":"0.000007806913274081"},{"denom":"ASSET3","index":"0.000002167934051431"},{"denom":"ASSET4","index":"0.000020901035076857"},{"denom":"ASSET5","index":"0.000001689640060433"},{"denom":"ASSET6","index":"0.000006819038075969"},{"denom":"ASSET7","index":"0.000010710838619674"},{"denom":"ASSET8","index":"0.000014627524271874"},{"denom":"ASSET9","index":"0.000006209166066794"}],"last_reward_claim_height":"166"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","denom":"ASSET18","shares":"522934489.407541800308023945","reward_history":[{"denom":"ASSET0","index":"0.000004627557058124"},{"denom":"ASSET1","index":"0.000037837825372287"},{"denom":"ASSET10","index":"0.000032815057157167"},{"denom":"ASSET11","index":"0.000039353017894949"},{"denom":"ASSET12","index":"0.000037453386570472"},{"denom":"ASSET13","index":"0.000012700909348715"},{"denom":"ASSET14","index":"0.000036314118089889"},{"denom":"ASSET15","index":"0.000029456614298440"},{"denom":"ASSET16","index":"0.000016789422401669"},{"denom":"ASSET17","index":"0.000013600876897734"},{"denom":"ASSET18","index":"0.000005653931466374"},{"denom":"ASSET2","index":"0.000011419405679440"},{"denom":"ASSET3","index":"0.000003285045732610"},{"denom":"ASSET4","index":"0.000031022911612237"},{"denom":"ASSET5","index":"0.000002580636681166"},{"denom":"ASSET6","index":"0.000010536288519120"},{"denom":"ASSET7","index":"0.000016267441018645"},{"denom":"ASSET8","index":"0.000023441585233333"},{"denom":"ASSET9","index":"0.000009392113630570"}],"last_reward_claim_height":"194"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET0","shares":"322813787.900168876070232540","reward_history":[{"denom":"ASSET0","index":"0.000003152920186871"},{"denom":"ASSET1","index":"0.000026760622644749"},{"denom":"ASSET10","index":"0.000021403995558307"},{"denom":"ASSET11","index":"0.000026604821287493"},{"denom":"ASSET12","index":"0.000025390105019040"},{"denom":"ASSET13","index":"0.000008358570294936"},{"denom":"ASSET14","index":"0.000024411618525071"},{"denom":"ASSET15","index":"0.000019270968708391"},{"denom":"ASSET16","index":"0.000011868219590271"},{"denom":"ASSET17","index":"0.000009330682788205"},{"denom":"ASSET18","index":"0.000003846613833157"},{"denom":"ASSET2","index":"0.000008107095494272"},{"denom":"ASSET3","index":"0.000002249072663818"},{"denom":"ASSET4","index":"0.000021694789218154"},{"denom":"ASSET5","index":"0.000001752328837510"},{"denom":"ASSET6","index":"0.000007072706136469"},{"denom":"ASSET7","index":"0.000011115912260277"},{"denom":"ASSET8","index":"0.000015194187602297"},{"denom":"ASSET9","index":"0.000006447849146068"}],"last_reward_claim_height":"171"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET4","shares":"965840081.239868286858593486","reward_history":[{"denom":"ASSET0","index":"0.000003152920186871"},{"denom":"ASSET1","index":"0.000026760622644749"},{"denom":"ASSET10","index":"0.000021403995558307"},{"denom":"ASSET11","index":"0.000026604821287493"},{"denom":"ASSET12","index":"0.000025390105019040"},{"denom":"ASSET13","index":"0.000008358570294936"},{"denom":"ASSET14","index":"0.000024411618525071"},{"denom":"ASSET15","index":"0.000019270968708391"},{"denom":"ASSET16","index":"0.000011868219590271"},{"denom":"ASSET17","index":"0.000009330682788205"},{"denom":"ASSET18","index":"0.000003846613833157"},{"denom":"ASSET2","index":"0.000008107095494272"},{"denom":"ASSET3","index":"0.000002249072663818"},{"denom":"ASSET4","index":"0.000021694789218154"},{"denom":"ASSET5","index":"0.000001752328837510"},{"denom":"ASSET6","index":"0.000007072706136469"},{"denom":"ASSET7","index":"0.000011115912260277"},{"denom":"ASSET8","index":"0.000015194187602297"},{"denom":"ASSET9","index":"0.000006447849146068"}],"last_reward_claim_height":"181"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","denom":"ASSET14","shares":"134935208.907056126644281184","reward_history":[{"denom":"ASSET0","index":"0.000003152920186871"},{"denom":"ASSET1","index":"0.000026760622644749"},{"denom":"ASSET10","index":"0.000021403995558307"},{"denom":"ASSET11","index":"0.000026604821287493"},{"denom":"ASSET12","index":"0.000025390105019040"},{"denom":"ASSET13","index":"0.000008358570294936"},{"denom":"ASSET14","index":"0.000024411618525071"},{"denom":"ASSET15","index":"0.000019270968708391"},{"denom":"ASSET16","index":"0.000011868219590271"},{"denom":"ASSET17","index":"0.000009330682788205"},{"denom":"ASSET18","index":"0.000003846613833157"},{"denom":"ASSET2","index":"0.000008107095494272"},{"denom":"ASSET3","index":"0.000002249072663818"},{"denom":"ASSET4","index":"0.000021694789218154"},{"denom":"ASSET5","index":"0.000001752328837510"},{"denom":"ASSET6","index":"0.000007072706136469"},{"denom":"ASSET7","index":"0.000011115912260277"},{"denom":"ASSET8","index":"0.000015194187602297"},{"denom":"ASSET9","index":"0.000006447849146068"}],"last_reward_claim_height":"154"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET1","shares":"24805800.000000000000000000","reward_history":[],"last_reward_claim_height":"26"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET6","shares":"338108266.314872360016887166","reward_history":[{"denom":"ASSET0","index":"0.000003218229550028"},{"denom":"ASSET1","index":"0.000027301798081180"},{"denom":"ASSET10","index":"0.000021745417841688"},{"denom":"ASSET11","index":"0.000027119412726222"},{"denom":"ASSET12","index":"0.000025834540696398"},{"denom":"ASSET13","index":"0.000008516471999212"},{"denom":"ASSET14","index":"0.000024897496810197"},{"denom":"ASSET15","index":"0.000019595694306931"},{"denom":"ASSET16","index":"0.000012114595919920"},{"denom":"ASSET17","index":"0.000009493460517354"},{"denom":"ASSET18","index":"0.000003932937797970"},{"denom":"ASSET2","index":"0.000008264095290285"},{"denom":"ASSET3","index":"0.000002297232512411"},{"denom":"ASSET4","index":"0.000022135581489268"},{"denom":"ASSET5","index":"0.000001789675045728"},{"denom":"ASSET6","index":"0.000007223884768794"},{"denom":"ASSET7","index":"0.000011342725097550"},{"denom":"ASSET8","index":"0.000015481678980085"},{"denom":"ASSET9","index":"0.000006573861400446"}],"last_reward_claim_height":"145"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","denom":"ASSET11","shares":"21775113.847370282318800632","reward_history":[{"denom":"ASSET0","index":"0.000001655272585709"},{"denom":"ASSET1","index":"0.000013804891217292"},{"denom":"ASSET10","index":"0.000009617831976915"},{"denom":"ASSET11","index":"0.000013354722791997"},{"denom":"ASSET12","index":"0.000012025575872058"},{"denom":"ASSET13","index":"0.000004138592201887"},{"denom":"ASSET14","index":"0.000012474922822124"},{"denom":"ASSET15","index":"0.000008919578032571"},{"denom":"ASSET16","index":"0.000006218567480803"},{"denom":"ASSET17","index":"0.000004416250829168"},{"denom":"ASSET18","index":"0.000002103798060547"},{"denom":"ASSET2","index":"0.000004074517134053"},{"denom":"ASSET3","index":"0.000001191960556756"},{"denom":"ASSET4","index":"0.000011218887197534"},{"denom":"ASSET5","index":"0.000000924981107448"},{"denom":"ASSET6","index":"0.000003765642448085"},{"denom":"ASSET7","index":"0.000005766756105051"},{"denom":"ASSET8","index":"0.000007525534569569"},{"denom":"ASSET9","index":"0.000003250577479728"}],"last_reward_claim_height":"78"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET4","shares":"157728306.210675086190250065","reward_history":[{"denom":"ASSET0","index":"0.000003224207736427"},{"denom":"ASSET1","index":"0.000027358045975387"},{"denom":"ASSET10","index":"0.000021853454393362"},{"denom":"ASSET11","index":"0.000027191663823691"},{"denom":"ASSET12","index":"0.000025935625558190"},{"denom":"ASSET13","index":"0.000008541293337334"},{"denom":"ASSET14","index":"0.000024954691173737"},{"denom":"ASSET15","index":"0.000019681390400685"},{"denom":"ASSET16","index":"0.000012135703886829"},{"denom":"ASSET17","index":"0.000009530848033034"},{"denom":"ASSET18","index":"0.000003936224347496"},{"denom":"ASSET2","index":"0.000008286598878032"},{"denom":"ASSET3","index":"0.000002301038846536"},{"denom":"ASSET4","index":"0.000022179933336345"},{"denom":"ASSET5","index":"0.000001792519798769"},{"denom":"ASSET6","index":"0.000007234068845872"},{"denom":"ASSET7","index":"0.000011365474292791"},{"denom":"ASSET8","index":"0.000015527655320242"},{"denom":"ASSET9","index":"0.000006590765495457"}],"last_reward_claim_height":"141"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","denom":"ASSET18","shares":"124354634.939834896445013906","reward_history":[{"denom":"ASSET0","index":"0.000003224207736427"},{"denom":"ASSET1","index":"0.000027358045975387"},{"denom":"ASSET10","index":"0.000021853454393362"},{"denom":"ASSET11","index":"0.000027191663823691"},{"denom":"ASSET12","index":"0.000025935625558190"},{"denom":"ASSET13","index":"0.000008541293337334"},{"denom":"ASSET14","index":"0.000024954691173737"},{"denom":"ASSET15","index":"0.000019681390400685"},{"denom":"ASSET16","index":"0.000012135703886829"},{"denom":"ASSET17","index":"0.000009530848033034"},{"denom":"ASSET18","index":"0.000003936224347496"},{"denom":"ASSET2","index":"0.000008286598878032"},{"denom":"ASSET3","index":"0.000002301038846536"},{"denom":"ASSET4","index":"0.000022179933336345"},{"denom":"ASSET5","index":"0.000001792519798769"},{"denom":"ASSET6","index":"0.000007234068845872"},{"denom":"ASSET7","index":"0.000011365474292791"},{"denom":"ASSET8","index":"0.000015527655320242"},{"denom":"ASSET9","index":"0.000006590765495457"}],"last_reward_claim_height":"180"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET5","shares":"515614651.024998036328480300","reward_history":[{"denom":"ASSET0","index":"0.000003193080094990"},{"denom":"ASSET1","index":"0.000027069824276969"},{"denom":"ASSET10","index":"0.000021489349079139"},{"denom":"ASSET11","index":"0.000026870184080824"},{"denom":"ASSET12","index":"0.000025561356340007"},{"denom":"ASSET13","index":"0.000008435097288603"},{"denom":"ASSET14","index":"0.000024680442306089"},{"denom":"ASSET15","index":"0.000019377704768171"},{"denom":"ASSET16","index":"0.000012016988086595"},{"denom":"ASSET17","index":"0.000009392966467546"},{"denom":"ASSET18","index":"0.000003905368596850"},{"denom":"ASSET2","index":"0.000008189075060838"},{"denom":"ASSET3","index":"0.000002279664955012"},{"denom":"ASSET4","index":"0.000021948593995488"},{"denom":"ASSET5","index":"0.000001775351671947"},{"denom":"ASSET6","index":"0.000007168631437760"},{"denom":"ASSET7","index":"0.000011248752159293"},{"denom":"ASSET8","index":"0.000015334459676317"},{"denom":"ASSET9","index":"0.000006513651901550"}],"last_reward_claim_height":"174"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","denom":"ASSET13","shares":"47734542.302309507586769205","reward_history":[{"denom":"ASSET0","index":"0.000004792917406928"},{"denom":"ASSET1","index":"0.000039212809339041"},{"denom":"ASSET10","index":"0.000033821158916912"},{"denom":"ASSET11","index":"0.000040703969988334"},{"denom":"ASSET12","index":"0.000038685540464857"},{"denom":"ASSET13","index":"0.000013123383671606"},{"denom":"ASSET14","index":"0.000037572259869060"},{"denom":"ASSET15","index":"0.000030383430108095"},{"denom":"ASSET16","index":"0.000017408409650349"},{"denom":"ASSET17","index":"0.000014052799802155"},{"denom":"ASSET18","index":"0.000005862593440880"},{"denom":"ASSET2","index":"0.000011827616400842"},{"denom":"ASSET3","index":"0.000003404853686933"},{"denom":"ASSET4","index":"0.000032143838562994"},{"denom":"ASSET5","index":"0.000002672916016720"},{"denom":"ASSET6","index":"0.000010912793942254"},{"denom":"ASSET7","index":"0.000016845380556915"},{"denom":"ASSET8","index":"0.000024212241881850"},{"denom":"ASSET9","index":"0.000009719793127333"}],"last_reward_claim_height":"187"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET2","shares":"402450478.143178537594833704","reward_history":[{"denom":"ASSET0","index":"0.000001677613648548"},{"denom":"ASSET1","index":"0.000013997394471820"},{"denom":"ASSET10","index":"0.000009752554992736"},{"denom":"ASSET11","index":"0.000013541183096442"},{"denom":"ASSET12","index":"0.000012193285851007"},{"denom":"ASSET13","index":"0.000004195070965406"},{"denom":"ASSET14","index":"0.000012649497226385"},{"denom":"ASSET15","index":"0.000009043353672830"},{"denom":"ASSET16","index":"0.000006306085420563"},{"denom":"ASSET17","index":"0.000004477092542912"},{"denom":"ASSET18","index":"0.000002131751335856"},{"denom":"ASSET2","index":"0.000004130786635239"},{"denom":"ASSET3","index":"0.000001208960144751"},{"denom":"ASSET4","index":"0.000011376252751467"},{"denom":"ASSET5","index":"0.000000937307007594"},{"denom":"ASSET6","index":"0.000003817659736684"},{"denom":"ASSET7","index":"0.000005847800357116"},{"denom":"ASSET8","index":"0.000007631172097229"},{"denom":"ASSET9","index":"0.000003295090343070"}],"last_reward_claim_height":"88"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET5","shares":"152809392.999999997707859105","reward_history":[{"denom":"ASSET0","index":"0.000001677613648548"},{"denom":"ASSET1","index":"0.000013997394471820"},{"denom":"ASSET10","index":"0.000009752554992736"},{"denom":"ASSET11","index":"0.000013541183096442"},{"denom":"ASSET12","index":"0.000012193285851007"},{"denom":"ASSET13","index":"0.000004195070965406"},{"denom":"ASSET14","index":"0.000012649497226385"},{"denom":"ASSET15","index":"0.000009043353672830"},{"denom":"ASSET16","index":"0.000006306085420563"},{"denom":"ASSET17","index":"0.000004477092542912"},{"denom":"ASSET18","index":"0.000002131751335856"},{"denom":"ASSET2","index":"0.000004130786635239"},{"denom":"ASSET3","index":"0.000001208960144751"},{"denom":"ASSET4","index":"0.000011376252751467"},{"denom":"ASSET5","index":"0.000000937307007594"},{"denom":"ASSET6","index":"0.000003817659736684"},{"denom":"ASSET7","index":"0.000005847800357116"},{"denom":"ASSET8","index":"0.000007631172097229"},{"denom":"ASSET9","index":"0.000003295090343070"}],"last_reward_claim_height":"105"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET6","shares":"279846777.000000000000000000","reward_history":[],"last_reward_claim_height":"46"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET10","shares":"571453888.000000000000000000","reward_history":[],"last_reward_claim_height":"49"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","denom":"ASSET13","shares":"333849269.260952864355466413","reward_history":[{"denom":"ASSET0","index":"0.000001677613648548"},{"denom":"ASSET1","index":"0.000013997394471820"},{"denom":"ASSET10","index":"0.000009752554992736"},{"denom":"ASSET11","index":"0.000013541183096442"},{"denom":"ASSET12","index":"0.000012193285851007"},{"denom":"ASSET13","index":"0.000004195070965406"},{"denom":"ASSET14","index":"0.000012649497226385"},{"denom":"ASSET15","index":"0.000009043353672830"},{"denom":"ASSET16","index":"0.000006306085420563"},{"denom":"ASSET17","index":"0.000004477092542912"},{"denom":"ASSET18","index":"0.000002131751335856"},{"denom":"ASSET2","index":"0.000004130786635239"},{"denom":"ASSET3","index":"0.000001208960144751"},{"denom":"ASSET4","index":"0.000011376252751467"},{"denom":"ASSET5","index":"0.000000937307007594"},{"denom":"ASSET6","index":"0.000003817659736684"},{"denom":"ASSET7","index":"0.000005847800357116"},{"denom":"ASSET8","index":"0.000007631172097229"},{"denom":"ASSET9","index":"0.000003295090343070"}],"last_reward_claim_height":"85"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET1","shares":"800502625.000000000000000000","reward_history":[],"last_reward_claim_height":"35"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET4","shares":"227695530.000000000070889360","reward_history":[],"last_reward_claim_height":"23"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET6","shares":"922827804.375925192939748736","reward_history":[{"denom":"ASSET0","index":"0.000003047858420945"},{"denom":"ASSET1","index":"0.000025863853767953"},{"denom":"ASSET10","index":"0.000020681482671570"},{"denom":"ASSET11","index":"0.000025712271525236"},{"denom":"ASSET12","index":"0.000024535470175220"},{"denom":"ASSET13","index":"0.000008077733573885"},{"denom":"ASSET14","index":"0.000023593590000343"},{"denom":"ASSET15","index":"0.000018621561303244"},{"denom":"ASSET16","index":"0.000011471343089677"},{"denom":"ASSET17","index":"0.000009016132124589"},{"denom":"ASSET18","index":"0.000003719208275283"},{"denom":"ASSET2","index":"0.000007835789085827"},{"denom":"ASSET3","index":"0.000002174729135607"},{"denom":"ASSET4","index":"0.000020967814383093"},{"denom":"ASSET5","index":"0.000001694402278429"},{"denom":"ASSET6","index":"0.000006836893759575"},{"denom":"ASSET7","index":"0.000010744095518390"},{"denom":"ASSET8","index":"0.000014684305897471"},{"denom":"ASSET9","index":"0.000006231971052532"}],"last_reward_claim_height":"181"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET12","shares":"161904132.000000000000000000","reward_history":[],"last_reward_claim_height":"61"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET16","shares":"981383464.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001520550536467"},{"denom":"ASSET1","index":"0.000012675827554874"},{"denom":"ASSET10","index":"0.000008831388003026"},{"denom":"ASSET11","index":"0.000012262725604616"},{"denom":"ASSET12","index":"0.000011042474271843"},{"denom":"ASSET13","index":"0.000003800233070086"},{"denom":"ASSET14","index":"0.000011455195131741"},{"denom":"ASSET15","index":"0.000008190012927118"},{"denom":"ASSET16","index":"0.000005710257954490"},{"denom":"ASSET17","index":"0.000004055182520937"},{"denom":"ASSET18","index":"0.000001931747034924"},{"denom":"ASSET2","index":"0.000003741926245004"},{"denom":"ASSET3","index":"0.000001094491513968"},{"denom":"ASSET4","index":"0.000010301253521611"},{"denom":"ASSET5","index":"0.000000849450412477"},{"denom":"ASSET6","index":"0.000003457632836431"},{"denom":"ASSET7","index":"0.000005295631642792"},{"denom":"ASSET8","index":"0.000006910311498182"},{"denom":"ASSET9","index":"0.000002984699699651"}],"last_reward_claim_height":"115"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","denom":"ASSET17","shares":"756358397.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003047858420945"},{"denom":"ASSET1","index":"0.000025863853767953"},{"denom":"ASSET10","index":"0.000020681482671570"},{"denom":"ASSET11","index":"0.000025712271525236"},{"denom":"ASSET12","index":"0.000024535470175220"},{"denom":"ASSET13","index":"0.000008077733573885"},{"denom":"ASSET14","index":"0.000023593590000343"},{"denom":"ASSET15","index":"0.000018621561303244"},{"denom":"ASSET16","index":"0.000011471343089677"},{"denom":"ASSET17","index":"0.000009016132124589"},{"denom":"ASSET18","index":"0.000003719208275283"},{"denom":"ASSET2","index":"0.000007835789085827"},{"denom":"ASSET3","index":"0.000002174729135607"},{"denom":"ASSET4","index":"0.000020967814383093"},{"denom":"ASSET5","index":"0.000001694402278429"},{"denom":"ASSET6","index":"0.000006836893759575"},{"denom":"ASSET7","index":"0.000010744095518390"},{"denom":"ASSET8","index":"0.000014684305897471"},{"denom":"ASSET9","index":"0.000006231971052532"}],"last_reward_claim_height":"147"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET3","shares":"671949388.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003365151784209"},{"denom":"ASSET1","index":"0.000028538337865727"},{"denom":"ASSET10","index":"0.000022670552359626"},{"denom":"ASSET11","index":"0.000028331786642422"},{"denom":"ASSET12","index":"0.000026959391418936"},{"denom":"ASSET13","index":"0.000008894072871450"},{"denom":"ASSET14","index":"0.000026020188745878"},{"denom":"ASSET15","index":"0.000020439828986765"},{"denom":"ASSET16","index":"0.000012667128947757"},{"denom":"ASSET17","index":"0.000009907060013179"},{"denom":"ASSET18","index":"0.000004116201786219"},{"denom":"ASSET2","index":"0.000008634485522558"},{"denom":"ASSET3","index":"0.000002403102945281"},{"denom":"ASSET4","index":"0.000023139017263426"},{"denom":"ASSET5","index":"0.000001871649891727"},{"denom":"ASSET6","index":"0.000007555863827839"},{"denom":"ASSET7","index":"0.000011857581945748"},{"denom":"ASSET8","index":"0.000016169532559731"},{"denom":"ASSET9","index":"0.000006867789268222"}],"last_reward_claim_height":"174"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","denom":"ASSET17","shares":"268219081.574719934237130726","reward_history":[{"denom":"ASSET0","index":"0.000001765508823557"},{"denom":"ASSET1","index":"0.000014724618911480"},{"denom":"ASSET10","index":"0.000010258363403154"},{"denom":"ASSET11","index":"0.000014244524406828"},{"denom":"ASSET12","index":"0.000012826610887714"},{"denom":"ASSET13","index":"0.000004413772058893"},{"denom":"ASSET14","index":"0.000013305845007949"},{"denom":"ASSET15","index":"0.000009513270498085"},{"denom":"ASSET16","index":"0.000006632703470176"},{"denom":"ASSET17","index":"0.000004710604682736"},{"denom":"ASSET18","index":"0.000002243882559375"},{"denom":"ASSET2","index":"0.000004346662074372"},{"denom":"ASSET3","index":"0.000001271648168235"},{"denom":"ASSET4","index":"0.000011966226470776"},{"denom":"ASSET5","index":"0.000000986860926228"},{"denom":"ASSET6","index":"0.000004016274458267"},{"denom":"ASSET7","index":"0.000006150888196691"},{"denom":"ASSET8","index":"0.000008026526225616"},{"denom":"ASSET9","index":"0.000003466488815844"}],"last_reward_claim_height":"90"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET3","shares":"466825599.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001833509758465"},{"denom":"ASSET1","index":"0.000015308139656127"},{"denom":"ASSET10","index":"0.000010661025831945"},{"denom":"ASSET11","index":"0.000014808091540182"},{"denom":"ASSET12","index":"0.000013334616425197"},{"denom":"ASSET13","index":"0.000004587108050268"},{"denom":"ASSET14","index":"0.000013827997232930"},{"denom":"ASSET15","index":"0.000009887618079284"},{"denom":"ASSET16","index":"0.000006893996691827"},{"denom":"ASSET17","index":"0.000004893804228047"},{"denom":"ASSET18","index":"0.000002326890566197"},{"denom":"ASSET2","index":"0.000004513767659929"},{"denom":"ASSET3","index":"0.000001320127026095"},{"denom":"ASSET4","index":"0.000012434529816496"},{"denom":"ASSET5","index":"0.000001020098156528"},{"denom":"ASSET6","index":"0.000004173734941087"},{"denom":"ASSET7","index":"0.000006393948575882"},{"denom":"ASSET8","index":"0.000008340802573961"},{"denom":"ASSET9","index":"0.000003600346434803"}],"last_reward_claim_height":"114"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET8","shares":"1629886.000000000000000000","reward_history":[],"last_reward_claim_height":"5"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","denom":"ASSET13","shares":"532097221.150164156441083325","reward_history":[{"denom":"ASSET0","index":"0.000005040570168850"},{"denom":"ASSET1","index":"0.000041355750359430"},{"denom":"ASSET10","index":"0.000035469281704739"},{"denom":"ASSET11","index":"0.000042803752649888"},{"denom":"ASSET12","index":"0.000040675443122671"},{"denom":"ASSET13","index":"0.000013775999252168"},{"denom":"ASSET14","index":"0.000039495576924183"},{"denom":"ASSET15","index":"0.000031873960565154"},{"denom":"ASSET16","index":"0.000018356948849581"},{"denom":"ASSET17","index":"0.000014782651582035"},{"denom":"ASSET18","index":"0.000006164254954174"},{"denom":"ASSET2","index":"0.000012468880818976"},{"denom":"ASSET3","index":"0.000003582052674901"},{"denom":"ASSET4","index":"0.000033871373778794"},{"denom":"ASSET5","index":"0.000002805429255147"},{"denom":"ASSET6","index":"0.000011472525623683"},{"denom":"ASSET7","index":"0.000017727043140390"},{"denom":"ASSET8","index":"0.000025392666272201"},{"denom":"ASSET9","index":"0.000010226777370208"}],"last_reward_claim_height":"198"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET13","shares":"582282279.190198626064059870","reward_history":[{"denom":"ASSET0","index":"0.000003136420796654"},{"denom":"ASSET1","index":"0.000026617535879560"},{"denom":"ASSET10","index":"0.000021257162201233"},{"denom":"ASSET11","index":"0.000026454281403244"},{"denom":"ASSET12","index":"0.000025229520616223"},{"denom":"ASSET13","index":"0.000008309311482354"},{"denom":"ASSET14","index":"0.000024278363089230"},{"denom":"ASSET15","index":"0.000019144672836670"},{"denom":"ASSET16","index":"0.000011806881934189"},{"denom":"ASSET17","index":"0.000009271795054357"},{"denom":"ASSET18","index":"0.000003829937127836"},{"denom":"ASSET2","index":"0.000008061315465971"},{"denom":"ASSET3","index":"0.000002238409344787"},{"denom":"ASSET4","index":"0.000021579173085678"},{"denom":"ASSET5","index":"0.000001744155749232"},{"denom":"ASSET6","index":"0.000007037998659171"},{"denom":"ASSET7","index":"0.000011056982942661"},{"denom":"ASSET8","index":"0.000015105683491420"},{"denom":"ASSET9","index":"0.000006411626899884"}],"last_reward_claim_height":"124"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","denom":"ASSET14","shares":"453395358.031149928208937824","reward_history":[{"denom":"ASSET0","index":"0.000003136420796654"},{"denom":"ASSET1","index":"0.000026617535879560"},{"denom":"ASSET10","index":"0.000021257162201233"},{"denom":"ASSET11","index":"0.000026454281403244"},{"denom":"ASSET12","index":"0.000025229520616223"},{"denom":"ASSET13","index":"0.000008309311482354"},{"denom":"ASSET14","index":"0.000024278363089230"},{"denom":"ASSET15","index":"0.000019144672836670"},{"denom":"ASSET16","index":"0.000011806881934189"},{"denom":"ASSET17","index":"0.000009271795054357"},{"denom":"ASSET18","index":"0.000003829937127836"},{"denom":"ASSET2","index":"0.000008061315465971"},{"denom":"ASSET3","index":"0.000002238409344787"},{"denom":"ASSET4","index":"0.000021579173085678"},{"denom":"ASSET5","index":"0.000001744155749232"},{"denom":"ASSET6","index":"0.000007037998659171"},{"denom":"ASSET7","index":"0.000011056982942661"},{"denom":"ASSET8","index":"0.000015105683491420"},{"denom":"ASSET9","index":"0.000006411626899884"}],"last_reward_claim_height":"154"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET0","shares":"585638806.729886741864696964","reward_history":[{"denom":"ASSET0","index":"0.000002559869929403"},{"denom":"ASSET1","index":"0.000021787096732684"},{"denom":"ASSET10","index":"0.000017783238471081"},{"denom":"ASSET11","index":"0.000021752938768967"},{"denom":"ASSET12","index":"0.000020940235345308"},{"denom":"ASSET13","index":"0.000006848308161575"},{"denom":"ASSET14","index":"0.000019904298850841"},{"denom":"ASSET15","index":"0.000015946274018453"},{"denom":"ASSET16","index":"0.000009638424477568"},{"denom":"ASSET17","index":"0.000007695902028378"},{"denom":"ASSET18","index":"0.000003102977872608"},{"denom":"ASSET2","index":"0.000006627591716064"},{"denom":"ASSET3","index":"0.000001824087350341"},{"denom":"ASSET4","index":"0.000017655906837434"},{"denom":"ASSET5","index":"0.000001421889695470"},{"denom":"ASSET6","index":"0.000005729615091854"},{"denom":"ASSET7","index":"0.000009042175373173"},{"denom":"ASSET8","index":"0.000012449153729005"},{"denom":"ASSET9","index":"0.000005268661072858"}],"last_reward_claim_height":"156"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET1","shares":"211168008.000000001787224226","reward_history":[{"denom":"ASSET0","index":"0.000002559869929403"},{"denom":"ASSET1","index":"0.000021787096732684"},{"denom":"ASSET10","index":"0.000017783238471081"},{"denom":"ASSET11","index":"0.000021752938768967"},{"denom":"ASSET12","index":"0.000020940235345308"},{"denom":"ASSET13","index":"0.000006848308161575"},{"denom":"ASSET14","index":"0.000019904298850841"},{"denom":"ASSET15","index":"0.000015946274018453"},{"denom":"ASSET16","index":"0.000009638424477568"},{"denom":"ASSET17","index":"0.000007695902028378"},{"denom":"ASSET18","index":"0.000003102977872608"},{"denom":"ASSET2","index":"0.000006627591716064"},{"denom":"ASSET3","index":"0.000001824087350341"},{"denom":"ASSET4","index":"0.000017655906837434"},{"denom":"ASSET5","index":"0.000001421889695470"},{"denom":"ASSET6","index":"0.000005729615091854"},{"denom":"ASSET7","index":"0.000009042175373173"},{"denom":"ASSET8","index":"0.000012449153729005"},{"denom":"ASSET9","index":"0.000005268661072858"}],"last_reward_claim_height":"138"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","denom":"ASSET9","shares":"435304629.105053835938922470","reward_history":[{"denom":"ASSET0","index":"0.000002559869929403"},{"denom":"ASSET1","index":"0.000021787096732684"},{"denom":"ASSET10","index":"0.000017783238471081"},{"denom":"ASSET11","index":"0.000021752938768967"},{"denom":"ASSET12","index":"0.000020940235345308"},{"denom":"ASSET13","index":"0.000006848308161575"},{"denom":"ASSET14","index":"0.000019904298850841"},{"denom":"ASSET15","index":"0.000015946274018453"},{"denom":"ASSET16","index":"0.000009638424477568"},{"denom":"ASSET17","index":"0.000007695902028378"},{"denom":"ASSET18","index":"0.000003102977872608"},{"denom":"ASSET2","index":"0.000006627591716064"},{"denom":"ASSET3","index":"0.000001824087350341"},{"denom":"ASSET4","index":"0.000017655906837434"},{"denom":"ASSET5","index":"0.000001421889695470"},{"denom":"ASSET6","index":"0.000005729615091854"},{"denom":"ASSET7","index":"0.000009042175373173"},{"denom":"ASSET8","index":"0.000012449153729005"},{"denom":"ASSET9","index":"0.000005268661072858"}],"last_reward_claim_height":"167"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET6","shares":"420510851.009119450781577657","reward_history":[{"denom":"ASSET0","index":"0.000003299045378029"},{"denom":"ASSET1","index":"0.000027992490930804"},{"denom":"ASSET10","index":"0.000022352284005938"},{"denom":"ASSET11","index":"0.000027819914533732"},{"denom":"ASSET12","index":"0.000026530494002155"},{"denom":"ASSET13","index":"0.000008738242797579"},{"denom":"ASSET14","index":"0.000025532401567106"},{"denom":"ASSET15","index":"0.000020131602968729"},{"denom":"ASSET16","index":"0.000012417136212826"},{"denom":"ASSET17","index":"0.000009749421325842"},{"denom":"ASSET18","index":"0.000004027997856345"},{"denom":"ASSET2","index":"0.000008477931503293"},{"denom":"ASSET3","index":"0.000002354450357881"},{"denom":"ASSET4","index":"0.000022693933657862"},{"denom":"ASSET5","index":"0.000001834114741991"},{"denom":"ASSET6","index":"0.000007402245947993"},{"denom":"ASSET7","index":"0.000011628988518089"},{"denom":"ASSET8","index":"0.000015885667960333"},{"denom":"ASSET9","index":"0.000006742956926982"}],"last_reward_claim_height":"123"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","denom":"ASSET7","shares":"905991634.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001663945626017"},{"denom":"ASSET1","index":"0.000013874870096624"},{"denom":"ASSET10","index":"0.000009666844154779"},{"denom":"ASSET11","index":"0.000013422526194886"},{"denom":"ASSET12","index":"0.000012086742376498"},{"denom":"ASSET13","index":"0.000004159391889779"},{"denom":"ASSET14","index":"0.000012538614102973"},{"denom":"ASSET15","index":"0.000008964719539034"},{"denom":"ASSET16","index":"0.000006250183953344"},{"denom":"ASSET17","index":"0.000004438919645342"},{"denom":"ASSET18","index":"0.000002114400826704"},{"denom":"ASSET2","index":"0.000004095648229305"},{"denom":"ASSET3","index":"0.000001197908641659"},{"denom":"ASSET4","index":"0.000011275545275051"},{"denom":"ASSET5","index":"0.000000929713092403"},{"denom":"ASSET6","index":"0.000003784956906399"},{"denom":"ASSET7","index":"0.000005796423525818"},{"denom":"ASSET8","index":"0.000007563775534382"},{"denom":"ASSET9","index":"0.000003266980643136"}],"last_reward_claim_height":"93"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET5","shares":"705716486.844129184461868662","reward_history":[{"denom":"ASSET0","index":"0.000003157426180098"},{"denom":"ASSET1","index":"0.000026803913890418"},{"denom":"ASSET10","index":"0.000021467927303389"},{"denom":"ASSET11","index":"0.000026655124661377"},{"denom":"ASSET12","index":"0.000025453388278707"},{"denom":"ASSET13","index":"0.000008375182650914"},{"denom":"ASSET14","index":"0.000024453809207757"},{"denom":"ASSET15","index":"0.000019323681821282"},{"denom":"ASSET16","index":"0.000011885939188892"},{"denom":"ASSET17","index":"0.000009353763879690"},{"denom":"ASSET18","index":"0.000003851457527173"},{"denom":"ASSET2","index":"0.000008122633355733"},{"denom":"ASSET3","index":"0.000002252845423920"},{"denom":"ASSET4","index":"0.000021728796023940"},{"denom":"ASSET5","index":"0.000001755342604855"},{"denom":"ASSET6","index":"0.000007082922688985"},{"denom":"ASSET7","index":"0.000011133765978354"},{"denom":"ASSET8","index":"0.000015225414484063"},{"denom":"ASSET9","index":"0.000006459804222065"}],"last_reward_claim_height":"140"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET11","shares":"626191.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003157426180098"},{"denom":"ASSET1","index":"0.000026803913890418"},{"denom":"ASSET10","index":"0.000021467927303389"},{"denom":"ASSET11","index":"0.000026655124661377"},{"denom":"ASSET12","index":"0.000025453388278707"},{"denom":"ASSET13","index":"0.000008375182650914"},{"denom":"ASSET14","index":"0.000024453809207757"},{"denom":"ASSET15","index":"0.000019323681821282"},{"denom":"ASSET16","index":"0.000011885939188892"},{"denom":"ASSET17","index":"0.000009353763879690"},{"denom":"ASSET18","index":"0.000003851457527173"},{"denom":"ASSET2","index":"0.000008122633355733"},{"denom":"ASSET3","index":"0.000002252845423920"},{"denom":"ASSET4","index":"0.000021728796023940"},{"denom":"ASSET5","index":"0.000001755342604855"},{"denom":"ASSET6","index":"0.000007082922688985"},{"denom":"ASSET7","index":"0.000011133765978354"},{"denom":"ASSET8","index":"0.000015225414484063"},{"denom":"ASSET9","index":"0.000006459804222065"}],"last_reward_claim_height":"124"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","denom":"ASSET13","shares":"816764044.000000000816764044","reward_history":[{"denom":"ASSET0","index":"0.000003157426180098"},{"denom":"ASSET1","index":"0.000026803913890418"},{"denom":"ASSET10","index":"0.000021467927303389"},{"denom":"ASSET11","index":"0.000026655124661377"},{"denom":"ASSET12","index":"0.000025453388278707"},{"denom":"ASSET13","index":"0.000008375182650914"},{"denom":"ASSET14","index":"0.000024453809207757"},{"denom":"ASSET15","index":"0.000019323681821282"},{"denom":"ASSET16","index":"0.000011885939188892"},{"denom":"ASSET17","index":"0.000009353763879690"},{"denom":"ASSET18","index":"0.000003851457527173"},{"denom":"ASSET2","index":"0.000008122633355733"},{"denom":"ASSET3","index":"0.000002252845423920"},{"denom":"ASSET4","index":"0.000021728796023940"},{"denom":"ASSET5","index":"0.000001755342604855"},{"denom":"ASSET6","index":"0.000007082922688985"},{"denom":"ASSET7","index":"0.000011133765978354"},{"denom":"ASSET8","index":"0.000015225414484063"},{"denom":"ASSET9","index":"0.000006459804222065"}],"last_reward_claim_height":"163"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET5","shares":"933501443.357480779567385271","reward_history":[{"denom":"ASSET0","index":"0.000001736464555496"},{"denom":"ASSET1","index":"0.000014486324003877"},{"denom":"ASSET10","index":"0.000010092542477093"},{"denom":"ASSET11","index":"0.000014014496766071"},{"denom":"ASSET12","index":"0.000012620063107870"},{"denom":"ASSET13","index":"0.000004342915393341"},{"denom":"ASSET14","index":"0.000013091890345676"},{"denom":"ASSET15","index":"0.000009359368553661"},{"denom":"ASSET16","index":"0.000006524897117620"},{"denom":"ASSET17","index":"0.000004634080157191"},{"denom":"ASSET18","index":"0.000002206537788701"},{"denom":"ASSET2","index":"0.000004276263218483"},{"denom":"ASSET3","index":"0.000001250605280877"},{"denom":"ASSET4","index":"0.000011772878885340"},{"denom":"ASSET5","index":"0.000000969964544635"},{"denom":"ASSET6","index":"0.000003951772367204"},{"denom":"ASSET7","index":"0.000006051315875212"},{"denom":"ASSET8","index":"0.000007896528716001"},{"denom":"ASSET9","index":"0.000003409784945337"}],"last_reward_claim_height":"76"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET6","shares":"36108597.000000000252760179","reward_history":[{"denom":"ASSET0","index":"0.000001736464555496"},{"denom":"ASSET1","index":"0.000014486324003877"},{"denom":"ASSET10","index":"0.000010092542477093"},{"denom":"ASSET11","index":"0.000014014496766071"},{"denom":"ASSET12","index":"0.000012620063107870"},{"denom":"ASSET13","index":"0.000004342915393341"},{"denom":"ASSET14","index":"0.000013091890345676"},{"denom":"ASSET15","index":"0.000009359368553661"},{"denom":"ASSET16","index":"0.000006524897117620"},{"denom":"ASSET17","index":"0.000004634080157191"},{"denom":"ASSET18","index":"0.000002206537788701"},{"denom":"ASSET2","index":"0.000004276263218483"},{"denom":"ASSET3","index":"0.000001250605280877"},{"denom":"ASSET4","index":"0.000011772878885340"},{"denom":"ASSET5","index":"0.000000969964544635"},{"denom":"ASSET6","index":"0.000003951772367204"},{"denom":"ASSET7","index":"0.000006051315875212"},{"denom":"ASSET8","index":"0.000007896528716001"},{"denom":"ASSET9","index":"0.000003409784945337"}],"last_reward_claim_height":"115"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","denom":"ASSET9","shares":"1000000000.000000044000000000","reward_history":[{"denom":"ASSET0","index":"0.000003356675502673"},{"denom":"ASSET1","index":"0.000028477076245214"},{"denom":"ASSET10","index":"0.000022663760086849"},{"denom":"ASSET11","index":"0.000028282539274294"},{"denom":"ASSET12","index":"0.000026934248109484"},{"denom":"ASSET13","index":"0.000008880550781135"},{"denom":"ASSET14","index":"0.000025969128454053"},{"denom":"ASSET15","index":"0.000020425731449718"},{"denom":"ASSET16","index":"0.000012636600959200"},{"denom":"ASSET17","index":"0.000009896936242996"},{"denom":"ASSET18","index":"0.000004102733083140"},{"denom":"ASSET2","index":"0.000008619316582261"},{"denom":"ASSET3","index":"0.000002396767404444"},{"denom":"ASSET4","index":"0.000023088672429632"},{"denom":"ASSET5","index":"0.000001866260713425"},{"denom":"ASSET6","index":"0.000007536521735823"},{"denom":"ASSET7","index":"0.000011831316132227"},{"denom":"ASSET8","index":"0.000016143846449802"},{"denom":"ASSET9","index":"0.000006854365607618"}],"last_reward_claim_height":"174"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET9","shares":"245155446.000000000000000000","reward_history":[],"last_reward_claim_height":"43"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET12","shares":"449472934.000000000000000000","reward_history":[],"last_reward_claim_height":"2"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","denom":"ASSET15","shares":"212152745.844532975911753170","reward_history":[{"denom":"ASSET0","index":"0.000002962853679956"},{"denom":"ASSET1","index":"0.000025162993314326"},{"denom":"ASSET10","index":"0.000020199688926412"},{"denom":"ASSET11","index":"0.000025035647772320"},{"denom":"ASSET12","index":"0.000023929456511577"},{"denom":"ASSET13","index":"0.000007867725037604"},{"denom":"ASSET14","index":"0.000022960507028012"},{"denom":"ASSET15","index":"0.000018173489333858"},{"denom":"ASSET16","index":"0.000011155286879957"},{"denom":"ASSET17","index":"0.000008793607250882"},{"denom":"ASSET18","index":"0.000003611579051495"},{"denom":"ASSET2","index":"0.000007628670547867"},{"denom":"ASSET3","index":"0.000002114031306235"},{"denom":"ASSET4","index":"0.000020398130246320"},{"denom":"ASSET5","index":"0.000001647096325587"},{"denom":"ASSET6","index":"0.000006645213242757"},{"denom":"ASSET7","index":"0.000010450616802650"},{"denom":"ASSET8","index":"0.000014303332598966"},{"denom":"ASSET9","index":"0.000006067112886031"}],"last_reward_claim_height":"127"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","denom":"ASSET13","shares":"18556153.110479448698863020","reward_history":[{"denom":"ASSET0","index":"0.000003297864217859"},{"denom":"ASSET1","index":"0.000027973253972789"},{"denom":"ASSET10","index":"0.000022291630953866"},{"denom":"ASSET11","index":"0.000027789008146512"},{"denom":"ASSET12","index":"0.000026479178332828"},{"denom":"ASSET13","index":"0.000008727103479255"},{"denom":"ASSET14","index":"0.000025511286037616"},{"denom":"ASSET15","index":"0.000020085740117730"},{"denom":"ASSET16","index":"0.000012411485442612"},{"denom":"ASSET17","index":"0.000009730550155880"},{"denom":"ASSET18","index":"0.000004028926705548"},{"denom":"ASSET2","index":"0.000008468714781887"},{"denom":"ASSET3","index":"0.000002353891879987"},{"denom":"ASSET4","index":"0.000022679492169342"},{"denom":"ASSET5","index":"0.000001833514119464"},{"denom":"ASSET6","index":"0.000007400677249018"},{"denom":"ASSET7","index":"0.000011621769805761"},{"denom":"ASSET8","index":"0.000015864980999233"},{"denom":"ASSET9","index":"0.000006736116007098"}],"last_reward_claim_height":"168"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET2","shares":"581555487.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004540879401916"},{"denom":"ASSET1","index":"0.000037109326653163"},{"denom":"ASSET10","index":"0.000032398334841051"},{"denom":"ASSET11","index":"0.000038686678002821"},{"denom":"ASSET12","index":"0.000036882989555273"},{"denom":"ASSET13","index":"0.000012500925415203"},{"denom":"ASSET14","index":"0.000035685105836088"},{"denom":"ASSET15","index":"0.000029057375432061"},{"denom":"ASSET16","index":"0.000016458584215111"},{"denom":"ASSET17","index":"0.000013389816949018"},{"denom":"ASSET18","index":"0.000005541081577771"},{"denom":"ASSET2","index":"0.000011207807033486"},{"denom":"ASSET3","index":"0.000003223044473751"},{"denom":"ASSET4","index":"0.000030436134132870"},{"denom":"ASSET5","index":"0.000002531537550049"},{"denom":"ASSET6","index":"0.000010340264160631"},{"denom":"ASSET7","index":"0.000015969406108044"},{"denom":"ASSET8","index":"0.000023083480922251"},{"denom":"ASSET9","index":"0.000009226972489727"}],"last_reward_claim_height":"184"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET3","shares":"1253292331.807077339754302752","reward_history":[{"denom":"ASSET0","index":"0.000002930820438736"},{"denom":"ASSET1","index":"0.000024889799880283"},{"denom":"ASSET10","index":"0.000019988623694797"},{"denom":"ASSET11","index":"0.000024765615752571"},{"denom":"ASSET12","index":"0.000023676022623299"},{"denom":"ASSET13","index":"0.000007783195940338"},{"denom":"ASSET14","index":"0.000022712072914709"},{"denom":"ASSET15","index":"0.000017982209004670"},{"denom":"ASSET16","index":"0.000011033267632466"},{"denom":"ASSET17","index":"0.000008700651286884"},{"denom":"ASSET18","index":"0.000003571624768330"},{"denom":"ASSET2","index":"0.000007546215495169"},{"denom":"ASSET3","index":"0.000002090977414753"},{"denom":"ASSET4","index":"0.000020176663420937"},{"denom":"ASSET5","index":"0.000001628342560149"},{"denom":"ASSET6","index":"0.000006572371850885"},{"denom":"ASSET7","index":"0.000010337273058537"},{"denom":"ASSET8","index":"0.000014149515747938"},{"denom":"ASSET9","index":"0.000006000707920121"}],"last_reward_claim_height":"167"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET4","shares":"35539362.999999998436268028","reward_history":[],"last_reward_claim_height":"54"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET5","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002930820438736"},{"denom":"ASSET1","index":"0.000024889799880283"},{"denom":"ASSET10","index":"0.000019988623694797"},{"denom":"ASSET11","index":"0.000024765615752571"},{"denom":"ASSET12","index":"0.000023676022623299"},{"denom":"ASSET13","index":"0.000007783195940338"},{"denom":"ASSET14","index":"0.000022712072914709"},{"denom":"ASSET15","index":"0.000017982209004670"},{"denom":"ASSET16","index":"0.000011033267632466"},{"denom":"ASSET17","index":"0.000008700651286884"},{"denom":"ASSET18","index":"0.000003571624768330"},{"denom":"ASSET2","index":"0.000007546215495169"},{"denom":"ASSET3","index":"0.000002090977414753"},{"denom":"ASSET4","index":"0.000020176663420937"},{"denom":"ASSET5","index":"0.000001628342560149"},{"denom":"ASSET6","index":"0.000006572371850885"},{"denom":"ASSET7","index":"0.000010337273058537"},{"denom":"ASSET8","index":"0.000014149515747938"},{"denom":"ASSET9","index":"0.000006000707920121"}],"last_reward_claim_height":"177"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","denom":"ASSET6","shares":"657081317.856251514412951393","reward_history":[{"denom":"ASSET0","index":"0.000002930820438736"},{"denom":"ASSET1","index":"0.000024889799880283"},{"denom":"ASSET10","index":"0.000019988623694797"},{"denom":"ASSET11","index":"0.000024765615752571"},{"denom":"ASSET12","index":"0.000023676022623299"},{"denom":"ASSET13","index":"0.000007783195940338"},{"denom":"ASSET14","index":"0.000022712072914709"},{"denom":"ASSET15","index":"0.000017982209004670"},{"denom":"ASSET16","index":"0.000011033267632466"},{"denom":"ASSET17","index":"0.000008700651286884"},{"denom":"ASSET18","index":"0.000003571624768330"},{"denom":"ASSET2","index":"0.000007546215495169"},{"denom":"ASSET3","index":"0.000002090977414753"},{"denom":"ASSET4","index":"0.000020176663420937"},{"denom":"ASSET5","index":"0.000001628342560149"},{"denom":"ASSET6","index":"0.000006572371850885"},{"denom":"ASSET7","index":"0.000010337273058537"},{"denom":"ASSET8","index":"0.000014149515747938"},{"denom":"ASSET9","index":"0.000006000707920121"}],"last_reward_claim_height":"152"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET1","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003313075721980"},{"denom":"ASSET1","index":"0.000028138029356789"},{"denom":"ASSET10","index":"0.000022370607880245"},{"denom":"ASSET11","index":"0.000027937207217164"},{"denom":"ASSET12","index":"0.000026595598409551"},{"denom":"ASSET13","index":"0.000008769097729958"},{"denom":"ASSET14","index":"0.000025655242037122"},{"denom":"ASSET15","index":"0.000020162686714325"},{"denom":"ASSET16","index":"0.000012488922131836"},{"denom":"ASSET17","index":"0.000009772018779266"},{"denom":"ASSET18","index":"0.000004056016110298"},{"denom":"ASSET2","index":"0.000008514325121927"},{"denom":"ASSET3","index":"0.000002365037757716"},{"denom":"ASSET4","index":"0.000022813272666626"},{"denom":"ASSET5","index":"0.000001844445619129"},{"denom":"ASSET6","index":"0.000007446834645040"},{"denom":"ASSET7","index":"0.000011690909413493"},{"denom":"ASSET8","index":"0.000015945057917181"},{"denom":"ASSET9","index":"0.000006769080892636"}],"last_reward_claim_height":"136"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET5","shares":"324968400.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001726304213109"},{"denom":"ASSET1","index":"0.000014431903221591"},{"denom":"ASSET10","index":"0.000010055058078201"},{"denom":"ASSET11","index":"0.000013959161452463"},{"denom":"ASSET12","index":"0.000012572806376704"},{"denom":"ASSET13","index":"0.000004323728090679"},{"denom":"ASSET14","index":"0.000013040236440562"},{"denom":"ASSET15","index":"0.000009322042750788"},{"denom":"ASSET16","index":"0.000006501527251832"},{"denom":"ASSET17","index":"0.000004615871880590"},{"denom":"ASSET18","index":"0.000002199045982237"},{"denom":"ASSET2","index":"0.000004259987627426"},{"denom":"ASSET3","index":"0.000001242939033438"},{"denom":"ASSET4","index":"0.000011728245238599"},{"denom":"ASSET5","index":"0.000000966730359341"},{"denom":"ASSET6","index":"0.000003935973605888"},{"denom":"ASSET7","index":"0.000006028785482704"},{"denom":"ASSET8","index":"0.000007866635506506"},{"denom":"ASSET9","index":"0.000003394179668236"}],"last_reward_claim_height":"77"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","denom":"ASSET10","shares":"855179096.000000135118297168","reward_history":[{"denom":"ASSET0","index":"0.000003313075721980"},{"denom":"ASSET1","index":"0.000028138029356789"},{"denom":"ASSET10","index":"0.000022370607880245"},{"denom":"ASSET11","index":"0.000027937207217164"},{"denom":"ASSET12","index":"0.000026595598409551"},{"denom":"ASSET13","index":"0.000008769097729958"},{"denom":"ASSET14","index":"0.000025655242037122"},{"denom":"ASSET15","index":"0.000020162686714325"},{"denom":"ASSET16","index":"0.000012488922131836"},{"denom":"ASSET17","index":"0.000009772018779266"},{"denom":"ASSET18","index":"0.000004056016110298"},{"denom":"ASSET2","index":"0.000008514325121927"},{"denom":"ASSET3","index":"0.000002365037757716"},{"denom":"ASSET4","index":"0.000022813272666626"},{"denom":"ASSET5","index":"0.000001844445619129"},{"denom":"ASSET6","index":"0.000007446834645040"},{"denom":"ASSET7","index":"0.000011690909413493"},{"denom":"ASSET8","index":"0.000015945057917181"},{"denom":"ASSET9","index":"0.000006769080892636"}],"last_reward_claim_height":"139"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET4","shares":"262202491.562437849858399951","reward_history":[{"denom":"ASSET0","index":"0.000002824624853437"},{"denom":"ASSET1","index":"0.000023976113690517"},{"denom":"ASSET10","index":"0.000019183481330878"},{"denom":"ASSET11","index":"0.000023837782846342"},{"denom":"ASSET12","index":"0.000022753084719682"},{"denom":"ASSET13","index":"0.000007489057952554"},{"denom":"ASSET14","index":"0.000021872315483076"},{"denom":"ASSET15","index":"0.000017271123733000"},{"denom":"ASSET16","index":"0.000010633084765839"},{"denom":"ASSET17","index":"0.000008361522972460"},{"denom":"ASSET18","index":"0.000003446219629870"},{"denom":"ASSET2","index":"0.000007263651822688"},{"denom":"ASSET3","index":"0.000002015414858276"},{"denom":"ASSET4","index":"0.000019437236646346"},{"denom":"ASSET5","index":"0.000001569802896992"},{"denom":"ASSET6","index":"0.000006336500403946"},{"denom":"ASSET7","index":"0.000009959182045961"},{"denom":"ASSET8","index":"0.000013614498977085"},{"denom":"ASSET9","index":"0.000005776799011181"}],"last_reward_claim_height":"152"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET9","shares":"716237739.000000012892279302","reward_history":[{"denom":"ASSET0","index":"0.000001401914217082"},{"denom":"ASSET1","index":"0.000011691084141249"},{"denom":"ASSET10","index":"0.000008144816837289"},{"denom":"ASSET11","index":"0.000011309282624399"},{"denom":"ASSET12","index":"0.000010184195671197"},{"denom":"ASSET13","index":"0.000003504785542706"},{"denom":"ASSET14","index":"0.000010565150621491"},{"denom":"ASSET15","index":"0.000007553913381055"},{"denom":"ASSET16","index":"0.000005266490546178"},{"denom":"ASSET17","index":"0.000003740131045332"},{"denom":"ASSET18","index":"0.000001781176034264"},{"denom":"ASSET2","index":"0.000003450605283109"},{"denom":"ASSET3","index":"0.000001009107335001"},{"denom":"ASSET4","index":"0.000009501016460336"},{"denom":"ASSET5","index":"0.000000783074064494"},{"denom":"ASSET6","index":"0.000003189016217240"},{"denom":"ASSET7","index":"0.000004883842462771"},{"denom":"ASSET8","index":"0.000006372953035143"},{"denom":"ASSET9","index":"0.000002752187874236"}],"last_reward_claim_height":"109"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET12","shares":"18301042.938022176385177922","reward_history":[{"denom":"ASSET0","index":"0.000004436789952669"},{"denom":"ASSET1","index":"0.000036213190978412"},{"denom":"ASSET10","index":"0.000031611013476262"},{"denom":"ASSET11","index":"0.000037779078414589"},{"denom":"ASSET12","index":"0.000035979116489801"},{"denom":"ASSET13","index":"0.000012213749195021"},{"denom":"ASSET14","index":"0.000034864158317319"},{"denom":"ASSET15","index":"0.000028362297628331"},{"denom":"ASSET16","index":"0.000016066338617004"},{"denom":"ASSET17","index":"0.000013057645986304"},{"denom":"ASSET18","index":"0.000005418485487430"},{"denom":"ASSET2","index":"0.000010930260523546"},{"denom":"ASSET3","index":"0.000003149326648701"},{"denom":"ASSET4","index":"0.000029711570819555"},{"denom":"ASSET5","index":"0.000002474110775888"},{"denom":"ASSET6","index":"0.000010109622747326"},{"denom":"ASSET7","index":"0.000015599467381101"},{"denom":"ASSET8","index":"0.000022561292254755"},{"denom":"ASSET9","index":"0.000009007830399076"}],"last_reward_claim_height":"190"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","denom":"ASSET16","shares":"12106834.687536015551080418","reward_history":[{"denom":"ASSET0","index":"0.000001401914217082"},{"denom":"ASSET1","index":"0.000011691084141249"},{"denom":"ASSET10","index":"0.000008144816837289"},{"denom":"ASSET11","index":"0.000011309282624399"},{"denom":"ASSET12","index":"0.000010184195671197"},{"denom":"ASSET13","index":"0.000003504785542706"},{"denom":"ASSET14","index":"0.000010565150621491"},{"denom":"ASSET15","index":"0.000007553913381055"},{"denom":"ASSET16","index":"0.000005266490546178"},{"denom":"ASSET17","index":"0.000003740131045332"},{"denom":"ASSET18","index":"0.000001781176034264"},{"denom":"ASSET2","index":"0.000003450605283109"},{"denom":"ASSET3","index":"0.000001009107335001"},{"denom":"ASSET4","index":"0.000009501016460336"},{"denom":"ASSET5","index":"0.000000783074064494"},{"denom":"ASSET6","index":"0.000003189016217240"},{"denom":"ASSET7","index":"0.000004883842462771"},{"denom":"ASSET8","index":"0.000006372953035143"},{"denom":"ASSET9","index":"0.000002752187874236"}],"last_reward_claim_height":"80"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","denom":"ASSET13","shares":"985037274.000000000000000000","reward_history":[],"last_reward_claim_height":"41"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET2","shares":"25321668.505899280193432064","reward_history":[{"denom":"ASSET0","index":"0.000003086703561215"},{"denom":"ASSET1","index":"0.000026199550261878"},{"denom":"ASSET10","index":"0.000020936384793003"},{"denom":"ASSET11","index":"0.000026042194398185"},{"denom":"ASSET12","index":"0.000024843424443974"},{"denom":"ASSET13","index":"0.000008180415813801"},{"denom":"ASSET14","index":"0.000023898307142718"},{"denom":"ASSET15","index":"0.000018852934413068"},{"denom":"ASSET16","index":"0.000011621232923996"},{"denom":"ASSET17","index":"0.000009129550402498"},{"denom":"ASSET18","index":"0.000003767892160935"},{"denom":"ASSET2","index":"0.000007936188126371"},{"denom":"ASSET3","index":"0.000002203575710986"},{"denom":"ASSET4","index":"0.000021240180347210"},{"denom":"ASSET5","index":"0.000001716192200569"},{"denom":"ASSET6","index":"0.000006926674957775"},{"denom":"ASSET7","index":"0.000010883333770048"},{"denom":"ASSET8","index":"0.000014871024805414"},{"denom":"ASSET9","index":"0.000006311583255107"}],"last_reward_claim_height":"177"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET7","shares":"337842070.736469261025468432","reward_history":[{"denom":"ASSET0","index":"0.000001547699786520"},{"denom":"ASSET1","index":"0.000012908880828127"},{"denom":"ASSET10","index":"0.000008993933542043"},{"denom":"ASSET11","index":"0.000012488059147042"},{"denom":"ASSET12","index":"0.000011245681057538"},{"denom":"ASSET13","index":"0.000003869751640144"},{"denom":"ASSET14","index":"0.000011665498390936"},{"denom":"ASSET15","index":"0.000008340103197445"},{"denom":"ASSET16","index":"0.000005815173110936"},{"denom":"ASSET17","index":"0.000004129877691221"},{"denom":"ASSET18","index":"0.000001966512772230"},{"denom":"ASSET2","index":"0.000003810495126579"},{"denom":"ASSET3","index":"0.000001114825933185"},{"denom":"ASSET4","index":"0.000010490411596498"},{"denom":"ASSET5","index":"0.000000864743358984"},{"denom":"ASSET6","index":"0.000003521242992563"},{"denom":"ASSET7","index":"0.000005392342734476"},{"denom":"ASSET8","index":"0.000007036459899001"},{"denom":"ASSET9","index":"0.000003039156102537"}],"last_reward_claim_height":"75"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET8","shares":"382368889.253768744033944025","reward_history":[{"denom":"ASSET0","index":"0.000004619384085878"},{"denom":"ASSET1","index":"0.000037832417098439"},{"denom":"ASSET10","index":"0.000032750145056484"},{"denom":"ASSET11","index":"0.000039294730751429"},{"denom":"ASSET12","index":"0.000037416427541567"},{"denom":"ASSET13","index":"0.000012671813979164"},{"denom":"ASSET14","index":"0.000036248560185433"},{"denom":"ASSET15","index":"0.000029396437010656"},{"denom":"ASSET16","index":"0.000016785976843486"},{"denom":"ASSET17","index":"0.000013593650767018"},{"denom":"ASSET18","index":"0.000005642705122830"},{"denom":"ASSET2","index":"0.000011421935308679"},{"denom":"ASSET3","index":"0.000003281292888266"},{"denom":"ASSET4","index":"0.000031006969518146"},{"denom":"ASSET5","index":"0.000002575890941784"},{"denom":"ASSET6","index":"0.000010513605988541"},{"denom":"ASSET7","index":"0.000016244985826285"},{"denom":"ASSET8","index":"0.000023375927636049"},{"denom":"ASSET9","index":"0.000009382767835280"}],"last_reward_claim_height":"195"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET11","shares":"556270294.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003086703561215"},{"denom":"ASSET1","index":"0.000026199550261878"},{"denom":"ASSET10","index":"0.000020936384793003"},{"denom":"ASSET11","index":"0.000026042194398185"},{"denom":"ASSET12","index":"0.000024843424443974"},{"denom":"ASSET13","index":"0.000008180415813801"},{"denom":"ASSET14","index":"0.000023898307142718"},{"denom":"ASSET15","index":"0.000018852934413068"},{"denom":"ASSET16","index":"0.000011621232923996"},{"denom":"ASSET17","index":"0.000009129550402498"},{"denom":"ASSET18","index":"0.000003767892160935"},{"denom":"ASSET2","index":"0.000007936188126371"},{"denom":"ASSET3","index":"0.000002203575710986"},{"denom":"ASSET4","index":"0.000021240180347210"},{"denom":"ASSET5","index":"0.000001716192200569"},{"denom":"ASSET6","index":"0.000006926674957775"},{"denom":"ASSET7","index":"0.000010883333770048"},{"denom":"ASSET8","index":"0.000014871024805414"},{"denom":"ASSET9","index":"0.000006311583255107"}],"last_reward_claim_height":"172"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET13","shares":"265461591.536532524881850487","reward_history":[{"denom":"ASSET0","index":"0.000004619384085878"},{"denom":"ASSET1","index":"0.000037832417098439"},{"denom":"ASSET10","index":"0.000032750145056484"},{"denom":"ASSET11","index":"0.000039294730751429"},{"denom":"ASSET12","index":"0.000037416427541567"},{"denom":"ASSET13","index":"0.000012671813979164"},{"denom":"ASSET14","index":"0.000036248560185433"},{"denom":"ASSET15","index":"0.000029396437010656"},{"denom":"ASSET16","index":"0.000016785976843486"},{"denom":"ASSET17","index":"0.000013593650767018"},{"denom":"ASSET18","index":"0.000005642705122830"},{"denom":"ASSET2","index":"0.000011421935308679"},{"denom":"ASSET3","index":"0.000003281292888266"},{"denom":"ASSET4","index":"0.000031006969518146"},{"denom":"ASSET5","index":"0.000002575890941784"},{"denom":"ASSET6","index":"0.000010513605988541"},{"denom":"ASSET7","index":"0.000016244985826285"},{"denom":"ASSET8","index":"0.000023375927636049"},{"denom":"ASSET9","index":"0.000009382767835280"}],"last_reward_claim_height":"198"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","denom":"ASSET18","shares":"33633845.249974894197084584","reward_history":[{"denom":"ASSET0","index":"0.000001547699786520"},{"denom":"ASSET1","index":"0.000012908880828127"},{"denom":"ASSET10","index":"0.000008993933542043"},{"denom":"ASSET11","index":"0.000012488059147042"},{"denom":"ASSET12","index":"0.000011245681057538"},{"denom":"ASSET13","index":"0.000003869751640144"},{"denom":"ASSET14","index":"0.000011665498390936"},{"denom":"ASSET15","index":"0.000008340103197445"},{"denom":"ASSET16","index":"0.000005815173110936"},{"denom":"ASSET17","index":"0.000004129877691221"},{"denom":"ASSET18","index":"0.000001966512772230"},{"denom":"ASSET2","index":"0.000003810495126579"},{"denom":"ASSET3","index":"0.000001114825933185"},{"denom":"ASSET4","index":"0.000010490411596498"},{"denom":"ASSET5","index":"0.000000864743358984"},{"denom":"ASSET6","index":"0.000003521242992563"},{"denom":"ASSET7","index":"0.000005392342734476"},{"denom":"ASSET8","index":"0.000007036459899001"},{"denom":"ASSET9","index":"0.000003039156102537"}],"last_reward_claim_height":"82"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","denom":"ASSET5","shares":"272552582.000000006572185309","reward_history":[],"last_reward_claim_height":"28"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET1","shares":"46739077.219749627924059234","reward_history":[{"denom":"ASSET0","index":"0.000004555194098436"},{"denom":"ASSET1","index":"0.000037194020995645"},{"denom":"ASSET10","index":"0.000032267252901811"},{"denom":"ASSET11","index":"0.000038719949684547"},{"denom":"ASSET12","index":"0.000036813725422538"},{"denom":"ASSET13","index":"0.000012504453081971"},{"denom":"ASSET14","index":"0.000035746405125898"},{"denom":"ASSET15","index":"0.000028975554868050"},{"denom":"ASSET16","index":"0.000016509698953174"},{"denom":"ASSET17","index":"0.000013364006755943"},{"denom":"ASSET18","index":"0.000005570240358371"},{"denom":"ASSET2","index":"0.000011218734016892"},{"denom":"ASSET3","index":"0.000003234690053143"},{"denom":"ASSET4","index":"0.000030508812947759"},{"denom":"ASSET5","index":"0.000002540722507986"},{"denom":"ASSET6","index":"0.000010378847790634"},{"denom":"ASSET7","index":"0.000016009295815118"},{"denom":"ASSET8","index":"0.000023089143199744"},{"denom":"ASSET9","index":"0.000009237844210338"}],"last_reward_claim_height":"195"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","denom":"ASSET14","shares":"1083102446.163662094435792430","reward_history":[{"denom":"ASSET0","index":"0.000001535139489204"},{"denom":"ASSET1","index":"0.000012800845981431"},{"denom":"ASSET10","index":"0.000008918122145344"},{"denom":"ASSET11","index":"0.000012383184798277"},{"denom":"ASSET12","index":"0.000011151318949088"},{"denom":"ASSET13","index":"0.000003837555421617"},{"denom":"ASSET14","index":"0.000011567806926671"},{"denom":"ASSET15","index":"0.000008270512670342"},{"denom":"ASSET16","index":"0.000005766305379776"},{"denom":"ASSET17","index":"0.000004095074044376"},{"denom":"ASSET18","index":"0.000001950454261216"},{"denom":"ASSET2","index":"0.000003778308540299"},{"denom":"ASSET3","index":"0.000001105159647558"},{"denom":"ASSET4","index":"0.000010402813795010"},{"denom":"ASSET5","index":"0.000000857613272150"},{"denom":"ASSET6","index":"0.000003491459778273"},{"denom":"ASSET7","index":"0.000005347470991052"},{"denom":"ASSET8","index":"0.000006978226734264"},{"denom":"ASSET9","index":"0.000003013965111016"}],"last_reward_claim_height":"92"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET5","shares":"694697127.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002938303361264"},{"denom":"ASSET1","index":"0.000024939884544734"},{"denom":"ASSET10","index":"0.000019970621943114"},{"denom":"ASSET11","index":"0.000024800280810198"},{"denom":"ASSET12","index":"0.000023679745396670"},{"denom":"ASSET13","index":"0.000007792253675830"},{"denom":"ASSET14","index":"0.000022752532795075"},{"denom":"ASSET15","index":"0.000017976341528508"},{"denom":"ASSET16","index":"0.000011059313296089"},{"denom":"ASSET17","index":"0.000008702160495382"},{"denom":"ASSET18","index":"0.000003584018468858"},{"denom":"ASSET2","index":"0.000007557839698908"},{"denom":"ASSET3","index":"0.000002096442663552"},{"denom":"ASSET4","index":"0.000020217858094708"},{"denom":"ASSET5","index":"0.000001633684136995"},{"denom":"ASSET6","index":"0.000006589976909255"},{"denom":"ASSET7","index":"0.000010359339015905"},{"denom":"ASSET8","index":"0.000014165755580726"},{"denom":"ASSET9","index":"0.000006010291774725"}],"last_reward_claim_height":"142"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET7","shares":"315017927.999999984879139456","reward_history":[{"denom":"ASSET0","index":"0.000002938303361264"},{"denom":"ASSET1","index":"0.000024939884544734"},{"denom":"ASSET10","index":"0.000019970621943114"},{"denom":"ASSET11","index":"0.000024800280810198"},{"denom":"ASSET12","index":"0.000023679745396670"},{"denom":"ASSET13","index":"0.000007792253675830"},{"denom":"ASSET14","index":"0.000022752532795075"},{"denom":"ASSET15","index":"0.000017976341528508"},{"denom":"ASSET16","index":"0.000011059313296089"},{"denom":"ASSET17","index":"0.000008702160495382"},{"denom":"ASSET18","index":"0.000003584018468858"},{"denom":"ASSET2","index":"0.000007557839698908"},{"denom":"ASSET3","index":"0.000002096442663552"},{"denom":"ASSET4","index":"0.000020217858094708"},{"denom":"ASSET5","index":"0.000001633684136995"},{"denom":"ASSET6","index":"0.000006589976909255"},{"denom":"ASSET7","index":"0.000010359339015905"},{"denom":"ASSET8","index":"0.000014165755580726"},{"denom":"ASSET9","index":"0.000006010291774725"}],"last_reward_claim_height":"132"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","denom":"ASSET10","shares":"506776535.323367806311296760","reward_history":[{"denom":"ASSET0","index":"0.000001449310882227"},{"denom":"ASSET1","index":"0.000012082282763787"},{"denom":"ASSET10","index":"0.000008417588941675"},{"denom":"ASSET11","index":"0.000011688148164511"},{"denom":"ASSET12","index":"0.000010525234539176"},{"denom":"ASSET13","index":"0.000003621923721366"},{"denom":"ASSET14","index":"0.000010918286351091"},{"denom":"ASSET15","index":"0.000007806355476589"},{"denom":"ASSET16","index":"0.000005442630668295"},{"denom":"ASSET17","index":"0.000003865550877512"},{"denom":"ASSET18","index":"0.000001841279906781"},{"denom":"ASSET2","index":"0.000003566701565973"},{"denom":"ASSET3","index":"0.000001043265621984"},{"denom":"ASSET4","index":"0.000009818715786353"},{"denom":"ASSET5","index":"0.000000809924945764"},{"denom":"ASSET6","index":"0.000003295463332131"},{"denom":"ASSET7","index":"0.000005047413281659"},{"denom":"ASSET8","index":"0.000006586595514820"},{"denom":"ASSET9","index":"0.000002844482396421"}],"last_reward_claim_height":"83"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","denom":"ASSET8","shares":"49715400.999999999967402280","reward_history":[],"last_reward_claim_height":"5"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET3","shares":"341910705.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001649988907243"},{"denom":"ASSET1","index":"0.000013756519537767"},{"denom":"ASSET10","index":"0.000009584361794534"},{"denom":"ASSET11","index":"0.000013307506163009"},{"denom":"ASSET12","index":"0.000011983307415229"},{"denom":"ASSET13","index":"0.000004124070634826"},{"denom":"ASSET14","index":"0.000012431118612277"},{"denom":"ASSET15","index":"0.000008888300900330"},{"denom":"ASSET16","index":"0.000006196625007203"},{"denom":"ASSET17","index":"0.000004401172597026"},{"denom":"ASSET18","index":"0.000002096597926581"},{"denom":"ASSET2","index":"0.000004060355216185"},{"denom":"ASSET3","index":"0.000001187751577673"},{"denom":"ASSET4","index":"0.000011179050527108"},{"denom":"ASSET5","index":"0.000000922070303720"},{"denom":"ASSET6","index":"0.000003752597722375"},{"denom":"ASSET7","index":"0.000005747010543590"},{"denom":"ASSET8","index":"0.000007499184556200"},{"denom":"ASSET9","index":"0.000003238666751267"}],"last_reward_claim_height":"121"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET6","shares":"188364891.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001649988907243"},{"denom":"ASSET1","index":"0.000013756519537767"},{"denom":"ASSET10","index":"0.000009584361794534"},{"denom":"ASSET11","index":"0.000013307506163009"},{"denom":"ASSET12","index":"0.000011983307415229"},{"denom":"ASSET13","index":"0.000004124070634826"},{"denom":"ASSET14","index":"0.000012431118612277"},{"denom":"ASSET15","index":"0.000008888300900330"},{"denom":"ASSET16","index":"0.000006196625007203"},{"denom":"ASSET17","index":"0.000004401172597026"},{"denom":"ASSET18","index":"0.000002096597926581"},{"denom":"ASSET2","index":"0.000004060355216185"},{"denom":"ASSET3","index":"0.000001187751577673"},{"denom":"ASSET4","index":"0.000011179050527108"},{"denom":"ASSET5","index":"0.000000922070303720"},{"denom":"ASSET6","index":"0.000003752597722375"},{"denom":"ASSET7","index":"0.000005747010543590"},{"denom":"ASSET8","index":"0.000007499184556200"},{"denom":"ASSET9","index":"0.000003238666751267"}],"last_reward_claim_height":"73"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","denom":"ASSET15","shares":"669600706.108822345235508144","reward_history":[{"denom":"ASSET0","index":"0.000003269082759145"},{"denom":"ASSET1","index":"0.000027736662456421"},{"denom":"ASSET10","index":"0.000022145815740722"},{"denom":"ASSET11","index":"0.000027564157079872"},{"denom":"ASSET12","index":"0.000026286254396013"},{"denom":"ASSET13","index":"0.000008658548128401"},{"denom":"ASSET14","index":"0.000025298253418871"},{"denom":"ASSET15","index":"0.000019946084058089"},{"denom":"ASSET16","index":"0.000012303266096103"},{"denom":"ASSET17","index":"0.000009659898104260"},{"denom":"ASSET18","index":"0.000003991565584036"},{"denom":"ASSET2","index":"0.000008399501371576"},{"denom":"ASSET3","index":"0.000002333103515211"},{"denom":"ASSET4","index":"0.000022486071398850"},{"denom":"ASSET5","index":"0.000001817550334619"},{"denom":"ASSET6","index":"0.000007334517845971"},{"denom":"ASSET7","index":"0.000011522603065826"},{"denom":"ASSET8","index":"0.000015739883934035"},{"denom":"ASSET9","index":"0.000006680430297789"}],"last_reward_claim_height":"177"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET1","shares":"1000073330.699593860000000000","reward_history":[{"denom":"ASSET0","index":"0.000001707974867576"},{"denom":"ASSET1","index":"0.000014238090744503"},{"denom":"ASSET10","index":"0.000009920037235236"},{"denom":"ASSET11","index":"0.000013773690453356"},{"denom":"ASSET12","index":"0.000012403461252069"},{"denom":"ASSET13","index":"0.000004268385028930"},{"denom":"ASSET14","index":"0.000012866619831208"},{"denom":"ASSET15","index":"0.000009199844270355"},{"denom":"ASSET16","index":"0.000006414063379473"},{"denom":"ASSET17","index":"0.000004555220502875"},{"denom":"ASSET18","index":"0.000002169891734707"},{"denom":"ASSET2","index":"0.000004203195148489"},{"denom":"ASSET3","index":"0.000001229294888332"},{"denom":"ASSET4","index":"0.000011570893350426"},{"denom":"ASSET5","index":"0.000000954255678468"},{"denom":"ASSET6","index":"0.000003884075162326"},{"denom":"ASSET7","index":"0.000005948421376317"},{"denom":"ASSET8","index":"0.000007761941764609"},{"denom":"ASSET9","index":"0.000003352622422724"}],"last_reward_claim_height":"101"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET11","shares":"260780431.547972075879165544","reward_history":[{"denom":"ASSET0","index":"0.000003075387603983"},{"denom":"ASSET1","index":"0.000026047450678709"},{"denom":"ASSET10","index":"0.000020531243448578"},{"denom":"ASSET11","index":"0.000025816927992783"},{"denom":"ASSET12","index":"0.000024485469945303"},{"denom":"ASSET13","index":"0.000008098391373250"},{"denom":"ASSET14","index":"0.000023735883509134"},{"denom":"ASSET15","index":"0.000018540774078871"},{"denom":"ASSET16","index":"0.000011572711306393"},{"denom":"ASSET17","index":"0.000008997644319689"},{"denom":"ASSET18","index":"0.000003770348288081"},{"denom":"ASSET2","index":"0.000007868945206789"},{"denom":"ASSET3","index":"0.000002196489262864"},{"denom":"ASSET4","index":"0.000021122354693053"},{"denom":"ASSET5","index":"0.000001710501624761"},{"denom":"ASSET6","index":"0.000006909892735753"},{"denom":"ASSET7","index":"0.000010827333344051"},{"denom":"ASSET8","index":"0.000014723239896475"},{"denom":"ASSET9","index":"0.000006260042064096"}],"last_reward_claim_height":"178"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET12","shares":"99922981.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003075387603983"},{"denom":"ASSET1","index":"0.000026047450678709"},{"denom":"ASSET10","index":"0.000020531243448578"},{"denom":"ASSET11","index":"0.000025816927992783"},{"denom":"ASSET12","index":"0.000024485469945303"},{"denom":"ASSET13","index":"0.000008098391373250"},{"denom":"ASSET14","index":"0.000023735883509134"},{"denom":"ASSET15","index":"0.000018540774078871"},{"denom":"ASSET16","index":"0.000011572711306393"},{"denom":"ASSET17","index":"0.000008997644319689"},{"denom":"ASSET18","index":"0.000003770348288081"},{"denom":"ASSET2","index":"0.000007868945206789"},{"denom":"ASSET3","index":"0.000002196489262864"},{"denom":"ASSET4","index":"0.000021122354693053"},{"denom":"ASSET5","index":"0.000001710501624761"},{"denom":"ASSET6","index":"0.000006909892735753"},{"denom":"ASSET7","index":"0.000010827333344051"},{"denom":"ASSET8","index":"0.000014723239896475"},{"denom":"ASSET9","index":"0.000006260042064096"}],"last_reward_claim_height":"127"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","denom":"ASSET14","shares":"165048230.999999999689282740","reward_history":[],"last_reward_claim_height":"45"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET2","shares":"685281348.108998045847353820","reward_history":[{"denom":"ASSET0","index":"0.000003478645419875"},{"denom":"ASSET1","index":"0.000029510728520321"},{"denom":"ASSET10","index":"0.000023521700007579"},{"denom":"ASSET11","index":"0.000029317721838376"},{"denom":"ASSET12","index":"0.000027938200533330"},{"denom":"ASSET13","index":"0.000009206643656085"},{"denom":"ASSET14","index":"0.000026913511393693"},{"denom":"ASSET15","index":"0.000021192735957156"},{"denom":"ASSET16","index":"0.000013092928863665"},{"denom":"ASSET17","index":"0.000010265835619821"},{"denom":"ASSET18","index":"0.000004249633310572"},{"denom":"ASSET2","index":"0.000008933634051769"},{"denom":"ASSET3","index":"0.000002482776919113"},{"denom":"ASSET4","index":"0.000023925662277258"},{"denom":"ASSET5","index":"0.000001933519521756"},{"denom":"ASSET6","index":"0.000007806757132876"},{"denom":"ASSET7","index":"0.000012260200744601"},{"denom":"ASSET8","index":"0.000016737737824425"},{"denom":"ASSET9","index":"0.000007106044722519"}],"last_reward_claim_height":"177"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET4","shares":"1756773.680573237522163568","reward_history":[{"denom":"ASSET0","index":"0.000005166723047275"},{"denom":"ASSET1","index":"0.000042322847048766"},{"denom":"ASSET10","index":"0.000036533262543159"},{"denom":"ASSET11","index":"0.000043914144587354"},{"denom":"ASSET12","index":"0.000041785782999849"},{"denom":"ASSET13","index":"0.000014153266257788"},{"denom":"ASSET14","index":"0.000040516003905052"},{"denom":"ASSET15","index":"0.000032804900644736"},{"denom":"ASSET16","index":"0.000018781400926959"},{"denom":"ASSET17","index":"0.000015182438814265"},{"denom":"ASSET18","index":"0.000006314804040122"},{"denom":"ASSET2","index":"0.000012772828382927"},{"denom":"ASSET3","index":"0.000003669982792512"},{"denom":"ASSET4","index":"0.000034682890695078"},{"denom":"ASSET5","index":"0.000002880570137079"},{"denom":"ASSET6","index":"0.000011757393373176"},{"denom":"ASSET7","index":"0.000018165388254823"},{"denom":"ASSET8","index":"0.000026105026563655"},{"denom":"ASSET9","index":"0.000010488779573430"}],"last_reward_claim_height":"183"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET6","shares":"780143105.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003478645419875"},{"denom":"ASSET1","index":"0.000029510728520321"},{"denom":"ASSET10","index":"0.000023521700007579"},{"denom":"ASSET11","index":"0.000029317721838376"},{"denom":"ASSET12","index":"0.000027938200533330"},{"denom":"ASSET13","index":"0.000009206643656085"},{"denom":"ASSET14","index":"0.000026913511393693"},{"denom":"ASSET15","index":"0.000021192735957156"},{"denom":"ASSET16","index":"0.000013092928863665"},{"denom":"ASSET17","index":"0.000010265835619821"},{"denom":"ASSET18","index":"0.000004249633310572"},{"denom":"ASSET2","index":"0.000008933634051769"},{"denom":"ASSET3","index":"0.000002482776919113"},{"denom":"ASSET4","index":"0.000023925662277258"},{"denom":"ASSET5","index":"0.000001933519521756"},{"denom":"ASSET6","index":"0.000007806757132876"},{"denom":"ASSET7","index":"0.000012260200744601"},{"denom":"ASSET8","index":"0.000016737737824425"},{"denom":"ASSET9","index":"0.000007106044722519"}],"last_reward_claim_height":"165"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","denom":"ASSET9","shares":"297619265.508715057836654844","reward_history":[{"denom":"ASSET0","index":"0.000001779156074987"},{"denom":"ASSET1","index":"0.000014834764457923"},{"denom":"ASSET10","index":"0.000010335215703318"},{"denom":"ASSET11","index":"0.000014351450406057"},{"denom":"ASSET12","index":"0.000012923397473821"},{"denom":"ASSET13","index":"0.000004447014618532"},{"denom":"ASSET14","index":"0.000013405835956753"},{"denom":"ASSET15","index":"0.000009584853126417"},{"denom":"ASSET16","index":"0.000006682342108415"},{"denom":"ASSET17","index":"0.000004745583625211"},{"denom":"ASSET18","index":"0.000002260718988984"},{"denom":"ASSET2","index":"0.000004378720241638"},{"denom":"ASSET3","index":"0.000001280957351233"},{"denom":"ASSET4","index":"0.000012055708659691"},{"denom":"ASSET5","index":"0.000000993770740704"},{"denom":"ASSET6","index":"0.000004046879615447"},{"denom":"ASSET7","index":"0.000006197276918679"},{"denom":"ASSET8","index":"0.000008086754679418"},{"denom":"ASSET9","index":"0.000003492644479883"}],"last_reward_claim_height":"120"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET14","shares":"723040040.989979892526129794","reward_history":[{"denom":"ASSET0","index":"0.000003327512121722"},{"denom":"ASSET1","index":"0.000028211822531533"},{"denom":"ASSET10","index":"0.000022399629444355"},{"denom":"ASSET11","index":"0.000028004032167971"},{"denom":"ASSET12","index":"0.000026643127370344"},{"denom":"ASSET13","index":"0.000008791339050068"},{"denom":"ASSET14","index":"0.000025722152469956"},{"denom":"ASSET15","index":"0.000020197596080044"},{"denom":"ASSET16","index":"0.000012523737733641"},{"denom":"ASSET17","index":"0.000009790102863953"},{"denom":"ASSET18","index":"0.000004069245825383"},{"denom":"ASSET2","index":"0.000008534453115749"},{"denom":"ASSET3","index":"0.000002375171252372"},{"denom":"ASSET4","index":"0.000022873545881432"},{"denom":"ASSET5","index":"0.000001850500835715"},{"denom":"ASSET6","index":"0.000007470212303630"},{"denom":"ASSET7","index":"0.000011723166108277"},{"denom":"ASSET8","index":"0.000015981595788329"},{"denom":"ASSET9","index":"0.000006788341225254"}],"last_reward_claim_height":"145"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","denom":"ASSET17","shares":"258477303.862889902318471776","reward_history":[{"denom":"ASSET0","index":"0.000003327512121722"},{"denom":"ASSET1","index":"0.000028211822531533"},{"denom":"ASSET10","index":"0.000022399629444355"},{"denom":"ASSET11","index":"0.000028004032167971"},{"denom":"ASSET12","index":"0.000026643127370344"},{"denom":"ASSET13","index":"0.000008791339050068"},{"denom":"ASSET14","index":"0.000025722152469956"},{"denom":"ASSET15","index":"0.000020197596080044"},{"denom":"ASSET16","index":"0.000012523737733641"},{"denom":"ASSET17","index":"0.000009790102863953"},{"denom":"ASSET18","index":"0.000004069245825383"},{"denom":"ASSET2","index":"0.000008534453115749"},{"denom":"ASSET3","index":"0.000002375171252372"},{"denom":"ASSET4","index":"0.000022873545881432"},{"denom":"ASSET5","index":"0.000001850500835715"},{"denom":"ASSET6","index":"0.000007470212303630"},{"denom":"ASSET7","index":"0.000011723166108277"},{"denom":"ASSET8","index":"0.000015981595788329"},{"denom":"ASSET9","index":"0.000006788341225254"}],"last_reward_claim_height":"143"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","denom":"ASSET9","shares":"239830628.720882883778179080","reward_history":[{"denom":"ASSET0","index":"0.000001434713876400"},{"denom":"ASSET1","index":"0.000011974044460331"},{"denom":"ASSET10","index":"0.000008340728508476"},{"denom":"ASSET11","index":"0.000011582406348125"},{"denom":"ASSET12","index":"0.000010430757641934"},{"denom":"ASSET13","index":"0.000003588723493535"},{"denom":"ASSET14","index":"0.000010820456951604"},{"denom":"ASSET15","index":"0.000007735822117345"},{"denom":"ASSET16","index":"0.000005393748654249"},{"denom":"ASSET17","index":"0.000003829135007959"},{"denom":"ASSET18","index":"0.000001824413186071"},{"denom":"ASSET2","index":"0.000003534437022536"},{"denom":"ASSET3","index":"0.000001033381751515"},{"denom":"ASSET4","index":"0.000009730849926555"},{"denom":"ASSET5","index":"0.000000802664249770"},{"denom":"ASSET6","index":"0.000003264943470077"},{"denom":"ASSET7","index":"0.000005002110542043"},{"denom":"ASSET8","index":"0.000006526009335083"},{"denom":"ASSET9","index":"0.000002819018886872"}],"last_reward_claim_height":"92"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET11","shares":"229155267.000000000000000000","reward_history":[],"last_reward_claim_height":"27"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET13","shares":"872864684.274113558532148512","reward_history":[{"denom":"ASSET0","index":"0.000001401536005232"},{"denom":"ASSET1","index":"0.000011690786017211"},{"denom":"ASSET10","index":"0.000008143726832164"},{"denom":"ASSET11","index":"0.000011307987636928"},{"denom":"ASSET12","index":"0.000010184289165772"},{"denom":"ASSET13","index":"0.000003503840013080"},{"denom":"ASSET14","index":"0.000010564000462344"},{"denom":"ASSET15","index":"0.000007554093843178"},{"denom":"ASSET16","index":"0.000005266564812612"},{"denom":"ASSET17","index":"0.000003738458375190"},{"denom":"ASSET18","index":"0.000001781247301804"},{"denom":"ASSET2","index":"0.000003448272506265"},{"denom":"ASSET3","index":"0.000001009476373813"},{"denom":"ASSET4","index":"0.000009498956581716"},{"denom":"ASSET5","index":"0.000000781032179127"},{"denom":"ASSET6","index":"0.000003188957474460"},{"denom":"ASSET7","index":"0.000004883766432329"},{"denom":"ASSET8","index":"0.000006371740781496"},{"denom":"ASSET9","index":"0.000002750591587361"}],"last_reward_claim_height":"71"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","denom":"ASSET14","shares":"163612150.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001401536005232"},{"denom":"ASSET1","index":"0.000011690786017211"},{"denom":"ASSET10","index":"0.000008143726832164"},{"denom":"ASSET11","index":"0.000011307987636928"},{"denom":"ASSET12","index":"0.000010184289165772"},{"denom":"ASSET13","index":"0.000003503840013080"},{"denom":"ASSET14","index":"0.000010564000462344"},{"denom":"ASSET15","index":"0.000007554093843178"},{"denom":"ASSET16","index":"0.000005266564812612"},{"denom":"ASSET17","index":"0.000003738458375190"},{"denom":"ASSET18","index":"0.000001781247301804"},{"denom":"ASSET2","index":"0.000003448272506265"},{"denom":"ASSET3","index":"0.000001009476373813"},{"denom":"ASSET4","index":"0.000009498956581716"},{"denom":"ASSET5","index":"0.000000781032179127"},{"denom":"ASSET6","index":"0.000003188957474460"},{"denom":"ASSET7","index":"0.000004883766432329"},{"denom":"ASSET8","index":"0.000006371740781496"},{"denom":"ASSET9","index":"0.000002750591587361"}],"last_reward_claim_height":"83"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","denom":"ASSET4","shares":"6575389.313417242617083543","reward_history":[{"denom":"ASSET0","index":"0.000001534549585700"},{"denom":"ASSET1","index":"0.000012795681230217"},{"denom":"ASSET10","index":"0.000008914897664776"},{"denom":"ASSET11","index":"0.000012378406858633"},{"denom":"ASSET12","index":"0.000011146809898878"},{"denom":"ASSET13","index":"0.000003835934265229"},{"denom":"ASSET14","index":"0.000011563204872419"},{"denom":"ASSET15","index":"0.000008267660704848"},{"denom":"ASSET16","index":"0.000005764014475342"},{"denom":"ASSET17","index":"0.000004093597891939"},{"denom":"ASSET18","index":"0.000001950065161198"},{"denom":"ASSET2","index":"0.000003777014596322"},{"denom":"ASSET3","index":"0.000001104963641508"},{"denom":"ASSET4","index":"0.000010398442163960"},{"denom":"ASSET5","index":"0.000000857413092297"},{"denom":"ASSET6","index":"0.000003490330834180"},{"denom":"ASSET7","index":"0.000005345421006692"},{"denom":"ASSET8","index":"0.000006975385280099"},{"denom":"ASSET9","index":"0.000003012817696624"}],"last_reward_claim_height":"66"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET13","shares":"197970229.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001658482037183"},{"denom":"ASSET1","index":"0.000013862588923046"},{"denom":"ASSET10","index":"0.000009655943522610"},{"denom":"ASSET11","index":"0.000013408077810815"},{"denom":"ASSET12","index":"0.000012073555821711"},{"denom":"ASSET13","index":"0.000004153457929856"},{"denom":"ASSET14","index":"0.000012528066933942"},{"denom":"ASSET15","index":"0.000008954835955871"},{"denom":"ASSET16","index":"0.000006242274956279"},{"denom":"ASSET17","index":"0.000004433900956551"},{"denom":"ASSET18","index":"0.000002112993149414"},{"denom":"ASSET2","index":"0.000004090600010079"},{"denom":"ASSET3","index":"0.000001194300475756"},{"denom":"ASSET4","index":"0.000011266073313811"},{"denom":"ASSET5","index":"0.000000928363122855"},{"denom":"ASSET6","index":"0.000003781145635794"},{"denom":"ASSET7","index":"0.000005787763844048"},{"denom":"ASSET8","index":"0.000007557456046990"},{"denom":"ASSET9","index":"0.000003263776603787"}],"last_reward_claim_height":"85"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET16","shares":"596090423.742808243661347594","reward_history":[{"denom":"ASSET0","index":"0.000003188277912377"},{"denom":"ASSET1","index":"0.000027072180177666"},{"denom":"ASSET10","index":"0.000021525590492702"},{"denom":"ASSET11","index":"0.000026879695640981"},{"denom":"ASSET12","index":"0.000025588321740665"},{"denom":"ASSET13","index":"0.000008437670891103"},{"denom":"ASSET14","index":"0.000024686413843557"},{"denom":"ASSET15","index":"0.000019403734038796"},{"denom":"ASSET16","index":"0.000012012351193227"},{"denom":"ASSET17","index":"0.000009402991763462"},{"denom":"ASSET18","index":"0.000003903246578743"},{"denom":"ASSET2","index":"0.000008191237466303"},{"denom":"ASSET3","index":"0.000002276140738265"},{"denom":"ASSET4","index":"0.000021950324608304"},{"denom":"ASSET5","index":"0.000001774065663090"},{"denom":"ASSET6","index":"0.000007165524818145"},{"denom":"ASSET7","index":"0.000011244820309610"},{"denom":"ASSET8","index":"0.000015343724796373"},{"denom":"ASSET9","index":"0.000006516357987660"}],"last_reward_claim_height":"140"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","denom":"ASSET18","shares":"234683626.402454861860782480","reward_history":[{"denom":"ASSET0","index":"0.000004821253659137"},{"denom":"ASSET1","index":"0.000039465245308483"},{"denom":"ASSET10","index":"0.000034111324062195"},{"denom":"ASSET11","index":"0.000040998472045794"},{"denom":"ASSET12","index":"0.000038982930565630"},{"denom":"ASSET13","index":"0.000013222547274006"},{"denom":"ASSET14","index":"0.000037843785812280"},{"denom":"ASSET15","index":"0.000030636082555583"},{"denom":"ASSET16","index":"0.000017514751416713"},{"denom":"ASSET17","index":"0.000014158801787082"},{"denom":"ASSET18","index":"0.000005900797517651"},{"denom":"ASSET2","index":"0.000011904810892779"},{"denom":"ASSET3","index":"0.000003424400341174"},{"denom":"ASSET4","index":"0.000032355527586641"},{"denom":"ASSET5","index":"0.000002690071214205"},{"denom":"ASSET6","index":"0.000010986782185203"},{"denom":"ASSET7","index":"0.000016956775142402"},{"denom":"ASSET8","index":"0.000024404677863493"},{"denom":"ASSET9","index":"0.000009788399575506"}],"last_reward_claim_height":"189"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET9","shares":"108994312.387635660857178487","reward_history":[{"denom":"ASSET0","index":"0.000002979919393708"},{"denom":"ASSET1","index":"0.000025298333716476"},{"denom":"ASSET10","index":"0.000020286143685892"},{"denom":"ASSET11","index":"0.000025164674259360"},{"denom":"ASSET12","index":"0.000024041723171534"},{"denom":"ASSET13","index":"0.000007907785176595"},{"denom":"ASSET14","index":"0.000023082402053339"},{"denom":"ASSET15","index":"0.000018255332392862"},{"denom":"ASSET16","index":"0.000011216675450010"},{"denom":"ASSET17","index":"0.000008835128154455"},{"denom":"ASSET18","index":"0.000003633337151635"},{"denom":"ASSET2","index":"0.000007668586747858"},{"denom":"ASSET3","index":"0.000002126085354033"},{"denom":"ASSET4","index":"0.000020508686269066"},{"denom":"ASSET5","index":"0.000001656307666438"},{"denom":"ASSET6","index":"0.000006683025235204"},{"denom":"ASSET7","index":"0.000010507859389263"},{"denom":"ASSET8","index":"0.000014375637436113"},{"denom":"ASSET9","index":"0.000006098257618497"}],"last_reward_claim_height":"156"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET11","shares":"161315729.914161534540022422","reward_history":[{"denom":"ASSET0","index":"0.000001453411320498"},{"denom":"ASSET1","index":"0.000012118137400313"},{"denom":"ASSET10","index":"0.000008442891188019"},{"denom":"ASSET11","index":"0.000011723343510399"},{"denom":"ASSET12","index":"0.000010556870017106"},{"denom":"ASSET13","index":"0.000003632917795231"},{"denom":"ASSET14","index":"0.000010951256903010"},{"denom":"ASSET15","index":"0.000007829943148627"},{"denom":"ASSET16","index":"0.000005459144789091"},{"denom":"ASSET17","index":"0.000003877120201363"},{"denom":"ASSET18","index":"0.000001846984198382"},{"denom":"ASSET2","index":"0.000003577158245830"},{"denom":"ASSET3","index":"0.000001046407310278"},{"denom":"ASSET4","index":"0.000009848276035312"},{"denom":"ASSET5","index":"0.000000811973000390"},{"denom":"ASSET6","index":"0.000003305686571013"},{"denom":"ASSET7","index":"0.000005062722883136"},{"denom":"ASSET8","index":"0.000006606082089893"},{"denom":"ASSET9","index":"0.000002853098111648"}],"last_reward_claim_height":"95"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","denom":"ASSET16","shares":"745670794.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002979919393708"},{"denom":"ASSET1","index":"0.000025298333716476"},{"denom":"ASSET10","index":"0.000020286143685892"},{"denom":"ASSET11","index":"0.000025164674259360"},{"denom":"ASSET12","index":"0.000024041723171534"},{"denom":"ASSET13","index":"0.000007907785176595"},{"denom":"ASSET14","index":"0.000023082402053339"},{"denom":"ASSET15","index":"0.000018255332392862"},{"denom":"ASSET16","index":"0.000011216675450010"},{"denom":"ASSET17","index":"0.000008835128154455"},{"denom":"ASSET18","index":"0.000003633337151635"},{"denom":"ASSET2","index":"0.000007668586747858"},{"denom":"ASSET3","index":"0.000002126085354033"},{"denom":"ASSET4","index":"0.000020508686269066"},{"denom":"ASSET5","index":"0.000001656307666438"},{"denom":"ASSET6","index":"0.000006683025235204"},{"denom":"ASSET7","index":"0.000010507859389263"},{"denom":"ASSET8","index":"0.000014375637436113"},{"denom":"ASSET9","index":"0.000006098257618497"}],"last_reward_claim_height":"132"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","denom":"ASSET4","shares":"101400.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003433377044021"},{"denom":"ASSET1","index":"0.000029119719093870"},{"denom":"ASSET10","index":"0.000023168779363922"},{"denom":"ASSET11","index":"0.000028918871222836"},{"denom":"ASSET12","index":"0.000027536680421684"},{"denom":"ASSET13","index":"0.000009079853140421"},{"denom":"ASSET14","index":"0.000026553415276013"},{"denom":"ASSET15","index":"0.000020883272198610"},{"denom":"ASSET16","index":"0.000012920460029656"},{"denom":"ASSET17","index":"0.000010116347697920"},{"denom":"ASSET18","index":"0.000004196183907349"},{"denom":"ASSET2","index":"0.000008810148159861"},{"denom":"ASSET3","index":"0.000002451192479374"},{"denom":"ASSET4","index":"0.000023608026429735"},{"denom":"ASSET5","index":"0.000001908186346512"},{"denom":"ASSET6","index":"0.000007706415634871"},{"denom":"ASSET7","index":"0.000012098308533034"},{"denom":"ASSET8","index":"0.000016505861275643"},{"denom":"ASSET9","index":"0.000007009790471677"}],"last_reward_claim_height":"183"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","denom":"ASSET4","shares":"148968254.439656311612758094","reward_history":[{"denom":"ASSET0","index":"0.000004711127852933"},{"denom":"ASSET1","index":"0.000038541984650791"},{"denom":"ASSET10","index":"0.000033360389515629"},{"denom":"ASSET11","index":"0.000040051832871078"},{"denom":"ASSET12","index":"0.000038107934739741"},{"denom":"ASSET13","index":"0.000012920381400678"},{"denom":"ASSET14","index":"0.000036958872887572"},{"denom":"ASSET15","index":"0.000029952980327999"},{"denom":"ASSET16","index":"0.000017104098801491"},{"denom":"ASSET17","index":"0.000013841787045943"},{"denom":"ASSET18","index":"0.000005757887134437"},{"denom":"ASSET2","index":"0.000011630980235877"},{"denom":"ASSET3","index":"0.000003345975640178"},{"denom":"ASSET4","index":"0.000031596472598431"},{"denom":"ASSET5","index":"0.000002627111980169"},{"denom":"ASSET6","index":"0.000010725526366283"},{"denom":"ASSET7","index":"0.000016561788873990"},{"denom":"ASSET8","index":"0.000023841368375665"},{"denom":"ASSET9","index":"0.000009561543464832"}],"last_reward_claim_height":"189"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET3","shares":"727074540.000000000000000000","reward_history":[],"last_reward_claim_height":"12"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET4","shares":"1000079939.136726023000000000","reward_history":[{"denom":"ASSET0","index":"0.000001536288093705"},{"denom":"ASSET1","index":"0.000012808796131863"},{"denom":"ASSET10","index":"0.000008924322337818"},{"denom":"ASSET11","index":"0.000012391382492026"},{"denom":"ASSET12","index":"0.000011158327625467"},{"denom":"ASSET13","index":"0.000003840018305497"},{"denom":"ASSET14","index":"0.000011575273312793"},{"denom":"ASSET15","index":"0.000008276208110044"},{"denom":"ASSET16","index":"0.000005770322413488"},{"denom":"ASSET17","index":"0.000004097860139074"},{"denom":"ASSET18","index":"0.000001951829923499"},{"denom":"ASSET2","index":"0.000003781056289108"},{"denom":"ASSET3","index":"0.000001105771783560"},{"denom":"ASSET4","index":"0.000010409603607822"},{"denom":"ASSET5","index":"0.000000858224905226"},{"denom":"ASSET6","index":"0.000003494201399847"},{"denom":"ASSET7","index":"0.000005351036963607"},{"denom":"ASSET8","index":"0.000006982787369562"},{"denom":"ASSET9","index":"0.000003015953933577"}],"last_reward_claim_height":"111"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","denom":"ASSET16","shares":"58507186.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001536288093705"},{"denom":"ASSET1","index":"0.000012808796131863"},{"denom":"ASSET10","index":"0.000008924322337818"},{"denom":"ASSET11","index":"0.000012391382492026"},{"denom":"ASSET12","index":"0.000011158327625467"},{"denom":"ASSET13","index":"0.000003840018305497"},{"denom":"ASSET14","index":"0.000011575273312793"},{"denom":"ASSET15","index":"0.000008276208110044"},{"denom":"ASSET16","index":"0.000005770322413488"},{"denom":"ASSET17","index":"0.000004097860139074"},{"denom":"ASSET18","index":"0.000001951829923499"},{"denom":"ASSET2","index":"0.000003781056289108"},{"denom":"ASSET3","index":"0.000001105771783560"},{"denom":"ASSET4","index":"0.000010409603607822"},{"denom":"ASSET5","index":"0.000000858224905226"},{"denom":"ASSET6","index":"0.000003494201399847"},{"denom":"ASSET7","index":"0.000005351036963607"},{"denom":"ASSET8","index":"0.000006982787369562"},{"denom":"ASSET9","index":"0.000003015953933577"}],"last_reward_claim_height":"109"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET0","shares":"81326243.000000013877869122","reward_history":[{"denom":"ASSET0","index":"0.000002648545180722"},{"denom":"ASSET1","index":"0.000022528915692996"},{"denom":"ASSET10","index":"0.000018297756458480"},{"denom":"ASSET11","index":"0.000022469822082599"},{"denom":"ASSET12","index":"0.000021584227648624"},{"denom":"ASSET13","index":"0.000007070243338634"},{"denom":"ASSET14","index":"0.000020574684608302"},{"denom":"ASSET15","index":"0.000016423497937791"},{"denom":"ASSET16","index":"0.000009972839292196"},{"denom":"ASSET17","index":"0.000007932645550822"},{"denom":"ASSET18","index":"0.000003216131666673"},{"denom":"ASSET2","index":"0.000006846442901912"},{"denom":"ASSET3","index":"0.000001888119307859"},{"denom":"ASSET4","index":"0.000018258669735553"},{"denom":"ASSET5","index":"0.000001471345302008"},{"denom":"ASSET6","index":"0.000005932348598922"},{"denom":"ASSET7","index":"0.000009352074075404"},{"denom":"ASSET8","index":"0.000012853047191550"},{"denom":"ASSET9","index":"0.000005442948627063"}],"last_reward_claim_height":"147"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET5","shares":"350524867.939235750480737864","reward_history":[{"denom":"ASSET0","index":"0.000001156201861882"},{"denom":"ASSET1","index":"0.000009641528249827"},{"denom":"ASSET10","index":"0.000006717693720376"},{"denom":"ASSET11","index":"0.000009327193051790"},{"denom":"ASSET12","index":"0.000008399128436016"},{"denom":"ASSET13","index":"0.000002890504654704"},{"denom":"ASSET14","index":"0.000008712888981039"},{"denom":"ASSET15","index":"0.000006229813312455"},{"denom":"ASSET16","index":"0.000004343227471224"},{"denom":"ASSET17","index":"0.000003084737373052"},{"denom":"ASSET18","index":"0.000001469387753892"},{"denom":"ASSET2","index":"0.000002846256372714"},{"denom":"ASSET3","index":"0.000000832672215639"},{"denom":"ASSET4","index":"0.000007835393830396"},{"denom":"ASSET5","index":"0.000000645909986459"},{"denom":"ASSET6","index":"0.000002630186839877"},{"denom":"ASSET7","index":"0.000004027742967162"},{"denom":"ASSET8","index":"0.000005256351108664"},{"denom":"ASSET9","index":"0.000002269879400812"}],"last_reward_claim_height":"89"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","denom":"ASSET8","shares":"555894022.000000000000000000","reward_history":[],"last_reward_claim_height":"27"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET8","shares":"736792024.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004684522326330"},{"denom":"ASSET1","index":"0.000038343592790786"},{"denom":"ASSET10","index":"0.000033073465123627"},{"denom":"ASSET11","index":"0.000039792938806307"},{"denom":"ASSET12","index":"0.000037831993151719"},{"denom":"ASSET13","index":"0.000012827422858554"},{"denom":"ASSET14","index":"0.000036725774896582"},{"denom":"ASSET15","index":"0.000029707175527113"},{"denom":"ASSET16","index":"0.000017020370407689"},{"denom":"ASSET17","index":"0.000013744455687075"},{"denom":"ASSET18","index":"0.000005729220057041"},{"denom":"ASSET2","index":"0.000011567669506012"},{"denom":"ASSET3","index":"0.000003327180281983"},{"denom":"ASSET4","index":"0.000031427847982959"},{"denom":"ASSET5","index":"0.000002612385721179"},{"denom":"ASSET6","index":"0.000010663850280154"},{"denom":"ASSET7","index":"0.000016466138905281"},{"denom":"ASSET8","index":"0.000023663630054111"},{"denom":"ASSET9","index":"0.000009503718423149"}],"last_reward_claim_height":"192"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET9","shares":"76287521.000000000000000000","reward_history":[],"last_reward_claim_height":"61"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET14","shares":"269360006.603749019946205140","reward_history":[{"denom":"ASSET0","index":"0.000001638829976996"},{"denom":"ASSET1","index":"0.000013663699511091"},{"denom":"ASSET10","index":"0.000009519748943981"},{"denom":"ASSET11","index":"0.000013218199388741"},{"denom":"ASSET12","index":"0.000011902774883924"},{"denom":"ASSET13","index":"0.000004095984811686"},{"denom":"ASSET14","index":"0.000012347548252404"},{"denom":"ASSET15","index":"0.000008827879259679"},{"denom":"ASSET16","index":"0.000006154878525580"},{"denom":"ASSET17","index":"0.000004371424528441"},{"denom":"ASSET18","index":"0.000002082149837736"},{"denom":"ASSET2","index":"0.000004033483978861"},{"denom":"ASSET3","index":"0.000001179521531115"},{"denom":"ASSET4","index":"0.000011104072380722"},{"denom":"ASSET5","index":"0.000000915709876282"},{"denom":"ASSET6","index":"0.000003726793845693"},{"denom":"ASSET7","index":"0.000005707924895490"},{"denom":"ASSET8","index":"0.000007448500414296"},{"denom":"ASSET9","index":"0.000003217339382778"}],"last_reward_claim_height":"65"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","denom":"ASSET18","shares":"370220220.999999998148898895","reward_history":[{"denom":"ASSET0","index":"0.000003133427860009"},{"denom":"ASSET1","index":"0.000026571363581284"},{"denom":"ASSET10","index":"0.000021118003104150"},{"denom":"ASSET11","index":"0.000026381510155653"},{"denom":"ASSET12","index":"0.000025108485590780"},{"denom":"ASSET13","index":"0.000008282355352591"},{"denom":"ASSET14","index":"0.000024227637307493"},{"denom":"ASSET15","index":"0.000019037535386694"},{"denom":"ASSET16","index":"0.000011793447009555"},{"denom":"ASSET17","index":"0.000009226841180516"},{"denom":"ASSET18","index":"0.000003831770888939"},{"denom":"ASSET2","index":"0.000008040278303534"},{"denom":"ASSET3","index":"0.000002236402387063"},{"denom":"ASSET4","index":"0.000021543810534784"},{"denom":"ASSET5","index":"0.000001742508705183"},{"denom":"ASSET6","index":"0.000007033989161296"},{"denom":"ASSET7","index":"0.000011040340871930"},{"denom":"ASSET8","index":"0.000015056795520064"},{"denom":"ASSET9","index":"0.000006395464292965"}],"last_reward_claim_height":"150"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET7","shares":"265764246.969885804249412678","reward_history":[{"denom":"ASSET0","index":"0.000001556422065682"},{"denom":"ASSET1","index":"0.000012975233747354"},{"denom":"ASSET10","index":"0.000009039925804131"},{"denom":"ASSET11","index":"0.000012551842294036"},{"denom":"ASSET12","index":"0.000011303196313064"},{"denom":"ASSET13","index":"0.000003889859143149"},{"denom":"ASSET14","index":"0.000011725391745328"},{"denom":"ASSET15","index":"0.000008383310245172"},{"denom":"ASSET16","index":"0.000005844954893688"},{"denom":"ASSET17","index":"0.000004150990406731"},{"denom":"ASSET18","index":"0.000001977421476890"},{"denom":"ASSET2","index":"0.000003830058090421"},{"denom":"ASSET3","index":"0.000001120273054448"},{"denom":"ASSET4","index":"0.000010544520290781"},{"denom":"ASSET5","index":"0.000000869507306673"},{"denom":"ASSET6","index":"0.000003539424974160"},{"denom":"ASSET7","index":"0.000005420766093000"},{"denom":"ASSET8","index":"0.000007073268516732"},{"denom":"ASSET9","index":"0.000003055036447059"}],"last_reward_claim_height":"105"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET8","shares":"438600447.000000000000000000","reward_history":[],"last_reward_claim_height":"46"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","denom":"ASSET17","shares":"650176883.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003102345998156"},{"denom":"ASSET1","index":"0.000026324295521459"},{"denom":"ASSET10","index":"0.000021034709957123"},{"denom":"ASSET11","index":"0.000026165624152899"},{"denom":"ASSET12","index":"0.000024960753498443"},{"denom":"ASSET13","index":"0.000008219480216908"},{"denom":"ASSET14","index":"0.000024012126304297"},{"denom":"ASSET15","index":"0.000018942125813395"},{"denom":"ASSET16","index":"0.000011676379885795"},{"denom":"ASSET17","index":"0.000009172744202097"},{"denom":"ASSET18","index":"0.000003786686743681"},{"denom":"ASSET2","index":"0.000007973892542195"},{"denom":"ASSET3","index":"0.000002213622154517"},{"denom":"ASSET4","index":"0.000021341514997764"},{"denom":"ASSET5","index":"0.000001724677267981"},{"denom":"ASSET6","index":"0.000006959760131783"},{"denom":"ASSET7","index":"0.000010935767858794"},{"denom":"ASSET8","index":"0.000014942141973689"},{"denom":"ASSET9","index":"0.000006341977499472"}],"last_reward_claim_height":"153"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET1","shares":"436144633.000000010903615825","reward_history":[],"last_reward_claim_height":"41"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","denom":"ASSET9","shares":"317274420.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001602535700795"},{"denom":"ASSET1","index":"0.000013360208994045"},{"denom":"ASSET10","index":"0.000009307956057468"},{"denom":"ASSET11","index":"0.000012924500245282"},{"denom":"ASSET12","index":"0.000011638378499862"},{"denom":"ASSET13","index":"0.000004005127453862"},{"denom":"ASSET14","index":"0.000012073279383206"},{"denom":"ASSET15","index":"0.000008632311279566"},{"denom":"ASSET16","index":"0.000006018597363935"},{"denom":"ASSET17","index":"0.000004274146638048"},{"denom":"ASSET18","index":"0.000002036090141777"},{"denom":"ASSET2","index":"0.000003943729682095"},{"denom":"ASSET3","index":"0.000001153631816872"},{"denom":"ASSET4","index":"0.000010857441929150"},{"denom":"ASSET5","index":"0.000000895384171592"},{"denom":"ASSET6","index":"0.000003644280900498"},{"denom":"ASSET7","index":"0.000005581542172809"},{"denom":"ASSET8","index":"0.000007283176031543"},{"denom":"ASSET9","index":"0.000003145827937606"}],"last_reward_claim_height":"122"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET1","shares":"69773211.144418342654996507","reward_history":[{"denom":"ASSET0","index":"0.000001633811359009"},{"denom":"ASSET1","index":"0.000013620164108551"},{"denom":"ASSET10","index":"0.000009487838038290"},{"denom":"ASSET11","index":"0.000013174776703502"},{"denom":"ASSET12","index":"0.000011864685946211"},{"denom":"ASSET13","index":"0.000004082355776036"},{"denom":"ASSET14","index":"0.000012307900729772"},{"denom":"ASSET15","index":"0.000008799117026580"},{"denom":"ASSET16","index":"0.000006135483082238"},{"denom":"ASSET17","index":"0.000004356106083529"},{"denom":"ASSET18","index":"0.000002074853521082"},{"denom":"ASSET2","index":"0.000004019349752882"},{"denom":"ASSET3","index":"0.000001175388225032"},{"denom":"ASSET4","index":"0.000011067333860098"},{"denom":"ASSET5","index":"0.000000912501024979"},{"denom":"ASSET6","index":"0.000003715182744556"},{"denom":"ASSET7","index":"0.000005690095677188"},{"denom":"ASSET8","index":"0.000007423847624648"},{"denom":"ASSET9","index":"0.000003206789316354"}],"last_reward_claim_height":"114"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","denom":"ASSET8","shares":"142253386.259036442617150843","reward_history":[{"denom":"ASSET0","index":"0.000003109600829404"},{"denom":"ASSET1","index":"0.000026362702045617"},{"denom":"ASSET10","index":"0.000020937844947102"},{"denom":"ASSET11","index":"0.000026169598808926"},{"denom":"ASSET12","index":"0.000024901798461360"},{"denom":"ASSET13","index":"0.000008215149609138"},{"denom":"ASSET14","index":"0.000024035954930107"},{"denom":"ASSET15","index":"0.000018878331344314"},{"denom":"ASSET16","index":"0.000011701775976010"},{"denom":"ASSET17","index":"0.000009149505282332"},{"denom":"ASSET18","index":"0.000003801954966508"},{"denom":"ASSET2","index":"0.000007974718303805"},{"denom":"ASSET3","index":"0.000002219037761573"},{"denom":"ASSET4","index":"0.000021373555319687"},{"denom":"ASSET5","index":"0.000001728657323000"},{"denom":"ASSET6","index":"0.000006980294033305"},{"denom":"ASSET7","index":"0.000010954522542925"},{"denom":"ASSET8","index":"0.000014935013269095"},{"denom":"ASSET9","index":"0.000006344057182602"}],"last_reward_claim_height":"125"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET1","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001356454583190"},{"denom":"ASSET1","index":"0.000011307707773056"},{"denom":"ASSET10","index":"0.000007878355411964"},{"denom":"ASSET11","index":"0.000010938987301217"},{"denom":"ASSET12","index":"0.000009850463994830"},{"denom":"ASSET13","index":"0.000003389876593037"},{"denom":"ASSET14","index":"0.000010218764511690"},{"denom":"ASSET15","index":"0.000007305956775156"},{"denom":"ASSET16","index":"0.000005094053899100"},{"denom":"ASSET17","index":"0.000003617492191826"},{"denom":"ASSET18","index":"0.000001723075280133"},{"denom":"ASSET2","index":"0.000003337802175602"},{"denom":"ASSET3","index":"0.000000976395326909"},{"denom":"ASSET4","index":"0.000009189454857387"},{"denom":"ASSET5","index":"0.000000758018737665"},{"denom":"ASSET6","index":"0.000003084569323074"},{"denom":"ASSET7","index":"0.000004724073562323"},{"denom":"ASSET8","index":"0.000006164519141376"},{"denom":"ASSET9","index":"0.000002662514568862"}],"last_reward_claim_height":"91"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET8","shares":"273798838.000000000000000000","reward_history":[],"last_reward_claim_height":"27"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","denom":"ASSET11","shares":"323948054.000000000000000000","reward_history":[],"last_reward_claim_height":"55"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET8","shares":"381063718.000000000000000000","reward_history":[],"last_reward_claim_height":"35"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","denom":"ASSET10","shares":"671725916.799215418484685731","reward_history":[{"denom":"ASSET0","index":"0.000004809583699829"},{"denom":"ASSET1","index":"0.000039380819492754"},{"denom":"ASSET10","index":"0.000033866242105377"},{"denom":"ASSET11","index":"0.000040823461925820"},{"denom":"ASSET12","index":"0.000038783778597697"},{"denom":"ASSET13","index":"0.000013151510420296"},{"denom":"ASSET14","index":"0.000037685701944579"},{"denom":"ASSET15","index":"0.000030429413884750"},{"denom":"ASSET16","index":"0.000017483827688478"},{"denom":"ASSET17","index":"0.000014091469353498"},{"denom":"ASSET18","index":"0.000005885106118443"},{"denom":"ASSET2","index":"0.000011874740214070"},{"denom":"ASSET3","index":"0.000003415084385987"},{"denom":"ASSET4","index":"0.000032273750528479"},{"denom":"ASSET5","index":"0.000002681741366339"},{"denom":"ASSET6","index":"0.000010947870537491"},{"denom":"ASSET7","index":"0.000016903092094799"},{"denom":"ASSET8","index":"0.000024257874056182"},{"denom":"ASSET9","index":"0.000009750694164807"}],"last_reward_claim_height":"184"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","denom":"ASSET3","shares":"640666572.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001631665384825"},{"denom":"ASSET1","index":"0.000013602742609312"},{"denom":"ASSET10","index":"0.000009477179623123"},{"denom":"ASSET11","index":"0.000013159027954757"},{"denom":"ASSET12","index":"0.000011849393704263"},{"denom":"ASSET13","index":"0.000004077627053980"},{"denom":"ASSET14","index":"0.000012292493795584"},{"denom":"ASSET15","index":"0.000008788868801652"},{"denom":"ASSET16","index":"0.000006127810000788"},{"denom":"ASSET17","index":"0.000004351722256101"},{"denom":"ASSET18","index":"0.000002072921786447"},{"denom":"ASSET2","index":"0.000004015556167401"},{"denom":"ASSET3","index":"0.000001174430339134"},{"denom":"ASSET4","index":"0.000011054148880171"},{"denom":"ASSET5","index":"0.000000911397275215"},{"denom":"ASSET6","index":"0.000003710118240373"},{"denom":"ASSET7","index":"0.000005682866219766"},{"denom":"ASSET8","index":"0.000007415319974879"},{"denom":"ASSET9","index":"0.000003202489009539"}],"last_reward_claim_height":"79"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET0","shares":"537615997.266774190819734985","reward_history":[{"denom":"ASSET0","index":"0.000003063170165442"},{"denom":"ASSET1","index":"0.000025996358951928"},{"denom":"ASSET10","index":"0.000020799618544072"},{"denom":"ASSET11","index":"0.000025846936295403"},{"denom":"ASSET12","index":"0.000024670295822131"},{"denom":"ASSET13","index":"0.000008120644896033"},{"denom":"ASSET14","index":"0.000023715222729701"},{"denom":"ASSET15","index":"0.000018725986369791"},{"denom":"ASSET16","index":"0.000011529047312284"},{"denom":"ASSET17","index":"0.000009065966880203"},{"denom":"ASSET18","index":"0.000003737409049681"},{"denom":"ASSET2","index":"0.000007876841198043"},{"denom":"ASSET3","index":"0.000002185992003768"},{"denom":"ASSET4","index":"0.000021074917159843"},{"denom":"ASSET5","index":"0.000001702800306431"},{"denom":"ASSET6","index":"0.000006871093729972"},{"denom":"ASSET7","index":"0.000010798830402478"},{"denom":"ASSET8","index":"0.000014762015379742"},{"denom":"ASSET9","index":"0.000006264517424621"}],"last_reward_claim_height":"177"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET7","shares":"31467461.596469908759058572","reward_history":[{"denom":"ASSET0","index":"0.000004647136802313"},{"denom":"ASSET1","index":"0.000038017659661295"},{"denom":"ASSET10","index":"0.000033007938061672"},{"denom":"ASSET11","index":"0.000039542203518497"},{"denom":"ASSET12","index":"0.000037663033677183"},{"denom":"ASSET13","index":"0.000012761955703194"},{"denom":"ASSET14","index":"0.000036477735596469"},{"denom":"ASSET15","index":"0.000029621430734014"},{"denom":"ASSET16","index":"0.000016866492348924"},{"denom":"ASSET17","index":"0.000013679201469281"},{"denom":"ASSET18","index":"0.000005674980055413"},{"denom":"ASSET2","index":"0.000011479019978141"},{"denom":"ASSET3","index":"0.000003299993945721"},{"denom":"ASSET4","index":"0.000031168005602839"},{"denom":"ASSET5","index":"0.000002591256629781"},{"denom":"ASSET6","index":"0.000010577778432935"},{"denom":"ASSET7","index":"0.000016339516062244"},{"denom":"ASSET8","index":"0.000023551119471754"},{"denom":"ASSET9","index":"0.000009438533878947"}],"last_reward_claim_height":"186"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","denom":"ASSET17","shares":"579015996.993777232200159756","reward_history":[{"denom":"ASSET0","index":"0.000003063170165442"},{"denom":"ASSET1","index":"0.000025996358951928"},{"denom":"ASSET10","index":"0.000020799618544072"},{"denom":"ASSET11","index":"0.000025846936295403"},{"denom":"ASSET12","index":"0.000024670295822131"},{"denom":"ASSET13","index":"0.000008120644896033"},{"denom":"ASSET14","index":"0.000023715222729701"},{"denom":"ASSET15","index":"0.000018725986369791"},{"denom":"ASSET16","index":"0.000011529047312284"},{"denom":"ASSET17","index":"0.000009065966880203"},{"denom":"ASSET18","index":"0.000003737409049681"},{"denom":"ASSET2","index":"0.000007876841198043"},{"denom":"ASSET3","index":"0.000002185992003768"},{"denom":"ASSET4","index":"0.000021074917159843"},{"denom":"ASSET5","index":"0.000001702800306431"},{"denom":"ASSET6","index":"0.000006871093729972"},{"denom":"ASSET7","index":"0.000010798830402478"},{"denom":"ASSET8","index":"0.000014762015379742"},{"denom":"ASSET9","index":"0.000006264517424621"}],"last_reward_claim_height":"143"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET1","shares":"36908096.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003051401969864"},{"denom":"ASSET1","index":"0.000025903543471827"},{"denom":"ASSET10","index":"0.000020717104247015"},{"denom":"ASSET11","index":"0.000025751820078700"},{"denom":"ASSET12","index":"0.000024575704795191"},{"denom":"ASSET13","index":"0.000008089460542782"},{"denom":"ASSET14","index":"0.000023629519286555"},{"denom":"ASSET15","index":"0.000018652475785738"},{"denom":"ASSET16","index":"0.000011487598582804"},{"denom":"ASSET17","index":"0.000009031027466449"},{"denom":"ASSET18","index":"0.000003724432134289"},{"denom":"ASSET2","index":"0.000007847588407204"},{"denom":"ASSET3","index":"0.000002177732310384"},{"denom":"ASSET4","index":"0.000021000151540181"},{"denom":"ASSET5","index":"0.000001696165098739"},{"denom":"ASSET6","index":"0.000006846477479182"},{"denom":"ASSET7","index":"0.000010760324594985"},{"denom":"ASSET8","index":"0.000014706911787677"},{"denom":"ASSET9","index":"0.000006241583848480"}],"last_reward_claim_height":"150"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","denom":"ASSET3","shares":"153089206.000000000000000000","reward_history":[],"last_reward_claim_height":"17"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET1","shares":"973424430.999998873747933333","reward_history":[{"denom":"ASSET0","index":"0.000002834261839987"},{"denom":"ASSET1","index":"0.000024063735726127"},{"denom":"ASSET10","index":"0.000019278012414561"},{"denom":"ASSET11","index":"0.000023930766794440"},{"denom":"ASSET12","index":"0.000022855511266190"},{"denom":"ASSET13","index":"0.000007519422832827"},{"denom":"ASSET14","index":"0.000021953268691937"},{"denom":"ASSET15","index":"0.000017352048046781"},{"denom":"ASSET16","index":"0.000010669562284438"},{"denom":"ASSET17","index":"0.000008398158415340"},{"denom":"ASSET18","index":"0.000003456710779118"},{"denom":"ASSET2","index":"0.000007292324829772"},{"denom":"ASSET3","index":"0.000002022818722752"},{"denom":"ASSET4","index":"0.000019507505991506"},{"denom":"ASSET5","index":"0.000001575196067099"},{"denom":"ASSET6","index":"0.000006357416996111"},{"denom":"ASSET7","index":"0.000009994574317511"},{"denom":"ASSET8","index":"0.000013669954492341"},{"denom":"ASSET9","index":"0.000005799591528398"}],"last_reward_claim_height":"180"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET2","shares":"541842911.654891286159764317","reward_history":[{"denom":"ASSET0","index":"0.000002834261839987"},{"denom":"ASSET1","index":"0.000024063735726127"},{"denom":"ASSET10","index":"0.000019278012414561"},{"denom":"ASSET11","index":"0.000023930766794440"},{"denom":"ASSET12","index":"0.000022855511266190"},{"denom":"ASSET13","index":"0.000007519422832827"},{"denom":"ASSET14","index":"0.000021953268691937"},{"denom":"ASSET15","index":"0.000017352048046781"},{"denom":"ASSET16","index":"0.000010669562284438"},{"denom":"ASSET17","index":"0.000008398158415340"},{"denom":"ASSET18","index":"0.000003456710779118"},{"denom":"ASSET2","index":"0.000007292324829772"},{"denom":"ASSET3","index":"0.000002022818722752"},{"denom":"ASSET4","index":"0.000019507505991506"},{"denom":"ASSET5","index":"0.000001575196067099"},{"denom":"ASSET6","index":"0.000006357416996111"},{"denom":"ASSET7","index":"0.000009994574317511"},{"denom":"ASSET8","index":"0.000013669954492341"},{"denom":"ASSET9","index":"0.000005799591528398"}],"last_reward_claim_height":"178"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","denom":"ASSET3","shares":"515627388.483121383610072000","reward_history":[{"denom":"ASSET0","index":"0.000001392192847149"},{"denom":"ASSET1","index":"0.000011611450847386"},{"denom":"ASSET10","index":"0.000008088781067478"},{"denom":"ASSET11","index":"0.000011231761889073"},{"denom":"ASSET12","index":"0.000010115195100551"},{"denom":"ASSET13","index":"0.000003480482117873"},{"denom":"ASSET14","index":"0.000010492071548062"},{"denom":"ASSET15","index":"0.000007502372565194"},{"denom":"ASSET16","index":"0.000005229863836918"},{"denom":"ASSET17","index":"0.000003713920514466"},{"denom":"ASSET18","index":"0.000001769069294661"},{"denom":"ASSET2","index":"0.000003427044412629"},{"denom":"ASSET3","index":"0.000001002660101028"},{"denom":"ASSET4","index":"0.000009435973741790"},{"denom":"ASSET5","index":"0.000000777659236842"},{"denom":"ASSET6","index":"0.000003166887163415"},{"denom":"ASSET7","index":"0.000004850174878604"},{"denom":"ASSET8","index":"0.000006329555560626"},{"denom":"ASSET9","index":"0.000002733760499857"}],"last_reward_claim_height":"117"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET3","shares":"950171161.182588424403983416","reward_history":[{"denom":"ASSET0","index":"0.000004337315119138"},{"denom":"ASSET1","index":"0.000035468571019224"},{"denom":"ASSET10","index":"0.000030552751056515"},{"denom":"ASSET11","index":"0.000036815077060637"},{"denom":"ASSET12","index":"0.000034956975830368"},{"denom":"ASSET13","index":"0.000011870162962221"},{"denom":"ASSET14","index":"0.000033994549085763"},{"denom":"ASSET15","index":"0.000027455878855398"},{"denom":"ASSET16","index":"0.000015748959216247"},{"denom":"ASSET17","index":"0.000012695542149256"},{"denom":"ASSET18","index":"0.000005308581181597"},{"denom":"ASSET2","index":"0.000010691602612406"},{"denom":"ASSET3","index":"0.000003079715845784"},{"denom":"ASSET4","index":"0.000029077180580809"},{"denom":"ASSET5","index":"0.000002418471887744"},{"denom":"ASSET6","index":"0.000009880076714645"},{"denom":"ASSET7","index":"0.000015241504886080"},{"denom":"ASSET8","index":"0.000021904372501613"},{"denom":"ASSET9","index":"0.000008789613782008"}],"last_reward_claim_height":"200"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET9","shares":"404076652.440646479640527258","reward_history":[{"denom":"ASSET0","index":"0.000002875427361068"},{"denom":"ASSET1","index":"0.000024372739255487"},{"denom":"ASSET10","index":"0.000019284464921318"},{"denom":"ASSET11","index":"0.000024174413552556"},{"denom":"ASSET12","index":"0.000022964657814992"},{"denom":"ASSET13","index":"0.000007586106071195"},{"denom":"ASSET14","index":"0.000022214775035212"},{"denom":"ASSET15","index":"0.000017399266119679"},{"denom":"ASSET16","index":"0.000010822432031544"},{"denom":"ASSET17","index":"0.000008437405253940"},{"denom":"ASSET18","index":"0.000003520101477575"},{"denom":"ASSET2","index":"0.000007366931162610"},{"denom":"ASSET3","index":"0.000002051556015935"},{"denom":"ASSET4","index":"0.000019761188522524"},{"denom":"ASSET5","index":"0.000001598363223465"},{"denom":"ASSET6","index":"0.000006458982880806"},{"denom":"ASSET7","index":"0.000010127316932433"},{"denom":"ASSET8","index":"0.000013792105044122"},{"denom":"ASSET9","index":"0.000005859963066840"}],"last_reward_claim_height":"153"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","denom":"ASSET12","shares":"17352871.407904089992947588","reward_history":[{"denom":"ASSET0","index":"0.000002875427361068"},{"denom":"ASSET1","index":"0.000024372739255487"},{"denom":"ASSET10","index":"0.000019284464921318"},{"denom":"ASSET11","index":"0.000024174413552556"},{"denom":"ASSET12","index":"0.000022964657814992"},{"denom":"ASSET13","index":"0.000007586106071195"},{"denom":"ASSET14","index":"0.000022214775035212"},{"denom":"ASSET15","index":"0.000017399266119679"},{"denom":"ASSET16","index":"0.000010822432031544"},{"denom":"ASSET17","index":"0.000008437405253940"},{"denom":"ASSET18","index":"0.000003520101477575"},{"denom":"ASSET2","index":"0.000007366931162610"},{"denom":"ASSET3","index":"0.000002051556015935"},{"denom":"ASSET4","index":"0.000019761188522524"},{"denom":"ASSET5","index":"0.000001598363223465"},{"denom":"ASSET6","index":"0.000006458982880806"},{"denom":"ASSET7","index":"0.000010127316932433"},{"denom":"ASSET8","index":"0.000013792105044122"},{"denom":"ASSET9","index":"0.000005859963066840"}],"last_reward_claim_height":"169"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET1","shares":"549706021.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004542168220425"},{"denom":"ASSET1","index":"0.000037175229845512"},{"denom":"ASSET10","index":"0.000032304674241554"},{"denom":"ASSET11","index":"0.000038672632069936"},{"denom":"ASSET12","index":"0.000036851023395808"},{"denom":"ASSET13","index":"0.000012481885513000"},{"denom":"ASSET14","index":"0.000035670802057849"},{"denom":"ASSET15","index":"0.000028984900879802"},{"denom":"ASSET16","index":"0.000016490847360466"},{"denom":"ASSET17","index":"0.000013382977851414"},{"denom":"ASSET18","index":"0.000005546749439604"},{"denom":"ASSET2","index":"0.000011227253751433"},{"denom":"ASSET3","index":"0.000003225304980636"},{"denom":"ASSET4","index":"0.000030476161145262"},{"denom":"ASSET5","index":"0.000002532159498537"},{"denom":"ASSET6","index":"0.000010340381443978"},{"denom":"ASSET7","index":"0.000015976599284168"},{"denom":"ASSET8","index":"0.000023032940664540"},{"denom":"ASSET9","index":"0.000009228940537517"}],"last_reward_claim_height":"194"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET6","shares":"201475253.000000009582296964","reward_history":[],"last_reward_claim_height":"56"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","denom":"ASSET16","shares":"195117004.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001468329025254"},{"denom":"ASSET1","index":"0.000012248466172689"},{"denom":"ASSET10","index":"0.000008533242661533"},{"denom":"ASSET11","index":"0.000011849890220686"},{"denom":"ASSET12","index":"0.000010670683647662"},{"denom":"ASSET13","index":"0.000003671855143322"},{"denom":"ASSET14","index":"0.000011069259599665"},{"denom":"ASSET15","index":"0.000007913694549611"},{"denom":"ASSET16","index":"0.000005518108516848"},{"denom":"ASSET17","index":"0.000003917609227717"},{"denom":"ASSET18","index":"0.000001866904977257"},{"denom":"ASSET2","index":"0.000003616095813249"},{"denom":"ASSET3","index":"0.000001057362111013"},{"denom":"ASSET4","index":"0.000009954072998206"},{"denom":"ASSET5","index":"0.000000819868668110"},{"denom":"ASSET6","index":"0.000003341429483630"},{"denom":"ASSET7","index":"0.000005117467404472"},{"denom":"ASSET8","index":"0.000006676663486141"},{"denom":"ASSET9","index":"0.000002882963880808"}],"last_reward_claim_height":"82"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET4","shares":"245731504.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002967027008461"},{"denom":"ASSET1","index":"0.000025180120058697"},{"denom":"ASSET10","index":"0.000020126919929476"},{"denom":"ASSET11","index":"0.000025029678796477"},{"denom":"ASSET12","index":"0.000023880507059092"},{"denom":"ASSET13","index":"0.000007862872062626"},{"denom":"ASSET14","index":"0.000022968832134984"},{"denom":"ASSET15","index":"0.000018123195207046"},{"denom":"ASSET16","index":"0.000011168095360491"},{"denom":"ASSET17","index":"0.000008775186029853"},{"denom":"ASSET18","index":"0.000003621217117579"},{"denom":"ASSET2","index":"0.000007627534970337"},{"denom":"ASSET3","index":"0.000002117298518473"},{"denom":"ASSET4","index":"0.000020413769751333"},{"denom":"ASSET5","index":"0.000001649183760435"},{"denom":"ASSET6","index":"0.000006656038319196"},{"denom":"ASSET7","index":"0.000010459966878994"},{"denom":"ASSET8","index":"0.000014293861494285"},{"denom":"ASSET9","index":"0.000006066597621916"}],"last_reward_claim_height":"135"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","denom":"ASSET12","shares":"1712814491.066055197297340698","reward_history":[{"denom":"ASSET0","index":"0.000004570705498703"},{"denom":"ASSET1","index":"0.000037351903122491"},{"denom":"ASSET10","index":"0.000032488228633026"},{"denom":"ASSET11","index":"0.000038896486241790"},{"denom":"ASSET12","index":"0.000037036137764840"},{"denom":"ASSET13","index":"0.000012562287865708"},{"denom":"ASSET14","index":"0.000035891200514879"},{"denom":"ASSET15","index":"0.000029155090889424"},{"denom":"ASSET16","index":"0.000016572309636415"},{"denom":"ASSET17","index":"0.000013446355223163"},{"denom":"ASSET18","index":"0.000005582989725245"},{"denom":"ASSET2","index":"0.000011274764559437"},{"denom":"ASSET3","index":"0.000003245112752165"},{"denom":"ASSET4","index":"0.000030633347607545"},{"denom":"ASSET5","index":"0.000002548747163555"},{"denom":"ASSET6","index":"0.000010409192694939"},{"denom":"ASSET7","index":"0.000016070108051960"},{"denom":"ASSET8","index":"0.000023193138138929"},{"denom":"ASSET9","index":"0.000009280332869123"}],"last_reward_claim_height":"199"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","denom":"ASSET15","shares":"740939092.583345887482771751","reward_history":[{"denom":"ASSET0","index":"0.000002968383248598"},{"denom":"ASSET1","index":"0.000025185581850199"},{"denom":"ASSET10","index":"0.000020091193699906"},{"denom":"ASSET11","index":"0.000025026167595767"},{"denom":"ASSET12","index":"0.000023854952987524"},{"denom":"ASSET13","index":"0.000007859725566891"},{"denom":"ASSET14","index":"0.000022971118914045"},{"denom":"ASSET15","index":"0.000018098517255117"},{"denom":"ASSET16","index":"0.000011173004258039"},{"denom":"ASSET17","index":"0.000008766603022733"},{"denom":"ASSET18","index":"0.000003624559740525"},{"denom":"ASSET2","index":"0.000007626317523237"},{"denom":"ASSET3","index":"0.000002117313008939"},{"denom":"ASSET4","index":"0.000020418576076670"},{"denom":"ASSET5","index":"0.000001649450966157"},{"denom":"ASSET6","index":"0.000006660362585584"},{"denom":"ASSET7","index":"0.000010463779822658"},{"denom":"ASSET8","index":"0.000014287735496216"},{"denom":"ASSET9","index":"0.000006065360072421"}],"last_reward_claim_height":"158"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET4","shares":"115162996.000000000000000000","reward_history":[],"last_reward_claim_height":"16"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET5","shares":"382386060.000000001911930300","reward_history":[],"last_reward_claim_height":"59"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET7","shares":"496715999.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003259379166935"},{"denom":"ASSET1","index":"0.000027669546155668"},{"denom":"ASSET10","index":"0.000022163157427920"},{"denom":"ASSET11","index":"0.000027516665793422"},{"denom":"ASSET12","index":"0.000026276569409586"},{"denom":"ASSET13","index":"0.000008645229164029"},{"denom":"ASSET14","index":"0.000025243382728696"},{"denom":"ASSET15","index":"0.000019947981783747"},{"denom":"ASSET16","index":"0.000012268920188963"},{"denom":"ASSET17","index":"0.000009656339783182"},{"denom":"ASSET18","index":"0.000003975233530089"},{"denom":"ASSET2","index":"0.000008385350610200"},{"denom":"ASSET3","index":"0.000002325230588439"},{"denom":"ASSET4","index":"0.000022430515898086"},{"denom":"ASSET5","index":"0.000001812256369527"},{"denom":"ASSET6","index":"0.000007311001085881"},{"denom":"ASSET7","index":"0.000011492885803011"},{"denom":"ASSET8","index":"0.000015716897251793"},{"denom":"ASSET9","index":"0.000006668589151432"}],"last_reward_claim_height":"160"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","denom":"ASSET16","shares":"125234791.000000000000000000","reward_history":[],"last_reward_claim_height":"7"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET8","shares":"615349666.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001669758803356"},{"denom":"ASSET1","index":"0.000013919924903508"},{"denom":"ASSET10","index":"0.000009698114015232"},{"denom":"ASSET11","index":"0.000013466332119255"},{"denom":"ASSET12","index":"0.000012126099781115"},{"denom":"ASSET13","index":"0.000004173211661392"},{"denom":"ASSET14","index":"0.000012579297449702"},{"denom":"ASSET15","index":"0.000008994017898909"},{"denom":"ASSET16","index":"0.000006270880730729"},{"denom":"ASSET17","index":"0.000004453348668392"},{"denom":"ASSET18","index":"0.000002121376009280"},{"denom":"ASSET2","index":"0.000004109202923545"},{"denom":"ASSET3","index":"0.000001201941855137"},{"denom":"ASSET4","index":"0.000011312556625386"},{"denom":"ASSET5","index":"0.000000932868086778"},{"denom":"ASSET6","index":"0.000003797061547622"},{"denom":"ASSET7","index":"0.000005815312368147"},{"denom":"ASSET8","index":"0.000007588591475923"},{"denom":"ASSET9","index":"0.000003277484447193"}],"last_reward_claim_height":"70"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET10","shares":"945933254.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003314119794923"},{"denom":"ASSET1","index":"0.000028119315186385"},{"denom":"ASSET10","index":"0.000022456877991933"},{"denom":"ASSET11","index":"0.000027947185249485"},{"denom":"ASSET12","index":"0.000026653541530161"},{"denom":"ASSET13","index":"0.000008778725953540"},{"denom":"ASSET14","index":"0.000025648491290636"},{"denom":"ASSET15","index":"0.000020225495910600"},{"denom":"ASSET16","index":"0.000012473684612014"},{"denom":"ASSET17","index":"0.000009794866581105"},{"denom":"ASSET18","index":"0.000004045992889163"},{"denom":"ASSET2","index":"0.000008517017325485"},{"denom":"ASSET3","index":"0.000002365208974685"},{"denom":"ASSET4","index":"0.000022797013251164"},{"denom":"ASSET5","index":"0.000001842432416817"},{"denom":"ASSET6","index":"0.000007435560259585"},{"denom":"ASSET7","index":"0.000011681616070006"},{"denom":"ASSET8","index":"0.000015958852395270"},{"denom":"ASSET9","index":"0.000006773561992828"}],"last_reward_claim_height":"179"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET13","shares":"1117569044.135602209891241550","reward_history":[{"denom":"ASSET0","index":"0.000004957951068368"},{"denom":"ASSET1","index":"0.000040595109338701"},{"denom":"ASSET10","index":"0.000035126657560304"},{"denom":"ASSET11","index":"0.000042160091199159"},{"denom":"ASSET12","index":"0.000040137526814401"},{"denom":"ASSET13","index":"0.000013595617987355"},{"denom":"ASSET14","index":"0.000038893564212609"},{"denom":"ASSET15","index":"0.000031532808724594"},{"denom":"ASSET16","index":"0.000018012834416697"},{"denom":"ASSET17","index":"0.000014582632247249"},{"denom":"ASSET18","index":"0.000006056854468943"},{"denom":"ASSET2","index":"0.000012255281913400"},{"denom":"ASSET3","index":"0.000003521316365957"},{"denom":"ASSET4","index":"0.000033271654612923"},{"denom":"ASSET5","index":"0.000002764577024642"},{"denom":"ASSET6","index":"0.000011282334844705"},{"denom":"ASSET7","index":"0.000017431884448199"},{"denom":"ASSET8","index":"0.000025080164686627"},{"denom":"ASSET9","index":"0.000010067506697452"}],"last_reward_claim_height":"193"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","denom":"ASSET14","shares":"330858563.947043427743579082","reward_history":[{"denom":"ASSET0","index":"0.000001669758803356"},{"denom":"ASSET1","index":"0.000013919924903508"},{"denom":"ASSET10","index":"0.000009698114015232"},{"denom":"ASSET11","index":"0.000013466332119255"},{"denom":"ASSET12","index":"0.000012126099781115"},{"denom":"ASSET13","index":"0.000004173211661392"},{"denom":"ASSET14","index":"0.000012579297449702"},{"denom":"ASSET15","index":"0.000008994017898909"},{"denom":"ASSET16","index":"0.000006270880730729"},{"denom":"ASSET17","index":"0.000004453348668392"},{"denom":"ASSET18","index":"0.000002121376009280"},{"denom":"ASSET2","index":"0.000004109202923545"},{"denom":"ASSET3","index":"0.000001201941855137"},{"denom":"ASSET4","index":"0.000011312556625386"},{"denom":"ASSET5","index":"0.000000932868086778"},{"denom":"ASSET6","index":"0.000003797061547622"},{"denom":"ASSET7","index":"0.000005815312368147"},{"denom":"ASSET8","index":"0.000007588591475923"},{"denom":"ASSET9","index":"0.000003277484447193"}],"last_reward_claim_height":"114"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET3","shares":"802560960.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002933404194828"},{"denom":"ASSET1","index":"0.000024932632498194"},{"denom":"ASSET10","index":"0.000020157113753706"},{"denom":"ASSET11","index":"0.000024842878528839"},{"denom":"ASSET12","index":"0.000023817726072485"},{"denom":"ASSET13","index":"0.000007813243799971"},{"denom":"ASSET14","index":"0.000022761898108549"},{"denom":"ASSET15","index":"0.000018109267957138"},{"denom":"ASSET16","index":"0.000011043189892304"},{"denom":"ASSET17","index":"0.000008753164046701"},{"denom":"ASSET18","index":"0.000003567063844603"},{"denom":"ASSET2","index":"0.000007569762146700"},{"denom":"ASSET3","index":"0.000002091389836038"},{"denom":"ASSET4","index":"0.000020208488830330"},{"denom":"ASSET5","index":"0.000001630166870108"},{"denom":"ASSET6","index":"0.000006572642272968"},{"denom":"ASSET7","index":"0.000010351822041320"},{"denom":"ASSET8","index":"0.000014203644477234"},{"denom":"ASSET9","index":"0.000006019030096188"}],"last_reward_claim_height":"167"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET11","shares":"529827200.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001334597814253"},{"denom":"ASSET1","index":"0.000011126876577448"},{"denom":"ASSET10","index":"0.000007751884027943"},{"denom":"ASSET11","index":"0.000010763759508328"},{"denom":"ASSET12","index":"0.000009692944381721"},{"denom":"ASSET13","index":"0.000003335543967388"},{"denom":"ASSET14","index":"0.000010055110882597"},{"denom":"ASSET15","index":"0.000007189147627631"},{"denom":"ASSET16","index":"0.000005012346349398"},{"denom":"ASSET17","index":"0.000003559878072918"},{"denom":"ASSET18","index":"0.000001695813746885"},{"denom":"ASSET2","index":"0.000003284213282225"},{"denom":"ASSET3","index":"0.000000960549210329"},{"denom":"ASSET4","index":"0.000009042280418860"},{"denom":"ASSET5","index":"0.000000745720787237"},{"denom":"ASSET6","index":"0.000003035164402357"},{"denom":"ASSET7","index":"0.000004648278712034"},{"denom":"ASSET8","index":"0.000006065575963495"},{"denom":"ASSET9","index":"0.000002619766079830"}],"last_reward_claim_height":"68"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET13","shares":"658573674.694241631949119188","reward_history":[{"denom":"ASSET0","index":"0.000004555136197767"},{"denom":"ASSET1","index":"0.000037240722570861"},{"denom":"ASSET10","index":"0.000032656570809308"},{"denom":"ASSET11","index":"0.000038864800037776"},{"denom":"ASSET12","index":"0.000037120446581994"},{"denom":"ASSET13","index":"0.000012565270457927"},{"denom":"ASSET14","index":"0.000035828939643615"},{"denom":"ASSET15","index":"0.000029264594603660"},{"denom":"ASSET16","index":"0.000016507901080348"},{"denom":"ASSET17","index":"0.000013476518239563"},{"denom":"ASSET18","index":"0.000005550894327170"},{"denom":"ASSET2","index":"0.000011257866577172"},{"denom":"ASSET3","index":"0.000003231771970438"},{"denom":"ASSET4","index":"0.000030542305908795"},{"denom":"ASSET5","index":"0.000002539865989892"},{"denom":"ASSET6","index":"0.000010367834016251"},{"denom":"ASSET7","index":"0.000016024625816937"},{"denom":"ASSET8","index":"0.000023202454203695"},{"denom":"ASSET9","index":"0.000009268576140116"}],"last_reward_claim_height":"189"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","denom":"ASSET16","shares":"56257591.000000000000000000","reward_history":[],"last_reward_claim_height":"10"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET2","shares":"978278650.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001655550281073"},{"denom":"ASSET1","index":"0.000013803766186213"},{"denom":"ASSET10","index":"0.000009616885369480"},{"denom":"ASSET11","index":"0.000013353770421464"},{"denom":"ASSET12","index":"0.000012024654915933"},{"denom":"ASSET13","index":"0.000004138458266908"},{"denom":"ASSET14","index":"0.000012474650680682"},{"denom":"ASSET15","index":"0.000008918932754767"},{"denom":"ASSET16","index":"0.000006218123294721"},{"denom":"ASSET17","index":"0.000004415635621077"},{"denom":"ASSET18","index":"0.000002103876302725"},{"denom":"ASSET2","index":"0.000004075008029207"},{"denom":"ASSET3","index":"0.000001191361699996"},{"denom":"ASSET4","index":"0.000011218168999888"},{"denom":"ASSET5","index":"0.000000925037675960"},{"denom":"ASSET6","index":"0.000003765270684639"},{"denom":"ASSET7","index":"0.000005766457786874"},{"denom":"ASSET8","index":"0.000007524697268437"},{"denom":"ASSET9","index":"0.000003250154939091"}],"last_reward_claim_height":"100"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET4","shares":"340585963.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004823716104736"},{"denom":"ASSET1","index":"0.000039480365070270"},{"denom":"ASSET10","index":"0.000034116928375488"},{"denom":"ASSET11","index":"0.000040997532955099"},{"denom":"ASSET12","index":"0.000038999162148649"},{"denom":"ASSET13","index":"0.000013220337329072"},{"denom":"ASSET14","index":"0.000037831952094564"},{"denom":"ASSET15","index":"0.000030637104167684"},{"denom":"ASSET16","index":"0.000017521720108905"},{"denom":"ASSET17","index":"0.000014166831814341"},{"denom":"ASSET18","index":"0.000005896825051000"},{"denom":"ASSET2","index":"0.000011913795848039"},{"denom":"ASSET3","index":"0.000003425665491719"},{"denom":"ASSET4","index":"0.000032361073374938"},{"denom":"ASSET5","index":"0.000002690020746157"},{"denom":"ASSET6","index":"0.000010980480809306"},{"denom":"ASSET7","index":"0.000016957489547178"},{"denom":"ASSET8","index":"0.000024390016426130"},{"denom":"ASSET9","index":"0.000009789394935097"}],"last_reward_claim_height":"188"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET6","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"47"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","denom":"ASSET10","shares":"139333706.619564837444394226","reward_history":[{"denom":"ASSET0","index":"0.000003215122291080"},{"denom":"ASSET1","index":"0.000027271082473775"},{"denom":"ASSET10","index":"0.000021717714787675"},{"denom":"ASSET11","index":"0.000027088129911249"},{"denom":"ASSET12","index":"0.000025803190697535"},{"denom":"ASSET13","index":"0.000008506451165719"},{"denom":"ASSET14","index":"0.000024869823256717"},{"denom":"ASSET15","index":"0.000019571375436743"},{"denom":"ASSET16","index":"0.000012101015548893"},{"denom":"ASSET17","index":"0.000009481514658039"},{"denom":"ASSET18","index":"0.000003929002426467"},{"denom":"ASSET2","index":"0.000008255375778501"},{"denom":"ASSET3","index":"0.000002294279906946"},{"denom":"ASSET4","index":"0.000022110354928469"},{"denom":"ASSET5","index":"0.000001787716273475"},{"denom":"ASSET6","index":"0.000007215985074700"},{"denom":"ASSET7","index":"0.000011330188741735"},{"denom":"ASSET8","index":"0.000015463524362026"},{"denom":"ASSET9","index":"0.000006565858639552"}],"last_reward_claim_height":"135"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET8","shares":"491895906.730108435644240944","reward_history":[{"denom":"ASSET0","index":"0.000001649724724935"},{"denom":"ASSET1","index":"0.000013753740147655"},{"denom":"ASSET10","index":"0.000009582563441278"},{"denom":"ASSET11","index":"0.000013305204895691"},{"denom":"ASSET12","index":"0.000011981321923304"},{"denom":"ASSET13","index":"0.000004123306127916"},{"denom":"ASSET14","index":"0.000012429052627730"},{"denom":"ASSET15","index":"0.000008886629821639"},{"denom":"ASSET16","index":"0.000006195820583626"},{"denom":"ASSET17","index":"0.000004400070480698"},{"denom":"ASSET18","index":"0.000002096248608056"},{"denom":"ASSET2","index":"0.000004060149146250"},{"denom":"ASSET3","index":"0.000001187512164840"},{"denom":"ASSET4","index":"0.000011177176659918"},{"denom":"ASSET5","index":"0.000000921609203810"},{"denom":"ASSET6","index":"0.000003751605165751"},{"denom":"ASSET7","index":"0.000005746078510357"},{"denom":"ASSET8","index":"0.000007497578498742"},{"denom":"ASSET9","index":"0.000003238303837047"}],"last_reward_claim_height":"99"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET11","shares":"24444863.782306639350320864","reward_history":[{"denom":"ASSET0","index":"0.000003253063831874"},{"denom":"ASSET1","index":"0.000027597326034286"},{"denom":"ASSET10","index":"0.000022021617243178"},{"denom":"ASSET11","index":"0.000027423138617092"},{"denom":"ASSET12","index":"0.000026144931484859"},{"denom":"ASSET13","index":"0.000008613299773809"},{"denom":"ASSET14","index":"0.000025170855267573"},{"denom":"ASSET15","index":"0.000019836826910831"},{"denom":"ASSET16","index":"0.000012243184702458"},{"denom":"ASSET17","index":"0.000009607701845932"},{"denom":"ASSET18","index":"0.000003972764374377"},{"denom":"ASSET2","index":"0.000008357484440725"},{"denom":"ASSET3","index":"0.000002321502734814"},{"denom":"ASSET4","index":"0.000022373906168402"},{"denom":"ASSET5","index":"0.000001808481766797"},{"denom":"ASSET6","index":"0.000007298802623853"},{"denom":"ASSET7","index":"0.000011465220726545"},{"denom":"ASSET8","index":"0.000015658035812384"},{"denom":"ASSET9","index":"0.000006646717011605"}],"last_reward_claim_height":"124"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","denom":"ASSET15","shares":"1000062599.594424256000000000","reward_history":[{"denom":"ASSET0","index":"0.000003253063831874"},{"denom":"ASSET1","index":"0.000027597326034286"},{"denom":"ASSET10","index":"0.000022021617243178"},{"denom":"ASSET11","index":"0.000027423138617092"},{"denom":"ASSET12","index":"0.000026144931484859"},{"denom":"ASSET13","index":"0.000008613299773809"},{"denom":"ASSET14","index":"0.000025170855267573"},{"denom":"ASSET15","index":"0.000019836826910831"},{"denom":"ASSET16","index":"0.000012243184702458"},{"denom":"ASSET17","index":"0.000009607701845932"},{"denom":"ASSET18","index":"0.000003972764374377"},{"denom":"ASSET2","index":"0.000008357484440725"},{"denom":"ASSET3","index":"0.000002321502734814"},{"denom":"ASSET4","index":"0.000022373906168402"},{"denom":"ASSET5","index":"0.000001808481766797"},{"denom":"ASSET6","index":"0.000007298802623853"},{"denom":"ASSET7","index":"0.000011465220726545"},{"denom":"ASSET8","index":"0.000015658035812384"},{"denom":"ASSET9","index":"0.000006646717011605"}],"last_reward_claim_height":"131"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","denom":"ASSET16","shares":"32792721.534712843676020839","reward_history":[{"denom":"ASSET0","index":"0.000001698975992122"},{"denom":"ASSET1","index":"0.000014167905922226"},{"denom":"ASSET10","index":"0.000009870625403756"},{"denom":"ASSET11","index":"0.000013705415046027"},{"denom":"ASSET12","index":"0.000012342129737421"},{"denom":"ASSET13","index":"0.000004247439980305"},{"denom":"ASSET14","index":"0.000012803154715439"},{"denom":"ASSET15","index":"0.000009153801193103"},{"denom":"ASSET16","index":"0.000006381787732272"},{"denom":"ASSET17","index":"0.000004532557176567"},{"denom":"ASSET18","index":"0.000002159268021049"},{"denom":"ASSET2","index":"0.000004182207511237"},{"denom":"ASSET3","index":"0.000001223292032291"},{"denom":"ASSET4","index":"0.000011513897264989"},{"denom":"ASSET5","index":"0.000000949169072389"},{"denom":"ASSET6","index":"0.000003864840554987"},{"denom":"ASSET7","index":"0.000005918563906982"},{"denom":"ASSET8","index":"0.000007723084568158"},{"denom":"ASSET9","index":"0.000003335651311539"}],"last_reward_claim_height":"82"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET3","shares":"407775087.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003029367235848"},{"denom":"ASSET1","index":"0.000025709657584098"},{"denom":"ASSET10","index":"0.000020551027857005"},{"denom":"ASSET11","index":"0.000025556791271547"},{"denom":"ASSET12","index":"0.000024383546484064"},{"denom":"ASSET13","index":"0.000008028643187417"},{"denom":"ASSET14","index":"0.000023452409013233"},{"denom":"ASSET15","index":"0.000018505869963369"},{"denom":"ASSET16","index":"0.000011403028825829"},{"denom":"ASSET17","index":"0.000008960765854271"},{"denom":"ASSET18","index":"0.000003697390743305"},{"denom":"ASSET2","index":"0.000007788410102575"},{"denom":"ASSET3","index":"0.000002162278160249"},{"denom":"ASSET4","index":"0.000020843149904241"},{"denom":"ASSET5","index":"0.000001683795445220"},{"denom":"ASSET6","index":"0.000006796548728457"},{"denom":"ASSET7","index":"0.000010680301627557"},{"denom":"ASSET8","index":"0.000014594997949332"},{"denom":"ASSET9","index":"0.000006193949682941"}],"last_reward_claim_height":"125"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET11","shares":"528100069.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001515088644413"},{"denom":"ASSET1","index":"0.000012634136557163"},{"denom":"ASSET10","index":"0.000008802109028204"},{"denom":"ASSET11","index":"0.000012222352143486"},{"denom":"ASSET12","index":"0.000011006111259210"},{"denom":"ASSET13","index":"0.000003787721611031"},{"denom":"ASSET14","index":"0.000011417895672887"},{"denom":"ASSET15","index":"0.000008163582563959"},{"denom":"ASSET16","index":"0.000005691138594924"},{"denom":"ASSET17","index":"0.000004042263453241"},{"denom":"ASSET18","index":"0.000001925135571111"},{"denom":"ASSET2","index":"0.000003729515797284"},{"denom":"ASSET3","index":"0.000001091141821893"},{"denom":"ASSET4","index":"0.000010267679293757"},{"denom":"ASSET5","index":"0.000000846156158061"},{"denom":"ASSET6","index":"0.000003446305419945"},{"denom":"ASSET7","index":"0.000005278485437758"},{"denom":"ASSET8","index":"0.000006887398378958"},{"denom":"ASSET9","index":"0.000002974577705544"}],"last_reward_claim_height":"95"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET15","shares":"30536232.000000000000000000","reward_history":[],"last_reward_claim_height":"41"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","denom":"ASSET17","shares":"81037799.000000000000000000","reward_history":[],"last_reward_claim_height":"53"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET8","shares":"868378282.000000059049723176","reward_history":[{"denom":"ASSET0","index":"0.000001650481631660"},{"denom":"ASSET1","index":"0.000013760556046882"},{"denom":"ASSET10","index":"0.000009587067899364"},{"denom":"ASSET11","index":"0.000013312100857594"},{"denom":"ASSET12","index":"0.000011987552175177"},{"denom":"ASSET13","index":"0.000004125311926918"},{"denom":"ASSET14","index":"0.000012435412596309"},{"denom":"ASSET15","index":"0.000008891189157367"},{"denom":"ASSET16","index":"0.000006198673717177"},{"denom":"ASSET17","index":"0.000004402473887406"},{"denom":"ASSET18","index":"0.000002097152516481"},{"denom":"ASSET2","index":"0.000004062266502429"},{"denom":"ASSET3","index":"0.000001188346774796"},{"denom":"ASSET4","index":"0.000011182830860714"},{"denom":"ASSET5","index":"0.000000921890641108"},{"denom":"ASSET6","index":"0.000003753581829697"},{"denom":"ASSET7","index":"0.000005749028991578"},{"denom":"ASSET8","index":"0.000007501810745994"},{"denom":"ASSET9","index":"0.000003239702143299"}],"last_reward_claim_height":"114"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET9","shares":"585591935.000000000000000000","reward_history":[],"last_reward_claim_height":"48"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","denom":"ASSET13","shares":"467948786.487895864827985700","reward_history":[{"denom":"ASSET0","index":"0.000004757972776933"},{"denom":"ASSET1","index":"0.000038970400118654"},{"denom":"ASSET10","index":"0.000033617836990995"},{"denom":"ASSET11","index":"0.000040428437524388"},{"denom":"ASSET12","index":"0.000038459846371488"},{"denom":"ASSET13","index":"0.000013029623770405"},{"denom":"ASSET14","index":"0.000037302820528116"},{"denom":"ASSET15","index":"0.000030190977215601"},{"denom":"ASSET16","index":"0.000017295602426422"},{"denom":"ASSET17","index":"0.000013975163103663"},{"denom":"ASSET18","index":"0.000005816089409694"},{"denom":"ASSET2","index":"0.000011760899716132"},{"denom":"ASSET3","index":"0.000003380086343079"},{"denom":"ASSET4","index":"0.000031935316700571"},{"denom":"ASSET5","index":"0.000002652933340978"},{"denom":"ASSET6","index":"0.000010827301916558"},{"denom":"ASSET7","index":"0.000016726845186415"},{"denom":"ASSET8","index":"0.000024031227508335"},{"denom":"ASSET9","index":"0.000009656515298543"}],"last_reward_claim_height":"198"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET5","shares":"350041857.000000003032746005","reward_history":[],"last_reward_claim_height":"45"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","denom":"ASSET6","shares":"328715446.685127631765701384","reward_history":[{"denom":"ASSET0","index":"0.000003075918064869"},{"denom":"ASSET1","index":"0.000026136551234120"},{"denom":"ASSET10","index":"0.000021080163895542"},{"denom":"ASSET11","index":"0.000026029570124972"},{"denom":"ASSET12","index":"0.000024929671095533"},{"denom":"ASSET13","index":"0.000008184754658215"},{"denom":"ASSET14","index":"0.000023857159923959"},{"denom":"ASSET15","index":"0.000018947606922173"},{"denom":"ASSET16","index":"0.000011579925359638"},{"denom":"ASSET17","index":"0.000009161388302193"},{"denom":"ASSET18","index":"0.000003743573486430"},{"denom":"ASSET2","index":"0.000007931762150876"},{"denom":"ASSET3","index":"0.000002193704696765"},{"denom":"ASSET4","index":"0.000021185602196482"},{"denom":"ASSET5","index":"0.000001709259314500"},{"denom":"ASSET6","index":"0.000006893942979866"},{"denom":"ASSET7","index":"0.000010853088527538"},{"denom":"ASSET8","index":"0.000014878712124324"},{"denom":"ASSET9","index":"0.000006307130542486"}],"last_reward_claim_height":"130"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET3","shares":"54407439.999999987230006440","reward_history":[{"denom":"ASSET0","index":"0.000001556917620519"},{"denom":"ASSET1","index":"0.000012983455297040"},{"denom":"ASSET10","index":"0.000009045452282177"},{"denom":"ASSET11","index":"0.000012560119972943"},{"denom":"ASSET12","index":"0.000011310507230547"},{"denom":"ASSET13","index":"0.000003892294051298"},{"denom":"ASSET14","index":"0.000011733139339821"},{"denom":"ASSET15","index":"0.000008388649636483"},{"denom":"ASSET16","index":"0.000005848637691896"},{"denom":"ASSET17","index":"0.000004153889965857"},{"denom":"ASSET18","index":"0.000001978846514969"},{"denom":"ASSET2","index":"0.000003832520791251"},{"denom":"ASSET3","index":"0.000001120924429588"},{"denom":"ASSET4","index":"0.000010551035220538"},{"denom":"ASSET5","index":"0.000000869876737390"},{"denom":"ASSET6","index":"0.000003541389854081"},{"denom":"ASSET7","index":"0.000005423895938150"},{"denom":"ASSET8","index":"0.000007077857204393"},{"denom":"ASSET9","index":"0.000003056874840288"}],"last_reward_claim_height":"119"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET4","shares":"35444680.000000000000000000","reward_history":[],"last_reward_claim_height":"23"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET6","shares":"599851473.071417364400495893","reward_history":[{"denom":"ASSET0","index":"0.000004795768020357"},{"denom":"ASSET1","index":"0.000039235640540163"},{"denom":"ASSET10","index":"0.000034090813500731"},{"denom":"ASSET11","index":"0.000040819172716073"},{"denom":"ASSET12","index":"0.000038887343100883"},{"denom":"ASSET13","index":"0.000013175362444583"},{"denom":"ASSET14","index":"0.000037654186330986"},{"denom":"ASSET15","index":"0.000030589194135662"},{"denom":"ASSET16","index":"0.000017405797263851"},{"denom":"ASSET17","index":"0.000014123771157348"},{"denom":"ASSET18","index":"0.000005856171184647"},{"denom":"ASSET2","index":"0.000011847674447736"},{"denom":"ASSET3","index":"0.000003405135950666"},{"denom":"ASSET4","index":"0.000032167283890779"},{"denom":"ASSET5","index":"0.000002674112194983"},{"denom":"ASSET6","index":"0.000010916704748385"},{"denom":"ASSET7","index":"0.000016864134756441"},{"denom":"ASSET8","index":"0.000024315764197247"},{"denom":"ASSET9","index":"0.000009742334443531"}],"last_reward_claim_height":"199"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","denom":"ASSET17","shares":"841527312.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001556917620519"},{"denom":"ASSET1","index":"0.000012983455297040"},{"denom":"ASSET10","index":"0.000009045452282177"},{"denom":"ASSET11","index":"0.000012560119972943"},{"denom":"ASSET12","index":"0.000011310507230547"},{"denom":"ASSET13","index":"0.000003892294051298"},{"denom":"ASSET14","index":"0.000011733139339821"},{"denom":"ASSET15","index":"0.000008388649636483"},{"denom":"ASSET16","index":"0.000005848637691896"},{"denom":"ASSET17","index":"0.000004153889965857"},{"denom":"ASSET18","index":"0.000001978846514969"},{"denom":"ASSET2","index":"0.000003832520791251"},{"denom":"ASSET3","index":"0.000001120924429588"},{"denom":"ASSET4","index":"0.000010551035220538"},{"denom":"ASSET5","index":"0.000000869876737390"},{"denom":"ASSET6","index":"0.000003541389854081"},{"denom":"ASSET7","index":"0.000005423895938150"},{"denom":"ASSET8","index":"0.000007077857204393"},{"denom":"ASSET9","index":"0.000003056874840288"}],"last_reward_claim_height":"78"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","denom":"ASSET10","shares":"525038438.000000000000000000","reward_history":[],"last_reward_claim_height":"51"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET4","shares":"13440660.999999989558044812","reward_history":[],"last_reward_claim_height":"62"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET10","shares":"563852650.054484730039609126","reward_history":[{"denom":"ASSET0","index":"0.000004783616016936"},{"denom":"ASSET1","index":"0.000039187135332259"},{"denom":"ASSET10","index":"0.000033918997184481"},{"denom":"ASSET11","index":"0.000040694253837014"},{"denom":"ASSET12","index":"0.000038755434645956"},{"denom":"ASSET13","index":"0.000013121054586591"},{"denom":"ASSET14","index":"0.000037536780731261"},{"denom":"ASSET15","index":"0.000030444661619132"},{"denom":"ASSET16","index":"0.000017385983268999"},{"denom":"ASSET17","index":"0.000014080472937556"},{"denom":"ASSET18","index":"0.000005842564966359"},{"denom":"ASSET2","index":"0.000011831521274442"},{"denom":"ASSET3","index":"0.000003397302785587"},{"denom":"ASSET4","index":"0.000032115463259507"},{"denom":"ASSET5","index":"0.000002667183280114"},{"denom":"ASSET6","index":"0.000010885918067386"},{"denom":"ASSET7","index":"0.000016823558426018"},{"denom":"ASSET8","index":"0.000024204162780132"},{"denom":"ASSET9","index":"0.000009717424664222"}],"last_reward_claim_height":"193"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET14","shares":"374688861.054773396845407976","reward_history":[{"denom":"ASSET0","index":"0.000001599876133405"},{"denom":"ASSET1","index":"0.000013345434681176"},{"denom":"ASSET10","index":"0.000009297530322905"},{"denom":"ASSET11","index":"0.000012909953167223"},{"denom":"ASSET12","index":"0.000011625282701060"},{"denom":"ASSET13","index":"0.000004000208763886"},{"denom":"ASSET14","index":"0.000012059727354266"},{"denom":"ASSET15","index":"0.000008622533976277"},{"denom":"ASSET16","index":"0.000006011718614052"},{"denom":"ASSET17","index":"0.000004268755697491"},{"denom":"ASSET18","index":"0.000002033283925863"},{"denom":"ASSET2","index":"0.000003939033979783"},{"denom":"ASSET3","index":"0.000001151952290481"},{"denom":"ASSET4","index":"0.000010845563418934"},{"denom":"ASSET5","index":"0.000000893773964352"},{"denom":"ASSET6","index":"0.000003640418084501"},{"denom":"ASSET7","index":"0.000005575200239351"},{"denom":"ASSET8","index":"0.000007274615004517"},{"denom":"ASSET9","index":"0.000003141688064949"}],"last_reward_claim_height":"102"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","denom":"ASSET17","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003205518103121"},{"denom":"ASSET1","index":"0.000027209804037075"},{"denom":"ASSET10","index":"0.000021755111918776"},{"denom":"ASSET11","index":"0.000027048910570117"},{"denom":"ASSET12","index":"0.000025809934262776"},{"denom":"ASSET13","index":"0.000008496852467218"},{"denom":"ASSET14","index":"0.000024820667393427"},{"denom":"ASSET15","index":"0.000019589132093549"},{"denom":"ASSET16","index":"0.000012068310128279"},{"denom":"ASSET17","index":"0.000009484236214143"},{"denom":"ASSET18","index":"0.000003912244660385"},{"denom":"ASSET2","index":"0.000008242746790311"},{"denom":"ASSET3","index":"0.000002287536756020"},{"denom":"ASSET4","index":"0.000022059248469095"},{"denom":"ASSET5","index":"0.000001781848402938"},{"denom":"ASSET6","index":"0.000007192715838846"},{"denom":"ASSET7","index":"0.000011303047666497"},{"denom":"ASSET8","index":"0.000015447099928639"},{"denom":"ASSET9","index":"0.000006555210966575"}],"last_reward_claim_height":"126"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","denom":"ASSET7","shares":"595411587.124190360844883200","reward_history":[{"denom":"ASSET0","index":"0.000003374964488748"},{"denom":"ASSET1","index":"0.000028642371697541"},{"denom":"ASSET10","index":"0.000022886358038922"},{"denom":"ASSET11","index":"0.000028469467846578"},{"denom":"ASSET12","index":"0.000027158021136678"},{"denom":"ASSET13","index":"0.000008943216545101"},{"denom":"ASSET14","index":"0.000026126056006670"},{"denom":"ASSET15","index":"0.000020609372613995"},{"denom":"ASSET16","index":"0.000012704733728960"},{"denom":"ASSET17","index":"0.000009980025667275"},{"denom":"ASSET18","index":"0.000004119620826099"},{"denom":"ASSET2","index":"0.000008675935346246"},{"denom":"ASSET3","index":"0.000002408702445844"},{"denom":"ASSET4","index":"0.000023220763838917"},{"denom":"ASSET5","index":"0.000001876440105393"},{"denom":"ASSET6","index":"0.000007572949563502"},{"denom":"ASSET7","index":"0.000011897934490553"},{"denom":"ASSET8","index":"0.000016258236310419"},{"denom":"ASSET9","index":"0.000006900426530312"}],"last_reward_claim_height":"148"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET0","shares":"189781528.000000007028482334","reward_history":[{"denom":"ASSET0","index":"0.000001608105877482"},{"denom":"ASSET1","index":"0.000013418457239972"},{"denom":"ASSET10","index":"0.000009349233819318"},{"denom":"ASSET11","index":"0.000012981594753349"},{"denom":"ASSET12","index":"0.000011689837573077"},{"denom":"ASSET13","index":"0.000004022147721664"},{"denom":"ASSET14","index":"0.000012126700059700"},{"denom":"ASSET15","index":"0.000008669460725910"},{"denom":"ASSET16","index":"0.000006044519750254"},{"denom":"ASSET17","index":"0.000004293303747844"},{"denom":"ASSET18","index":"0.000002044968364105"},{"denom":"ASSET2","index":"0.000003960007798998"},{"denom":"ASSET3","index":"0.000001158062195142"},{"denom":"ASSET4","index":"0.000010904614913932"},{"denom":"ASSET5","index":"0.000000898204336720"},{"denom":"ASSET6","index":"0.000003660606353425"},{"denom":"ASSET7","index":"0.000005605774235672"},{"denom":"ASSET8","index":"0.000007313680595011"},{"denom":"ASSET9","index":"0.000003159720916176"}],"last_reward_claim_height":"107"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET9","shares":"206570556.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003138779820137"},{"denom":"ASSET1","index":"0.000026638851971456"},{"denom":"ASSET10","index":"0.000021228354320839"},{"denom":"ASSET11","index":"0.000026463611656062"},{"denom":"ASSET12","index":"0.000025215335343685"},{"denom":"ASSET13","index":"0.000008309803474369"},{"denom":"ASSET14","index":"0.000024294710395367"},{"denom":"ASSET15","index":"0.000019126240972581"},{"denom":"ASSET16","index":"0.000011819368577720"},{"denom":"ASSET17","index":"0.000009266335892783"},{"denom":"ASSET18","index":"0.000003836527514127"},{"denom":"ASSET2","index":"0.000008063422586049"},{"denom":"ASSET3","index":"0.000002240662109326"},{"denom":"ASSET4","index":"0.000021597223596640"},{"denom":"ASSET5","index":"0.000001744975814867"},{"denom":"ASSET6","index":"0.000007047692266012"},{"denom":"ASSET7","index":"0.000011067413421526"},{"denom":"ASSET8","index":"0.000015106336478322"},{"denom":"ASSET9","index":"0.000006414890297355"}],"last_reward_claim_height":"171"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET12","shares":"1917697172.992679523529540257","reward_history":[{"denom":"ASSET0","index":"0.000004646072432784"},{"denom":"ASSET1","index":"0.000038080040286229"},{"denom":"ASSET10","index":"0.000032847486902383"},{"denom":"ASSET11","index":"0.000039497924523924"},{"denom":"ASSET12","index":"0.000037580996460881"},{"denom":"ASSET13","index":"0.000012727008214209"},{"denom":"ASSET14","index":"0.000036441395391337"},{"denom":"ASSET15","index":"0.000029495995455198"},{"denom":"ASSET16","index":"0.000016898944682339"},{"denom":"ASSET17","index":"0.000013656744319509"},{"denom":"ASSET18","index":"0.000005680448810265"},{"denom":"ASSET2","index":"0.000011491675895035"},{"denom":"ASSET3","index":"0.000003300791246888"},{"denom":"ASSET4","index":"0.000031203283155516"},{"denom":"ASSET5","index":"0.000002590315755126"},{"denom":"ASSET6","index":"0.000010575594364390"},{"denom":"ASSET7","index":"0.000016340844103827"},{"denom":"ASSET8","index":"0.000023471391786119"},{"denom":"ASSET9","index":"0.000009435755908534"}],"last_reward_claim_height":"183"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","denom":"ASSET14","shares":"195810796.000000000000000000","reward_history":[],"last_reward_claim_height":"44"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET2","shares":"406068332.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003135138573804"},{"denom":"ASSET1","index":"0.000026601246250396"},{"denom":"ASSET10","index":"0.000021147351718785"},{"denom":"ASSET11","index":"0.000026411423528042"},{"denom":"ASSET12","index":"0.000025139747174388"},{"denom":"ASSET13","index":"0.000008292603180789"},{"denom":"ASSET14","index":"0.000024256405788980"},{"denom":"ASSET15","index":"0.000019064302195638"},{"denom":"ASSET16","index":"0.000011804656377100"},{"denom":"ASSET17","index":"0.000009238224400983"},{"denom":"ASSET18","index":"0.000003834531376561"},{"denom":"ASSET2","index":"0.000008049169006780"},{"denom":"ASSET3","index":"0.000002239375819558"},{"denom":"ASSET4","index":"0.000021568278304468"},{"denom":"ASSET5","index":"0.000001743998311515"},{"denom":"ASSET6","index":"0.000007041675703373"},{"denom":"ASSET7","index":"0.000011051161098588"},{"denom":"ASSET8","index":"0.000015073103234225"},{"denom":"ASSET9","index":"0.000006402150772125"}],"last_reward_claim_height":"157"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET8","shares":"319215995.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003135138573804"},{"denom":"ASSET1","index":"0.000026601246250396"},{"denom":"ASSET10","index":"0.000021147351718785"},{"denom":"ASSET11","index":"0.000026411423528042"},{"denom":"ASSET12","index":"0.000025139747174388"},{"denom":"ASSET13","index":"0.000008292603180789"},{"denom":"ASSET14","index":"0.000024256405788980"},{"denom":"ASSET15","index":"0.000019064302195638"},{"denom":"ASSET16","index":"0.000011804656377100"},{"denom":"ASSET17","index":"0.000009238224400983"},{"denom":"ASSET18","index":"0.000003834531376561"},{"denom":"ASSET2","index":"0.000008049169006780"},{"denom":"ASSET3","index":"0.000002239375819558"},{"denom":"ASSET4","index":"0.000021568278304468"},{"denom":"ASSET5","index":"0.000001743998311515"},{"denom":"ASSET6","index":"0.000007041675703373"},{"denom":"ASSET7","index":"0.000011051161098588"},{"denom":"ASSET8","index":"0.000015073103234225"},{"denom":"ASSET9","index":"0.000006402150772125"}],"last_reward_claim_height":"143"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET9","shares":"27391233.550598161030350647","reward_history":[{"denom":"ASSET0","index":"0.000004741115250856"},{"denom":"ASSET1","index":"0.000038790779474096"},{"denom":"ASSET10","index":"0.000033526543709442"},{"denom":"ASSET11","index":"0.000040298328047202"},{"denom":"ASSET12","index":"0.000038314311285370"},{"denom":"ASSET13","index":"0.000012998828678335"},{"denom":"ASSET14","index":"0.000037197405875143"},{"denom":"ASSET15","index":"0.000030112000039690"},{"denom":"ASSET16","index":"0.000017216651427905"},{"denom":"ASSET17","index":"0.000013916075752291"},{"denom":"ASSET18","index":"0.000005799216997102"},{"denom":"ASSET2","index":"0.000011701668315626"},{"denom":"ASSET3","index":"0.000003368965515041"},{"denom":"ASSET4","index":"0.000031802384839558"},{"denom":"ASSET5","index":"0.000002644802785755"},{"denom":"ASSET6","index":"0.000010800204716581"},{"denom":"ASSET7","index":"0.000016669242053645"},{"denom":"ASSET8","index":"0.000023984974554640"},{"denom":"ASSET9","index":"0.000009620376305923"}],"last_reward_claim_height":"190"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET14","shares":"669070356.030798207811481130","reward_history":[{"denom":"ASSET0","index":"0.000004741115250856"},{"denom":"ASSET1","index":"0.000038790779474096"},{"denom":"ASSET10","index":"0.000033526543709442"},{"denom":"ASSET11","index":"0.000040298328047202"},{"denom":"ASSET12","index":"0.000038314311285370"},{"denom":"ASSET13","index":"0.000012998828678335"},{"denom":"ASSET14","index":"0.000037197405875143"},{"denom":"ASSET15","index":"0.000030112000039690"},{"denom":"ASSET16","index":"0.000017216651427905"},{"denom":"ASSET17","index":"0.000013916075752291"},{"denom":"ASSET18","index":"0.000005799216997102"},{"denom":"ASSET2","index":"0.000011701668315626"},{"denom":"ASSET3","index":"0.000003368965515041"},{"denom":"ASSET4","index":"0.000031802384839558"},{"denom":"ASSET5","index":"0.000002644802785755"},{"denom":"ASSET6","index":"0.000010800204716581"},{"denom":"ASSET7","index":"0.000016669242053645"},{"denom":"ASSET8","index":"0.000023984974554640"},{"denom":"ASSET9","index":"0.000009620376305923"}],"last_reward_claim_height":"197"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","denom":"ASSET18","shares":"142365611.999999999600533531","reward_history":[],"last_reward_claim_height":"18"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET1","shares":"60298968.558980075133323946","reward_history":[{"denom":"ASSET0","index":"0.000004889429454812"},{"denom":"ASSET1","index":"0.000039989731936733"},{"denom":"ASSET10","index":"0.000034568578318127"},{"denom":"ASSET11","index":"0.000041543640892993"},{"denom":"ASSET12","index":"0.000039505045921282"},{"denom":"ASSET13","index":"0.000013400367987193"},{"denom":"ASSET14","index":"0.000038343482662039"},{"denom":"ASSET15","index":"0.000031045520521246"},{"denom":"ASSET16","index":"0.000017750078362345"},{"denom":"ASSET17","index":"0.000014348913165267"},{"denom":"ASSET18","index":"0.000005978243263456"},{"denom":"ASSET2","index":"0.000012064952584567"},{"denom":"ASSET3","index":"0.000003472718319064"},{"denom":"ASSET4","index":"0.000032783876502129"},{"denom":"ASSET5","index":"0.000002726555594867"},{"denom":"ASSET6","index":"0.000011131690090434"},{"denom":"ASSET7","index":"0.000017184696487705"},{"denom":"ASSET8","index":"0.000024726779414247"},{"denom":"ASSET9","index":"0.000009918489437787"}],"last_reward_claim_height":"187"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET2","shares":"160322038.596082683882997272","reward_history":[{"denom":"ASSET0","index":"0.000003237426875283"},{"denom":"ASSET1","index":"0.000027451710154634"},{"denom":"ASSET10","index":"0.000021835512998164"},{"denom":"ASSET11","index":"0.000027259736654219"},{"denom":"ASSET12","index":"0.000025953768913429"},{"denom":"ASSET13","index":"0.000008559484494503"},{"denom":"ASSET14","index":"0.000025032165857410"},{"denom":"ASSET15","index":"0.000019681806512765"},{"denom":"ASSET16","index":"0.000012183244440341"},{"denom":"ASSET17","index":"0.000009537367134186"},{"denom":"ASSET18","index":"0.000003957397976948"},{"denom":"ASSET2","index":"0.000008307936552813"},{"denom":"ASSET3","index":"0.000002310954839376"},{"denom":"ASSET4","index":"0.000022256988295109"},{"denom":"ASSET5","index":"0.000001799896462688"},{"denom":"ASSET6","index":"0.000007265619632425"},{"denom":"ASSET7","index":"0.000011405823532836"},{"denom":"ASSET8","index":"0.000015559935461923"},{"denom":"ASSET9","index":"0.000006608212131764"}],"last_reward_claim_height":"182"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET4","shares":"1186832266.168374933130833445","reward_history":[{"denom":"ASSET0","index":"0.000004889429454812"},{"denom":"ASSET1","index":"0.000039989731936733"},{"denom":"ASSET10","index":"0.000034568578318127"},{"denom":"ASSET11","index":"0.000041543640892993"},{"denom":"ASSET12","index":"0.000039505045921282"},{"denom":"ASSET13","index":"0.000013400367987193"},{"denom":"ASSET14","index":"0.000038343482662039"},{"denom":"ASSET15","index":"0.000031045520521246"},{"denom":"ASSET16","index":"0.000017750078362345"},{"denom":"ASSET17","index":"0.000014348913165267"},{"denom":"ASSET18","index":"0.000005978243263456"},{"denom":"ASSET2","index":"0.000012064952584567"},{"denom":"ASSET3","index":"0.000003472718319064"},{"denom":"ASSET4","index":"0.000032783876502129"},{"denom":"ASSET5","index":"0.000002726555594867"},{"denom":"ASSET6","index":"0.000011131690090434"},{"denom":"ASSET7","index":"0.000017184696487705"},{"denom":"ASSET8","index":"0.000024726779414247"},{"denom":"ASSET9","index":"0.000009918489437787"}],"last_reward_claim_height":"189"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","denom":"ASSET10","shares":"835115172.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003237426875283"},{"denom":"ASSET1","index":"0.000027451710154634"},{"denom":"ASSET10","index":"0.000021835512998164"},{"denom":"ASSET11","index":"0.000027259736654219"},{"denom":"ASSET12","index":"0.000025953768913429"},{"denom":"ASSET13","index":"0.000008559484494503"},{"denom":"ASSET14","index":"0.000025032165857410"},{"denom":"ASSET15","index":"0.000019681806512765"},{"denom":"ASSET16","index":"0.000012183244440341"},{"denom":"ASSET17","index":"0.000009537367134186"},{"denom":"ASSET18","index":"0.000003957397976948"},{"denom":"ASSET2","index":"0.000008307936552813"},{"denom":"ASSET3","index":"0.000002310954839376"},{"denom":"ASSET4","index":"0.000022256988295109"},{"denom":"ASSET5","index":"0.000001799896462688"},{"denom":"ASSET6","index":"0.000007265619632425"},{"denom":"ASSET7","index":"0.000011405823532836"},{"denom":"ASSET8","index":"0.000015559935461923"},{"denom":"ASSET9","index":"0.000006608212131764"}],"last_reward_claim_height":"153"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET0","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"19"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET10","shares":"765837281.610344375617609883","reward_history":[{"denom":"ASSET0","index":"0.000003150995592381"},{"denom":"ASSET1","index":"0.000026735906318713"},{"denom":"ASSET10","index":"0.000021370928366269"},{"denom":"ASSET11","index":"0.000026577057751538"},{"denom":"ASSET12","index":"0.000025356196217934"},{"denom":"ASSET13","index":"0.000008349049177946"},{"denom":"ASSET14","index":"0.000024388519635576"},{"denom":"ASSET15","index":"0.000019243917228958"},{"denom":"ASSET16","index":"0.000011858566692713"},{"denom":"ASSET17","index":"0.000009317567603522"},{"denom":"ASSET18","index":"0.000003845362315572"},{"denom":"ASSET2","index":"0.000008099062572798"},{"denom":"ASSET3","index":"0.000002247710476517"},{"denom":"ASSET4","index":"0.000021674805285583"},{"denom":"ASSET5","index":"0.000001751018453776"},{"denom":"ASSET6","index":"0.000007067532365991"},{"denom":"ASSET7","index":"0.000011106766164564"},{"denom":"ASSET8","index":"0.000015177641578730"},{"denom":"ASSET9","index":"0.000006441123951375"}],"last_reward_claim_height":"150"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET12","shares":"372558750.000000000000000000","reward_history":[],"last_reward_claim_height":"29"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","denom":"ASSET14","shares":"395158050.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001576738934866"},{"denom":"ASSET1","index":"0.000013143695761043"},{"denom":"ASSET10","index":"0.000009157699733702"},{"denom":"ASSET11","index":"0.000012715663698192"},{"denom":"ASSET12","index":"0.000011450067913139"},{"denom":"ASSET13","index":"0.000003940585946017"},{"denom":"ASSET14","index":"0.000011878099975991"},{"denom":"ASSET15","index":"0.000008492526135047"},{"denom":"ASSET16","index":"0.000005920970048209"},{"denom":"ASSET17","index":"0.000004204637159643"},{"denom":"ASSET18","index":"0.000002003089142854"},{"denom":"ASSET2","index":"0.000003880039170918"},{"denom":"ASSET3","index":"0.000001134411105672"},{"denom":"ASSET4","index":"0.000010681460240357"},{"denom":"ASSET5","index":"0.000000880451021229"},{"denom":"ASSET6","index":"0.000003584873642311"},{"denom":"ASSET7","index":"0.000005491256130493"},{"denom":"ASSET8","index":"0.000007165542647463"},{"denom":"ASSET9","index":"0.000003094612949497"}],"last_reward_claim_height":"94"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET10","shares":"530380582.683991557461156588","reward_history":[{"denom":"ASSET0","index":"0.000001735896630597"},{"denom":"ASSET1","index":"0.000014474259966527"},{"denom":"ASSET10","index":"0.000010084408758147"},{"denom":"ASSET11","index":"0.000014002239606889"},{"denom":"ASSET12","index":"0.000012609068112910"},{"denom":"ASSET13","index":"0.000004339122939062"},{"denom":"ASSET14","index":"0.000013079851197687"},{"denom":"ASSET15","index":"0.000009351942040176"},{"denom":"ASSET16","index":"0.000006520438519776"},{"denom":"ASSET17","index":"0.000004630501168930"},{"denom":"ASSET18","index":"0.000002205442440512"},{"denom":"ASSET2","index":"0.000004272310096544"},{"denom":"ASSET3","index":"0.000001249647610052"},{"denom":"ASSET4","index":"0.000011762772107687"},{"denom":"ASSET5","index":"0.000000970023491367"},{"denom":"ASSET6","index":"0.000003948144082847"},{"denom":"ASSET7","index":"0.000006046562247845"},{"denom":"ASSET8","index":"0.000007890101791387"},{"denom":"ASSET9","index":"0.000003408073605830"}],"last_reward_claim_height":"105"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET13","shares":"520485424.329398083088523200","reward_history":[{"denom":"ASSET0","index":"0.000003300304206809"},{"denom":"ASSET1","index":"0.000027981868665615"},{"denom":"ASSET10","index":"0.000022221493016134"},{"denom":"ASSET11","index":"0.000027777532118325"},{"denom":"ASSET12","index":"0.000026428557640091"},{"denom":"ASSET13","index":"0.000008720047886627"},{"denom":"ASSET14","index":"0.000025512138164618"},{"denom":"ASSET15","index":"0.000020036362120252"},{"denom":"ASSET16","index":"0.000012421157074829"},{"denom":"ASSET17","index":"0.000009711490167791"},{"denom":"ASSET18","index":"0.000004036282970136"},{"denom":"ASSET2","index":"0.000008465189250700"},{"denom":"ASSET3","index":"0.000002356240815614"},{"denom":"ASSET4","index":"0.000022687774056492"},{"denom":"ASSET5","index":"0.000001835200922241"},{"denom":"ASSET6","index":"0.000007409270759323"},{"denom":"ASSET7","index":"0.000011627060915230"},{"denom":"ASSET8","index":"0.000015852235873304"},{"denom":"ASSET9","index":"0.000006733690564218"}],"last_reward_claim_height":"142"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET14","shares":"18773588.492905514066261238","reward_history":[{"denom":"ASSET0","index":"0.000003300304206809"},{"denom":"ASSET1","index":"0.000027981868665615"},{"denom":"ASSET10","index":"0.000022221493016134"},{"denom":"ASSET11","index":"0.000027777532118325"},{"denom":"ASSET12","index":"0.000026428557640091"},{"denom":"ASSET13","index":"0.000008720047886627"},{"denom":"ASSET14","index":"0.000025512138164618"},{"denom":"ASSET15","index":"0.000020036362120252"},{"denom":"ASSET16","index":"0.000012421157074829"},{"denom":"ASSET17","index":"0.000009711490167791"},{"denom":"ASSET18","index":"0.000004036282970136"},{"denom":"ASSET2","index":"0.000008465189250700"},{"denom":"ASSET3","index":"0.000002356240815614"},{"denom":"ASSET4","index":"0.000022687774056492"},{"denom":"ASSET5","index":"0.000001835200922241"},{"denom":"ASSET6","index":"0.000007409270759323"},{"denom":"ASSET7","index":"0.000011627060915230"},{"denom":"ASSET8","index":"0.000015852235873304"},{"denom":"ASSET9","index":"0.000006733690564218"}],"last_reward_claim_height":"148"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET15","shares":"938000373.000000000000000000","reward_history":[],"last_reward_claim_height":"26"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","denom":"ASSET16","shares":"165161549.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001735896630597"},{"denom":"ASSET1","index":"0.000014474259966527"},{"denom":"ASSET10","index":"0.000010084408758147"},{"denom":"ASSET11","index":"0.000014002239606889"},{"denom":"ASSET12","index":"0.000012609068112910"},{"denom":"ASSET13","index":"0.000004339122939062"},{"denom":"ASSET14","index":"0.000013079851197687"},{"denom":"ASSET15","index":"0.000009351942040176"},{"denom":"ASSET16","index":"0.000006520438519776"},{"denom":"ASSET17","index":"0.000004630501168930"},{"denom":"ASSET18","index":"0.000002205442440512"},{"denom":"ASSET2","index":"0.000004272310096544"},{"denom":"ASSET3","index":"0.000001249647610052"},{"denom":"ASSET4","index":"0.000011762772107687"},{"denom":"ASSET5","index":"0.000000970023491367"},{"denom":"ASSET6","index":"0.000003948144082847"},{"denom":"ASSET7","index":"0.000006046562247845"},{"denom":"ASSET8","index":"0.000007890101791387"},{"denom":"ASSET9","index":"0.000003408073605830"}],"last_reward_claim_height":"80"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","denom":"ASSET1","shares":"235603359.119095545783558304","reward_history":[{"denom":"ASSET0","index":"0.000003383074331503"},{"denom":"ASSET1","index":"0.000028697774885580"},{"denom":"ASSET10","index":"0.000022880621123289"},{"denom":"ASSET11","index":"0.000028511966470743"},{"denom":"ASSET12","index":"0.000027173358086556"},{"denom":"ASSET13","index":"0.000008954537947194"},{"denom":"ASSET14","index":"0.000026172910691250"},{"denom":"ASSET15","index":"0.000020614154391480"},{"denom":"ASSET16","index":"0.000012732692592075"},{"denom":"ASSET17","index":"0.000009985655741818"},{"denom":"ASSET18","index":"0.000004132359094826"},{"denom":"ASSET2","index":"0.000008689052893949"},{"denom":"ASSET3","index":"0.000002414485946546"},{"denom":"ASSET4","index":"0.000023266612079392"},{"denom":"ASSET5","index":"0.000001880944791026"},{"denom":"ASSET6","index":"0.000007591453768301"},{"denom":"ASSET7","index":"0.000011922604903868"},{"denom":"ASSET8","index":"0.000016278329144958"},{"denom":"ASSET9","index":"0.000006911169878531"}],"last_reward_claim_height":"174"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET4","shares":"824729863.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001436232590899"},{"denom":"ASSET1","index":"0.000011976183987962"},{"denom":"ASSET10","index":"0.000008344549248442"},{"denom":"ASSET11","index":"0.000011585862202045"},{"denom":"ASSET12","index":"0.000010432581326504"},{"denom":"ASSET13","index":"0.000003589949888597"},{"denom":"ASSET14","index":"0.000010822903112421"},{"denom":"ASSET15","index":"0.000007738224144105"},{"denom":"ASSET16","index":"0.000005395030251301"},{"denom":"ASSET17","index":"0.000003831216753031"},{"denom":"ASSET18","index":"0.000001825291199515"},{"denom":"ASSET2","index":"0.000003535633264667"},{"denom":"ASSET3","index":"0.000001033279031975"},{"denom":"ASSET4","index":"0.000009732781101914"},{"denom":"ASSET5","index":"0.000000802117585946"},{"denom":"ASSET6","index":"0.000003266576499617"},{"denom":"ASSET7","index":"0.000005003445288083"},{"denom":"ASSET8","index":"0.000006528100290032"},{"denom":"ASSET9","index":"0.000002819411735168"}],"last_reward_claim_height":"66"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET13","shares":"298169883.200225502703447770","reward_history":[{"denom":"ASSET0","index":"0.000004616748816299"},{"denom":"ASSET1","index":"0.000037755207818878"},{"denom":"ASSET10","index":"0.000032938660396482"},{"denom":"ASSET11","index":"0.000039335391556387"},{"denom":"ASSET12","index":"0.000037512612148171"},{"denom":"ASSET13","index":"0.000012705893060308"},{"denom":"ASSET14","index":"0.000036276532453011"},{"denom":"ASSET15","index":"0.000029538855596635"},{"denom":"ASSET16","index":"0.000016743506271421"},{"denom":"ASSET17","index":"0.000013621299864319"},{"denom":"ASSET18","index":"0.000005632683728718"},{"denom":"ASSET2","index":"0.000011406087221492"},{"denom":"ASSET3","index":"0.000003276282345046"},{"denom":"ASSET4","index":"0.000030959298045710"},{"denom":"ASSET5","index":"0.000002573921522052"},{"denom":"ASSET6","index":"0.000010509111697413"},{"denom":"ASSET7","index":"0.000016237462090306"},{"denom":"ASSET8","index":"0.000023455836171312"},{"denom":"ASSET9","index":"0.000009384135429607"}],"last_reward_claim_height":"184"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","denom":"ASSET16","shares":"559728090.654899702818066721","reward_history":[{"denom":"ASSET0","index":"0.000003006064648013"},{"denom":"ASSET1","index":"0.000025531157590212"},{"denom":"ASSET10","index":"0.000020524407173472"},{"denom":"ASSET11","index":"0.000025409258384489"},{"denom":"ASSET12","index":"0.000024300714605646"},{"denom":"ASSET13","index":"0.000007986286383048"},{"denom":"ASSET14","index":"0.000023298685931189"},{"denom":"ASSET15","index":"0.000018459726056254"},{"denom":"ASSET16","index":"0.000011316095008653"},{"denom":"ASSET17","index":"0.000008930145684163"},{"denom":"ASSET18","index":"0.000003662445744281"},{"denom":"ASSET2","index":"0.000007743120539446"},{"denom":"ASSET3","index":"0.000002143639104141"},{"denom":"ASSET4","index":"0.000020695936675740"},{"denom":"ASSET5","index":"0.000001670457298921"},{"denom":"ASSET6","index":"0.000006739935351518"},{"denom":"ASSET7","index":"0.000010603283023237"},{"denom":"ASSET8","index":"0.000014518439118465"},{"denom":"ASSET9","index":"0.000006156725809403"}],"last_reward_claim_height":"162"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","denom":"ASSET14","shares":"533593045.222967690193460993","reward_history":[{"denom":"ASSET0","index":"0.000002611689387046"},{"denom":"ASSET1","index":"0.000022118950462866"},{"denom":"ASSET10","index":"0.000017388824351878"},{"denom":"ASSET11","index":"0.000021911701626113"},{"denom":"ASSET12","index":"0.000020757567192719"},{"denom":"ASSET13","index":"0.000006870825151743"},{"denom":"ASSET14","index":"0.000020152250667519"},{"denom":"ASSET15","index":"0.000015711809347683"},{"denom":"ASSET16","index":"0.000009830001439303"},{"denom":"ASSET17","index":"0.000007627368499381"},{"denom":"ASSET18","index":"0.000003205559295774"},{"denom":"ASSET2","index":"0.000006678615536452"},{"denom":"ASSET3","index":"0.000001865584989735"},{"denom":"ASSET4","index":"0.000017938012267073"},{"denom":"ASSET5","index":"0.000001453547274796"},{"denom":"ASSET6","index":"0.000005870892100855"},{"denom":"ASSET7","index":"0.000009195154067126"},{"denom":"ASSET8","index":"0.000012492245582088"},{"denom":"ASSET9","index":"0.000005313335607946"}],"last_reward_claim_height":"164"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET0","shares":"813367623.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000000860911540335"},{"denom":"ASSET1","index":"0.000007178593209511"},{"denom":"ASSET10","index":"0.000005001581264509"},{"denom":"ASSET11","index":"0.000006944753046495"},{"denom":"ASSET12","index":"0.000006253725385275"},{"denom":"ASSET13","index":"0.000002152029021603"},{"denom":"ASSET14","index":"0.000006487065889823"},{"denom":"ASSET15","index":"0.000004638329558286"},{"denom":"ASSET16","index":"0.000003233789604786"},{"denom":"ASSET17","index":"0.000002296430318850"},{"denom":"ASSET18","index":"0.000001093752386415"},{"denom":"ASSET2","index":"0.000002119051562716"},{"denom":"ASSET3","index":"0.000000619576500299"},{"denom":"ASSET4","index":"0.000005834012272169"},{"denom":"ASSET5","index":"0.000000481171104668"},{"denom":"ASSET6","index":"0.000001958161536025"},{"denom":"ASSET7","index":"0.000002998950124834"},{"denom":"ASSET8","index":"0.000003913325121242"},{"denom":"ASSET9","index":"0.000001690344597186"}],"last_reward_claim_height":"74"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET8","shares":"499408733.415188242458498708","reward_history":[{"denom":"ASSET0","index":"0.000003939201132718"},{"denom":"ASSET1","index":"0.000032105787247280"},{"denom":"ASSET10","index":"0.000028804547526948"},{"denom":"ASSET11","index":"0.000033799593882103"},{"denom":"ASSET12","index":"0.000032449700596289"},{"denom":"ASSET13","index":"0.000010978331571892"},{"denom":"ASSET14","index":"0.000031126082637172"},{"denom":"ASSET15","index":"0.000025740142538588"},{"denom":"ASSET16","index":"0.000014208856557445"},{"denom":"ASSET17","index":"0.000011764407155003"},{"denom":"ASSET18","index":"0.000004780051086265"},{"denom":"ASSET2","index":"0.000009727516832171"},{"denom":"ASSET3","index":"0.000002790647417131"},{"denom":"ASSET4","index":"0.000026364763247740"},{"denom":"ASSET5","index":"0.000002196158070158"},{"denom":"ASSET6","index":"0.000008970946330284"},{"denom":"ASSET7","index":"0.000013870661008242"},{"denom":"ASSET8","index":"0.000020307763806499"},{"denom":"ASSET9","index":"0.000008041754758616"}],"last_reward_claim_height":"187"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET9","shares":"738642073.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000000860911540335"},{"denom":"ASSET1","index":"0.000007178593209511"},{"denom":"ASSET10","index":"0.000005001581264509"},{"denom":"ASSET11","index":"0.000006944753046495"},{"denom":"ASSET12","index":"0.000006253725385275"},{"denom":"ASSET13","index":"0.000002152029021603"},{"denom":"ASSET14","index":"0.000006487065889823"},{"denom":"ASSET15","index":"0.000004638329558286"},{"denom":"ASSET16","index":"0.000003233789604786"},{"denom":"ASSET17","index":"0.000002296430318850"},{"denom":"ASSET18","index":"0.000001093752386415"},{"denom":"ASSET2","index":"0.000002119051562716"},{"denom":"ASSET3","index":"0.000000619576500299"},{"denom":"ASSET4","index":"0.000005834012272169"},{"denom":"ASSET5","index":"0.000000481171104668"},{"denom":"ASSET6","index":"0.000001958161536025"},{"denom":"ASSET7","index":"0.000002998950124834"},{"denom":"ASSET8","index":"0.000003913325121242"},{"denom":"ASSET9","index":"0.000001690344597186"}],"last_reward_claim_height":"85"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET17","shares":"230209306.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000000860911540335"},{"denom":"ASSET1","index":"0.000007178593209511"},{"denom":"ASSET10","index":"0.000005001581264509"},{"denom":"ASSET11","index":"0.000006944753046495"},{"denom":"ASSET12","index":"0.000006253725385275"},{"denom":"ASSET13","index":"0.000002152029021603"},{"denom":"ASSET14","index":"0.000006487065889823"},{"denom":"ASSET15","index":"0.000004638329558286"},{"denom":"ASSET16","index":"0.000003233789604786"},{"denom":"ASSET17","index":"0.000002296430318850"},{"denom":"ASSET18","index":"0.000001093752386415"},{"denom":"ASSET2","index":"0.000002119051562716"},{"denom":"ASSET3","index":"0.000000619576500299"},{"denom":"ASSET4","index":"0.000005834012272169"},{"denom":"ASSET5","index":"0.000000481171104668"},{"denom":"ASSET6","index":"0.000001958161536025"},{"denom":"ASSET7","index":"0.000002998950124834"},{"denom":"ASSET8","index":"0.000003913325121242"},{"denom":"ASSET9","index":"0.000001690344597186"}],"last_reward_claim_height":"102"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","denom":"ASSET18","shares":"450762011.000000002330493125","reward_history":[{"denom":"ASSET0","index":"0.000002357406510396"},{"denom":"ASSET1","index":"0.000020099972826550"},{"denom":"ASSET10","index":"0.000016611857270119"},{"denom":"ASSET11","index":"0.000020122040980663"},{"denom":"ASSET12","index":"0.000019473664705632"},{"denom":"ASSET13","index":"0.000006342954228467"},{"denom":"ASSET14","index":"0.000018379978414574"},{"denom":"ASSET15","index":"0.000014858739059306"},{"denom":"ASSET16","index":"0.000008878274052948"},{"denom":"ASSET17","index":"0.000007156982288871"},{"denom":"ASSET18","index":"0.000002845018303307"},{"denom":"ASSET2","index":"0.000006129987919866"},{"denom":"ASSET3","index":"0.000001678183905493"},{"denom":"ASSET4","index":"0.000016284739258605"},{"denom":"ASSET5","index":"0.000001308892339296"},{"denom":"ASSET6","index":"0.000005269046474537"},{"denom":"ASSET7","index":"0.000008337197620164"},{"denom":"ASSET8","index":"0.000011530009666752"},{"denom":"ASSET9","index":"0.000004871853664260"}],"last_reward_claim_height":"176"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET1","shares":"523963520.441279075894163660","reward_history":[{"denom":"ASSET0","index":"0.000002792091306062"},{"denom":"ASSET1","index":"0.000023760392481519"},{"denom":"ASSET10","index":"0.000019330735214415"},{"denom":"ASSET11","index":"0.000023705763948043"},{"denom":"ASSET12","index":"0.000022788595153270"},{"denom":"ASSET13","index":"0.000007460432475948"},{"denom":"ASSET14","index":"0.000021701401606991"},{"denom":"ASSET15","index":"0.000017344296121870"},{"denom":"ASSET16","index":"0.000010515175863945"},{"denom":"ASSET17","index":"0.000008375559402161"},{"denom":"ASSET18","index":"0.000003388923471278"},{"denom":"ASSET2","index":"0.000007222909907971"},{"denom":"ASSET3","index":"0.000001989926471838"},{"denom":"ASSET4","index":"0.000019255294602933"},{"denom":"ASSET5","index":"0.000001551437823125"},{"denom":"ASSET6","index":"0.000006253588147261"},{"denom":"ASSET7","index":"0.000009862028954195"},{"denom":"ASSET8","index":"0.000013562244421912"},{"denom":"ASSET9","index":"0.000005741841810541"}],"last_reward_claim_height":"147"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET6","shares":"147596723.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001198976216272"},{"denom":"ASSET1","index":"0.000010001315625623"},{"denom":"ASSET10","index":"0.000006967712250892"},{"denom":"ASSET11","index":"0.000009674322112094"},{"denom":"ASSET12","index":"0.000008711677656379"},{"denom":"ASSET13","index":"0.000002997949876371"},{"denom":"ASSET14","index":"0.000009037652498526"},{"denom":"ASSET15","index":"0.000006461432574183"},{"denom":"ASSET16","index":"0.000004504564849919"},{"denom":"ASSET17","index":"0.000003199646809949"},{"denom":"ASSET18","index":"0.000001523932387037"},{"denom":"ASSET2","index":"0.000002952109664194"},{"denom":"ASSET3","index":"0.000000862814660308"},{"denom":"ASSET4","index":"0.000008126960283277"},{"denom":"ASSET5","index":"0.000000670285769165"},{"denom":"ASSET6","index":"0.000002728001960218"},{"denom":"ASSET7","index":"0.000004177571336390"},{"denom":"ASSET8","index":"0.000005451929234909"},{"denom":"ASSET9","index":"0.000002354149563130"}],"last_reward_claim_height":"100"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET9","shares":"58049871.451574217409590736","reward_history":[{"denom":"ASSET0","index":"0.000002792091306062"},{"denom":"ASSET1","index":"0.000023760392481519"},{"denom":"ASSET10","index":"0.000019330735214415"},{"denom":"ASSET11","index":"0.000023705763948043"},{"denom":"ASSET12","index":"0.000022788595153270"},{"denom":"ASSET13","index":"0.000007460432475948"},{"denom":"ASSET14","index":"0.000021701401606991"},{"denom":"ASSET15","index":"0.000017344296121870"},{"denom":"ASSET16","index":"0.000010515175863945"},{"denom":"ASSET17","index":"0.000008375559402161"},{"denom":"ASSET18","index":"0.000003388923471278"},{"denom":"ASSET2","index":"0.000007222909907971"},{"denom":"ASSET3","index":"0.000001989926471838"},{"denom":"ASSET4","index":"0.000019255294602933"},{"denom":"ASSET5","index":"0.000001551437823125"},{"denom":"ASSET6","index":"0.000006253588147261"},{"denom":"ASSET7","index":"0.000009862028954195"},{"denom":"ASSET8","index":"0.000013562244421912"},{"denom":"ASSET9","index":"0.000005741841810541"}],"last_reward_claim_height":"175"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET11","shares":"685087822.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001198976216272"},{"denom":"ASSET1","index":"0.000010001315625623"},{"denom":"ASSET10","index":"0.000006967712250892"},{"denom":"ASSET11","index":"0.000009674322112094"},{"denom":"ASSET12","index":"0.000008711677656379"},{"denom":"ASSET13","index":"0.000002997949876371"},{"denom":"ASSET14","index":"0.000009037652498526"},{"denom":"ASSET15","index":"0.000006461432574183"},{"denom":"ASSET16","index":"0.000004504564849919"},{"denom":"ASSET17","index":"0.000003199646809949"},{"denom":"ASSET18","index":"0.000001523932387037"},{"denom":"ASSET2","index":"0.000002952109664194"},{"denom":"ASSET3","index":"0.000000862814660308"},{"denom":"ASSET4","index":"0.000008126960283277"},{"denom":"ASSET5","index":"0.000000670285769165"},{"denom":"ASSET6","index":"0.000002728001960218"},{"denom":"ASSET7","index":"0.000004177571336390"},{"denom":"ASSET8","index":"0.000005451929234909"},{"denom":"ASSET9","index":"0.000002354149563130"}],"last_reward_claim_height":"83"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET12","shares":"128664828.203899725122129866","reward_history":[{"denom":"ASSET0","index":"0.000002792091306062"},{"denom":"ASSET1","index":"0.000023760392481519"},{"denom":"ASSET10","index":"0.000019330735214415"},{"denom":"ASSET11","index":"0.000023705763948043"},{"denom":"ASSET12","index":"0.000022788595153270"},{"denom":"ASSET13","index":"0.000007460432475948"},{"denom":"ASSET14","index":"0.000021701401606991"},{"denom":"ASSET15","index":"0.000017344296121870"},{"denom":"ASSET16","index":"0.000010515175863945"},{"denom":"ASSET17","index":"0.000008375559402161"},{"denom":"ASSET18","index":"0.000003388923471278"},{"denom":"ASSET2","index":"0.000007222909907971"},{"denom":"ASSET3","index":"0.000001989926471838"},{"denom":"ASSET4","index":"0.000019255294602933"},{"denom":"ASSET5","index":"0.000001551437823125"},{"denom":"ASSET6","index":"0.000006253588147261"},{"denom":"ASSET7","index":"0.000009862028954195"},{"denom":"ASSET8","index":"0.000013562244421912"},{"denom":"ASSET9","index":"0.000005741841810541"}],"last_reward_claim_height":"126"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET14","shares":"871876516.702426007638486176","reward_history":[{"denom":"ASSET0","index":"0.000002792091306062"},{"denom":"ASSET1","index":"0.000023760392481519"},{"denom":"ASSET10","index":"0.000019330735214415"},{"denom":"ASSET11","index":"0.000023705763948043"},{"denom":"ASSET12","index":"0.000022788595153270"},{"denom":"ASSET13","index":"0.000007460432475948"},{"denom":"ASSET14","index":"0.000021701401606991"},{"denom":"ASSET15","index":"0.000017344296121870"},{"denom":"ASSET16","index":"0.000010515175863945"},{"denom":"ASSET17","index":"0.000008375559402161"},{"denom":"ASSET18","index":"0.000003388923471278"},{"denom":"ASSET2","index":"0.000007222909907971"},{"denom":"ASSET3","index":"0.000001989926471838"},{"denom":"ASSET4","index":"0.000019255294602933"},{"denom":"ASSET5","index":"0.000001551437823125"},{"denom":"ASSET6","index":"0.000006253588147261"},{"denom":"ASSET7","index":"0.000009862028954195"},{"denom":"ASSET8","index":"0.000013562244421912"},{"denom":"ASSET9","index":"0.000005741841810541"}],"last_reward_claim_height":"175"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","denom":"ASSET17","shares":"318169646.108450514404714575","reward_history":[{"denom":"ASSET0","index":"0.000002792091306062"},{"denom":"ASSET1","index":"0.000023760392481519"},{"denom":"ASSET10","index":"0.000019330735214415"},{"denom":"ASSET11","index":"0.000023705763948043"},{"denom":"ASSET12","index":"0.000022788595153270"},{"denom":"ASSET13","index":"0.000007460432475948"},{"denom":"ASSET14","index":"0.000021701401606991"},{"denom":"ASSET15","index":"0.000017344296121870"},{"denom":"ASSET16","index":"0.000010515175863945"},{"denom":"ASSET17","index":"0.000008375559402161"},{"denom":"ASSET18","index":"0.000003388923471278"},{"denom":"ASSET2","index":"0.000007222909907971"},{"denom":"ASSET3","index":"0.000001989926471838"},{"denom":"ASSET4","index":"0.000019255294602933"},{"denom":"ASSET5","index":"0.000001551437823125"},{"denom":"ASSET6","index":"0.000006253588147261"},{"denom":"ASSET7","index":"0.000009862028954195"},{"denom":"ASSET8","index":"0.000013562244421912"},{"denom":"ASSET9","index":"0.000005741841810541"}],"last_reward_claim_height":"167"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET0","shares":"12544448.528373515508429632","reward_history":[{"denom":"ASSET0","index":"0.000003131246414749"},{"denom":"ASSET1","index":"0.000026589761836242"},{"denom":"ASSET10","index":"0.000021355242603721"},{"denom":"ASSET11","index":"0.000026458316408852"},{"denom":"ASSET12","index":"0.000025293988029420"},{"denom":"ASSET13","index":"0.000008316673174883"},{"denom":"ASSET14","index":"0.000024263343459355"},{"denom":"ASSET15","index":"0.000019213959771091"},{"denom":"ASSET16","index":"0.000011784585795875"},{"denom":"ASSET17","index":"0.000009292893547134"},{"denom":"ASSET18","index":"0.000003813004198036"},{"denom":"ASSET2","index":"0.000008060944762894"},{"denom":"ASSET3","index":"0.000002234070199415"},{"denom":"ASSET4","index":"0.000021557233504015"},{"denom":"ASSET5","index":"0.000001738116490695"},{"denom":"ASSET6","index":"0.000007021386599103"},{"denom":"ASSET7","index":"0.000011043212117572"},{"denom":"ASSET8","index":"0.000015117900391662"},{"denom":"ASSET9","index":"0.000006411442995536"}],"last_reward_claim_height":"134"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET2","shares":"451049017.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001507638919625"},{"denom":"ASSET1","index":"0.000012569401049902"},{"denom":"ASSET10","index":"0.000008757228353136"},{"denom":"ASSET11","index":"0.000012160184771718"},{"denom":"ASSET12","index":"0.000010949766096248"},{"denom":"ASSET13","index":"0.000003769097299062"},{"denom":"ASSET14","index":"0.000011358982374432"},{"denom":"ASSET15","index":"0.000008124020006893"},{"denom":"ASSET16","index":"0.000005660107258249"},{"denom":"ASSET17","index":"0.000004018934605743"},{"denom":"ASSET18","index":"0.000001912547658039"},{"denom":"ASSET2","index":"0.000003708791742277"},{"denom":"ASSET3","index":"0.000001085500022130"},{"denom":"ASSET4","index":"0.000010217484335287"},{"denom":"ASSET5","index":"0.000000839970255220"},{"denom":"ASSET6","index":"0.000003428801657204"},{"denom":"ASSET7","index":"0.000005250890980065"},{"denom":"ASSET8","index":"0.000006853295774638"},{"denom":"ASSET9","index":"0.000002959279822235"}],"last_reward_claim_height":"111"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET4","shares":"851224156.999999999455502123","reward_history":[{"denom":"ASSET0","index":"0.000001507638919625"},{"denom":"ASSET1","index":"0.000012569401049902"},{"denom":"ASSET10","index":"0.000008757228353136"},{"denom":"ASSET11","index":"0.000012160184771718"},{"denom":"ASSET12","index":"0.000010949766096248"},{"denom":"ASSET13","index":"0.000003769097299062"},{"denom":"ASSET14","index":"0.000011358982374432"},{"denom":"ASSET15","index":"0.000008124020006893"},{"denom":"ASSET16","index":"0.000005660107258249"},{"denom":"ASSET17","index":"0.000004018934605743"},{"denom":"ASSET18","index":"0.000001912547658039"},{"denom":"ASSET2","index":"0.000003708791742277"},{"denom":"ASSET3","index":"0.000001085500022130"},{"denom":"ASSET4","index":"0.000010217484335287"},{"denom":"ASSET5","index":"0.000000839970255220"},{"denom":"ASSET6","index":"0.000003428801657204"},{"denom":"ASSET7","index":"0.000005250890980065"},{"denom":"ASSET8","index":"0.000006853295774638"},{"denom":"ASSET9","index":"0.000002959279822235"}],"last_reward_claim_height":"109"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","denom":"ASSET16","shares":"72517709.718640388978460706","reward_history":[{"denom":"ASSET0","index":"0.000001507638919625"},{"denom":"ASSET1","index":"0.000012569401049902"},{"denom":"ASSET10","index":"0.000008757228353136"},{"denom":"ASSET11","index":"0.000012160184771718"},{"denom":"ASSET12","index":"0.000010949766096248"},{"denom":"ASSET13","index":"0.000003769097299062"},{"denom":"ASSET14","index":"0.000011358982374432"},{"denom":"ASSET15","index":"0.000008124020006893"},{"denom":"ASSET16","index":"0.000005660107258249"},{"denom":"ASSET17","index":"0.000004018934605743"},{"denom":"ASSET18","index":"0.000001912547658039"},{"denom":"ASSET2","index":"0.000003708791742277"},{"denom":"ASSET3","index":"0.000001085500022130"},{"denom":"ASSET4","index":"0.000010217484335287"},{"denom":"ASSET5","index":"0.000000839970255220"},{"denom":"ASSET6","index":"0.000003428801657204"},{"denom":"ASSET7","index":"0.000005250890980065"},{"denom":"ASSET8","index":"0.000006853295774638"},{"denom":"ASSET9","index":"0.000002959279822235"}],"last_reward_claim_height":"94"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET10","shares":"725315155.999999988197478752","reward_history":[{"denom":"ASSET0","index":"0.000001538667310820"},{"denom":"ASSET1","index":"0.000012827917927858"},{"denom":"ASSET10","index":"0.000008937244372687"},{"denom":"ASSET11","index":"0.000012409488429871"},{"denom":"ASSET12","index":"0.000011174685151587"},{"denom":"ASSET13","index":"0.000003845530209513"},{"denom":"ASSET14","index":"0.000011592355937882"},{"denom":"ASSET15","index":"0.000008288166520415"},{"denom":"ASSET16","index":"0.000005778727600031"},{"denom":"ASSET17","index":"0.000004103871540546"},{"denom":"ASSET18","index":"0.000001954820673732"},{"denom":"ASSET2","index":"0.000003786730053405"},{"denom":"ASSET3","index":"0.000001107719069920"},{"denom":"ASSET4","index":"0.000010424698644316"},{"denom":"ASSET5","index":"0.000000859620346726"},{"denom":"ASSET6","index":"0.000003499178322240"},{"denom":"ASSET7","index":"0.000005359160034507"},{"denom":"ASSET8","index":"0.000006993045662639"},{"denom":"ASSET9","index":"0.000003020431244761"}],"last_reward_claim_height":"104"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","denom":"ASSET17","shares":"999999999.999999993000000000","reward_history":[{"denom":"ASSET0","index":"0.000001538667310820"},{"denom":"ASSET1","index":"0.000012827917927858"},{"denom":"ASSET10","index":"0.000008937244372687"},{"denom":"ASSET11","index":"0.000012409488429871"},{"denom":"ASSET12","index":"0.000011174685151587"},{"denom":"ASSET13","index":"0.000003845530209513"},{"denom":"ASSET14","index":"0.000011592355937882"},{"denom":"ASSET15","index":"0.000008288166520415"},{"denom":"ASSET16","index":"0.000005778727600031"},{"denom":"ASSET17","index":"0.000004103871540546"},{"denom":"ASSET18","index":"0.000001954820673732"},{"denom":"ASSET2","index":"0.000003786730053405"},{"denom":"ASSET3","index":"0.000001107719069920"},{"denom":"ASSET4","index":"0.000010424698644316"},{"denom":"ASSET5","index":"0.000000859620346726"},{"denom":"ASSET6","index":"0.000003499178322240"},{"denom":"ASSET7","index":"0.000005359160034507"},{"denom":"ASSET8","index":"0.000006993045662639"},{"denom":"ASSET9","index":"0.000003020431244761"}],"last_reward_claim_height":"94"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET2","shares":"29307607.412477327583473881","reward_history":[{"denom":"ASSET0","index":"0.000003295755498274"},{"denom":"ASSET1","index":"0.000027960125957180"},{"denom":"ASSET10","index":"0.000022298091456525"},{"denom":"ASSET11","index":"0.000027779779629540"},{"denom":"ASSET12","index":"0.000026478335493542"},{"denom":"ASSET13","index":"0.000008724566942758"},{"denom":"ASSET14","index":"0.000025500389224880"},{"denom":"ASSET15","index":"0.000020088119547171"},{"denom":"ASSET16","index":"0.000012404652968467"},{"denom":"ASSET17","index":"0.000009730254100732"},{"denom":"ASSET18","index":"0.000004025857251145"},{"denom":"ASSET2","index":"0.000008465992991141"},{"denom":"ASSET3","index":"0.000002352288079447"},{"denom":"ASSET4","index":"0.000022667879187178"},{"denom":"ASSET5","index":"0.000001832649164275"},{"denom":"ASSET6","index":"0.000007396215489940"},{"denom":"ASSET7","index":"0.000011616026271508"},{"denom":"ASSET8","index":"0.000015861127767022"},{"denom":"ASSET9","index":"0.000006733269226830"}],"last_reward_claim_height":"130"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET6","shares":"450412222.661307208796677280","reward_history":[{"denom":"ASSET0","index":"0.000003295755498274"},{"denom":"ASSET1","index":"0.000027960125957180"},{"denom":"ASSET10","index":"0.000022298091456525"},{"denom":"ASSET11","index":"0.000027779779629540"},{"denom":"ASSET12","index":"0.000026478335493542"},{"denom":"ASSET13","index":"0.000008724566942758"},{"denom":"ASSET14","index":"0.000025500389224880"},{"denom":"ASSET15","index":"0.000020088119547171"},{"denom":"ASSET16","index":"0.000012404652968467"},{"denom":"ASSET17","index":"0.000009730254100732"},{"denom":"ASSET18","index":"0.000004025857251145"},{"denom":"ASSET2","index":"0.000008465992991141"},{"denom":"ASSET3","index":"0.000002352288079447"},{"denom":"ASSET4","index":"0.000022667879187178"},{"denom":"ASSET5","index":"0.000001832649164275"},{"denom":"ASSET6","index":"0.000007396215489940"},{"denom":"ASSET7","index":"0.000011616026271508"},{"denom":"ASSET8","index":"0.000015861127767022"},{"denom":"ASSET9","index":"0.000006733269226830"}],"last_reward_claim_height":"177"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","denom":"ASSET8","shares":"356593148.746231255252984213","reward_history":[{"denom":"ASSET0","index":"0.000004891719865072"},{"denom":"ASSET1","index":"0.000040072863779743"},{"denom":"ASSET10","index":"0.000034599304409835"},{"denom":"ASSET11","index":"0.000041579421937236"},{"denom":"ASSET12","index":"0.000039570241536796"},{"denom":"ASSET13","index":"0.000013401388142896"},{"denom":"ASSET14","index":"0.000038360085576662"},{"denom":"ASSET15","index":"0.000031066535588374"},{"denom":"ASSET16","index":"0.000017782615538969"},{"denom":"ASSET17","index":"0.000014378613126430"},{"denom":"ASSET18","index":"0.000005978292997826"},{"denom":"ASSET2","index":"0.000012095614431682"},{"denom":"ASSET3","index":"0.000003474461371717"},{"denom":"ASSET4","index":"0.000032837900054333"},{"denom":"ASSET5","index":"0.000002727819260398"},{"denom":"ASSET6","index":"0.000011131008136035"},{"denom":"ASSET7","index":"0.000017198777658106"},{"denom":"ASSET8","index":"0.000024717029214278"},{"denom":"ASSET9","index":"0.000009931445754815"}],"last_reward_claim_height":"195"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET1","shares":"363786501.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003140601357292"},{"denom":"ASSET1","index":"0.000026678854887219"},{"denom":"ASSET10","index":"0.000021467437308134"},{"denom":"ASSET11","index":"0.000026557150856893"},{"denom":"ASSET12","index":"0.000025409189778577"},{"denom":"ASSET13","index":"0.000008348678217638"},{"denom":"ASSET14","index":"0.000024348515645151"},{"denom":"ASSET15","index":"0.000019305257093893"},{"denom":"ASSET16","index":"0.000011824039078448"},{"denom":"ASSET17","index":"0.000009337874135725"},{"denom":"ASSET18","index":"0.000003825021517438"},{"denom":"ASSET2","index":"0.000008092644314938"},{"denom":"ASSET3","index":"0.000002240059115813"},{"denom":"ASSET4","index":"0.000021626536887159"},{"denom":"ASSET5","index":"0.000001745574888449"},{"denom":"ASSET6","index":"0.000007040920669072"},{"denom":"ASSET7","index":"0.000011079696231301"},{"denom":"ASSET8","index":"0.000015176664815864"},{"denom":"ASSET9","index":"0.000006434669973810"}],"last_reward_claim_height":"161"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET14","shares":"103973006.040913336244182356","reward_history":[{"denom":"ASSET0","index":"0.000003140601357292"},{"denom":"ASSET1","index":"0.000026678854887219"},{"denom":"ASSET10","index":"0.000021467437308134"},{"denom":"ASSET11","index":"0.000026557150856893"},{"denom":"ASSET12","index":"0.000025409189778577"},{"denom":"ASSET13","index":"0.000008348678217638"},{"denom":"ASSET14","index":"0.000024348515645151"},{"denom":"ASSET15","index":"0.000019305257093893"},{"denom":"ASSET16","index":"0.000011824039078448"},{"denom":"ASSET17","index":"0.000009337874135725"},{"denom":"ASSET18","index":"0.000003825021517438"},{"denom":"ASSET2","index":"0.000008092644314938"},{"denom":"ASSET3","index":"0.000002240059115813"},{"denom":"ASSET4","index":"0.000021626536887159"},{"denom":"ASSET5","index":"0.000001745574888449"},{"denom":"ASSET6","index":"0.000007040920669072"},{"denom":"ASSET7","index":"0.000011079696231301"},{"denom":"ASSET8","index":"0.000015176664815864"},{"denom":"ASSET9","index":"0.000006434669973810"}],"last_reward_claim_height":"148"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","denom":"ASSET16","shares":"115554572.488018153783587519","reward_history":[{"denom":"ASSET0","index":"0.000003140601357292"},{"denom":"ASSET1","index":"0.000026678854887219"},{"denom":"ASSET10","index":"0.000021467437308134"},{"denom":"ASSET11","index":"0.000026557150856893"},{"denom":"ASSET12","index":"0.000025409189778577"},{"denom":"ASSET13","index":"0.000008348678217638"},{"denom":"ASSET14","index":"0.000024348515645151"},{"denom":"ASSET15","index":"0.000019305257093893"},{"denom":"ASSET16","index":"0.000011824039078448"},{"denom":"ASSET17","index":"0.000009337874135725"},{"denom":"ASSET18","index":"0.000003825021517438"},{"denom":"ASSET2","index":"0.000008092644314938"},{"denom":"ASSET3","index":"0.000002240059115813"},{"denom":"ASSET4","index":"0.000021626536887159"},{"denom":"ASSET5","index":"0.000001745574888449"},{"denom":"ASSET6","index":"0.000007040920669072"},{"denom":"ASSET7","index":"0.000011079696231301"},{"denom":"ASSET8","index":"0.000015176664815864"},{"denom":"ASSET9","index":"0.000006434669973810"}],"last_reward_claim_height":"155"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET1","shares":"237983163.000000000000000000","reward_history":[],"last_reward_claim_height":"63"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET6","shares":"291367058.992000246134177012","reward_history":[{"denom":"ASSET0","index":"0.000002978674281858"},{"denom":"ASSET1","index":"0.000025310372422717"},{"denom":"ASSET10","index":"0.000020411345436720"},{"denom":"ASSET11","index":"0.000025206262983954"},{"denom":"ASSET12","index":"0.000024139567910062"},{"denom":"ASSET13","index":"0.000007924745788344"},{"denom":"ASSET14","index":"0.000023102636423037"},{"denom":"ASSET15","index":"0.000018346974201526"},{"denom":"ASSET16","index":"0.000011213830154915"},{"denom":"ASSET17","index":"0.000008871351161454"},{"denom":"ASSET18","index":"0.000003625142276595"},{"denom":"ASSET2","index":"0.000007680838181843"},{"denom":"ASSET3","index":"0.000002123796319816"},{"denom":"ASSET4","index":"0.000020514843977806"},{"denom":"ASSET5","index":"0.000001655567492872"},{"denom":"ASSET6","index":"0.000006676037052519"},{"denom":"ASSET7","index":"0.000010510115662832"},{"denom":"ASSET8","index":"0.000014407133239162"},{"denom":"ASSET9","index":"0.000006107008804836"}],"last_reward_claim_height":"136"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET10","shares":"143671806.225932186156057796","reward_history":[{"denom":"ASSET0","index":"0.000004571301207273"},{"denom":"ASSET1","index":"0.000037398660191278"},{"denom":"ASSET10","index":"0.000032687755580364"},{"denom":"ASSET11","index":"0.000038977675941701"},{"denom":"ASSET12","index":"0.000037204809376495"},{"denom":"ASSET13","index":"0.000012591938399451"},{"denom":"ASSET14","index":"0.000035936287844387"},{"denom":"ASSET15","index":"0.000029303202324073"},{"denom":"ASSET16","index":"0.000016581018522800"},{"denom":"ASSET17","index":"0.000013510277910648"},{"denom":"ASSET18","index":"0.000005573586522557"},{"denom":"ASSET2","index":"0.000011303144015187"},{"denom":"ASSET3","index":"0.000003243979553262"},{"denom":"ASSET4","index":"0.000030664188630460"},{"denom":"ASSET5","index":"0.000002548911246263"},{"denom":"ASSET6","index":"0.000010403330372967"},{"denom":"ASSET7","index":"0.000016081578326893"},{"denom":"ASSET8","index":"0.000023245084416019"},{"denom":"ASSET9","index":"0.000009298675918452"}],"last_reward_claim_height":"195"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","denom":"ASSET16","shares":"78277577.042201701754808282","reward_history":[{"denom":"ASSET0","index":"0.000002978674281858"},{"denom":"ASSET1","index":"0.000025310372422717"},{"denom":"ASSET10","index":"0.000020411345436720"},{"denom":"ASSET11","index":"0.000025206262983954"},{"denom":"ASSET12","index":"0.000024139567910062"},{"denom":"ASSET13","index":"0.000007924745788344"},{"denom":"ASSET14","index":"0.000023102636423037"},{"denom":"ASSET15","index":"0.000018346974201526"},{"denom":"ASSET16","index":"0.000011213830154915"},{"denom":"ASSET17","index":"0.000008871351161454"},{"denom":"ASSET18","index":"0.000003625142276595"},{"denom":"ASSET2","index":"0.000007680838181843"},{"denom":"ASSET3","index":"0.000002123796319816"},{"denom":"ASSET4","index":"0.000020514843977806"},{"denom":"ASSET5","index":"0.000001655567492872"},{"denom":"ASSET6","index":"0.000006676037052519"},{"denom":"ASSET7","index":"0.000010510115662832"},{"denom":"ASSET8","index":"0.000014407133239162"},{"denom":"ASSET9","index":"0.000006107008804836"}],"last_reward_claim_height":"169"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET2","shares":"231895322.210983573090038839","reward_history":[{"denom":"ASSET0","index":"0.000003115193601728"},{"denom":"ASSET1","index":"0.000026433576226141"},{"denom":"ASSET10","index":"0.000021120836274624"},{"denom":"ASSET11","index":"0.000026274076149270"},{"denom":"ASSET12","index":"0.000025063206789151"},{"denom":"ASSET13","index":"0.000008253838888439"},{"denom":"ASSET14","index":"0.000024111622086359"},{"denom":"ASSET15","index":"0.000019020166052921"},{"denom":"ASSET16","index":"0.000011725264187843"},{"denom":"ASSET17","index":"0.000009210335248597"},{"denom":"ASSET18","index":"0.000003802618681808"},{"denom":"ASSET2","index":"0.000008007094168018"},{"denom":"ASSET3","index":"0.000002223045227271"},{"denom":"ASSET4","index":"0.000021430343290469"},{"denom":"ASSET5","index":"0.000001731871182363"},{"denom":"ASSET6","index":"0.000006989160352022"},{"denom":"ASSET7","index":"0.000010981276608696"},{"denom":"ASSET8","index":"0.000015004007461071"},{"denom":"ASSET9","index":"0.000006368316319391"}],"last_reward_claim_height":"127"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET9","shares":"394327814.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003115193601728"},{"denom":"ASSET1","index":"0.000026433576226141"},{"denom":"ASSET10","index":"0.000021120836274624"},{"denom":"ASSET11","index":"0.000026274076149270"},{"denom":"ASSET12","index":"0.000025063206789151"},{"denom":"ASSET13","index":"0.000008253838888439"},{"denom":"ASSET14","index":"0.000024111622086359"},{"denom":"ASSET15","index":"0.000019020166052921"},{"denom":"ASSET16","index":"0.000011725264187843"},{"denom":"ASSET17","index":"0.000009210335248597"},{"denom":"ASSET18","index":"0.000003802618681808"},{"denom":"ASSET2","index":"0.000008007094168018"},{"denom":"ASSET3","index":"0.000002223045227271"},{"denom":"ASSET4","index":"0.000021430343290469"},{"denom":"ASSET5","index":"0.000001731871182363"},{"denom":"ASSET6","index":"0.000006989160352022"},{"denom":"ASSET7","index":"0.000010981276608696"},{"denom":"ASSET8","index":"0.000015004007461071"},{"denom":"ASSET9","index":"0.000006368316319391"}],"last_reward_claim_height":"150"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","denom":"ASSET15","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003115193601728"},{"denom":"ASSET1","index":"0.000026433576226141"},{"denom":"ASSET10","index":"0.000021120836274624"},{"denom":"ASSET11","index":"0.000026274076149270"},{"denom":"ASSET12","index":"0.000025063206789151"},{"denom":"ASSET13","index":"0.000008253838888439"},{"denom":"ASSET14","index":"0.000024111622086359"},{"denom":"ASSET15","index":"0.000019020166052921"},{"denom":"ASSET16","index":"0.000011725264187843"},{"denom":"ASSET17","index":"0.000009210335248597"},{"denom":"ASSET18","index":"0.000003802618681808"},{"denom":"ASSET2","index":"0.000008007094168018"},{"denom":"ASSET3","index":"0.000002223045227271"},{"denom":"ASSET4","index":"0.000021430343290469"},{"denom":"ASSET5","index":"0.000001731871182363"},{"denom":"ASSET6","index":"0.000006989160352022"},{"denom":"ASSET7","index":"0.000010981276608696"},{"denom":"ASSET8","index":"0.000015004007461071"},{"denom":"ASSET9","index":"0.000006368316319391"}],"last_reward_claim_height":"125"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET0","shares":"69589658.100450321996692380","reward_history":[{"denom":"ASSET0","index":"0.000001688791638136"},{"denom":"ASSET1","index":"0.000014080258863939"},{"denom":"ASSET10","index":"0.000009809129194434"},{"denom":"ASSET11","index":"0.000013620783833550"},{"denom":"ASSET12","index":"0.000012265553395360"},{"denom":"ASSET13","index":"0.000004220322334414"},{"denom":"ASSET14","index":"0.000012723923918464"},{"denom":"ASSET15","index":"0.000009096721995874"},{"denom":"ASSET16","index":"0.000006342080828109"},{"denom":"ASSET17","index":"0.000004504180706554"},{"denom":"ASSET18","index":"0.000002144953146672"},{"denom":"ASSET2","index":"0.000004156260911908"},{"denom":"ASSET3","index":"0.000001214958013048"},{"denom":"ASSET4","index":"0.000011442695468341"},{"denom":"ASSET5","index":"0.000000943249221039"},{"denom":"ASSET6","index":"0.000003840371828516"},{"denom":"ASSET7","index":"0.000005881501290436"},{"denom":"ASSET8","index":"0.000007675221120608"},{"denom":"ASSET9","index":"0.000003314626361051"}],"last_reward_claim_height":"107"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET1","shares":"247585928.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004944013332327"},{"denom":"ASSET1","index":"0.000040514572296257"},{"denom":"ASSET10","index":"0.000034983500216774"},{"denom":"ASSET11","index":"0.000042030409881091"},{"denom":"ASSET12","index":"0.000040011826209544"},{"denom":"ASSET13","index":"0.000013544638275826"},{"denom":"ASSET14","index":"0.000038770981448347"},{"denom":"ASSET15","index":"0.000031407830483843"},{"denom":"ASSET16","index":"0.000017976642481408"},{"denom":"ASSET17","index":"0.000014540265092749"},{"denom":"ASSET18","index":"0.000006039382273098"},{"denom":"ASSET2","index":"0.000012231113154221"},{"denom":"ASSET3","index":"0.000003510948218078"},{"denom":"ASSET4","index":"0.000033197360832209"},{"denom":"ASSET5","index":"0.000002756014481548"},{"denom":"ASSET6","index":"0.000011247123077836"},{"denom":"ASSET7","index":"0.000017382880386713"},{"denom":"ASSET8","index":"0.000024978933020084"},{"denom":"ASSET9","index":"0.000010039663368988"}],"last_reward_claim_height":"185"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET3","shares":"417837309.000000000515624000","reward_history":[{"denom":"ASSET0","index":"0.000001688791638136"},{"denom":"ASSET1","index":"0.000014080258863939"},{"denom":"ASSET10","index":"0.000009809129194434"},{"denom":"ASSET11","index":"0.000013620783833550"},{"denom":"ASSET12","index":"0.000012265553395360"},{"denom":"ASSET13","index":"0.000004220322334414"},{"denom":"ASSET14","index":"0.000012723923918464"},{"denom":"ASSET15","index":"0.000009096721995874"},{"denom":"ASSET16","index":"0.000006342080828109"},{"denom":"ASSET17","index":"0.000004504180706554"},{"denom":"ASSET18","index":"0.000002144953146672"},{"denom":"ASSET2","index":"0.000004156260911908"},{"denom":"ASSET3","index":"0.000001214958013048"},{"denom":"ASSET4","index":"0.000011442695468341"},{"denom":"ASSET5","index":"0.000000943249221039"},{"denom":"ASSET6","index":"0.000003840371828516"},{"denom":"ASSET7","index":"0.000005881501290436"},{"denom":"ASSET8","index":"0.000007675221120608"},{"denom":"ASSET9","index":"0.000003314626361051"}],"last_reward_claim_height":"117"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET5","shares":"42765353.568847951078806990","reward_history":[{"denom":"ASSET0","index":"0.000003342989987813"},{"denom":"ASSET1","index":"0.000028363859076608"},{"denom":"ASSET10","index":"0.000022643596968544"},{"denom":"ASSET11","index":"0.000028187678804911"},{"denom":"ASSET12","index":"0.000026879157824253"},{"denom":"ASSET13","index":"0.000008853292918908"},{"denom":"ASSET14","index":"0.000025870927331183"},{"denom":"ASSET15","index":"0.000020395094195043"},{"denom":"ASSET16","index":"0.000012581780801373"},{"denom":"ASSET17","index":"0.000009877287329505"},{"denom":"ASSET18","index":"0.000004080927248291"},{"denom":"ASSET2","index":"0.000008590241612281"},{"denom":"ASSET3","index":"0.000002384972961476"},{"denom":"ASSET4","index":"0.000022995501297970"},{"denom":"ASSET5","index":"0.000001858071035633"},{"denom":"ASSET6","index":"0.000007500418590266"},{"denom":"ASSET7","index":"0.000011782462758670"},{"denom":"ASSET8","index":"0.000016095075530395"},{"denom":"ASSET9","index":"0.000006831506736707"}],"last_reward_claim_height":"162"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET10","shares":"1000160276.182069403000000000","reward_history":[{"denom":"ASSET0","index":"0.000003342989987813"},{"denom":"ASSET1","index":"0.000028363859076608"},{"denom":"ASSET10","index":"0.000022643596968544"},{"denom":"ASSET11","index":"0.000028187678804911"},{"denom":"ASSET12","index":"0.000026879157824253"},{"denom":"ASSET13","index":"0.000008853292918908"},{"denom":"ASSET14","index":"0.000025870927331183"},{"denom":"ASSET15","index":"0.000020395094195043"},{"denom":"ASSET16","index":"0.000012581780801373"},{"denom":"ASSET17","index":"0.000009877287329505"},{"denom":"ASSET18","index":"0.000004080927248291"},{"denom":"ASSET2","index":"0.000008590241612281"},{"denom":"ASSET3","index":"0.000002384972961476"},{"denom":"ASSET4","index":"0.000022995501297970"},{"denom":"ASSET5","index":"0.000001858071035633"},{"denom":"ASSET6","index":"0.000007500418590266"},{"denom":"ASSET7","index":"0.000011782462758670"},{"denom":"ASSET8","index":"0.000016095075530395"},{"denom":"ASSET9","index":"0.000006831506736707"}],"last_reward_claim_height":"170"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","denom":"ASSET13","shares":"681589615.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003342989987813"},{"denom":"ASSET1","index":"0.000028363859076608"},{"denom":"ASSET10","index":"0.000022643596968544"},{"denom":"ASSET11","index":"0.000028187678804911"},{"denom":"ASSET12","index":"0.000026879157824253"},{"denom":"ASSET13","index":"0.000008853292918908"},{"denom":"ASSET14","index":"0.000025870927331183"},{"denom":"ASSET15","index":"0.000020395094195043"},{"denom":"ASSET16","index":"0.000012581780801373"},{"denom":"ASSET17","index":"0.000009877287329505"},{"denom":"ASSET18","index":"0.000004080927248291"},{"denom":"ASSET2","index":"0.000008590241612281"},{"denom":"ASSET3","index":"0.000002384972961476"},{"denom":"ASSET4","index":"0.000022995501297970"},{"denom":"ASSET5","index":"0.000001858071035633"},{"denom":"ASSET6","index":"0.000007500418590266"},{"denom":"ASSET7","index":"0.000011782462758670"},{"denom":"ASSET8","index":"0.000016095075530395"},{"denom":"ASSET9","index":"0.000006831506736707"}],"last_reward_claim_height":"134"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","denom":"ASSET10","shares":"382374354.823278801951638070","reward_history":[{"denom":"ASSET0","index":"0.000003113134051861"},{"denom":"ASSET1","index":"0.000026415094552464"},{"denom":"ASSET10","index":"0.000021090707465492"},{"denom":"ASSET11","index":"0.000026251548228726"},{"denom":"ASSET12","index":"0.000025034408517114"},{"denom":"ASSET13","index":"0.000008245703890405"},{"denom":"ASSET14","index":"0.000024093200316600"},{"denom":"ASSET15","index":"0.000018995578271326"},{"denom":"ASSET16","index":"0.000011717396138812"},{"denom":"ASSET17","index":"0.000009199501798709"},{"denom":"ASSET18","index":"0.000003801350346824"},{"denom":"ASSET2","index":"0.000007999912620195"},{"denom":"ASSET3","index":"0.000002221641081089"},{"denom":"ASSET4","index":"0.000021415082747190"},{"denom":"ASSET5","index":"0.000001730738444371"},{"denom":"ASSET6","index":"0.000006985361363625"},{"denom":"ASSET7","index":"0.000010973556930807"},{"denom":"ASSET8","index":"0.000014990236718633"},{"denom":"ASSET9","index":"0.000006362695679170"}],"last_reward_claim_height":"145"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET3","shares":"597345039.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003023961266495"},{"denom":"ASSET1","index":"0.000025674667559579"},{"denom":"ASSET10","index":"0.000020567435721356"},{"denom":"ASSET11","index":"0.000025532965784321"},{"denom":"ASSET12","index":"0.000024383768132692"},{"denom":"ASSET13","index":"0.000008022807352722"},{"denom":"ASSET14","index":"0.000023423766496233"},{"denom":"ASSET15","index":"0.000018512228577533"},{"denom":"ASSET16","index":"0.000011384524743973"},{"denom":"ASSET17","index":"0.000008960010456843"},{"denom":"ASSET18","index":"0.000003688974211121"},{"denom":"ASSET2","index":"0.000007780619396113"},{"denom":"ASSET3","index":"0.000002157718690670"},{"denom":"ASSET4","index":"0.000020813357966886"},{"denom":"ASSET5","index":"0.000001681323481152"},{"denom":"ASSET6","index":"0.000006783427048921"},{"denom":"ASSET7","index":"0.000010664665966441"},{"denom":"ASSET8","index":"0.000014584270248941"},{"denom":"ASSET9","index":"0.000006187655866052"}],"last_reward_claim_height":"165"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET15","shares":"473984860.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003023961266495"},{"denom":"ASSET1","index":"0.000025674667559579"},{"denom":"ASSET10","index":"0.000020567435721356"},{"denom":"ASSET11","index":"0.000025532965784321"},{"denom":"ASSET12","index":"0.000024383768132692"},{"denom":"ASSET13","index":"0.000008022807352722"},{"denom":"ASSET14","index":"0.000023423766496233"},{"denom":"ASSET15","index":"0.000018512228577533"},{"denom":"ASSET16","index":"0.000011384524743973"},{"denom":"ASSET17","index":"0.000008960010456843"},{"denom":"ASSET18","index":"0.000003688974211121"},{"denom":"ASSET2","index":"0.000007780619396113"},{"denom":"ASSET3","index":"0.000002157718690670"},{"denom":"ASSET4","index":"0.000020813357966886"},{"denom":"ASSET5","index":"0.000001681323481152"},{"denom":"ASSET6","index":"0.000006783427048921"},{"denom":"ASSET7","index":"0.000010664665966441"},{"denom":"ASSET8","index":"0.000014584270248941"},{"denom":"ASSET9","index":"0.000006187655866052"}],"last_reward_claim_height":"182"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","denom":"ASSET18","shares":"917887321.786318877290686221","reward_history":[{"denom":"ASSET0","index":"0.000003023961266495"},{"denom":"ASSET1","index":"0.000025674667559579"},{"denom":"ASSET10","index":"0.000020567435721356"},{"denom":"ASSET11","index":"0.000025532965784321"},{"denom":"ASSET12","index":"0.000024383768132692"},{"denom":"ASSET13","index":"0.000008022807352722"},{"denom":"ASSET14","index":"0.000023423766496233"},{"denom":"ASSET15","index":"0.000018512228577533"},{"denom":"ASSET16","index":"0.000011384524743973"},{"denom":"ASSET17","index":"0.000008960010456843"},{"denom":"ASSET18","index":"0.000003688974211121"},{"denom":"ASSET2","index":"0.000007780619396113"},{"denom":"ASSET3","index":"0.000002157718690670"},{"denom":"ASSET4","index":"0.000020813357966886"},{"denom":"ASSET5","index":"0.000001681323481152"},{"denom":"ASSET6","index":"0.000006783427048921"},{"denom":"ASSET7","index":"0.000010664665966441"},{"denom":"ASSET8","index":"0.000014584270248941"},{"denom":"ASSET9","index":"0.000006187655866052"}],"last_reward_claim_height":"144"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET5","shares":"292778614.417754320853281275","reward_history":[{"denom":"ASSET0","index":"0.000001789525520762"},{"denom":"ASSET1","index":"0.000014923544215299"},{"denom":"ASSET10","index":"0.000010397506905977"},{"denom":"ASSET11","index":"0.000014436898494348"},{"denom":"ASSET12","index":"0.000013000171779235"},{"denom":"ASSET13","index":"0.000004474200642702"},{"denom":"ASSET14","index":"0.000013486043818595"},{"denom":"ASSET15","index":"0.000009642393672833"},{"denom":"ASSET16","index":"0.000006722519347127"},{"denom":"ASSET17","index":"0.000004774389100140"},{"denom":"ASSET18","index":"0.000002273850196939"},{"denom":"ASSET2","index":"0.000004405342981073"},{"denom":"ASSET3","index":"0.000001288179849576"},{"denom":"ASSET4","index":"0.000012128232625798"},{"denom":"ASSET5","index":"0.000001000370297599"},{"denom":"ASSET6","index":"0.000004071112533615"},{"denom":"ASSET7","index":"0.000006234326262993"},{"denom":"ASSET8","index":"0.000008135261932908"},{"denom":"ASSET9","index":"0.000003514061787852"}],"last_reward_claim_height":"79"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET8","shares":"270906066.222357685558882079","reward_history":[{"denom":"ASSET0","index":"0.000003488279034648"},{"denom":"ASSET1","index":"0.000029592208548275"},{"denom":"ASSET10","index":"0.000023577626976592"},{"denom":"ASSET11","index":"0.000029395914355993"},{"denom":"ASSET12","index":"0.000028007798530295"},{"denom":"ASSET13","index":"0.000009231498766276"},{"denom":"ASSET14","index":"0.000026986732997785"},{"denom":"ASSET15","index":"0.000021244630549189"},{"denom":"ASSET16","index":"0.000013129960095172"},{"denom":"ASSET17","index":"0.000010292381952670"},{"denom":"ASSET18","index":"0.000004261641431672"},{"denom":"ASSET2","index":"0.000008958343988321"},{"denom":"ASSET3","index":"0.000002489657102823"},{"denom":"ASSET4","index":"0.000023991917258738"},{"denom":"ASSET5","index":"0.000001939742890351"},{"denom":"ASSET6","index":"0.000007829259808535"},{"denom":"ASSET7","index":"0.000012294264842111"},{"denom":"ASSET8","index":"0.000016782088113605"},{"denom":"ASSET9","index":"0.000007125719490615"}],"last_reward_claim_height":"128"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET14","shares":"195695751.987513380741129992","reward_history":[{"denom":"ASSET0","index":"0.000001789525520762"},{"denom":"ASSET1","index":"0.000014923544215299"},{"denom":"ASSET10","index":"0.000010397506905977"},{"denom":"ASSET11","index":"0.000014436898494348"},{"denom":"ASSET12","index":"0.000013000171779235"},{"denom":"ASSET13","index":"0.000004474200642702"},{"denom":"ASSET14","index":"0.000013486043818595"},{"denom":"ASSET15","index":"0.000009642393672833"},{"denom":"ASSET16","index":"0.000006722519347127"},{"denom":"ASSET17","index":"0.000004774389100140"},{"denom":"ASSET18","index":"0.000002273850196939"},{"denom":"ASSET2","index":"0.000004405342981073"},{"denom":"ASSET3","index":"0.000001288179849576"},{"denom":"ASSET4","index":"0.000012128232625798"},{"denom":"ASSET5","index":"0.000001000370297599"},{"denom":"ASSET6","index":"0.000004071112533615"},{"denom":"ASSET7","index":"0.000006234326262993"},{"denom":"ASSET8","index":"0.000008135261932908"},{"denom":"ASSET9","index":"0.000003514061787852"}],"last_reward_claim_height":"103"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","denom":"ASSET17","shares":"234268778.423327851469108800","reward_history":[{"denom":"ASSET0","index":"0.000005139957204064"},{"denom":"ASSET1","index":"0.000042128828951282"},{"denom":"ASSET10","index":"0.000036309222023019"},{"denom":"ASSET11","index":"0.000043678274178117"},{"denom":"ASSET12","index":"0.000041557601864682"},{"denom":"ASSET13","index":"0.000014071915592768"},{"denom":"ASSET14","index":"0.000040296399830453"},{"denom":"ASSET15","index":"0.000032607042636394"},{"denom":"ASSET16","index":"0.000018696081265382"},{"denom":"ASSET17","index":"0.000015103521436540"},{"denom":"ASSET18","index":"0.000006282400994781"},{"denom":"ASSET2","index":"0.000012714876215612"},{"denom":"ASSET3","index":"0.000003651406974956"},{"denom":"ASSET4","index":"0.000034517744853571"},{"denom":"ASSET5","index":"0.000002866339638232"},{"denom":"ASSET6","index":"0.000011694803417929"},{"denom":"ASSET7","index":"0.000018072491015786"},{"denom":"ASSET8","index":"0.000025947765120877"},{"denom":"ASSET9","index":"0.000010435616512372"}],"last_reward_claim_height":"200"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET3","shares":"623206234.445381133111765669","reward_history":[{"denom":"ASSET0","index":"0.000001504632489095"},{"denom":"ASSET1","index":"0.000012543084148708"},{"denom":"ASSET10","index":"0.000008738830231438"},{"denom":"ASSET11","index":"0.000012134501498699"},{"denom":"ASSET12","index":"0.000010926897843985"},{"denom":"ASSET13","index":"0.000003760573206331"},{"denom":"ASSET14","index":"0.000011335480493994"},{"denom":"ASSET15","index":"0.000008104451906425"},{"denom":"ASSET16","index":"0.000005650267962622"},{"denom":"ASSET17","index":"0.000004012577307899"},{"denom":"ASSET18","index":"0.000001911199106291"},{"denom":"ASSET2","index":"0.000003702780265705"},{"denom":"ASSET3","index":"0.000001083281631273"},{"denom":"ASSET4","index":"0.000010193733911157"},{"denom":"ASSET5","index":"0.000000840685682831"},{"denom":"ASSET6","index":"0.000003421207682886"},{"denom":"ASSET7","index":"0.000005240341290738"},{"denom":"ASSET8","index":"0.000006837711289210"},{"denom":"ASSET9","index":"0.000002953488070376"}],"last_reward_claim_height":"91"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET12","shares":"213187632.977616532013455270","reward_history":[{"denom":"ASSET0","index":"0.000004555079465444"},{"denom":"ASSET1","index":"0.000037273549067376"},{"denom":"ASSET10","index":"0.000032327684804267"},{"denom":"ASSET11","index":"0.000038750612688183"},{"denom":"ASSET12","index":"0.000036903207760820"},{"denom":"ASSET13","index":"0.000012503456656218"},{"denom":"ASSET14","index":"0.000035748189968481"},{"denom":"ASSET15","index":"0.000029013847228438"},{"denom":"ASSET16","index":"0.000016537106119195"},{"denom":"ASSET17","index":"0.000013404148016668"},{"denom":"ASSET18","index":"0.000005562876043231"},{"denom":"ASSET2","index":"0.000011253659411821"},{"denom":"ASSET3","index":"0.000003234713826536"},{"denom":"ASSET4","index":"0.000030555670866593"},{"denom":"ASSET5","index":"0.000002539995571455"},{"denom":"ASSET6","index":"0.000010366930709039"},{"denom":"ASSET7","index":"0.000016015414742941"},{"denom":"ASSET8","index":"0.000023070708179395"},{"denom":"ASSET9","index":"0.000009250489531619"}],"last_reward_claim_height":"194"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","denom":"ASSET17","shares":"894289051.937715001475231919","reward_history":[{"denom":"ASSET0","index":"0.000001504632489095"},{"denom":"ASSET1","index":"0.000012543084148708"},{"denom":"ASSET10","index":"0.000008738830231438"},{"denom":"ASSET11","index":"0.000012134501498699"},{"denom":"ASSET12","index":"0.000010926897843985"},{"denom":"ASSET13","index":"0.000003760573206331"},{"denom":"ASSET14","index":"0.000011335480493994"},{"denom":"ASSET15","index":"0.000008104451906425"},{"denom":"ASSET16","index":"0.000005650267962622"},{"denom":"ASSET17","index":"0.000004012577307899"},{"denom":"ASSET18","index":"0.000001911199106291"},{"denom":"ASSET2","index":"0.000003702780265705"},{"denom":"ASSET3","index":"0.000001083281631273"},{"denom":"ASSET4","index":"0.000010193733911157"},{"denom":"ASSET5","index":"0.000000840685682831"},{"denom":"ASSET6","index":"0.000003421207682886"},{"denom":"ASSET7","index":"0.000005240341290738"},{"denom":"ASSET8","index":"0.000006837711289210"},{"denom":"ASSET9","index":"0.000002953488070376"}],"last_reward_claim_height":"92"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET0","shares":"677192930.000000246498226520","reward_history":[{"denom":"ASSET0","index":"0.000003452635056994"},{"denom":"ASSET1","index":"0.000029280443630050"},{"denom":"ASSET10","index":"0.000023297581891953"},{"denom":"ASSET11","index":"0.000029078046899152"},{"denom":"ASSET12","index":"0.000027688393753974"},{"denom":"ASSET13","index":"0.000009130247174920"},{"denom":"ASSET14","index":"0.000026700258191979"},{"denom":"ASSET15","index":"0.000020998119885469"},{"denom":"ASSET16","index":"0.000012993858989816"},{"denom":"ASSET17","index":"0.000010174919177657"},{"denom":"ASSET18","index":"0.000004220034662939"},{"denom":"ASSET2","index":"0.000008861755768133"},{"denom":"ASSET3","index":"0.000002464736347038"},{"denom":"ASSET4","index":"0.000023740327943060"},{"denom":"ASSET5","index":"0.000001919615043943"},{"denom":"ASSET6","index":"0.000007749671229698"},{"denom":"ASSET7","index":"0.000012165961282812"},{"denom":"ASSET8","index":"0.000016598407083950"},{"denom":"ASSET9","index":"0.000007048985746822"}],"last_reward_claim_height":"171"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","denom":"ASSET13","shares":"669665407.000000000000000000","reward_history":[],"last_reward_claim_height":"40"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","denom":"ASSET17","shares":"120882753.512472899327311246","reward_history":[{"denom":"ASSET0","index":"0.000001835550145227"},{"denom":"ASSET1","index":"0.000015324623289081"},{"denom":"ASSET10","index":"0.000010676536631006"},{"denom":"ASSET11","index":"0.000014825027987456"},{"denom":"ASSET12","index":"0.000013348446318211"},{"denom":"ASSET13","index":"0.000004592576069005"},{"denom":"ASSET14","index":"0.000013848041619836"},{"denom":"ASSET15","index":"0.000009899388384035"},{"denom":"ASSET16","index":"0.000006901816574290"},{"denom":"ASSET17","index":"0.000004903435367793"},{"denom":"ASSET18","index":"0.000002335145446851"},{"denom":"ASSET2","index":"0.000004522262656184"},{"denom":"ASSET3","index":"0.000001321152019851"},{"denom":"ASSET4","index":"0.000012452875481226"},{"denom":"ASSET5","index":"0.000001025095544814"},{"denom":"ASSET6","index":"0.000004178097003954"},{"denom":"ASSET7","index":"0.000006402221272666"},{"denom":"ASSET8","index":"0.000008352493301969"},{"denom":"ASSET9","index":"0.000003608188289508"}],"last_reward_claim_height":"97"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","denom":"ASSET14","shares":"632227107.198207067154470144","reward_history":[{"denom":"ASSET0","index":"0.000001764742979644"},{"denom":"ASSET1","index":"0.000014715413525055"},{"denom":"ASSET10","index":"0.000010252344388411"},{"denom":"ASSET11","index":"0.000014235671854472"},{"denom":"ASSET12","index":"0.000012819403806098"},{"denom":"ASSET13","index":"0.000004411268809023"},{"denom":"ASSET14","index":"0.000013298556836595"},{"denom":"ASSET15","index":"0.000009507714678855"},{"denom":"ASSET16","index":"0.000006629264655353"},{"denom":"ASSET17","index":"0.000004707943412672"},{"denom":"ASSET18","index":"0.000002242718729968"},{"denom":"ASSET2","index":"0.000004343575199063"},{"denom":"ASSET3","index":"0.000001270873946982"},{"denom":"ASSET4","index":"0.000011958811999481"},{"denom":"ASSET5","index":"0.000000985972145064"},{"denom":"ASSET6","index":"0.000004013936750564"},{"denom":"ASSET7","index":"0.000006147757064510"},{"denom":"ASSET8","index":"0.000008021987100262"},{"denom":"ASSET9","index":"0.000003464735549761"}],"last_reward_claim_height":"112"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET5","shares":"218338015.000000001859659568","reward_history":[],"last_reward_claim_height":"62"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET9","shares":"167740722.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003090388166914"},{"denom":"ASSET1","index":"0.000026235396530584"},{"denom":"ASSET10","index":"0.000021016328726441"},{"denom":"ASSET11","index":"0.000026091077525301"},{"denom":"ASSET12","index":"0.000024916432469284"},{"denom":"ASSET13","index":"0.000008198423394567"},{"denom":"ASSET14","index":"0.000023935350029219"},{"denom":"ASSET15","index":"0.000018916111125702"},{"denom":"ASSET16","index":"0.000011633439861257"},{"denom":"ASSET17","index":"0.000009156707623184"},{"denom":"ASSET18","index":"0.000003769226369030"},{"denom":"ASSET2","index":"0.000007950992094695"},{"denom":"ASSET3","index":"0.000002205065882760"},{"denom":"ASSET4","index":"0.000021268551776440"},{"denom":"ASSET5","index":"0.000001717872208784"},{"denom":"ASSET6","index":"0.000006931889619894"},{"denom":"ASSET7","index":"0.000010897757198785"},{"denom":"ASSET8","index":"0.000014903243728132"},{"denom":"ASSET9","index":"0.000006323427167640"}],"last_reward_claim_height":"150"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET16","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"30"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","denom":"ASSET17","shares":"347531411.880577519237297200","reward_history":[{"denom":"ASSET0","index":"0.000003090388166914"},{"denom":"ASSET1","index":"0.000026235396530584"},{"denom":"ASSET10","index":"0.000021016328726441"},{"denom":"ASSET11","index":"0.000026091077525301"},{"denom":"ASSET12","index":"0.000024916432469284"},{"denom":"ASSET13","index":"0.000008198423394567"},{"denom":"ASSET14","index":"0.000023935350029219"},{"denom":"ASSET15","index":"0.000018916111125702"},{"denom":"ASSET16","index":"0.000011633439861257"},{"denom":"ASSET17","index":"0.000009156707623184"},{"denom":"ASSET18","index":"0.000003769226369030"},{"denom":"ASSET2","index":"0.000007950992094695"},{"denom":"ASSET3","index":"0.000002205065882760"},{"denom":"ASSET4","index":"0.000021268551776440"},{"denom":"ASSET5","index":"0.000001717872208784"},{"denom":"ASSET6","index":"0.000006931889619894"},{"denom":"ASSET7","index":"0.000010897757198785"},{"denom":"ASSET8","index":"0.000014903243728132"},{"denom":"ASSET9","index":"0.000006323427167640"}],"last_reward_claim_height":"159"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET7","shares":"207910561.000000000831642244","reward_history":[{"denom":"ASSET0","index":"0.000001518878942956"},{"denom":"ASSET1","index":"0.000012665267621292"},{"denom":"ASSET10","index":"0.000008823986077449"},{"denom":"ASSET11","index":"0.000012252067733139"},{"denom":"ASSET12","index":"0.000011032961258059"},{"denom":"ASSET13","index":"0.000003796959064490"},{"denom":"ASSET14","index":"0.000011445207974612"},{"denom":"ASSET15","index":"0.000008182978177143"},{"denom":"ASSET16","index":"0.000005705208605625"},{"denom":"ASSET17","index":"0.000004051932467214"},{"denom":"ASSET18","index":"0.000001930172487911"},{"denom":"ASSET2","index":"0.000003738815596953"},{"denom":"ASSET3","index":"0.000001093764409816"},{"denom":"ASSET4","index":"0.000010292823511460"},{"denom":"ASSET5","index":"0.000000848799308881"},{"denom":"ASSET6","index":"0.000003454770460461"},{"denom":"ASSET7","index":"0.000005291055545873"},{"denom":"ASSET8","index":"0.000006904298477127"},{"denom":"ASSET9","index":"0.000002981997347372"}],"last_reward_claim_height":"105"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET11","shares":"72558081.010826431626648600","reward_history":[{"denom":"ASSET0","index":"0.000004580582438832"},{"denom":"ASSET1","index":"0.000037483984288658"},{"denom":"ASSET10","index":"0.000032499660214303"},{"denom":"ASSET11","index":"0.000038965700064047"},{"denom":"ASSET12","index":"0.000037103230568829"},{"denom":"ASSET13","index":"0.000012572310863615"},{"denom":"ASSET14","index":"0.000035948606907820"},{"denom":"ASSET15","index":"0.000029169852951154"},{"denom":"ASSET16","index":"0.000016631043190223"},{"denom":"ASSET17","index":"0.000013476854922794"},{"denom":"ASSET18","index":"0.000005595251304571"},{"denom":"ASSET2","index":"0.000011316458569232"},{"denom":"ASSET3","index":"0.000003252952025465"},{"denom":"ASSET4","index":"0.000030728353795456"},{"denom":"ASSET5","index":"0.000002554509941654"},{"denom":"ASSET6","index":"0.000010426461044140"},{"denom":"ASSET7","index":"0.000016105643609974"},{"denom":"ASSET8","index":"0.000023198729331950"},{"denom":"ASSET9","index":"0.000009302269752593"}],"last_reward_claim_height":"193"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","denom":"ASSET12","shares":"246311955.040533223662462686","reward_history":[{"denom":"ASSET0","index":"0.000004580582438832"},{"denom":"ASSET1","index":"0.000037483984288658"},{"denom":"ASSET10","index":"0.000032499660214303"},{"denom":"ASSET11","index":"0.000038965700064047"},{"denom":"ASSET12","index":"0.000037103230568829"},{"denom":"ASSET13","index":"0.000012572310863615"},{"denom":"ASSET14","index":"0.000035948606907820"},{"denom":"ASSET15","index":"0.000029169852951154"},{"denom":"ASSET16","index":"0.000016631043190223"},{"denom":"ASSET17","index":"0.000013476854922794"},{"denom":"ASSET18","index":"0.000005595251304571"},{"denom":"ASSET2","index":"0.000011316458569232"},{"denom":"ASSET3","index":"0.000003252952025465"},{"denom":"ASSET4","index":"0.000030728353795456"},{"denom":"ASSET5","index":"0.000002554509941654"},{"denom":"ASSET6","index":"0.000010426461044140"},{"denom":"ASSET7","index":"0.000016105643609974"},{"denom":"ASSET8","index":"0.000023198729331950"},{"denom":"ASSET9","index":"0.000009302269752593"}],"last_reward_claim_height":"184"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","denom":"ASSET6","shares":"1000057769.667623553000000000","reward_history":[{"denom":"ASSET0","index":"0.000002847838387483"},{"denom":"ASSET1","index":"0.000024182680336096"},{"denom":"ASSET10","index":"0.000019393227963423"},{"denom":"ASSET11","index":"0.000024054653395269"},{"denom":"ASSET12","index":"0.000022982316432831"},{"denom":"ASSET13","index":"0.000007558836235579"},{"denom":"ASSET14","index":"0.000022064079622497"},{"denom":"ASSET15","index":"0.000017450899901336"},{"denom":"ASSET16","index":"0.000010721434414440"},{"denom":"ASSET17","index":"0.000008446187739031"},{"denom":"ASSET18","index":"0.000003472449339717"},{"denom":"ASSET2","index":"0.000007330038539196"},{"denom":"ASSET3","index":"0.000002031951160271"},{"denom":"ASSET4","index":"0.000019603371773062"},{"denom":"ASSET5","index":"0.000001583403578691"},{"denom":"ASSET6","index":"0.000006387295602350"},{"denom":"ASSET7","index":"0.000010043914419286"},{"denom":"ASSET8","index":"0.000013741733556815"},{"denom":"ASSET9","index":"0.000005829813216311"}],"last_reward_claim_height":"157"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","denom":"ASSET15","shares":"1000000000.000000000000000000","reward_history":[],"last_reward_claim_height":"42"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET2","shares":"449040068.282472924251052045","reward_history":[{"denom":"ASSET0","index":"0.000001711866379191"},{"denom":"ASSET1","index":"0.000014286095556473"},{"denom":"ASSET10","index":"0.000009953932372868"},{"denom":"ASSET11","index":"0.000013820467901333"},{"denom":"ASSET12","index":"0.000012444127332464"},{"denom":"ASSET13","index":"0.000004281948436482"},{"denom":"ASSET14","index":"0.000012909754987604"},{"denom":"ASSET15","index":"0.000009230383516596"},{"denom":"ASSET16","index":"0.000006434335097252"},{"denom":"ASSET17","index":"0.000004569541988186"},{"denom":"ASSET18","index":"0.000002177494034331"},{"denom":"ASSET2","index":"0.000004215756269820"},{"denom":"ASSET3","index":"0.000001232543793017"},{"denom":"ASSET4","index":"0.000011608736539419"},{"denom":"ASSET5","index":"0.000000956362683841"},{"denom":"ASSET6","index":"0.000003896207879038"},{"denom":"ASSET7","index":"0.000005968707442112"},{"denom":"ASSET8","index":"0.000007787850781065"},{"denom":"ASSET9","index":"0.000003362105568731"}],"last_reward_claim_height":"95"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET9","shares":"361855991.282756402809737320","reward_history":[{"denom":"ASSET0","index":"0.000003408995344605"},{"denom":"ASSET1","index":"0.000028940875589883"},{"denom":"ASSET10","index":"0.000023121939135123"},{"denom":"ASSET11","index":"0.000028765460883304"},{"denom":"ASSET12","index":"0.000027437813762181"},{"denom":"ASSET13","index":"0.000009035078182388"},{"denom":"ASSET14","index":"0.000026397840013038"},{"denom":"ASSET15","index":"0.000020822021063845"},{"denom":"ASSET16","index":"0.000012835900360827"},{"denom":"ASSET17","index":"0.000010082289518918"},{"denom":"ASSET18","index":"0.000004163537456367"},{"denom":"ASSET2","index":"0.000008764373535196"},{"denom":"ASSET3","index":"0.000002432999591430"},{"denom":"ASSET4","index":"0.000023461370966582"},{"denom":"ASSET5","index":"0.000001895172356369"},{"denom":"ASSET6","index":"0.000007651446569151"},{"denom":"ASSET7","index":"0.000012022926111771"},{"denom":"ASSET8","index":"0.000016426068411072"},{"denom":"ASSET9","index":"0.000006969965423669"}],"last_reward_claim_height":"134"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET13","shares":"702762568.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001711866379191"},{"denom":"ASSET1","index":"0.000014286095556473"},{"denom":"ASSET10","index":"0.000009953932372868"},{"denom":"ASSET11","index":"0.000013820467901333"},{"denom":"ASSET12","index":"0.000012444127332464"},{"denom":"ASSET13","index":"0.000004281948436482"},{"denom":"ASSET14","index":"0.000012909754987604"},{"denom":"ASSET15","index":"0.000009230383516596"},{"denom":"ASSET16","index":"0.000006434335097252"},{"denom":"ASSET17","index":"0.000004569541988186"},{"denom":"ASSET18","index":"0.000002177494034331"},{"denom":"ASSET2","index":"0.000004215756269820"},{"denom":"ASSET3","index":"0.000001232543793017"},{"denom":"ASSET4","index":"0.000011608736539419"},{"denom":"ASSET5","index":"0.000000956362683841"},{"denom":"ASSET6","index":"0.000003896207879038"},{"denom":"ASSET7","index":"0.000005968707442112"},{"denom":"ASSET8","index":"0.000007787850781065"},{"denom":"ASSET9","index":"0.000003362105568731"}],"last_reward_claim_height":"76"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET17","shares":"234567012.781292818553711800","reward_history":[{"denom":"ASSET0","index":"0.000003408995344605"},{"denom":"ASSET1","index":"0.000028940875589883"},{"denom":"ASSET10","index":"0.000023121939135123"},{"denom":"ASSET11","index":"0.000028765460883304"},{"denom":"ASSET12","index":"0.000027437813762181"},{"denom":"ASSET13","index":"0.000009035078182388"},{"denom":"ASSET14","index":"0.000026397840013038"},{"denom":"ASSET15","index":"0.000020822021063845"},{"denom":"ASSET16","index":"0.000012835900360827"},{"denom":"ASSET17","index":"0.000010082289518918"},{"denom":"ASSET18","index":"0.000004163537456367"},{"denom":"ASSET2","index":"0.000008764373535196"},{"denom":"ASSET3","index":"0.000002432999591430"},{"denom":"ASSET4","index":"0.000023461370966582"},{"denom":"ASSET5","index":"0.000001895172356369"},{"denom":"ASSET6","index":"0.000007651446569151"},{"denom":"ASSET7","index":"0.000012022926111771"},{"denom":"ASSET8","index":"0.000016426068411072"},{"denom":"ASSET9","index":"0.000006969965423669"}],"last_reward_claim_height":"151"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","denom":"ASSET18","shares":"526197188.351662028043165653","reward_history":[{"denom":"ASSET0","index":"0.000001711866379191"},{"denom":"ASSET1","index":"0.000014286095556473"},{"denom":"ASSET10","index":"0.000009953932372868"},{"denom":"ASSET11","index":"0.000013820467901333"},{"denom":"ASSET12","index":"0.000012444127332464"},{"denom":"ASSET13","index":"0.000004281948436482"},{"denom":"ASSET14","index":"0.000012909754987604"},{"denom":"ASSET15","index":"0.000009230383516596"},{"denom":"ASSET16","index":"0.000006434335097252"},{"denom":"ASSET17","index":"0.000004569541988186"},{"denom":"ASSET18","index":"0.000002177494034331"},{"denom":"ASSET2","index":"0.000004215756269820"},{"denom":"ASSET3","index":"0.000001232543793017"},{"denom":"ASSET4","index":"0.000011608736539419"},{"denom":"ASSET5","index":"0.000000956362683841"},{"denom":"ASSET6","index":"0.000003896207879038"},{"denom":"ASSET7","index":"0.000005968707442112"},{"denom":"ASSET8","index":"0.000007787850781065"},{"denom":"ASSET9","index":"0.000003362105568731"}],"last_reward_claim_height":"95"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET2","shares":"189879899.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001459800105667"},{"denom":"ASSET1","index":"0.000012176396665923"},{"denom":"ASSET10","index":"0.000008484162206626"},{"denom":"ASSET11","index":"0.000011779823335110"},{"denom":"ASSET12","index":"0.000010607197020722"},{"denom":"ASSET13","index":"0.000003650070053435"},{"denom":"ASSET14","index":"0.000011003770351536"},{"denom":"ASSET15","index":"0.000007867650218206"},{"denom":"ASSET16","index":"0.000005484791497715"},{"denom":"ASSET17","index":"0.000003895079438851"},{"denom":"ASSET18","index":"0.000001855233857943"},{"denom":"ASSET2","index":"0.000003594230705131"},{"denom":"ASSET3","index":"0.000001050691410948"},{"denom":"ASSET4","index":"0.000009896100013746"},{"denom":"ASSET5","index":"0.000000815938232363"},{"denom":"ASSET6","index":"0.000003321871434831"},{"denom":"ASSET7","index":"0.000005087078588365"},{"denom":"ASSET8","index":"0.000006638044976977"},{"denom":"ASSET9","index":"0.000002867179598640"}],"last_reward_claim_height":"101"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET10","shares":"413655394.042173100547291070","reward_history":[{"denom":"ASSET0","index":"0.000001459800105667"},{"denom":"ASSET1","index":"0.000012176396665923"},{"denom":"ASSET10","index":"0.000008484162206626"},{"denom":"ASSET11","index":"0.000011779823335110"},{"denom":"ASSET12","index":"0.000010607197020722"},{"denom":"ASSET13","index":"0.000003650070053435"},{"denom":"ASSET14","index":"0.000011003770351536"},{"denom":"ASSET15","index":"0.000007867650218206"},{"denom":"ASSET16","index":"0.000005484791497715"},{"denom":"ASSET17","index":"0.000003895079438851"},{"denom":"ASSET18","index":"0.000001855233857943"},{"denom":"ASSET2","index":"0.000003594230705131"},{"denom":"ASSET3","index":"0.000001050691410948"},{"denom":"ASSET4","index":"0.000009896100013746"},{"denom":"ASSET5","index":"0.000000815938232363"},{"denom":"ASSET6","index":"0.000003321871434831"},{"denom":"ASSET7","index":"0.000005087078588365"},{"denom":"ASSET8","index":"0.000006638044976977"},{"denom":"ASSET9","index":"0.000002867179598640"}],"last_reward_claim_height":"104"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","denom":"ASSET15","shares":"863679535.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001459800105667"},{"denom":"ASSET1","index":"0.000012176396665923"},{"denom":"ASSET10","index":"0.000008484162206626"},{"denom":"ASSET11","index":"0.000011779823335110"},{"denom":"ASSET12","index":"0.000010607197020722"},{"denom":"ASSET13","index":"0.000003650070053435"},{"denom":"ASSET14","index":"0.000011003770351536"},{"denom":"ASSET15","index":"0.000007867650218206"},{"denom":"ASSET16","index":"0.000005484791497715"},{"denom":"ASSET17","index":"0.000003895079438851"},{"denom":"ASSET18","index":"0.000001855233857943"},{"denom":"ASSET2","index":"0.000003594230705131"},{"denom":"ASSET3","index":"0.000001050691410948"},{"denom":"ASSET4","index":"0.000009896100013746"},{"denom":"ASSET5","index":"0.000000815938232363"},{"denom":"ASSET6","index":"0.000003321871434831"},{"denom":"ASSET7","index":"0.000005087078588365"},{"denom":"ASSET8","index":"0.000006638044976977"},{"denom":"ASSET9","index":"0.000002867179598640"}],"last_reward_claim_height":"91"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET5","shares":"460267926.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001617402557586"},{"denom":"ASSET1","index":"0.000013485147451276"},{"denom":"ASSET10","index":"0.000009395521488362"},{"denom":"ASSET11","index":"0.000013045402724081"},{"denom":"ASSET12","index":"0.000011747619504798"},{"denom":"ASSET13","index":"0.000004042433845849"},{"denom":"ASSET14","index":"0.000012186291683878"},{"denom":"ASSET15","index":"0.000008713380887153"},{"denom":"ASSET16","index":"0.000006074912523982"},{"denom":"ASSET17","index":"0.000004313788518972"},{"denom":"ASSET18","index":"0.000002055002188551"},{"denom":"ASSET2","index":"0.000003980226055173"},{"denom":"ASSET3","index":"0.000001163714704894"},{"denom":"ASSET4","index":"0.000010959296640193"},{"denom":"ASSET5","index":"0.000000903085512923"},{"denom":"ASSET6","index":"0.000003677767486712"},{"denom":"ASSET7","index":"0.000005633022700557"},{"denom":"ASSET8","index":"0.000007351244780963"},{"denom":"ASSET9","index":"0.000003174742420725"}],"last_reward_claim_height":"101"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET11","shares":"679640699.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003091273620954"},{"denom":"ASSET1","index":"0.000026212594205506"},{"denom":"ASSET10","index":"0.000020831747389799"},{"denom":"ASSET11","index":"0.000026024829344923"},{"denom":"ASSET12","index":"0.000024768925461013"},{"denom":"ASSET13","index":"0.000008170539761157"},{"denom":"ASSET14","index":"0.000023900540063840"},{"denom":"ASSET15","index":"0.000018780610027247"},{"denom":"ASSET16","index":"0.000011634658240098"},{"denom":"ASSET17","index":"0.000009101405984603"},{"denom":"ASSET18","index":"0.000003780149264156"},{"denom":"ASSET2","index":"0.000007930960667726"},{"denom":"ASSET3","index":"0.000002206123035767"},{"denom":"ASSET4","index":"0.000021253166889363"},{"denom":"ASSET5","index":"0.000001718500807532"},{"denom":"ASSET6","index":"0.000006939076737962"},{"denom":"ASSET7","index":"0.000010891166816552"},{"denom":"ASSET8","index":"0.000014853628574871"},{"denom":"ASSET9","index":"0.000006308302102729"}],"last_reward_claim_height":"141"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","denom":"ASSET13","shares":"886878912.813143336408888722","reward_history":[{"denom":"ASSET0","index":"0.000004712304863435"},{"denom":"ASSET1","index":"0.000038516862421739"},{"denom":"ASSET10","index":"0.000033327636856773"},{"denom":"ASSET11","index":"0.000040042769224492"},{"denom":"ASSET12","index":"0.000038067581160411"},{"denom":"ASSET13","index":"0.000012921267350758"},{"denom":"ASSET14","index":"0.000036963543894220"},{"denom":"ASSET15","index":"0.000029932685024411"},{"denom":"ASSET16","index":"0.000017097625110945"},{"denom":"ASSET17","index":"0.000013823249488614"},{"denom":"ASSET18","index":"0.000005763288311346"},{"denom":"ASSET2","index":"0.000011617908519758"},{"denom":"ASSET3","index":"0.000003346339926665"},{"denom":"ASSET4","index":"0.000031583806671954"},{"denom":"ASSET5","index":"0.000002627997258659"},{"denom":"ASSET6","index":"0.000010733107053643"},{"denom":"ASSET7","index":"0.000016562310450612"},{"denom":"ASSET8","index":"0.000023849612256254"},{"denom":"ASSET9","index":"0.000009557057241669"}],"last_reward_claim_height":"187"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","denom":"ASSET15","shares":"819369832.006000696804283112","reward_history":[{"denom":"ASSET0","index":"0.000004580604195578"},{"denom":"ASSET1","index":"0.000037467407266582"},{"denom":"ASSET10","index":"0.000032540876274858"},{"denom":"ASSET11","index":"0.000038977321346432"},{"denom":"ASSET12","index":"0.000037123502258906"},{"denom":"ASSET13","index":"0.000012581243323829"},{"denom":"ASSET14","index":"0.000035957810703484"},{"denom":"ASSET15","index":"0.000029201582176456"},{"denom":"ASSET16","index":"0.000016622648974655"},{"denom":"ASSET17","index":"0.000013482713768574"},{"denom":"ASSET18","index":"0.000005593801439345"},{"denom":"ASSET2","index":"0.000011312321226872"},{"denom":"ASSET3","index":"0.000003252156988555"},{"denom":"ASSET4","index":"0.000030718296740206"},{"denom":"ASSET5","index":"0.000002554157985732"},{"denom":"ASSET6","index":"0.000010426952466130"},{"denom":"ASSET7","index":"0.000016105730271489"},{"denom":"ASSET8","index":"0.000023219107262404"},{"denom":"ASSET9","index":"0.000009302979106515"}],"last_reward_claim_height":"186"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET0","shares":"141110206.292368778791277934","reward_history":[{"denom":"ASSET0","index":"0.000001470615438656"},{"denom":"ASSET1","index":"0.000012263141624205"},{"denom":"ASSET10","index":"0.000008543710077270"},{"denom":"ASSET11","index":"0.000011863435889596"},{"denom":"ASSET12","index":"0.000010682701378752"},{"denom":"ASSET13","index":"0.000003676538596641"},{"denom":"ASSET14","index":"0.000011081935762259"},{"denom":"ASSET15","index":"0.000007923412026863"},{"denom":"ASSET16","index":"0.000005524234917004"},{"denom":"ASSET17","index":"0.000003923055223056"},{"denom":"ASSET18","index":"0.000001868907119959"},{"denom":"ASSET2","index":"0.000003619976464385"},{"denom":"ASSET3","index":"0.000001058654575392"},{"denom":"ASSET4","index":"0.000009965776352407"},{"denom":"ASSET5","index":"0.000000822036322121"},{"denom":"ASSET6","index":"0.000003345178771841"},{"denom":"ASSET7","index":"0.000005123115129088"},{"denom":"ASSET8","index":"0.000006685172681558"},{"denom":"ASSET9","index":"0.000002887496851669"}],"last_reward_claim_height":"93"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET7","shares":"666989248.999999983325268775","reward_history":[{"denom":"ASSET0","index":"0.000001470615438656"},{"denom":"ASSET1","index":"0.000012263141624205"},{"denom":"ASSET10","index":"0.000008543710077270"},{"denom":"ASSET11","index":"0.000011863435889596"},{"denom":"ASSET12","index":"0.000010682701378752"},{"denom":"ASSET13","index":"0.000003676538596641"},{"denom":"ASSET14","index":"0.000011081935762259"},{"denom":"ASSET15","index":"0.000007923412026863"},{"denom":"ASSET16","index":"0.000005524234917004"},{"denom":"ASSET17","index":"0.000003923055223056"},{"denom":"ASSET18","index":"0.000001868907119959"},{"denom":"ASSET2","index":"0.000003619976464385"},{"denom":"ASSET3","index":"0.000001058654575392"},{"denom":"ASSET4","index":"0.000009965776352407"},{"denom":"ASSET5","index":"0.000000822036322121"},{"denom":"ASSET6","index":"0.000003345178771841"},{"denom":"ASSET7","index":"0.000005123115129088"},{"denom":"ASSET8","index":"0.000006685172681558"},{"denom":"ASSET9","index":"0.000002887496851669"}],"last_reward_claim_height":"107"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","denom":"ASSET10","shares":"351511869.083068250387504138","reward_history":[{"denom":"ASSET0","index":"0.000002995147819628"},{"denom":"ASSET1","index":"0.000025426980115999"},{"denom":"ASSET10","index":"0.000020372034738960"},{"denom":"ASSET11","index":"0.000025287989623967"},{"denom":"ASSET12","index":"0.000024150599022202"},{"denom":"ASSET13","index":"0.000007946076587902"},{"denom":"ASSET14","index":"0.000023198024872944"},{"denom":"ASSET15","index":"0.000018335727027304"},{"denom":"ASSET16","index":"0.000011274635486105"},{"denom":"ASSET17","index":"0.000008875015361763"},{"denom":"ASSET18","index":"0.000003653177061349"},{"denom":"ASSET2","index":"0.000007706361997735"},{"denom":"ASSET3","index":"0.000002137037997503"},{"denom":"ASSET4","index":"0.000020612735071168"},{"denom":"ASSET5","index":"0.000001665450131859"},{"denom":"ASSET6","index":"0.000006718182222688"},{"denom":"ASSET7","index":"0.000010561635089256"},{"denom":"ASSET8","index":"0.000014445035982826"},{"denom":"ASSET9","index":"0.000006128513210961"}],"last_reward_claim_height":"158"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET6","shares":"284374601.754586565815586136","reward_history":[{"denom":"ASSET0","index":"0.000001778581753434"},{"denom":"ASSET1","index":"0.000014888315804569"},{"denom":"ASSET10","index":"0.000010370885153828"},{"denom":"ASSET11","index":"0.000014404007158094"},{"denom":"ASSET12","index":"0.000012967781516823"},{"denom":"ASSET13","index":"0.000004458979607201"},{"denom":"ASSET14","index":"0.000013452090163298"},{"denom":"ASSET15","index":"0.000009619371736884"},{"denom":"ASSET16","index":"0.000006705169708956"},{"denom":"ASSET17","index":"0.000004759584973979"},{"denom":"ASSET18","index":"0.000002262890399909"},{"denom":"ASSET2","index":"0.000004392178414584"},{"denom":"ASSET3","index":"0.000001285922957882"},{"denom":"ASSET4","index":"0.000012099366012799"},{"denom":"ASSET5","index":"0.000000993667740182"},{"denom":"ASSET6","index":"0.000004058172451498"},{"denom":"ASSET7","index":"0.000006220861062481"},{"denom":"ASSET8","index":"0.000008116344902996"},{"denom":"ASSET9","index":"0.000003507062612406"}],"last_reward_claim_height":"123"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET9","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003356752793751"},{"denom":"ASSET1","index":"0.000028516406305775"},{"denom":"ASSET10","index":"0.000022616173055400"},{"denom":"ASSET11","index":"0.000028302061322789"},{"denom":"ASSET12","index":"0.000026910491325102"},{"denom":"ASSET13","index":"0.000008878873421079"},{"denom":"ASSET14","index":"0.000025995251505598"},{"denom":"ASSET15","index":"0.000020398635157595"},{"denom":"ASSET16","index":"0.000012658071469071"},{"denom":"ASSET17","index":"0.000009885849877285"},{"denom":"ASSET18","index":"0.000004110010202724"},{"denom":"ASSET2","index":"0.000008622285743228"},{"denom":"ASSET3","index":"0.000002402314047495"},{"denom":"ASSET4","index":"0.000023121698220749"},{"denom":"ASSET5","index":"0.000001866482592061"},{"denom":"ASSET6","index":"0.000007549939309511"},{"denom":"ASSET7","index":"0.000011851024307599"},{"denom":"ASSET8","index":"0.000016149793693754"},{"denom":"ASSET9","index":"0.000006862325287189"}],"last_reward_claim_height":"124"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","denom":"ASSET14","shares":"72839370.787516347432893802","reward_history":[{"denom":"ASSET0","index":"0.000003356752793751"},{"denom":"ASSET1","index":"0.000028516406305775"},{"denom":"ASSET10","index":"0.000022616173055400"},{"denom":"ASSET11","index":"0.000028302061322789"},{"denom":"ASSET12","index":"0.000026910491325102"},{"denom":"ASSET13","index":"0.000008878873421079"},{"denom":"ASSET14","index":"0.000025995251505598"},{"denom":"ASSET15","index":"0.000020398635157595"},{"denom":"ASSET16","index":"0.000012658071469071"},{"denom":"ASSET17","index":"0.000009885849877285"},{"denom":"ASSET18","index":"0.000004110010202724"},{"denom":"ASSET2","index":"0.000008622285743228"},{"denom":"ASSET3","index":"0.000002402314047495"},{"denom":"ASSET4","index":"0.000023121698220749"},{"denom":"ASSET5","index":"0.000001866482592061"},{"denom":"ASSET6","index":"0.000007549939309511"},{"denom":"ASSET7","index":"0.000011851024307599"},{"denom":"ASSET8","index":"0.000016149793693754"},{"denom":"ASSET9","index":"0.000006862325287189"}],"last_reward_claim_height":"172"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET0","shares":"586670177.472293100179061081","reward_history":[{"denom":"ASSET0","index":"0.000001604942959288"},{"denom":"ASSET1","index":"0.000013380628695124"},{"denom":"ASSET10","index":"0.000009322365613635"},{"denom":"ASSET11","index":"0.000012944148427984"},{"denom":"ASSET12","index":"0.000011656280789193"},{"denom":"ASSET13","index":"0.000004011353995308"},{"denom":"ASSET14","index":"0.000012091757653420"},{"denom":"ASSET15","index":"0.000008645319498111"},{"denom":"ASSET16","index":"0.000006027692148913"},{"denom":"ASSET17","index":"0.000004280767677439"},{"denom":"ASSET18","index":"0.000002039165569874"},{"denom":"ASSET2","index":"0.000003949895566889"},{"denom":"ASSET3","index":"0.000001155418454280"},{"denom":"ASSET4","index":"0.000010873877367808"},{"denom":"ASSET5","index":"0.000000896791353463"},{"denom":"ASSET6","index":"0.000003649878095912"},{"denom":"ASSET7","index":"0.000005589957628131"},{"denom":"ASSET8","index":"0.000007294237475803"},{"denom":"ASSET9","index":"0.000003150685146712"}],"last_reward_claim_height":"93"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET4","shares":"25133022.000000000025133022","reward_history":[],"last_reward_claim_height":"41"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET5","shares":"661804412.792921742365527310","reward_history":[{"denom":"ASSET0","index":"0.000003200268554223"},{"denom":"ASSET1","index":"0.000027155061035589"},{"denom":"ASSET10","index":"0.000021699312128992"},{"denom":"ASSET11","index":"0.000026991580254755"},{"denom":"ASSET12","index":"0.000025748970079650"},{"denom":"ASSET13","index":"0.000008479073830121"},{"denom":"ASSET14","index":"0.000024769827936089"},{"denom":"ASSET15","index":"0.000019540730612944"},{"denom":"ASSET16","index":"0.000012044995213579"},{"denom":"ASSET17","index":"0.000009462424001901"},{"denom":"ASSET18","index":"0.000003906197580725"},{"denom":"ASSET2","index":"0.000008225756082433"},{"denom":"ASSET3","index":"0.000002283784004254"},{"denom":"ASSET4","index":"0.000022014648589339"},{"denom":"ASSET5","index":"0.000001779311895342"},{"denom":"ASSET6","index":"0.000007179475362032"},{"denom":"ASSET7","index":"0.000011280598785262"},{"denom":"ASSET8","index":"0.000015413911362487"},{"denom":"ASSET9","index":"0.000006542247148589"}],"last_reward_claim_height":"145"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET10","shares":"330176255.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001604942959288"},{"denom":"ASSET1","index":"0.000013380628695124"},{"denom":"ASSET10","index":"0.000009322365613635"},{"denom":"ASSET11","index":"0.000012944148427984"},{"denom":"ASSET12","index":"0.000011656280789193"},{"denom":"ASSET13","index":"0.000004011353995308"},{"denom":"ASSET14","index":"0.000012091757653420"},{"denom":"ASSET15","index":"0.000008645319498111"},{"denom":"ASSET16","index":"0.000006027692148913"},{"denom":"ASSET17","index":"0.000004280767677439"},{"denom":"ASSET18","index":"0.000002039165569874"},{"denom":"ASSET2","index":"0.000003949895566889"},{"denom":"ASSET3","index":"0.000001155418454280"},{"denom":"ASSET4","index":"0.000010873877367808"},{"denom":"ASSET5","index":"0.000000896791353463"},{"denom":"ASSET6","index":"0.000003649878095912"},{"denom":"ASSET7","index":"0.000005589957628131"},{"denom":"ASSET8","index":"0.000007294237475803"},{"denom":"ASSET9","index":"0.000003150685146712"}],"last_reward_claim_height":"99"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","denom":"ASSET18","shares":"704901232.100461215826297056","reward_history":[{"denom":"ASSET0","index":"0.000003200268554223"},{"denom":"ASSET1","index":"0.000027155061035589"},{"denom":"ASSET10","index":"0.000021699312128992"},{"denom":"ASSET11","index":"0.000026991580254755"},{"denom":"ASSET12","index":"0.000025748970079650"},{"denom":"ASSET13","index":"0.000008479073830121"},{"denom":"ASSET14","index":"0.000024769827936089"},{"denom":"ASSET15","index":"0.000019540730612944"},{"denom":"ASSET16","index":"0.000012044995213579"},{"denom":"ASSET17","index":"0.000009462424001901"},{"denom":"ASSET18","index":"0.000003906197580725"},{"denom":"ASSET2","index":"0.000008225756082433"},{"denom":"ASSET3","index":"0.000002283784004254"},{"denom":"ASSET4","index":"0.000022014648589339"},{"denom":"ASSET5","index":"0.000001779311895342"},{"denom":"ASSET6","index":"0.000007179475362032"},{"denom":"ASSET7","index":"0.000011280598785262"},{"denom":"ASSET8","index":"0.000015413911362487"},{"denom":"ASSET9","index":"0.000006542247148589"}],"last_reward_claim_height":"144"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET12","shares":"96049846.000000000000000000","reward_history":[],"last_reward_claim_height":"28"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","denom":"ASSET18","shares":"295004375.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004736121968577"},{"denom":"ASSET1","index":"0.000038761893571018"},{"denom":"ASSET10","index":"0.000033507102183548"},{"denom":"ASSET11","index":"0.000040255954218087"},{"denom":"ASSET12","index":"0.000038296483713125"},{"denom":"ASSET13","index":"0.000012981125931500"},{"denom":"ASSET14","index":"0.000037144963211864"},{"denom":"ASSET15","index":"0.000030086100212575"},{"denom":"ASSET16","index":"0.000017200793994088"},{"denom":"ASSET17","index":"0.000013910336551622"},{"denom":"ASSET18","index":"0.000005787660096353"},{"denom":"ASSET2","index":"0.000011696689560653"},{"denom":"ASSET3","index":"0.000003364158799327"},{"denom":"ASSET4","index":"0.000031772510725021"},{"denom":"ASSET5","index":"0.000002640231519377"},{"denom":"ASSET6","index":"0.000010779027652808"},{"denom":"ASSET7","index":"0.000016649985952266"},{"denom":"ASSET8","index":"0.000023948972231982"},{"denom":"ASSET9","index":"0.000009610057695084"}],"last_reward_claim_height":"194"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET1","shares":"70649784.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001565910537906"},{"denom":"ASSET1","index":"0.000013053983025959"},{"denom":"ASSET10","index":"0.000009094819386579"},{"denom":"ASSET11","index":"0.000012628414118813"},{"denom":"ASSET12","index":"0.000011371841840295"},{"denom":"ASSET13","index":"0.000003913403541838"},{"denom":"ASSET14","index":"0.000011796953146466"},{"denom":"ASSET15","index":"0.000008434501179040"},{"denom":"ASSET16","index":"0.000005880630135191"},{"denom":"ASSET17","index":"0.000004176066501732"},{"denom":"ASSET18","index":"0.000001989191440174"},{"denom":"ASSET2","index":"0.000003853457814057"},{"denom":"ASSET3","index":"0.000001127071202473"},{"denom":"ASSET4","index":"0.000010608563413286"},{"denom":"ASSET5","index":"0.000000874933065013"},{"denom":"ASSET6","index":"0.000003561050790760"},{"denom":"ASSET7","index":"0.000005453688425119"},{"denom":"ASSET8","index":"0.000007116152768840"},{"denom":"ASSET9","index":"0.000003073705751932"}],"last_reward_claim_height":"77"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET5","shares":"5616723.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001565910537906"},{"denom":"ASSET1","index":"0.000013053983025959"},{"denom":"ASSET10","index":"0.000009094819386579"},{"denom":"ASSET11","index":"0.000012628414118813"},{"denom":"ASSET12","index":"0.000011371841840295"},{"denom":"ASSET13","index":"0.000003913403541838"},{"denom":"ASSET14","index":"0.000011796953146466"},{"denom":"ASSET15","index":"0.000008434501179040"},{"denom":"ASSET16","index":"0.000005880630135191"},{"denom":"ASSET17","index":"0.000004176066501732"},{"denom":"ASSET18","index":"0.000001989191440174"},{"denom":"ASSET2","index":"0.000003853457814057"},{"denom":"ASSET3","index":"0.000001127071202473"},{"denom":"ASSET4","index":"0.000010608563413286"},{"denom":"ASSET5","index":"0.000000874933065013"},{"denom":"ASSET6","index":"0.000003561050790760"},{"denom":"ASSET7","index":"0.000005453688425119"},{"denom":"ASSET8","index":"0.000007116152768840"},{"denom":"ASSET9","index":"0.000003073705751932"}],"last_reward_claim_height":"103"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET6","shares":"72062732.261613042000582687","reward_history":[{"denom":"ASSET0","index":"0.000003066618221533"},{"denom":"ASSET1","index":"0.000026018563142658"},{"denom":"ASSET10","index":"0.000020743763118655"},{"denom":"ASSET11","index":"0.000025849025514444"},{"denom":"ASSET12","index":"0.000024635604575072"},{"denom":"ASSET13","index":"0.000008118261811936"},{"denom":"ASSET14","index":"0.000023728777879609"},{"denom":"ASSET15","index":"0.000018689177197382"},{"denom":"ASSET16","index":"0.000011544003668418"},{"denom":"ASSET17","index":"0.000009052167825210"},{"denom":"ASSET18","index":"0.000003745930402733"},{"denom":"ASSET2","index":"0.000007877080459743"},{"denom":"ASSET3","index":"0.000002188594145460"},{"denom":"ASSET4","index":"0.000021094338825720"},{"denom":"ASSET5","index":"0.000001705356613908"},{"denom":"ASSET6","index":"0.000006882744986340"},{"denom":"ASSET7","index":"0.000010809249072439"},{"denom":"ASSET8","index":"0.000014757775472241"},{"denom":"ASSET9","index":"0.000006264987011427"}],"last_reward_claim_height":"151"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","denom":"ASSET11","shares":"982475820.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004759172551230"},{"denom":"ASSET1","index":"0.000038864559845537"},{"denom":"ASSET10","index":"0.000033789559914776"},{"denom":"ASSET11","index":"0.000040483498273200"},{"denom":"ASSET12","index":"0.000038519500877358"},{"denom":"ASSET13","index":"0.000013077901294621"},{"denom":"ASSET14","index":"0.000037366902385783"},{"denom":"ASSET15","index":"0.000030331952984765"},{"denom":"ASSET16","index":"0.000017247589073506"},{"denom":"ASSET17","index":"0.000013981748886788"},{"denom":"ASSET18","index":"0.000005816425174292"},{"denom":"ASSET2","index":"0.000011726326503880"},{"denom":"ASSET3","index":"0.000003378996028425"},{"denom":"ASSET4","index":"0.000031879565540339"},{"denom":"ASSET5","index":"0.000002654849092411"},{"denom":"ASSET6","index":"0.000010843826038420"},{"denom":"ASSET7","index":"0.000016729873959345"},{"denom":"ASSET8","index":"0.000024149705961421"},{"denom":"ASSET9","index":"0.000009656726204889"}],"last_reward_claim_height":"188"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET4","shares":"386345854.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001616793771814"},{"denom":"ASSET1","index":"0.000013481664806896"},{"denom":"ASSET10","index":"0.000009392973001731"},{"denom":"ASSET11","index":"0.000013042136425966"},{"denom":"ASSET12","index":"0.000011745108533466"},{"denom":"ASSET13","index":"0.000004041984429535"},{"denom":"ASSET14","index":"0.000012183439289380"},{"denom":"ASSET15","index":"0.000008710326742521"},{"denom":"ASSET16","index":"0.000006073156456940"},{"denom":"ASSET17","index":"0.000004312647683187"},{"denom":"ASSET18","index":"0.000002053926902712"},{"denom":"ASSET2","index":"0.000003979707928695"},{"denom":"ASSET3","index":"0.000001164091515706"},{"denom":"ASSET4","index":"0.000010955873647818"},{"denom":"ASSET5","index":"0.000000903009262183"},{"denom":"ASSET6","index":"0.000003677906424623"},{"denom":"ASSET7","index":"0.000005632430450993"},{"denom":"ASSET8","index":"0.000007349824724165"},{"denom":"ASSET9","index":"0.000003173706292820"}],"last_reward_claim_height":"123"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET6","shares":"156185568.856993466328595033","reward_history":[{"denom":"ASSET0","index":"0.000004628196216454"},{"denom":"ASSET1","index":"0.000037795277380303"},{"denom":"ASSET10","index":"0.000032676632065203"},{"denom":"ASSET11","index":"0.000039304101124319"},{"denom":"ASSET12","index":"0.000037329106659292"},{"denom":"ASSET13","index":"0.000012685957294416"},{"denom":"ASSET14","index":"0.000036296237966481"},{"denom":"ASSET15","index":"0.000029358352032693"},{"denom":"ASSET16","index":"0.000016782013119957"},{"denom":"ASSET17","index":"0.000013552222419598"},{"denom":"ASSET18","index":"0.000005664432888245"},{"denom":"ASSET2","index":"0.000011394866388508"},{"denom":"ASSET3","index":"0.000003287725213992"},{"denom":"ASSET4","index":"0.000030999049090585"},{"denom":"ASSET5","index":"0.000002581694668490"},{"denom":"ASSET6","index":"0.000010547613503465"},{"denom":"ASSET7","index":"0.000016263806219015"},{"denom":"ASSET8","index":"0.000023421280150023"},{"denom":"ASSET9","index":"0.000009378776027781"}],"last_reward_claim_height":"199"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET7","shares":"204837948.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004628196216454"},{"denom":"ASSET1","index":"0.000037795277380303"},{"denom":"ASSET10","index":"0.000032676632065203"},{"denom":"ASSET11","index":"0.000039304101124319"},{"denom":"ASSET12","index":"0.000037329106659292"},{"denom":"ASSET13","index":"0.000012685957294416"},{"denom":"ASSET14","index":"0.000036296237966481"},{"denom":"ASSET15","index":"0.000029358352032693"},{"denom":"ASSET16","index":"0.000016782013119957"},{"denom":"ASSET17","index":"0.000013552222419598"},{"denom":"ASSET18","index":"0.000005664432888245"},{"denom":"ASSET2","index":"0.000011394866388508"},{"denom":"ASSET3","index":"0.000003287725213992"},{"denom":"ASSET4","index":"0.000030999049090585"},{"denom":"ASSET5","index":"0.000002581694668490"},{"denom":"ASSET6","index":"0.000010547613503465"},{"denom":"ASSET7","index":"0.000016263806219015"},{"denom":"ASSET8","index":"0.000023421280150023"},{"denom":"ASSET9","index":"0.000009378776027781"}],"last_reward_claim_height":"196"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET8","shares":"124343670.000000000567770267","reward_history":[],"last_reward_claim_height":"51"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET13","shares":"477052056.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001616793771814"},{"denom":"ASSET1","index":"0.000013481664806896"},{"denom":"ASSET10","index":"0.000009392973001731"},{"denom":"ASSET11","index":"0.000013042136425966"},{"denom":"ASSET12","index":"0.000011745108533466"},{"denom":"ASSET13","index":"0.000004041984429535"},{"denom":"ASSET14","index":"0.000012183439289380"},{"denom":"ASSET15","index":"0.000008710326742521"},{"denom":"ASSET16","index":"0.000006073156456940"},{"denom":"ASSET17","index":"0.000004312647683187"},{"denom":"ASSET18","index":"0.000002053926902712"},{"denom":"ASSET2","index":"0.000003979707928695"},{"denom":"ASSET3","index":"0.000001164091515706"},{"denom":"ASSET4","index":"0.000010955873647818"},{"denom":"ASSET5","index":"0.000000903009262183"},{"denom":"ASSET6","index":"0.000003677906424623"},{"denom":"ASSET7","index":"0.000005632430450993"},{"denom":"ASSET8","index":"0.000007349824724165"},{"denom":"ASSET9","index":"0.000003173706292820"}],"last_reward_claim_height":"97"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET14","shares":"447378376.186648431225333098","reward_history":[{"denom":"ASSET0","index":"0.000003010548827117"},{"denom":"ASSET1","index":"0.000025517681435823"},{"denom":"ASSET10","index":"0.000020207909525991"},{"denom":"ASSET11","index":"0.000025316824190850"},{"denom":"ASSET12","index":"0.000024059273468565"},{"denom":"ASSET13","index":"0.000007945703994160"},{"denom":"ASSET14","index":"0.000023261456497592"},{"denom":"ASSET15","index":"0.000018230653165683"},{"denom":"ASSET16","index":"0.000011330852554208"},{"denom":"ASSET17","index":"0.000008840468160143"},{"denom":"ASSET18","index":"0.000003685449036638"},{"denom":"ASSET2","index":"0.000007715875534239"},{"denom":"ASSET3","index":"0.000002150116713749"},{"denom":"ASSET4","index":"0.000020690763011385"},{"denom":"ASSET5","index":"0.000001674170167376"},{"denom":"ASSET6","index":"0.000006761947340508"},{"denom":"ASSET7","index":"0.000010605047135869"},{"denom":"ASSET8","index":"0.000014444866674878"},{"denom":"ASSET9","index":"0.000006137206230949"}],"last_reward_claim_height":"130"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","denom":"ASSET18","shares":"419644218.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001616793771814"},{"denom":"ASSET1","index":"0.000013481664806896"},{"denom":"ASSET10","index":"0.000009392973001731"},{"denom":"ASSET11","index":"0.000013042136425966"},{"denom":"ASSET12","index":"0.000011745108533466"},{"denom":"ASSET13","index":"0.000004041984429535"},{"denom":"ASSET14","index":"0.000012183439289380"},{"denom":"ASSET15","index":"0.000008710326742521"},{"denom":"ASSET16","index":"0.000006073156456940"},{"denom":"ASSET17","index":"0.000004312647683187"},{"denom":"ASSET18","index":"0.000002053926902712"},{"denom":"ASSET2","index":"0.000003979707928695"},{"denom":"ASSET3","index":"0.000001164091515706"},{"denom":"ASSET4","index":"0.000010955873647818"},{"denom":"ASSET5","index":"0.000000903009262183"},{"denom":"ASSET6","index":"0.000003677906424623"},{"denom":"ASSET7","index":"0.000005632430450993"},{"denom":"ASSET8","index":"0.000007349824724165"},{"denom":"ASSET9","index":"0.000003173706292820"}],"last_reward_claim_height":"116"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","denom":"ASSET17","shares":"665227900.000000029270027600","reward_history":[{"denom":"ASSET0","index":"0.000003202417698287"},{"denom":"ASSET1","index":"0.000027176874960756"},{"denom":"ASSET10","index":"0.000021729724210241"},{"denom":"ASSET11","index":"0.000027016578438308"},{"denom":"ASSET12","index":"0.000025779554956391"},{"denom":"ASSET13","index":"0.000008487649506725"},{"denom":"ASSET14","index":"0.000024790682929963"},{"denom":"ASSET15","index":"0.000019565798539307"},{"denom":"ASSET16","index":"0.000012053877846841"},{"denom":"ASSET17","index":"0.000009473617164606"},{"denom":"ASSET18","index":"0.000003908301251667"},{"denom":"ASSET2","index":"0.000008233254558201"},{"denom":"ASSET3","index":"0.000002285025567503"},{"denom":"ASSET4","index":"0.000022032200437673"},{"denom":"ASSET5","index":"0.000001780306156687"},{"denom":"ASSET6","index":"0.000007184182778940"},{"denom":"ASSET7","index":"0.000011289430429576"},{"denom":"ASSET8","index":"0.000015429251463912"},{"denom":"ASSET9","index":"0.000006548040900334"}],"last_reward_claim_height":"151"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET1","shares":"11459543.000000000000000000","reward_history":[],"last_reward_claim_height":"19"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET6","shares":"324470044.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002874619638549"},{"denom":"ASSET1","index":"0.000024442633186143"},{"denom":"ASSET10","index":"0.000019689737510784"},{"denom":"ASSET11","index":"0.000024334399718263"},{"denom":"ASSET12","index":"0.000023294058494145"},{"denom":"ASSET13","index":"0.000007650065286478"},{"denom":"ASSET14","index":"0.000022306974942610"},{"denom":"ASSET15","index":"0.000017702453996022"},{"denom":"ASSET16","index":"0.000010830667352685"},{"denom":"ASSET17","index":"0.000008561334956642"},{"denom":"ASSET18","index":"0.000003501743239949"},{"denom":"ASSET2","index":"0.000007413384379561"},{"denom":"ASSET3","index":"0.000002050775894848"},{"denom":"ASSET4","index":"0.000019811877393900"},{"denom":"ASSET5","index":"0.000001596563839644"},{"denom":"ASSET6","index":"0.000006447875450380"},{"denom":"ASSET7","index":"0.000010149425285061"},{"denom":"ASSET8","index":"0.000013906577801610"},{"denom":"ASSET9","index":"0.000005896530335304"}],"last_reward_claim_height":"141"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET8","shares":"94202185.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001349258766758"},{"denom":"ASSET1","index":"0.000011264433664868"},{"denom":"ASSET10","index":"0.000007848225297969"},{"denom":"ASSET11","index":"0.000010895650990484"},{"denom":"ASSET12","index":"0.000009811385762205"},{"denom":"ASSET13","index":"0.000003376459336127"},{"denom":"ASSET14","index":"0.000010177960157102"},{"denom":"ASSET15","index":"0.000007278489190238"},{"denom":"ASSET16","index":"0.000005074626261883"},{"denom":"ASSET17","index":"0.000003603912123322"},{"denom":"ASSET18","index":"0.000001715833161655"},{"denom":"ASSET2","index":"0.000003323460628431"},{"denom":"ASSET3","index":"0.000000971642974425"},{"denom":"ASSET4","index":"0.000009153318474981"},{"denom":"ASSET5","index":"0.000000753023305179"},{"denom":"ASSET6","index":"0.000003071716766875"},{"denom":"ASSET7","index":"0.000004705843587499"},{"denom":"ASSET8","index":"0.000006139016974776"},{"denom":"ASSET9","index":"0.000002652143664283"}],"last_reward_claim_height":"108"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET10","shares":"2416646.999999999224627580","reward_history":[],"last_reward_claim_height":"35"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET13","shares":"127343859.000000014485414395","reward_history":[{"denom":"ASSET0","index":"0.000001349258766758"},{"denom":"ASSET1","index":"0.000011264433664868"},{"denom":"ASSET10","index":"0.000007848225297969"},{"denom":"ASSET11","index":"0.000010895650990484"},{"denom":"ASSET12","index":"0.000009811385762205"},{"denom":"ASSET13","index":"0.000003376459336127"},{"denom":"ASSET14","index":"0.000010177960157102"},{"denom":"ASSET15","index":"0.000007278489190238"},{"denom":"ASSET16","index":"0.000005074626261883"},{"denom":"ASSET17","index":"0.000003603912123322"},{"denom":"ASSET18","index":"0.000001715833161655"},{"denom":"ASSET2","index":"0.000003323460628431"},{"denom":"ASSET3","index":"0.000000971642974425"},{"denom":"ASSET4","index":"0.000009153318474981"},{"denom":"ASSET5","index":"0.000000753023305179"},{"denom":"ASSET6","index":"0.000003071716766875"},{"denom":"ASSET7","index":"0.000004705843587499"},{"denom":"ASSET8","index":"0.000006139016974776"},{"denom":"ASSET9","index":"0.000002652143664283"}],"last_reward_claim_height":"110"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","denom":"ASSET16","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002874619638549"},{"denom":"ASSET1","index":"0.000024442633186143"},{"denom":"ASSET10","index":"0.000019689737510784"},{"denom":"ASSET11","index":"0.000024334399718263"},{"denom":"ASSET12","index":"0.000023294058494145"},{"denom":"ASSET13","index":"0.000007650065286478"},{"denom":"ASSET14","index":"0.000022306974942610"},{"denom":"ASSET15","index":"0.000017702453996022"},{"denom":"ASSET16","index":"0.000010830667352685"},{"denom":"ASSET17","index":"0.000008561334956642"},{"denom":"ASSET18","index":"0.000003501743239949"},{"denom":"ASSET2","index":"0.000007413384379561"},{"denom":"ASSET3","index":"0.000002050775894848"},{"denom":"ASSET4","index":"0.000019811877393900"},{"denom":"ASSET5","index":"0.000001596563839644"},{"denom":"ASSET6","index":"0.000006447875450380"},{"denom":"ASSET7","index":"0.000010149425285061"},{"denom":"ASSET8","index":"0.000013906577801610"},{"denom":"ASSET9","index":"0.000005896530335304"}],"last_reward_claim_height":"133"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET5","shares":"1289044611.014706663706527496","reward_history":[{"denom":"ASSET0","index":"0.000005025135283889"},{"denom":"ASSET1","index":"0.000041150902230665"},{"denom":"ASSET10","index":"0.000035503906252523"},{"denom":"ASSET11","index":"0.000042698139065522"},{"denom":"ASSET12","index":"0.000040613177204205"},{"denom":"ASSET13","index":"0.000013762722497172"},{"denom":"ASSET14","index":"0.000039399391051892"},{"denom":"ASSET15","index":"0.000031885867220772"},{"denom":"ASSET16","index":"0.000018264474504804"},{"denom":"ASSET17","index":"0.000014756668842278"},{"denom":"ASSET18","index":"0.000006143633971099"},{"denom":"ASSET2","index":"0.000012417834673698"},{"denom":"ASSET3","index":"0.000003569934151742"},{"denom":"ASSET4","index":"0.000033724592875945"},{"denom":"ASSET5","index":"0.000002802367388675"},{"denom":"ASSET6","index":"0.000011436693406867"},{"denom":"ASSET7","index":"0.000017665780825714"},{"denom":"ASSET8","index":"0.000025384816720225"},{"denom":"ASSET9","index":"0.000010198330599342"}],"last_reward_claim_height":"184"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET7","shares":"624407063.000000000000000000","reward_history":[],"last_reward_claim_height":"52"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET14","shares":"79150702.499285877053862171","reward_history":[{"denom":"ASSET0","index":"0.000003377008276018"},{"denom":"ASSET1","index":"0.000028642142456639"},{"denom":"ASSET10","index":"0.000022800592191853"},{"denom":"ASSET11","index":"0.000028447577997463"},{"denom":"ASSET12","index":"0.000027093635853923"},{"denom":"ASSET13","index":"0.000008933092474106"},{"denom":"ASSET14","index":"0.000026119259559896"},{"denom":"ASSET15","index":"0.000020548756595198"},{"denom":"ASSET16","index":"0.000012710670192565"},{"denom":"ASSET17","index":"0.000009956402105067"},{"denom":"ASSET18","index":"0.000004127475104327"},{"denom":"ASSET2","index":"0.000008669602227225"},{"denom":"ASSET3","index":"0.000002410895003349"},{"denom":"ASSET4","index":"0.000023222264254358"},{"denom":"ASSET5","index":"0.000001877874241403"},{"denom":"ASSET6","index":"0.000007579654674160"},{"denom":"ASSET7","index":"0.000011900488798179"},{"denom":"ASSET8","index":"0.000016239324105118"},{"denom":"ASSET9","index":"0.000006895771583569"}],"last_reward_claim_height":"172"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","denom":"ASSET15","shares":"637908258.299482411182797424","reward_history":[{"denom":"ASSET0","index":"0.000001744355646452"},{"denom":"ASSET1","index":"0.000014544558741461"},{"denom":"ASSET10","index":"0.000010133244841823"},{"denom":"ASSET11","index":"0.000014070651242217"},{"denom":"ASSET12","index":"0.000012670295178174"},{"denom":"ASSET13","index":"0.000004360461787457"},{"denom":"ASSET14","index":"0.000013143775348745"},{"denom":"ASSET15","index":"0.000009397812194213"},{"denom":"ASSET16","index":"0.000006552230555377"},{"denom":"ASSET17","index":"0.000004653181929010"},{"denom":"ASSET18","index":"0.000002216553831001"},{"denom":"ASSET2","index":"0.000004293371185670"},{"denom":"ASSET3","index":"0.000001255918972299"},{"denom":"ASSET4","index":"0.000011819911117312"},{"denom":"ASSET5","index":"0.000000974736704938"},{"denom":"ASSET6","index":"0.000003967319407560"},{"denom":"ASSET7","index":"0.000006076186412764"},{"denom":"ASSET8","index":"0.000007929083542361"},{"denom":"ASSET9","index":"0.000003424611991834"}],"last_reward_claim_height":"88"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET4","shares":"362583211.000000000000000000","reward_history":[],"last_reward_claim_height":"44"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET13","shares":"32389975.126790065329941280","reward_history":[{"denom":"ASSET0","index":"0.000004648504890947"},{"denom":"ASSET1","index":"0.000038005743874569"},{"denom":"ASSET10","index":"0.000032973191285320"},{"denom":"ASSET11","index":"0.000039537922548136"},{"denom":"ASSET12","index":"0.000037627878871705"},{"denom":"ASSET13","index":"0.000012761305026200"},{"denom":"ASSET14","index":"0.000036486034554196"},{"denom":"ASSET15","index":"0.000029598314517611"},{"denom":"ASSET16","index":"0.000016865856154882"},{"denom":"ASSET17","index":"0.000013663949051484"},{"denom":"ASSET18","index":"0.000005680718279797"},{"denom":"ASSET2","index":"0.000011470109605632"},{"denom":"ASSET3","index":"0.000003301336964385"},{"denom":"ASSET4","index":"0.000031164977367323"},{"denom":"ASSET5","index":"0.000002591469654587"},{"denom":"ASSET6","index":"0.000010585594458273"},{"denom":"ASSET7","index":"0.000016342370501086"},{"denom":"ASSET8","index":"0.000023556637867710"},{"denom":"ASSET9","index":"0.000009435212020595"}],"last_reward_claim_height":"193"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET16","shares":"512768306.884591547479953324","reward_history":[{"denom":"ASSET0","index":"0.000003044385892570"},{"denom":"ASSET1","index":"0.000025830014188245"},{"denom":"ASSET10","index":"0.000020607856539150"},{"denom":"ASSET11","index":"0.000025666657138152"},{"denom":"ASSET12","index":"0.000024468008636658"},{"denom":"ASSET13","index":"0.000008060303383676"},{"denom":"ASSET14","index":"0.000023559408638801"},{"denom":"ASSET15","index":"0.000018562848593971"},{"denom":"ASSET16","index":"0.000011459854746185"},{"denom":"ASSET17","index":"0.000008991538648143"},{"denom":"ASSET18","index":"0.000003718456390600"},{"denom":"ASSET2","index":"0.000007821717005664"},{"denom":"ASSET3","index":"0.000002173111618200"},{"denom":"ASSET4","index":"0.000020942104557307"},{"denom":"ASSET5","index":"0.000001691598021351"},{"denom":"ASSET6","index":"0.000006831113312915"},{"denom":"ASSET7","index":"0.000010730587410374"},{"denom":"ASSET8","index":"0.000014654605067850"},{"denom":"ASSET9","index":"0.000006220578615076"}],"last_reward_claim_height":"166"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","denom":"ASSET17","shares":"666104992.709323703384112435","reward_history":[{"denom":"ASSET0","index":"0.000003044385892570"},{"denom":"ASSET1","index":"0.000025830014188245"},{"denom":"ASSET10","index":"0.000020607856539150"},{"denom":"ASSET11","index":"0.000025666657138152"},{"denom":"ASSET12","index":"0.000024468008636658"},{"denom":"ASSET13","index":"0.000008060303383676"},{"denom":"ASSET14","index":"0.000023559408638801"},{"denom":"ASSET15","index":"0.000018562848593971"},{"denom":"ASSET16","index":"0.000011459854746185"},{"denom":"ASSET17","index":"0.000008991538648143"},{"denom":"ASSET18","index":"0.000003718456390600"},{"denom":"ASSET2","index":"0.000007821717005664"},{"denom":"ASSET3","index":"0.000002173111618200"},{"denom":"ASSET4","index":"0.000020942104557307"},{"denom":"ASSET5","index":"0.000001691598021351"},{"denom":"ASSET6","index":"0.000006831113312915"},{"denom":"ASSET7","index":"0.000010730587410374"},{"denom":"ASSET8","index":"0.000014654605067850"},{"denom":"ASSET9","index":"0.000006220578615076"}],"last_reward_claim_height":"145"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET12","shares":"36692941.000000000000000000","reward_history":[],"last_reward_claim_height":"16"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","denom":"ASSET15","shares":"667542314.000000009345592396","reward_history":[{"denom":"ASSET0","index":"0.000001387821916020"},{"denom":"ASSET1","index":"0.000011588015182905"},{"denom":"ASSET10","index":"0.000008073788013584"},{"denom":"ASSET11","index":"0.000011209789038410"},{"denom":"ASSET12","index":"0.000010095957715252"},{"denom":"ASSET13","index":"0.000003472532948668"},{"denom":"ASSET14","index":"0.000010471205701129"},{"denom":"ASSET15","index":"0.000007487090765824"},{"denom":"ASSET16","index":"0.000005220712057474"},{"denom":"ASSET17","index":"0.000003707807479495"},{"denom":"ASSET18","index":"0.000001766048060515"},{"denom":"ASSET2","index":"0.000003418926093543"},{"denom":"ASSET3","index":"0.000001000661295671"},{"denom":"ASSET4","index":"0.000009416937550333"},{"denom":"ASSET5","index":"0.000000774321240698"},{"denom":"ASSET6","index":"0.000003159826293771"},{"denom":"ASSET7","index":"0.000004839507754361"},{"denom":"ASSET8","index":"0.000006316674428923"},{"denom":"ASSET9","index":"0.000002727993294151"}],"last_reward_claim_height":"92"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET3","shares":"971317205.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001500850379058"},{"denom":"ASSET1","index":"0.000012511793460183"},{"denom":"ASSET10","index":"0.000008717304800227"},{"denom":"ASSET11","index":"0.000012103632089176"},{"denom":"ASSET12","index":"0.000010899320696303"},{"denom":"ASSET13","index":"0.000003750781099635"},{"denom":"ASSET14","index":"0.000011306809643305"},{"denom":"ASSET15","index":"0.000008083881387560"},{"denom":"ASSET16","index":"0.000005636258009526"},{"denom":"ASSET17","index":"0.000004002940101492"},{"denom":"ASSET18","index":"0.000001906322054045"},{"denom":"ASSET2","index":"0.000003692952635209"},{"denom":"ASSET3","index":"0.000001079912951956"},{"denom":"ASSET4","index":"0.000010167723378913"},{"denom":"ASSET5","index":"0.000000838512734178"},{"denom":"ASSET6","index":"0.000003412551825143"},{"denom":"ASSET7","index":"0.000005226751790509"},{"denom":"ASSET8","index":"0.000006820396682251"},{"denom":"ASSET9","index":"0.000002945889565704"}],"last_reward_claim_height":"121"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","denom":"ASSET9","shares":"145430033.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003004514310835"},{"denom":"ASSET1","index":"0.000025497942224476"},{"denom":"ASSET10","index":"0.000020385999177782"},{"denom":"ASSET11","index":"0.000025346802479017"},{"denom":"ASSET12","index":"0.000024185328023735"},{"denom":"ASSET13","index":"0.000007962788555043"},{"denom":"ASSET14","index":"0.000023259189454501"},{"denom":"ASSET15","index":"0.000018355567065709"},{"denom":"ASSET16","index":"0.000011309092459120"},{"denom":"ASSET17","index":"0.000008887662321727"},{"denom":"ASSET18","index":"0.000003666570499762"},{"denom":"ASSET2","index":"0.000007723995884874"},{"denom":"ASSET3","index":"0.000002143405494402"},{"denom":"ASSET4","index":"0.000020670641097733"},{"denom":"ASSET5","index":"0.000001670336124344"},{"denom":"ASSET6","index":"0.000006739845385808"},{"denom":"ASSET7","index":"0.000010591422556410"},{"denom":"ASSET8","index":"0.000014475095162856"},{"denom":"ASSET9","index":"0.000006143360978771"}],"last_reward_claim_height":"178"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","denom":"ASSET5","shares":"1009513.374350558652310500","reward_history":[{"denom":"ASSET0","index":"0.000003064659144392"},{"denom":"ASSET1","index":"0.000026014545525120"},{"denom":"ASSET10","index":"0.000020837902255895"},{"denom":"ASSET11","index":"0.000025870951889592"},{"denom":"ASSET12","index":"0.000024704995690840"},{"denom":"ASSET13","index":"0.000008129050348807"},{"denom":"ASSET14","index":"0.000023733606076391"},{"denom":"ASSET15","index":"0.000018755969892396"},{"denom":"ASSET16","index":"0.000011535737727926"},{"denom":"ASSET17","index":"0.000009078938038909"},{"denom":"ASSET18","index":"0.000003738223548700"},{"denom":"ASSET2","index":"0.000007883998416280"},{"denom":"ASSET3","index":"0.000002186926046113"},{"denom":"ASSET4","index":"0.000021089316501471"},{"denom":"ASSET5","index":"0.000001703791082418"},{"denom":"ASSET6","index":"0.000006873778950624"},{"denom":"ASSET7","index":"0.000010805665377904"},{"denom":"ASSET8","index":"0.000014777724141198"},{"denom":"ASSET9","index":"0.000006269886019705"}],"last_reward_claim_height":"167"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET1","shares":"946428046.000000009464280460","reward_history":[{"denom":"ASSET0","index":"0.000001016570122529"},{"denom":"ASSET1","index":"0.000008477171470527"},{"denom":"ASSET10","index":"0.000005906463519680"},{"denom":"ASSET11","index":"0.000008200989896911"},{"denom":"ASSET12","index":"0.000007384774710599"},{"denom":"ASSET13","index":"0.000002541117067960"},{"denom":"ASSET14","index":"0.000007660956284215"},{"denom":"ASSET15","index":"0.000005477395717812"},{"denom":"ASSET16","index":"0.000003819073322661"},{"denom":"ASSET17","index":"0.000002711881121289"},{"denom":"ASSET18","index":"0.000001291518742692"},{"denom":"ASSET2","index":"0.000002502279034170"},{"denom":"ASSET3","index":"0.000000731757874738"},{"denom":"ASSET4","index":"0.000006889127422234"},{"denom":"ASSET5","index":"0.000000567775065403"},{"denom":"ASSET6","index":"0.000002312404202309"},{"denom":"ASSET7","index":"0.000003541658795591"},{"denom":"ASSET8","index":"0.000004621109544256"},{"denom":"ASSET9","index":"0.000001996151641449"}],"last_reward_claim_height":"68"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","denom":"ASSET10","shares":"198845245.202524732468380416","reward_history":[{"denom":"ASSET0","index":"0.000001016570122529"},{"denom":"ASSET1","index":"0.000008477171470527"},{"denom":"ASSET10","index":"0.000005906463519680"},{"denom":"ASSET11","index":"0.000008200989896911"},{"denom":"ASSET12","index":"0.000007384774710599"},{"denom":"ASSET13","index":"0.000002541117067960"},{"denom":"ASSET14","index":"0.000007660956284215"},{"denom":"ASSET15","index":"0.000005477395717812"},{"denom":"ASSET16","index":"0.000003819073322661"},{"denom":"ASSET17","index":"0.000002711881121289"},{"denom":"ASSET18","index":"0.000001291518742692"},{"denom":"ASSET2","index":"0.000002502279034170"},{"denom":"ASSET3","index":"0.000000731757874738"},{"denom":"ASSET4","index":"0.000006889127422234"},{"denom":"ASSET5","index":"0.000000567775065403"},{"denom":"ASSET6","index":"0.000002312404202309"},{"denom":"ASSET7","index":"0.000003541658795591"},{"denom":"ASSET8","index":"0.000004621109544256"},{"denom":"ASSET9","index":"0.000001996151641449"}],"last_reward_claim_height":"76"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET7","shares":"1363083381.213406420830970498","reward_history":[{"denom":"ASSET0","index":"0.000003043964098015"},{"denom":"ASSET1","index":"0.000025828331615061"},{"denom":"ASSET10","index":"0.000020594675215425"},{"denom":"ASSET11","index":"0.000025661520704142"},{"denom":"ASSET12","index":"0.000024456429429906"},{"denom":"ASSET13","index":"0.000008058244190043"},{"denom":"ASSET14","index":"0.000023555461855486"},{"denom":"ASSET15","index":"0.000018552812657155"},{"denom":"ASSET16","index":"0.000011456604402492"},{"denom":"ASSET17","index":"0.000008987560143691"},{"denom":"ASSET18","index":"0.000003716794339222"},{"denom":"ASSET2","index":"0.000007820148034807"},{"denom":"ASSET3","index":"0.000002173135080244"},{"denom":"ASSET4","index":"0.000020938599170426"},{"denom":"ASSET5","index":"0.000001690207511083"},{"denom":"ASSET6","index":"0.000006829800145738"},{"denom":"ASSET7","index":"0.000010729300481432"},{"denom":"ASSET8","index":"0.000014648719853803"},{"denom":"ASSET9","index":"0.000006217447736766"}],"last_reward_claim_height":"145"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","denom":"ASSET15","shares":"590997001.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001552339226368"},{"denom":"ASSET1","index":"0.000012948480372324"},{"denom":"ASSET10","index":"0.000009021431734191"},{"denom":"ASSET11","index":"0.000012526515146109"},{"denom":"ASSET12","index":"0.000011279099696349"},{"denom":"ASSET13","index":"0.000003880848065920"},{"denom":"ASSET14","index":"0.000011701064922564"},{"denom":"ASSET15","index":"0.000008365383608761"},{"denom":"ASSET16","index":"0.000005830512213323"},{"denom":"ASSET17","index":"0.000004142651308462"},{"denom":"ASSET18","index":"0.000001971224414436"},{"denom":"ASSET2","index":"0.000003822327341117"},{"denom":"ASSET3","index":"0.000001118053847563"},{"denom":"ASSET4","index":"0.000010521410312050"},{"denom":"ASSET5","index":"0.000000865490719463"},{"denom":"ASSET6","index":"0.000003529723717099"},{"denom":"ASSET7","index":"0.000005408546987108"},{"denom":"ASSET8","index":"0.000007056367396050"},{"denom":"ASSET9","index":"0.000003046157727933"}],"last_reward_claim_height":"73"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET8","shares":"512294191.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002320380931676"},{"denom":"ASSET1","index":"0.000019748951316256"},{"denom":"ASSET10","index":"0.000016101172379351"},{"denom":"ASSET11","index":"0.000019714000020718"},{"denom":"ASSET12","index":"0.000018967805559844"},{"denom":"ASSET13","index":"0.000006204998608741"},{"denom":"ASSET14","index":"0.000018041457784230"},{"denom":"ASSET15","index":"0.000014440911570898"},{"denom":"ASSET16","index":"0.000008738221404310"},{"denom":"ASSET17","index":"0.000006970584758543"},{"denom":"ASSET18","index":"0.000002814127990287"},{"denom":"ASSET2","index":"0.000006006105656449"},{"denom":"ASSET3","index":"0.000001653724297068"},{"denom":"ASSET4","index":"0.000016005284799403"},{"denom":"ASSET5","index":"0.000001288969102308"},{"denom":"ASSET6","index":"0.000005195185892122"},{"denom":"ASSET7","index":"0.000008196101819524"},{"denom":"ASSET8","index":"0.000011280171312915"},{"denom":"ASSET9","index":"0.000004774394171461"}],"last_reward_claim_height":"174"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET11","shares":"105163780.000000028920039500","reward_history":[{"denom":"ASSET0","index":"0.000002320380931676"},{"denom":"ASSET1","index":"0.000019748951316256"},{"denom":"ASSET10","index":"0.000016101172379351"},{"denom":"ASSET11","index":"0.000019714000020718"},{"denom":"ASSET12","index":"0.000018967805559844"},{"denom":"ASSET13","index":"0.000006204998608741"},{"denom":"ASSET14","index":"0.000018041457784230"},{"denom":"ASSET15","index":"0.000014440911570898"},{"denom":"ASSET16","index":"0.000008738221404310"},{"denom":"ASSET17","index":"0.000006970584758543"},{"denom":"ASSET18","index":"0.000002814127990287"},{"denom":"ASSET2","index":"0.000006006105656449"},{"denom":"ASSET3","index":"0.000001653724297068"},{"denom":"ASSET4","index":"0.000016005284799403"},{"denom":"ASSET5","index":"0.000001288969102308"},{"denom":"ASSET6","index":"0.000005195185892122"},{"denom":"ASSET7","index":"0.000008196101819524"},{"denom":"ASSET8","index":"0.000011280171312915"},{"denom":"ASSET9","index":"0.000004774394171461"}],"last_reward_claim_height":"171"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET12","shares":"210882598.821469336359558513","reward_history":[{"denom":"ASSET0","index":"0.000002320380931676"},{"denom":"ASSET1","index":"0.000019748951316256"},{"denom":"ASSET10","index":"0.000016101172379351"},{"denom":"ASSET11","index":"0.000019714000020718"},{"denom":"ASSET12","index":"0.000018967805559844"},{"denom":"ASSET13","index":"0.000006204998608741"},{"denom":"ASSET14","index":"0.000018041457784230"},{"denom":"ASSET15","index":"0.000014440911570898"},{"denom":"ASSET16","index":"0.000008738221404310"},{"denom":"ASSET17","index":"0.000006970584758543"},{"denom":"ASSET18","index":"0.000002814127990287"},{"denom":"ASSET2","index":"0.000006006105656449"},{"denom":"ASSET3","index":"0.000001653724297068"},{"denom":"ASSET4","index":"0.000016005284799403"},{"denom":"ASSET5","index":"0.000001288969102308"},{"denom":"ASSET6","index":"0.000005195185892122"},{"denom":"ASSET7","index":"0.000008196101819524"},{"denom":"ASSET8","index":"0.000011280171312915"},{"denom":"ASSET9","index":"0.000004774394171461"}],"last_reward_claim_height":"147"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","denom":"ASSET18","shares":"385825637.000000011188943473","reward_history":[{"denom":"ASSET0","index":"0.000002320380931676"},{"denom":"ASSET1","index":"0.000019748951316256"},{"denom":"ASSET10","index":"0.000016101172379351"},{"denom":"ASSET11","index":"0.000019714000020718"},{"denom":"ASSET12","index":"0.000018967805559844"},{"denom":"ASSET13","index":"0.000006204998608741"},{"denom":"ASSET14","index":"0.000018041457784230"},{"denom":"ASSET15","index":"0.000014440911570898"},{"denom":"ASSET16","index":"0.000008738221404310"},{"denom":"ASSET17","index":"0.000006970584758543"},{"denom":"ASSET18","index":"0.000002814127990287"},{"denom":"ASSET2","index":"0.000006006105656449"},{"denom":"ASSET3","index":"0.000001653724297068"},{"denom":"ASSET4","index":"0.000016005284799403"},{"denom":"ASSET5","index":"0.000001288969102308"},{"denom":"ASSET6","index":"0.000005195185892122"},{"denom":"ASSET7","index":"0.000008196101819524"},{"denom":"ASSET8","index":"0.000011280171312915"},{"denom":"ASSET9","index":"0.000004774394171461"}],"last_reward_claim_height":"146"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET1","shares":"669396400.330020247154474640","reward_history":[{"denom":"ASSET0","index":"0.000004988100402711"},{"denom":"ASSET1","index":"0.000040830811222204"},{"denom":"ASSET10","index":"0.000035211557233449"},{"denom":"ASSET11","index":"0.000042368225765116"},{"denom":"ASSET12","index":"0.000040283068049268"},{"denom":"ASSET13","index":"0.000013656840057503"},{"denom":"ASSET14","index":"0.000039101529800040"},{"denom":"ASSET15","index":"0.000031628202661313"},{"denom":"ASSET16","index":"0.000018124368514983"},{"denom":"ASSET17","index":"0.000014635120510330"},{"denom":"ASSET18","index":"0.000006099363487354"},{"denom":"ASSET2","index":"0.000012317983770908"},{"denom":"ASSET3","index":"0.000003543214603465"},{"denom":"ASSET4","index":"0.000033464976861775"},{"denom":"ASSET5","index":"0.000002781716792708"},{"denom":"ASSET6","index":"0.000011353508340787"},{"denom":"ASSET7","index":"0.000017532655976265"},{"denom":"ASSET8","index":"0.000025192183938276"},{"denom":"ASSET9","index":"0.000010118614836237"}],"last_reward_claim_height":"199"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET4","shares":"591836245.000000000000000000","reward_history":[],"last_reward_claim_height":"23"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET12","shares":"709493511.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003342998947188"},{"denom":"ASSET1","index":"0.000028345782457833"},{"denom":"ASSET10","index":"0.000022532322238539"},{"denom":"ASSET11","index":"0.000028144588841629"},{"denom":"ASSET12","index":"0.000026788988923046"},{"denom":"ASSET13","index":"0.000008836278349189"},{"denom":"ASSET14","index":"0.000025846526421467"},{"denom":"ASSET15","index":"0.000020312521464953"},{"denom":"ASSET16","index":"0.000012581099317360"},{"denom":"ASSET17","index":"0.000009844015126225"},{"denom":"ASSET18","index":"0.000004087085525414"},{"denom":"ASSET2","index":"0.000008577030596387"},{"denom":"ASSET3","index":"0.000002386540105172"},{"denom":"ASSET4","index":"0.000022982635628207"},{"denom":"ASSET5","index":"0.000001858980311097"},{"denom":"ASSET6","index":"0.000007503977785171"},{"denom":"ASSET7","index":"0.000011778054778213"},{"denom":"ASSET8","index":"0.000016064148587518"},{"denom":"ASSET9","index":"0.000006822246648031"}],"last_reward_claim_height":"137"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","denom":"ASSET14","shares":"56596449.005003140889913292","reward_history":[{"denom":"ASSET0","index":"0.000001745798220012"},{"denom":"ASSET1","index":"0.000014553743296829"},{"denom":"ASSET10","index":"0.000010139438249561"},{"denom":"ASSET11","index":"0.000014079320164724"},{"denom":"ASSET12","index":"0.000012678243118663"},{"denom":"ASSET13","index":"0.000004363016060013"},{"denom":"ASSET14","index":"0.000013152173087429"},{"denom":"ASSET15","index":"0.000009403145384454"},{"denom":"ASSET16","index":"0.000006556113428486"},{"denom":"ASSET17","index":"0.000004655955083371"},{"denom":"ASSET18","index":"0.000002217755535422"},{"denom":"ASSET2","index":"0.000004295945845911"},{"denom":"ASSET3","index":"0.000001256580187737"},{"denom":"ASSET4","index":"0.000011827536358912"},{"denom":"ASSET5","index":"0.000000975477084515"},{"denom":"ASSET6","index":"0.000003969964878841"},{"denom":"ASSET7","index":"0.000006080210806364"},{"denom":"ASSET8","index":"0.000007934011797614"},{"denom":"ASSET9","index":"0.000003426498879278"}],"last_reward_claim_height":"112"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET0","shares":"7107959.000000000000000000","reward_history":[],"last_reward_claim_height":"17"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","denom":"ASSET14","shares":"217831832.306960136083803456","reward_history":[{"denom":"ASSET0","index":"0.000004713052793206"},{"denom":"ASSET1","index":"0.000038540515083927"},{"denom":"ASSET10","index":"0.000033490360102272"},{"denom":"ASSET11","index":"0.000040107734635720"},{"denom":"ASSET12","index":"0.000038197935060603"},{"denom":"ASSET13","index":"0.000012948354360272"},{"denom":"ASSET14","index":"0.000037002954624969"},{"denom":"ASSET15","index":"0.000030054303395937"},{"denom":"ASSET16","index":"0.000017098583157054"},{"denom":"ASSET17","index":"0.000013871074640540"},{"denom":"ASSET18","index":"0.000005756151421242"},{"denom":"ASSET2","index":"0.000011635316491200"},{"denom":"ASSET3","index":"0.000003346046298358"},{"denom":"ASSET4","index":"0.000031600919386329"},{"denom":"ASSET5","index":"0.000002627879191745"},{"denom":"ASSET6","index":"0.000010730060131595"},{"denom":"ASSET7","index":"0.000016571778991047"},{"denom":"ASSET8","index":"0.000023899875611587"},{"denom":"ASSET9","index":"0.000009570555980860"}],"last_reward_claim_height":"183"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET4","shares":"732525924.000000000000000000","reward_history":[],"last_reward_claim_height":"51"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET10","shares":"51287476.001490975149288826","reward_history":[{"denom":"ASSET0","index":"0.000003333609736915"},{"denom":"ASSET1","index":"0.000028281729059652"},{"denom":"ASSET10","index":"0.000022560289398652"},{"denom":"ASSET11","index":"0.000028101042421314"},{"denom":"ASSET12","index":"0.000026787599659919"},{"denom":"ASSET13","index":"0.000008826015241086"},{"denom":"ASSET14","index":"0.000025794402991537"},{"denom":"ASSET15","index":"0.000020323143219667"},{"denom":"ASSET16","index":"0.000012547562311789"},{"denom":"ASSET17","index":"0.000009844220733470"},{"denom":"ASSET18","index":"0.000004071528772633"},{"denom":"ASSET2","index":"0.000008563776406339"},{"denom":"ASSET3","index":"0.000002379222276435"},{"denom":"ASSET4","index":"0.000022929058250150"},{"denom":"ASSET5","index":"0.000001853699834530"},{"denom":"ASSET6","index":"0.000007480326246914"},{"denom":"ASSET7","index":"0.000011749530638760"},{"denom":"ASSET8","index":"0.000016044906214881"},{"denom":"ASSET9","index":"0.000006811209452101"}],"last_reward_claim_height":"137"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET17","shares":"2375770.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001694764141112"},{"denom":"ASSET1","index":"0.000014130580032100"},{"denom":"ASSET10","index":"0.000009844524497723"},{"denom":"ASSET11","index":"0.000013669508873851"},{"denom":"ASSET12","index":"0.000012309527666765"},{"denom":"ASSET13","index":"0.000004236016804025"},{"denom":"ASSET14","index":"0.000012769407426673"},{"denom":"ASSET15","index":"0.000009129685492685"},{"denom":"ASSET16","index":"0.000006365641339869"},{"denom":"ASSET17","index":"0.000004520761007698"},{"denom":"ASSET18","index":"0.000002153452502679"},{"denom":"ASSET2","index":"0.000004171085594400"},{"denom":"ASSET3","index":"0.000001219991901933"},{"denom":"ASSET4","index":"0.000011483292916774"},{"denom":"ASSET5","index":"0.000000947161681676"},{"denom":"ASSET6","index":"0.000003854173635500"},{"denom":"ASSET7","index":"0.000005903378783277"},{"denom":"ASSET8","index":"0.000007702985978462"},{"denom":"ASSET9","index":"0.000003326979869284"}],"last_reward_claim_height":"80"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","denom":"ASSET18","shares":"674282711.999999997977151864","reward_history":[],"last_reward_claim_height":"33"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","denom":"ASSET0","shares":"533769751.018359568315470069","reward_history":[{"denom":"ASSET0","index":"0.000003372790294110"},{"denom":"ASSET1","index":"0.000028600279733511"},{"denom":"ASSET10","index":"0.000022731421090197"},{"denom":"ASSET11","index":"0.000028396190348540"},{"denom":"ASSET12","index":"0.000027027392524280"},{"denom":"ASSET13","index":"0.000008915082315276"},{"denom":"ASSET14","index":"0.000026078776667620"},{"denom":"ASSET15","index":"0.000020492230414373"},{"denom":"ASSET16","index":"0.000012694274413467"},{"denom":"ASSET17","index":"0.000009931274832025"},{"denom":"ASSET18","index":"0.000004123939856338"},{"denom":"ASSET2","index":"0.000008653658587521"},{"denom":"ASSET3","index":"0.000002407864000528"},{"denom":"ASSET4","index":"0.000023189126720885"},{"denom":"ASSET5","index":"0.000001875419633234"},{"denom":"ASSET6","index":"0.000007571725921487"},{"denom":"ASSET7","index":"0.000011883748947250"},{"denom":"ASSET8","index":"0.000016207221904670"},{"denom":"ASSET9","index":"0.000006883201227023"}],"last_reward_claim_height":"147"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","denom":"ASSET4","shares":"20468735.749576279103945725","reward_history":[{"denom":"ASSET0","index":"0.000003036454064443"},{"denom":"ASSET1","index":"0.000025762443856573"},{"denom":"ASSET10","index":"0.000020552854458451"},{"denom":"ASSET11","index":"0.000025598594042577"},{"denom":"ASSET12","index":"0.000024403233064712"},{"denom":"ASSET13","index":"0.000008040226829205"},{"denom":"ASSET14","index":"0.000023496526683137"},{"denom":"ASSET15","index":"0.000018514610345002"},{"denom":"ASSET16","index":"0.000011429420030088"},{"denom":"ASSET17","index":"0.000008967792958730"},{"denom":"ASSET18","index":"0.000003708688180539"},{"denom":"ASSET2","index":"0.000007801450355100"},{"denom":"ASSET3","index":"0.000002167197324698"},{"denom":"ASSET4","index":"0.000020886439041228"},{"denom":"ASSET5","index":"0.000001688395026424"},{"denom":"ASSET6","index":"0.000006814112030993"},{"denom":"ASSET7","index":"0.000010703097412338"},{"denom":"ASSET8","index":"0.000014616213118562"},{"denom":"ASSET9","index":"0.000006204650488693"}],"last_reward_claim_height":"137"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET2","shares":"614227458.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003500919125422"},{"denom":"ASSET1","index":"0.000029708744113596"},{"denom":"ASSET10","index":"0.000023658219501850"},{"denom":"ASSET11","index":"0.000029508250092955"},{"denom":"ASSET12","index":"0.000028107871580940"},{"denom":"ASSET13","index":"0.000009266072102552"},{"denom":"ASSET14","index":"0.000027092614384257"},{"denom":"ASSET15","index":"0.000021318431245277"},{"denom":"ASSET16","index":"0.000013180724612002"},{"denom":"ASSET17","index":"0.000010330094773179"},{"denom":"ASSET18","index":"0.000004277644880979"},{"denom":"ASSET2","index":"0.000008990842831989"},{"denom":"ASSET3","index":"0.000002500335792843"},{"denom":"ASSET4","index":"0.000024086210482120"},{"denom":"ASSET5","index":"0.000001946754653173"},{"denom":"ASSET6","index":"0.000007858889858659"},{"denom":"ASSET7","index":"0.000012341576470869"},{"denom":"ASSET8","index":"0.000016843078118646"},{"denom":"ASSET9","index":"0.000007150129263591"}],"last_reward_claim_height":"141"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET5","shares":"52483328.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003500919125422"},{"denom":"ASSET1","index":"0.000029708744113596"},{"denom":"ASSET10","index":"0.000023658219501850"},{"denom":"ASSET11","index":"0.000029508250092955"},{"denom":"ASSET12","index":"0.000028107871580940"},{"denom":"ASSET13","index":"0.000009266072102552"},{"denom":"ASSET14","index":"0.000027092614384257"},{"denom":"ASSET15","index":"0.000021318431245277"},{"denom":"ASSET16","index":"0.000013180724612002"},{"denom":"ASSET17","index":"0.000010330094773179"},{"denom":"ASSET18","index":"0.000004277644880979"},{"denom":"ASSET2","index":"0.000008990842831989"},{"denom":"ASSET3","index":"0.000002500335792843"},{"denom":"ASSET4","index":"0.000024086210482120"},{"denom":"ASSET5","index":"0.000001946754653173"},{"denom":"ASSET6","index":"0.000007858889858659"},{"denom":"ASSET7","index":"0.000012341576470869"},{"denom":"ASSET8","index":"0.000016843078118646"},{"denom":"ASSET9","index":"0.000007150129263591"}],"last_reward_claim_height":"163"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","denom":"ASSET6","shares":"307197709.000000000000000000","reward_history":[],"last_reward_claim_height":"54"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET6","shares":"390594201.753381442445907125","reward_history":[{"denom":"ASSET0","index":"0.000001563811170888"},{"denom":"ASSET1","index":"0.000013038374863878"},{"denom":"ASSET10","index":"0.000009083864212622"},{"denom":"ASSET11","index":"0.000012612362006834"},{"denom":"ASSET12","index":"0.000011358137819015"},{"denom":"ASSET13","index":"0.000003908204905926"},{"denom":"ASSET14","index":"0.000011781504633469"},{"denom":"ASSET15","index":"0.000008423676586333"},{"denom":"ASSET16","index":"0.000005872891529250"},{"denom":"ASSET17","index":"0.000004170163122369"},{"denom":"ASSET18","index":"0.000001987177985342"},{"denom":"ASSET2","index":"0.000003848668947643"},{"denom":"ASSET3","index":"0.000001125891122188"},{"denom":"ASSET4","index":"0.000010596077552999"},{"denom":"ASSET5","index":"0.000000873194054811"},{"denom":"ASSET6","index":"0.000003556281241411"},{"denom":"ASSET7","index":"0.000005446878672206"},{"denom":"ASSET8","index":"0.000007107270397641"},{"denom":"ASSET9","index":"0.000003069409404789"}],"last_reward_claim_height":"100"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET9","shares":"623427293.000000000000000000","reward_history":[],"last_reward_claim_height":"41"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","denom":"ASSET15","shares":"284282841.000000000000000000","reward_history":[],"last_reward_claim_height":"40"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET3","shares":"425669249.316625952107984244","reward_history":[{"denom":"ASSET0","index":"0.000001600184479142"},{"denom":"ASSET1","index":"0.000013342157474081"},{"denom":"ASSET10","index":"0.000009295060662992"},{"denom":"ASSET11","index":"0.000012907134644369"},{"denom":"ASSET12","index":"0.000011622469236023"},{"denom":"ASSET13","index":"0.000003999732516397"},{"denom":"ASSET14","index":"0.000012056763384279"},{"denom":"ASSET15","index":"0.000008620301633991"},{"denom":"ASSET16","index":"0.000006010164655719"},{"denom":"ASSET17","index":"0.000004268615973958"},{"denom":"ASSET18","index":"0.000002033021264483"},{"denom":"ASSET2","index":"0.000003938523274026"},{"denom":"ASSET3","index":"0.000001152045383207"},{"denom":"ASSET4","index":"0.000010842780077243"},{"denom":"ASSET5","index":"0.000000894092147498"},{"denom":"ASSET6","index":"0.000003639035195279"},{"denom":"ASSET7","index":"0.000005573684463094"},{"denom":"ASSET8","index":"0.000007272969620361"},{"denom":"ASSET9","index":"0.000003141345760282"}],"last_reward_claim_height":"119"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","denom":"ASSET10","shares":"1000160276.534203064000000000","reward_history":[{"denom":"ASSET0","index":"0.000003037978324998"},{"denom":"ASSET1","index":"0.000025756345113171"},{"denom":"ASSET10","index":"0.000020449699671521"},{"denom":"ASSET11","index":"0.000025567125107120"},{"denom":"ASSET12","index":"0.000024323299608917"},{"denom":"ASSET13","index":"0.000008026089638757"},{"denom":"ASSET14","index":"0.000023482777870484"},{"denom":"ASSET15","index":"0.000018439819094125"},{"denom":"ASSET16","index":"0.000011433094032389"},{"denom":"ASSET17","index":"0.000008938487942114"},{"denom":"ASSET18","index":"0.000003715472889790"},{"denom":"ASSET2","index":"0.000007791978720736"},{"denom":"ASSET3","index":"0.000002168844641333"},{"denom":"ASSET4","index":"0.000020883291069830"},{"denom":"ASSET5","index":"0.000001689134510364"},{"denom":"ASSET6","index":"0.000006819968009550"},{"denom":"ASSET7","index":"0.000010702337477897"},{"denom":"ASSET8","index":"0.000014590947163921"},{"denom":"ASSET9","index":"0.000006197850437110"}],"last_reward_claim_height":"183"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET2","shares":"738651702.000000000000000000","reward_history":[],"last_reward_claim_height":"35"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET9","shares":"292255188.612839518149779710","reward_history":[{"denom":"ASSET0","index":"0.000003203314564743"},{"denom":"ASSET1","index":"0.000027174750089688"},{"denom":"ASSET10","index":"0.000021494761442080"},{"denom":"ASSET11","index":"0.000026954579685264"},{"denom":"ASSET12","index":"0.000025598519259277"},{"denom":"ASSET13","index":"0.000008453363478510"},{"denom":"ASSET14","index":"0.000024766008219885"},{"denom":"ASSET15","index":"0.000019395989679368"},{"denom":"ASSET16","index":"0.000012063312986412"},{"denom":"ASSET17","index":"0.000009406957788586"},{"denom":"ASSET18","index":"0.000003925664786352"},{"denom":"ASSET2","index":"0.000008214094571203"},{"denom":"ASSET3","index":"0.000002289770772075"},{"denom":"ASSET4","index":"0.000022031271429646"},{"denom":"ASSET5","index":"0.000001779377444361"},{"denom":"ASSET6","index":"0.000007202120906665"},{"denom":"ASSET7","index":"0.000011290805949933"},{"denom":"ASSET8","index":"0.000015376618183469"},{"denom":"ASSET9","index":"0.000006529467958809"}],"last_reward_claim_height":"176"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET10","shares":"488328711.649502768957236664","reward_history":[{"denom":"ASSET0","index":"0.000001732863553160"},{"denom":"ASSET1","index":"0.000014476512568697"},{"denom":"ASSET10","index":"0.000010084697727409"},{"denom":"ASSET11","index":"0.000014004946421444"},{"denom":"ASSET12","index":"0.000012607292539223"},{"denom":"ASSET13","index":"0.000004334999642824"},{"denom":"ASSET14","index":"0.000013078858686476"},{"denom":"ASSET15","index":"0.000009351781667220"},{"denom":"ASSET16","index":"0.000006516703263852"},{"denom":"ASSET17","index":"0.000004630438674838"},{"denom":"ASSET18","index":"0.000002204429700414"},{"denom":"ASSET2","index":"0.000004272502924514"},{"denom":"ASSET3","index":"0.000001249934366214"},{"denom":"ASSET4","index":"0.000011760746082105"},{"denom":"ASSET5","index":"0.000000965858373893"},{"denom":"ASSET6","index":"0.000003948656293267"},{"denom":"ASSET7","index":"0.000006045137116599"},{"denom":"ASSET8","index":"0.000007891631066688"},{"denom":"ASSET9","index":"0.000003403230388010"}],"last_reward_claim_height":"121"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","denom":"ASSET14","shares":"10701070.801484377626404029","reward_history":[{"denom":"ASSET0","index":"0.000003203314564743"},{"denom":"ASSET1","index":"0.000027174750089688"},{"denom":"ASSET10","index":"0.000021494761442080"},{"denom":"ASSET11","index":"0.000026954579685264"},{"denom":"ASSET12","index":"0.000025598519259277"},{"denom":"ASSET13","index":"0.000008453363478510"},{"denom":"ASSET14","index":"0.000024766008219885"},{"denom":"ASSET15","index":"0.000019395989679368"},{"denom":"ASSET16","index":"0.000012063312986412"},{"denom":"ASSET17","index":"0.000009406957788586"},{"denom":"ASSET18","index":"0.000003925664786352"},{"denom":"ASSET2","index":"0.000008214094571203"},{"denom":"ASSET3","index":"0.000002289770772075"},{"denom":"ASSET4","index":"0.000022031271429646"},{"denom":"ASSET5","index":"0.000001779377444361"},{"denom":"ASSET6","index":"0.000007202120906665"},{"denom":"ASSET7","index":"0.000011290805949933"},{"denom":"ASSET8","index":"0.000015376618183469"},{"denom":"ASSET9","index":"0.000006529467958809"}],"last_reward_claim_height":"165"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","denom":"ASSET10","shares":"333126043.000000000000000000","reward_history":[],"last_reward_claim_height":"32"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET6","shares":"635567424.397881137993385600","reward_history":[{"denom":"ASSET0","index":"0.000002915106026686"},{"denom":"ASSET1","index":"0.000024751938975568"},{"denom":"ASSET10","index":"0.000019864528416862"},{"denom":"ASSET11","index":"0.000024625253839727"},{"denom":"ASSET12","index":"0.000023534700266806"},{"denom":"ASSET13","index":"0.000007739190454504"},{"denom":"ASSET14","index":"0.000022584902384729"},{"denom":"ASSET15","index":"0.000017872912229645"},{"denom":"ASSET16","index":"0.000010972881933217"},{"denom":"ASSET17","index":"0.000008648586457086"},{"denom":"ASSET18","index":"0.000003552999450219"},{"denom":"ASSET2","index":"0.000007504215303421"},{"denom":"ASSET3","index":"0.000002079538758775"},{"denom":"ASSET4","index":"0.000020065180146540"},{"denom":"ASSET5","index":"0.000001620267199228"},{"denom":"ASSET6","index":"0.000006536798446662"},{"denom":"ASSET7","index":"0.000010280222742310"},{"denom":"ASSET8","index":"0.000014068743113537"},{"denom":"ASSET9","index":"0.000005967789042866"}],"last_reward_claim_height":"177"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","denom":"ASSET17","shares":"814852735.999999998124569146","reward_history":[{"denom":"ASSET0","index":"0.000001411639939639"},{"denom":"ASSET1","index":"0.000011770559134781"},{"denom":"ASSET10","index":"0.000008200405560598"},{"denom":"ASSET11","index":"0.000011386782830640"},{"denom":"ASSET12","index":"0.000010253700018254"},{"denom":"ASSET13","index":"0.000003528795747429"},{"denom":"ASSET14","index":"0.000010636868119061"},{"denom":"ASSET15","index":"0.000007604974496011"},{"denom":"ASSET16","index":"0.000005302316671163"},{"denom":"ASSET17","index":"0.000003765386844594"},{"denom":"ASSET18","index":"0.000001793591633776"},{"denom":"ASSET2","index":"0.000003474665650649"},{"denom":"ASSET3","index":"0.000001016307772140"},{"denom":"ASSET4","index":"0.000009565822046806"},{"denom":"ASSET5","index":"0.000000788839724994"},{"denom":"ASSET6","index":"0.000003210705403426"},{"denom":"ASSET7","index":"0.000004917323960353"},{"denom":"ASSET8","index":"0.000006416545180176"},{"denom":"ASSET9","index":"0.000002771582595835"}],"last_reward_claim_height":"90"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET3","shares":"380349434.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004934519090666"},{"denom":"ASSET1","index":"0.000040427425853445"},{"denom":"ASSET10","index":"0.000034956454364729"},{"denom":"ASSET11","index":"0.000041970150523959"},{"denom":"ASSET12","index":"0.000039953739652645"},{"denom":"ASSET13","index":"0.000013529847026884"},{"denom":"ASSET14","index":"0.000038720039011166"},{"denom":"ASSET15","index":"0.000031380979964511"},{"denom":"ASSET16","index":"0.000017937044208634"},{"denom":"ASSET17","index":"0.000014514779524145"},{"denom":"ASSET18","index":"0.000006029404952774"},{"denom":"ASSET2","index":"0.000012203146861853"},{"denom":"ASSET3","index":"0.000003503504291382"},{"denom":"ASSET4","index":"0.000033131393819799"},{"denom":"ASSET5","index":"0.000002750652351117"},{"denom":"ASSET6","index":"0.000011232838794861"},{"denom":"ASSET7","index":"0.000017353264007807"},{"denom":"ASSET8","index":"0.000024958646702939"},{"denom":"ASSET9","index":"0.000010021543642476"}],"last_reward_claim_height":"192"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET8","shares":"33432511.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003306866574231"},{"denom":"ASSET1","index":"0.000028073670524533"},{"denom":"ASSET10","index":"0.000022410378668975"},{"denom":"ASSET11","index":"0.000027896117796052"},{"denom":"ASSET12","index":"0.000026601615360568"},{"denom":"ASSET13","index":"0.000008760019105133"},{"denom":"ASSET14","index":"0.000025604072816608"},{"denom":"ASSET15","index":"0.000020183975077340"},{"denom":"ASSET16","index":"0.000012452378452775"},{"denom":"ASSET17","index":"0.000009773941069454"},{"denom":"ASSET18","index":"0.000004038323507821"},{"denom":"ASSET2","index":"0.000008501686860316"},{"denom":"ASSET3","index":"0.000002358773872569"},{"denom":"ASSET4","index":"0.000022758821093429"},{"denom":"ASSET5","index":"0.000001837837668790"},{"denom":"ASSET6","index":"0.000007423905647148"},{"denom":"ASSET7","index":"0.000011659308440973"},{"denom":"ASSET8","index":"0.000015926660063085"},{"denom":"ASSET9","index":"0.000006759875068056"}],"last_reward_claim_height":"173"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET10","shares":"121120967.000000000000000000","reward_history":[],"last_reward_claim_height":"6"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","denom":"ASSET12","shares":"421393592.999999993257702512","reward_history":[{"denom":"ASSET0","index":"0.000001670929391506"},{"denom":"ASSET1","index":"0.000013946161101263"},{"denom":"ASSET10","index":"0.000009716355120388"},{"denom":"ASSET11","index":"0.000013489421488305"},{"denom":"ASSET12","index":"0.000012147571569489"},{"denom":"ASSET13","index":"0.000004178741924768"},{"denom":"ASSET14","index":"0.000012601474290441"},{"denom":"ASSET15","index":"0.000009009969010905"},{"denom":"ASSET16","index":"0.000006280878901179"},{"denom":"ASSET17","index":"0.000004459594233357"},{"denom":"ASSET18","index":"0.000002124832112458"},{"denom":"ASSET2","index":"0.000004116330300637"},{"denom":"ASSET3","index":"0.000001202842210524"},{"denom":"ASSET4","index":"0.000011333383563781"},{"denom":"ASSET5","index":"0.000000933337469958"},{"denom":"ASSET6","index":"0.000003804272179982"},{"denom":"ASSET7","index":"0.000005824139288221"},{"denom":"ASSET8","index":"0.000007600033683947"},{"denom":"ASSET9","index":"0.000003282284050887"}],"last_reward_claim_height":"113"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET1","shares":"58113542.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001598361255475"},{"denom":"ASSET1","index":"0.000013324868720531"},{"denom":"ASSET10","index":"0.000009283863630055"},{"denom":"ASSET11","index":"0.000012890721875256"},{"denom":"ASSET12","index":"0.000011607749807828"},{"denom":"ASSET13","index":"0.000003994929715268"},{"denom":"ASSET14","index":"0.000012041896653103"},{"denom":"ASSET15","index":"0.000008609605674538"},{"denom":"ASSET16","index":"0.000006002777756047"},{"denom":"ASSET17","index":"0.000004262945630213"},{"denom":"ASSET18","index":"0.000002030561253910"},{"denom":"ASSET2","index":"0.000003933279565341"},{"denom":"ASSET3","index":"0.000001150586482321"},{"denom":"ASSET4","index":"0.000010829011071909"},{"denom":"ASSET5","index":"0.000000892953750521"},{"denom":"ASSET6","index":"0.000003634763049905"},{"denom":"ASSET7","index":"0.000005566684063932"},{"denom":"ASSET8","index":"0.000007263685559290"},{"denom":"ASSET9","index":"0.000003137668156809"}],"last_reward_claim_height":"100"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET2","shares":"917744037.972160714476622414","reward_history":[{"denom":"ASSET0","index":"0.000004712919701194"},{"denom":"ASSET1","index":"0.000038551910188637"},{"denom":"ASSET10","index":"0.000033366472665064"},{"denom":"ASSET11","index":"0.000040061772796167"},{"denom":"ASSET12","index":"0.000038115593387847"},{"denom":"ASSET13","index":"0.000012923798257493"},{"denom":"ASSET14","index":"0.000036968911284872"},{"denom":"ASSET15","index":"0.000029958439689060"},{"denom":"ASSET16","index":"0.000017109313494010"},{"denom":"ASSET17","index":"0.000013844574846959"},{"denom":"ASSET18","index":"0.000005759646481226"},{"denom":"ASSET2","index":"0.000011633813263895"},{"denom":"ASSET3","index":"0.000003346860308295"},{"denom":"ASSET4","index":"0.000031605298521278"},{"denom":"ASSET5","index":"0.000002628206284514"},{"denom":"ASSET6","index":"0.000010728866620912"},{"denom":"ASSET7","index":"0.000016566279364856"},{"denom":"ASSET8","index":"0.000023846908582094"},{"denom":"ASSET9","index":"0.000009564372690576"}],"last_reward_claim_height":"197"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET3","shares":"677610165.964798979798501406","reward_history":[{"denom":"ASSET0","index":"0.000001598361255475"},{"denom":"ASSET1","index":"0.000013324868720531"},{"denom":"ASSET10","index":"0.000009283863630055"},{"denom":"ASSET11","index":"0.000012890721875256"},{"denom":"ASSET12","index":"0.000011607749807828"},{"denom":"ASSET13","index":"0.000003994929715268"},{"denom":"ASSET14","index":"0.000012041896653103"},{"denom":"ASSET15","index":"0.000008609605674538"},{"denom":"ASSET16","index":"0.000006002777756047"},{"denom":"ASSET17","index":"0.000004262945630213"},{"denom":"ASSET18","index":"0.000002030561253910"},{"denom":"ASSET2","index":"0.000003933279565341"},{"denom":"ASSET3","index":"0.000001150586482321"},{"denom":"ASSET4","index":"0.000010829011071909"},{"denom":"ASSET5","index":"0.000000892953750521"},{"denom":"ASSET6","index":"0.000003634763049905"},{"denom":"ASSET7","index":"0.000005566684063932"},{"denom":"ASSET8","index":"0.000007263685559290"},{"denom":"ASSET9","index":"0.000003137668156809"}],"last_reward_claim_height":"74"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET6","shares":"65794349.377122362203671582","reward_history":[{"denom":"ASSET0","index":"0.000001598361255475"},{"denom":"ASSET1","index":"0.000013324868720531"},{"denom":"ASSET10","index":"0.000009283863630055"},{"denom":"ASSET11","index":"0.000012890721875256"},{"denom":"ASSET12","index":"0.000011607749807828"},{"denom":"ASSET13","index":"0.000003994929715268"},{"denom":"ASSET14","index":"0.000012041896653103"},{"denom":"ASSET15","index":"0.000008609605674538"},{"denom":"ASSET16","index":"0.000006002777756047"},{"denom":"ASSET17","index":"0.000004262945630213"},{"denom":"ASSET18","index":"0.000002030561253910"},{"denom":"ASSET2","index":"0.000003933279565341"},{"denom":"ASSET3","index":"0.000001150586482321"},{"denom":"ASSET4","index":"0.000010829011071909"},{"denom":"ASSET5","index":"0.000000892953750521"},{"denom":"ASSET6","index":"0.000003634763049905"},{"denom":"ASSET7","index":"0.000005566684063932"},{"denom":"ASSET8","index":"0.000007263685559290"},{"denom":"ASSET9","index":"0.000003137668156809"}],"last_reward_claim_height":"94"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET8","shares":"129612736.000000000000000000","reward_history":[],"last_reward_claim_height":"12"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET10","shares":"48170337.112530128391802426","reward_history":[{"denom":"ASSET0","index":"0.000004712919701194"},{"denom":"ASSET1","index":"0.000038551910188637"},{"denom":"ASSET10","index":"0.000033366472665064"},{"denom":"ASSET11","index":"0.000040061772796167"},{"denom":"ASSET12","index":"0.000038115593387847"},{"denom":"ASSET13","index":"0.000012923798257493"},{"denom":"ASSET14","index":"0.000036968911284872"},{"denom":"ASSET15","index":"0.000029958439689060"},{"denom":"ASSET16","index":"0.000017109313494010"},{"denom":"ASSET17","index":"0.000013844574846959"},{"denom":"ASSET18","index":"0.000005759646481226"},{"denom":"ASSET2","index":"0.000011633813263895"},{"denom":"ASSET3","index":"0.000003346860308295"},{"denom":"ASSET4","index":"0.000031605298521278"},{"denom":"ASSET5","index":"0.000002628206284514"},{"denom":"ASSET6","index":"0.000010728866620912"},{"denom":"ASSET7","index":"0.000016566279364856"},{"denom":"ASSET8","index":"0.000023846908582094"},{"denom":"ASSET9","index":"0.000009564372690576"}],"last_reward_claim_height":"195"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","denom":"ASSET13","shares":"585543243.999999987703591876","reward_history":[{"denom":"ASSET0","index":"0.000003119961272076"},{"denom":"ASSET1","index":"0.000026462428012801"},{"denom":"ASSET10","index":"0.000021088828135750"},{"denom":"ASSET11","index":"0.000026288818556387"},{"denom":"ASSET12","index":"0.000025049012446876"},{"denom":"ASSET13","index":"0.000008256026418292"},{"denom":"ASSET14","index":"0.000024133914778951"},{"denom":"ASSET15","index":"0.000019001193386697"},{"denom":"ASSET16","index":"0.000011741691861213"},{"denom":"ASSET17","index":"0.000009205139483526"},{"denom":"ASSET18","index":"0.000003811157018018"},{"denom":"ASSET2","index":"0.000008011229275486"},{"denom":"ASSET3","index":"0.000002226652147557"},{"denom":"ASSET4","index":"0.000021454928269907"},{"denom":"ASSET5","index":"0.000001734689929917"},{"denom":"ASSET6","index":"0.000007001091110949"},{"denom":"ASSET7","index":"0.000010994186615549"},{"denom":"ASSET8","index":"0.000015007966738007"},{"denom":"ASSET9","index":"0.000006372340046203"}],"last_reward_claim_height":"144"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET3","shares":"516144757.999999998451565726","reward_history":[{"denom":"ASSET0","index":"0.000001745217677213"},{"denom":"ASSET1","index":"0.000014553842410819"},{"denom":"ASSET10","index":"0.000010139729507131"},{"denom":"ASSET11","index":"0.000014078681363843"},{"denom":"ASSET12","index":"0.000012678362515121"},{"denom":"ASSET13","index":"0.000004362304066790"},{"denom":"ASSET14","index":"0.000013152043309614"},{"denom":"ASSET15","index":"0.000009402563770700"},{"denom":"ASSET16","index":"0.000006556038246289"},{"denom":"ASSET17","index":"0.000004655394058383"},{"denom":"ASSET18","index":"0.000002217418219224"},{"denom":"ASSET2","index":"0.000004295692705065"},{"denom":"ASSET3","index":"0.000001256734357891"},{"denom":"ASSET4","index":"0.000011827217337515"},{"denom":"ASSET5","index":"0.000000975486386160"},{"denom":"ASSET6","index":"0.000003970037158850"},{"denom":"ASSET7","index":"0.000006079396946830"},{"denom":"ASSET8","index":"0.000007932673055287"},{"denom":"ASSET9","index":"0.000003426784497665"}],"last_reward_claim_height":"122"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET4","shares":"28660073.878433503015845027","reward_history":[{"denom":"ASSET0","index":"0.000001745217677213"},{"denom":"ASSET1","index":"0.000014553842410819"},{"denom":"ASSET10","index":"0.000010139729507131"},{"denom":"ASSET11","index":"0.000014078681363843"},{"denom":"ASSET12","index":"0.000012678362515121"},{"denom":"ASSET13","index":"0.000004362304066790"},{"denom":"ASSET14","index":"0.000013152043309614"},{"denom":"ASSET15","index":"0.000009402563770700"},{"denom":"ASSET16","index":"0.000006556038246289"},{"denom":"ASSET17","index":"0.000004655394058383"},{"denom":"ASSET18","index":"0.000002217418219224"},{"denom":"ASSET2","index":"0.000004295692705065"},{"denom":"ASSET3","index":"0.000001256734357891"},{"denom":"ASSET4","index":"0.000011827217337515"},{"denom":"ASSET5","index":"0.000000975486386160"},{"denom":"ASSET6","index":"0.000003970037158850"},{"denom":"ASSET7","index":"0.000006079396946830"},{"denom":"ASSET8","index":"0.000007932673055287"},{"denom":"ASSET9","index":"0.000003426784497665"}],"last_reward_claim_height":"109"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET10","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001745217677213"},{"denom":"ASSET1","index":"0.000014553842410819"},{"denom":"ASSET10","index":"0.000010139729507131"},{"denom":"ASSET11","index":"0.000014078681363843"},{"denom":"ASSET12","index":"0.000012678362515121"},{"denom":"ASSET13","index":"0.000004362304066790"},{"denom":"ASSET14","index":"0.000013152043309614"},{"denom":"ASSET15","index":"0.000009402563770700"},{"denom":"ASSET16","index":"0.000006556038246289"},{"denom":"ASSET17","index":"0.000004655394058383"},{"denom":"ASSET18","index":"0.000002217418219224"},{"denom":"ASSET2","index":"0.000004295692705065"},{"denom":"ASSET3","index":"0.000001256734357891"},{"denom":"ASSET4","index":"0.000011827217337515"},{"denom":"ASSET5","index":"0.000000975486386160"},{"denom":"ASSET6","index":"0.000003970037158850"},{"denom":"ASSET7","index":"0.000006079396946830"},{"denom":"ASSET8","index":"0.000007932673055287"},{"denom":"ASSET9","index":"0.000003426784497665"}],"last_reward_claim_height":"121"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET12","shares":"468099036.000000016851565296","reward_history":[],"last_reward_claim_height":"45"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET15","shares":"1000062599.595762686000000000","reward_history":[{"denom":"ASSET0","index":"0.000001745217677213"},{"denom":"ASSET1","index":"0.000014553842410819"},{"denom":"ASSET10","index":"0.000010139729507131"},{"denom":"ASSET11","index":"0.000014078681363843"},{"denom":"ASSET12","index":"0.000012678362515121"},{"denom":"ASSET13","index":"0.000004362304066790"},{"denom":"ASSET14","index":"0.000013152043309614"},{"denom":"ASSET15","index":"0.000009402563770700"},{"denom":"ASSET16","index":"0.000006556038246289"},{"denom":"ASSET17","index":"0.000004655394058383"},{"denom":"ASSET18","index":"0.000002217418219224"},{"denom":"ASSET2","index":"0.000004295692705065"},{"denom":"ASSET3","index":"0.000001256734357891"},{"denom":"ASSET4","index":"0.000011827217337515"},{"denom":"ASSET5","index":"0.000000975486386160"},{"denom":"ASSET6","index":"0.000003970037158850"},{"denom":"ASSET7","index":"0.000006079396946830"},{"denom":"ASSET8","index":"0.000007932673055287"},{"denom":"ASSET9","index":"0.000003426784497665"}],"last_reward_claim_height":"119"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","denom":"ASSET17","shares":"350434970.934310766029923300","reward_history":[{"denom":"ASSET0","index":"0.000004887144198005"},{"denom":"ASSET1","index":"0.000040023452786680"},{"denom":"ASSET10","index":"0.000034437802546936"},{"denom":"ASSET11","index":"0.000041494859984978"},{"denom":"ASSET12","index":"0.000039432934551770"},{"denom":"ASSET13","index":"0.000013368653429450"},{"denom":"ASSET14","index":"0.000038299674909876"},{"denom":"ASSET15","index":"0.000030940975323868"},{"denom":"ASSET16","index":"0.000017768457463154"},{"denom":"ASSET17","index":"0.000014327966130944"},{"denom":"ASSET18","index":"0.000005979301312257"},{"denom":"ASSET2","index":"0.000012071629758701"},{"denom":"ASSET3","index":"0.000003472888386423"},{"denom":"ASSET4","index":"0.000032798616202156"},{"denom":"ASSET5","index":"0.000002725831062282"},{"denom":"ASSET6","index":"0.000011125357279785"},{"denom":"ASSET7","index":"0.000017178460034926"},{"denom":"ASSET8","index":"0.000024656607892367"},{"denom":"ASSET9","index":"0.000009912524841079"}],"last_reward_claim_height":"193"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","denom":"ASSET10","shares":"93647415.079801691003936896","reward_history":[{"denom":"ASSET0","index":"0.000003278023650839"},{"denom":"ASSET1","index":"0.000027801084973989"},{"denom":"ASSET10","index":"0.000022126343818190"},{"denom":"ASSET11","index":"0.000027610641458424"},{"denom":"ASSET12","index":"0.000026294522151225"},{"denom":"ASSET13","index":"0.000008669795972838"},{"denom":"ASSET14","index":"0.000025352034708572"},{"denom":"ASSET15","index":"0.000019941753748345"},{"denom":"ASSET16","index":"0.000012337408081897"},{"denom":"ASSET17","index":"0.000009662232510971"},{"denom":"ASSET18","index":"0.000004006663612522"},{"denom":"ASSET2","index":"0.000008414274009770"},{"denom":"ASSET3","index":"0.000002339697370568"},{"denom":"ASSET4","index":"0.000022540556466857"},{"denom":"ASSET5","index":"0.000001822656991491"},{"denom":"ASSET6","index":"0.000007357334263189"},{"denom":"ASSET7","index":"0.000011551068960203"},{"denom":"ASSET8","index":"0.000015761386047857"},{"denom":"ASSET9","index":"0.000006692834331509"}],"last_reward_claim_height":"142"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET10","shares":"5440107.000000000000000000","reward_history":[],"last_reward_claim_height":"35"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","denom":"ASSET12","shares":"192702820.206015698474305242","reward_history":[{"denom":"ASSET0","index":"0.000002735257365218"},{"denom":"ASSET1","index":"0.000023278157661741"},{"denom":"ASSET10","index":"0.000018999615823078"},{"denom":"ASSET11","index":"0.000023241706683585"},{"denom":"ASSET12","index":"0.000022372793234045"},{"denom":"ASSET13","index":"0.000007316911351959"},{"denom":"ASSET14","index":"0.000021266506066871"},{"denom":"ASSET15","index":"0.000017036720297506"},{"denom":"ASSET16","index":"0.000010298479660409"},{"denom":"ASSET17","index":"0.000008222611745720"},{"denom":"ASSET18","index":"0.000003315370510511"},{"denom":"ASSET2","index":"0.000007081336162231"},{"denom":"ASSET3","index":"0.000001948923871674"},{"denom":"ASSET4","index":"0.000018864412124408"},{"denom":"ASSET5","index":"0.000001519377842401"},{"denom":"ASSET6","index":"0.000006121992555640"},{"denom":"ASSET7","index":"0.000009661272655042"},{"denom":"ASSET8","index":"0.000013300968175029"},{"denom":"ASSET9","index":"0.000005629514833023"}],"last_reward_claim_height":"126"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET1","shares":"866712532.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003310378542013"},{"denom":"ASSET1","index":"0.000028352771206955"},{"denom":"ASSET10","index":"0.000022778987578468"},{"denom":"ASSET11","index":"0.000028201706998458"},{"denom":"ASSET12","index":"0.000026949790221900"},{"denom":"ASSET13","index":"0.000008856641706946"},{"denom":"ASSET14","index":"0.000025865717784540"},{"denom":"ASSET15","index":"0.000020483790155485"},{"denom":"ASSET16","index":"0.000012564495758376"},{"denom":"ASSET17","index":"0.000009912517491786"},{"denom":"ASSET18","index":"0.000004051289802086"},{"denom":"ASSET2","index":"0.000008567503486413"},{"denom":"ASSET3","index":"0.000002358477605528"},{"denom":"ASSET4","index":"0.000022984011222606"},{"denom":"ASSET5","index":"0.000001848359330263"},{"denom":"ASSET6","index":"0.000007474666006436"},{"denom":"ASSET7","index":"0.000011763521743703"},{"denom":"ASSET8","index":"0.000016098224703406"},{"denom":"ASSET9","index":"0.000006837907042961"}],"last_reward_claim_height":"144"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","denom":"ASSET15","shares":"675033835.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001583959364947"},{"denom":"ASSET1","index":"0.000013443347430705"},{"denom":"ASSET10","index":"0.000009381913161610"},{"denom":"ASSET11","index":"0.000012996589661105"},{"denom":"ASSET12","index":"0.000011696930694994"},{"denom":"ASSET13","index":"0.000004020819926404"},{"denom":"ASSET14","index":"0.000012143688464595"},{"denom":"ASSET15","index":"0.000008691469335864"},{"denom":"ASSET16","index":"0.000006051537060952"},{"denom":"ASSET17","index":"0.000004305120325241"},{"denom":"ASSET18","index":"0.000002030717134548"},{"denom":"ASSET2","index":"0.000003939591241022"},{"denom":"ASSET3","index":"0.000001137201595347"},{"denom":"ASSET4","index":"0.000010925258183866"},{"denom":"ASSET5","index":"0.000000893515539201"},{"denom":"ASSET6","index":"0.000003655290842186"},{"denom":"ASSET7","index":"0.000005604779291351"},{"denom":"ASSET8","index":"0.000007310581684371"},{"denom":"ASSET9","index":"0.000003167918729894"}],"last_reward_claim_height":"92"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET3","shares":"674653054.000000000000000000","reward_history":[],"last_reward_claim_height":"59"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","denom":"ASSET14","shares":"587113804.000000000000000000","reward_history":[],"last_reward_claim_height":"31"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET6","shares":"324531039.041743029327339287","reward_history":[{"denom":"ASSET0","index":"0.000004647505809556"},{"denom":"ASSET1","index":"0.000038009017612926"},{"denom":"ASSET10","index":"0.000032985806125997"},{"denom":"ASSET11","index":"0.000039536736758564"},{"denom":"ASSET12","index":"0.000037639937363025"},{"denom":"ASSET13","index":"0.000012761097886329"},{"denom":"ASSET14","index":"0.000036479648984095"},{"denom":"ASSET15","index":"0.000029606122473006"},{"denom":"ASSET16","index":"0.000016864369335210"},{"denom":"ASSET17","index":"0.000013669148362381"},{"denom":"ASSET18","index":"0.000005677302881525"},{"denom":"ASSET2","index":"0.000011472901091017"},{"denom":"ASSET3","index":"0.000003300273677547"},{"denom":"ASSET4","index":"0.000031164129384679"},{"denom":"ASSET5","index":"0.000002591830530814"},{"denom":"ASSET6","index":"0.000010581810919490"},{"denom":"ASSET7","index":"0.000016340325217451"},{"denom":"ASSET8","index":"0.000023553337303201"},{"denom":"ASSET9","index":"0.000009436380699685"}],"last_reward_claim_height":"186"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","denom":"ASSET8","shares":"607492296.191341172290727826","reward_history":[{"denom":"ASSET0","index":"0.000003051773960929"},{"denom":"ASSET1","index":"0.000025898629359040"},{"denom":"ASSET10","index":"0.000020686863907037"},{"denom":"ASSET11","index":"0.000025740096441319"},{"denom":"ASSET12","index":"0.000024551000542772"},{"denom":"ASSET13","index":"0.000008085532012369"},{"denom":"ASSET14","index":"0.000023622558405526"},{"denom":"ASSET15","index":"0.000018629920308839"},{"denom":"ASSET16","index":"0.000011487540137638"},{"denom":"ASSET17","index":"0.000009021847693812"},{"denom":"ASSET18","index":"0.000003725572559942"},{"denom":"ASSET2","index":"0.000007844221178735"},{"denom":"ASSET3","index":"0.000002178252359768"},{"denom":"ASSET4","index":"0.000020996168979716"},{"denom":"ASSET5","index":"0.000001697004218389"},{"denom":"ASSET6","index":"0.000006847583721256"},{"denom":"ASSET7","index":"0.000010758483833946"},{"denom":"ASSET8","index":"0.000014699172267780"},{"denom":"ASSET9","index":"0.000006238834616461"}],"last_reward_claim_height":"153"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","denom":"ASSET10","shares":"82961053.000000005168244576","reward_history":[],"last_reward_claim_height":"61"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET4","shares":"1000239836.555814177000000000","reward_history":[{"denom":"ASSET0","index":"0.000005006228103618"},{"denom":"ASSET1","index":"0.000040947325300376"},{"denom":"ASSET10","index":"0.000035488645967587"},{"denom":"ASSET11","index":"0.000042574940264102"},{"denom":"ASSET12","index":"0.000040516417800037"},{"denom":"ASSET13","index":"0.000013739373191785"},{"denom":"ASSET14","index":"0.000039287313389576"},{"denom":"ASSET15","index":"0.000031859830028224"},{"denom":"ASSET16","index":"0.000018170366377289"},{"denom":"ASSET17","index":"0.000014714890817855"},{"denom":"ASSET18","index":"0.000006118552920444"},{"denom":"ASSET2","index":"0.000012357882268468"},{"denom":"ASSET3","index":"0.000003555809778192"},{"denom":"ASSET4","index":"0.000033572245212516"},{"denom":"ASSET5","index":"0.000002791901316791"},{"denom":"ASSET6","index":"0.000011398916012655"},{"denom":"ASSET7","index":"0.000017601054204752"},{"denom":"ASSET8","index":"0.000025355321651880"},{"denom":"ASSET9","index":"0.000010162593600920"}],"last_reward_claim_height":"200"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET5","shares":"1489829127.489904750000000000","reward_history":[{"denom":"ASSET0","index":"0.000003296156578493"},{"denom":"ASSET1","index":"0.000027968412540894"},{"denom":"ASSET10","index":"0.000022307812536905"},{"denom":"ASSET11","index":"0.000027788867279184"},{"denom":"ASSET12","index":"0.000026488589695468"},{"denom":"ASSET13","index":"0.000008728285856057"},{"denom":"ASSET14","index":"0.000025508064125070"},{"denom":"ASSET15","index":"0.000020096610749334"},{"denom":"ASSET16","index":"0.000012407784704791"},{"denom":"ASSET17","index":"0.000009734180928237"},{"denom":"ASSET18","index":"0.000004026678592252"},{"denom":"ASSET2","index":"0.000008468774984810"},{"denom":"ASSET3","index":"0.000002353220293961"},{"denom":"ASSET4","index":"0.000022675279511256"},{"denom":"ASSET5","index":"0.000001832728492238"},{"denom":"ASSET6","index":"0.000007397034942132"},{"denom":"ASSET7","index":"0.000011618881320506"},{"denom":"ASSET8","index":"0.000015866042832442"},{"denom":"ASSET9","index":"0.000006735898552490"}],"last_reward_claim_height":"138"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET9","shares":"1000074409.201749489000000000","reward_history":[{"denom":"ASSET0","index":"0.000005006228103618"},{"denom":"ASSET1","index":"0.000040947325300376"},{"denom":"ASSET10","index":"0.000035488645967587"},{"denom":"ASSET11","index":"0.000042574940264102"},{"denom":"ASSET12","index":"0.000040516417800037"},{"denom":"ASSET13","index":"0.000013739373191785"},{"denom":"ASSET14","index":"0.000039287313389576"},{"denom":"ASSET15","index":"0.000031859830028224"},{"denom":"ASSET16","index":"0.000018170366377289"},{"denom":"ASSET17","index":"0.000014714890817855"},{"denom":"ASSET18","index":"0.000006118552920444"},{"denom":"ASSET2","index":"0.000012357882268468"},{"denom":"ASSET3","index":"0.000003555809778192"},{"denom":"ASSET4","index":"0.000033572245212516"},{"denom":"ASSET5","index":"0.000002791901316791"},{"denom":"ASSET6","index":"0.000011398916012655"},{"denom":"ASSET7","index":"0.000017601054204752"},{"denom":"ASSET8","index":"0.000025355321651880"},{"denom":"ASSET9","index":"0.000010162593600920"}],"last_reward_claim_height":"195"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET10","shares":"107888635.000000001618329525","reward_history":[{"denom":"ASSET0","index":"0.000001676736923170"},{"denom":"ASSET1","index":"0.000013985463602132"},{"denom":"ASSET10","index":"0.000009743339709608"},{"denom":"ASSET11","index":"0.000013528824721587"},{"denom":"ASSET12","index":"0.000012182509640070"},{"denom":"ASSET13","index":"0.000004192868462713"},{"denom":"ASSET14","index":"0.000012638122365828"},{"denom":"ASSET15","index":"0.000009036319060854"},{"denom":"ASSET16","index":"0.000006299564241947"},{"denom":"ASSET17","index":"0.000004474034874554"},{"denom":"ASSET18","index":"0.000002131323494140"},{"denom":"ASSET2","index":"0.000004128220711085"},{"denom":"ASSET3","index":"0.000001207784185172"},{"denom":"ASSET4","index":"0.000011365690429028"},{"denom":"ASSET5","index":"0.000000936879321208"},{"denom":"ASSET6","index":"0.000003814217346036"},{"denom":"ASSET7","index":"0.000005841899206614"},{"denom":"ASSET8","index":"0.000007623303918134"},{"denom":"ASSET9","index":"0.000003292930713863"}],"last_reward_claim_height":"69"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET15","shares":"143619715.999999998287239432","reward_history":[{"denom":"ASSET0","index":"0.000003296156578493"},{"denom":"ASSET1","index":"0.000027968412540894"},{"denom":"ASSET10","index":"0.000022307812536905"},{"denom":"ASSET11","index":"0.000027788867279184"},{"denom":"ASSET12","index":"0.000026488589695468"},{"denom":"ASSET13","index":"0.000008728285856057"},{"denom":"ASSET14","index":"0.000025508064125070"},{"denom":"ASSET15","index":"0.000020096610749334"},{"denom":"ASSET16","index":"0.000012407784704791"},{"denom":"ASSET17","index":"0.000009734180928237"},{"denom":"ASSET18","index":"0.000004026678592252"},{"denom":"ASSET2","index":"0.000008468774984810"},{"denom":"ASSET3","index":"0.000002353220293961"},{"denom":"ASSET4","index":"0.000022675279511256"},{"denom":"ASSET5","index":"0.000001832728492238"},{"denom":"ASSET6","index":"0.000007397034942132"},{"denom":"ASSET7","index":"0.000011618881320506"},{"denom":"ASSET8","index":"0.000015866042832442"},{"denom":"ASSET9","index":"0.000006735898552490"}],"last_reward_claim_height":"169"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET16","shares":"749816367.772085635212942190","reward_history":[{"denom":"ASSET0","index":"0.000003296156578493"},{"denom":"ASSET1","index":"0.000027968412540894"},{"denom":"ASSET10","index":"0.000022307812536905"},{"denom":"ASSET11","index":"0.000027788867279184"},{"denom":"ASSET12","index":"0.000026488589695468"},{"denom":"ASSET13","index":"0.000008728285856057"},{"denom":"ASSET14","index":"0.000025508064125070"},{"denom":"ASSET15","index":"0.000020096610749334"},{"denom":"ASSET16","index":"0.000012407784704791"},{"denom":"ASSET17","index":"0.000009734180928237"},{"denom":"ASSET18","index":"0.000004026678592252"},{"denom":"ASSET2","index":"0.000008468774984810"},{"denom":"ASSET3","index":"0.000002353220293961"},{"denom":"ASSET4","index":"0.000022675279511256"},{"denom":"ASSET5","index":"0.000001832728492238"},{"denom":"ASSET6","index":"0.000007397034942132"},{"denom":"ASSET7","index":"0.000011618881320506"},{"denom":"ASSET8","index":"0.000015866042832442"},{"denom":"ASSET9","index":"0.000006735898552490"}],"last_reward_claim_height":"160"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","denom":"ASSET18","shares":"25623081.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001676736923170"},{"denom":"ASSET1","index":"0.000013985463602132"},{"denom":"ASSET10","index":"0.000009743339709608"},{"denom":"ASSET11","index":"0.000013528824721587"},{"denom":"ASSET12","index":"0.000012182509640070"},{"denom":"ASSET13","index":"0.000004192868462713"},{"denom":"ASSET14","index":"0.000012638122365828"},{"denom":"ASSET15","index":"0.000009036319060854"},{"denom":"ASSET16","index":"0.000006299564241947"},{"denom":"ASSET17","index":"0.000004474034874554"},{"denom":"ASSET18","index":"0.000002131323494140"},{"denom":"ASSET2","index":"0.000004128220711085"},{"denom":"ASSET3","index":"0.000001207784185172"},{"denom":"ASSET4","index":"0.000011365690429028"},{"denom":"ASSET5","index":"0.000000936879321208"},{"denom":"ASSET6","index":"0.000003814217346036"},{"denom":"ASSET7","index":"0.000005841899206614"},{"denom":"ASSET8","index":"0.000007623303918134"},{"denom":"ASSET9","index":"0.000003292930713863"}],"last_reward_claim_height":"82"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET0","shares":"1483069130.000000005505419110","reward_history":[{"denom":"ASSET0","index":"0.000003237925740153"},{"denom":"ASSET1","index":"0.000027468087048908"},{"denom":"ASSET10","index":"0.000021838560142362"},{"denom":"ASSET11","index":"0.000027274223261348"},{"denom":"ASSET12","index":"0.000025962125103579"},{"denom":"ASSET13","index":"0.000008562973508850"},{"denom":"ASSET14","index":"0.000025046299162567"},{"denom":"ASSET15","index":"0.000019687604125947"},{"denom":"ASSET16","index":"0.000012189946370622"},{"denom":"ASSET17","index":"0.000009540519193028"},{"denom":"ASSET18","index":"0.000003959057055270"},{"denom":"ASSET2","index":"0.000008312511220651"},{"denom":"ASSET3","index":"0.000002312646079660"},{"denom":"ASSET4","index":"0.000022269978905361"},{"denom":"ASSET5","index":"0.000001800462011039"},{"denom":"ASSET6","index":"0.000007270233858279"},{"denom":"ASSET7","index":"0.000011411601588483"},{"denom":"ASSET8","index":"0.000015567552190875"},{"denom":"ASSET9","index":"0.000006610637099613"}],"last_reward_claim_height":"178"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET5","shares":"3055435.848333669517967486","reward_history":[{"denom":"ASSET0","index":"0.000003237925740153"},{"denom":"ASSET1","index":"0.000027468087048908"},{"denom":"ASSET10","index":"0.000021838560142362"},{"denom":"ASSET11","index":"0.000027274223261348"},{"denom":"ASSET12","index":"0.000025962125103579"},{"denom":"ASSET13","index":"0.000008562973508850"},{"denom":"ASSET14","index":"0.000025046299162567"},{"denom":"ASSET15","index":"0.000019687604125947"},{"denom":"ASSET16","index":"0.000012189946370622"},{"denom":"ASSET17","index":"0.000009540519193028"},{"denom":"ASSET18","index":"0.000003959057055270"},{"denom":"ASSET2","index":"0.000008312511220651"},{"denom":"ASSET3","index":"0.000002312646079660"},{"denom":"ASSET4","index":"0.000022269978905361"},{"denom":"ASSET5","index":"0.000001800462011039"},{"denom":"ASSET6","index":"0.000007270233858279"},{"denom":"ASSET7","index":"0.000011411601588483"},{"denom":"ASSET8","index":"0.000015567552190875"},{"denom":"ASSET9","index":"0.000006610637099613"}],"last_reward_claim_height":"161"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET6","shares":"581829997.999999999892762913","reward_history":[],"last_reward_claim_height":"60"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","denom":"ASSET10","shares":"504198290.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000004759364904599"},{"denom":"ASSET1","index":"0.000039014688598823"},{"denom":"ASSET10","index":"0.000033564746899774"},{"denom":"ASSET11","index":"0.000040428699846607"},{"denom":"ASSET12","index":"0.000038441898385906"},{"denom":"ASSET13","index":"0.000013020994461924"},{"denom":"ASSET14","index":"0.000037304807804505"},{"denom":"ASSET15","index":"0.000030152778242557"},{"denom":"ASSET16","index":"0.000017316516616402"},{"denom":"ASSET17","index":"0.000013971686283299"},{"denom":"ASSET18","index":"0.000005820085693082"},{"denom":"ASSET2","index":"0.000011772463606205"},{"denom":"ASSET3","index":"0.000003382604675726"},{"denom":"ASSET4","index":"0.000031964503105066"},{"denom":"ASSET5","index":"0.000002653911338254"},{"denom":"ASSET6","index":"0.000010830608501608"},{"denom":"ASSET7","index":"0.000016733421795061"},{"denom":"ASSET8","index":"0.000024009455581904"},{"denom":"ASSET9","index":"0.000009659109983255"}],"last_reward_claim_height":"198"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET11","shares":"900983399.276564927922750675","reward_history":[{"denom":"ASSET0","index":"0.000003224934301433"},{"denom":"ASSET1","index":"0.000027341438894536"},{"denom":"ASSET10","index":"0.000021706571274337"},{"denom":"ASSET11","index":"0.000027141091242061"},{"denom":"ASSET12","index":"0.000025819235056226"},{"denom":"ASSET13","index":"0.000008520116782966"},{"denom":"ASSET14","index":"0.000024928444433519"},{"denom":"ASSET15","index":"0.000019573794936329"},{"denom":"ASSET16","index":"0.000012137286393349"},{"denom":"ASSET17","index":"0.000009487995483061"},{"denom":"ASSET18","index":"0.000003945309126507"},{"denom":"ASSET2","index":"0.000008271045740629"},{"denom":"ASSET3","index":"0.000002302032616683"},{"denom":"ASSET4","index":"0.000022168721917699"},{"denom":"ASSET5","index":"0.000001793343624246"},{"denom":"ASSET6","index":"0.000007240378309003"},{"denom":"ASSET7","index":"0.000011361888746536"},{"denom":"ASSET8","index":"0.000015488944629697"},{"denom":"ASSET9","index":"0.000006579500326985"}],"last_reward_claim_height":"137"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","denom":"ASSET16","shares":"456135702.999999999087728594","reward_history":[{"denom":"ASSET0","index":"0.000001700269946448"},{"denom":"ASSET1","index":"0.000014175647296985"},{"denom":"ASSET10","index":"0.000009876508679424"},{"denom":"ASSET11","index":"0.000013714231996791"},{"denom":"ASSET12","index":"0.000012349169664489"},{"denom":"ASSET13","index":"0.000004249665204630"},{"denom":"ASSET14","index":"0.000012810584964683"},{"denom":"ASSET15","index":"0.000009159649022667"},{"denom":"ASSET16","index":"0.000006386108914062"},{"denom":"ASSET17","index":"0.000004535399405845"},{"denom":"ASSET18","index":"0.000002160675585153"},{"denom":"ASSET2","index":"0.000004184037207885"},{"denom":"ASSET3","index":"0.000001223709723928"},{"denom":"ASSET4","index":"0.000011520237582522"},{"denom":"ASSET5","index":"0.000000950091460574"},{"denom":"ASSET6","index":"0.000003867003500531"},{"denom":"ASSET7","index":"0.000005922674290891"},{"denom":"ASSET8","index":"0.000007727949032131"},{"denom":"ASSET9","index":"0.000003337940880615"}],"last_reward_claim_height":"106"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET1","shares":"266358906.000000000000000000","reward_history":[],"last_reward_claim_height":"23"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET9","shares":"205738442.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002959758868257"},{"denom":"ASSET1","index":"0.000025116229265451"},{"denom":"ASSET10","index":"0.000020033024535037"},{"denom":"ASSET11","index":"0.000024955202637112"},{"denom":"ASSET12","index":"0.000023787913163340"},{"denom":"ASSET13","index":"0.000007837044315100"},{"denom":"ASSET14","index":"0.000022906603767748"},{"denom":"ASSET15","index":"0.000018047329062837"},{"denom":"ASSET16","index":"0.000011142428291313"},{"denom":"ASSET17","index":"0.000008741414303940"},{"denom":"ASSET18","index":"0.000003614587489816"},{"denom":"ASSET2","index":"0.000007605147442913"},{"denom":"ASSET3","index":"0.000002112677625393"},{"denom":"ASSET4","index":"0.000020363145786569"},{"denom":"ASSET5","index":"0.000001645239564154"},{"denom":"ASSET6","index":"0.000006641765641459"},{"denom":"ASSET7","index":"0.000010434431181702"},{"denom":"ASSET8","index":"0.000014248591155217"},{"denom":"ASSET9","index":"0.000006047835874095"}],"last_reward_claim_height":"124"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","denom":"ASSET11","shares":"188965386.160713762900682285","reward_history":[{"denom":"ASSET0","index":"0.000002959758868257"},{"denom":"ASSET1","index":"0.000025116229265451"},{"denom":"ASSET10","index":"0.000020033024535037"},{"denom":"ASSET11","index":"0.000024955202637112"},{"denom":"ASSET12","index":"0.000023787913163340"},{"denom":"ASSET13","index":"0.000007837044315100"},{"denom":"ASSET14","index":"0.000022906603767748"},{"denom":"ASSET15","index":"0.000018047329062837"},{"denom":"ASSET16","index":"0.000011142428291313"},{"denom":"ASSET17","index":"0.000008741414303940"},{"denom":"ASSET18","index":"0.000003614587489816"},{"denom":"ASSET2","index":"0.000007605147442913"},{"denom":"ASSET3","index":"0.000002112677625393"},{"denom":"ASSET4","index":"0.000020363145786569"},{"denom":"ASSET5","index":"0.000001645239564154"},{"denom":"ASSET6","index":"0.000006641765641459"},{"denom":"ASSET7","index":"0.000010434431181702"},{"denom":"ASSET8","index":"0.000014248591155217"},{"denom":"ASSET9","index":"0.000006047835874095"}],"last_reward_claim_height":"176"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET6","shares":"377562242.338692757414600032","reward_history":[{"denom":"ASSET0","index":"0.000003468946703322"},{"denom":"ASSET1","index":"0.000029412495408176"},{"denom":"ASSET10","index":"0.000023372734593498"},{"denom":"ASSET11","index":"0.000029203218600002"},{"denom":"ASSET12","index":"0.000027792166579196"},{"denom":"ASSET13","index":"0.000009167641990636"},{"denom":"ASSET14","index":"0.000026818252104650"},{"denom":"ASSET15","index":"0.000021072198152383"},{"denom":"ASSET16","index":"0.000013054905852031"},{"denom":"ASSET17","index":"0.000010211457984650"},{"denom":"ASSET18","index":"0.000004240878207320"},{"denom":"ASSET2","index":"0.000008898543974195"},{"denom":"ASSET3","index":"0.000002476460623897"},{"denom":"ASSET4","index":"0.000023847831794350"},{"denom":"ASSET5","index":"0.000001927880642719"},{"denom":"ASSET6","index":"0.000007785977685579"},{"denom":"ASSET7","index":"0.000012222326144679"},{"denom":"ASSET8","index":"0.000016667230515151"},{"denom":"ASSET9","index":"0.000007078301868557"}],"last_reward_claim_height":"177"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","denom":"ASSET11","shares":"312126437.767938498743271380","reward_history":[{"denom":"ASSET0","index":"0.000003468946703322"},{"denom":"ASSET1","index":"0.000029412495408176"},{"denom":"ASSET10","index":"0.000023372734593498"},{"denom":"ASSET11","index":"0.000029203218600002"},{"denom":"ASSET12","index":"0.000027792166579196"},{"denom":"ASSET13","index":"0.000009167641990636"},{"denom":"ASSET14","index":"0.000026818252104650"},{"denom":"ASSET15","index":"0.000021072198152383"},{"denom":"ASSET16","index":"0.000013054905852031"},{"denom":"ASSET17","index":"0.000010211457984650"},{"denom":"ASSET18","index":"0.000004240878207320"},{"denom":"ASSET2","index":"0.000008898543974195"},{"denom":"ASSET3","index":"0.000002476460623897"},{"denom":"ASSET4","index":"0.000023847831794350"},{"denom":"ASSET5","index":"0.000001927880642719"},{"denom":"ASSET6","index":"0.000007785977685579"},{"denom":"ASSET7","index":"0.000012222326144679"},{"denom":"ASSET8","index":"0.000016667230515151"},{"denom":"ASSET9","index":"0.000007078301868557"}],"last_reward_claim_height":"179"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET4","shares":"942853159.843056883215839250","reward_history":[{"denom":"ASSET0","index":"0.000001541968050995"},{"denom":"ASSET1","index":"0.000012857487907975"},{"denom":"ASSET10","index":"0.000008957704485900"},{"denom":"ASSET11","index":"0.000012438763825161"},{"denom":"ASSET12","index":"0.000011200869215257"},{"denom":"ASSET13","index":"0.000003854089325736"},{"denom":"ASSET14","index":"0.000011619593298070"},{"denom":"ASSET15","index":"0.000008307186714386"},{"denom":"ASSET16","index":"0.000005792349812251"},{"denom":"ASSET17","index":"0.000004113299472240"},{"denom":"ASSET18","index":"0.000001959030530305"},{"denom":"ASSET2","index":"0.000003795102401372"},{"denom":"ASSET3","index":"0.000001109951140156"},{"denom":"ASSET4","index":"0.000010448993630046"},{"denom":"ASSET5","index":"0.000000861541416423"},{"denom":"ASSET6","index":"0.000003506814193562"},{"denom":"ASSET7","index":"0.000005371133324183"},{"denom":"ASSET8","index":"0.000007009474378365"},{"denom":"ASSET9","index":"0.000003027441582881"}],"last_reward_claim_height":"104"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET11","shares":"916183067.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003053196756625"},{"denom":"ASSET1","index":"0.000025905581999278"},{"denom":"ASSET10","index":"0.000020682143152818"},{"denom":"ASSET11","index":"0.000025745380902198"},{"denom":"ASSET12","index":"0.000024550499550641"},{"denom":"ASSET13","index":"0.000008086239198545"},{"denom":"ASSET14","index":"0.000023629161089906"},{"denom":"ASSET15","index":"0.000018628151539367"},{"denom":"ASSET16","index":"0.000011492271696690"},{"denom":"ASSET17","index":"0.000009021688715966"},{"denom":"ASSET18","index":"0.000003727673632537"},{"denom":"ASSET2","index":"0.000007845443656426"},{"denom":"ASSET3","index":"0.000002178852781858"},{"denom":"ASSET4","index":"0.000021002318737231"},{"denom":"ASSET5","index":"0.000001697417622442"},{"denom":"ASSET6","index":"0.000006850319017638"},{"denom":"ASSET7","index":"0.000010761758840612"},{"denom":"ASSET8","index":"0.000014701087498525"},{"denom":"ASSET9","index":"0.000006240132889304"}],"last_reward_claim_height":"175"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET13","shares":"1000031341.778400113000000000","reward_history":[{"denom":"ASSET0","index":"0.000001541968050995"},{"denom":"ASSET1","index":"0.000012857487907975"},{"denom":"ASSET10","index":"0.000008957704485900"},{"denom":"ASSET11","index":"0.000012438763825161"},{"denom":"ASSET12","index":"0.000011200869215257"},{"denom":"ASSET13","index":"0.000003854089325736"},{"denom":"ASSET14","index":"0.000011619593298070"},{"denom":"ASSET15","index":"0.000008307186714386"},{"denom":"ASSET16","index":"0.000005792349812251"},{"denom":"ASSET17","index":"0.000004113299472240"},{"denom":"ASSET18","index":"0.000001959030530305"},{"denom":"ASSET2","index":"0.000003795102401372"},{"denom":"ASSET3","index":"0.000001109951140156"},{"denom":"ASSET4","index":"0.000010448993630046"},{"denom":"ASSET5","index":"0.000000861541416423"},{"denom":"ASSET6","index":"0.000003506814193562"},{"denom":"ASSET7","index":"0.000005371133324183"},{"denom":"ASSET8","index":"0.000007009474378365"},{"denom":"ASSET9","index":"0.000003027441582881"}],"last_reward_claim_height":"120"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","denom":"ASSET16","shares":"612640804.239085299973434405","reward_history":[{"denom":"ASSET0","index":"0.000001541968050995"},{"denom":"ASSET1","index":"0.000012857487907975"},{"denom":"ASSET10","index":"0.000008957704485900"},{"denom":"ASSET11","index":"0.000012438763825161"},{"denom":"ASSET12","index":"0.000011200869215257"},{"denom":"ASSET13","index":"0.000003854089325736"},{"denom":"ASSET14","index":"0.000011619593298070"},{"denom":"ASSET15","index":"0.000008307186714386"},{"denom":"ASSET16","index":"0.000005792349812251"},{"denom":"ASSET17","index":"0.000004113299472240"},{"denom":"ASSET18","index":"0.000001959030530305"},{"denom":"ASSET2","index":"0.000003795102401372"},{"denom":"ASSET3","index":"0.000001109951140156"},{"denom":"ASSET4","index":"0.000010448993630046"},{"denom":"ASSET5","index":"0.000000861541416423"},{"denom":"ASSET6","index":"0.000003506814193562"},{"denom":"ASSET7","index":"0.000005371133324183"},{"denom":"ASSET8","index":"0.000007009474378365"},{"denom":"ASSET9","index":"0.000003027441582881"}],"last_reward_claim_height":"101"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET1","shares":"366282299.000000000000000000","reward_history":[],"last_reward_claim_height":"32"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET5","shares":"16930537.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000002827520151011"},{"denom":"ASSET1","index":"0.000024027878888002"},{"denom":"ASSET10","index":"0.000019355847170480"},{"denom":"ASSET11","index":"0.000023924401086085"},{"denom":"ASSET12","index":"0.000022900407365256"},{"denom":"ASSET13","index":"0.000007521399074311"},{"denom":"ASSET14","index":"0.000021930603354990"},{"denom":"ASSET15","index":"0.000017401215805238"},{"denom":"ASSET16","index":"0.000010647310435771"},{"denom":"ASSET17","index":"0.000008415007538097"},{"denom":"ASSET18","index":"0.000003442593620109"},{"denom":"ASSET2","index":"0.000007289635767836"},{"denom":"ASSET3","index":"0.000002016810506595"},{"denom":"ASSET4","index":"0.000019477449509443"},{"denom":"ASSET5","index":"0.000001571692130579"},{"denom":"ASSET6","index":"0.000006339251488002"},{"denom":"ASSET7","index":"0.000009978075244424"},{"denom":"ASSET8","index":"0.000013673195599374"},{"denom":"ASSET9","index":"0.000005796522499795"}],"last_reward_claim_height":"161"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","denom":"ASSET10","shares":"210287470.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001327266579501"},{"denom":"ASSET1","index":"0.000011071143497688"},{"denom":"ASSET10","index":"0.000007713614824674"},{"denom":"ASSET11","index":"0.000010710668391289"},{"denom":"ASSET12","index":"0.000009644435509525"},{"denom":"ASSET13","index":"0.000003318857014090"},{"denom":"ASSET14","index":"0.000010004910615924"},{"denom":"ASSET15","index":"0.000007152875770275"},{"denom":"ASSET16","index":"0.000004987262870528"},{"denom":"ASSET17","index":"0.000003541219052903"},{"denom":"ASSET18","index":"0.000001686360555224"},{"denom":"ASSET2","index":"0.000003267755179083"},{"denom":"ASSET3","index":"0.000000955742427695"},{"denom":"ASSET4","index":"0.000008998066353223"},{"denom":"ASSET5","index":"0.000000741667172936"},{"denom":"ASSET6","index":"0.000003019151657428"},{"denom":"ASSET7","index":"0.000004625406633453"},{"denom":"ASSET8","index":"0.000006035541053505"},{"denom":"ASSET9","index":"0.000002606193585346"}],"last_reward_claim_height":"116"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET1","shares":"969417422.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000003141123056438"},{"denom":"ASSET1","index":"0.000026662100889972"},{"denom":"ASSET10","index":"0.000021312054987248"},{"denom":"ASSET11","index":"0.000026503481745319"},{"denom":"ASSET12","index":"0.000025286293002787"},{"denom":"ASSET13","index":"0.000008324908472884"},{"denom":"ASSET14","index":"0.000024319980387721"},{"denom":"ASSET15","index":"0.000019190708128374"},{"denom":"ASSET16","index":"0.000011824997422058"},{"denom":"ASSET17","index":"0.000009292034078872"},{"denom":"ASSET18","index":"0.000003834040785154"},{"denom":"ASSET2","index":"0.000008076003481032"},{"denom":"ASSET3","index":"0.000002241608843356"},{"denom":"ASSET4","index":"0.000021614431804298"},{"denom":"ASSET5","index":"0.000001746420421862"},{"denom":"ASSET6","index":"0.000007047828859327"},{"denom":"ASSET7","index":"0.000011075197168484"},{"denom":"ASSET8","index":"0.000015134882092008"},{"denom":"ASSET9","index":"0.000006422749115253"}],"last_reward_claim_height":"129"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET3","shares":"311519592.167926235121716070","reward_history":[{"denom":"ASSET0","index":"0.000004668297440245"},{"denom":"ASSET1","index":"0.000038252783071288"},{"denom":"ASSET10","index":"0.000033083245025153"},{"denom":"ASSET11","index":"0.000039708345694553"},{"denom":"ASSET12","index":"0.000037813797973625"},{"denom":"ASSET13","index":"0.000012799944975093"},{"denom":"ASSET14","index":"0.000036625421736424"},{"denom":"ASSET15","index":"0.000029696005658341"},{"denom":"ASSET16","index":"0.000016971159537831"},{"denom":"ASSET17","index":"0.000013740059333476"},{"denom":"ASSET18","index":"0.000005702232169970"},{"denom":"ASSET2","index":"0.000011549026586519"},{"denom":"ASSET3","index":"0.000003315565659179"},{"denom":"ASSET4","index":"0.000031346012924510"},{"denom":"ASSET5","index":"0.000002602988639174"},{"denom":"ASSET6","index":"0.000010621884419797"},{"denom":"ASSET7","index":"0.000016417450552926"},{"denom":"ASSET8","index":"0.000023609141580926"},{"denom":"ASSET9","index":"0.000009483071524163"}],"last_reward_claim_height":"195"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET4","shares":"99282156.155468540061519370","reward_history":[{"denom":"ASSET0","index":"0.000003141123056438"},{"denom":"ASSET1","index":"0.000026662100889972"},{"denom":"ASSET10","index":"0.000021312054987248"},{"denom":"ASSET11","index":"0.000026503481745319"},{"denom":"ASSET12","index":"0.000025286293002787"},{"denom":"ASSET13","index":"0.000008324908472884"},{"denom":"ASSET14","index":"0.000024319980387721"},{"denom":"ASSET15","index":"0.000019190708128374"},{"denom":"ASSET16","index":"0.000011824997422058"},{"denom":"ASSET17","index":"0.000009292034078872"},{"denom":"ASSET18","index":"0.000003834040785154"},{"denom":"ASSET2","index":"0.000008076003481032"},{"denom":"ASSET3","index":"0.000002241608843356"},{"denom":"ASSET4","index":"0.000021614431804298"},{"denom":"ASSET5","index":"0.000001746420421862"},{"denom":"ASSET6","index":"0.000007047828859327"},{"denom":"ASSET7","index":"0.000011075197168484"},{"denom":"ASSET8","index":"0.000015134882092008"},{"denom":"ASSET9","index":"0.000006422749115253"}],"last_reward_claim_height":"182"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET13","shares":"303299837.010350093002962644","reward_history":[{"denom":"ASSET0","index":"0.000003141123056438"},{"denom":"ASSET1","index":"0.000026662100889972"},{"denom":"ASSET10","index":"0.000021312054987248"},{"denom":"ASSET11","index":"0.000026503481745319"},{"denom":"ASSET12","index":"0.000025286293002787"},{"denom":"ASSET13","index":"0.000008324908472884"},{"denom":"ASSET14","index":"0.000024319980387721"},{"denom":"ASSET15","index":"0.000019190708128374"},{"denom":"ASSET16","index":"0.000011824997422058"},{"denom":"ASSET17","index":"0.000009292034078872"},{"denom":"ASSET18","index":"0.000003834040785154"},{"denom":"ASSET2","index":"0.000008076003481032"},{"denom":"ASSET3","index":"0.000002241608843356"},{"denom":"ASSET4","index":"0.000021614431804298"},{"denom":"ASSET5","index":"0.000001746420421862"},{"denom":"ASSET6","index":"0.000007047828859327"},{"denom":"ASSET7","index":"0.000011075197168484"},{"denom":"ASSET8","index":"0.000015134882092008"},{"denom":"ASSET9","index":"0.000006422749115253"}],"last_reward_claim_height":"153"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET15","shares":"185001502.294337395047330274","reward_history":[{"denom":"ASSET0","index":"0.000001571435631869"},{"denom":"ASSET1","index":"0.000013104175099655"},{"denom":"ASSET10","index":"0.000009129715488355"},{"denom":"ASSET11","index":"0.000012677036600848"},{"denom":"ASSET12","index":"0.000011415350365342"},{"denom":"ASSET13","index":"0.000003928095848150"},{"denom":"ASSET14","index":"0.000011841502401104"},{"denom":"ASSET15","index":"0.000008466812321615"},{"denom":"ASSET16","index":"0.000005902994865728"},{"denom":"ASSET17","index":"0.000004192467944409"},{"denom":"ASSET18","index":"0.000001996601204585"},{"denom":"ASSET2","index":"0.000003867921602360"},{"denom":"ASSET3","index":"0.000001131473113468"},{"denom":"ASSET4","index":"0.000010648868578800"},{"denom":"ASSET5","index":"0.000000877952110712"},{"denom":"ASSET6","index":"0.000003573955614728"},{"denom":"ASSET7","index":"0.000005473883440830"},{"denom":"ASSET8","index":"0.000007142978914228"},{"denom":"ASSET9","index":"0.000003084669944040"}],"last_reward_claim_height":"83"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","denom":"ASSET18","shares":"276280467.999999839481048092","reward_history":[{"denom":"ASSET0","index":"0.000001571435631869"},{"denom":"ASSET1","index":"0.000013104175099655"},{"denom":"ASSET10","index":"0.000009129715488355"},{"denom":"ASSET11","index":"0.000012677036600848"},{"denom":"ASSET12","index":"0.000011415350365342"},{"denom":"ASSET13","index":"0.000003928095848150"},{"denom":"ASSET14","index":"0.000011841502401104"},{"denom":"ASSET15","index":"0.000008466812321615"},{"denom":"ASSET16","index":"0.000005902994865728"},{"denom":"ASSET17","index":"0.000004192467944409"},{"denom":"ASSET18","index":"0.000001996601204585"},{"denom":"ASSET2","index":"0.000003867921602360"},{"denom":"ASSET3","index":"0.000001131473113468"},{"denom":"ASSET4","index":"0.000010648868578800"},{"denom":"ASSET5","index":"0.000000877952110712"},{"denom":"ASSET6","index":"0.000003573955614728"},{"denom":"ASSET7","index":"0.000005473883440830"},{"denom":"ASSET8","index":"0.000007142978914228"},{"denom":"ASSET9","index":"0.000003084669944040"}],"last_reward_claim_height":"104"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET0","shares":"41273098.941665646609690779","reward_history":[{"denom":"ASSET0","index":"0.000003054120352223"},{"denom":"ASSET1","index":"0.000025909289170716"},{"denom":"ASSET10","index":"0.000020664041936079"},{"denom":"ASSET11","index":"0.000025743066158465"},{"denom":"ASSET12","index":"0.000024537849095602"},{"denom":"ASSET13","index":"0.000008085297309351"},{"denom":"ASSET14","index":"0.000023630023251940"},{"denom":"ASSET15","index":"0.000018615490114349"},{"denom":"ASSET16","index":"0.000011495216270003"},{"denom":"ASSET17","index":"0.000009017197770141"},{"denom":"ASSET18","index":"0.000003730110182262"},{"denom":"ASSET2","index":"0.000007845299155388"},{"denom":"ASSET3","index":"0.000002179886924088"},{"denom":"ASSET4","index":"0.000021005968780047"},{"denom":"ASSET5","index":"0.000001698230665763"},{"denom":"ASSET6","index":"0.000006853367473041"},{"denom":"ASSET7","index":"0.000010764057351149"},{"denom":"ASSET8","index":"0.000014698116791571"},{"denom":"ASSET9","index":"0.000006239964640655"}],"last_reward_claim_height":"160"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET1","shares":"3673859.386943676533737669","reward_history":[{"denom":"ASSET0","index":"0.000003054120352223"},{"denom":"ASSET1","index":"0.000025909289170716"},{"denom":"ASSET10","index":"0.000020664041936079"},{"denom":"ASSET11","index":"0.000025743066158465"},{"denom":"ASSET12","index":"0.000024537849095602"},{"denom":"ASSET13","index":"0.000008085297309351"},{"denom":"ASSET14","index":"0.000023630023251940"},{"denom":"ASSET15","index":"0.000018615490114349"},{"denom":"ASSET16","index":"0.000011495216270003"},{"denom":"ASSET17","index":"0.000009017197770141"},{"denom":"ASSET18","index":"0.000003730110182262"},{"denom":"ASSET2","index":"0.000007845299155388"},{"denom":"ASSET3","index":"0.000002179886924088"},{"denom":"ASSET4","index":"0.000021005968780047"},{"denom":"ASSET5","index":"0.000001698230665763"},{"denom":"ASSET6","index":"0.000006853367473041"},{"denom":"ASSET7","index":"0.000010764057351149"},{"denom":"ASSET8","index":"0.000014698116791571"},{"denom":"ASSET9","index":"0.000006239964640655"}],"last_reward_claim_height":"174"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET3","shares":"566354079.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001554974273829"},{"denom":"ASSET1","index":"0.000012964145980643"},{"denom":"ASSET10","index":"0.000009032293690170"},{"denom":"ASSET11","index":"0.000012541598623624"},{"denom":"ASSET12","index":"0.000011293609918011"},{"denom":"ASSET13","index":"0.000003886649549954"},{"denom":"ASSET14","index":"0.000011715371140412"},{"denom":"ASSET15","index":"0.000008376264351692"},{"denom":"ASSET16","index":"0.000005840194074962"},{"denom":"ASSET17","index":"0.000004147646243034"},{"denom":"ASSET18","index":"0.000001975556294303"},{"denom":"ASSET2","index":"0.000003826903319009"},{"denom":"ASSET3","index":"0.000001119455695618"},{"denom":"ASSET4","index":"0.000010535776146539"},{"denom":"ASSET5","index":"0.000000869071819878"},{"denom":"ASSET6","index":"0.000003536426577765"},{"denom":"ASSET7","index":"0.000005416074448708"},{"denom":"ASSET8","index":"0.000007067350213206"},{"denom":"ASSET9","index":"0.000003052560720565"}],"last_reward_claim_height":"79"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET9","shares":"78550830.000000003922487136","reward_history":[{"denom":"ASSET0","index":"0.000003054120352223"},{"denom":"ASSET1","index":"0.000025909289170716"},{"denom":"ASSET10","index":"0.000020664041936079"},{"denom":"ASSET11","index":"0.000025743066158465"},{"denom":"ASSET12","index":"0.000024537849095602"},{"denom":"ASSET13","index":"0.000008085297309351"},{"denom":"ASSET14","index":"0.000023630023251940"},{"denom":"ASSET15","index":"0.000018615490114349"},{"denom":"ASSET16","index":"0.000011495216270003"},{"denom":"ASSET17","index":"0.000009017197770141"},{"denom":"ASSET18","index":"0.000003730110182262"},{"denom":"ASSET2","index":"0.000007845299155388"},{"denom":"ASSET3","index":"0.000002179886924088"},{"denom":"ASSET4","index":"0.000021005968780047"},{"denom":"ASSET5","index":"0.000001698230665763"},{"denom":"ASSET6","index":"0.000006853367473041"},{"denom":"ASSET7","index":"0.000010764057351149"},{"denom":"ASSET8","index":"0.000014698116791571"},{"denom":"ASSET9","index":"0.000006239964640655"}],"last_reward_claim_height":"140"},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","denom":"ASSET16","shares":"1000000000.000000000000000000","reward_history":[{"denom":"ASSET0","index":"0.000001554974273829"},{"denom":"ASSET1","index":"0.000012964145980643"},{"denom":"ASSET10","index":"0.000009032293690170"},{"denom":"ASSET11","index":"0.000012541598623624"},{"denom":"ASSET12","index":"0.000011293609918011"},{"denom":"ASSET13","index":"0.000003886649549954"},{"denom":"ASSET14","index":"0.000011715371140412"},{"denom":"ASSET15","index":"0.000008376264351692"},{"denom":"ASSET16","index":"0.000005840194074962"},{"denom":"ASSET17","index":"0.000004147646243034"},{"denom":"ASSET18","index":"0.000001975556294303"},{"denom":"ASSET2","index":"0.000003826903319009"},{"denom":"ASSET3","index":"0.000001119455695618"},{"denom":"ASSET4","index":"0.000010535776146539"},{"denom":"ASSET5","index":"0.000000869071819878"},{"denom":"ASSET6","index":"0.000003536426577765"},{"denom":"ASSET7","index":"0.000005416074448708"},{"denom":"ASSET8","index":"0.000007067350213206"},{"denom":"ASSET9","index":"0.000003052560720565"}],"last_reward_claim_height":"77"}],"redelegations":[{"completion_time":"2023-06-12T13:47:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","balance":{"denom":"ASSET0","amount":"259953"}}},{"completion_time":"2023-06-12T13:43:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","balance":{"denom":"ASSET0","amount":"2254723"}}},{"completion_time":"2023-06-12T13:46:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","balance":{"denom":"ASSET0","amount":"516552486"}}},{"completion_time":"2023-06-12T13:49:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","balance":{"denom":"ASSET1","amount":"285418269"}}},{"completion_time":"2023-06-12T13:43:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","balance":{"denom":"ASSET1","amount":"633485318"}}},{"completion_time":"2023-06-12T13:48:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","balance":{"denom":"ASSET2","amount":"54176435"}}},{"completion_time":"2023-06-12T13:46:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","balance":{"denom":"ASSET2","amount":"64221038"}}},{"completion_time":"2023-06-12T13:48:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","balance":{"denom":"ASSET2","amount":"2761488"}}},{"completion_time":"2023-06-12T13:34:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","balance":{"denom":"ASSET2","amount":"455745823"}}},{"completion_time":"2023-06-12T13:42:09.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","balance":{"denom":"ASSET2","amount":"573307778"}}},{"completion_time":"2023-06-12T13:42:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","balance":{"denom":"ASSET2","amount":"246922000"}}},{"completion_time":"2023-06-12T13:43:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","balance":{"denom":"ASSET3","amount":"503829473"}}},{"completion_time":"2023-06-12T13:45:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","balance":{"denom":"ASSET3","amount":"284785888"}}},{"completion_time":"2023-06-12T13:38:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","balance":{"denom":"ASSET3","amount":"253436562"}}},{"completion_time":"2023-06-12T13:43:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","balance":{"denom":"ASSET3","amount":"151098414"}}},{"completion_time":"2023-06-12T13:35:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","balance":{"denom":"ASSET4","amount":"23551915"}}},{"completion_time":"2023-06-12T13:43:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","balance":{"denom":"ASSET4","amount":"187181641"}}},{"completion_time":"2023-06-12T13:34:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","balance":{"denom":"ASSET4","amount":"697445098"}}},{"completion_time":"2023-06-12T13:46:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","balance":{"denom":"ASSET4","amount":"42950266"}}},{"completion_time":"2023-06-12T13:39:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","balance":{"denom":"ASSET4","amount":"826920607"}}},{"completion_time":"2023-06-12T13:39:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","balance":{"denom":"ASSET4","amount":"25595213"}}},{"completion_time":"2023-06-12T13:49:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","balance":{"denom":"ASSET5","amount":"614575910"}}},{"completion_time":"2023-06-12T13:34:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","balance":{"denom":"ASSET5","amount":"412029620"}}},{"completion_time":"2023-06-12T13:37:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","balance":{"denom":"ASSET5","amount":"242545186"}}},{"completion_time":"2023-06-12T13:36:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","balance":{"denom":"ASSET5","amount":"83659299"}}},{"completion_time":"2023-06-12T13:43:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","balance":{"denom":"ASSET5","amount":"427757814"}}},{"completion_time":"2023-06-12T13:42:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","balance":{"denom":"ASSET5","amount":"7887243"}}},{"completion_time":"2023-06-12T13:45:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","balance":{"denom":"ASSET5","amount":"393265449"}}},{"completion_time":"2023-06-12T13:34:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","balance":{"denom":"ASSET5","amount":"60033139"}}},{"completion_time":"2023-06-12T13:40:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","balance":{"denom":"ASSET6","amount":"21111024"}}},{"completion_time":"2023-06-12T13:43:09.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","balance":{"denom":"ASSET6","amount":"500539135"}}},{"completion_time":"2023-06-12T13:46:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","balance":{"denom":"ASSET6","amount":"426100562"}}},{"completion_time":"2023-06-12T13:40:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","balance":{"denom":"ASSET7","amount":"332699297"}}},{"completion_time":"2023-06-12T13:41:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","balance":{"denom":"ASSET8","amount":"168613493"}}},{"completion_time":"2023-06-12T13:38:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","balance":{"denom":"ASSET9","amount":"268074356"}}},{"completion_time":"2023-06-12T13:49:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","balance":{"denom":"ASSET10","amount":"174919275"}}},{"completion_time":"2023-06-12T13:35:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","balance":{"denom":"ASSET10","amount":"122553482"}}},{"completion_time":"2023-06-12T13:48:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","balance":{"denom":"ASSET10","amount":"1144463"}}},{"completion_time":"2023-06-12T13:42:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","balance":{"denom":"ASSET11","amount":"59665457"}}},{"completion_time":"2023-06-12T13:40:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","balance":{"denom":"ASSET11","amount":"114040829"}}},{"completion_time":"2023-06-12T13:44:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","balance":{"denom":"ASSET11","amount":"53871337"}}},{"completion_time":"2023-06-12T13:40:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","balance":{"denom":"ASSET11","amount":"50066974"}}},{"completion_time":"2023-06-12T13:48:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","balance":{"denom":"ASSET12","amount":"957304874"}}},{"completion_time":"2023-06-12T13:46:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","balance":{"denom":"ASSET12","amount":"156172936"}}},{"completion_time":"2023-06-12T13:43:09.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","balance":{"denom":"ASSET13","amount":"248620231"}}},{"completion_time":"2023-06-12T13:38:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","balance":{"denom":"ASSET13","amount":"801500567"}}},{"completion_time":"2023-06-12T13:33:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","balance":{"denom":"ASSET13","amount":"255860567"}}},{"completion_time":"2023-06-12T13:35:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","balance":{"denom":"ASSET13","amount":"22038855"}}},{"completion_time":"2023-06-12T13:45:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","balance":{"denom":"ASSET13","amount":"293194858"}}},{"completion_time":"2023-06-12T13:47:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","balance":{"denom":"ASSET13","amount":"103070218"}}},{"completion_time":"2023-06-12T13:46:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","balance":{"denom":"ASSET13","amount":"334042983"}}},{"completion_time":"2023-06-12T13:45:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","balance":{"denom":"ASSET15","amount":"900872616"}}},{"completion_time":"2023-06-12T13:39:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","balance":{"denom":"ASSET15","amount":"95290721"}}},{"completion_time":"2023-06-12T13:39:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","balance":{"denom":"ASSET15","amount":"343328599"}}},{"completion_time":"2023-06-12T13:33:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","balance":{"denom":"ASSET15","amount":"7413900"}}},{"completion_time":"2023-06-12T13:34:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","balance":{"denom":"ASSET15","amount":"783924197"}}},{"completion_time":"2023-06-12T13:41:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","balance":{"denom":"ASSET15","amount":"40582107"}}},{"completion_time":"2023-06-12T13:38:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","balance":{"denom":"ASSET16","amount":"142853639"}}},{"completion_time":"2023-06-12T13:35:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","balance":{"denom":"ASSET16","amount":"172264019"}}},{"completion_time":"2023-06-12T13:39:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","balance":{"denom":"ASSET16","amount":"73125743"}}},{"completion_time":"2023-06-12T13:33:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","balance":{"denom":"ASSET16","amount":"182621451"}}},{"completion_time":"2023-06-12T13:43:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","balance":{"denom":"ASSET16","amount":"100443533"}}},{"completion_time":"2023-06-12T13:35:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","balance":{"denom":"ASSET17","amount":"102100866"}}},{"completion_time":"2023-06-12T13:42:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","balance":{"denom":"ASSET17","amount":"75686135"}}},{"completion_time":"2023-06-12T13:35:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","balance":{"denom":"ASSET17","amount":"353312789"}}},{"completion_time":"2023-06-12T13:38:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","balance":{"denom":"ASSET17","amount":"28095683"}}},{"completion_time":"2023-06-12T13:40:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","balance":{"denom":"ASSET17","amount":"9777905"}}},{"completion_time":"2023-06-12T13:48:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","balance":{"denom":"ASSET17","amount":"163157276"}}},{"completion_time":"2023-06-12T13:45:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","balance":{"denom":"ASSET18","amount":"320571028"}}},{"completion_time":"2023-06-12T13:34:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","balance":{"denom":"ASSET18","amount":"13072422"}}},{"completion_time":"2023-06-12T13:37:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","balance":{"denom":"ASSET18","amount":"173989155"}}},{"completion_time":"2023-06-12T13:42:09.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","balance":{"denom":"ASSET18","amount":"754868443"}}},{"completion_time":"2023-06-12T13:39:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","balance":{"denom":"ASSET18","amount":"90448998"}}},{"completion_time":"2023-06-12T13:42:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","balance":{"denom":"ASSET0","amount":"6648808"}}},{"completion_time":"2023-06-12T13:34:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","balance":{"denom":"ASSET0","amount":"320488999"}}},{"completion_time":"2023-06-12T13:34:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","balance":{"denom":"ASSET0","amount":"124091369"}}},{"completion_time":"2023-06-12T13:44:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","balance":{"denom":"ASSET0","amount":"438451061"}}},{"completion_time":"2023-06-12T13:46:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","balance":{"denom":"ASSET0","amount":"532613427"}}},{"completion_time":"2023-06-12T13:37:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","balance":{"denom":"ASSET0","amount":"3482838"}}},{"completion_time":"2023-06-12T13:42:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","balance":{"denom":"ASSET0","amount":"83008042"}}},{"completion_time":"2023-06-12T13:45:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","balance":{"denom":"ASSET1","amount":"11314004"}}},{"completion_time":"2023-06-12T13:39:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","balance":{"denom":"ASSET1","amount":"439005146"}}},{"completion_time":"2023-06-12T13:38:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","balance":{"denom":"ASSET1","amount":"688123024"}}},{"completion_time":"2023-06-12T13:42:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","balance":{"denom":"ASSET1","amount":"418625088"}}},{"completion_time":"2023-06-12T13:47:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","balance":{"denom":"ASSET3","amount":"72506022"}}},{"completion_time":"2023-06-12T13:43:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","balance":{"denom":"ASSET3","amount":"571814254"}}},{"completion_time":"2023-06-12T13:43:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","balance":{"denom":"ASSET3","amount":"16674121"}}},{"completion_time":"2023-06-12T13:44:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","balance":{"denom":"ASSET3","amount":"5579380"}}},{"completion_time":"2023-06-12T13:44:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","balance":{"denom":"ASSET4","amount":"302371547"}}},{"completion_time":"2023-06-12T13:44:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","balance":{"denom":"ASSET4","amount":"130048154"}}},{"completion_time":"2023-06-12T13:34:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","balance":{"denom":"ASSET4","amount":"383994229"}}},{"completion_time":"2023-06-12T13:38:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","balance":{"denom":"ASSET4","amount":"44611208"}}},{"completion_time":"2023-06-12T13:45:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","balance":{"denom":"ASSET4","amount":"240724994"}}},{"completion_time":"2023-06-12T13:37:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","balance":{"denom":"ASSET4","amount":"92630873"}}},{"completion_time":"2023-06-12T13:35:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","balance":{"denom":"ASSET6","amount":"262839434"}}},{"completion_time":"2023-06-12T13:43:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","balance":{"denom":"ASSET6","amount":"176677437"}}},{"completion_time":"2023-06-12T13:43:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","balance":{"denom":"ASSET7","amount":"10354666"}}},{"completion_time":"2023-06-12T13:47:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","balance":{"denom":"ASSET7","amount":"271439162"}}},{"completion_time":"2023-06-12T13:46:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","balance":{"denom":"ASSET7","amount":"17564047"}}},{"completion_time":"2023-06-12T13:45:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","balance":{"denom":"ASSET8","amount":"144014099"}}},{"completion_time":"2023-06-12T13:35:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","balance":{"denom":"ASSET8","amount":"736044071"}}},{"completion_time":"2023-06-12T13:33:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","balance":{"denom":"ASSET8","amount":"283559595"}}},{"completion_time":"2023-06-12T13:42:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","balance":{"denom":"ASSET8","amount":"959475318"}}},{"completion_time":"2023-06-12T13:49:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","balance":{"denom":"ASSET8","amount":"439318602"}}},{"completion_time":"2023-06-12T13:45:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","balance":{"denom":"ASSET8","amount":"152737179"}}},{"completion_time":"2023-06-12T13:42:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","balance":{"denom":"ASSET8","amount":"151916060"}}},{"completion_time":"2023-06-12T13:45:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","balance":{"denom":"ASSET9","amount":"11872792"}}},{"completion_time":"2023-06-12T13:39:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","balance":{"denom":"ASSET9","amount":"415548465"}}},{"completion_time":"2023-06-12T13:44:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","balance":{"denom":"ASSET9","amount":"989226327"}}},{"completion_time":"2023-06-12T13:49:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","balance":{"denom":"ASSET9","amount":"414995701"}}},{"completion_time":"2023-06-12T13:35:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","balance":{"denom":"ASSET10","amount":"274497501"}}},{"completion_time":"2023-06-12T13:39:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","balance":{"denom":"ASSET10","amount":"147677384"}}},{"completion_time":"2023-06-12T13:42:09.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","balance":{"denom":"ASSET10","amount":"606384240"}}},{"completion_time":"2023-06-12T13:47:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","balance":{"denom":"ASSET10","amount":"963498140"}}},{"completion_time":"2023-06-12T13:37:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","balance":{"denom":"ASSET11","amount":"124409144"}}},{"completion_time":"2023-06-12T13:33:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","balance":{"denom":"ASSET11","amount":"235510435"}}},{"completion_time":"2023-06-12T13:46:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","balance":{"denom":"ASSET11","amount":"934672769"}}},{"completion_time":"2023-06-12T13:45:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","balance":{"denom":"ASSET11","amount":"443364552"}}},{"completion_time":"2023-06-12T13:39:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","balance":{"denom":"ASSET11","amount":"2388198"}}},{"completion_time":"2023-06-12T13:37:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","balance":{"denom":"ASSET11","amount":"427160918"}}},{"completion_time":"2023-06-12T13:34:09.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","balance":{"denom":"ASSET11","amount":"7248216"}}},{"completion_time":"2023-06-12T13:38:09.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","balance":{"denom":"ASSET12","amount":"9122322"}}},{"completion_time":"2023-06-12T13:44:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","balance":{"denom":"ASSET12","amount":"413446715"}}},{"completion_time":"2023-06-12T13:41:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","balance":{"denom":"ASSET12","amount":"7898682"}}},{"completion_time":"2023-06-12T13:47:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","balance":{"denom":"ASSET12","amount":"29170414"}}},{"completion_time":"2023-06-12T13:38:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","balance":{"denom":"ASSET12","amount":"57825079"}}},{"completion_time":"2023-06-12T13:45:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","balance":{"denom":"ASSET12","amount":"695000285"}}},{"completion_time":"2023-06-12T13:47:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","balance":{"denom":"ASSET12","amount":"20774635"}}},{"completion_time":"2023-06-12T13:44:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","balance":{"denom":"ASSET12","amount":"169938556"}}},{"completion_time":"2023-06-12T13:40:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","balance":{"denom":"ASSET13","amount":"421629925"}}},{"completion_time":"2023-06-12T13:48:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","balance":{"denom":"ASSET13","amount":"265198846"}}},{"completion_time":"2023-06-12T13:33:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","balance":{"denom":"ASSET13","amount":"144793528"}}},{"completion_time":"2023-06-12T13:43:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","balance":{"denom":"ASSET14","amount":"864217378"}}},{"completion_time":"2023-06-12T13:33:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","balance":{"denom":"ASSET14","amount":"63644757"}}},{"completion_time":"2023-06-12T13:47:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","balance":{"denom":"ASSET14","amount":"356829217"}}},{"completion_time":"2023-06-12T13:46:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","balance":{"denom":"ASSET14","amount":"15985088"}}},{"completion_time":"2023-06-12T13:33:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","balance":{"denom":"ASSET14","amount":"448665959"}}},{"completion_time":"2023-06-12T13:33:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","balance":{"denom":"ASSET14","amount":"79916840"}}},{"completion_time":"2023-06-12T13:43:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","balance":{"denom":"ASSET14","amount":"601025873"}}},{"completion_time":"2023-06-12T13:39:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","balance":{"denom":"ASSET14","amount":"502612494"}}},{"completion_time":"2023-06-12T13:33:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","balance":{"denom":"ASSET14","amount":"149830585"}}},{"completion_time":"2023-06-12T13:33:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","balance":{"denom":"ASSET14","amount":"109078438"}}},{"completion_time":"2023-06-12T13:48:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","balance":{"denom":"ASSET15","amount":"17948698"}}},{"completion_time":"2023-06-12T13:33:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","balance":{"denom":"ASSET15","amount":"3843259"}}},{"completion_time":"2023-06-12T13:39:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","balance":{"denom":"ASSET15","amount":"924030892"}}},{"completion_time":"2023-06-12T13:33:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","balance":{"denom":"ASSET15","amount":"80502820"}}},{"completion_time":"2023-06-12T13:41:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","balance":{"denom":"ASSET15","amount":"234251992"}}},{"completion_time":"2023-06-12T13:39:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","balance":{"denom":"ASSET15","amount":"14230192"}}},{"completion_time":"2023-06-12T13:33:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","balance":{"denom":"ASSET15","amount":"25885313"}}},{"completion_time":"2023-06-12T13:33:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","balance":{"denom":"ASSET15","amount":"24505362"}}},{"completion_time":"2023-06-12T13:48:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","balance":{"denom":"ASSET15","amount":"481735904"}}},{"completion_time":"2023-06-12T13:47:09.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","balance":{"denom":"ASSET15","amount":"14359976"}}},{"completion_time":"2023-06-12T13:45:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","balance":{"denom":"ASSET15","amount":"83998264"}}},{"completion_time":"2023-06-12T13:35:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","balance":{"denom":"ASSET15","amount":"253836196"}}},{"completion_time":"2023-06-12T13:33:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","balance":{"denom":"ASSET16","amount":"50816288"}}},{"completion_time":"2023-06-12T13:38:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","balance":{"denom":"ASSET16","amount":"242801725"}}},{"completion_time":"2023-06-12T13:37:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","balance":{"denom":"ASSET16","amount":"166773324"}}},{"completion_time":"2023-06-12T13:38:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","balance":{"denom":"ASSET16","amount":"16313177"}}},{"completion_time":"2023-06-12T13:41:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","balance":{"denom":"ASSET16","amount":"43443166"}}},{"completion_time":"2023-06-12T13:38:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","balance":{"denom":"ASSET17","amount":"647366851"}}},{"completion_time":"2023-06-12T13:40:09.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","balance":{"denom":"ASSET18","amount":"491353507"}}},{"completion_time":"2023-06-12T13:38:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","balance":{"denom":"ASSET18","amount":"69488644"}}},{"completion_time":"2023-06-12T13:44:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","balance":{"denom":"ASSET18","amount":"151969385"}}},{"completion_time":"2023-06-12T13:35:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","balance":{"denom":"ASSET18","amount":"142268972"}}},{"completion_time":"2023-06-12T13:41:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","balance":{"denom":"ASSET18","amount":"584340460"}}},{"completion_time":"2023-06-12T13:39:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","balance":{"denom":"ASSET18","amount":"30463697"}}},{"completion_time":"2023-06-12T13:47:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","balance":{"denom":"ASSET0","amount":"380561061"}}},{"completion_time":"2023-06-12T13:48:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","balance":{"denom":"ASSET0","amount":"874570133"}}},{"completion_time":"2023-06-12T13:37:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","balance":{"denom":"ASSET0","amount":"554038534"}}},{"completion_time":"2023-06-12T13:37:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","balance":{"denom":"ASSET0","amount":"133060724"}}},{"completion_time":"2023-06-12T13:48:09.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","balance":{"denom":"ASSET1","amount":"611383950"}}},{"completion_time":"2023-06-12T13:34:09.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","balance":{"denom":"ASSET1","amount":"577056302"}}},{"completion_time":"2023-06-12T13:34:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","balance":{"denom":"ASSET1","amount":"121257949"}}},{"completion_time":"2023-06-12T13:34:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","balance":{"denom":"ASSET1","amount":"177889485"}}},{"completion_time":"2023-06-12T13:39:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","balance":{"denom":"ASSET2","amount":"222078908"}}},{"completion_time":"2023-06-12T13:40:09.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","balance":{"denom":"ASSET2","amount":"462072088"}}},{"completion_time":"2023-06-12T13:44:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","balance":{"denom":"ASSET3","amount":"413498747"}}},{"completion_time":"2023-06-12T13:42:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","balance":{"denom":"ASSET3","amount":"256483869"}}},{"completion_time":"2023-06-12T13:34:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","balance":{"denom":"ASSET3","amount":"12800858"}}},{"completion_time":"2023-06-12T13:43:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","balance":{"denom":"ASSET3","amount":"514499388"}}},{"completion_time":"2023-06-12T13:37:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","balance":{"denom":"ASSET3","amount":"411817096"}}},{"completion_time":"2023-06-12T13:36:09.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","balance":{"denom":"ASSET3","amount":"27065491"}}},{"completion_time":"2023-06-12T13:34:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","balance":{"denom":"ASSET3","amount":"192419882"}}},{"completion_time":"2023-06-12T13:36:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","balance":{"denom":"ASSET3","amount":"104057928"}}},{"completion_time":"2023-06-12T13:37:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","balance":{"denom":"ASSET4","amount":"141319484"}}},{"completion_time":"2023-06-12T13:44:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","balance":{"denom":"ASSET4","amount":"272536335"}}},{"completion_time":"2023-06-12T13:43:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","balance":{"denom":"ASSET4","amount":"109248561"}}},{"completion_time":"2023-06-12T13:39:09.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","balance":{"denom":"ASSET4","amount":"233337259"}}},{"completion_time":"2023-06-12T13:42:09.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","balance":{"denom":"ASSET4","amount":"180844455"}}},{"completion_time":"2023-06-12T13:37:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","balance":{"denom":"ASSET4","amount":"394376588"}}},{"completion_time":"2023-06-12T13:39:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","balance":{"denom":"ASSET5","amount":"25864223"}}},{"completion_time":"2023-06-12T13:39:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","balance":{"denom":"ASSET5","amount":"676191291"}}},{"completion_time":"2023-06-12T13:42:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","balance":{"denom":"ASSET5","amount":"30386366"}}},{"completion_time":"2023-06-12T13:44:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","balance":{"denom":"ASSET6","amount":"237831953"}}},{"completion_time":"2023-06-12T13:36:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","balance":{"denom":"ASSET6","amount":"404104114"}}},{"completion_time":"2023-06-12T13:44:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","balance":{"denom":"ASSET6","amount":"18707314"}}},{"completion_time":"2023-06-12T13:43:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","balance":{"denom":"ASSET6","amount":"359965199"}}},{"completion_time":"2023-06-12T13:44:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","balance":{"denom":"ASSET6","amount":"247189664"}}},{"completion_time":"2023-06-12T13:49:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","balance":{"denom":"ASSET7","amount":"72206710"}}},{"completion_time":"2023-06-12T13:45:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","balance":{"denom":"ASSET7","amount":"124536735"}}},{"completion_time":"2023-06-12T13:46:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","balance":{"denom":"ASSET7","amount":"21330196"}}},{"completion_time":"2023-06-12T13:46:09.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","balance":{"denom":"ASSET7","amount":"25632766"}}},{"completion_time":"2023-06-12T13:38:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","balance":{"denom":"ASSET7","amount":"140259453"}}},{"completion_time":"2023-06-12T13:41:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","balance":{"denom":"ASSET7","amount":"825637255"}}},{"completion_time":"2023-06-12T13:40:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","balance":{"denom":"ASSET8","amount":"267069786"}}},{"completion_time":"2023-06-12T13:42:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","balance":{"denom":"ASSET8","amount":"221376656"}}},{"completion_time":"2023-06-12T13:41:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","balance":{"denom":"ASSET8","amount":"757659981"}}},{"completion_time":"2023-06-12T13:33:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","balance":{"denom":"ASSET8","amount":"726698261"}}},{"completion_time":"2023-06-12T13:48:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","balance":{"denom":"ASSET8","amount":"455835586"}}},{"completion_time":"2023-06-12T13:47:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","balance":{"denom":"ASSET8","amount":"445090574"}}},{"completion_time":"2023-06-12T13:47:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","balance":{"denom":"ASSET9","amount":"583523106"}}},{"completion_time":"2023-06-12T13:49:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","balance":{"denom":"ASSET10","amount":"361108522"}}},{"completion_time":"2023-06-12T13:45:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","balance":{"denom":"ASSET10","amount":"381373130"}}},{"completion_time":"2023-06-12T13:46:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","balance":{"denom":"ASSET10","amount":"12230974"}}},{"completion_time":"2023-06-12T13:49:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","balance":{"denom":"ASSET10","amount":"92137452"}}},{"completion_time":"2023-06-12T13:49:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","balance":{"denom":"ASSET10","amount":"207387974"}}},{"completion_time":"2023-06-12T13:44:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","balance":{"denom":"ASSET11","amount":"66466161"}}},{"completion_time":"2023-06-12T13:43:09.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","balance":{"denom":"ASSET11","amount":"41453845"}}},{"completion_time":"2023-06-12T13:49:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","balance":{"denom":"ASSET11","amount":"645058816"}}},{"completion_time":"2023-06-12T13:38:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","balance":{"denom":"ASSET11","amount":"334328629"}}},{"completion_time":"2023-06-12T13:40:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","balance":{"denom":"ASSET11","amount":"25053845"}}},{"completion_time":"2023-06-12T13:46:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","balance":{"denom":"ASSET11","amount":"209388185"}}},{"completion_time":"2023-06-12T13:43:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","balance":{"denom":"ASSET11","amount":"160233400"}}},{"completion_time":"2023-06-12T13:35:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","balance":{"denom":"ASSET11","amount":"513804585"}}},{"completion_time":"2023-06-12T13:34:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","balance":{"denom":"ASSET12","amount":"156121322"}}},{"completion_time":"2023-06-12T13:40:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","balance":{"denom":"ASSET12","amount":"229708402"}}},{"completion_time":"2023-06-12T13:42:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","balance":{"denom":"ASSET13","amount":"18044473"}}},{"completion_time":"2023-06-12T13:45:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","balance":{"denom":"ASSET14","amount":"192210669"}}},{"completion_time":"2023-06-12T13:44:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","balance":{"denom":"ASSET14","amount":"48024774"}}},{"completion_time":"2023-06-12T13:44:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","balance":{"denom":"ASSET14","amount":"2955249"}}},{"completion_time":"2023-06-12T13:42:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","balance":{"denom":"ASSET15","amount":"167068657"}}},{"completion_time":"2023-06-12T13:35:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","balance":{"denom":"ASSET15","amount":"250145861"}}},{"completion_time":"2023-06-12T13:39:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","balance":{"denom":"ASSET15","amount":"999937404"}}},{"completion_time":"2023-06-12T13:37:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","balance":{"denom":"ASSET15","amount":"155390971"}}},{"completion_time":"2023-06-12T13:46:09.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","balance":{"denom":"ASSET16","amount":"18951874"}}},{"completion_time":"2023-06-12T13:48:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","balance":{"denom":"ASSET16","amount":"92792986"}}},{"completion_time":"2023-06-12T13:43:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","balance":{"denom":"ASSET16","amount":"117415740"}}},{"completion_time":"2023-06-12T13:36:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","balance":{"denom":"ASSET16","amount":"994268836"}}},{"completion_time":"2023-06-12T13:33:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","balance":{"denom":"ASSET16","amount":"588848920"}}},{"completion_time":"2023-06-12T13:49:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","balance":{"denom":"ASSET17","amount":"403175531"}}},{"completion_time":"2023-06-12T13:46:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","balance":{"denom":"ASSET17","amount":"12674210"}}},{"completion_time":"2023-06-12T13:36:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","balance":{"denom":"ASSET17","amount":"166750473"}}},{"completion_time":"2023-06-12T13:37:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","balance":{"denom":"ASSET17","amount":"407671496"}}},{"completion_time":"2023-06-12T13:46:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","balance":{"denom":"ASSET17","amount":"59199175"}}},{"completion_time":"2023-06-12T13:41:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","balance":{"denom":"ASSET18","amount":"37016842"}}},{"completion_time":"2023-06-12T13:39:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","balance":{"denom":"ASSET18","amount":"638160007"}}},{"completion_time":"2023-06-12T13:44:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","balance":{"denom":"ASSET18","amount":"79650393"}}},{"completion_time":"2023-06-12T13:47:09.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","balance":{"denom":"ASSET18","amount":"16513577"}}},{"completion_time":"2023-06-12T13:48:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","balance":{"denom":"ASSET0","amount":"41965271"}}},{"completion_time":"2023-06-12T13:43:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","balance":{"denom":"ASSET0","amount":"90220026"}}},{"completion_time":"2023-06-12T13:43:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","balance":{"denom":"ASSET1","amount":"311026553"}}},{"completion_time":"2023-06-12T13:43:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","balance":{"denom":"ASSET1","amount":"430880451"}}},{"completion_time":"2023-06-12T13:47:09.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","balance":{"denom":"ASSET1","amount":"43473943"}}},{"completion_time":"2023-06-12T13:49:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","balance":{"denom":"ASSET1","amount":"3481616"}}},{"completion_time":"2023-06-12T13:37:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","balance":{"denom":"ASSET2","amount":"37195456"}}},{"completion_time":"2023-06-12T13:38:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","balance":{"denom":"ASSET2","amount":"19131537"}}},{"completion_time":"2023-06-12T13:40:09.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","balance":{"denom":"ASSET2","amount":"166351175"}}},{"completion_time":"2023-06-12T13:43:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","balance":{"denom":"ASSET2","amount":"6281601"}}},{"completion_time":"2023-06-12T13:42:09.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","balance":{"denom":"ASSET3","amount":"230314104"}}},{"completion_time":"2023-06-12T13:45:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","balance":{"denom":"ASSET3","amount":"20333919"}}},{"completion_time":"2023-06-12T13:41:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","balance":{"denom":"ASSET3","amount":"453737273"}}},{"completion_time":"2023-06-12T13:40:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","balance":{"denom":"ASSET3","amount":"181316713"}}},{"completion_time":"2023-06-12T13:49:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","balance":{"denom":"ASSET4","amount":"55821787"}}},{"completion_time":"2023-06-12T13:44:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","balance":{"denom":"ASSET4","amount":"48197587"}}},{"completion_time":"2023-06-12T13:48:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","balance":{"denom":"ASSET4","amount":"364486813"}}},{"completion_time":"2023-06-12T13:45:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","balance":{"denom":"ASSET4","amount":"61412216"}}},{"completion_time":"2023-06-12T13:40:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","balance":{"denom":"ASSET4","amount":"38953813"}}},{"completion_time":"2023-06-12T13:36:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","balance":{"denom":"ASSET5","amount":"126117319"}}},{"completion_time":"2023-06-12T13:48:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","balance":{"denom":"ASSET5","amount":"537934044"}}},{"completion_time":"2023-06-12T13:36:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","balance":{"denom":"ASSET5","amount":"214205901"}}},{"completion_time":"2023-06-12T13:37:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","balance":{"denom":"ASSET6","amount":"377155120"}}},{"completion_time":"2023-06-12T13:35:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","balance":{"denom":"ASSET6","amount":"931437640"}}},{"completion_time":"2023-06-12T13:42:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","balance":{"denom":"ASSET6","amount":"220779847"}}},{"completion_time":"2023-06-12T13:33:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","balance":{"denom":"ASSET7","amount":"149095472"}}},{"completion_time":"2023-06-12T13:33:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","balance":{"denom":"ASSET7","amount":"426990417"}}},{"completion_time":"2023-06-12T13:33:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","balance":{"denom":"ASSET7","amount":"345618470"}}},{"completion_time":"2023-06-12T13:42:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","balance":{"denom":"ASSET8","amount":"884255739"}}},{"completion_time":"2023-06-12T13:35:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","balance":{"denom":"ASSET8","amount":"45546408"}}},{"completion_time":"2023-06-12T13:43:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","balance":{"denom":"ASSET8","amount":"350810481"}}},{"completion_time":"2023-06-12T13:38:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","balance":{"denom":"ASSET9","amount":"226602527"}}},{"completion_time":"2023-06-12T13:38:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","balance":{"denom":"ASSET9","amount":"484916687"}}},{"completion_time":"2023-06-12T13:33:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","balance":{"denom":"ASSET9","amount":"492607688"}}},{"completion_time":"2023-06-12T13:38:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","balance":{"denom":"ASSET9","amount":"103329483"}}},{"completion_time":"2023-06-12T13:33:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","balance":{"denom":"ASSET10","amount":"442236422"}}},{"completion_time":"2023-06-12T13:45:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","balance":{"denom":"ASSET10","amount":"999839749"}}},{"completion_time":"2023-06-12T13:33:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","balance":{"denom":"ASSET10","amount":"348206629"}}},{"completion_time":"2023-06-12T13:47:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","balance":{"denom":"ASSET10","amount":"131752295"}}},{"completion_time":"2023-06-12T13:47:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","balance":{"denom":"ASSET11","amount":"415059241"}}},{"completion_time":"2023-06-12T13:45:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","balance":{"denom":"ASSET11","amount":"371379841"}}},{"completion_time":"2023-06-12T13:47:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","balance":{"denom":"ASSET12","amount":"262478386"}}},{"completion_time":"2023-06-12T13:42:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","balance":{"denom":"ASSET13","amount":"40980859"}}},{"completion_time":"2023-06-12T13:40:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","balance":{"denom":"ASSET13","amount":"7819513"}}},{"completion_time":"2023-06-12T13:43:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","balance":{"denom":"ASSET13","amount":"754127705"}}},{"completion_time":"2023-06-12T13:48:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","balance":{"denom":"ASSET14","amount":"60225277"}}},{"completion_time":"2023-06-12T13:36:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","balance":{"denom":"ASSET14","amount":"925127152"}}},{"completion_time":"2023-06-12T13:33:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","balance":{"denom":"ASSET15","amount":"60073854"}}},{"completion_time":"2023-06-12T13:37:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","balance":{"denom":"ASSET15","amount":"31071870"}}},{"completion_time":"2023-06-12T13:33:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","balance":{"denom":"ASSET16","amount":"1444501"}}},{"completion_time":"2023-06-12T13:40:09.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","balance":{"denom":"ASSET16","amount":"7330"}}},{"completion_time":"2023-06-12T13:40:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","balance":{"denom":"ASSET17","amount":"697095839"}}},{"completion_time":"2023-06-12T13:38:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","balance":{"denom":"ASSET0","amount":"995257983"}}},{"completion_time":"2023-06-12T13:37:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","balance":{"denom":"ASSET0","amount":"167237597"}}},{"completion_time":"2023-06-12T13:45:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","balance":{"denom":"ASSET0","amount":"201718180"}}},{"completion_time":"2023-06-12T13:34:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","balance":{"denom":"ASSET0","amount":"10910098"}}},{"completion_time":"2023-06-12T13:40:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","balance":{"denom":"ASSET0","amount":"469426830"}}},{"completion_time":"2023-06-12T13:48:09.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","balance":{"denom":"ASSET0","amount":"68742346"}}},{"completion_time":"2023-06-12T13:33:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","balance":{"denom":"ASSET0","amount":"93236779"}}},{"completion_time":"2023-06-12T13:35:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","balance":{"denom":"ASSET1","amount":"6579130"}}},{"completion_time":"2023-06-12T13:46:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","balance":{"denom":"ASSET1","amount":"1137339349"}}},{"completion_time":"2023-06-12T13:38:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","balance":{"denom":"ASSET1","amount":"282732127"}}},{"completion_time":"2023-06-12T13:45:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","balance":{"denom":"ASSET1","amount":"171722104"}}},{"completion_time":"2023-06-12T13:48:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","balance":{"denom":"ASSET1","amount":"113645747"}}},{"completion_time":"2023-06-12T13:35:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","balance":{"denom":"ASSET1","amount":"79370787"}}},{"completion_time":"2023-06-12T13:33:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","balance":{"denom":"ASSET2","amount":"171270946"}}},{"completion_time":"2023-06-12T13:41:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","balance":{"denom":"ASSET2","amount":"250491820"}}},{"completion_time":"2023-06-12T13:41:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","balance":{"denom":"ASSET2","amount":"377217635"}}},{"completion_time":"2023-06-12T13:47:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","balance":{"denom":"ASSET3","amount":"142419753"}}},{"completion_time":"2023-06-12T13:37:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","balance":{"denom":"ASSET3","amount":"17327307"}}},{"completion_time":"2023-06-12T13:46:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","balance":{"denom":"ASSET5","amount":"447060862"}}},{"completion_time":"2023-06-12T13:45:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","balance":{"denom":"ASSET5","amount":"70048187"}}},{"completion_time":"2023-06-12T13:37:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","balance":{"denom":"ASSET6","amount":"78135117"}}},{"completion_time":"2023-06-12T13:49:09.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","balance":{"denom":"ASSET6","amount":"892902388"}}},{"completion_time":"2023-06-12T13:45:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","balance":{"denom":"ASSET6","amount":"280976798"}}},{"completion_time":"2023-06-12T13:49:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","balance":{"denom":"ASSET7","amount":"369819309"}}},{"completion_time":"2023-06-12T13:43:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","balance":{"denom":"ASSET7","amount":"365528853"}}},{"completion_time":"2023-06-12T13:49:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","balance":{"denom":"ASSET8","amount":"163472170"}}},{"completion_time":"2023-06-12T13:48:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","balance":{"denom":"ASSET8","amount":"365829129"}}},{"completion_time":"2023-06-12T13:33:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","balance":{"denom":"ASSET8","amount":"70498942"}}},{"completion_time":"2023-06-12T13:39:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","balance":{"denom":"ASSET9","amount":"155737313"}}},{"completion_time":"2023-06-12T13:34:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","balance":{"denom":"ASSET9","amount":"176526243"}}},{"completion_time":"2023-06-12T13:42:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","balance":{"denom":"ASSET9","amount":"621221820"}}},{"completion_time":"2023-06-12T13:49:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","balance":{"denom":"ASSET10","amount":"313972787"}}},{"completion_time":"2023-06-12T13:42:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","balance":{"denom":"ASSET10","amount":"21258419"}}},{"completion_time":"2023-06-12T13:43:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","balance":{"denom":"ASSET10","amount":"334915701"}}},{"completion_time":"2023-06-12T13:46:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","balance":{"denom":"ASSET11","amount":"371451637"}}},{"completion_time":"2023-06-12T13:47:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","balance":{"denom":"ASSET11","amount":"85656709"}}},{"completion_time":"2023-06-12T13:33:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","balance":{"denom":"ASSET11","amount":"121071906"}}},{"completion_time":"2023-06-12T13:46:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","balance":{"denom":"ASSET11","amount":"253248452"}}},{"completion_time":"2023-06-12T13:45:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","balance":{"denom":"ASSET11","amount":"794296196"}}},{"completion_time":"2023-06-12T13:41:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","balance":{"denom":"ASSET11","amount":"272522539"}}},{"completion_time":"2023-06-12T13:37:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","balance":{"denom":"ASSET12","amount":"187899821"}}},{"completion_time":"2023-06-12T13:41:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","balance":{"denom":"ASSET13","amount":"14629865"}}},{"completion_time":"2023-06-12T13:44:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","balance":{"denom":"ASSET13","amount":"524426819"}}},{"completion_time":"2023-06-12T13:48:09.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","balance":{"denom":"ASSET13","amount":"9142064"}}},{"completion_time":"2023-06-12T13:35:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","balance":{"denom":"ASSET13","amount":"795456007"}}},{"completion_time":"2023-06-12T13:42:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","balance":{"denom":"ASSET13","amount":"47792036"}}},{"completion_time":"2023-06-12T13:34:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","balance":{"denom":"ASSET14","amount":"918608611"}}},{"completion_time":"2023-06-12T13:48:09.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","balance":{"denom":"ASSET14","amount":"30248090"}}},{"completion_time":"2023-06-12T13:47:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","balance":{"denom":"ASSET14","amount":"935811133"}}},{"completion_time":"2023-06-12T13:41:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","balance":{"denom":"ASSET14","amount":"40533661"}}},{"completion_time":"2023-06-12T13:45:09.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","balance":{"denom":"ASSET15","amount":"59991"}}},{"completion_time":"2023-06-12T13:42:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","balance":{"denom":"ASSET15","amount":"428100838"}}},{"completion_time":"2023-06-12T13:35:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","balance":{"denom":"ASSET15","amount":"155685918"}}},{"completion_time":"2023-06-12T13:35:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","balance":{"denom":"ASSET15","amount":"539383229"}}},{"completion_time":"2023-06-12T13:36:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","balance":{"denom":"ASSET16","amount":"6095473"}}},{"completion_time":"2023-06-12T13:33:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","balance":{"denom":"ASSET16","amount":"139374466"}}},{"completion_time":"2023-06-12T13:45:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","balance":{"denom":"ASSET16","amount":"81370881"}}},{"completion_time":"2023-06-12T13:42:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","balance":{"denom":"ASSET16","amount":"84322249"}}},{"completion_time":"2023-06-12T13:35:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","balance":{"denom":"ASSET16","amount":"389714468"}}},{"completion_time":"2023-06-12T13:35:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","balance":{"denom":"ASSET16","amount":"526316447"}}},{"completion_time":"2023-06-12T13:41:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","balance":{"denom":"ASSET16","amount":"53982569"}}},{"completion_time":"2023-06-12T13:41:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","balance":{"denom":"ASSET16","amount":"157340895"}}},{"completion_time":"2023-06-12T13:49:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","balance":{"denom":"ASSET16","amount":"239075798"}}},{"completion_time":"2023-06-12T13:37:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","balance":{"denom":"ASSET16","amount":"911133184"}}},{"completion_time":"2023-06-12T13:42:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","balance":{"denom":"ASSET17","amount":"840030842"}}},{"completion_time":"2023-06-12T13:37:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","balance":{"denom":"ASSET17","amount":"4668437"}}},{"completion_time":"2023-06-12T13:36:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","balance":{"denom":"ASSET17","amount":"210656803"}}},{"completion_time":"2023-06-12T13:48:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","balance":{"denom":"ASSET17","amount":"842658369"}}},{"completion_time":"2023-06-12T13:44:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","balance":{"denom":"ASSET17","amount":"170853572"}}},{"completion_time":"2023-06-12T13:35:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","balance":{"denom":"ASSET17","amount":"98220234"}}},{"completion_time":"2023-06-12T13:34:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","balance":{"denom":"ASSET18","amount":"17684951"}}},{"completion_time":"2023-06-12T13:41:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","balance":{"denom":"ASSET18","amount":"358407046"}}},{"completion_time":"2023-06-12T13:38:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","balance":{"denom":"ASSET0","amount":"893116566"}}},{"completion_time":"2023-06-12T13:39:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","balance":{"denom":"ASSET0","amount":"75062865"}}},{"completion_time":"2023-06-12T13:40:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","balance":{"denom":"ASSET0","amount":"720419941"}}},{"completion_time":"2023-06-12T13:40:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","balance":{"denom":"ASSET0","amount":"674119310"}}},{"completion_time":"2023-06-12T13:42:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","balance":{"denom":"ASSET0","amount":"357227406"}}},{"completion_time":"2023-06-12T13:38:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","balance":{"denom":"ASSET1","amount":"165864587"}}},{"completion_time":"2023-06-12T13:48:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","balance":{"denom":"ASSET1","amount":"93190541"}}},{"completion_time":"2023-06-12T13:42:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","balance":{"denom":"ASSET1","amount":"57839400"}}},{"completion_time":"2023-06-12T13:34:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","balance":{"denom":"ASSET1","amount":"168472739"}}},{"completion_time":"2023-06-12T13:35:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","balance":{"denom":"ASSET1","amount":"228857477"}}},{"completion_time":"2023-06-12T13:46:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","balance":{"denom":"ASSET2","amount":"238861547"}}},{"completion_time":"2023-06-12T13:35:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","balance":{"denom":"ASSET3","amount":"971951087"}}},{"completion_time":"2023-06-12T13:45:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","balance":{"denom":"ASSET3","amount":"212687982"}}},{"completion_time":"2023-06-12T13:43:09.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","balance":{"denom":"ASSET3","amount":"7450709"}}},{"completion_time":"2023-06-12T13:34:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","balance":{"denom":"ASSET5","amount":"101180630"}}},{"completion_time":"2023-06-12T13:37:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","balance":{"denom":"ASSET5","amount":"709662"}}},{"completion_time":"2023-06-12T13:37:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","balance":{"denom":"ASSET5","amount":"282603062"}}},{"completion_time":"2023-06-12T13:48:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","balance":{"denom":"ASSET6","amount":"358378464"}}},{"completion_time":"2023-06-12T13:49:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","balance":{"denom":"ASSET6","amount":"102411928"}}},{"completion_time":"2023-06-12T13:42:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","balance":{"denom":"ASSET6","amount":"308798908"}}},{"completion_time":"2023-06-12T13:44:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","balance":{"denom":"ASSET6","amount":"223887250"}}},{"completion_time":"2023-06-12T13:41:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","balance":{"denom":"ASSET7","amount":"97748809"}}},{"completion_time":"2023-06-12T13:42:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","balance":{"denom":"ASSET8","amount":"134355806"}}},{"completion_time":"2023-06-12T13:46:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","balance":{"denom":"ASSET8","amount":"414511422"}}},{"completion_time":"2023-06-12T13:47:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","balance":{"denom":"ASSET8","amount":"977654995"}}},{"completion_time":"2023-06-12T13:42:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","balance":{"denom":"ASSET8","amount":"377933138"}}},{"completion_time":"2023-06-12T13:43:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","balance":{"denom":"ASSET9","amount":"154185859"}}},{"completion_time":"2023-06-12T13:47:09.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","balance":{"denom":"ASSET9","amount":"672781236"}}},{"completion_time":"2023-06-12T13:42:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","balance":{"denom":"ASSET9","amount":"28720415"}}},{"completion_time":"2023-06-12T13:36:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","balance":{"denom":"ASSET10","amount":"339866479"}}},{"completion_time":"2023-06-12T13:45:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","balance":{"denom":"ASSET10","amount":"403482109"}}},{"completion_time":"2023-06-12T13:39:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","balance":{"denom":"ASSET11","amount":"330173458"}}},{"completion_time":"2023-06-12T13:41:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","balance":{"denom":"ASSET12","amount":"32638991"}}},{"completion_time":"2023-06-12T13:44:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","balance":{"denom":"ASSET12","amount":"52903514"}}},{"completion_time":"2023-06-12T13:45:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","balance":{"denom":"ASSET13","amount":"663015212"}}},{"completion_time":"2023-06-12T13:42:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","balance":{"denom":"ASSET13","amount":"389808620"}}},{"completion_time":"2023-06-12T13:43:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","balance":{"denom":"ASSET13","amount":"427618671"}}},{"completion_time":"2023-06-12T13:46:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","balance":{"denom":"ASSET13","amount":"47690030"}}},{"completion_time":"2023-06-12T13:47:09.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","balance":{"denom":"ASSET14","amount":"585238789"}}},{"completion_time":"2023-06-12T13:37:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","balance":{"denom":"ASSET14","amount":"310465066"}}},{"completion_time":"2023-06-12T13:46:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","balance":{"denom":"ASSET15","amount":"308097239"}}},{"completion_time":"2023-06-12T13:48:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","balance":{"denom":"ASSET16","amount":"270429645"}}},{"completion_time":"2023-06-12T13:47:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","balance":{"denom":"ASSET16","amount":"7181858"}}},{"completion_time":"2023-06-12T13:47:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","balance":{"denom":"ASSET16","amount":"452198150"}}},{"completion_time":"2023-06-12T13:45:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","balance":{"denom":"ASSET17","amount":"337728645"}}},{"completion_time":"2023-06-12T13:42:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","balance":{"denom":"ASSET17","amount":"422166416"}}},{"completion_time":"2023-06-12T13:47:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","balance":{"denom":"ASSET17","amount":"229646626"}}},{"completion_time":"2023-06-12T13:49:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","balance":{"denom":"ASSET17","amount":"123448225"}}},{"completion_time":"2023-06-12T13:37:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","balance":{"denom":"ASSET17","amount":"576937590"}}},{"completion_time":"2023-06-12T13:48:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","balance":{"denom":"ASSET17","amount":"157735341"}}},{"completion_time":"2023-06-12T13:34:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","balance":{"denom":"ASSET18","amount":"37116649"}}},{"completion_time":"2023-06-12T13:37:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","balance":{"denom":"ASSET18","amount":"88009664"}}},{"completion_time":"2023-06-12T13:39:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","balance":{"denom":"ASSET1","amount":"357946148"}}},{"completion_time":"2023-06-12T13:33:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","balance":{"denom":"ASSET1","amount":"215875923"}}},{"completion_time":"2023-06-12T13:35:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","balance":{"denom":"ASSET1","amount":"1417237800"}}},{"completion_time":"2023-06-12T13:49:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","balance":{"denom":"ASSET1","amount":"445422138"}}},{"completion_time":"2023-06-12T13:44:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","balance":{"denom":"ASSET1","amount":"32235578"}}},{"completion_time":"2023-06-12T13:44:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","balance":{"denom":"ASSET1","amount":"240538920"}}},{"completion_time":"2023-06-12T13:42:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","balance":{"denom":"ASSET1","amount":"810486739"}}},{"completion_time":"2023-06-12T13:42:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","balance":{"denom":"ASSET1","amount":"464092881"}}},{"completion_time":"2023-06-12T13:40:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","balance":{"denom":"ASSET2","amount":"220822095"}}},{"completion_time":"2023-06-12T13:48:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","balance":{"denom":"ASSET2","amount":"507649427"}}},{"completion_time":"2023-06-12T13:42:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","balance":{"denom":"ASSET2","amount":"252692021"}}},{"completion_time":"2023-06-12T13:35:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","balance":{"denom":"ASSET2","amount":"14511344"}}},{"completion_time":"2023-06-12T13:44:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","balance":{"denom":"ASSET2","amount":"114967540"}}},{"completion_time":"2023-06-12T13:34:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","balance":{"denom":"ASSET3","amount":"168424299"}}},{"completion_time":"2023-06-12T13:47:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","balance":{"denom":"ASSET3","amount":"599453619"}}},{"completion_time":"2023-06-12T13:33:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","balance":{"denom":"ASSET3","amount":"132262396"}}},{"completion_time":"2023-06-12T13:43:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","balance":{"denom":"ASSET4","amount":"192812435"}}},{"completion_time":"2023-06-12T13:35:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","balance":{"denom":"ASSET4","amount":"280801746"}}},{"completion_time":"2023-06-12T13:34:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","balance":{"denom":"ASSET5","amount":"563692828"}}},{"completion_time":"2023-06-12T13:47:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","balance":{"denom":"ASSET5","amount":"848582573"}}},{"completion_time":"2023-06-12T13:49:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","balance":{"denom":"ASSET6","amount":"94087811"}}},{"completion_time":"2023-06-12T13:47:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","balance":{"denom":"ASSET6","amount":"429067951"}}},{"completion_time":"2023-06-12T13:36:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","balance":{"denom":"ASSET6","amount":"308645672"}}},{"completion_time":"2023-06-12T13:34:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","balance":{"denom":"ASSET6","amount":"618453263"}}},{"completion_time":"2023-06-12T13:34:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","balance":{"denom":"ASSET6","amount":"381546737"}}},{"completion_time":"2023-06-12T13:43:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","balance":{"denom":"ASSET6","amount":"379030952"}}},{"completion_time":"2023-06-12T13:45:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","balance":{"denom":"ASSET7","amount":"9775513"}}},{"completion_time":"2023-06-12T13:38:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","balance":{"denom":"ASSET8","amount":"16116805"}}},{"completion_time":"2023-06-12T13:39:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","balance":{"denom":"ASSET8","amount":"383278701"}}},{"completion_time":"2023-06-12T13:39:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","balance":{"denom":"ASSET8","amount":"105385505"}}},{"completion_time":"2023-06-12T13:41:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","balance":{"denom":"ASSET8","amount":"32522437"}}},{"completion_time":"2023-06-12T13:47:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","balance":{"denom":"ASSET8","amount":"162181304"}}},{"completion_time":"2023-06-12T13:49:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","balance":{"denom":"ASSET8","amount":"115834"}}},{"completion_time":"2023-06-12T13:44:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","balance":{"denom":"ASSET9","amount":"57042932"}}},{"completion_time":"2023-06-12T13:37:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","balance":{"denom":"ASSET9","amount":"164085025"}}},{"completion_time":"2023-06-12T13:37:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","balance":{"denom":"ASSET10","amount":"672862240"}}},{"completion_time":"2023-06-12T13:34:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","balance":{"denom":"ASSET11","amount":"865850111"}}},{"completion_time":"2023-06-12T13:49:09.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","balance":{"denom":"ASSET11","amount":"2989305"}}},{"completion_time":"2023-06-12T13:45:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","balance":{"denom":"ASSET11","amount":"11357030"}}},{"completion_time":"2023-06-12T13:34:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","balance":{"denom":"ASSET11","amount":"147676910"}}},{"completion_time":"2023-06-12T13:44:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","balance":{"denom":"ASSET11","amount":"389849049"}}},{"completion_time":"2023-06-12T13:46:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","balance":{"denom":"ASSET11","amount":"322392984"}}},{"completion_time":"2023-06-12T13:33:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","balance":{"denom":"ASSET11","amount":"320997898"}}},{"completion_time":"2023-06-12T13:40:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","balance":{"denom":"ASSET11","amount":"346774498"}}},{"completion_time":"2023-06-12T13:38:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","balance":{"denom":"ASSET11","amount":"347095595"}}},{"completion_time":"2023-06-12T13:33:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","balance":{"denom":"ASSET12","amount":"60671534"}}},{"completion_time":"2023-06-12T13:34:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","balance":{"denom":"ASSET12","amount":"1000000000"}}},{"completion_time":"2023-06-12T13:37:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","balance":{"denom":"ASSET12","amount":"522211123"}}},{"completion_time":"2023-06-12T13:34:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","balance":{"denom":"ASSET13","amount":"1501248"}}},{"completion_time":"2023-06-12T13:43:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","balance":{"denom":"ASSET13","amount":"277152832"}}},{"completion_time":"2023-06-12T13:37:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","balance":{"denom":"ASSET13","amount":"190125823"}}},{"completion_time":"2023-06-12T13:39:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","balance":{"denom":"ASSET13","amount":"7016830"}}},{"completion_time":"2023-06-12T13:49:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","balance":{"denom":"ASSET13","amount":"73084622"}}},{"completion_time":"2023-06-12T13:35:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","balance":{"denom":"ASSET13","amount":"2311856"}}},{"completion_time":"2023-06-12T13:33:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","balance":{"denom":"ASSET13","amount":"309472667"}}},{"completion_time":"2023-06-12T13:41:09.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","balance":{"denom":"ASSET14","amount":"71629248"}}},{"completion_time":"2023-06-12T13:35:09.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","balance":{"denom":"ASSET14","amount":"16305128"}}},{"completion_time":"2023-06-12T13:41:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","balance":{"denom":"ASSET14","amount":"492768723"}}},{"completion_time":"2023-06-12T13:37:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","balance":{"denom":"ASSET15","amount":"268920090"}}},{"completion_time":"2023-06-12T13:33:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","balance":{"denom":"ASSET15","amount":"43604226"}}},{"completion_time":"2023-06-12T13:39:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","balance":{"denom":"ASSET15","amount":"98875899"}}},{"completion_time":"2023-06-12T13:36:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","balance":{"denom":"ASSET16","amount":"393773668"}}},{"completion_time":"2023-06-12T13:35:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","balance":{"denom":"ASSET16","amount":"227029919"}}},{"completion_time":"2023-06-12T13:34:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","balance":{"denom":"ASSET16","amount":"186742729"}}},{"completion_time":"2023-06-12T13:41:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","balance":{"denom":"ASSET16","amount":"17660542"}}},{"completion_time":"2023-06-12T13:40:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","balance":{"denom":"ASSET16","amount":"117175322"}}},{"completion_time":"2023-06-12T13:48:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","balance":{"denom":"ASSET16","amount":"419869511"}}},{"completion_time":"2023-06-12T13:45:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","balance":{"denom":"ASSET16","amount":"377642"}}},{"completion_time":"2023-06-12T13:35:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","balance":{"denom":"ASSET17","amount":"209742380"}}},{"completion_time":"2023-06-12T13:46:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","balance":{"denom":"ASSET17","amount":"26627572"}}},{"completion_time":"2023-06-12T13:46:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","balance":{"denom":"ASSET17","amount":"421239176"}}},{"completion_time":"2023-06-12T13:34:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","balance":{"denom":"ASSET18","amount":"61819000"}}},{"completion_time":"2023-06-12T13:45:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","balance":{"denom":"ASSET0","amount":"343528535"}}},{"completion_time":"2023-06-12T13:35:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","balance":{"denom":"ASSET0","amount":"283215689"}}},{"completion_time":"2023-06-12T13:38:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","balance":{"denom":"ASSET0","amount":"75531639"}}},{"completion_time":"2023-06-12T13:40:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","balance":{"denom":"ASSET0","amount":"236993936"}}},{"completion_time":"2023-06-12T13:38:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8kruzak","balance":{"denom":"ASSET1","amount":"821403842"}}},{"completion_time":"2023-06-12T13:37:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","balance":{"denom":"ASSET1","amount":"2696681"}}},{"completion_time":"2023-06-12T13:44:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","balance":{"denom":"ASSET1","amount":"184791825"}}},{"completion_time":"2023-06-12T13:46:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","balance":{"denom":"ASSET1","amount":"196572501"}}},{"completion_time":"2023-06-12T13:41:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","balance":{"denom":"ASSET2","amount":"114389592"}}},{"completion_time":"2023-06-12T13:46:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","balance":{"denom":"ASSET2","amount":"330583074"}}},{"completion_time":"2023-06-12T13:46:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","balance":{"denom":"ASSET2","amount":"429151301"}}},{"completion_time":"2023-06-12T13:48:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","balance":{"denom":"ASSET2","amount":"672255685"}}},{"completion_time":"2023-06-12T13:42:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","balance":{"denom":"ASSET2","amount":"358315912"}}},{"completion_time":"2023-06-12T13:40:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","balance":{"denom":"ASSET2","amount":"137788421"}}},{"completion_time":"2023-06-12T13:34:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","balance":{"denom":"ASSET3","amount":"478793073"}}},{"completion_time":"2023-06-12T13:39:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","balance":{"denom":"ASSET3","amount":"721965142"}}},{"completion_time":"2023-06-12T13:35:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","balance":{"denom":"ASSET3","amount":"1199784"}}},{"completion_time":"2023-06-12T13:33:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","balance":{"denom":"ASSET3","amount":"206710805"}}},{"completion_time":"2023-06-12T13:41:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","balance":{"denom":"ASSET3","amount":"598220345"}}},{"completion_time":"2023-06-12T13:43:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","balance":{"denom":"ASSET3","amount":"682688273"}}},{"completion_time":"2023-06-12T13:33:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","balance":{"denom":"ASSET3","amount":"629132164"}}},{"completion_time":"2023-06-12T13:42:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","balance":{"denom":"ASSET3","amount":"70490682"}}},{"completion_time":"2023-06-12T13:38:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","balance":{"denom":"ASSET3","amount":"41962963"}}},{"completion_time":"2023-06-12T13:48:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","balance":{"denom":"ASSET3","amount":"154607321"}}},{"completion_time":"2023-06-12T13:43:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","balance":{"denom":"ASSET4","amount":"236355401"}}},{"completion_time":"2023-06-12T13:33:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","balance":{"denom":"ASSET4","amount":"85211931"}}},{"completion_time":"2023-06-12T13:44:09.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","balance":{"denom":"ASSET5","amount":"261883610"}}},{"completion_time":"2023-06-12T13:39:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","balance":{"denom":"ASSET5","amount":"460764581"}}},{"completion_time":"2023-06-12T13:43:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","balance":{"denom":"ASSET5","amount":"90253532"}}},{"completion_time":"2023-06-12T13:43:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","balance":{"denom":"ASSET5","amount":"293924525"}}},{"completion_time":"2023-06-12T13:46:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","balance":{"denom":"ASSET5","amount":"571840435"}}},{"completion_time":"2023-06-12T13:49:09.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","balance":{"denom":"ASSET5","amount":"549222417"}}},{"completion_time":"2023-06-12T13:43:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","balance":{"denom":"ASSET6","amount":"265886085"}}},{"completion_time":"2023-06-12T13:36:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","balance":{"denom":"ASSET6","amount":"25633434"}}},{"completion_time":"2023-06-12T13:48:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","balance":{"denom":"ASSET6","amount":"516020601"}}},{"completion_time":"2023-06-12T13:35:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","balance":{"denom":"ASSET6","amount":"11269698"}}},{"completion_time":"2023-06-12T13:39:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","balance":{"denom":"ASSET6","amount":"45176714"}}},{"completion_time":"2023-06-12T13:45:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","balance":{"denom":"ASSET7","amount":"24506611"}}},{"completion_time":"2023-06-12T13:36:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cthjv9a40","balance":{"denom":"ASSET7","amount":"167624214"}}},{"completion_time":"2023-06-12T13:44:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","balance":{"denom":"ASSET7","amount":"6329567"}}},{"completion_time":"2023-06-12T13:43:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","balance":{"denom":"ASSET8","amount":"178411902"}}},{"completion_time":"2023-06-12T13:49:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","balance":{"denom":"ASSET8","amount":"123393514"}}},{"completion_time":"2023-06-12T13:35:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","balance":{"denom":"ASSET8","amount":"1000000000"}}},{"completion_time":"2023-06-12T13:47:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","balance":{"denom":"ASSET10","amount":"45173048"}}},{"completion_time":"2023-06-12T13:36:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","balance":{"denom":"ASSET10","amount":"588759590"}}},{"completion_time":"2023-06-12T13:41:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","balance":{"denom":"ASSET10","amount":"213206740"}}},{"completion_time":"2023-06-12T13:47:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","balance":{"denom":"ASSET10","amount":"274529848"}}},{"completion_time":"2023-06-12T13:36:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","balance":{"denom":"ASSET11","amount":"45446108"}}},{"completion_time":"2023-06-12T13:39:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","balance":{"denom":"ASSET11","amount":"275020063"}}},{"completion_time":"2023-06-12T13:41:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","balance":{"denom":"ASSET11","amount":"166338858"}}},{"completion_time":"2023-06-12T13:46:09.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","balance":{"denom":"ASSET12","amount":"514610431"}}},{"completion_time":"2023-06-12T13:41:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","balance":{"denom":"ASSET12","amount":"417506204"}}},{"completion_time":"2023-06-12T13:47:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","balance":{"denom":"ASSET12","amount":"50740642"}}},{"completion_time":"2023-06-12T13:34:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","balance":{"denom":"ASSET12","amount":"364339506"}}},{"completion_time":"2023-06-12T13:36:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","balance":{"denom":"ASSET13","amount":"493368680"}}},{"completion_time":"2023-06-12T13:36:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","balance":{"denom":"ASSET13","amount":"253263123"}}},{"completion_time":"2023-06-12T13:42:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","balance":{"denom":"ASSET13","amount":"68825729"}}},{"completion_time":"2023-06-12T13:46:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","balance":{"denom":"ASSET14","amount":"15596535"}}},{"completion_time":"2023-06-12T13:38:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","balance":{"denom":"ASSET14","amount":"14464875"}}},{"completion_time":"2023-06-12T13:34:09.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","balance":{"denom":"ASSET14","amount":"5401556"}}},{"completion_time":"2023-06-12T13:40:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","balance":{"denom":"ASSET14","amount":"142328086"}}},{"completion_time":"2023-06-12T13:46:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","balance":{"denom":"ASSET14","amount":"129638722"}}},{"completion_time":"2023-06-12T13:33:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","balance":{"denom":"ASSET14","amount":"748560369"}}},{"completion_time":"2023-06-12T13:46:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","balance":{"denom":"ASSET14","amount":"390690389"}}},{"completion_time":"2023-06-12T13:34:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","balance":{"denom":"ASSET14","amount":"33345497"}}},{"completion_time":"2023-06-12T13:40:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","balance":{"denom":"ASSET15","amount":"319636381"}}},{"completion_time":"2023-06-12T13:37:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","balance":{"denom":"ASSET15","amount":"78131752"}}},{"completion_time":"2023-06-12T13:48:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","balance":{"denom":"ASSET15","amount":"68288983"}}},{"completion_time":"2023-06-12T13:42:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","balance":{"denom":"ASSET15","amount":"18416930"}}},{"completion_time":"2023-06-12T13:43:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","balance":{"denom":"ASSET15","amount":"236220834"}}},{"completion_time":"2023-06-12T13:38:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","balance":{"denom":"ASSET16","amount":"68713305"}}},{"completion_time":"2023-06-12T13:48:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","balance":{"denom":"ASSET16","amount":"348083506"}}},{"completion_time":"2023-06-12T13:48:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","balance":{"denom":"ASSET16","amount":"87505343"}}},{"completion_time":"2023-06-12T13:46:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","balance":{"denom":"ASSET17","amount":"242687"}}},{"completion_time":"2023-06-12T13:48:09.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","balance":{"denom":"ASSET17","amount":"108724643"}}},{"completion_time":"2023-06-12T13:46:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","balance":{"denom":"ASSET17","amount":"205648687"}}},{"completion_time":"2023-06-12T13:45:09.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","balance":{"denom":"ASSET17","amount":"150722788"}}},{"completion_time":"2023-06-12T13:40:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","balance":{"denom":"ASSET17","amount":"531288210"}}},{"completion_time":"2023-06-12T13:49:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","balance":{"denom":"ASSET17","amount":"4190167"}}},{"completion_time":"2023-06-12T13:37:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","balance":{"denom":"ASSET18","amount":"118346793"}}},{"completion_time":"2023-06-12T13:47:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","balance":{"denom":"ASSET18","amount":"284105098"}}},{"completion_time":"2023-06-12T13:40:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","balance":{"denom":"ASSET18","amount":"8793257"}}},{"completion_time":"2023-06-12T13:46:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","balance":{"denom":"ASSET18","amount":"400299391"}}},{"completion_time":"2023-06-12T13:40:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","balance":{"denom":"ASSET18","amount":"355407689"}}},{"completion_time":"2023-06-12T13:33:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","balance":{"denom":"ASSET18","amount":"224632795"}}},{"completion_time":"2023-06-12T13:44:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","balance":{"denom":"ASSET0","amount":"12544318"}}},{"completion_time":"2023-06-12T13:42:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctcdpkp2h","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","balance":{"denom":"ASSET0","amount":"69588934"}}},{"completion_time":"2023-06-12T13:47:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","balance":{"denom":"ASSET0","amount":"677192930"}}},{"completion_time":"2023-06-12T13:34:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","balance":{"denom":"ASSET0","amount":"7107959"}}},{"completion_time":"2023-06-12T13:45:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","balance":{"denom":"ASSET0","amount":"533764197"}}},{"completion_time":"2023-06-12T13:47:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","balance":{"denom":"ASSET0","amount":"550541911"}}},{"completion_time":"2023-06-12T13:47:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","balance":{"denom":"ASSET1","amount":"235568809"}}},{"completion_time":"2023-06-12T13:34:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","balance":{"denom":"ASSET1","amount":"11459543"}}},{"completion_time":"2023-06-12T13:43:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","balance":{"denom":"ASSET3","amount":"999993428"}}},{"completion_time":"2023-06-12T13:42:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","balance":{"denom":"ASSET3","amount":"515624000"}}},{"completion_time":"2023-06-12T13:43:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","balance":{"denom":"ASSET3","amount":"425666452"}}},{"completion_time":"2023-06-12T13:39:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","balance":{"denom":"ASSET3","amount":"677605713"}}},{"completion_time":"2023-06-12T13:37:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","balance":{"denom":"ASSET4","amount":"35539363"}}},{"completion_time":"2023-06-12T13:48:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","balance":{"denom":"ASSET4","amount":"101400"}}},{"completion_time":"2023-06-12T13:48:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","balance":{"denom":"ASSET4","amount":"148956347"}}},{"completion_time":"2023-06-12T13:34:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","balance":{"denom":"ASSET4","amount":"115162996"}}},{"completion_time":"2023-06-12T13:35:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","balance":{"denom":"ASSET4","amount":"35444680"}}},{"completion_time":"2023-06-12T13:36:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","balance":{"denom":"ASSET4","amount":"25133022"}}},{"completion_time":"2023-06-12T13:43:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","balance":{"denom":"ASSET4","amount":"386345854"}}},{"completion_time":"2023-06-12T13:42:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","balance":{"denom":"ASSET4","amount":"28657783"}}},{"completion_time":"2023-06-12T13:39:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","balance":{"denom":"ASSET5","amount":"324968400"}}},{"completion_time":"2023-06-12T13:39:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","balance":{"denom":"ASSET5","amount":"292776675"}}},{"completion_time":"2023-06-12T13:41:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","balance":{"denom":"ASSET5","amount":"5616723"}}},{"completion_time":"2023-06-12T13:47:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","balance":{"denom":"ASSET5","amount":"1009500"}}},{"completion_time":"2023-06-12T13:46:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjk9vmrae","balance":{"denom":"ASSET5","amount":"16930537"}}},{"completion_time":"2023-06-12T13:42:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","balance":{"denom":"ASSET6","amount":"36108597"}}},{"completion_time":"2023-06-12T13:46:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","balance":{"denom":"ASSET6","amount":"780143105"}}},{"completion_time":"2023-06-12T13:43:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","balance":{"denom":"ASSET6","amount":"328696458"}}},{"completion_time":"2023-06-12T13:49:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","balance":{"denom":"ASSET6","amount":"599799497"}}},{"completion_time":"2023-06-12T13:41:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","balance":{"denom":"ASSET6","amount":"147596723"}}},{"completion_time":"2023-06-12T13:47:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","balance":{"denom":"ASSET6","amount":"450386204"}}},{"completion_time":"2023-06-12T13:40:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","balance":{"denom":"ASSET6","amount":"65792449"}}},{"completion_time":"2023-06-12T13:41:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","balance":{"denom":"ASSET7","amount":"207910561"}}},{"completion_time":"2023-06-12T13:33:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","balance":{"denom":"ASSET8","amount":"1629886"}}},{"completion_time":"2023-06-12T13:36:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","balance":{"denom":"ASSET8","amount":"438600447"}}},{"completion_time":"2023-06-12T13:42:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","balance":{"denom":"ASSET8","amount":"868378282"}}},{"completion_time":"2023-06-12T13:49:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","balance":{"denom":"ASSET8","amount":"356535881"}}},{"completion_time":"2023-06-12T13:47:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","balance":{"denom":"ASSET9","amount":"1000000000"}}},{"completion_time":"2023-06-12T13:36:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","balance":{"denom":"ASSET9","amount":"245155446"}}},{"completion_time":"2023-06-12T13:39:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","balance":{"denom":"ASSET9","amount":"4642096"}}},{"completion_time":"2023-06-12T13:38:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","balance":{"denom":"ASSET9","amount":"41257057"}}},{"completion_time":"2023-06-12T13:38:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","balance":{"denom":"ASSET10","amount":"323015286"}}},{"completion_time":"2023-06-12T13:41:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","balance":{"denom":"ASSET10","amount":"530338084"}}},{"completion_time":"2023-06-12T13:49:24.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","balance":{"denom":"ASSET10","amount":"143660294"}}},{"completion_time":"2023-06-12T13:46:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","balance":{"denom":"ASSET10","amount":"351455539"}}},{"completion_time":"2023-06-12T13:33:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3ckeddze","balance":{"denom":"ASSET10","amount":"121120967"}}},{"completion_time":"2023-06-12T13:36:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","balance":{"denom":"ASSET10","amount":"5440107"}}},{"completion_time":"2023-06-12T13:38:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","balance":{"denom":"ASSET10","amount":"107888635"}}},{"completion_time":"2023-06-12T13:33:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","balance":{"denom":"ASSET12","amount":"449472934"}}},{"completion_time":"2023-06-12T13:35:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","balance":{"denom":"ASSET12","amount":"372558750"}}},{"completion_time":"2023-06-12T13:34:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","balance":{"denom":"ASSET12","amount":"36692941"}}},{"completion_time":"2023-06-12T13:36:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","balance":{"denom":"ASSET12","amount":"468099036"}}},{"completion_time":"2023-06-12T13:43:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","balance":{"denom":"ASSET12","amount":"192667601"}}},{"completion_time":"2023-06-12T13:49:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","balance":{"denom":"ASSET13","amount":"532063869"}}},{"completion_time":"2023-06-12T13:40:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","balance":{"denom":"ASSET13","amount":"197970229"}}},{"completion_time":"2023-06-12T13:48:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","balance":{"denom":"ASSET13","amount":"886795529"}}},{"completion_time":"2023-06-12T13:49:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","balance":{"denom":"ASSET13","amount":"32388960"}}},{"completion_time":"2023-06-12T13:45:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","balance":{"denom":"ASSET14","amount":"134922728"}}},{"completion_time":"2023-06-12T13:40:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","balance":{"denom":"ASSET14","amount":"163612150"}}},{"completion_time":"2023-06-12T13:42:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","balance":{"denom":"ASSET14","amount":"330827961"}}},{"completion_time":"2023-06-12T13:41:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv9sfgjtr","balance":{"denom":"ASSET14","amount":"371918001"}}},{"completion_time":"2023-06-12T13:45:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","balance":{"denom":"ASSET14","amount":"103963389"}}},{"completion_time":"2023-06-12T13:42:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","balance":{"denom":"ASSET14","amount":"632168629"}}},{"completion_time":"2023-06-12T13:47:29.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","balance":{"denom":"ASSET14","amount":"79136061"}}},{"completion_time":"2023-06-12T13:46:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","balance":{"denom":"ASSET14","amount":"10700081"}}},{"completion_time":"2023-06-12T13:47:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","balance":{"denom":"ASSET15","amount":"856380284"}}},{"completion_time":"2023-06-12T13:47:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","balance":{"denom":"ASSET15","amount":"669558792"}}},{"completion_time":"2023-06-12T13:40:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","balance":{"denom":"ASSET15","amount":"184989922"}}},{"completion_time":"2023-06-12T13:39:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","balance":{"denom":"ASSET16","amount":"12106402"}}},{"completion_time":"2023-06-12T13:33:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","balance":{"denom":"ASSET16","amount":"125234791"}}},{"completion_time":"2023-06-12T13:33:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","balance":{"denom":"ASSET16","amount":"56257591"}}},{"completion_time":"2023-06-12T13:45:04.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","balance":{"denom":"ASSET17","amount":"258468846"}}},{"completion_time":"2023-06-12T13:37:34.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct3wrxcfc","balance":{"denom":"ASSET17","amount":"81037799"}}},{"completion_time":"2023-06-12T13:45:44.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","balance":{"denom":"ASSET17","amount":"665227900"}}},{"completion_time":"2023-06-12T13:39:49.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","balance":{"denom":"ASSET17","amount":"2375770"}}},{"completion_time":"2023-06-12T13:40:39.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","balance":{"denom":"ASSET17","amount":"104190603"}}},{"completion_time":"2023-06-12T13:49:14.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","balance":{"denom":"ASSET17","amount":"11947740"}}},{"completion_time":"2023-06-12T13:49:19.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","balance":{"denom":"ASSET18","amount":"295004375"}}},{"completion_time":"2023-06-12T13:35:54.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","balance":{"denom":"ASSET18","amount":"674282712"}}},{"completion_time":"2023-06-12T13:39:59.601333989Z","redelegation":{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","src_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","dst_validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","balance":{"denom":"ASSET18","amount":"25623081"}}}],"undelegations":[{"completion_time":"2023-06-12T13:33:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","balance":{"denom":"ASSET3","amount":"640054214"}}]}},{"completion_time":"2023-06-12T13:33:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","balance":{"denom":"ASSET7","amount":"139008964"}}]}},{"completion_time":"2023-06-12T13:33:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","balance":{"denom":"ASSET15","amount":"17325230"}}]}},{"completion_time":"2023-06-12T13:33:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","balance":{"denom":"ASSET8","amount":"18396112"}}]}},{"completion_time":"2023-06-12T13:33:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","balance":{"denom":"ASSET15","amount":"977524715"}}]}},{"completion_time":"2023-06-12T13:33:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","balance":{"denom":"ASSET14","amount":"144217052"}}]}},{"completion_time":"2023-06-12T13:33:29.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","balance":{"denom":"ASSET7","amount":"313584570"}}]}},{"completion_time":"2023-06-12T13:33:29.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","balance":{"denom":"ASSET11","amount":"235421923"}}]}},{"completion_time":"2023-06-12T13:33:29.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","balance":{"denom":"ASSET4","amount":"411269902"}}]}},{"completion_time":"2023-06-12T13:33:34.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2kq87jrm","balance":{"denom":"ASSET14","amount":"839252881"}}]}},{"completion_time":"2023-06-12T13:33:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","balance":{"denom":"ASSET6","amount":"161311343"}}]}},{"completion_time":"2023-06-12T13:33:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","balance":{"denom":"ASSET10","amount":"295469574"}}]}},{"completion_time":"2023-06-12T13:33:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","balance":{"denom":"ASSET0","amount":"770999302"}}]}},{"completion_time":"2023-06-12T13:33:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","balance":{"denom":"ASSET0","amount":"270100885"}}]}},{"completion_time":"2023-06-12T13:33:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","balance":{"denom":"ASSET4","amount":"294990736"}}]}},{"completion_time":"2023-06-12T13:33:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","balance":{"denom":"ASSET16","amount":"91257"}}]}},{"completion_time":"2023-06-12T13:33:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","balance":{"denom":"ASSET0","amount":"48587449"}}]}},{"completion_time":"2023-06-12T13:33:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","balance":{"denom":"ASSET7","amount":"197146610"}}]}},{"completion_time":"2023-06-12T13:33:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","balance":{"denom":"ASSET3","amount":"610329918"}}]}},{"completion_time":"2023-06-12T13:33:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","balance":{"denom":"ASSET8","amount":"102264810"}}]}},{"completion_time":"2023-06-12T13:33:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","balance":{"denom":"ASSET18","amount":"21261483"}}]}},{"completion_time":"2023-06-12T13:33:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","balance":{"denom":"ASSET15","amount":"16563119"}}]}},{"completion_time":"2023-06-12T13:33:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","balance":{"denom":"ASSET12","amount":"29356269"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","balance":{"denom":"ASSET3","amount":"46434468"}}]}},{"completion_time":"2023-06-12T13:34:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","balance":{"denom":"ASSET4","amount":"704217293"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","balance":{"denom":"ASSET11","amount":"46139594"}}]}},{"completion_time":"2023-06-12T13:34:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","balance":{"denom":"ASSET15","amount":"65145513"}}]}},{"completion_time":"2023-06-12T13:34:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","balance":{"denom":"ASSET16","amount":"90928012"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","balance":{"denom":"ASSET10","amount":"322045684"}}]}},{"completion_time":"2023-06-12T13:34:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","balance":{"denom":"ASSET14","amount":"19035500"}}]}},{"completion_time":"2023-06-12T13:34:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","balance":{"denom":"ASSET16","amount":"38392"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","balance":{"denom":"ASSET4","amount":"403234737"}}]}},{"completion_time":"2023-06-12T13:34:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","balance":{"denom":"ASSET8","amount":"870387264"}}]}},{"completion_time":"2023-06-12T13:34:14.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","balance":{"denom":"ASSET14","amount":"47605486"}}]}},{"completion_time":"2023-06-12T13:34:14.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","balance":{"denom":"ASSET16","amount":"638268158"}}]}},{"completion_time":"2023-06-12T13:34:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg4s84emg","balance":{"denom":"ASSET13","amount":"422457741"}}]}},{"completion_time":"2023-06-12T13:34:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","balance":{"denom":"ASSET7","amount":"404994608"}}]}},{"completion_time":"2023-06-12T13:34:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","balance":{"denom":"ASSET10","amount":"172408107"}}]}},{"completion_time":"2023-06-12T13:34:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","balance":{"denom":"ASSET17","amount":"19319292"}}]}},{"completion_time":"2023-06-12T13:34:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","balance":{"denom":"ASSET8","amount":"322019653"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","balance":{"denom":"ASSET4","amount":"82752177"}}]}},{"completion_time":"2023-06-12T13:34:29.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","balance":{"denom":"ASSET13","amount":"498556367"}}]}},{"completion_time":"2023-06-12T13:34:34.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","balance":{"denom":"ASSET11","amount":"507889542"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","balance":{"denom":"ASSET2","amount":"584584247"}}]}},{"completion_time":"2023-06-12T13:34:34.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","balance":{"denom":"ASSET16","amount":"439877385"}}]}},{"completion_time":"2023-06-12T13:34:34.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","balance":{"denom":"ASSET1","amount":"290356198"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","balance":{"denom":"ASSET0","amount":"144413649"}}]}},{"completion_time":"2023-06-12T13:34:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","balance":{"denom":"ASSET3","amount":"164255310"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","balance":{"denom":"ASSET0","amount":"790889245"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","balance":{"denom":"ASSET10","amount":"526923920"}}]}},{"completion_time":"2023-06-12T13:34:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","balance":{"denom":"ASSET18","amount":"24717961"}}]}},{"completion_time":"2023-06-12T13:34:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","balance":{"denom":"ASSET14","amount":"34027150"}}]}},{"completion_time":"2023-06-12T13:34:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","balance":{"denom":"ASSET8","amount":"643946757"}}]}},{"completion_time":"2023-06-12T13:34:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","balance":{"denom":"ASSET15","amount":"239336621"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","balance":{"denom":"ASSET11","amount":"710587071"}}]}},{"completion_time":"2023-06-12T13:34:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","balance":{"denom":"ASSET2","amount":"446128450"}}]}},{"completion_time":"2023-06-12T13:34:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","balance":{"denom":"ASSET11","amount":"165413636"}}]}},{"completion_time":"2023-06-12T13:34:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","balance":{"denom":"ASSET2","amount":"525081698"}}]}},{"completion_time":"2023-06-12T13:34:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","balance":{"denom":"ASSET11","amount":"726725682"}}]}},{"completion_time":"2023-06-12T13:34:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","balance":{"denom":"ASSET15","amount":"96744307"}}]}},{"completion_time":"2023-06-12T13:35:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","balance":{"denom":"ASSET4","amount":"95260575"}}]}},{"completion_time":"2023-06-12T13:35:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","balance":{"denom":"ASSET16","amount":"358098231"}}]}},{"completion_time":"2023-06-12T13:35:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","balance":{"denom":"ASSET2","amount":"12191774"}}]}},{"completion_time":"2023-06-12T13:35:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","balance":{"denom":"ASSET16","amount":"227294078"}}]}},{"completion_time":"2023-06-12T13:35:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","balance":{"denom":"ASSET8","amount":"177761872"}}]}},{"completion_time":"2023-06-12T13:35:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","balance":{"denom":"ASSET1","amount":"374217007"}}]}},{"completion_time":"2023-06-12T13:35:14.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","balance":{"denom":"ASSET2","amount":"69700339"}}]}},{"completion_time":"2023-06-12T13:35:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","balance":{"denom":"ASSET7","amount":"341692607"}}]}},{"completion_time":"2023-06-12T13:35:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","balance":{"denom":"ASSET12","amount":"20943459"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","balance":{"denom":"ASSET16","amount":"556902744"}}]}},{"completion_time":"2023-06-12T13:35:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","balance":{"denom":"ASSET3","amount":"8981212"}}]}},{"completion_time":"2023-06-12T13:35:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","balance":{"denom":"ASSET8","amount":"726201162"}}]}},{"completion_time":"2023-06-12T13:35:29.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","balance":{"denom":"ASSET0","amount":"596374512"}}]}},{"completion_time":"2023-06-12T13:35:29.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","balance":{"denom":"ASSET4","amount":"503727793"}}]}},{"completion_time":"2023-06-12T13:35:29.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","balance":{"denom":"ASSET5","amount":"193832610"}}]}},{"completion_time":"2023-06-12T13:35:29.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","balance":{"denom":"ASSET5","amount":"510586701"}}]}},{"completion_time":"2023-06-12T13:35:34.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","balance":{"denom":"ASSET11","amount":"845593778"}}]}},{"completion_time":"2023-06-12T13:35:34.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","balance":{"denom":"ASSET0","amount":"232547243"}}]}},{"completion_time":"2023-06-12T13:35:34.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","balance":{"denom":"ASSET0","amount":"553978396"}}]}},{"completion_time":"2023-06-12T13:35:34.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","balance":{"denom":"ASSET12","amount":"19608312"}}]}},{"completion_time":"2023-06-12T13:35:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","balance":{"denom":"ASSET11","amount":"67205372"}}]}},{"completion_time":"2023-06-12T13:35:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","balance":{"denom":"ASSET10","amount":"54882844"}}]}},{"completion_time":"2023-06-12T13:35:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","balance":{"denom":"ASSET18","amount":"40891685"}}]}},{"completion_time":"2023-06-12T13:35:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","balance":{"denom":"ASSET9","amount":"119298158"}}]}},{"completion_time":"2023-06-12T13:35:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","balance":{"denom":"ASSET16","amount":"12062639"}}]}},{"completion_time":"2023-06-12T13:35:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","balance":{"denom":"ASSET10","amount":"687845018"}}]}},{"completion_time":"2023-06-12T13:35:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","balance":{"denom":"ASSET10","amount":"92111709"}}]}},{"completion_time":"2023-06-12T13:35:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","balance":{"denom":"ASSET15","amount":"58567406"}}]}},{"completion_time":"2023-06-12T13:35:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","balance":{"denom":"ASSET5","amount":"151406184"}}]}},{"completion_time":"2023-06-12T13:35:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","balance":{"denom":"ASSET6","amount":"294299447"}}]}},{"completion_time":"2023-06-12T13:35:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","balance":{"denom":"ASSET8","amount":"852320860"}}]}},{"completion_time":"2023-06-12T13:35:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","balance":{"denom":"ASSET18","amount":"98262999"}}]}},{"completion_time":"2023-06-12T13:36:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","balance":{"denom":"ASSET7","amount":"331117758"}}]}},{"completion_time":"2023-06-12T13:36:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","balance":{"denom":"ASSET12","amount":"15415072"}}]}},{"completion_time":"2023-06-12T13:36:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","balance":{"denom":"ASSET15","amount":"678799647"}}]}},{"completion_time":"2023-06-12T13:36:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","balance":{"denom":"ASSET10","amount":"49145112"}}]}},{"completion_time":"2023-06-12T13:36:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","balance":{"denom":"ASSET5","amount":"425497163"}}]}},{"completion_time":"2023-06-12T13:36:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjqvzs75a","balance":{"denom":"ASSET3","amount":"264384714"}}]}},{"completion_time":"2023-06-12T13:36:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","balance":{"denom":"ASSET17","amount":"67461794"}}]}},{"completion_time":"2023-06-12T13:36:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","balance":{"denom":"ASSET14","amount":"505904762"}}]}},{"completion_time":"2023-06-12T13:36:14.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","balance":{"denom":"ASSET17","amount":"261774946"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","balance":{"denom":"ASSET9","amount":"442890723"}}]}},{"completion_time":"2023-06-12T13:36:14.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","balance":{"denom":"ASSET12","amount":"555989235"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","balance":{"denom":"ASSET3","amount":"835239308"}}]}},{"completion_time":"2023-06-12T13:36:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","balance":{"denom":"ASSET2","amount":"352660435"}}]}},{"completion_time":"2023-06-12T13:36:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","balance":{"denom":"ASSET7","amount":"3040850"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","balance":{"denom":"ASSET12","amount":"39952331"}}]}},{"completion_time":"2023-06-12T13:36:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","balance":{"denom":"ASSET16","amount":"134799674"}}]}},{"completion_time":"2023-06-12T13:36:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","balance":{"denom":"ASSET2","amount":"286640345"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","balance":{"denom":"ASSET4","amount":"528002964"}}]}},{"completion_time":"2023-06-12T13:36:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","balance":{"denom":"ASSET2","amount":"51188372"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","balance":{"denom":"ASSET17","amount":"437883911"}}]}},{"completion_time":"2023-06-12T13:36:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","balance":{"denom":"ASSET0","amount":"135565669"}}]}},{"completion_time":"2023-06-12T13:36:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","balance":{"denom":"ASSET12","amount":"187238655"}}]}},{"completion_time":"2023-06-12T13:36:29.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","balance":{"denom":"ASSET15","amount":"82505539"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","balance":{"denom":"ASSET18","amount":"94291246"}}]}},{"completion_time":"2023-06-12T13:36:29.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","balance":{"denom":"ASSET3","amount":"166001998"}}]}},{"completion_time":"2023-06-12T13:36:29.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","balance":{"denom":"ASSET9","amount":"55328112"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","balance":{"denom":"ASSET6","amount":"599053765"}}]}},{"completion_time":"2023-06-12T13:36:34.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","balance":{"denom":"ASSET16","amount":"34766149"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","balance":{"denom":"ASSET6","amount":"753932554"}}]}},{"completion_time":"2023-06-12T13:36:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","balance":{"denom":"ASSET13","amount":"23559370"}}]}},{"completion_time":"2023-06-12T13:36:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","balance":{"denom":"ASSET17","amount":"77250284"}}]}},{"completion_time":"2023-06-12T13:36:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","balance":{"denom":"ASSET0","amount":"44567767"}}]}},{"completion_time":"2023-06-12T13:36:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","balance":{"denom":"ASSET13","amount":"11875949"}}]}},{"completion_time":"2023-06-12T13:36:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","balance":{"denom":"ASSET7","amount":"245426468"}}]}},{"completion_time":"2023-06-12T13:36:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj4tlw4nx","balance":{"denom":"ASSET3","amount":"122537879"}}]}},{"completion_time":"2023-06-12T13:36:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","balance":{"denom":"ASSET3","amount":"742301440"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","balance":{"denom":"ASSET2","amount":"101216943"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","balance":{"denom":"ASSET17","amount":"159234564"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","balance":{"denom":"ASSET16","amount":"176507257"}}]}},{"completion_time":"2023-06-12T13:36:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","balance":{"denom":"ASSET11","amount":"917321660"}}]}},{"completion_time":"2023-06-12T13:36:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","balance":{"denom":"ASSET12","amount":"824356141"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","balance":{"denom":"ASSET1","amount":"649821715"}}]}},{"completion_time":"2023-06-12T13:36:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","balance":{"denom":"ASSET7","amount":"231510469"}}]}},{"completion_time":"2023-06-12T13:36:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","balance":{"denom":"ASSET1","amount":"78257181"}}]}},{"completion_time":"2023-06-12T13:36:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","balance":{"denom":"ASSET10","amount":"703309179"}}]}},{"completion_time":"2023-06-12T13:36:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","balance":{"denom":"ASSET14","amount":"310717260"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","balance":{"denom":"ASSET5","amount":"202183067"}}]}},{"completion_time":"2023-06-12T13:36:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","balance":{"denom":"ASSET5","amount":"173199581"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","balance":{"denom":"ASSET11","amount":"60665895"}}]}},{"completion_time":"2023-06-12T13:37:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","balance":{"denom":"ASSET0","amount":"86848367"}}]}},{"completion_time":"2023-06-12T13:37:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","balance":{"denom":"ASSET12","amount":"43763742"}}]}},{"completion_time":"2023-06-12T13:37:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","balance":{"denom":"ASSET13","amount":"526561117"}}]}},{"completion_time":"2023-06-12T13:37:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c23p7fzz7","balance":{"denom":"ASSET7","amount":"137793746"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","balance":{"denom":"ASSET18","amount":"466098625"}}]}},{"completion_time":"2023-06-12T13:37:14.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","balance":{"denom":"ASSET15","amount":"21189148"}}]}},{"completion_time":"2023-06-12T13:37:14.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","balance":{"denom":"ASSET13","amount":"680563713"}}]}},{"completion_time":"2023-06-12T13:37:14.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","balance":{"denom":"ASSET5","amount":"707221385"}}]}},{"completion_time":"2023-06-12T13:37:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","balance":{"denom":"ASSET9","amount":"729960743"}}]}},{"completion_time":"2023-06-12T13:37:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvx76ay9u","balance":{"denom":"ASSET12","amount":"150078580"}}]}},{"completion_time":"2023-06-12T13:37:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","balance":{"denom":"ASSET12","amount":"16845801"}}]}},{"completion_time":"2023-06-12T13:37:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","balance":{"denom":"ASSET12","amount":"126679813"}}]}},{"completion_time":"2023-06-12T13:37:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","balance":{"denom":"ASSET3","amount":"242272466"}}]}},{"completion_time":"2023-06-12T13:37:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","balance":{"denom":"ASSET8","amount":"567770267"}}]}},{"completion_time":"2023-06-12T13:37:34.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","balance":{"denom":"ASSET12","amount":"874235086"}}]}},{"completion_time":"2023-06-12T13:37:34.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","balance":{"denom":"ASSET14","amount":"2627865"}}]}},{"completion_time":"2023-06-12T13:37:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","balance":{"denom":"ASSET4","amount":"73005099"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","balance":{"denom":"ASSET3","amount":"445972338"}}]}},{"completion_time":"2023-06-12T13:37:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","balance":{"denom":"ASSET1","amount":"58059417"}}]}},{"completion_time":"2023-06-12T13:37:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","balance":{"denom":"ASSET16","amount":"120420626"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","balance":{"denom":"ASSET9","amount":"706229933"}}]}},{"completion_time":"2023-06-12T13:37:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","balance":{"denom":"ASSET8","amount":"270306058"}}]}},{"completion_time":"2023-06-12T13:37:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","balance":{"denom":"ASSET1","amount":"154020288"}}]}},{"completion_time":"2023-06-12T13:37:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2czuemp3","balance":{"denom":"ASSET12","amount":"698828923"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","balance":{"denom":"ASSET10","amount":"56499690"}}]}},{"completion_time":"2023-06-12T13:37:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","balance":{"denom":"ASSET13","amount":"535758857"}}]}},{"completion_time":"2023-06-12T13:37:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","balance":{"denom":"ASSET4","amount":"107796920"}}]}},{"completion_time":"2023-06-12T13:37:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","balance":{"denom":"ASSET18","amount":"5789256"}}]}},{"completion_time":"2023-06-12T13:37:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","balance":{"denom":"ASSET0","amount":"310561665"}}]}},{"completion_time":"2023-06-12T13:37:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cghrz56g9","balance":{"denom":"ASSET14","amount":"76375127"}}]}},{"completion_time":"2023-06-12T13:37:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","balance":{"denom":"ASSET6","amount":"798524747"}}]}},{"completion_time":"2023-06-12T13:37:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","balance":{"denom":"ASSET2","amount":"60041078"}}]}},{"completion_time":"2023-06-12T13:37:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","balance":{"denom":"ASSET16","amount":"73369070"}}]}},{"completion_time":"2023-06-12T13:37:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","balance":{"denom":"ASSET5","amount":"309636838"}}]}},{"completion_time":"2023-06-12T13:37:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","balance":{"denom":"ASSET10","amount":"185800781"}}]}},{"completion_time":"2023-06-12T13:37:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","balance":{"denom":"ASSET1","amount":"555160698"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","balance":{"denom":"ASSET11","amount":"68983721"}}]}},{"completion_time":"2023-06-12T13:37:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","balance":{"denom":"ASSET5","amount":"389216721"}}]}},{"completion_time":"2023-06-12T13:37:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","balance":{"denom":"ASSET4","amount":"175390909"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","balance":{"denom":"ASSET15","amount":"136809300"}}]}},{"completion_time":"2023-06-12T13:37:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","balance":{"denom":"ASSET1","amount":"437221164"}}]}},{"completion_time":"2023-06-12T13:37:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","balance":{"denom":"ASSET6","amount":"738614749"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","balance":{"denom":"ASSET7","amount":"68699849"}}]}},{"completion_time":"2023-06-12T13:37:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","balance":{"denom":"ASSET14","amount":"318731144"}}]}},{"completion_time":"2023-06-12T13:38:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","balance":{"denom":"ASSET5","amount":"140036099"}}]}},{"completion_time":"2023-06-12T13:38:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfewyufpf","balance":{"denom":"ASSET4","amount":"582299445"}}]}},{"completion_time":"2023-06-12T13:38:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","balance":{"denom":"ASSET4","amount":"152986529"}}]}},{"completion_time":"2023-06-12T13:38:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf8e7ncks","balance":{"denom":"ASSET9","amount":"108633285"}}]}},{"completion_time":"2023-06-12T13:38:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","balance":{"denom":"ASSET14","amount":"471712422"}}]}},{"completion_time":"2023-06-12T13:38:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","balance":{"denom":"ASSET1","amount":"648633080"}}]}},{"completion_time":"2023-06-12T13:38:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","balance":{"denom":"ASSET6","amount":"36719068"}}]}},{"completion_time":"2023-06-12T13:38:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","balance":{"denom":"ASSET3","amount":"448400"}}]}},{"completion_time":"2023-06-12T13:38:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","balance":{"denom":"ASSET5","amount":"580475439"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","balance":{"denom":"ASSET6","amount":"107237087"}}]}},{"completion_time":"2023-06-12T13:38:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs36xjw2s","balance":{"denom":"ASSET11","amount":"107047978"}}]}},{"completion_time":"2023-06-12T13:38:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","balance":{"denom":"ASSET4","amount":"244146894"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","balance":{"denom":"ASSET2","amount":"16842203"}}]}},{"completion_time":"2023-06-12T13:38:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","balance":{"denom":"ASSET17","amount":"423089107"}}]}},{"completion_time":"2023-06-12T13:38:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","balance":{"denom":"ASSET4","amount":"29330948"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","balance":{"denom":"ASSET5","amount":"356164822"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","balance":{"denom":"ASSET14","amount":"472958860"}}]}},{"completion_time":"2023-06-12T13:38:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","balance":{"denom":"ASSET11","amount":"15305020"}}]}},{"completion_time":"2023-06-12T13:38:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","balance":{"denom":"ASSET9","amount":"8321815"}}]}},{"completion_time":"2023-06-12T13:38:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","balance":{"denom":"ASSET7","amount":"25099179"}}]}},{"completion_time":"2023-06-12T13:38:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","balance":{"denom":"ASSET18","amount":"126889434"}}]}},{"completion_time":"2023-06-12T13:38:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","balance":{"denom":"ASSET10","amount":"27453435"}}]}},{"completion_time":"2023-06-12T13:38:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","balance":{"denom":"ASSET9","amount":"114005698"}}]}},{"completion_time":"2023-06-12T13:38:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","balance":{"denom":"ASSET17","amount":"42993274"}}]}},{"completion_time":"2023-06-12T13:38:29.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","balance":{"denom":"ASSET17","amount":"6212667"}}]}},{"completion_time":"2023-06-12T13:38:29.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","balance":{"denom":"ASSET4","amount":"103658319"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","balance":{"denom":"ASSET8","amount":"400948262"}}]}},{"completion_time":"2023-06-12T13:38:29.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","balance":{"denom":"ASSET18","amount":"999985843"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","balance":{"denom":"ASSET7","amount":"461593760"}}]}},{"completion_time":"2023-06-12T13:38:29.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","balance":{"denom":"ASSET7","amount":"17247746"}}]}},{"completion_time":"2023-06-12T13:38:34.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","balance":{"denom":"ASSET10","amount":"36491937"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","balance":{"denom":"ASSET3","amount":"2065077"}}]}},{"completion_time":"2023-06-12T13:38:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","balance":{"denom":"ASSET7","amount":"7586759"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","balance":{"denom":"ASSET13","amount":"7260839"}}]}},{"completion_time":"2023-06-12T13:38:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","balance":{"denom":"ASSET18","amount":"12949835"}}]}},{"completion_time":"2023-06-12T13:38:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","balance":{"denom":"ASSET4","amount":"66972034"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","balance":{"denom":"ASSET16","amount":"52483415"}}]}},{"completion_time":"2023-06-12T13:38:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","balance":{"denom":"ASSET8","amount":"16934526"}}]}},{"completion_time":"2023-06-12T13:38:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","balance":{"denom":"ASSET1","amount":"431795024"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","balance":{"denom":"ASSET16","amount":"630024305"}}]}},{"completion_time":"2023-06-12T13:38:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","balance":{"denom":"ASSET9","amount":"402047248"}}]}},{"completion_time":"2023-06-12T13:38:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","balance":{"denom":"ASSET1","amount":"220510378"}}]}},{"completion_time":"2023-06-12T13:38:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","balance":{"denom":"ASSET14","amount":"213305140"}}]}},{"completion_time":"2023-06-12T13:38:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjnhsds03","balance":{"denom":"ASSET15","amount":"1466364"}}]}},{"completion_time":"2023-06-12T13:38:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","balance":{"denom":"ASSET12","amount":"34698698"}}]}},{"completion_time":"2023-06-12T13:38:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","balance":{"denom":"ASSET8","amount":"238601017"}}]}},{"completion_time":"2023-06-12T13:38:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","balance":{"denom":"ASSET15","amount":"136207697"}}]}},{"completion_time":"2023-06-12T13:38:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","balance":{"denom":"ASSET1","amount":"463049038"}}]}},{"completion_time":"2023-06-12T13:38:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","balance":{"denom":"ASSET1","amount":"290187999"}}]}},{"completion_time":"2023-06-12T13:38:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","balance":{"denom":"ASSET7","amount":"458750651"}}]}},{"completion_time":"2023-06-12T13:38:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","balance":{"denom":"ASSET3","amount":"706568290"}}]}},{"completion_time":"2023-06-12T13:38:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","balance":{"denom":"ASSET16","amount":"3746916"}}]}},{"completion_time":"2023-06-12T13:38:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","balance":{"denom":"ASSET9","amount":"24731620"}}]}},{"completion_time":"2023-06-12T13:38:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","balance":{"denom":"ASSET3","amount":"224653783"}}]}},{"completion_time":"2023-06-12T13:39:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs9qdcsse","balance":{"denom":"ASSET6","amount":"224934443"}}]}},{"completion_time":"2023-06-12T13:39:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","balance":{"denom":"ASSET4","amount":"337650791"}}]}},{"completion_time":"2023-06-12T13:39:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","balance":{"denom":"ASSET0","amount":"376105182"}}]}},{"completion_time":"2023-06-12T13:39:14.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","balance":{"denom":"ASSET0","amount":"8042212"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3grc94h2","balance":{"denom":"ASSET15","amount":"64162860"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","balance":{"denom":"ASSET16","amount":"293566128"}}]}},{"completion_time":"2023-06-12T13:39:14.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","balance":{"denom":"ASSET11","amount":"16189761"}}]}},{"completion_time":"2023-06-12T13:39:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","balance":{"denom":"ASSET12","amount":"97770035"}}]}},{"completion_time":"2023-06-12T13:39:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","balance":{"denom":"ASSET18","amount":"31438068"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","balance":{"denom":"ASSET5","amount":"147443604"}}]}},{"completion_time":"2023-06-12T13:39:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","balance":{"denom":"ASSET13","amount":"255152708"}}]}},{"completion_time":"2023-06-12T13:39:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","balance":{"denom":"ASSET9","amount":"621711800"}}]}},{"completion_time":"2023-06-12T13:39:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","balance":{"denom":"ASSET0","amount":"423483264"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","balance":{"denom":"ASSET11","amount":"395789890"}}]}},{"completion_time":"2023-06-12T13:39:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","balance":{"denom":"ASSET8","amount":"147881721"}}]}},{"completion_time":"2023-06-12T13:39:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","balance":{"denom":"ASSET1","amount":"183750333"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","balance":{"denom":"ASSET5","amount":"36787983"}}]}},{"completion_time":"2023-06-12T13:39:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","balance":{"denom":"ASSET7","amount":"246844216"}}]}},{"completion_time":"2023-06-12T13:39:29.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","balance":{"denom":"ASSET14","amount":"71213580"}}]}},{"completion_time":"2023-06-12T13:39:29.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","balance":{"denom":"ASSET16","amount":"642833430"}}]}},{"completion_time":"2023-06-12T13:39:29.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","balance":{"denom":"ASSET5","amount":"4625829"}}]}},{"completion_time":"2023-06-12T13:39:34.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","balance":{"denom":"ASSET10","amount":"380184295"}}]}},{"completion_time":"2023-06-12T13:39:34.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","balance":{"denom":"ASSET8","amount":"68292801"}}]}},{"completion_time":"2023-06-12T13:39:34.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","balance":{"denom":"ASSET12","amount":"27772850"}}]}},{"completion_time":"2023-06-12T13:39:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","balance":{"denom":"ASSET9","amount":"195976889"}}]}},{"completion_time":"2023-06-12T13:39:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","balance":{"denom":"ASSET5","amount":"77091772"}}]}},{"completion_time":"2023-06-12T13:39:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","balance":{"denom":"ASSET8","amount":"29829004"}}]}},{"completion_time":"2023-06-12T13:39:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","balance":{"denom":"ASSET12","amount":"277122249"}}]}},{"completion_time":"2023-06-12T13:39:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","balance":{"denom":"ASSET5","amount":"593680390"}}]}},{"completion_time":"2023-06-12T13:39:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","balance":{"denom":"ASSET11","amount":"62642719"}}]}},{"completion_time":"2023-06-12T13:39:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjp35ytf0","balance":{"denom":"ASSET15","amount":"207642891"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp2vl8pp","balance":{"denom":"ASSET14","amount":"15663090"}}]}},{"completion_time":"2023-06-12T13:39:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","balance":{"denom":"ASSET3","amount":"433645921"}}]}},{"completion_time":"2023-06-12T13:39:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","balance":{"denom":"ASSET15","amount":"27134382"}}]}},{"completion_time":"2023-06-12T13:39:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","balance":{"denom":"ASSET3","amount":"443757197"}}]}},{"completion_time":"2023-06-12T13:39:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","balance":{"denom":"ASSET14","amount":"82046507"}}]}},{"completion_time":"2023-06-12T13:39:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfgxnqyfg","balance":{"denom":"ASSET2","amount":"846652169"}}]}},{"completion_time":"2023-06-12T13:39:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","balance":{"denom":"ASSET15","amount":"812354666"}}]}},{"completion_time":"2023-06-12T13:40:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","balance":{"denom":"ASSET13","amount":"419232053"}}]}},{"completion_time":"2023-06-12T13:40:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","balance":{"denom":"ASSET10","amount":"6356202"}}]}},{"completion_time":"2023-06-12T13:40:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","balance":{"denom":"ASSET1","amount":"32987947"}}]}},{"completion_time":"2023-06-12T13:40:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","balance":{"denom":"ASSET2","amount":"61896263"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","balance":{"denom":"ASSET8","amount":"21356849"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","balance":{"denom":"ASSET13","amount":"233069330"}}]}},{"completion_time":"2023-06-12T13:40:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvktm4us0","balance":{"denom":"ASSET7","amount":"682023537"}}]}},{"completion_time":"2023-06-12T13:40:14.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","balance":{"denom":"ASSET12","amount":"664296536"}}]}},{"completion_time":"2023-06-12T13:40:14.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","balance":{"denom":"ASSET10","amount":"307144118"}}]}},{"completion_time":"2023-06-12T13:40:14.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","balance":{"denom":"ASSET14","amount":"173657598"}}]}},{"completion_time":"2023-06-12T13:40:14.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","balance":{"denom":"ASSET14","amount":"277777222"}}]}},{"completion_time":"2023-06-12T13:40:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","balance":{"denom":"ASSET7","amount":"850932282"}}]}},{"completion_time":"2023-06-12T13:40:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","balance":{"denom":"ASSET13","amount":"406661005"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct88dd9qu","balance":{"denom":"ASSET10","amount":"448124212"}}]}},{"completion_time":"2023-06-12T13:40:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","balance":{"denom":"ASSET16","amount":"426242072"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","balance":{"denom":"ASSET15","amount":"36876005"}}]}},{"completion_time":"2023-06-12T13:40:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","balance":{"denom":"ASSET13","amount":"666765525"}}]}},{"completion_time":"2023-06-12T13:40:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","balance":{"denom":"ASSET14","amount":"729100018"}}]}},{"completion_time":"2023-06-12T13:40:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","balance":{"denom":"ASSET12","amount":"752245166"}}]}},{"completion_time":"2023-06-12T13:40:29.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","balance":{"denom":"ASSET16","amount":"12271596"}}]}},{"completion_time":"2023-06-12T13:40:29.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","balance":{"denom":"ASSET16","amount":"240788225"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","balance":{"denom":"ASSET12","amount":"63412039"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","balance":{"denom":"ASSET14","amount":"157176799"}}]}},{"completion_time":"2023-06-12T13:40:34.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","balance":{"denom":"ASSET3","amount":"736102675"}}]}},{"completion_time":"2023-06-12T13:40:34.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","balance":{"denom":"ASSET4","amount":"426159013"}}]}},{"completion_time":"2023-06-12T13:40:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","balance":{"denom":"ASSET11","amount":"176439463"}}]}},{"completion_time":"2023-06-12T13:40:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","balance":{"denom":"ASSET2","amount":"113512959"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","balance":{"denom":"ASSET17","amount":"155462746"}}]}},{"completion_time":"2023-06-12T13:40:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","balance":{"denom":"ASSET1","amount":"349604556"}}]}},{"completion_time":"2023-06-12T13:40:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2p5lp6hd","balance":{"denom":"ASSET9","amount":"236399036"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvcfqj4j9","balance":{"denom":"ASSET17","amount":"105707489"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csp086klr","balance":{"denom":"ASSET3","amount":"267639608"}}]}},{"completion_time":"2023-06-12T13:40:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","balance":{"denom":"ASSET6","amount":"93622856"}}]}},{"completion_time":"2023-06-12T13:40:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","balance":{"denom":"ASSET4","amount":"172521869"}}]}},{"completion_time":"2023-06-12T13:40:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","balance":{"denom":"ASSET4","amount":"498072109"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","balance":{"denom":"ASSET16","amount":"73860119"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","balance":{"denom":"ASSET1","amount":"54304866"}}]}},{"completion_time":"2023-06-12T13:41:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","balance":{"denom":"ASSET10","amount":"6542698"}}]}},{"completion_time":"2023-06-12T13:41:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","balance":{"denom":"ASSET13","amount":"105117173"}}]}},{"completion_time":"2023-06-12T13:41:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","balance":{"denom":"ASSET5","amount":"144230113"}}]}},{"completion_time":"2023-06-12T13:41:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","balance":{"denom":"ASSET12","amount":"86533038"}}]}},{"completion_time":"2023-06-12T13:41:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","balance":{"denom":"ASSET12","amount":"160942552"}}]}},{"completion_time":"2023-06-12T13:41:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","balance":{"denom":"ASSET6","amount":"353273914"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","balance":{"denom":"ASSET1","amount":"1385243"}}]}},{"completion_time":"2023-06-12T13:41:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","balance":{"denom":"ASSET5","amount":"224820334"}}]}},{"completion_time":"2023-06-12T13:41:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","balance":{"denom":"ASSET14","amount":"999907504"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfxyg8dtz","balance":{"denom":"ASSET15","amount":"174816172"}}]}},{"completion_time":"2023-06-12T13:41:29.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","balance":{"denom":"ASSET11","amount":"720835641"}}]}},{"completion_time":"2023-06-12T13:41:29.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv8rvf3cw","balance":{"denom":"ASSET2","amount":"974525648"}}]}},{"completion_time":"2023-06-12T13:41:29.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","balance":{"denom":"ASSET16","amount":"147317572"}}]}},{"completion_time":"2023-06-12T13:41:34.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3k5z2yqn","balance":{"denom":"ASSET4","amount":"782486557"}}]}},{"completion_time":"2023-06-12T13:41:34.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","balance":{"denom":"ASSET10","amount":"989836536"}}]}},{"completion_time":"2023-06-12T13:41:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","balance":{"denom":"ASSET12","amount":"138183216"}}]}},{"completion_time":"2023-06-12T13:41:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","balance":{"denom":"ASSET16","amount":"99513684"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","balance":{"denom":"ASSET6","amount":"152770819"}}]}},{"completion_time":"2023-06-12T13:41:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","balance":{"denom":"ASSET12","amount":"136582940"}}]}},{"completion_time":"2023-06-12T13:41:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","balance":{"denom":"ASSET12","amount":"38346397"}}]}},{"completion_time":"2023-06-12T13:41:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","balance":{"denom":"ASSET3","amount":"481664271"}}]}},{"completion_time":"2023-06-12T13:41:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","balance":{"denom":"ASSET9","amount":"55515503"}}]}},{"completion_time":"2023-06-12T13:41:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","balance":{"denom":"ASSET10","amount":"283919383"}}]}},{"completion_time":"2023-06-12T13:41:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqh6tjun","balance":{"denom":"ASSET11","amount":"12900115"}}]}},{"completion_time":"2023-06-12T13:41:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","balance":{"denom":"ASSET10","amount":"274684844"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","balance":{"denom":"ASSET10","amount":"43180760"}}]}},{"completion_time":"2023-06-12T13:41:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgepenn20","balance":{"denom":"ASSET18","amount":"21034571"}}]}},{"completion_time":"2023-06-12T13:41:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","balance":{"denom":"ASSET10","amount":"302420966"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","balance":{"denom":"ASSET9","amount":"523202228"}}]}},{"completion_time":"2023-06-12T13:41:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","balance":{"denom":"ASSET8","amount":"4420800"}}]}},{"completion_time":"2023-06-12T13:41:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","balance":{"denom":"ASSET6","amount":"5412330"}}]}},{"completion_time":"2023-06-12T13:41:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjxsdnmg2","balance":{"denom":"ASSET18","amount":"229049324"}}]}},{"completion_time":"2023-06-12T13:41:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","balance":{"denom":"ASSET13","amount":"43721607"}}]}},{"completion_time":"2023-06-12T13:41:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfrk537e2","balance":{"denom":"ASSET5","amount":"353936987"}}]}},{"completion_time":"2023-06-12T13:41:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","balance":{"denom":"ASSET7","amount":"64003082"}}]}},{"completion_time":"2023-06-12T13:42:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","balance":{"denom":"ASSET17","amount":"678736250"}}]}},{"completion_time":"2023-06-12T13:42:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","balance":{"denom":"ASSET0","amount":"71337056"}}]}},{"completion_time":"2023-06-12T13:42:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","balance":{"denom":"ASSET12","amount":"312647521"}}]}},{"completion_time":"2023-06-12T13:42:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","balance":{"denom":"ASSET12","amount":"4548146"}}]}},{"completion_time":"2023-06-12T13:42:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","balance":{"denom":"ASSET10","amount":"229533576"}}]}},{"completion_time":"2023-06-12T13:42:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzyl2307","balance":{"denom":"ASSET9","amount":"173994902"}}]}},{"completion_time":"2023-06-12T13:42:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","balance":{"denom":"ASSET1","amount":"256399728"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","balance":{"denom":"ASSET14","amount":"4279657"}}]}},{"completion_time":"2023-06-12T13:42:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","balance":{"denom":"ASSET6","amount":"837792757"}}]}},{"completion_time":"2023-06-12T13:42:14.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","balance":{"denom":"ASSET12","amount":"249213086"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","balance":{"denom":"ASSET4","amount":"693972960"}}]}},{"completion_time":"2023-06-12T13:42:14.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjrz39g6z","balance":{"denom":"ASSET17","amount":"148417290"}}]}},{"completion_time":"2023-06-12T13:42:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","balance":{"denom":"ASSET1","amount":"681963565"}}]}},{"completion_time":"2023-06-12T13:42:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","balance":{"denom":"ASSET13","amount":"689762425"}}]}},{"completion_time":"2023-06-12T13:42:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","balance":{"denom":"ASSET2","amount":"564548037"}}]}},{"completion_time":"2023-06-12T13:42:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","balance":{"denom":"ASSET16","amount":"109097494"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","balance":{"denom":"ASSET15","amount":"1669987"}}]}},{"completion_time":"2023-06-12T13:42:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","balance":{"denom":"ASSET11","amount":"138810744"}}]}},{"completion_time":"2023-06-12T13:42:29.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","balance":{"denom":"ASSET15","amount":"7553347"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctyf7cnwr","balance":{"denom":"ASSET7","amount":"7901644"}}]}},{"completion_time":"2023-06-12T13:42:29.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","balance":{"denom":"ASSET10","amount":"148142901"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","balance":{"denom":"ASSET7","amount":"236053834"}}]}},{"completion_time":"2023-06-12T13:42:29.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","balance":{"denom":"ASSET4","amount":"11533544"}}]}},{"completion_time":"2023-06-12T13:42:34.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","balance":{"denom":"ASSET7","amount":"31173282"}}]}},{"completion_time":"2023-06-12T13:42:34.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","balance":{"denom":"ASSET0","amount":"115530303"}}]}},{"completion_time":"2023-06-12T13:42:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","balance":{"denom":"ASSET9","amount":"84469301"}}]}},{"completion_time":"2023-06-12T13:42:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","balance":{"denom":"ASSET5","amount":"364169126"}}]}},{"completion_time":"2023-06-12T13:42:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","balance":{"denom":"ASSET1","amount":"53465217"}}]}},{"completion_time":"2023-06-12T13:42:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","balance":{"denom":"ASSET17","amount":"3164839"}}]}},{"completion_time":"2023-06-12T13:42:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","balance":{"denom":"ASSET7","amount":"46070436"}}]}},{"completion_time":"2023-06-12T13:42:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","balance":{"denom":"ASSET11","amount":"84646527"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","balance":{"denom":"ASSET18","amount":"39618449"}}]}},{"completion_time":"2023-06-12T13:42:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgszmr2fq","balance":{"denom":"ASSET12","amount":"102455090"}}]}},{"completion_time":"2023-06-12T13:42:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","balance":{"denom":"ASSET5","amount":"39976838"}}]}},{"completion_time":"2023-06-12T13:42:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","balance":{"denom":"ASSET11","amount":"444033862"}}]}},{"completion_time":"2023-06-12T13:42:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","balance":{"denom":"ASSET7","amount":"304669014"}}]}},{"completion_time":"2023-06-12T13:42:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","balance":{"denom":"ASSET6","amount":"317160281"}}]}},{"completion_time":"2023-06-12T13:43:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","balance":{"denom":"ASSET2","amount":"543342446"}}]}},{"completion_time":"2023-06-12T13:43:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","balance":{"denom":"ASSET0","amount":"347764091"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","balance":{"denom":"ASSET12","amount":"185712340"}}]}},{"completion_time":"2023-06-12T13:43:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2j0du5vp","balance":{"denom":"ASSET4","amount":"701075640"}}]}},{"completion_time":"2023-06-12T13:43:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","balance":{"denom":"ASSET0","amount":"613950344"}}]}},{"completion_time":"2023-06-12T13:43:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","balance":{"denom":"ASSET13","amount":"66876842"}}]}},{"completion_time":"2023-06-12T13:43:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","balance":{"denom":"ASSET15","amount":"613785166"}}]}},{"completion_time":"2023-06-12T13:43:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","balance":{"denom":"ASSET10","amount":"227821628"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","balance":{"denom":"ASSET0","amount":"84028806"}}]}},{"completion_time":"2023-06-12T13:43:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cffm95356","balance":{"denom":"ASSET0","amount":"290395892"}}]}},{"completion_time":"2023-06-12T13:43:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","balance":{"denom":"ASSET0","amount":"352806467"}}]}},{"completion_time":"2023-06-12T13:43:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2qff402l","balance":{"denom":"ASSET6","amount":"136602576"}}]}},{"completion_time":"2023-06-12T13:43:14.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctx6mesaw","balance":{"denom":"ASSET0","amount":"9085634"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","balance":{"denom":"ASSET17","amount":"134664695"}}]}},{"completion_time":"2023-06-12T13:43:14.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","balance":{"denom":"ASSET12","amount":"313089803"}}]}},{"completion_time":"2023-06-12T13:43:14.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","balance":{"denom":"ASSET10","amount":"167746145"}}]}},{"completion_time":"2023-06-12T13:43:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","balance":{"denom":"ASSET12","amount":"738458427"}}]}},{"completion_time":"2023-06-12T13:43:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","balance":{"denom":"ASSET7","amount":"48439105"}}]}},{"completion_time":"2023-06-12T13:43:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","balance":{"denom":"ASSET9","amount":"171445960"}}]}},{"completion_time":"2023-06-12T13:43:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","balance":{"denom":"ASSET8","amount":"150166366"}}]}},{"completion_time":"2023-06-12T13:43:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","balance":{"denom":"ASSET2","amount":"936491750"}}]}},{"completion_time":"2023-06-12T13:43:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","balance":{"denom":"ASSET9","amount":"156901112"}}]}},{"completion_time":"2023-06-12T13:43:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","balance":{"denom":"ASSET6","amount":"146314590"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","balance":{"denom":"ASSET13","amount":"686284525"}}]}},{"completion_time":"2023-06-12T13:43:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","balance":{"denom":"ASSET6","amount":"1502713570"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","balance":{"denom":"ASSET15","amount":"965766391"}}]}},{"completion_time":"2023-06-12T13:43:29.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","balance":{"denom":"ASSET12","amount":"45884515"}}]}},{"completion_time":"2023-06-12T13:43:29.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg5d3pvx6","balance":{"denom":"ASSET17","amount":"538338989"}}]}},{"completion_time":"2023-06-12T13:43:34.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","balance":{"denom":"ASSET11","amount":"1471721"}}]}},{"completion_time":"2023-06-12T13:43:34.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","balance":{"denom":"ASSET2","amount":"868823894"}}]}},{"completion_time":"2023-06-12T13:43:34.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","balance":{"denom":"ASSET8","amount":"27967606"}}]}},{"completion_time":"2023-06-12T13:43:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","balance":{"denom":"ASSET17","amount":"745021658"}}]}},{"completion_time":"2023-06-12T13:43:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","balance":{"denom":"ASSET11","amount":"26851342"}}]}},{"completion_time":"2023-06-12T13:43:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","balance":{"denom":"ASSET3","amount":"314866594"}}]}},{"completion_time":"2023-06-12T13:43:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","balance":{"denom":"ASSET7","amount":"218925313"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjgjk5j2q","balance":{"denom":"ASSET17","amount":"975982445"}}]}},{"completion_time":"2023-06-12T13:43:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvfphwc6y","balance":{"denom":"ASSET12","amount":"756419343"}}]}},{"completion_time":"2023-06-12T13:43:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cskml97t4","balance":{"denom":"ASSET18","amount":"349059877"}}]}},{"completion_time":"2023-06-12T13:43:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","balance":{"denom":"ASSET6","amount":"409574158"}}]}},{"completion_time":"2023-06-12T13:43:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","balance":{"denom":"ASSET4","amount":"252426115"}}]}},{"completion_time":"2023-06-12T13:43:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","balance":{"denom":"ASSET18","amount":"427993536"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","balance":{"denom":"ASSET13","amount":"748244880"}}]}},{"completion_time":"2023-06-12T13:43:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","balance":{"denom":"ASSET17","amount":"408530239"}}]}},{"completion_time":"2023-06-12T13:43:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","balance":{"denom":"ASSET17","amount":"347501195"}}]}},{"completion_time":"2023-06-12T13:43:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","balance":{"denom":"ASSET4","amount":"9373585"}}]}},{"completion_time":"2023-06-12T13:43:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","balance":{"denom":"ASSET6","amount":"29958689"}}]}},{"completion_time":"2023-06-12T13:43:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","balance":{"denom":"ASSET12","amount":"61662923"}}]}},{"completion_time":"2023-06-12T13:43:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","balance":{"denom":"ASSET2","amount":"414460700"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","balance":{"denom":"ASSET14","amount":"103436757"}}]}},{"completion_time":"2023-06-12T13:44:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","balance":{"denom":"ASSET15","amount":"65534059"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","balance":{"denom":"ASSET8","amount":"198580313"}}]}},{"completion_time":"2023-06-12T13:44:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctk063gga","balance":{"denom":"ASSET18","amount":"79990911"}}]}},{"completion_time":"2023-06-12T13:44:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","balance":{"denom":"ASSET12","amount":"29217665"}}]}},{"completion_time":"2023-06-12T13:44:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgycsf5nf","balance":{"denom":"ASSET8","amount":"79659316"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3rnl508g","balance":{"denom":"ASSET11","amount":"738872810"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","balance":{"denom":"ASSET9","amount":"577286744"}}]}},{"completion_time":"2023-06-12T13:44:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvne8r0z8","balance":{"denom":"ASSET6","amount":"3445740"}}]}},{"completion_time":"2023-06-12T13:44:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","balance":{"denom":"ASSET0","amount":"111169610"}}]}},{"completion_time":"2023-06-12T13:44:14.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","balance":{"denom":"ASSET6","amount":"341491593"}}]}},{"completion_time":"2023-06-12T13:44:14.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","balance":{"denom":"ASSET6","amount":"999971116"}}]}},{"completion_time":"2023-06-12T13:44:14.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","balance":{"denom":"ASSET7","amount":"548542117"}}]}},{"completion_time":"2023-06-12T13:44:14.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","balance":{"denom":"ASSET10","amount":"174464245"}}]}},{"completion_time":"2023-06-12T13:44:14.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","balance":{"denom":"ASSET5","amount":"257161692"}}]}},{"completion_time":"2023-06-12T13:44:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","balance":{"denom":"ASSET5","amount":"193808686"}}]}},{"completion_time":"2023-06-12T13:44:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","balance":{"denom":"ASSET5","amount":"3824316"}}]}},{"completion_time":"2023-06-12T13:44:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3qavpefh","balance":{"denom":"ASSET0","amount":"655545738"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","balance":{"denom":"ASSET9","amount":"154107040"}}]}},{"completion_time":"2023-06-12T13:44:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","balance":{"denom":"ASSET4","amount":"560365334"}}]}},{"completion_time":"2023-06-12T13:44:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","balance":{"denom":"ASSET6","amount":"671718856"}}]}},{"completion_time":"2023-06-12T13:44:29.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","balance":{"denom":"ASSET10","amount":"92568032"}}]}},{"completion_time":"2023-06-12T13:44:29.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","balance":{"denom":"ASSET7","amount":"317615833"}}]}},{"completion_time":"2023-06-12T13:44:34.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","balance":{"denom":"ASSET4","amount":"18343617"}}]}},{"completion_time":"2023-06-12T13:44:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj5kf6qw5","balance":{"denom":"ASSET11","amount":"326536261"}}]}},{"completion_time":"2023-06-12T13:44:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","balance":{"denom":"ASSET8","amount":"94443360"}}]}},{"completion_time":"2023-06-12T13:44:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjsercxpw","balance":{"denom":"ASSET7","amount":"287182023"}}]}},{"completion_time":"2023-06-12T13:44:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","balance":{"denom":"ASSET16","amount":"207235893"}}]}},{"completion_time":"2023-06-12T13:44:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","balance":{"denom":"ASSET13","amount":"3525453"}}]}},{"completion_time":"2023-06-12T13:44:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","balance":{"denom":"ASSET18","amount":"408696798"}}]}},{"completion_time":"2023-06-12T13:44:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","balance":{"denom":"ASSET7","amount":"20244823"}}]}},{"completion_time":"2023-06-12T13:44:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","balance":{"denom":"ASSET8","amount":"50817324"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","balance":{"denom":"ASSET4","amount":"46627008"}}]}},{"completion_time":"2023-06-12T13:44:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","balance":{"denom":"ASSET3","amount":"344118207"}}]}},{"completion_time":"2023-06-12T13:44:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","balance":{"denom":"ASSET12","amount":"461205623"}}]}},{"completion_time":"2023-06-12T13:44:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","balance":{"denom":"ASSET6","amount":"507199440"}}]}},{"completion_time":"2023-06-12T13:44:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","balance":{"denom":"ASSET4","amount":"455791195"}}]}},{"completion_time":"2023-06-12T13:44:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","balance":{"denom":"ASSET3","amount":"22586539"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgf5cmtlu","balance":{"denom":"ASSET4","amount":"953293059"}}]}},{"completion_time":"2023-06-12T13:44:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","balance":{"denom":"ASSET1","amount":"500304363"}}]}},{"completion_time":"2023-06-12T13:45:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfj7rdn3t","balance":{"denom":"ASSET10","amount":"70429798"}}]}},{"completion_time":"2023-06-12T13:45:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","balance":{"denom":"ASSET2","amount":"10285129"}}]}},{"completion_time":"2023-06-12T13:45:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","balance":{"denom":"ASSET16","amount":"228369240"}}]}},{"completion_time":"2023-06-12T13:45:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","balance":{"denom":"ASSET4","amount":"25068654"}}]}},{"completion_time":"2023-06-12T13:45:14.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","balance":{"denom":"ASSET6","amount":"259724623"}}]}},{"completion_time":"2023-06-12T13:45:14.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","balance":{"denom":"ASSET8","amount":"1538466"}}]}},{"completion_time":"2023-06-12T13:45:14.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","balance":{"denom":"ASSET2","amount":"243648754"}}]}},{"completion_time":"2023-06-12T13:45:14.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","balance":{"denom":"ASSET18","amount":"186392960"}}]}},{"completion_time":"2023-06-12T13:45:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf4l66rsw","balance":{"denom":"ASSET3","amount":"231333253"}}]}},{"completion_time":"2023-06-12T13:45:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3nx7uhjm","balance":{"denom":"ASSET14","amount":"168362327"}}]}},{"completion_time":"2023-06-12T13:45:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","balance":{"denom":"ASSET11","amount":"97072544"}}]}},{"completion_time":"2023-06-12T13:45:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","balance":{"denom":"ASSET15","amount":"334186229"}}]}},{"completion_time":"2023-06-12T13:45:29.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cve5kxq0h","balance":{"denom":"ASSET15","amount":"598899789"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv32zzv32","balance":{"denom":"ASSET7","amount":"114934488"}}]}},{"completion_time":"2023-06-12T13:45:29.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csj548cy0","balance":{"denom":"ASSET0","amount":"206425210"}}]}},{"completion_time":"2023-06-12T13:45:34.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctz43mkj5","balance":{"denom":"ASSET2","amount":"259218670"}}]}},{"completion_time":"2023-06-12T13:45:34.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","balance":{"denom":"ASSET9","amount":"798471187"}}]}},{"completion_time":"2023-06-12T13:45:34.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjf0qq8hj","balance":{"denom":"ASSET7","amount":"47919141"}}]}},{"completion_time":"2023-06-12T13:45:34.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","balance":{"denom":"ASSET18","amount":"17405350"}}]}},{"completion_time":"2023-06-12T13:45:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","balance":{"denom":"ASSET17","amount":"102922531"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","balance":{"denom":"ASSET15","amount":"167180368"}}]}},{"completion_time":"2023-06-12T13:45:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","balance":{"denom":"ASSET9","amount":"315767587"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3xprzu4q","balance":{"denom":"ASSET15","amount":"923737"}}]}},{"completion_time":"2023-06-12T13:45:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","balance":{"denom":"ASSET7","amount":"353126725"}}]}},{"completion_time":"2023-06-12T13:45:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","balance":{"denom":"ASSET9","amount":"202571100"}}]}},{"completion_time":"2023-06-12T13:45:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","balance":{"denom":"ASSET8","amount":"267362202"}}]}},{"completion_time":"2023-06-12T13:45:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","balance":{"denom":"ASSET7","amount":"342802013"}}]}},{"completion_time":"2023-06-12T13:45:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","balance":{"denom":"ASSET12","amount":"640375958"}}]}},{"completion_time":"2023-06-12T13:45:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","balance":{"denom":"ASSET8","amount":"671400"}}]}},{"completion_time":"2023-06-12T13:45:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","balance":{"denom":"ASSET18","amount":"41366894"}}]}},{"completion_time":"2023-06-12T13:46:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","balance":{"denom":"ASSET0","amount":"120487038"}}]}},{"completion_time":"2023-06-12T13:46:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfk3f0473","balance":{"denom":"ASSET6","amount":"46274133"}}]}},{"completion_time":"2023-06-12T13:46:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","balance":{"denom":"ASSET15","amount":"43423513"}}]}},{"completion_time":"2023-06-12T13:46:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","balance":{"denom":"ASSET5","amount":"762425454"}}]}},{"completion_time":"2023-06-12T13:46:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","balance":{"denom":"ASSET2","amount":"235230324"}}]}},{"completion_time":"2023-06-12T13:46:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c29m4ruch","balance":{"denom":"ASSET9","amount":"682538433"}}]}},{"completion_time":"2023-06-12T13:46:14.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c28gszlt6","balance":{"denom":"ASSET15","amount":"295361"}}]}},{"completion_time":"2023-06-12T13:46:14.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","balance":{"denom":"ASSET15","amount":"614076191"}}]}},{"completion_time":"2023-06-12T13:46:14.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c25nzl3sk","balance":{"denom":"ASSET0","amount":"14470748"}}]}},{"completion_time":"2023-06-12T13:46:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf92mjm9a","balance":{"denom":"ASSET11","amount":"46278955"}}]}},{"completion_time":"2023-06-12T13:46:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","balance":{"denom":"ASSET10","amount":"36343282"}}]}},{"completion_time":"2023-06-12T13:46:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","balance":{"denom":"ASSET11","amount":"58778267"}}]}},{"completion_time":"2023-06-12T13:46:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3f7w3q2c","balance":{"denom":"ASSET1","amount":"29610737"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","balance":{"denom":"ASSET15","amount":"34761811"}}]}},{"completion_time":"2023-06-12T13:46:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs5g6yacc","balance":{"denom":"ASSET13","amount":"194273510"}}]}},{"completion_time":"2023-06-12T13:46:29.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","balance":{"denom":"ASSET12","amount":"80671972"}}]}},{"completion_time":"2023-06-12T13:46:29.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","balance":{"denom":"ASSET13","amount":"385802370"}}]}},{"completion_time":"2023-06-12T13:46:34.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs44vsg92","balance":{"denom":"ASSET13","amount":"660482351"}}]}},{"completion_time":"2023-06-12T13:46:34.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","balance":{"denom":"ASSET16","amount":"1152069208"}}]}},{"completion_time":"2023-06-12T13:46:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","balance":{"denom":"ASSET1","amount":"741504668"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3yjxrlxd","balance":{"denom":"ASSET17","amount":"124062524"}}]}},{"completion_time":"2023-06-12T13:46:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfyhdxwc0","balance":{"denom":"ASSET15","amount":"111811273"}}]}},{"completion_time":"2023-06-12T13:46:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctpmzwqut","balance":{"denom":"ASSET15","amount":"19036877"}}]}},{"completion_time":"2023-06-12T13:46:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","balance":{"denom":"ASSET15","amount":"999874812"}}]}},{"completion_time":"2023-06-12T13:46:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","balance":{"denom":"ASSET15","amount":"582571257"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct95gvxn3","balance":{"denom":"ASSET13","amount":"141929646"}}]}},{"completion_time":"2023-06-12T13:46:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c334ma5pk","balance":{"denom":"ASSET7","amount":"244641208"}}]}},{"completion_time":"2023-06-12T13:46:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","balance":{"denom":"ASSET15","amount":"11939184"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2z6v5vej","balance":{"denom":"ASSET4","amount":"934559144"}}]}},{"completion_time":"2023-06-12T13:46:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","balance":{"denom":"ASSET1","amount":"865124485"}}]}},{"completion_time":"2023-06-12T13:46:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","balance":{"denom":"ASSET3","amount":"485339132"}}]}},{"completion_time":"2023-06-12T13:46:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","balance":{"denom":"ASSET12","amount":"927306325"}}]}},{"completion_time":"2023-06-12T13:46:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3sgdfpuy","balance":{"denom":"ASSET7","amount":"295746243"}}]}},{"completion_time":"2023-06-12T13:46:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfsdxvszx","balance":{"denom":"ASSET10","amount":"149241489"}}]}},{"completion_time":"2023-06-12T13:46:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","balance":{"denom":"ASSET9","amount":"29037047"}}]}},{"completion_time":"2023-06-12T13:46:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","balance":{"denom":"ASSET17","amount":"417382234"}}]}},{"completion_time":"2023-06-12T13:47:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","balance":{"denom":"ASSET10","amount":"903677098"}}]}},{"completion_time":"2023-06-12T13:47:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","balance":{"denom":"ASSET12","amount":"544407648"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csqj3wrz3","balance":{"denom":"ASSET3","amount":"814501468"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","balance":{"denom":"ASSET13","amount":"334328815"}}]}},{"completion_time":"2023-06-12T13:47:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctjqsnw88","balance":{"denom":"ASSET10","amount":"357250622"}}]}},{"completion_time":"2023-06-12T13:47:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","balance":{"denom":"ASSET10","amount":"175161393"}}]}},{"completion_time":"2023-06-12T13:47:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cshxf3tk8","balance":{"denom":"ASSET16","amount":"3406687"}}]}},{"completion_time":"2023-06-12T13:47:14.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","balance":{"denom":"ASSET1","amount":"4093010"}}]}},{"completion_time":"2023-06-12T13:47:14.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2njmgp3n","balance":{"denom":"ASSET1","amount":"255852432"}}]}},{"completion_time":"2023-06-12T13:47:14.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2f2t9kfs","balance":{"denom":"ASSET12","amount":"261002288"}}]}},{"completion_time":"2023-06-12T13:47:14.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","balance":{"denom":"ASSET12","amount":"230380907"}}]}},{"completion_time":"2023-06-12T13:47:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj8dm8w4c","balance":{"denom":"ASSET2","amount":"545100892"}}]}},{"completion_time":"2023-06-12T13:47:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv5c75lrz","balance":{"denom":"ASSET12","amount":"347289387"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","balance":{"denom":"ASSET11","amount":"999911924"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2r86qeyq","balance":{"denom":"ASSET17","amount":"153044508"}}]}},{"completion_time":"2023-06-12T13:47:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","balance":{"denom":"ASSET11","amount":"660193429"}}]}},{"completion_time":"2023-06-12T13:47:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","balance":{"denom":"ASSET12","amount":"354648642"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvgup6d8k","balance":{"denom":"ASSET0","amount":"559355410"}}]}},{"completion_time":"2023-06-12T13:47:29.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","balance":{"denom":"ASSET7","amount":"444912621"}}]}},{"completion_time":"2023-06-12T13:47:29.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctrg80r0x","balance":{"denom":"ASSET0","amount":"59004058"}}]}},{"completion_time":"2023-06-12T13:47:34.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgj37zf6d","balance":{"denom":"ASSET2","amount":"903146959"}}]}},{"completion_time":"2023-06-12T13:47:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgcu08xha","balance":{"denom":"ASSET15","amount":"78770385"}}]}},{"completion_time":"2023-06-12T13:47:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csxw7dx7x","balance":{"denom":"ASSET18","amount":"115330130"}}]}},{"completion_time":"2023-06-12T13:47:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctsn4jd52","balance":{"denom":"ASSET2","amount":"204846437"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","balance":{"denom":"ASSET10","amount":"459566704"}}]}},{"completion_time":"2023-06-12T13:47:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","balance":{"denom":"ASSET9","amount":"21772226"}}]}},{"completion_time":"2023-06-12T13:47:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3hf573ap","balance":{"denom":"ASSET13","amount":"578801151"}}]}},{"completion_time":"2023-06-12T13:47:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","balance":{"denom":"ASSET13","amount":"85981024"}}]}},{"completion_time":"2023-06-12T13:47:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","balance":{"denom":"ASSET18","amount":"382926220"}}]}},{"completion_time":"2023-06-12T13:47:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfp93sa28","balance":{"denom":"ASSET13","amount":"13841075"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjyrgjcm8","balance":{"denom":"ASSET9","amount":"309515551"}}]}},{"completion_time":"2023-06-12T13:47:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csceyzhfl","balance":{"denom":"ASSET15","amount":"115465013"}}]}},{"completion_time":"2023-06-12T13:47:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csf3n76p7","balance":{"denom":"ASSET1","amount":"519229459"}}]}},{"completion_time":"2023-06-12T13:47:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj977xdx4","balance":{"denom":"ASSET0","amount":"236066515"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","balance":{"denom":"ASSET14","amount":"3541394"}}]}},{"completion_time":"2023-06-12T13:47:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctgcq7ely","balance":{"denom":"ASSET7","amount":"7553655"}}]}},{"completion_time":"2023-06-12T13:47:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cszp50q3u","balance":{"denom":"ASSET8","amount":"840537437"}}]}},{"completion_time":"2023-06-12T13:47:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","balance":{"denom":"ASSET9","amount":"317766546"}}]}},{"completion_time":"2023-06-12T13:47:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","balance":{"denom":"ASSET0","amount":"425005187"}}]}},{"completion_time":"2023-06-12T13:47:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","balance":{"denom":"ASSET3","amount":"114943244"}}]}},{"completion_time":"2023-06-12T13:48:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfcnjguum","balance":{"denom":"ASSET0","amount":"157822846"}}]}},{"completion_time":"2023-06-12T13:48:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","balance":{"denom":"ASSET10","amount":"227740723"}}]}},{"completion_time":"2023-06-12T13:48:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxt4ghqy","balance":{"denom":"ASSET4","amount":"371419677"}}]}},{"completion_time":"2023-06-12T13:48:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgk75q04h","balance":{"denom":"ASSET9","amount":"231048427"}}]}},{"completion_time":"2023-06-12T13:48:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvjy3h6l4","balance":{"denom":"ASSET7","amount":"47279268"}}]}},{"completion_time":"2023-06-12T13:48:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cseyjkz5d","balance":{"denom":"ASSET8","amount":"474473033"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2yxrhf99","balance":{"denom":"ASSET4","amount":"166121936"}}]}},{"completion_time":"2023-06-12T13:48:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3jmggz0f","balance":{"denom":"ASSET16","amount":"88732498"}}]}},{"completion_time":"2023-06-12T13:48:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","balance":{"denom":"ASSET12","amount":"248537187"}}]}},{"completion_time":"2023-06-12T13:48:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","balance":{"denom":"ASSET2","amount":"150872928"}}]}},{"completion_time":"2023-06-12T13:48:14.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctf9k2vzk","balance":{"denom":"ASSET8","amount":"52082032"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjzl83a8s","balance":{"denom":"ASSET17","amount":"7953473"}}]}},{"completion_time":"2023-06-12T13:48:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2el2dwur","balance":{"denom":"ASSET2","amount":"823769304"}}]}},{"completion_time":"2023-06-12T13:48:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfztz9tyc","balance":{"denom":"ASSET17","amount":"788845899"}}]}},{"completion_time":"2023-06-12T13:48:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvz3slz2x","balance":{"denom":"ASSET15","amount":"65455639"}}]}},{"completion_time":"2023-06-12T13:48:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvrvxthh5","balance":{"denom":"ASSET17","amount":"299583138"}}]}},{"completion_time":"2023-06-12T13:48:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csruzm4vw","balance":{"denom":"ASSET7","amount":"84569755"}}]}},{"completion_time":"2023-06-12T13:48:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csnfrndea","balance":{"denom":"ASSET0","amount":"67027778"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c390sh2ml","balance":{"denom":"ASSET12","amount":"337583446"}}]}},{"completion_time":"2023-06-12T13:48:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","balance":{"denom":"ASSET14","amount":"217662694"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cggfw07zw","balance":{"denom":"ASSET16","amount":"529143489"}}]}},{"completion_time":"2023-06-12T13:48:29.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjc8hu2ln","balance":{"denom":"ASSET11","amount":"368087850"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf3ssc9l5","balance":{"denom":"ASSET6","amount":"791615594"}}]}},{"completion_time":"2023-06-12T13:48:29.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","balance":{"denom":"ASSET11","amount":"490123967"}}]}},{"completion_time":"2023-06-12T13:48:29.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvydlu8k3","balance":{"denom":"ASSET13","amount":"694338943"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c24w5tydy","balance":{"denom":"ASSET10","amount":"328221477"}}]}},{"completion_time":"2023-06-12T13:48:34.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3pq64v59","balance":{"denom":"ASSET4","amount":"283157205"}}]}},{"completion_time":"2023-06-12T13:48:34.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct4pfy7xz","balance":{"denom":"ASSET16","amount":"410833422"}}]}},{"completion_time":"2023-06-12T13:48:34.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","balance":{"denom":"ASSET17","amount":"76127902"}}]}},{"completion_time":"2023-06-12T13:48:34.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgnvgku8l","balance":{"denom":"ASSET18","amount":"15288160"}}]}},{"completion_time":"2023-06-12T13:48:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfqc8ygh4","balance":{"denom":"ASSET18","amount":"66229837"}}]}},{"completion_time":"2023-06-12T13:48:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjj2xe9jr","balance":{"denom":"ASSET1","amount":"193825554"}}]}},{"completion_time":"2023-06-12T13:48:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","balance":{"denom":"ASSET7","amount":"101579797"}}]}},{"completion_time":"2023-06-12T13:48:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","balance":{"denom":"ASSET11","amount":"56923032"}}]}},{"completion_time":"2023-06-12T13:48:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvsh5kevc","balance":{"denom":"ASSET15","amount":"201549201"}}]}},{"completion_time":"2023-06-12T13:48:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csgv920uv","balance":{"denom":"ASSET1","amount":"375408354"}}]}},{"completion_time":"2023-06-12T13:48:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","balance":{"denom":"ASSET8","amount":"177184474"}}]}},{"completion_time":"2023-06-12T13:48:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5csyamv9dt","balance":{"denom":"ASSET13","amount":"556480352"}}]}},{"completion_time":"2023-06-12T13:48:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctnax8m64","balance":{"denom":"ASSET14","amount":"136337444"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvplr25ye","balance":{"denom":"ASSET7","amount":"49877457"}}]}},{"completion_time":"2023-06-12T13:48:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cjhc60kqt","balance":{"denom":"ASSET2","amount":"40768125"}}]}},{"completion_time":"2023-06-12T13:48:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","balance":{"denom":"ASSET15","amount":"80433972"}}]}},{"completion_time":"2023-06-12T13:48:54.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3zwfq666","balance":{"denom":"ASSET0","amount":"131695557"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg3ldhl5j","balance":{"denom":"ASSET1","amount":"176990326"}}]}},{"completion_time":"2023-06-12T13:48:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","balance":{"denom":"ASSET2","amount":"47302779"}}]}},{"completion_time":"2023-06-12T13:48:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cgref7yjv","balance":{"denom":"ASSET5","amount":"564128442"}}]}},{"completion_time":"2023-06-12T13:48:59.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","balance":{"denom":"ASSET9","amount":"14827655"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ct5ulstms","balance":{"denom":"ASSET2","amount":"612904741"}}]}},{"completion_time":"2023-06-12T13:49:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cs8ngenr5","balance":{"denom":"ASSET6","amount":"62902733"}}]}},{"completion_time":"2023-06-12T13:49:04.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2ha3287f","balance":{"denom":"ASSET3","amount":"91153139"}}]}},{"completion_time":"2023-06-12T13:49:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2sugahlv","balance":{"denom":"ASSET17","amount":"872700982"}}]}},{"completion_time":"2023-06-12T13:49:09.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2gha3r5z","balance":{"denom":"ASSET13","amount":"424149528"}}]}},{"completion_time":"2023-06-12T13:49:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c2x4xk2kg","balance":{"denom":"ASSET13","amount":"111035905"}}]}},{"completion_time":"2023-06-12T13:49:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgzpt7yrd","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvqz47pet","balance":{"denom":"ASSET17","amount":"445337582"}}]}},{"completion_time":"2023-06-12T13:49:19.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfhvlmqrr","balance":{"denom":"ASSET10","amount":"237674945"}}]}},{"completion_time":"2023-06-12T13:49:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg8nhgh39","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cteshz5h9","balance":{"denom":"ASSET1","amount":"168093437"}}]}},{"completion_time":"2023-06-12T13:49:24.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cf5zvwkdu","balance":{"denom":"ASSET1","amount":"35800539"}}]}},{"completion_time":"2023-06-12T13:49:29.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5ctqx564pe","balance":{"denom":"ASSET17","amount":"349181160"}}]}},{"completion_time":"2023-06-12T13:49:34.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgqjwl8sq","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","balance":{"denom":"ASSET15","amount":"317118501"}}]}},{"completion_time":"2023-06-12T13:49:34.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3et0eclt","balance":{"denom":"ASSET16","amount":"309465446"}}]}},{"completion_time":"2023-06-12T13:49:34.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cv49gq27s","balance":{"denom":"ASSET5","amount":"853894166"}}]}},{"completion_time":"2023-06-12T13:49:39.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c38u4kfgj","balance":{"denom":"ASSET16","amount":"453390279"}},{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgp0ctjdj","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cj3y4vnuu","balance":{"denom":"ASSET18","amount":"39155618"}}]}},{"completion_time":"2023-06-12T13:49:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgrua237l","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3463ljwv","balance":{"denom":"ASSET13","amount":"58888271"}}]}},{"completion_time":"2023-06-12T13:49:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgyayapl6","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5css8sxmhz","balance":{"denom":"ASSET15","amount":"383960330"}}]}},{"completion_time":"2023-06-12T13:49:44.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5c3588t8n7","balance":{"denom":"ASSET0","amount":"160685380"}}]}},{"completion_time":"2023-06-12T13:49:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cg9qjf5zg","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cg99xapwm","balance":{"denom":"ASSET6","amount":"255233573"}}]}},{"completion_time":"2023-06-12T13:49:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cgxwpuzvh","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cfnr4exve","balance":{"denom":"ASSET10","amount":"754864361"}}]}},{"completion_time":"2023-06-12T13:49:49.601333989Z","undelegation":{"entries":[{"delegator_address":"cosmos15ky9du8a2wlstz6fpx3p4mqpjyrm5cggv6mtwa","validator_address":"cosmosvaloper15ky9du8a2wlstz6fpx3p4mqpjyrm5cvhkdpfda","balance":{"denom":"ASSET17","amount":"157980200"}}]}}]} \ No newline at end of file diff --git a/x/alliance/tests/benchmark/benchmark_test.go b/x/alliance/tests/benchmark/benchmark_test.go index 3a652c30..5c983278 100644 --- a/x/alliance/tests/benchmark/benchmark_test.go +++ b/x/alliance/tests/benchmark/benchmark_test.go @@ -8,11 +8,11 @@ import ( "github.com/terra-money/alliance/x/alliance/tests/benchmark" + abcitypes "github.com/cometbft/cometbft/abci/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/simulation" minttypes "github.com/cosmos/cosmos-sdk/x/mint/types" "github.com/stretchr/testify/require" - abcitypes "github.com/tendermint/tendermint/abci/types" test_helpers "github.com/terra-money/alliance/app" "github.com/terra-money/alliance/x/alliance" @@ -21,7 +21,7 @@ import ( var ( SEED = int64(1) - NumOfBlocks = 1000 + NumOfBlocks = 200 BlocktimeInSeconds = 5 VoteRate = 0.8 NumOfValidators = 160 @@ -64,14 +64,8 @@ func TestRunBenchmarks(t *testing.T) { }) } - idx := simulation.RandIntBetween(r, 0, len(vals)-1) - proposerAddr := sdk.ValAddress(vals[idx]) - proposer, err := app.AllianceKeeper.GetAllianceValidator(ctx, proposerAddr) - require.NoError(t, err) - proposerCons, _ := proposer.GetConsAddr() - // Begin block - app.DistrKeeper.AllocateTokens(ctx, totalVotingPower, totalVotingPower, proposerCons, voteInfo) + app.DistrKeeper.AllocateTokens(ctx, totalVotingPower, voteInfo) // Delegator Actions operationFunc := benchmark.GenerateOperationSlots(DelegationRate, RedelegationRate, UndelegationRate, RewardClaimRate) @@ -81,7 +75,7 @@ func TestRunBenchmarks(t *testing.T) { delegateOperation(ctx, app, r, assets, vals, dels) operations["delegate"]++ case 1: - redelegateOperation(ctx, app, r, assets, vals, dels) + redelegateOperation(ctx, app, r, vals) operations["redelegate"]++ case 2: undelegateOperation(ctx, app, r) @@ -95,7 +89,7 @@ func TestRunBenchmarks(t *testing.T) { // Endblock assets := app.AllianceKeeper.GetAllAssets(ctx) app.AllianceKeeper.CompleteRedelegations(ctx) - err = app.AllianceKeeper.CompleteUndelegations(ctx) + err := app.AllianceKeeper.CompleteUndelegations(ctx) if err != nil { panic(err) } @@ -103,7 +97,10 @@ func TestRunBenchmarks(t *testing.T) { if err != nil { panic(err) } - app.AllianceKeeper.RewardWeightChangeHook(ctx, assets) + err = app.AllianceKeeper.RewardWeightChangeHook(ctx, assets) + if err != nil { + panic(err) + } err = app.AllianceKeeper.RebalanceHook(ctx, assets) if err != nil { panic(err) @@ -148,7 +145,7 @@ func delegateOperation(ctx sdk.Context, app *test_helpers.App, r *rand.Rand, ass createdDelegations = append(createdDelegations, types.NewDelegation(ctx, delAddr, valAddr, asset.Denom, sdk.ZeroDec(), []types.RewardHistory{})) } -func redelegateOperation(ctx sdk.Context, app *test_helpers.App, r *rand.Rand, assets []types.AllianceAsset, vals []sdk.AccAddress, dels []sdk.AccAddress) { //nolint:unparam // assets is unused +func redelegateOperation(ctx sdk.Context, app *test_helpers.App, r *rand.Rand, vals []sdk.AccAddress) { var delegation types.Delegation if len(createdDelegations) == 0 { return @@ -168,12 +165,10 @@ func redelegateOperation(ctx sdk.Context, app *test_helpers.App, r *rand.Rand, a return } - dstValAddr := sdk.ValAddress(vals[r.Intn(len(vals)-1)]) - for ; dstValAddr.Equals(srcValAddr); dstValAddr = sdk.ValAddress(vals[r.Intn(len(vals)-1)]) { - } + dstValAddr := getRandomValAddress(r, vals, srcValAddr) dstValidator, _ := app.AllianceKeeper.GetAllianceValidator(ctx, dstValAddr) - delegation, found := app.AllianceKeeper.GetDelegation(ctx, delAddr, srcValidator, asset.Denom) + delegation, found := app.AllianceKeeper.GetDelegation(ctx, delAddr, srcValidator.GetOperator(), asset.Denom) if !found { return } @@ -187,6 +182,22 @@ func redelegateOperation(ctx sdk.Context, app *test_helpers.App, r *rand.Rand, a } } +func getRandomValAddress(r *rand.Rand, vals []sdk.AccAddress, srcValAddr sdk.ValAddress) sdk.ValAddress { + var dstValAddr sdk.ValAddress + + for { + // Get a random destination validator address + dstValAddr = sdk.ValAddress(vals[r.Intn(len(vals)-1)]) + + // Break the loop if the destination validator address is different from the source validator address + if !dstValAddr.Equals(srcValAddr) { + break + } + } + + return dstValAddr +} + func undelegateOperation(ctx sdk.Context, app *test_helpers.App, r *rand.Rand) { if len(createdDelegations) == 0 { return @@ -204,7 +215,7 @@ func undelegateOperation(ctx sdk.Context, app *test_helpers.App, r *rand.Rand) { validator, _ := app.AllianceKeeper.GetAllianceValidator(ctx, valAddr) asset, _ := app.AllianceKeeper.GetAssetByDenom(ctx, delegation.Denom) - delegation, found := app.AllianceKeeper.GetDelegation(ctx, delAddr, validator, asset.Denom) + delegation, found := app.AllianceKeeper.GetDelegation(ctx, delAddr, validator.GetOperator(), asset.Denom) if !found { return } @@ -232,7 +243,7 @@ func claimRewardsOperation(ctx sdk.Context, app *test_helpers.App, r *rand.Rand) valAddr, _ := sdk.ValAddressFromBech32(delegation.ValidatorAddress) validator, _ := app.AllianceKeeper.GetAllianceValidator(ctx, valAddr) - delegation, found := app.AllianceKeeper.GetDelegation(ctx, delAddr, validator, delegation.Denom) + delegation, found := app.AllianceKeeper.GetDelegation(ctx, delAddr, validator.GetOperator(), delegation.Denom) if !found { return } diff --git a/x/alliance/tests/benchmark/test_helper.go b/x/alliance/tests/benchmark/test_helper.go index 1d8f1894..74ec8582 100644 --- a/x/alliance/tests/benchmark/test_helper.go +++ b/x/alliance/tests/benchmark/test_helper.go @@ -6,25 +6,25 @@ import ( "testing" "time" + tmproto "github.com/cometbft/cometbft/proto/tendermint/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/cosmos/cosmos-sdk/x/staking/teststaking" + teststaking "github.com/cosmos/cosmos-sdk/x/staking/testutil" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - tmproto "github.com/tendermint/tendermint/proto/tendermint/types" test_helpers "github.com/terra-money/alliance/app" "github.com/terra-money/alliance/x/alliance/types" ) func SetupApp(t *testing.T, r *rand.Rand, numAssets int, numValidators int, numDelegators int) (app *test_helpers.App, ctx sdk.Context, assets []types.AllianceAsset, valAddrs []sdk.AccAddress, delAddrs []sdk.AccAddress) { - app = test_helpers.Setup(t, false) + app = test_helpers.Setup(t) ctx = app.BaseApp.NewContext(false, tmproto.Header{}) startTime := time.Now() ctx = ctx.WithBlockTime(startTime) for i := 0; i < numAssets; i++ { rewardWeight := simulation.RandomDecAmount(r, sdk.NewDec(1)) takeRate := simulation.RandomDecAmount(r, sdk.MustNewDecFromStr("0.0001")) - asset := types.NewAllianceAsset(fmt.Sprintf("ASSET%d", i), rewardWeight, takeRate, startTime) + asset := types.NewAllianceAsset(fmt.Sprintf("ASSET%d", i), rewardWeight, sdk.ZeroDec(), sdk.NewDec(5), takeRate, startTime) asset.RewardChangeRate = sdk.OneDec().Sub(simulation.RandomDecAmount(r, sdk.MustNewDecFromStr("0.00001"))) asset.RewardChangeInterval = time.Minute * 5 assets = append(assets, asset) diff --git a/x/alliance/tests/e2e/delegate_undelegate_test.go b/x/alliance/tests/e2e/delegate_undelegate_test.go index ee18aa90..bf5763c7 100644 --- a/x/alliance/tests/e2e/delegate_undelegate_test.go +++ b/x/alliance/tests/e2e/delegate_undelegate_test.go @@ -29,6 +29,7 @@ func TestDelegateThenTakeRateThenUndelegate(t *testing.T) { Description: "", Denom: "test", RewardWeight: sdk.MustNewDecFromStr("0.03"), + RewardWeightRange: types.RewardWeightRange{Min: sdk.ZeroDec(), Max: sdk.MustNewDecFromStr("0.1")}, TakeRate: sdk.MustNewDecFromStr("0.02"), RewardChangeRate: sdk.MustNewDecFromStr("0.01"), RewardChangeInterval: time.Second * 60, @@ -53,13 +54,13 @@ func TestDelegateThenTakeRateThenUndelegate(t *testing.T) { asset, _ := app.AllianceKeeper.GetAssetByDenom(ctx, "test") - del0, found := app.AllianceKeeper.GetDelegation(ctx, dels[0], val0, "test") + del0, found := app.AllianceKeeper.GetDelegation(ctx, dels[0], val0.GetOperator(), "test") require.True(t, found) tokens := types.GetDelegationTokens(del0, val0, asset) _, err = app.AllianceKeeper.Undelegate(ctx, dels[0], val0, tokens) require.NoError(t, err) - _, found = app.AllianceKeeper.GetDelegation(ctx, dels[0], val0, "test") + _, found = app.AllianceKeeper.GetDelegation(ctx, dels[0], val0.GetOperator(), "test") require.False(t, found) val0, err = app.AllianceKeeper.GetAllianceValidator(ctx, vals[0]) @@ -84,6 +85,7 @@ func TestDelegateThenTakeRateThenRedelegate(t *testing.T) { Description: "", Denom: "test", RewardWeight: sdk.MustNewDecFromStr("0.03"), + RewardWeightRange: types.RewardWeightRange{Min: sdk.ZeroDec(), Max: sdk.MustNewDecFromStr("0.1")}, TakeRate: sdk.MustNewDecFromStr("0.02"), RewardChangeRate: sdk.MustNewDecFromStr("0.01"), RewardChangeInterval: time.Second * 60, @@ -110,13 +112,13 @@ func TestDelegateThenTakeRateThenRedelegate(t *testing.T) { asset, _ := app.AllianceKeeper.GetAssetByDenom(ctx, "test") - del0, found := app.AllianceKeeper.GetDelegation(ctx, dels[0], val0, "test") + del0, found := app.AllianceKeeper.GetDelegation(ctx, dels[0], val0.GetOperator(), "test") require.True(t, found) tokens := types.GetDelegationTokens(del0, val0, asset) _, err = app.AllianceKeeper.Redelegate(ctx, dels[0], val0, val1, tokens) require.NoError(t, err) - _, found = app.AllianceKeeper.GetDelegation(ctx, dels[0], val0, "test") + _, found = app.AllianceKeeper.GetDelegation(ctx, dels[0], val0.GetOperator(), "test") require.False(t, found) val0, err = app.AllianceKeeper.GetAllianceValidator(ctx, vals[0]) @@ -140,11 +142,13 @@ func TestDelegatingASmallAmount(t *testing.T) { )) startTime := time.Now() ctx = ctx.WithBlockTime(startTime).WithBlockHeight(1) + params := types.DefaultParams() + params.LastTakeRateClaimTime = startTime app.AllianceKeeper.InitGenesis(ctx, &types.GenesisState{ - Params: types.DefaultParams(), + Params: params, Assets: []types.AllianceAsset{ - types.NewAllianceAsset(allianceAsset1, sdk.NewDec(2), sdk.NewDec(0), ctx.BlockTime()), - types.NewAllianceAsset(allianceAsset2, sdk.NewDec(10), sdk.MustNewDecFromStr("0.1"), ctx.BlockTime()), + types.NewAllianceAsset(allianceAsset1, sdk.NewDec(2), sdk.NewDec(0), sdk.NewDec(5), sdk.NewDec(0), ctx.BlockTime()), + types.NewAllianceAsset(allianceAsset2, sdk.NewDec(10), sdk.NewDec(2), sdk.NewDec(12), sdk.MustNewDecFromStr("0.1"), ctx.BlockTime()), }, }) queryServer := keeper.NewQueryServerImpl(app.AllianceKeeper) @@ -152,9 +156,8 @@ func TestDelegatingASmallAmount(t *testing.T) { // Set tax and rewards to be zero for easier calculation distParams := app.DistrKeeper.GetParams(ctx) distParams.CommunityTax = sdk.ZeroDec() - distParams.BaseProposerReward = sdk.ZeroDec() - distParams.BonusProposerReward = sdk.ZeroDec() - app.DistrKeeper.SetParams(ctx, distParams) + err := app.DistrKeeper.SetParams(ctx, distParams) + require.NoError(t, err) user1 := dels[0] user2 := dels[1] @@ -194,7 +197,7 @@ func TestDelegatingASmallAmount(t *testing.T) { require.NoError(t, err) // User should have everything withdrawn - _, found := app.AllianceKeeper.GetDelegation(ctx, user1, val1, allianceAsset2) + _, found := app.AllianceKeeper.GetDelegation(ctx, user1, val1.GetOperator(), allianceAsset2) require.False(t, found) // Delegate again @@ -226,7 +229,7 @@ func TestDelegatingASmallAmount(t *testing.T) { require.NoError(t, err) // User should have everything withdrawn - _, found = app.AllianceKeeper.GetDelegation(ctx, user1, val1, allianceAsset2) + _, found = app.AllianceKeeper.GetDelegation(ctx, user1, val1.GetOperator(), allianceAsset2) require.False(t, found) res, err = queryServer.AllianceDelegation(ctx, &types.QueryAllianceDelegationRequest{ @@ -250,11 +253,13 @@ func TestDelegateAndUndelegateWithSmallAmounts(t *testing.T) { )) startTime := time.Now() ctx = ctx.WithBlockTime(startTime).WithBlockHeight(1) + params := types.DefaultParams() + params.LastTakeRateClaimTime = startTime app.AllianceKeeper.InitGenesis(ctx, &types.GenesisState{ - Params: types.DefaultParams(), + Params: params, Assets: []types.AllianceAsset{ - types.NewAllianceAsset(allianceAsset1, sdk.NewDec(2), sdk.NewDec(0), ctx.BlockTime()), - types.NewAllianceAsset(allianceAsset2, sdk.NewDec(10), sdk.MustNewDecFromStr("0.1"), ctx.BlockTime()), + types.NewAllianceAsset(allianceAsset1, sdk.NewDec(2), sdk.NewDec(0), sdk.NewDec(5), sdk.NewDec(0), ctx.BlockTime()), + types.NewAllianceAsset(allianceAsset2, sdk.NewDec(10), sdk.NewDec(2), sdk.NewDec(12), sdk.MustNewDecFromStr("0.1"), ctx.BlockTime()), }, }) queryServer := keeper.NewQueryServerImpl(app.AllianceKeeper) @@ -262,9 +267,9 @@ func TestDelegateAndUndelegateWithSmallAmounts(t *testing.T) { // Set tax and rewards to be zero for easier calculation distParams := app.DistrKeeper.GetParams(ctx) distParams.CommunityTax = sdk.ZeroDec() - distParams.BaseProposerReward = sdk.ZeroDec() - distParams.BonusProposerReward = sdk.ZeroDec() - app.DistrKeeper.SetParams(ctx, distParams) + + err := app.DistrKeeper.SetParams(ctx, distParams) + require.NoError(t, err) val1, err := app.AllianceKeeper.GetAllianceValidator(ctx, vals[0]) require.NoError(t, err) @@ -315,11 +320,13 @@ func TestUnDelegatingSlightlyMoreCoin(t *testing.T) { )) startTime := time.Now() ctx = ctx.WithBlockTime(startTime).WithBlockHeight(1) + params := types.DefaultParams() + params.LastTakeRateClaimTime = startTime app.AllianceKeeper.InitGenesis(ctx, &types.GenesisState{ - Params: types.DefaultParams(), + Params: params, Assets: []types.AllianceAsset{ - types.NewAllianceAsset(allianceAsset1, sdk.NewDec(2), sdk.NewDec(0), ctx.BlockTime()), - types.NewAllianceAsset(allianceAsset2, sdk.NewDec(10), sdk.MustNewDecFromStr("0.1"), ctx.BlockTime()), + types.NewAllianceAsset(allianceAsset1, sdk.NewDec(2), sdk.NewDec(0), sdk.NewDec(5), sdk.NewDec(0), ctx.BlockTime()), + types.NewAllianceAsset(allianceAsset2, sdk.NewDec(10), sdk.NewDec(2), sdk.NewDec(12), sdk.MustNewDecFromStr("0.1"), ctx.BlockTime()), }, }) queryServer := keeper.NewQueryServerImpl(app.AllianceKeeper) @@ -327,9 +334,9 @@ func TestUnDelegatingSlightlyMoreCoin(t *testing.T) { // Set tax and rewards to be zero for easier calculation distParams := app.DistrKeeper.GetParams(ctx) distParams.CommunityTax = sdk.ZeroDec() - distParams.BaseProposerReward = sdk.ZeroDec() - distParams.BonusProposerReward = sdk.ZeroDec() - app.DistrKeeper.SetParams(ctx, distParams) + + err := app.DistrKeeper.SetParams(ctx, distParams) + require.NoError(t, err) val1, err := app.AllianceKeeper.GetAllianceValidator(ctx, vals[0]) require.NoError(t, err) @@ -378,11 +385,13 @@ func TestReDelegatingSlightlyMoreCoin(t *testing.T) { )) startTime := time.Now() ctx = ctx.WithBlockTime(startTime).WithBlockHeight(1) + params := types.DefaultParams() + params.LastTakeRateClaimTime = startTime app.AllianceKeeper.InitGenesis(ctx, &types.GenesisState{ - Params: types.DefaultParams(), + Params: params, Assets: []types.AllianceAsset{ - types.NewAllianceAsset(allianceAsset1, sdk.NewDec(2), sdk.NewDec(0), ctx.BlockTime()), - types.NewAllianceAsset(allianceAsset2, sdk.NewDec(10), sdk.MustNewDecFromStr("0.1"), ctx.BlockTime()), + types.NewAllianceAsset(allianceAsset1, sdk.NewDec(2), sdk.NewDec(0), sdk.NewDec(5), sdk.NewDec(0), ctx.BlockTime()), + types.NewAllianceAsset(allianceAsset2, sdk.NewDec(10), sdk.NewDec(2), sdk.NewDec(12), sdk.MustNewDecFromStr("0.1"), ctx.BlockTime()), }, }) queryServer := keeper.NewQueryServerImpl(app.AllianceKeeper) @@ -390,9 +399,9 @@ func TestReDelegatingSlightlyMoreCoin(t *testing.T) { // Set tax and rewards to be zero for easier calculation distParams := app.DistrKeeper.GetParams(ctx) distParams.CommunityTax = sdk.ZeroDec() - distParams.BaseProposerReward = sdk.ZeroDec() - distParams.BonusProposerReward = sdk.ZeroDec() - app.DistrKeeper.SetParams(ctx, distParams) + + err := app.DistrKeeper.SetParams(ctx, distParams) + require.NoError(t, err) val1, err := app.AllianceKeeper.GetAllianceValidator(ctx, vals[0]) require.NoError(t, err) @@ -430,3 +439,141 @@ func TestReDelegatingSlightlyMoreCoin(t *testing.T) { _, err = app.AllianceKeeper.Redelegate(ctx, user1, val1, val2, sdk.NewCoin(allianceAsset2, del.Balance.Amount.AddRaw(1))) require.Error(t, err) } + +func TestDustValidatorSharesAfterUndelegationError(t *testing.T) { + app, ctx, vals, addrs := setupApp(t, 5, 2, sdk.NewCoins( + sdk.NewCoin(allianceAsset1, sdk.NewInt(1000000000000000000)), + sdk.NewCoin(allianceAsset2, sdk.NewInt(1000000000000000000)), + )) + startTime := time.Now() + ctx = ctx.WithBlockTime(startTime).WithBlockHeight(1) + app.AllianceKeeper.InitGenesis(ctx, &types.GenesisState{ + Params: types.DefaultParams(), + Assets: []types.AllianceAsset{ + types.NewAllianceAsset(allianceAsset1, sdk.NewDec(2), sdk.NewDec(0), sdk.NewDec(5), sdk.NewDec(0), ctx.BlockTime()), + types.NewAllianceAsset(allianceAsset2, sdk.MustNewDecFromStr("10"), sdk.NewDec(5), sdk.NewDec(0), sdk.MustNewDecFromStr("0.1"), ctx.BlockTime()), + }, + }) + queryServer := keeper.NewQueryServerImpl(app.AllianceKeeper) + + // Set tax and rewards to be zero for easier calculation + distParams := app.DistrKeeper.GetParams(ctx) + distParams.CommunityTax = sdk.ZeroDec() + + err := app.DistrKeeper.SetParams(ctx, distParams) + require.NoError(t, err) + + val1, err := app.AllianceKeeper.GetAllianceValidator(ctx, vals[0]) + require.NoError(t, err) + val2, err := app.AllianceKeeper.GetAllianceValidator(ctx, vals[1]) + require.NoError(t, err) + + user1 := addrs[0] + user2 := addrs[1] + + // Delegate token with non-zero take_rate + _, err = app.AllianceKeeper.Delegate(ctx, user1, val1, sdk.NewCoin(allianceAsset2, sdk.NewInt(1000))) + require.NoError(t, err) + _, err = app.AllianceKeeper.Delegate(ctx, user2, val2, sdk.NewCoin(allianceAsset2, sdk.NewInt(0))) + require.NoError(t, err) + + assets := app.AllianceKeeper.GetAllAssets(ctx) + + err = app.AllianceKeeper.RebalanceBondTokenWeights(ctx, assets) + + require.NoError(t, err) + + ctx = ctx.WithBlockTime(startTime.Add(time.Minute * 6)).WithBlockHeight(2) + _, err = app.AllianceKeeper.DeductAssetsHook(ctx, assets) + require.NoError(t, err) + + res, err := queryServer.AllianceDelegation(ctx, &types.QueryAllianceDelegationRequest{ + DelegatorAddr: user1.String(), + ValidatorAddr: val1.GetOperator().String(), + Denom: allianceAsset2, + Pagination: nil, + }) + require.NoError(t, err) + del := res.GetDelegation() + + _, err = app.AllianceKeeper.Undelegate(ctx, user1, val1, sdk.NewCoin(allianceAsset2, del.Balance.Amount)) + require.NoError(t, err) + + assets = app.AllianceKeeper.GetAllAssets(ctx) + + err = app.AllianceKeeper.RebalanceBondTokenWeights(ctx, assets) + + require.NoError(t, err) + + _, err = app.AllianceKeeper.Delegate(ctx, user1, val1, sdk.NewCoin(allianceAsset2, sdk.NewInt(200))) + require.NoError(t, err) +} + +func TestDustValidatorSharesAfterRedelegationError(t *testing.T) { + app, ctx, vals, addrs := setupApp(t, 5, 2, sdk.NewCoins( + sdk.NewCoin(allianceAsset1, sdk.NewInt(1000000000000000000)), + sdk.NewCoin(allianceAsset2, sdk.NewInt(1000000000000000000)), + )) + startTime := time.Now() + ctx = ctx.WithBlockTime(startTime).WithBlockHeight(1) + app.AllianceKeeper.InitGenesis(ctx, &types.GenesisState{ + Params: types.DefaultParams(), + Assets: []types.AllianceAsset{ + types.NewAllianceAsset(allianceAsset1, sdk.NewDec(2), sdk.NewDec(0), sdk.NewDec(5), sdk.NewDec(0), ctx.BlockTime()), + types.NewAllianceAsset(allianceAsset2, sdk.MustNewDecFromStr("10"), sdk.NewDec(5), sdk.NewDec(0), sdk.MustNewDecFromStr("0.1"), ctx.BlockTime()), + }, + }) + queryServer := keeper.NewQueryServerImpl(app.AllianceKeeper) + + // Set tax and rewards to be zero for easier calculation + distParams := app.DistrKeeper.GetParams(ctx) + distParams.CommunityTax = sdk.ZeroDec() + + err := app.DistrKeeper.SetParams(ctx, distParams) + require.NoError(t, err) + + val1, err := app.AllianceKeeper.GetAllianceValidator(ctx, vals[0]) + require.NoError(t, err) + val2, err := app.AllianceKeeper.GetAllianceValidator(ctx, vals[1]) + require.NoError(t, err) + + user1 := addrs[0] + user2 := addrs[1] + + // Delegate token with non-zero take_rate + _, err = app.AllianceKeeper.Delegate(ctx, user1, val1, sdk.NewCoin(allianceAsset2, sdk.NewInt(1000))) + require.NoError(t, err) + _, err = app.AllianceKeeper.Delegate(ctx, user2, val2, sdk.NewCoin(allianceAsset2, sdk.NewInt(0))) + require.NoError(t, err) + + assets := app.AllianceKeeper.GetAllAssets(ctx) + + err = app.AllianceKeeper.RebalanceBondTokenWeights(ctx, assets) + + require.NoError(t, err) + + ctx = ctx.WithBlockTime(startTime.Add(time.Minute * 6)).WithBlockHeight(2) + _, err = app.AllianceKeeper.DeductAssetsHook(ctx, assets) + require.NoError(t, err) + + res, err := queryServer.AllianceDelegation(ctx, &types.QueryAllianceDelegationRequest{ + DelegatorAddr: user1.String(), + ValidatorAddr: val1.GetOperator().String(), + Denom: allianceAsset2, + Pagination: nil, + }) + require.NoError(t, err) + del := res.GetDelegation() + + _, err = app.AllianceKeeper.Redelegate(ctx, user1, val1, val2, sdk.NewCoin(allianceAsset2, del.Balance.Amount)) + require.NoError(t, err) + + assets = app.AllianceKeeper.GetAllAssets(ctx) + + err = app.AllianceKeeper.RebalanceBondTokenWeights(ctx, assets) + + require.NoError(t, err) + + _, err = app.AllianceKeeper.Delegate(ctx, user1, val1, sdk.NewCoin(allianceAsset2, sdk.NewInt(200))) + require.NoError(t, err) +} diff --git a/x/alliance/tests/e2e/test_helper.go b/x/alliance/tests/e2e/test_helper.go index 7d6814cf..34c724cd 100644 --- a/x/alliance/tests/e2e/test_helper.go +++ b/x/alliance/tests/e2e/test_helper.go @@ -4,16 +4,16 @@ import ( "testing" "time" + tmproto "github.com/cometbft/cometbft/proto/tendermint/types" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/cosmos-sdk/x/staking/teststaking" + teststaking "github.com/cosmos/cosmos-sdk/x/staking/testutil" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - tmproto "github.com/tendermint/tendermint/proto/tendermint/types" test_helpers "github.com/terra-money/alliance/app" ) func setupApp(t *testing.T, numValidators int, numDelegators int, initBalance sdk.Coins) (app *test_helpers.App, ctx sdk.Context, valAddrs []sdk.ValAddress, delAddrs []sdk.AccAddress) { - app = test_helpers.Setup(t, false) + app = test_helpers.Setup(t) ctx = app.BaseApp.NewContext(false, tmproto.Header{}) startTime := time.Now() ctx = ctx.WithBlockTime(startTime) diff --git a/x/alliance/tests/simulation/genesis.go b/x/alliance/tests/simulation/genesis.go index 9740af24..a3d49418 100644 --- a/x/alliance/tests/simulation/genesis.go +++ b/x/alliance/tests/simulation/genesis.go @@ -5,10 +5,10 @@ import ( "math/rand" "time" + "github.com/cometbft/cometbft/libs/json" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/tendermint/tendermint/libs/json" "github.com/terra-money/alliance/x/alliance/types" ) @@ -40,9 +40,9 @@ func RandomizedGenesisState(simState *module.SimulationState) { var allianceAssets []types.AllianceAsset for i := 0; i < numOfAllianceAssets; i++ { rewardRate := simulation.RandomDecAmount(r, sdk.NewDec(5)) - takeRate := simulation.RandomDecAmount(r, sdk.MustNewDecFromStr("0.5")) + takeRate := simulation.RandomDecAmount(r, sdk.MustNewDecFromStr("0.0005")) startTime := time.Now().Add(time.Duration(simulation.RandIntBetween(r, 60, 60*60*24*3*2)) * time.Second) - allianceAssets = append(allianceAssets, types.NewAllianceAsset(fmt.Sprintf("ASSET%d", i), rewardRate, takeRate, startTime)) + allianceAssets = append(allianceAssets, types.NewAllianceAsset(fmt.Sprintf("ASSET%d", i), rewardRate, sdk.NewDec(0), sdk.NewDec(15), takeRate, startTime)) } allianceGenesis := types.GenesisState{ diff --git a/x/alliance/tests/simulation/operations.go b/x/alliance/tests/simulation/operations.go index b185d7ba..fda903c5 100644 --- a/x/alliance/tests/simulation/operations.go +++ b/x/alliance/tests/simulation/operations.go @@ -3,9 +3,10 @@ package simulation import ( "math/rand" + "github.com/cosmos/cosmos-sdk/x/auth/tx" + "github.com/cosmos/cosmos-sdk/baseapp" "github.com/cosmos/cosmos-sdk/codec" - simappparams "github.com/cosmos/cosmos-sdk/simapp/params" sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" minttypes "github.com/cosmos/cosmos-sdk/x/mint/types" @@ -16,8 +17,7 @@ import ( ) // WeightedOperations returns all the operations from the module with their respective weights -func WeightedOperations( - appParams simtypes.AppParams, cdc *codec.ProtoCodec, +func WeightedOperations(cdc *codec.ProtoCodec, ak types.AccountKeeper, bk types.BankKeeper, sk types.StakingKeeper, k keeper.Keeper, ) simulation.WeightedOperations { @@ -44,11 +44,11 @@ func WeightedOperations( ), simulation.NewWeightedOperation( weightMsgUndelegate, - SimulateMsgUndelegate(cdc, ak, bk, sk, k), + SimulateMsgUndelegate(cdc, ak, bk, k), ), simulation.NewWeightedOperation( weightMsgClaimRewards, - SimulateMsgClaimRewards(cdc, ak, bk, sk, k), + SimulateMsgClaimRewards(cdc, ak, bk, k), ), } } @@ -83,7 +83,7 @@ func SimulateMsgDelegate(cdc *codec.ProtoCodec, ak types.AccountKeeper, bk types txCtx := simulation.OperationInput{ R: r, App: app, - TxGen: simappparams.MakeTestEncodingConfig().TxConfig, + TxGen: tx.NewTxConfig(cdc, tx.DefaultSignModes), Cdc: cdc, Msg: msg, MsgType: msg.Type(), @@ -144,6 +144,10 @@ func SimulateMsgRedelegate(cdc *codec.ProtoCodec, ak types.AccountKeeper, bk typ idx = simtypes.RandIntBetween(r, 0, len(validators)-1) validatorToDelegateTo := validators[idx] + if delegation.ValidatorAddress == validatorToDelegateTo.GetOperator().String() { + return simtypes.NoOpMsg(types.ModuleName, types.MsgRedelegateType, "redelegation to the same validator"), nil, nil + } + msg := &types.MsgRedelegate{ DelegatorAddress: delegation.DelegatorAddress, ValidatorSrcAddress: delegation.ValidatorAddress, @@ -154,7 +158,7 @@ func SimulateMsgRedelegate(cdc *codec.ProtoCodec, ak types.AccountKeeper, bk typ txCtx := simulation.OperationInput{ R: r, App: app, - TxGen: simappparams.MakeTestEncodingConfig().TxConfig, + TxGen: tx.NewTxConfig(cdc, tx.DefaultSignModes), Cdc: cdc, Msg: msg, MsgType: msg.Type(), @@ -169,7 +173,7 @@ func SimulateMsgRedelegate(cdc *codec.ProtoCodec, ak types.AccountKeeper, bk typ } } -func SimulateMsgUndelegate(cdc *codec.ProtoCodec, ak types.AccountKeeper, bk types.BankKeeper, sk types.StakingKeeper, k keeper.Keeper) simtypes.Operation { +func SimulateMsgUndelegate(cdc *codec.ProtoCodec, ak types.AccountKeeper, bk types.BankKeeper, k keeper.Keeper) simtypes.Operation { return func(r *rand.Rand, app *baseapp.BaseApp, ctx sdk.Context, accs []simtypes.Account, chainId string) (simtypes.OperationMsg, []simtypes.FutureOperation, error) { var delegations []types.Delegation k.IterateDelegations(ctx, func(d types.Delegation) bool { @@ -215,7 +219,7 @@ func SimulateMsgUndelegate(cdc *codec.ProtoCodec, ak types.AccountKeeper, bk typ txCtx := simulation.OperationInput{ R: r, App: app, - TxGen: simappparams.MakeTestEncodingConfig().TxConfig, + TxGen: tx.NewTxConfig(cdc, tx.DefaultSignModes), Cdc: cdc, Msg: msg, MsgType: msg.Type(), @@ -230,7 +234,7 @@ func SimulateMsgUndelegate(cdc *codec.ProtoCodec, ak types.AccountKeeper, bk typ } } -func SimulateMsgClaimRewards(cdc *codec.ProtoCodec, ak types.AccountKeeper, bk types.BankKeeper, sk types.StakingKeeper, k keeper.Keeper) simtypes.Operation { +func SimulateMsgClaimRewards(cdc *codec.ProtoCodec, ak types.AccountKeeper, bk types.BankKeeper, k keeper.Keeper) simtypes.Operation { return func(r *rand.Rand, app *baseapp.BaseApp, ctx sdk.Context, accs []simtypes.Account, chainId string) (simtypes.OperationMsg, []simtypes.FutureOperation, error) { var delegations []types.Delegation k.IterateDelegations(ctx, func(d types.Delegation) bool { @@ -263,7 +267,7 @@ func SimulateMsgClaimRewards(cdc *codec.ProtoCodec, ak types.AccountKeeper, bk t txCtx := simulation.OperationInput{ R: r, App: app, - TxGen: simappparams.MakeTestEncodingConfig().TxConfig, + TxGen: tx.NewTxConfig(cdc, tx.DefaultSignModes), Cdc: cdc, Msg: msg, MsgType: msg.Type(), diff --git a/x/alliance/tests/simulation/params.go b/x/alliance/tests/simulation/params.go deleted file mode 100644 index ab6bcb8c..00000000 --- a/x/alliance/tests/simulation/params.go +++ /dev/null @@ -1,26 +0,0 @@ -package simulation - -import ( - "fmt" - "math/rand" - - simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/cosmos/cosmos-sdk/x/simulation" - - "github.com/terra-money/alliance/x/alliance/types" -) - -func ParamChanges(r *rand.Rand) []simtypes.ParamChange { - return []simtypes.ParamChange{ - simulation.NewSimParamChange(types.ModuleName, string(types.RewardDelayTime), - func(r *rand.Rand) string { - return fmt.Sprintf("\"%d\"", genRewardDelayTime(r)) - }, - ), - simulation.NewSimParamChange(types.ModuleName, string(types.TakeRateClaimInterval), - func(r *rand.Rand) string { - return fmt.Sprintf("\"%d\"", genTakeRateClaimInterval(r)) - }, - ), - } -} diff --git a/x/alliance/types/alliance.pb.go b/x/alliance/types/alliance.pb.go index e0a71c27..4a5c08ba 100644 --- a/x/alliance/types/alliance.pb.go +++ b/x/alliance/types/alliance.pb.go @@ -8,8 +8,8 @@ import ( _ "github.com/cosmos/cosmos-proto" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/gogo/protobuf/proto" - github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" + proto "github.com/cosmos/gogoproto/proto" + github_com_cosmos_gogoproto_types "github.com/cosmos/gogoproto/types" _ "google.golang.org/protobuf/types/known/durationpb" _ "google.golang.org/protobuf/types/known/timestamppb" io "io" @@ -30,6 +30,44 @@ var _ = time.Kitchen // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package +type RewardWeightRange struct { + Min github_com_cosmos_cosmos_sdk_types.Dec `protobuf:"bytes,1,opt,name=min,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Dec" json:"min"` + Max github_com_cosmos_cosmos_sdk_types.Dec `protobuf:"bytes,2,opt,name=max,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Dec" json:"max"` +} + +func (m *RewardWeightRange) Reset() { *m = RewardWeightRange{} } +func (m *RewardWeightRange) String() string { return proto.CompactTextString(m) } +func (*RewardWeightRange) ProtoMessage() {} +func (*RewardWeightRange) Descriptor() ([]byte, []int) { + return fileDescriptor_f7dbf17f28cd0f90, []int{0} +} +func (m *RewardWeightRange) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *RewardWeightRange) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_RewardWeightRange.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *RewardWeightRange) XXX_Merge(src proto.Message) { + xxx_messageInfo_RewardWeightRange.Merge(m, src) +} +func (m *RewardWeightRange) XXX_Size() int { + return m.Size() +} +func (m *RewardWeightRange) XXX_DiscardUnknown() { + xxx_messageInfo_RewardWeightRange.DiscardUnknown(m) +} + +var xxx_messageInfo_RewardWeightRange proto.InternalMessageInfo + // key: denom value: AllianceAsset type AllianceAsset struct { // Denom of the asset. It could either be a native token or an IBC token @@ -47,13 +85,17 @@ type AllianceAsset struct { RewardChangeRate github_com_cosmos_cosmos_sdk_types.Dec `protobuf:"bytes,7,opt,name=reward_change_rate,json=rewardChangeRate,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Dec" json:"reward_change_rate"` RewardChangeInterval time.Duration `protobuf:"bytes,8,opt,name=reward_change_interval,json=rewardChangeInterval,proto3,stdduration" json:"reward_change_interval"` LastRewardChangeTime time.Time `protobuf:"bytes,9,opt,name=last_reward_change_time,json=lastRewardChangeTime,proto3,stdtime" json:"last_reward_change_time"` + // set a bound of weight range to limit how much reward weights can scale. + RewardWeightRange RewardWeightRange `protobuf:"bytes,10,opt,name=reward_weight_range,json=rewardWeightRange,proto3" json:"reward_weight_range"` + // flag to check if an asset has completed the initialization process after the reward delay + IsInitialized bool `protobuf:"varint,11,opt,name=is_initialized,json=isInitialized,proto3" json:"is_initialized,omitempty"` } func (m *AllianceAsset) Reset() { *m = AllianceAsset{} } func (m *AllianceAsset) String() string { return proto.CompactTextString(m) } func (*AllianceAsset) ProtoMessage() {} func (*AllianceAsset) Descriptor() ([]byte, []int) { - return fileDescriptor_f7dbf17f28cd0f90, []int{0} + return fileDescriptor_f7dbf17f28cd0f90, []int{1} } func (m *AllianceAsset) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -91,7 +133,7 @@ func (m *RewardWeightChangeSnapshot) Reset() { *m = RewardWeightChangeSn func (m *RewardWeightChangeSnapshot) String() string { return proto.CompactTextString(m) } func (*RewardWeightChangeSnapshot) ProtoMessage() {} func (*RewardWeightChangeSnapshot) Descriptor() ([]byte, []int) { - return fileDescriptor_f7dbf17f28cd0f90, []int{1} + return fileDescriptor_f7dbf17f28cd0f90, []int{2} } func (m *RewardWeightChangeSnapshot) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -121,54 +163,103 @@ func (m *RewardWeightChangeSnapshot) XXX_DiscardUnknown() { var xxx_messageInfo_RewardWeightChangeSnapshot proto.InternalMessageInfo func init() { - proto.RegisterType((*AllianceAsset)(nil), "alliance.alliance.AllianceAsset") - proto.RegisterType((*RewardWeightChangeSnapshot)(nil), "alliance.alliance.RewardWeightChangeSnapshot") + proto.RegisterType((*RewardWeightRange)(nil), "alliance.RewardWeightRange") + proto.RegisterType((*AllianceAsset)(nil), "alliance.AllianceAsset") + proto.RegisterType((*RewardWeightChangeSnapshot)(nil), "alliance.RewardWeightChangeSnapshot") } func init() { proto.RegisterFile("alliance/alliance.proto", fileDescriptor_f7dbf17f28cd0f90) } var fileDescriptor_f7dbf17f28cd0f90 = []byte{ - // 594 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x94, 0x3d, 0x4f, 0xdb, 0x5c, - 0x14, 0xc7, 0x6d, 0xde, 0x9e, 0x70, 0x01, 0x3d, 0x60, 0xa5, 0x60, 0x32, 0xd8, 0x51, 0x06, 0xc4, - 0x82, 0x5d, 0xd1, 0x0d, 0x75, 0x21, 0x65, 0x80, 0x76, 0x69, 0x1d, 0xd4, 0xaa, 0x2f, 0x92, 0x75, - 0x89, 0x6f, 0x6d, 0x0b, 0xdb, 0xd7, 0xba, 0xf7, 0x00, 0xcd, 0x37, 0xe8, 0x88, 0x3a, 0x75, 0xe4, - 0x43, 0xf4, 0x43, 0x30, 0xa2, 0x2e, 0xad, 0x3a, 0xa4, 0x55, 0xb2, 0x74, 0xee, 0x27, 0xa8, 0xee, - 0x8b, 0x43, 0x52, 0x26, 0x32, 0xf9, 0x5c, 0x9f, 0x73, 0x7e, 0xe7, 0xef, 0xff, 0xb9, 0x32, 0xda, - 0xc0, 0x59, 0x96, 0xe2, 0xa2, 0x4b, 0xfc, 0x2a, 0xf0, 0x4a, 0x46, 0x81, 0x5a, 0x6b, 0xa3, 0x73, - 0x15, 0x34, 0xea, 0x31, 0x8d, 0xa9, 0xcc, 0xfa, 0x22, 0x52, 0x85, 0x8d, 0xcd, 0x2e, 0xe5, 0x39, - 0xe5, 0xa1, 0x4a, 0xa8, 0x83, 0x4e, 0x3d, 0x18, 0xc1, 0x4b, 0xcc, 0x70, 0x5e, 0xbd, 0x76, 0x62, - 0x4a, 0xe3, 0x8c, 0xf8, 0xf2, 0x74, 0x72, 0xf6, 0xde, 0x8f, 0xce, 0x18, 0x86, 0x94, 0x16, 0x3a, - 0xef, 0xfe, 0x9b, 0x87, 0x34, 0x27, 0x1c, 0x70, 0x5e, 0xaa, 0x82, 0xd6, 0xa7, 0x05, 0xb4, 0xb2, - 0xaf, 0xd1, 0xfb, 0x9c, 0x13, 0xb0, 0xb6, 0xd0, 0x7c, 0x44, 0x0a, 0x9a, 0xdb, 0x66, 0xd3, 0xdc, - 0x5e, 0x6c, 0xaf, 0xfe, 0xe9, 0xbb, 0xcb, 0x3d, 0x9c, 0x67, 0x7b, 0x2d, 0xf9, 0xba, 0x15, 0xa8, - 0xb4, 0xd5, 0x41, 0x2b, 0x8c, 0x5c, 0x60, 0x16, 0x85, 0x17, 0x24, 0x8d, 0x13, 0xb0, 0x67, 0x64, - 0xbd, 0x77, 0xdd, 0x77, 0x8d, 0x1f, 0x7d, 0x77, 0x2b, 0x4e, 0x21, 0x39, 0x3b, 0xf1, 0xba, 0x34, - 0xd7, 0x5f, 0xa2, 0x1f, 0x3b, 0x3c, 0x3a, 0xf5, 0xa1, 0x57, 0x12, 0xee, 0x1d, 0x90, 0x6e, 0xb0, - 0xac, 0x20, 0xaf, 0x24, 0xc3, 0x7a, 0x86, 0x16, 0x01, 0x9f, 0x92, 0x90, 0x61, 0x20, 0xf6, 0xec, - 0x54, 0xc0, 0x9a, 0x00, 0x04, 0x18, 0x88, 0x15, 0xa2, 0x65, 0xa0, 0x80, 0xb3, 0x10, 0xe8, 0x29, - 0x29, 0xb8, 0x3d, 0x27, 0x79, 0x8f, 0xef, 0xc1, 0x3b, 0x2a, 0xe0, 0xeb, 0x97, 0x1d, 0xa4, 0x37, - 0x71, 0x54, 0x40, 0xb0, 0x24, 0x89, 0xc7, 0x12, 0x68, 0x45, 0x68, 0x5d, 0x0d, 0x38, 0xc7, 0x59, - 0x1a, 0x61, 0xa0, 0x2c, 0xe4, 0x09, 0x66, 0x84, 0xdb, 0xf3, 0x53, 0x49, 0xaf, 0x4b, 0xda, 0xcb, - 0x0a, 0xd6, 0x91, 0x2c, 0xeb, 0x39, 0x5a, 0xd3, 0x46, 0x73, 0xc0, 0x0c, 0x42, 0xb1, 0x42, 0x7b, - 0xa1, 0x69, 0x6e, 0x2f, 0xed, 0x36, 0x3c, 0xb5, 0x5f, 0xaf, 0xda, 0xaf, 0x77, 0x5c, 0xed, 0xb7, - 0x5d, 0x13, 0xc3, 0x2f, 0x7f, 0xba, 0x66, 0xf0, 0xbf, 0x6a, 0xef, 0x88, 0x6e, 0x91, 0xb7, 0xde, - 0x21, 0x4b, 0x13, 0xbb, 0x09, 0x2e, 0x62, 0x6d, 0xf7, 0x7f, 0x53, 0x69, 0x5e, 0x55, 0xa4, 0x27, - 0x12, 0x24, 0x6d, 0x7f, 0x8d, 0xd6, 0x27, 0xe9, 0x69, 0x01, 0x84, 0x9d, 0xe3, 0xcc, 0xae, 0x49, - 0xd1, 0x9b, 0x77, 0x44, 0x1f, 0xe8, 0x4b, 0xab, 0x34, 0x7f, 0x16, 0x9a, 0xeb, 0xe3, 0xd8, 0x23, - 0x0d, 0xb0, 0xde, 0xa2, 0x8d, 0x0c, 0x73, 0x08, 0x27, 0xf9, 0xd2, 0x90, 0xc5, 0x7b, 0x18, 0x52, - 0x17, 0x90, 0x60, 0x6c, 0x80, 0x28, 0xda, 0xab, 0x7d, 0xbc, 0x72, 0x8d, 0xdf, 0x57, 0xae, 0xd1, - 0xfa, 0x66, 0xa2, 0x46, 0x30, 0x76, 0x2d, 0x55, 0x51, 0xa7, 0xc0, 0x25, 0x4f, 0x28, 0x08, 0xfb, - 0x4a, 0x46, 0xce, 0xc3, 0xc9, 0xeb, 0x6f, 0x4e, 0x67, 0x9f, 0x20, 0x8d, 0xcf, 0xb2, 0x5e, 0x20, - 0x6d, 0x69, 0x98, 0xa4, 0x1c, 0x28, 0x4b, 0x09, 0xb7, 0x67, 0x9a, 0xb3, 0xdb, 0x4b, 0xbb, 0x4d, - 0xef, 0xce, 0x8f, 0xc4, 0x53, 0xad, 0x87, 0xb2, 0xb2, 0xd7, 0x9e, 0x13, 0xd3, 0xab, 0x7d, 0x1f, - 0x56, 0xed, 0xb7, 0x5f, 0xd6, 0x7e, 0x7a, 0x3d, 0x70, 0xcc, 0x9b, 0x81, 0x63, 0xfe, 0x1a, 0x38, - 0xe6, 0xe5, 0xd0, 0x31, 0x6e, 0x86, 0x8e, 0xf1, 0x7d, 0xe8, 0x18, 0x6f, 0x1e, 0x8e, 0x09, 0x06, - 0xc2, 0x18, 0xde, 0xc9, 0x69, 0x41, 0x7a, 0xa3, 0x7f, 0x99, 0xff, 0xe1, 0x36, 0x94, 0xf2, 0x4f, - 0x16, 0xa4, 0xc7, 0x8f, 0xfe, 0x06, 0x00, 0x00, 0xff, 0xff, 0xce, 0x41, 0x7c, 0xfa, 0xf8, 0x04, + // 674 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x94, 0xbb, 0x6e, 0xdb, 0x3c, + 0x14, 0xc7, 0xad, 0x5c, 0x1d, 0x3a, 0xf9, 0xbe, 0x44, 0x75, 0x13, 0xc5, 0x05, 0x24, 0xc3, 0x40, + 0x03, 0x2f, 0x91, 0x8b, 0x74, 0x0b, 0x3a, 0x34, 0x6e, 0x86, 0xb8, 0x5d, 0x5a, 0x39, 0x68, 0xd1, + 0x0b, 0x20, 0x30, 0x16, 0x2b, 0x13, 0x91, 0x44, 0x83, 0x3c, 0xb9, 0xb8, 0x4f, 0xd0, 0xa1, 0x43, + 0xc6, 0x8e, 0xe9, 0x3b, 0xf4, 0x21, 0x32, 0x15, 0x41, 0xa7, 0xa2, 0x43, 0x5a, 0x24, 0x4b, 0xe7, + 0x3e, 0x41, 0x41, 0x8a, 0x4a, 0xe4, 0x64, 0x8a, 0x26, 0x91, 0x3c, 0xe2, 0x8f, 0xff, 0x73, 0xf8, + 0x3f, 0x44, 0x4b, 0x38, 0x8a, 0x28, 0x4e, 0x7a, 0xa4, 0x95, 0x0d, 0xdc, 0x01, 0x67, 0xc0, 0xcc, + 0x72, 0x36, 0xaf, 0x55, 0x43, 0x16, 0x32, 0xb5, 0xd8, 0x92, 0xa3, 0x34, 0x5e, 0x5b, 0xee, 0x31, + 0x11, 0x33, 0xe1, 0xa7, 0x81, 0x74, 0xa2, 0x43, 0x77, 0x2f, 0x99, 0x03, 0xcc, 0x71, 0x9c, 0x2d, + 0xdb, 0x21, 0x63, 0x61, 0x44, 0x5a, 0x6a, 0xb6, 0xb3, 0xf7, 0xbe, 0x15, 0xec, 0x71, 0x0c, 0x94, + 0x25, 0x3a, 0xee, 0x5c, 0x8f, 0x03, 0x8d, 0x89, 0x00, 0x1c, 0x0f, 0xd2, 0x1f, 0x1a, 0x5f, 0x0c, + 0xb4, 0xe0, 0x91, 0x03, 0xcc, 0x83, 0x57, 0x84, 0x86, 0x7d, 0xf0, 0x70, 0x12, 0x12, 0xf3, 0x31, + 0x1a, 0x8f, 0x69, 0x62, 0x19, 0x75, 0xa3, 0x39, 0xd3, 0x76, 0x4f, 0xce, 0x9c, 0xd2, 0xcf, 0x33, + 0x67, 0x25, 0xa4, 0xd0, 0xdf, 0xdb, 0x71, 0x7b, 0x2c, 0xd6, 0xda, 0xf4, 0x67, 0x55, 0x04, 0xbb, + 0x2d, 0x18, 0x0e, 0x88, 0x70, 0x37, 0x49, 0xcf, 0x93, 0x5b, 0x15, 0x01, 0x1f, 0x5a, 0x63, 0x05, + 0x09, 0xf8, 0x70, 0xbd, 0xfc, 0xf1, 0xd8, 0x29, 0xfd, 0x39, 0x76, 0x4a, 0x8d, 0x4f, 0xd3, 0x68, + 0x6e, 0x43, 0xa7, 0xbf, 0x21, 0x04, 0x01, 0x73, 0x05, 0x4d, 0x06, 0x24, 0x61, 0xb1, 0x56, 0x38, + 0xff, 0xf7, 0xcc, 0x99, 0x1d, 0xe2, 0x38, 0x5a, 0x6f, 0xa8, 0xe5, 0x86, 0x97, 0x86, 0xcd, 0x2e, + 0x9a, 0xe3, 0x2a, 0x39, 0xff, 0x40, 0x65, 0x57, 0x50, 0xcf, 0x2c, 0xcf, 0x55, 0xc8, 0x7c, 0x86, + 0x66, 0x00, 0xef, 0x12, 0x9f, 0x63, 0x20, 0xd6, 0x78, 0x21, 0x60, 0x59, 0x02, 0x3c, 0x0c, 0xc4, + 0xf4, 0xd1, 0x2c, 0x30, 0xc0, 0x91, 0x0f, 0x6c, 0x97, 0x24, 0xc2, 0x9a, 0x50, 0xbc, 0x47, 0xb7, + 0xe0, 0x75, 0x12, 0xf8, 0xfe, 0x75, 0x15, 0x69, 0xb7, 0x74, 0x12, 0xf0, 0x2a, 0x8a, 0xb8, 0xad, + 0x80, 0x66, 0x80, 0x16, 0xd3, 0x03, 0xf6, 0x71, 0x44, 0x03, 0x0c, 0x8c, 0xfb, 0xa2, 0x8f, 0x39, + 0x11, 0xd6, 0x64, 0x21, 0xe9, 0x55, 0x45, 0x7b, 0x99, 0xc1, 0xba, 0x8a, 0x65, 0x3e, 0x47, 0x0b, + 0xba, 0xd0, 0x02, 0x30, 0x07, 0x5f, 0xda, 0xcc, 0x9a, 0xaa, 0x1b, 0xcd, 0xca, 0x5a, 0xcd, 0x4d, + 0x3d, 0xe8, 0x66, 0x1e, 0x74, 0xb7, 0x33, 0x0f, 0xb6, 0xcb, 0xf2, 0xf0, 0xa3, 0x5f, 0x8e, 0xe1, + 0xfd, 0x9f, 0x6e, 0xef, 0xca, 0xdd, 0x32, 0x6e, 0xbe, 0x43, 0xa6, 0x26, 0xf6, 0xfa, 0xd2, 0x93, + 0x69, 0xb9, 0xa7, 0x0b, 0x69, 0x9e, 0x4f, 0x49, 0x4f, 0x14, 0x48, 0x95, 0xfd, 0x35, 0x5a, 0x1c, + 0xa5, 0xd3, 0x04, 0x08, 0xdf, 0xc7, 0x91, 0x55, 0x56, 0xa2, 0x97, 0x6f, 0x88, 0xde, 0xd4, 0x8d, + 0x95, 0x6a, 0xfe, 0x2c, 0x35, 0x57, 0xf3, 0xd8, 0x8e, 0x06, 0x98, 0x6f, 0xd1, 0x52, 0x84, 0x05, + 0xf8, 0xa3, 0x7c, 0x55, 0x90, 0x99, 0x5b, 0x14, 0xa4, 0x2a, 0x21, 0x5e, 0xee, 0x00, 0x55, 0x95, + 0x17, 0xe8, 0xce, 0x88, 0xa1, 0x7d, 0x2e, 0x43, 0x16, 0x52, 0xe0, 0x7b, 0xee, 0xe5, 0x7b, 0x73, + 0xa3, 0xa5, 0xdb, 0x13, 0x92, 0xec, 0x2d, 0xf0, 0x1b, 0xbd, 0x7e, 0x1f, 0xfd, 0x47, 0x85, 0x4f, + 0x13, 0x0a, 0x14, 0x47, 0xf4, 0x03, 0x09, 0xac, 0x4a, 0xdd, 0x68, 0x96, 0xbd, 0x39, 0x2a, 0x3a, + 0x57, 0x8b, 0xb9, 0x76, 0xfc, 0x66, 0xa0, 0x5a, 0x9e, 0x9f, 0xca, 0xeb, 0x26, 0x78, 0x20, 0xfa, + 0x0c, 0xe4, 0xc5, 0x0d, 0x38, 0xd9, 0xf7, 0x47, 0x1b, 0xaf, 0xd8, 0x53, 0x32, 0x2f, 0x49, 0xf9, + 0xb3, 0xcc, 0x2d, 0xa4, 0x2f, 0xd3, 0xef, 0x53, 0x01, 0x8c, 0x53, 0x22, 0xac, 0xb1, 0xfa, 0x78, + 0xb3, 0xb2, 0xb6, 0x74, 0x3d, 0xfb, 0x2d, 0xf5, 0xc3, 0x50, 0x67, 0xae, 0x0d, 0xb6, 0x95, 0xed, + 0xba, 0x4a, 0xa8, 0xfd, 0xf4, 0xe4, 0xdc, 0x36, 0x4e, 0xcf, 0x6d, 0xe3, 0xf7, 0xb9, 0x6d, 0x1c, + 0x5d, 0xd8, 0xa5, 0xd3, 0x0b, 0xbb, 0xf4, 0xe3, 0xc2, 0x2e, 0xbd, 0x79, 0x90, 0xd3, 0x09, 0x84, + 0x73, 0xbc, 0x1a, 0xb3, 0x84, 0x0c, 0x2f, 0xdf, 0xf5, 0xd6, 0xe1, 0xd5, 0x50, 0xa9, 0xde, 0x99, + 0x52, 0x97, 0xfa, 0xf0, 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x86, 0x2e, 0x21, 0x10, 0x04, 0x06, 0x00, 0x00, } +func (m *RewardWeightRange) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *RewardWeightRange) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *RewardWeightRange) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + { + size := m.Max.Size() + i -= size + if _, err := m.Max.MarshalTo(dAtA[i:]); err != nil { + return 0, err + } + i = encodeVarintAlliance(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + { + size := m.Min.Size() + i -= size + if _, err := m.Min.MarshalTo(dAtA[i:]); err != nil { + return 0, err + } + i = encodeVarintAlliance(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + return len(dAtA) - i, nil +} + func (m *AllianceAsset) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -189,21 +280,41 @@ func (m *AllianceAsset) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - n1, err1 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.LastRewardChangeTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.LastRewardChangeTime):]) - if err1 != nil { - return 0, err1 + if m.IsInitialized { + i-- + if m.IsInitialized { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x58 + } + { + size, err := m.RewardWeightRange.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintAlliance(dAtA, i, uint64(size)) } - i -= n1 - i = encodeVarintAlliance(dAtA, i, uint64(n1)) i-- - dAtA[i] = 0x4a - n2, err2 := github_com_gogo_protobuf_types.StdDurationMarshalTo(m.RewardChangeInterval, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdDuration(m.RewardChangeInterval):]) + dAtA[i] = 0x52 + n2, err2 := github_com_cosmos_gogoproto_types.StdTimeMarshalTo(m.LastRewardChangeTime, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdTime(m.LastRewardChangeTime):]) if err2 != nil { return 0, err2 } i -= n2 i = encodeVarintAlliance(dAtA, i, uint64(n2)) i-- + dAtA[i] = 0x4a + n3, err3 := github_com_cosmos_gogoproto_types.StdDurationMarshalTo(m.RewardChangeInterval, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdDuration(m.RewardChangeInterval):]) + if err3 != nil { + return 0, err3 + } + i -= n3 + i = encodeVarintAlliance(dAtA, i, uint64(n3)) + i-- dAtA[i] = 0x42 { size := m.RewardChangeRate.Size() @@ -215,12 +326,12 @@ func (m *AllianceAsset) MarshalToSizedBuffer(dAtA []byte) (int, error) { } i-- dAtA[i] = 0x3a - n3, err3 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.RewardStartTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.RewardStartTime):]) - if err3 != nil { - return 0, err3 + n4, err4 := github_com_cosmos_gogoproto_types.StdTimeMarshalTo(m.RewardStartTime, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdTime(m.RewardStartTime):]) + if err4 != nil { + return 0, err4 } - i -= n3 - i = encodeVarintAlliance(dAtA, i, uint64(n3)) + i -= n4 + i = encodeVarintAlliance(dAtA, i, uint64(n4)) i-- dAtA[i] = 0x32 { @@ -331,6 +442,19 @@ func encodeVarintAlliance(dAtA []byte, offset int, v uint64) int { dAtA[offset] = uint8(v) return base } +func (m *RewardWeightRange) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = m.Min.Size() + n += 1 + l + sovAlliance(uint64(l)) + l = m.Max.Size() + n += 1 + l + sovAlliance(uint64(l)) + return n +} + func (m *AllianceAsset) Size() (n int) { if m == nil { return 0 @@ -349,14 +473,19 @@ func (m *AllianceAsset) Size() (n int) { n += 1 + l + sovAlliance(uint64(l)) l = m.TotalValidatorShares.Size() n += 1 + l + sovAlliance(uint64(l)) - l = github_com_gogo_protobuf_types.SizeOfStdTime(m.RewardStartTime) + l = github_com_cosmos_gogoproto_types.SizeOfStdTime(m.RewardStartTime) n += 1 + l + sovAlliance(uint64(l)) l = m.RewardChangeRate.Size() n += 1 + l + sovAlliance(uint64(l)) - l = github_com_gogo_protobuf_types.SizeOfStdDuration(m.RewardChangeInterval) + l = github_com_cosmos_gogoproto_types.SizeOfStdDuration(m.RewardChangeInterval) + n += 1 + l + sovAlliance(uint64(l)) + l = github_com_cosmos_gogoproto_types.SizeOfStdTime(m.LastRewardChangeTime) n += 1 + l + sovAlliance(uint64(l)) - l = github_com_gogo_protobuf_types.SizeOfStdTime(m.LastRewardChangeTime) + l = m.RewardWeightRange.Size() n += 1 + l + sovAlliance(uint64(l)) + if m.IsInitialized { + n += 2 + } return n } @@ -383,6 +512,124 @@ func sovAlliance(x uint64) (n int) { func sozAlliance(x uint64) (n int) { return sovAlliance(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } +func (m *RewardWeightRange) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAlliance + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: RewardWeightRange: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: RewardWeightRange: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Min", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAlliance + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthAlliance + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthAlliance + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.Min.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Max", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAlliance + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthAlliance + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthAlliance + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.Max.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipAlliance(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthAlliance + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *AllianceAsset) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -609,7 +856,7 @@ func (m *AllianceAsset) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(&m.RewardStartTime, dAtA[iNdEx:postIndex]); err != nil { + if err := github_com_cosmos_gogoproto_types.StdTimeUnmarshal(&m.RewardStartTime, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex @@ -676,7 +923,7 @@ func (m *AllianceAsset) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := github_com_gogo_protobuf_types.StdDurationUnmarshal(&m.RewardChangeInterval, dAtA[iNdEx:postIndex]); err != nil { + if err := github_com_cosmos_gogoproto_types.StdDurationUnmarshal(&m.RewardChangeInterval, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex @@ -709,10 +956,63 @@ func (m *AllianceAsset) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(&m.LastRewardChangeTime, dAtA[iNdEx:postIndex]); err != nil { + if err := github_com_cosmos_gogoproto_types.StdTimeUnmarshal(&m.LastRewardChangeTime, dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 10: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field RewardWeightRange", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAlliance + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthAlliance + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthAlliance + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.RewardWeightRange.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex + case 11: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field IsInitialized", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAlliance + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.IsInitialized = bool(v != 0) default: iNdEx = preIndex skippy, err := skipAlliance(dAtA[iNdEx:]) diff --git a/x/alliance/types/asset.go b/x/alliance/types/asset.go index 1a95c2da..a8fe8f3b 100644 --- a/x/alliance/types/asset.go +++ b/x/alliance/types/asset.go @@ -7,10 +7,14 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" ) -func NewAllianceAsset(denom string, rewardWeight sdk.Dec, takeRate sdk.Dec, rewardStartTime time.Time) AllianceAsset { +func NewAllianceAsset(denom string, rewardWeight sdk.Dec, minRewardWeight sdk.Dec, maxRewardWeight sdk.Dec, takeRate sdk.Dec, rewardStartTime time.Time) AllianceAsset { return AllianceAsset{ - Denom: denom, - RewardWeight: rewardWeight, + Denom: denom, + RewardWeight: rewardWeight, + RewardWeightRange: RewardWeightRange{ + Min: minRewardWeight, + Max: maxRewardWeight, + }, TakeRate: takeRate, TotalTokens: sdk.ZeroInt(), TotalValidatorShares: sdk.ZeroDec(), @@ -18,6 +22,7 @@ func NewAllianceAsset(denom string, rewardWeight sdk.Dec, takeRate sdk.Dec, rewa RewardChangeRate: sdk.OneDec(), RewardChangeInterval: time.Duration(0), LastRewardChangeTime: rewardStartTime, + IsInitialized: false, } } @@ -36,7 +41,7 @@ func ConvertNewShareToDecToken(totalTokens sdk.Dec, totalShares sdk.Dec, shares } func GetDelegationTokens(del Delegation, val AllianceValidator, asset AllianceAsset) sdk.Coin { - valTokens := val.TotalDecTokensWithAsset(asset) + valTokens := val.TotalTokensWithAsset(asset) totalDelegationShares := val.TotalDelegationSharesWithDenom(asset.Denom) delTokens := ConvertNewShareToDecToken(valTokens, totalDelegationShares, del.Shares) @@ -47,7 +52,7 @@ func GetDelegationTokens(del Delegation, val AllianceValidator, asset AllianceAs } func GetDelegationTokensWithShares(delegatorShares sdk.Dec, val AllianceValidator, asset AllianceAsset) sdk.Coin { - valTokens := val.TotalDecTokensWithAsset(asset) + valTokens := val.TotalTokensWithAsset(asset) totalDelegationShares := val.TotalDelegationSharesWithDenom(asset.Denom) delTokens := ConvertNewShareToDecToken(valTokens, totalDelegationShares, delegatorShares) @@ -69,3 +74,8 @@ func GetDelegationSharesFromTokens(val AllianceValidator, asset AllianceAsset, t func (a AllianceAsset) HasPositiveDecay() bool { return a.RewardChangeInterval > 0 && a.RewardChangeRate.IsPositive() } + +// RewardsStarted helper function to check if rewards for the alliance has started +func (a AllianceAsset) RewardsStarted(blockTime time.Time) bool { + return blockTime.After(a.RewardStartTime) || blockTime.Equal(a.RewardStartTime) +} diff --git a/x/alliance/types/codec.go b/x/alliance/types/codec.go index 0fc8c4a4..87fb4475 100644 --- a/x/alliance/types/codec.go +++ b/x/alliance/types/codec.go @@ -3,8 +3,10 @@ package types import ( "github.com/cosmos/cosmos-sdk/codec" "github.com/cosmos/cosmos-sdk/codec/types" + cryptocodec "github.com/cosmos/cosmos-sdk/crypto/codec" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/msgservice" + authzcodec "github.com/cosmos/cosmos-sdk/x/authz/codec" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" ) @@ -34,3 +36,18 @@ func RegisterInterfaces(registry types.InterfaceRegistry) { ) msgservice.RegisterMsgServiceDesc(registry, &_Msg_serviceDesc) } + +var ( + amino = codec.NewLegacyAmino() + ModuleCdc = codec.NewAminoCodec(amino) +) + +func init() { + RegisterLegacyAminoCodec(amino) + cryptocodec.RegisterCrypto(amino) + sdk.RegisterLegacyAminoCodec(amino) + + // Register all Amino interfaces and concrete types on the authz Amino codec so that this can later be + // used to properly serialize MsgGrant and MsgExec instances + RegisterLegacyAminoCodec(authzcodec.Amino) +} diff --git a/x/alliance/types/delegations.pb.go b/x/alliance/types/delegations.pb.go index e84e29b1..bb4ec6a2 100644 --- a/x/alliance/types/delegations.pb.go +++ b/x/alliance/types/delegations.pb.go @@ -9,7 +9,7 @@ import ( github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types "github.com/cosmos/cosmos-sdk/types" _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/gogo/protobuf/proto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -265,58 +265,58 @@ func (m *AllianceValidatorInfo) XXX_DiscardUnknown() { var xxx_messageInfo_AllianceValidatorInfo proto.InternalMessageInfo func init() { - proto.RegisterType((*Delegation)(nil), "alliance.alliance.Delegation") - proto.RegisterType((*Redelegation)(nil), "alliance.alliance.Redelegation") - proto.RegisterType((*QueuedRedelegation)(nil), "alliance.alliance.QueuedRedelegation") - proto.RegisterType((*Undelegation)(nil), "alliance.alliance.Undelegation") - proto.RegisterType((*QueuedUndelegation)(nil), "alliance.alliance.QueuedUndelegation") - proto.RegisterType((*AllianceValidatorInfo)(nil), "alliance.alliance.AllianceValidatorInfo") + proto.RegisterType((*Delegation)(nil), "alliance.Delegation") + proto.RegisterType((*Redelegation)(nil), "alliance.Redelegation") + proto.RegisterType((*QueuedRedelegation)(nil), "alliance.QueuedRedelegation") + proto.RegisterType((*Undelegation)(nil), "alliance.Undelegation") + proto.RegisterType((*QueuedUndelegation)(nil), "alliance.QueuedUndelegation") + proto.RegisterType((*AllianceValidatorInfo)(nil), "alliance.AllianceValidatorInfo") } func init() { proto.RegisterFile("alliance/delegations.proto", fileDescriptor_8303368cab785f76) } var fileDescriptor_8303368cab785f76 = []byte{ - // 626 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x94, 0x3f, 0x6f, 0xd3, 0x40, - 0x18, 0xc6, 0xed, 0xb8, 0x7f, 0xe0, 0x5a, 0xfe, 0xd4, 0x8d, 0x91, 0x1b, 0x21, 0x27, 0xea, 0x80, - 0xb2, 0xc4, 0xa6, 0x65, 0x40, 0x45, 0x2c, 0x4d, 0x83, 0x54, 0x50, 0x19, 0x70, 0x01, 0x41, 0x17, - 0xeb, 0xec, 0x3b, 0x1c, 0x0b, 0xdb, 0x17, 0xdd, 0x5d, 0x0a, 0xf9, 0x06, 0x8c, 0x8c, 0x8c, 0x9d, - 0xf8, 0x04, 0x15, 0x9f, 0xa1, 0x63, 0xd5, 0x09, 0x31, 0x54, 0x90, 0x2c, 0x7c, 0x0c, 0x64, 0xfb, - 0xec, 0x38, 0x6d, 0xa4, 0xb6, 0x82, 0x81, 0x29, 0x97, 0x7b, 0xde, 0xf7, 0x77, 0xf6, 0xf3, 0xf8, - 0x5e, 0x50, 0x83, 0x61, 0x18, 0xc0, 0xd8, 0xc3, 0x16, 0xc2, 0x21, 0xf6, 0x21, 0x0f, 0x48, 0xcc, - 0xcc, 0x1e, 0x25, 0x9c, 0xa8, 0x4b, 0xb9, 0x66, 0xe6, 0x8b, 0x5a, 0xd5, 0x27, 0x3e, 0x49, 0x55, - 0x2b, 0x59, 0x65, 0x85, 0x35, 0xc3, 0x23, 0x2c, 0x22, 0xcc, 0x72, 0x21, 0xc3, 0xd6, 0xfe, 0x9a, - 0x8b, 0x39, 0x5c, 0xb3, 0x3c, 0x12, 0xc4, 0x42, 0x5f, 0xc9, 0x74, 0x27, 0x6b, 0xcc, 0xfe, 0x08, - 0x49, 0x2b, 0xce, 0xef, 0x41, 0x0a, 0x23, 0xb1, 0xbd, 0xfa, 0x45, 0x01, 0xa0, 0x53, 0x3c, 0x90, - 0xfa, 0x04, 0x2c, 0x89, 0xc7, 0x23, 0xd4, 0x81, 0x08, 0x51, 0xcc, 0x98, 0x2e, 0x37, 0xe4, 0xe6, - 0xf5, 0xb6, 0x7e, 0x72, 0xd8, 0xaa, 0x0a, 0xe4, 0x66, 0xa6, 0xec, 0x72, 0x1a, 0xc4, 0xbe, 0x7d, - 0xbb, 0x68, 0x11, 0xfb, 0x09, 0x66, 0x1f, 0x86, 0x01, 0x9a, 0xc0, 0x54, 0x2e, 0xc2, 0x14, 0x2d, - 0x39, 0xa6, 0x0a, 0x66, 0x11, 0x8e, 0x49, 0xa4, 0x2b, 0x49, 0xab, 0x9d, 0xfd, 0x51, 0x5f, 0x82, - 0x39, 0xd6, 0x85, 0x14, 0x33, 0x7d, 0x26, 0x25, 0x3e, 0x3e, 0x3a, 0xad, 0x4b, 0x3f, 0x4e, 0xeb, - 0xf7, 0xfc, 0x80, 0x77, 0xfb, 0xae, 0xe9, 0x91, 0x48, 0xbc, 0xba, 0xf8, 0x69, 0x31, 0xf4, 0xde, - 0xe2, 0x83, 0x1e, 0x66, 0x66, 0x07, 0x7b, 0x27, 0x87, 0x2d, 0x20, 0xce, 0xef, 0x60, 0xcf, 0x16, - 0x2c, 0xf5, 0x39, 0xb8, 0x49, 0xf1, 0x07, 0x48, 0x91, 0xd3, 0x0d, 0x18, 0x27, 0x74, 0xa0, 0xcf, - 0x36, 0x94, 0xe6, 0xc2, 0x7a, 0xc3, 0x3c, 0x17, 0x8e, 0x69, 0xa7, 0x85, 0xdb, 0x59, 0x5d, 0x7b, - 0x26, 0x39, 0xdf, 0xbe, 0x41, 0xcb, 0x9b, 0xea, 0x43, 0xa0, 0x87, 0x90, 0x71, 0x47, 0x30, 0xbd, - 0x10, 0x06, 0x91, 0xd3, 0xc5, 0x81, 0xdf, 0xe5, 0xfa, 0x5c, 0x43, 0x6e, 0xce, 0xd8, 0x5a, 0xa2, - 0x67, 0xa4, 0xad, 0x44, 0xdd, 0x4e, 0xc5, 0x47, 0xd7, 0x3e, 0x1d, 0xd4, 0xa5, 0xdf, 0x07, 0x75, - 0x69, 0xf5, 0x5b, 0x05, 0x2c, 0xda, 0x18, 0xfd, 0xf3, 0x70, 0x76, 0x80, 0xc6, 0xa8, 0xe7, 0x5c, - 0x3d, 0xa0, 0x65, 0x46, 0xbd, 0xd7, 0x67, 0x33, 0xda, 0x01, 0x1a, 0x62, 0x7c, 0x0a, 0x4d, 0xb9, - 0x88, 0x86, 0x18, 0x3f, 0x47, 0xdb, 0x00, 0xf3, 0x2e, 0x0c, 0x13, 0x93, 0xd3, 0x70, 0x17, 0xd6, - 0x57, 0x4c, 0xd1, 0x9c, 0x7c, 0xf2, 0xa6, 0xf8, 0xe4, 0xcd, 0x2d, 0x12, 0xc4, 0xc2, 0xf7, 0xbc, - 0xbe, 0x64, 0xdc, 0x5b, 0xa0, 0xbe, 0xe8, 0xe3, 0x3e, 0x46, 0x13, 0xee, 0x6d, 0x80, 0x79, 0x1c, - 0x73, 0x1a, 0xe0, 0xc4, 0xb3, 0x24, 0xd9, 0xfa, 0xd4, 0x64, 0xc7, 0x1d, 0x76, 0x5e, 0x5f, 0x42, - 0xff, 0x92, 0xc1, 0xe2, 0xab, 0x18, 0xfd, 0xaf, 0x17, 0xa6, 0x64, 0x9f, 0xf2, 0xf7, 0xf6, 0x4d, - 0xbc, 0xe8, 0xa5, 0xec, 0x2b, 0x77, 0x4c, 0xb3, 0xef, 0x6b, 0x05, 0x68, 0x9b, 0xa2, 0xb8, 0xc8, - 0xfe, 0x69, 0xfc, 0x8e, 0xa8, 0x7b, 0x40, 0xf3, 0x43, 0xe2, 0xc2, 0xd0, 0x39, 0x73, 0x0b, 0xe5, - 0x2b, 0xdd, 0xc2, 0xe5, 0x0c, 0x32, 0x21, 0xa9, 0x6f, 0xc0, 0x1d, 0x4e, 0x38, 0x0c, 0x9d, 0x71, - 0x52, 0x62, 0x80, 0x54, 0x52, 0xf8, 0xdd, 0xa9, 0x26, 0x75, 0xb0, 0x57, 0xf2, 0xa9, 0x9a, 0x12, - 0x3a, 0x39, 0x60, 0x37, 0x1f, 0x1a, 0xe3, 0x0c, 0x72, 0xa6, 0x72, 0x69, 0xe6, 0xad, 0xa2, 0x37, - 0xc3, 0x8d, 0x8d, 0x6a, 0x3f, 0x3b, 0x1a, 0x1a, 0xf2, 0xf1, 0xd0, 0x90, 0x7f, 0x0e, 0x0d, 0xf9, - 0xf3, 0xc8, 0x90, 0x8e, 0x47, 0x86, 0xf4, 0x7d, 0x64, 0x48, 0x7b, 0xf7, 0x4b, 0x53, 0x8e, 0x63, - 0x4a, 0x61, 0x2b, 0x22, 0x31, 0x1e, 0x58, 0xc5, 0x78, 0xff, 0x38, 0x5e, 0xa6, 0x33, 0xcf, 0x9d, - 0x4b, 0x27, 0xfd, 0x83, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xb6, 0x8b, 0x33, 0xd9, 0x82, 0x06, - 0x00, 0x00, + // 625 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x94, 0x4f, 0x6f, 0x94, 0x4e, + 0x18, 0xc7, 0x61, 0xe9, 0xbf, 0xdf, 0xb4, 0x3f, 0xff, 0xd0, 0xa5, 0xd2, 0xc6, 0xb0, 0x4d, 0x0f, + 0x66, 0x2f, 0x0b, 0x6d, 0x3d, 0x18, 0x8d, 0x97, 0x6e, 0x31, 0xa9, 0xa6, 0x26, 0x96, 0xaa, 0x31, + 0x5e, 0xc8, 0xc0, 0x8c, 0x2c, 0x11, 0x98, 0xcd, 0xcc, 0x6c, 0x75, 0xdf, 0x81, 0x37, 0x7d, 0x03, + 0x26, 0x7d, 0x11, 0x8d, 0xaf, 0xa1, 0xc7, 0xa6, 0x27, 0xe3, 0xa1, 0xd1, 0xdd, 0x8b, 0x2f, 0xc3, + 0x00, 0x03, 0xcb, 0xd6, 0x8d, 0xad, 0xd1, 0x83, 0x27, 0x60, 0xbe, 0xcf, 0xf3, 0x19, 0xf8, 0x7e, + 0x99, 0x07, 0xac, 0xc0, 0x28, 0x0a, 0x61, 0xe2, 0x63, 0x0b, 0xe1, 0x08, 0x07, 0x90, 0x87, 0x24, + 0x61, 0x66, 0x97, 0x12, 0x4e, 0xd4, 0xb9, 0x42, 0x5b, 0xa9, 0x07, 0x24, 0x20, 0xd9, 0xa2, 0x95, + 0xde, 0xe5, 0xfa, 0x8a, 0xe1, 0x13, 0x16, 0x13, 0x66, 0x79, 0x90, 0x61, 0xeb, 0x60, 0xc3, 0xc3, + 0x1c, 0x6e, 0x58, 0x3e, 0x09, 0x13, 0xa1, 0x2f, 0xe7, 0xba, 0x9b, 0x37, 0xe6, 0x0f, 0x42, 0xd2, + 0xca, 0x6d, 0xbb, 0x90, 0xc2, 0x58, 0x2c, 0xaf, 0xbd, 0x57, 0x00, 0xb0, 0xcb, 0xf7, 0x50, 0x1f, + 0x80, 0xeb, 0xe2, 0xad, 0x08, 0x75, 0x21, 0x42, 0x14, 0x33, 0xa6, 0xcb, 0xab, 0x72, 0xf3, 0xbf, + 0xb6, 0x7e, 0x7a, 0xd4, 0xaa, 0x0b, 0xe4, 0x56, 0xae, 0xec, 0x73, 0x1a, 0x26, 0x81, 0x73, 0xad, + 0x6c, 0x11, 0xeb, 0x29, 0xe6, 0x00, 0x46, 0x21, 0x1a, 0xc3, 0xd4, 0x2e, 0xc2, 0x94, 0x2d, 0x05, + 0xa6, 0x0e, 0xa6, 0x11, 0x4e, 0x48, 0xac, 0x2b, 0x69, 0xab, 0x93, 0x3f, 0xa8, 0x4f, 0xc1, 0x0c, + 0xeb, 0x40, 0x8a, 0x99, 0x3e, 0x95, 0x11, 0xef, 0x1f, 0x9f, 0x35, 0xa4, 0x2f, 0x67, 0x8d, 0x5b, + 0x41, 0xc8, 0x3b, 0x3d, 0xcf, 0xf4, 0x49, 0x2c, 0x3e, 0x5d, 0x5c, 0x5a, 0x0c, 0xbd, 0xb6, 0x78, + 0xbf, 0x8b, 0x99, 0x69, 0x63, 0xff, 0xf4, 0xa8, 0x05, 0xc4, 0xfe, 0x36, 0xf6, 0x1d, 0xc1, 0x52, + 0x6d, 0x70, 0x85, 0xe2, 0x37, 0x90, 0x22, 0xb7, 0x13, 0x32, 0x4e, 0x68, 0x5f, 0x9f, 0x5e, 0x55, + 0x9a, 0xf3, 0x9b, 0x37, 0xcc, 0xc2, 0x38, 0xd3, 0xc9, 0xf4, 0x9d, 0x5c, 0x6e, 0x4f, 0xa5, 0xdb, + 0x3a, 0xff, 0xd3, 0xea, 0xa2, 0x7a, 0x07, 0xe8, 0x11, 0x64, 0xdc, 0x15, 0x28, 0x3f, 0x82, 0x61, + 0xec, 0x76, 0x70, 0x18, 0x74, 0xb8, 0x3e, 0xb3, 0x2a, 0x37, 0xa7, 0x1c, 0x2d, 0xd5, 0x73, 0xd2, + 0x76, 0xaa, 0xee, 0x64, 0xe2, 0xbd, 0xb9, 0x77, 0x87, 0x0d, 0xe9, 0xfb, 0x61, 0x43, 0x5a, 0xfb, + 0x54, 0x03, 0x0b, 0x0e, 0x46, 0x7f, 0x3d, 0x93, 0x5d, 0xa0, 0x31, 0xea, 0xbb, 0xbf, 0x9f, 0xcb, + 0x22, 0xa3, 0xfe, 0xf3, 0xf3, 0xd1, 0xec, 0x02, 0x0d, 0x31, 0x3e, 0x81, 0xa6, 0x5c, 0x44, 0x43, + 0x8c, 0xff, 0x44, 0xbb, 0x0b, 0x66, 0x3d, 0x18, 0xa5, 0x26, 0x67, 0x99, 0xce, 0x6f, 0x2e, 0x9b, + 0xa2, 0x39, 0xfd, 0xd3, 0x4d, 0xf1, 0xa7, 0x9b, 0xdb, 0x24, 0x4c, 0x84, 0xef, 0x45, 0x7d, 0xc5, + 0xb8, 0x27, 0x40, 0xdd, 0xeb, 0xe1, 0x1e, 0x46, 0x63, 0xee, 0xad, 0x83, 0x59, 0x9c, 0x70, 0x1a, + 0xe2, 0xd4, 0xb3, 0x34, 0xd0, 0xa5, 0x6a, 0xa0, 0xa3, 0x42, 0xa7, 0x28, 0xab, 0x10, 0xbf, 0xc9, + 0x60, 0xe1, 0x59, 0x82, 0xfe, 0xd5, 0xe3, 0x51, 0x71, 0x4d, 0xf9, 0x73, 0xd7, 0xc6, 0x3e, 0xf4, + 0x57, 0xae, 0x55, 0x0b, 0x27, 0xb9, 0xf6, 0xb1, 0x06, 0xb4, 0x2d, 0x51, 0x5c, 0x26, 0xfd, 0x30, + 0x79, 0x45, 0xd4, 0x3d, 0xa0, 0x05, 0x11, 0xf1, 0x60, 0xe4, 0x9e, 0x3b, 0x6a, 0xf2, 0x65, 0x8e, + 0xda, 0x62, 0xde, 0x3b, 0x26, 0xa9, 0x2f, 0xc0, 0x12, 0x27, 0x1c, 0x46, 0xee, 0x28, 0x17, 0x31, + 0x1c, 0x6a, 0x19, 0xf3, 0xe6, 0x44, 0x4b, 0x6c, 0xec, 0x57, 0x5c, 0xa9, 0x67, 0x04, 0xbb, 0x00, + 0xec, 0xe7, 0x03, 0xe1, 0x31, 0x18, 0x39, 0x5e, 0x30, 0x95, 0x4b, 0x33, 0xaf, 0x96, 0xbd, 0x39, + 0x6e, 0xe4, 0x4f, 0xfb, 0xd1, 0xf1, 0xc0, 0x90, 0x4f, 0x06, 0x86, 0xfc, 0x75, 0x60, 0xc8, 0x1f, + 0x86, 0x86, 0x74, 0x32, 0x34, 0xa4, 0xcf, 0x43, 0x43, 0x7a, 0xb9, 0x5e, 0x99, 0x60, 0x1c, 0x53, + 0x0a, 0x5b, 0x31, 0x49, 0x70, 0xdf, 0x2a, 0x47, 0xf7, 0xdb, 0xd1, 0x6d, 0x36, 0xcf, 0xbc, 0x99, + 0x6c, 0x8a, 0xdf, 0xfe, 0x11, 0x00, 0x00, 0xff, 0xff, 0x6f, 0xc2, 0x78, 0xd4, 0x55, 0x06, 0x00, + 0x00, } func (m *Delegation) Marshal() (dAtA []byte, err error) { diff --git a/x/alliance/types/errors.go b/x/alliance/types/errors.go index c892e242..5419b675 100644 --- a/x/alliance/types/errors.go +++ b/x/alliance/types/errors.go @@ -9,9 +9,12 @@ var ( ErrEmptyValidatorAddr = sdkerrors.Register(ModuleName, 10, "empty validator address") ErrValidatorNotFound = sdkerrors.Register(ModuleName, 11, "validator not found") + ErrDelegationNotFound = sdkerrors.Register(ModuleName, 12, "delegation not found") ErrZeroDelegations = sdkerrors.Register(ModuleName, 20, "there are no delegations yet") ErrInsufficientTokens = sdkerrors.Register(ModuleName, 21, "insufficient tokens") ErrUnknownAsset = sdkerrors.Register(ModuleName, 30, "alliance asset is not whitelisted") + + ErrRewardWeightOutOfBound = sdkerrors.Register(ModuleName, 40, "alliance asset must be between reward_weight_range") ) diff --git a/x/alliance/types/events.go b/x/alliance/types/events.go deleted file mode 100644 index 07938bd7..00000000 --- a/x/alliance/types/events.go +++ /dev/null @@ -1,14 +0,0 @@ -package types - -const ( - EventTypeDelegate = "alliance_delegate" - EventTypeUndelegate = "alliance_undelegate" - EventTypeRedelegate = "alliance_redelegate" - EventTypeClaimDelegationRewards = "alliance_claim_delegation_rewards" - - AttributeKeyValidator = "validator" - AttributeKeySrcValidator = "source_validator" - AttributeKeyDstValidator = "destination_validator" - AttributeKeyCompletionTime = "completion_time" - AttributeKeyNewShares = "new_shares" -) diff --git a/x/alliance/types/events.pb.go b/x/alliance/types/events.pb.go new file mode 100644 index 00000000..b1cfec54 --- /dev/null +++ b/x/alliance/types/events.pb.go @@ -0,0 +1,1451 @@ +// Code generated by protoc-gen-gogo. DO NOT EDIT. +// source: alliance/events.proto + +package types + +import ( + fmt "fmt" + _ "github.com/cosmos/cosmos-proto" + _ "github.com/cosmos/cosmos-sdk/types" + github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" + github_com_cosmos_gogoproto_types "github.com/cosmos/gogoproto/types" + _ "google.golang.org/protobuf/types/known/timestamppb" + io "io" + math "math" + math_bits "math/bits" + time "time" +) + +// Reference imports to suppress errors if they are not otherwise used. +var _ = proto.Marshal +var _ = fmt.Errorf +var _ = math.Inf +var _ = time.Kitchen + +// This is a compile-time assertion to ensure that this generated file +// is compatible with the proto package it is being compiled against. +// A compilation error at this line likely means your copy of the +// proto package needs to be updated. +const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package + +type DelegateAllianceEvent struct { + AllianceSender string `protobuf:"bytes,1,opt,name=allianceSender,proto3" json:"allianceSender,omitempty"` + Validator string `protobuf:"bytes,2,opt,name=validator,proto3" json:"validator,omitempty"` + Coin github_com_cosmos_cosmos_sdk_types.Coin `protobuf:"bytes,3,opt,name=coin,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Coin" json:"coin"` + NewShares github_com_cosmos_cosmos_sdk_types.Dec `protobuf:"bytes,4,opt,name=newShares,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Dec" json:"newShares"` +} + +func (m *DelegateAllianceEvent) Reset() { *m = DelegateAllianceEvent{} } +func (m *DelegateAllianceEvent) String() string { return proto.CompactTextString(m) } +func (*DelegateAllianceEvent) ProtoMessage() {} +func (*DelegateAllianceEvent) Descriptor() ([]byte, []int) { + return fileDescriptor_15eecd10e5e40bd4, []int{0} +} +func (m *DelegateAllianceEvent) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *DelegateAllianceEvent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_DelegateAllianceEvent.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *DelegateAllianceEvent) XXX_Merge(src proto.Message) { + xxx_messageInfo_DelegateAllianceEvent.Merge(m, src) +} +func (m *DelegateAllianceEvent) XXX_Size() int { + return m.Size() +} +func (m *DelegateAllianceEvent) XXX_DiscardUnknown() { + xxx_messageInfo_DelegateAllianceEvent.DiscardUnknown(m) +} + +var xxx_messageInfo_DelegateAllianceEvent proto.InternalMessageInfo + +func (m *DelegateAllianceEvent) GetAllianceSender() string { + if m != nil { + return m.AllianceSender + } + return "" +} + +func (m *DelegateAllianceEvent) GetValidator() string { + if m != nil { + return m.Validator + } + return "" +} + +type UndelegateAllianceEvent struct { + AllianceSender string `protobuf:"bytes,1,opt,name=allianceSender,proto3" json:"allianceSender,omitempty"` + Validator string `protobuf:"bytes,2,opt,name=validator,proto3" json:"validator,omitempty"` + Coin github_com_cosmos_cosmos_sdk_types.Coin `protobuf:"bytes,3,opt,name=coin,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Coin" json:"coin"` + CompletionTime time.Time `protobuf:"bytes,4,opt,name=completionTime,proto3,stdtime" json:"completionTime"` +} + +func (m *UndelegateAllianceEvent) Reset() { *m = UndelegateAllianceEvent{} } +func (m *UndelegateAllianceEvent) String() string { return proto.CompactTextString(m) } +func (*UndelegateAllianceEvent) ProtoMessage() {} +func (*UndelegateAllianceEvent) Descriptor() ([]byte, []int) { + return fileDescriptor_15eecd10e5e40bd4, []int{1} +} +func (m *UndelegateAllianceEvent) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *UndelegateAllianceEvent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_UndelegateAllianceEvent.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *UndelegateAllianceEvent) XXX_Merge(src proto.Message) { + xxx_messageInfo_UndelegateAllianceEvent.Merge(m, src) +} +func (m *UndelegateAllianceEvent) XXX_Size() int { + return m.Size() +} +func (m *UndelegateAllianceEvent) XXX_DiscardUnknown() { + xxx_messageInfo_UndelegateAllianceEvent.DiscardUnknown(m) +} + +var xxx_messageInfo_UndelegateAllianceEvent proto.InternalMessageInfo + +func (m *UndelegateAllianceEvent) GetAllianceSender() string { + if m != nil { + return m.AllianceSender + } + return "" +} + +func (m *UndelegateAllianceEvent) GetValidator() string { + if m != nil { + return m.Validator + } + return "" +} + +func (m *UndelegateAllianceEvent) GetCompletionTime() time.Time { + if m != nil { + return m.CompletionTime + } + return time.Time{} +} + +type RedelegateAllianceEvent struct { + AllianceSender string `protobuf:"bytes,1,opt,name=allianceSender,proto3" json:"allianceSender,omitempty"` + SourceValidator string `protobuf:"bytes,2,opt,name=sourceValidator,proto3" json:"sourceValidator,omitempty"` + DestinationValidator string `protobuf:"bytes,3,opt,name=destinationValidator,proto3" json:"destinationValidator,omitempty"` + Coin github_com_cosmos_cosmos_sdk_types.Coin `protobuf:"bytes,4,opt,name=coin,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Coin" json:"coin"` + CompletionTime time.Time `protobuf:"bytes,5,opt,name=completionTime,proto3,stdtime" json:"completionTime"` +} + +func (m *RedelegateAllianceEvent) Reset() { *m = RedelegateAllianceEvent{} } +func (m *RedelegateAllianceEvent) String() string { return proto.CompactTextString(m) } +func (*RedelegateAllianceEvent) ProtoMessage() {} +func (*RedelegateAllianceEvent) Descriptor() ([]byte, []int) { + return fileDescriptor_15eecd10e5e40bd4, []int{2} +} +func (m *RedelegateAllianceEvent) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *RedelegateAllianceEvent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_RedelegateAllianceEvent.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *RedelegateAllianceEvent) XXX_Merge(src proto.Message) { + xxx_messageInfo_RedelegateAllianceEvent.Merge(m, src) +} +func (m *RedelegateAllianceEvent) XXX_Size() int { + return m.Size() +} +func (m *RedelegateAllianceEvent) XXX_DiscardUnknown() { + xxx_messageInfo_RedelegateAllianceEvent.DiscardUnknown(m) +} + +var xxx_messageInfo_RedelegateAllianceEvent proto.InternalMessageInfo + +func (m *RedelegateAllianceEvent) GetAllianceSender() string { + if m != nil { + return m.AllianceSender + } + return "" +} + +func (m *RedelegateAllianceEvent) GetSourceValidator() string { + if m != nil { + return m.SourceValidator + } + return "" +} + +func (m *RedelegateAllianceEvent) GetDestinationValidator() string { + if m != nil { + return m.DestinationValidator + } + return "" +} + +func (m *RedelegateAllianceEvent) GetCompletionTime() time.Time { + if m != nil { + return m.CompletionTime + } + return time.Time{} +} + +type ClaimAllianceRewardsEvent struct { + AllianceSender string `protobuf:"bytes,1,opt,name=allianceSender,proto3" json:"allianceSender,omitempty"` + Validator string `protobuf:"bytes,2,opt,name=validator,proto3" json:"validator,omitempty"` + Coins []github_com_cosmos_cosmos_sdk_types.Coin `protobuf:"bytes,3,rep,name=coins,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Coin" json:"coins"` +} + +func (m *ClaimAllianceRewardsEvent) Reset() { *m = ClaimAllianceRewardsEvent{} } +func (m *ClaimAllianceRewardsEvent) String() string { return proto.CompactTextString(m) } +func (*ClaimAllianceRewardsEvent) ProtoMessage() {} +func (*ClaimAllianceRewardsEvent) Descriptor() ([]byte, []int) { + return fileDescriptor_15eecd10e5e40bd4, []int{3} +} +func (m *ClaimAllianceRewardsEvent) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *ClaimAllianceRewardsEvent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_ClaimAllianceRewardsEvent.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *ClaimAllianceRewardsEvent) XXX_Merge(src proto.Message) { + xxx_messageInfo_ClaimAllianceRewardsEvent.Merge(m, src) +} +func (m *ClaimAllianceRewardsEvent) XXX_Size() int { + return m.Size() +} +func (m *ClaimAllianceRewardsEvent) XXX_DiscardUnknown() { + xxx_messageInfo_ClaimAllianceRewardsEvent.DiscardUnknown(m) +} + +var xxx_messageInfo_ClaimAllianceRewardsEvent proto.InternalMessageInfo + +func (m *ClaimAllianceRewardsEvent) GetAllianceSender() string { + if m != nil { + return m.AllianceSender + } + return "" +} + +func (m *ClaimAllianceRewardsEvent) GetValidator() string { + if m != nil { + return m.Validator + } + return "" +} + +func init() { + proto.RegisterType((*DelegateAllianceEvent)(nil), "alliance.DelegateAllianceEvent") + proto.RegisterType((*UndelegateAllianceEvent)(nil), "alliance.UndelegateAllianceEvent") + proto.RegisterType((*RedelegateAllianceEvent)(nil), "alliance.RedelegateAllianceEvent") + proto.RegisterType((*ClaimAllianceRewardsEvent)(nil), "alliance.ClaimAllianceRewardsEvent") +} + +func init() { proto.RegisterFile("alliance/events.proto", fileDescriptor_15eecd10e5e40bd4) } + +var fileDescriptor_15eecd10e5e40bd4 = []byte{ + // 505 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x54, 0x3f, 0x6f, 0xd3, 0x40, + 0x14, 0x8f, 0xe3, 0x14, 0x35, 0x57, 0xa9, 0x48, 0x56, 0xaa, 0x3a, 0x19, 0x9c, 0x28, 0x03, 0x74, + 0x89, 0x8f, 0x16, 0x89, 0x89, 0x81, 0xba, 0x61, 0x41, 0x9d, 0x9c, 0xc2, 0xd0, 0x01, 0x38, 0xdb, + 0x0f, 0xf7, 0x84, 0x7d, 0x17, 0xdd, 0x5d, 0x52, 0xfa, 0x2d, 0xba, 0xf3, 0x35, 0xfa, 0x05, 0xd8, + 0xba, 0x20, 0x55, 0x9d, 0x10, 0x43, 0x41, 0xc9, 0x87, 0x60, 0x45, 0x3e, 0x9f, 0x1b, 0x14, 0x21, + 0xb5, 0x12, 0xff, 0x06, 0x26, 0xdf, 0xdd, 0x7b, 0xbf, 0xdf, 0xfb, 0xbd, 0xdf, 0x7b, 0x32, 0xda, + 0x20, 0x59, 0x46, 0x09, 0x8b, 0x01, 0xc3, 0x14, 0x98, 0x92, 0xfe, 0x58, 0x70, 0xc5, 0x9d, 0xd5, + 0xea, 0xb9, 0xd3, 0x4a, 0x79, 0xca, 0xf5, 0x23, 0x2e, 0x4e, 0x65, 0xbc, 0xe3, 0xc5, 0x5c, 0xe6, + 0x5c, 0xe2, 0x88, 0x48, 0xc0, 0xd3, 0xed, 0x08, 0x14, 0xd9, 0xc6, 0x31, 0xa7, 0xcc, 0xc4, 0xdb, + 0x65, 0xfc, 0x55, 0x09, 0x2c, 0x2f, 0x26, 0xd4, 0x4d, 0x39, 0x4f, 0x33, 0xc0, 0xfa, 0x16, 0x4d, + 0xde, 0x60, 0x45, 0x73, 0x90, 0x8a, 0xe4, 0xe3, 0x32, 0xa1, 0xff, 0xb1, 0x8e, 0x36, 0x86, 0x90, + 0x41, 0x4a, 0x14, 0xec, 0x1a, 0x19, 0x4f, 0x0b, 0x71, 0xce, 0x13, 0xb4, 0x5e, 0xe9, 0x1a, 0x01, + 0x4b, 0x40, 0xb8, 0x56, 0xcf, 0xda, 0x6a, 0x06, 0xee, 0xe5, 0xd9, 0xa0, 0x65, 0x8a, 0xec, 0x26, + 0x89, 0x00, 0x29, 0x47, 0x4a, 0x50, 0x96, 0x86, 0x4b, 0xf9, 0xce, 0x23, 0xd4, 0x9c, 0x92, 0x8c, + 0x26, 0x44, 0x71, 0xe1, 0xd6, 0x6f, 0x00, 0x2f, 0x52, 0x9d, 0x97, 0xa8, 0x51, 0x74, 0xe7, 0xda, + 0x3d, 0x6b, 0x6b, 0x6d, 0xa7, 0xed, 0x9b, 0xfc, 0xa2, 0x7d, 0xdf, 0xb4, 0xef, 0xef, 0x71, 0xca, + 0x02, 0x7c, 0x7e, 0xd5, 0xad, 0x7d, 0xbe, 0xea, 0xde, 0x4f, 0xa9, 0x3a, 0x9a, 0x44, 0x7e, 0xcc, + 0x73, 0xd3, 0xbe, 0xf9, 0x0c, 0x64, 0xf2, 0x16, 0xab, 0x93, 0x31, 0x48, 0x0d, 0x08, 0x35, 0xaf, + 0x73, 0x88, 0x9a, 0x0c, 0x8e, 0x47, 0x47, 0x44, 0x80, 0x74, 0x1b, 0x5a, 0xd7, 0x63, 0xc3, 0x74, + 0xef, 0x16, 0x4c, 0x43, 0x88, 0x2f, 0xcf, 0x06, 0xc8, 0xa8, 0x1a, 0x42, 0x1c, 0x2e, 0xe8, 0xfa, + 0x1f, 0xea, 0x68, 0xf3, 0x39, 0x4b, 0xfe, 0x33, 0x47, 0xf7, 0xd1, 0x7a, 0xcc, 0xf3, 0x71, 0x06, + 0x8a, 0x72, 0x76, 0x40, 0x73, 0xd0, 0xb6, 0xae, 0xed, 0x74, 0xfc, 0x72, 0xff, 0xfc, 0x6a, 0xff, + 0xfc, 0x83, 0x6a, 0xff, 0x82, 0xd5, 0xa2, 0xd4, 0xe9, 0x97, 0xae, 0x15, 0x2e, 0x61, 0xfb, 0xef, + 0x6d, 0xb4, 0x19, 0xc2, 0x9f, 0xf2, 0x30, 0x40, 0x77, 0x25, 0x9f, 0x88, 0x18, 0x5e, 0xdc, 0xda, + 0xc9, 0x65, 0x80, 0xb3, 0x8f, 0x5a, 0x09, 0x48, 0x45, 0x19, 0x29, 0x44, 0x2f, 0x88, 0xec, 0x1b, + 0x88, 0x7e, 0x8a, 0xba, 0x9e, 0x4e, 0xe3, 0xaf, 0x4d, 0x67, 0xe5, 0x17, 0xa6, 0xf3, 0xcd, 0x42, + 0xed, 0xbd, 0x8c, 0xd0, 0xbc, 0x1a, 0x4c, 0x08, 0xc7, 0x44, 0x24, 0xf2, 0x5f, 0xef, 0xf8, 0x6b, + 0xb4, 0x52, 0x74, 0x2b, 0x5d, 0xbb, 0x67, 0xff, 0x66, 0x1b, 0x4b, 0xe2, 0xe0, 0xd9, 0xf9, 0xcc, + 0xb3, 0x2e, 0x66, 0x9e, 0xf5, 0x75, 0xe6, 0x59, 0xa7, 0x73, 0xaf, 0x76, 0x31, 0xf7, 0x6a, 0x9f, + 0xe6, 0x5e, 0xed, 0xf0, 0xc1, 0x0f, 0x4c, 0x0a, 0x84, 0x20, 0x83, 0x9c, 0x33, 0x38, 0xc1, 0xd7, + 0xff, 0xfb, 0x77, 0x8b, 0xa3, 0xe6, 0x8d, 0xee, 0x68, 0xcf, 0x1f, 0x7e, 0x0f, 0x00, 0x00, 0xff, + 0xff, 0xad, 0x71, 0x3d, 0x4d, 0x13, 0x06, 0x00, 0x00, +} + +func (m *DelegateAllianceEvent) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *DelegateAllianceEvent) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *DelegateAllianceEvent) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + { + size := m.NewShares.Size() + i -= size + if _, err := m.NewShares.MarshalTo(dAtA[i:]); err != nil { + return 0, err + } + i = encodeVarintEvents(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x22 + { + size := m.Coin.Size() + i -= size + if _, err := m.Coin.MarshalTo(dAtA[i:]); err != nil { + return 0, err + } + i = encodeVarintEvents(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + if len(m.Validator) > 0 { + i -= len(m.Validator) + copy(dAtA[i:], m.Validator) + i = encodeVarintEvents(dAtA, i, uint64(len(m.Validator))) + i-- + dAtA[i] = 0x12 + } + if len(m.AllianceSender) > 0 { + i -= len(m.AllianceSender) + copy(dAtA[i:], m.AllianceSender) + i = encodeVarintEvents(dAtA, i, uint64(len(m.AllianceSender))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *UndelegateAllianceEvent) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *UndelegateAllianceEvent) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *UndelegateAllianceEvent) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + n2, err2 := github_com_cosmos_gogoproto_types.StdTimeMarshalTo(m.CompletionTime, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdTime(m.CompletionTime):]) + if err2 != nil { + return 0, err2 + } + i -= n2 + i = encodeVarintEvents(dAtA, i, uint64(n2)) + i-- + dAtA[i] = 0x22 + { + size := m.Coin.Size() + i -= size + if _, err := m.Coin.MarshalTo(dAtA[i:]); err != nil { + return 0, err + } + i = encodeVarintEvents(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + if len(m.Validator) > 0 { + i -= len(m.Validator) + copy(dAtA[i:], m.Validator) + i = encodeVarintEvents(dAtA, i, uint64(len(m.Validator))) + i-- + dAtA[i] = 0x12 + } + if len(m.AllianceSender) > 0 { + i -= len(m.AllianceSender) + copy(dAtA[i:], m.AllianceSender) + i = encodeVarintEvents(dAtA, i, uint64(len(m.AllianceSender))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *RedelegateAllianceEvent) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *RedelegateAllianceEvent) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *RedelegateAllianceEvent) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + n4, err4 := github_com_cosmos_gogoproto_types.StdTimeMarshalTo(m.CompletionTime, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdTime(m.CompletionTime):]) + if err4 != nil { + return 0, err4 + } + i -= n4 + i = encodeVarintEvents(dAtA, i, uint64(n4)) + i-- + dAtA[i] = 0x2a + { + size := m.Coin.Size() + i -= size + if _, err := m.Coin.MarshalTo(dAtA[i:]); err != nil { + return 0, err + } + i = encodeVarintEvents(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x22 + if len(m.DestinationValidator) > 0 { + i -= len(m.DestinationValidator) + copy(dAtA[i:], m.DestinationValidator) + i = encodeVarintEvents(dAtA, i, uint64(len(m.DestinationValidator))) + i-- + dAtA[i] = 0x1a + } + if len(m.SourceValidator) > 0 { + i -= len(m.SourceValidator) + copy(dAtA[i:], m.SourceValidator) + i = encodeVarintEvents(dAtA, i, uint64(len(m.SourceValidator))) + i-- + dAtA[i] = 0x12 + } + if len(m.AllianceSender) > 0 { + i -= len(m.AllianceSender) + copy(dAtA[i:], m.AllianceSender) + i = encodeVarintEvents(dAtA, i, uint64(len(m.AllianceSender))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *ClaimAllianceRewardsEvent) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *ClaimAllianceRewardsEvent) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *ClaimAllianceRewardsEvent) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Coins) > 0 { + for iNdEx := len(m.Coins) - 1; iNdEx >= 0; iNdEx-- { + { + size := m.Coins[iNdEx].Size() + i -= size + if _, err := m.Coins[iNdEx].MarshalTo(dAtA[i:]); err != nil { + return 0, err + } + i = encodeVarintEvents(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + } + } + if len(m.Validator) > 0 { + i -= len(m.Validator) + copy(dAtA[i:], m.Validator) + i = encodeVarintEvents(dAtA, i, uint64(len(m.Validator))) + i-- + dAtA[i] = 0x12 + } + if len(m.AllianceSender) > 0 { + i -= len(m.AllianceSender) + copy(dAtA[i:], m.AllianceSender) + i = encodeVarintEvents(dAtA, i, uint64(len(m.AllianceSender))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func encodeVarintEvents(dAtA []byte, offset int, v uint64) int { + offset -= sovEvents(v) + base := offset + for v >= 1<<7 { + dAtA[offset] = uint8(v&0x7f | 0x80) + v >>= 7 + offset++ + } + dAtA[offset] = uint8(v) + return base +} +func (m *DelegateAllianceEvent) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.AllianceSender) + if l > 0 { + n += 1 + l + sovEvents(uint64(l)) + } + l = len(m.Validator) + if l > 0 { + n += 1 + l + sovEvents(uint64(l)) + } + l = m.Coin.Size() + n += 1 + l + sovEvents(uint64(l)) + l = m.NewShares.Size() + n += 1 + l + sovEvents(uint64(l)) + return n +} + +func (m *UndelegateAllianceEvent) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.AllianceSender) + if l > 0 { + n += 1 + l + sovEvents(uint64(l)) + } + l = len(m.Validator) + if l > 0 { + n += 1 + l + sovEvents(uint64(l)) + } + l = m.Coin.Size() + n += 1 + l + sovEvents(uint64(l)) + l = github_com_cosmos_gogoproto_types.SizeOfStdTime(m.CompletionTime) + n += 1 + l + sovEvents(uint64(l)) + return n +} + +func (m *RedelegateAllianceEvent) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.AllianceSender) + if l > 0 { + n += 1 + l + sovEvents(uint64(l)) + } + l = len(m.SourceValidator) + if l > 0 { + n += 1 + l + sovEvents(uint64(l)) + } + l = len(m.DestinationValidator) + if l > 0 { + n += 1 + l + sovEvents(uint64(l)) + } + l = m.Coin.Size() + n += 1 + l + sovEvents(uint64(l)) + l = github_com_cosmos_gogoproto_types.SizeOfStdTime(m.CompletionTime) + n += 1 + l + sovEvents(uint64(l)) + return n +} + +func (m *ClaimAllianceRewardsEvent) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.AllianceSender) + if l > 0 { + n += 1 + l + sovEvents(uint64(l)) + } + l = len(m.Validator) + if l > 0 { + n += 1 + l + sovEvents(uint64(l)) + } + if len(m.Coins) > 0 { + for _, e := range m.Coins { + l = e.Size() + n += 1 + l + sovEvents(uint64(l)) + } + } + return n +} + +func sovEvents(x uint64) (n int) { + return (math_bits.Len64(x|1) + 6) / 7 +} +func sozEvents(x uint64) (n int) { + return sovEvents(uint64((x << 1) ^ uint64((int64(x) >> 63)))) +} +func (m *DelegateAllianceEvent) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: DelegateAllianceEvent: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: DelegateAllianceEvent: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field AllianceSender", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.AllianceSender = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Validator", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Validator = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Coin", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.Coin.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field NewShares", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.NewShares.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipEvents(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthEvents + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *UndelegateAllianceEvent) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: UndelegateAllianceEvent: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: UndelegateAllianceEvent: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field AllianceSender", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.AllianceSender = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Validator", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Validator = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Coin", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.Coin.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field CompletionTime", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := github_com_cosmos_gogoproto_types.StdTimeUnmarshal(&m.CompletionTime, dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipEvents(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthEvents + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *RedelegateAllianceEvent) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: RedelegateAllianceEvent: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: RedelegateAllianceEvent: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field AllianceSender", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.AllianceSender = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field SourceValidator", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.SourceValidator = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field DestinationValidator", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.DestinationValidator = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Coin", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.Coin.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field CompletionTime", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := github_com_cosmos_gogoproto_types.StdTimeUnmarshal(&m.CompletionTime, dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipEvents(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthEvents + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *ClaimAllianceRewardsEvent) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: ClaimAllianceRewardsEvent: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: ClaimAllianceRewardsEvent: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field AllianceSender", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.AllianceSender = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Validator", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Validator = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Coins", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Coins = append(m.Coins, github_com_cosmos_cosmos_sdk_types.Coin{}) + if err := m.Coins[len(m.Coins)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipEvents(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthEvents + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func skipEvents(dAtA []byte) (n int, err error) { + l := len(dAtA) + iNdEx := 0 + depth := 0 + for iNdEx < l { + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowEvents + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + wireType := int(wire & 0x7) + switch wireType { + case 0: + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowEvents + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + iNdEx++ + if dAtA[iNdEx-1] < 0x80 { + break + } + } + case 1: + iNdEx += 8 + case 2: + var length int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowEvents + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + length |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if length < 0 { + return 0, ErrInvalidLengthEvents + } + iNdEx += length + case 3: + depth++ + case 4: + if depth == 0 { + return 0, ErrUnexpectedEndOfGroupEvents + } + depth-- + case 5: + iNdEx += 4 + default: + return 0, fmt.Errorf("proto: illegal wireType %d", wireType) + } + if iNdEx < 0 { + return 0, ErrInvalidLengthEvents + } + if depth == 0 { + return iNdEx, nil + } + } + return 0, io.ErrUnexpectedEOF +} + +var ( + ErrInvalidLengthEvents = fmt.Errorf("proto: negative length found during unmarshaling") + ErrIntOverflowEvents = fmt.Errorf("proto: integer overflow") + ErrUnexpectedEndOfGroupEvents = fmt.Errorf("proto: unexpected end of group") +) diff --git a/x/alliance/types/genesis.pb.go b/x/alliance/types/genesis.pb.go index bded0897..0b4cf6c8 100644 --- a/x/alliance/types/genesis.pb.go +++ b/x/alliance/types/genesis.pb.go @@ -6,8 +6,8 @@ package types import ( fmt "fmt" _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/gogo/protobuf/proto" - github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" + proto "github.com/cosmos/gogoproto/proto" + github_com_cosmos_gogoproto_types "github.com/cosmos/gogoproto/types" _ "google.golang.org/protobuf/types/known/timestamppb" io "io" math "math" @@ -345,57 +345,56 @@ func (m *GenesisState) GetUndelegations() []UndelegationState { } func init() { - proto.RegisterType((*ValidatorInfoState)(nil), "alliance.alliance.ValidatorInfoState") - proto.RegisterType((*RedelegationState)(nil), "alliance.alliance.RedelegationState") - proto.RegisterType((*UndelegationState)(nil), "alliance.alliance.UndelegationState") - proto.RegisterType((*RewardWeightChangeSnapshotState)(nil), "alliance.alliance.RewardWeightChangeSnapshotState") - proto.RegisterType((*GenesisState)(nil), "alliance.alliance.GenesisState") + proto.RegisterType((*ValidatorInfoState)(nil), "alliance.ValidatorInfoState") + proto.RegisterType((*RedelegationState)(nil), "alliance.RedelegationState") + proto.RegisterType((*UndelegationState)(nil), "alliance.UndelegationState") + proto.RegisterType((*RewardWeightChangeSnapshotState)(nil), "alliance.RewardWeightChangeSnapshotState") + proto.RegisterType((*GenesisState)(nil), "alliance.GenesisState") } func init() { proto.RegisterFile("alliance/genesis.proto", fileDescriptor_e04f4ac99abd5245) } var fileDescriptor_e04f4ac99abd5245 = []byte{ - // 627 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x94, 0xcf, 0x6f, 0xd3, 0x30, - 0x14, 0xc7, 0x9b, 0xad, 0x2b, 0xab, 0x5b, 0x36, 0x6a, 0x8d, 0x11, 0x22, 0x96, 0x56, 0x15, 0x48, - 0x95, 0xd0, 0x12, 0x54, 0x0e, 0xdc, 0x90, 0x5a, 0x40, 0x68, 0x08, 0xb4, 0x91, 0x0d, 0x90, 0xb8, - 0x54, 0x6e, 0xe3, 0x26, 0x91, 0x92, 0x38, 0x8a, 0xdd, 0x8d, 0x89, 0x3f, 0x82, 0xfd, 0x23, 0x9c, - 0xb8, 0x73, 0x43, 0xda, 0x71, 0x47, 0x4e, 0x80, 0xda, 0x7f, 0x04, 0xc5, 0x4e, 0x52, 0x77, 0xcd, - 0x40, 0x1c, 0xb8, 0x39, 0xef, 0xc7, 0xe7, 0x7d, 0xdf, 0xb3, 0x5f, 0xc0, 0x36, 0xf2, 0x7d, 0x0f, - 0x85, 0x23, 0x6c, 0x3a, 0x38, 0xc4, 0xd4, 0xa3, 0x46, 0x14, 0x13, 0x46, 0x60, 0x23, 0xb3, 0x1b, - 0xd9, 0x41, 0xdb, 0x72, 0x88, 0x43, 0xb8, 0xd7, 0x4c, 0x4e, 0x22, 0x50, 0xbb, 0x95, 0x03, 0xf2, - 0x0c, 0xe1, 0xb8, 0x99, 0x3b, 0x22, 0x14, 0xa3, 0x20, 0x05, 0x6b, 0x5a, 0x6e, 0xb6, 0xb1, 0x8f, - 0x1d, 0xc4, 0x3c, 0x12, 0x66, 0xbe, 0xa6, 0x43, 0x88, 0xe3, 0x63, 0x93, 0x7f, 0x0d, 0x27, 0x63, - 0x93, 0x79, 0x01, 0xa6, 0x0c, 0x05, 0x91, 0x08, 0x68, 0x7f, 0x52, 0x00, 0x7c, 0x8b, 0x7c, 0xcf, - 0x46, 0x8c, 0xc4, 0x7b, 0xe1, 0x98, 0x1c, 0x32, 0xc4, 0x30, 0xbc, 0x0f, 0x1a, 0xc7, 0x99, 0x75, - 0x80, 0x6c, 0x3b, 0xc6, 0x94, 0xaa, 0x4a, 0x4b, 0xe9, 0x54, 0xad, 0x1b, 0xb9, 0xa3, 0x27, 0xec, - 0xf0, 0x25, 0xa8, 0xe6, 0x36, 0x75, 0xa5, 0xa5, 0x74, 0x6a, 0xdd, 0x8e, 0xb1, 0xd4, 0xad, 0xd1, - 0x4b, 0x0f, 0x0b, 0xe5, 0xfa, 0xe5, 0xf3, 0x1f, 0xcd, 0x92, 0x35, 0x07, 0xb4, 0x3f, 0x2b, 0xa0, - 0x61, 0xe1, 0x79, 0x2b, 0x42, 0xd0, 0x2b, 0xb0, 0x39, 0x22, 0x41, 0xe4, 0xe3, 0xc4, 0x34, 0x48, - 0xba, 0xe0, 0x72, 0x6a, 0x5d, 0xcd, 0x10, 0x2d, 0x1a, 0x59, 0x8b, 0xc6, 0x51, 0xd6, 0x62, 0x7f, - 0x3d, 0x61, 0x9f, 0xfd, 0x6c, 0x2a, 0xd6, 0xc6, 0x3c, 0x39, 0x71, 0xc3, 0x3d, 0x50, 0x8f, 0xa5, - 0x1a, 0xa9, 0xea, 0x66, 0x81, 0x6a, 0x59, 0x4a, 0x2a, 0x76, 0x21, 0xb5, 0xfd, 0x45, 0x01, 0x8d, - 0x37, 0xe1, 0x7f, 0xd6, 0xbb, 0x0f, 0xea, 0x93, 0x70, 0x49, 0xef, 0xbd, 0x02, 0xbd, 0xaf, 0x27, - 0x78, 0x82, 0x6d, 0x59, 0x50, 0xa6, 0x5a, 0x06, 0xb4, 0xbf, 0x2a, 0xa0, 0x69, 0xe1, 0x13, 0x14, - 0xdb, 0xef, 0xb0, 0xe7, 0xb8, 0xec, 0x89, 0x8b, 0x42, 0x07, 0x1f, 0x86, 0x28, 0xa2, 0x2e, 0x61, - 0xa2, 0x87, 0x6d, 0x50, 0x71, 0xb9, 0x93, 0x4b, 0x2f, 0x5b, 0xe9, 0x17, 0xbc, 0x73, 0xf9, 0xbe, - 0xab, 0xd2, 0xfd, 0xc1, 0x2d, 0xb0, 0x66, 0xe3, 0x90, 0x04, 0xea, 0x2a, 0xf7, 0x88, 0x0f, 0xb8, - 0x0f, 0xd6, 0x69, 0x0a, 0x57, 0xcb, 0x5c, 0xfc, 0x6e, 0xe1, 0xb0, 0xaf, 0x52, 0x94, 0x36, 0x91, - 0x43, 0xda, 0xdf, 0xca, 0xa0, 0xfe, 0x5c, 0x2c, 0x98, 0x50, 0xfb, 0x08, 0x54, 0xc4, 0x5a, 0xa4, - 0x83, 0xbe, 0x5d, 0xc0, 0x3f, 0xe0, 0x01, 0x29, 0x2b, 0x0d, 0x87, 0x8f, 0x41, 0x05, 0x51, 0x8a, - 0x19, 0x55, 0x57, 0x5a, 0xab, 0x9d, 0x5a, 0xb7, 0xf5, 0x87, 0xb7, 0xdb, 0x4b, 0x02, 0xb3, 0x7c, - 0x91, 0x05, 0x8f, 0xc0, 0xe6, 0x7c, 0x57, 0xbc, 0x70, 0x4c, 0xa8, 0xba, 0xca, 0x41, 0x45, 0xd7, - 0xb3, 0xbc, 0x6b, 0x29, 0x6d, 0xe3, 0x58, 0xf6, 0x50, 0xf8, 0x11, 0xec, 0xc4, 0x7c, 0x1a, 0x83, - 0x13, 0x3e, 0x8e, 0xc1, 0x88, 0xcf, 0x63, 0x90, 0x0c, 0xc0, 0x25, 0x8c, 0xaa, 0x65, 0x5e, 0xa3, - 0xfb, 0x4f, 0x53, 0x94, 0x0b, 0x6a, 0x71, 0x61, 0x58, 0xc2, 0x86, 0xcf, 0x40, 0x4d, 0xfa, 0x97, - 0xa8, 0x6b, 0xbc, 0xd4, 0x4e, 0x41, 0xa9, 0xa7, 0x97, 0x5f, 0x99, 0x9c, 0x07, 0x0f, 0xc0, 0x75, - 0x79, 0x55, 0xa8, 0x5a, 0xe1, 0xa0, 0xbb, 0x7f, 0x59, 0x33, 0x59, 0xe5, 0x22, 0x20, 0x21, 0xca, - 0xcf, 0x98, 0xaa, 0xd7, 0xae, 0x24, 0x2e, 0xed, 0x64, 0x46, 0x5c, 0x00, 0xf4, 0x5f, 0x9c, 0x4f, - 0x75, 0xe5, 0x62, 0xaa, 0x2b, 0xbf, 0xa6, 0xba, 0x72, 0x36, 0xd3, 0x4b, 0x17, 0x33, 0xbd, 0xf4, - 0x7d, 0xa6, 0x97, 0xde, 0x3f, 0x70, 0x3c, 0xe6, 0x4e, 0x86, 0xc6, 0x88, 0x04, 0x26, 0xc3, 0x71, - 0x8c, 0x76, 0x03, 0x12, 0xe2, 0xd3, 0xfc, 0xaf, 0x6c, 0x7e, 0x98, 0x1f, 0xd9, 0x69, 0x84, 0xe9, - 0xb0, 0xc2, 0x77, 0xfa, 0xe1, 0xef, 0x00, 0x00, 0x00, 0xff, 0xff, 0x3d, 0xde, 0x3f, 0x5f, 0x03, - 0x06, 0x00, 0x00, + // 618 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x94, 0x4f, 0x6f, 0xd3, 0x30, + 0x18, 0xc6, 0x9b, 0xad, 0x2b, 0xab, 0x5b, 0xb6, 0xd5, 0x2a, 0x5d, 0x14, 0x46, 0x5a, 0x55, 0x1c, + 0x8a, 0x10, 0x09, 0x2a, 0xe2, 0xc6, 0x81, 0x76, 0x68, 0x13, 0x20, 0x24, 0xc8, 0xf8, 0x23, 0x71, + 0xa9, 0xdc, 0xc6, 0x4d, 0x22, 0x25, 0x71, 0x14, 0xbb, 0x1b, 0xfb, 0x02, 0x3b, 0xef, 0x43, 0x70, + 0xe2, 0xce, 0x77, 0xd8, 0x71, 0x47, 0x4e, 0x80, 0xda, 0x2f, 0x82, 0xe2, 0x38, 0x89, 0xdb, 0x0e, + 0x89, 0x0b, 0x37, 0xfb, 0x7d, 0xfd, 0x3c, 0xfe, 0xbd, 0xce, 0xfb, 0x06, 0xb4, 0x90, 0xef, 0x7b, + 0x28, 0x9c, 0x60, 0xd3, 0xc1, 0x21, 0xa6, 0x1e, 0x35, 0xa2, 0x98, 0x30, 0x02, 0xb7, 0xb3, 0xb8, + 0xd6, 0x74, 0x88, 0x43, 0x78, 0xd0, 0x4c, 0x56, 0x69, 0x5e, 0xdb, 0xcf, 0x75, 0xd9, 0x42, 0x24, + 0xee, 0xe4, 0x89, 0x08, 0xc5, 0x28, 0x10, 0x7e, 0x9a, 0x96, 0x87, 0x6d, 0xec, 0x63, 0x07, 0x31, + 0x8f, 0x84, 0x59, 0xae, 0xed, 0x10, 0xe2, 0xf8, 0xd8, 0xe4, 0xbb, 0xf1, 0x6c, 0x6a, 0x32, 0x2f, + 0xc0, 0x94, 0xa1, 0x20, 0x4a, 0x0f, 0x74, 0x2f, 0x14, 0x00, 0x3f, 0x22, 0xdf, 0xb3, 0x11, 0x23, + 0xf1, 0xcb, 0x70, 0x4a, 0x4e, 0x18, 0x62, 0x18, 0x3e, 0x04, 0x8d, 0xd3, 0x2c, 0x3a, 0x42, 0xb6, + 0x1d, 0x63, 0x4a, 0x55, 0xa5, 0xa3, 0xf4, 0xaa, 0xd6, 0x5e, 0x9e, 0x18, 0xa4, 0x71, 0x78, 0x08, + 0xaa, 0x79, 0x4c, 0xdd, 0xe8, 0x28, 0xbd, 0x5a, 0xbf, 0x6d, 0xe4, 0xec, 0x03, 0xb1, 0x58, 0xba, + 0x65, 0x58, 0xbe, 0xfa, 0xd9, 0x2e, 0x59, 0x85, 0xae, 0xfb, 0x55, 0x01, 0x0d, 0x0b, 0x17, 0x15, + 0xa4, 0x1c, 0x6f, 0xc0, 0xee, 0x84, 0x04, 0x91, 0x8f, 0x93, 0xd0, 0x28, 0x81, 0xe7, 0x14, 0xb5, + 0xbe, 0x66, 0xa4, 0x95, 0x19, 0x59, 0x65, 0xc6, 0xfb, 0xac, 0xb2, 0xe1, 0x76, 0xe2, 0x7d, 0xf9, + 0xab, 0xad, 0x58, 0x3b, 0x85, 0x38, 0x49, 0xc3, 0xe7, 0xa0, 0x1e, 0x4b, 0x77, 0x08, 0xd8, 0x56, + 0x01, 0x2b, 0x13, 0x08, 0xc6, 0x25, 0x45, 0xf7, 0x9b, 0x02, 0x1a, 0x1f, 0xc2, 0xff, 0x8c, 0x79, + 0x04, 0xea, 0xb3, 0x70, 0x0d, 0xf3, 0xa0, 0xc0, 0x7c, 0x37, 0xc3, 0x33, 0x6c, 0xcb, 0x1c, 0x19, + 0xac, 0xac, 0xeb, 0x7e, 0x57, 0x40, 0xdb, 0xc2, 0x67, 0x28, 0xb6, 0x3f, 0x61, 0xcf, 0x71, 0xd9, + 0xa1, 0x8b, 0x42, 0x07, 0x9f, 0x84, 0x28, 0xa2, 0x2e, 0x61, 0x29, 0x7a, 0x0b, 0x54, 0x5c, 0x9e, + 0xe4, 0xc4, 0x65, 0x4b, 0xec, 0xe0, 0xc1, 0xea, 0x47, 0xad, 0x4a, 0x5f, 0x0b, 0x36, 0xc1, 0x96, + 0x8d, 0x43, 0x12, 0xa8, 0x9b, 0x3c, 0x93, 0x6e, 0xe0, 0x11, 0xd8, 0xa6, 0xc2, 0x5c, 0x2d, 0x73, + 0xe6, 0xfb, 0xf2, 0xd3, 0xfe, 0x0d, 0x44, 0xb0, 0xe7, 0xda, 0xee, 0x45, 0x19, 0xd4, 0x8f, 0xd3, + 0x99, 0x49, 0x21, 0x0d, 0x50, 0x49, 0x5b, 0x5e, 0x3c, 0xeb, 0x5e, 0x61, 0xfb, 0x96, 0xc7, 0x85, + 0x85, 0x38, 0x05, 0x9f, 0x82, 0x0a, 0xa2, 0x14, 0x33, 0xaa, 0x6e, 0x74, 0x36, 0x7b, 0xb5, 0xfe, + 0xfe, 0x7a, 0x3b, 0x0e, 0x92, 0x7c, 0x26, 0x4b, 0x0f, 0xc3, 0xd7, 0x60, 0xb7, 0xe8, 0x7a, 0x2f, + 0x9c, 0x12, 0xaa, 0x6e, 0x72, 0xbd, 0xf4, 0xf4, 0xeb, 0xc3, 0x22, 0x4c, 0x76, 0x4e, 0xe5, 0x0c, + 0x85, 0x31, 0xb8, 0x17, 0xf3, 0x92, 0x47, 0x67, 0xbc, 0xe6, 0xd1, 0x84, 0x17, 0x3d, 0x4a, 0xaa, + 0x74, 0x09, 0xa3, 0x6a, 0x99, 0x5b, 0x3f, 0xf8, 0x97, 0x17, 0x92, 0xef, 0xd1, 0xe2, 0x1b, 0x8f, + 0x25, 0x96, 0xf0, 0x19, 0xa8, 0x49, 0xff, 0x00, 0x75, 0x8b, 0xdf, 0xd0, 0x2c, 0x6e, 0x78, 0xb1, + 0xda, 0x2f, 0xf2, 0x71, 0x78, 0x0c, 0x6e, 0xcb, 0xbd, 0x4e, 0xd5, 0x0a, 0xd7, 0xdf, 0xbd, 0x79, + 0x3c, 0x64, 0xa6, 0x65, 0x5d, 0x62, 0x24, 0xf7, 0x21, 0x55, 0x6f, 0xad, 0x1a, 0xad, 0x8d, 0x50, + 0x66, 0xb4, 0xa4, 0x1b, 0xbe, 0xba, 0x9a, 0xeb, 0xca, 0xf5, 0x5c, 0x57, 0x7e, 0xcf, 0x75, 0xe5, + 0x72, 0xa1, 0x97, 0xae, 0x17, 0x7a, 0xe9, 0xc7, 0x42, 0x2f, 0x7d, 0x7e, 0xec, 0x78, 0xcc, 0x9d, + 0x8d, 0x8d, 0x09, 0x09, 0x4c, 0x86, 0xe3, 0x18, 0x3d, 0x0a, 0x48, 0x88, 0xcf, 0xf3, 0x5f, 0xa6, + 0xf9, 0xa5, 0x58, 0xb2, 0xf3, 0x08, 0xd3, 0x71, 0x85, 0x8f, 0xe0, 0x93, 0x3f, 0x01, 0x00, 0x00, + 0xff, 0xff, 0xde, 0x02, 0x45, 0x4b, 0x97, 0x05, 0x00, 0x00, } func (m *ValidatorInfoState) Marshal() (dAtA []byte, err error) { @@ -468,7 +467,7 @@ func (m *RedelegationState) MarshalToSizedBuffer(dAtA []byte) (int, error) { } i-- dAtA[i] = 0x12 - n3, err3 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.CompletionTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.CompletionTime):]) + n3, err3 := github_com_cosmos_gogoproto_types.StdTimeMarshalTo(m.CompletionTime, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdTime(m.CompletionTime):]) if err3 != nil { return 0, err3 } @@ -509,7 +508,7 @@ func (m *UndelegationState) MarshalToSizedBuffer(dAtA []byte) (int, error) { } i-- dAtA[i] = 0x12 - n5, err5 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.CompletionTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.CompletionTime):]) + n5, err5 := github_com_cosmos_gogoproto_types.StdTimeMarshalTo(m.CompletionTime, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdTime(m.CompletionTime):]) if err5 != nil { return 0, err5 } @@ -721,7 +720,7 @@ func (m *RedelegationState) Size() (n int) { } var l int _ = l - l = github_com_gogo_protobuf_types.SizeOfStdTime(m.CompletionTime) + l = github_com_cosmos_gogoproto_types.SizeOfStdTime(m.CompletionTime) n += 1 + l + sovGenesis(uint64(l)) l = m.Redelegation.Size() n += 1 + l + sovGenesis(uint64(l)) @@ -734,7 +733,7 @@ func (m *UndelegationState) Size() (n int) { } var l int _ = l - l = github_com_gogo_protobuf_types.SizeOfStdTime(m.CompletionTime) + l = github_com_cosmos_gogoproto_types.SizeOfStdTime(m.CompletionTime) n += 1 + l + sovGenesis(uint64(l)) l = m.Undelegation.Size() n += 1 + l + sovGenesis(uint64(l)) @@ -989,7 +988,7 @@ func (m *RedelegationState) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(&m.CompletionTime, dAtA[iNdEx:postIndex]); err != nil { + if err := github_com_cosmos_gogoproto_types.StdTimeUnmarshal(&m.CompletionTime, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex @@ -1105,7 +1104,7 @@ func (m *UndelegationState) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(&m.CompletionTime, dAtA[iNdEx:postIndex]); err != nil { + if err := github_com_cosmos_gogoproto_types.StdTimeUnmarshal(&m.CompletionTime, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex diff --git a/x/alliance/types/gov.go b/x/alliance/types/gov.go index 1a20f527..1f87dc94 100644 --- a/x/alliance/types/gov.go +++ b/x/alliance/types/gov.go @@ -27,12 +27,13 @@ func init() { govtypes.RegisterProposalType(ProposalTypeDeleteAlliance) } -func NewMsgCreateAllianceProposal(title, description, denom string, rewardWeight, takeRate sdk.Dec, rewardChangeRate sdk.Dec, rewardChangeInterval time.Duration) govtypes.Content { +func NewMsgCreateAllianceProposal(title, description, denom string, rewardWeight sdk.Dec, rewardWeightRange RewardWeightRange, takeRate sdk.Dec, rewardChangeRate sdk.Dec, rewardChangeInterval time.Duration) govtypes.Content { return &MsgCreateAllianceProposal{ Title: title, Description: description, Denom: denom, RewardWeight: rewardWeight, + RewardWeightRange: rewardWeightRange, TakeRate: takeRate, RewardChangeRate: rewardChangeRate, RewardChangeInterval: rewardChangeInterval, @@ -48,10 +49,27 @@ func (m *MsgCreateAllianceProposal) ValidateBasic() error { return status.Errorf(codes.InvalidArgument, "Alliance denom must have a value") } + if err := sdk.ValidateDenom(m.Denom); err != nil { + return err + } + if m.RewardWeight.IsNil() || m.RewardWeight.LT(sdk.ZeroDec()) { return status.Errorf(codes.InvalidArgument, "Alliance rewardWeight must be zero or a positive number") } + if m.RewardWeightRange.Min.IsNil() || m.RewardWeightRange.Min.LT(sdk.ZeroDec()) || + m.RewardWeightRange.Max.IsNil() || m.RewardWeightRange.Max.LT(sdk.ZeroDec()) { + return status.Errorf(codes.InvalidArgument, "Alliance rewardWeight min and max must be zero or a positive number") + } + + if m.RewardWeightRange.Min.GT(m.RewardWeightRange.Max) { + return status.Errorf(codes.InvalidArgument, "Alliance rewardWeight min must be less or equal to rewardWeight max") + } + + if m.RewardWeight.LT(m.RewardWeightRange.Min) || m.RewardWeight.GT(m.RewardWeightRange.Max) { + return status.Errorf(codes.InvalidArgument, "Alliance rewardWeight must be bounded in RewardWeightRange") + } + if m.TakeRate.IsNil() || m.TakeRate.IsNegative() || m.TakeRate.GTE(sdk.OneDec()) { return status.Errorf(codes.InvalidArgument, "Alliance takeRate must be more or equals to 0 but strictly less than 1") } @@ -60,6 +78,10 @@ func (m *MsgCreateAllianceProposal) ValidateBasic() error { return status.Errorf(codes.InvalidArgument, "Alliance rewardChangeRate must be strictly a positive number") } + if m.RewardChangeInterval < 0 { + return status.Errorf(codes.InvalidArgument, "Alliance rewardChangeInterval must be strictly a positive number") + } + return nil } @@ -96,6 +118,10 @@ func (m *MsgUpdateAllianceProposal) ValidateBasic() error { return status.Errorf(codes.InvalidArgument, "Alliance rewardChangeRate must be strictly a positive number") } + if m.RewardChangeInterval < 0 { + return status.Errorf(codes.InvalidArgument, "Alliance rewardChangeInterval must be strictly a positive number") + } + return nil } diff --git a/x/alliance/types/gov.pb.go b/x/alliance/types/gov.pb.go index 231e65a4..bbdea001 100644 --- a/x/alliance/types/gov.pb.go +++ b/x/alliance/types/gov.pb.go @@ -7,8 +7,8 @@ import ( fmt "fmt" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/gogo/protobuf/proto" - github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" + proto "github.com/cosmos/gogoproto/proto" + github_com_cosmos_gogoproto_types "github.com/cosmos/gogoproto/types" _ "google.golang.org/protobuf/types/known/durationpb" io "io" math "math" @@ -44,6 +44,8 @@ type MsgCreateAllianceProposal struct { TakeRate github_com_cosmos_cosmos_sdk_types.Dec `protobuf:"bytes,5,opt,name=take_rate,json=takeRate,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Dec" json:"take_rate"` RewardChangeRate github_com_cosmos_cosmos_sdk_types.Dec `protobuf:"bytes,6,opt,name=reward_change_rate,json=rewardChangeRate,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Dec" json:"reward_change_rate"` RewardChangeInterval time.Duration `protobuf:"bytes,7,opt,name=reward_change_interval,json=rewardChangeInterval,proto3,stdduration" json:"reward_change_interval"` + // set a bound of weight range to limit how much reward weights can scale. + RewardWeightRange RewardWeightRange `protobuf:"bytes,8,opt,name=reward_weight_range,json=rewardWeightRange,proto3" json:"reward_weight_range"` } func (m *MsgCreateAllianceProposal) Reset() { *m = MsgCreateAllianceProposal{} } @@ -170,43 +172,45 @@ func (m *MsgDeleteAllianceProposal) XXX_DiscardUnknown() { var xxx_messageInfo_MsgDeleteAllianceProposal proto.InternalMessageInfo func init() { - proto.RegisterType((*MsgCreateAllianceProposal)(nil), "alliance.alliance.MsgCreateAllianceProposal") - proto.RegisterType((*MsgUpdateAllianceProposal)(nil), "alliance.alliance.MsgUpdateAllianceProposal") - proto.RegisterType((*MsgDeleteAllianceProposal)(nil), "alliance.alliance.MsgDeleteAllianceProposal") + proto.RegisterType((*MsgCreateAllianceProposal)(nil), "alliance.MsgCreateAllianceProposal") + proto.RegisterType((*MsgUpdateAllianceProposal)(nil), "alliance.MsgUpdateAllianceProposal") + proto.RegisterType((*MsgDeleteAllianceProposal)(nil), "alliance.MsgDeleteAllianceProposal") } func init() { proto.RegisterFile("alliance/gov.proto", fileDescriptor_5518a6f5c90c8452) } var fileDescriptor_5518a6f5c90c8452 = []byte{ - // 433 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x94, 0x31, 0x8f, 0xd3, 0x30, - 0x14, 0xc7, 0x63, 0x8e, 0x1e, 0x3d, 0xdf, 0x21, 0x1d, 0x56, 0x85, 0x72, 0x37, 0x24, 0x55, 0x87, - 0xd3, 0x2d, 0xe7, 0x20, 0xd8, 0xba, 0xd1, 0x76, 0x01, 0x84, 0x84, 0x82, 0x10, 0x02, 0x21, 0x55, - 0x6e, 0xf2, 0x70, 0xa3, 0x3a, 0x71, 0xe4, 0xb8, 0x2d, 0xfd, 0x00, 0x48, 0x8c, 0x8c, 0x8c, 0xfd, - 0x38, 0x1d, 0x3b, 0x22, 0x86, 0x52, 0xb5, 0x0b, 0x33, 0x9f, 0x00, 0xc5, 0x49, 0x68, 0x59, 0x3b, - 0x30, 0x20, 0xa6, 0x3c, 0xbf, 0xbf, 0xf5, 0xcb, 0xd3, 0xfb, 0x49, 0xc6, 0x84, 0x09, 0x11, 0xb1, - 0x24, 0x00, 0x8f, 0xcb, 0x09, 0x4d, 0x95, 0xd4, 0x92, 0xdc, 0xab, 0x7a, 0xb4, 0x2a, 0x2e, 0x1b, - 0x5c, 0x72, 0x69, 0x52, 0x2f, 0xaf, 0x8a, 0x8b, 0x97, 0x0e, 0x97, 0x92, 0x0b, 0xf0, 0xcc, 0x69, - 0x30, 0x7e, 0xef, 0x85, 0x63, 0xc5, 0x74, 0x24, 0x93, 0x22, 0x6f, 0xad, 0x8f, 0xf0, 0xc5, 0xf3, - 0x8c, 0x77, 0x15, 0x30, 0x0d, 0x8f, 0x4b, 0xd6, 0x0b, 0x25, 0x53, 0x99, 0x31, 0x41, 0x1a, 0xb8, - 0xa6, 0x23, 0x2d, 0xc0, 0x46, 0x4d, 0x74, 0x7d, 0xe2, 0x17, 0x07, 0xd2, 0xc4, 0xa7, 0x21, 0x64, - 0x81, 0x8a, 0xd2, 0x1c, 0x64, 0xdf, 0x32, 0xd9, 0x7e, 0x8b, 0x5c, 0xe1, 0x5a, 0x08, 0x89, 0x8c, - 0xed, 0xa3, 0x3c, 0xeb, 0x9c, 0xff, 0x5c, 0xb9, 0x67, 0x33, 0x16, 0x8b, 0x76, 0xcb, 0xb4, 0x5b, - 0x7e, 0x11, 0x93, 0x97, 0xf8, 0xae, 0x82, 0x29, 0x53, 0x61, 0x7f, 0x0a, 0x11, 0x1f, 0x6a, 0xfb, - 0xb6, 0xb9, 0x4f, 0x17, 0x2b, 0xd7, 0xfa, 0xb6, 0x72, 0xaf, 0x78, 0xa4, 0x87, 0xe3, 0x01, 0x0d, - 0x64, 0xec, 0x05, 0x32, 0x8b, 0x65, 0x56, 0x7e, 0x6e, 0xb2, 0x70, 0xe4, 0xe9, 0x59, 0x0a, 0x19, - 0xed, 0x41, 0xe0, 0x9f, 0x15, 0x90, 0xd7, 0x86, 0x41, 0x9e, 0xe1, 0x13, 0xcd, 0x46, 0xd0, 0x57, - 0x4c, 0x83, 0x5d, 0x3b, 0x08, 0x58, 0xcf, 0x01, 0x3e, 0xd3, 0x40, 0xde, 0x61, 0x52, 0x4e, 0x18, - 0x0c, 0x59, 0xc2, 0x4b, 0xea, 0xf1, 0x41, 0xd4, 0xf3, 0x82, 0xd4, 0x35, 0x20, 0x43, 0x7f, 0x83, - 0xef, 0xff, 0x49, 0x8f, 0x12, 0x0d, 0x6a, 0xc2, 0x84, 0x7d, 0xa7, 0x89, 0xae, 0x4f, 0x1f, 0x5e, - 0xd0, 0x42, 0x1f, 0xad, 0xf4, 0xd1, 0x5e, 0xa9, 0xaf, 0x53, 0xcf, 0x7f, 0xfe, 0xe5, 0xbb, 0x8b, - 0xfc, 0xc6, 0x3e, 0xf6, 0x49, 0x09, 0x68, 0xd7, 0x3f, 0xcd, 0x5d, 0xeb, 0xc7, 0xdc, 0xb5, 0x2a, - 0xc5, 0xaf, 0xd2, 0xf0, 0xbf, 0xe2, 0x7f, 0x54, 0xf1, 0x47, 0x64, 0x14, 0xf7, 0x40, 0xc0, 0xdf, - 0x57, 0xbc, 0x9b, 0xa3, 0xf3, 0x74, 0xb1, 0x71, 0xd0, 0x72, 0xe3, 0xa0, 0xf5, 0xc6, 0x41, 0x9f, - 0xb7, 0x8e, 0xb5, 0xdc, 0x3a, 0xd6, 0xd7, 0xad, 0x63, 0xbd, 0x7d, 0xb0, 0xb7, 0x40, 0x0d, 0x4a, - 0xb1, 0x9b, 0x58, 0x26, 0x30, 0xf3, 0x7e, 0xbf, 0x6d, 0x1f, 0x76, 0xa5, 0x59, 0xe7, 0xe0, 0xd8, - 0x2c, 0xe4, 0xd1, 0xaf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x28, 0xa4, 0x36, 0xff, 0x04, 0x00, - 0x00, + // 476 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x94, 0x31, 0x6f, 0xd3, 0x40, + 0x14, 0xc7, 0x6d, 0x9a, 0x14, 0xf7, 0x5a, 0xa4, 0x72, 0x44, 0xe0, 0x16, 0xc9, 0x8e, 0x32, 0x54, + 0x5d, 0x6a, 0x23, 0xd8, 0xba, 0xe1, 0x66, 0x01, 0x84, 0x04, 0x87, 0x10, 0x02, 0x21, 0x45, 0x17, + 0xfb, 0x71, 0xb1, 0x7a, 0xf6, 0x59, 0xe7, 0x4b, 0x4b, 0x3e, 0x00, 0x12, 0x23, 0x23, 0x63, 0xbf, + 0x03, 0x5f, 0xa2, 0x63, 0x47, 0xc4, 0x10, 0xaa, 0x64, 0x61, 0xe6, 0x13, 0xa0, 0x3b, 0x3b, 0xa9, + 0xcb, 0xd8, 0x81, 0x01, 0x75, 0xf2, 0xbb, 0xf7, 0x7f, 0xfa, 0xf9, 0xf4, 0xff, 0x3f, 0x1d, 0xc2, + 0x94, 0xf3, 0x94, 0xe6, 0x31, 0x84, 0x4c, 0x1c, 0x05, 0x85, 0x14, 0x4a, 0x60, 0x67, 0xd1, 0xdb, + 0xbe, 0xb7, 0x54, 0x17, 0x45, 0x35, 0xb2, 0xdd, 0x61, 0x82, 0x09, 0x53, 0x86, 0xba, 0xaa, 0xbb, + 0x1e, 0x13, 0x82, 0x71, 0x08, 0xcd, 0x69, 0x38, 0xfe, 0x10, 0x26, 0x63, 0x49, 0x55, 0x2a, 0xf2, + 0x4a, 0xef, 0x7d, 0x6b, 0xa1, 0xad, 0xe7, 0x25, 0x3b, 0x90, 0x40, 0x15, 0x3c, 0xae, 0x89, 0x2f, + 0xa4, 0x28, 0x44, 0x49, 0x39, 0xee, 0xa0, 0xb6, 0x4a, 0x15, 0x07, 0xd7, 0xee, 0xda, 0xbb, 0x6b, + 0xa4, 0x3a, 0xe0, 0x2e, 0x5a, 0x4f, 0xa0, 0x8c, 0x65, 0x5a, 0x68, 0x90, 0x7b, 0xc3, 0x68, 0xcd, + 0x16, 0xde, 0x41, 0xed, 0x04, 0x72, 0x91, 0xb9, 0x2b, 0x5a, 0x8b, 0x36, 0x7f, 0x4f, 0xfd, 0x8d, + 0x09, 0xcd, 0xf8, 0x7e, 0xcf, 0xb4, 0x7b, 0xa4, 0x92, 0xf1, 0x2b, 0x74, 0x4b, 0xc2, 0x31, 0x95, + 0xc9, 0xe0, 0x18, 0x52, 0x36, 0x52, 0x6e, 0xcb, 0xcc, 0x07, 0xa7, 0x53, 0xdf, 0xfa, 0x31, 0xf5, + 0x77, 0x58, 0xaa, 0x46, 0xe3, 0x61, 0x10, 0x8b, 0x2c, 0x8c, 0x45, 0x99, 0x89, 0xb2, 0xfe, 0xec, + 0x95, 0xc9, 0x61, 0xa8, 0x26, 0x05, 0x94, 0x41, 0x1f, 0x62, 0xb2, 0x51, 0x41, 0xde, 0x18, 0x06, + 0x7e, 0x86, 0xd6, 0x14, 0x3d, 0x84, 0x81, 0xa4, 0x0a, 0xdc, 0xf6, 0x95, 0x80, 0x8e, 0x06, 0x10, + 0xaa, 0x00, 0xbf, 0x47, 0xb8, 0xbe, 0x61, 0x3c, 0xa2, 0x39, 0xab, 0xa9, 0xab, 0x57, 0xa2, 0x6e, + 0x56, 0xa4, 0x03, 0x03, 0x32, 0xf4, 0xb7, 0xe8, 0xee, 0x65, 0x7a, 0x9a, 0x2b, 0x90, 0x47, 0x94, + 0xbb, 0x37, 0xbb, 0xf6, 0xee, 0xfa, 0xc3, 0xad, 0xa0, 0x8a, 0x2f, 0x58, 0xc4, 0x17, 0xf4, 0xeb, + 0xf8, 0x22, 0x47, 0xff, 0xfc, 0xeb, 0x4f, 0xdf, 0x26, 0x9d, 0x26, 0xf6, 0x49, 0x0d, 0xc0, 0x2f, + 0xd1, 0x9d, 0x4b, 0xd6, 0x0e, 0xa4, 0x96, 0x5d, 0xc7, 0x70, 0xef, 0x07, 0xcb, 0xe5, 0x21, 0x0d, + 0xeb, 0x88, 0x1e, 0x89, 0x5a, 0x9a, 0x4c, 0x6e, 0xcb, 0xbf, 0x85, 0x7d, 0xe7, 0xf3, 0x89, 0x6f, + 0xfd, 0x3a, 0xf1, 0xad, 0xde, 0xf9, 0x8a, 0xd9, 0x9a, 0xd7, 0x45, 0x72, 0xbd, 0x35, 0xff, 0xd3, + 0xd6, 0x34, 0x22, 0xfe, 0x64, 0x9b, 0x88, 0xfb, 0xc0, 0xe1, 0xdf, 0x47, 0x7c, 0x71, 0x8f, 0xe8, + 0xe9, 0xe9, 0xcc, 0xb3, 0xcf, 0x66, 0x9e, 0x7d, 0x3e, 0xf3, 0xec, 0x2f, 0x73, 0xcf, 0x3a, 0x9b, + 0x7b, 0xd6, 0xf7, 0xb9, 0x67, 0xbd, 0x7b, 0xd0, 0x30, 0x50, 0x81, 0x94, 0x74, 0x2f, 0x13, 0x39, + 0x4c, 0x96, 0xef, 0x62, 0xf8, 0xf1, 0xa2, 0x34, 0x76, 0x0e, 0x57, 0x8d, 0x21, 0x8f, 0xfe, 0x04, + 0x00, 0x00, 0xff, 0xff, 0x0d, 0xf5, 0xa0, 0xaf, 0x62, 0x05, 0x00, 0x00, } func (m *MsgCreateAllianceProposal) Marshal() (dAtA []byte, err error) { @@ -229,12 +233,22 @@ func (m *MsgCreateAllianceProposal) MarshalToSizedBuffer(dAtA []byte) (int, erro _ = i var l int _ = l - n1, err1 := github_com_gogo_protobuf_types.StdDurationMarshalTo(m.RewardChangeInterval, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdDuration(m.RewardChangeInterval):]) - if err1 != nil { - return 0, err1 + { + size, err := m.RewardWeightRange.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGov(dAtA, i, uint64(size)) } - i -= n1 - i = encodeVarintGov(dAtA, i, uint64(n1)) + i-- + dAtA[i] = 0x42 + n2, err2 := github_com_cosmos_gogoproto_types.StdDurationMarshalTo(m.RewardChangeInterval, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdDuration(m.RewardChangeInterval):]) + if err2 != nil { + return 0, err2 + } + i -= n2 + i = encodeVarintGov(dAtA, i, uint64(n2)) i-- dAtA[i] = 0x3a { @@ -311,12 +325,12 @@ func (m *MsgUpdateAllianceProposal) MarshalToSizedBuffer(dAtA []byte) (int, erro _ = i var l int _ = l - n2, err2 := github_com_gogo_protobuf_types.StdDurationMarshalTo(m.RewardChangeInterval, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdDuration(m.RewardChangeInterval):]) - if err2 != nil { - return 0, err2 + n3, err3 := github_com_cosmos_gogoproto_types.StdDurationMarshalTo(m.RewardChangeInterval, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdDuration(m.RewardChangeInterval):]) + if err3 != nil { + return 0, err3 } - i -= n2 - i = encodeVarintGov(dAtA, i, uint64(n2)) + i -= n3 + i = encodeVarintGov(dAtA, i, uint64(n3)) i-- dAtA[i] = 0x3a { @@ -452,7 +466,9 @@ func (m *MsgCreateAllianceProposal) Size() (n int) { n += 1 + l + sovGov(uint64(l)) l = m.RewardChangeRate.Size() n += 1 + l + sovGov(uint64(l)) - l = github_com_gogo_protobuf_types.SizeOfStdDuration(m.RewardChangeInterval) + l = github_com_cosmos_gogoproto_types.SizeOfStdDuration(m.RewardChangeInterval) + n += 1 + l + sovGov(uint64(l)) + l = m.RewardWeightRange.Size() n += 1 + l + sovGov(uint64(l)) return n } @@ -481,7 +497,7 @@ func (m *MsgUpdateAllianceProposal) Size() (n int) { n += 1 + l + sovGov(uint64(l)) l = m.RewardChangeRate.Size() n += 1 + l + sovGov(uint64(l)) - l = github_com_gogo_protobuf_types.SizeOfStdDuration(m.RewardChangeInterval) + l = github_com_cosmos_gogoproto_types.SizeOfStdDuration(m.RewardChangeInterval) n += 1 + l + sovGov(uint64(l)) return n } @@ -769,7 +785,40 @@ func (m *MsgCreateAllianceProposal) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := github_com_gogo_protobuf_types.StdDurationUnmarshal(&m.RewardChangeInterval, dAtA[iNdEx:postIndex]); err != nil { + if err := github_com_cosmos_gogoproto_types.StdDurationUnmarshal(&m.RewardChangeInterval, dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 8: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field RewardWeightRange", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGov + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthGov + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthGov + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.RewardWeightRange.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex @@ -1050,7 +1099,7 @@ func (m *MsgUpdateAllianceProposal) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := github_com_gogo_protobuf_types.StdDurationUnmarshal(&m.RewardChangeInterval, dAtA[iNdEx:postIndex]); err != nil { + if err := github_com_cosmos_gogoproto_types.StdDurationUnmarshal(&m.RewardChangeInterval, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex diff --git a/x/alliance/types/keys.go b/x/alliance/types/keys.go index 053046f4..f5b609bd 100644 --- a/x/alliance/types/keys.go +++ b/x/alliance/types/keys.go @@ -8,7 +8,7 @@ import ( ) const ( - // ModuleName is the name of the staking module + // ModuleName is the name of the alliance module ModuleName = "alliance" // RewardsPoolName is the name of the module account for rewards @@ -17,10 +17,10 @@ const ( // StoreKey is the string store representation StoreKey = ModuleName - // QuerierRoute is the querier route for the staking module + // QuerierRoute is the querier route for the alliance module QuerierRoute = ModuleName - // RouterKey is the msg router key for the staking module + // RouterKey is the msg router key for the alliance module RouterKey = ModuleName // MemStoreKey defines the in-memory store key diff --git a/x/alliance/types/msg.go b/x/alliance/types/msg.go index 5a902528..585883b3 100644 --- a/x/alliance/types/msg.go +++ b/x/alliance/types/msg.go @@ -2,6 +2,7 @@ package types import ( sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cosmos/cosmos-sdk/x/auth/migrations/legacytx" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" ) @@ -11,6 +12,11 @@ var ( _ sdk.Msg = &MsgRedelegate{} _ sdk.Msg = &MsgUndelegate{} _ sdk.Msg = &MsgClaimDelegationRewards{} + + _ legacytx.LegacyMsg = &MsgDelegate{} + _ legacytx.LegacyMsg = &MsgRedelegate{} + _ legacytx.LegacyMsg = &MsgUndelegate{} + _ legacytx.LegacyMsg = &MsgClaimDelegationRewards{} ) var ( @@ -28,22 +34,30 @@ func NewMsgDelegate(delegatorAddress, validatorAddress string, amount sdk.Coin) } } -func (m MsgDelegate) ValidateBasic() error { - if !m.Amount.Amount.GT(sdk.ZeroInt()) { +func (msg MsgDelegate) GetSignBytes() []byte { + return sdk.MustSortJSON(ModuleCdc.MustMarshalJSON(&msg)) +} + +func (msg MsgDelegate) Route() string { + return sdk.MsgTypeURL(&msg) +} + +func (msg MsgDelegate) ValidateBasic() error { + if !msg.Amount.Amount.GT(sdk.ZeroInt()) { return status.Errorf(codes.InvalidArgument, "Alliance delegation amount must be more than zero") } return nil } -func (m MsgDelegate) GetSigners() []sdk.AccAddress { - signer, err := sdk.AccAddressFromBech32(m.DelegatorAddress) +func (msg MsgDelegate) GetSigners() []sdk.AccAddress { + signer, err := sdk.AccAddressFromBech32(msg.DelegatorAddress) if err != nil { panic("DelegatorAddress signer from MsgDelegate is not valid") } return []sdk.AccAddress{signer} } -func (msg MsgDelegate) Type() string { return MsgDelegateType } //nolint:revive // TODO: we should figure out how to differentiate this from MsgDelegate above. +func (msg MsgDelegate) Type() string { return MsgDelegateType } func NewMsgRedelegate(delegatorAddress, validatorSrcAddress, validatorDstAddress string, amount sdk.Coin) *MsgRedelegate { return &MsgRedelegate{ @@ -54,22 +68,30 @@ func NewMsgRedelegate(delegatorAddress, validatorSrcAddress, validatorDstAddress } } -func (m MsgRedelegate) ValidateBasic() error { - if m.Amount.Amount.LTE(sdk.ZeroInt()) { +func (msg MsgRedelegate) GetSignBytes() []byte { + return sdk.MustSortJSON(ModuleCdc.MustMarshalJSON(&msg)) +} + +func (msg MsgRedelegate) Route() string { + return sdk.MsgTypeURL(&msg) +} + +func (msg MsgRedelegate) ValidateBasic() error { + if msg.Amount.Amount.LTE(sdk.ZeroInt()) { return status.Errorf(codes.InvalidArgument, "Alliance redelegation amount must be more than zero") } return nil } -func (m MsgRedelegate) GetSigners() []sdk.AccAddress { - signer, err := sdk.AccAddressFromBech32(m.DelegatorAddress) +func (msg MsgRedelegate) GetSigners() []sdk.AccAddress { + signer, err := sdk.AccAddressFromBech32(msg.DelegatorAddress) if err != nil { panic("DelegatorAddress signer from MsgRedelegate is not valid") } return []sdk.AccAddress{signer} } -func (msg MsgRedelegate) Type() string { return MsgRedelegateType } //nolint:revive // should make receivers consistent +func (msg MsgRedelegate) Type() string { return MsgRedelegateType } func NewMsgUndelegate(delegatorAddress, validatorAddress string, amount sdk.Coin) *MsgUndelegate { return &MsgUndelegate{ @@ -79,36 +101,60 @@ func NewMsgUndelegate(delegatorAddress, validatorAddress string, amount sdk.Coin } } -func (m MsgUndelegate) ValidateBasic() error { - if m.Amount.Amount.LTE(sdk.ZeroInt()) { +func (msg MsgUndelegate) GetSignBytes() []byte { + return sdk.MustSortJSON(ModuleCdc.MustMarshalJSON(&msg)) +} + +func (msg MsgUndelegate) Route() string { + return sdk.MsgTypeURL(&msg) +} + +func (msg MsgUndelegate) ValidateBasic() error { + if msg.Amount.Amount.LTE(sdk.ZeroInt()) { return status.Errorf(codes.InvalidArgument, "Alliance undelegate amount must be more than zero") } return nil } -func (m MsgUndelegate) GetSigners() []sdk.AccAddress { - signer, err := sdk.AccAddressFromBech32(m.DelegatorAddress) +func (msg MsgUndelegate) GetSigners() []sdk.AccAddress { + signer, err := sdk.AccAddressFromBech32(msg.DelegatorAddress) if err != nil { panic("DelegatorAddress signer from MsgUndelegate is not valid") } return []sdk.AccAddress{signer} } -func (msg MsgUndelegate) Type() string { return MsgUndelegateType } //nolint:revive // should make receivers consistent +func (msg MsgUndelegate) Type() string { return MsgUndelegateType } -func (m *MsgClaimDelegationRewards) ValidateBasic() error { - if m.Denom == "" { +func NewMsgClaimDelegationRewards(delegatorAddress, validatorAddress, denom string) *MsgClaimDelegationRewards { + return &MsgClaimDelegationRewards{ + DelegatorAddress: delegatorAddress, + ValidatorAddress: validatorAddress, + Denom: denom, + } +} + +func (msg *MsgClaimDelegationRewards) ValidateBasic() error { + if msg.Denom == "" { return status.Errorf(codes.InvalidArgument, "Alliance denom must have a value") } return nil } -func (m *MsgClaimDelegationRewards) GetSigners() []sdk.AccAddress { - signer, err := sdk.AccAddressFromBech32(m.DelegatorAddress) +func (msg MsgClaimDelegationRewards) Route() string { + return sdk.MsgTypeURL(&msg) +} + +func (msg MsgClaimDelegationRewards) GetSignBytes() []byte { + return sdk.MustSortJSON(ModuleCdc.MustMarshalJSON(&msg)) +} + +func (msg *MsgClaimDelegationRewards) GetSigners() []sdk.AccAddress { + signer, err := sdk.AccAddressFromBech32(msg.DelegatorAddress) if err != nil { panic("DelegatorAddress signer from MsgClaimDelegationRewards is not valid") } return []sdk.AccAddress{signer} } -func (msg MsgClaimDelegationRewards) Type() string { return MsgClaimDelegationRewardsType } //nolint:revive // should make receivers consistent +func (msg MsgClaimDelegationRewards) Type() string { return MsgClaimDelegationRewardsType } diff --git a/x/alliance/types/params.go b/x/alliance/types/params.go index 3640def2..b1aef989 100644 --- a/x/alliance/types/params.go +++ b/x/alliance/types/params.go @@ -49,7 +49,7 @@ func NewParams() Params { return Params{ RewardDelayTime: time.Hour * 24 * 7, TakeRateClaimInterval: time.Minute * 5, - LastTakeRateClaimTime: time.Now(), + LastTakeRateClaimTime: time.Time{}, } } diff --git a/x/alliance/types/params.pb.go b/x/alliance/types/params.pb.go index 494c0e61..b80b4716 100644 --- a/x/alliance/types/params.pb.go +++ b/x/alliance/types/params.pb.go @@ -8,8 +8,8 @@ import ( _ "github.com/cosmos/cosmos-proto" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/gogo/protobuf/proto" - github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" + proto "github.com/cosmos/gogoproto/proto" + github_com_cosmos_gogoproto_types "github.com/cosmos/gogoproto/types" _ "google.golang.org/protobuf/types/known/durationpb" _ "google.golang.org/protobuf/types/known/timestamppb" io "io" @@ -138,40 +138,40 @@ func (m *RewardHistory) GetDenom() string { } func init() { - proto.RegisterType((*Params)(nil), "alliance.alliance.Params") - proto.RegisterType((*RewardHistory)(nil), "alliance.alliance.RewardHistory") + proto.RegisterType((*Params)(nil), "alliance.Params") + proto.RegisterType((*RewardHistory)(nil), "alliance.RewardHistory") } func init() { proto.RegisterFile("alliance/params.proto", fileDescriptor_3dc4a5b6d277cc53) } var fileDescriptor_3dc4a5b6d277cc53 = []byte{ - // 413 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x92, 0x31, 0xaf, 0xd3, 0x30, - 0x10, 0xc7, 0x93, 0x42, 0x2b, 0x6a, 0x84, 0x50, 0xa3, 0x56, 0x6a, 0x3b, 0x24, 0xa8, 0x03, 0x62, - 0x69, 0x82, 0x60, 0x43, 0x4c, 0x25, 0x03, 0xb0, 0x80, 0xa2, 0x4e, 0x08, 0x11, 0xb9, 0xc9, 0x11, - 0xac, 0xc6, 0x71, 0x64, 0xbb, 0xd0, 0x4c, 0x7c, 0x85, 0x8e, 0x2c, 0x48, 0x7c, 0x08, 0x3e, 0x44, - 0xc7, 0x8a, 0x09, 0x31, 0x14, 0xd4, 0x2e, 0x7c, 0x8c, 0x27, 0xdb, 0xc9, 0x7b, 0x55, 0xdf, 0xf2, - 0xa6, 0xdc, 0xe5, 0x7f, 0xfe, 0xfd, 0xef, 0x7c, 0x46, 0x03, 0x9c, 0xe7, 0x04, 0x17, 0x09, 0x04, - 0x25, 0xe6, 0x98, 0x0a, 0xbf, 0xe4, 0x4c, 0x32, 0xa7, 0xd7, 0xfc, 0xf6, 0x9b, 0x60, 0xdc, 0xcf, - 0x58, 0xc6, 0xb4, 0x1a, 0xa8, 0xc8, 0x14, 0x8e, 0x47, 0x09, 0x13, 0x94, 0x89, 0xd8, 0x08, 0x26, - 0xa9, 0x25, 0x37, 0x63, 0x2c, 0xcb, 0x21, 0xd0, 0xd9, 0x62, 0xf5, 0x31, 0x48, 0x57, 0x1c, 0x4b, - 0xc2, 0x8a, 0x5a, 0xf7, 0xce, 0x75, 0x49, 0x28, 0x08, 0x89, 0x69, 0x69, 0x0a, 0x26, 0xdf, 0x5b, - 0xa8, 0xf3, 0x56, 0x77, 0xe5, 0xbc, 0x41, 0x3d, 0x0e, 0x5f, 0x30, 0x4f, 0xe3, 0x14, 0x72, 0x5c, - 0xc5, 0xaa, 0x74, 0x68, 0x3f, 0xb0, 0x1f, 0xdd, 0x7d, 0x32, 0xf2, 0x0d, 0xc7, 0x6f, 0x38, 0x7e, - 0x58, 0xfb, 0xcc, 0xee, 0x6c, 0xf7, 0x9e, 0xf5, 0xed, 0xaf, 0x67, 0x47, 0xf7, 0xcd, 0xe9, 0x50, - 0x1d, 0x9e, 0x13, 0x0a, 0xce, 0x7b, 0x34, 0x94, 0x78, 0x09, 0x31, 0xc7, 0x12, 0xe2, 0x24, 0xc7, - 0x84, 0xc6, 0xa4, 0x90, 0xc0, 0x3f, 0xe3, 0x7c, 0xd8, 0xba, 0x39, 0x77, 0xa0, 0x20, 0x11, 0x96, - 0xf0, 0x42, 0x21, 0x5e, 0xd5, 0x04, 0xe7, 0x03, 0x1a, 0xe5, 0x58, 0xc8, 0xf8, 0xdc, 0x42, 0xb7, - 0x7d, 0x4b, 0xe3, 0xc7, 0xd7, 0xf0, 0xf3, 0x66, 0x7c, 0xc3, 0xdf, 0x68, 0xbe, 0xc2, 0xcc, 0x4f, - 0x3d, 0x54, 0xd5, 0xb3, 0xdb, 0xff, 0x7f, 0x78, 0xf6, 0xe4, 0x2b, 0xba, 0x17, 0xe9, 0xb1, 0x5e, - 0x12, 0x21, 0x19, 0xaf, 0x9c, 0x3e, 0x6a, 0xa7, 0x50, 0x30, 0xaa, 0x6f, 0xa6, 0x1b, 0x99, 0xc4, - 0x89, 0x50, 0x9b, 0x14, 0x29, 0xac, 0xf5, 0x5c, 0xdd, 0xd9, 0x73, 0x05, 0xff, 0xb3, 0xf7, 0x1e, - 0x66, 0x44, 0x7e, 0x5a, 0x2d, 0xfc, 0x84, 0xd1, 0x7a, 0x6f, 0xf5, 0x67, 0x2a, 0xd2, 0x65, 0x20, - 0xab, 0x12, 0x84, 0x1f, 0x42, 0xf2, 0xeb, 0xe7, 0x14, 0xd5, 0x6b, 0x0d, 0x21, 0x89, 0x0c, 0xca, - 0x34, 0x30, 0x7b, 0xbd, 0x3d, 0xb8, 0xf6, 0xee, 0xe0, 0xda, 0xff, 0x0e, 0xae, 0xbd, 0x39, 0xba, - 0xd6, 0xee, 0xe8, 0x5a, 0xbf, 0x8f, 0xae, 0xf5, 0xee, 0xf1, 0x09, 0x5c, 0x02, 0xe7, 0x78, 0x4a, - 0x59, 0x01, 0x55, 0x70, 0xf9, 0xda, 0xd6, 0x57, 0xa1, 0xb6, 0x5a, 0x74, 0xf4, 0x3d, 0x3c, 0xbd, - 0x08, 0x00, 0x00, 0xff, 0xff, 0x6b, 0xdc, 0xef, 0x87, 0x91, 0x02, 0x00, 0x00, + // 412 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x92, 0x3f, 0x8f, 0xd3, 0x30, + 0x18, 0xc6, 0x93, 0x42, 0xab, 0xd6, 0x08, 0x21, 0xa2, 0x56, 0x6a, 0x3b, 0x24, 0xa8, 0x03, 0x62, + 0x69, 0x82, 0x60, 0x43, 0x4c, 0x25, 0x03, 0xb0, 0x80, 0xa2, 0x4e, 0x08, 0x11, 0xb9, 0xc9, 0x4b, + 0xb0, 0x1a, 0xc7, 0x91, 0xed, 0x42, 0x33, 0xf1, 0x15, 0x3a, 0xb2, 0x20, 0xf1, 0x21, 0xf8, 0x10, + 0x1d, 0x2b, 0x26, 0x74, 0x43, 0xef, 0xd4, 0x2e, 0xf7, 0x31, 0x4e, 0xb6, 0xd3, 0xbb, 0xaa, 0xb7, + 0xdc, 0x14, 0xbf, 0x7e, 0x5e, 0xff, 0x9e, 0xf7, 0x4f, 0x50, 0x0f, 0xe7, 0x39, 0xc1, 0x45, 0x02, + 0x41, 0x89, 0x39, 0xa6, 0xc2, 0x2f, 0x39, 0x93, 0xcc, 0x69, 0x1f, 0xae, 0x87, 0xdd, 0x8c, 0x65, + 0x4c, 0x5f, 0x06, 0xea, 0x64, 0xf4, 0xe1, 0x20, 0x61, 0x82, 0x32, 0x11, 0x1b, 0xc1, 0x04, 0xb5, + 0xe4, 0x66, 0x8c, 0x65, 0x39, 0x04, 0x3a, 0x9a, 0x2d, 0xbe, 0x06, 0xe9, 0x82, 0x63, 0x49, 0x58, + 0x51, 0xeb, 0xde, 0xa9, 0x2e, 0x09, 0x05, 0x21, 0x31, 0x2d, 0x4d, 0xc2, 0xe8, 0x77, 0x03, 0xb5, + 0x3e, 0xea, 0x62, 0x9c, 0x0f, 0xe8, 0x31, 0x87, 0x1f, 0x98, 0xa7, 0x71, 0x0a, 0x39, 0xae, 0x62, + 0x95, 0xda, 0xb7, 0x9f, 0xd8, 0xcf, 0x1e, 0xbc, 0x18, 0xf8, 0x86, 0xe3, 0x1f, 0x38, 0x7e, 0x58, + 0xfb, 0x4c, 0xda, 0xeb, 0xad, 0x67, 0xfd, 0x3a, 0xf7, 0xec, 0xe8, 0x91, 0x79, 0x1d, 0xaa, 0xc7, + 0x53, 0x42, 0xc1, 0xf9, 0x8c, 0xfa, 0x12, 0xcf, 0x21, 0xe6, 0x58, 0x42, 0x9c, 0xe4, 0x98, 0xd0, + 0x98, 0x14, 0x12, 0xf8, 0x77, 0x9c, 0xf7, 0x1b, 0x77, 0xe7, 0xf6, 0x14, 0x24, 0xc2, 0x12, 0xde, + 0x28, 0xc4, 0xbb, 0x9a, 0xe0, 0x7c, 0x41, 0x83, 0x1c, 0x0b, 0x19, 0x9f, 0x5a, 0xe8, 0xb2, 0xef, + 0x69, 0xfc, 0xf0, 0x16, 0x7e, 0x7a, 0x68, 0xdf, 0xf0, 0x57, 0x9a, 0xaf, 0x30, 0xd3, 0x63, 0x0f, + 0x95, 0xf5, 0xea, 0xfe, 0xe5, 0x1f, 0xcf, 0x1e, 0xfd, 0x44, 0x0f, 0x23, 0xdd, 0xd6, 0x5b, 0x22, + 0x24, 0xe3, 0x95, 0xd3, 0x45, 0xcd, 0x14, 0x0a, 0x46, 0xf5, 0x64, 0x3a, 0x91, 0x09, 0x9c, 0x08, + 0x35, 0x49, 0x91, 0xc2, 0x52, 0xf7, 0xd5, 0x99, 0xbc, 0x56, 0xf0, 0xb3, 0xad, 0xf7, 0x34, 0x23, + 0xf2, 0xdb, 0x62, 0xe6, 0x27, 0x8c, 0xd6, 0x7b, 0xab, 0x3f, 0x63, 0x91, 0xce, 0x03, 0x59, 0x95, + 0x20, 0xfc, 0x10, 0x92, 0x7f, 0x7f, 0xc7, 0xa8, 0x5e, 0x6b, 0x08, 0x49, 0x64, 0x50, 0xa6, 0x80, + 0xc9, 0xfb, 0xf5, 0xce, 0xb5, 0x37, 0x3b, 0xd7, 0xbe, 0xd8, 0xb9, 0xf6, 0x6a, 0xef, 0x5a, 0x9b, + 0xbd, 0x6b, 0xfd, 0xdf, 0xbb, 0xd6, 0xa7, 0xe7, 0x47, 0x70, 0x09, 0x9c, 0xe3, 0x31, 0x65, 0x05, + 0x54, 0xc1, 0xf5, 0x4f, 0xb6, 0xbc, 0x39, 0x6a, 0xab, 0x59, 0x4b, 0xcf, 0xe1, 0xe5, 0x55, 0x00, + 0x00, 0x00, 0xff, 0xff, 0xfe, 0x86, 0x08, 0x32, 0x88, 0x02, 0x00, 0x00, } func (this *Params) Equal(that interface{}) bool { @@ -251,7 +251,7 @@ func (m *Params) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - n1, err1 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.LastTakeRateClaimTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.LastTakeRateClaimTime):]) + n1, err1 := github_com_cosmos_gogoproto_types.StdTimeMarshalTo(m.LastTakeRateClaimTime, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdTime(m.LastTakeRateClaimTime):]) if err1 != nil { return 0, err1 } @@ -259,7 +259,7 @@ func (m *Params) MarshalToSizedBuffer(dAtA []byte) (int, error) { i = encodeVarintParams(dAtA, i, uint64(n1)) i-- dAtA[i] = 0x1a - n2, err2 := github_com_gogo_protobuf_types.StdDurationMarshalTo(m.TakeRateClaimInterval, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdDuration(m.TakeRateClaimInterval):]) + n2, err2 := github_com_cosmos_gogoproto_types.StdDurationMarshalTo(m.TakeRateClaimInterval, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdDuration(m.TakeRateClaimInterval):]) if err2 != nil { return 0, err2 } @@ -267,7 +267,7 @@ func (m *Params) MarshalToSizedBuffer(dAtA []byte) (int, error) { i = encodeVarintParams(dAtA, i, uint64(n2)) i-- dAtA[i] = 0x12 - n3, err3 := github_com_gogo_protobuf_types.StdDurationMarshalTo(m.RewardDelayTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdDuration(m.RewardDelayTime):]) + n3, err3 := github_com_cosmos_gogoproto_types.StdDurationMarshalTo(m.RewardDelayTime, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdDuration(m.RewardDelayTime):]) if err3 != nil { return 0, err3 } @@ -335,11 +335,11 @@ func (m *Params) Size() (n int) { } var l int _ = l - l = github_com_gogo_protobuf_types.SizeOfStdDuration(m.RewardDelayTime) + l = github_com_cosmos_gogoproto_types.SizeOfStdDuration(m.RewardDelayTime) n += 1 + l + sovParams(uint64(l)) - l = github_com_gogo_protobuf_types.SizeOfStdDuration(m.TakeRateClaimInterval) + l = github_com_cosmos_gogoproto_types.SizeOfStdDuration(m.TakeRateClaimInterval) n += 1 + l + sovParams(uint64(l)) - l = github_com_gogo_protobuf_types.SizeOfStdTime(m.LastTakeRateClaimTime) + l = github_com_cosmos_gogoproto_types.SizeOfStdTime(m.LastTakeRateClaimTime) n += 1 + l + sovParams(uint64(l)) return n } @@ -423,7 +423,7 @@ func (m *Params) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := github_com_gogo_protobuf_types.StdDurationUnmarshal(&m.RewardDelayTime, dAtA[iNdEx:postIndex]); err != nil { + if err := github_com_cosmos_gogoproto_types.StdDurationUnmarshal(&m.RewardDelayTime, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex @@ -456,7 +456,7 @@ func (m *Params) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := github_com_gogo_protobuf_types.StdDurationUnmarshal(&m.TakeRateClaimInterval, dAtA[iNdEx:postIndex]); err != nil { + if err := github_com_cosmos_gogoproto_types.StdDurationUnmarshal(&m.TakeRateClaimInterval, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex @@ -489,7 +489,7 @@ func (m *Params) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(&m.LastTakeRateClaimTime, dAtA[iNdEx:postIndex]); err != nil { + if err := github_com_cosmos_gogoproto_types.StdTimeUnmarshal(&m.LastTakeRateClaimTime, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex diff --git a/x/alliance/types/query.pb.go b/x/alliance/types/query.pb.go index e8bef97d..c2378d1c 100644 --- a/x/alliance/types/query.pb.go +++ b/x/alliance/types/query.pb.go @@ -10,8 +10,8 @@ import ( types "github.com/cosmos/cosmos-sdk/types" query "github.com/cosmos/cosmos-sdk/types/query" _ "github.com/cosmos/gogoproto/gogoproto" - grpc1 "github.com/gogo/protobuf/grpc" - proto "github.com/gogo/protobuf/proto" + grpc1 "github.com/cosmos/gogoproto/grpc" + proto "github.com/cosmos/gogoproto/proto" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" @@ -299,6 +299,7 @@ func (m *QueryAllianceResponse) GetAlliance() *AllianceAsset { return nil } +// Deprecated: Do not use. type QueryIBCAllianceRequest struct { Hash string `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"` } @@ -684,6 +685,7 @@ func (m *QueryAllianceDelegationRequest) XXX_DiscardUnknown() { var xxx_messageInfo_QueryAllianceDelegationRequest proto.InternalMessageInfo +// Deprecated: Do not use. type QueryIBCAllianceDelegationRequest struct { DelegatorAddr string `protobuf:"bytes,1,opt,name=delegator_addr,json=delegatorAddr,proto3" json:"delegator_addr,omitempty"` ValidatorAddr string `protobuf:"bytes,2,opt,name=validator_addr,json=validatorAddr,proto3" json:"validator_addr,omitempty"` @@ -809,6 +811,7 @@ func (m *QueryAllianceDelegationRewardsRequest) XXX_DiscardUnknown() { var xxx_messageInfo_QueryAllianceDelegationRewardsRequest proto.InternalMessageInfo +// Deprecated: Do not use. type QueryIBCAllianceDelegationRewardsRequest struct { DelegatorAddr string `protobuf:"bytes,1,opt,name=delegator_addr,json=delegatorAddr,proto3" json:"delegator_addr,omitempty"` ValidatorAddr string `protobuf:"bytes,2,opt,name=validator_addr,json=validatorAddr,proto3" json:"validator_addr,omitempty"` @@ -969,115 +972,114 @@ func (m *QueryAllianceValidatorsResponse) XXX_DiscardUnknown() { var xxx_messageInfo_QueryAllianceValidatorsResponse proto.InternalMessageInfo func init() { - proto.RegisterType((*QueryParamsRequest)(nil), "alliance.alliance.QueryParamsRequest") - proto.RegisterType((*QueryParamsResponse)(nil), "alliance.alliance.QueryParamsResponse") - proto.RegisterType((*QueryAlliancesRequest)(nil), "alliance.alliance.QueryAlliancesRequest") - proto.RegisterType((*QueryAlliancesResponse)(nil), "alliance.alliance.QueryAlliancesResponse") - proto.RegisterType((*QueryAllianceRequest)(nil), "alliance.alliance.QueryAllianceRequest") - proto.RegisterType((*QueryAllianceResponse)(nil), "alliance.alliance.QueryAllianceResponse") - proto.RegisterType((*QueryIBCAllianceRequest)(nil), "alliance.alliance.QueryIBCAllianceRequest") - proto.RegisterType((*QueryAllianceValidatorRequest)(nil), "alliance.alliance.QueryAllianceValidatorRequest") - proto.RegisterType((*QueryAllAllianceValidatorsRequest)(nil), "alliance.alliance.QueryAllAllianceValidatorsRequest") - proto.RegisterType((*QueryAllAlliancesDelegationsRequest)(nil), "alliance.alliance.QueryAllAlliancesDelegationsRequest") - proto.RegisterType((*QueryAlliancesDelegationsRequest)(nil), "alliance.alliance.QueryAlliancesDelegationsRequest") - proto.RegisterType((*QueryAlliancesDelegationByValidatorRequest)(nil), "alliance.alliance.QueryAlliancesDelegationByValidatorRequest") - proto.RegisterType((*DelegationResponse)(nil), "alliance.alliance.DelegationResponse") - proto.RegisterType((*QueryAlliancesDelegationsResponse)(nil), "alliance.alliance.QueryAlliancesDelegationsResponse") - proto.RegisterType((*QueryAllianceDelegationRequest)(nil), "alliance.alliance.QueryAllianceDelegationRequest") - proto.RegisterType((*QueryIBCAllianceDelegationRequest)(nil), "alliance.alliance.QueryIBCAllianceDelegationRequest") - proto.RegisterType((*QueryAllianceDelegationResponse)(nil), "alliance.alliance.QueryAllianceDelegationResponse") - proto.RegisterType((*QueryAllianceDelegationRewardsRequest)(nil), "alliance.alliance.QueryAllianceDelegationRewardsRequest") - proto.RegisterType((*QueryIBCAllianceDelegationRewardsRequest)(nil), "alliance.alliance.QueryIBCAllianceDelegationRewardsRequest") - proto.RegisterType((*QueryAllianceDelegationRewardsResponse)(nil), "alliance.alliance.QueryAllianceDelegationRewardsResponse") - proto.RegisterType((*QueryAllianceValidatorResponse)(nil), "alliance.alliance.QueryAllianceValidatorResponse") - proto.RegisterType((*QueryAllianceValidatorsResponse)(nil), "alliance.alliance.QueryAllianceValidatorsResponse") + proto.RegisterType((*QueryParamsRequest)(nil), "alliance.QueryParamsRequest") + proto.RegisterType((*QueryParamsResponse)(nil), "alliance.QueryParamsResponse") + proto.RegisterType((*QueryAlliancesRequest)(nil), "alliance.QueryAlliancesRequest") + proto.RegisterType((*QueryAlliancesResponse)(nil), "alliance.QueryAlliancesResponse") + proto.RegisterType((*QueryAllianceRequest)(nil), "alliance.QueryAllianceRequest") + proto.RegisterType((*QueryAllianceResponse)(nil), "alliance.QueryAllianceResponse") + proto.RegisterType((*QueryIBCAllianceRequest)(nil), "alliance.QueryIBCAllianceRequest") + proto.RegisterType((*QueryAllianceValidatorRequest)(nil), "alliance.QueryAllianceValidatorRequest") + proto.RegisterType((*QueryAllAllianceValidatorsRequest)(nil), "alliance.QueryAllAllianceValidatorsRequest") + proto.RegisterType((*QueryAllAlliancesDelegationsRequest)(nil), "alliance.QueryAllAlliancesDelegationsRequest") + proto.RegisterType((*QueryAlliancesDelegationsRequest)(nil), "alliance.QueryAlliancesDelegationsRequest") + proto.RegisterType((*QueryAlliancesDelegationByValidatorRequest)(nil), "alliance.QueryAlliancesDelegationByValidatorRequest") + proto.RegisterType((*DelegationResponse)(nil), "alliance.DelegationResponse") + proto.RegisterType((*QueryAlliancesDelegationsResponse)(nil), "alliance.QueryAlliancesDelegationsResponse") + proto.RegisterType((*QueryAllianceDelegationRequest)(nil), "alliance.QueryAllianceDelegationRequest") + proto.RegisterType((*QueryIBCAllianceDelegationRequest)(nil), "alliance.QueryIBCAllianceDelegationRequest") + proto.RegisterType((*QueryAllianceDelegationResponse)(nil), "alliance.QueryAllianceDelegationResponse") + proto.RegisterType((*QueryAllianceDelegationRewardsRequest)(nil), "alliance.QueryAllianceDelegationRewardsRequest") + proto.RegisterType((*QueryIBCAllianceDelegationRewardsRequest)(nil), "alliance.QueryIBCAllianceDelegationRewardsRequest") + proto.RegisterType((*QueryAllianceDelegationRewardsResponse)(nil), "alliance.QueryAllianceDelegationRewardsResponse") + proto.RegisterType((*QueryAllianceValidatorResponse)(nil), "alliance.QueryAllianceValidatorResponse") + proto.RegisterType((*QueryAllianceValidatorsResponse)(nil), "alliance.QueryAllianceValidatorsResponse") } func init() { proto.RegisterFile("alliance/query.proto", fileDescriptor_c4e633a06a64e02e) } var fileDescriptor_c4e633a06a64e02e = []byte{ - // 1282 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x58, 0xcd, 0x6f, 0x1b, 0x45, - 0x14, 0xf7, 0x38, 0x69, 0x9a, 0xbc, 0x40, 0x69, 0x5f, 0x13, 0x92, 0x98, 0xc4, 0x0e, 0x5b, 0xf2, - 0x41, 0xd4, 0x78, 0x9b, 0x34, 0x7c, 0xb4, 0x7c, 0x88, 0x7c, 0x34, 0xa5, 0xad, 0x52, 0xa5, 0xae, - 0x00, 0xa9, 0x97, 0x68, 0xec, 0x5d, 0x39, 0x56, 0x6d, 0xaf, 0xbb, 0xbb, 0x69, 0x1b, 0xa2, 0x08, - 0x89, 0x53, 0x8f, 0x48, 0x5c, 0xf8, 0xb8, 0xf4, 0x04, 0x27, 0xb8, 0x72, 0xe0, 0xc8, 0xa5, 0x12, - 0x20, 0x55, 0x02, 0x01, 0x42, 0x34, 0x42, 0x09, 0x48, 0xfc, 0x19, 0xc8, 0xb3, 0x33, 0xbb, 0xe3, - 0xdd, 0xf5, 0xc7, 0x26, 0x36, 0x12, 0xa7, 0x6e, 0xc7, 0xf3, 0xde, 0xfb, 0xfd, 0xde, 0xfb, 0xcd, - 0x9b, 0x37, 0x81, 0x01, 0x5a, 0x2c, 0x16, 0x68, 0x39, 0xa7, 0xab, 0x77, 0xb6, 0x74, 0x73, 0x3b, - 0x5d, 0x31, 0x0d, 0xdb, 0xc0, 0x53, 0x62, 0x35, 0x2d, 0x3e, 0x12, 0x03, 0x79, 0x23, 0x6f, 0xb0, - 0x5f, 0xd5, 0xea, 0x97, 0xb3, 0x31, 0x31, 0x9a, 0x37, 0x8c, 0x7c, 0x51, 0x57, 0x69, 0xa5, 0xa0, - 0xd2, 0x72, 0xd9, 0xb0, 0xa9, 0x5d, 0x30, 0xca, 0x16, 0xff, 0x75, 0x26, 0x67, 0x58, 0x25, 0xc3, - 0x52, 0xb3, 0xd4, 0xe2, 0xfe, 0xd5, 0xbb, 0x73, 0x59, 0xdd, 0xa6, 0x73, 0x6a, 0x85, 0xe6, 0x0b, - 0x65, 0xb6, 0x99, 0xef, 0x1d, 0x74, 0x81, 0x54, 0xa8, 0x49, 0x4b, 0xc2, 0xc5, 0x90, 0xbb, 0xec, - 0x42, 0x72, 0x7e, 0x48, 0xca, 0xbe, 0x85, 0xd7, 0x9c, 0x51, 0x10, 0xfe, 0x12, 0xae, 0xa1, 0xa6, - 0x17, 0xf5, 0xbc, 0x8c, 0x4b, 0x19, 0x00, 0xbc, 0x51, 0x45, 0xb3, 0xce, 0x22, 0x65, 0xf4, 0x3b, - 0x5b, 0xba, 0x65, 0x2b, 0xd7, 0xe1, 0x74, 0xcd, 0xaa, 0x55, 0x31, 0xca, 0x96, 0x8e, 0xaf, 0x40, - 0x8f, 0x83, 0x68, 0x98, 0x8c, 0x93, 0xe9, 0xfe, 0xf9, 0x91, 0x74, 0x20, 0x39, 0x69, 0xc7, 0x64, - 0xa9, 0xfb, 0xd1, 0x5e, 0x2a, 0x96, 0xe1, 0xdb, 0x95, 0x0d, 0x18, 0x64, 0xfe, 0x16, 0xf9, 0x2e, - 0x11, 0x08, 0x57, 0x01, 0x3c, 0xfa, 0xdc, 0xeb, 0x64, 0xda, 0xe1, 0x93, 0xae, 0xf2, 0x49, 0x3b, - 0xb5, 0xe0, 0xac, 0xd2, 0xeb, 0x34, 0xaf, 0x73, 0xdb, 0x8c, 0x64, 0xa9, 0x7c, 0x49, 0xe0, 0x59, - 0x7f, 0x04, 0x0e, 0x7a, 0x05, 0xfa, 0x04, 0xb8, 0x2a, 0xee, 0xae, 0xe9, 0xfe, 0xf9, 0xf1, 0x10, - 0xdc, 0xc2, 0x70, 0xd1, 0xb2, 0x74, 0x9b, 0xc3, 0xf7, 0x0c, 0xf1, 0x72, 0x0d, 0xd0, 0x38, 0x03, - 0x3a, 0xd5, 0x14, 0xa8, 0x03, 0xa1, 0x06, 0xe9, 0x59, 0x18, 0xa8, 0x01, 0x2a, 0x32, 0x31, 0x00, - 0xc7, 0x34, 0xbd, 0x6c, 0x94, 0x58, 0x12, 0xfa, 0x32, 0xce, 0x7f, 0x94, 0x77, 0x7c, 0x89, 0x73, - 0x59, 0xbd, 0x0e, 0xbd, 0x02, 0x1c, 0x4f, 0x5b, 0x53, 0x52, 0x19, 0xd7, 0x42, 0x99, 0x85, 0x21, - 0xe6, 0xf6, 0xca, 0xd2, 0xb2, 0x1f, 0x07, 0x42, 0xf7, 0x26, 0xb5, 0x36, 0x39, 0x0c, 0xf6, 0xad, - 0xac, 0xc3, 0x58, 0x0d, 0x8a, 0x77, 0x69, 0xb1, 0xa0, 0x51, 0xdb, 0x30, 0x85, 0xd1, 0x04, 0x9c, - 0xb8, 0x2b, 0xd6, 0x36, 0xa8, 0xa6, 0x99, 0xdc, 0xfc, 0x69, 0x77, 0x75, 0x51, 0xd3, 0xcc, 0x8b, - 0xbd, 0x0f, 0x1e, 0xa6, 0x62, 0xff, 0x3c, 0x4c, 0xc5, 0x94, 0x2d, 0x78, 0x5e, 0x78, 0x0c, 0x38, - 0x6d, 0xb7, 0x38, 0xa4, 0xb0, 0xf7, 0xe0, 0x8c, 0x3f, 0xac, 0xb5, 0xe2, 0x9d, 0x89, 0xce, 0x05, - 0xfe, 0x9c, 0xc0, 0x78, 0xad, 0x3e, 0x43, 0xc2, 0x4e, 0xc0, 0x09, 0x7e, 0x40, 0x7d, 0x59, 0x74, - 0x57, 0xab, 0x59, 0xf4, 0xa1, 0x8b, 0xb7, 0x01, 0xdd, 0x0f, 0x04, 0x66, 0xea, 0xa1, 0x5b, 0xda, - 0x0e, 0xab, 0x76, 0x2b, 0x38, 0x83, 0xa2, 0x88, 0x87, 0x88, 0xc2, 0x47, 0xa7, 0xab, 0x0d, 0x74, - 0x3e, 0x23, 0x80, 0x1e, 0x01, 0xf7, 0xc8, 0x2c, 0x03, 0x78, 0xfd, 0x8f, 0x57, 0x75, 0x2c, 0xe4, - 0xd0, 0x48, 0xdc, 0x9d, 0x36, 0x20, 0x99, 0xe1, 0x05, 0x38, 0x9e, 0xa5, 0x45, 0x76, 0xec, 0xe2, - 0xbc, 0x07, 0xca, 0x50, 0x05, 0xc8, 0x65, 0xa3, 0x20, 0xac, 0xc5, 0xfe, 0x8b, 0xdd, 0x0c, 0xdc, - 0xb7, 0xc4, 0x93, 0x7e, 0x88, 0x12, 0x38, 0xd6, 0x35, 0xe8, 0x97, 0x7a, 0x35, 0x6f, 0x5b, 0x13, - 0x0d, 0xc1, 0x0a, 0x5b, 0x1e, 0x56, 0xb6, 0x6f, 0x5f, 0xf7, 0xfa, 0x85, 0x40, 0xb2, 0x06, 0xbd, - 0x1c, 0xbf, 0x13, 0xea, 0x70, 0xdb, 0x62, 0x97, 0xd4, 0x16, 0x7d, 0x9a, 0xe9, 0x6e, 0x83, 0x66, - 0x7e, 0x15, 0x65, 0x91, 0x5a, 0x62, 0xa7, 0xb9, 0x89, 0x56, 0xdb, 0xe5, 0xb5, 0xda, 0x0e, 0x30, - 0x2b, 0x43, 0xaa, 0x6e, 0xc5, 0xb8, 0xda, 0xae, 0x85, 0x9c, 0x8c, 0x48, 0x62, 0x93, 0xcc, 0x95, - 0x27, 0x04, 0x26, 0xea, 0x06, 0xbc, 0x47, 0x4d, 0xcd, 0xfa, 0x7f, 0x2b, 0x65, 0x8f, 0xc0, 0x74, - 0x23, 0xa5, 0x74, 0x90, 0xe2, 0x7f, 0x23, 0x98, 0x4f, 0x08, 0x4c, 0x36, 0x2b, 0x20, 0x17, 0x8e, - 0x06, 0xc7, 0x4d, 0x67, 0x89, 0xb7, 0xa8, 0x06, 0xdd, 0x50, 0xad, 0x2a, 0xe5, 0xf7, 0xbd, 0xd4, - 0x54, 0xbe, 0x60, 0x6f, 0x6e, 0x65, 0xd3, 0x39, 0xa3, 0xa4, 0xf2, 0xc1, 0xd5, 0xf9, 0x67, 0xd6, - 0xd2, 0x6e, 0xab, 0xf6, 0x76, 0x45, 0xb7, 0x98, 0x41, 0x46, 0xb8, 0x96, 0xa0, 0x7d, 0x17, 0xf7, - 0xb5, 0x1f, 0xe9, 0x6e, 0xe2, 0x90, 0x5a, 0x1b, 0x45, 0xf0, 0x16, 0x0c, 0xd9, 0x86, 0x4d, 0x8b, - 0x1b, 0x9e, 0x72, 0x37, 0xac, 0x4d, 0x6a, 0xea, 0xd6, 0x70, 0x9c, 0x31, 0x19, 0x0d, 0x65, 0xb2, - 0xa2, 0xe7, 0xa4, 0xd6, 0x3e, 0xc8, 0x5c, 0x78, 0xe9, 0xb9, 0xc9, 0x1c, 0xe0, 0x1a, 0x9c, 0xf4, - 0x20, 0x70, 0xa7, 0x5d, 0x2d, 0x3b, 0x7d, 0xc6, 0xb5, 0xe5, 0xee, 0x2e, 0xc1, 0x53, 0x0e, 0x54, - 0xcb, 0xa6, 0xb7, 0x75, 0x6d, 0xb8, 0xbb, 0x65, 0x57, 0xfd, 0xcc, 0xee, 0x26, 0x33, 0x93, 0xb2, - 0xf8, 0x23, 0xf1, 0xb5, 0x04, 0x79, 0xf4, 0xe2, 0x69, 0x7c, 0x0f, 0xc0, 0xc5, 0x21, 0x8a, 0x3b, - 0x17, 0xd2, 0x12, 0x1a, 0x57, 0x43, 0xb4, 0x07, 0xcf, 0x55, 0xdb, 0xae, 0x22, 0x8f, 0xcf, 0xfc, - 0xa7, 0x08, 0xc7, 0x18, 0x0e, 0xbc, 0x0f, 0x3d, 0xce, 0xfb, 0x03, 0x27, 0xea, 0x61, 0xad, 0x79, - 0xe8, 0x24, 0x26, 0x9b, 0x6d, 0x73, 0x02, 0x2b, 0xa9, 0x0f, 0x7f, 0xfa, 0xeb, 0xe3, 0xf8, 0x08, - 0x0e, 0xa9, 0xb6, 0x6e, 0x9a, 0xd4, 0x7d, 0x81, 0x59, 0xfc, 0x89, 0x86, 0xef, 0x43, 0x9f, 0x7b, - 0xa1, 0xe3, 0x74, 0xb3, 0x44, 0xb9, 0xf1, 0x5f, 0x6c, 0x61, 0x27, 0x87, 0x30, 0xcc, 0x20, 0x20, - 0x9e, 0xf4, 0x43, 0xc0, 0x07, 0x04, 0xfa, 0xa5, 0x66, 0x84, 0x33, 0xf5, 0x9c, 0x06, 0xc7, 0xfd, - 0x44, 0x53, 0xa8, 0x6e, 0xfc, 0x33, 0x2c, 0xfe, 0x18, 0x3e, 0x17, 0x48, 0x41, 0x21, 0x9b, 0x53, - 0x77, 0xaa, 0xcd, 0x68, 0x17, 0xbf, 0x22, 0x30, 0x54, 0x67, 0xb8, 0xc6, 0x97, 0x1b, 0x84, 0x6a, - 0x30, 0x16, 0x27, 0x16, 0x9a, 0xe6, 0x28, 0x64, 0x82, 0x52, 0x5e, 0x60, 0x70, 0x93, 0x38, 0x1a, - 0x80, 0x2b, 0x0f, 0x46, 0x5f, 0x13, 0x38, 0x15, 0x50, 0x2f, 0x9e, 0x8b, 0x20, 0x74, 0x07, 0x63, - 0xf4, 0xa3, 0xa1, 0x2c, 0x30, 0x80, 0x69, 0x3c, 0x1b, 0x00, 0xe8, 0x9d, 0x16, 0x75, 0xa7, 0xb6, - 0x97, 0xed, 0xe2, 0x17, 0x04, 0x06, 0x43, 0x1f, 0x4d, 0xb8, 0xd0, 0x42, 0x7a, 0x03, 0x6f, 0xac, - 0xc4, 0x7c, 0xcb, 0xc0, 0xad, 0x16, 0x94, 0x20, 0x9d, 0xf3, 0x6f, 0x08, 0x9c, 0x0e, 0x29, 0x10, - 0x9e, 0x8f, 0x56, 0xcd, 0xa3, 0x48, 0xe0, 0x25, 0x86, 0x53, 0xc5, 0xd9, 0x46, 0x12, 0x50, 0x77, - 0x6a, 0x2f, 0xe8, 0x5d, 0x7c, 0x42, 0x20, 0xd9, 0xf8, 0x21, 0x84, 0x6f, 0x44, 0xc0, 0x13, 0x7c, - 0x40, 0x1d, 0x92, 0xce, 0x2a, 0xa3, 0xf3, 0x16, 0xbe, 0x19, 0x89, 0x4e, 0x50, 0x42, 0xdf, 0x13, - 0xc0, 0xe0, 0xd5, 0x8e, 0x4d, 0x25, 0x1c, 0x18, 0x87, 0x9b, 0x8b, 0x27, 0x38, 0x30, 0x2a, 0xd7, - 0x19, 0x8b, 0xb7, 0x71, 0xf5, 0x68, 0x2c, 0xaa, 0x3b, 0xca, 0x46, 0x69, 0x17, 0x7f, 0x26, 0x30, - 0x18, 0x3a, 0x89, 0xd5, 0x3f, 0x10, 0x8d, 0x46, 0xfc, 0x43, 0x71, 0xba, 0xc1, 0x38, 0x5d, 0xc3, - 0x2b, 0x47, 0xe4, 0x24, 0x35, 0xd2, 0x3f, 0x08, 0x8c, 0xd4, 0x9d, 0xbf, 0xf0, 0xd5, 0x28, 0x20, - 0xe5, 0x81, 0x34, 0x71, 0xe1, 0x10, 0x96, 0x9c, 0xe5, 0x55, 0xc6, 0x72, 0x05, 0x97, 0x02, 0x2c, - 0xf9, 0xa0, 0x16, 0xa1, 0x6a, 0x7f, 0x13, 0x18, 0x6d, 0x34, 0x3f, 0xe3, 0x6b, 0x11, 0x8b, 0xd7, - 0x2e, 0x92, 0x6b, 0x8c, 0xe4, 0x65, 0xbc, 0x74, 0x04, 0x92, 0x52, 0x19, 0x3f, 0x80, 0x5e, 0xf7, - 0x5a, 0x9e, 0x6a, 0x7e, 0xd5, 0x46, 0xbd, 0x93, 0xc7, 0x19, 0xda, 0x04, 0x0e, 0x07, 0xd0, 0xf2, - 0x44, 0x2f, 0x5d, 0x7d, 0xb4, 0x9f, 0x24, 0x8f, 0xf7, 0x93, 0xe4, 0xcf, 0xfd, 0x24, 0xf9, 0xe8, - 0x20, 0x19, 0x7b, 0x7c, 0x90, 0x8c, 0xfd, 0x76, 0x90, 0x8c, 0xdd, 0x3a, 0x27, 0xcd, 0xe1, 0xcc, - 0x7a, 0xb6, 0x64, 0x94, 0xf5, 0x6d, 0xd7, 0x87, 0x7a, 0xdf, 0xfb, 0x64, 0x53, 0x79, 0xb6, 0x87, - 0xfd, 0xc9, 0xf8, 0xfc, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x29, 0xb4, 0x46, 0xac, 0x29, 0x17, - 0x00, 0x00, + // 1280 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x58, 0xcf, 0x6f, 0x1b, 0x45, + 0x14, 0xf6, 0x38, 0x69, 0x9a, 0xbc, 0x40, 0x09, 0xaf, 0x0e, 0x76, 0x4c, 0xb2, 0x4e, 0xb7, 0xe4, + 0x07, 0x69, 0xe3, 0x6d, 0xd2, 0x72, 0x20, 0x48, 0x88, 0xb8, 0x49, 0x4a, 0x0b, 0x54, 0xc1, 0x45, + 0x1c, 0x7a, 0x89, 0xd6, 0xde, 0xc5, 0xb1, 0x6a, 0x7b, 0xdd, 0xdd, 0x4d, 0x4b, 0x14, 0xe5, 0xc2, + 0xa9, 0x47, 0x10, 0x1c, 0x90, 0x8a, 0x50, 0x2f, 0xfc, 0x03, 0x5c, 0x10, 0x67, 0x40, 0xaa, 0x80, + 0x43, 0x25, 0xa4, 0x0a, 0x90, 0xa8, 0xaa, 0x84, 0x03, 0x7f, 0x06, 0xf2, 0xec, 0xcc, 0xee, 0xec, + 0x2f, 0x67, 0x43, 0x1c, 0xa4, 0x9e, 0xea, 0xce, 0xce, 0x7b, 0xef, 0xfb, 0xde, 0xfb, 0xe6, 0xcd, + 0x9b, 0x40, 0x46, 0x6d, 0x34, 0xea, 0x6a, 0xab, 0xaa, 0x2b, 0xb7, 0xb7, 0x74, 0x73, 0xbb, 0xd8, + 0x36, 0x0d, 0xdb, 0xc0, 0x41, 0xbe, 0x9a, 0xcf, 0xd4, 0x8c, 0x9a, 0x41, 0x17, 0x95, 0xce, 0x2f, + 0xe7, 0x7b, 0x7e, 0xbc, 0x66, 0x18, 0xb5, 0x86, 0xae, 0xa8, 0xed, 0xba, 0xa2, 0xb6, 0x5a, 0x86, + 0xad, 0xda, 0x75, 0xa3, 0x65, 0xb1, 0xaf, 0x73, 0x55, 0xc3, 0x6a, 0x1a, 0x96, 0x52, 0x51, 0x2d, + 0xe6, 0x56, 0xb9, 0xb3, 0x50, 0xd1, 0x6d, 0x75, 0x41, 0x69, 0xab, 0xb5, 0x7a, 0x8b, 0x6e, 0x66, + 0x7b, 0x47, 0xdd, 0xf8, 0x6d, 0xd5, 0x54, 0x9b, 0xdc, 0x45, 0xd6, 0x5d, 0xe6, 0x3f, 0xd8, 0x07, + 0x49, 0xf4, 0xcd, 0xbd, 0x56, 0x8d, 0x3a, 0xf7, 0x97, 0x77, 0x0d, 0x35, 0xbd, 0xa1, 0xd7, 0x44, + 0x5c, 0x72, 0x06, 0xf0, 0xfd, 0x0e, 0x9a, 0x75, 0x1a, 0xa9, 0xac, 0xdf, 0xde, 0xd2, 0x2d, 0x5b, + 0x5e, 0x85, 0xd3, 0xbe, 0x55, 0xab, 0x6d, 0xb4, 0x2c, 0x1d, 0x8b, 0x30, 0xe0, 0x20, 0xca, 0x91, + 0x49, 0x32, 0x3b, 0xbc, 0x38, 0x52, 0x74, 0x91, 0x38, 0x3b, 0x4b, 0xfd, 0x0f, 0x9f, 0x14, 0x52, + 0x65, 0xb6, 0x4b, 0xde, 0x80, 0x51, 0xea, 0x66, 0x99, 0xed, 0xe2, 0xfe, 0x71, 0x0d, 0xc0, 0x63, + 0xcd, 0x9c, 0x4d, 0x17, 0x1d, 0x1a, 0xc5, 0x0e, 0x8d, 0xa2, 0x93, 0x79, 0x46, 0xa6, 0xb8, 0xae, + 0xd6, 0x74, 0x66, 0x5b, 0x16, 0x2c, 0xe5, 0xaf, 0x09, 0xbc, 0x14, 0x8c, 0xc0, 0xb0, 0xbe, 0x01, + 0x43, 0x1c, 0x5c, 0x07, 0x6e, 0xdf, 0xec, 0xf0, 0x62, 0xd6, 0x83, 0xcb, 0xf7, 0x2f, 0x5b, 0x96, + 0x6e, 0x33, 0xd4, 0xde, 0x7e, 0xbc, 0xe2, 0xc3, 0x97, 0xa6, 0xf8, 0x66, 0x0e, 0xc4, 0xe7, 0x44, + 0xf6, 0x01, 0x3c, 0x0f, 0x19, 0x1f, 0x3e, 0x9e, 0x80, 0x0c, 0x9c, 0xd0, 0xf4, 0x96, 0xd1, 0xa4, + 0xdc, 0x87, 0xca, 0xce, 0x7f, 0xe4, 0x77, 0x03, 0xf9, 0x72, 0xc9, 0x5c, 0x04, 0x57, 0x7d, 0x2c, + 0x5b, 0x71, 0x5c, 0xca, 0xee, 0x46, 0x79, 0x01, 0xb2, 0xd4, 0xdb, 0xd5, 0xd2, 0xe5, 0x60, 0x78, + 0x84, 0xfe, 0x4d, 0xd5, 0xda, 0x64, 0xd1, 0xe9, 0xef, 0xa5, 0x74, 0x8e, 0xc8, 0xeb, 0x30, 0xe1, + 0x03, 0xf0, 0xa1, 0xda, 0xa8, 0x6b, 0xaa, 0x6d, 0x98, 0xdc, 0x70, 0x0a, 0x4e, 0xdd, 0xe1, 0x6b, + 0x1b, 0xaa, 0xa6, 0x99, 0xcc, 0xc5, 0xf3, 0xee, 0xea, 0xb2, 0xa6, 0x99, 0x4b, 0x83, 0xf7, 0x1e, + 0x14, 0x52, 0xff, 0x3c, 0x28, 0xa4, 0xe4, 0x2d, 0x38, 0xc3, 0x3d, 0x86, 0x9c, 0xf6, 0x5a, 0x0e, + 0x42, 0xd8, 0xbb, 0x70, 0x36, 0x18, 0xd6, 0x5a, 0xf1, 0xc4, 0x7f, 0x7c, 0x81, 0xef, 0x13, 0x98, + 0xf4, 0x2b, 0x32, 0x22, 0xec, 0x14, 0x9c, 0x62, 0x27, 0x31, 0x90, 0x45, 0x77, 0xb5, 0x93, 0xc5, + 0x00, 0xba, 0x74, 0x0f, 0xd0, 0xfd, 0x4a, 0x60, 0x2e, 0x0e, 0x5d, 0x69, 0x3b, 0xaa, 0xda, 0x49, + 0x70, 0x86, 0x45, 0x91, 0x8e, 0x10, 0x45, 0x80, 0x4e, 0x5f, 0x0f, 0xe8, 0x7c, 0x46, 0x00, 0x3d, + 0x02, 0xee, 0x69, 0x59, 0x02, 0xf0, 0x1a, 0x1d, 0xab, 0x6a, 0xc6, 0x3b, 0x2f, 0x02, 0x65, 0xe7, + 0xe0, 0x0b, 0xbb, 0xf1, 0x75, 0x38, 0x59, 0x51, 0x1b, 0xf4, 0xa0, 0x39, 0x09, 0x1f, 0xf3, 0x21, + 0xe4, 0xd8, 0x2e, 0x1b, 0x75, 0x6e, 0xcd, 0xf7, 0x2f, 0xf5, 0x53, 0x4c, 0xdf, 0x12, 0x4f, 0xf1, + 0x11, 0x02, 0x60, 0x10, 0x57, 0x60, 0x58, 0xe8, 0xc5, 0xac, 0x3f, 0x8d, 0x47, 0x61, 0xe4, 0x26, + 0x2c, 0x9a, 0x68, 0xd6, 0xbb, 0x36, 0xf5, 0x98, 0x80, 0xe4, 0x03, 0x2d, 0xc6, 0x3f, 0x0e, 0x2d, + 0xb8, 0xfd, 0xaf, 0x4f, 0xe8, 0x7f, 0x01, 0x85, 0xf4, 0xf7, 0x40, 0x21, 0x7f, 0xf0, 0x6a, 0x08, + 0x4d, 0xf0, 0xb8, 0xb9, 0xf1, 0xe6, 0xda, 0xe7, 0x35, 0xd7, 0x9e, 0x31, 0x03, 0xce, 0x2c, 0x47, + 0x64, 0x1d, 0x0a, 0xb1, 0x35, 0x63, 0x32, 0x2b, 0x45, 0x9c, 0x84, 0x24, 0x2a, 0x13, 0xac, 0xe4, + 0xbf, 0x08, 0x4c, 0xc5, 0xc6, 0xb9, 0xab, 0x9a, 0x9a, 0xf5, 0x6c, 0x4b, 0xe4, 0x29, 0x81, 0xd9, + 0x6e, 0x12, 0x39, 0x46, 0x8a, 0xff, 0x97, 0x52, 0xbe, 0x24, 0x30, 0x7d, 0x50, 0x09, 0x99, 0x62, + 0x34, 0x38, 0x69, 0x3a, 0x4b, 0xac, 0x29, 0x75, 0xe9, 0x7f, 0x4a, 0x47, 0x2b, 0x7f, 0x3e, 0x29, + 0xcc, 0xd4, 0xea, 0xf6, 0xe6, 0x56, 0xa5, 0x58, 0x35, 0x9a, 0x0a, 0x1b, 0x45, 0x9d, 0x7f, 0xe6, + 0x2d, 0xed, 0x96, 0x62, 0x6f, 0xb7, 0x75, 0x8b, 0x1a, 0x94, 0xb9, 0x6b, 0x21, 0xfb, 0x3f, 0xa4, + 0x03, 0x9d, 0x47, 0xb8, 0x84, 0x18, 0xa4, 0x64, 0x33, 0x07, 0xde, 0x84, 0xac, 0x6d, 0xd8, 0x6a, + 0x63, 0xc3, 0xd3, 0xee, 0x86, 0xb5, 0xa9, 0x9a, 0xba, 0x95, 0x4b, 0xb3, 0xf6, 0x1a, 0xc5, 0x64, + 0x45, 0xaf, 0x0a, 0xcd, 0x7c, 0x94, 0xba, 0xf0, 0xd2, 0x73, 0x83, 0x3a, 0xc0, 0xf7, 0x60, 0xc4, + 0x83, 0xc0, 0x9c, 0xf6, 0x25, 0x76, 0xfa, 0x82, 0x6b, 0xcb, 0xdc, 0xad, 0xc2, 0x73, 0x0e, 0x54, + 0xcb, 0x56, 0x6f, 0xe9, 0x5a, 0xae, 0x3f, 0xb1, 0xab, 0x61, 0x6a, 0x77, 0x83, 0x9a, 0x09, 0x59, + 0xfc, 0x91, 0x04, 0x7a, 0x81, 0x38, 0x63, 0xb1, 0x34, 0x5e, 0x07, 0x70, 0x71, 0xf0, 0xe2, 0xce, + 0x7a, 0xbd, 0xa0, 0x7b, 0x11, 0x78, 0x5f, 0xf0, 0x3c, 0xf4, 0xec, 0xf2, 0xf1, 0x68, 0x2c, 0x7e, + 0x37, 0x02, 0x27, 0x28, 0x0e, 0xfc, 0x08, 0x06, 0x9c, 0x17, 0x05, 0x8e, 0x07, 0x20, 0xfa, 0x1e, + 0x2a, 0xf9, 0x89, 0x98, 0xaf, 0x4e, 0x18, 0xb9, 0xf0, 0xc9, 0x6f, 0x7f, 0x7f, 0x9e, 0x1e, 0xc3, + 0xac, 0x62, 0xeb, 0xa6, 0xa9, 0xba, 0x0f, 0x27, 0x8b, 0xbd, 0xac, 0x70, 0x13, 0x86, 0xdc, 0x7b, + 0x1a, 0x0b, 0x31, 0xd9, 0x70, 0xa3, 0x4d, 0xc6, 0x6f, 0x60, 0x01, 0x73, 0x34, 0x20, 0xe2, 0x48, + 0x30, 0x20, 0x6e, 0xc3, 0xb0, 0xd0, 0x60, 0xf0, 0x4c, 0xc0, 0x55, 0x78, 0x48, 0xcf, 0xc7, 0xc1, + 0x71, 0x83, 0x4d, 0xd3, 0x60, 0x13, 0xf8, 0x72, 0x88, 0x5d, 0xbd, 0x52, 0x55, 0x76, 0x3a, 0xed, + 0x64, 0xf7, 0x5e, 0x9a, 0xe0, 0x7d, 0x02, 0xd9, 0x98, 0x41, 0x18, 0xe7, 0xc3, 0x41, 0xba, 0x4c, + 0xae, 0xf9, 0x73, 0x71, 0x19, 0x88, 0x18, 0x72, 0xe4, 0x57, 0x28, 0x3e, 0x09, 0xc7, 0x43, 0xf8, + 0xc4, 0x21, 0xe6, 0x2b, 0x02, 0x2f, 0x86, 0x74, 0x87, 0x33, 0x07, 0x2b, 0xd3, 0x41, 0x94, 0x58, + 0xc2, 0xf2, 0x25, 0x0a, 0xa7, 0x88, 0xe7, 0x43, 0x70, 0x3c, 0x55, 0x2b, 0x3b, 0xfe, 0x56, 0xb3, + 0x8b, 0x5f, 0x10, 0x18, 0x8d, 0x7c, 0xbc, 0xe0, 0xb9, 0xf8, 0xd4, 0x85, 0x9e, 0x38, 0xf9, 0x57, + 0x0f, 0x82, 0xe9, 0xa5, 0xed, 0x6c, 0x6c, 0x59, 0x85, 0xd3, 0xf7, 0x0d, 0x81, 0xd3, 0x11, 0xc9, + 0xc7, 0xb9, 0x44, 0x05, 0xfa, 0x0f, 0xc5, 0x7c, 0x8d, 0xa2, 0x52, 0x70, 0xbe, 0x5b, 0x31, 0x95, + 0x1d, 0xff, 0xed, 0xb8, 0x8b, 0xbf, 0x10, 0x90, 0xba, 0x3f, 0x36, 0xf0, 0xd2, 0xc1, 0x30, 0xc2, + 0x6f, 0x93, 0xc3, 0x81, 0x5f, 0xa3, 0xe0, 0xdf, 0xc2, 0x37, 0x0f, 0x05, 0x3e, 0x2c, 0x86, 0xef, + 0x09, 0x60, 0xf8, 0x0e, 0xc5, 0x38, 0x0d, 0x86, 0x26, 0xcd, 0x58, 0x19, 0x84, 0x27, 0x31, 0xf9, + 0x3a, 0xc5, 0xfc, 0x36, 0xae, 0x1d, 0x0d, 0x73, 0x67, 0x47, 0xcb, 0x68, 0xee, 0xe2, 0x4f, 0x04, + 0x46, 0x23, 0x47, 0x9c, 0x90, 0x90, 0xbb, 0xcd, 0xca, 0x87, 0x61, 0xf0, 0x01, 0x65, 0xf0, 0x0e, + 0x5e, 0x3d, 0x22, 0x03, 0x7f, 0x37, 0xfb, 0x99, 0xc0, 0x58, 0xec, 0x1c, 0x83, 0x4a, 0x02, 0x78, + 0xe2, 0x44, 0x97, 0xbf, 0x90, 0xdc, 0x80, 0xd1, 0xba, 0x46, 0x69, 0xad, 0x60, 0x29, 0x44, 0x8b, + 0x8d, 0x37, 0x87, 0x28, 0xca, 0x63, 0x02, 0xe3, 0xdd, 0xe6, 0x4e, 0x5c, 0x4c, 0x56, 0x9b, 0x23, + 0x52, 0x5a, 0xa7, 0x94, 0xae, 0xe0, 0xea, 0x11, 0x28, 0xf9, 0xab, 0xd4, 0x84, 0x41, 0xf7, 0xae, + 0x93, 0x62, 0x2f, 0xb2, 0x84, 0x17, 0xdd, 0x24, 0x85, 0x97, 0xc7, 0x5c, 0x08, 0x1e, 0xcb, 0x63, + 0xe9, 0xda, 0xc3, 0x3d, 0x89, 0x3c, 0xda, 0x93, 0xc8, 0xd3, 0x3d, 0x89, 0x7c, 0xba, 0x2f, 0xa5, + 0x1e, 0xed, 0x4b, 0xa9, 0xdf, 0xf7, 0xa5, 0xd4, 0xcd, 0x0b, 0xc2, 0x70, 0x4a, 0xad, 0xe7, 0x9b, + 0x46, 0x4b, 0xdf, 0x76, 0x7d, 0x28, 0x1f, 0x7b, 0x3f, 0xe9, 0xa8, 0x5a, 0x19, 0xa0, 0x7f, 0x19, + 0xbd, 0xf8, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x26, 0x24, 0x01, 0x95, 0x07, 0x16, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -1096,6 +1098,8 @@ type QueryClient interface { // Query paginated alliances Alliances(ctx context.Context, in *QueryAlliancesRequest, opts ...grpc.CallOption) (*QueryAlliancesResponse, error) // Query a specific alliance by ibc hash + // @deprecated: this endpoint will be replaced for by the encoded version + // of the denom e.g.: GET:/terra/alliances/ibc%2Falliance IBCAlliance(ctx context.Context, in *QueryIBCAllianceRequest, opts ...grpc.CallOption) (*QueryAllianceResponse, error) // Query all paginated alliance delegations AllAlliancesDelegations(ctx context.Context, in *QueryAllAlliancesDelegationsRequest, opts ...grpc.CallOption) (*QueryAlliancesDelegationsResponse, error) @@ -1110,10 +1114,14 @@ type QueryClient interface { // Query a delegation to an alliance by delegator addr, validator_addr and denom AllianceDelegation(ctx context.Context, in *QueryAllianceDelegationRequest, opts ...grpc.CallOption) (*QueryAllianceDelegationResponse, error) // Query a delegation to an alliance by delegator addr, validator_addr and denom + // @deprecated: this endpoint will be replaced for by the encoded version + // of the denom e.g.: GET:/terra/alliances/terradr1231/terravaloper41234/ibc%2Falliance IBCAllianceDelegation(ctx context.Context, in *QueryIBCAllianceDelegationRequest, opts ...grpc.CallOption) (*QueryAllianceDelegationResponse, error) // Query for rewards by delegator addr, validator_addr and denom AllianceDelegationRewards(ctx context.Context, in *QueryAllianceDelegationRewardsRequest, opts ...grpc.CallOption) (*QueryAllianceDelegationRewardsResponse, error) // Query for rewards by delegator addr, validator_addr and denom + // @deprecated: this endpoint will be replaced for by the encoded version + // of the denom e.g.: GET:/terra/alliances/terradr1231/terravaloper41234/ibc%2Falliance IBCAllianceDelegationRewards(ctx context.Context, in *QueryIBCAllianceDelegationRewardsRequest, opts ...grpc.CallOption) (*QueryAllianceDelegationRewardsResponse, error) // Query a specific alliance by denom Alliance(ctx context.Context, in *QueryAllianceRequest, opts ...grpc.CallOption) (*QueryAllianceResponse, error) @@ -1129,7 +1137,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) { out := new(QueryParamsResponse) - err := c.cc.Invoke(ctx, "/alliance.alliance.Query/Params", in, out, opts...) + err := c.cc.Invoke(ctx, "/alliance.Query/Params", in, out, opts...) if err != nil { return nil, err } @@ -1138,16 +1146,17 @@ func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts . func (c *queryClient) Alliances(ctx context.Context, in *QueryAlliancesRequest, opts ...grpc.CallOption) (*QueryAlliancesResponse, error) { out := new(QueryAlliancesResponse) - err := c.cc.Invoke(ctx, "/alliance.alliance.Query/Alliances", in, out, opts...) + err := c.cc.Invoke(ctx, "/alliance.Query/Alliances", in, out, opts...) if err != nil { return nil, err } return out, nil } +// Deprecated: Do not use. func (c *queryClient) IBCAlliance(ctx context.Context, in *QueryIBCAllianceRequest, opts ...grpc.CallOption) (*QueryAllianceResponse, error) { out := new(QueryAllianceResponse) - err := c.cc.Invoke(ctx, "/alliance.alliance.Query/IBCAlliance", in, out, opts...) + err := c.cc.Invoke(ctx, "/alliance.Query/IBCAlliance", in, out, opts...) if err != nil { return nil, err } @@ -1156,7 +1165,7 @@ func (c *queryClient) IBCAlliance(ctx context.Context, in *QueryIBCAllianceReque func (c *queryClient) AllAlliancesDelegations(ctx context.Context, in *QueryAllAlliancesDelegationsRequest, opts ...grpc.CallOption) (*QueryAlliancesDelegationsResponse, error) { out := new(QueryAlliancesDelegationsResponse) - err := c.cc.Invoke(ctx, "/alliance.alliance.Query/AllAlliancesDelegations", in, out, opts...) + err := c.cc.Invoke(ctx, "/alliance.Query/AllAlliancesDelegations", in, out, opts...) if err != nil { return nil, err } @@ -1165,7 +1174,7 @@ func (c *queryClient) AllAlliancesDelegations(ctx context.Context, in *QueryAllA func (c *queryClient) AllianceValidator(ctx context.Context, in *QueryAllianceValidatorRequest, opts ...grpc.CallOption) (*QueryAllianceValidatorResponse, error) { out := new(QueryAllianceValidatorResponse) - err := c.cc.Invoke(ctx, "/alliance.alliance.Query/AllianceValidator", in, out, opts...) + err := c.cc.Invoke(ctx, "/alliance.Query/AllianceValidator", in, out, opts...) if err != nil { return nil, err } @@ -1174,7 +1183,7 @@ func (c *queryClient) AllianceValidator(ctx context.Context, in *QueryAllianceVa func (c *queryClient) AllAllianceValidators(ctx context.Context, in *QueryAllAllianceValidatorsRequest, opts ...grpc.CallOption) (*QueryAllianceValidatorsResponse, error) { out := new(QueryAllianceValidatorsResponse) - err := c.cc.Invoke(ctx, "/alliance.alliance.Query/AllAllianceValidators", in, out, opts...) + err := c.cc.Invoke(ctx, "/alliance.Query/AllAllianceValidators", in, out, opts...) if err != nil { return nil, err } @@ -1183,7 +1192,7 @@ func (c *queryClient) AllAllianceValidators(ctx context.Context, in *QueryAllAll func (c *queryClient) AlliancesDelegation(ctx context.Context, in *QueryAlliancesDelegationsRequest, opts ...grpc.CallOption) (*QueryAlliancesDelegationsResponse, error) { out := new(QueryAlliancesDelegationsResponse) - err := c.cc.Invoke(ctx, "/alliance.alliance.Query/AlliancesDelegation", in, out, opts...) + err := c.cc.Invoke(ctx, "/alliance.Query/AlliancesDelegation", in, out, opts...) if err != nil { return nil, err } @@ -1192,7 +1201,7 @@ func (c *queryClient) AlliancesDelegation(ctx context.Context, in *QueryAlliance func (c *queryClient) AlliancesDelegationByValidator(ctx context.Context, in *QueryAlliancesDelegationByValidatorRequest, opts ...grpc.CallOption) (*QueryAlliancesDelegationsResponse, error) { out := new(QueryAlliancesDelegationsResponse) - err := c.cc.Invoke(ctx, "/alliance.alliance.Query/AlliancesDelegationByValidator", in, out, opts...) + err := c.cc.Invoke(ctx, "/alliance.Query/AlliancesDelegationByValidator", in, out, opts...) if err != nil { return nil, err } @@ -1201,16 +1210,17 @@ func (c *queryClient) AlliancesDelegationByValidator(ctx context.Context, in *Qu func (c *queryClient) AllianceDelegation(ctx context.Context, in *QueryAllianceDelegationRequest, opts ...grpc.CallOption) (*QueryAllianceDelegationResponse, error) { out := new(QueryAllianceDelegationResponse) - err := c.cc.Invoke(ctx, "/alliance.alliance.Query/AllianceDelegation", in, out, opts...) + err := c.cc.Invoke(ctx, "/alliance.Query/AllianceDelegation", in, out, opts...) if err != nil { return nil, err } return out, nil } +// Deprecated: Do not use. func (c *queryClient) IBCAllianceDelegation(ctx context.Context, in *QueryIBCAllianceDelegationRequest, opts ...grpc.CallOption) (*QueryAllianceDelegationResponse, error) { out := new(QueryAllianceDelegationResponse) - err := c.cc.Invoke(ctx, "/alliance.alliance.Query/IBCAllianceDelegation", in, out, opts...) + err := c.cc.Invoke(ctx, "/alliance.Query/IBCAllianceDelegation", in, out, opts...) if err != nil { return nil, err } @@ -1219,16 +1229,17 @@ func (c *queryClient) IBCAllianceDelegation(ctx context.Context, in *QueryIBCAll func (c *queryClient) AllianceDelegationRewards(ctx context.Context, in *QueryAllianceDelegationRewardsRequest, opts ...grpc.CallOption) (*QueryAllianceDelegationRewardsResponse, error) { out := new(QueryAllianceDelegationRewardsResponse) - err := c.cc.Invoke(ctx, "/alliance.alliance.Query/AllianceDelegationRewards", in, out, opts...) + err := c.cc.Invoke(ctx, "/alliance.Query/AllianceDelegationRewards", in, out, opts...) if err != nil { return nil, err } return out, nil } +// Deprecated: Do not use. func (c *queryClient) IBCAllianceDelegationRewards(ctx context.Context, in *QueryIBCAllianceDelegationRewardsRequest, opts ...grpc.CallOption) (*QueryAllianceDelegationRewardsResponse, error) { out := new(QueryAllianceDelegationRewardsResponse) - err := c.cc.Invoke(ctx, "/alliance.alliance.Query/IBCAllianceDelegationRewards", in, out, opts...) + err := c.cc.Invoke(ctx, "/alliance.Query/IBCAllianceDelegationRewards", in, out, opts...) if err != nil { return nil, err } @@ -1237,7 +1248,7 @@ func (c *queryClient) IBCAllianceDelegationRewards(ctx context.Context, in *Quer func (c *queryClient) Alliance(ctx context.Context, in *QueryAllianceRequest, opts ...grpc.CallOption) (*QueryAllianceResponse, error) { out := new(QueryAllianceResponse) - err := c.cc.Invoke(ctx, "/alliance.alliance.Query/Alliance", in, out, opts...) + err := c.cc.Invoke(ctx, "/alliance.Query/Alliance", in, out, opts...) if err != nil { return nil, err } @@ -1250,6 +1261,8 @@ type QueryServer interface { // Query paginated alliances Alliances(context.Context, *QueryAlliancesRequest) (*QueryAlliancesResponse, error) // Query a specific alliance by ibc hash + // @deprecated: this endpoint will be replaced for by the encoded version + // of the denom e.g.: GET:/terra/alliances/ibc%2Falliance IBCAlliance(context.Context, *QueryIBCAllianceRequest) (*QueryAllianceResponse, error) // Query all paginated alliance delegations AllAlliancesDelegations(context.Context, *QueryAllAlliancesDelegationsRequest) (*QueryAlliancesDelegationsResponse, error) @@ -1264,10 +1277,14 @@ type QueryServer interface { // Query a delegation to an alliance by delegator addr, validator_addr and denom AllianceDelegation(context.Context, *QueryAllianceDelegationRequest) (*QueryAllianceDelegationResponse, error) // Query a delegation to an alliance by delegator addr, validator_addr and denom + // @deprecated: this endpoint will be replaced for by the encoded version + // of the denom e.g.: GET:/terra/alliances/terradr1231/terravaloper41234/ibc%2Falliance IBCAllianceDelegation(context.Context, *QueryIBCAllianceDelegationRequest) (*QueryAllianceDelegationResponse, error) // Query for rewards by delegator addr, validator_addr and denom AllianceDelegationRewards(context.Context, *QueryAllianceDelegationRewardsRequest) (*QueryAllianceDelegationRewardsResponse, error) // Query for rewards by delegator addr, validator_addr and denom + // @deprecated: this endpoint will be replaced for by the encoded version + // of the denom e.g.: GET:/terra/alliances/terradr1231/terravaloper41234/ibc%2Falliance IBCAllianceDelegationRewards(context.Context, *QueryIBCAllianceDelegationRewardsRequest) (*QueryAllianceDelegationRewardsResponse, error) // Query a specific alliance by denom Alliance(context.Context, *QueryAllianceRequest) (*QueryAllianceResponse, error) @@ -1331,7 +1348,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/alliance.alliance.Query/Params", + FullMethod: "/alliance.Query/Params", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest)) @@ -1349,7 +1366,7 @@ func _Query_Alliances_Handler(srv interface{}, ctx context.Context, dec func(int } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/alliance.alliance.Query/Alliances", + FullMethod: "/alliance.Query/Alliances", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Alliances(ctx, req.(*QueryAlliancesRequest)) @@ -1367,7 +1384,7 @@ func _Query_IBCAlliance_Handler(srv interface{}, ctx context.Context, dec func(i } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/alliance.alliance.Query/IBCAlliance", + FullMethod: "/alliance.Query/IBCAlliance", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).IBCAlliance(ctx, req.(*QueryIBCAllianceRequest)) @@ -1385,7 +1402,7 @@ func _Query_AllAlliancesDelegations_Handler(srv interface{}, ctx context.Context } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/alliance.alliance.Query/AllAlliancesDelegations", + FullMethod: "/alliance.Query/AllAlliancesDelegations", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).AllAlliancesDelegations(ctx, req.(*QueryAllAlliancesDelegationsRequest)) @@ -1403,7 +1420,7 @@ func _Query_AllianceValidator_Handler(srv interface{}, ctx context.Context, dec } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/alliance.alliance.Query/AllianceValidator", + FullMethod: "/alliance.Query/AllianceValidator", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).AllianceValidator(ctx, req.(*QueryAllianceValidatorRequest)) @@ -1421,7 +1438,7 @@ func _Query_AllAllianceValidators_Handler(srv interface{}, ctx context.Context, } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/alliance.alliance.Query/AllAllianceValidators", + FullMethod: "/alliance.Query/AllAllianceValidators", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).AllAllianceValidators(ctx, req.(*QueryAllAllianceValidatorsRequest)) @@ -1439,7 +1456,7 @@ func _Query_AlliancesDelegation_Handler(srv interface{}, ctx context.Context, de } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/alliance.alliance.Query/AlliancesDelegation", + FullMethod: "/alliance.Query/AlliancesDelegation", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).AlliancesDelegation(ctx, req.(*QueryAlliancesDelegationsRequest)) @@ -1457,7 +1474,7 @@ func _Query_AlliancesDelegationByValidator_Handler(srv interface{}, ctx context. } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/alliance.alliance.Query/AlliancesDelegationByValidator", + FullMethod: "/alliance.Query/AlliancesDelegationByValidator", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).AlliancesDelegationByValidator(ctx, req.(*QueryAlliancesDelegationByValidatorRequest)) @@ -1475,7 +1492,7 @@ func _Query_AllianceDelegation_Handler(srv interface{}, ctx context.Context, dec } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/alliance.alliance.Query/AllianceDelegation", + FullMethod: "/alliance.Query/AllianceDelegation", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).AllianceDelegation(ctx, req.(*QueryAllianceDelegationRequest)) @@ -1493,7 +1510,7 @@ func _Query_IBCAllianceDelegation_Handler(srv interface{}, ctx context.Context, } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/alliance.alliance.Query/IBCAllianceDelegation", + FullMethod: "/alliance.Query/IBCAllianceDelegation", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).IBCAllianceDelegation(ctx, req.(*QueryIBCAllianceDelegationRequest)) @@ -1511,7 +1528,7 @@ func _Query_AllianceDelegationRewards_Handler(srv interface{}, ctx context.Conte } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/alliance.alliance.Query/AllianceDelegationRewards", + FullMethod: "/alliance.Query/AllianceDelegationRewards", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).AllianceDelegationRewards(ctx, req.(*QueryAllianceDelegationRewardsRequest)) @@ -1529,7 +1546,7 @@ func _Query_IBCAllianceDelegationRewards_Handler(srv interface{}, ctx context.Co } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/alliance.alliance.Query/IBCAllianceDelegationRewards", + FullMethod: "/alliance.Query/IBCAllianceDelegationRewards", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).IBCAllianceDelegationRewards(ctx, req.(*QueryIBCAllianceDelegationRewardsRequest)) @@ -1547,7 +1564,7 @@ func _Query_Alliance_Handler(srv interface{}, ctx context.Context, dec func(inte } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/alliance.alliance.Query/Alliance", + FullMethod: "/alliance.Query/Alliance", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Alliance(ctx, req.(*QueryAllianceRequest)) @@ -1556,7 +1573,7 @@ func _Query_Alliance_Handler(srv interface{}, ctx context.Context, dec func(inte } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "alliance.alliance.Query", + ServiceName: "alliance.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { diff --git a/x/alliance/types/tests/types_test.go b/x/alliance/types/tests/types_test.go index 4773b1b7..03281623 100644 --- a/x/alliance/types/tests/types_test.go +++ b/x/alliance/types/tests/types_test.go @@ -6,6 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cosmos/cosmos-sdk/x/auth/migrations/legacytx" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" @@ -54,11 +55,11 @@ func TestProposalsContent(t *testing.T) { str string }{ "msg_create_alliance_proposal": { - p: types.NewMsgCreateAllianceProposal("Alliance1", "Alliance with 1", "ibc/denom1", sdk.NewDec(1), sdk.NewDec(1), sdk.NewDec(1), time.Second), + p: types.NewMsgCreateAllianceProposal("Alliance1", "Alliance with 1", "ibc/denom1", sdk.NewDec(1), types.RewardWeightRange{Min: sdk.NewDec(0), Max: sdk.NewDec(5)}, sdk.NewDec(1), sdk.NewDec(1), time.Second), title: "Alliance1", desc: "Alliance with 1", typ: "msg_create_alliance_proposal", - str: "title:\"Alliance1\" description:\"Alliance with 1\" denom:\"ibc/denom1\" reward_weight:\"1000000000000000000\" take_rate:\"1000000000000000000\" reward_change_rate:\"1000000000000000000\" reward_change_interval: ", + str: "title:\"Alliance1\" description:\"Alliance with 1\" denom:\"ibc/denom1\" reward_weight:\"1000000000000000000\" take_rate:\"1000000000000000000\" reward_change_rate:\"1000000000000000000\" reward_change_interval: reward_weight_range: ", }, "msg_update_alliance_proposal": { p: types.NewMsgUpdateAllianceProposal("Alliance2", "Alliance with 2", "ibc/denom2", sdk.NewDec(2), sdk.NewDec(2), sdk.NewDec(2), time.Hour), @@ -105,3 +106,71 @@ func TestProposalsContent(t *testing.T) { }) } } + +func TestInvalidProposalsContent(t *testing.T) { + byteArray := []byte{'a', 'l', 'l', 'i', 'a', 'n', 'c', 'e', 0, '2'} + invalidDenom := string(byteArray) + cases := map[string]struct { + p govtypes.Content + title string + desc string + typ string + str string + }{ + "msg_create_alliance_proposal": { + p: types.NewMsgCreateAllianceProposal("Alliance1", "Alliance with 1", "ibc/denom1", sdk.NewDec(1), types.RewardWeightRange{Min: sdk.NewDec(0), Max: sdk.NewDec(5)}, sdk.NewDec(1), sdk.NewDec(1), -time.Second), + title: "Alliance1", + desc: "Alliance with 1", + typ: "msg_create_alliance_proposal", + }, + "msg_create_alliance_proposal_invalid_denom": { + p: types.NewMsgCreateAllianceProposal("Alliance1", "Alliance with 1", invalidDenom, sdk.NewDec(1), types.RewardWeightRange{Min: sdk.NewDec(0), Max: sdk.NewDec(5)}, sdk.NewDec(1), sdk.NewDec(1), time.Second), + title: "Alliance1", + desc: "Alliance with 1", + typ: "msg_create_alliance_proposal", + }, + "msg_update_alliance_proposal": { + p: types.NewMsgUpdateAllianceProposal("Alliance2", "Alliance with 2", "ibc/denom2", sdk.NewDec(2), sdk.NewDec(2), sdk.NewDec(2), -time.Hour), + title: "Alliance2", + desc: "Alliance with 2", + typ: "msg_update_alliance_proposal", + }, + } + + cdc := codec.NewLegacyAmino() + govtypes.RegisterLegacyAminoCodec(cdc) + types.RegisterLegacyAminoCodec(cdc) + + for name, tc := range cases { + t.Run(name, func(t *testing.T) { + err := tc.p.ValidateBasic() + require.Error(t, err) + }) + } +} + +func TestAminoJSON(t *testing.T) { + msgDelegate := types.NewMsgDelegate("delegator", "validator", sdk.NewCoin("Alliance", sdk.NewInt(1000000000000000000))) + require.Equal(t, + `{"account_number":"1","chain_id":"foo","fee":{"amount":[],"gas":"0"},"memo":"memo","msgs":[{"type":"alliance/MsgDelegate","value":{"amount":{"amount":"1000000000000000000","denom":"Alliance"},"delegator_address":"delegator","validator_address":"validator"}}],"sequence":"1","timeout_height":"1"}`, + string(legacytx.StdSignBytes("foo", 1, 1, 1, legacytx.StdFee{}, []sdk.Msg{msgDelegate}, "memo", nil)), + ) + + msgUndelegate := types.NewMsgUndelegate("delegator", "validator", sdk.NewCoin("Alliance", sdk.NewInt(1000000000000000000))) + require.Equal(t, + `{"account_number":"1","chain_id":"foo","fee":{"amount":[],"gas":"0"},"memo":"memo","msgs":[{"type":"alliance/MsgUndelegate","value":{"amount":{"amount":"1000000000000000000","denom":"Alliance"},"delegator_address":"delegator","validator_address":"validator"}}],"sequence":"1","timeout_height":"1"}`, + string(legacytx.StdSignBytes("foo", 1, 1, 1, legacytx.StdFee{}, []sdk.Msg{msgUndelegate}, "memo", nil)), + ) + + msgRedelegate := types.NewMsgRedelegate("delegator", "validator", "validator1", sdk.NewCoin("Alliance", sdk.NewInt(1000000000000000000))) + require.Equal(t, + `{"account_number":"1","chain_id":"foo","fee":{"amount":[],"gas":"0"},"memo":"memo","msgs":[{"type":"alliance/MsgRedelegate","value":{"amount":{"amount":"1000000000000000000","denom":"Alliance"},"delegator_address":"delegator","validator_dst_address":"validator1","validator_src_address":"validator"}}],"sequence":"1","timeout_height":"1"}`, + string(legacytx.StdSignBytes("foo", 1, 1, 1, legacytx.StdFee{}, []sdk.Msg{msgRedelegate}, "memo", nil)), + ) + + msgClaimDelegationRewards := types.NewMsgClaimDelegationRewards("delegator", "validator", "Alliance") + require.Equal(t, + `{"account_number":"1","chain_id":"foo","fee":{"amount":[],"gas":"0"},"memo":"memo","msgs":[{"type":"alliance/MsgClaimDelegationRewards","value":{"delegator_address":"delegator","denom":"Alliance","validator_address":"validator"}}],"sequence":"1","timeout_height":"1"}`, + string(legacytx.StdSignBytes("foo", 1, 1, 1, legacytx.StdFee{}, []sdk.Msg{msgClaimDelegationRewards}, "memo", nil)), + ) +} diff --git a/x/alliance/types/tx.pb.go b/x/alliance/types/tx.pb.go index 997c22e2..cc8f82a9 100644 --- a/x/alliance/types/tx.pb.go +++ b/x/alliance/types/tx.pb.go @@ -11,8 +11,8 @@ import ( github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" _ "github.com/cosmos/cosmos-sdk/types/msgservice" _ "github.com/cosmos/gogoproto/gogoproto" - grpc1 "github.com/gogo/protobuf/grpc" - proto "github.com/gogo/protobuf/proto" + grpc1 "github.com/cosmos/gogoproto/grpc" + proto "github.com/cosmos/gogoproto/proto" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" @@ -334,55 +334,55 @@ func (m *MsgClaimDelegationRewardsResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgClaimDelegationRewardsResponse proto.InternalMessageInfo func init() { - proto.RegisterType((*MsgDelegate)(nil), "alliance.alliance.MsgDelegate") - proto.RegisterType((*MsgDelegateResponse)(nil), "alliance.alliance.MsgDelegateResponse") - proto.RegisterType((*MsgUndelegate)(nil), "alliance.alliance.MsgUndelegate") - proto.RegisterType((*MsgUndelegateResponse)(nil), "alliance.alliance.MsgUndelegateResponse") - proto.RegisterType((*MsgRedelegate)(nil), "alliance.alliance.MsgRedelegate") - proto.RegisterType((*MsgRedelegateResponse)(nil), "alliance.alliance.MsgRedelegateResponse") - proto.RegisterType((*MsgClaimDelegationRewards)(nil), "alliance.alliance.MsgClaimDelegationRewards") - proto.RegisterType((*MsgClaimDelegationRewardsResponse)(nil), "alliance.alliance.MsgClaimDelegationRewardsResponse") + proto.RegisterType((*MsgDelegate)(nil), "alliance.MsgDelegate") + proto.RegisterType((*MsgDelegateResponse)(nil), "alliance.MsgDelegateResponse") + proto.RegisterType((*MsgUndelegate)(nil), "alliance.MsgUndelegate") + proto.RegisterType((*MsgUndelegateResponse)(nil), "alliance.MsgUndelegateResponse") + proto.RegisterType((*MsgRedelegate)(nil), "alliance.MsgRedelegate") + proto.RegisterType((*MsgRedelegateResponse)(nil), "alliance.MsgRedelegateResponse") + proto.RegisterType((*MsgClaimDelegationRewards)(nil), "alliance.MsgClaimDelegationRewards") + proto.RegisterType((*MsgClaimDelegationRewardsResponse)(nil), "alliance.MsgClaimDelegationRewardsResponse") } func init() { proto.RegisterFile("alliance/tx.proto", fileDescriptor_ddcb3ed838213b4a) } var fileDescriptor_ddcb3ed838213b4a = []byte{ - // 551 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x55, 0x31, 0x6f, 0xd3, 0x40, - 0x14, 0xb6, 0x13, 0xa8, 0xe0, 0x2a, 0x24, 0xea, 0x26, 0x34, 0xf1, 0xe0, 0x84, 0x20, 0x41, 0x84, - 0x88, 0x4d, 0x0a, 0x13, 0x1b, 0x69, 0x59, 0x10, 0x59, 0x5c, 0x21, 0x21, 0x96, 0xea, 0x6c, 0x9f, - 0x0e, 0x0b, 0xfb, 0x2e, 0xf2, 0x5d, 0x43, 0x2b, 0x31, 0x31, 0x21, 0xb1, 0xf0, 0x0f, 0x28, 0xff, - 0x80, 0x81, 0x1f, 0xd1, 0xb1, 0x62, 0x42, 0x0c, 0x05, 0x25, 0x03, 0xfc, 0x02, 0x66, 0x94, 0xdc, - 0xf9, 0xec, 0x2a, 0x31, 0x09, 0x12, 0x12, 0x0c, 0x9d, 0xee, 0xdd, 0x7d, 0xef, 0x7d, 0xa7, 0xf7, - 0xbd, 0x77, 0xef, 0xc0, 0x1a, 0x8c, 0xa2, 0x10, 0x12, 0x1f, 0x39, 0x7c, 0xdf, 0x1e, 0x24, 0x94, - 0x53, 0x43, 0x1d, 0xd9, 0xa9, 0x61, 0x56, 0x30, 0xc5, 0x74, 0x8a, 0x3a, 0x13, 0x4b, 0x38, 0x9a, - 0x75, 0x9f, 0xb2, 0x98, 0xb2, 0x5d, 0x01, 0x88, 0x8d, 0x84, 0x36, 0xc4, 0xce, 0x89, 0x19, 0x76, - 0x86, 0xdd, 0xc9, 0x22, 0x01, 0x4b, 0x02, 0x1e, 0x64, 0xc8, 0x19, 0x76, 0x3d, 0xc4, 0x61, 0xd7, - 0xf1, 0x69, 0x48, 0x04, 0xde, 0x7a, 0x57, 0x02, 0xab, 0x7d, 0x86, 0xb7, 0x51, 0x84, 0x30, 0xe4, - 0xc8, 0x78, 0x00, 0xd6, 0x02, 0x61, 0xd3, 0x64, 0x17, 0x06, 0x41, 0x82, 0x18, 0xab, 0xe9, 0x4d, - 0xbd, 0x7d, 0xb1, 0x57, 0xfb, 0xf4, 0xb1, 0x53, 0x91, 0xb7, 0xde, 0x17, 0xc8, 0x0e, 0x4f, 0x42, - 0x82, 0xdd, 0xcb, 0x2a, 0x44, 0x9e, 0x4f, 0x68, 0x86, 0x30, 0x0a, 0x83, 0x53, 0x34, 0xa5, 0x45, - 0x34, 0x2a, 0x24, 0xa5, 0xf1, 0xc0, 0x0a, 0x8c, 0xe9, 0x1e, 0xe1, 0xb5, 0x72, 0x53, 0x6f, 0xaf, - 0x6e, 0xd6, 0x6d, 0x19, 0x38, 0x49, 0xc7, 0x96, 0xe9, 0xd8, 0x5b, 0x34, 0x24, 0x3d, 0xe7, 0xe8, - 0xa4, 0xa1, 0x7d, 0x39, 0x69, 0xdc, 0xc0, 0x21, 0x7f, 0xb6, 0xe7, 0xd9, 0x3e, 0x8d, 0xa5, 0x44, - 0x72, 0xe9, 0xb0, 0xe0, 0xb9, 0xc3, 0x0f, 0x06, 0x88, 0x4d, 0x03, 0x5c, 0xc9, 0x7c, 0xcf, 0x7a, - 0x7d, 0xd8, 0xd0, 0x7e, 0x1c, 0x36, 0xb4, 0x57, 0xdf, 0x3f, 0xdc, 0x9c, 0x4d, 0xbe, 0x55, 0x05, - 0xeb, 0x39, 0x81, 0x5c, 0xc4, 0x06, 0x94, 0x30, 0xd4, 0x7a, 0x5f, 0x02, 0x97, 0xfa, 0x0c, 0x3f, - 0x26, 0xc1, 0x99, 0x74, 0x45, 0xd2, 0x6d, 0x80, 0xea, 0x29, 0x89, 0x94, 0x78, 0x3f, 0x85, 0x78, - 0x2e, 0xfa, 0xdb, 0xe2, 0x3d, 0x02, 0xd5, 0x4c, 0x3c, 0x96, 0xf8, 0x4b, 0x0b, 0xb8, 0xae, 0xc2, - 0x76, 0x12, 0x7f, 0x2e, 0x5b, 0xc0, 0xb8, 0x62, 0x2b, 0x2f, 0xcd, 0xb6, 0xcd, 0xf8, 0x6c, 0x45, - 0xce, 0xfd, 0xe3, 0x8a, 0x64, 0xba, 0xab, 0x8a, 0x7c, 0xd5, 0x41, 0xbd, 0xcf, 0xf0, 0x56, 0x04, - 0xc3, 0x58, 0xf6, 0x7a, 0x48, 0x89, 0x8b, 0x5e, 0xc0, 0x24, 0x60, 0xff, 0x59, 0x6b, 0x57, 0xc0, - 0xf9, 0x00, 0x11, 0x1a, 0x8b, 0x32, 0xb8, 0x62, 0xb3, 0x30, 0xf5, 0x6b, 0xe0, 0x6a, 0x61, 0x82, - 0xa9, 0x0c, 0x9b, 0x6f, 0xca, 0xa0, 0xdc, 0x67, 0xd8, 0x70, 0xc1, 0x05, 0x35, 0x12, 0x2d, 0x7b, - 0x66, 0x40, 0xdb, 0xb9, 0x89, 0x60, 0x5e, 0xff, 0x3d, 0x9e, 0x72, 0x1b, 0x4f, 0x00, 0xc8, 0x35, - 0x7c, 0x73, 0x7e, 0x54, 0xe6, 0x61, 0xb6, 0x17, 0x79, 0xe4, 0x99, 0x73, 0x73, 0xa8, 0x80, 0x39, - 0xf3, 0x28, 0x62, 0x9e, 0x7d, 0xa8, 0xc6, 0x4b, 0x70, 0xa5, 0xa0, 0x25, 0x6e, 0xcd, 0xe7, 0x98, - 0xef, 0x6d, 0xde, 0xfd, 0x13, 0xef, 0xf4, 0xf6, 0xde, 0xc3, 0xa3, 0x91, 0xa5, 0x1f, 0x8f, 0x2c, - 0xfd, 0xdb, 0xc8, 0xd2, 0xdf, 0x8e, 0x2d, 0xed, 0x78, 0x6c, 0x69, 0x9f, 0xc7, 0x96, 0xf6, 0xf4, - 0x76, 0xee, 0x61, 0x70, 0x94, 0x24, 0xb0, 0x13, 0x53, 0x82, 0x0e, 0x1c, 0xf5, 0xbb, 0xee, 0x67, - 0xe6, 0xf4, 0x99, 0x78, 0x2b, 0xd3, 0xff, 0xee, 0xce, 0xaf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x17, - 0xa8, 0x36, 0x2d, 0x81, 0x07, 0x00, 0x00, + // 546 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x55, 0x3f, 0x6f, 0xd3, 0x40, + 0x14, 0xb7, 0x53, 0xa8, 0xca, 0x55, 0x48, 0xd4, 0x4d, 0x48, 0x62, 0x09, 0xbb, 0xa4, 0x03, 0x15, + 0x28, 0x36, 0x29, 0x1b, 0x13, 0xa4, 0x85, 0x01, 0x91, 0xc5, 0x15, 0x0b, 0x4b, 0x75, 0xb6, 0x4f, + 0x87, 0xc1, 0xbe, 0x8b, 0xee, 0xae, 0xa1, 0x5d, 0x99, 0x18, 0xf9, 0x06, 0x94, 0x6f, 0xc0, 0xc0, + 0x37, 0x60, 0xe9, 0x58, 0x31, 0x21, 0x86, 0x82, 0x92, 0x01, 0x3e, 0x01, 0x33, 0x4a, 0xee, 0xfc, + 0x8f, 0x24, 0x6a, 0x06, 0x24, 0x18, 0x98, 0x7c, 0xf7, 0x7e, 0xf7, 0xfb, 0x9d, 0xde, 0xef, 0x3d, + 0xbf, 0x03, 0x6b, 0x30, 0x8e, 0x23, 0x48, 0x02, 0xe4, 0x8a, 0x43, 0xa7, 0xcf, 0xa8, 0xa0, 0xc6, + 0x4a, 0x1a, 0x32, 0xab, 0x98, 0x62, 0x3a, 0x09, 0xba, 0xe3, 0x95, 0xc4, 0xcd, 0x66, 0x40, 0x79, + 0x42, 0xf9, 0xbe, 0x04, 0xe4, 0x46, 0x41, 0x75, 0xb9, 0x73, 0x13, 0x8e, 0xdd, 0x41, 0x67, 0xfc, + 0x51, 0x80, 0xa5, 0x00, 0x1f, 0x72, 0xe4, 0x0e, 0x3a, 0x3e, 0x12, 0xb0, 0xe3, 0x06, 0x34, 0x22, + 0x12, 0x6f, 0xbd, 0xad, 0x80, 0xd5, 0x1e, 0xc7, 0xbb, 0x28, 0x46, 0x18, 0x0a, 0x64, 0x3c, 0x00, + 0x6b, 0xa1, 0x5c, 0x53, 0xb6, 0x0f, 0xc3, 0x90, 0x21, 0xce, 0x1b, 0xfa, 0x86, 0xbe, 0x75, 0xa9, + 0xdb, 0xf8, 0xf4, 0xa1, 0x5d, 0x55, 0xb7, 0xde, 0x97, 0xc8, 0x9e, 0x60, 0x11, 0xc1, 0xde, 0x95, + 0x8c, 0xa2, 0xe2, 0x63, 0x99, 0x01, 0x8c, 0xa3, 0xb0, 0x24, 0x53, 0x39, 0x4f, 0x26, 0xa3, 0xa4, + 0x32, 0x3e, 0x58, 0x86, 0x09, 0x3d, 0x20, 0xa2, 0xb1, 0xb4, 0xa1, 0x6f, 0xad, 0x6e, 0x37, 0x1d, + 0x45, 0x1c, 0xa7, 0xe3, 0xa8, 0x74, 0x9c, 0x1d, 0x1a, 0x91, 0xae, 0x7b, 0x72, 0x66, 0x6b, 0x5f, + 0xce, 0xec, 0x1b, 0x38, 0x12, 0xcf, 0x0e, 0x7c, 0x27, 0xa0, 0x89, 0xb2, 0x48, 0x7d, 0xda, 0x3c, + 0x7c, 0xe1, 0x8a, 0xa3, 0x3e, 0xe2, 0x13, 0x82, 0xa7, 0x94, 0xef, 0x5a, 0xaf, 0x8f, 0x6d, 0xed, + 0xc7, 0xb1, 0xad, 0xbd, 0xfa, 0xfe, 0xfe, 0xe6, 0x74, 0xf2, 0xad, 0x1a, 0x58, 0x2f, 0x18, 0xe4, + 0x21, 0xde, 0xa7, 0x84, 0xa3, 0xd6, 0xbb, 0x0a, 0xb8, 0xdc, 0xe3, 0xf8, 0x09, 0x09, 0xff, 0x5b, + 0x37, 0xcf, 0xba, 0x3a, 0xa8, 0x95, 0x2c, 0xca, 0xcc, 0xfb, 0x29, 0xcd, 0xf3, 0xd0, 0x9f, 0x36, + 0xef, 0x31, 0xa8, 0xe5, 0xe6, 0x71, 0x16, 0x2c, 0x6c, 0xe0, 0x7a, 0x46, 0xdb, 0x63, 0xc1, 0x4c, + 0xb5, 0x90, 0x8b, 0x4c, 0x6d, 0x69, 0x61, 0xb5, 0x5d, 0x2e, 0xa6, 0x2b, 0x72, 0xe1, 0x2f, 0x57, + 0x24, 0xf7, 0x3d, 0xab, 0xc8, 0x57, 0x1d, 0x34, 0x7b, 0x1c, 0xef, 0xc4, 0x30, 0x4a, 0x54, 0xaf, + 0x47, 0x94, 0x78, 0xe8, 0x25, 0x64, 0x21, 0xff, 0xc7, 0x5a, 0xbb, 0x0a, 0x2e, 0x86, 0x88, 0xd0, + 0x44, 0x96, 0xc1, 0x93, 0x9b, 0x73, 0x53, 0xdf, 0x04, 0xd7, 0xe7, 0x26, 0x98, 0xda, 0xb0, 0xfd, + 0xb1, 0x02, 0x96, 0x7a, 0x1c, 0x1b, 0xf7, 0xc0, 0x4a, 0x36, 0x12, 0x6b, 0x4e, 0x3a, 0x97, 0x9d, + 0xc2, 0x20, 0x30, 0xaf, 0xcd, 0x0c, 0xa7, 0x4a, 0xc6, 0x43, 0x00, 0x0a, 0xed, 0x5d, 0x2f, 0x1d, + 0xce, 0x01, 0xd3, 0x9e, 0x03, 0x14, 0x75, 0x0a, 0x33, 0xa6, 0xac, 0x93, 0x03, 0xbf, 0xe9, 0x4c, + 0xff, 0x72, 0xc6, 0x73, 0x70, 0x75, 0x4e, 0x71, 0x37, 0x4b, 0xd4, 0xd9, 0x87, 0xcc, 0x5b, 0x0b, + 0x1c, 0x4a, 0xef, 0xea, 0x3e, 0x3a, 0x19, 0x5a, 0xfa, 0xe9, 0xd0, 0xd2, 0xbf, 0x0d, 0x2d, 0xfd, + 0xcd, 0xc8, 0xd2, 0x4e, 0x47, 0x96, 0xf6, 0x79, 0x64, 0x69, 0x4f, 0x6f, 0x17, 0x1a, 0x5a, 0x20, + 0xc6, 0x60, 0x3b, 0xa1, 0x04, 0x1d, 0xb9, 0xd9, 0x63, 0x78, 0x98, 0x2f, 0x27, 0xed, 0xed, 0x2f, + 0x4f, 0xde, 0xa9, 0x3b, 0xbf, 0x02, 0x00, 0x00, 0xff, 0xff, 0xb8, 0x87, 0x74, 0x76, 0x30, 0x07, + 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -413,7 +413,7 @@ func NewMsgClient(cc grpc1.ClientConn) MsgClient { func (c *msgClient) Delegate(ctx context.Context, in *MsgDelegate, opts ...grpc.CallOption) (*MsgDelegateResponse, error) { out := new(MsgDelegateResponse) - err := c.cc.Invoke(ctx, "/alliance.alliance.Msg/Delegate", in, out, opts...) + err := c.cc.Invoke(ctx, "/alliance.Msg/Delegate", in, out, opts...) if err != nil { return nil, err } @@ -422,7 +422,7 @@ func (c *msgClient) Delegate(ctx context.Context, in *MsgDelegate, opts ...grpc. func (c *msgClient) Redelegate(ctx context.Context, in *MsgRedelegate, opts ...grpc.CallOption) (*MsgRedelegateResponse, error) { out := new(MsgRedelegateResponse) - err := c.cc.Invoke(ctx, "/alliance.alliance.Msg/Redelegate", in, out, opts...) + err := c.cc.Invoke(ctx, "/alliance.Msg/Redelegate", in, out, opts...) if err != nil { return nil, err } @@ -431,7 +431,7 @@ func (c *msgClient) Redelegate(ctx context.Context, in *MsgRedelegate, opts ...g func (c *msgClient) Undelegate(ctx context.Context, in *MsgUndelegate, opts ...grpc.CallOption) (*MsgUndelegateResponse, error) { out := new(MsgUndelegateResponse) - err := c.cc.Invoke(ctx, "/alliance.alliance.Msg/Undelegate", in, out, opts...) + err := c.cc.Invoke(ctx, "/alliance.Msg/Undelegate", in, out, opts...) if err != nil { return nil, err } @@ -440,7 +440,7 @@ func (c *msgClient) Undelegate(ctx context.Context, in *MsgUndelegate, opts ...g func (c *msgClient) ClaimDelegationRewards(ctx context.Context, in *MsgClaimDelegationRewards, opts ...grpc.CallOption) (*MsgClaimDelegationRewardsResponse, error) { out := new(MsgClaimDelegationRewardsResponse) - err := c.cc.Invoke(ctx, "/alliance.alliance.Msg/ClaimDelegationRewards", in, out, opts...) + err := c.cc.Invoke(ctx, "/alliance.Msg/ClaimDelegationRewards", in, out, opts...) if err != nil { return nil, err } @@ -486,7 +486,7 @@ func _Msg_Delegate_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/alliance.alliance.Msg/Delegate", + FullMethod: "/alliance.Msg/Delegate", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).Delegate(ctx, req.(*MsgDelegate)) @@ -504,7 +504,7 @@ func _Msg_Redelegate_Handler(srv interface{}, ctx context.Context, dec func(inte } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/alliance.alliance.Msg/Redelegate", + FullMethod: "/alliance.Msg/Redelegate", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).Redelegate(ctx, req.(*MsgRedelegate)) @@ -522,7 +522,7 @@ func _Msg_Undelegate_Handler(srv interface{}, ctx context.Context, dec func(inte } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/alliance.alliance.Msg/Undelegate", + FullMethod: "/alliance.Msg/Undelegate", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).Undelegate(ctx, req.(*MsgUndelegate)) @@ -540,7 +540,7 @@ func _Msg_ClaimDelegationRewards_Handler(srv interface{}, ctx context.Context, d } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/alliance.alliance.Msg/ClaimDelegationRewards", + FullMethod: "/alliance.Msg/ClaimDelegationRewards", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).ClaimDelegationRewards(ctx, req.(*MsgClaimDelegationRewards)) @@ -549,7 +549,7 @@ func _Msg_ClaimDelegationRewards_Handler(srv interface{}, ctx context.Context, d } var _Msg_serviceDesc = grpc.ServiceDesc{ - ServiceName: "alliance.alliance.Msg", + ServiceName: "alliance.Msg", HandlerType: (*MsgServer)(nil), Methods: []grpc.MethodDesc{ { diff --git a/x/alliance/types/validator.go b/x/alliance/types/validator.go index d8c78ebf..0ff5d0d1 100644 --- a/x/alliance/types/validator.go +++ b/x/alliance/types/validator.go @@ -46,10 +46,6 @@ func SubtractDecCoinsWithRounding(d1s sdk.DecCoins, d2s sdk.DecCoins) sdk.DecCoi return d1Copy } -func (v AllianceValidator) TotalSharesWithDenom(denom string) sdk.Dec { - return sdk.DecCoins(v.TotalDelegatorShares).AmountOf(denom) -} - func (v AllianceValidator) ValidatorSharesWithDenom(denom string) sdk.Dec { // This is used instead of coins.AmountOf to reduce the need for regex matching to speed up the query for _, c := range v.ValidatorShares { @@ -70,11 +66,6 @@ func (v AllianceValidator) TotalTokensWithAsset(asset AllianceAsset) sdk.Dec { return dec } -func (v AllianceValidator) TotalDecTokensWithAsset(asset AllianceAsset) sdk.Dec { - shares := v.ValidatorSharesWithDenom(asset.Denom) - return ConvertNewShareToDecToken(sdk.NewDecFromInt(asset.TotalTokens), asset.TotalValidatorShares, shares) -} - func GetValidatorShares(asset AllianceAsset, token cosmosmath.Int) sdk.Dec { return ConvertNewTokenToShares(sdk.NewDecFromInt(asset.TotalTokens), asset.TotalValidatorShares, token) } From 093f06d71aecc1f3d7121398e9a06ac4268caff1 Mon Sep 17 00:00:00 2001 From: emidev98 Date: Fri, 9 Jun 2023 14:31:26 +0300 Subject: [PATCH 5/6] wip: custom governance module --- app/app.go | 18 +++--- custom/gov/keeper/keeper.go | 46 +++++++++------ custom/gov/module.go | 19 ++++-- scripts/local/start.sh | 112 ++++++++++++++++++++++++++++++++++++ 4 files changed, 163 insertions(+), 32 deletions(-) create mode 100644 scripts/local/start.sh diff --git a/app/app.go b/app/app.go index e7e9f306..71e62f67 100644 --- a/app/app.go +++ b/app/app.go @@ -62,9 +62,7 @@ import ( genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types" "github.com/cosmos/cosmos-sdk/x/gov" govclient "github.com/cosmos/cosmos-sdk/x/gov/client" - govkeeper "github.com/cosmos/cosmos-sdk/x/gov/keeper" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - govv1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1" govv1beta1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" "github.com/cosmos/cosmos-sdk/x/group" groupkeeper "github.com/cosmos/cosmos-sdk/x/group/keeper" @@ -109,6 +107,8 @@ import ( appparams "github.com/terra-money/alliance/app/params" custombankmodule "github.com/terra-money/alliance/custom/bank" custombankkeeper "github.com/terra-money/alliance/custom/bank/keeper" + customgovmodule "github.com/terra-money/alliance/custom/gov" + customgovkeeper "github.com/terra-money/alliance/custom/gov/keeper" "github.com/terra-money/alliance/app/openapiconsole" @@ -153,7 +153,7 @@ var ( // ModuleBasics defines the module BasicManager is in charge of setting up basic, // non-dependant module elements, such as codec registration - // and genesis verification. + // and genesis verification.customgovmodule ModuleBasics = module.NewBasicManager( auth.AppModuleBasic{}, authzmodule.AppModuleBasic{}, @@ -238,7 +238,7 @@ type App struct { SlashingKeeper slashingkeeper.Keeper MintKeeper mintkeeper.Keeper DistrKeeper distrkeeper.Keeper - GovKeeper govkeeper.Keeper + GovKeeper customgovkeeper.Keeper CrisisKeeper crisiskeeper.Keeper UpgradeKeeper upgradekeeper.Keeper ParamsKeeper paramskeeper.Keeper @@ -509,11 +509,7 @@ func New( AddRoute(ibcclienttypes.RouterKey, ibcclient.NewClientProposalHandler(app.IBCKeeper.ClientKeeper)). AddRoute(alliancemoduletypes.RouterKey, alliancemodule.NewAllianceProposalHandler(app.AllianceKeeper)) govConfig := govtypes.DefaultConfig() - /* - Example of setting gov params: - govConfig.MaxMetadataLen = 10000 - */ - govKeeper := govkeeper.NewKeeper( + govKeeper := customgovkeeper.NewKeeper( appCodec, keys[govtypes.StoreKey], app.AccountKeeper, @@ -562,7 +558,7 @@ func New( feegrantmodule.NewAppModule(appCodec, app.AccountKeeper, app.BankKeeper, app.FeeGrantKeeper, app.interfaceRegistry), groupmodule.NewAppModule(appCodec, app.GroupKeeper, app.AccountKeeper, app.BankKeeper, app.interfaceRegistry), crisis.NewAppModule(&app.CrisisKeeper, skipGenesisInvariants, app.GetSubspace(crisistypes.ModuleName)), - gov.NewAppModule(appCodec, &app.GovKeeper, app.AccountKeeper, app.BankKeeper, app.GetSubspace(govtypes.ModuleName)), + customgovmodule.NewAppModule(appCodec, app.GovKeeper, app.AccountKeeper, app.BankKeeper, app.GetSubspace(govtypes.ModuleName)), mint.NewAppModule(appCodec, app.MintKeeper, app.AccountKeeper, nil, app.GetSubspace(minttypes.ModuleName)), slashing.NewAppModule(appCodec, app.SlashingKeeper, app.AccountKeeper, app.BankKeeper, app.StakingKeeper, app.GetSubspace(slashingtypes.ModuleName)), distr.NewAppModule(appCodec, app.DistrKeeper, app.AccountKeeper, app.BankKeeper, app.StakingKeeper, app.GetSubspace(distrtypes.ModuleName)), @@ -889,7 +885,7 @@ func initParamsKeeper(appCodec codec.BinaryCodec, legacyAmino *codec.LegacyAmino paramsKeeper.Subspace(minttypes.ModuleName) paramsKeeper.Subspace(distrtypes.ModuleName) paramsKeeper.Subspace(slashingtypes.ModuleName) - paramsKeeper.Subspace(govtypes.ModuleName).WithKeyTable(govv1.ParamKeyTable()) //nolint:staticcheck + paramsKeeper.Subspace(govtypes.ModuleName) paramsKeeper.Subspace(crisistypes.ModuleName) paramsKeeper.Subspace(ibctransfertypes.ModuleName) paramsKeeper.Subspace(ibcexported.ModuleName) diff --git a/custom/gov/keeper/keeper.go b/custom/gov/keeper/keeper.go index 503f97c1..2f11e3d4 100644 --- a/custom/gov/keeper/keeper.go +++ b/custom/gov/keeper/keeper.go @@ -9,7 +9,6 @@ import ( govkeeper "github.com/cosmos/cosmos-sdk/x/gov/keeper" "github.com/cosmos/cosmos-sdk/x/gov/types" v1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1" - "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" @@ -22,10 +21,10 @@ type Keeper struct { govkeeper.Keeper key storetypes.StoreKey - ak alliancekeeper.Keeper - sk stakingkeeper.Keeper + ak *alliancekeeper.Keeper + sk *stakingkeeper.Keeper acck accountkeeper.AccountKeeper - bk custombankkeeper.Keeper + bk *custombankkeeper.Keeper } var _ = govkeeper.Keeper{} @@ -33,26 +32,35 @@ var _ = govkeeper.Keeper{} func NewKeeper( cdc codec.BinaryCodec, key storetypes.StoreKey, - paramSpace types.ParamSubspace, - ak accountkeeper.AccountKeeper, - bk custombankkeeper.Keeper, - sk *stakingkeeper.Keeper, - legacyRouter v1beta1.Router, + authKeeper accountkeeper.AccountKeeper, + bankKeeper custombankkeeper.Keeper, + stakingKeeper *stakingkeeper.Keeper, router *baseapp.MsgServiceRouter, config types.Config, + authority string, ) Keeper { + govKeeper := govkeeper.NewKeeper(cdc, + key, + authKeeper, + bankKeeper, + stakingKeeper, + router, + config, + authority, + ) + keeper := Keeper{ - Keeper: govkeeper.NewKeeper(cdc, key, paramSpace, ak, bk, sk, legacyRouter, router, config), - ak: alliancekeeper.Keeper{}, - bk: custombankkeeper.Keeper{}, - sk: stakingkeeper.Keeper{}, - acck: ak, + Keeper: *govKeeper, + ak: nil, + bk: nil, + sk: nil, + acck: authKeeper, key: key, } return keeper } -func (k *Keeper) RegisterKeepers(ak alliancekeeper.Keeper, bk custombankkeeper.Keeper, sk stakingkeeper.Keeper) { +func (k *Keeper) RegisterKeepers(ak *alliancekeeper.Keeper, bk *custombankkeeper.Keeper, sk *stakingkeeper.Keeper) { k.ak = ak k.bk = bk k.sk = sk @@ -160,7 +168,7 @@ func (k *Keeper) Tally(ctx sdk.Context, proposal v1.Proposal) (passes bool, burn totalVotingPower = totalVotingPower.Add(votingPower) } - tallyParams := k.GetTallyParams(ctx) + tallyParams := k.GetParams(ctx) tallyResults = v1.NewTallyResultFromMap(results) // TODO: Upgrade the spec to cover all of these cases & remove pseudocode. @@ -196,3 +204,9 @@ func (k *Keeper) Tally(ctx sdk.Context, proposal v1.Proposal) (passes bool, burn // If more than 1/2 of non-abstaining voters vote No, proposal fails return false, false, tallyResults } + +// SetHooks sets the hooks for governance +func (keeper *Keeper) SetHooks(gh types.GovHooks) *Keeper { + keeper.Keeper.SetHooks(gh) + return keeper +} diff --git a/custom/gov/module.go b/custom/gov/module.go index 3f3b8010..6732e660 100644 --- a/custom/gov/module.go +++ b/custom/gov/module.go @@ -14,15 +14,24 @@ import ( type AppModule struct { govmodule.AppModule - keeper customgovkeeper.Keeper + keeper *customgovkeeper.Keeper + ss types.ParamSubspace } // NewAppModule creates a new AppModule object -func NewAppModule(cdc codec.Codec, keeper customgovkeeper.Keeper, accountKeeper types.AccountKeeper, bankKeeper types.BankKeeper) AppModule { - govmodule := govmodule.NewAppModule(cdc, keeper.Keeper, accountKeeper, bankKeeper) +func NewAppModule( + cdc codec.Codec, + keeper customgovkeeper.Keeper, + accountKeeper types.AccountKeeper, + bankKeeper types.BankKeeper, + ss types.ParamSubspace, +) AppModule { + govmodule := govmodule.NewAppModule(cdc, &keeper.Keeper, accountKeeper, bankKeeper, ss) + return AppModule{ AppModule: govmodule, - keeper: keeper, + keeper: &keeper, + ss: ss, } } @@ -30,7 +39,7 @@ func NewAppModule(cdc codec.Codec, keeper customgovkeeper.Keeper, accountKeeper // NOTE: Overriding this method as not doing so will cause a panic // when trying to force this custom keeper into a govkeeper func (am AppModule) RegisterServices(cfg module.Configurator) { - m := govkeeper.NewMigrator(am.keeper.Keeper) + m := govkeeper.NewMigrator(&am.keeper.Keeper, am.ss) if err := cfg.RegisterMigration(types.ModuleName, 1, m.Migrate1to2); err != nil { panic(fmt.Sprintf("failed to migrate x/gov from version 1 to 2: %v", err)) } diff --git a/scripts/local/start.sh b/scripts/local/start.sh new file mode 100644 index 00000000..41f2688c --- /dev/null +++ b/scripts/local/start.sh @@ -0,0 +1,112 @@ +#!/bin/bash + +BINARY=allianced +CHAIN_DIR=$(pwd)/.testnet +CHAINID_1=test-1 +CHAINID_2=test-2 + +VAL_MNEMONIC_1="clock post desk civil pottery foster expand merit dash seminar song memory figure uniform spice circle try happy obvious trash crime hybrid hood cushion" +VAL_MNEMONIC_2="angry twist harsh drastic left brass behave host shove marriage fall update business leg direct reward object ugly security warm tuna model broccoli choice" +WALLET_MNEMONIC_1="banner spread envelope side kite person disagree path silver will brother under couch edit food venture squirrel civil budget number acquire point work mass" +WALLET_MNEMONIC_2="veteran try aware erosion drink dance decade comic dawn museum release episode original list ability owner size tuition surface ceiling depth seminar capable only" +RLY_MNEMONIC_1="alley afraid soup fall idea toss can goose become valve initial strong forward bright dish figure check leopard decide warfare hub unusual join cart" +RLY_MNEMONIC_2="record gift you once hip style during joke field prize dust unique length more pencil transfer quit train device arrive energy sort steak upset" + +P2PPORT_1=16656 +P2PPORT_2=26656 +RPCPORT_1=16657 +RPCPORT_2=26657 +RESTPORT_1=1316 +RESTPORT_2=1317 +ROSETTA_1=8080 +ROSETTA_2=8081 +GRPCPORT_1=8090 +GRPCPORT_2=9090 +GRPCWEB_1=8091 +GRPCWEB_2=9091 + +# Stop if it is already running +if pgrep -x "$BINARY" >/dev/null; then + echo "Terminating $BINARY..." + killall $BINARY +fi + +echo "Removing previous data..." +rm -rf $CHAIN_DIR/$CHAINID_1 &> /dev/null +rm -rf $CHAIN_DIR/$CHAINID_2 &> /dev/null + +# Add directories for both chains, exit if an error occurs +if ! mkdir -p $CHAIN_DIR/$CHAINID_1 2>/dev/null; then + echo "Failed to create chain folder. Aborting..." + exit 1 +fi + +if ! mkdir -p $CHAIN_DIR/$CHAINID_2 2>/dev/null; then + echo "Failed to create chain folder. Aborting..." + exit 1 +fi + +echo "Initializing $CHAINID_1 & $CHAINID_2..." +$BINARY init test --home $CHAIN_DIR/$CHAINID_1 --chain-id=$CHAINID_1 &> /dev/null +$BINARY init test --home $CHAIN_DIR/$CHAINID_2 --chain-id=$CHAINID_2 &> /dev/null + +echo "Adding genesis accounts..." +echo $VAL_MNEMONIC_1 | $BINARY keys add val1 --home $CHAIN_DIR/$CHAINID_1 --recover --keyring-backend=test +echo $VAL_MNEMONIC_2 | $BINARY keys add val2 --home $CHAIN_DIR/$CHAINID_2 --recover --keyring-backend=test +echo $WALLET_MNEMONIC_1 | $BINARY keys add wallet1 --home $CHAIN_DIR/$CHAINID_1 --recover --keyring-backend=test +echo $WALLET_MNEMONIC_2 | $BINARY keys add wallet2 --home $CHAIN_DIR/$CHAINID_2 --recover --keyring-backend=test +echo $RLY_MNEMONIC_1 | $BINARY keys add rly1 --home $CHAIN_DIR/$CHAINID_1 --recover --keyring-backend=test +echo $RLY_MNEMONIC_2 | $BINARY keys add rly2 --home $CHAIN_DIR/$CHAINID_2 --recover --keyring-backend=test + +VAL1_ADDR=$($BINARY keys show val1 --home $CHAIN_DIR/$CHAINID_1 --keyring-backend test -a) +VAL2_ADDR=$($BINARY keys show val2 --home $CHAIN_DIR/$CHAINID_2 --keyring-backend test -a) +WALLET1_ADDR=$($BINARY keys show wallet1 --home $CHAIN_DIR/$CHAINID_1 --keyring-backend test -a) +WALLET2_ADDR=$($BINARY keys show wallet2 --home $CHAIN_DIR/$CHAINID_2 --keyring-backend test -a) +RLY1_ADDR=$($BINARY keys show rly1 --home $CHAIN_DIR/$CHAINID_1 --keyring-backend test -a) +RLY2_ADDR=$($BINARY keys show rly2 --home $CHAIN_DIR/$CHAINID_2 --keyring-backend test -a) + +$BINARY add-genesis-account $VAL1_ADDR 1000000000000stake --home $CHAIN_DIR/$CHAINID_1 +$BINARY add-genesis-account $VAL2_ADDR 1000000000000stake --home $CHAIN_DIR/$CHAINID_2 +$BINARY add-genesis-account $WALLET1_ADDR 1000000000000stake --home $CHAIN_DIR/$CHAINID_1 +$BINARY add-genesis-account $WALLET2_ADDR 1000000000000stake --home $CHAIN_DIR/$CHAINID_2 +$BINARY add-genesis-account $RLY1_ADDR 1000000000000stake --home $CHAIN_DIR/$CHAINID_1 +$BINARY add-genesis-account $RLY2_ADDR 1000000000000stake --home $CHAIN_DIR/$CHAINID_2 + +echo "Creating and collecting gentx..." +$BINARY gentx val1 6500000000stake --home $CHAIN_DIR/$CHAINID_1 --chain-id $CHAINID_1 --keyring-backend test +$BINARY gentx val2 6500000000stake --home $CHAIN_DIR/$CHAINID_2 --chain-id $CHAINID_2 --keyring-backend test +$BINARY collect-gentxs --home $CHAIN_DIR/$CHAINID_1 &> /dev/null +$BINARY collect-gentxs --home $CHAIN_DIR/$CHAINID_2 &> /dev/null + +echo "Changing defaults and ports in app.toml and config.toml files..." +sed -i -e 's#"tcp://0.0.0.0:26656"#"tcp://0.0.0.0:'"$P2PPORT_1"'"#g' $CHAIN_DIR/$CHAINID_1/config/config.toml +sed -i -e 's#"tcp://127.0.0.1:26657"#"tcp://0.0.0.0:'"$RPCPORT_1"'"#g' $CHAIN_DIR/$CHAINID_1/config/config.toml +sed -i -e 's/timeout_commit = "5s"/timeout_commit = "1s"/g' $CHAIN_DIR/$CHAINID_1/config/config.toml +sed -i -e 's/timeout_propose = "3s"/timeout_propose = "1s"/g' $CHAIN_DIR/$CHAINID_1/config/config.toml +sed -i -e 's/enable = false/enable = true/g' $CHAIN_DIR/$CHAINID_1/config/app.toml +sed -i -e 's/swagger = false/swagger = true/g' $CHAIN_DIR/$CHAINID_1/config/app.toml +sed -i -e 's#"tcp://localhost:1317"#"tcp://0.0.0.0:'"$RESTPORT_1"'"#g' $CHAIN_DIR/$CHAINID_1/config/app.toml +sed -i -e 's#":8080"#":'"$ROSETTA_1"'"#g' $CHAIN_DIR/$CHAINID_1/config/app.toml + +sed -i -e 's#"tcp://0.0.0.0:26656"#"tcp://0.0.0.0:'"$P2PPORT_2"'"#g' $CHAIN_DIR/$CHAINID_2/config/config.toml +sed -i -e 's#"tcp://127.0.0.1:26657"#"tcp://0.0.0.0:'"$RPCPORT_2"'"#g' $CHAIN_DIR/$CHAINID_2/config/config.toml +sed -i -e 's/timeout_commit = "5s"/timeout_commit = "1s"/g' $CHAIN_DIR/$CHAINID_2/config/config.toml +sed -i -e 's/timeout_propose = "3s"/timeout_propose = "1s"/g' $CHAIN_DIR/$CHAINID_2/config/config.toml +sed -i -e 's/enable = false/enable = true/g' $CHAIN_DIR/$CHAINID_2/config/app.toml +sed -i -e 's/swagger = false/swagger = true/g' $CHAIN_DIR/$CHAINID_2/config/app.toml +sed -i -e 's#"tcp://localhost:1317"#"tcp://0.0.0.0:'"$RESTPORT_2"'"#g' $CHAIN_DIR/$CHAINID_2/config/app.toml +sed -i -e 's#":8080"#":'"$ROSETTA_2"'"#g' $CHAIN_DIR/$CHAINID_2/config/app.toml + +echo "Chaning genesis.json..." +sed -i -e 's/"voting_period": "172800s"/"voting_period": "10s"/g' $CHAIN_DIR/$CHAINID_1/config/genesis.json +sed -i -e 's/"voting_period": "172800s"/"voting_period": "10s"/g' $CHAIN_DIR/$CHAINID_2/config/genesis.json +sed -i -e 's/"reward_delay_time": "604800s"/"reward_delay_time": "10s"/g' $CHAIN_DIR/$CHAINID_1/config/genesis.json +sed -i -e 's/"reward_delay_time": "604800s"/"reward_delay_time": "10s"/g' $CHAIN_DIR/$CHAINID_2/config/genesis.json + +echo "Starting $CHAINID_1 in $CHAIN_DIR..." +echo "Creating log file at $CHAIN_DIR/$CHAINID_1.log" +$BINARY start --log_level trace --log_format json --home $CHAIN_DIR/$CHAINID_1 --pruning=nothing --grpc.address="0.0.0.0:$GRPCPORT_1" --grpc-web.address="0.0.0.0:$GRPCWEB_1" > $CHAIN_DIR/$CHAINID_1.log 2>&1 & + +echo "Starting $CHAINID_2 in $CHAIN_DIR..." +echo "Creating log file at $CHAIN_DIR/$CHAINID_2.log" +$BINARY start --log_level trace --log_format json --home $CHAIN_DIR/$CHAINID_2 --pruning=nothing --grpc.address="0.0.0.0:$GRPCPORT_2" --grpc-web.address="0.0.0.0:$GRPCWEB_2" > $CHAIN_DIR/$CHAINID_2.log 2>&1 & From 085bd1d76e7a543aa431cefdf05912ce91237aa0 Mon Sep 17 00:00:00 2001 From: emidev98 Date: Fri, 9 Jun 2023 16:37:31 +0300 Subject: [PATCH 6/6] wip: gov participation --- Makefile | 3 ++ app/app.go | 3 +- cmd/allianced/cmd/root.go | 4 +- custom/gov/keeper/keeper.go | 6 +-- custom/gov/types/keeper_interfaces.go | 7 --- scripts/local/start.sh | 65 +++++++++++++++++++++++++++ 6 files changed, 75 insertions(+), 13 deletions(-) delete mode 100644 custom/gov/types/keeper_interfaces.go create mode 100755 scripts/local/start.sh diff --git a/Makefile b/Makefile index 2b24b374..cc1318cc 100644 --- a/Makefile +++ b/Makefile @@ -138,6 +138,9 @@ proto-gen: ### Local Testnet (docker) ### ############################################################################### +start: install + ./scripts/local/start.sh + localnet-alliance-rmi: $(DOCKER) rmi terra-money/localnet-alliance 2>/dev/null; true diff --git a/app/app.go b/app/app.go index b78e5065..f8a94875 100644 --- a/app/app.go +++ b/app/app.go @@ -63,6 +63,7 @@ import ( "github.com/cosmos/cosmos-sdk/x/gov" govclient "github.com/cosmos/cosmos-sdk/x/gov/client" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" + govv1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1" govv1beta1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" "github.com/cosmos/cosmos-sdk/x/group" groupkeeper "github.com/cosmos/cosmos-sdk/x/group/keeper" @@ -886,7 +887,7 @@ func initParamsKeeper(appCodec codec.BinaryCodec, legacyAmino *codec.LegacyAmino paramsKeeper.Subspace(distrtypes.ModuleName) paramsKeeper.Subspace(slashingtypes.ModuleName) paramsKeeper.Subspace(govtypes.ModuleName) - // paramsKeeper.Subspace(govtypes.ModuleName).WithKeyTable(govv1.ParamKeyTable()) //nolint:staticcheck + paramsKeeper.Subspace(govtypes.ModuleName).WithKeyTable(govv1.ParamKeyTable()) //nolint:staticcheck paramsKeeper.Subspace(crisistypes.ModuleName) paramsKeeper.Subspace(ibctransfertypes.ModuleName) paramsKeeper.Subspace(ibcexported.ModuleName) diff --git a/cmd/allianced/cmd/root.go b/cmd/allianced/cmd/root.go index cf59390e..1dca8707 100644 --- a/cmd/allianced/cmd/root.go +++ b/cmd/allianced/cmd/root.go @@ -39,7 +39,7 @@ import ( "github.com/terra-money/alliance/app/params" ) -// NewRootCmd creates a new root command for simd. It is called once in the +// NewRootCmd creates a new root command for allianced. It is called once in the // main function. func NewRootCmd() (*cobra.Command, params.EncodingConfig) { encodingConfig := app.MakeTestEncodingConfig() @@ -54,7 +54,7 @@ func NewRootCmd() (*cobra.Command, params.EncodingConfig) { WithViper("") // In app, we don't use any prefix for env variables. rootCmd := &cobra.Command{ - Use: "simd", + Use: "allianced", Short: "simulation app", PersistentPreRunE: func(cmd *cobra.Command, _ []string) error { // set the default command outputs diff --git a/custom/gov/keeper/keeper.go b/custom/gov/keeper/keeper.go index 2f11e3d4..eb39eaa3 100644 --- a/custom/gov/keeper/keeper.go +++ b/custom/gov/keeper/keeper.go @@ -206,7 +206,7 @@ func (k *Keeper) Tally(ctx sdk.Context, proposal v1.Proposal) (passes bool, burn } // SetHooks sets the hooks for governance -func (keeper *Keeper) SetHooks(gh types.GovHooks) *Keeper { - keeper.Keeper.SetHooks(gh) - return keeper +func (k *Keeper) SetHooks(gh types.GovHooks) *Keeper { + k.Keeper = *k.Keeper.SetHooks(gh) + return k } diff --git a/custom/gov/types/keeper_interfaces.go b/custom/gov/types/keeper_interfaces.go deleted file mode 100644 index 4fc75155..00000000 --- a/custom/gov/types/keeper_interfaces.go +++ /dev/null @@ -1,7 +0,0 @@ -package types - -import sdk "github.com/cosmos/cosmos-sdk/types" - -type StakingKeeper interface { - BondDenom(ctx sdk.Context) (res string) -} diff --git a/scripts/local/start.sh b/scripts/local/start.sh new file mode 100755 index 00000000..d452d2da --- /dev/null +++ b/scripts/local/start.sh @@ -0,0 +1,65 @@ +#!/bin/bash + +BINARY=allianced +CHAIN_DIR=$(pwd)/.testnet +CHAINID_1=alliance-testnet-1 + +VAL_MNEMONIC_1="clock post desk civil pottery foster expand merit dash seminar song memory figure uniform spice circle try happy obvious trash crime hybrid hood cushion" +WALLET_MNEMONIC_1="banner spread envelope side kite person disagree path silver will brother under couch edit food venture squirrel civil budget number acquire point work mass" + +P2PPORT_1=16656 +RPCPORT_1=16657 +RESTPORT_1=1316 +ROSETTA_1=8080 +GRPCPORT_1=8090 +GRPCWEB_1=8091 + +# Stop if it is already running +if pgrep -x "$BINARY" >/dev/null; then + echo "Terminating $BINARY..." + killall $BINARY +fi + +echo "Removing previous data..." +rm -rf $CHAIN_DIR/$CHAINID_1 + +if ! mkdir -p $CHAIN_DIR/$CHAINID_1 2>/dev/null; then + echo "Failed to create chain folder. Aborting..." + exit 1 +fi + +$BINARY init test --home $CHAIN_DIR/$CHAINID_1 --chain-id=$CHAINID_1 + +echo "Adding genesis accounts..." +echo $VAL_MNEMONIC_1 | $BINARY keys add val1 --home $CHAIN_DIR/$CHAINID_1 --recover --keyring-backend=test +echo $WALLET_MNEMONIC_1 | $BINARY keys add wallet1 --home $CHAIN_DIR/$CHAINID_1 --recover --keyring-backend=test + +VAL1_ADDR=$($BINARY keys show val1 --home $CHAIN_DIR/$CHAINID_1 --keyring-backend test -a) +WALLET1_ADDR=$($BINARY keys show wallet1 --home $CHAIN_DIR/$CHAINID_1 --keyring-backend test -a) + +$BINARY add-genesis-account $VAL1_ADDR 1000000000000stake --home $CHAIN_DIR/$CHAINID_1 +$BINARY add-genesis-account $WALLET1_ADDR 1000000000000stake --home $CHAIN_DIR/$CHAINID_1 + +echo "Creating and collecting gentx..." +$BINARY gentx val1 6500000000stake --home $CHAIN_DIR/$CHAINID_1 --chain-id $CHAINID_1 --keyring-backend test +sleep 2 +$BINARY collect-gentxs --home $CHAIN_DIR/$CHAINID_1 + +echo "Changing app.toml defaults and ports in and config.toml files..." +sed -i -e 's#"tcp://0.0.0.0:26656"#"tcp://0.0.0.0:'"$P2PPORT_1"'"#g' $CHAIN_DIR/$CHAINID_1/config/config.toml +sed -i -e 's#"tcp://127.0.0.1:26657"#"tcp://0.0.0.0:'"$RPCPORT_1"'"#g' $CHAIN_DIR/$CHAINID_1/config/config.toml +sed -i -e 's/timeout_commit = "5s"/timeout_commit = "1s"/g' $CHAIN_DIR/$CHAINID_1/config/config.toml +sed -i -e 's/timeout_propose = "3s"/timeout_propose = "1s"/g' $CHAIN_DIR/$CHAINID_1/config/config.toml +sed -i -e 's/enable = false/enable = true/g' $CHAIN_DIR/$CHAINID_1/config/app.toml +sed -i -e 's/swagger = false/swagger = true/g' $CHAIN_DIR/$CHAINID_1/config/app.toml +sed -i -e 's#"tcp://localhost:1317"#"tcp://0.0.0.0:'"$RESTPORT_1"'"#g' $CHAIN_DIR/$CHAINID_1/config/app.toml +sed -i -e 's#":8080"#":'"$ROSETTA_1"'"#g' $CHAIN_DIR/$CHAINID_1/config/app.toml + +echo "Changing genesis.json defaults..." +sed -i -e 's/"voting_period": "172800s"/"voting_period": "10s"/g' $CHAIN_DIR/$CHAINID_1/config/genesis.json +sed -i -e 's/"reward_delay_time": "604800s"/"reward_delay_time": "10s"/g' $CHAIN_DIR/$CHAINID_1/config/genesis.json + +echo "Starting $CHAINID_1 in $CHAIN_DIR..." +echo "Creating log file at $CHAIN_DIR/$CHAINID_1.log" +$BINARY start --log_level trace --log_format json --home $CHAIN_DIR/$CHAINID_1 --pruning=nothing --grpc.address="0.0.0.0:$GRPCPORT_1" --grpc-web.address="0.0.0.0:$GRPCWEB_1" > $CHAIN_DIR/$CHAINID_1.log 2>&1 & +